diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md new file mode 100644 index 000000000..418290e5e --- /dev/null +++ b/ARCHITECTURE.md @@ -0,0 +1,112 @@ +# eSim Architecture & Workflows + +This document contains detailed flowcharts and diagrams mapping out the inner workings, simulation pipelines, and data transformations within eSim. + +--- + +## 1. Standard Simulation Workflow + +This flowchart details the end-to-end user journey for a standard analog/digital simulation in eSim, from project creation to waveform analysis. + +```mermaid +flowchart TD + %% Styling + classDef startend fill:#2ECC71,stroke:#27AE60,stroke-width:2px,color:#fff + classDef process fill:#3498DB,stroke:#2980B9,stroke-width:2px,color:#fff + classDef decision fill:#F1C40F,stroke:#F39C12,stroke-width:2px,color:#333 + classDef io fill:#9B59B6,stroke:#8E44AD,stroke-width:2px,color:#fff + + START([Start eSim Project]):::startend --> CREATE{New or Existing?}:::decision + CREATE -- New --> PROJ[Create Project Structure]:::process + CREATE -- Existing --> OPEN[Open Project Workspace]:::process + + PROJ --> SCHEM[Draw Schematic in KiCad]:::process + OPEN --> SCHEM + + SCHEM --> CHECK{Mixed Signal?}:::decision + CHECK -- Yes --> VHDL[Write VHDL/Verilog Models]:::process + VHDL --> GHDL[Compile via NGHDL/NgVeri]:::process + GHDL --> SYM[Generate KiCad Symbol]:::process + SYM --> SCHEM + + CHECK -- No --> K2N[Run KiCad-to-Ngspice]:::process + K2N --> PARSE[Parse XML Netlist]:::process + PARSE --> SRC[Configure Sources & Analysis]:::process + SRC --> DEV[Configure Device Models]:::process + + DEV --> SPICE[Generate .cir SPICE Netlist]:::io + SPICE --> NGSPICE[Execute Ngspice Simulation]:::process + + NGSPICE --> OUT{Simulation Success?}:::decision + OUT -- No --> ERR[View Error Log & Debug]:::process + ERR --> SCHEM + + OUT -- Yes --> RAW[Generate RAW Output Data]:::io + RAW --> PLOT[Extract Data for Plotting]:::process + PLOT --> MAT[Render matplotlib Waveforms]:::process + + MAT --> END([Analyze Results]):::startend +``` + +--- + +## 2. Mixed-Signal Simulation Flow (NGHDL) + +This diagram breaks down how eSim bridges digital logic (VHDL/Verilog) with analog simulation using GHDL and Ngspice code models. + +```mermaid +flowchart TD + %% Styling + classDef input fill:#34495E,stroke:#2C3E50,stroke-width:2px,color:#fff + classDef process fill:#16A085,stroke:#1ABC9C,stroke-width:2px,color:#fff + classDef output fill:#8E44AD,stroke:#9B59B6,stroke-width:2px,color:#fff + + VHDL([Write VHDL/Verilog Code]):::input --> UPLOAD[Upload via NGHDL/NgVeri UI]:::process + UPLOAD --> COMPILE[GHDL/Verilator Compiles Code to Shared Lib]:::process + COMPILE --> MODEL[Create Ngspice Code Model .cm]:::process + MODEL --> KICAD[Generate KiCad Component Symbol]:::output + + KICAD --> SCHEM([Place Symbol in Schematic]):::input + SCHEM --> BRIDGE[ADC/DAC Bridge Insertion]:::process + BRIDGE --> SIM[Execute Mixed-Signal Co-Simulation]:::output +``` + +--- + +## 3. KiCad-to-Ngspice Netlist Conversion + +A deep dive into the `Convert.py` backend pipeline, showing how KiCad's XML data is processed into an executable SPICE netlist. + +```mermaid +flowchart TD + %% Styling + classDef input fill:#34495E,stroke:#2C3E50,stroke-width:2px,color:#fff + classDef process fill:#E67E22,stroke:#D35400,stroke-width:2px,color:#fff + classDef io fill:#9B59B6,stroke:#8E44AD,stroke-width:2px,color:#fff + + XML([KiCad XML Netlist]):::input --> PARSE[Parse XML DOM]:::process + PARSE --> EXTRACT[Extract Components & Connections]:::process + EXTRACT --> MAP[Map Pins to Ngspice Nodes]:::process + MAP --> SUB[Resolve Subcircuits & Macros]:::process + SUB --> INJECT[Inject Device Parameters & Models]:::process + INJECT --> SPICE([Generate .cir SPICE Netlist]):::io +``` + +--- + +## 4. Device Model Generation Pipeline + +Outlining how user-defined models (Diodes, BJTs, MOSFETs) are integrated via the Model Editor. + +```mermaid +flowchart LR + %% Styling + classDef input fill:#2C3E50,stroke:#1A252F,stroke-width:2px,color:#fff + classDef process fill:#E74C3C,stroke:#C0392B,stroke-width:2px,color:#fff + classDef output fill:#F39C12,stroke:#E67E22,stroke-width:2px,color:#fff + + UI([Model Editor UI]):::input --> VAL[Validate Parameters]:::process + VAL --> TEMPLATE[Inject Data into SPICE Template]:::process + TEMPLATE --> LIB([Save to project .lib file]):::output + LIB --> K2N([Attached during Netlist Conversion]):::output +``` diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..ed800df00 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,524 @@ +# Contributing to eSim + +Thank you for your interest in contributing to **eSim**! ๐ŸŽ‰ +Every contribution โ€” whether it's a bug fix, new feature, documentation improvement, or example circuit โ€” helps make eSim better for everyone. + +

+ Open Issues + Open PRs + Good First Issues + Contributors + Code Style +

+ +--- + +## ๐Ÿ“‹ Table of Contents + +- [Our Contributors](#-our-contributors) +- [Getting Started](#-getting-started) +- [Ways to Contribute](#-ways-to-contribute) +- [Development Setup](#-development-setup) +- [Pull Request Workflow](#-pull-request-workflow) +- [Commit Guidelines](#-commit-guidelines) +- [Code Style](#-code-style) +- [Reporting Bugs](#-reporting-bugs) +- [Requesting Features](#-requesting-features) +- [Community](#-community) + +--- + +## ๐Ÿ† Our Contributors + +A huge thank you to all **149+ amazing people** who have built eSim since 2015! ๐ŸŽ‰ + +### ๐Ÿ›๏ธ Project Leads + +| Role | Name | Affiliation | +|:-----|:-----|:------------| +| **Developed by** | [FOSSEE Team](https://www.fossee.in/) | IIT Bombay | +| **Original Author** | Fahim Khan | eSim / FOSSEE, IIT Bombay | +| **Lead Maintainer** | Sumanto Kar | FOSSEE, IIT Bombay | +| **Core Maintainer** | Rahul Paknikar | FOSSEE, IIT Bombay | +| **Core Maintainer** | Pranav P | FOSSEE, IIT Bombay | + +### ๐Ÿฅ‡ Core Maintainers + + + + + + + +
+ + Sumanto Kar
+ ๐Ÿฅ‡ Sumanto Kar +

+ Lead Maintainer ยท 320 commits
+ GitHub +
+ + Rahul Paknikar
+ ๐Ÿฅˆ Rahul Paknikar +

+ 265 commits
+ GitHub +
+ + Fahim Khan
+ ๐Ÿฅ‰ Fahim Khan +

+ 244 commits
+ GitHub +
+ +### All Contributors Mosaic + +

+ + All Contributors + +

+ +

Auto-generated via contrib.rocks โ€” View full list on GitHub โ†’

+ +### ๐ŸŒŸ Community Contributors + +
+Contributors with 5โ€“9 commits (click to expand) +
+ +| Contributor | Commits | GitHub | +|:------------|:-------:|:------:| +| Maanit | 9 | [![GitHub](https://img.shields.io/badge/-Maanit-181717?style=flat-square&logo=github)](https://github.com/Maanit) | +| Myo Thinzar | 9 | [![GitHub](https://img.shields.io/badge/-Myo--Thinzar-181717?style=flat-square&logo=github)](https://github.com/Myo-Thinzar) | +| Partha Pratim Nath | 9 | [![GitHub](https://img.shields.io/badge/-parthapratimn-181717?style=flat-square&logo=github)](https://github.com/parthapratimn) | +| Sakhi Sharma | 9 | [![GitHub](https://img.shields.io/badge/-Sakhi1011-181717?style=flat-square&logo=github)](https://github.com/Sakhi1011) | +| Temshinaro Jamir | 9 | [![GitHub](https://img.shields.io/badge/-TemshinaroJamir-181717?style=flat-square&logo=github)](https://github.com/TemshinaroJamir) | +| Xoher | 9 | [![GitHub](https://img.shields.io/badge/-xoher-181717?style=flat-square&logo=github)](https://github.com/xoher) | +| Abhishek Shakya | 8 | [![GitHub](https://img.shields.io/badge/-AbhishekShakya-181717?style=flat-square&logo=github)](https://github.com/AbhishekShakya) | +| Aishwarya Sinha | 8 | [![GitHub](https://img.shields.io/badge/-AishwaryaSinha-181717?style=flat-square&logo=github)](https://github.com/AishwaryaSinha) | +| Aman Shukla | 8 | [![GitHub](https://img.shields.io/badge/-AmanShukla111-181717?style=flat-square&logo=github)](https://github.com/AmanShukla111) | +| Chandru | 8 | [![GitHub](https://img.shields.io/badge/-Chandru__136-181717?style=flat-square&logo=github)](https://github.com/Chandru136) | +| SAGARIKAA | 8 | [![GitHub](https://img.shields.io/badge/-SAGARIKAA760-181717?style=flat-square&logo=github)](https://github.com/SAGARIKAA760) | +| Sakshi Pandey | 8 | [![GitHub](https://img.shields.io/badge/-SakshiPandey-181717?style=flat-square&logo=github)](https://github.com/SakshiPandey) | +| Shaili Sahu | 8 | [![GitHub](https://img.shields.io/badge/-ShailiSahu-181717?style=flat-square&logo=github)](https://github.com/ShailiSahu) | +| Anish R. Khapare | 8 | [![GitHub](https://img.shields.io/badge/-anishrkhapare--bit-181717?style=flat-square&logo=github)](https://github.com/anishrkhapare-bit) | +| Deen Efil | 8 | [![GitHub](https://img.shields.io/badge/-deen--efil-181717?style=flat-square&logo=github)](https://github.com/deen-efil) | +| Priyanka | 8 | [![GitHub](https://img.shields.io/badge/-Priyanka-181717?style=flat-square&logo=github)](https://github.com/Priyanka) | +| Vivek Kumar | 7 | [![GitHub](https://img.shields.io/badge/-092vk-181717?style=flat-square&logo=github)](https://github.com/092vk) | +| Bladen Martin | 7 | [![GitHub](https://img.shields.io/badge/-BladenMartin-181717?style=flat-square&logo=github)](https://github.com/BladenMartin) | +| Jay Mistry | 7 | [![GitHub](https://img.shields.io/badge/-mistryjay-181717?style=flat-square&logo=github)](https://github.com/mistryjay) | +| Vanshika Tanwar | 7 | [![GitHub](https://img.shields.io/badge/-VanshikaTanwar-181717?style=flat-square&logo=github)](https://github.com/VanshikaTanwar) | +| Varadha | 7 | [![GitHub](https://img.shields.io/badge/-VaradhaCodes-181717?style=flat-square&logo=github)](https://github.com/VaradhaCodes) | +| Suprraja | 7 | [![GitHub](https://img.shields.io/badge/-suprraja-181717?style=flat-square&logo=github)](https://github.com/suprraja) | +| Taeolis | 7 | [![GitHub](https://img.shields.io/badge/-taeolis-181717?style=flat-square&logo=github)](https://github.com/taeolis) | +| Arpit Sharma | 6 | [![GitHub](https://img.shields.io/badge/-ArpitSharma-181717?style=flat-square&logo=github)](https://github.com/ArpitSharma) | +| Gaurav Supal | 6 | [![GitHub](https://img.shields.io/badge/-GauravSupal-181717?style=flat-square&logo=github)](https://github.com/GauravSupal) | +| Jayanth | 6 | [![GitHub](https://img.shields.io/badge/-Jayanth--4547-181717?style=flat-square&logo=github)](https://github.com/Jayanth-4547) | +| Manimaran K | 6 | [![GitHub](https://img.shields.io/badge/-ManimaranK-181717?style=flat-square&logo=github)](https://github.com/ManimaranK) | +| Rachith H | 6 | [![GitHub](https://img.shields.io/badge/-Rachith--H-181717?style=flat-square&logo=github)](https://github.com/Rachith-H) | +| Tanay Mathur | 6 | [![GitHub](https://img.shields.io/badge/-TanayMathur-181717?style=flat-square&logo=github)](https://github.com/TanayMathur) | +| Maddy | 6 | [![GitHub](https://img.shields.io/badge/-maddy--2-181717?style=flat-square&logo=github)](https://github.com/maddy-2) | +| Abhishek Soni | 5 | [![GitHub](https://img.shields.io/badge/-Abhishek--Soni--25-181717?style=flat-square&logo=github)](https://github.com/Abhishek-Soni-25) | +| Barun | 5 | [![GitHub](https://img.shields.io/badge/-Barun-181717?style=flat-square&logo=github)](https://github.com/Barun) | +| Varad Patil | 5 | [![GitHub](https://img.shields.io/badge/-OfficialVarad-181717?style=flat-square&logo=github)](https://github.com/OfficialVarad) | +| Yash Kiran Ekhande | 5 | [![GitHub](https://img.shields.io/badge/-YashEkhande-181717?style=flat-square&logo=github)](https://github.com/YashEkhande) | +| Krishna Goutam | 5 | [![GitHub](https://img.shields.io/badge/-krishnaGoutam-181717?style=flat-square&logo=github)](https://github.com/krishnaGoutam) | +| Rohinthram | 5 | [![GitHub](https://img.shields.io/badge/-rohinthram-181717?style=flat-square&logo=github)](https://github.com/rohinthram) | + +
+ +
+Contributors with 1โ€“4 commits (click to expand) +
+ +| Contributor | Commits | GitHub | +|:------------|:-------:|:------:| +| Akshay Rukade | 4 | [![GitHub](https://img.shields.io/badge/-AkshayRukade-181717?style=flat-square&logo=github)](https://github.com/AkshayRukade) | +| Vatsal Patel | 4 | [![GitHub](https://img.shields.io/badge/-PatelVatsalB21-181717?style=flat-square&logo=github)](https://github.com/PatelVatsalB21) | +| Ankur Gupta | 3 | [![GitHub](https://img.shields.io/badge/-ankur--gupta--29-181717?style=flat-square&logo=github)](https://github.com/ankur-gupta-29) | +| E Balakrishna | 3 | [![GitHub](https://img.shields.io/badge/-EBalakrishna-181717?style=flat-square&logo=github)](https://github.com/EBalakrishna) | +| Gaurav Gupta | 3 | [![GitHub](https://img.shields.io/badge/-gauravgupta654-181717?style=flat-square&logo=github)](https://github.com/gauravgupta654) | +| Harshit Singh Negi | 3 | [![GitHub](https://img.shields.io/badge/-demon2202-181717?style=flat-square&logo=github)](https://github.com/demon2202) | +| Pranav Karuvally | 3 | [![GitHub](https://img.shields.io/badge/-theunixdisaster-181717?style=flat-square&logo=github)](https://github.com/theunixdisaster) | +| Abinash Singh | 2 | [![GitHub](https://img.shields.io/badge/-avinashlalotra-181717?style=flat-square&logo=github)](https://github.com/avinashlalotra) | +| Harvi | 2 | [![GitHub](https://img.shields.io/badge/-Harvi--2215-181717?style=flat-square&logo=github)](https://github.com/Harvi-2215) | +| Kavya Manohar | 2 | [![GitHub](https://img.shields.io/badge/-KavyaManohar-181717?style=flat-square&logo=github)](https://github.com/KavyaManohar) | +| Pyae Sone | 2 | [![GitHub](https://img.shields.io/badge/-Autumn--21-181717?style=flat-square&logo=github)](https://github.com/Autumn-21) | +| S. Shiva Krishna Reddy | 2 | [![GitHub](https://img.shields.io/badge/-Shiva0krishna-181717?style=flat-square&logo=github)](https://github.com/Shiva0krishna) | +| Sangavi GR | 2 | [![GitHub](https://img.shields.io/badge/-SangaviGR-181717?style=flat-square&logo=github)](https://github.com/SangaviGR) | +| Manasi Yadav | 2 | [![GitHub](https://img.shields.io/badge/-manasiyadav-181717?style=flat-square&logo=github)](https://github.com/manasiyadav) | +| Aditya Bhattacharya | 1 | [![GitHub](https://img.shields.io/badge/-ADITYA--BHATTACHARYA--DEV-181717?style=flat-square&logo=github)](https://github.com/ADITYA-BHATTACHARYA-DEV) | +| Ashwith Rego | 1 | [![GitHub](https://img.shields.io/badge/-ashwith-181717?style=flat-square&logo=github)](https://github.com/ashwith) | +| Boddu Ajay | 1 | [![GitHub](https://img.shields.io/badge/-ajayboddu--2006-181717?style=flat-square&logo=github)](https://github.com/ajayboddu-2006) | +| Charaan | 1 | [![GitHub](https://img.shields.io/badge/-Charaan-181717?style=flat-square&logo=github)](https://github.com/Charaan) | +| GiGi Koneti | 1 | [![GitHub](https://img.shields.io/badge/-GiGiKoneti-181717?style=flat-square&logo=github)](https://github.com/GiGiKoneti) | +| Kusum Kisori | 1 | [![GitHub](https://img.shields.io/badge/-KusumKisori-181717?style=flat-square&logo=github)](https://github.com/KusumKisori) | + +| Mudit Joshi | 1 | [![GitHub](https://img.shields.io/badge/-MuditJoshi-181717?style=flat-square&logo=github)](https://github.com/MuditJoshi) | +| Naman Patel | 1 | [![GitHub](https://img.shields.io/badge/-NamanPatel-181717?style=flat-square&logo=github)](https://github.com/NamanPatel) | +| Pavan Mantri | 1 | [![GitHub](https://img.shields.io/badge/-PavanMantri-181717?style=flat-square&logo=github)](https://github.com/PavanMantri) | +| Pavithra W | 1 | [![GitHub](https://img.shields.io/badge/-Pavithraw24-181717?style=flat-square&logo=github)](https://github.com/Pavithraw24) | +| Raksha Dave | 1 | [![GitHub](https://img.shields.io/badge/-RakshaDave-181717?style=flat-square&logo=github)](https://github.com/RakshaDave) | +| Rudra Mani Upadhyay | 1 | [![GitHub](https://img.shields.io/badge/-Rudramani1-181717?style=flat-square&logo=github)](https://github.com/Rudramani1) | +| Shravan A Y | 1 | [![GitHub](https://img.shields.io/badge/-ShravanAY-181717?style=flat-square&logo=github)](https://github.com/ShravanAY) | +| Vikas Mulaje | 1 | [![GitHub](https://img.shields.io/badge/-VikasMulaje-181717?style=flat-square&logo=github)](https://github.com/VikasMulaje) | +| Aamir Thekiya | 1 | [![GitHub](https://img.shields.io/badge/-aamirthekiya-181717?style=flat-square&logo=github)](https://github.com/aamirthekiya) | +| Bhavya Bhardwaj | 1 | [![GitHub](https://img.shields.io/badge/-bhavyabhardwaj001-181717?style=flat-square&logo=github)](https://github.com/bhavyabhardwaj001) | +| Mahak Gupta | 1 | [![GitHub](https://img.shields.io/badge/-mahakgupta0123-181717?style=flat-square&logo=github)](https://github.com/mahakgupta0123) | +| Nuh Too Wai | 1 | [![GitHub](https://img.shields.io/badge/-nuhtoowai-181717?style=flat-square&logo=github)](https://github.com/nuhtoowai) | + +
+ +### ๐Ÿฅ‰ Active Contributors (10โ€“19 commits) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
Ankush

19 +
+
Anup K. Pandey

19 +
+
G Jaswanth

19 +
+
E Kamalesh

18 +
+
Sai Charan

18 +
+
Mausam

17 +
+
Ajay Boddu

15 +
+
PSR

15 +
+
Komal Sheth

15 +
+
Dilip Boidya

15 +
+
Nishit Bayen

14 +
+
Suchinton

13 +
+
Karthick N.

13 +
+
Sabarish M.

12 +
+
Harshal

11 +
+
D Tharun

11 +
+
Jovin P John

11 +
+
Madhav K.

11 +
+
Ragul

11 +
+
Jawwaad

10 +
+
Nirmitha N

10 +
+
Pavan

10 +
+
Senbagaseelan

10 +
+
Tanisha

10 +
+
Ashok Kumar

10 +
+ +### ๐Ÿฅˆ Major Contributors (20+ commits) + +| # | Contributor | Commits | GitHub | +|:-:|:------------|:-------:|:------:| +| 1 | **Saurabh Bansode** | 49 | [![GitHub](https://img.shields.io/badge/-saurabhb17-181717?style=flat-square&logo=github)](https://github.com/saurabhb17) | +| 2 | **Athul George** | 37 | [![GitHub](https://img.shields.io/badge/-athulappadan-181717?style=flat-square&logo=github)](https://github.com/athulappadan) | +| 3 | **Nil Shah** | 36 | [![GitHub](https://img.shields.io/badge/-nilshah98-181717?style=flat-square&logo=github)](https://github.com/nilshah98) | +| 4 | **Shanthi Priya** | 36 | [![GitHub](https://img.shields.io/badge/-Shanthipriya20-181717?style=flat-square&logo=github)](https://github.com/Shanthipriya20) | +| 5 | **Anjali Jaiswal** | 35 | [![GitHub](https://img.shields.io/badge/-anjalijaiswal08-181717?style=flat-square&logo=github)](https://github.com/anjalijaiswal08) | +| 6 | **Pranav P** | 34 | [![GitHub](https://img.shields.io/badge/-pranavsdreams-181717?style=flat-square&logo=github)](https://github.com/pranavsdreams) | +| 7 | **Annesha Dey** | 33 | [![GitHub](https://img.shields.io/badge/-AD20047-181717?style=flat-square&logo=github)](https://github.com/AD20047) | +| 8 | **Sunil Shetye** | 33 | [![GitHub](https://img.shields.io/badge/-sunilshetye-181717?style=flat-square&logo=github)](https://github.com/sunilshetye) | +| 9 | **Hariom Thakur** | 28 | [![GitHub](https://img.shields.io/badge/-hariomthakur-181717?style=flat-square&logo=github)](https://github.com/hariomthakur) | +| 10 | **Aditya Minocha** | 23 | [![GitHub](https://img.shields.io/badge/-adityaminocha-181717?style=flat-square&logo=github)](https://github.com/adityaminocha) | +| 11 | **R. Krishnan** | 23 | [![GitHub](https://img.shields.io/badge/-rkrish00568-181717?style=flat-square&logo=github)](https://github.com/rkrish00568) | +| 12 | **Ganderla Chaithanya** | 22 | [![GitHub](https://img.shields.io/badge/-GanderlaChaithanya-181717?style=flat-square&logo=github)](https://github.com/GanderlaChaithanya) | +| 13 | **Anwesha** | 21 | [![GitHub](https://img.shields.io/badge/-Anwesha06-181717?style=flat-square&logo=github)](https://github.com/Anwesha06) | + +### ๐Ÿ“ˆ Repository Growth & Activity + +

+ + + + + Star History Chart + + +

+ +

+ + eSim Repo Stats + +

+ +--- + +## ๐Ÿš€ Getting Started + +1. **Find an issue** โ€” Browse the [issue tracker](https://github.com/fossee/esim/issues) for bugs or features you'd like to work on +2. **Claim it** โ€” Comment on the issue with *"I would like to work on this"* so maintainers can assign it to you +3. **Fork & code** โ€” Follow the [Pull Request Workflow](#-pull-request-workflow) below +4. **Submit a PR** โ€” Every pull request **must reference an issue** + +> **๐Ÿ’ก First-time contributor?** Look for issues labeled [`good first issue`](https://github.com/fossee/esim/labels/good%20first%20issue) โ€” these are beginner-friendly tasks curated by maintainers. + +--- + +## ๐Ÿค Ways to Contribute + +| Type | Description | Difficulty | +|:-----|:------------|:----------:| +| ๐Ÿ› **Bug Fixes** | Fix reported issues from the [issue tracker](https://github.com/fossee/esim/issues) | โญ โ€“ โญโญ | +| โœจ **New Features** | Implement new functionality or enhance existing modules | โญโญ โ€“ โญโญโญ | +| ๐Ÿ“ **Documentation** | Improve docs, docstrings, README, or Sphinx docs in `docs/` | โญ | +| ๐Ÿงช **Testing** | Add test cases or report bugs with reproducible steps | โญ โ€“ โญโญ | +| ๐ŸŽจ **UI/UX** | Improve the PyQt6 user interface and user experience | โญโญ | +| ๐Ÿ“š **Examples** | Add new example circuits to the `Examples/` directory | โญ | +| ๐Ÿ“ฆ **Packaging** | Help with Flatpak, Snap, AppImage, or Docker builds | โญโญโญ | +| ๐ŸŒ **Integration** | Improve KiCad, Ngspice, GHDL, or Makerchip integration | โญโญโญ | + +--- + +## ๐Ÿ”ง Development Setup + +### Prerequisites + +| Tool | Version | Purpose | +|:-----|:--------|:--------| +| Python | 3.6+ | Core application runtime | +| PyQt6 | โ‰ฅ 6.5.0 | GUI framework | +| KiCad | Latest | Schematic & PCB editor | +| Ngspice | 35+ | Circuit simulation engine | +| Git | Latest | Version control | + +### Setup Steps + +```bash +# 1. Fork the repository on GitHub, then clone your fork +git clone https://github.com//eSim.git +cd eSim + +# 2. Install Python dependencies +pip install -r requirements.txt + +# 3. (Optional) Install additional tools for full functionality +# See INSTALL file for KiCad, Ngspice, and GHDL setup +``` + +--- + +## ๐Ÿ“ฌ Pull Request Workflow + +```mermaid +flowchart LR + A["๐Ÿด Fork"] --> B["๐ŸŒฟ Branch"] + B --> C["๐Ÿ’ป Code"] + C --> D["โœ… Commit"] + D --> E["โฌ†๏ธ Push"] + E --> F["๐Ÿ“ฌ PR"] + + style A fill:#6c5ce7,color:#fff + style B fill:#00b894,color:#fff + style C fill:#0984e3,color:#fff + style D fill:#fdcb6e,color:#333 + style E fill:#e17055,color:#fff + style F fill:#d63031,color:#fff +``` + +### Step-by-Step + +**1. Fork & Clone** + +```bash +# Fork via GitHub UI, then: +git clone https://github.com//eSim.git +cd eSim +``` + +**2. Create a Feature Branch** + +```bash +# Always branch from master โ€” never commit directly to master +git checkout -b fix/issue-42-rectifier-bug +``` + +> **Branch naming convention:** +> - `fix/issue--short-description` โ€” for bug fixes +> - `feature/issue--short-description` โ€” for new features +> - `docs/short-description` โ€” for documentation changes + +**3. Make Your Changes** + +- Write clean, well-commented code +- Follow the [Code Style](#-code-style) guidelines +- Test your changes locally + +**4. Commit Your Changes** + +```bash +git add +git commit -m "Fixes issue #42 - Fix half-wave rectifier simulation error" +``` + +> โš ๏ธ **One commit per pull request.** If you have multiple commits, squash them before submitting. + +**5. Push & Open a PR** + +```bash +git push origin fix/issue-42-rectifier-bug +``` + +Then open a Pull Request on GitHub targeting the `master` branch. + +--- + +## ๐Ÿ“ Commit Guidelines + +### Commit Message Format + +``` +Fixes issue # - + + +- What was the problem? +- What did you change? +- Why this approach? +``` + +### Examples + +``` +Fixes issue #42 - Fix AC analysis crash when frequency range is empty + +The AC analysis module threw an unhandled exception when the user +left the frequency range fields blank. Added input validation in +Analysis.py to show an error dialog instead of crashing. +``` + +``` +Fixes issue #87 - Add 4-bit counter example circuit + +Added a new example project under Examples/4_bit_counter with +schematic, netlist, and simulation configuration files. +``` + +### Rules + +| Rule | Details | +|:-----|:--------| +| **Reference an issue** | Every PR must link to an existing GitHub issue | +| **One commit per PR** | Squash multiple commits before submitting | +| **Clear subject line** | Format: `Fixes issue #N - Brief description` | +| **Add a body** | Explain *what* you changed and *why* | + +--- + +## ๐ŸŽจ Code Style + +eSim follows **[PEP 8](https://www.python.org/dev/peps/pep-0008/)** โ€” the Python community's style guide. + +| Rule | Details | +|:-----|:--------| +| **Style** | PEP 8 compliant | +| **Indentation** | 4 spaces (no tabs) | +| **Line length** | Max 79 characters | +| **Docstrings** | Required for all public functions and classes | +| **Imports** | Group by stdlib โ†’ third-party โ†’ local; one per line | +| **Naming** | `snake_case` for functions/variables, `PascalCase` for classes | + +### Linting + +```bash +# Check your code before submitting +flake8 src/ +``` + +--- + +## ๐Ÿ› Reporting Bugs + +Found a bug? Please [open an issue](https://github.com/fossee/esim/issues/new) with: + +1. **Title** โ€” Clear, concise summary of the problem +2. **Environment** โ€” OS, Python version, eSim version +3. **Steps to reproduce** โ€” Exact steps to trigger the bug +4. **Expected behavior** โ€” What should happen +5. **Actual behavior** โ€” What actually happens +6. **Screenshots/Logs** โ€” If applicable, attach console output or screenshots + +--- + +## ๐Ÿ’ก Requesting Features + +Have an idea for a new feature? [Open an issue](https://github.com/fossee/esim/issues/new) with: + +1. **Title** โ€” Prefix with `[Feature Request]` +2. **Problem** โ€” What problem does this solve? +3. **Proposed solution** โ€” How should it work? +4. **Alternatives considered** โ€” Any other approaches you thought of? +5. **Additional context** โ€” Mockups, references, or related issues + +--- + +## ๐Ÿ’ฌ Community + +| Channel | Link | +|:--------|:-----| +| ๐Ÿ“ง **Email** | [contact-esim@fossee.in](mailto:contact-esim@fossee.in) | +| ๐Ÿ’ฌ **Forum** | [forums.fossee.in](https://forums.fossee.in/) | +| ๐ŸŒ **Website** | [esim.fossee.in](https://esim.fossee.in/) | +| ๐Ÿ“š **Dev Docs** | [esim.readthedocs.io](https://esim.readthedocs.io/en/latest/) | + +--- + +

+ Thank you for contributing to eSim! โค๏ธ
+ Every contribution, no matter how small, makes a difference. +

diff --git a/CONTRIBUTION.md b/CONTRIBUTION.md deleted file mode 100644 index ce6338b78..000000000 --- a/CONTRIBUTION.md +++ /dev/null @@ -1,24 +0,0 @@ -## Contribution -If you want to add any enhancement feature or have found any bug and want to work on it, please open a new issue regarding that and put a message "I would like to work on it." And make sure every pull request should reference to an issue. - -#### Points on how to make pull request -* You need to fork this repository to your account. - -* Clone it using ``` git clone https://github.com/FOSSEE/eSim.git ``` - -* Always create a new branch before making any changes. You can create new branch using ```git branch ``` - -* Checkout into your new branch using ```git checkout ``` - -* Make changes to code and once you are done use ```git add ```. Now commit changes with proper message using ```git commit -m "Your message"```. - -* After commiting your changes push your changes to your forked repository using ```git push origin ``` -Finally create a pull request from github. -There should be only one commit per pull request. - - -* Please follow below guidelines for your commit message : - * Commit message should be like : Fixes issue #[issue_number] - one line message of work you did. - * After commit message, there should be a commit body where you can mention what you did in short or in detail. - -Please follow above method to file pull requests. diff --git a/README.md b/README.md index 62b294793..2a1ee4c82 100644 --- a/README.md +++ b/README.md @@ -1,61 +1,577 @@ -![GitHub release (latest by date)](https://img.shields.io/github/v/release/fossee/esim?color=blueviolet) -![GitHub](https://img.shields.io/github/license/fossee/esim?color=blue) -![Python](https://img.shields.io/badge/python-v3.6+-blue.svg) -[![PEP8](https://img.shields.io/badge/code%20style-pep8-orange.svg)](https://www.python.org/dev/peps/pep-0008/) -![Travis (.com)](https://img.shields.io/travis/com/Eyantra698Sumanto/eSim) -[![Documentation Status](https://readthedocs.org/projects/esim/badge/?version=latest)](https://esim.readthedocs.io/en/latest/?badge=latest) -[![GitHub forks](https://img.shields.io/github/forks/fossee/esim)](https://github.com/fossee/esim/network) -[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](https://github.com/fossee/esim) -![GitHub contributors](https://img.shields.io/github/contributors/fossee/esim) - -## eSim - -[eSim](https://esim.fossee.in/) is an open source EDA tool for circuit design, simulation, analysis and PCB design, developed by [FOSSEE Team](https://www.fossee.in/) at [IIT Bombay](https://www.iitb.ac.in/). -It is an integrated tool build using open source softwares such as KiCad, Ngspice and GHDL. - -## Releases and Installation -eSim is released for the following distributions (operating systems): -* **All Linux distributions** (Fedora, Ubuntu, openSUSE, Arch, etc.) via Flatpak -* Ubuntu 22.04, 23.04, 24.04 LTS versions (native installer) -* Microsoft Windows 8, 10 and 11 - -**For Fedora and other Linux distributions:** Use the Flatpak method for easy installation: +

+ eSim Logo +

+ +

eSim โ€” Electronic Circuit Simulation

+ +

+ An Open-Source EDA Tool for Circuit Design, Simulation, Analysis & PCB Design
+ Developed by FOSSEE Team at IIT Bombay +

+ +

+ Release + License + Python + PyQt6 +

+ +

+ Docs + Forks + Stars + Issues + PRs Welcome + Contributors + Code Style +

+ +

+ Features โ€ข + Architecture โ€ข + Installation โ€ข + Project Structure โ€ข + Tech Stack โ€ข + Contributing โ€ข + License +

+ +--- + +## ๐Ÿ“– About + +**eSim** is a free and open-source EDA (Electronic Design Automation) tool for circuit design, simulation, analysis, and PCB design. It is an integrated tool built using open-source software such as **KiCad**, **Ngspice**, **GHDL**, and **Makerchip**, providing a seamless workflow from schematic capture to simulation results. + +eSim is designed for electronics engineers, students, educators, and hobbyists who want a powerful yet cost-free alternative to proprietary EDA tools. It supports analog, digital, and **mixed-signal simulations**, including microcontroller integration. + +

+ ๐Ÿ“ฅ Download: v2.5 Release   |   + ๐Ÿ“„ Manual: PDF Guide   |   + ๐Ÿ“š Docs: ReadTheDocs +

+ +--- + +## โœจ Features + +| Category | Feature | Description | +|:---------|:--------|:------------| +| โ€ข **Design** | Schematic Capture | Draw circuit schematics using KiCad's schematic editor with eSim's custom symbol libraries | +| โ€ข **Conversion** | KiCad to Ngspice | Convert KiCad schematics to Ngspice-compatible netlists for simulation | +| โ€ข **Simulation** | Ngspice Engine | Run DC, AC, Transient, and other SPICE analyses with real-time interactive plots | +| โ€ข **Analysis** | Waveform Plotting | Visualize simulation results with matplotlib-based Python plots and Ngspice native plots | +| โ€ข **Model Editor** | Device Models | Create and edit SPICE device models (Diodes, BJTs, MOSFETs, JFETs, IGBTs, etc.) | +| โ€ข **Subcircuits** | Subcircuit Builder | Build, manage, and upload reusable subcircuit blocks | +| โ€ข **Mixed-Signal** | NGHDL Integration | Interface VHDL digital models (via GHDL) with analog Ngspice simulations | +| โ€ข **Verilog** | Makerchip + NgVeri | Use Makerchip IDE for Verilog/TL-Verilog design and convert to Ngspice models | +| โ€ข **PCB** | Layout Design | Design PCB layouts using KiCad's PCB editor with eSim's footprint libraries | +| โ€ข **Converters** | Schematic Import | Convert PSpice and LTSpice schematics/libraries to KiCad-compatible formats | +| โ€ข **Modelica** | Ngspice-to-Modelica | Convert Ngspice netlists to Modelica models for OpenModelica simulation | +| โ€ข **SKY130 PDK** | SkyWater 130nm | Support for SkyWater SKY130 open-source Process Design Kit | +| โ€ข **IHP PDK** | IHP OpenPDK | Integration with IHP SG13G2 open-source PDK for SiGe BiCMOS | + +--- + +## ๐Ÿ—๏ธ Architecture + +### High-Level System Architecture + +```mermaid +graph TB + %% Styling + classDef ui fill:#2A3F54,stroke:#1ABB9C,stroke-width:2px,color:#fff + classDef core fill:#3E536C,stroke:#3498DB,stroke-width:2px,color:#fff + classDef engine fill:#1F2D3D,stroke:#E74C3C,stroke-width:2px,color:#fff + classDef data fill:#E9F0F5,stroke:#95A5A6,stroke-width:1px,color:#333 + + subgraph UI ["User Interface (PyQt6)"] + A[Application Main Window]:::ui + PE[Project Explorer]:::ui + DA[Dock Area Workspace]:::ui + TE[Time Explorer]:::ui + CON[Console Widget]:::ui + + A --> PE & DA & TE & CON + end + + subgraph CORE ["Core Python Modules"] + K2N[KiCad-to-Ngspice]:::core + SIM[Ngspice Simulator]:::core + PLT[Matplotlib Plotter]:::core + ME[Model Editor]:::core + SC[Subcircuit Builder]:::core + + DA --> K2N & SIM & ME & SC + end + + subgraph INTEGRATION ["Mixed-Signal & External APIs"] + NGHDL[NGHDL Interface]:::core + MKR[Makerchip/NgVeri]:::core + MOD[Modelica Converter]:::core + CONV[PSpice/LTSpice Converter]:::core + + DA --> NGHDL & MKR & MOD & CONV + end + + subgraph ENGINES ["Simulation & EDA Engines"] + KICAD[KiCad Eeschema]:::engine + PCB[KiCad Pcbnew]:::engine + NGSPICE[Ngspice Backend]:::engine + GHDL[GHDL Simulator]:::engine + VER[Verilator]:::engine + OM[OpenModelica]:::engine + end + + %% Data Flow + XML[(Netlist / XML)]:::data + RAW[(Raw Data / txt)]:::data + VHDL[(VHDL Files)]:::data + + K2N -- Generates --> XML + XML -- Consumed by --> NGSPICE + SIM -- Triggers --> NGSPICE + NGSPICE -- Outputs --> RAW + RAW -- Parsed by --> PLT + + NGHDL -- Compiles --> VHDL + VHDL -- Simulated by --> GHDL + GHDL -- Co-simulates --> NGSPICE + + MKR -- Verilog/TL-V --> VER + + KICAD -- Schematic --> K2N + KICAD -- Netlist --> PCB +``` + +*For detailed simulation workflows, sub-system operations, and system flowcharts, please refer to our [Architecture & Workflows Guide](ARCHITECTURE.md).* + +--- + +## ๐Ÿ“‚ Project Structure + +### Root Directory + +| Path | Type | Description | +|:-----|:-----|:------------| +| `src/` | ๐Ÿ“ Directory | **Core application source code** โ€” all Python modules for the eSim GUI and backend | +| `library/` | ๐Ÿ“ Directory | **Component libraries** โ€” device models, KiCad symbols, subcircuits, and PDK data | +| `nghdl/` | ๐Ÿ“ Directory | **NGHDL module** โ€” Ngspice-GHDL interface for mixed-signal VHDL simulation | +| `Examples/` | ๐Ÿ“ Directory | **42 example projects** โ€” ready-to-simulate circuits (RC, BJT, Op-Amp, Mixed-Signal, etc.) | +| `images/` | ๐Ÿ“ Directory | **UI assets** โ€” application icons, toolbar images, logos, and splash screen | +| `scripts/` | ๐Ÿ“ Directory | **Launch & setup scripts** โ€” shell scripts for Linux installation and launching | +| `docs/` | ๐Ÿ“ Directory | **Sphinx documentation** โ€” RST files for ReadTheDocs auto-generated developer docs | +| `code/` | ๐Ÿ“ Directory | **Sphinx autodoc config** โ€” mirrors `src/` structure for API documentation generation | +| `flatpak/` | ๐Ÿ“ Directory | **Flatpak packaging** โ€” manifest and wrapper scripts for universal Linux distribution | +| `appimage/` | ๐Ÿ“ Directory | **AppImage packaging** โ€” build scripts for portable Linux AppImage bundles | +| `docker-launcher/` | ๐Ÿ“ Directory | **Docker support** โ€” Dockerfile, launcher script, and CI workflows for containerized builds | +| `snap/` | ๐Ÿ“ Directory | **Snap packaging** โ€” `snapcraft.yaml` for building Snap packages | +| `ihp/` | ๐Ÿ“ Directory | **IHP PDK integration** โ€” install script for IHP SG13G2 open-source SiGe BiCMOS PDK | +| `patches/` | ๐Ÿ“ Directory | **Source patches** โ€” patch files for modifying Ngspice/GHDL behavior in sandboxed environments | +| `.github/` | ๐Ÿ“ Directory | **GitHub config** โ€” issue templates, PR templates, and CI/CD workflow definitions | +| `setup.py` | ๐Ÿ“„ File | Python package configuration for pip installation | +| `requirements.txt` | ๐Ÿ“„ File | Python dependency list (PyQt6, matplotlib, numpy, scipy, etc.) | +| `conf.py` | ๐Ÿ“„ File | Sphinx documentation configuration | +| `VERSION` | ๐Ÿ“„ File | Current version identifier (`2.5`) | +| `INSTALL` | ๐Ÿ“„ File | Detailed multi-platform installation instructions | +| `LICENSE` | ๐Ÿ“„ File | GNU General Public License v3.0 | + +### Source Code (`src/`) โ€” Detailed Module Breakdown + +``` +src/ +โ”œโ”€โ”€ frontEnd/ # GUI & Main Application +โ”‚ โ”œโ”€โ”€ Application.py # Main window, toolbar setup, menu actions (960 lines) +โ”‚ โ”œโ”€โ”€ DockArea.py # Tabbed dock workspace for editors/simulators (24K) +โ”‚ โ”œโ”€โ”€ ProjectExplorer.py # File tree browser for project navigation (20K) +โ”‚ โ”œโ”€โ”€ TimeExplorer.py # Project snapshot/version management (8K) +โ”‚ โ”œโ”€โ”€ TerminalUi.py # Embedded terminal widget (5K) +โ”‚ โ””โ”€โ”€ Workspace.py # Workspace selection dialog (6K) +โ”‚ +โ”œโ”€โ”€ kicadtoNgspice/ # KiCad-to-Ngspice Conversion Engine +โ”‚ โ”œโ”€โ”€ KicadtoNgspice.py # Main conversion controller & UI (41K) +โ”‚ โ”œโ”€โ”€ Convert.py # Netlist parsing and SPICE generation (40K) +โ”‚ โ”œโ”€โ”€ Analysis.py # Analysis type configuration (DC, AC, Transient) (32K) +โ”‚ โ”œโ”€โ”€ DeviceModel.py # Device model parameter handling (56K) +โ”‚ โ”œโ”€โ”€ Source.py # Source component configuration (15K) +โ”‚ โ”œโ”€โ”€ Processing.py # Netlist processing pipeline (26K) +โ”‚ โ”œโ”€โ”€ SubcircuitTab.py # Subcircuit selection in converter (9K) +โ”‚ โ”œโ”€โ”€ Microcontroller.py # Microcontroller model support (10K) +โ”‚ โ”œโ”€โ”€ Model.py # Model file handling (6K) +โ”‚ โ””โ”€โ”€ TrackWidget.py # UI tracking widget (1K) +โ”‚ +โ”œโ”€โ”€ ngspiceSimulation/ # Simulation Engine & Plotting +โ”‚ โ”œโ”€โ”€ NgspiceWidget.py # Ngspice process management & execution (16K) +โ”‚ โ”œโ”€โ”€ plot_window.py # matplotlib-based waveform plotter (66K) +โ”‚ โ”œโ”€โ”€ plotting_widgets.py # Custom plot controls and widgets (8K) +โ”‚ โ””โ”€โ”€ data_extraction.py # Simulation data file parser (11K) +โ”‚ +โ”œโ”€โ”€ modelEditor/ # SPICE Model Editor +โ”‚ โ””โ”€โ”€ ModelEditor.py # GUI for creating/editing device models (33K) +โ”‚ +โ”œโ”€โ”€ subcircuit/ # Subcircuit Management +โ”‚ โ”œโ”€โ”€ Subcircuit.py # Subcircuit manager main window (3K) +โ”‚ โ”œโ”€โ”€ newSub.py # Create new subcircuit (3K) +โ”‚ โ”œโ”€โ”€ openSub.py # Open existing subcircuit (1K) +โ”‚ โ”œโ”€โ”€ uploadSub.py # Upload subcircuit to library (4K) +โ”‚ โ””โ”€โ”€ convertSub.py # Subcircuit format conversion (2K) +โ”‚ +โ”œโ”€โ”€ maker/ # Makerchip & NgVeri Integration +โ”‚ โ”œโ”€โ”€ Maker.py # Makerchip IDE integration (23K) +โ”‚ โ”œโ”€โ”€ NgVeri.py # Verilog-to-Ngspice model generator (17K) +โ”‚ โ”œโ”€โ”€ ModelGeneration.py # Auto model generation pipeline (48K) +โ”‚ โ”œโ”€โ”€ createkicad.py # KiCad symbol creation for models (14K) +โ”‚ โ”œโ”€โ”€ makerchip.py # Makerchip cloud IDE connector (3K) +โ”‚ โ””โ”€โ”€ Appconfig.py # Maker-specific configuration (2K) +โ”‚ +โ”œโ”€โ”€ converter/ # Schematic Format Converters +โ”‚ โ”œโ”€โ”€ pspiceToKicad.py # PSpice schematic importer (5K) +โ”‚ โ”œโ”€โ”€ ltspiceToKicad.py # LTSpice schematic importer (6K) +โ”‚ โ”œโ”€โ”€ libConverter.py # Library format converter (3K) +โ”‚ โ”œโ”€โ”€ LtspiceLibConverter.py # LTSpice library converter (4K) +โ”‚ โ”œโ”€โ”€ browseSchematic.py # File browser for schematics (550B) +โ”‚ โ”œโ”€โ”€ LTSpiceToKiCadConverter/ # LTSpice conversion engine +โ”‚ โ””โ”€โ”€ schematic_converters/ # Additional schematic parsers +โ”‚ +โ”œโ”€โ”€ ngspicetoModelica/ # ๐Ÿ“ Ngspice-to-Modelica Converter +โ”‚ โ”œโ”€โ”€ NgspicetoModelica.py # Core conversion engine (54K) +โ”‚ โ””โ”€โ”€ ModelicaUI.py # Modelica converter GUI (10K) +โ”‚ +โ”œโ”€โ”€ configuration/ # โš™๏ธ Application Configuration +โ”‚ โ””โ”€โ”€ Appconfig.py # Global config, paths, process tracking (4K) +โ”‚ +โ”œโ”€โ”€ projManagement/ # ๐Ÿ“‹ Project Management +โ”‚ โ”œโ”€โ”€ Kicad.py # KiCad integration (launch schematic/PCB editor) (9K) +โ”‚ โ”œโ”€โ”€ Validation.py # Tool and file validation utilities (7K) +โ”‚ โ”œโ”€โ”€ Worker.py # Background process/thread management (3K) +โ”‚ โ”œโ”€โ”€ newProject.py # New project creation logic (5K) +โ”‚ โ””โ”€โ”€ openProject.py # Open existing project logic (3K) +โ”‚ +โ””โ”€โ”€ browser/ # ๐Ÿ“– Help & Documentation + โ”œโ”€โ”€ Welcome.py # Welcome screen display (941B) + โ””โ”€โ”€ UserManual.py # User manual viewer (731B) +``` + +### Library Directory (`library/`) โ€” Component Libraries + +| Path | Description | +|:-----|:------------| +| `deviceModelLibrary/` | SPICE device models organized by type: Diode, BJT (Transistor), MOSFET (MOS), JFET, IGBT, LEDs, Switches, Transmission Lines, and user libraries | +| `kicadLibrary/` | KiCad schematic symbols (`eSim-symbols/`), footprint libraries (`kicad_eSim-Library/`), and project templates | +| `SubcircuitLibrary/` | Reusable subcircuit definitions for common circuit blocks | +| `modelParamXML/` | XML parameter definitions for device model editor forms | +| `ngspicetoModelica/` | Mapping files for Ngspice-to-Modelica component translation | +| `browser/` | HTML/resource files for the built-in help browser | +| `tlv/` | TL-Verilog support files for Makerchip integration | + +### NGHDL Module (`nghdl/`) โ€” Mixed-Signal Interface + +| Path | Description | +|:-----|:------------| +| `src/ngspice_ghdl.py` | Core interface: manages VHDL upload, GHDL compilation, and Ngspice code model creation | +| `src/model_generation.py` | Generates C code models from VHDL port definitions for Ngspice | +| `src/createKicadLibrary.py` | Auto-generates KiCad symbols from VHDL entity definitions | +| `src/ghdlserver/` | GHDL foreign interface server for inter-process communication with Ngspice | +| `install-nghdl.sh` | Automated installer for NGHDL dependencies (GHDL, Verilator, Ngspice) | +| `Example/` | Example VHDL models and mixed-signal simulation projects | + +--- + +## ๐Ÿ› ๏ธ Tech Stack + +| Layer | Technology | Purpose | +|:------|:-----------|:--------| +| **Language** | ![Python](https://img.shields.io/badge/Python_3.6+-3776AB?style=flat-square&logo=python&logoColor=white) | Core application logic | +| **GUI Framework** | ![PyQt6](https://img.shields.io/badge/PyQt6-41CD52?style=flat-square&logo=qt&logoColor=white) | Desktop GUI (windows, dialogs, toolbars, docks) | +| **Plotting** | ![matplotlib](https://img.shields.io/badge/matplotlib-11557c?style=flat-square&logo=plotly&logoColor=white) | Waveform visualization and data plotting | +| **Numerics** | ![NumPy](https://img.shields.io/badge/NumPy-013243?style=flat-square&logo=numpy&logoColor=white) ![SciPy](https://img.shields.io/badge/SciPy-8CAAE6?style=flat-square&logo=scipy&logoColor=white) | Numerical computation and signal processing | +| **Schematic & PCB** | ![KiCad](https://img.shields.io/badge/KiCad-314CB0?style=flat-square&logo=kicad&logoColor=white) | Schematic capture and PCB layout design | +| **SPICE Simulation** | ![Ngspice](https://img.shields.io/badge/Ngspice-darkgreen?style=flat-square) | Analog/mixed-signal circuit simulation engine | +| **VHDL Simulation** | ![GHDL](https://img.shields.io/badge/GHDL-2ea44f?style=flat-square) | VHDL analysis, compilation, and simulation | +| **Verilog** | ![Verilator](https://img.shields.io/badge/Verilator-527FFF?style=flat-square) | Verilog HDL simulation and model generation | +| **HDL Cloud IDE** | ![Makerchip](https://img.shields.io/badge/Makerchip-FF6B6B?style=flat-square) | Online Verilog/TL-Verilog IDE integration | +| **Modelica** | ![OpenModelica](https://img.shields.io/badge/OpenModelica-1B2A49?style=flat-square) | Multi-domain modeling and simulation | +| **PDK** | ![SkyWater](https://img.shields.io/badge/SKY130_PDK-blue?style=flat-square) | SkyWater 130nm open-source process design kit | +| **Packaging** | ![Flatpak](https://img.shields.io/badge/Flatpak-4A86CF?style=flat-square&logo=flatpak&logoColor=white) ![Docker](https://img.shields.io/badge/Docker-2496ED?style=flat-square&logo=docker&logoColor=white) | Cross-distribution Linux packaging & containers | +| **Documentation** | ![Sphinx](https://img.shields.io/badge/Sphinx-000000?style=flat-square&logo=sphinx&logoColor=white) ![RTD](https://img.shields.io/badge/ReadTheDocs-8CA1AF?style=flat-square&logo=readthedocs&logoColor=white) | Auto-generated developer documentation | +| **CI/CD** | ![GitHub Actions](https://img.shields.io/badge/GitHub_Actions-2088FF?style=flat-square&logo=githubactions&logoColor=white) | Automated builds, Docker images, and releases | + +### Key Python Dependencies + +| Package | Version | Purpose | +|:--------|:--------|:--------| +| `PyQt6` | โ‰ฅ 6.5.0 | GUI framework | +| `matplotlib` | 3.7.5 | Waveform plotting | +| `numpy` | 1.24.4 | Numerical computation | +| `scipy` | 1.10.1 | Scientific computing | +| `pillow` | 12.2.0 | Image processing | +| `hdlparse` | 1.0.4 | HDL file parsing | +| `watchdog` | 4.0.2 | File system monitoring | +| `pyparsing` | 3.1.4 | Parser building toolkit | + +--- + +## ๐Ÿ’ป Installation + +### Supported Platforms + +| Platform | Method | Status | +|:---------|:-------|:------:| +| **All Linux** (Fedora, Ubuntu, openSUSE, Arch, etc.) | Flatpak | โœ… Recommended | +| **Ubuntu** 22.04 / 23.04 / 24.04 LTS | Native Installer | โœ… Supported | +| **Windows** 8 / 10 / 11 | Windows Installer | โœ… Supported | +| **Docker** (any OS) | Docker Container | โœ… Supported | + +### ๐Ÿง Linux โ€” Flatpak (Recommended for all distributions) + ```bash +# 1. Install Flatpak (if not already installed) +# Fedora: sudo dnf install flatpak +# Ubuntu: sudo apt install flatpak +# openSUSE: sudo zypper install flatpak +# Arch: sudo pacman -S flatpak + +# 2. Add Flathub repository +flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo + +# 3. Install eSim flatpak install flathub org.fossee.eSim + +# 4. Run eSim flatpak run org.fossee.eSim ``` -Or build from source: `flatpak-builder build flatpak/org.fossee.eSim.yml --install --user` -**For Ubuntu and Windows:** Please refer to [downloads](https://esim.fossee.in/downloads) for installation guidelines. +> **โš ๏ธ Flatpak Limitations:** NGHDL, Makerchip, and SKY130 PDK are not included in the Flatpak build. For full mixed-signal support, use the Ubuntu native installer. + +### ๐Ÿง Ubuntu โ€” Native Installer + +```bash +# 1. Download and extract eSim +unzip eSim-2.5.zip +cd eSim-2.5 + +# 2. Install eSim with all dependencies +chmod +x install-eSim.sh +./install-eSim.sh --install + +# 3. Run eSim +esim +# Or double-click the eSim desktop icon +``` + +### ๐ŸชŸ Windows + +1. Download the eSim installer from [esim.fossee.in/downloads](https://esim.fossee.in/downloads) +2. Disable antivirus temporarily (if required) +3. **Important:** Remove MinGW/MSYS from the PATH environment variable if previously installed +4. Run the installer and follow the on-screen instructions +5. Launch eSim from the Start Menu or desktop shortcut + +### ๐Ÿ‹ Docker + +Refer to the [Docker Launcher README](docker-launcher/README.md) for instructions on running eSim in a containerized environment. + +### ๐Ÿ“ฆ Build from Source (Flatpak) + +```bash +cd eSim +flatpak-builder build flatpak/org.fossee.eSim.yml --install --user +``` + +> ๐Ÿ“– For comprehensive installation instructions, see the [INSTALL](INSTALL) file. + +--- + +## ๐Ÿ”„ CI/CD & Packaging + +| Workflow | File | Purpose | +|:---------|:-----|:--------| +| Docker Image Build | `.github/workflows/docker-image.yml` | Builds and publishes the eSim Docker image | +| Docker Launcher Build | `.github/workflows/docker-launcher-build.yml` | Builds the cross-platform Python launcher | +| Ubuntu Release | `.github/workflows/release_ubuntu.yml` | Automated Ubuntu `.deb` package builds | + +| Packaging Format | Directory | Description | +|:-----------------|:----------|:------------| +| Flatpak | `flatpak/` | Universal Linux package via Flathub | +| AppImage | `appimage/` | Portable single-file Linux executable | +| Snap | `snap/` | Ubuntu Snap Store package | +| Docker | `docker-launcher/` | Containerized distribution with GUI forwarding | + +--- + +## ๐Ÿ“‹ Example Projects + +eSim ships with **42 ready-to-simulate example projects** in the `Examples/` directory: + +
+๐Ÿ“‚ Click to expand full example list + +| # | Category | Example | Description | +|:-:|:---------|:--------|:------------| +| 1 | ๐Ÿ”Œ Basic | `RC` | RC circuit transient analysis | +| 2 | ๐Ÿ”Œ Basic | `RL` | RL circuit transient analysis | +| 3 | ๐Ÿ”Œ Basic | `RLC` | RLC circuit resonance analysis | +| 4 | ๐Ÿ”Œ Basic | `Series_Resonance` | Series RLC resonance | +| 5 | ๐Ÿ”Œ Basic | `Parallel_Resonance` | Parallel RLC resonance | +| 6 | ๐Ÿ’ก Diodes | `Diode_characteristics` | Diode I-V characteristics | +| 7 | ๐Ÿ’ก Diodes | `Halfwave_Rectifier` | Half-wave rectifier circuit | +| 8 | ๐Ÿ’ก Diodes | `Fullwavebridgerectifier` | Full-wave bridge rectifier | +| 9 | ๐Ÿ’ก Diodes | `Clippercircuit` | Diode clipper circuit | +| 10 | ๐Ÿ’ก Diodes | `Clampercircuit` | Diode clamper circuit | +| 11 | ๐Ÿ’ก Diodes | `Zener_Characteristic` | Zener diode characteristics | +| 12 | ๐Ÿ”‹ BJT | `BJT_CE_config` | BJT common-emitter configuration | +| 13 | ๐Ÿ”‹ BJT | `BJT_CB_config` | BJT common-base configuration | +| 14 | ๐Ÿ”‹ BJT | `BJT_amplifier` | BJT amplifier circuit | +| 15 | ๐Ÿ”‹ BJT | `BJT_Biascircuit` | BJT bias circuit design | +| 16 | ๐Ÿ”‹ BJT | `BJT_Frequency_Response` | BJT frequency response analysis | +| 17 | ๐Ÿ“Ÿ FET | `FET_Characteristic` | FET output characteristics | +| 18 | ๐Ÿ“Ÿ FET | `FET_Amplifier` | FET amplifier circuit | +| 19 | ๐Ÿ“Ÿ FET | `FrequencyResponse_JFET` | JFET frequency response | +| 20 | ๐ŸŽ›๏ธ Op-Amp | `InvertingAmplifier` | Op-amp inverting amplifier (LM741) | +| 21 | ๐ŸŽ›๏ธ Op-Amp | `Differentiator` | Op-amp differentiator circuit | +| 22 | ๐ŸŽ›๏ธ Op-Amp | `Integrator_LM_741` | Op-amp integrator | +| 23 | ๐ŸŽ›๏ธ Op-Amp | `Precision_Rectifiers_using_LM741` | Precision rectifier circuits | +| 24 | ๐Ÿ”ฒ Digital | `BasicGates` | Basic logic gates | +| 25 | ๐Ÿ”ฒ Digital | `Half_Adder` | Half-adder circuit | +| 26 | ๐Ÿ”ฒ Digital | `FullAdder` | Full-adder circuit | +| 27 | ๐Ÿ”ฒ Digital | `JK_Flipflop` | JK flip-flop circuit | +| 28 | ๐Ÿ”ฒ Digital | `4_bit_JK_ff` | 4-bit JK flip-flop counter | +| 29 | ๐Ÿ”ฒ Digital | `CMOS_NAND_Gate` | CMOS NAND gate | +| 30 | ๐Ÿ”ฒ Digital | `Analysis_Of_Digital_IC` | Digital IC analysis | +| 31 | โฑ๏ธ Timers | `Astable555` | 555 timer astable mode | +| 32 | โฑ๏ธ Timers | `Monostable555` | 555 timer monostable mode | +| 33 | ๐Ÿ” SCR | `HalfwaveRectifier_SCR` | SCR half-wave rectifier | +| 34 | ๐Ÿ” SCR | `FullwaveRectifier_SCR` | SCR full-wave rectifier | +| 35 | ๐Ÿ“ก Filters | `High_Pass_Filter` | High-pass filter design | +| 36 | ๐Ÿ“ก Filters | `Low_Pass_Filter` | Low-pass filter design | +| 37 | โšก Regulators | `7805VoltageRegulator` | 7805 voltage regulator | +| 38 | โšก Regulators | `7812VoltageRegulator` | 7812 voltage regulator | +| 39 | ๐ŸŒ€ Oscillators | `UJT_Relaxation_Oscillator` | UJT relaxation oscillator | +| 40 | ๐ŸŒ€ Oscillators | `Phase_Locked_Loop` | PLL circuit | +| 41 | ๐Ÿ”€ Mixed-Signal | `Mixed_Signal` | Mixed analog-digital simulation (NGHDL) | +| 42 | ๐Ÿ”Œ Power | `Transformer` | Transformer circuit analysis | + +
+ +--- + +## ๐Ÿค Contributing + +We welcome contributions from the community! Whether it's bug fixes, new features, documentation improvements, or example circuits โ€” every contribution matters. + +### How to Contribute + +```mermaid +flowchart LR + A["๐Ÿด Fork
Repository"] --> B["๐ŸŒฟ Create
Branch"] + B --> C["๐Ÿ’ป Make
Changes"] + C --> D["โœ… Commit &
Push"] + D --> E["๐Ÿ“ฌ Open
Pull Request"] + + style A fill:#6c5ce7,color:#fff + style B fill:#00b894,color:#fff + style C fill:#0984e3,color:#fff + style D fill:#fdcb6e,color:#333 + style E fill:#e17055,color:#fff +``` + +1. **Fork** the repository to your GitHub account +2. **Clone** your fork: + ```bash + git clone https://github.com//eSim.git + ``` +3. **Create a new branch** for your changes: + ```bash + git checkout -b feature/your-feature-name + ``` +4. **Make your changes** and commit with a descriptive message: + ```bash + git add + git commit -m "Fixes issue # - Brief description of changes" + ``` +5. **Push** to your fork and **open a Pull Request**: + ```bash + git push origin feature/your-feature-name + ``` + +> **๐Ÿ“Œ Guidelines:** +> - Each PR should reference an existing issue +> - One commit per pull request (squash if needed) +> - Follow [PEP 8](https://www.python.org/dev/peps/pep-0008/) code style +> - Include a commit body describing what you changed and why + +For detailed contribution guidelines, see [CONTRIBUTING.md](CONTRIBUTING.md). + +--- + +## ๐Ÿ‘ฅ Contributors + +A huge thank you to all **149+ amazing people** who have contributed to eSim! ๐ŸŽ‰ + + + + + + + +
+ + Sumanto Kar
+ ๐Ÿฅ‡ Sumanto Kar +

+ Lead Maintainer ยท 320 commits +
+ + Rahul Paknikar
+ ๐Ÿฅˆ Rahul Paknikar +

+ 265 commits +
+ + Fahim Khan
+ ๐Ÿฅ‰ Fahim Khan +

+ 244 commits +
+ +

+ + Contributors + +

+ +

149+ contributors and counting! View all contributors โ†’

+ +--- -See [INSTALL](INSTALL) for detailed installation instructions for all platforms. +## ๐Ÿ“ž Contact & Support -## Features -* An open-source EDA tool. -* Perform Circuit Design. -* Perform Simulation. -* Perform Layout Design. -* Model and Subcircuit builder. -* Support for Mixed-Signal Simulations including Microcontrollers. -* eSim has been successfully ported to low cost FOSSEE [laptop](https://laptop.fossee.in/) +| Channel | Link | +|:--------|:-----| +| ๐Ÿ“ง **Email** | [contact-esim@fossee.in](mailto:contact-esim@fossee.in) | +| ๐ŸŒ **Website** | [esim.fossee.in](https://esim.fossee.in/) | +| ๐Ÿ’ฌ **Forum** | [forums.fossee.in](https://forums.fossee.in/) | +| ๐Ÿ“ž **Contact Page** | [esim.fossee.in/contact-us](https://esim.fossee.in/contact-us) | +| ๐Ÿ“„ **User Manual** | [eSim Manual v2.5 (PDF)](https://static.fossee.in/esim/manuals/eSim_Manual_2.5.pdf) | +| ๐Ÿ“š **Developer Docs** | [esim.readthedocs.io](https://esim.readthedocs.io/en/latest/) | -## Open-Source Softwares Used -* [Python](https://www.python.org/) -* [KiCad](https://www.kicad.org/) -* [NGHDL](https://github.com/fossee/nghdl/) -* [Makerchip](https://www.makerchip.com/) -* [SkyWater SKY130 PDK](https://skywater-pdk.rtfd.io/) +--- -## eSim Manual -To know everything about eSim, how it works and it's feature please download the manual from [here](https://static.fossee.in/esim/manuals/eSim_Manual_2.5.pdf) -## Contact -For any queries regarding eSim please write us on at this [email address](mailto:contact-esim@fossee.in). -Other Contact Details are available [here](https://esim.fossee.in/contact-us). +

+ Built with โค๏ธ by the FOSSEE Team at IIT Bombay +

-## Contribution -Please refer [here](https://github.com/FOSSEE/eSim/blob/master/CONTRIBUTION.md) for further details. +

+ + FOSSEE Logo + +      + + IIT Bombay Logo + +

-## License -It is developed by FOSSEE Team at IIT Bombay and is released under GNU GPL License. +

+ โญ If you find eSim useful, consider giving it a star on GitHub! +

diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000..a4d483fb3 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,56 @@ +# ๐Ÿ”’ Security Policy + +The eSim project takes security seriously. As a desktop EDA application handling various local file formats, external executables (Ngspice, GHDL, KiCad), and third-party models, we are committed to providing a secure environment for our users. + +--- + +## โœ… Supported Versions + +Security updates are provided for the latest stable release of eSim. Older releases may receive critical patches at the discretion of the core maintainers. + +| eSim Version | Status | Security Support | +| :--- | :--- | :--- | +| **2.5.x** | Current Stable | ๐ŸŸข Supported | +| **2.4.x** | Previous Stable | ๐ŸŸก Critical Fixes Only | +| **< 2.4** | End of Life | ๐Ÿ”ด Not Supported | + +--- + +## ๐Ÿšจ Reporting a Vulnerability + +If you discover a security vulnerability in eSim (or its integration with bundled tools like Ngspice or GHDL), **please do not report it through public GitHub issues.** Instead, we ask that you practice responsible disclosure. + +### Where to Report +Please email your findings to the core security team at: +๐Ÿ“ง **contact-esim@fossee.in** (Subject: `[SECURITY] Vulnerability Report`) + +### What to Include +To help us quickly understand and reproduce the issue, please include the following in your report: +- **Description:** A clear summary of the vulnerability and its potential impact (e.g., Local Privilege Escalation, Arbitrary Code Execution via crafted netlists). +- **Environment:** Your OS version, Python version, and the eSim version. +- **Reproduction Steps:** Step-by-step instructions, including any malicious/crafted `.cir`, `.sch`, or XML files used. +- **Proof of Concept (PoC):** Code snippets or a video demonstrating the exploit, if possible. + +### Expected Response Timeline +- **Acknowledgement:** We will acknowledge receipt of your vulnerability report within **48 hours**. +- **Assessment:** A preliminary assessment and timeline for a patch will be provided within **1 week**. +- **Fix & Disclosure:** We aim to release a patch and issue a CVE (if applicable) within **30-90 days**, depending on the severity and complexity of the issue. We will keep you updated throughout the process. + +--- + +## ๐Ÿ›ก๏ธ Scope of Security + +When reporting vulnerabilities, please keep in mind the architecture of eSim. + +### In-Scope (Please Report) +- Vulnerabilities in the core Python application (`src/` codebase). +- Arbitrary code execution triggered by opening malicious eSim projects, `.xml` files, or schematic files. +- Insecure handling of permissions or temporary directories during the KiCad-to-Ngspice conversion pipeline. + +### Out-of-Scope (Do Not Report Here) +- Upstream vulnerabilities strictly within the core engines of **KiCad**, **Ngspice**, or **GHDL** that are not exacerbated by eSim's wrapper implementations. Please report these directly to their respective upstream maintainers. +- Social engineering, phishing, or physical access attacks. + +--- + +*Thank you for helping keep the eSim community safe and secure!* diff --git a/docker-launcher/Dockerfile b/docker-launcher/Dockerfile index 4126177af..3f7fd18db 100644 --- a/docker-launcher/Dockerfile +++ b/docker-launcher/Dockerfile @@ -185,6 +185,8 @@ RUN wget https://github.com/verilator/verilator/archive/refs/tags/v4.210.tar.gz WORKDIR /tmp +RUN apt-get update && apt-get install -y libreadline-dev + RUN apt-get update && apt-get install -y \ make gnat clang \ zlib1g-dev autoconf g++ flex bison \ diff --git a/docs/IHP_OpenPDK_eSim.md b/docs/IHP_OpenPDK_eSim.md new file mode 100644 index 000000000..541fd0a58 --- /dev/null +++ b/docs/IHP_OpenPDK_eSim.md @@ -0,0 +1,52 @@ +# Integration of IHP OpenPDK with eSim + +## Overview + +This contribution demonstrates the integration of the IHP OpenPDK with eSim +to enable CMOS circuit design and simulation using open-source EDA tools. + +## Objective + +- Integrate IHP OpenPDK MOSFET SPICE models with eSim +- Design and simulate a CMOS inverter +- Perform DC sweep and transient analysis +- Validate inverter switching behavior + +## Tools Used + +- eSim (KiCad + NgSpice) +- IHP OpenPDK +- NgSpice + +## Circuit Implemented + +- CMOS Inverter using IHP NMOS and PMOS models +- Supply voltage: 1.8V + +## Simulations Performed + +### Transient Analysis + +- `.tran 0.1ns 20ns` +- Verified correct logical inversion + +### DC Sweep Analysis + +- `.dc VIN 0 1.8 0.01` +- Verified voltage transfer characteristics + +## Results + +- Correct inverter operation observed +- Threshold voltage near mid-supply +- Stable transient and DC behavior + +## Notes + +- Absolute paths were used for SPICE model inclusion +- Convergence issues resolved by reducing timestep + +## Report and Demo + +The detailed report and demonstration video are provided via links +in the corresponding GitHub Pull Request. diff --git a/ihp/.spiceinit b/ihp/.spiceinit new file mode 100644 index 000000000..f6b37b8ba --- /dev/null +++ b/ihp/.spiceinit @@ -0,0 +1,30 @@ +* a custom spiceinit file for IHP-Open-PDK + +* export PDK_ROOT and PDK environmental variables first and add it to your .bashrc +* export PDK_ROOT= installation_specific_directory/IHP-Open-PDK +* export PDK=ihp-sg13g2 + +setcs sourcepath = ( $sourcepath $PDK_ROOT/$PDK/libs.tech/ngspice/models $PDK_ROOT/ihp-sg13g2/libs.ref/sg13g2_stdcell/spice ) +setcs sourcepath = ( $sourcepath $PDK_ROOT/$PDK/libs.tech/ngspice/models $PDK_ROOT/ihp-sg13g2/libs.ref/sg13g2_io/spice ) +*echo $sourcepath + +*option tnom=28 +*option list + +* KLU solver still do not work correctly for every simulation +*option klu + +*option node +*option opts +*option warn=1 +*option maxwarns=10 +*option savecurrents + +*set ngbehavior=hsa +*set noinit + +* add OSDI +osdi '$PDK_ROOT/$PDK/libs.tech/ngspice/osdi/psp103.osdi' +osdi '$PDK_ROOT/$PDK/libs.tech/ngspice/osdi/psp103_nqs.osdi' +osdi '$PDK_ROOT/$PDK/libs.tech/ngspice/osdi/r3_cmc.osdi' +osdi '$PDK_ROOT/$PDK/libs.tech/ngspice/osdi/mosvar.osdi' diff --git a/ihp/example.cir b/ihp/example.cir new file mode 100644 index 000000000..5beba849d --- /dev/null +++ b/ihp/example.cir @@ -0,0 +1,30 @@ +* cir_run.cir -- NMOS DC Test using IHP SG13G2 TT Corner +.title NMOS DC Test using IHP SG13G2 TT Corner + +* Load the PDK corner (this defines the parameters and pulls in the model file) +.lib "/home/sumanto/ihp/IHP-Open-PDK/ihp-sg13g2/libs.tech/ngspice/models/cornerMOSlv.lib" mos_tt +* .lib "C:/Users/KEERTHANA/IHP-Open-PDK/ihp-sg13g2/libs.tech/ngspice/models/cornerMOSlv.lib" mos_tt + +* Global reference +.GLOBAL GND + +* Bias sources +Vgs net1 GND 0.4 +Vds net3 GND 1.0 +Vd net3 net2 0 + +.param temp=27 + +* Device under test +* Drain = net2, Gate = net1, Source = GND, Bulk = GND +XM1 net2 net1 GND GND sg13_lv_nmos w=1.0u l=0.13u ng=1 m=1 + +.control +* save all ; optional - you can keep or remove +op +let Id = 11 +print Id +print net1 +.endc + +.end diff --git a/ihp/ihp-install-script.sh b/ihp/ihp-install-script.sh index 9d3996803..5603dd6fa 100755 --- a/ihp/ihp-install-script.sh +++ b/ihp/ihp-install-script.sh @@ -232,7 +232,7 @@ configure_spiceinit() { log "โš ๏ธ NGHDL spinit not found at $NGHDL_SPINIT" log " Please install NGHDL first, then re-run IHP installation" fi - + mv $HOME/ihp/IHP-Open-PDK/ihp-sg13g2/libs.tech/ngspice/.spiceinit $HOME/ log "โœ… Spiceinit configuration complete" } diff --git a/ihp/install-ngspice-latest.sh b/ihp/install-ngspice-latest.sh new file mode 100644 index 000000000..11161e516 --- /dev/null +++ b/ihp/install-ngspice-latest.sh @@ -0,0 +1,30 @@ +#!/bin/bash +#===================================================================== +# FILE: install-ngspice-latest.sh +# +# USAGE: ./install-ngspice-latest.sh +# +# DESCRIPTION: Installation script for ngspice latest version +# OPTIONS: +# REQUIREMENTS: eSim/NGHDL must be installed first (for ngspice with OSDI) +# BUGS: --- +# NOTES: --- +# Contributors: Sumanto Kar +# ORGANIZATION: eSim Team, FOSSEE, IIT Bombay +# CREATED: 2026-06-28 +#===================================================================== + +### CONFIG ### + +sudo apt install build-essential git autoconf libtool automake libxaw7-dev libreadline-dev clang llvm lld cargo + +git clone git://git.code.sf.net/p/ngspice/ngspice +cd ngspice + +sudo mv /usr/bin/ngspice /usr/bin/ngspice35 + +./autogen.sh +mkdir release && cd release +../configure --with-x --enable-predictor --enable-osdi +make -j4 +sudo make install diff --git a/library/SubcircuitLibrary/54f64/3_and-cache.lib b/library/SubcircuitLibrary/54f64/3_and-cache.lib new file mode 100644 index 000000000..af0586415 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/3_and-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/54f64/3_and.cir b/library/SubcircuitLibrary/54f64/3_and.cir new file mode 100644 index 000000000..ba296cf01 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/3_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\3_and\3_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/26/19 18:42:57 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad4_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT + +.end diff --git a/library/SubcircuitLibrary/54f64/3_and.cir.out b/library/SubcircuitLibrary/54f64/3_and.cir.out new file mode 100644 index 000000000..d7cf79a07 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/3_and.cir.out @@ -0,0 +1,20 @@ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/54f64/3_and.pro b/library/SubcircuitLibrary/54f64/3_and.pro new file mode 100644 index 000000000..06813ca78 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/3_and.pro @@ -0,0 +1,43 @@ +update=Wed Mar 18 19:54:53 2020 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=eSim_Analog +LibName2=eSim_Devices +LibName3=eSim_Digital +LibName4=eSim_Hybrid +LibName5=eSim_Miscellaneous +LibName6=eSim_Plot +LibName7=eSim_Power +LibName8=eSim_Sources +LibName9=eSim_Subckt +LibName10=eSim_User diff --git a/library/SubcircuitLibrary/54f64/3_and.sch b/library/SubcircuitLibrary/54f64/3_and.sch new file mode 100644 index 000000000..d6ac89f95 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/3_and.sch @@ -0,0 +1,130 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:3_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U2 +U 1 1 5C9A24D8 +P 4250 2700 +F 0 "U2" H 4250 2700 60 0000 C CNN +F 1 "d_and" H 4300 2800 60 0000 C CNN +F 2 "" H 4250 2700 60 0000 C CNN +F 3 "" H 4250 2700 60 0000 C CNN + 1 4250 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 5C9A2538 +P 5150 2900 +F 0 "U3" H 5150 2900 60 0000 C CNN +F 1 "d_and" H 5200 3000 60 0000 C CNN +F 2 "" H 5150 2900 60 0000 C CNN +F 3 "" H 5150 2900 60 0000 C CNN + 1 5150 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 5C9A259A +P 3050 2600 +F 0 "U1" H 3100 2700 30 0000 C CNN +F 1 "PORT" H 3050 2600 30 0000 C CNN +F 2 "" H 3050 2600 60 0000 C CNN +F 3 "" H 3050 2600 60 0000 C CNN + 1 3050 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A25D9 +P 3050 2800 +F 0 "U1" H 3100 2900 30 0000 C CNN +F 1 "PORT" H 3050 2800 30 0000 C CNN +F 2 "" H 3050 2800 60 0000 C CNN +F 3 "" H 3050 2800 60 0000 C CNN + 2 3050 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A260A +P 3050 3100 +F 0 "U1" H 3100 3200 30 0000 C CNN +F 1 "PORT" H 3050 3100 30 0000 C CNN +F 2 "" H 3050 3100 60 0000 C CNN +F 3 "" H 3050 3100 60 0000 C CNN + 3 3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2637 +P 6900 2850 +F 0 "U1" H 6950 2950 30 0000 C CNN +F 1 "PORT" H 6900 2850 30 0000 C CNN +F 2 "" H 6900 2850 60 0000 C CNN +F 3 "" H 6900 2850 60 0000 C CNN + 4 6900 2850 + -1 0 0 1 +$EndComp +Wire Wire Line + 4700 2650 4700 2800 +Wire Wire Line + 5600 2850 6650 2850 +Wire Wire Line + 3800 2600 3300 2600 +Wire Wire Line + 3800 2700 3300 2700 +Wire Wire Line + 3300 2700 3300 2800 +Wire Wire Line + 3300 3100 4700 3100 +Wire Wire Line + 4700 3100 4700 2900 +Text Notes 3500 2600 0 60 ~ 12 +in1 +Text Notes 3450 2800 0 60 ~ 12 +in2\n +Text Notes 3500 3100 0 60 ~ 12 +in3 +Text Notes 6100 2850 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/54f64/3_and.sub b/library/SubcircuitLibrary/54f64/3_and.sub new file mode 100644 index 000000000..3d9120bb6 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/3_and.sub @@ -0,0 +1,14 @@ +* Subcircuit 3_and +.subckt 3_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/54f64/3_and_Previous_Values.xml b/library/SubcircuitLibrary/54f64/3_and_Previous_Values.xml new file mode 100644 index 000000000..abc5faaae --- /dev/null +++ b/library/SubcircuitLibrary/54f64/3_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/54f64/4_and-cache.lib b/library/SubcircuitLibrary/54f64/4_and-cache.lib new file mode 100644 index 000000000..60f1a83d4 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/4_and-cache.lib @@ -0,0 +1,79 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and-RESCUE-4_and +# +DEF 3_and-RESCUE-4_and X 0 40 Y Y 1 F N +F0 "X" 900 300 60 H V C CNN +F1 "3_and-RESCUE-4_and" 950 500 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 950 400 158 716 -716 0 1 0 N 1000 550 1000 250 +P 2 0 1 0 650 550 1000 550 N +P 3 0 1 0 650 550 650 250 1000 250 N +X in1 1 450 500 200 R 50 50 1 1 I +X in2 2 450 400 200 R 50 50 1 1 I +X in3 3 450 300 200 R 50 50 1 1 I +X out 4 1300 400 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/54f64/4_and-rescue.lib b/library/SubcircuitLibrary/54f64/4_and-rescue.lib new file mode 100644 index 000000000..e38330518 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/4_and-rescue.lib @@ -0,0 +1,22 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and-RESCUE-4_and +# +DEF 3_and-RESCUE-4_and X 0 40 Y Y 1 F N +F0 "X" 900 300 60 H V C CNN +F1 "3_and-RESCUE-4_and" 950 500 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 950 400 158 716 -716 0 1 0 N 1000 550 1000 250 +P 2 0 1 0 650 550 1000 550 N +P 3 0 1 0 650 550 650 250 1000 250 N +X in1 1 450 500 200 R 50 50 1 1 I +X in2 2 450 400 200 R 50 50 1 1 I +X in3 3 450 300 200 R 50 50 1 1 I +X out 4 1300 400 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/54f64/4_and.cir b/library/SubcircuitLibrary/54f64/4_and.cir new file mode 100644 index 000000000..fdf2e1074 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/4_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\4_and\4_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/01/19 13:09:58 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U2-Pad1_ 3_and +U2 Net-_U2-Pad1_ Net-_U1-Pad4_ Net-_U1-Pad5_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ PORT + +.end diff --git a/library/SubcircuitLibrary/54f64/4_and.cir.out b/library/SubcircuitLibrary/54f64/4_and.cir.out new file mode 100644 index 000000000..f40e5bc62 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/4_and.cir.out @@ -0,0 +1,18 @@ +* c:\users\malli\esim\src\subcircuitlibrary\4_and\4_and.cir + +.include 3_and.sub +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u2-pad1_ 3_and +* u2 net-_u2-pad1_ net-_u1-pad4_ net-_u1-pad5_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ port +a1 [net-_u2-pad1_ net-_u1-pad4_ ] net-_u1-pad5_ u2 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/54f64/4_and.pro b/library/SubcircuitLibrary/54f64/4_and.pro new file mode 100644 index 000000000..b13a0a825 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/4_and.pro @@ -0,0 +1,57 @@ +update=Wed Mar 18 19:54:24 2020 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=4_and-rescue +LibName2=texas +LibName3=intel +LibName4=audio +LibName5=interface +LibName6=digital-audio +LibName7=philips +LibName8=display +LibName9=cypress +LibName10=siliconi +LibName11=opto +LibName12=atmel +LibName13=contrib +LibName14=valves +LibName15=eSim_Analog +LibName16=eSim_Devices +LibName17=eSim_Digital +LibName18=eSim_Hybrid +LibName19=eSim_Miscellaneous +LibName20=eSim_Plot +LibName21=eSim_Power +LibName22=eSim_Sources +LibName23=eSim_Subckt +LibName24=eSim_User diff --git a/library/SubcircuitLibrary/54f64/4_and.sch b/library/SubcircuitLibrary/54f64/4_and.sch new file mode 100644 index 000000000..f5e8febdc --- /dev/null +++ b/library/SubcircuitLibrary/54f64/4_and.sch @@ -0,0 +1,151 @@ +EESchema Schematic File Version 2 +LIBS:4_and-rescue +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:4_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 3_and-RESCUE-4_and X1 +U 1 1 5C9A2915 +P 3700 3500 +F 0 "X1" H 4600 3800 60 0000 C CNN +F 1 "3_and" H 4650 4000 60 0000 C CNN +F 2 "" H 3700 3500 60 0000 C CNN +F 3 "" H 3700 3500 60 0000 C CNN + 1 3700 3500 + 1 0 0 -1 +$EndComp +$Comp +L d_and U2 +U 1 1 5C9A2940 +P 5450 3400 +F 0 "U2" H 5450 3400 60 0000 C CNN +F 1 "d_and" H 5500 3500 60 0000 C CNN +F 2 "" H 5450 3400 60 0000 C CNN +F 3 "" H 5450 3400 60 0000 C CNN + 1 5450 3400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5000 3100 5000 3300 +Wire Wire Line + 4150 3000 4150 2700 +Wire Wire Line + 4150 2700 3200 2700 +Wire Wire Line + 4150 3100 4000 3100 +Wire Wire Line + 4000 3100 4000 3000 +Wire Wire Line + 4000 3000 3200 3000 +Wire Wire Line + 4150 3200 4150 3300 +Wire Wire Line + 4150 3300 3250 3300 +Wire Wire Line + 5000 3400 5000 3550 +Wire Wire Line + 5000 3550 3250 3550 +Wire Wire Line + 5900 3350 6500 3350 +$Comp +L PORT U1 +U 1 1 5C9A29B1 +P 2950 2700 +F 0 "U1" H 3000 2800 30 0000 C CNN +F 1 "PORT" H 2950 2700 30 0000 C CNN +F 2 "" H 2950 2700 60 0000 C CNN +F 3 "" H 2950 2700 60 0000 C CNN + 1 2950 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A29E9 +P 2950 3000 +F 0 "U1" H 3000 3100 30 0000 C CNN +F 1 "PORT" H 2950 3000 30 0000 C CNN +F 2 "" H 2950 3000 60 0000 C CNN +F 3 "" H 2950 3000 60 0000 C CNN + 2 2950 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A2A0D +P 3000 3300 +F 0 "U1" H 3050 3400 30 0000 C CNN +F 1 "PORT" H 3000 3300 30 0000 C CNN +F 2 "" H 3000 3300 60 0000 C CNN +F 3 "" H 3000 3300 60 0000 C CNN + 3 3000 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2A3C +P 3000 3550 +F 0 "U1" H 3050 3650 30 0000 C CNN +F 1 "PORT" H 3000 3550 30 0000 C CNN +F 2 "" H 3000 3550 60 0000 C CNN +F 3 "" H 3000 3550 60 0000 C CNN + 4 3000 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 5C9A2A68 +P 6750 3350 +F 0 "U1" H 6800 3450 30 0000 C CNN +F 1 "PORT" H 6750 3350 30 0000 C CNN +F 2 "" H 6750 3350 60 0000 C CNN +F 3 "" H 6750 3350 60 0000 C CNN + 5 6750 3350 + -1 0 0 1 +$EndComp +Text Notes 3450 2650 0 60 ~ 12 +in1 +Text Notes 3450 2950 0 60 ~ 12 +in2 +Text Notes 3500 3300 0 60 ~ 12 +in3 +Text Notes 3500 3550 0 60 ~ 12 +in4 +Text Notes 6150 3350 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/54f64/4_and.sub b/library/SubcircuitLibrary/54f64/4_and.sub new file mode 100644 index 000000000..8663f37e6 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/4_and.sub @@ -0,0 +1,12 @@ +* Subcircuit 4_and +.subckt 4_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ +* c:\users\malli\esim\src\subcircuitlibrary\4_and\4_and.cir +.include 3_and.sub +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u2-pad1_ 3_and +* u2 net-_u2-pad1_ net-_u1-pad4_ net-_u1-pad5_ d_and +a1 [net-_u2-pad1_ net-_u1-pad4_ ] net-_u1-pad5_ u2 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 4_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/54f64/4_and_Previous_Values.xml b/library/SubcircuitLibrary/54f64/4_and_Previous_Values.xml new file mode 100644 index 000000000..f2ba0130e --- /dev/null +++ b/library/SubcircuitLibrary/54f64/4_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andC:\Users\malli\eSim\src\SubcircuitLibrary\3_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/54f64/54f64-cache.lib b/library/SubcircuitLibrary/54f64/54f64-cache.lib new file mode 100644 index 000000000..8c472fe4b --- /dev/null +++ b/library/SubcircuitLibrary/54f64/54f64-cache.lib @@ -0,0 +1,117 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and +# +DEF 3_and X 0 40 Y Y 1 F N +F0 "X" 100 -50 60 H V C CNN +F1 "3_and" 150 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 150 50 158 716 -716 0 1 0 N 200 200 200 -100 +P 2 0 1 0 -150 200 200 200 N +P 3 0 1 0 -150 200 -150 -100 200 -100 N +X in1 1 -350 150 200 R 50 50 1 1 I +X in2 2 -350 50 200 R 50 50 1 1 I +X in3 3 -350 -50 200 R 50 50 1 1 I +X out 4 500 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 4_and +# +DEF 4_and X 0 40 Y Y 1 F N +F0 "X" 50 -50 60 H V C CNN +F1 "4_and" 100 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 100 0 206 760 -760 0 1 0 N 150 200 150 -200 +P 2 0 1 0 -200 200 150 200 N +P 4 0 1 0 -200 200 -200 -200 50 -200 150 -200 N +X in1 1 -400 150 200 R 50 50 1 1 I +X in2 2 -400 50 200 R 50 50 1 1 I +X in3 3 -400 -50 200 R 50 50 1 1 I +X in4 4 -400 -150 200 R 50 50 1 1 I +X out 5 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_nor +# +DEF d_nor U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nor" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/54f64/54f64.cir b/library/SubcircuitLibrary/54f64/54f64.cir new file mode 100644 index 000000000..5096a65ab --- /dev/null +++ b/library/SubcircuitLibrary/54f64/54f64.cir @@ -0,0 +1,18 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\54f64\54f64.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/22/25 13:59:39 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U6 Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_U2-Pad1_ d_and +X1 Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U2-Pad2_ 3_and +U5 Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U4-Pad1_ d_and +U4 Net-_U4-Pad1_ Net-_U4-Pad2_ Net-_U3-Pad1_ d_nor +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U2-Pad3_ d_nor +U3 Net-_U3-Pad1_ Net-_U2-Pad3_ Net-_U1-Pad8_ d_nor +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ PORT +X2 Net-_U1-Pad13_ Net-_U1-Pad12_ Net-_U1-Pad11_ Net-_U1-Pad1_ Net-_U4-Pad2_ 4_and + +.end diff --git a/library/SubcircuitLibrary/54f64/54f64.cir.out b/library/SubcircuitLibrary/54f64/54f64.cir.out new file mode 100644 index 000000000..61545f26c --- /dev/null +++ b/library/SubcircuitLibrary/54f64/54f64.cir.out @@ -0,0 +1,36 @@ +* c:\fossee\esim\library\subcircuitlibrary\54f64\54f64.cir + +.include 4_and.sub +.include 3_and.sub +* u6 net-_u1-pad3_ net-_u1-pad2_ net-_u2-pad1_ d_and +x1 net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u2-pad2_ 3_and +* u5 net-_u1-pad9_ net-_u1-pad10_ net-_u4-pad1_ d_and +* u4 net-_u4-pad1_ net-_u4-pad2_ net-_u3-pad1_ d_nor +* u2 net-_u2-pad1_ net-_u2-pad2_ net-_u2-pad3_ d_nor +* u3 net-_u3-pad1_ net-_u2-pad3_ net-_u1-pad8_ d_nor +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ port +x2 net-_u1-pad13_ net-_u1-pad12_ net-_u1-pad11_ net-_u1-pad1_ net-_u4-pad2_ 4_and +a1 [net-_u1-pad3_ net-_u1-pad2_ ] net-_u2-pad1_ u6 +a2 [net-_u1-pad9_ net-_u1-pad10_ ] net-_u4-pad1_ u5 +a3 [net-_u4-pad1_ net-_u4-pad2_ ] net-_u3-pad1_ u4 +a4 [net-_u2-pad1_ net-_u2-pad2_ ] net-_u2-pad3_ u2 +a5 [net-_u3-pad1_ net-_u2-pad3_ ] net-_u1-pad8_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u4 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u2 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u3 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 250e-03 10e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/54f64/54f64.pro b/library/SubcircuitLibrary/54f64/54f64.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/54f64/54f64.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/54f64/54f64.sch b/library/SubcircuitLibrary/54f64/54f64.sch new file mode 100644 index 000000000..6145d3bd3 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/54f64.sch @@ -0,0 +1,366 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:54f64-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U6 +U 1 1 6857B47E +P 3750 2450 +F 0 "U6" H 3750 2450 60 0000 C CNN +F 1 "d_and" H 3800 2550 60 0000 C CNN +F 2 "" H 3750 2450 60 0000 C CNN +F 3 "" H 3750 2450 60 0000 C CNN + 1 3750 2450 + 0 1 1 0 +$EndComp +$Comp +L 3_and X1 +U 1 1 6857B510 +P 3100 3550 +F 0 "X1" H 3200 3500 60 0000 C CNN +F 1 "3_and" H 3250 3700 60 0000 C CNN +F 2 "" H 3100 3550 60 0000 C CNN +F 3 "" H 3100 3550 60 0000 C CNN + 1 3100 3550 + 1 0 0 -1 +$EndComp +$Comp +L d_and U5 +U 1 1 6857B571 +P 5300 3400 +F 0 "U5" H 5300 3400 60 0000 C CNN +F 1 "d_and" H 5350 3500 60 0000 C CNN +F 2 "" H 5300 3400 60 0000 C CNN +F 3 "" H 5300 3400 60 0000 C CNN + 1 5300 3400 + -1 0 0 1 +$EndComp +$Comp +L d_nor U4 +U 1 1 6857B59C +P 4550 4300 +F 0 "U4" H 4550 4300 60 0000 C CNN +F 1 "d_nor" H 4600 4400 60 0000 C CNN +F 2 "" H 4550 4300 60 0000 C CNN +F 3 "" H 4550 4300 60 0000 C CNN + 1 4550 4300 + 0 1 1 0 +$EndComp +$Comp +L d_nor U2 +U 1 1 6857B5EF +P 3900 4300 +F 0 "U2" H 3900 4300 60 0000 C CNN +F 1 "d_nor" H 3950 4400 60 0000 C CNN +F 2 "" H 3900 4300 60 0000 C CNN +F 3 "" H 3900 4300 60 0000 C CNN + 1 3900 4300 + 0 1 1 0 +$EndComp +$Comp +L d_nor U3 +U 1 1 6857B626 +P 4150 5450 +F 0 "U3" H 4150 5450 60 0000 C CNN +F 1 "d_nor" H 4200 5550 60 0000 C CNN +F 2 "" H 4150 5450 60 0000 C CNN +F 3 "" H 4150 5450 60 0000 C CNN + 1 4150 5450 + 0 1 1 0 +$EndComp +Wire Wire Line + 4850 3450 4650 3450 +Wire Wire Line + 4650 3450 4650 3850 +Wire Wire Line + 4550 2850 4550 3850 +Wire Wire Line + 3800 2900 4000 2900 +Wire Wire Line + 4000 2900 4000 3850 +Wire Wire Line + 3600 3500 3900 3500 +Wire Wire Line + 3900 3500 3900 3850 +Wire Wire Line + 3950 4750 3950 4950 +Wire Wire Line + 3950 4950 4150 4950 +Wire Wire Line + 4150 4950 4150 5000 +Wire Wire Line + 4600 4750 4600 4950 +Wire Wire Line + 4600 4950 4250 4950 +Wire Wire Line + 4250 4950 4250 5000 +$Comp +L PORT U1 +U 1 1 6857B6DC +P 4350 1150 +F 0 "U1" H 4400 1250 30 0000 C CNN +F 1 "PORT" H 4350 1150 30 0000 C CNN +F 2 "" H 4350 1150 60 0000 C CNN +F 3 "" H 4350 1150 60 0000 C CNN + 1 4350 1150 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 2 1 6857B85D +P 3550 1350 +F 0 "U1" H 3600 1450 30 0000 C CNN +F 1 "PORT" H 3550 1350 30 0000 C CNN +F 2 "" H 3550 1350 60 0000 C CNN +F 3 "" H 3550 1350 60 0000 C CNN + 2 3550 1350 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 3 1 6857B8B4 +P 4000 1350 +F 0 "U1" H 4050 1450 30 0000 C CNN +F 1 "PORT" H 4000 1350 30 0000 C CNN +F 2 "" H 4000 1350 60 0000 C CNN +F 3 "" H 4000 1350 60 0000 C CNN + 3 4000 1350 + 0 1 1 0 +$EndComp +Wire Wire Line + 3550 1600 3750 1600 +Wire Wire Line + 3750 1600 3750 2000 +Wire Wire Line + 4000 1600 3850 1600 +Wire Wire Line + 3850 1600 3850 2000 +$Comp +L PORT U1 +U 4 1 6857B9B4 +P 2400 3150 +F 0 "U1" H 2450 3250 30 0000 C CNN +F 1 "PORT" H 2400 3150 30 0000 C CNN +F 2 "" H 2400 3150 60 0000 C CNN +F 3 "" H 2400 3150 60 0000 C CNN + 4 2400 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 6857B9F5 +P 2400 3500 +F 0 "U1" H 2450 3600 30 0000 C CNN +F 1 "PORT" H 2400 3500 30 0000 C CNN +F 2 "" H 2400 3500 60 0000 C CNN +F 3 "" H 2400 3500 60 0000 C CNN + 5 2400 3500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 6857BA3C +P 2400 3850 +F 0 "U1" H 2450 3950 30 0000 C CNN +F 1 "PORT" H 2400 3850 30 0000 C CNN +F 2 "" H 2400 3850 60 0000 C CNN +F 3 "" H 2400 3850 60 0000 C CNN + 6 2400 3850 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2650 3150 2650 3400 +Wire Wire Line + 2650 3400 2750 3400 +Wire Wire Line + 2650 3500 2750 3500 +Wire Wire Line + 2650 3850 2650 3600 +Wire Wire Line + 2650 3600 2750 3600 +$Comp +L PORT U1 +U 8 1 6857BB79 +P 3950 6000 +F 0 "U1" H 4000 6100 30 0000 C CNN +F 1 "PORT" H 3950 6000 30 0000 C CNN +F 2 "" H 3950 6000 60 0000 C CNN +F 3 "" H 3950 6000 60 0000 C CNN + 8 3950 6000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 6857BC54 +P 6300 3550 +F 0 "U1" H 6350 3650 30 0000 C CNN +F 1 "PORT" H 6300 3550 30 0000 C CNN +F 2 "" H 6300 3550 60 0000 C CNN +F 3 "" H 6300 3550 60 0000 C CNN + 9 6300 3550 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 10 1 6857BCA5 +P 6300 3300 +F 0 "U1" H 6350 3400 30 0000 C CNN +F 1 "PORT" H 6300 3300 30 0000 C CNN +F 2 "" H 6300 3300 60 0000 C CNN +F 3 "" H 6300 3300 60 0000 C CNN + 10 6300 3300 + -1 0 0 1 +$EndComp +Wire Wire Line + 5750 3500 5750 3550 +Wire Wire Line + 5750 3550 6050 3550 +Wire Wire Line + 5750 3400 5750 3300 +Wire Wire Line + 5750 3300 6050 3300 +$Comp +L 4_and X2 +U 1 1 6857BD7B +P 4550 2350 +F 0 "X2" H 4600 2300 60 0000 C CNN +F 1 "4_and" H 4650 2450 60 0000 C CNN +F 2 "" H 4550 2350 60 0000 C CNN +F 3 "" H 4550 2350 60 0000 C CNN + 1 4550 2350 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 11 1 6857BE36 +P 4550 1100 +F 0 "U1" H 4600 1200 30 0000 C CNN +F 1 "PORT" H 4550 1100 30 0000 C CNN +F 2 "" H 4550 1100 60 0000 C CNN +F 3 "" H 4550 1100 60 0000 C CNN + 11 4550 1100 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 12 1 6857BEAF +P 4750 1150 +F 0 "U1" H 4800 1250 30 0000 C CNN +F 1 "PORT" H 4750 1150 30 0000 C CNN +F 2 "" H 4750 1150 60 0000 C CNN +F 3 "" H 4750 1150 60 0000 C CNN + 12 4750 1150 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 13 1 6857BEF8 +P 4950 1150 +F 0 "U1" H 5000 1250 30 0000 C CNN +F 1 "PORT" H 4950 1150 30 0000 C CNN +F 2 "" H 4950 1150 60 0000 C CNN +F 3 "" H 4950 1150 60 0000 C CNN + 13 4950 1150 + 0 1 1 0 +$EndComp +Wire Wire Line + 4350 1400 4350 1800 +Wire Wire Line + 4350 1800 4400 1800 +Wire Wire Line + 4400 1800 4400 1950 +Wire Wire Line + 4550 1350 4550 1600 +Wire Wire Line + 4550 1600 4500 1600 +Wire Wire Line + 4500 1600 4500 1950 +Wire Wire Line + 4750 1400 4750 1600 +Wire Wire Line + 4750 1600 4600 1600 +Wire Wire Line + 4600 1600 4600 1950 +Wire Wire Line + 4950 1400 4950 1800 +Wire Wire Line + 4950 1800 4700 1800 +Wire Wire Line + 4700 1800 4700 1950 +Wire Wire Line + 4200 6000 4200 5900 +Text Notes 3650 1900 0 60 ~ 0 +a2 +Text Notes 3850 1950 0 60 ~ 0 +b2 +Text Notes 4200 1500 0 60 ~ 0 +a0\n +Text Notes 4400 1450 0 60 ~ 0 +b0\n +Text Notes 4600 1450 0 60 ~ 0 +c0\n +Text Notes 4800 1500 0 60 ~ 0 +d0\n +Text Notes 2750 3200 0 60 ~ 0 +a1 +Text Notes 2700 3500 0 60 ~ 0 +b1 +Text Notes 2700 3700 0 60 ~ 0 +c1 +Text Notes 5900 3200 0 60 ~ 0 +a3 +Text Notes 5950 3700 0 60 ~ 0 +b3 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/54f64/54f64.sub b/library/SubcircuitLibrary/54f64/54f64.sub new file mode 100644 index 000000000..aa1cb0783 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/54f64.sub @@ -0,0 +1,30 @@ +* Subcircuit 54f64 +.subckt 54f64 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ +* c:\fossee\esim\library\subcircuitlibrary\54f64\54f64.cir +.include 4_and.sub +.include 3_and.sub +* u6 net-_u1-pad3_ net-_u1-pad2_ net-_u2-pad1_ d_and +x1 net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u2-pad2_ 3_and +* u5 net-_u1-pad9_ net-_u1-pad10_ net-_u4-pad1_ d_and +* u4 net-_u4-pad1_ net-_u4-pad2_ net-_u3-pad1_ d_nor +* u2 net-_u2-pad1_ net-_u2-pad2_ net-_u2-pad3_ d_nor +* u3 net-_u3-pad1_ net-_u2-pad3_ net-_u1-pad8_ d_nor +x2 net-_u1-pad13_ net-_u1-pad12_ net-_u1-pad11_ net-_u1-pad1_ net-_u4-pad2_ 4_and +a1 [net-_u1-pad3_ net-_u1-pad2_ ] net-_u2-pad1_ u6 +a2 [net-_u1-pad9_ net-_u1-pad10_ ] net-_u4-pad1_ u5 +a3 [net-_u4-pad1_ net-_u4-pad2_ ] net-_u3-pad1_ u4 +a4 [net-_u2-pad1_ net-_u2-pad2_ ] net-_u2-pad3_ u2 +a5 [net-_u3-pad1_ net-_u2-pad3_ ] net-_u1-pad8_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u4 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u2 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u3 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends 54f64 \ No newline at end of file diff --git a/library/SubcircuitLibrary/54f64/54f64_Previous_Values.xml b/library/SubcircuitLibrary/54f64/54f64_Previous_Values.xml new file mode 100644 index 000000000..ecfdd7fd8 --- /dev/null +++ b/library/SubcircuitLibrary/54f64/54f64_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes025010secmssecd_andd_andd_nord_nord_norC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\4_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/54f64/analysis b/library/SubcircuitLibrary/54f64/analysis new file mode 100644 index 000000000..0a6c83b5a --- /dev/null +++ b/library/SubcircuitLibrary/54f64/analysis @@ -0,0 +1 @@ +.tran 250e-03 10e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74ALS640/74ALS640.cir b/library/SubcircuitLibrary/74ALS640/74ALS640.cir new file mode 100644 index 000000000..84e601008 --- /dev/null +++ b/library/SubcircuitLibrary/74ALS640/74ALS640.cir @@ -0,0 +1,51 @@ +.title KiCad schematic +U29 unconnected-_U29-Pad1_ Net-_U1-Pad9_ Net-_U29-Pad3_ d_nand +U7 unconnected-_U7-Pad1_ Net-_U28-Pad1_ d_inverter +U28 Net-_U28-Pad1_ Net-_U1-Pad9_ Net-_U28-Pad3_ d_and +U14 Net-_U1-Pad10_ Net-_U14-Pad2_ d_inverter +U40 Net-_U24-Pad3_ Net-_U13-Pad2_ Net-_U1-Pad18_ d_and +U24 Net-_U24-Pad1_ Net-_U1-Pad9_ Net-_U24-Pad3_ d_and +U23 Net-_U1-Pad7_ Net-_U1-Pad9_ Net-_U23-Pad3_ d_nand +U25 Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U25-Pad3_ d_nand +U12 Net-_U1-Pad10_ Net-_U12-Pad2_ d_inverter +U39 Net-_U23-Pad3_ Net-_U12-Pad2_ Net-_U1-Pad13_ d_and +U41 Net-_U25-Pad3_ Net-_U13-Pad2_ Net-_U1-Pad14_ d_and +U6 unconnected-_U6-Pad1_ Net-_U26-Pad1_ d_inverter +U5 Net-_U1-Pad4_ Net-_U24-Pad1_ d_inverter +U26 Net-_U26-Pad1_ Net-_U1-Pad9_ Net-_U26-Pad3_ d_and +U27 unconnected-_U27-Pad1_ Net-_U1-Pad9_ Net-_U27-Pad3_ d_nand +U13 Net-_U1-Pad10_ Net-_U13-Pad2_ d_inverter +U42 Net-_U26-Pad3_ Net-_U14-Pad2_ unconnected-_U42-Pad3_ d_and +U43 Net-_U27-Pad3_ Net-_U14-Pad2_ unconnected-_U43-Pad3_ d_and +U45 Net-_U29-Pad3_ Net-_U15-Pad2_ unconnected-_U45-Pad3_ d_and +U44 Net-_U28-Pad3_ Net-_U15-Pad2_ unconnected-_U44-Pad3_ d_and +U48 Net-_U32-Pad3_ Net-_U17-Pad2_ unconnected-_U48-Pad3_ d_and +U49 Net-_U33-Pad3_ Net-_U17-Pad2_ unconnected-_U49-Pad3_ d_and +U47 Net-_U31-Pad3_ Net-_U16-Pad2_ unconnected-_U47-Pad3_ d_and +U46 Net-_U30-Pad3_ Net-_U16-Pad2_ unconnected-_U46-Pad3_ d_and +U9 unconnected-_U9-Pad1_ Net-_U32-Pad1_ d_inverter +U16 Net-_U1-Pad10_ Net-_U16-Pad2_ d_inverter +U32 Net-_U32-Pad1_ Net-_U1-Pad9_ Net-_U32-Pad3_ d_and +U17 Net-_U1-Pad10_ Net-_U17-Pad2_ d_inverter +U33 unconnected-_U33-Pad1_ Net-_U1-Pad9_ Net-_U33-Pad3_ d_nand +U8 unconnected-_U8-Pad1_ Net-_U30-Pad1_ d_inverter +U31 unconnected-_U31-Pad1_ Net-_U1-Pad9_ Net-_U31-Pad3_ d_nand +U30 Net-_U30-Pad1_ Net-_U1-Pad9_ Net-_U30-Pad3_ d_and +U15 Net-_U1-Pad10_ Net-_U15-Pad2_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ PORT +U4 Net-_U1-Pad3_ Net-_U22-Pad1_ d_inverter +U3 Net-_U1-Pad2_ Net-_U20-Pad1_ d_inverter +U22 Net-_U22-Pad1_ Net-_U1-Pad9_ Net-_U22-Pad3_ d_and +U11 Net-_U1-Pad10_ Net-_U11-Pad2_ d_inverter +U20 Net-_U20-Pad1_ Net-_U1-Pad9_ Net-_U20-Pad3_ d_and +U21 Net-_U1-Pad6_ Net-_U1-Pad9_ Net-_U21-Pad3_ d_nand +U34 Net-_U18-Pad3_ Net-_U10-Pad2_ Net-_U1-Pad15_ d_and +U35 Net-_U19-Pad3_ Net-_U10-Pad2_ Net-_U1-Pad11_ d_and +U36 Net-_U20-Pad3_ Net-_U11-Pad2_ Net-_U1-Pad16_ d_and +U37 Net-_U21-Pad3_ Net-_U11-Pad2_ Net-_U1-Pad12_ d_and +U38 Net-_U22-Pad3_ Net-_U12-Pad2_ Net-_U1-Pad17_ d_and +U10 Net-_U1-Pad10_ Net-_U10-Pad2_ d_inverter +U2 Net-_U1-Pad1_ Net-_U18-Pad1_ d_inverter +U18 Net-_U18-Pad1_ Net-_U1-Pad9_ Net-_U18-Pad3_ d_and +U19 Net-_U1-Pad5_ Net-_U1-Pad9_ Net-_U19-Pad3_ d_nand +.end diff --git a/library/SubcircuitLibrary/74ALS640/74ALS640.cir.out b/library/SubcircuitLibrary/74ALS640/74ALS640.cir.out new file mode 100644 index 000000000..08efbca45 --- /dev/null +++ b/library/SubcircuitLibrary/74ALS640/74ALS640.cir.out @@ -0,0 +1,204 @@ +.title kicad schematic + +* u29 unconnected-_u29-pad1_ net-_u1-pad9_ net-_u29-pad3_ d_nand +* u7 unconnected-_u7-pad1_ net-_u28-pad1_ d_inverter +* u28 net-_u28-pad1_ net-_u1-pad9_ net-_u28-pad3_ d_and +* u14 net-_u1-pad10_ net-_u14-pad2_ d_inverter +* u40 net-_u24-pad3_ net-_u13-pad2_ net-_u1-pad18_ d_and +* u24 net-_u24-pad1_ net-_u1-pad9_ net-_u24-pad3_ d_and +* u23 net-_u1-pad7_ net-_u1-pad9_ net-_u23-pad3_ d_nand +* u25 net-_u1-pad8_ net-_u1-pad9_ net-_u25-pad3_ d_nand +* u12 net-_u1-pad10_ net-_u12-pad2_ d_inverter +* u39 net-_u23-pad3_ net-_u12-pad2_ net-_u1-pad13_ d_and +* u41 net-_u25-pad3_ net-_u13-pad2_ net-_u1-pad14_ d_and +* u6 unconnected-_u6-pad1_ net-_u26-pad1_ d_inverter +* u5 net-_u1-pad4_ net-_u24-pad1_ d_inverter +* u26 net-_u26-pad1_ net-_u1-pad9_ net-_u26-pad3_ d_and +* u27 unconnected-_u27-pad1_ net-_u1-pad9_ net-_u27-pad3_ d_nand +* u13 net-_u1-pad10_ net-_u13-pad2_ d_inverter +* u42 net-_u26-pad3_ net-_u14-pad2_ unconnected-_u42-pad3_ d_and +* u43 net-_u27-pad3_ net-_u14-pad2_ unconnected-_u43-pad3_ d_and +* u45 net-_u29-pad3_ net-_u15-pad2_ unconnected-_u45-pad3_ d_and +* u44 net-_u28-pad3_ net-_u15-pad2_ unconnected-_u44-pad3_ d_and +* u48 net-_u32-pad3_ net-_u17-pad2_ unconnected-_u48-pad3_ d_and +* u49 net-_u33-pad3_ net-_u17-pad2_ unconnected-_u49-pad3_ d_and +* u47 net-_u31-pad3_ net-_u16-pad2_ unconnected-_u47-pad3_ d_and +* u46 net-_u30-pad3_ net-_u16-pad2_ unconnected-_u46-pad3_ d_and +* u9 unconnected-_u9-pad1_ net-_u32-pad1_ d_inverter +* u16 net-_u1-pad10_ net-_u16-pad2_ d_inverter +* u32 net-_u32-pad1_ net-_u1-pad9_ net-_u32-pad3_ d_and +* u17 net-_u1-pad10_ net-_u17-pad2_ d_inverter +* u33 unconnected-_u33-pad1_ net-_u1-pad9_ net-_u33-pad3_ d_nand +* u8 unconnected-_u8-pad1_ net-_u30-pad1_ d_inverter +* u31 unconnected-_u31-pad1_ net-_u1-pad9_ net-_u31-pad3_ d_nand +* u30 net-_u30-pad1_ net-_u1-pad9_ net-_u30-pad3_ d_and +* u15 net-_u1-pad10_ net-_u15-pad2_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ port +* u4 net-_u1-pad3_ net-_u22-pad1_ d_inverter +* u3 net-_u1-pad2_ net-_u20-pad1_ d_inverter +* u22 net-_u22-pad1_ net-_u1-pad9_ net-_u22-pad3_ d_and +* u11 net-_u1-pad10_ net-_u11-pad2_ d_inverter +* u20 net-_u20-pad1_ net-_u1-pad9_ net-_u20-pad3_ d_and +* u21 net-_u1-pad6_ net-_u1-pad9_ net-_u21-pad3_ d_nand +* u34 net-_u18-pad3_ net-_u10-pad2_ net-_u1-pad15_ d_and +* u35 net-_u19-pad3_ net-_u10-pad2_ net-_u1-pad11_ d_and +* u36 net-_u20-pad3_ net-_u11-pad2_ net-_u1-pad16_ d_and +* u37 net-_u21-pad3_ net-_u11-pad2_ net-_u1-pad12_ d_and +* u38 net-_u22-pad3_ net-_u12-pad2_ net-_u1-pad17_ d_and +* u10 net-_u1-pad10_ net-_u10-pad2_ d_inverter +* u2 net-_u1-pad1_ net-_u18-pad1_ d_inverter +* u18 net-_u18-pad1_ net-_u1-pad9_ net-_u18-pad3_ d_and +* u19 net-_u1-pad5_ net-_u1-pad9_ net-_u19-pad3_ d_nand +a1 [unconnected-_u29-pad1_ net-_u1-pad9_ ] net-_u29-pad3_ u29 +a2 unconnected-_u7-pad1_ net-_u28-pad1_ u7 +a3 [net-_u28-pad1_ net-_u1-pad9_ ] net-_u28-pad3_ u28 +a4 net-_u1-pad10_ net-_u14-pad2_ u14 +a5 [net-_u24-pad3_ net-_u13-pad2_ ] net-_u1-pad18_ u40 +a6 [net-_u24-pad1_ net-_u1-pad9_ ] net-_u24-pad3_ u24 +a7 [net-_u1-pad7_ net-_u1-pad9_ ] net-_u23-pad3_ u23 +a8 [net-_u1-pad8_ net-_u1-pad9_ ] net-_u25-pad3_ u25 +a9 net-_u1-pad10_ net-_u12-pad2_ u12 +a10 [net-_u23-pad3_ net-_u12-pad2_ ] net-_u1-pad13_ u39 +a11 [net-_u25-pad3_ net-_u13-pad2_ ] net-_u1-pad14_ u41 +a12 unconnected-_u6-pad1_ net-_u26-pad1_ u6 +a13 net-_u1-pad4_ net-_u24-pad1_ u5 +a14 [net-_u26-pad1_ net-_u1-pad9_ ] net-_u26-pad3_ u26 +a15 [unconnected-_u27-pad1_ net-_u1-pad9_ ] net-_u27-pad3_ u27 +a16 net-_u1-pad10_ net-_u13-pad2_ u13 +a17 [net-_u26-pad3_ net-_u14-pad2_ ] unconnected-_u42-pad3_ u42 +a18 [net-_u27-pad3_ net-_u14-pad2_ ] unconnected-_u43-pad3_ u43 +a19 [net-_u29-pad3_ net-_u15-pad2_ ] unconnected-_u45-pad3_ u45 +a20 [net-_u28-pad3_ net-_u15-pad2_ ] unconnected-_u44-pad3_ u44 +a21 [net-_u32-pad3_ net-_u17-pad2_ ] unconnected-_u48-pad3_ u48 +a22 [net-_u33-pad3_ net-_u17-pad2_ ] unconnected-_u49-pad3_ u49 +a23 [net-_u31-pad3_ net-_u16-pad2_ ] unconnected-_u47-pad3_ u47 +a24 [net-_u30-pad3_ net-_u16-pad2_ ] unconnected-_u46-pad3_ u46 +a25 unconnected-_u9-pad1_ net-_u32-pad1_ u9 +a26 net-_u1-pad10_ net-_u16-pad2_ u16 +a27 [net-_u32-pad1_ net-_u1-pad9_ ] net-_u32-pad3_ u32 +a28 net-_u1-pad10_ net-_u17-pad2_ u17 +a29 [unconnected-_u33-pad1_ net-_u1-pad9_ ] net-_u33-pad3_ u33 +a30 unconnected-_u8-pad1_ net-_u30-pad1_ u8 +a31 [unconnected-_u31-pad1_ net-_u1-pad9_ ] net-_u31-pad3_ u31 +a32 [net-_u30-pad1_ net-_u1-pad9_ ] net-_u30-pad3_ u30 +a33 net-_u1-pad10_ net-_u15-pad2_ u15 +a34 net-_u1-pad3_ net-_u22-pad1_ u4 +a35 net-_u1-pad2_ net-_u20-pad1_ u3 +a36 [net-_u22-pad1_ net-_u1-pad9_ ] net-_u22-pad3_ u22 +a37 net-_u1-pad10_ net-_u11-pad2_ u11 +a38 [net-_u20-pad1_ net-_u1-pad9_ ] net-_u20-pad3_ u20 +a39 [net-_u1-pad6_ net-_u1-pad9_ ] net-_u21-pad3_ u21 +a40 [net-_u18-pad3_ net-_u10-pad2_ ] net-_u1-pad15_ u34 +a41 [net-_u19-pad3_ net-_u10-pad2_ ] net-_u1-pad11_ u35 +a42 [net-_u20-pad3_ net-_u11-pad2_ ] net-_u1-pad16_ u36 +a43 [net-_u21-pad3_ net-_u11-pad2_ ] net-_u1-pad12_ u37 +a44 [net-_u22-pad3_ net-_u12-pad2_ ] net-_u1-pad17_ u38 +a45 net-_u1-pad10_ net-_u10-pad2_ u10 +a46 net-_u1-pad1_ net-_u18-pad1_ u2 +a47 [net-_u18-pad1_ net-_u1-pad9_ ] net-_u18-pad3_ u18 +a48 [net-_u1-pad5_ net-_u1-pad9_ ] net-_u19-pad3_ u19 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u29 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u40 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u23 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u25 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u39 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u41 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u27 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u42 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u43 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u45 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u44 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u48 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u47 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u46 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u32 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u33 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u31 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u30 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u21 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u34 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u35 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u36 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u37 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u38 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u19 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/74ALS640/74ALS640.kicad_sch b/library/SubcircuitLibrary/74ALS640/74ALS640.kicad_sch new file mode 100644 index 000000000..8b2b48bae --- /dev/null +++ b/library/SubcircuitLibrary/74ALS640/74ALS640.kicad_sch @@ -0,0 +1,3417 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 7042584f-bc22-4b08-a192-ffd65fc0d77b) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nand" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nand_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nand_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 59.69 228.6) (diameter 0) (color 0 0 0 0) + (uuid 0db9f7b5-ac11-44f6-b570-f55976d9f36a) + ) + (junction (at 92.71 185.42) (diameter 0) (color 0 0 0 0) + (uuid 12c720d3-384e-493e-8100-ce808a15f07b) + ) + (junction (at 123.19 185.42) (diameter 0) (color 0 0 0 0) + (uuid 1a315562-3d78-4b23-8e5d-f28d4e79fc13) + ) + (junction (at 92.71 -6.35) (diameter 0) (color 0 0 0 0) + (uuid 2165a3ff-2249-46aa-9876-0ef2406fc1d5) + ) + (junction (at 92.71 -43.18) (diameter 0) (color 0 0 0 0) + (uuid 28166149-27cd-4e6c-853f-d94f2c1fd797) + ) + (junction (at 92.71 146.05) (diameter 0) (color 0 0 0 0) + (uuid 3f3ad3f5-d171-4325-b256-5a5ab67166bc) + ) + (junction (at 123.19 -6.35) (diameter 0) (color 0 0 0 0) + (uuid 4c5d90e4-93fc-4f26-9ab0-494e250568e6) + ) + (junction (at 59.69 115.57) (diameter 0) (color 0 0 0 0) + (uuid 520f5e96-a3ab-4f1b-b589-88239dc839cb) + ) + (junction (at 92.71 222.25) (diameter 0) (color 0 0 0 0) + (uuid 5c9f1cf1-43da-400c-a5a4-c91dadcaf840) + ) + (junction (at 59.69 76.2) (diameter 0) (color 0 0 0 0) + (uuid 5fa22eaa-2497-4137-a03c-daa34f2ed054) + ) + (junction (at 123.19 69.85) (diameter 0) (color 0 0 0 0) + (uuid 628a2ce4-74a2-42c4-b9ef-da3670542dbe) + ) + (junction (at 92.71 33.02) (diameter 0) (color 0 0 0 0) + (uuid 6f8f355e-b835-4020-9b72-7bfb6e36d357) + ) + (junction (at 68.58 158.75) (diameter 0) (color 0 0 0 0) + (uuid 76d64142-5d86-40e4-98e5-4eb09c4afa4a) + ) + (junction (at 92.71 69.85) (diameter 0) (color 0 0 0 0) + (uuid 8ad45bc4-61b8-4631-9546-b257ae5f8909) + ) + (junction (at 123.19 109.22) (diameter 0) (color 0 0 0 0) + (uuid 9d6c42e6-7941-498b-bca1-2f7d121b0e52) + ) + (junction (at 68.58 198.12) (diameter 0) (color 0 0 0 0) + (uuid a0b179f7-560d-4d4d-95d7-e993e67df1e1) + ) + (junction (at 123.19 -43.18) (diameter 0) (color 0 0 0 0) + (uuid a14f8620-776d-4383-8b07-51125e0b2ed1) + ) + (junction (at 123.19 146.05) (diameter 0) (color 0 0 0 0) + (uuid a2d743ef-9eb9-47fd-aede-e684dbaa6ef6) + ) + (junction (at 59.69 191.77) (diameter 0) (color 0 0 0 0) + (uuid a308b096-8538-4721-9d5d-e379d2f4e9aa) + ) + (junction (at 123.19 33.02) (diameter 0) (color 0 0 0 0) + (uuid a5c865a9-5b67-496e-8853-b0a5c3c9a06c) + ) + (junction (at 123.19 222.25) (diameter 0) (color 0 0 0 0) + (uuid b25bfd16-3f0e-4906-a6dc-d913466b9bc5) + ) + (junction (at 59.69 152.4) (diameter 0) (color 0 0 0 0) + (uuid b5f1606c-e8d0-41f5-8858-da124c6e7188) + ) + (junction (at 68.58 6.35) (diameter 0) (color 0 0 0 0) + (uuid bbde4669-c4a1-4958-995e-43a0b7a076e8) + ) + (junction (at 59.69 0) (diameter 0) (color 0 0 0 0) + (uuid c1836fa8-2648-4691-aba3-d74ed1137603) + ) + (junction (at 68.58 234.95) (diameter 0) (color 0 0 0 0) + (uuid cc1e9b22-4aa3-4a2c-863b-8d8793467bd5) + ) + (junction (at 68.58 82.55) (diameter 0) (color 0 0 0 0) + (uuid d2fed1a1-3ecc-4e4b-be2a-c197190c9355) + ) + (junction (at 68.58 121.92) (diameter 0) (color 0 0 0 0) + (uuid d706e889-8316-4c7c-97f9-9dc016dce5a0) + ) + (junction (at 68.58 45.72) (diameter 0) (color 0 0 0 0) + (uuid e5548512-6cd6-4186-9678-dacc8c1a320a) + ) + (junction (at 92.71 109.22) (diameter 0) (color 0 0 0 0) + (uuid e8250845-c20f-4baf-94f1-ab620315f62d) + ) + (junction (at 59.69 39.37) (diameter 0) (color 0 0 0 0) + (uuid ef5db3ee-be65-4ee3-87ea-417e33025ad6) + ) + + (no_connect (at 34.29 29.21) (uuid 0f9fe93a-f9e6-46e1-b6c0-e8b3639f4e82)) + (no_connect (at 34.29 34.29) (uuid 1624bc45-843b-4427-a6ac-c8c06967cfe3)) + (no_connect (at 33.02 151.13) (uuid 17519590-3ccf-40cd-af38-afcec58a3659)) + (no_connect (at 243.84 44.45) (uuid 19b0d9e1-b5e9-4713-ab11-fecc4942430d)) + (no_connect (at 255.27 116.84) (uuid 19c40cee-7fea-4470-93cc-e448137c6832)) + (no_connect (at 243.84 49.53) (uuid 39cd6b3a-67ec-4a5e-9389-6064cbe52ce8)) + (no_connect (at 33.02 146.05) (uuid 595e8080-bdde-4d23-ade9-7169ddd2262b)) + (no_connect (at 34.29 26.67) (uuid 7ec6c7e9-9df4-4260-9f4d-774b4fda995f)) + (no_connect (at 243.84 46.99) (uuid 85730c0d-f6c7-4322-9842-969cee04ddcf)) + (no_connect (at 33.02 148.59) (uuid 8745e1a1-a103-4150-9609-2125b2f9ff07)) + (no_connect (at 33.02 143.51) (uuid 8fd0b740-5a5b-4c10-bd53-13250362cc5e)) + (no_connect (at 243.84 41.91) (uuid 985d6be1-6b12-4936-91ca-aa3302c1a45a)) + (no_connect (at 255.27 119.38) (uuid c1a73ca0-45b9-41ce-8418-8905e450f9f0)) + (no_connect (at 255.27 114.3) (uuid cf6874aa-8a0d-4180-9a51-f4958e406fd8)) + (no_connect (at 34.29 31.75) (uuid d14352d4-543b-4d66-bb1d-a44d8e50b25c)) + (no_connect (at 255.27 111.76) (uuid d4645457-9962-477c-a168-d2cf6d5c240f)) + + (wire (pts (xy 156.21 -7.62) (xy 156.21 -24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 006df70f-db7f-4946-b434-e6a9f0e775ac) + ) + (wire (pts (xy 123.19 6.35) (xy 123.19 -6.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00efbce1-3d43-486a-b816-4444eb836b87) + ) + (wire (pts (xy 36.83 -21.59) (xy 36.83 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 015609aa-d2ca-4304-982a-969e0ec409c9) + ) + (wire (pts (xy 123.19 109.22) (xy 123.19 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0288073c-f604-49d4-99a4-d7ce3a3b0cdc) + ) + (wire (pts (xy 68.58 121.92) (xy 97.79 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02ee41ab-964a-4d61-8e9e-29f04cad1f0a) + ) + (wire (pts (xy 68.58 158.75) (xy 97.79 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 035b0e4b-576d-4aad-a180-0e4f56b6c629) + ) + (wire (pts (xy 68.58 45.72) (xy 68.58 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 036947cc-e412-4462-966e-d402979ed1af) + ) + (wire (pts (xy 43.18 29.21) (xy 34.29 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06547a23-e3f9-4e9c-b31a-8c81dfae2f36) + ) + (wire (pts (xy 53.34 146.05) (xy 33.02 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 066dfc35-deb8-4c28-97a3-c8a032b6ca21) + ) + (wire (pts (xy 118.11 93.98) (xy 125.73 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 069f3e0c-d69d-467e-bd52-4472a466cd1d) + ) + (wire (pts (xy 68.58 6.35) (xy 97.79 6.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07cc106b-2862-437f-8485-10fc4def7622) + ) + (wire (pts (xy 113.03 45.72) (xy 123.19 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08fb5fcd-520b-4852-8696-6c5ab1ea0504) + ) + (wire (pts (xy 68.58 82.55) (xy 68.58 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09589da8-d5e0-42ae-b698-4e75fd9d4e47) + ) + (wire (pts (xy 40.64 93.98) (xy 74.93 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 097d3acb-202d-4d0a-8363-277965c8ce49) + ) + (wire (pts (xy 50.8 219.71) (xy 95.25 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a1bfb78-e617-4a32-bf64-83730b3b16e0) + ) + (wire (pts (xy 118.11 -58.42) (xy 125.73 -58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a513633-f9c9-4dc3-83de-43ee742d5c53) + ) + (wire (pts (xy 48.26 -8.89) (xy 48.26 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a69ce4e-f570-47c5-98ba-967651a17d78) + ) + (wire (pts (xy 92.71 146.05) (xy 92.71 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ab650df-4ff5-4420-94c7-b49d612b1a1d) + ) + (wire (pts (xy 118.11 207.01) (xy 125.73 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b286390-4876-4972-aa69-ef1dda1e75dd) + ) + (wire (pts (xy 148.59 19.05) (xy 208.28 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bbbc7e9-fd2b-4c66-89ef-307e1ad26eb5) + ) + (wire (pts (xy 205.74 111.76) (xy 205.74 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c39ebaa-2344-4d1a-aa66-2913e1081fa2) + ) + (wire (pts (xy 148.59 171.45) (xy 207.01 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0dcf34ce-3e4f-48e6-809a-e46383ec343a) + ) + (wire (pts (xy 45.72 34.29) (xy 34.29 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f82d8dc-6576-4b66-95fc-aa44f34039a8) + ) + (wire (pts (xy 90.17 -58.42) (xy 95.25 -58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fde3b22-8318-43f4-88c6-40ead3d3e886) + ) + (wire (pts (xy 120.65 30.48) (xy 125.73 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1023c51b-f11e-4683-89ce-6847cdb5934f) + ) + (wire (pts (xy 92.71 222.25) (xy 92.71 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1135e85d-8ac2-4701-967c-bcd57bb24460) + ) + (wire (pts (xy 92.71 -19.05) (xy 92.71 -6.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1140c902-7255-40fe-9eb0-613f1586bb63) + ) + (wire (pts (xy 35.56 234.95) (xy 68.58 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11b2481b-aee7-46be-b95c-15a1d14cd3d6) + ) + (wire (pts (xy 59.69 -36.83) (xy 92.71 -36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 153ad09f-d6ab-4045-8ced-5b981ecee534) + ) + (wire (pts (xy 120.65 106.68) (xy 125.73 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 162d8611-bf25-410e-984d-6dc39a556c5c) + ) + (wire (pts (xy 118.11 -20.32) (xy 118.11 -21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1788f35b-6b5e-42a3-a2c1-99750e241034) + ) + (wire (pts (xy 90.17 -21.59) (xy 95.25 -21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 181f4931-f457-45e0-b799-1278fe5202f1) + ) + (wire (pts (xy 113.03 82.55) (xy 123.19 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 193b19af-9e33-48d0-a883-be80e51f28f3) + ) + (wire (pts (xy 118.11 55.88) (xy 118.11 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19639af3-f90e-4800-8653-7772aaf8eceb) + ) + (wire (pts (xy 118.11 130.81) (xy 125.73 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cf0344d-bf9f-4191-9e36-570f70e69e86) + ) + (wire (pts (xy 156.21 31.75) (xy 156.21 15.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e668214-239e-4408-87d0-c1e41bb51f26) + ) + (wire (pts (xy 123.19 -43.18) (xy 125.73 -43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1eb82ae8-c256-48c1-8a15-0359d16c5993) + ) + (wire (pts (xy 123.19 -6.35) (xy 123.19 -19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ebec659-dd21-46cf-b4b3-bafe03f0143f) + ) + (wire (pts (xy 148.59 132.08) (xy 205.74 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f94b7ad-f14b-426c-9d54-80a79710a5db) + ) + (wire (pts (xy 234.95 41.91) (xy 243.84 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20284fbf-e019-4c69-aebc-6c59b0f99864) + ) + (wire (pts (xy 156.21 -44.45) (xy 156.21 -60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 229bf866-8bd0-4320-b48e-bc090840a8c5) + ) + (wire (pts (xy 45.72 207.01) (xy 45.72 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22de7bd3-8179-41c4-83b4-52af8f6636cf) + ) + (wire (pts (xy 48.26 -8.89) (xy 95.25 -8.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23c377c7-c95c-4657-b08f-92ee3c6f04f8) + ) + (wire (pts (xy 38.1 21.59) (xy 34.29 21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 252e969b-8657-436f-ac15-4391e866fac0) + ) + (wire (pts (xy 148.59 95.25) (xy 205.74 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25bb8075-ecdd-4577-ad7c-970f7a42ca38) + ) + (wire (pts (xy 123.19 20.32) (xy 125.73 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25c01ff1-c2fb-4b26-864c-92f8926b433b) + ) + (wire (pts (xy 95.25 -6.35) (xy 92.71 -6.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ca07db1-47b0-4420-a3b8-c2b1cb2256a9) + ) + (wire (pts (xy 118.11 -7.62) (xy 120.65 -7.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ecef061-9f67-4285-a961-ede2e8b93b5f) + ) + (wire (pts (xy 148.59 -57.15) (xy 210.82 -57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30bda09f-b3f2-4829-8ef0-cfc867921029) + ) + (wire (pts (xy 53.34 182.88) (xy 95.25 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3232d1fc-4fbe-4ec1-9f47-aa604f541f0b) + ) + (wire (pts (xy 118.11 68.58) (xy 120.65 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3267ecc8-4b5e-4e71-a165-3003d43555ba) + ) + (wire (pts (xy 49.53 30.48) (xy 95.25 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 32e828be-4840-4b22-be24-079fb4bcaa78) + ) + (wire (pts (xy 118.11 -21.59) (xy 125.73 -21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35662a43-1924-4ab1-9b02-0f52587a7791) + ) + (wire (pts (xy 59.69 76.2) (xy 92.71 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 365f7181-a436-4445-97d4-441d719036dc) + ) + (wire (pts (xy 233.68 39.37) (xy 243.84 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 372daace-12fb-4d68-9cc0-e735208346bf) + ) + (wire (pts (xy 50.8 67.31) (xy 95.25 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37a7abbd-ef39-4a22-b01c-9f0881762757) + ) + (wire (pts (xy 156.21 68.58) (xy 156.21 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 389923f8-b4ce-480b-82fe-847ddca31592) + ) + (wire (pts (xy 59.69 115.57) (xy 92.71 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3934eee8-c1e5-41e5-b9fb-09ad17206db0) + ) + (wire (pts (xy 118.11 17.78) (xy 125.73 17.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a4df412-fe8a-4a0b-8aa4-1af240751906) + ) + (wire (pts (xy 120.65 219.71) (xy 125.73 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ad05e27-e465-4088-82c7-8a6c6c8f85e0) + ) + (wire (pts (xy 33.02 148.59) (xy 53.34 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bb2c817-b4d7-4a1e-b108-85531a8f45aa) + ) + (wire (pts (xy 59.69 0) (xy 59.69 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bfd6919-29c9-43d1-8ef2-ecec6e478898) + ) + (wire (pts (xy 123.19 222.25) (xy 125.73 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cafff6a-db52-4614-a4f5-a0c4e92c8367) + ) + (wire (pts (xy 156.21 144.78) (xy 156.21 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d33a02f-a2cb-4db7-b7e8-529d41c73f59) + ) + (wire (pts (xy 208.28 106.68) (xy 208.28 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d36b4f2-772d-4f7e-bac2-6cb5114fc3de) + ) + (wire (pts (xy 41.91 24.13) (xy 34.29 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d7d8a8a-c229-4f23-ba04-9afecb348e59) + ) + (wire (pts (xy 120.65 107.95) (xy 120.65 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3da14b8d-e254-4ae5-9fe9-f3347010c93b) + ) + (wire (pts (xy 238.76 49.53) (xy 243.84 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f2e9b32-e520-4080-a340-def39f897f98) + ) + (wire (pts (xy 95.25 209.55) (xy 92.71 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44023c07-28a9-458b-83ba-7496b5d0e482) + ) + (wire (pts (xy 241.3 -24.13) (xy 241.3 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 443756cd-376d-412b-b466-6a25fb9799de) + ) + (wire (pts (xy 90.17 54.61) (xy 95.25 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45396d06-4e03-419c-b69f-bb38b58b99f7) + ) + (wire (pts (xy 49.53 30.48) (xy 49.53 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 467b28dd-c2d6-4160-a941-829e0f8ee519) + ) + (wire (pts (xy 118.11 208.28) (xy 118.11 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4701b9f6-5c15-48b4-ac4d-446bd9381c1d) + ) + (wire (pts (xy 59.69 152.4) (xy 59.69 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 477fc306-309c-4adb-9618-3ecccce20079) + ) + (wire (pts (xy 123.19 146.05) (xy 125.73 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47c544db-ad14-4f75-a357-3a172c12d35d) + ) + (wire (pts (xy 95.25 20.32) (xy 92.71 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4847e742-8a51-46f0-ba03-15aaf10e44f0) + ) + (wire (pts (xy 46.99 -45.72) (xy 95.25 -45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49233bfd-102b-42d0-bd82-3d9ba9215c1d) + ) + (wire (pts (xy 38.1 17.78) (xy 74.93 17.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49298f67-317d-4ee8-85c7-8ef43e75d88a) + ) + (wire (pts (xy 120.65 67.31) (xy 125.73 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 499f339a-2b18-454c-b137-7884842371f5) + ) + (wire (pts (xy 123.19 234.95) (xy 123.19 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49f2e4f6-252e-416a-8ad6-d6b380a67b08) + ) + (wire (pts (xy 113.03 158.75) (xy 123.19 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a1d34fc-8a68-4199-a843-4e348c96f769) + ) + (wire (pts (xy 156.21 -24.13) (xy 241.3 -24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b0f3d9c-c8a0-4ec9-88d3-c0ca1f7df4ea) + ) + (wire (pts (xy 120.65 144.78) (xy 120.65 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b9349a1-f22f-4c76-91c8-b0539c84ffa6) + ) + (wire (pts (xy 118.11 170.18) (xy 125.73 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f9184de-763a-4e72-aeea-76c10e273c1b) + ) + (wire (pts (xy 113.03 234.95) (xy 123.19 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fc8c8b3-cef9-4f14-9b46-d272dc1ed156) + ) + (wire (pts (xy 92.71 109.22) (xy 92.71 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51930d2d-0b1c-4b59-a991-0ce17c1fb4fd) + ) + (wire (pts (xy 59.69 0) (xy 92.71 0)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52152013-87a4-4a97-8fd8-37866e44fc84) + ) + (wire (pts (xy 59.69 39.37) (xy 92.71 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 547713cd-1694-43a0-8b6f-cf364f440ae2) + ) + (wire (pts (xy 123.19 121.92) (xy 123.19 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 547b4beb-f10b-4b18-99a1-e1ecd1eb8491) + ) + (wire (pts (xy 113.03 121.92) (xy 123.19 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5503a547-6e39-41a3-9ce2-dd95e2a4b360) + ) + (wire (pts (xy 123.19 96.52) (xy 125.73 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 558f7b67-4a5e-4fcf-ba89-4cc753b7adcd) + ) + (wire (pts (xy 118.11 132.08) (xy 118.11 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55ceea69-a4f1-4639-9dc4-435f2785b5c5) + ) + (wire (pts (xy 120.65 68.58) (xy 120.65 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55d6eb87-4a2e-47fa-a57a-9ce474432132) + ) + (wire (pts (xy 95.25 172.72) (xy 92.71 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5647b853-2b8c-4192-a68a-312003737fd3) + ) + (wire (pts (xy 68.58 198.12) (xy 68.58 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 572f90c3-df94-4f2d-8e70-27d6b3b4e86d) + ) + (wire (pts (xy 40.64 26.67) (xy 34.29 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 577ae756-d165-4e65-b397-22c517bef585) + ) + (wire (pts (xy 123.19 82.55) (xy 123.19 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57d878b4-72bc-4e77-9c8f-be6ea70f15b6) + ) + (wire (pts (xy 53.34 182.88) (xy 53.34 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5aab5472-6f66-4277-8b4b-14704e56fe39) + ) + (wire (pts (xy 120.65 182.88) (xy 125.73 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b4e8e6d-9931-4717-980d-a0dc6c248b2d) + ) + (wire (pts (xy 68.58 6.35) (xy 68.58 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b884c86-069e-4a37-9976-2c631d973fce) + ) + (wire (pts (xy 92.71 185.42) (xy 92.71 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c383900-0746-45b7-927d-615b89fa6392) + ) + (wire (pts (xy 210.82 101.6) (xy 255.27 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d370d68-3397-4b73-ba96-35f7b393255a) + ) + (wire (pts (xy 255.27 106.68) (xy 208.28 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d611f90-d488-49d7-be9d-5a3f98f9dc19) + ) + (wire (pts (xy 113.03 -30.48) (xy 123.19 -30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5db98208-f3b1-4e27-8cf7-2598454a11f7) + ) + (wire (pts (xy 123.19 33.02) (xy 123.19 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f21f772-e59e-40c9-a6fe-6f24b58dc3ac) + ) + (wire (pts (xy 118.11 171.45) (xy 118.11 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6026c118-2f15-4839-9609-6d87dc3cd6d7) + ) + (wire (pts (xy 59.69 191.77) (xy 59.69 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60a0e14a-9ec0-47cb-bb99-503653c83b33) + ) + (wire (pts (xy 123.19 -30.48) (xy 123.19 -43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60d8aee2-7879-4767-bf27-ff0b450db73c) + ) + (wire (pts (xy 33.02 135.89) (xy 48.26 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60dfb685-669d-477c-bce5-bc08b2663c5e) + ) + (wire (pts (xy 45.72 207.01) (xy 74.93 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61e0fd03-940d-4967-93f4-d21e6b1a46d2) + ) + (wire (pts (xy 53.34 143.51) (xy 95.25 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62f5a2ea-326a-4290-82f6-53851d6c0580) + ) + (wire (pts (xy 33.02 140.97) (xy 50.8 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62faa7aa-e5d4-4031-afe2-e94b07ac606b) + ) + (wire (pts (xy 123.19 209.55) (xy 125.73 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6334d099-9380-4355-88f4-5d7e0c6201f3) + ) + (wire (pts (xy 156.21 220.98) (xy 156.21 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 636bcadb-b6f5-49a4-95db-a2cedaf84dfe) + ) + (wire (pts (xy 243.84 -60.96) (xy 243.84 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 638f8c75-69a3-4e04-ac0e-6c28270bc4b9) + ) + (wire (pts (xy 49.53 138.43) (xy 33.02 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6399ac6c-5aae-4a04-87a5-cf5283fe2900) + ) + (wire (pts (xy 35.56 214.63) (xy 38.1 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63ace931-4ebe-4ded-bcc2-ef0435d7373c) + ) + (wire (pts (xy 35.56 217.17) (xy 35.56 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63d51262-3474-4631-8ad4-d0853ff0baab) + ) + (wire (pts (xy 123.19 222.25) (xy 123.19 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 664370f4-046b-4a7c-af84-ee0d1afd0a9f) + ) + (wire (pts (xy 123.19 172.72) (xy 125.73 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 694016a5-1eef-4a91-9619-b1dd28acea0c) + ) + (wire (pts (xy 34.29 -58.42) (xy 34.29 16.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a1c3092-fdc6-4356-a513-e79ced9f2d66) + ) + (wire (pts (xy 123.19 146.05) (xy 123.19 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bac0d2a-93f2-4a33-9c2e-a3f601e43c15) + ) + (wire (pts (xy 118.11 -44.45) (xy 120.65 -44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d92a7cd-9fa8-4762-9e19-58a9ca79fe45) + ) + (wire (pts (xy 120.65 -7.62) (xy 120.65 -8.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6dcd5b8f-0268-41be-abe4-5aca29665ba9) + ) + (wire (pts (xy 123.19 69.85) (xy 125.73 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e77e0ca-c6d3-4854-8314-b9f073601d97) + ) + (wire (pts (xy 40.64 93.98) (xy 40.64 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e7ae068-3941-4afc-ae3f-b2396400c660) + ) + (wire (pts (xy 148.59 -44.45) (xy 156.21 -44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e98b227-5acb-4709-9eb2-114abb85542c) + ) + (wire (pts (xy 120.65 220.98) (xy 120.65 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 709ddfed-143b-4190-bfcf-3d215ed10780) + ) + (wire (pts (xy 123.19 158.75) (xy 123.19 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 766e161f-e31c-4f45-a7b6-8fac65706ab8) + ) + (wire (pts (xy 207.01 171.45) (xy 207.01 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76bc370a-0552-4fc3-a3b4-877a7cc091df) + ) + (wire (pts (xy 92.71 209.55) (xy 92.71 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 787e65c1-1b8e-46a0-ad4a-4880a364caee) + ) + (wire (pts (xy 118.11 220.98) (xy 120.65 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 791323c6-0cbd-435d-be3f-a8428e7bff06) + ) + (wire (pts (xy 118.11 144.78) (xy 120.65 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a89ce5d-a5de-4d60-85da-ada1f304b199) + ) + (wire (pts (xy 68.58 -30.48) (xy 68.58 6.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a90c6bb-3c61-42ff-84a8-888e43a3132a) + ) + (wire (pts (xy 148.59 107.95) (xy 156.21 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7afa2733-fb0c-427d-94d0-e25cbcb38173) + ) + (wire (pts (xy 92.71 20.32) (xy 92.71 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7cc772d2-a373-481f-ba0e-b99ee03640ce) + ) + (wire (pts (xy 118.11 95.25) (xy 118.11 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d3e73ee-c16f-4098-ae80-7dacd73722f8) + ) + (wire (pts (xy 95.25 -19.05) (xy 92.71 -19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d635730-26e4-476a-8b71-d50fcaf60639) + ) + (wire (pts (xy 68.58 234.95) (xy 97.79 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e08c6ca-b8ce-44fd-b791-1d4a7e1f1129) + ) + (wire (pts (xy 238.76 204.47) (xy 238.76 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e9f9937-40b0-4150-a1f8-3cffc7769dfb) + ) + (wire (pts (xy 148.59 184.15) (xy 156.21 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8088cbe5-6724-4b63-956c-88f259a5ba17) + ) + (wire (pts (xy 123.19 -6.35) (xy 125.73 -6.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 849f170f-c3b7-474c-b518-9f9c67eb0089) + ) + (wire (pts (xy 113.03 198.12) (xy 123.19 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84e5fe01-0ee2-488b-a244-879c02682fb9) + ) + (wire (pts (xy 95.25 185.42) (xy 92.71 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85194f11-22b8-4316-8e5a-eb023be1c8cf) + ) + (wire (pts (xy 52.07 106.68) (xy 52.07 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 877d0044-f6af-45f9-8bca-b45b4f6fdb54) + ) + (wire (pts (xy 46.99 133.35) (xy 33.02 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87c8d625-71e7-4572-ba4d-281494f0abaf) + ) + (wire (pts (xy 120.65 -8.89) (xy 125.73 -8.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89499424-5935-4f3b-bf44-01f4a170e239) + ) + (wire (pts (xy 156.21 -60.96) (xy 243.84 -60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b1bb98f-354f-43ed-ad5f-65b879d5a66a) + ) + (wire (pts (xy 36.83 19.05) (xy 34.29 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bd380be-8910-4fe9-894b-268d3993d997) + ) + (wire (pts (xy 123.19 57.15) (xy 125.73 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d911316-f069-4cbd-a705-1f98c0646f24) + ) + (wire (pts (xy 92.71 172.72) (xy 92.71 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ddd6379-c37c-4c35-b480-fedc94184e50) + ) + (wire (pts (xy 208.28 119.38) (xy 208.28 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f67def3-a447-4e0f-952f-1d1a7e7fb522) + ) + (wire (pts (xy 59.69 152.4) (xy 92.71 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91d9ad3d-ddcc-41a0-8f71-c6c03b5677ba) + ) + (wire (pts (xy 156.21 167.64) (xy 237.49 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9227ec8e-2360-4cc9-9b7d-b3f8e814ca0b) + ) + (wire (pts (xy 120.65 143.51) (xy 125.73 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 923ae995-e209-4348-84c3-dbba7b6d28f5) + ) + (wire (pts (xy 209.55 104.14) (xy 255.27 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 928d47c9-dde3-417b-b8d1-c64f1703286b) + ) + (wire (pts (xy 38.1 228.6) (xy 59.69 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9497c9c2-2253-4fb9-b17d-ba0243b1e9d4) + ) + (wire (pts (xy 156.21 91.44) (xy 234.95 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 950954b3-3ac4-4436-bfa0-ba766ead5916) + ) + (wire (pts (xy 92.71 -55.88) (xy 92.71 -43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9667bfa8-883e-43d4-94fe-0150be7d35c3) + ) + (wire (pts (xy 43.18 130.81) (xy 74.93 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97dff159-2297-4a0f-ba5b-bea6f2eddfda) + ) + (wire (pts (xy 118.11 107.95) (xy 120.65 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 992b4d63-7028-424b-92de-472f86f98a67) + ) + (wire (pts (xy 95.25 -55.88) (xy 92.71 -55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ad7b8fa-92e0-4f1a-9ce9-ea17d3f154d7) + ) + (wire (pts (xy 59.69 -36.83) (xy 59.69 0)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9afb6016-b4d8-48a9-a404-0410294461b5) + ) + (wire (pts (xy 95.25 57.15) (xy 92.71 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bc3eb10-ae1a-4b45-9fc9-66978d8ff2ea) + ) + (wire (pts (xy 238.76 36.83) (xy 243.84 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bd9edc5-3547-47eb-9713-8e9a9e2d1835) + ) + (wire (pts (xy 44.45 31.75) (xy 34.29 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c4c9e95-b005-4932-a084-8d278c18d91f) + ) + (wire (pts (xy 123.19 185.42) (xy 125.73 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cf910f9-cef3-4361-94dd-7ffe9ff8eb5c) + ) + (wire (pts (xy 95.25 133.35) (xy 92.71 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e04ec5c-ebf8-4cd8-82bb-4690b9d3baec) + ) + (wire (pts (xy 44.45 170.18) (xy 74.93 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e181866-b8c1-4c95-a199-467b7824adc3) + ) + (wire (pts (xy 123.19 109.22) (xy 125.73 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e3610c3-7e41-4cdc-be7e-9984e1eb8fd8) + ) + (wire (pts (xy 255.27 111.76) (xy 205.74 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ee6912f-cccf-483a-910c-425a76252ce5) + ) + (wire (pts (xy 120.65 184.15) (xy 120.65 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f6d09b5-ea1f-41e9-bf6c-f913d7dee6c0) + ) + (wire (pts (xy 95.25 146.05) (xy 92.71 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0110ca6-f74a-4d84-9e76-6a293ce981aa) + ) + (wire (pts (xy 95.25 109.22) (xy 92.71 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a137963f-3eeb-42c1-ad27-a4b8cfeee091) + ) + (wire (pts (xy 95.25 96.52) (xy 92.71 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a406f3b9-a8f5-4af0-9d6e-18448c1820af) + ) + (wire (pts (xy 236.22 128.27) (xy 236.22 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a81e142c-e4bf-498a-ae05-b6299b3dc924) + ) + (wire (pts (xy 234.95 91.44) (xy 234.95 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a84111aa-b478-428e-9512-56d173871476) + ) + (wire (pts (xy 90.17 170.18) (xy 95.25 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a84c4be1-7f9c-4e96-9e3d-2e0d6a7a4f46) + ) + (wire (pts (xy 38.1 17.78) (xy 38.1 21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a84d7969-a35c-4857-9dcc-558f801ddb66) + ) + (wire (pts (xy 33.02 151.13) (xy 50.8 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a85f8e62-3ae5-4962-bf2e-042d28242b48) + ) + (wire (pts (xy 68.58 158.75) (xy 68.58 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8fde02c-0d8c-4f0b-a4c8-ecf5d01d10bc) + ) + (wire (pts (xy 118.11 54.61) (xy 125.73 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9082dc5-88c1-41b9-afdb-88edb867c6b5) + ) + (wire (pts (xy 255.27 114.3) (xy 205.74 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9d63f3d-2b5b-49f2-9803-c3331e2973bd) + ) + (wire (pts (xy 118.11 184.15) (xy 120.65 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aad695de-27e2-4dd6-aa41-0e9d342a58cc) + ) + (wire (pts (xy 237.49 46.99) (xy 243.84 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac71acda-a364-4bf9-92cc-b094ba57f35f) + ) + (wire (pts (xy 68.58 82.55) (xy 97.79 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac79856c-7786-4eb6-aafe-0a7bb47b754c) + ) + (wire (pts (xy 237.49 167.64) (xy 237.49 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acb57b40-54b2-455f-95d1-8b52650bf4f0) + ) + (wire (pts (xy 46.99 -45.72) (xy 46.99 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad16bcd6-2e49-4081-b2f0-a08c4c87a6cf) + ) + (wire (pts (xy 238.76 15.24) (xy 238.76 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad82e2df-06f3-4453-993b-a8d947e6c8d7) + ) + (wire (pts (xy 148.59 31.75) (xy 156.21 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aef52b4f-9a96-4a9d-99d4-097917f58de5) + ) + (wire (pts (xy 50.8 151.13) (xy 50.8 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af0ea470-173d-42a8-bebd-310bb83643fa) + ) + (wire (pts (xy 123.19 69.85) (xy 123.19 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b21b66a6-9896-4bf8-8b8f-001c61ac92e1) + ) + (wire (pts (xy 255.27 119.38) (xy 208.28 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b22d57fb-aa08-46f7-aa88-3e8c7b92a2f5) + ) + (wire (pts (xy 148.59 144.78) (xy 156.21 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5216a16-719a-4772-bd61-72d5ebd7fad3) + ) + (wire (pts (xy 44.45 170.18) (xy 44.45 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5490e7c-a2cc-46a5-a1ed-9f9fdc250fcf) + ) + (wire (pts (xy 241.3 34.29) (xy 243.84 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b614b979-4b72-47e1-a83b-43f3dcf6bae8) + ) + (wire (pts (xy 207.01 109.22) (xy 255.27 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6ff1fd2-1f58-40bf-b3a6-3e209c0cd0e1) + ) + (wire (pts (xy 123.19 185.42) (xy 123.19 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b747af6c-2751-46d2-bd27-27a5fba4fc94) + ) + (wire (pts (xy 205.74 114.3) (xy 205.74 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b810930a-a05b-4050-a5dd-48d3f6ce1b97) + ) + (wire (pts (xy 50.8 140.97) (xy 50.8 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b912dc58-4998-468e-86f5-e29ae79d4838) + ) + (wire (pts (xy 95.25 222.25) (xy 92.71 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bba9e2b6-a535-4bca-9968-ae9f54a2feae) + ) + (wire (pts (xy 41.91 54.61) (xy 41.91 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc292e5d-b8b3-4e57-bab7-4705b654145f) + ) + (wire (pts (xy 90.17 130.81) (xy 95.25 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf8b2630-b7da-4598-9273-8e2017083151) + ) + (wire (pts (xy 90.17 207.01) (xy 95.25 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0494ef3-086c-42a8-805c-9af2df1d7743) + ) + (wire (pts (xy 156.21 128.27) (xy 236.22 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0b7deb8-5997-485f-a967-3016ac102add) + ) + (wire (pts (xy 156.21 15.24) (xy 238.76 15.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c111246e-22de-4c85-9e80-96c380d53ff2) + ) + (wire (pts (xy 236.22 44.45) (xy 243.84 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c14ebd99-06a7-4378-b21c-7fd5304a272d) + ) + (wire (pts (xy 43.18 130.81) (xy 43.18 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1702a7a-3b71-4a86-a2a5-912ddae08bf6) + ) + (wire (pts (xy 90.17 93.98) (xy 95.25 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2387767-5eed-4d6e-a565-33ff09659203) + ) + (wire (pts (xy 233.68 52.07) (xy 233.68 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2512199-04e5-4d62-9055-f0fcefd0db50) + ) + (wire (pts (xy 148.59 -7.62) (xy 156.21 -7.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c25dd937-4efe-4b07-8db8-d2cdcad2c1a6) + ) + (wire (pts (xy 92.71 33.02) (xy 92.71 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c512fa50-0289-4c9c-a002-8fd4193c5869) + ) + (wire (pts (xy 156.21 107.95) (xy 156.21 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5daf0fa-a89d-4fd1-b141-963310b9715a) + ) + (wire (pts (xy 68.58 121.92) (xy 68.58 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6255b63-2959-4da3-807d-eebeae3e59a7) + ) + (wire (pts (xy 95.25 -43.18) (xy 92.71 -43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c71f4149-25a7-4b3d-ae58-897da0ea6aa8) + ) + (wire (pts (xy 53.34 143.51) (xy 53.34 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7cbf147-6828-4263-91df-23d7efc045c8) + ) + (wire (pts (xy 59.69 228.6) (xy 92.71 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cba3723b-14d5-448b-a139-f0d85d8c5542) + ) + (wire (pts (xy 148.59 -20.32) (xy 209.55 -20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc0cb1c7-bfc8-4ee9-b756-7e94a803e30e) + ) + (wire (pts (xy 120.65 -45.72) (xy 125.73 -45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc4c9eec-9e55-46c0-a532-f3e0145248a5) + ) + (wire (pts (xy 52.07 143.51) (xy 33.02 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cee888dd-8e16-4261-b249-cbd1135ba848) + ) + (wire (pts (xy 68.58 198.12) (xy 97.79 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf162ef6-66c4-4713-9cff-80ed3e45f317) + ) + (wire (pts (xy 34.29 -58.42) (xy 74.93 -58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf7e8ada-b7ae-4671-af3e-9f583e85eff7) + ) + (wire (pts (xy 36.83 -21.59) (xy 74.93 -21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cff962bb-baf2-4bed-8dc2-dffa4db5c5af) + ) + (wire (pts (xy 207.01 116.84) (xy 255.27 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d06ef2a1-823b-4804-81b8-b626bc6fa5f2) + ) + (wire (pts (xy 118.11 31.75) (xy 120.65 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1377968-e272-45e7-b46d-a54c2ec24d2b) + ) + (wire (pts (xy 59.69 39.37) (xy 59.69 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d142eeaf-4a1d-472c-be16-0e0532a5f274) + ) + (wire (pts (xy 156.21 52.07) (xy 233.68 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d30cef0f-cf2a-40ca-a5db-ba693ff4b3e8) + ) + (wire (pts (xy 156.21 184.15) (xy 156.21 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d563365a-7001-490f-b754-9d8e976b7ba9) + ) + (wire (pts (xy 123.19 198.12) (xy 123.19 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d811ed5b-556a-4141-b9af-4a7a126901e3) + ) + (wire (pts (xy 68.58 -30.48) (xy 97.79 -30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9c5f29c-5dc8-4248-ab34-2a30cddbb288) + ) + (wire (pts (xy 123.19 -19.05) (xy 125.73 -19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db6c73d8-6559-499b-b349-5493f4a613af) + ) + (wire (pts (xy 148.59 220.98) (xy 156.21 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbabeac1-d103-43eb-b0ae-c9f83f29fed7) + ) + (wire (pts (xy 120.65 -44.45) (xy 120.65 -45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd662362-2d51-4140-ac93-a2b85c7da54d) + ) + (wire (pts (xy 90.17 17.78) (xy 95.25 17.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ddd2a4bf-05bd-4d25-bbcb-7825cbc4b832) + ) + (wire (pts (xy 92.71 133.35) (xy 92.71 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ddd58253-7c70-48b1-b494-24f9280c3172) + ) + (wire (pts (xy 118.11 -57.15) (xy 118.11 -58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ddfcbf61-ce0b-49b8-9bbd-abbad52a1f5a) + ) + (wire (pts (xy 123.19 -55.88) (xy 125.73 -55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de19b5d9-3b84-4778-8840-1091fbf8ce93) + ) + (wire (pts (xy 123.19 -43.18) (xy 123.19 -55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df4351a1-fd42-4ce4-87ed-e3b652c40c40) + ) + (wire (pts (xy 123.19 33.02) (xy 125.73 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e04628ba-e059-47ef-93b6-c74a4cb81eda) + ) + (wire (pts (xy 148.59 68.58) (xy 156.21 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3db9d52-34bb-4921-9e04-08b6ff19620d) + ) + (wire (pts (xy 207.01 55.88) (xy 207.01 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e583c7b2-606a-42e3-b1bc-bd97512fab5a) + ) + (wire (pts (xy 52.07 106.68) (xy 95.25 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6e86d23-d1c1-4d00-b22f-8103db268b18) + ) + (wire (pts (xy 95.25 33.02) (xy 92.71 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e765457d-afc1-4a40-b323-b8207ae02256) + ) + (wire (pts (xy 148.59 55.88) (xy 207.01 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8087a60-119c-4d8e-91bf-bbfd6ca661a0) + ) + (wire (pts (xy 92.71 57.15) (xy 92.71 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e84e19f7-d054-4480-814a-ffc346bfbfd7) + ) + (wire (pts (xy 113.03 6.35) (xy 123.19 6.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed17a23a-29ff-4cc4-9d86-3d44ab46501b) + ) + (wire (pts (xy 92.71 -6.35) (xy 92.71 0)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed26d4a7-f401-442f-a502-d9d5a548c0ea) + ) + (wire (pts (xy 59.69 76.2) (xy 59.69 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edfb1f30-96b2-494b-81b3-096d98ababa6) + ) + (wire (pts (xy 38.1 214.63) (xy 38.1 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eeecdae6-152f-43ae-b95a-1859bd74c4cc) + ) + (wire (pts (xy 123.19 45.72) (xy 123.19 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f06deea7-9583-451c-805b-58b8bb42af95) + ) + (wire (pts (xy 148.59 208.28) (xy 208.28 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f07b5f44-77c5-4f03-9d70-801196772e3b) + ) + (wire (pts (xy 59.69 115.57) (xy 59.69 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0fd5c13-d536-456d-ab49-225c3dec7240) + ) + (wire (pts (xy 68.58 45.72) (xy 97.79 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f111e1f1-5ce4-44b8-88d7-31ae4174fff0) + ) + (wire (pts (xy 156.21 204.47) (xy 238.76 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f29fb45a-5a96-4a43-b935-3cc43693f5a0) + ) + (wire (pts (xy 118.11 19.05) (xy 118.11 17.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f37684a4-1c66-49a4-9b91-8a79f9e79e6c) + ) + (wire (pts (xy 41.91 54.61) (xy 74.93 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5ca8a91-fab0-4845-a6a7-30e73dfb8af4) + ) + (wire (pts (xy 123.19 133.35) (xy 125.73 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6f9ebaa-c69d-4fe7-957e-564a606f7d8f) + ) + (wire (pts (xy 95.25 69.85) (xy 92.71 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7644706-658a-4f87-b3eb-ea17e90f11e4) + ) + (wire (pts (xy 59.69 191.77) (xy 92.71 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f76c2f51-37d7-480f-ac19-7a4789dacaf6) + ) + (wire (pts (xy 120.65 31.75) (xy 120.65 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7b8e1f3-502f-4cd1-9165-7a4f747159c0) + ) + (wire (pts (xy 92.71 69.85) (xy 92.71 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f824f86c-b967-4f70-8bdd-e717ef7afeae) + ) + (wire (pts (xy 92.71 96.52) (xy 92.71 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb3e225d-e7a7-48a4-aac4-0dc4afe654c2) + ) + (wire (pts (xy 92.71 -43.18) (xy 92.71 -36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd11e93e-c3d8-4824-87bd-902981f6497b) + ) + (wire (pts (xy 209.55 -20.32) (xy 209.55 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe5ce373-3860-4a4e-b9ca-23a0b93de90e) + ) + (wire (pts (xy 210.82 -57.15) (xy 210.82 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid feff47df-5a35-47bc-84a2-9865ff5f6acb) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 106.68 222.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0134272f-d80c-4536-8b9c-1fc6fa4a6e15) + (property "Reference" "U33" (id 0) (at 106.68 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 106.68 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d606d122-ecb8-42b0-98f5-a377ff2dc210)) + (pin "2" (uuid 4f0d7753-41e8-4f75-ac1a-4c87c149a6a3)) + (pin "3" (uuid 1c1a18e2-928d-41bc-a1f9-3947d7593308)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 01e8b0c1-67f4-49d1-96ec-79097b14ca43) + (property "Reference" "U42" (id 0) (at 137.16 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d8813fe5-f552-4b17-bd82-9bbca7603246)) + (pin "2" (uuid d997b1ff-060a-4812-baaf-33414b4f47c5)) + (pin "3" (uuid d4f49d5f-ab42-41f6-8564-1a639769e799)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 106.68 69.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 054aee47-f38d-453c-aa34-3eda598cdc56) + (property "Reference" "U25" (id 0) (at 106.68 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 106.68 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1bdf6d4a-a913-440f-a0a6-3b328dd1856f)) + (pin "2" (uuid 8dd6957b-dc31-478a-a023-3619a66d8cce)) + (pin "3" (uuid 2071498c-ec57-49e4-b719-8cbcec6e35f7)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 106.68 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 092ad73f-3fca-4ce2-bd05-8239d9f3e102) + (property "Reference" "U29" (id 0) (at 106.68 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 106.68 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b459e8cf-7e44-432f-a9bc-b5381b0bd769)) + (pin "2" (uuid 1a3db024-9109-422c-8af0-6d037e10c113)) + (pin "3" (uuid a2f0945b-aadb-4197-8b2c-deb0147d0af7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 105.41 198.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0aba5e24-666b-4ba3-8ac2-79a479e2910d) + (property "Reference" "U16" (id 0) (at 105.41 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7780c754-d922-423a-b7f0-6d1caae92392)) + (pin "2" (uuid ad83ce85-c473-4ea4-9698-70900f47a64e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0ad5be5a-7057-462a-813a-eaefb055cf85) + (property "Reference" "U26" (id 0) (at 106.68 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a1bcd07-6c9f-4684-97b1-811fdd3dc90c)) + (pin "2" (uuid ded52bff-c130-4e60-9da0-33b5015c99e9)) + (pin "3" (uuid df18e2a3-68cb-47a2-8511-4711093ecb01)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 261.62 109.22 180) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 11df4bac-2471-43e1-ac49-cf2b43acf81d) + (property "Reference" "U1" (id 0) (at 265.43 108.585 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 265.43 111.125 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 261.62 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 261.62 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59122ccf-2ac4-493f-9ebd-c07d6779f7fc)) + (pin "2" (uuid 074872e6-5db4-42ef-bfd6-14de36bd42de)) + (pin "3" (uuid 6b3ba377-3f0e-465a-8597-881ba3a4b722)) + (pin "4" (uuid 8c3ea413-8699-4f8d-913b-3566f04c26fa)) + (pin "5" (uuid 15ff032c-d2a3-43f4-9fe2-d40a8732365b)) + (pin "6" (uuid bd06a410-d812-4ffe-abac-0b6889a4ff06)) + (pin "7" (uuid 486eea11-2c0e-4279-a474-29bfec8c3bdf)) + (pin "8" (uuid fb7395f3-0c5f-4ce7-b35f-0e5647c280ff)) + (pin "9" (uuid bd6abc29-5f5a-4877-a2c3-f1b1500486c9)) + (pin "10" (uuid 05338763-4143-4ca5-905f-173479d10c6a)) + (pin "11" (uuid c080a673-c181-466f-b67c-653010cba794)) + (pin "12" (uuid d0f1a61c-26b6-493d-8636-d57488d6eec2)) + (pin "13" (uuid 63c156d1-d79f-45fe-b6ff-2ef89c6ecaa4)) + (pin "14" (uuid 60c00716-6ee7-4c43-87f2-b242bc5622a9)) + (pin "15" (uuid 3af4ab17-abb5-4145-b839-0b785197395c)) + (pin "16" (uuid ff534622-2aef-4ebc-b062-dd3985cab9d3)) + (pin "17" (uuid 215569ae-2f2c-4ec6-9703-f4e414821f9c)) + (pin "18" (uuid d216c651-57cf-4377-9a17-8e303136a979)) + (pin "19" (uuid d934d12f-f6f6-476d-9b2e-14cd4f73dc43)) + (pin "20" (uuid cc345698-e136-4ffd-8938-73a93bf769fd)) + (pin "21" (uuid bf2b6116-a42d-4354-a5c1-660d6496c02a)) + (pin "22" (uuid 38f16546-c35f-416f-9774-5bfaa46f7362)) + (pin "23" (uuid 3dabb5ff-941f-46a5-9d30-58a956b8f484)) + (pin "24" (uuid d79025f7-d9a8-4a0a-a163-ee54f6d5690b)) + (pin "25" (uuid 7c8678a6-ebe6-48b7-a01b-f649384183a4)) + (pin "26" (uuid ef9da519-95b2-4f9f-8a56-30e02e9b573e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 20.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 12991cb8-0923-4199-baf7-c028d7a7d071) + (property "Reference" "U38" (id 0) (at 137.16 11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 15.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 22f48bdc-d9b0-44f6-98ad-ff3a687cdecc)) + (pin "2" (uuid e8164a09-af13-401f-b856-a0c6ab3544a7)) + (pin "3" (uuid df2850dd-a357-48c7-b897-511a1ebf7de4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 19ad8c30-8cdd-47f2-91a7-c9933600d2d4) + (property "Reference" "U40" (id 0) (at 137.16 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ceb11ec6-5be4-4033-ae6d-ae732b9d6b3b)) + (pin "2" (uuid cf8d06e1-5aa7-4440-8d1f-2a4ae6da390a)) + (pin "3" (uuid e3e70396-1357-4738-90fe-35489678bc0b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 69.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 20414922-5c61-45d2-b461-c053be3ed868) + (property "Reference" "U41" (id 0) (at 137.16 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f32444df-8d41-47e9-ae03-587f877bb4e9)) + (pin "2" (uuid 4cb1b7cc-7e76-42dd-9ca2-26f84cbd4c93)) + (pin "3" (uuid bfe5884c-2f01-4b7d-aa21-71025ec754bf)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 29.21 214.63 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26d0dbbc-6af4-4783-ac1a-2600d49edf11) + (property "Reference" "U1" (id 0) (at 29.845 209.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 29.845 212.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 29.21 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 29.21 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 51f44d84-f963-427a-aaa2-e8cbe2efeddc)) + (pin "2" (uuid 7b6d07a3-3670-4085-8acc-50434f7050b3)) + (pin "3" (uuid 9dead734-6203-4906-9973-299517c2e0d8)) + (pin "4" (uuid 21cd97f1-a2f3-4158-8572-859ab889fbea)) + (pin "5" (uuid afa05215-6aa9-4740-978e-62f6da777bc4)) + (pin "6" (uuid 822b7eee-1a64-4104-b456-62641bca6519)) + (pin "7" (uuid cc128e96-4b50-4bec-9e5b-85d7de117ef7)) + (pin "8" (uuid d973fb62-f9cf-4130-bf91-8ffb3eb998e2)) + (pin "9" (uuid 6c17fabc-121b-4e00-8a2d-5770d52d0a82)) + (pin "10" (uuid 89748dcb-f05c-4a21-b99c-beb88e24d3ea)) + (pin "11" (uuid bf26f202-8bff-4ce2-bc9c-16dc1d332299)) + (pin "12" (uuid bafc38a8-a215-476e-b5ff-69316f389476)) + (pin "13" (uuid 52ba7010-1112-4943-935a-0ec1bf1b2ad4)) + (pin "14" (uuid 13aead6f-1d14-412f-a624-7d03149e1eae)) + (pin "15" (uuid 3ea9503c-d5da-4eaa-a4f0-6aaeb4db7ef3)) + (pin "16" (uuid b098321c-c004-4e9c-a745-22e1cceb03ff)) + (pin "17" (uuid 27524ab1-a1c0-43d8-ab9c-e7d6b7d052ae)) + (pin "18" (uuid 667e7dc8-b9b7-48ca-93c6-e28b958dd6ec)) + (pin "19" (uuid ecc1b182-2000-4c11-825e-3485c902f25c)) + (pin "20" (uuid d75dff17-628c-4856-91ec-9a026a0c3047)) + (pin "21" (uuid 1aee4c18-c131-47f5-8668-84239b7e8b69)) + (pin "22" (uuid d99fee6b-5843-4dbb-92a3-891a8cbc18db)) + (pin "23" (uuid 5d3f08a2-be18-4f50-b418-4127a3689eaf)) + (pin "24" (uuid 1f4e43e3-07a8-46dc-9667-66942313f94e)) + (pin "25" (uuid 65da1b62-f2ba-43b8-abc8-b34d4c776d07)) + (pin "26" (uuid e47cf7a0-03da-44c7-a30f-d2dfdaf9d129)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 26.67 133.35 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28e6c20c-7c69-433c-bdff-4b0b88b5682c) + (property "Reference" "U1" (id 0) (at 27.305 128.27 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 27.305 130.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 26.67 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 26.67 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 554309a3-bdb1-499c-909a-2875523b804a)) + (pin "2" (uuid c486b35b-0b06-4b83-81b3-3632de68dcad)) + (pin "3" (uuid ed079bb9-332c-46a0-a638-491df2bf768b)) + (pin "4" (uuid 12ad03af-6f64-4bf1-b656-8d803bccb3d5)) + (pin "5" (uuid cbf11b2a-c653-4ac1-949a-d785eb41fd5b)) + (pin "6" (uuid 038ef0a7-d6f8-499e-8109-a3ffe35a7bfb)) + (pin "7" (uuid acbac584-126b-481b-9684-adc3cc326112)) + (pin "8" (uuid c84762ae-0546-413e-9945-5b54e1a06420)) + (pin "9" (uuid 6ba7d5ea-758e-4a13-839c-3ba0435be196)) + (pin "10" (uuid b55b6b63-1176-4f84-ab39-308ad72a4717)) + (pin "11" (uuid 82cfb438-d006-470d-a449-47ce7bdb6c5d)) + (pin "12" (uuid 0ee7e2c1-97ad-45b8-8367-0426f7029839)) + (pin "13" (uuid cb967f42-0ef3-445b-96e5-f82c69d9e6af)) + (pin "14" (uuid d8735238-4ebf-4009-a8a9-8cafaf9b09ca)) + (pin "15" (uuid 02ed7417-65ff-45de-a53e-ee1746dadd07)) + (pin "16" (uuid 7d4bd3c0-ab59-4506-8ef1-28f16db483fd)) + (pin "17" (uuid 416251de-eeca-453a-80ea-583d40f256a3)) + (pin "18" (uuid f01d9beb-35b3-4a05-9ed2-7e2f4182e271)) + (pin "19" (uuid 2146f8f1-5a76-4029-864a-572ddcbde001)) + (pin "20" (uuid 4bbb7eb6-6f23-4cc1-92dc-f98320cf8a63)) + (pin "21" (uuid 0ff84a4f-9174-4e3b-a181-1be51a7094da)) + (pin "22" (uuid 99b29116-f504-4581-b3fa-fa83cb802a31)) + (pin "23" (uuid 359bf58b-a937-468f-8b13-49a3a0074f04)) + (pin "24" (uuid b9d01d76-a5df-4744-8bc6-740b896136dc)) + (pin "25" (uuid 6f6754fd-680d-42ce-b3a1-c0cb8a4bd478)) + (pin "26" (uuid c5e9ecc8-4752-4e72-848e-effdc1c890ec)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 82.55 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2a1e4b03-4a0e-4da9-a875-cc187e75b74d) + (property "Reference" "U5" (id 0) (at 82.55 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 82.55 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 83.82 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 83.82 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17952016-7572-48da-80cf-217e6f77e5d0)) + (pin "2" (uuid b607e4ce-997e-4e41-a30d-431b2895f533)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 172.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2a4aaf91-ed29-402b-870e-e98e06117f8a) + (property "Reference" "U30" (id 0) (at 106.68 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 93cc574f-0427-4416-8b7d-ff71f8445bd2)) + (pin "2" (uuid c8a7dfc3-2e38-4cf4-ac28-97984bc09db5)) + (pin "3" (uuid d70d0590-5360-4fec-bc29-255a39434814)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 21.59 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 360bb714-d89a-4638-b9e9-117ce748ddf0) + (property "Reference" "U1" (id 0) (at 28.575 16.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 19.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 619783b6-fa00-4a9f-8d10-f2056bfbf83d)) + (pin "2" (uuid 12387ae6-1a1f-486b-a34d-fc79029f62ad)) + (pin "3" (uuid eb1c32cd-12f3-4668-aca3-2175b64c580a)) + (pin "4" (uuid 9f1f65e7-5677-4659-9f51-e37b8163f565)) + (pin "5" (uuid 246db325-79a4-40cf-8445-d67cd364da35)) + (pin "6" (uuid fbf6be0c-2825-43de-9b60-d4430b3298fc)) + (pin "7" (uuid 09c606bc-a619-4a3c-8007-c4f8ea56f704)) + (pin "8" (uuid 3ff6efa1-5a56-4ef8-af67-4e16bc782e34)) + (pin "9" (uuid cee79a60-cdaf-4abc-b5db-b8c6240f386c)) + (pin "10" (uuid c226195f-6839-4a9d-baa2-e72689b56fb5)) + (pin "11" (uuid 167f8475-df92-4ba0-96ee-b1b0dd95e53b)) + (pin "12" (uuid de32f088-33e3-4f22-b788-3c856e54a329)) + (pin "13" (uuid 920fa621-5512-45a9-a2c9-f88edaaa0c75)) + (pin "14" (uuid 5d4ae467-8424-4036-b927-a49b4a55257b)) + (pin "15" (uuid 457f90b9-c124-4acb-8ff1-80f032b58899)) + (pin "16" (uuid 22cc995f-4ef8-4676-8159-797406a9b22a)) + (pin "17" (uuid 630f7403-e2c9-4312-8bd3-2c6be82ec82c)) + (pin "18" (uuid 3bc4956c-a58e-4321-a1f3-11c950ec88f7)) + (pin "19" (uuid 03ae8151-cdfb-458e-b369-c2c54cec7af1)) + (pin "20" (uuid e9d779e8-a5dd-4820-819c-cdaacf6f61e8)) + (pin "21" (uuid 21fabde6-ba19-4fc1-ac0e-46d51e7dff42)) + (pin "22" (uuid 90b5058c-d5be-4a0e-94a1-f3eb0d3d83f2)) + (pin "23" (uuid 896689c8-b7b2-4f67-81d9-d9b58a682f8a)) + (pin "24" (uuid efe5e785-8ef4-4aa7-a933-ca4f0260413f)) + (pin "25" (uuid db2dbd4d-5815-4576-bbbe-d2b053da1b9b)) + (pin "26" (uuid f089ec1d-3dd3-4933-8d71-6af864cebe20)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 105.41 -30.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 37e5d9a0-a463-4c61-9a01-e92fc9215c84) + (property "Reference" "U10" (id 0) (at 105.41 -36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 -33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 -29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 -29.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ec34cec-d899-40e7-a832-678560e6e7de)) + (pin "2" (uuid 93d4bd10-a775-49c5-a6b3-3fa3b2d12a7b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 20.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3f1522f1-4178-48ac-8046-21ce6ad4d836) + (property "Reference" "U22" (id 0) (at 106.68 11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 15.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ead295e2-7a30-4e78-9df4-0f5bb25b99f4)) + (pin "2" (uuid 5e578f11-553f-45d3-bfe7-d651e737ff28)) + (pin "3" (uuid fd73f943-ee9c-414e-9716-a71bf95e38e6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 82.55 -21.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4834dbe0-c369-4e5e-9b3b-303bf04c8122) + (property "Reference" "U3" (id 0) (at 82.55 -27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 82.55 -24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 83.82 -20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 83.82 -20.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b3022b55-c89e-477a-a48b-e55abbce3a87)) + (pin "2" (uuid 05fb5539-6545-4ef5-9c0e-659c046b2fd9)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 82.55 130.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 50fbf6b6-7905-460f-ad39-218ad003f002) + (property "Reference" "U7" (id 0) (at 82.55 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 82.55 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 83.82 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 83.82 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2abd825a-ecce-4cb1-9375-4e23f0fb36a0)) + (pin "2" (uuid edadadaa-0c3b-44a9-bc2a-152c61710936)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 24.13 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51fd090c-8883-4a5a-b98d-3204bdfae7ae) + (property "Reference" "U1" (id 0) (at 28.575 19.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 21.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid de7591fa-5fb4-4794-8231-99d3e5314741)) + (pin "2" (uuid 6a1b750f-c7ee-4532-bfbb-473d167abaa3)) + (pin "3" (uuid 08ccc98a-5409-4e53-b5c8-1750e533f515)) + (pin "4" (uuid fdfb2e57-80e4-43ca-aa48-710de3adf028)) + (pin "5" (uuid 8adaf20c-a231-4473-beb6-c974dd486888)) + (pin "6" (uuid 616a0d40-84de-44ad-8d59-bbc4df1b440d)) + (pin "7" (uuid 48d75dae-db61-4a04-9e9a-b2d9ec160546)) + (pin "8" (uuid b98ed4d7-6cc0-4dcd-8fae-2896826f2867)) + (pin "9" (uuid c754a5c8-0ba8-4649-97f2-f73ebba5749c)) + (pin "10" (uuid c2ed030d-a6df-49e2-b7fb-c1f00f75e295)) + (pin "11" (uuid 9ce9fbe0-9dc9-4893-9696-63e880e0edf7)) + (pin "12" (uuid 9ea772de-1134-4cbb-9ca6-c64954950ee2)) + (pin "13" (uuid 5693a7d4-6062-4f75-8fac-9bb1bb2b1526)) + (pin "14" (uuid 4c7dde5f-8ac2-4702-a54f-9537eb96c99e)) + (pin "15" (uuid bec12861-01cc-40b3-a006-50a56637dd69)) + (pin "16" (uuid 6680aade-c287-457c-9a61-e234d10c77c8)) + (pin "17" (uuid 8dae780b-593e-4034-bf44-f2c5fdf01e4e)) + (pin "18" (uuid b5c4a55a-2a4a-428b-bc93-86f6a969ca11)) + (pin "19" (uuid da50dfb3-feb8-4a1a-b075-b6ee3ea03f93)) + (pin "20" (uuid 5ee2d68e-f1d9-4996-b2b8-9106b9887bba)) + (pin "21" (uuid ce1b4bb6-48d2-4609-b8a5-287eebbe8518)) + (pin "22" (uuid e23fe09a-2804-4af7-8ec3-196f0fe6fc84)) + (pin "23" (uuid 2a459337-2c12-4ac3-bf03-b7fe92f1429c)) + (pin "24" (uuid 013ca078-063b-49d7-a18a-89480541eeb4)) + (pin "25" (uuid f1a98b30-40d8-4831-b0de-3c8b85277e6c)) + (pin "26" (uuid bac69ac0-131c-4ab5-bdf0-07bddffd70fc)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 569100f6-2910-4c6c-85bb-7385664f0653) + (property "Reference" "U32" (id 0) (at 106.68 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d199d3cc-7ddc-4cd9-9beb-a4f3864616f3)) + (pin "2" (uuid b81cacd6-2a7b-44d5-9de7-32bf3973c6c4)) + (pin "3" (uuid 5bda93ff-cf6f-43ce-b194-5bcf657c2133)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 29.21 217.17 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5e776390-c017-4e73-8100-bd43931b466e) + (property "Reference" "U1" (id 0) (at 29.845 212.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 29.845 214.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 29.21 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 29.21 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 93d80c78-9828-4dd4-a7cb-6a06b6c001ad)) + (pin "2" (uuid a9a6230d-063d-41d0-9d59-ac3774e3fbb2)) + (pin "3" (uuid 4a440f62-8da7-4833-83a5-3ece3701e5ef)) + (pin "4" (uuid ba0d7389-01c3-4cc0-8262-b51bf7b1cdd0)) + (pin "5" (uuid 4552ff09-d1c3-4a11-bab3-25a0351de72f)) + (pin "6" (uuid 11d17704-7cd1-4f08-8ec3-7524fa29d5c1)) + (pin "7" (uuid 73446e1b-9eac-4b9d-a2a4-cebb4b3866de)) + (pin "8" (uuid e5f4d2c1-3858-46c4-b85d-c574ee360162)) + (pin "9" (uuid 73381a6c-b6df-42b4-8b05-175f985d76ae)) + (pin "10" (uuid ef849e00-1b3d-44d9-844c-73fa44ca0e7f)) + (pin "11" (uuid 5bfd86bd-b18e-4599-b0fd-92cca7477c56)) + (pin "12" (uuid eb53650a-6cfe-4540-96e8-7b058287f3cd)) + (pin "13" (uuid 0ca25534-2f71-4ead-a00c-cbbad5e8b615)) + (pin "14" (uuid d6a3e9b7-7347-4b39-beee-faa12ab64248)) + (pin "15" (uuid c6b5a801-94f2-45a9-95bc-6487a0982285)) + (pin "16" (uuid 3c7e38e4-fe72-441f-8666-ea262fcd3cbc)) + (pin "17" (uuid a75407f6-b2bf-4912-9345-297ea38c8a2b)) + (pin "18" (uuid 9c5d58b4-ef58-48dd-b6e7-405431a819d0)) + (pin "19" (uuid 160400b6-4887-497d-b52d-e81d2b41c913)) + (pin "20" (uuid ecfee909-e563-49c8-bf14-3bbfedd4d833)) + (pin "21" (uuid e6813740-d3e5-4726-850b-a366d1e60238)) + (pin "22" (uuid 5ff17cbc-c7c6-4391-a70a-3577336adb2d)) + (pin "23" (uuid 05442570-13e6-4e8f-9ece-fa137ec64a7e)) + (pin "24" (uuid 48130205-d7f8-40d6-abbd-4410f6a37b50)) + (pin "25" (uuid 0e8c6925-e125-4b8d-bbf4-f1c8ff6a9478)) + (pin "26" (uuid ad2f5409-b7e4-413a-99ba-6e82b3f0757a)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 106.68 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 616f9cf7-d8e6-4c38-8643-452b0784bf81) + (property "Reference" "U31" (id 0) (at 106.68 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 106.68 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 19460468-135d-4405-accd-5748f3b56c53)) + (pin "2" (uuid 35fc2e33-1646-44db-ba89-c20bacfa5f94)) + (pin "3" (uuid 7e7ebf63-1fa2-4f99-a4dc-1802f3acfbf2)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 61b5d5c6-6990-4a0f-bae6-0b0bb621ffec) + (property "Reference" "U44" (id 0) (at 137.16 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 13a8e00a-3bb4-4881-b14b-122baf4d45fa)) + (pin "2" (uuid 2b3ac0bc-6bc1-47d9-885c-111e67367d67)) + (pin "3" (uuid ad8aab82-05ba-4f10-85bf-8432ff978320)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 109.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 61fb4389-1bd6-4082-a7a0-d2db97034e69) + (property "Reference" "U43" (id 0) (at 137.16 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4e06ebe9-0ebf-4207-9492-a6c5c100ec41)) + (pin "2" (uuid cc7dd73f-9900-4926-9cc5-f4f340119326)) + (pin "3" (uuid e2822372-473e-4240-826d-a49fc12181a4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 172.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 65980e2b-fea7-4280-b80b-35c3e99cadd2) + (property "Reference" "U46" (id 0) (at 137.16 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b71fc37b-568c-40c4-8f54-dae4b224ec18)) + (pin "2" (uuid 9fd67ef9-a21c-4edc-a6aa-16833f74567b)) + (pin "3" (uuid 9efd6688-1c55-46b1-b641-8490117ba286)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 82.55 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 668340bc-5098-4c38-a968-79d1510860af) + (property "Reference" "U6" (id 0) (at 82.55 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 82.55 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 83.82 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 83.82 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ccf9717-ab13-449d-bca4-d3f3c1dfc87a)) + (pin "2" (uuid 42104950-30cf-4645-a8d6-38d6feb08b3c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 250.19 31.75 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6cd65531-313a-44c1-99f0-652981f90626) + (property "Reference" "U1" (id 0) (at 254 31.115 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 254 33.655 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 250.19 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 250.19 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a003e34a-6fce-429c-b507-0f485ee8a5b1)) + (pin "2" (uuid e9ea7a6d-cee9-4054-9f67-ab767d34faa8)) + (pin "3" (uuid 0ef38583-31fd-4f1a-bf08-bf10e1bec873)) + (pin "4" (uuid d03f8d0f-ff6d-49d7-8a8a-f71792eaa958)) + (pin "5" (uuid f730e0ed-98d8-4271-9c48-46abf1273f98)) + (pin "6" (uuid c7e18f92-7afc-4cca-8cf1-a39b9836c586)) + (pin "7" (uuid f5f8dc39-c382-4f22-9614-dd02c1d778da)) + (pin "8" (uuid 21523484-beb9-4bf9-a036-02942a507b6b)) + (pin "9" (uuid d378853c-3219-407c-8c7d-d6daf1fc6c6d)) + (pin "10" (uuid 66f4fa03-3622-426a-a14b-c8b1be3a8f2f)) + (pin "11" (uuid f2e648d8-a355-4210-b204-02964c659ff1)) + (pin "12" (uuid 31d0a189-9beb-4dc9-83bd-eeae0d0a31f7)) + (pin "13" (uuid 67b0cccd-5120-495c-aa04-8632bd0ef859)) + (pin "14" (uuid 46929b48-2b89-4dfe-a440-e6ba93a0001c)) + (pin "15" (uuid f1e00bd5-6161-49df-8fcd-9b647bde2a73)) + (pin "16" (uuid ff785f30-6a32-4935-b269-71b1518fe00b)) + (pin "17" (uuid 7fb8ce30-deb4-408a-99a6-f76992d7879f)) + (pin "18" (uuid 5b7829d1-e04f-489b-9413-26e2672c2941)) + (pin "19" (uuid be4e7ed1-ce0b-4e9a-9464-a5f0ded92ad1)) + (pin "20" (uuid a984377a-3cec-4cb0-ba53-d948ead3ed66)) + (pin "21" (uuid 6ecec381-cd16-45b5-8c3f-7ef58c9adc23)) + (pin "22" (uuid bdaee73a-85bc-4536-90bb-bf051ff27c02)) + (pin "23" (uuid 7fc44975-550e-432f-9b6e-e535a2aeae65)) + (pin "24" (uuid d7e2815b-9c6d-4e13-ae42-522dd32c1fe2)) + (pin "25" (uuid 198be9b8-c579-4c95-ab9c-b6c1dbf1b62b)) + (pin "26" (uuid 222487ec-455c-4c6b-bfe1-9910e873ba0a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 82.55 17.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d384a35-e0fc-4716-8fd8-246869563db1) + (property "Reference" "U4" (id 0) (at 82.55 11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 82.55 15.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 83.82 19.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 83.82 19.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d1b5d217-45a9-4b63-b7e3-1a6d0f1ed82b)) + (pin "2" (uuid 5e6a6891-d83b-4be4-b270-e8290db2a3e8)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 106.68 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6ebbbb61-f503-4d27-bc41-03fb0c32c9d2) + (property "Reference" "U23" (id 0) (at 106.68 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 106.68 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8f42e476-bbe4-4669-81bc-d9ba2c408d16)) + (pin "2" (uuid c219bc99-dae5-49f4-a514-a6c029e0785a)) + (pin "3" (uuid 32630612-dfd9-4b9e-9417-3c95394e2787)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 16.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6ed2715c-b8e0-405a-9836-1e642725e18e) + (property "Reference" "U1" (id 0) (at 28.575 11.43 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 13.97 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 16.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 16.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3bd69139-81d2-4f93-895a-f2f44abc8f69)) + (pin "2" (uuid 78dbba4f-6192-40a9-9c12-4ec7d6bf48b9)) + (pin "3" (uuid c38ea0d1-6a34-4236-8e13-e687279787f9)) + (pin "4" (uuid 2c4bc87f-1037-44d3-9b1f-bfb523cb6d7c)) + (pin "5" (uuid 879e7fb5-0a27-4278-8377-41a695af1640)) + (pin "6" (uuid 3962fc2a-37ad-4266-9b71-f8594ef420b1)) + (pin "7" (uuid f54a90be-04af-44b3-9b01-e94dda8ac11c)) + (pin "8" (uuid 7ec31995-3442-42cc-a977-a513fe2c0508)) + (pin "9" (uuid b6eef9c4-57f5-4602-96e8-bed1304909e3)) + (pin "10" (uuid 6fbce12d-d34a-4fa2-a596-06c3ab17f519)) + (pin "11" (uuid ecb00e44-e05b-4391-9589-929f62e2f139)) + (pin "12" (uuid b56bf34c-fd59-4d43-8896-d02d551b0feb)) + (pin "13" (uuid 48e0bdfd-d957-4bfa-a38e-4a4645cd168e)) + (pin "14" (uuid 9390d486-d12d-4d8b-bdea-c880ba3a50c1)) + (pin "15" (uuid 44266c06-16db-4e10-90e0-2b7372aa6166)) + (pin "16" (uuid aae840a0-1d6e-4138-9935-db03cac63b17)) + (pin "17" (uuid 40e62ed3-3712-4bbb-9e52-5b7685b30c85)) + (pin "18" (uuid 56ce3121-a177-4f46-b12a-cb3d2e020776)) + (pin "19" (uuid 3c27c922-1e7f-402d-aa21-539d099d931b)) + (pin "20" (uuid d8939f86-64ab-4e25-a926-5f8b7cf8b031)) + (pin "21" (uuid aaef8166-121f-4280-86e7-12b8cd1fc100)) + (pin "22" (uuid 811eba0b-befa-46e0-bcc5-72afdbf23689)) + (pin "23" (uuid 117bad12-690d-41e1-a696-215528737b16)) + (pin "24" (uuid c6289221-9b43-4fda-8647-5fe516241e40)) + (pin "25" (uuid f28bf57e-0860-4860-9d6d-014c7d0e0f99)) + (pin "26" (uuid 29e820f8-a230-4759-b4c3-c032926499b5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 261.62 106.68 180) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6fe2f041-cdb5-45ad-b242-b2310691bb9e) + (property "Reference" "U1" (id 0) (at 265.43 106.045 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 265.43 108.585 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 261.62 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 261.62 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 512dea5b-5a80-4597-a390-5d393a877a77)) + (pin "2" (uuid 28ec7703-e4b1-4c22-a200-3dbd2f895c61)) + (pin "3" (uuid 36857a4f-31dd-41ff-9798-6f8a83909402)) + (pin "4" (uuid c25d48cd-2329-43a7-a3bd-d86329cd2ef3)) + (pin "5" (uuid 227694c1-987c-45b0-a1e6-d67e7b648a21)) + (pin "6" (uuid dff638a5-a05c-4736-be10-e92a142e5d33)) + (pin "7" (uuid 63b3a7b3-1368-4035-b3a9-0cac780754ab)) + (pin "8" (uuid a8b17c4e-9424-4c3e-aac2-d50c86ab1fc9)) + (pin "9" (uuid d060b0cf-b7ea-45fa-9ea7-eb8fa22f777c)) + (pin "10" (uuid 07adf861-f3cd-4ae5-92ef-89260f34cb59)) + (pin "11" (uuid 6717e197-e556-48d0-ae7b-dd4b429cdb42)) + (pin "12" (uuid 166f19b3-0fc7-4abe-b1c8-869f5a90db78)) + (pin "13" (uuid 8769deb6-4e8d-4fc5-875a-8c37d3fdcea3)) + (pin "14" (uuid edc4c14e-436b-4b10-b753-1b1423d43b85)) + (pin "15" (uuid fd663624-5435-4d2b-8b93-04ace41fa4e2)) + (pin "16" (uuid 871e9d22-26fc-4ac1-b2e4-c75c6505b719)) + (pin "17" (uuid 3c27b8ef-cb79-4c88-a3e2-d4df3483319b)) + (pin "18" (uuid 9d9a4b32-2018-4d1a-a9f5-5be154c74057)) + (pin "19" (uuid 635b1781-f28e-4a8d-9ecc-301a4cc5b8f0)) + (pin "20" (uuid a27f8b88-0470-47ac-a77b-a8769bfeaab1)) + (pin "21" (uuid d25f4c6f-7df8-44af-b957-5a2c60f57536)) + (pin "22" (uuid e0822588-cbf2-468b-b922-8526fb4047da)) + (pin "23" (uuid 2935cec7-af41-4938-94a3-145677e66b0e)) + (pin "24" (uuid 4fd6ec78-791e-448c-8195-d3477d32d704)) + (pin "25" (uuid 70545bf5-117e-4335-8adc-2fa93b6bdda5)) + (pin "26" (uuid 2ef3b497-1a6c-4727-b63c-914d24acff84)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 82.55 207.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73c16259-2950-48b3-b468-2dcf9399a70a) + (property "Reference" "U9" (id 0) (at 82.55 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 82.55 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 83.82 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 83.82 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6928c841-16ed-4866-8bc9-b30ac389d013)) + (pin "2" (uuid df5d40ff-afd3-44b8-a63c-2c0fab1b4fc7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 82.55 -58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 76c1c3aa-c248-4836-8df5-f15866ef7d41) + (property "Reference" "U2" (id 0) (at 82.55 -64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 82.55 -60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 83.82 -57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 83.82 -57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c2c226ba-d719-4cb5-9e76-17612fac8984)) + (pin "2" (uuid fc329af6-b55b-4e40-b4a0-46aef3f097e2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 261.62 104.14 180) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 76d35e15-d5f9-470c-8ff2-b32743b9e9d7) + (property "Reference" "U1" (id 0) (at 265.43 103.505 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 265.43 106.045 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 261.62 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 261.62 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ec64c1ab-e559-4b1d-82d4-a336c800f26d)) + (pin "2" (uuid aef1fad4-8bd3-4ec9-a293-2be034cf99b0)) + (pin "3" (uuid f6ac9736-295e-438a-ba9b-2e363b6ddf01)) + (pin "4" (uuid 6008e217-e744-44d2-8cf9-836f3939f2db)) + (pin "5" (uuid 6bcd2b0b-7941-4b4b-ad91-547048a03c69)) + (pin "6" (uuid 5a82b823-8bdf-4fc4-93a5-fad4bf408c55)) + (pin "7" (uuid eafc82af-9273-48aa-9539-2389665067c7)) + (pin "8" (uuid df2e32df-9949-48cb-a2dd-3ee9c551069a)) + (pin "9" (uuid 9c86ea3a-b550-4d31-8706-92eda3970b0a)) + (pin "10" (uuid cab9dbbd-c83b-4a7a-82aa-a674a28a9a8d)) + (pin "11" (uuid b145323b-8f82-4fc8-b82e-42e140df265a)) + (pin "12" (uuid 212506af-f7b4-4573-9110-ab4c7ac19bdb)) + (pin "13" (uuid d51d4ffc-6592-4a11-b44a-82f8bb802336)) + (pin "14" (uuid 5ad5e38e-bdfd-498b-9bb6-c75ad84df9a2)) + (pin "15" (uuid 13d313cc-e000-4e1e-a5e1-3ad31870c0c3)) + (pin "16" (uuid eccaff0c-2496-4e74-8935-3c875a6c3b9a)) + (pin "17" (uuid 4cff8297-3866-4a88-861b-1dba05ba25fa)) + (pin "18" (uuid 02aa1f88-96ff-4548-929c-28eea8a2246e)) + (pin "19" (uuid c76d7052-798b-42f3-908a-a2a6557ca1b9)) + (pin "20" (uuid 7117d4a3-646c-49af-84ef-6539f48af3b0)) + (pin "21" (uuid 7f89e5e5-4eb3-4504-8d2e-35cdbffe0648)) + (pin "22" (uuid ae89646f-8f0b-488b-8de7-3e212dd0af4b)) + (pin "23" (uuid 54114529-dc7e-4cf4-927c-3c9121633691)) + (pin "24" (uuid 3d519b08-091f-4631-9111-0ad39bba7dcf)) + (pin "25" (uuid a8cbcb98-c3ed-4747-b4c4-ca85c65edee2)) + (pin "26" (uuid 3b3ea4e1-1cdd-4e1e-925d-75e6a175f2d6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 261.62 101.6 180) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7970457f-d4f9-4a5a-940d-7a12329d2c2c) + (property "Reference" "U1" (id 0) (at 265.43 100.965 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 265.43 103.505 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 261.62 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 261.62 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fa67f854-8acb-4785-89e8-b41842d96a9e)) + (pin "2" (uuid b9f5c3fc-f525-4cb7-905f-256524e10283)) + (pin "3" (uuid 54932037-4ee0-41a2-8ee1-926e73e28e1b)) + (pin "4" (uuid 6e54a0d5-b7f5-4952-801a-835072e547ec)) + (pin "5" (uuid c732d0cc-82e8-4173-a95d-3cd05359bfd2)) + (pin "6" (uuid 6fd40121-f636-4b0b-bcf6-665f79cd0286)) + (pin "7" (uuid 858c5509-a18c-47d1-bd87-612570e795d4)) + (pin "8" (uuid 60a15b64-123d-4ff5-8fd0-0699c2bf53a6)) + (pin "9" (uuid 2a4ac0a2-93c7-4580-b83d-e8221ae1f92a)) + (pin "10" (uuid 45410af5-b9ee-4036-879c-40db8df9bf2f)) + (pin "11" (uuid 9c133da0-112a-4f1f-99f7-1ce4e31d1a8c)) + (pin "12" (uuid a45410c1-178a-46de-9b5b-c9e7ed71797b)) + (pin "13" (uuid 0c0c3824-3050-44e9-a666-833835de8e06)) + (pin "14" (uuid 58cc9e6a-da4d-4d5f-b60b-a98709524287)) + (pin "15" (uuid 7e49f871-c2c0-4ea6-ad76-8041c2ac9c0b)) + (pin "16" (uuid ec55f8a3-5c07-43b6-b952-122813b76c92)) + (pin "17" (uuid e125ba8e-879f-4b50-8b74-0c9c6904755e)) + (pin "18" (uuid 95f1ce47-6ae4-4ed9-ab1e-622c3ee4a95b)) + (pin "19" (uuid 39179023-f16e-4bc9-a1ca-3923978367b1)) + (pin "20" (uuid c333760b-25b4-4458-8bc9-3b9cbb77edc9)) + (pin "21" (uuid 375730d5-67de-4ff1-bcfd-5e19d101b9dc)) + (pin "22" (uuid 23389c33-215d-4af3-9fc6-b7ea93bd2db8)) + (pin "23" (uuid 08de16e9-3837-46a7-84c8-b1a78ad15a24)) + (pin "24" (uuid 3bc05e94-88df-45c0-949d-ccfd0c6e3ff4)) + (pin "25" (uuid 562a4f2c-3df2-47d1-bf8c-014678fbda84)) + (pin "26" (uuid 3ea07ebb-2336-4cca-a997-7d136003edc1)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7986d541-aa7c-4e9e-bc39-8ffc86197e83) + (property "Reference" "U28" (id 0) (at 106.68 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e4f00e81-c57e-4c89-8106-0b8f1fac6389)) + (pin "2" (uuid 6590cff1-5ceb-40cd-a046-66bf10a7b420)) + (pin "3" (uuid e7853c5d-1319-4ed6-8cf1-c3ff92711a77)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 26.67 135.89 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7d2650bd-6ff9-4ec1-accc-a99c7e215646) + (property "Reference" "U1" (id 0) (at 27.305 130.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 27.305 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 26.67 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 26.67 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d788bca5-5456-4c0d-b6e7-574051a58895)) + (pin "2" (uuid 463011ab-025a-4f9e-8d53-2a9df1d78e54)) + (pin "3" (uuid f0602f8b-de5c-45cd-bc89-107dcf55c649)) + (pin "4" (uuid f5ca1ea1-db97-4c57-b769-cf717cec97bb)) + (pin "5" (uuid e1a278a4-80af-4c17-a1a7-07912394a29b)) + (pin "6" (uuid 060e4a8c-a61b-4c39-98a4-b986ceb2ce51)) + (pin "7" (uuid b4f7edfd-9411-46fe-9545-8f5752704d78)) + (pin "8" (uuid 6c67b393-46bb-49d8-8060-60410b5ef20f)) + (pin "9" (uuid e2dc884c-e0df-440f-a5c5-658ae06a9a48)) + (pin "10" (uuid 85b59e4b-170c-49e2-8b01-19eaef51e3c6)) + (pin "11" (uuid 9e938db3-98b2-428a-bf4c-8bc9bd43f7ec)) + (pin "12" (uuid d9f733af-e092-41ab-baf0-b2b20370622f)) + (pin "13" (uuid 32627cd0-6057-4678-8cf4-00d0c7c1c155)) + (pin "14" (uuid 1200a317-0692-4f36-bd55-318835072a5a)) + (pin "15" (uuid 6446d7b5-96c0-4095-8db2-dae1c0ce3cb0)) + (pin "16" (uuid 24a2b44e-9bf3-4309-b3dc-6bdbb6421ff1)) + (pin "17" (uuid 202f7bde-5da7-435e-9739-893459592089)) + (pin "18" (uuid 4ce59539-a32e-4851-a8df-ce1d0984cbfc)) + (pin "19" (uuid 64c0c673-ad60-4a20-be20-32b73f669c03)) + (pin "20" (uuid efbeb055-3135-4983-b370-22667726e985)) + (pin "21" (uuid f5e0b139-5b85-4016-a2ee-38d24a3d5771)) + (pin "22" (uuid 253d21ef-12da-4afb-a655-cb6d10edfd51)) + (pin "23" (uuid d4c33078-a3e8-4063-a98f-baef5db2c195)) + (pin "24" (uuid b1f91e50-2111-4f8f-9423-a96e3100acaa)) + (pin "25" (uuid 3df26648-745c-4f3f-8111-2a27539da115)) + (pin "26" (uuid 505ae764-81b6-47fe-9972-5a727861665e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 222.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7d8bae7f-41ff-4dcb-afc9-4c4fbe0e5fa4) + (property "Reference" "U49" (id 0) (at 137.16 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a389ff93-29b4-448b-af27-cea49295287a)) + (pin "2" (uuid eb0a7e39-fced-4e14-9497-804055cd0724)) + (pin "3" (uuid 5332b5da-cd8f-4749-a970-40903b2c3ed3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 -6.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7fb0d5a0-c49e-480b-a74c-41050b83ede4) + (property "Reference" "U37" (id 0) (at 137.16 -15.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 -11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 -6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 -6.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid af650b15-ba11-4413-baf7-2b2317e03556)) + (pin "2" (uuid 6638c5d0-a9f2-4840-8fc7-0e95cdb2ecd7)) + (pin "3" (uuid c0225a3c-5dcb-4022-8a58-150e45f00d34)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8066296c-ee27-4b8f-ac34-23716acd375e) + (property "Reference" "U45" (id 0) (at 137.16 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dfd5cf88-3ec2-499e-aa19-0af635158ae3)) + (pin "2" (uuid 61f76e6c-4111-40b9-b7ff-11be4ce4eadc)) + (pin "3" (uuid 6820918e-462a-4500-b2c5-f6e5052edbec)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 -43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9acef753-9586-43a6-9c13-87877a234d61) + (property "Reference" "U35" (id 0) (at 137.16 -52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 -48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 -43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 -43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1d0c51ae-b27e-47c8-84a3-34309fb9de62)) + (pin "2" (uuid 0b50d751-5749-4f2f-a490-8547f27628fa)) + (pin "3" (uuid 2c30a7d6-5a83-422e-952e-bb7edf66d59d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 26.67 138.43 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a65062ad-b70e-4fcd-aafe-45afae5cb576) + (property "Reference" "U1" (id 0) (at 27.305 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 27.305 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 26.67 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 26.67 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 937a89ff-7cf3-4caa-ab7a-cfa6169c5542)) + (pin "2" (uuid 640d7012-f1b1-4ae3-bc75-5c0f2af80bc7)) + (pin "3" (uuid 0f44ee65-7079-416e-86ce-423a3b21b7d8)) + (pin "4" (uuid 15b357e6-4ac0-4b02-b7dc-6839f7783532)) + (pin "5" (uuid da25dd7e-cc87-49b8-bbb6-aba72d260384)) + (pin "6" (uuid dfa9c386-8851-4ad5-b34f-50c56a9c291c)) + (pin "7" (uuid 50c46737-fdab-45c0-8598-e3f92c6c0a65)) + (pin "8" (uuid e8fce5a1-2b39-4d16-b043-e17fd3e76b4e)) + (pin "9" (uuid 062b8ce1-7386-427a-be44-2039ed3ef870)) + (pin "10" (uuid 9914131b-126e-4220-afff-6fd542f61080)) + (pin "11" (uuid b8aa10a4-b513-4980-b7ac-f96280d35a49)) + (pin "12" (uuid 58c2c82f-9e4f-4908-a597-367966cd352b)) + (pin "13" (uuid d3c969bc-e109-4839-9fe0-52d98ca8f04c)) + (pin "14" (uuid 0a937e9d-1234-4ec3-b42d-c7d94e0ee807)) + (pin "15" (uuid f7087ab4-ace4-4547-af4a-f90f29b58ecf)) + (pin "16" (uuid 3d4440b7-c5cb-490f-a5bb-3070795591a8)) + (pin "17" (uuid 38ea43f9-92e8-42d5-8815-181549696d30)) + (pin "18" (uuid 1c740083-58b7-46b9-9005-1735f8b44ed6)) + (pin "19" (uuid 75fbf238-fc09-4b14-9532-c158b4e7cbe5)) + (pin "20" (uuid 33a85706-f3b5-4aa4-a548-a885c80e4df4)) + (pin "21" (uuid c2ad0d7c-7528-4d33-b38d-1cb6dd021290)) + (pin "22" (uuid 32aea6ad-707d-4371-a86a-daaeb3f1981d)) + (pin "23" (uuid 1f2a8f7f-b5fd-408f-87aa-784680f3e965)) + (pin "24" (uuid 2178d6e3-1780-4da5-8c56-5159301ac69b)) + (pin "25" (uuid 6b015275-f7d0-44cb-b645-54dd963b4d22)) + (pin "26" (uuid dbc3f5e4-0f5c-498d-9537-a62d2f9e0d8b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 -19.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b0fbc5d2-2463-4049-9903-7b752b283c6b) + (property "Reference" "U36" (id 0) (at 137.16 -27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 -24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 -19.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 -19.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e375b462-f9f2-4132-a10a-0e53a52be53b)) + (pin "2" (uuid 1b2c8653-4497-4730-9808-dca4b34f0d8d)) + (pin "3" (uuid 3472ad8e-7867-4677-9232-47486da7bde4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b23e3345-dae8-4c88-ad32-4fb8abad561b) + (property "Reference" "U24" (id 0) (at 106.68 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17f8af13-2289-42b0-ae8d-5bc20bacf871)) + (pin "2" (uuid 31eefac1-5395-4bfd-888c-5ac96d75d1db)) + (pin "3" (uuid 0be1aeda-da61-4b3d-b1c0-44fe373a6290)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 -19.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b2d97542-89e6-46c8-80f0-599e178392df) + (property "Reference" "U20" (id 0) (at 106.68 -27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 -24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 -19.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 -19.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f0183524-7348-47e0-ba01-b332cc445886)) + (pin "2" (uuid 0e532131-6160-45a8-8818-f046713c2ddc)) + (pin "3" (uuid d4376135-65fa-4a4d-bc6e-9fe5c748490e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 26.67 140.97 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b61724fb-d3f2-482d-bfbb-1c78bc3074e2) + (property "Reference" "U1" (id 0) (at 27.305 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 27.305 138.43 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 26.67 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 26.67 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 50f2735c-6476-41a6-bae2-d2c04e00f220)) + (pin "2" (uuid 084b0b78-9c98-4199-b37a-5f0897a21560)) + (pin "3" (uuid 08a6fdaa-27dc-4d51-9724-c0e858190280)) + (pin "4" (uuid dbad4776-65fd-474c-b421-2a804e76157c)) + (pin "5" (uuid eb0c9cd0-537b-4002-af77-3b82b94d48bb)) + (pin "6" (uuid f6b36ec7-3445-4ca9-bbcc-3202808eac6d)) + (pin "7" (uuid c971afa7-482f-47f8-87d8-5d7011334557)) + (pin "8" (uuid 01dd534b-b618-4e51-ae05-57fbd7edb4bb)) + (pin "9" (uuid d479f565-9f75-4ab3-8d48-90bdf9fe07f7)) + (pin "10" (uuid eddc0e2a-8f13-4ec4-92cb-f75c3ae6e6ee)) + (pin "11" (uuid eebf3a9e-6bf3-4d1c-a237-e4e2cde4ebbc)) + (pin "12" (uuid 4c8e4a56-ed96-4764-b0ef-96a973244dda)) + (pin "13" (uuid e2628dd5-188e-4f1f-a513-66f1c221a694)) + (pin "14" (uuid 6615592a-4363-494e-bc46-ac2558475ce3)) + (pin "15" (uuid 87faebbb-6a09-462f-8146-b65c46068563)) + (pin "16" (uuid d84f59e3-e4d1-4896-afd8-ca093884ae50)) + (pin "17" (uuid d7a99cc3-8a92-4357-8e61-0d8153b83b1a)) + (pin "18" (uuid befdc214-477e-4ff0-aafa-6c1ac8618e3c)) + (pin "19" (uuid 09b58f9e-5cac-443e-b6f8-49236193c693)) + (pin "20" (uuid 1aa1ee66-1745-47bf-81ae-472093e6e1e0)) + (pin "21" (uuid 9a0e7340-c9b1-4465-a4ba-d4aa2ff67d1d)) + (pin "22" (uuid 2bdac16a-97db-43cc-b0d7-78a7ed01a805)) + (pin "23" (uuid 219bb542-e98f-463d-b052-3bbec8109ce8)) + (pin "24" (uuid cdfa1c9d-6aee-4edf-915f-2585958f6bff)) + (pin "25" (uuid 67dc4f46-e94b-4983-87a8-165ceedcce5b)) + (pin "26" (uuid d95008db-98b3-4cc8-8754-af35a4e4a5d3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 105.41 6.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b875418d-be6e-4d6d-8d47-d3b08bd2ad70) + (property "Reference" "U11" (id 0) (at 105.41 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a70112d9-dc68-480c-869e-370affcf91eb)) + (pin "2" (uuid 287c0f2d-1705-49ad-993e-983e93f69256)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 250.19 36.83 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b8d2e55f-f8bc-48cf-95e6-3c89b829814e) + (property "Reference" "U1" (id 0) (at 254 36.195 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 254 38.735 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 250.19 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 250.19 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 606e5e95-0fd3-4204-921e-d2e90ac18fa4)) + (pin "2" (uuid 647da27b-027c-478a-a007-345ab8609954)) + (pin "3" (uuid 7df372fe-1da7-4a05-b52d-87704899f0d9)) + (pin "4" (uuid 6129ad03-2518-4792-ae24-03a29311ff21)) + (pin "5" (uuid e01d420e-1fd5-4fb3-98a8-e042861a6117)) + (pin "6" (uuid a0a1326d-828a-4219-b81a-ee24be85a940)) + (pin "7" (uuid c6c73dc4-fefd-4f17-b66f-c760519325b9)) + (pin "8" (uuid 32491bca-5e52-4a22-bdbf-7e34245d2528)) + (pin "9" (uuid cfb9dcbc-5325-4580-a4eb-bbd618b137dd)) + (pin "10" (uuid e3a20f50-1125-4bf6-824a-49ef8e4bb002)) + (pin "11" (uuid add120fb-4356-4102-96ba-1e664d82d34a)) + (pin "12" (uuid 1b6fe58d-b221-4fad-a372-e7fe5fcd0371)) + (pin "13" (uuid 3ec04c51-0f96-4255-82ce-a09b64d0d5ff)) + (pin "14" (uuid 354816b9-3228-49e7-8be5-935a59bc8e9b)) + (pin "15" (uuid 55d9d4db-4fab-4769-a358-9183b3ed47cd)) + (pin "16" (uuid d5bdbb31-e083-476e-b87f-25ed0fe81daf)) + (pin "17" (uuid 28f5159e-9a9b-4b6a-9d12-9ab79256dae2)) + (pin "18" (uuid 400246d3-582e-4a3f-9f62-5f4ff560d6da)) + (pin "19" (uuid fa6994fb-65ed-4d71-9429-8ffb7927f315)) + (pin "20" (uuid 90d8e392-38d3-41d8-819b-2d798079a90f)) + (pin "21" (uuid 5ddb34bb-a894-4103-b8cb-dbca882270f1)) + (pin "22" (uuid 7ec599cd-cdf6-4145-aa95-9adcec36ea56)) + (pin "23" (uuid 8a1699c2-61b8-4629-876b-511bfd806d67)) + (pin "24" (uuid 156a2bab-8230-44c0-852d-7e404d0dee4d)) + (pin "25" (uuid c2ba04ff-2d4c-4fcc-bd05-e70436d67939)) + (pin "26" (uuid 281776ac-c59f-49d2-9756-9ed0a351f649)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 250.19 39.37 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c0a0671b-e392-4f3c-bb44-22b1ba9f8893) + (property "Reference" "U1" (id 0) (at 254 38.735 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 254 41.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 250.19 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 250.19 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 18e3fca8-d783-4b75-b0a7-2f77fa232194)) + (pin "2" (uuid d114401b-f713-40e8-862e-b1137fee8171)) + (pin "3" (uuid cd3b79fe-529c-415d-b743-13910986b4b7)) + (pin "4" (uuid ed1608c4-3046-4e9f-87d4-a5b2b964de71)) + (pin "5" (uuid 7ae4fd0d-1c89-49e8-9b7a-7b257a0f2acf)) + (pin "6" (uuid 7ba87589-cb39-4e6d-b0f6-0cca78eb1b6e)) + (pin "7" (uuid 2fc9c4f6-08d7-489e-83fe-e76a62ce49c9)) + (pin "8" (uuid 0423f7b8-bbba-4cc4-a12c-f1461a2dbfad)) + (pin "9" (uuid 5f373e37-51c2-4e87-9323-9566d3813703)) + (pin "10" (uuid 8df40d0a-c7ea-4e1f-b25b-42b9e4e3c040)) + (pin "11" (uuid d6b423a2-2f6f-4858-b12a-2774addd4332)) + (pin "12" (uuid 68eae5d0-71e3-4c1b-ae5e-00e5b6941837)) + (pin "13" (uuid 38faffb4-f6c9-4935-95bc-948db65d0ef8)) + (pin "14" (uuid 432fd09a-030d-4986-be20-563c98fbcf1d)) + (pin "15" (uuid 1c92f6db-2230-4911-8d79-c73a81561c85)) + (pin "16" (uuid bdee1fd6-81d9-4e8d-b77a-a6ec86b9e5d5)) + (pin "17" (uuid b6958a7e-fdb2-42cf-a503-bfd209cfa3e0)) + (pin "18" (uuid 04818cac-2342-44fa-ae8e-11b2e6a01f1e)) + (pin "19" (uuid ad77c5a3-f778-4491-a697-24ce3fe9f334)) + (pin "20" (uuid aed123c1-1f74-46d2-811f-161a3c917118)) + (pin "21" (uuid 88f49f35-dbab-41f0-b9b5-80778be4f46b)) + (pin "22" (uuid 60e5f23f-feab-46f4-8bd5-b746efa1402d)) + (pin "23" (uuid 5ae98b11-912d-4c6d-8ff8-6e675b691776)) + (pin "24" (uuid ac62b7a2-0bd0-4f59-90d6-6d7fb3e224c3)) + (pin "25" (uuid b046e53f-e371-42f1-8322-94c8d2b368a9)) + (pin "26" (uuid 2a415ac5-6cfc-4f10-802e-a3631ee64929)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 250.19 34.29 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c9bf0160-3bc9-4259-99f2-04b441d79c35) + (property "Reference" "U1" (id 0) (at 254 33.655 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 254 36.195 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 250.19 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 250.19 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eaa59171-197b-4528-be44-155dfa3e2c69)) + (pin "2" (uuid fe107b2d-8ab9-479c-b68e-a2ee0ab5cd46)) + (pin "3" (uuid a8ceab17-13a1-4399-a006-6cf9f15f211d)) + (pin "4" (uuid 62109def-cdb9-4c62-9056-942e8fbad2dc)) + (pin "5" (uuid a78f63ef-6dcc-417a-9cfb-b0ef64431d84)) + (pin "6" (uuid b8a4e156-48d7-4e3c-802e-930a559b9ed0)) + (pin "7" (uuid 6e3371c9-7172-4557-9008-0ac4529ee266)) + (pin "8" (uuid 1aac8ac7-5d2e-445e-b212-9be4caaf4c98)) + (pin "9" (uuid 4c23958c-a98e-45de-9bbb-492f54c18fe2)) + (pin "10" (uuid 79567c67-f233-4bec-8385-e1a5d93a1aff)) + (pin "11" (uuid 3f2f8bbe-a58f-4653-8e5a-b02e81372725)) + (pin "12" (uuid 16e95cfc-4263-4e68-baa6-e76cf086ab87)) + (pin "13" (uuid cad15b18-f58f-4354-b020-adc609e3d84b)) + (pin "14" (uuid 4897a06c-a945-46b3-ac09-02e4edc0e8cd)) + (pin "15" (uuid 262a93df-eb5f-4dc9-9b14-3f5399ada1fc)) + (pin "16" (uuid d175e08e-eae8-4267-a79d-3487555e6cf5)) + (pin "17" (uuid bf719401-9bd7-4075-b0ce-e2c56d0e4979)) + (pin "18" (uuid bef2e1b8-d3a0-4282-871e-b4a754b9c97b)) + (pin "19" (uuid 8952dfad-5b54-4926-9a51-0d28ddccdeae)) + (pin "20" (uuid 907ffdbb-d57e-40da-9f40-124d36d8562e)) + (pin "21" (uuid 9b32fed1-3328-46d7-bd4c-6ca31bd4685f)) + (pin "22" (uuid c5859bad-6fe8-400f-9249-dea70a479798)) + (pin "23" (uuid e133cdc2-9a3f-4a23-9125-7b25cdc680a7)) + (pin "24" (uuid 743c4a72-faec-48e5-9071-9e06def49191)) + (pin "25" (uuid 16ec0850-5286-4f50-9875-e6805b3e57ac)) + (pin "26" (uuid 74ae409f-91a7-4f9f-8133-f733deb42020)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 105.41 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc28369b-deea-488f-b774-a0bf76dd12fd) + (property "Reference" "U14" (id 0) (at 105.41 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e841e49d-04d1-4380-b967-9d7cc920e258)) + (pin "2" (uuid 360e868e-75aa-4e45-be69-be3e6c44ebbd)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 105.41 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d49860f7-6ace-43a4-8063-1e25855e447a) + (property "Reference" "U15" (id 0) (at 105.41 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 95234716-7f3d-48fe-a54d-9c892a188d77)) + (pin "2" (uuid 264f4a44-450b-49e3-8327-75c847a5afed)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 106.68 -43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d4b105e4-f256-409b-8085-0e2b4c032678) + (property "Reference" "U19" (id 0) (at 106.68 -52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 106.68 -48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 -43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 -43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a09e0a60-0f1e-45f5-990d-a8e3be4181ba)) + (pin "2" (uuid 85353a32-e709-4e19-8870-c6e069af3d4e)) + (pin "3" (uuid 4ffa3272-e630-42c0-8dd6-c6765f975c51)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 105.41 234.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da52e2fe-84dc-4eb2-9096-5e25e29bb047) + (property "Reference" "U17" (id 0) (at 105.41 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d4456df9-f766-4ca3-9ff7-d487fc77c1ae)) + (pin "2" (uuid 96e1823d-7d08-4cc0-9eea-c548aa5984ad)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db06864a-f28a-4f86-b224-c94d405463a0) + (property "Reference" "U47" (id 0) (at 137.16 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6b3d25b7-c560-482c-9580-326b3873a308)) + (pin "2" (uuid db957cde-1be3-4bff-a683-44f6b95b57b5)) + (pin "3" (uuid 37a1c5fd-4ae6-48ff-a5f6-60c826bb2c6f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 105.41 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db0e1a54-1abc-4c27-b339-8a90946f79e9) + (property "Reference" "U13" (id 0) (at 105.41 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 33d3d9fd-6be1-4679-963f-c945a41e65d7)) + (pin "2" (uuid 189d51c2-2723-4d3b-b2c7-4ad0935a9ee4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e155830c-f242-4c90-820e-955925b32723) + (property "Reference" "U48" (id 0) (at 137.16 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 787cfad9-c583-4c19-8cd3-8c445fbfa69f)) + (pin "2" (uuid 5bd89ba3-2867-4105-b339-3de7d7c50000)) + (pin "3" (uuid 17d857e8-0f3b-4f40-867e-341117dac52e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 105.41 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8c912a8-210a-4c58-ad81-7ca1ba472173) + (property "Reference" "U12" (id 0) (at 105.41 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 47e8b24f-091a-4055-bfb8-ed3d1a51db98)) + (pin "2" (uuid 46d2db38-28a6-4a88-b617-6d3afd4968a1)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 106.68 -6.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea035f3e-26fd-43c3-9a7f-bc3f97bf38bf) + (property "Reference" "U21" (id 0) (at 106.68 -15.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 106.68 -11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 -6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 -6.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2ae6e469-b14d-482f-b2ff-9724247ad83e)) + (pin "2" (uuid 1dcb3162-519a-469c-ae99-bb4dc05ba3e2)) + (pin "3" (uuid 77833a75-1f12-4479-b29c-3557166268f9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 19.05 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea472f0e-d4f3-4e0b-adb9-d46f05bb1eb4) + (property "Reference" "U1" (id 0) (at 28.575 13.97 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 16.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 19.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 19.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 749536ab-9dab-4cb2-ad04-4171aaf7ec91)) + (pin "2" (uuid 9401586a-669f-486c-9e70-899bb0a59a19)) + (pin "3" (uuid 5af40efb-2d61-4898-bf94-b2e3e34ff845)) + (pin "4" (uuid cc893e1a-652c-4dd1-82f9-df103e03f342)) + (pin "5" (uuid 5340ec5d-4575-4187-89be-ec1c055e6072)) + (pin "6" (uuid 821c5d36-8a21-42a5-8240-1973d993b0cd)) + (pin "7" (uuid 4968668e-78f8-4f9e-9ee4-e3837b59d9a7)) + (pin "8" (uuid 6f553e81-1dec-4c65-aef0-265a199d8708)) + (pin "9" (uuid ef1dbb18-a1d3-43f5-849d-3c413527b071)) + (pin "10" (uuid 92e98015-c2b7-445b-9320-71412de390a9)) + (pin "11" (uuid 6a0c6861-12cb-4d44-b7e2-e67ed07b0e86)) + (pin "12" (uuid fa9b8386-d65e-4403-8773-d40eaedeb488)) + (pin "13" (uuid f2b5caad-7f20-497a-8afb-52835530c530)) + (pin "14" (uuid 0c089aee-e5a3-4d02-82c7-24037163e73b)) + (pin "15" (uuid 66911051-ee8f-446b-99f9-cd02d3e93f5c)) + (pin "16" (uuid 5421c7f2-aaab-4310-b8a2-ae64810d1761)) + (pin "17" (uuid 79a4439c-94b8-40f1-aead-f2cf7767856e)) + (pin "18" (uuid 1e65c163-bad1-4078-ad0b-943ada2db989)) + (pin "19" (uuid a74db485-286e-4e74-836d-e2583a1d1617)) + (pin "20" (uuid 0053f2af-754d-41e2-abe4-e444b8f023d3)) + (pin "21" (uuid cfa1d748-3a73-4265-b594-1163ea8236bd)) + (pin "22" (uuid 9eb7c259-2fe8-4df7-b645-dd770d8a9300)) + (pin "23" (uuid 9bc08c85-edad-42b5-9456-5fbc7463ba1f)) + (pin "24" (uuid 8d347ea6-9281-4d44-81d6-83214d8af02d)) + (pin "25" (uuid 38dd733f-8617-47e8-847b-7cc462c016eb)) + (pin "26" (uuid 1140b6b5-c791-4214-9cac-a74b94cead13)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 -55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ebc56e36-90ca-4d9b-8b82-83ed26f4461d) + (property "Reference" "U18" (id 0) (at 106.68 -64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 -60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 -55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 -55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e985be09-1a55-45fa-a189-47e5b7440f42)) + (pin "2" (uuid 16ed07f5-086e-448d-91cb-46a40a64040f)) + (pin "3" (uuid b6365bfe-7487-4692-857a-0b3b72fb50ca)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed451d79-1dd0-4bbf-b497-792f380398b2) + (property "Reference" "U39" (id 0) (at 137.16 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a1d93be-7f9e-47f1-ac55-64dafa87e961)) + (pin "2" (uuid d0f496a0-bd28-48c7-87f1-610658b035a4)) + (pin "3" (uuid 723541a4-c1cf-49f5-a1d5-428dde470d9a)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 106.68 109.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ee70db71-c537-4a32-b49a-4ec93ac039a2) + (property "Reference" "U27" (id 0) (at 106.68 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 106.68 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 337df4dc-9c7a-4ce3-afae-09b5fe9ae184)) + (pin "2" (uuid 3821ca4d-d4a1-42a3-91d3-537c2573cc69)) + (pin "3" (uuid fd3a57eb-85af-4990-89db-8984a59fda91)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 82.55 170.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f0d3a973-9672-4d87-87c8-5576f714fb42) + (property "Reference" "U8" (id 0) (at 82.55 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 82.55 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 83.82 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 83.82 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 99e27386-1581-40bf-b368-fc95241ee622)) + (pin "2" (uuid 15fd02d3-2c18-4978-bd14-796af9fdf705)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 137.16 -55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f7d09e52-e064-4e48-8de8-07ef2cd0ceb7) + (property "Reference" "U34" (id 0) (at 137.16 -64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 137.16 -60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 137.16 -55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 137.16 -55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fa867721-aec5-42b9-8f5d-e86123ae1a0b)) + (pin "2" (uuid c788ff1b-e391-4e2e-96f9-9d9f166e3552)) + (pin "3" (uuid 8b233170-96cc-471f-a456-59045eb3d0f5)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/6ed2715c-b8e0-405a-9836-1e642725e18e" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/ea472f0e-d4f3-4e0b-adb9-d46f05bb1eb4" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/360bb714-d89a-4638-b9e9-117ce748ddf0" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/51fd090c-8883-4a5a-b98d-3204bdfae7ae" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/28e6c20c-7c69-433c-bdff-4b0b88b5682c" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/7d2650bd-6ff9-4ec1-accc-a99c7e215646" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/a65062ad-b70e-4fcd-aafe-45afae5cb576" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/b61724fb-d3f2-482d-bfbb-1c78bc3074e2" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/26d0dbbc-6af4-4783-ac1a-2600d49edf11" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/5e776390-c017-4e73-8100-bd43931b466e" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/6cd65531-313a-44c1-99f0-652981f90626" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/c9bf0160-3bc9-4259-99f2-04b441d79c35" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/b8d2e55f-f8bc-48cf-95e6-3c89b829814e" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/c0a0671b-e392-4f3c-bb44-22b1ba9f8893" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/7970457f-d4f9-4a5a-940d-7a12329d2c2c" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/76d35e15-d5f9-470c-8ff2-b32743b9e9d7" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/6fe2f041-cdb5-45ad-b242-b2310691bb9e" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/11df4bac-2471-43e1-ac49-cf2b43acf81d" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/76c1c3aa-c248-4836-8df5-f15866ef7d41" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4834dbe0-c369-4e5e-9b3b-303bf04c8122" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/6d384a35-e0fc-4716-8fd8-246869563db1" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2a1e4b03-4a0e-4da9-a875-cc187e75b74d" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/668340bc-5098-4c38-a968-79d1510860af" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/50fbf6b6-7905-460f-ad39-218ad003f002" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f0d3a973-9672-4d87-87c8-5576f714fb42" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/73c16259-2950-48b3-b468-2dcf9399a70a" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/37e5d9a0-a463-4c61-9a01-e92fc9215c84" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b875418d-be6e-4d6d-8d47-d3b08bd2ad70" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e8c912a8-210a-4c58-ad81-7ca1ba472173" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/db0e1a54-1abc-4c27-b339-8a90946f79e9" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/cc28369b-deea-488f-b774-a0bf76dd12fd" + (reference "U14") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d49860f7-6ace-43a4-8063-1e25855e447a" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0aba5e24-666b-4ba3-8ac2-79a479e2910d" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/da52e2fe-84dc-4eb2-9096-5e25e29bb047" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ebc56e36-90ca-4d9b-8b82-83ed26f4461d" + (reference "U18") (unit 1) (value "d_and") (footprint "") + ) + (path "/d4b105e4-f256-409b-8085-0e2b4c032678" + (reference "U19") (unit 1) (value "d_nand") (footprint "") + ) + (path "/b2d97542-89e6-46c8-80f0-599e178392df" + (reference "U20") (unit 1) (value "d_and") (footprint "") + ) + (path "/ea035f3e-26fd-43c3-9a7f-bc3f97bf38bf" + (reference "U21") (unit 1) (value "d_nand") (footprint "") + ) + (path "/3f1522f1-4178-48ac-8046-21ce6ad4d836" + (reference "U22") (unit 1) (value "d_and") (footprint "") + ) + (path "/6ebbbb61-f503-4d27-bc41-03fb0c32c9d2" + (reference "U23") (unit 1) (value "d_nand") (footprint "") + ) + (path "/b23e3345-dae8-4c88-ad32-4fb8abad561b" + (reference "U24") (unit 1) (value "d_and") (footprint "") + ) + (path "/054aee47-f38d-453c-aa34-3eda598cdc56" + (reference "U25") (unit 1) (value "d_nand") (footprint "") + ) + (path "/0ad5be5a-7057-462a-813a-eaefb055cf85" + (reference "U26") (unit 1) (value "d_and") (footprint "") + ) + (path "/ee70db71-c537-4a32-b49a-4ec93ac039a2" + (reference "U27") (unit 1) (value "d_nand") (footprint "") + ) + (path "/7986d541-aa7c-4e9e-bc39-8ffc86197e83" + (reference "U28") (unit 1) (value "d_and") (footprint "") + ) + (path "/092ad73f-3fca-4ce2-bd05-8239d9f3e102" + (reference "U29") (unit 1) (value "d_nand") (footprint "") + ) + (path "/2a4aaf91-ed29-402b-870e-e98e06117f8a" + (reference "U30") (unit 1) (value "d_and") (footprint "") + ) + (path "/616f9cf7-d8e6-4c38-8643-452b0784bf81" + (reference "U31") (unit 1) (value "d_nand") (footprint "") + ) + (path "/569100f6-2910-4c6c-85bb-7385664f0653" + (reference "U32") (unit 1) (value "d_and") (footprint "") + ) + (path "/0134272f-d80c-4536-8b9c-1fc6fa4a6e15" + (reference "U33") (unit 1) (value "d_nand") (footprint "") + ) + (path "/f7d09e52-e064-4e48-8de8-07ef2cd0ceb7" + (reference "U34") (unit 1) (value "d_and") (footprint "") + ) + (path "/9acef753-9586-43a6-9c13-87877a234d61" + (reference "U35") (unit 1) (value "d_and") (footprint "") + ) + (path "/b0fbc5d2-2463-4049-9903-7b752b283c6b" + (reference "U36") (unit 1) (value "d_and") (footprint "") + ) + (path "/7fb0d5a0-c49e-480b-a74c-41050b83ede4" + (reference "U37") (unit 1) (value "d_and") (footprint "") + ) + (path "/12991cb8-0923-4199-baf7-c028d7a7d071" + (reference "U38") (unit 1) (value "d_and") (footprint "") + ) + (path "/ed451d79-1dd0-4bbf-b497-792f380398b2" + (reference "U39") (unit 1) (value "d_and") (footprint "") + ) + (path "/19ad8c30-8cdd-47f2-91a7-c9933600d2d4" + (reference "U40") (unit 1) (value "d_and") (footprint "") + ) + (path "/20414922-5c61-45d2-b461-c053be3ed868" + (reference "U41") (unit 1) (value "d_and") (footprint "") + ) + (path "/01e8b0c1-67f4-49d1-96ec-79097b14ca43" + (reference "U42") (unit 1) (value "d_and") (footprint "") + ) + (path "/61fb4389-1bd6-4082-a7a0-d2db97034e69" + (reference "U43") (unit 1) (value "d_and") (footprint "") + ) + (path "/61b5d5c6-6990-4a0f-bae6-0b0bb621ffec" + (reference "U44") (unit 1) (value "d_and") (footprint "") + ) + (path "/8066296c-ee27-4b8f-ac34-23716acd375e" + (reference "U45") (unit 1) (value "d_and") (footprint "") + ) + (path "/65980e2b-fea7-4280-b80b-35c3e99cadd2" + (reference "U46") (unit 1) (value "d_and") (footprint "") + ) + (path "/db06864a-f28a-4f86-b224-c94d405463a0" + (reference "U47") (unit 1) (value "d_and") (footprint "") + ) + (path "/e155830c-f242-4c90-820e-955925b32723" + (reference "U48") (unit 1) (value "d_and") (footprint "") + ) + (path "/7d8bae7f-41ff-4dcb-afc9-4c4fbe0e5fa4" + (reference "U49") (unit 1) (value "d_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/74ALS640/74ALS640.sub b/library/SubcircuitLibrary/74ALS640/74ALS640.sub new file mode 100644 index 000000000..38369144b --- /dev/null +++ b/library/SubcircuitLibrary/74ALS640/74ALS640.sub @@ -0,0 +1,198 @@ +* Subcircuit 74ALS640 +.subckt 74ALS640 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ +.title kicad schematic +* u29 unconnected-_u29-pad1_ net-_u1-pad9_ net-_u29-pad3_ d_nand +* u7 unconnected-_u7-pad1_ net-_u28-pad1_ d_inverter +* u28 net-_u28-pad1_ net-_u1-pad9_ net-_u28-pad3_ d_and +* u14 net-_u1-pad10_ net-_u14-pad2_ d_inverter +* u40 net-_u24-pad3_ net-_u13-pad2_ net-_u1-pad18_ d_and +* u24 net-_u24-pad1_ net-_u1-pad9_ net-_u24-pad3_ d_and +* u23 net-_u1-pad7_ net-_u1-pad9_ net-_u23-pad3_ d_nand +* u25 net-_u1-pad8_ net-_u1-pad9_ net-_u25-pad3_ d_nand +* u12 net-_u1-pad10_ net-_u12-pad2_ d_inverter +* u39 net-_u23-pad3_ net-_u12-pad2_ net-_u1-pad13_ d_and +* u41 net-_u25-pad3_ net-_u13-pad2_ net-_u1-pad14_ d_and +* u6 unconnected-_u6-pad1_ net-_u26-pad1_ d_inverter +* u5 net-_u1-pad4_ net-_u24-pad1_ d_inverter +* u26 net-_u26-pad1_ net-_u1-pad9_ net-_u26-pad3_ d_and +* u27 unconnected-_u27-pad1_ net-_u1-pad9_ net-_u27-pad3_ d_nand +* u13 net-_u1-pad10_ net-_u13-pad2_ d_inverter +* u42 net-_u26-pad3_ net-_u14-pad2_ unconnected-_u42-pad3_ d_and +* u43 net-_u27-pad3_ net-_u14-pad2_ unconnected-_u43-pad3_ d_and +* u45 net-_u29-pad3_ net-_u15-pad2_ unconnected-_u45-pad3_ d_and +* u44 net-_u28-pad3_ net-_u15-pad2_ unconnected-_u44-pad3_ d_and +* u48 net-_u32-pad3_ net-_u17-pad2_ unconnected-_u48-pad3_ d_and +* u49 net-_u33-pad3_ net-_u17-pad2_ unconnected-_u49-pad3_ d_and +* u47 net-_u31-pad3_ net-_u16-pad2_ unconnected-_u47-pad3_ d_and +* u46 net-_u30-pad3_ net-_u16-pad2_ unconnected-_u46-pad3_ d_and +* u9 unconnected-_u9-pad1_ net-_u32-pad1_ d_inverter +* u16 net-_u1-pad10_ net-_u16-pad2_ d_inverter +* u32 net-_u32-pad1_ net-_u1-pad9_ net-_u32-pad3_ d_and +* u17 net-_u1-pad10_ net-_u17-pad2_ d_inverter +* u33 unconnected-_u33-pad1_ net-_u1-pad9_ net-_u33-pad3_ d_nand +* u8 unconnected-_u8-pad1_ net-_u30-pad1_ d_inverter +* u31 unconnected-_u31-pad1_ net-_u1-pad9_ net-_u31-pad3_ d_nand +* u30 net-_u30-pad1_ net-_u1-pad9_ net-_u30-pad3_ d_and +* u15 net-_u1-pad10_ net-_u15-pad2_ d_inverter +* u4 net-_u1-pad3_ net-_u22-pad1_ d_inverter +* u3 net-_u1-pad2_ net-_u20-pad1_ d_inverter +* u22 net-_u22-pad1_ net-_u1-pad9_ net-_u22-pad3_ d_and +* u11 net-_u1-pad10_ net-_u11-pad2_ d_inverter +* u20 net-_u20-pad1_ net-_u1-pad9_ net-_u20-pad3_ d_and +* u21 net-_u1-pad6_ net-_u1-pad9_ net-_u21-pad3_ d_nand +* u34 net-_u18-pad3_ net-_u10-pad2_ net-_u1-pad15_ d_and +* u35 net-_u19-pad3_ net-_u10-pad2_ net-_u1-pad11_ d_and +* u36 net-_u20-pad3_ net-_u11-pad2_ net-_u1-pad16_ d_and +* u37 net-_u21-pad3_ net-_u11-pad2_ net-_u1-pad12_ d_and +* u38 net-_u22-pad3_ net-_u12-pad2_ net-_u1-pad17_ d_and +* u10 net-_u1-pad10_ net-_u10-pad2_ d_inverter +* u2 net-_u1-pad1_ net-_u18-pad1_ d_inverter +* u18 net-_u18-pad1_ net-_u1-pad9_ net-_u18-pad3_ d_and +* u19 net-_u1-pad5_ net-_u1-pad9_ net-_u19-pad3_ d_nand +a1 [unconnected-_u29-pad1_ net-_u1-pad9_ ] net-_u29-pad3_ u29 +a2 unconnected-_u7-pad1_ net-_u28-pad1_ u7 +a3 [net-_u28-pad1_ net-_u1-pad9_ ] net-_u28-pad3_ u28 +a4 net-_u1-pad10_ net-_u14-pad2_ u14 +a5 [net-_u24-pad3_ net-_u13-pad2_ ] net-_u1-pad18_ u40 +a6 [net-_u24-pad1_ net-_u1-pad9_ ] net-_u24-pad3_ u24 +a7 [net-_u1-pad7_ net-_u1-pad9_ ] net-_u23-pad3_ u23 +a8 [net-_u1-pad8_ net-_u1-pad9_ ] net-_u25-pad3_ u25 +a9 net-_u1-pad10_ net-_u12-pad2_ u12 +a10 [net-_u23-pad3_ net-_u12-pad2_ ] net-_u1-pad13_ u39 +a11 [net-_u25-pad3_ net-_u13-pad2_ ] net-_u1-pad14_ u41 +a12 unconnected-_u6-pad1_ net-_u26-pad1_ u6 +a13 net-_u1-pad4_ net-_u24-pad1_ u5 +a14 [net-_u26-pad1_ net-_u1-pad9_ ] net-_u26-pad3_ u26 +a15 [unconnected-_u27-pad1_ net-_u1-pad9_ ] net-_u27-pad3_ u27 +a16 net-_u1-pad10_ net-_u13-pad2_ u13 +a17 [net-_u26-pad3_ net-_u14-pad2_ ] unconnected-_u42-pad3_ u42 +a18 [net-_u27-pad3_ net-_u14-pad2_ ] unconnected-_u43-pad3_ u43 +a19 [net-_u29-pad3_ net-_u15-pad2_ ] unconnected-_u45-pad3_ u45 +a20 [net-_u28-pad3_ net-_u15-pad2_ ] unconnected-_u44-pad3_ u44 +a21 [net-_u32-pad3_ net-_u17-pad2_ ] unconnected-_u48-pad3_ u48 +a22 [net-_u33-pad3_ net-_u17-pad2_ ] unconnected-_u49-pad3_ u49 +a23 [net-_u31-pad3_ net-_u16-pad2_ ] unconnected-_u47-pad3_ u47 +a24 [net-_u30-pad3_ net-_u16-pad2_ ] unconnected-_u46-pad3_ u46 +a25 unconnected-_u9-pad1_ net-_u32-pad1_ u9 +a26 net-_u1-pad10_ net-_u16-pad2_ u16 +a27 [net-_u32-pad1_ net-_u1-pad9_ ] net-_u32-pad3_ u32 +a28 net-_u1-pad10_ net-_u17-pad2_ u17 +a29 [unconnected-_u33-pad1_ net-_u1-pad9_ ] net-_u33-pad3_ u33 +a30 unconnected-_u8-pad1_ net-_u30-pad1_ u8 +a31 [unconnected-_u31-pad1_ net-_u1-pad9_ ] net-_u31-pad3_ u31 +a32 [net-_u30-pad1_ net-_u1-pad9_ ] net-_u30-pad3_ u30 +a33 net-_u1-pad10_ net-_u15-pad2_ u15 +a34 net-_u1-pad3_ net-_u22-pad1_ u4 +a35 net-_u1-pad2_ net-_u20-pad1_ u3 +a36 [net-_u22-pad1_ net-_u1-pad9_ ] net-_u22-pad3_ u22 +a37 net-_u1-pad10_ net-_u11-pad2_ u11 +a38 [net-_u20-pad1_ net-_u1-pad9_ ] net-_u20-pad3_ u20 +a39 [net-_u1-pad6_ net-_u1-pad9_ ] net-_u21-pad3_ u21 +a40 [net-_u18-pad3_ net-_u10-pad2_ ] net-_u1-pad15_ u34 +a41 [net-_u19-pad3_ net-_u10-pad2_ ] net-_u1-pad11_ u35 +a42 [net-_u20-pad3_ net-_u11-pad2_ ] net-_u1-pad16_ u36 +a43 [net-_u21-pad3_ net-_u11-pad2_ ] net-_u1-pad12_ u37 +a44 [net-_u22-pad3_ net-_u12-pad2_ ] net-_u1-pad17_ u38 +a45 net-_u1-pad10_ net-_u10-pad2_ u10 +a46 net-_u1-pad1_ net-_u18-pad1_ u2 +a47 [net-_u18-pad1_ net-_u1-pad9_ ] net-_u18-pad3_ u18 +a48 [net-_u1-pad5_ net-_u1-pad9_ ] net-_u19-pad3_ u19 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u29 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u40 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u23 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u25 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u39 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u41 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u27 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u42 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u43 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u45 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u44 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u48 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u47 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u46 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u32 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u33 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u31 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u30 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u21 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u34 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u35 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u36 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u37 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u38 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u19 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends 74ALS640 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74ALS640/74ALS640_Previous_Values.xml b/library/SubcircuitLibrary/74ALS640/74ALS640_Previous_Values.xml new file mode 100644 index 000000000..b1130937f --- /dev/null +++ b/library/SubcircuitLibrary/74ALS640/74ALS640_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_andd_nandd_andd_andd_nandd_andd_andd_andd_andd_andd_nandd_inverterd_andd_inverterd_inverterd_inverterd_andd_andd_nandd_andd_inverterd_inverterd_andd_nandd_inverterd_inverterd_andd_inverterd_inverterd_nandd_andd_andd_andd_andd_inverterd_inverterd_inverterd_andd_andd_andd_inverterd_nandd_andd_andd_nandd_inverterd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/74ALS640/analysis b/library/SubcircuitLibrary/74ALS640/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/74ALS640/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74HC112_sub/74HC112_sub.cir b/library/SubcircuitLibrary/74HC112_sub/74HC112_sub.cir new file mode 100644 index 000000000..8dea4a780 --- /dev/null +++ b/library/SubcircuitLibrary/74HC112_sub/74HC112_sub.cir @@ -0,0 +1,17 @@ +.title KiCad schematic +U14 Net-_U12-Pad3_ Net-_U13-Pad3_ Net-_U14-Pad3_ d_or +U13 Net-_U13-Pad1_ Net-_U1-Pad8_ Net-_U13-Pad3_ d_and +U12 Net-_U1-Pad2_ Net-_U1-Pad9_ Net-_U12-Pad3_ d_and +U15 Net-_U14-Pad3_ Net-_U15-Pad2_ Net-_U11-Pad3_ Net-_U11-Pad4_ Net-_U1-Pad8_ Net-_U1-Pad9_ d_dff +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ PORT +U2 Net-_U1-Pad1_ Net-_U11-Pad2_ d_inverter +U3 Net-_U1-Pad1_ Net-_U15-Pad2_ d_inverter +U4 Net-_U1-Pad3_ Net-_U4-Pad2_ d_inverter +U5 Net-_U1-Pad3_ Net-_U13-Pad1_ d_inverter +U8 Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_U10-Pad1_ d_and +U9 Net-_U4-Pad2_ Net-_U1-Pad6_ Net-_U10-Pad2_ d_and +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_or +U7 Net-_U1-Pad5_ Net-_U11-Pad4_ d_inverter +U6 Net-_U1-Pad4_ Net-_U11-Pad3_ d_inverter +U11 Net-_U10-Pad3_ Net-_U11-Pad2_ Net-_U11-Pad3_ Net-_U11-Pad4_ Net-_U1-Pad6_ Net-_U1-Pad7_ d_dff +.end diff --git a/library/SubcircuitLibrary/74HC112_sub/74HC112_sub.kicad_sch b/library/SubcircuitLibrary/74HC112_sub/74HC112_sub.kicad_sch new file mode 100644 index 000000000..12b97f8f8 --- /dev/null +++ b/library/SubcircuitLibrary/74HC112_sub/74HC112_sub.kicad_sch @@ -0,0 +1,1617 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 101d8c8e-2a8f-4aa9-a2ee-655a3a600886) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 88.9 54.61) (diameter 0) (color 0 0 0 0) + (uuid 29d6135c-ee75-4fc0-9f41-05b6d39cfa51) + ) + (junction (at 261.62 31.75) (diameter 0) (color 0 0 0 0) + (uuid 39494dc1-724f-4c80-81be-c3e1b90800d9) + ) + (junction (at 179.07 52.07) (diameter 0) (color 0 0 0 0) + (uuid 4d4e831a-25eb-47b8-a6e3-e93155295837) + ) + (junction (at 119.38 87.63) (diameter 0) (color 0 0 0 0) + (uuid 80bef568-6eaf-4156-ba22-bcc286c9f18c) + ) + (junction (at 87.63 34.29) (diameter 0) (color 0 0 0 0) + (uuid 9338e3db-21be-48f2-9896-a8d41c468871) + ) + (junction (at 120.65 78.74) (diameter 0) (color 0 0 0 0) + (uuid 9f9bbf14-eb28-4f8c-a668-777c9e1e49f5) + ) + (junction (at 179.07 29.21) (diameter 0) (color 0 0 0 0) + (uuid a8b2155b-ea75-41c2-9513-64d6d2f198d7) + ) + (junction (at 87.63 25.4) (diameter 0) (color 0 0 0 0) + (uuid cf8f5a00-5046-49f5-85d3-6dc0dea92dd8) + ) + (junction (at 270.51 49.53) (diameter 0) (color 0 0 0 0) + (uuid d8de5af0-e55c-4533-bd39-4ff6c079834a) + ) + + (wire (pts (xy 270.51 26.67) (xy 220.98 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05ccb2c9-d0fe-4a37-95c0-b39428529c16) + ) + (wire (pts (xy 118.11 33.02) (xy 118.11 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0620982b-c96a-4863-996d-c05a6b081680) + ) + (wire (pts (xy 280.67 44.45) (xy 278.13 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 066203ab-329d-42d8-a3da-68a6b0181917) + ) + (wire (pts (xy 140.97 34.29) (xy 147.32 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06c92da2-b009-4b03-866b-c3e0bdfb3c3f) + ) + (wire (pts (xy 97.79 64.77) (xy 97.79 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a68197f-8f51-4759-9ed6-442f691ef430) + ) + (wire (pts (xy 194.31 34.29) (xy 194.31 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0aaaa563-3f45-49da-904b-e217c2adb6ce) + ) + (wire (pts (xy 144.78 58.42) (xy 144.78 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d67ad37-820c-4b77-8f86-3414add2168e) + ) + (wire (pts (xy 88.9 54.61) (xy 83.82 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e3947d0-9789-40f5-9f98-a07df54c43c9) + ) + (wire (pts (xy 118.11 38.1) (xy 118.11 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ecc7052-a6be-4602-9424-df25cb9a04e9) + ) + (wire (pts (xy 151.13 40.64) (xy 151.13 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ed1af84-b58c-441a-b616-92830297b33e) + ) + (wire (pts (xy 87.63 34.29) (xy 91.44 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10fcc7cb-34b7-43a7-87dd-9517acc609a0) + ) + (wire (pts (xy 179.07 58.42) (xy 144.78 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18c39438-b480-4a32-8f1e-57fd44c8124f) + ) + (wire (pts (xy 114.3 87.63) (xy 119.38 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b41b1cc-6914-40b9-aab6-9c08c03a3804) + ) + (wire (pts (xy 120.65 78.74) (xy 181.61 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d67c82d-e179-4adc-9f9e-48bf75af64ce) + ) + (wire (pts (xy 115.57 43.18) (xy 115.57 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e13142e-6fe6-4015-a6a0-07d33b591b9a) + ) + (wire (pts (xy 165.1 87.63) (xy 165.1 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ec08a63-fe9d-4b8d-889b-0ccd51ec9c3e) + ) + (wire (pts (xy 179.07 29.21) (xy 179.07 22.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ff88d72-fe71-4dd3-8b6f-3ce00858112e) + ) + (wire (pts (xy 179.07 48.26) (xy 179.07 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 200af0f8-f6a5-44ef-ad0f-90e7f4b89465) + ) + (wire (pts (xy 228.6 38.1) (xy 233.68 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26fde654-3124-4cf0-9773-25ce199e11c0) + ) + (wire (pts (xy 147.32 63.5) (xy 119.38 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a23b1f5-62a4-47ad-b429-7616a1843477) + ) + (wire (pts (xy 220.98 40.64) (xy 194.31 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c7de076-4f3e-4b9f-bf0b-5544fc7960f3) + ) + (wire (pts (xy 270.51 49.53) (xy 270.51 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d5e4e9d-260b-482f-a47f-1ffd190c5684) + ) + (wire (pts (xy 280.67 46.99) (xy 264.16 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2dbe8d2b-cb8c-40a7-a852-0eb2fae22592) + ) + (wire (pts (xy 280.67 11.43) (xy 185.42 11.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e27e757-3b6f-43ee-9db4-e6ce94e2b818) + ) + (wire (pts (xy 87.63 19.05) (xy 87.63 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e69251c-fc2d-48b7-9e7f-08d79340810d) + ) + (wire (pts (xy 247.65 93.98) (xy 119.38 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35e1905f-32f8-4d94-87ff-2da0c2d1077b) + ) + (wire (pts (xy 261.62 24.13) (xy 219.71 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 367b710c-c6be-402c-98cd-5b723197fd6e) + ) + (wire (pts (xy 247.65 62.23) (xy 247.65 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 426be1df-0318-416a-9ab7-0f6bf24bd70a) + ) + (wire (pts (xy 228.6 71.12) (xy 228.6 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43ae293b-85f5-42f7-8410-038025db95d6) + ) + (wire (pts (xy 119.38 54.61) (xy 119.38 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46cb579b-a0bb-4901-85ee-7f3f4116827c) + ) + (wire (pts (xy 113.03 74.93) (xy 113.03 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49c8e534-abdb-4191-ab5a-cf59eff99e90) + ) + (wire (pts (xy 261.62 54.61) (xy 270.51 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b3dc152-f717-49a3-8da4-1e6836b4def6) + ) + (wire (pts (xy 278.13 44.45) (xy 278.13 15.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bf302f2-85ff-4ef8-864d-fa292a414e7a) + ) + (wire (pts (xy 118.11 25.4) (xy 87.63 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fd80724-601b-4c51-ab0d-e7a124555738) + ) + (wire (pts (xy 227.33 66.04) (xy 191.77 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ff05e0d-f147-454f-b80b-d7bac2a5b7cb) + ) + (wire (pts (xy 190.5 43.18) (xy 190.5 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51d45391-14f6-4a25-9ecf-bac754270409) + ) + (wire (pts (xy 147.32 34.29) (xy 147.32 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 531e4c11-7ebe-463b-9ae1-b874c8eb342e) + ) + (wire (pts (xy 93.98 43.18) (xy 87.63 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53223758-72e5-4916-b3b4-8bfec4fa751c) + ) + (wire (pts (xy 194.31 60.96) (xy 194.31 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5866eb25-0781-4fe4-b1d7-f40669d41c2f) + ) + (wire (pts (xy 88.9 63.5) (xy 88.9 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58c09f79-a4b8-40bd-85a5-2be772ce5b97) + ) + (wire (pts (xy 146.05 22.86) (xy 146.05 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5910ccd2-4a8a-4392-a5bd-e5a2ff83ca5e) + ) + (wire (pts (xy 96.52 63.5) (xy 88.9 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 594aacc0-b16c-459d-8f9d-64b9b71abbd3) + ) + (wire (pts (xy 142.24 73.66) (xy 148.59 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c38e8aa-678a-463e-905a-bbabe06851f2) + ) + (wire (pts (xy 148.59 31.75) (xy 151.13 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e17db56-aefc-40ab-968c-99cf9a978199) + ) + (wire (pts (xy 217.17 52.07) (xy 227.33 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f57cb86-00c4-4787-9424-bdb86003c7cc) + ) + (wire (pts (xy 224.79 60.96) (xy 194.31 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 603ad242-5a5b-4058-bc23-592fa2c12c8c) + ) + (wire (pts (xy 87.63 43.18) (xy 87.63 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6278d7ea-bfb3-4310-9bb1-de8828022a6c) + ) + (wire (pts (xy 119.38 63.5) (xy 119.38 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6633c39d-1afb-4e9c-ba70-fcfb0f9aeb41) + ) + (wire (pts (xy 278.13 15.24) (xy 182.88 15.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68b4b214-cae0-439c-87a7-4f76b8c6bb1a) + ) + (wire (pts (xy 87.63 25.4) (xy 85.09 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a59599c-c8f8-403a-a77b-70b413749076) + ) + (wire (pts (xy 217.17 71.12) (xy 228.6 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e5d74f8-8598-4d16-a7e0-af503b7ab3f3) + ) + (wire (pts (xy 186.69 83.82) (xy 120.65 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f776f0f-71af-4fac-89c1-540fa55f18b6) + ) + (wire (pts (xy 184.15 50.8) (xy 194.31 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 731c3a3e-8450-4bc0-be06-1e50e9bd4dc6) + ) + (wire (pts (xy 181.61 20.32) (xy 165.1 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 739aaa76-19b0-4047-af17-469787e9770c) + ) + (wire (pts (xy 83.82 39.37) (xy 82.55 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7678152d-a3b1-40a6-b8d4-d0f7eca9043a) + ) + (wire (pts (xy 219.71 43.18) (xy 190.5 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7793d7f9-2d22-4999-aa35-2576e2f74c5f) + ) + (wire (pts (xy 142.24 54.61) (xy 142.24 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78dc4f37-82e4-4b5d-aa7f-380ad4799818) + ) + (wire (pts (xy 118.11 67.31) (xy 118.11 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78f28595-730e-4a1f-ac70-eab7153240b8) + ) + (wire (pts (xy 220.98 26.67) (xy 220.98 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79de4320-3110-425b-b98c-c709aa705ac3) + ) + (wire (pts (xy 95.25 54.61) (xy 88.9 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b808699-3ea3-44e3-98f5-c34bc3090091) + ) + (wire (pts (xy 165.1 20.32) (xy 165.1 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dc809d2-95f8-4e97-8246-48f089ed2d8a) + ) + (wire (pts (xy 116.84 63.5) (xy 116.84 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81e7b463-55cd-4108-9e2c-c3525bc98be3) + ) + (wire (pts (xy 264.16 46.99) (xy 264.16 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82d4c4ea-45e3-458c-b805-05eefe56623c) + ) + (wire (pts (xy 85.09 25.4) (xy 85.09 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 897c4d07-1db1-4381-92f1-27ee57b86d18) + ) + (wire (pts (xy 142.24 67.31) (xy 118.11 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ae2a204-7dc1-4d76-934f-5b0df30ac435) + ) + (wire (pts (xy 184.15 81.28) (xy 184.15 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b37b484-a6a9-464f-bba6-da4e15096394) + ) + (wire (pts (xy 85.09 64.77) (xy 97.79 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92a1404d-4d6d-46f8-bd76-8db3f4569663) + ) + (wire (pts (xy 110.49 54.61) (xy 119.38 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93ee6f27-0208-4393-a2a7-c0a220685843) + ) + (wire (pts (xy 182.88 52.07) (xy 179.07 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93fac69f-f1cf-4b59-9810-c1e3a1f6aea4) + ) + (wire (pts (xy 261.62 38.1) (xy 261.62 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9548c9ee-bd5f-45ad-abc4-b8dfd1628d60) + ) + (wire (pts (xy 116.84 34.29) (xy 116.84 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97240607-61eb-4e65-88f6-9132f8a40199) + ) + (wire (pts (xy 106.68 34.29) (xy 116.84 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97de6d2b-e458-4bfe-820d-de1575eb890d) + ) + (wire (pts (xy 224.79 35.56) (xy 224.79 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98d0b035-0407-44a2-8253-12cdbbde2ccf) + ) + (wire (pts (xy 109.22 43.18) (xy 115.57 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ed7d756-6951-4e2e-8f36-86dde7867fba) + ) + (wire (pts (xy 179.07 22.86) (xy 146.05 22.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f83ff81-064e-40c1-a38f-762b55aa4b7c) + ) + (wire (pts (xy 194.31 19.05) (xy 87.63 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5b7f408-d1bb-48b5-8a3c-97f7dafb5f74) + ) + (wire (pts (xy 264.16 31.75) (xy 261.62 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a780ad23-faa9-4895-bf8a-ad8f5f127574) + ) + (wire (pts (xy 120.65 83.82) (xy 120.65 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7ad87fc-42ec-4f64-ac0a-692641d113a0) + ) + (wire (pts (xy 83.82 54.61) (xy 83.82 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9977d89-3366-499c-8416-5650d0339a77) + ) + (wire (pts (xy 186.69 30.48) (xy 186.69 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa788ba2-7135-48a3-9561-24b0bbbd3711) + ) + (wire (pts (xy 185.42 11.43) (xy 185.42 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid addf8802-9033-46f9-96b1-94e7742fae35) + ) + (wire (pts (xy 115.57 90.17) (xy 233.68 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae3f66dd-c8a2-4f35-9740-46d871ea1802) + ) + (wire (pts (xy 179.07 31.75) (xy 179.07 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aeff734b-8ce8-4026-ba8a-7ee8815d66d0) + ) + (wire (pts (xy 247.65 30.48) (xy 186.69 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0580035-6b32-485c-b830-003c03255490) + ) + (wire (pts (xy 179.07 52.07) (xy 179.07 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1540d5f-7644-47a5-b17e-4e0daf919587) + ) + (wire (pts (xy 190.5 53.34) (xy 194.31 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6fbc294-b13b-44e1-a093-ca7ef59ad160) + ) + (wire (pts (xy 191.77 66.04) (xy 191.77 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7bb28f1-ba4c-4602-8af8-d3c0ad7a738e) + ) + (wire (pts (xy 185.42 29.21) (xy 179.07 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8201eaf-eaf7-4cbd-a903-db6a5c7be68b) + ) + (wire (pts (xy 219.71 24.13) (xy 219.71 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b848c88f-5366-4f22-8f04-ffff7c0fcf91) + ) + (wire (pts (xy 182.88 15.24) (xy 182.88 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd03da34-d9c7-4969-a0bd-55a084629d76) + ) + (wire (pts (xy 116.84 81.28) (xy 184.15 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf0fafe1-6df5-48c5-a034-a76d8f00ac4f) + ) + (wire (pts (xy 116.84 40.64) (xy 151.13 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1023c2a-453c-4e47-892b-ddb549e06264) + ) + (wire (pts (xy 119.38 93.98) (xy 119.38 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2f39d7e-c108-4c40-ab65-4866725437f4) + ) + (wire (pts (xy 118.11 74.93) (xy 119.38 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9e1aab5-b42a-4d83-9296-960fcc21214a) + ) + (wire (pts (xy 146.05 59.69) (xy 119.38 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf2bcb1f-1495-4e52-bb02-4419da41a22b) + ) + (wire (pts (xy 93.98 67.31) (xy 85.09 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d35878c2-1e23-44f9-afad-ba06f9554121) + ) + (wire (pts (xy 148.59 73.66) (xy 148.59 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d53e0214-ea5f-40a3-8781-13bb1ed8e692) + ) + (wire (pts (xy 233.68 90.17) (xy 233.68 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9e00a71-3a1c-4e35-8347-59c361ac473e) + ) + (wire (pts (xy 111.76 63.5) (xy 116.84 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9f70147-b1b3-4c1c-bbf4-bc1a4e2d706c) + ) + (wire (pts (xy 191.77 72.39) (xy 194.31 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc25594b-752e-40f1-9610-082caff1885e) + ) + (wire (pts (xy 261.62 31.75) (xy 261.62 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e011d6ad-ac5c-4892-ba70-35d2e7036432) + ) + (wire (pts (xy 270.51 54.61) (xy 270.51 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e148214c-2a12-44ba-ad71-43633f6728e4) + ) + (wire (pts (xy 99.06 87.63) (xy 93.98 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e34f080e-1e75-4f99-b53f-a1b692c8e2b9) + ) + (wire (pts (xy 227.33 52.07) (xy 227.33 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3844e33-32ee-4eb0-9201-5611bd818df9) + ) + (wire (pts (xy 113.03 78.74) (xy 120.65 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4bc594b-4927-4935-a7f0-6133a52c6a86) + ) + (wire (pts (xy 280.67 41.91) (xy 280.67 11.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4c7924f-afe0-400c-85ff-732be7bb80bb) + ) + (wire (pts (xy 194.31 40.64) (xy 194.31 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7114097-a481-442a-918b-ab1283c6f529) + ) + (wire (pts (xy 119.38 87.63) (xy 165.1 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e997b49f-9efd-4245-9978-713fe9725d03) + ) + (wire (pts (xy 270.51 49.53) (xy 280.67 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eaa591e0-6e3b-4d26-8bbd-eb1c43f00566) + ) + (wire (pts (xy 82.55 34.29) (xy 87.63 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eba62578-4f12-49b9-a28c-8517b191f31f) + ) + (wire (pts (xy 144.78 38.1) (xy 118.11 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec0c56c0-7c3f-4372-a7be-457fb3a9a3c7) + ) + (wire (pts (xy 181.61 78.74) (xy 181.61 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f027a580-5924-4a09-92b5-32501fb6f71c) + ) + (wire (pts (xy 217.17 35.56) (xy 224.79 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f16d6e01-7812-4d40-adba-e82f1183167f) + ) + (wire (pts (xy 82.55 36.83) (xy 85.09 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f180ea9f-72f6-48b6-8c96-992e4830772a) + ) + (wire (pts (xy 93.98 87.63) (xy 93.98 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1f1fe41-1f8b-4562-9aa2-a3f87bb3afe0) + ) + (wire (pts (xy 119.38 59.69) (xy 119.38 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4059cdc-5f40-4179-bdcf-9bffc54ec238) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 105.41 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 01109c7d-2086-4bd1-a974-8e8f723c8bc5) + (property "Reference" "U6" (id 0) (at 105.41 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f861bb6d-42b0-4b55-90eb-68a33f4e4392)) + (pin "2" (uuid 5f17353e-660c-4ce8-a1bc-83adaf150a6d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 76.2 36.83 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 01497bb8-4c12-43f5-9f22-8e7a1e0d5f88) + (property "Reference" "U1" (id 0) (at 76.835 31.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 76.835 34.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 76.2 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 76.2 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 526c1381-e6a1-4953-94cd-8bc2573c3c17)) + (pin "2" (uuid 9b85911f-3d29-47ce-b055-c15090053cf4)) + (pin "3" (uuid c05e7b6e-b509-4f7a-84eb-dd79071dfac8)) + (pin "4" (uuid ff8cd318-34d0-450f-bfa0-665323696b58)) + (pin "5" (uuid b5a7445f-b417-4dd0-8f6f-f74cc858a947)) + (pin "6" (uuid bf7d1bd4-7cc2-42da-a2d3-89e5ea83d3c1)) + (pin "7" (uuid 3eb381ea-f769-40bf-b7d6-1ef1a4dbc239)) + (pin "8" (uuid 78ff6bb2-c025-42dc-ad71-1bdfb9d43596)) + (pin "9" (uuid dd6f46bc-20ff-4506-a2ba-74798725fda6)) + (pin "10" (uuid 596256f4-c5c2-4a02-8c16-ac8d851e1ae2)) + (pin "11" (uuid e2e8c96b-84d9-4a3b-8a64-e73d55691757)) + (pin "12" (uuid 07804d7a-e4bd-4599-b79f-9d69206cdc4e)) + (pin "13" (uuid 7b50cf9c-a9c8-4584-8861-86925b40d150)) + (pin "14" (uuid 4884fb37-c069-4b54-85a3-f8225637839c)) + (pin "15" (uuid 9186492e-03ba-4e10-9716-cd7be35e5860)) + (pin "16" (uuid b7695329-9a5a-4d0e-b349-20ae973b6be4)) + (pin "17" (uuid eba56fbb-9877-4551-a1ba-91d5cfce86ad)) + (pin "18" (uuid f976abf1-aa63-4d98-b43d-032abbc13375)) + (pin "19" (uuid d7766602-ce4b-4d76-a19d-757e80144585)) + (pin "20" (uuid 043e2fff-68ae-49dc-9374-da8b07b7edbf)) + (pin "21" (uuid 70972a74-71f7-4de2-a29f-70a7195bb59a)) + (pin "22" (uuid 584d1bf7-f7ff-4cf9-8818-83115cea0c69)) + (pin "23" (uuid 03de582d-9850-43cb-8aac-424938083a7f)) + (pin "24" (uuid ec6fd2ee-b1a6-4359-9faf-87115ee03c0d)) + (pin "25" (uuid 13bc4756-017d-4f80-84cb-feaaa3a7deb7)) + (pin "26" (uuid 1bb03cfd-8daa-4f1b-bea6-060cc03b7a26)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 78.74 67.31 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 085f78c6-7521-4610-a937-e8155cddf3d2) + (property "Reference" "U1" (id 0) (at 79.375 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 79.375 64.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 78.74 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 78.74 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dbb2eb04-9450-4f13-9028-7e510c287a6a)) + (pin "2" (uuid 0c59a806-5830-4b50-9ca7-4fe29ee0c2af)) + (pin "3" (uuid 6e7fafbd-aae3-481a-9a02-2baef4a251d7)) + (pin "4" (uuid e2eee8e4-9b4d-4d91-88a5-c50e4132130d)) + (pin "5" (uuid 3e679d2b-4363-4e31-8c4b-ee650b94e310)) + (pin "6" (uuid f137b48a-7296-47e3-8a91-f628bd18ef31)) + (pin "7" (uuid 2d30e80b-836d-4d89-a1b3-091a7b2c5b11)) + (pin "8" (uuid 7bcb7077-c9df-4c91-a9a1-fa1d645133bc)) + (pin "9" (uuid 17c95e34-b2f4-4b2a-916b-046bb20a31e3)) + (pin "10" (uuid 1295c29a-8e32-4a41-a4c7-052b27503b1e)) + (pin "11" (uuid 5a8f8c6b-b6ee-4353-95d0-30033c378a87)) + (pin "12" (uuid a01d7ad5-a8a6-4859-8487-dbd9057a7e26)) + (pin "13" (uuid 5eea0418-fb55-4f85-bbe2-eb43db4580c1)) + (pin "14" (uuid 455a7841-ff05-4a47-9d36-349e06d2052b)) + (pin "15" (uuid b77747ed-6afc-4d7d-944e-50ae214b76b1)) + (pin "16" (uuid ee91c1c3-0ce1-4c53-a8d8-344d852572f7)) + (pin "17" (uuid 0cd77740-77b9-40c3-8938-6c6d4b8ec045)) + (pin "18" (uuid 284c17f4-0ab8-487b-a0ac-8825d0060fab)) + (pin "19" (uuid dc85dea1-3d4b-43ed-9e6b-9600d1b2b0e5)) + (pin "20" (uuid c083cb77-f5ab-476f-b7b3-527b6e9f2b63)) + (pin "21" (uuid 1d9e500d-16c8-46e8-925c-a4e23cf40c3a)) + (pin "22" (uuid 20697da4-bde1-4220-875c-23fec49bf137)) + (pin "23" (uuid e93c16bb-da22-4b09-93d0-d8a63ddf47b7)) + (pin "24" (uuid 2742245b-9a6a-428d-84b8-142ec582204e)) + (pin "25" (uuid d3b9b44e-474e-4894-b5ca-264285bb10c6)) + (pin "26" (uuid 08105cdb-480f-429d-9d97-f5d1fe434d2a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 287.02 49.53 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0b57d185-879b-43e9-8754-0c812668015f) + (property "Reference" "U1" (id 0) (at 290.83 48.895 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 290.83 51.435 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 287.02 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 287.02 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0659919d-221e-4c62-ac56-b88d69b82a08)) + (pin "2" (uuid 021e55e3-b828-4a5b-b660-5ec873861843)) + (pin "3" (uuid 623fbe91-a2c2-4f90-bf8c-825812227520)) + (pin "4" (uuid d12c19ad-4fcf-4cf6-9367-eee3d40cb19e)) + (pin "5" (uuid 6ffac0a8-0fe3-4646-8668-65d44b0a7a73)) + (pin "6" (uuid a83b6f6c-28d3-49e7-b746-342b0380706c)) + (pin "7" (uuid b59af7d4-dc2a-4e5f-b3eb-e431dc357b53)) + (pin "8" (uuid 42c485b5-c08d-4da3-835b-cd4a10548eac)) + (pin "9" (uuid c3b3973d-f186-468b-8b48-03628cd2dffe)) + (pin "10" (uuid f54a4ffc-8929-4fb6-9284-3abb103ab1c6)) + (pin "11" (uuid d32678b0-730e-46eb-81c7-c477a95564e5)) + (pin "12" (uuid a821d264-e936-414a-891a-668516cb35f9)) + (pin "13" (uuid c5e51a35-2f3f-40a0-b275-5f3610d8799e)) + (pin "14" (uuid 51ab6b5f-94f4-4b2c-847b-39b456f6be7e)) + (pin "15" (uuid 901b3389-27f9-483a-9240-c7d739c56d78)) + (pin "16" (uuid 7da64229-afad-4111-9ec0-5d2a40ee3d4e)) + (pin "17" (uuid a898442b-8e4e-44d0-a1c4-1b46be414994)) + (pin "18" (uuid 54b1206a-cbcb-4d8f-ab3e-5773a2440d49)) + (pin "19" (uuid d399acfe-c6d9-4f2d-b6cb-cb4680a41103)) + (pin "20" (uuid 641c8b2e-dc4a-4dbe-8c17-1a63752f34ae)) + (pin "21" (uuid 6d389745-92b0-48b8-987a-54f094dcd7c9)) + (pin "22" (uuid e082a0f2-4706-46f9-8a59-a83f78ae64cf)) + (pin "23" (uuid 6b8feabe-0181-4ba6-9c4b-4906589c5ed9)) + (pin "24" (uuid c3fbc295-93d6-4aee-ac9c-fc792a2bdd00)) + (pin "25" (uuid a97c0d8b-0d37-421a-bcfe-db83a2480531)) + (pin "26" (uuid 97eb5859-5ce3-48dd-9bfc-2223c81feccd)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 287.02 41.91 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2992a492-8aa6-4433-bbae-3230b11b6779) + (property "Reference" "U1" (id 0) (at 290.83 41.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 290.83 43.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 287.02 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 287.02 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d4a00780-ef62-41d5-9e48-54a28d0705ed)) + (pin "2" (uuid c59fe22b-dd97-4686-974b-1033bf3b4532)) + (pin "3" (uuid fd203bba-d87b-4472-892d-6f4ca14f2a24)) + (pin "4" (uuid 8d2fb9cb-9830-4b7d-b815-9a65b9ed0493)) + (pin "5" (uuid b79285a8-11a9-4be3-9d2e-dad78b977134)) + (pin "6" (uuid f8524956-d295-4eee-946b-63f1a39e8eeb)) + (pin "7" (uuid 67ac47b3-8bef-486e-b1a6-e21a6d5e11eb)) + (pin "8" (uuid f8b18aeb-7a44-43e6-94ec-6a4321f5df42)) + (pin "9" (uuid 342a4f51-b528-4a9b-9497-412282e6305b)) + (pin "10" (uuid d0d97a77-49a8-45c1-a3fb-84deaa56d4c1)) + (pin "11" (uuid 4806da9c-2b5d-42d7-a23a-d84e1c4e8564)) + (pin "12" (uuid 08eead48-a6d6-49a1-ad72-1bdeeface0da)) + (pin "13" (uuid b092ad41-01b8-441d-87d6-1499cf48d1da)) + (pin "14" (uuid 84c4d4fd-2466-455d-8ce0-e2af1609a1cf)) + (pin "15" (uuid da3f6b46-2737-4584-98e8-ccd4c148f5af)) + (pin "16" (uuid 24153be1-d757-489d-bc83-8995506027df)) + (pin "17" (uuid ea9efab9-f086-4e02-905d-3814df841189)) + (pin "18" (uuid 61efbf02-a9da-4e6d-a33f-7099b0d4bb2a)) + (pin "19" (uuid a235a2f6-b6a5-4290-b7ee-e707fb0bbae4)) + (pin "20" (uuid e395fe3d-60c6-4cf0-ae75-2490b1c8f655)) + (pin "21" (uuid 661df279-8c5e-4daf-981c-9027b1b95d0e)) + (pin "22" (uuid 0c5c2115-b1bd-476d-a5db-7823034d8d68)) + (pin "23" (uuid 999f5993-4642-4618-b498-a6351dbec5b2)) + (pin "24" (uuid d65b0f0a-2f90-4dbb-93cd-31a14c89e145)) + (pin "25" (uuid 47efb5cb-93e1-4020-91f7-460e7791500c)) + (pin "26" (uuid 508d72fd-8d4b-4820-bdfd-5eafa4de3a67)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 130.81 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2ec2a7b3-2bb0-4ebe-8468-67c619151886) + (property "Reference" "U10" (id 0) (at 130.81 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 130.81 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 130.81 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 130.81 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 672647c5-3acb-4d50-9784-f16099b274a3)) + (pin "2" (uuid ae568044-8b6b-4cc9-b81d-8944b4e5967b)) + (pin "3" (uuid ce30b400-cfff-4b30-b320-f214eceb8efd)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 102.87 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51ed08cf-661b-4160-80cb-7c15580e3ca9) + (property "Reference" "U4" (id 0) (at 102.87 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 102.87 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 104.14 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 104.14 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e496a49f-6b8e-440d-8da8-e5d2a03a77ff)) + (pin "2" (uuid 3a9ecfe9-6485-488b-b687-fcbaaa69f530)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 106.68 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5291a169-fb87-4fb7-bcf5-6add6d25163e) + (property "Reference" "U7" (id 0) (at 106.68 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 106.68 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 107.95 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 107.95 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f459ec37-5124-45e2-a1b8-0babc34f1f70)) + (pin "2" (uuid e6c542f1-9854-43a1-ad95-f3eb1db5b956)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 76.2 34.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6422b550-2427-4716-84b2-179ac23d880f) + (property "Reference" "U1" (id 0) (at 76.835 29.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 76.835 31.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 76.2 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 76.2 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7edcd90d-4ff0-411a-adeb-e7476a44342b)) + (pin "2" (uuid 8890ffc2-c3de-4981-b933-6874411115f7)) + (pin "3" (uuid 5216adeb-0c06-43e2-8188-fd6cef78a0c4)) + (pin "4" (uuid 6fb186da-537b-4561-abf4-b5b098c62564)) + (pin "5" (uuid 2000554c-1248-4bdf-81cc-a8b7ab919a5e)) + (pin "6" (uuid fb524d68-d893-4c6b-b98b-3cc6f302950b)) + (pin "7" (uuid 695d6c8f-c490-436e-91cd-04dc6f548220)) + (pin "8" (uuid b8024fd6-83b9-41bb-a681-ea9ec1feee1e)) + (pin "9" (uuid 35c8945e-1d62-40f5-9c43-fac2b9c693c6)) + (pin "10" (uuid 362943dd-3beb-4d73-a55a-2937a71c9cd7)) + (pin "11" (uuid 433127c9-fe50-4977-af40-3322a323dd26)) + (pin "12" (uuid 51b7e804-fdf4-4305-a507-e9ce3321ca74)) + (pin "13" (uuid 9180dafa-8608-482b-84d6-d18a2a24ed6c)) + (pin "14" (uuid 0c70a034-1a5f-4d75-8593-1247f9dbb860)) + (pin "15" (uuid 34cacd1b-2194-491b-ad29-0a908f6497d8)) + (pin "16" (uuid f5b5728a-b624-415e-98a8-f25d5048db20)) + (pin "17" (uuid 54bc843a-8cb9-4b4e-b838-167b7b34df69)) + (pin "18" (uuid 54426ff1-2e9d-46f8-8c0a-2b2426548669)) + (pin "19" (uuid 53d8feec-c5e1-4769-8401-d6fa59790fcf)) + (pin "20" (uuid 45600f10-78fe-4959-9527-8c7afb6522dc)) + (pin "21" (uuid 1e9e356b-a208-4f25-9373-2773703cf705)) + (pin "22" (uuid c268c2ed-e321-4cfa-869b-353ffe014c9d)) + (pin "23" (uuid f111a935-05a6-45c4-b927-458cc66bbff4)) + (pin "24" (uuid cc3b998c-2947-4e03-8d04-5ab72a070e00)) + (pin "25" (uuid 328cadb0-977b-412b-b0fe-4333c4b27caa)) + (pin "26" (uuid 6d4a4008-d9d6-4116-97fb-83e23db19af0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 287.02 44.45 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a560e84-8bf1-4b59-94ec-ec8a7a11253d) + (property "Reference" "U1" (id 0) (at 290.83 43.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 290.83 46.355 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 287.02 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 287.02 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7009780c-88fb-4448-be7e-8ee838f9cb33)) + (pin "2" (uuid a5f49afd-4a49-4479-8468-fc159ff48d35)) + (pin "3" (uuid b3019e3b-c508-4e5f-b35d-85fe2e26e288)) + (pin "4" (uuid 60c10811-d40e-4fc3-9ac9-2b49553a6f7b)) + (pin "5" (uuid ded52a85-da67-4c0c-977c-77b1ba829bb6)) + (pin "6" (uuid 70fa3b0e-aef7-428f-b389-62c54c77c873)) + (pin "7" (uuid 49f393f2-05f5-429d-bee8-06f2db7f9846)) + (pin "8" (uuid 53d9291c-f7c1-4ed7-95ed-0193ea872646)) + (pin "9" (uuid 96187098-9b95-4d09-97b8-f518d13b484b)) + (pin "10" (uuid 2df3c9a3-e047-4661-925c-6bed9f2c45a3)) + (pin "11" (uuid 2834c8f5-c07d-4016-b93d-d9182c905d98)) + (pin "12" (uuid aa2521c4-5b06-40f5-a993-93147af6a855)) + (pin "13" (uuid 048fc5be-f177-445e-8834-a6220b97b91f)) + (pin "14" (uuid 8bc0a430-7886-4729-87b4-05b641078327)) + (pin "15" (uuid 62d41e6b-2d52-49e3-8119-fef7289afebd)) + (pin "16" (uuid 7dd61290-1c6f-4557-a351-3de9ccbead4a)) + (pin "17" (uuid 96c0ded2-dbc6-4d94-943f-afde4914e8de)) + (pin "18" (uuid 5cb91176-d512-401f-976e-d1a92135d1aa)) + (pin "19" (uuid 98205e5a-4d43-465d-b8eb-3a1911c5e34b)) + (pin "20" (uuid e7221aaa-a116-41c7-acad-3f6a517222d7)) + (pin "21" (uuid aa452f18-266f-498c-9bb7-4fa0ef84fee8)) + (pin "22" (uuid 305ad1c9-7bf9-499e-bcf8-08614ce26cb3)) + (pin "23" (uuid 215fdca0-2dd9-4494-9ea4-070106e8a1f8)) + (pin "24" (uuid 26ebbee9-fd0c-411d-b666-68f4c44308ce)) + (pin "25" (uuid 2db829ef-92c1-404e-b140-1a8d6d445916)) + (pin "26" (uuid 5110fe30-7c38-446c-b831-e358b0b501d1)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 165.1 40.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7c48928a-7a25-4686-b90f-04dd8372fcf2) + (property "Reference" "U11" (id 0) (at 167.1194 24.13 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 167.1194 27.94 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 165.1 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 165.1 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0441d7d5-7b46-4f67-8dc5-92237328b447)) + (pin "2" (uuid 7f052584-5575-44e7-b848-b764e684d561)) + (pin "3" (uuid 447a2d79-35f2-43f7-9869-0464991e1082)) + (pin "4" (uuid b58a4672-4d11-43fd-9e05-6208dcd32b05)) + (pin "5" (uuid c7462e87-c100-4108-8e7c-99b73bf1b4aa)) + (pin "6" (uuid b7ff8092-01a4-46a2-a540-b24518648d04)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 104.14 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8bc659d7-5162-4709-b5b0-d3f4d2d58d7a) + (property "Reference" "U5" (id 0) (at 104.14 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 104.14 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 105.41 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 105.41 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 49775b44-c04d-4c1b-a207-77912e13b98b)) + (pin "2" (uuid c5d58cf9-aff3-444d-9a70-1271d29f2b0a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 78.74 64.77 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9324f3ce-1cba-4143-94ef-35f857f5c775) + (property "Reference" "U1" (id 0) (at 79.375 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 79.375 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 78.74 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 78.74 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 61b3d9e0-8916-426e-806c-71fc55c64e93)) + (pin "2" (uuid 31423c90-7c87-463f-bf69-080bd36acfa0)) + (pin "3" (uuid 43883d27-8974-4f7f-bcbb-d8027a0e4c96)) + (pin "4" (uuid fefc462b-5507-41c8-a923-0d805761a0e0)) + (pin "5" (uuid 1fb4121b-0a53-4909-a6ad-d187f9a869c5)) + (pin "6" (uuid bcba0393-5ecc-4d0d-8b13-016aec6be198)) + (pin "7" (uuid d53d550a-c6d1-44c0-bfff-ea60bfe71ef9)) + (pin "8" (uuid f595c836-6179-4799-b66e-8724328964e5)) + (pin "9" (uuid 7d3a398a-6a5d-4a33-981e-1c01c7b2ea07)) + (pin "10" (uuid 7281695a-68d1-4526-a566-2e69d5487be8)) + (pin "11" (uuid e5d52998-57f9-4fac-a1b7-44e30b32036d)) + (pin "12" (uuid c9dfb353-192b-4675-afb5-a0631010d7bb)) + (pin "13" (uuid 98d6083c-e6d5-441d-9b90-98a462f86e94)) + (pin "14" (uuid a3dfef0c-9ce8-413e-a537-2d5f55471898)) + (pin "15" (uuid 1037f64b-dbee-4357-a58c-fe8a76fc0e6b)) + (pin "16" (uuid 86e3831c-d919-44d8-852a-015f29d49c89)) + (pin "17" (uuid 75400f9b-6a0e-4048-a8db-c6dbebc42130)) + (pin "18" (uuid c5cab28a-5c82-4e60-927a-10d98e91c840)) + (pin "19" (uuid 0ab8fbcc-367b-44f3-8dab-50bbdcd0fc30)) + (pin "20" (uuid d557f3ea-e80a-4266-8557-3a9c1c5c463a)) + (pin "21" (uuid 21a719e0-05f0-4fff-b17b-4dde2d8d4e05)) + (pin "22" (uuid 160bd0b4-846c-42c5-a475-b00e6799a537)) + (pin "23" (uuid e0fc5d8a-a81a-4eee-84c7-20c7e42fdc24)) + (pin "24" (uuid 905fd7b7-f28d-4d40-9550-e5c171311093)) + (pin "25" (uuid 9757abc1-4c1e-489e-b3b3-286a7b669e82)) + (pin "26" (uuid a348342a-d17e-415a-9a97-37388d5bb126)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 130.81 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9f290738-7387-4b3f-85a6-a67e87225558) + (property "Reference" "U9" (id 0) (at 130.81 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 130.81 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 130.81 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 130.81 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 61425a46-8af5-4eda-8e3d-137a18b7f95c)) + (pin "2" (uuid 2920e56a-4214-4b35-9999-e491f537d343)) + (pin "3" (uuid 8e658ce5-9c04-45ea-b357-2c1a4677f1de)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 205.74 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9fa2f5c2-0789-4851-b797-a42e377ce3e5) + (property "Reference" "U14" (id 0) (at 205.74 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 205.74 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 205.74 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d64665dd-3cd3-4361-b634-1b7be672e680)) + (pin "2" (uuid ecb388c5-21f3-4dd9-b104-2bcd33e20ec5)) + (pin "3" (uuid a04f0a05-b931-4ee8-b2e7-14c18b411d2b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 101.6 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ac2fd768-0094-43fa-b6ea-27d2603527a3) + (property "Reference" "U3" (id 0) (at 101.6 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 101.6 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 102.87 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 383cf329-da9e-4392-899f-1634c43d354f)) + (pin "2" (uuid 87a6a1e1-ecc5-4852-8c71-0ff7db669e86)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 205.74 36.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b23f425a-cbb5-4ac0-8975-3da85046833f) + (property "Reference" "U12" (id 0) (at 205.74 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 205.74 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 205.74 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb40330f-9202-4a1e-8070-9da9ebd9f6e5)) + (pin "2" (uuid fba4103f-ffbf-4d76-8a62-7db7ac0a179a)) + (pin "3" (uuid bb52008b-4e8d-4970-b07f-218317a2d873)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 205.74 53.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b6361342-3bab-4228-bd5a-1b72de9a8850) + (property "Reference" "U13" (id 0) (at 205.74 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 205.74 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 205.74 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eed37680-b300-4eed-a086-d2162b0686a9)) + (pin "2" (uuid 165bd913-0e9d-4fd2-a824-43a780c89f3a)) + (pin "3" (uuid a0f34c54-672c-45b0-a883-454a264cfa21)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 287.02 46.99 180) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf9f997a-1a3e-4aaf-9efa-55916f3c05cd) + (property "Reference" "U1" (id 0) (at 290.83 46.355 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 290.83 48.895 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 287.02 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 287.02 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6201295b-35e4-472b-8398-058ac08860ea)) + (pin "2" (uuid abc62988-64f1-4d5a-9b18-abbde9c95e5f)) + (pin "3" (uuid a89560a3-378d-4723-84b1-f87cbfcbbf4c)) + (pin "4" (uuid cc8a9d5f-d8ba-4913-a636-fd601432d1da)) + (pin "5" (uuid 9e60f29b-8f50-44c7-8c05-9b88de1dc60e)) + (pin "6" (uuid 01333665-ac3e-4a97-8c73-b6cd0aff4350)) + (pin "7" (uuid 3860b9f6-43e3-42e3-90ae-8c026b88cc9c)) + (pin "8" (uuid ef528c05-1fa8-49e7-adda-c2dc4833b406)) + (pin "9" (uuid 76116bfd-578c-4147-9438-2147d8c7b3d4)) + (pin "10" (uuid 579bfd1f-831f-4456-b763-d48d3ac91eda)) + (pin "11" (uuid cc3128ec-b7ee-4aa1-a092-7f01686a57d2)) + (pin "12" (uuid d6ebf588-d1cd-47c4-935d-9fa2e90ee4e6)) + (pin "13" (uuid baa35d99-3e80-4907-91d9-c24550ce7637)) + (pin "14" (uuid 2499d116-be32-402a-85b5-6a9a82e5b45f)) + (pin "15" (uuid 6cb6b054-8d91-4aaf-906d-448b8595ad17)) + (pin "16" (uuid 3fa55090-ffb7-436a-b255-dfef1db44873)) + (pin "17" (uuid 5a9a2b71-dfa6-49a0-a28b-6f9dd8f75dde)) + (pin "18" (uuid cb7f40dc-2c8e-4a4b-ae40-616a53c13a0b)) + (pin "19" (uuid ed8612a4-4e9f-4af7-9fda-ae63c5cb02f1)) + (pin "20" (uuid cf5b1a39-deff-4817-a702-88ce6943d76d)) + (pin "21" (uuid bb5c4b3b-3b81-4c7f-93aa-bd2885ed5366)) + (pin "22" (uuid f74be3d3-d6b6-45cb-b24b-7dd9e1c95dca)) + (pin "23" (uuid 2b915627-4e77-4b90-989d-8589341a4e98)) + (pin "24" (uuid 32636311-b895-4991-86be-e251626ffdde)) + (pin "25" (uuid 3117ee23-1885-47b6-a306-5a431d2a0c3d)) + (pin "26" (uuid 85a8c739-0820-40ee-9f6a-bdb5636bf26d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 129.54 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d7c7b33b-34b2-42b3-aa12-32b67883015f) + (property "Reference" "U8" (id 0) (at 129.54 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 129.54 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 129.54 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 129.54 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 476bce10-7398-49d0-8cc2-43d0ad6a2302)) + (pin "2" (uuid 8524f5cf-66f6-44d3-9f49-b2e4ba6f72d4)) + (pin "3" (uuid 65800e2d-6e97-4f05-bf50-a97034930917)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 247.65 46.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2d78453-e6a2-408b-aa1a-55d66bd33f9c) + (property "Reference" "U15" (id 0) (at 249.6694 30.48 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 249.6694 34.29 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 247.65 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 247.65 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e57d1808-6b03-4893-97b9-ed6768fd4573)) + (pin "2" (uuid 23485bdd-7c82-4e8d-989c-7d4ea4eb02fa)) + (pin "3" (uuid 4125cab2-a1f7-4d6f-8498-382c0f349bc0)) + (pin "4" (uuid c5e074af-4660-4d06-93ad-cadc9471876b)) + (pin "5" (uuid 0abeadf4-3f5f-401b-870d-21f451d81628)) + (pin "6" (uuid 39f196c3-b80c-4d12-9b37-bdeb485dcb27)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 99.06 34.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e79dc9aa-7bf3-485a-90f9-8bee317fe823) + (property "Reference" "U2" (id 0) (at 99.06 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 99.06 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 70c018b4-31b4-4b0c-bc06-572b276d1a9a)) + (pin "2" (uuid 0def80e9-93ed-4b77-86cc-2b514365364e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 76.2 39.37 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f036d17a-b073-4871-913b-79a0cb342471) + (property "Reference" "U1" (id 0) (at 76.835 34.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 76.835 36.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 76.2 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 76.2 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0dc22466-86d4-4ba6-9a11-a322a39021d9)) + (pin "2" (uuid 2ae24c32-2b84-45e8-8e0d-91c69e9da6ca)) + (pin "3" (uuid c8750cd2-d911-4846-b283-77916802a46c)) + (pin "4" (uuid 3b20e881-0f6d-4b8e-8026-2896ccd39853)) + (pin "5" (uuid c2aa0f0d-16b5-4d3c-bf74-7f5330bcb38f)) + (pin "6" (uuid b925d091-f5fb-4c18-9c80-e666f192cbac)) + (pin "7" (uuid 6442428c-20ab-4bc5-8e90-68f069cbb47a)) + (pin "8" (uuid 4cfb3df8-89e3-4e17-bc56-b31428a1f285)) + (pin "9" (uuid cbc4057d-ce82-4284-bb52-951523159837)) + (pin "10" (uuid bbfbb2c2-acbc-40d3-8b92-b7d4d891336c)) + (pin "11" (uuid 15ba402a-0a4c-406e-b6b5-253ef08244c5)) + (pin "12" (uuid a6d7a638-ef27-4f3d-b579-6e0bd313ce4a)) + (pin "13" (uuid ca2014e1-a68f-4a8b-a729-89279fb0beec)) + (pin "14" (uuid 62b00c26-4d61-4162-8bed-a3cd3e7e2d75)) + (pin "15" (uuid 589178b2-6d36-41f0-845b-04804abb6a71)) + (pin "16" (uuid cf8796e0-f834-4847-b35a-90b6bd63509a)) + (pin "17" (uuid eb68ff3f-b2c5-4aa9-9fb7-302933348860)) + (pin "18" (uuid a6e08a11-3939-4500-952a-e10b259f227c)) + (pin "19" (uuid d5025188-c912-4eeb-b1d5-e878c87f8f3d)) + (pin "20" (uuid 0f0eebe9-575e-41af-a344-16cb30473b4f)) + (pin "21" (uuid 63a9553b-2739-4252-8b96-e9c63bd01bc5)) + (pin "22" (uuid 96b6487a-39f0-416e-8a2d-0fb276724873)) + (pin "23" (uuid d8ef2c5a-1ee9-4d8e-80ad-86931ddae5b6)) + (pin "24" (uuid 4ab22919-f642-4a99-a670-f1e58fe7bac3)) + (pin "25" (uuid 6bf366eb-2252-4b50-8df9-e275462fb2b8)) + (pin "26" (uuid b3033a13-a6de-4817-b686-233249b7c0e1)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/6422b550-2427-4716-84b2-179ac23d880f" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/01497bb8-4c12-43f5-9f22-8e7a1e0d5f88" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/f036d17a-b073-4871-913b-79a0cb342471" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/9324f3ce-1cba-4143-94ef-35f857f5c775" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/085f78c6-7521-4610-a937-e8155cddf3d2" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/2992a492-8aa6-4433-bbae-3230b11b6779" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/6a560e84-8bf1-4b59-94ec-ec8a7a11253d" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/cf9f997a-1a3e-4aaf-9efa-55916f3c05cd" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/0b57d185-879b-43e9-8754-0c812668015f" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/e79dc9aa-7bf3-485a-90f9-8bee317fe823" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ac2fd768-0094-43fa-b6ea-27d2603527a3" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/51ed08cf-661b-4160-80cb-7c15580e3ca9" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/8bc659d7-5162-4709-b5b0-d3f4d2d58d7a" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/01109c7d-2086-4bd1-a974-8e8f723c8bc5" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5291a169-fb87-4fb7-bcf5-6add6d25163e" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d7c7b33b-34b2-42b3-aa12-32b67883015f" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/9f290738-7387-4b3f-85a6-a67e87225558" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/2ec2a7b3-2bb0-4ebe-8468-67c619151886" + (reference "U10") (unit 1) (value "d_or") (footprint "") + ) + (path "/7c48928a-7a25-4686-b90f-04dd8372fcf2" + (reference "U11") (unit 1) (value "d_dff") (footprint "") + ) + (path "/b23f425a-cbb5-4ac0-8975-3da85046833f" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/b6361342-3bab-4228-bd5a-1b72de9a8850" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + (path "/9fa2f5c2-0789-4851-b797-a42e377ce3e5" + (reference "U14") (unit 1) (value "d_or") (footprint "") + ) + (path "/e2d78453-e6a2-408b-aa1a-55d66bd33f9c" + (reference "U15") (unit 1) (value "d_dff") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/74HC112_sub/74HC112_sub.proj b/library/SubcircuitLibrary/74HC112_sub/74HC112_sub.proj new file mode 100644 index 000000000..425066453 --- /dev/null +++ b/library/SubcircuitLibrary/74HC112_sub/74HC112_sub.proj @@ -0,0 +1 @@ +schematicFile 74HC112_sub.kicad_sch diff --git a/library/SubcircuitLibrary/74HC112_sub/74HC112_test.cir b/library/SubcircuitLibrary/74HC112_sub/74HC112_test.cir new file mode 100644 index 000000000..9a22f69f3 --- /dev/null +++ b/library/SubcircuitLibrary/74HC112_sub/74HC112_test.cir @@ -0,0 +1,15 @@ +.title KiCad schematic +v2 Net-_U1-Pad2_ GND pulse +v3 Net-_U1-Pad3_ GND pulse +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ adc_bridge_3 +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U2-Pad2_ Net-_U2-Pad2_ Net-_U2-Pad5_ Net-_U2-Pad6_ unconnected-_U2-Pad7_ unconnected-_U2-Pad8_ adc_bridge_4 +v1 Net-_U1-Pad1_ GND pulse +v5 Net-_U2-Pad2_ GND pulse +v4 Net-_U2-Pad1_ GND pulse +X1 Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U2-Pad5_ Net-_U2-Pad6_ Net-_U3-Pad1_ Net-_U3-Pad2_ Net-_U3-Pad3_ Net-_U3-Pad4_ 74HC112 +U3 Net-_U3-Pad1_ Net-_U3-Pad2_ Net-_U3-Pad3_ Net-_U3-Pad4_ Net-_U3-Pad5_ Net-_U3-Pad6_ Net-_U3-Pad7_ Net-_U3-Pad8_ dac_bridge_4 +U4 Net-_U3-Pad5_ plot_v1 +U5 Net-_U3-Pad6_ plot_v1 +U6 Net-_U3-Pad7_ plot_v1 +U7 Net-_U3-Pad8_ plot_v1 +.end diff --git a/library/SubcircuitLibrary/74HC112_sub/74HC112_test.kicad_sch b/library/SubcircuitLibrary/74HC112_sub/74HC112_test.kicad_sch new file mode 100644 index 000000000..667a960a3 --- /dev/null +++ b/library/SubcircuitLibrary/74HC112_sub/74HC112_test.kicad_sch @@ -0,0 +1,949 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 72cf3998-9ef0-457e-94f0-3a80742385ce) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_3" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_3" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_3_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_3_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -1.27 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -3.81 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -1.27 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -3.81 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:74HC112" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -12.7 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "74HC112" (id 1) (at 1.27 -8.89 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "74HC112_0_1" + (rectangle (start -8.89 7.62) (end 11.43 -16.51) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "74HC112_1_1" + (pin input line (at -8.89 5.08 0) (length 2.54) + (name "CLK" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 2.54 0) (length 2.54) + (name "J" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 0 0) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -2.54 0) (length 2.54) + (name "Pre_n" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -5.08 0) (length 2.54) + (name "CLR_n" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 5.08 0) (length 2.54) + (name "Q1" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 0) (length 2.54) + (name "Q1bar" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 -2.54 0) (length 2.54) + (name "Q2" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 -6.35 0) (length 2.54) + (name "Q2bar" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 40.64 153.67) (diameter 0) (color 0 0 0 0) + (uuid 0e44a15a-c36e-4376-861b-9152a5d53d0c) + ) + (junction (at 34.29 135.89) (diameter 0) (color 0 0 0 0) + (uuid 10d9e441-bd43-4d48-8d5f-e5c022e4b699) + ) + (junction (at 30.48 111.76) (diameter 0) (color 0 0 0 0) + (uuid 1e7ff43b-025b-4e06-b3a0-d84ef6286d4a) + ) + (junction (at 24.13 83.82) (diameter 0) (color 0 0 0 0) + (uuid 55765642-ce4f-48c4-8e06-655c482c619d) + ) + (junction (at 58.42 62.23) (diameter 0) (color 0 0 0 0) + (uuid a733779f-1589-4cbb-93d7-6e89c2f4fe44) + ) + (junction (at 58.42 59.69) (diameter 0) (color 0 0 0 0) + (uuid c80c44a8-c3b0-4d0c-b87b-e4909e164b74) + ) + + (wire (pts (xy 50.8 46.99) (xy 50.8 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b64d189-f422-4384-9070-8e18eecda1b3) + ) + (wire (pts (xy 39.37 46.99) (xy 50.8 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f605260-a5b2-4640-bd6d-02241d9e63a2) + ) + (wire (pts (xy 135.89 33.02) (xy 121.92 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16a43a0e-0f41-4af0-90f2-ad193f7dd1c1) + ) + (wire (pts (xy 58.42 57.15) (xy 63.5 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17367e36-5b1a-4977-92ff-78cf2d4cb118) + ) + (wire (pts (xy 88.9 31.75) (xy 101.6 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19795769-dd8f-4ba1-94a2-867665d923ae) + ) + (wire (pts (xy 24.13 83.82) (xy 24.13 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19d6d035-7413-41fb-ad29-b2b7e18872ec) + ) + (wire (pts (xy 163.83 33.02) (xy 168.91 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19ebea6a-56f9-4e49-808a-bcc261492d49) + ) + (wire (pts (xy 40.64 128.27) (xy 58.42 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24d75a42-abc7-45de-9b82-686612319c21) + ) + (wire (pts (xy 58.42 59.69) (xy 58.42 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 260f3534-5aef-45c7-aa92-9c447d114b87) + ) + (wire (pts (xy 121.92 33.02) (xy 121.92 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28a5d131-bf61-49ef-af53-630b9c1dffb4) + ) + (wire (pts (xy 58.42 128.27) (xy 58.42 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2aac13a3-0a5d-45b0-8313-9696b8798c19) + ) + (wire (pts (xy 40.64 151.13) (xy 40.64 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c3fe38c-c6da-4491-ae78-6ba3668703ec) + ) + (wire (pts (xy 55.88 102.87) (xy 55.88 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2dceb8d4-c43c-46ae-8d34-523c779bb4ad) + ) + (wire (pts (xy 91.44 54.61) (xy 91.44 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 303349c5-7874-4d0e-bcd4-a15053fc2c8b) + ) + (wire (pts (xy 39.37 20.32) (xy 59.69 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 323c3093-5bad-4671-9aeb-ab39580ae364) + ) + (wire (pts (xy 88.9 26.67) (xy 101.6 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3876419c-a4b5-4aa7-99b0-81d8142b94a0) + ) + (wire (pts (xy 21.59 43.18) (xy 21.59 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38786d41-7ece-4c57-8b59-fe8a32dfa2dc) + ) + (wire (pts (xy 40.64 102.87) (xy 55.88 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39e33c8b-75c6-49de-8452-3da0895f6091) + ) + (wire (pts (xy 30.48 99.06) (xy 30.48 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d3e6898-5801-4fea-b02b-5551ebcba16c) + ) + (wire (pts (xy 135.89 36.83) (xy 121.92 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 482dc2da-d128-4a0b-bdc5-4a1223f8c847) + ) + (wire (pts (xy 24.13 69.85) (xy 24.13 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48de52f5-9741-4064-987a-0dac2d0a1f66) + ) + (wire (pts (xy 93.98 57.15) (xy 93.98 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b5dee0e-2670-4024-833d-cc427070ebb8) + ) + (wire (pts (xy 101.6 31.75) (xy 101.6 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 549f665b-23a3-4629-b285-0e0a0feae970) + ) + (wire (pts (xy 30.48 135.89) (xy 34.29 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55586dfa-606b-410a-a2ac-7997c2e8341a) + ) + (wire (pts (xy 91.44 35.56) (xy 101.6 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57a78afc-38d3-4cf7-bc5a-bf5fb0ae1a78) + ) + (wire (pts (xy 163.83 58.42) (xy 180.34 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a2779eb-b4b6-42af-9962-c63a2911d9cf) + ) + (wire (pts (xy 163.83 35.56) (xy 167.64 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d36fed8-503d-4365-954b-1b7bd8557302) + ) + (wire (pts (xy 40.64 153.67) (xy 40.64 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ea62d2d-26e9-417b-8a8a-f6104764f489) + ) + (wire (pts (xy 163.83 38.1) (xy 163.83 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f347151-ea8f-47f6-a08e-c3ce582af166) + ) + (wire (pts (xy 58.42 59.69) (xy 63.5 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 691b235c-4346-4022-932f-babdf10d071b) + ) + (wire (pts (xy 53.34 76.2) (xy 53.34 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b910222-1159-4c1b-8f7e-6774c7957340) + ) + (wire (pts (xy 40.64 76.2) (xy 53.34 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 716110e5-83e8-427c-b234-e4a61920dadc) + ) + (wire (pts (xy 121.92 41.91) (xy 121.92 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c9e3d7e-65a2-4149-aed8-fbc2e6f24f33) + ) + (wire (pts (xy 135.89 38.1) (xy 135.89 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 858bb629-a438-49d3-a4bb-66d8ed2f246a) + ) + (wire (pts (xy 168.91 33.02) (xy 168.91 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 874b6a21-dbf2-4442-a21e-70e3c225b923) + ) + (wire (pts (xy 93.98 38.1) (xy 101.6 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c1895fb-71b5-4aa5-93dd-4ef27bd54a5a) + ) + (wire (pts (xy 101.6 26.67) (xy 101.6 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dd293fd-f7b5-45bc-9a47-9faa82769de2) + ) + (wire (pts (xy 58.42 62.23) (xy 58.42 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 921538fc-a890-42f9-94af-370c5361f29f) + ) + (wire (pts (xy 91.44 57.15) (xy 93.98 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94203056-2486-460a-99b2-738159ed3e03) + ) + (wire (pts (xy 24.13 111.76) (xy 30.48 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 948dbb4c-945c-4011-9648-0bf1d49550b5) + ) + (wire (pts (xy 34.29 125.73) (xy 34.29 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9934f8ac-02fc-48f6-bf49-1e2ea5cd8e7f) + ) + (wire (pts (xy 167.64 35.56) (xy 167.64 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5236a64-baad-4f5d-b16d-d896fee16a69) + ) + (wire (pts (xy 34.29 135.89) (xy 34.29 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a56db6e6-2da0-41d6-b64a-b2d9577715ac) + ) + (wire (pts (xy 30.48 111.76) (xy 30.48 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6592a9c-3009-4db1-8e77-e4ee6ae76226) + ) + (wire (pts (xy 168.91 38.1) (xy 172.72 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a95a9047-1f2c-47e3-86dd-a0d240619237) + ) + (wire (pts (xy 121.92 27.94) (xy 121.92 21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abdf754e-f6a1-4ab5-b4b6-e509b9db3f69) + ) + (wire (pts (xy 135.89 21.59) (xy 135.89 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid adf82f8b-ff4f-425d-9e56-f251ee6f8ef1) + ) + (wire (pts (xy 121.92 36.83) (xy 121.92 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af697ceb-9e97-4bcb-a5c5-8217a60d6dce) + ) + (wire (pts (xy 55.88 54.61) (xy 63.5 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8a12414-cbf7-4eee-9458-00d7fb4489c9) + ) + (wire (pts (xy 40.64 99.06) (xy 30.48 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba6d4d02-d489-40bb-8a4c-065725b5c677) + ) + (wire (pts (xy 121.92 21.59) (xy 135.89 21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd4cdee0-95fc-44c1-aafa-58741962173c) + ) + (wire (pts (xy 34.29 153.67) (xy 40.64 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c77d2c00-2612-4dec-b017-72fe415a64bd) + ) + (wire (pts (xy 167.64 46.99) (xy 177.8 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c81755a2-319b-45d9-a4b9-be739c3d2bd3) + ) + (wire (pts (xy 21.59 83.82) (xy 24.13 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8acecb0-8d8b-4914-ab7a-2c988d2a5dcf) + ) + (wire (pts (xy 39.37 69.85) (xy 24.13 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9e81d63-b0cc-495c-8679-b1fc04990f7f) + ) + (wire (pts (xy 88.9 29.21) (xy 101.6 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d33679b3-46db-4ed6-8e57-d7e878826f01) + ) + (wire (pts (xy 101.6 29.21) (xy 101.6 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4fe6286-75e7-4c9e-98b1-5c0e6c0a21b6) + ) + (wire (pts (xy 39.37 43.18) (xy 21.59 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd59cae0-b518-4675-ad84-31f4e6f87fde) + ) + (wire (pts (xy 135.89 35.56) (xy 135.89 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd89e94f-bf72-4d34-bc6d-abd5b1554a47) + ) + (wire (pts (xy 53.34 31.75) (xy 59.69 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4311fb3-5710-4f71-9d67-9b591e171592) + ) + (wire (pts (xy 59.69 20.32) (xy 59.69 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5833074-1db7-4beb-b4fa-a5079d0a58e8) + ) + (wire (pts (xy 58.42 62.23) (xy 63.5 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7cac8c1-7efb-44f9-9d45-c39178cd3534) + ) + (wire (pts (xy 50.8 29.21) (xy 59.69 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e973dea5-b102-461a-b40a-de4859b1e38c) + ) + (wire (pts (xy 40.64 125.73) (xy 34.29 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee056d89-1f03-4184-b4b1-a000f2b609f1) + ) + (wire (pts (xy 135.89 41.91) (xy 121.92 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f59e36da-621f-49f2-aa4a-7751a47ebfa6) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 40.64 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 00b050d4-9e85-46b9-8686-a8276fb06a39) + (property "Reference" "v3" (id 0) (at 45.72 84.455 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 45.72 88.265 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 45.72 92.075 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 40.64 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cdaa34d4-d3e5-4cc5-a5b3-3508cac030c3)) + (pin "2" (uuid 2958ec38-a2f9-4c5b-b866-325574c5c7e4)) + ) + + (symbol (lib_id "eSim_Subckt:74HC112") (at 110.49 33.02 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 170a75ea-06cb-45d6-b531-f377c2136111) + (property "Reference" "X1" (id 0) (at 109.22 33.02 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "74HC112" (id 1) (at 106.68 41.91 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 110.49 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 110.49 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b53d76f3-5b34-448d-832e-42a463054ffb)) + (pin "2" (uuid 0bd35dbf-a944-44bf-a751-e61cc3eca7fb)) + (pin "3" (uuid 20e50bc3-049e-4875-8f5e-19c653deba3f)) + (pin "4" (uuid ea4e8dbc-fab0-4e69-b89e-cf970ca92ad3)) + (pin "5" (uuid 6c147daa-1d4a-4543-a719-a39909d9ed82)) + (pin "6" (uuid 2f2eac32-5813-426b-8129-44ae4db83b32)) + (pin "7" (uuid 27297708-0d52-4007-afec-5cb203d863a8)) + (pin "8" (uuid 52941d58-0895-4eab-b041-59a10d6df5a7)) + (pin "9" (uuid 0f6093ad-8d29-40e7-ae69-733b7b306d41)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 40.64 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 185834bf-b5d7-4720-aa4b-257a0ed5a408) + (property "Reference" "v4" (id 0) (at 45.72 111.125 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 45.72 114.935 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 45.72 118.745 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 40.64 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 428449da-68da-450e-b1a5-54c1877c7d74)) + (pin "2" (uuid 2d78e676-ed82-4f60-a499-84fc432ae6bd)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_4") (at 149.86 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1a2dae24-0d6a-4c07-baa7-34e1e08d353b) + (property "Reference" "U3" (id 0) (at 149.86 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_4" (id 1) (at 149.86 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9b2e2ab0-0f7f-41ab-a388-be5a00cd8d2b)) + (pin "2" (uuid e600816c-7847-4eab-aaf8-8292c690bf16)) + (pin "3" (uuid 7974b3a8-177f-422e-8f8d-613469a716d4)) + (pin "4" (uuid 5af164e6-58f5-42f7-b95e-4a6226080b3b)) + (pin "5" (uuid cf3144cb-da12-4858-b02b-c808d938a9cc)) + (pin "6" (uuid 46224b9e-b2f8-4ab3-abcd-712c0fa46bd4)) + (pin "7" (uuid 58462c4d-eba2-4cb5-93e5-e9ad4dd46a5d)) + (pin "8" (uuid 985c9534-acd7-4f41-8189-44debfd12368)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 40.64 139.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2ab8a6cb-ed6c-4d6c-8c5a-16297a9d2bf1) + (property "Reference" "v5" (id 0) (at 45.72 136.525 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 45.72 140.335 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 45.72 144.145 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 40.64 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 747ec35d-48b2-496b-a110-23c1e6e700eb)) + (pin "2" (uuid 4e5511cf-8e7d-4ec1-b074-4a24c723bfc4)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 39.37 31.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4027c273-eaa9-4ee8-be77-b68ab5094be3) + (property "Reference" "v1" (id 0) (at 44.45 28.575 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 44.45 32.385 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 44.45 36.195 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 39.37 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 79ac290f-af75-42ae-910a-dd8406b8ed21)) + (pin "2" (uuid 60bf380d-def4-41d7-b671-bc20d41b28a1)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 177.8 52.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4a24b5a5-4bda-4e00-b8e0-62fb46c7bdea) + (property "Reference" "U6" (id 0) (at 181.61 38.1 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 181.61 41.91 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 177.8 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 177.8 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 1f8fec39-5835-4a47-a661-87cf60dc12bd)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 39.37 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 56f20205-47aa-4af5-9e36-13c2e7a9ae76) + (property "Reference" "v2" (id 0) (at 44.45 55.245 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 44.45 59.055 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 44.45 62.865 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 39.37 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cf8dc877-cfa7-4956-a083-5723183962e0)) + (pin "2" (uuid a6e2e395-9284-4463-82a7-b07ed2378d3d)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 172.72 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 63616956-13c9-4efa-91d0-46a40677bfa4) + (property "Reference" "U5" (id 0) (at 176.53 29.21 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 176.53 33.02 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 172.72 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 70e7cfbc-c4ad-4606-a555-df9456fd375f)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 163.83 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 829971fc-cfc5-4b1b-b2c7-64548a72aaee) + (property "Reference" "U4" (id 0) (at 167.64 21.59 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 167.64 25.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 163.83 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 163.83 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid e848df55-0fc3-49e3-81bb-283cbf3acf34)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 180.34 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e0125a1-5131-4695-a156-5fe4f943087d) + (property "Reference" "U7" (id 0) (at 184.15 49.53 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 184.15 53.34 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 180.34 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 180.34 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 4e3a940b-a3d4-4fb0-8567-b94e2941cb2b)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 77.47 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b61faf0c-9b0a-4894-8fee-6b6f27f737ac) + (property "Reference" "U2" (id 0) (at 77.47 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 77.47 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 77.47 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 77.47 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e391559c-f517-4828-b3e7-b9f51adf804a)) + (pin "2" (uuid f2942649-4079-4ae2-a5f9-0b85fc77cde7)) + (pin "3" (uuid 2505f74a-55f8-407b-9caa-e230d235bdab)) + (pin "4" (uuid 07f01e1f-e3f3-4723-a531-1ee59f15a195)) + (pin "5" (uuid 3a43dfee-1a78-47c1-a170-ee667aaddc73)) + (pin "6" (uuid ebfc6f9c-6c44-49a5-8a54-e135fff93f10)) + (pin "7" (uuid f0258187-a19b-462e-8c08-831abe129939)) + (pin "8" (uuid a73fcd4d-5faf-4d8b-97f3-8f2766083f23)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_3") (at 74.93 27.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8f88f49-f911-466e-8cf8-e8a92cf0a9b6) + (property "Reference" "U1" (id 0) (at 74.295 17.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_3" (id 1) (at 74.295 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 74.93 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 74.93 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2853cbdc-54f1-4381-b51f-68bdb388e61c)) + (pin "2" (uuid 42f832c7-4a4a-41f8-bd30-dcc2400cf2ae)) + (pin "3" (uuid e76884b5-da5d-4c82-8428-dd3ce2bad863)) + (pin "4" (uuid 88760ed7-cc5b-4fee-aa68-a322f75c914e)) + (pin "5" (uuid 6ea5ce7c-01d5-4f0b-b6ac-c8b16a80f584)) + (pin "6" (uuid ef1f9e1b-bba2-4d99-ba7d-1b8b45b00299)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 40.64 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fab28913-57df-4b38-abbe-1eb857254814) + (property "Reference" "#PWR0101" (id 0) (at 40.64 161.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 40.64 160.02 0)) + (property "Footprint" "" (id 2) (at 40.64 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b6b914d6-044c-4dee-bf75-b8d11996a6d2)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/fab28913-57df-4b38-abbe-1eb857254814" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/e8f88f49-f911-466e-8cf8-e8a92cf0a9b6" + (reference "U1") (unit 1) (value "adc_bridge_3") (footprint "") + ) + (path "/b61faf0c-9b0a-4894-8fee-6b6f27f737ac" + (reference "U2") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/1a2dae24-0d6a-4c07-baa7-34e1e08d353b" + (reference "U3") (unit 1) (value "dac_bridge_4") (footprint "") + ) + (path "/829971fc-cfc5-4b1b-b2c7-64548a72aaee" + (reference "U4") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/63616956-13c9-4efa-91d0-46a40677bfa4" + (reference "U5") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/4a24b5a5-4bda-4e00-b8e0-62fb46c7bdea" + (reference "U6") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/9e0125a1-5131-4695-a156-5fe4f943087d" + (reference "U7") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/170a75ea-06cb-45d6-b531-f377c2136111" + (reference "X1") (unit 1) (value "74HC112") (footprint "") + ) + (path "/4027c273-eaa9-4ee8-be77-b68ab5094be3" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/56f20205-47aa-4af5-9e36-13c2e7a9ae76" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/00b050d4-9e85-46b9-8686-a8276fb06a39" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/185834bf-b5d7-4720-aa4b-257a0ed5a408" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/2ab8a6cb-ed6c-4d6c-8c5a-16297a9d2bf1" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/74HC112_sub/74HC112_test.proj b/library/SubcircuitLibrary/74HC112_sub/74HC112_test.proj new file mode 100644 index 000000000..7dcc0dcab --- /dev/null +++ b/library/SubcircuitLibrary/74HC112_sub/74HC112_test.proj @@ -0,0 +1 @@ +schematicFile 74HC112_test.kicad_sch diff --git a/library/SubcircuitLibrary/74HC540/74HC540.cir b/library/SubcircuitLibrary/74HC540/74HC540.cir new file mode 100644 index 000000000..4515eab40 --- /dev/null +++ b/library/SubcircuitLibrary/74HC540/74HC540.cir @@ -0,0 +1,22 @@ +.title KiCad schematic +U19 Net-_U10-Pad3_ Net-_U1-Pad17_ d_inverter +U20 Net-_U11-Pad3_ Net-_U1-Pad18_ d_inverter +U10 Net-_U1-Pad8_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_tristate +U11 Net-_U1-Pad9_ Net-_U10-Pad2_ Net-_U11-Pad3_ d_tristate +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U10-Pad2_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ unconnected-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ Net-_U1-Pad19_ unconnected-_U1-Pad20_ PORT +U3 Net-_U1-Pad19_ Net-_U12-Pad2_ d_inverter +U2 Net-_U1-Pad1_ Net-_U12-Pad1_ d_inverter +U7 Net-_U1-Pad5_ Net-_U10-Pad2_ Net-_U16-Pad1_ d_tristate +U6 Net-_U1-Pad4_ Net-_U10-Pad2_ Net-_U15-Pad1_ d_tristate +U4 Net-_U1-Pad2_ Net-_U10-Pad2_ Net-_U13-Pad1_ d_tristate +U8 Net-_U1-Pad6_ Net-_U10-Pad2_ Net-_U17-Pad1_ d_tristate +U5 Net-_U1-Pad3_ Net-_U10-Pad2_ Net-_U14-Pad1_ d_tristate +U13 Net-_U13-Pad1_ Net-_U1-Pad11_ d_inverter +U14 Net-_U14-Pad1_ Net-_U1-Pad12_ d_inverter +U18 Net-_U18-Pad1_ Net-_U1-Pad16_ d_inverter +U17 Net-_U17-Pad1_ Net-_U1-Pad15_ d_inverter +U9 Net-_U1-Pad7_ Net-_U10-Pad2_ Net-_U18-Pad1_ d_tristate +U16 Net-_U16-Pad1_ Net-_U1-Pad14_ d_inverter +U15 Net-_U15-Pad1_ Net-_U1-Pad13_ d_inverter +.end diff --git a/library/SubcircuitLibrary/74HC540/74HC540.cir.out b/library/SubcircuitLibrary/74HC540/74HC540.cir.out new file mode 100644 index 000000000..710932080 --- /dev/null +++ b/library/SubcircuitLibrary/74HC540/74HC540.cir.out @@ -0,0 +1,88 @@ +.title kicad schematic + +* u19 net-_u10-pad3_ net-_u1-pad17_ d_inverter +* u20 net-_u11-pad3_ net-_u1-pad18_ d_inverter +* u10 net-_u1-pad8_ net-_u10-pad2_ net-_u10-pad3_ d_tristate +* u11 net-_u1-pad9_ net-_u10-pad2_ net-_u11-pad3_ d_tristate +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u10-pad2_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ unconnected-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ unconnected-_u1-pad20_ port +* u3 net-_u1-pad19_ net-_u12-pad2_ d_inverter +* u2 net-_u1-pad1_ net-_u12-pad1_ d_inverter +* u7 net-_u1-pad5_ net-_u10-pad2_ net-_u16-pad1_ d_tristate +* u6 net-_u1-pad4_ net-_u10-pad2_ net-_u15-pad1_ d_tristate +* u4 net-_u1-pad2_ net-_u10-pad2_ net-_u13-pad1_ d_tristate +* u8 net-_u1-pad6_ net-_u10-pad2_ net-_u17-pad1_ d_tristate +* u5 net-_u1-pad3_ net-_u10-pad2_ net-_u14-pad1_ d_tristate +* u13 net-_u13-pad1_ net-_u1-pad11_ d_inverter +* u14 net-_u14-pad1_ net-_u1-pad12_ d_inverter +* u18 net-_u18-pad1_ net-_u1-pad16_ d_inverter +* u17 net-_u17-pad1_ net-_u1-pad15_ d_inverter +* u9 net-_u1-pad7_ net-_u10-pad2_ net-_u18-pad1_ d_tristate +* u16 net-_u16-pad1_ net-_u1-pad14_ d_inverter +* u15 net-_u15-pad1_ net-_u1-pad13_ d_inverter +a1 net-_u10-pad3_ net-_u1-pad17_ u19 +a2 net-_u11-pad3_ net-_u1-pad18_ u20 +a3 net-_u1-pad8_ net-_u10-pad2_ net-_u10-pad3_ u10 +a4 net-_u1-pad9_ net-_u10-pad2_ net-_u11-pad3_ u11 +a5 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u10-pad2_ u12 +a6 net-_u1-pad19_ net-_u12-pad2_ u3 +a7 net-_u1-pad1_ net-_u12-pad1_ u2 +a8 net-_u1-pad5_ net-_u10-pad2_ net-_u16-pad1_ u7 +a9 net-_u1-pad4_ net-_u10-pad2_ net-_u15-pad1_ u6 +a10 net-_u1-pad2_ net-_u10-pad2_ net-_u13-pad1_ u4 +a11 net-_u1-pad6_ net-_u10-pad2_ net-_u17-pad1_ u8 +a12 net-_u1-pad3_ net-_u10-pad2_ net-_u14-pad1_ u5 +a13 net-_u13-pad1_ net-_u1-pad11_ u13 +a14 net-_u14-pad1_ net-_u1-pad12_ u14 +a15 net-_u18-pad1_ net-_u1-pad16_ u18 +a16 net-_u17-pad1_ net-_u1-pad15_ u17 +a17 net-_u1-pad7_ net-_u10-pad2_ net-_u18-pad1_ u9 +a18 net-_u16-pad1_ net-_u1-pad14_ u16 +a19 net-_u15-pad1_ net-_u1-pad13_ u15 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u10 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u11 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u7 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u4 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u8 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u5 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u9 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/74HC540/74HC540.kicad_sch b/library/SubcircuitLibrary/74HC540/74HC540.kicad_sch new file mode 100644 index 000000000..e546a1fc1 --- /dev/null +++ b/library/SubcircuitLibrary/74HC540/74HC540.kicad_sch @@ -0,0 +1,1905 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 49b383fe-cd90-4ea7-b90d-a41ac02d65b8) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_tristate" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -6.35 6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at -5.08 11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_tristate_0_1" + (polyline + (pts + (xy -10.16 13.97) + (xy -10.16 3.81) + (xy 8.89 8.89) + (xy -10.16 13.97) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_tristate_1_1" + (pin input line (at -15.24 8.89 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -1.27 1.27 90) (length 4.9022) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 151.13 140.97) (diameter 0) (color 0 0 0 0) + (uuid 044419ff-cde8-48bc-a130-d85dfd066881) + ) + (junction (at 146.05 129.54) (diameter 0) (color 0 0 0 0) + (uuid 15170ba3-4954-4868-a3b0-fb5f6e8ae845) + ) + (junction (at 146.05 67.31) (diameter 0) (color 0 0 0 0) + (uuid 16a73aa0-89d3-4567-b358-34d7034e602e) + ) + (junction (at 146.05 95.25) (diameter 0) (color 0 0 0 0) + (uuid 2b654311-1d18-472b-a02b-bf8ddf538a78) + ) + (junction (at 146.05 118.11) (diameter 0) (color 0 0 0 0) + (uuid 65e2275b-6109-43d9-a579-4d79c7a626ee) + ) + (junction (at 146.05 106.68) (diameter 0) (color 0 0 0 0) + (uuid 96e104c7-752d-4e89-8a1c-bcf71fc93e73) + ) + (junction (at 146.05 82.55) (diameter 0) (color 0 0 0 0) + (uuid d04f56d6-c9b6-494b-b5e7-546e16cc81f2) + ) + + (no_connect (at 93.98 36.83) (uuid ca13c3ea-fe7e-44dd-a4ec-f17343a61177)) + (no_connect (at 166.37 29.21) (uuid f1ca31da-28ac-4b2c-9a1b-0457ad7fac52)) + + (wire (pts (xy 151.13 80.01) (xy 151.13 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0872ceed-6f7f-4bc2-aceb-c29c105aa37b) + ) + (wire (pts (xy 146.05 67.31) (xy 146.05 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0996d0e5-392a-4ec7-ad9a-dc55722a55b9) + ) + (wire (pts (xy 116.84 44.45) (xy 137.16 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a2c9e52-618e-43e4-bb11-8a86bea455e9) + ) + (wire (pts (xy 181.61 72.39) (xy 210.82 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15ffe156-31cd-4ee1-9346-b27c3ecf50a6) + ) + (wire (pts (xy 146.05 95.25) (xy 146.05 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18623401-22c7-4671-89e7-aafc344658a1) + ) + (wire (pts (xy 151.13 129.54) (xy 146.05 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27ca6b99-bb4c-4b3b-9090-74f74b916a65) + ) + (wire (pts (xy 151.13 114.3) (xy 151.13 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a92eada-c925-4786-bc6c-979a4bb66a93) + ) + (wire (pts (xy 138.43 152.4) (xy 140.97 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2aad0b5a-deff-4bed-ade6-0e380b0aa893) + ) + (wire (pts (xy 151.13 66.04) (xy 151.13 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d7923a1-010e-4b96-ac05-c5e282533115) + ) + (wire (pts (xy 146.05 118.11) (xy 146.05 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31718396-753c-4a71-b736-c0609dccc6fb) + ) + (wire (pts (xy 151.13 139.7) (xy 151.13 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 323ec774-9d02-4106-bc61-7d1d77268df0) + ) + (wire (pts (xy 116.84 106.68) (xy 137.16 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3313b31b-8080-4c7d-87aa-4247da6eeb9a) + ) + (wire (pts (xy 146.05 53.34) (xy 151.13 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36700126-cd5b-4c21-a66f-2bec0df56eb8) + ) + (wire (pts (xy 181.61 106.68) (xy 210.82 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44dd4250-f764-4452-8237-dc5ab17f1ffe) + ) + (wire (pts (xy 171.45 140.97) (xy 151.13 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f42c8e0-2b9b-4ffb-ab84-61bdcf074c33) + ) + (wire (pts (xy 116.84 119.38) (xy 137.16 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50120bab-0fb1-45ff-a7dc-7ab5ac548d64) + ) + (wire (pts (xy 134.62 149.86) (xy 138.43 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5105e766-be59-48dd-8bf8-54d9b1a6b306) + ) + (wire (pts (xy 181.61 119.38) (xy 209.55 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51dc30bc-a9b4-4e14-999d-9a32a4bbbe12) + ) + (wire (pts (xy 146.05 129.54) (xy 146.05 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56f38d0e-111c-4c5c-acbc-ed460356d86a) + ) + (wire (pts (xy 181.61 95.25) (xy 210.82 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5be1eafb-0393-4c61-a459-9c607b74c74b) + ) + (wire (pts (xy 171.45 153.67) (xy 171.45 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 604cdd30-7f7d-4f33-bfef-9a3fa75d2528) + ) + (wire (pts (xy 151.13 118.11) (xy 146.05 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63a5ed6a-6abd-4663-b845-8af8577b1eba) + ) + (wire (pts (xy 138.43 154.94) (xy 140.97 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69093596-edc6-42b9-aa32-4afc9ddd0ec2) + ) + (wire (pts (xy 166.37 29.21) (xy 198.12 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69f62b7c-f679-4f30-8589-15fc786eec7a) + ) + (wire (pts (xy 116.84 58.42) (xy 137.16 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b140eeb-2c94-4f05-a816-b698bccebecd) + ) + (wire (pts (xy 151.13 53.34) (xy 151.13 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c94f958-5862-4517-b852-6df1874829ce) + ) + (wire (pts (xy 138.43 149.86) (xy 138.43 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 704e5c03-9687-4960-a259-4a52121af20f) + ) + (wire (pts (xy 116.84 95.25) (xy 137.16 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71661ce4-21f1-4b85-8c46-8e37bf6904ea) + ) + (wire (pts (xy 151.13 106.68) (xy 146.05 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e06ed1f-b04e-42ba-a5ef-c3a70dd67766) + ) + (wire (pts (xy 146.05 140.97) (xy 146.05 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 895a80d1-6715-4406-b32a-2e083d44c4ed) + ) + (wire (pts (xy 151.13 102.87) (xy 151.13 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90c5ce0b-798a-4fc9-b4a7-32339dbf0bc2) + ) + (wire (pts (xy 181.61 132.08) (xy 209.55 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96aa9378-583e-4263-b718-292bd1552a21) + ) + (wire (pts (xy 69.85 36.83) (xy 93.98 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a24b39db-f354-4fdd-bdd7-f1201d5687e2) + ) + (wire (pts (xy 151.13 127) (xy 151.13 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a33b47a0-b256-482d-89c3-77f748c125e5) + ) + (wire (pts (xy 151.13 95.25) (xy 146.05 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3461cf0-e1c4-4083-9647-21eae4d57fe4) + ) + (wire (pts (xy 181.61 58.42) (xy 210.82 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a51742fd-1752-4b36-bc10-44aae0caacb0) + ) + (wire (pts (xy 163.83 153.67) (xy 171.45 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a730873c-f4a3-470c-99ed-b53ec3a325dd) + ) + (wire (pts (xy 116.84 132.08) (xy 137.16 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afe4d5bd-2554-4443-a6aa-bd8986bd827f) + ) + (wire (pts (xy 134.62 158.75) (xy 138.43 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b68de859-2b84-4044-b909-6942eb15946f) + ) + (wire (pts (xy 138.43 158.75) (xy 138.43 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc076857-bad9-459b-8b8a-f8a9c02a088c) + ) + (wire (pts (xy 151.13 91.44) (xy 151.13 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0c82240-2113-44ca-bffa-f47daf1169c4) + ) + (wire (pts (xy 151.13 67.31) (xy 146.05 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd679581-aaad-4738-bd6e-c247722e2c2f) + ) + (wire (pts (xy 96.52 158.75) (xy 119.38 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf81e681-a925-4370-b79b-755df4dff18b) + ) + (wire (pts (xy 181.61 83.82) (xy 210.82 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0d69cad-3faf-416a-8a0d-fc3211c18149) + ) + (wire (pts (xy 116.84 72.39) (xy 137.16 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d69f96b2-5b15-46d7-89c6-439eb4781dfa) + ) + (wire (pts (xy 146.05 82.55) (xy 146.05 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc473b7f-4a1a-42b2-911a-5294c2a86989) + ) + (wire (pts (xy 96.52 149.86) (xy 119.38 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de2c8632-9b58-4d54-b960-af52ddd75c9f) + ) + (wire (pts (xy 151.13 82.55) (xy 146.05 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e214dfe6-1173-473e-ab26-7bcfe9baab04) + ) + (wire (pts (xy 116.84 83.82) (xy 137.16 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7420542-bdd6-42ad-bbd0-7f780cee9bf0) + ) + (wire (pts (xy 181.61 44.45) (xy 209.55 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea35e631-c7f1-48ba-bf0c-5e5739aeedf4) + ) + (wire (pts (xy 151.13 140.97) (xy 146.05 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecd03d12-dfd9-4de5-b17c-60b68ef4332a) + ) + (wire (pts (xy 146.05 106.68) (xy 146.05 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9220fc8-9bcd-431c-a379-3d11ab7f98c2) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 204.47 29.21 180) (unit 20) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 107a809c-ff18-4365-ac85-d8601613efde) + (property "Reference" "U1" (id 0) (at 208.28 28.575 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 208.28 31.115 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 204.47 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d5f30b9f-442c-427f-b80e-bfa1b42f0f79)) + (pin "2" (uuid 3218fda2-ab14-4d9a-968a-afca0f49d535)) + (pin "3" (uuid 5414c844-6642-43ae-a1d8-94f6133f06b5)) + (pin "4" (uuid 6db07218-2d22-4b98-babf-1ab10efb5b18)) + (pin "5" (uuid 0c7fea85-39aa-49ab-ae26-0616f42bc649)) + (pin "6" (uuid d5c70e41-366d-4bb4-8bf0-fe08392a89b4)) + (pin "7" (uuid 07e185d1-aa42-4d16-906b-cbda9f395458)) + (pin "8" (uuid 86ea9233-78a6-4937-9e90-847d161d6177)) + (pin "9" (uuid c24cba1c-672d-4281-97c4-b442facf6924)) + (pin "10" (uuid 6d030b8d-f4a7-4d66-ae03-51f70ebb0d50)) + (pin "11" (uuid 399c1f7c-796f-4039-9a0b-7a34acd704c0)) + (pin "12" (uuid e1d53f98-d52f-46f0-97af-149f4d40633d)) + (pin "13" (uuid b0dcf210-7a4d-415d-badb-a6dc3673adf5)) + (pin "14" (uuid 07a33ed0-c711-45fc-9847-5d5eed53ac78)) + (pin "15" (uuid 597dc7fa-f3ee-4d25-ae1e-46b6caa17885)) + (pin "16" (uuid be82319d-601f-4639-ab7f-0418dc5420cf)) + (pin "17" (uuid 90a4d44f-4f79-40f3-ac5b-61a692c74d24)) + (pin "18" (uuid 561027f6-05e0-47b4-a3e6-17f782f3bcdb)) + (pin "19" (uuid 13142e4a-c325-4587-a964-5003037bd7b5)) + (pin "20" (uuid 45749740-f940-4bd6-b05d-28eaa1bfd7dd)) + (pin "21" (uuid 78915806-23a6-4902-a641-e90b94e359db)) + (pin "22" (uuid 3c6dffa0-1211-456c-a32d-3bdbcfaa4cdd)) + (pin "23" (uuid 20170afe-2d92-4c6e-8a17-000bd7a595ad)) + (pin "24" (uuid ff86be4b-d567-4a72-9d85-3628b112179b)) + (pin "25" (uuid b50603c0-cdfb-4dd6-800f-eb906bacde50)) + (pin "26" (uuid 00047b0c-4514-4924-8842-4f89582ce823)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 173.99 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 14be67da-f240-4070-9f9f-b5f60cec0199) + (property "Reference" "U13" (id 0) (at 173.99 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 173.99 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 51d3f903-5961-4b2c-b416-d79dd3f198d2)) + (pin "2" (uuid cc4af752-92c5-4b1a-a038-cbe36f991fef)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 95.25 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17b91f0d-2c5b-4e07-ab8e-e1dd0f2c7505) + (property "Reference" "U1" (id 0) (at 111.125 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6611d79f-e657-417a-901e-2b57ad3d0ad2)) + (pin "2" (uuid bfbd5823-fc79-4ea4-832f-ede7d0d62038)) + (pin "3" (uuid 0007b086-a8d6-4b73-9310-7b06ad08b547)) + (pin "4" (uuid 0fc57edb-f4f9-42c0-ab82-5a26c8895afa)) + (pin "5" (uuid 7d343531-5ac9-4bd9-a0fd-032fbcef2f72)) + (pin "6" (uuid ee87714e-87f5-4f83-930c-ab3bb1b0b31b)) + (pin "7" (uuid 2bb84285-c701-4eb8-9a1c-c8391bf12c66)) + (pin "8" (uuid 8ade79bf-9b9b-4cdd-bcc3-b3f802c062b5)) + (pin "9" (uuid 55784b37-f96d-40a4-a938-1f256c76745c)) + (pin "10" (uuid edf27906-53c2-4b51-8d67-60354442c255)) + (pin "11" (uuid b5fecb0c-6672-4ba8-9e0a-fca399369366)) + (pin "12" (uuid e1dafe05-8a93-48fa-b4de-ecc1c97a5f90)) + (pin "13" (uuid 265ef00d-8225-4539-974e-54138ebed077)) + (pin "14" (uuid 9515a9a4-daba-4e6e-ad4f-0281cd225244)) + (pin "15" (uuid 5dc4628e-14fa-41a1-ad7f-ba25ce1489de)) + (pin "16" (uuid 322ebbf9-8721-4a99-a15e-55e4879873b9)) + (pin "17" (uuid 35e33fef-79c8-4aeb-b1e8-ab234bc90f14)) + (pin "18" (uuid 7f9d3a56-a496-4129-9bc0-a9a9c380d2d8)) + (pin "19" (uuid 7a747b12-a335-4e5b-94c0-9c58ac830e88)) + (pin "20" (uuid e6ab18cc-3d99-4e60-a239-68a511741d99)) + (pin "21" (uuid fbe03430-4669-4edb-a0d7-5886ac89aca3)) + (pin "22" (uuid f47244ec-8b1e-4a37-a054-ec87f49e5ee4)) + (pin "23" (uuid 26fa7a5b-38ae-42c5-bd2b-576e5c93eaba)) + (pin "24" (uuid 8c7e1c12-7671-42eb-a851-2538a6437cae)) + (pin "25" (uuid 26837383-8074-4c8a-897b-6c2904f282f5)) + (pin "26" (uuid 0dbc1b64-64e4-4e86-a177-e9bd49abda01)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 127 149.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1ebcac54-0c85-4a89-8fdb-3ea7405bb307) + (property "Reference" "U2" (id 0) (at 127 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 127 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 128.27 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b7bd4474-8092-4855-b4e7-ffad16e4c380)) + (pin "2" (uuid c47f8b9c-19e0-4d97-9f49-3e4dc4aee5c1)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 152.4 92.71 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 299c4dca-5898-44ed-aacb-de75453f93f7) + (property "Reference" "U7" (id 0) (at 153.035 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 153.035 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 31b596a0-3654-44f0-ad70-3508bb56779b)) + (pin "2" (uuid d733ba65-5b50-4a68-842f-a2abd27dbc61)) + (pin "3" (uuid ab976608-9772-4c06-9205-4910fc12b278)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 132.08 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2d1c196a-f70e-49d1-be3f-d7bcba8f4d34) + (property "Reference" "U1" (id 0) (at 111.125 127 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 129.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ccf3a021-763d-473c-a5ff-f46d04f3d6f4)) + (pin "2" (uuid 0b5ad0ba-bb52-49c1-9ed8-ff08012f4521)) + (pin "3" (uuid 1257cdda-3838-443f-98fc-dd96ace9334b)) + (pin "4" (uuid 0d769670-e6dc-4771-8acc-72a70f42b900)) + (pin "5" (uuid f4ffb2ca-0f76-4f4f-b4b8-e6a6a05a72ad)) + (pin "6" (uuid 420a6784-8696-4ca8-ac58-10bdec3bfb24)) + (pin "7" (uuid 72bfe1dc-b79b-4189-b4ec-c4eea6420046)) + (pin "8" (uuid 845f132c-90c7-4d58-ae79-0649cf1ff56b)) + (pin "9" (uuid e9ae58e0-d130-494a-a990-ff8f5bb8a9b2)) + (pin "10" (uuid 6cb6f208-7f50-4c6b-8947-2c86bbd40e51)) + (pin "11" (uuid 214d3d55-f6f2-49f2-9b5c-16ef5483e0a1)) + (pin "12" (uuid e5c24e56-e342-4caf-90af-03384d8f38c8)) + (pin "13" (uuid 8986d091-3597-4596-87c6-9c2b8af69281)) + (pin "14" (uuid f0a25802-f189-4e99-9ff3-58800c14fcf1)) + (pin "15" (uuid 2a70f731-4906-48e9-8cb4-dbb8c855e266)) + (pin "16" (uuid 017a7274-85ae-490a-80e4-3bda32c7ff4c)) + (pin "17" (uuid cc27fb65-cad2-4b71-822b-6faf3d6408cc)) + (pin "18" (uuid 3da9b0d8-1fc8-40ab-b255-f25b35318def)) + (pin "19" (uuid e7a63794-6a86-4052-9641-aa6aabf10c38)) + (pin "20" (uuid ee5692c5-b54f-4a06-846b-3cbeb653a932)) + (pin "21" (uuid 40243644-703b-47cd-8c4d-db76195547f8)) + (pin "22" (uuid 24ae23c6-f7be-439f-9d64-82c4bb2827a9)) + (pin "23" (uuid 9c86e3cd-a320-4d73-8178-266ae0fa6e03)) + (pin "24" (uuid 93b7f1a4-c7cf-47c3-ac47-95f1f510d368)) + (pin "25" (uuid 42463c53-9982-498b-bf82-5a81df20809b)) + (pin "26" (uuid 39c99c6b-d109-436c-8d3a-847c43429cb3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 217.17 58.42 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b55d894-4aee-4ddd-b0b0-f2c3f222e3b2) + (property "Reference" "U1" (id 0) (at 220.98 57.785 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 220.98 60.325 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 217.17 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b1622280-8726-4fbc-b786-d8dd07e92252)) + (pin "2" (uuid 68e6e6b2-c61b-4d8d-9865-ce8c50bd609e)) + (pin "3" (uuid 5caf3584-aec9-4707-9d55-78593e7bff84)) + (pin "4" (uuid 75550490-96ba-49c8-8e14-c92ff65808c7)) + (pin "5" (uuid 7e159a85-2699-4638-b4e2-aac5004151d5)) + (pin "6" (uuid dc0c26b7-c40e-426d-9156-9bde8ab58dab)) + (pin "7" (uuid d465f359-53f5-4a9d-a96b-1eab2ab92576)) + (pin "8" (uuid 23f67b85-ecdf-4b63-a94e-86bf95942ab4)) + (pin "9" (uuid 45e8fa32-ebd8-43b0-b433-563d05e512d0)) + (pin "10" (uuid 3143cf23-832f-4dc9-9dfb-a1b3b1e68dd2)) + (pin "11" (uuid 6413b229-92ea-481c-8df6-700639397adb)) + (pin "12" (uuid 46690939-d32e-4257-9b03-f5b3bf933a12)) + (pin "13" (uuid 2c047f65-6b11-4391-a426-143b3ae957f5)) + (pin "14" (uuid 07646d9e-e95b-459e-99b7-0c72bd669350)) + (pin "15" (uuid e562787a-129d-4aef-a02e-dad12972b11e)) + (pin "16" (uuid c8931475-12d3-475d-87c5-05ffe30dccd0)) + (pin "17" (uuid 56c5897c-2a7c-48dd-a28d-d90db1ea648d)) + (pin "18" (uuid e3737694-39f4-4170-af17-50d35adf9136)) + (pin "19" (uuid 4694136e-4be9-4bfa-a67c-d131f913e078)) + (pin "20" (uuid 6c352d4c-857d-4d8b-ae07-c5906a51fa05)) + (pin "21" (uuid 3862ea04-3c7c-42b6-a99a-101427740b83)) + (pin "22" (uuid 3354fc8e-1e4e-4aa7-81bc-6dd29d017545)) + (pin "23" (uuid c5de3cd3-4cd7-42fd-be68-2fccb7ac4c14)) + (pin "24" (uuid 32128f19-7825-4bc7-990b-d81b0932d660)) + (pin "25" (uuid 6cb02220-77a1-4e3a-913b-1dd014bbf1fe)) + (pin "26" (uuid f62929bf-0048-492e-8902-a19be2881a09)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 106.68 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b8eb533-c176-4bea-a323-0769aab6507f) + (property "Reference" "U1" (id 0) (at 111.125 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 104.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid afa7e5d9-8b70-4787-84bc-dded5f5da073)) + (pin "2" (uuid 03b4907f-79cd-4046-bf37-b526772560f5)) + (pin "3" (uuid 1ac9edcd-158c-45c4-bd88-e24490ba430a)) + (pin "4" (uuid ec45c5da-287c-45d2-b74e-3319d77c17db)) + (pin "5" (uuid c980edbb-5382-4e00-b2ac-56455d4d7e74)) + (pin "6" (uuid 09b3646b-13c4-4144-807a-fcfa7351b3c7)) + (pin "7" (uuid 701184f5-b4dd-4665-92af-f5a9be5bea6a)) + (pin "8" (uuid e9041a63-aed5-4916-bfe4-2976939670af)) + (pin "9" (uuid 991e2cfe-8e0f-46ff-bee2-91b979e9a617)) + (pin "10" (uuid 83b7d2b6-60c7-4199-9a5f-c9c97a95e935)) + (pin "11" (uuid 63597c6c-d265-4e9b-baf3-f17543a4414f)) + (pin "12" (uuid f5d88a16-60f2-4161-91ee-b236596b5b28)) + (pin "13" (uuid 11278622-1cac-49cf-93bc-72a60302aada)) + (pin "14" (uuid a1e70d73-fc56-40dc-a460-8d5ca571e58a)) + (pin "15" (uuid 8d8a5dad-10bf-43e9-aea8-8901d802dd3e)) + (pin "16" (uuid 198ea2aa-0296-43c2-a752-24147bb9dbf5)) + (pin "17" (uuid dae84ca1-0dbd-46b9-b9b2-912131090667)) + (pin "18" (uuid d9c70df9-79c9-4ff6-89a8-4238a79edb69)) + (pin "19" (uuid b08b4bf2-73a5-412f-b868-b102ffcda83d)) + (pin "20" (uuid 2b0b6562-19d8-4863-8be9-6afbedf52042)) + (pin "21" (uuid 52c98671-d00c-44d6-bac3-ae7a8924351d)) + (pin "22" (uuid 0171aeef-9647-483b-8617-391ef9940d79)) + (pin "23" (uuid c609ef71-9698-4e00-bb81-6be94950cc8f)) + (pin "24" (uuid ef7eb7ea-8c03-4133-8c67-50e714c437a1)) + (pin "25" (uuid 184abd76-28b1-41d2-8425-73647a8bb1c0)) + (pin "26" (uuid 8269249f-0e85-4d36-bc04-fc30a02b2636)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 173.99 119.38 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 463dd2bb-ed72-4893-8124-5f6072bf55c6) + (property "Reference" "U19" (id 0) (at 175.26 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 173.99 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 15b9ecdf-b015-48a8-8a29-0b876c8a1a45)) + (pin "2" (uuid 769a0a2c-7104-4c22-906b-68c669cc0af1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 173.99 83.82 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 4b804ced-0a83-4802-b84a-a6d7ebd3fcfc) + (property "Reference" "U16" (id 0) (at 175.26 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 173.99 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 52c9cdb0-0e5d-4feb-80e6-fb158b0310f3)) + (pin "2" (uuid efe2e6e6-7278-4225-9a47-99a59df0711c)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 152.4 53.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4c2f3cb6-9dd3-4e77-91fa-022b938e7a3d) + (property "Reference" "U4" (id 0) (at 151.765 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 151.765 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a0f72fd2-0e7c-4c16-b98d-231f3a35e025)) + (pin "2" (uuid 899151d2-7000-4376-a7b4-472121b25caa)) + (pin "3" (uuid 1fb7fc18-42d1-43fe-88e7-22998bfe6f25)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 63.5 36.83 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 595bdc6c-ab5f-43e1-8835-c157ff2db581) + (property "Reference" "U1" (id 0) (at 64.135 31.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 64.135 34.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 63.5 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0b2328d2-87c9-4228-9da3-4ae2c50f0104)) + (pin "2" (uuid 1c9fdf64-5213-4fa3-b2c7-c5e1e6e9ab90)) + (pin "3" (uuid 63f056c9-82b8-44a1-8039-1d6869a1e8ed)) + (pin "4" (uuid 9cc2ba7d-5ecb-464e-a5cf-b3d68c31c9b2)) + (pin "5" (uuid fb387c88-24dd-4d75-b39c-1766b56da9fa)) + (pin "6" (uuid ebd782a8-d01e-47ce-9a47-6ecb52befa9d)) + (pin "7" (uuid 3b4a0529-adc8-449f-8b03-139eaea60d76)) + (pin "8" (uuid 75700b93-44e4-422f-afd1-33e2958dabbc)) + (pin "9" (uuid 08084dfa-1721-42a7-a10c-2fd5033752c9)) + (pin "10" (uuid cfdadcfc-a1b1-488b-9076-7c2b9944a824)) + (pin "11" (uuid 0ba2b9b3-280c-4621-84fc-a12fc39e63e6)) + (pin "12" (uuid a615e877-5489-4874-8d0f-dca6cdf0cb3d)) + (pin "13" (uuid bde72c94-5f14-4f53-8237-29d531f61f61)) + (pin "14" (uuid 41226b4f-ca8c-4228-a78f-72f5f553dad3)) + (pin "15" (uuid 4ceb2bb2-3f59-4d59-9cf5-979f140ee2db)) + (pin "16" (uuid d18c9910-cc17-49ed-a52f-4130b5ca707e)) + (pin "17" (uuid b41733e2-81ce-4d10-8a83-8a6ab1c5730d)) + (pin "18" (uuid 0e7272bb-c6ce-406a-9656-ac98f4f35b02)) + (pin "19" (uuid 2a819c88-f3c9-404f-b22c-74bd114e680b)) + (pin "20" (uuid 49d2b56c-fcc0-4493-b7e3-08dfe1411883)) + (pin "21" (uuid 736afee9-7d4c-4295-b8d2-bfc173c52011)) + (pin "22" (uuid 1cd13f66-b066-4720-a1b2-0d18ebcef6d6)) + (pin "23" (uuid 2bd2fed5-6dd8-408d-a9ac-85f624621591)) + (pin "24" (uuid 1cb0c2bf-6a03-4a5c-a77d-5ceb9f7e544c)) + (pin "25" (uuid c0720ccb-f899-4688-bb6c-ca48c13e6dc6)) + (pin "26" (uuid 193a5f1f-15db-42a8-9f9b-d08374606f89)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 217.17 72.39 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6cff14fc-8c01-4dbb-9a11-51dfd4e03b90) + (property "Reference" "U1" (id 0) (at 220.98 71.755 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 220.98 74.295 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 217.17 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eda84038-5824-4c37-b19b-95a456b82649)) + (pin "2" (uuid 1841bca8-d949-40ff-b66f-2fa22fe5968e)) + (pin "3" (uuid 859f83b8-12ef-4d05-9777-13848e4ad32d)) + (pin "4" (uuid 9d6134f4-c455-4fc2-94ef-b3cdcabd4f96)) + (pin "5" (uuid fd6e7ba6-c14c-422d-967f-f223e368815a)) + (pin "6" (uuid 25d6e3ea-4e01-429e-a734-a809d48fd315)) + (pin "7" (uuid dbebde40-15a9-4682-98fb-b4d4adff8558)) + (pin "8" (uuid 1b367536-ded4-43a1-a440-4e93565e42c1)) + (pin "9" (uuid 1120b831-dac5-4834-a6cc-7f25472cab64)) + (pin "10" (uuid bb0efa57-1c86-492a-aef2-7a81498921be)) + (pin "11" (uuid 122d5853-00f0-4cbd-b4dd-f22db9eb50f3)) + (pin "12" (uuid f09d0bfe-a73e-42dd-abcc-69f0c23977ea)) + (pin "13" (uuid a5ac51ad-a97b-47fb-a172-1c3c0e0240a4)) + (pin "14" (uuid a0631fdb-8763-48f3-85f5-92694ea77b8b)) + (pin "15" (uuid 6a190f6e-c58a-4b06-ba79-7a49b326fc6d)) + (pin "16" (uuid 0f3b5cb2-b643-4159-9f8f-20092010aa97)) + (pin "17" (uuid 78fef485-a42d-4648-aa8e-7cd72cf920de)) + (pin "18" (uuid efb22552-1605-4405-bfd1-fcd9381c2bb7)) + (pin "19" (uuid 25fb6f66-29b5-4cfa-ae31-bc38b77271c1)) + (pin "20" (uuid 7ab30401-eb56-4c0b-8a67-86e5612b9713)) + (pin "21" (uuid 548aabf3-f638-4a3a-868a-2f6c85c9dac5)) + (pin "22" (uuid fd5898c9-aabf-4410-96cc-d1eb593661ed)) + (pin "23" (uuid 3be54d1f-2cd0-48f9-9864-77750eed7c0a)) + (pin "24" (uuid fb0625d0-2d4d-4468-8019-a69c458368d2)) + (pin "25" (uuid 50fc965f-986b-4fd2-aefe-ff6b4f301564)) + (pin "26" (uuid 252791a7-781f-43b1-b3d4-d2c8f100ea18)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 152.4 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7496e9f0-e5a7-4306-ac13-e3f2c8a0009d) + (property "Reference" "U12" (id 0) (at 152.4 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 152.4 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 152.4 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 152.4 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 09325da7-d97f-4059-9905-578aeebc4e74)) + (pin "2" (uuid 25a63538-8707-412b-a027-b2c15083e653)) + (pin "3" (uuid 0fa2d825-8f1f-410c-b755-448eb4ff3099)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 173.99 58.42 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 7ef3cfbb-083e-4b8d-a7b4-a21b6352b1d4) + (property "Reference" "U14" (id 0) (at 173.99 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 175.26 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c1b0d8cd-e144-4a1c-a925-86ad8ab4b8f5)) + (pin "2" (uuid df1c3491-1c44-4086-9844-5d370829f8ff)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 173.99 72.39 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 80626b04-e043-42f3-a28a-719bbbbfb117) + (property "Reference" "U15" (id 0) (at 175.26 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 175.26 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aba59d54-9891-4d5f-9e43-6f2c248ab369)) + (pin "2" (uuid 6e37342e-58ba-49ef-8a91-c69505fdd226)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 152.4 104.14 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 81fce6e8-b834-48a5-8852-baed8e099f9e) + (property "Reference" "U8" (id 0) (at 153.035 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 153.035 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eca4fbc7-aa4f-4ef3-8f8f-6a77096a2705)) + (pin "2" (uuid 71f75339-8249-401d-b954-e58a020409b3)) + (pin "3" (uuid f9b7f052-cbe4-46bb-9ab5-167d332867b0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 173.99 95.25 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 898b3856-5711-4eb7-b12c-1e77adf69a2b) + (property "Reference" "U17" (id 0) (at 175.26 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 175.26 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 82986948-a22a-49f4-8180-ea513f78f636)) + (pin "2" (uuid 7864d21d-21a9-48bc-ad80-09192ee30821)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 127 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 91305e97-bb47-4626-90ce-0bb91b48a4a8) + (property "Reference" "U3" (id 0) (at 127 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 127 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 128.27 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fe64faf0-c6a7-4b50-b5f6-dc9366297327)) + (pin "2" (uuid 7c9c62f9-4d89-4210-8354-ee99675a3bd8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 44.45 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 94baac3a-3031-4ba2-b30a-9bd63bc83fe0) + (property "Reference" "U1" (id 0) (at 111.125 39.37 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 41.91 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59143e46-b09a-4d04-8d00-c346209e174d)) + (pin "2" (uuid 6e30ac7e-8614-4dc2-8747-f5f18640a406)) + (pin "3" (uuid 0a54a167-3bfc-4116-b92b-828c2869ef9e)) + (pin "4" (uuid eefedc29-bc47-42f7-8f85-d31f8063587e)) + (pin "5" (uuid e301cc4b-1d87-4847-ba5a-8e4946ddb906)) + (pin "6" (uuid 9e0195f3-a59a-464e-aa17-8e90c231db00)) + (pin "7" (uuid 2195bde1-c415-4db4-9e6a-f73398b8211e)) + (pin "8" (uuid fe49dc13-ee3c-4d6e-90cd-37e7e8931bb4)) + (pin "9" (uuid ec410420-705b-4e8c-8d73-356618630f44)) + (pin "10" (uuid 08919edf-31ff-4d69-a281-0e647e62b2eb)) + (pin "11" (uuid e4f6bc9b-5ca7-4afb-b4e0-85d5eac45ce5)) + (pin "12" (uuid 528ca3bc-d84e-4bda-a63d-b03e38a9d669)) + (pin "13" (uuid 694dde29-c2ce-43b0-ab94-0e639dac1b9b)) + (pin "14" (uuid fe5cfe1d-573e-4be3-bb4c-8e11d6f22083)) + (pin "15" (uuid d0908056-e9c5-4ec4-be00-50307fe751c6)) + (pin "16" (uuid 02c4a329-b1f2-48fd-aa32-d92fa952cac0)) + (pin "17" (uuid 5530e829-02ad-427c-adf0-0e7196e6fa50)) + (pin "18" (uuid 1a46dee0-48a9-4803-940e-32b7ce6bcc46)) + (pin "19" (uuid 7f8ace18-0957-4c03-8fdc-58b0771a225f)) + (pin "20" (uuid b1411839-b8f2-4197-8a9b-3e40606b3246)) + (pin "21" (uuid 2e758aa6-ad6c-4ed6-b3c1-376e06755dd3)) + (pin "22" (uuid 69eca43a-84ca-475a-9249-113f8f5a6bea)) + (pin "23" (uuid 771e7bdc-4271-4a8e-9513-10236112e92f)) + (pin "24" (uuid 67504313-0637-4672-bf89-d044a96e9afb)) + (pin "25" (uuid 0dc1c28e-fd1c-4ab4-830b-032b27622f0f)) + (pin "26" (uuid da2a5791-f8cc-43ba-88be-43b7f29eacff)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 215.9 132.08 180) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 94c3cf71-1c5c-4ff8-852f-8c3a9f34b41a) + (property "Reference" "U1" (id 0) (at 219.71 131.445 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 219.71 133.985 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 215.9 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 215.9 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5336ddca-ea1e-4d2a-927b-a7e08ce97d3a)) + (pin "2" (uuid e61a23bf-b27e-4636-8c78-48e4fec21830)) + (pin "3" (uuid 5d88970a-0c8d-4967-b42e-f0ba64ecf8a1)) + (pin "4" (uuid 4c033222-7eec-4931-8b94-a5a4dfb1abb6)) + (pin "5" (uuid 1cab2ab5-e125-4d26-a016-2b64e98bdd4d)) + (pin "6" (uuid 137b2560-e3e9-47a3-8c8d-cd2b193f44df)) + (pin "7" (uuid fd9be855-7b52-483e-8111-3102d7582cf3)) + (pin "8" (uuid 32a348ed-7e0d-4e46-917f-5b3b9965c44c)) + (pin "9" (uuid 3330941e-1e56-4e64-8de3-171e02cac195)) + (pin "10" (uuid 0daee7ea-2ccc-4d1f-ba9f-9ed91618544a)) + (pin "11" (uuid d338ae32-34fb-4c79-b78c-bd59100c4631)) + (pin "12" (uuid e27f35e5-c863-46f3-bfcd-7e5988cae14d)) + (pin "13" (uuid bcf67232-b6e9-4c12-9f78-867a2d9414dc)) + (pin "14" (uuid cf4c51df-9115-48f3-9240-8a0f5edf6953)) + (pin "15" (uuid 2fd2c509-a3d4-41c0-b3bf-370e2cf9ae0b)) + (pin "16" (uuid 45ca8077-3815-4d5e-b043-8618fbf0cacf)) + (pin "17" (uuid 7e367a20-0b1d-4c38-8d45-c8b635e87cee)) + (pin "18" (uuid 9ea5593c-89bb-4ecb-8167-b13d03729a1a)) + (pin "19" (uuid 9ebfa157-32fd-47b9-94f5-0251b2db5b03)) + (pin "20" (uuid d5b4c465-3fec-4eb2-97b1-a1248a525718)) + (pin "21" (uuid 27ddf4e9-7979-439a-aed3-83b4f6c92562)) + (pin "22" (uuid ac2be9db-f797-475f-bbb3-29c69792140a)) + (pin "23" (uuid b86788a7-dfd5-4a41-aa93-ce29a7063696)) + (pin "24" (uuid 42fc6e8a-acb2-4c6b-8813-aa1ac68576c4)) + (pin "25" (uuid 5d0d122c-ecf2-4bed-9431-57483a4b7fc6)) + (pin "26" (uuid f9f4858d-0f37-4a42-8d19-df775e3b3cd4)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 152.4 67.31 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 9639ce96-336d-4943-8f8e-12df33e995c9) + (property "Reference" "U5" (id 0) (at 153.035 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 153.035 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 426fb8bb-32dd-4da0-a9c9-78b51d9f25be)) + (pin "2" (uuid af14d323-6a21-424c-939a-d60aca0ffe45)) + (pin "3" (uuid 91ac9e93-bb3d-483c-a01a-7325d0894ae3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 90.17 149.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9ab6e406-b40f-438c-bf97-2737fad1c6fa) + (property "Reference" "U1" (id 0) (at 90.805 144.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 90.805 147.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 90.17 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 15b9d2ec-7d10-4cc8-92c5-6c9144cdaaeb)) + (pin "2" (uuid f073a9c5-8086-47a9-a236-c179a554c294)) + (pin "3" (uuid a5e16668-1a64-4b4a-a589-7a1b06d10932)) + (pin "4" (uuid f5cb8efb-29c3-4344-ae7f-2a3e500605ec)) + (pin "5" (uuid 904d190f-e8a4-4526-a3bb-b8a1fe47f82f)) + (pin "6" (uuid c4763ef7-6f60-4b0e-92e6-a8f26fc8bc38)) + (pin "7" (uuid 8cd70f5f-85e1-4138-b53c-f893f85849d8)) + (pin "8" (uuid 92cc0551-3e54-4e2a-8346-b914813ce6e2)) + (pin "9" (uuid 529ee6a5-2f6c-4dc3-8d2e-b1d1eed5ab89)) + (pin "10" (uuid 235dc9e2-cd10-4d18-95a9-67b988322900)) + (pin "11" (uuid d9a686dc-1f86-4c93-b2d8-431118bd2ea5)) + (pin "12" (uuid 61f33c7b-ab0c-49ef-8886-1ba53a7802de)) + (pin "13" (uuid 256b5d10-242d-4b7c-86d1-73e87e0359e8)) + (pin "14" (uuid 9685223f-3072-46cf-8693-3e600d470428)) + (pin "15" (uuid 2b125607-ad39-4fd9-92b1-b4854d9a739d)) + (pin "16" (uuid 43ae8c6a-8d1b-4040-8519-f45e14d1fbf1)) + (pin "17" (uuid 631806f3-f3f7-456a-b0b9-b9344cd2d216)) + (pin "18" (uuid f7e28a14-8276-4395-a764-33cd12a2ee36)) + (pin "19" (uuid 428e0966-f7da-4466-bf6d-1db7a51ec74b)) + (pin "20" (uuid ae3b22bc-a496-41b8-9359-ab52d0985ff5)) + (pin "21" (uuid 8c2e5951-59e9-469c-b09d-f33e685f049e)) + (pin "22" (uuid f021f821-0e99-43da-b04a-ae98caac866e)) + (pin "23" (uuid 8872ffd6-445d-4db1-8015-52b59bcb0e06)) + (pin "24" (uuid b6892c8a-b427-470c-99c3-8434448199eb)) + (pin "25" (uuid 79679c9d-e54e-4517-b71b-0c8d35f1f753)) + (pin "26" (uuid a7991385-e7e1-41c6-ae19-d0c5fabcd392)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 152.4 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e4b0c79-e3aa-4ad9-871b-c3ef345b693d) + (property "Reference" "U11" (id 0) (at 151.765 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 151.765 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 91fb4487-945c-4276-8db3-e2878c76e8c2)) + (pin "2" (uuid 95a64e05-afad-4327-bf33-8f52c60cb31a)) + (pin "3" (uuid 6a159467-7c11-45de-ac33-e60077d5585f)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 152.4 128.27 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid b34a0b50-7375-4251-b49e-2c3c5f2b8361) + (property "Reference" "U10" (id 0) (at 153.035 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 151.765 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1f02b059-f6eb-4166-be1e-93e219cd7ed6)) + (pin "2" (uuid 7e5ac4eb-52c3-4b40-b53a-cb5f131f9236)) + (pin "3" (uuid 362f209b-30ad-4119-9894-debcdc8a1e08)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 72.39 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b48f6b5c-5d66-4070-aa57-fb479dcbdfbe) + (property "Reference" "U1" (id 0) (at 111.125 67.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 69.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fcfc3a8d-9680-4ba5-b274-581451a18ac9)) + (pin "2" (uuid 240134b2-2cd1-4bb1-98ea-6f5db91972cc)) + (pin "3" (uuid 358574d3-33e4-4316-b192-aa587fe4140a)) + (pin "4" (uuid ae1cd979-f65a-44ce-ada0-0e5a4a0ed8aa)) + (pin "5" (uuid 29d53121-1f63-4d89-ad96-cac32857d262)) + (pin "6" (uuid 75857376-15f5-42fd-9cb7-8608b7392580)) + (pin "7" (uuid 9bace234-e174-4e4a-8b51-34330e8401b5)) + (pin "8" (uuid d0d82ad6-5296-4882-aef3-56a969261450)) + (pin "9" (uuid 16bae12d-c1c5-4025-b79c-d58fbd10066b)) + (pin "10" (uuid c1433615-dcd5-4ccc-9169-44bcd9e1df78)) + (pin "11" (uuid 8918ad55-9435-49e0-86ed-6c02bd3120da)) + (pin "12" (uuid 05462a72-7d5f-4382-baca-c084eb40a645)) + (pin "13" (uuid a4b05714-dd32-4a9c-840e-7307ba26e51c)) + (pin "14" (uuid 75238886-1fe6-4cb2-8692-e1b394699d07)) + (pin "15" (uuid 0ae9ff74-19de-4adb-aead-c53a4dda5934)) + (pin "16" (uuid 84a64f56-1e8b-4302-b00f-47e663c7003e)) + (pin "17" (uuid d3fa1553-389f-40c6-bd39-b1e44a3dd9b3)) + (pin "18" (uuid 1306aecd-1d7b-4cee-ba29-9d0e8368c44a)) + (pin "19" (uuid 17c6610c-7b11-4754-b62e-aff559a4626a)) + (pin "20" (uuid 8b9f0fad-6790-4272-a0d3-f4b3e71489ca)) + (pin "21" (uuid 75e4ab9e-92b9-473e-ba52-152ad397d148)) + (pin "22" (uuid daf508d1-1b26-4a37-9f70-a4935d9d2937)) + (pin "23" (uuid 6af5958a-e819-4cc0-9045-f8d85e909ca1)) + (pin "24" (uuid 1504feed-1413-4961-887c-75391a4157f2)) + (pin "25" (uuid 068cf641-fdb4-47d3-9b06-1bfb0a9a4230)) + (pin "26" (uuid 654ac80c-868b-4c70-9b88-e1a364f75e9f)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 152.4 115.57 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid bb0cfc9a-4dc4-4202-93b8-cc2e6e7518b8) + (property "Reference" "U9" (id 0) (at 153.035 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 153.035 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 211815b1-6472-468f-9be6-688903c23180)) + (pin "2" (uuid 29ab688f-c314-4806-82bf-48fc8992a6d5)) + (pin "3" (uuid 35690074-fa7d-44c9-9d51-595176789052)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 152.4 81.28 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid bc8b583b-35a4-4469-8f7d-97f4bc2e3b01) + (property "Reference" "U6" (id 0) (at 153.035 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 153.035 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 06f4a729-6d14-49f4-a063-fd680d598455)) + (pin "2" (uuid 38ad283a-7345-4518-9abd-5afe1ac53785)) + (pin "3" (uuid 4e9ba8df-531d-4103-bef4-2d399784d7cb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 217.17 83.82 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bcc53793-b499-4cdd-80d6-006dedcdf778) + (property "Reference" "U1" (id 0) (at 220.98 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 220.98 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 217.17 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 625e2fb4-d872-492f-820c-879e740e5aec)) + (pin "2" (uuid b6e0085e-7465-4823-b64a-bc39ea3a287d)) + (pin "3" (uuid 14777698-a41d-4cec-aee9-675015488a5f)) + (pin "4" (uuid 381b7bd9-65fb-48c7-86e7-5b6530815579)) + (pin "5" (uuid 2d74c0be-c31a-4782-b310-935619aeca6e)) + (pin "6" (uuid fb1f584a-5178-4c17-b4c3-ab181c8ffa70)) + (pin "7" (uuid 2e551819-af34-4335-9e68-b89eda30da1e)) + (pin "8" (uuid 8b0c8d36-8900-473b-8d53-5a1c333da09e)) + (pin "9" (uuid 0eae6816-6fcd-4cd1-a439-0a96f4312f78)) + (pin "10" (uuid 59d82947-9817-4703-8563-587ab251afa7)) + (pin "11" (uuid 6848fc86-a677-4149-9cdd-7f8c12b3443c)) + (pin "12" (uuid 32641f9f-ad95-4f39-ba3f-016162cde4ec)) + (pin "13" (uuid fa8d0930-ef70-4f97-a4a6-c4676c10004a)) + (pin "14" (uuid 76a096f9-a7e0-40d6-87ac-3b7081975b03)) + (pin "15" (uuid 8a560984-05e4-4552-8731-57c2a71efd46)) + (pin "16" (uuid 1c0bd44c-f496-455b-98ee-3ffe088bc553)) + (pin "17" (uuid 1eb597cb-1919-4503-99d9-bcc2cc9f7658)) + (pin "18" (uuid 2b7d07c3-feb9-4118-8c83-994850f5f011)) + (pin "19" (uuid d440a3d6-0253-4bc0-91d5-2988a467b254)) + (pin "20" (uuid 041cef60-b569-4586-966a-082ed0092b37)) + (pin "21" (uuid a821de36-e929-4738-b957-9ea96952ba31)) + (pin "22" (uuid 7dcadd34-c47a-45a4-babf-3d91fc031450)) + (pin "23" (uuid e91611a0-26bf-4f4d-b63d-0c4354d131b8)) + (pin "24" (uuid 356efc67-3139-432b-ba68-e29bb2ecbe7b)) + (pin "25" (uuid 74221b4a-a624-4ee3-b626-4b2262aafd92)) + (pin "26" (uuid 40592f0f-1b5f-4380-9404-93b40fd45b6b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 173.99 132.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c47f9a94-b52b-4252-8a8f-24b153f4bb60) + (property "Reference" "U20" (id 0) (at 173.99 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 173.99 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 330f9bf6-e523-4ba9-9c54-f2e29e15ce4a)) + (pin "2" (uuid d13be6de-b914-4910-a504-01bcbfbcbde5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 83.82 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cbae2e6f-5553-45f7-8878-05454447320a) + (property "Reference" "U1" (id 0) (at 111.125 78.74 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 81.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1ba92ea6-3894-4a04-99d8-90928d514468)) + (pin "2" (uuid b711c6d8-37da-4e58-8a7e-d79281abb38c)) + (pin "3" (uuid c036fc35-1bce-4424-aba8-66a6aed0f399)) + (pin "4" (uuid 6b27af8a-0cfc-4ef6-9f50-3cc3586d88cb)) + (pin "5" (uuid e92a3d98-346e-44bf-8302-ba9d56cfd56c)) + (pin "6" (uuid 35bfd217-0887-46db-9487-8bf909ab8d76)) + (pin "7" (uuid e5c0ba3c-348f-4156-85d3-405211fcc0da)) + (pin "8" (uuid 216a21cd-ffe3-40aa-89d5-cdf9b235481a)) + (pin "9" (uuid e5d61bcd-99c0-41f2-a199-3404b3e2b842)) + (pin "10" (uuid 597ec4f6-0211-478f-bc1b-a5b0bb622c85)) + (pin "11" (uuid e532594d-36c1-4f19-a334-ab57732e6b00)) + (pin "12" (uuid aee5517d-0a27-4f83-aa78-9a49048e872e)) + (pin "13" (uuid a5888785-d5bf-460c-a69c-a24a752222eb)) + (pin "14" (uuid c9289575-4ac7-4eb2-bfc9-5f222fa80ddb)) + (pin "15" (uuid 9643ede3-de37-443f-a4fb-0af1465891d5)) + (pin "16" (uuid 7c71e18b-1407-4ed2-8b59-8dde0bfba235)) + (pin "17" (uuid fb627862-65f5-4e0e-8e19-59c22def4684)) + (pin "18" (uuid 7cbab8e8-34cb-46b2-8ff0-9ce118fba471)) + (pin "19" (uuid 74a505c1-a89e-4120-8ed4-92d03f694117)) + (pin "20" (uuid e89ada1c-bbf3-4a82-a1a7-8e2521489f07)) + (pin "21" (uuid 28c725d4-5e4c-4360-bef0-5f2ba4878b09)) + (pin "22" (uuid c3c61f7c-1a7e-4dcb-bda5-80fe4622cc3f)) + (pin "23" (uuid e12245a5-7083-4ab3-bcd9-2aafa811587a)) + (pin "24" (uuid 08c5381f-1473-4cd0-ac01-e17c0d829ff2)) + (pin "25" (uuid 5167f64c-1239-452a-9753-619b33f39c19)) + (pin "26" (uuid 084524a8-cb36-4723-b3cc-1a0ecde8a164)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 58.42 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ccb3d250-774e-4a57-bf12-aeead9d2943c) + (property "Reference" "U1" (id 0) (at 111.125 53.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 55.88 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6df38f6e-8323-4c92-9b0b-628ac0eae402)) + (pin "2" (uuid f38000bf-a38c-4272-aab5-a535041ed351)) + (pin "3" (uuid 4c2dfe92-60de-4671-9053-1856bb42dd3a)) + (pin "4" (uuid d5e10b9c-cc27-4a45-b46d-35ddecc5904b)) + (pin "5" (uuid 41eb74d8-62b1-4523-9b5c-aeb98967ba98)) + (pin "6" (uuid 4ca82280-1f38-4f39-a59a-fb2d2acb1f9a)) + (pin "7" (uuid 5f2d26d4-e493-4a3a-80f2-489500f7fd28)) + (pin "8" (uuid 4e54d3d5-7e56-488d-bc86-943b010fd7e6)) + (pin "9" (uuid b0fde0e6-eab5-4d57-9611-8a31e7a4bdae)) + (pin "10" (uuid e39fabaf-d1eb-4ff2-bb32-428289f38b69)) + (pin "11" (uuid 7df44be9-e692-40d8-ac44-2cfda940e5a7)) + (pin "12" (uuid e80ed092-dd46-4b85-b38e-fa158233204c)) + (pin "13" (uuid 00b667f6-80cb-4fde-9912-2f308ac94700)) + (pin "14" (uuid 1b959f23-5442-49f4-a2ee-6d4b4f6a22ef)) + (pin "15" (uuid 3cc4bece-0bc9-4350-a916-95815a891d05)) + (pin "16" (uuid 4db8369a-81be-4cb3-ab21-f855b01caaee)) + (pin "17" (uuid f89413f6-45d9-4b63-9b4a-725d6eb79273)) + (pin "18" (uuid 17761233-98a7-42de-ae29-9b8eed307ab6)) + (pin "19" (uuid e7d02dc3-932b-4758-b8b8-11f22bcf8264)) + (pin "20" (uuid dd1154e0-fbaf-45f8-a1eb-3e14133cec4a)) + (pin "21" (uuid 1c0c46b1-dded-4f93-84e2-6311ea7fb3eb)) + (pin "22" (uuid c3200f95-ad59-4820-a699-f5aa07111065)) + (pin "23" (uuid 11fc320b-b8b7-4a1c-b72f-a96d9fa937c9)) + (pin "24" (uuid 9b208fbc-0645-4949-a7fa-dad701adaa2e)) + (pin "25" (uuid 0fd4596b-701b-40ff-add1-c9b721839fb2)) + (pin "26" (uuid 8034d852-cc31-4c77-a3d2-daf9e62d0217)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 215.9 119.38 180) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db45d6b5-180f-4da8-863f-be7a8631b223) + (property "Reference" "U1" (id 0) (at 219.71 118.745 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 219.71 121.285 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 215.9 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 215.9 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b610ba19-c89a-4813-aa7d-45b64bc496af)) + (pin "2" (uuid 9821d0ba-a298-4906-ba6e-560ab7573203)) + (pin "3" (uuid 073c2bfd-b995-4929-91f5-5310c0edc97c)) + (pin "4" (uuid 21d80f2a-3bf8-49e7-9191-ba2e00286295)) + (pin "5" (uuid 65c81839-34c5-4922-b50a-7b40dd8fe21f)) + (pin "6" (uuid 272d8042-f826-4925-a170-2b5bfa604c81)) + (pin "7" (uuid ac1e1e46-ac79-4b68-a1be-cce0c0ae213d)) + (pin "8" (uuid 25ee8ea7-35ea-4f59-8562-10ff9ac5f66c)) + (pin "9" (uuid 71c493b5-4a31-49f8-b404-9d7c10d54222)) + (pin "10" (uuid 034a9992-e1c9-459e-b371-efbb100877d7)) + (pin "11" (uuid 9ed4f366-01e0-4f75-ad4c-8e1ac9260f99)) + (pin "12" (uuid 00635363-3712-4b50-912d-43b4d2d29e6a)) + (pin "13" (uuid 7444763b-df1c-48c0-8930-580426a7890c)) + (pin "14" (uuid 92b913ee-76d2-475d-89d2-4e65a90ab521)) + (pin "15" (uuid 9702a789-f108-4be6-8409-edee71c6336f)) + (pin "16" (uuid 6def19d2-cb96-4446-9b17-cab0312d9664)) + (pin "17" (uuid 3b069fcb-c9b9-4641-bf34-5efbb04e7f21)) + (pin "18" (uuid 8203f357-ef46-46e9-a371-0dae20b40d01)) + (pin "19" (uuid 0ddab8fd-2bf2-48a3-bea3-ad2dc0c06a67)) + (pin "20" (uuid 33b4d668-8204-4fc7-84a5-c698e2c87812)) + (pin "21" (uuid da9ee130-311f-4268-90d7-9663b5f131bd)) + (pin "22" (uuid 5d67f5f2-c3b2-4f12-87a9-f5ebcc92ba50)) + (pin "23" (uuid e8754338-de2f-4056-b51b-785d416dbdac)) + (pin "24" (uuid 7c07c33a-e454-4009-9180-3c995d06cb6e)) + (pin "25" (uuid dcacc506-bd7d-4ee8-99ed-53e8b9907722)) + (pin "26" (uuid 92c2c787-7afa-4888-a72e-00a4214942cb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 217.17 95.25 180) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid de8caa0b-8958-48bd-9ded-f107f3aca39a) + (property "Reference" "U1" (id 0) (at 220.98 94.615 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 220.98 97.155 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 217.17 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0fef9291-b0d3-4859-ae2b-4fc2ba1eb17a)) + (pin "2" (uuid 3a0f6fea-114d-4a91-9d86-343bd403da89)) + (pin "3" (uuid 56d6c47c-3b6c-4eaf-b9b5-e4c3861234dd)) + (pin "4" (uuid b1f6597f-2b61-44ec-9a40-7389cc786520)) + (pin "5" (uuid d7de5088-6910-4f26-955b-4d8c3b32d5f6)) + (pin "6" (uuid 8b79e7d8-f2ee-4e20-ad96-bf94d6a4bb08)) + (pin "7" (uuid 8985b6b1-88af-4aae-9b01-5d352c36ee6a)) + (pin "8" (uuid 2972b8ef-91cf-4d66-9a38-5eb7f030f157)) + (pin "9" (uuid 09699f5d-38bf-4d8d-a444-fa6e9292b56f)) + (pin "10" (uuid 2a328716-ff40-4c3d-9553-f99be80356a5)) + (pin "11" (uuid 0d22e9bc-34df-4a2f-91a6-8c5f517800bc)) + (pin "12" (uuid f1a2ac51-5769-4e70-b9a3-f0fa681d01e8)) + (pin "13" (uuid a7c37a26-4c32-4605-b55a-aa02c8538147)) + (pin "14" (uuid 7185edd5-7977-4f82-8c02-8fab9a674265)) + (pin "15" (uuid 1098f26b-70fa-4604-956e-73a05aac93ec)) + (pin "16" (uuid 6d16208f-5671-4d5d-a68c-92486093594d)) + (pin "17" (uuid ee487494-84fc-4eb7-adba-637b25ad32ba)) + (pin "18" (uuid 8b2bf83b-18a2-4e4f-a1c1-9ba7eb6b6c21)) + (pin "19" (uuid 2545a1f5-6332-4904-bf08-ff51fa41634e)) + (pin "20" (uuid 9626878a-7868-4de7-b570-a40f827e10e6)) + (pin "21" (uuid 85440f20-f029-421c-a3cc-61a14c7309f2)) + (pin "22" (uuid 52457f7f-72b7-4d45-aa48-9c419579068a)) + (pin "23" (uuid 3dbffb48-27a6-4dd9-87db-e6e2ed5e7e3b)) + (pin "24" (uuid 27b8be9e-6e48-4cbd-92b4-061e854a18d1)) + (pin "25" (uuid db384d66-3617-4a9a-bec5-816363d0566c)) + (pin "26" (uuid 1929e4fa-fda2-4879-93ff-a0351269ebc4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 173.99 106.68 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid e3abbd45-0e0d-4e85-941e-e37569fc19b5) + (property "Reference" "U18" (id 0) (at 175.26 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 173.99 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ba563a4-c573-4583-a823-5186ac882168)) + (pin "2" (uuid 284cfa13-7a8a-4762-a9aa-6dff9c290c30)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 217.17 106.68 180) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8f05cf5-c442-4191-9a98-ca49f19a399d) + (property "Reference" "U1" (id 0) (at 220.98 106.045 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 220.98 108.585 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 217.17 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 46f2e9e6-b861-4537-8218-c8b80ead222e)) + (pin "2" (uuid ba8d796a-29c5-435e-b291-2969f529130c)) + (pin "3" (uuid 062e8348-959f-40c8-841a-7e9864cb6f44)) + (pin "4" (uuid 4a79fa54-8a00-4b4f-b0f3-ea0a49acf8fb)) + (pin "5" (uuid 3282ee36-1da9-474b-9871-141c3c77b8c3)) + (pin "6" (uuid 337c8213-258d-4444-b7b3-f241122d110a)) + (pin "7" (uuid 920f896f-85cd-430d-842c-6026279b6cfe)) + (pin "8" (uuid e3284b50-e491-403f-8c35-f49ef7df9b90)) + (pin "9" (uuid a2f30d2c-ebe3-4064-8f99-2e18f13198a3)) + (pin "10" (uuid 73e973ef-0ef1-45cc-8899-11ab5ec64d9b)) + (pin "11" (uuid a1477966-6fa3-40d1-93c5-6d9c874e509c)) + (pin "12" (uuid ecba3faa-1029-4914-9635-0ed3baa85950)) + (pin "13" (uuid f936e1c5-19fe-4d45-8906-bd08c9378145)) + (pin "14" (uuid f6366280-318a-48fe-914e-104849740ddd)) + (pin "15" (uuid 9d4eef52-5f2c-4358-8bc2-2ac2389a3593)) + (pin "16" (uuid 3911f0a7-14db-4c68-96c1-3c7399f3044b)) + (pin "17" (uuid 68f398cc-0520-4643-9a13-47e4f0bf87d0)) + (pin "18" (uuid 329f2414-f5b8-457a-b3a9-ba294da75740)) + (pin "19" (uuid 8f688870-5023-4ba3-b832-015fa80b917c)) + (pin "20" (uuid 1fada245-446e-41f4-ad99-31dafa881a0b)) + (pin "21" (uuid 004084ba-4bae-4e01-9958-80e67cbda995)) + (pin "22" (uuid 8677f0d2-64c3-4b91-9079-53af8e3a87c6)) + (pin "23" (uuid e713ee5e-0cc8-4559-952c-baf1d0fa4024)) + (pin "24" (uuid 38996dbf-82cd-4bfb-abfc-9433c1521782)) + (pin "25" (uuid 717c8743-e3e2-44b6-b64d-d4f7f72be5ee)) + (pin "26" (uuid c073925a-2056-47cf-a151-d44335559578)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 215.9 44.45 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eead91d4-c19b-4829-9ff4-9c7ae580e9b6) + (property "Reference" "U1" (id 0) (at 219.71 43.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 219.71 46.355 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 215.9 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 215.9 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cb8690fc-1a9c-44ef-af55-baa2e675fe05)) + (pin "2" (uuid 4f7a6baa-843e-42a3-86be-860b47877a74)) + (pin "3" (uuid 6f63ddb5-627a-4da2-926b-1d72387b512e)) + (pin "4" (uuid 43b842f8-edad-4c47-a78c-163155df6a7b)) + (pin "5" (uuid 8a659d68-0f62-49fb-b855-4d94ec7d0c0a)) + (pin "6" (uuid fb5ede09-39e7-4fb7-a3e7-6bda29456f0d)) + (pin "7" (uuid d1d2c4b6-17e8-4df4-a3e5-a5b700dac291)) + (pin "8" (uuid bc8b1676-36c5-4c22-b2d5-966a14904b61)) + (pin "9" (uuid 1591305e-457c-480f-a54f-7e942d2ea94d)) + (pin "10" (uuid 0c1095c3-224a-4cbd-a85e-2fd319303611)) + (pin "11" (uuid a97380ed-efff-4254-be35-d31fe19950f0)) + (pin "12" (uuid 7c936c88-742d-470e-abe3-aa3e03b48925)) + (pin "13" (uuid b5354ce9-9227-4be3-b319-d4e019e9c4f8)) + (pin "14" (uuid ca47a7b7-9674-45cd-b204-0caec7fc61e4)) + (pin "15" (uuid aa8474ed-2d06-472a-a894-1d856b604854)) + (pin "16" (uuid 507685a7-7045-4e2b-8a90-3e8d88c6f706)) + (pin "17" (uuid 1a39e8a7-71ad-4b6f-a976-8f397f6adcf2)) + (pin "18" (uuid 6fbbc64a-dc90-4dd9-bd3d-4989ca7bab04)) + (pin "19" (uuid 872265ed-d199-43c3-b66d-9b8c2ee93523)) + (pin "20" (uuid eea767e2-a49e-419a-941f-0c97ccec9d91)) + (pin "21" (uuid 0c238039-16f8-4d50-89bd-39611b8b970a)) + (pin "22" (uuid 49e2469d-2ab0-4c65-80eb-c617465bf4d4)) + (pin "23" (uuid a3cd8f61-e621-44d8-9fac-51c1c924e006)) + (pin "24" (uuid 3a485103-e919-4410-93ba-84c86861e90b)) + (pin "25" (uuid 61966118-987c-4968-947d-75b7b8f58e40)) + (pin "26" (uuid 1ddc826f-5705-4df1-9fb0-013c58b57a43)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 90.17 158.75 0) (unit 19) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f49862b5-67cd-44b5-a432-b46802df63cc) + (property "Reference" "U1" (id 0) (at 90.805 153.67 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 90.805 156.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 90.17 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e063e33f-602d-4a56-9ca6-cec967737902)) + (pin "2" (uuid 57a3614a-493d-4459-9053-a6ac35e1d08c)) + (pin "3" (uuid d333fc40-928e-4507-92f8-e1da5858c4c0)) + (pin "4" (uuid 3021091b-28b5-4263-aeed-7fc123374d30)) + (pin "5" (uuid 887fe7c0-15bc-4763-9c32-a578b3c7607e)) + (pin "6" (uuid 560ccbeb-e7cc-4042-976d-81baeae8ad0e)) + (pin "7" (uuid ae18b524-f328-4afa-975d-65b68c98bb41)) + (pin "8" (uuid 44cb90cf-071c-468b-9548-3c2e2d5ea4a8)) + (pin "9" (uuid 3f128518-02cc-4df0-9028-55c248aa9c6e)) + (pin "10" (uuid d447c20c-d93c-409f-b8b3-3d01e6178caa)) + (pin "11" (uuid 9f471718-b509-4da7-b134-5f7d4d4264ed)) + (pin "12" (uuid 2af93bd2-0d76-4cfa-a404-f692e4f07ec0)) + (pin "13" (uuid 545327e3-5560-4db3-b7d4-6a87abdf70f6)) + (pin "14" (uuid 38073918-7581-400a-99cb-41e37f0d0df2)) + (pin "15" (uuid dd711f60-ba41-4cd0-8084-88eea22d8311)) + (pin "16" (uuid f4bcf196-6908-47be-beeb-f806df2e4eb3)) + (pin "17" (uuid 245d6c14-5433-4635-ae8f-229bb8badd54)) + (pin "18" (uuid 05bc6a26-ba93-459b-8f95-bf223a1feb71)) + (pin "19" (uuid 331b6dd4-c77b-4e18-b7d2-b9a2a508187c)) + (pin "20" (uuid b7d49347-66aa-4856-adea-a56a31ecac1c)) + (pin "21" (uuid 07ff953e-1e93-4922-88cd-77f2c55e4c82)) + (pin "22" (uuid 1fbf5ecd-0cfe-4f8c-950d-e39c2edf7284)) + (pin "23" (uuid f6e39619-093a-49bf-9e40-6580e4555faf)) + (pin "24" (uuid 3ba1c69e-86aa-435f-853d-b72cc3c75e34)) + (pin "25" (uuid 4e796479-7918-4c7b-b097-ae1acb3e8604)) + (pin "26" (uuid c5b02552-e14c-4ed1-8b1f-980e70106373)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 119.38 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9965331-d5a3-467f-9943-e7a0ddd58c1e) + (property "Reference" "U1" (id 0) (at 111.125 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 116.84 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ec3985b-844f-4c99-86b1-058ef699fcb2)) + (pin "2" (uuid b0558d72-69b0-4517-8106-cfc0c07b2f09)) + (pin "3" (uuid 32f5ccf6-1c29-41bc-9394-9c3b7399d6d3)) + (pin "4" (uuid b2b996e9-f786-4c66-8ac7-26cb8b108f85)) + (pin "5" (uuid 99fea60a-08fc-4c20-b83c-554b60a60961)) + (pin "6" (uuid bdd35dbd-4d6a-4dfd-b4ab-cb9abd82a549)) + (pin "7" (uuid b3d00abd-4fe5-41d0-91f7-b1c2b41d6eb9)) + (pin "8" (uuid 55e821ef-dd2a-4a84-8ac0-4a9bdf2664ff)) + (pin "9" (uuid 7fd2a37c-6c0b-4134-ad03-46e3fe6a6f02)) + (pin "10" (uuid dc186141-1c14-4d8a-b459-5ff3284b4865)) + (pin "11" (uuid 0cda2361-afc6-4f35-bc0d-5965f4737ded)) + (pin "12" (uuid 2f731498-97e2-44de-b3cc-be50dc61dc07)) + (pin "13" (uuid 53c9ed36-49a7-420d-97ea-90b9a2206b06)) + (pin "14" (uuid 60afab82-b874-4d9e-9577-380d6c20a230)) + (pin "15" (uuid 23d4818e-9481-4070-9739-3017e08f5996)) + (pin "16" (uuid 50650b80-634f-4b4c-9ed7-aeeb020fab02)) + (pin "17" (uuid 3fbc226a-d531-4768-bf2e-cd6910a3b259)) + (pin "18" (uuid 48bfc60e-a717-45f9-bed0-3fc091c571a6)) + (pin "19" (uuid 2442f2ff-edbb-4a21-a81a-b445d93f5f02)) + (pin "20" (uuid 14bf091b-696a-4a35-8664-b77b7a568650)) + (pin "21" (uuid fa1e8fe9-eadd-4e37-852b-93f1e3dfcc04)) + (pin "22" (uuid f8c94a39-9873-4355-9b6c-e7155da4ce2d)) + (pin "23" (uuid 35d8af44-4748-43a3-90cb-766ba2fe27dc)) + (pin "24" (uuid e182d3b3-f3fc-41ef-92d0-40c5359199ca)) + (pin "25" (uuid c183517d-9467-4a6a-8a9a-244187a35d3e)) + (pin "26" (uuid c4335f74-6da1-495f-905f-9b61fce77bfa)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/9ab6e406-b40f-438c-bf97-2737fad1c6fa" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/94baac3a-3031-4ba2-b30a-9bd63bc83fe0" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/ccb3d250-774e-4a57-bf12-aeead9d2943c" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/b48f6b5c-5d66-4070-aa57-fb479dcbdfbe" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/cbae2e6f-5553-45f7-8878-05454447320a" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/17b91f0d-2c5b-4e07-ab8e-e1dd0f2c7505" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/3b8eb533-c176-4bea-a323-0769aab6507f" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/f9965331-d5a3-467f-9943-e7a0ddd58c1e" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/2d1c196a-f70e-49d1-be3f-d7bcba8f4d34" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/595bdc6c-ab5f-43e1-8835-c157ff2db581" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/eead91d4-c19b-4829-9ff4-9c7ae580e9b6" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/3b55d894-4aee-4ddd-b0b0-f2c3f222e3b2" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/6cff14fc-8c01-4dbb-9a11-51dfd4e03b90" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/bcc53793-b499-4cdd-80d6-006dedcdf778" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/de8caa0b-8958-48bd-9ded-f107f3aca39a" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/e8f05cf5-c442-4191-9a98-ca49f19a399d" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/db45d6b5-180f-4da8-863f-be7a8631b223" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/94c3cf71-1c5c-4ff8-852f-8c3a9f34b41a" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/f49862b5-67cd-44b5-a432-b46802df63cc" + (reference "U1") (unit 19) (value "PORT") (footprint "") + ) + (path "/107a809c-ff18-4365-ac85-d8601613efde" + (reference "U1") (unit 20) (value "PORT") (footprint "") + ) + (path "/1ebcac54-0c85-4a89-8fdb-3ea7405bb307" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/91305e97-bb47-4626-90ce-0bb91b48a4a8" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4c2f3cb6-9dd3-4e77-91fa-022b938e7a3d" + (reference "U4") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/9639ce96-336d-4943-8f8e-12df33e995c9" + (reference "U5") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/bc8b583b-35a4-4469-8f7d-97f4bc2e3b01" + (reference "U6") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/299c4dca-5898-44ed-aacb-de75453f93f7" + (reference "U7") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/81fce6e8-b834-48a5-8852-baed8e099f9e" + (reference "U8") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/bb0cfc9a-4dc4-4202-93b8-cc2e6e7518b8" + (reference "U9") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/b34a0b50-7375-4251-b49e-2c3c5f2b8361" + (reference "U10") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/9e4b0c79-e3aa-4ad9-871b-c3ef345b693d" + (reference "U11") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/7496e9f0-e5a7-4306-ac13-e3f2c8a0009d" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/14be67da-f240-4070-9f9f-b5f60cec0199" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7ef3cfbb-083e-4b8d-a7b4-a21b6352b1d4" + (reference "U14") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/80626b04-e043-42f3-a28a-719bbbbfb117" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4b804ced-0a83-4802-b84a-a6d7ebd3fcfc" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/898b3856-5711-4eb7-b12c-1e77adf69a2b" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e3abbd45-0e0d-4e85-941e-e37569fc19b5" + (reference "U18") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/463dd2bb-ed72-4893-8124-5f6072bf55c6" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c47f9a94-b52b-4252-8a8f-24b153f4bb60" + (reference "U20") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/74HC540/74HC540.sub b/library/SubcircuitLibrary/74HC540/74HC540.sub new file mode 100644 index 000000000..089b95dab --- /dev/null +++ b/library/SubcircuitLibrary/74HC540/74HC540.sub @@ -0,0 +1,82 @@ +* Subcircuit 74HC540 +.subckt 74HC540 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ unconnected-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ unconnected-_u1-pad20_ +.title kicad schematic +* u19 net-_u10-pad3_ net-_u1-pad17_ d_inverter +* u20 net-_u11-pad3_ net-_u1-pad18_ d_inverter +* u10 net-_u1-pad8_ net-_u10-pad2_ net-_u10-pad3_ d_tristate +* u11 net-_u1-pad9_ net-_u10-pad2_ net-_u11-pad3_ d_tristate +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u10-pad2_ d_and +* u3 net-_u1-pad19_ net-_u12-pad2_ d_inverter +* u2 net-_u1-pad1_ net-_u12-pad1_ d_inverter +* u7 net-_u1-pad5_ net-_u10-pad2_ net-_u16-pad1_ d_tristate +* u6 net-_u1-pad4_ net-_u10-pad2_ net-_u15-pad1_ d_tristate +* u4 net-_u1-pad2_ net-_u10-pad2_ net-_u13-pad1_ d_tristate +* u8 net-_u1-pad6_ net-_u10-pad2_ net-_u17-pad1_ d_tristate +* u5 net-_u1-pad3_ net-_u10-pad2_ net-_u14-pad1_ d_tristate +* u13 net-_u13-pad1_ net-_u1-pad11_ d_inverter +* u14 net-_u14-pad1_ net-_u1-pad12_ d_inverter +* u18 net-_u18-pad1_ net-_u1-pad16_ d_inverter +* u17 net-_u17-pad1_ net-_u1-pad15_ d_inverter +* u9 net-_u1-pad7_ net-_u10-pad2_ net-_u18-pad1_ d_tristate +* u16 net-_u16-pad1_ net-_u1-pad14_ d_inverter +* u15 net-_u15-pad1_ net-_u1-pad13_ d_inverter +a1 net-_u10-pad3_ net-_u1-pad17_ u19 +a2 net-_u11-pad3_ net-_u1-pad18_ u20 +a3 net-_u1-pad8_ net-_u10-pad2_ net-_u10-pad3_ u10 +a4 net-_u1-pad9_ net-_u10-pad2_ net-_u11-pad3_ u11 +a5 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u10-pad2_ u12 +a6 net-_u1-pad19_ net-_u12-pad2_ u3 +a7 net-_u1-pad1_ net-_u12-pad1_ u2 +a8 net-_u1-pad5_ net-_u10-pad2_ net-_u16-pad1_ u7 +a9 net-_u1-pad4_ net-_u10-pad2_ net-_u15-pad1_ u6 +a10 net-_u1-pad2_ net-_u10-pad2_ net-_u13-pad1_ u4 +a11 net-_u1-pad6_ net-_u10-pad2_ net-_u17-pad1_ u8 +a12 net-_u1-pad3_ net-_u10-pad2_ net-_u14-pad1_ u5 +a13 net-_u13-pad1_ net-_u1-pad11_ u13 +a14 net-_u14-pad1_ net-_u1-pad12_ u14 +a15 net-_u18-pad1_ net-_u1-pad16_ u18 +a16 net-_u17-pad1_ net-_u1-pad15_ u17 +a17 net-_u1-pad7_ net-_u10-pad2_ net-_u18-pad1_ u9 +a18 net-_u16-pad1_ net-_u1-pad14_ u16 +a19 net-_u15-pad1_ net-_u1-pad13_ u15 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u10 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u11 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u7 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u4 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u8 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u5 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u9 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends 74HC540 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74HC540/74HC540_Previous_Values.xml b/library/SubcircuitLibrary/74HC540/74HC540_Previous_Values.xml new file mode 100644 index 000000000..f4650a357 --- /dev/null +++ b/library/SubcircuitLibrary/74HC540/74HC540_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_inverterd_tristated_tristated_andd_inverterd_inverterd_tristated_tristated_tristated_tristated_tristated_inverterd_inverterd_inverterd_inverterd_tristated_inverterd_invertertruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/74HC540/_autosave-74HC540.sch b/library/SubcircuitLibrary/74HC540/_autosave-74HC540.sch new file mode 100644 index 000000000..5ee154987 --- /dev/null +++ b/library/SubcircuitLibrary/74HC540/_autosave-74HC540.sch @@ -0,0 +1,563 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 5750 2650 +Connection ~ 5750 3250 +Connection ~ 5750 3750 +Connection ~ 5750 4200 +Connection ~ 5750 4650 +Connection ~ 5750 5100 +Connection ~ 5950 5550 +NoConn ~ 3700 1450 +NoConn ~ 6550 1150 +Wire Wire Line + 2750 1450 3700 1450 +Wire Wire Line + 3800 5900 4700 5900 +Wire Wire Line + 3800 6250 4700 6250 +Wire Wire Line + 4600 1750 5400 1750 +Wire Wire Line + 4600 2300 5400 2300 +Wire Wire Line + 4600 2850 5400 2850 +Wire Wire Line + 4600 3300 5400 3300 +Wire Wire Line + 4600 3750 5400 3750 +Wire Wire Line + 4600 4200 5400 4200 +Wire Wire Line + 4600 4700 5400 4700 +Wire Wire Line + 4600 5200 5400 5200 +Wire Wire Line + 5300 5900 5450 5900 +Wire Wire Line + 5300 6250 5450 6250 +Wire Wire Line + 5450 5900 5450 6000 +Wire Wire Line + 5450 6000 5550 6000 +Wire Wire Line + 5450 6100 5550 6100 +Wire Wire Line + 5450 6250 5450 6100 +Wire Wire Line + 5750 2100 5950 2100 +Wire Wire Line + 5750 2650 5750 2100 +Wire Wire Line + 5750 3250 5750 2650 +Wire Wire Line + 5750 3750 5750 3250 +Wire Wire Line + 5750 4200 5750 3750 +Wire Wire Line + 5750 4650 5750 4200 +Wire Wire Line + 5750 5100 5750 4650 +Wire Wire Line + 5750 5550 5750 5100 +Wire Wire Line + 5950 2100 5950 2050 +Wire Wire Line + 5950 2600 5950 2650 +Wire Wire Line + 5950 2650 5750 2650 +Wire Wire Line + 5950 3150 5950 3250 +Wire Wire Line + 5950 3250 5750 3250 +Wire Wire Line + 5950 3600 5950 3750 +Wire Wire Line + 5950 3750 5750 3750 +Wire Wire Line + 5950 4050 5950 4200 +Wire Wire Line + 5950 4200 5750 4200 +Wire Wire Line + 5950 4500 5950 4650 +Wire Wire Line + 5950 4650 5750 4650 +Wire Wire Line + 5950 5000 5950 5100 +Wire Wire Line + 5950 5100 5750 5100 +Wire Wire Line + 5950 5500 5950 5550 +Wire Wire Line + 5950 5550 5750 5550 +Wire Wire Line + 6450 6050 6750 6050 +Wire Wire Line + 6550 1150 7800 1150 +Wire Wire Line + 6750 5550 5950 5550 +Wire Wire Line + 6750 6050 6750 5550 +Wire Wire Line + 7150 1750 8250 1750 +Wire Wire Line + 7150 2300 8300 2300 +Wire Wire Line + 7150 2850 8300 2850 +Wire Wire Line + 7150 3300 8300 3300 +Wire Wire Line + 7150 3750 8300 3750 +Wire Wire Line + 7150 4200 8300 4200 +Wire Wire Line + 7150 4700 8250 4700 +Wire Wire Line + 7150 5200 8250 5200 +$Comp +L eSim_Miscellaneous:PORT U1 +U 10 1 00000000 +P 2500 1450 +F 0 "U1" H 2525 1650 30 0000 C CNN +F 1 "PORT" H 2525 1550 30 0000 C CNN +F 2 "" H 2500 1450 60 0000 C CNN +F 3 "" H 2500 1450 60 0000 C CNN + 10 2500 1450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 1 1 00000000 +P 3550 5900 +F 0 "U1" H 3575 6100 30 0000 C CNN +F 1 "PORT" H 3575 6000 30 0000 C CNN +F 2 "" H 3550 5900 60 0000 C CNN +F 3 "" H 3550 5900 60 0000 C CNN + 1 3550 5900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 19 1 00000000 +P 3550 6250 +F 0 "U1" H 3575 6450 30 0000 C CNN +F 1 "PORT" H 3575 6350 30 0000 C CNN +F 2 "" H 3550 6250 60 0000 C CNN +F 3 "" H 3550 6250 60 0000 C CNN + 19 3550 6250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 2 1 00000000 +P 4350 1750 +F 0 "U1" H 4375 1950 30 0000 C CNN +F 1 "PORT" H 4375 1850 30 0000 C CNN +F 2 "" H 4350 1750 60 0000 C CNN +F 3 "" H 4350 1750 60 0000 C CNN + 2 4350 1750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 3 1 00000000 +P 4350 2300 +F 0 "U1" H 4375 2500 30 0000 C CNN +F 1 "PORT" H 4375 2400 30 0000 C CNN +F 2 "" H 4350 2300 60 0000 C CNN +F 3 "" H 4350 2300 60 0000 C CNN + 3 4350 2300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 4 1 00000000 +P 4350 2850 +F 0 "U1" H 4375 3050 30 0000 C CNN +F 1 "PORT" H 4375 2950 30 0000 C CNN +F 2 "" H 4350 2850 60 0000 C CNN +F 3 "" H 4350 2850 60 0000 C CNN + 4 4350 2850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 5 1 00000000 +P 4350 3300 +F 0 "U1" H 4375 3500 30 0000 C CNN +F 1 "PORT" H 4375 3400 30 0000 C CNN +F 2 "" H 4350 3300 60 0000 C CNN +F 3 "" H 4350 3300 60 0000 C CNN + 5 4350 3300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 6 1 00000000 +P 4350 3750 +F 0 "U1" H 4375 3950 30 0000 C CNN +F 1 "PORT" H 4375 3850 30 0000 C CNN +F 2 "" H 4350 3750 60 0000 C CNN +F 3 "" H 4350 3750 60 0000 C CNN + 6 4350 3750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 7 1 00000000 +P 4350 4200 +F 0 "U1" H 4375 4400 30 0000 C CNN +F 1 "PORT" H 4375 4300 30 0000 C CNN +F 2 "" H 4350 4200 60 0000 C CNN +F 3 "" H 4350 4200 60 0000 C CNN + 7 4350 4200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 8 1 00000000 +P 4350 4700 +F 0 "U1" H 4375 4900 30 0000 C CNN +F 1 "PORT" H 4375 4800 30 0000 C CNN +F 2 "" H 4350 4700 60 0000 C CNN +F 3 "" H 4350 4700 60 0000 C CNN + 8 4350 4700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 9 1 00000000 +P 4350 5200 +F 0 "U1" H 4375 5400 30 0000 C CNN +F 1 "PORT" H 4375 5300 30 0000 C CNN +F 2 "" H 4350 5200 60 0000 C CNN +F 3 "" H 4350 5200 60 0000 C CNN + 9 4350 5200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 20 1 00000000 +P 8050 1150 +F 0 "U1" H 7900 1125 30 0000 R CNN +F 1 "PORT" H 7900 1225 30 0000 R CNN +F 2 "" H 8050 1150 60 0000 C CNN +F 3 "" H 8050 1150 60 0000 C CNN + 20 8050 1150 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 11 1 00000000 +P 8500 1750 +F 0 "U1" H 8350 1725 30 0000 R CNN +F 1 "PORT" H 8350 1825 30 0000 R CNN +F 2 "" H 8500 1750 60 0000 C CNN +F 3 "" H 8500 1750 60 0000 C CNN + 11 8500 1750 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 17 1 00000000 +P 8500 4700 +F 0 "U1" H 8350 4675 30 0000 R CNN +F 1 "PORT" H 8350 4775 30 0000 R CNN +F 2 "" H 8500 4700 60 0000 C CNN +F 3 "" H 8500 4700 60 0000 C CNN + 17 8500 4700 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 18 1 00000000 +P 8500 5200 +F 0 "U1" H 8350 5175 30 0000 R CNN +F 1 "PORT" H 8350 5275 30 0000 R CNN +F 2 "" H 8500 5200 60 0000 C CNN +F 3 "" H 8500 5200 60 0000 C CNN + 18 8500 5200 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 12 1 00000000 +P 8550 2300 +F 0 "U1" H 8400 2275 30 0000 R CNN +F 1 "PORT" H 8400 2375 30 0000 R CNN +F 2 "" H 8550 2300 60 0000 C CNN +F 3 "" H 8550 2300 60 0000 C CNN + 12 8550 2300 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 13 1 00000000 +P 8550 2850 +F 0 "U1" H 8400 2825 30 0000 R CNN +F 1 "PORT" H 8400 2925 30 0000 R CNN +F 2 "" H 8550 2850 60 0000 C CNN +F 3 "" H 8550 2850 60 0000 C CNN + 13 8550 2850 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 14 1 00000000 +P 8550 3300 +F 0 "U1" H 8400 3275 30 0000 R CNN +F 1 "PORT" H 8400 3375 30 0000 R CNN +F 2 "" H 8550 3300 60 0000 C CNN +F 3 "" H 8550 3300 60 0000 C CNN + 14 8550 3300 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 15 1 00000000 +P 8550 3750 +F 0 "U1" H 8400 3725 30 0000 R CNN +F 1 "PORT" H 8400 3825 30 0000 R CNN +F 2 "" H 8550 3750 60 0000 C CNN +F 3 "" H 8550 3750 60 0000 C CNN + 15 8550 3750 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 16 1 00000000 +P 8550 4200 +F 0 "U1" H 8400 4175 30 0000 R CNN +F 1 "PORT" H 8400 4275 30 0000 R CNN +F 2 "" H 8550 4200 60 0000 C CNN +F 3 "" H 8550 4200 60 0000 C CNN + 16 8550 4200 + -1 0 0 1 +$EndComp +$Comp +L eSim_Digital:d_inverter U2 +U 1 1 00000000 +P 5000 5900 +F 0 "U2" H 5000 6150 60 0000 C CNN +F 1 "d_inverter" H 5000 6000 60 0000 C CNN +F 2 "" H 5050 5850 60 0000 C CNN +F 3 "" H 5050 5850 60 0000 C CNN + 1 5000 5900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U3 +U 1 1 00000000 +P 5000 6250 +F 0 "U3" H 5000 6500 60 0000 C CNN +F 1 "d_inverter" H 5000 6350 60 0000 C CNN +F 2 "" H 5050 6200 60 0000 C CNN +F 3 "" H 5050 6200 60 0000 C CNN + 1 5000 6250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U13 +U 1 1 00000000 +P 6850 1750 +F 0 "U13" H 6850 2000 60 0000 C CNN +F 1 "d_inverter" H 6850 1850 60 0000 C CNN +F 2 "" H 6900 1700 60 0000 C CNN +F 3 "" H 6900 1700 60 0000 C CNN + 1 6850 1750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U14 +U 1 1 00000000 +P 6850 2300 +F 0 "U14" H 6850 2350 60 0000 C CNN +F 1 "d_inverter" H 6900 3150 60 0000 C CNN +F 2 "" H 6900 2250 60 0000 C CNN +F 3 "" H 6900 2250 60 0000 C CNN + 1 6850 2300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U15 +U 1 1 00000000 +P 6850 2850 +F 0 "U15" H 6900 3600 60 0000 C CNN +F 1 "d_inverter" H 6900 3450 60 0000 C CNN +F 2 "" H 6900 2800 60 0000 C CNN +F 3 "" H 6900 2800 60 0000 C CNN + 1 6850 2850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U16 +U 1 1 00000000 +P 6850 3300 +F 0 "U16" H 6900 3800 60 0000 C CNN +F 1 "d_inverter" H 6850 3400 60 0000 C CNN +F 2 "" H 6900 3250 60 0000 C CNN +F 3 "" H 6900 3250 60 0000 C CNN + 1 6850 3300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U17 +U 1 1 00000000 +P 6850 3750 +F 0 "U17" H 6900 4100 60 0000 C CNN +F 1 "d_inverter" H 6900 3950 60 0000 C CNN +F 2 "" H 6900 3700 60 0000 C CNN +F 3 "" H 6900 3700 60 0000 C CNN + 1 6850 3750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U18 +U 1 1 00000000 +P 6850 4200 +F 0 "U18" H 6900 4450 60 0000 C CNN +F 1 "d_inverter" H 6850 4300 60 0000 C CNN +F 2 "" H 6900 4150 60 0000 C CNN +F 3 "" H 6900 4150 60 0000 C CNN + 1 6850 4200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U19 +U 1 1 00000000 +P 6850 4700 +F 0 "U19" H 6900 5000 60 0000 C CNN +F 1 "d_inverter" H 6850 4800 60 0000 C CNN +F 2 "" H 6900 4650 60 0000 C CNN +F 3 "" H 6900 4650 60 0000 C CNN + 1 6850 4700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U20 +U 1 1 00000000 +P 6850 5200 +F 0 "U20" H 6850 5450 60 0000 C CNN +F 1 "d_inverter" H 6850 5300 60 0000 C CNN +F 2 "" H 6900 5150 60 0000 C CNN +F 3 "" H 6900 5150 60 0000 C CNN + 1 6850 5200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U12 +U 1 1 00000000 +P 6000 6100 +F 0 "U12" H 6000 6450 60 0000 C CNN +F 1 "d_and" H 6000 6300 60 0000 C CNN +F 2 "" H 6000 6100 60 0000 C CNN +F 3 "" H 6000 6100 60 0000 C CNN + 1 6000 6100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_tristate U4 +U 1 1 00000000 +P 6000 2100 +F 0 "U4" H 5975 2850 60 0000 C CNN +F 1 "d_tristate" H 5975 2700 60 0000 C CNN +F 2 "" H 5900 2450 60 0000 C CNN +F 3 "" H 5900 2450 60 0000 C CNN + 1 6000 2100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_tristate U5 +U 1 1 00000000 +P 6000 2650 +F 0 "U5" H 6025 4150 60 0000 C CNN +F 1 "d_tristate" H 6025 4000 60 0000 C CNN +F 2 "" H 5900 3000 60 0000 C CNN +F 3 "" H 5900 3000 60 0000 C CNN + 1 6000 2650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_tristate U6 +U 1 1 00000000 +P 6000 3200 +F 0 "U6" H 6025 4700 60 0000 C CNN +F 1 "d_tristate" H 6025 4300 60 0000 C CNN +F 2 "" H 5900 3550 60 0000 C CNN +F 3 "" H 5900 3550 60 0000 C CNN + 1 6000 3200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_tristate U7 +U 1 1 00000000 +P 6000 3650 +F 0 "U7" H 6025 4900 60 0000 C CNN +F 1 "d_tristate" H 6025 4500 60 0000 C CNN +F 2 "" H 5900 4000 60 0000 C CNN +F 3 "" H 5900 4000 60 0000 C CNN + 1 6000 3650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_tristate U8 +U 1 1 00000000 +P 6000 4100 +F 0 "U8" H 6025 4950 60 0000 C CNN +F 1 "d_tristate" H 6025 4800 60 0000 C CNN +F 2 "" H 5900 4450 60 0000 C CNN +F 3 "" H 5900 4450 60 0000 C CNN + 1 6000 4100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_tristate U9 +U 1 1 00000000 +P 6000 4550 +F 0 "U9" H 6025 5300 60 0000 C CNN +F 1 "d_tristate" H 6025 5150 60 0000 C CNN +F 2 "" H 5900 4900 60 0000 C CNN +F 3 "" H 5900 4900 60 0000 C CNN + 1 6000 4550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_tristate U10 +U 1 1 00000000 +P 6000 5050 +F 0 "U10" H 6025 5700 60 0000 C CNN +F 1 "d_tristate" H 5975 5650 60 0000 C CNN +F 2 "" H 5900 5400 60 0000 C CNN +F 3 "" H 5900 5400 60 0000 C CNN + 1 6000 5050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_tristate U11 +U 1 1 00000000 +P 6000 5550 +F 0 "U11" H 5975 6300 60 0000 C CNN +F 1 "d_tristate" H 5975 6150 60 0000 C CNN +F 2 "" H 5900 5900 60 0000 C CNN +F 3 "" H 5900 5900 60 0000 C CNN + 1 6000 5550 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/74HC540/analysis b/library/SubcircuitLibrary/74HC540/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/74HC540/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74HC540/fp-info-cache b/library/SubcircuitLibrary/74HC540/fp-info-cache new file mode 100644 index 000000000..4b9953755 --- /dev/null +++ b/library/SubcircuitLibrary/74HC540/fp-info-cache @@ -0,0 +1,87529 @@ +21882843882037665 +Audio_Module +Reverb_BTDR-1H +Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) +audio belton reverb +0 +7 +7 +Audio_Module +Reverb_BTDR-1V +Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) +audio belton reverb +0 +7 +7 +Battery +BatteryHolder_Bulgin_BX0036_1xC +Bulgin Battery Holder, BX0036, Battery Type C (https://www.bulgin.com/products/pub/media/bulgin/data/Battery_holders.pdf) +Bulgin BX0036 +0 +2 +2 +Battery +BatteryHolder_ComfortableElectronic_CH273-2450_1x2450 +Comfortable Electronic CR2450 battery holder, http://www.comf.com.tw/ProductDetail.asp?no=148 +Comfortable Electronic CR2450 +0 +2 +2 +Battery +BatteryHolder_Eagle_12BH611-GR +https://eu.mouser.com/datasheet/2/209/EPD-200766-1274481.pdf +9V Battery Holder +0 +2 +2 +Battery +BatteryHolder_Keystone_103_1x20mm +http://www.keyelco.com/product-pdf.cfm?p=719 +Keystone type 103 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_104_1x23mm +http://www.keyelco.com/product-pdf.cfm?p=744 +Keystone type 104 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_105_1x2430 +http://www.keyelco.com/product-pdf.cfm?p=745 +Keystone type 105 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_106_1x20mm +http://www.keyelco.com/product-pdf.cfm?p=720 +Keystone type 106 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_107_1x23mm +http://www.keyelco.com/product-pdf.cfm?p=746 +Keystone type 107 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_500 +Keystone #500, CR1220 battery holder, http://www.keyelco.com/product-pdf.cfm?p=710 +CR1220 battery holder +0 +2 +2 +Battery +BatteryHolder_Keystone_1042_1x18650 +Battery holder for 18650 cylindrical cells http://www.keyelco.com/product.cfm/product_id/918 +18650 Keystone 1042 Li-ion +0 +2 +2 +Battery +BatteryHolder_Keystone_1057_1x2032 +SMT (Auto-In/Ultra-Low) Holder for 2032 Cell, 33.2 x 23.9mm, 2mm height above PCB, https://www.keyelco.com/userAssets/file/M65p4.pdf +Keystone type 1057 coin cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_1058_1x2032 +http://www.keyelco.com/product-pdf.cfm?p=14028 +Keystone type 1058 coin cell retainer +0 +2 +2 +Battery +BatteryHolder_Keystone_1060_1x2032 +http://www.keyelco.com/product-pdf.cfm?p=726 +CR2032 BR2032 BatteryHolder Battery +0 +2 +2 +Battery +BatteryHolder_Keystone_2460_1xAA +https://www.keyelco.com/product-pdf.cfm?p=1025 +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_2462_2xAA +2xAA cell battery holder, Keystone P/N 2462, https://www.keyelco.com/product-pdf.cfm?p=1027 +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_2466_1xAAA +1xAAA Battery Holder, Keystone, Plastic Case, http://www.keyelco.com/product-pdf.cfm?p=1031 +AAA battery holder Keystone +0 +2 +2 +Battery +BatteryHolder_Keystone_2468_2xAAA +2xAAA cell battery holder, Keystone P/N 2468, http://www.keyelco.com/product-pdf.cfm?p=1033 +AAA battery cell holder +0 +2 +2 +Battery +BatteryHolder_Keystone_2479_3xAAA +Keystone Battery Holder, 2479, Battery Type 3xAAA (Script generated with StandardBox.py) (Keystone Battery Holder, 2479, Battery Type 3xAAA) +Keystone Battery Holder 2479 Battery Type 3xAAA +0 +2 +2 +Battery +BatteryHolder_Keystone_2993 +http://www.keyelco.com/product-pdf.cfm?p=776 +Keystone type 2993 negative battery contact +0 +1 +1 +Battery +BatteryHolder_Keystone_2998_1x6.8mm +www.keyelco.com/product-pdf.cfm?p=763 +Keystone type 2998 battery holder +0 +3 +2 +Battery +BatteryHolder_Keystone_3000_1x12mm +http://www.keyelco.com/product-pdf.cfm?p=777 +Keystone type 3000 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3001_1x12mm +http://www.keyelco.com/product-pdf.cfm?p=778 +Keystone type 3001 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3002_1x2032 +https://www.tme.eu/it/Document/a823211ec201a9e209042d155fe22d2b/KEYS2996.pdf +BR2016 CR2016 DL2016 BR2020 CL2020 BR2025 CR2025 DL2025 DR2032 CR2032 DL2032 +0 +3 +2 +Battery +BatteryHolder_Keystone_3008_1x2450 +http://www.keyelco.com/product-pdf.cfm?p=786 +Keystone type 3008 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3009_1x2450 +http://www.keyelco.com/product-pdf.cfm?p=787 +Keystone type 3009 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_Keystone_3034_1x20mm +Keystone 3034 SMD battery holder for 2020, 2025 and 2032 coincell batteries. http://www.keyelco.com/product-pdf.cfm?p=798 +Keystone type 3034 coin cell retainer +0 +3 +2 +Battery +BatteryHolder_LINX_BAT-HLD-012-SMT +SMT battery holder for CR1216/1220/1225, https://linxtechnologies.com/wp/wp-content/uploads/bat-hld-012-smt.pdf +battery holder coin cell cr1216 cr1220 cr1225 +0 +3 +2 +Battery +BatteryHolder_MPD_BA9VPC_1xPP3 +1xPP3 (9V) battery holder, Memory Protection Devices P/N BA9VPC, http://www.memoryprotectiondevices.com/datasheets/BA9VPC-datasheet.pdf +PP3 Battery Holder BA9VPC 9V +0 +2 +2 +Battery +BatteryHolder_MPD_BC2AAPC_2xAA +2xAA cell battery holder, Memory Protection Devices P/N BC2AAPC, http://www.memoryprotectiondevices.com/datasheets/BC2AAPC-datasheet.pdf +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_MPD_BC12AAPC_2xAA +2xAA cell battery holder, Memory Protection Devices P/N BC12AAPC, http://www.memoryprotectiondevices.com/datasheets/BC12AAPC-datasheet.pdf +AA battery cell holder +0 +2 +2 +Battery +BatteryHolder_MPD_BC2003_1x2032 +http://www.memoryprotectiondevices.com/datasheets/BC-2003-datasheet.pdf +BC2003 CR2032 2032 Battery Holder +0 +3 +2 +Battery +BatteryHolder_MPD_BH-18650-PC2 +18650 Battery Holder (http://www.memoryprotectiondevices.com/datasheets/BK-18650-PC2-datasheet.pdf) +18650 Battery Holder +0 +2 +2 +Battery +BatteryHolder_Seiko_MS621F +Seiko MS621F, https://www.sii.co.jp/en/me/files/2014/02/file_EXTENDED_PRDCT_SPEC_75_FILE_11.jpg +Seiko MS621F +0 +2 +2 +Battery +BatteryHolder_TruPower_BH-331P_3xAA +Keystone Battery Holder BH-331P Battery Type 3xAA (Script generated with StandardBox.py) (Keystone Battery Holder BH-331P Battery Type 3xAA) +Battery Holder BH-331P Battery Type 3xAA +0 +2 +2 +Battery +Battery_CR1225 +CR1225 battery +battery CR1225 coin cell +0 +0 +0 +Battery +Battery_Panasonic_CR1025-VSK_Vertical_CircularHoles +Panasonic CR-1025/VSK battery +battery CR-1025 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR1220-VCN_Vertical_CircularHoles +Panasonic CR-1220/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D140.PDF +battery CR-1220 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR1632-V1AN_Vertical_CircularHoles +Panasonic CR-1632-V1AN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D464.PDF +battery CR-1632 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2025-V1AK_Vertical_CircularHoles +Panasonic CR-2025/V1AK battery, +battery CR-2025 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2032-VS1N_Vertical_CircularHoles +Panasonic CR-2032/VS1N battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D348.PDF +battery CR-2032 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2354-VCN_Vertical_CircularHoles +Panasonic CR-2354/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D486.PDF +battery CR-2354/VCN coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR2450-VAN_Vertical_CircularHoles +Panasonic CR-2450/VAN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D492.PDF +battery CR-2450 coin cell +0 +2 +2 +Battery +Battery_Panasonic_CR2477-VCN_Vertical_CircularHoles +Panasonic CR-2477/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D502.PDF +battery CR-2477 coin cell vertical +0 +2 +2 +Battery +Battery_Panasonic_CR3032-VCN_Vertical_CircularHoles +Panasonic CR-3032/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D508.PDF +battery CR-3032 coin cell vertical +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.00u_PCB +Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.00u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.00u_Plate +Cherry MX keyswitch, 1.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.00u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.25u_PCB +Cherry MX keyswitch, 1.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.25u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.25u_Plate +Cherry MX keyswitch, 1.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.25u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.50u_PCB +Cherry MX keyswitch, 1.50u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.50u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.50u_Plate +Cherry MX keyswitch, 1.50u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.50u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.75u_PCB +Cherry MX keyswitch, 1.75u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.75u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_1.75u_Plate +Cherry MX keyswitch, 1.75u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 1.75u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_PCB +Cherry MX keyswitch, 2.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_Plate +Cherry MX keyswitch, 2.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_Vertical_PCB +Cherry MX keyswitch, 2.00u, vertical, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u vertical PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.00u_Vertical_Plate +Cherry MX keyswitch, 2.00u, vertical, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.00u vertical plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.25u_PCB +Cherry MX keyswitch, 2.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.25u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.25u_Plate +Cherry MX keyswitch, 2.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.25u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.75u_PCB +Cherry MX keyswitch, 2.75u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.75u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_2.75u_Plate +Cherry MX keyswitch, 2.75u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 2.75u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_6.25u_PCB +Cherry MX keyswitch, 6.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 6.25u PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_6.25u_Plate +Cherry MX keyswitch, 6.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch 6.25u plate +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_ISOEnter_PCB +Cherry MX keyswitch, ISO Enter, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch ISO enter PCB +0 +2 +2 +Button_Switch_Keyboard +SW_Cherry_MX_ISOEnter_Plate +Cherry MX keyswitch, ISO Enter, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf +Cherry MX keyswitch ISO enter plate +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.00u +Matias/ALPS keyswitch, 1.00u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.00u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.25u +Matias/ALPS keyswitch, 1.25u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.25u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.50u +Matias/ALPS keyswitch, 1.50u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.50u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_1.75u +Matias/ALPS keyswitch, 1.75u, http://matias.ca/switches/ +Matias ALPS keyswitch 1.75u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_2.00u +Matias/ALPS keyswitch, 2.00u, http://matias.ca/switches/ +Matias ALPS keyswitch 2.00u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_2.25u +Matias/ALPS keyswitch, 2.25u, http://matias.ca/switches/ +Matias ALPS keyswitch 2.25u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_2.75u +Matias/ALPS keyswitch, 2.75u, http://matias.ca/switches/ +Matias ALPS keyswitch 2.75u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_6.25u +Matias/ALPS keyswitch, 6.25u, http://matias.ca/switches/ +Matias ALPS keyswitch 6.25u +0 +2 +2 +Button_Switch_Keyboard +SW_Matias_ISOEnter +Matias/ALPS keyswitch, ISO Enter, http://matias.ca/switches/ +Matias ALPS keyswitch ISO enter +0 +2 +2 +Button_Switch_SMD +Nidec_Copal_SH-7010A +4-bit rotary coded switch, J-hook, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +6 +5 +Button_Switch_SMD +Nidec_Copal_SH-7010B +4-bit rotary coded switch, gull wing, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +6 +5 +Button_Switch_SMD +Nidec_Copal_SH-7040B +4-bit rotary coded switch, gull wing, Gray code, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +5 +5 +Button_Switch_SMD +Panasonic_EVQPUJ_EVQPUA +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUJ EVQPUA +0 +4 +2 +Button_Switch_SMD +Panasonic_EVQPUK_EVQPUB +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUK EVQPUB +0 +4 +2 +Button_Switch_SMD +Panasonic_EVQPUL_EVQPUC +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUL EVQPUC +0 +4 +2 +Button_Switch_SMD +Panasonic_EVQPUM_EVQPUD +http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf +SMD SMT SPST EVQPUM EVQPUD +0 +4 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 1x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_6.7x4.1mm_W8.61mm_P2.54mm_LowProfile +SMD 1x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_9.78x4.72mm_W8.61mm_P2.54mm +SMD 1x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x4.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Copal_CHS-01A_W5.08mm_P1.27mm_JPin +SMD 1x-dip-switch SPST Copal_CHS-01A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Copal_CHS-01B_W7.62mm_P1.27mm +SMD 1x-dip-switch SPST Copal_CHS-01B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Copal_CVS-01xB_W5.9mm_P1mm +SMD 1x-dip-switch SPST Copal_CVS-01xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +6 +3 +Button_Switch_SMD +SW_DIP_SPSTx01_Slide_Omron_A6S-110x_W8.9mm_P2.54mm +SMD 1x-dip-switch SPST Omron_A6S-110x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +2 +2 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_6.7x6.64mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 2x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_6.7x6.64mm_W8.61mm_P2.54mm_LowProfile +SMD 2x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_9.78x7.26mm_W8.61mm_P2.54mm +SMD 2x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x7.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Copal_CHS-02A_W5.08mm_P1.27mm_JPin +SMD 2x-dip-switch SPST Copal_CHS-02A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Copal_CHS-02B_W7.62mm_P1.27mm +SMD 2x-dip-switch SPST Copal_CHS-02B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Copal_CVS-02xB_W5.9mm_P1mm +SMD 2x-dip-switch SPST Copal_CVS-02xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +8 +5 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_KingTek_DSHP02TJ_W5.25mm_P1.27mm_JPin +SMD 2x-dip-switch SPST KingTek_DSHP02TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_KingTek_DSHP02TS_W7.62mm_P1.27mm +SMD 2x-dip-switch SPST KingTek_DSHP02TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Omron_A6H-2101_W6.15mm_P1.27mm +SMD 2x-dip-switch SPST Omron_A6H-2101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx02_Slide_Omron_A6S-210x_W8.9mm_P2.54mm +SMD 2x-dip-switch SPST Omron_A6S-210x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +4 +4 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_6.7x9.18mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 3x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_6.7x9.18mm_W8.61mm_P2.54mm_LowProfile +SMD 3x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_9.78x9.8mm_W8.61mm_P2.54mm +SMD 3x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x9.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_Copal_CVS-03xB_W5.9mm_P1mm +SMD 3x-dip-switch SPST Copal_CVS-03xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +10 +7 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_KingTek_DSHP03TJ_W5.25mm_P1.27mm_JPin +SMD 3x-dip-switch SPST KingTek_DSHP03TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_KingTek_DSHP03TS_W7.62mm_P1.27mm +SMD 3x-dip-switch SPST KingTek_DSHP03TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx03_Slide_Omron_A6S-310x_W8.9mm_P2.54mm +SMD 3x-dip-switch SPST Omron_A6S-310x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +6 +6 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_6.7x11.72mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 4x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_6.7x11.72mm_W8.61mm_P2.54mm_LowProfile +SMD 4x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_9.78x12.34mm_W8.61mm_P2.54mm +SMD 4x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x12.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Copal_CHS-04A_W5.08mm_P1.27mm_JPin +SMD 4x-dip-switch SPST Copal_CHS-04A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Copal_CHS-04B_W7.62mm_P1.27mm +SMD 4x-dip-switch SPST Copal_CHS-04B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Copal_CVS-04xB_W5.9mm_P1mm +SMD 4x-dip-switch SPST Copal_CVS-04xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +12 +9 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_KingTek_DSHP04TJ_W5.25mm_P1.27mm_JPin +SMD 4x-dip-switch SPST KingTek_DSHP04TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_KingTek_DSHP04TS_W7.62mm_P1.27mm +SMD 4x-dip-switch SPST KingTek_DSHP04TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Omron_A6H-4101_W6.15mm_P1.27mm +SMD 4x-dip-switch SPST Omron_A6H-4101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx04_Slide_Omron_A6S-410x_W8.9mm_P2.54mm +SMD 4x-dip-switch SPST Omron_A6S-410x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +8 +8 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_6.7x14.26mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 5x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_6.7x14.26mm_W8.61mm_P2.54mm_LowProfile +SMD 5x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_9.78x14.88mm_W8.61mm_P2.54mm +SMD 5x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x14.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_KingTek_DSHP05TJ_W5.25mm_P1.27mm_JPin +SMD 5x-dip-switch SPST KingTek_DSHP05TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_KingTek_DSHP05TS_W7.62mm_P1.27mm +SMD 5x-dip-switch SPST KingTek_DSHP05TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx05_Slide_Omron_A6S-510x_W8.9mm_P2.54mm +SMD 5x-dip-switch SPST Omron_A6S-510x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +10 +10 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_6.7x16.8mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 6x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_6.7x16.8mm_W8.61mm_P2.54mm_LowProfile +SMD 6x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_9.78x17.42mm_W8.61mm_P2.54mm +SMD 6x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x17.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Copal_CHS-06A_W5.08mm_P1.27mm_JPin +SMD 6x-dip-switch SPST Copal_CHS-06A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Copal_CHS-06B_W7.62mm_P1.27mm +SMD 6x-dip-switch SPST Copal_CHS-06B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_KingTek_DSHP06TJ_W5.25mm_P1.27mm_JPin +SMD 6x-dip-switch SPST KingTek_DSHP06TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_KingTek_DSHP06TS_W7.62mm_P1.27mm +SMD 6x-dip-switch SPST KingTek_DSHP06TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Omron_A6H-6101_W6.15mm_P1.27mm +SMD 6x-dip-switch SPST Omron_A6H-6101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx06_Slide_Omron_A6S-610x_W8.9mm_P2.54mm +SMD 6x-dip-switch SPST Omron_A6S-610x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +12 +12 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_6.7x19.34mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 7x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_6.7x19.34mm_W8.61mm_P2.54mm_LowProfile +SMD 7x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_9.78x19.96mm_W8.61mm_P2.54mm +SMD 7x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x19.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_KingTek_DSHP07TJ_W5.25mm_P1.27mm_JPin +SMD 7x-dip-switch SPST KingTek_DSHP07TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_KingTek_DSHP07TS_W7.62mm_P1.27mm +SMD 7x-dip-switch SPST KingTek_DSHP07TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx07_Slide_Omron_A6S-710x_W8.9mm_P2.54mm +SMD 7x-dip-switch SPST Omron_A6S-710x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +14 +14 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_6.7x21.88mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 8x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_6.7x21.88mm_W8.61mm_P2.54mm_LowProfile +SMD 8x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_9.78x22.5mm_W8.61mm_P2.54mm +SMD 8x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x22.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Copal_CHS-08A_W5.08mm_P1.27mm_JPin +SMD 8x-dip-switch SPST Copal_CHS-08A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Copal_CHS-08B_W7.62mm_P1.27mm +SMD 8x-dip-switch SPST Copal_CHS-08B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Copal_CVS-08xB_W5.9mm_P1mm +SMD 8x-dip-switch SPST Copal_CVS-08xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) +SMD DIP Switch SPST Slide 5.9mm 232mil +0 +20 +17 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_KingTek_DSHP08TJ_W5.25mm_P1.27mm_JPin +SMD 8x-dip-switch SPST KingTek_DSHP08TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_KingTek_DSHP08TS_W7.62mm_P1.27mm +SMD 8x-dip-switch SPST KingTek_DSHP08TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Omron_A6H-8101_W6.15mm_P1.27mm +SMD 8x-dip-switch SPST Omron_A6H-8101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx08_Slide_Omron_A6S-810x_W8.9mm_P2.54mm +SMD 8x-dip-switch SPST Omron_A6S-810x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +16 +16 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_6.7x24.42mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 9x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_6.7x24.42mm_W8.61mm_P2.54mm_LowProfile +SMD 9x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_9.78x25.04mm_W8.61mm_P2.54mm +SMD 9x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x25.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_KingTek_DSHP09TJ_W5.25mm_P1.27mm_JPin +SMD 9x-dip-switch SPST KingTek_DSHP09TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_KingTek_DSHP09TS_W7.62mm_P1.27mm +SMD 9x-dip-switch SPST KingTek_DSHP09TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx09_Slide_Omron_A6S-910x_W8.9mm_P2.54mm +SMD 9x-dip-switch SPST Omron_A6S-910x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +18 +18 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_6.7x26.96mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 10x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_6.7x26.96mm_W8.61mm_P2.54mm_LowProfile +SMD 10x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_9.78x27.58mm_W8.61mm_P2.54mm +SMD 10x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x27.58mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Copal_CHS-10A_W5.08mm_P1.27mm_JPin +SMD 10x-dip-switch SPST Copal_CHS-10A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin +SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Copal_CHS-10B_W7.62mm_P1.27mm +SMD 10x-dip-switch SPST Copal_CHS-10B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD +SMD DIP Switch SPST Slide 7.62mm 300mil SMD +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_KingTek_DSHP10TJ_W5.25mm_P1.27mm_JPin +SMD 10x-dip-switch SPST KingTek_DSHP10TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin +SMD DIP Switch SPST Slide 5.25mm 206mil JPin +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_KingTek_DSHP10TS_W7.62mm_P1.27mm +SMD 10x-dip-switch SPST KingTek_DSHP10TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) +SMD DIP Switch SPST Slide 7.62mm 300mil +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Omron_A6H-10101_W6.15mm_P1.27mm +SMD 10x-dip-switch SPST Omron_A6H-10101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) +SMD DIP Switch SPST Slide 6.15mm 242mil +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx10_Slide_Omron_A6S-1010x_W8.9mm_P2.54mm +SMD 10x-dip-switch SPST Omron_A6S-1010x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) +SMD DIP Switch SPST Slide 8.9mm 350mil +0 +20 +20 +Button_Switch_SMD +SW_DIP_SPSTx11_Slide_6.7x29.5mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 11x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +22 +22 +Button_Switch_SMD +SW_DIP_SPSTx11_Slide_6.7x29.5mm_W8.61mm_P2.54mm_LowProfile +SMD 11x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +22 +22 +Button_Switch_SMD +SW_DIP_SPSTx11_Slide_9.78x30.12mm_W8.61mm_P2.54mm +SMD 11x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x30.12mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +22 +22 +Button_Switch_SMD +SW_DIP_SPSTx12_Slide_6.7x32.04mm_W6.73mm_P2.54mm_LowProfile_JPin +SMD 12x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin +SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin +0 +24 +24 +Button_Switch_SMD +SW_DIP_SPSTx12_Slide_6.7x32.04mm_W8.61mm_P2.54mm_LowProfile +SMD 12x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile +SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile +0 +24 +24 +Button_Switch_SMD +SW_DIP_SPSTx12_Slide_9.78x32.66mm_W8.61mm_P2.54mm +SMD 12x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x32.66mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD +SMD DIP Switch SPST Slide 8.61mm 338mil SMD +0 +24 +24 +Button_Switch_SMD +SW_DPDT_CK_JS202011JCQN +Sub-miniature slide switch, vertical, SMT J bend https://dznh3ojzb2azq.cloudfront.net/products/Slide/JS/documents/datasheet.pdf +switch DPDT SMT +0 +6 +6 +Button_Switch_SMD +SW_MEC_5GSH9 +MEC 5G single pole normally-open tactile switch +switch normally-open pushbutton push-button +0 +4 +4 +Button_Switch_SMD +SW_Push_1P1T-MP_NO_Horizontal_Alps_SKRTLAE010 +Side push button (https://www.alps.com/prod/info/E/PDF/Tact/SurfaceMount/SKRT/SKRT.pdf) +push horizontal SPST 1P1T +0 +5 +3 +Button_Switch_SMD +SW_Push_1P1T-SH_NO_CK_KMR2xxG +CK components KMR2 tactile switch with ground pin http://www.ckswitches.com/media/1479/kmr2.pdf +tactile switch kmr2 +0 +5 +3 +Button_Switch_SMD +SW_Push_1P1T_NO_6x6mm_H9.5mm +tactile push button, 6x6mm e.g. PTS645xx series, height=9.5mm +tact sw push 6mm smd +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KMR2 +CK components KMR2 tactile switch http://www.ckswitches.com/media/1479/kmr2.pdf +tactile switch kmr2 +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KSC6xxJ +CK components KSC6 tactile switch https://www.ckswitches.com/media/1972/ksc6.pdf +tactile switch ksc6 +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_KSC7xxJ +CK components KSC7 tactile switch https://www.ckswitches.com/media/1973/ksc7.pdf +tactile switch ksc7 +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_CK_PTS125Sx43PSMTR +C&K Switches 1P1T SMD PTS125 Series 12mm Tact Switch with Pegs, https://www.ckswitches.com/media/1462/pts125.pdf +Button Tactile Switch SPST 1P1T +0 +4 +2 +Button_Switch_SMD +SW_Push_1P1T_NO_Vertical_Wuerth_434133025816 +https://katalog.we-online.com/em/datasheet/434133025816.pdf +tactile switch Wurth Wuerth +0 +4 +2 +Button_Switch_SMD +SW_Push_SPST_NO_Alps_SKRK +http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKRK/SKRKAHE020.html +SMD SMT button +0 +2 +2 +Button_Switch_SMD +SW_SP3T_PCM13 +Ultraminiature Surface Mount Slide Switch, right-angle, https://www.ckswitches.com/media/1424/pcm.pdf + +0 +8 +4 +Button_Switch_SMD +SW_SPDT_CK-JS102011SAQN +Sub-miniature slide switch, right-angle, http://www.ckswitches.com/media/1422/js.pdf +switch spdt +0 +3 +3 +Button_Switch_SMD +SW_SPDT_PCM12 +Ultraminiature Surface Mount Slide Switch, right-angle, https://www.ckswitches.com/media/1424/pcm.pdf + +0 +7 +3 +Button_Switch_SMD +SW_SPST_B3S-1000 +Surface Mount Tactile Switch for High-Density Packaging +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_B3S-1100 +Surface Mount Tactile Switch for High-Density Packaging with Ground Terminal +Tactile Switch +0 +5 +3 +Button_Switch_SMD +SW_SPST_B3SL-1002P +Middle Stroke Tactile Switch, B3SL +Middle Stroke Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_B3SL-1022P +Middle Stroke Tactile Switch, B3SL +Middle Stroke Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_B3U-1000P +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, without Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-1000P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, with Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-1100P +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, with Ground Terminal, without Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3U-1100P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, with Ground Terminal, with Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3U-3000P +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, without Ground Terminal, without Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-3000P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, without Ground Terminal, with Boss +Tactile Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_B3U-3100P +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, with Ground Terminal, without Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_B3U-3100P-B +Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, with Ground Terminal, with Boss +Tactile Switch +0 +3 +3 +Button_Switch_SMD +SW_SPST_CK_KXT3 +https://www.ckswitches.com/media/1465/kxt3.pdf +Switch SPST KXT3 +0 +2 +2 +Button_Switch_SMD +SW_SPST_CK_RS282G05A3 +https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf +SPST button tactile switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_EVPBF +Light Touch Switch + +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP0 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE28.pdf + +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP2 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000C374.pdf +SMD SMT SPST EVQP2 +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP7A +Light Touch Switch,https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE20.pdf + +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQP7C +Light Touch Switch + +0 +4 +2 +Button_Switch_SMD +SW_SPST_EVQPE1 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE7.pdf + +0 +2 +2 +Button_Switch_SMD +SW_SPST_EVQQ2 +Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE28.pdf + +0 +4 +2 +Button_Switch_SMD +SW_SPST_FSMSM +http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1437566-3&DocType=Customer+Drawing&DocLang=English +SPST button tactile switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_Omron_B3FS-100xP +Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_Omron_B3FS-101xP +Surface Mount Tactile Switch for High-Density Mounting, 4.3mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_Omron_B3FS-105xP +Surface Mount Tactile Switch for High-Density Mounting, 7.3mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf +Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS645 +C&K Components SPST SMD PTS645 Series 6mm Tact Switch +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_PTS810 +C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A08 +Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf +SMD SMT SPST EVQPL EVQPT +0 +6 +3 +Button_Switch_SMD +SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A15 +Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf +SMD SMT SPST EVQPL EVQPT +0 +6 +3 +Button_Switch_SMD +SW_SPST_REED_CT05-XXXX-G1 +Coto Technologies SPST Reed Switch CT05-XXXX-G1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT05-XXXX-J1 +Coto Technologies SPST Reed Switch CT05-XXXX-J1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G1 +Coto Technologies SPST Reed Switch CT10-XXXX-G1 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G2 +Coto Technologies SPST Reed Switch CT10-XXXX-G2 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_REED_CT10-XXXX-G4 +Coto Technologies SPST Reed Switch CT10-XXXX-G4 +Coto Reed SPST Switch +0 +2 +2 +Button_Switch_SMD +SW_SPST_SKQG_WithStem +ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, With stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAFE010.html +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_SKQG_WithoutStem +ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, Without stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAEE010.html +SPST Button Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305A +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305B +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3305C +https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf +TL3305 Series Tact Switch +0 +4 +2 +Button_Switch_SMD +SW_SPST_TL3342 +Low-profile SMD Tactile Switch, https://www.e-switch.com/system/asset/product_line/data_sheet/165/TL3342.pdf +SPST Tactile Switch +0 +4 +2 +Button_Switch_SMD +SW_Tactile_SPST_NO_Straight_CK_PTS636Sx25SMTRLFS +Tactile switch, SPST, 6.0x3.5 mm, H2.5 mm, straight, NO, gull wing leads: https://www.ckswitches.com/media/2779/pts636.pdf +switch tactile SPST 1P1T straight NO SMTR C&K +0 +2 +2 +Button_Switch_THT +KSA_Tactile_SPST +KSA http://www.ckswitches.com/media/1457/ksa_ksl.pdf +SWITCH SMD KSA SW +0 +5 +5 +Button_Switch_THT +Nidec_Copal_SH-7010C +4-bit rotary coded switch, through-hole, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf +rotary switch bcd +0 +6 +5 +Button_Switch_THT +Push_E-Switch_KS01Q01 +E-Switch KS01Q01 http://spec_sheets.e-switch.com/specs/29-KS01Q01.pdf +Push Button +0 +4 +4 +Button_Switch_THT +SW_CW_GPTS203211B +SPST Off-On Pushbutton, 1A, 30V, CW Industries P/N GPTS203211B, http://switches-connectors-custom.cwind.com/Asset/GPTS203211BR2.pdf +SPST button switch Off-On +0 +2 +2 +Button_Switch_THT +SW_CuK_JS202011AQN_DPDT_Angled +CuK sub miniature slide switch, JS series, DPDT, right angle, http://www.ckswitches.com/media/1422/js.pdf +switch DPDT +0 +6 +6 +Button_Switch_THT +SW_CuK_JS202011CQN_DPDT_Straight +CuK sub miniature slide switch, JS series, DPDT, right angle, http://www.ckswitches.com/media/1422/js.pdf +switch DPDT +0 +6 +6 +Button_Switch_THT +SW_CuK_OS102011MA1QN1_SPDT_Angled +CuK miniature slide switch, OS series, SPDT, right angle, http://www.ckswitches.com/media/1428/os.pdf +switch SPDT +0 +5 +3 +Button_Switch_THT +SW_DIP_SPSTx01_Piano_10.8x4.1mm_W7.62mm_P2.54mm +1x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x4.1mm +DIP Switch SPST Piano 7.62mm 300mil +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile +1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx01_Slide_9.78x4.72mm_W7.62mm_P2.54mm +1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x4.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +2 +2 +Button_Switch_THT +SW_DIP_SPSTx02_Piano_10.8x6.64mm_W7.62mm_P2.54mm +2x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x6.64mm +DIP Switch SPST Piano 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Piano_CTS_Series194-2MSTN_W7.62mm_P2.54mm +2x-dip-switch SPST CTS_Series194-2MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Slide_6.7x6.64mm_W7.62mm_P2.54mm_LowProfile +2x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx02_Slide_9.78x7.26mm_W7.62mm_P2.54mm +2x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x7.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +4 +4 +Button_Switch_THT +SW_DIP_SPSTx03_Piano_10.8x9.18mm_W7.62mm_P2.54mm +3x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x9.18mm +DIP Switch SPST Piano 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Piano_CTS_Series194-3MSTN_W7.62mm_P2.54mm +3x-dip-switch SPST CTS_Series194-3MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Slide_6.7x9.18mm_W7.62mm_P2.54mm_LowProfile +3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx03_Slide_9.78x9.8mm_W7.62mm_P2.54mm +3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x9.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +6 +6 +Button_Switch_THT +SW_DIP_SPSTx04_Piano_10.8x11.72mm_W7.62mm_P2.54mm +4x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x11.72mm +DIP Switch SPST Piano 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Piano_CTS_Series194-4MSTN_W7.62mm_P2.54mm +4x-dip-switch SPST CTS_Series194-4MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Slide_6.7x11.72mm_W7.62mm_P2.54mm_LowProfile +4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm +4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x12.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +8 +8 +Button_Switch_THT +SW_DIP_SPSTx05_Piano_10.8x14.26mm_W7.62mm_P2.54mm +5x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x14.26mm +DIP Switch SPST Piano 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Piano_CTS_Series194-5MSTN_W7.62mm_P2.54mm +5x-dip-switch SPST CTS_Series194-5MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Slide_6.7x14.26mm_W7.62mm_P2.54mm_LowProfile +5x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx05_Slide_9.78x14.88mm_W7.62mm_P2.54mm +5x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x14.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +10 +10 +Button_Switch_THT +SW_DIP_SPSTx06_Piano_10.8x16.8mm_W7.62mm_P2.54mm +6x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x16.8mm +DIP Switch SPST Piano 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Piano_CTS_Series194-6MSTN_W7.62mm_P2.54mm +6x-dip-switch SPST CTS_Series194-6MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Slide_6.7x16.8mm_W7.62mm_P2.54mm_LowProfile +6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx06_Slide_9.78x17.42mm_W7.62mm_P2.54mm +6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x17.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +12 +12 +Button_Switch_THT +SW_DIP_SPSTx07_Piano_10.8x19.34mm_W7.62mm_P2.54mm +7x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x19.34mm +DIP Switch SPST Piano 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Piano_CTS_Series194-7MSTN_W7.62mm_P2.54mm +7x-dip-switch SPST CTS_Series194-7MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Slide_6.7x19.34mm_W7.62mm_P2.54mm_LowProfile +7x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx07_Slide_9.78x19.96mm_W7.62mm_P2.54mm +7x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x19.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +14 +14 +Button_Switch_THT +SW_DIP_SPSTx08_Piano_10.8x21.88mm_W7.62mm_P2.54mm +8x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x21.88mm +DIP Switch SPST Piano 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Piano_CTS_Series194-8MSTN_W7.62mm_P2.54mm +8x-dip-switch SPST CTS_Series194-8MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Slide_6.7x21.88mm_W7.62mm_P2.54mm_LowProfile +8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx08_Slide_9.78x22.5mm_W7.62mm_P2.54mm +8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x22.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +16 +16 +Button_Switch_THT +SW_DIP_SPSTx09_Piano_10.8x24.42mm_W7.62mm_P2.54mm +9x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x24.42mm +DIP Switch SPST Piano 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Piano_CTS_Series194-9MSTN_W7.62mm_P2.54mm +9x-dip-switch SPST CTS_Series194-9MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Slide_6.7x24.42mm_W7.62mm_P2.54mm_LowProfile +9x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx09_Slide_9.78x25.04mm_W7.62mm_P2.54mm +9x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x25.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +18 +18 +Button_Switch_THT +SW_DIP_SPSTx10_Piano_10.8x26.96mm_W7.62mm_P2.54mm +10x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x26.96mm +DIP Switch SPST Piano 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Piano_CTS_Series194-10MSTN_W7.62mm_P2.54mm +10x-dip-switch SPST CTS_Series194-10MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Slide_6.7x26.96mm_W7.62mm_P2.54mm_LowProfile +10x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx10_Slide_9.78x27.58mm_W7.62mm_P2.54mm +10x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x27.58mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +20 +20 +Button_Switch_THT +SW_DIP_SPSTx11_Piano_10.8x29.5mm_W7.62mm_P2.54mm +11x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x29.5mm +DIP Switch SPST Piano 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Piano_CTS_Series194-11MSTN_W7.62mm_P2.54mm +11x-dip-switch SPST CTS_Series194-11MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Slide_6.7x29.5mm_W7.62mm_P2.54mm_LowProfile +11x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx11_Slide_9.78x30.12mm_W7.62mm_P2.54mm +11x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x30.12mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +22 +22 +Button_Switch_THT +SW_DIP_SPSTx12_Piano_10.8x32.04mm_W7.62mm_P2.54mm +12x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x32.04mm +DIP Switch SPST Piano 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Piano_CTS_Series194-12MSTN_W7.62mm_P2.54mm +12x-dip-switch SPST CTS_Series194-12MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) +DIP Switch SPST Piano 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Slide_6.7x32.04mm_W7.62mm_P2.54mm_LowProfile +12x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile +DIP Switch SPST Slide 7.62mm 300mil LowProfile +0 +24 +24 +Button_Switch_THT +SW_DIP_SPSTx12_Slide_9.78x32.66mm_W7.62mm_P2.54mm +12x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x32.66mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) +DIP Switch SPST Slide 7.62mm 300mil +0 +24 +24 +Button_Switch_THT +SW_E-Switch_EG1224_SPDT_Angled +E-Switch slide switch, EG series, SPDT, right angle, http://spec_sheets.e-switch.com/specs/P040042.pdf +switch SPDT +0 +7 +3 +Button_Switch_THT +SW_E-Switch_EG1271_SPDT +E-Switch sub miniature slide switch, EG series, SPDT, http://spec_sheets.e-switch.com/specs/P040047.pdf +switch DPDT +0 +6 +6 +Button_Switch_THT +SW_E-Switch_EG2219_DPDT_Angled +E-Switch slide switch, EG series, DPDT, right angle, http://spec_sheets.e-switch.com/specs/P040170.pdf +switch DPDT +0 +10 +6 +Button_Switch_THT +SW_Lever_1P2T_NKK_GW12LxH +Switch, single pole double throw, right angle, http://www.nkkswitches.com/pdf/GW.pdf +switch single-pole double-throw spdt ON-ON horizontal +0 +5 +3 +Button_Switch_THT +SW_MEC_5GTH9 +MEC 5G single pole normally-open tactile switch https://cdn.sos.sk/productdata/80/f6/aabf7be6/5gth9358222.pdf +switch normally-open pushbutton push-button +0 +4 +2 +Button_Switch_THT +SW_NKK_BB15AH +https://www.nkkswitches.com/pdf/Bpushbuttons-1.pdf +Pushbutton Right-angle +0 +5 +3 +Button_Switch_THT +SW_NKK_G1xJP +Switch NKK G1xJP http://www.nkkswitches.com/pdf/gwillum.pdf +SWITCH TOGGLE ILLUM SPDT NKK +0 +6 +6 +Button_Switch_THT +SW_NKK_GW12LJP +Switch, single pole double throw, illuminated paddle, http://www.nkkswitches.com/pdf/gwillum.pdf +switch single-pole double-throw spdt ON-ON illuminated LED +0 +6 +6 +Button_Switch_THT +SW_PUSH-12mm +SW PUSH 12mm https://www.e-switch.com/system/asset/product_line/data_sheet/143/TL1100.pdf +tact sw push 12mm +0 +4 +2 +Button_Switch_THT +SW_PUSH-12mm_Wuerth-430476085716 +SW PUSH 12mm http://katalog.we-online.de/em/datasheet/430476085716.pdf +tact sw push 12mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm +https://www.omron.com/ecb/products/pdf/en-b3f.pdf +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H4.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H7.3mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=7.3mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H8.5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=8.5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H8mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=8mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H9.5mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=9.5mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_6mm_H13mm +tactile push button, 6x6mm e.g. PHAP33xx series, height=13mm +tact sw push 6mm +0 +4 +2 +Button_Switch_THT +SW_PUSH_E-Switch_FS5700DP_DPDT +FS5700 series pushbutton footswitch, DPDT, https://www.e-switch.com/system/asset/product_line/data_sheet/226/FS5700.pdf +switch DPDT footswitch +0 +6 +6 +Button_Switch_THT +SW_PUSH_LCD_E3_SAxxxx +Switch with LCD screen E3 SAxxxx +switch normally-open pushbutton push-button LCD +0 +6 +6 +Button_Switch_THT +SW_PUSH_LCD_E3_SAxxxx_SocketPins +Switch with LCD screen E3 SAxxxx +switch normally-open pushbutton push-button LCD +0 +6 +6 +Button_Switch_THT +SW_Push_1P1T_NO_LED_E-Switch_TL1250 +illuminated right angle tact switch https://www.e-switch.com/system/asset/product_line/data_sheet/148/TL1250.pdf +led push switch right angle +0 +6 +4 +Button_Switch_THT +SW_Push_1P2T_Vertical_E-Switch_800UDP8P1A1M6 + right angle SPDT push button https://www.e-switch.com/system/asset/product_line/data_sheet/210/800U.pdf +IP67 ultra-miniture horizontal +0 +5 +3 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH1xxxxxxV2 +momentary / push-push button, h=17.5mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH2xxxxxxV2 +momentary / push-push button, h=23mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH3xxxxxxV2 +momentary / push-push button, h=20.5mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P1T_Toggle_CK_PVA1xxH4xxxxxxV2 +momentary / push-push button, h=15mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA1 DPST +0 +4 +4 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2OAH5xxxxxxV2 +momentary / push-push button, h=13mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH1xxxxxxV2 +momentary / push-push button, h=17.5mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH2xxxxxxV2 +momentary / push-push button, h=23mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH3xxxxxxV2 +momentary / push-push button, h=20.5mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Toggle_CK_PVA2xxH4xxxxxxV2 +momentary / push-push button, h=15mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf +tact sw push PVA2 DPDT +0 +6 +6 +Button_Switch_THT +SW_Push_2P2T_Vertical_E-Switch_800UDP8P1A1M6 + right angle DPDT push button https://www.e-switch.com/system/asset/product_line/data_sheet/210/800U.pdf +IP67 ultra-miniture horizontal +0 +8 +6 +Button_Switch_THT +SW_SPST_Omron_B3F-315x_Angled +tactile switch, 7.3mm x 6.25mm x 7.4mm, right angle, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf +tactile switch Omron B3F right angle through hole +0 +4 +2 +Button_Switch_THT +SW_Slide_1P2T_CK_OS102011MS2Q +CuK miniature slide switch, OS series, SPDT, https://www.ckswitches.com/media/1428/os.pdf +switch SPDT +0 +5 +3 +Button_Switch_THT +SW_TH_Tactile_Omron_B3F-10xx +SW_TH_Tactile_Omron_B3F-10xx_https://www.omron.com/ecb/products/pdf/en-b3f.pdf +Omron B3F-10xx +0 +4 +2 +Button_Switch_THT +SW_Tactile_SKHH_Angled +tactile switch 6mm ALPS SKHH right angle http://www.alps.com/prod/info/E/HTML/Tact/SnapIn/SKHH/SKHHLUA010.html +tactile switch 6mm ALPS SKHH right angle +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx31-2LFS +tactile switch SPST right angle, PTS645VL31-2 LFS +tactile switch SPST angled PTS645VL31-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx39-2LFS +tactile switch SPST right angle, PTS645VL39-2 LFS +tactile switch SPST angled PTS645VL39-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx58-2LFS +tactile switch SPST right angle, PTS645VL58-2 LFS +tactile switch SPST angled PTS645VL58-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_SPST_Angled_PTS645Vx83-2LFS +tactile switch SPST right angle, PTS645VL83-2 LFS +tactile switch SPST angled PTS645VL83-2 LFS C&K Button +0 +4 +2 +Button_Switch_THT +SW_Tactile_Straight_KSA0Axx1LFTR +SW PUSH SMALL http://www.ckswitches.com/media/1457/ksa_ksl.pdf +SW PUSH SMALL Tactile C&K +0 +4 +2 +Button_Switch_THT +SW_Tactile_Straight_KSL0Axx1LFTR +SW PUSH SMALL http://www.ckswitches.com/media/1457/ksa_ksl.pdf +SW PUSH SMALL Tactile C&K +0 +4 +2 +Buzzer_Beeper +Buzzer_12x9.5RM7.6 +Generic Buzzer, D12mm height 9.5mm with RM7.6mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_15x7.5RM7.6 +Generic Buzzer, D15mm height 7.5mm with RM7.6mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_CUI_CPT-9019S-SMT +https://www.cui.com/product/resource/cpt-9019s-smt.pdf +buzzer piezo +0 +2 +2 +Buzzer_Beeper +Buzzer_D14mm_H7mm_P10mm +Generic Buzzer, D14mm height 7mm with pitch 10mm +buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_Mallory_AST1109MLTRQ +Mallory low-profile piezo buzzer, https://mspindy.com/spec-sheets/AST1109MLTRQ.pdf +buzzer piezo +0 +2 +2 +Buzzer_Beeper +Buzzer_Mallory_AST1240MLQ +Mallory low-profile piezo buzzer, https://www.mspindy.com/specifications/AST12140MLQ.pdf +piezo buzzer +0 +2 +2 +Buzzer_Beeper +Buzzer_Murata_PKLCS1212E +Murata Buzzer https://www.murata.com/~/media/webrenewal/support/library/catalog/products/sound/p37e.ashx +Murata Buzzer Beeper +0 +2 +2 +Buzzer_Beeper +Buzzer_Murata_PKMCS0909E +Murata Buzzer http://www.murata.com/en-us/api/pdfdownloadapi?cate=&partno=PKMCS0909E4000-R1 +Murata Buzzer Beeper +0 +2 +2 +Buzzer_Beeper +Buzzer_TDK_PS1240P02BT_D12.2mm_H6.5mm +Buzzer, D12.2mm height 6.5mm, https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf +buzzer +0 +2 +2 +Buzzer_Beeper +Indicator_PUI_AI-1440-TWT-24V-2-R +14mm Indicator, https://www.puiaudio.com/media/SpecSheet/AI-1440-TWT-24V-2-R.pdf +piezo buzzer self drive oscillator +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_CUI_CMT-8504-100-SMT +magnetic transducer buzzer, 5V, SPL of 100 dB at 10 cm, https://www.cuidevices.com/product/resource/pdf/cmt-8504-100-smt-tr.pdf +CMT 8504 +0 +4 +4 +Buzzer_Beeper +MagneticBuzzer_CUI_CST-931RP-A +CST-931RP-A, http://www.cui.com/product/resource/cst-931rp-a.pdf +CST-931RP-A +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kingstate_KCG0601 +Buzzer, Elektromagnetic Beeper, Summer, +Kingstate KCG0601 +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_Kobitone_254-EMB84Q-RO +MagneticBuzzer Kobitone 254-EMB84Q-RO https://www.mouser.es/datasheet/2/209/KT-400385-1171904.pdf +MagneticBuzzer Kobitone 254-EMB84Q-RO +0 +3 +3 +Buzzer_Beeper +MagneticBuzzer_PUI_AT-0927-TT-6-R +Buzzer Magnetic 9mm AT-0927-TT-6-R, http://www.puiaudio.com/pdf/AT-0927-TT-6-R.pdf +Buzzer Magnetic 9mm AT-0927-TT-6-R +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_ProSignal_ABI-009-RC +Buzzer, Elektromagnetic Beeper, Summer, 6V-DC, +Pro Signal ABI-009-RC +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_ProSignal_ABI-010-RC +Buzzer, Elektromagnetic Beeper, Summer, 12V-DC, +Pro Signal ABI-010-RC +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_ProSignal_ABT-410-RC +Buzzer, Elektromagnetic Beeper, Summer, 1,5V-DC, +Pro Signal ABT-410-RC +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_ProjectsUnlimited_AI-4228-TWT-R +Buzzer, Elektromagnetic Beeper, Summer, 3-28V-DC, https://www.kynix.com/uploadfiles/pdf/AI-4228-TWT-R.pdf +Projects Unlimited AI-4228-TWT-R +0 +2 +2 +Buzzer_Beeper +MagneticBuzzer_StarMicronics_HMB-06_HMB-12 +Buzzer, Elektromagnetic Beeper, Summer, +Star Micronics HMB-06 HMB-12 +0 +2 +2 +Buzzer_Beeper +PUIAudio_SMT_0825_S_4_R +SMD 8540, http://www.puiaudio.com/product-detail.aspx?partnumber=SMT-0825-S-4-R +SMD 8540 +0 +4 +4 +Buzzer_Beeper +Speaker_CUI_CMR-1206S-67 +Speaker, 30mW, 300-7000Hz, IP67 face, 12x6x2,25mm, https://www.cuidevices.com/product/resource/cmr-12062s-67.pdf +speaker CUI +0 +2 +2 +Calibration_Scale +Gauge_10mm_Type1_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 1, +Gauge Massstab 10mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type1_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 1, +Gauge Massstab 10mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type2_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 2, +Gauge Massstab 10mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type2_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 2, +Gauge Massstab 10mm SilkScreenTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type3_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 3, +Gauge Massstab 10mm CopperTop Type 3 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type3_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 3, +Gauge Massstab 10mm SilkScreenTop Type 3 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type4_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 4, +Gauge Massstab 10mm CopperTop Type 4 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type4_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 4, +Gauge Massstab 10mm SilkScreenTop Type 4 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type5_CopperTop +Gauge, Massstab, 10mm, CopperTop, Type 5, +Gauge Massstab 10mm CopperTop Type 5 +0 +0 +0 +Calibration_Scale +Gauge_10mm_Type5_SilkScreenTop +Gauge, Massstab, 10mm, SilkScreenTop, Type 5, +Gauge Massstab 10mm SilkScreenTop Type 5 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type1_CopperTop +Gauge, Massstab, 50mm, CopperTop, Type 1, +Gauge Massstab 50mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type1_SilkScreenTop +Gauge, Massstab, 50mm, SilkScreenTop, Type 1, +Gauge Massstab 50mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type2_CopperTop +Gauge, Massstab, 50mm, CopperTop, Type 2, +Gauge Massstab 50mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_50mm_Type2_SilkScreenTop +Gauge, Massstab, 50mm, SilkScreenTop, Type 2, +Gauge Massstab 50mm SilkScreenTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Grid_Type1_CopperTop +Gauge, Massstab, 100mm, Gitter, Grid, CopperTop, Type 1, +Gauge Massstab 100mm Gitter Grid CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type1_CopperTop +Gauge, Massstab, 100mm, CopperTop, Type 1, +Gauge Massstab 100mm CopperTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type1_SilkScreenTop +Gauge, Massstab, 100mm, SilkScreenTop, Type 1, +Gauge Massstab 100mm SilkScreenTop Type 1 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type2_CopperTop +Gauge, Massstab, 100mm, CopperTop, Type 2, +Gauge Massstab 100mm CopperTop Type 2 +0 +0 +0 +Calibration_Scale +Gauge_100mm_Type2_SilkScreenTop +Gauge, Massstab, 100mm, SilkScreenTop, Type 2, +Gauge Massstab 100mm SilkScreenTop Type 2 +0 +0 +0 +Capacitor_SMD +CP_Elec_3x5.3 +SMT capacitor, aluminium electrolytic, 3x5.3, Cornell Dubilier Electronics +Capacitor Electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_3x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 3.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x3 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 4.0x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.3 +SMD capacitor, aluminum electrolytic, Vishay, 4.0x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.4 +SMD capacitor, aluminum electrolytic, Panasonic A5 / Nichicon, 4.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 4.0x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_4x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 4.0x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x4.4 +SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.3 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.8 +SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_5x5.9 +SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x3 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x3.9 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x4.5 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x4.9 +SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.2 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.3 +SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.4_Nichicon +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x5.9 +SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_6.3x9.9 +SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x5.4 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.2 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.5 +SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.7 +SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x6.9 +SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x10 +SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x10.5 +SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_8x11.9 +SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x7.7 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x7.9 +SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x10 +SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x10.5 +SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x12.5 +SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x12.6 +SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_10x14.3 +SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_16x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_16x22 +SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_18x17.5 +SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_18x22 +SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf +capacitor electrolytic +0 +2 +2 +Capacitor_SMD +CP_Elec_CAP-XX_DMF3Zxxxxxxxx3D +5.5V, 470mF supercapacitor, 45mohm, -40ยบC to +70ยบC, https://www.cap-xx.com/wp-content/uploads/datasheets/CAP-XX-DMF470mF-Datasheet.pdf +supercap +0 +3 +3 +Capacitor_SMD +C_0201_0603Metric +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +capacitor +0 +4 +2 +Capacitor_SMD +C_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +4 +2 +Capacitor_SMD +C_0402_1005Metric +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0402_1005Metric_Pad0.74x0.62mm_HandSolder +Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0504_1310Metric +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0504_1310Metric_Pad0.83x1.28mm_HandSolder +Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0603_1608Metric +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0603_1608Metric_Pad1.08x0.95mm_HandSolder +Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_0805_2012Metric +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_0805_2012Metric_Pad1.18x1.45mm_HandSolder +Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_01005_0402Metric +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +capacitor +0 +4 +2 +Capacitor_SMD +C_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +4 +2 +Capacitor_SMD +C_1206_3216Metric +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1206_3216Metric_Pad1.33x1.80mm_HandSolder +Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1210_3225Metric +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1210_3225Metric_Pad1.33x2.70mm_HandSolder +Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1812_4532Metric +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1812_4532Metric_Pad1.57x3.40mm_HandSolder +Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_1825_4564Metric +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_1825_4564Metric_Pad1.57x6.80mm_HandSolder +Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_2220_5650Metric +Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_2220_5650Metric_Pad1.97x5.40mm_HandSolder +Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_2225_5664Metric +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_2225_5664Metric_Pad1.80x6.60mm_HandSolder +Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_3640_9110Metric +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor +0 +2 +2 +Capacitor_SMD +C_3640_9110Metric_Pad2.10x10.45mm_HandSolder +Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator +capacitor handsolder +0 +2 +2 +Capacitor_SMD +C_Elec_3x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 3.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_4x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 4.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_4x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 4.0x5.8mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_5x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_5x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x5.8 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_6.3x7.7 +SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x5.4 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x6.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_8x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Elec_10x10.2 +SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm +capacitor electrolyic nonpolar +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZB4-A +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZB4 TZB4-A +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZB4-B +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZB4 TZB4-A +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZC3 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZC3 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZR1 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZR1 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZW4 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZW4 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Murata_TZY2 +trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb + Murata TZY2 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Sprague-Goodman_SGC3 +trimmer capacitor SMD horizontal, http://media.wix.com/ugd/d86717_38d9821e12823a7aa9cef38c6c2a73cc.pdf + Sprague Goodman SGC3 +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JN +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JN +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JQ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JQ +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JR +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JR +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JV +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JV +0 +2 +2 +Capacitor_SMD +C_Trimmer_Voltronics_JZ +trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf + Voltronics JR +0 +2 +2 +Capacitor_THT +CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf +CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf +CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor +CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal +CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf +CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D4.0mm_P1.50mm +CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D4.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D5.0mm_P2.00mm +CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D5.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D6.3mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D7.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D8.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P2.50mm_P5.00mm +CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +Capacitor_THT +CP_Radial_D10.0mm_P3.50mm +CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P3.80mm +CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D10.0mm_P5.00mm_P7.50mm +CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor +0 +4 +2 +Capacitor_THT +CP_Radial_D10.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D12.5mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P2.50mm +CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D13.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D14.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D14.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D16.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D17.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D18.0mm_P7.50mm +CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor +CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=22mm, height=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm height 40mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D22.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=24mm, height=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm height 40mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D24.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=25mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm height 45mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D25.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=26mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm height 45mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D26.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=30mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm height 45mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D30.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=35mm, height=50mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm height 50mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D35.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, diameter=40mm, height=50mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm height 50mm Electrolytic Capacitor +0 +3 +2 +Capacitor_THT +CP_Radial_D40.0mm_P10.00mm_SnapIn +CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf +CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D4.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D4.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D5.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D6.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D6.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D7.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D7.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D8.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D8.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D9.0mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D9.0mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D10.5mm_P2.50mm +CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +CP_Radial_Tantal_D10.5mm_P5.00mm +CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf +CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf +C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm +0 +2 +2 +Capacitor_THT +C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm +0 +2 +2 +Capacitor_THT +C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm +0 +2 +2 +Capacitor_THT +C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal +C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf +C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm +0 +2 +2 +Capacitor_THT +C_Disc_D3.0mm_W1.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D3.0mm_W2.0mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor +C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D3.4mm_W2.1mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D3.8mm_W2.6mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D4.3mm_W1.9mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D4.7mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D5.0mm_W2.5mm_P2.50mm +C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D5.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D5.1mm_W3.2mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf +C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D6.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D6.0mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor +C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W4.4mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D7.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D8.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D9.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.0mm_W2.5mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf +C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.5mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D10.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D11.0mm_W5.0mm_P5.00mm +C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D11.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D11.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D12.0mm_W4.4mm_P7.75mm +C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor +C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D12.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D12.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D14.5mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D14.5mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D16.0mm_W5.0mm_P7.50mm +C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Disc_D16.0mm_W5.0mm_P10.00mm +C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf +C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D4.0mm_H5.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D4.0mm_H7.0mm_P1.50mm +C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D5.0mm_H5.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D5.0mm_H7.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D5.0mm_H11.0mm_P2.00mm +C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D6.3mm_H5.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D6.3mm_H7.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D6.3mm_H11.0mm_P2.50mm +C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D8.0mm_H7.0mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D8.0mm_H11.5mm_P3.50mm +C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D10.0mm_H12.5mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D10.0mm_H16.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D10.0mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D12.5mm_H20.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D12.5mm_H25.0mm_P5.00mm +C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D16.0mm_H25.0mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D16.0mm_H31.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Radial_D18.0mm_H35.5mm_P7.50mm +C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor +C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.0mm_W2.5mm_P2.50mm +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor +C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 +C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf +C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W2.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W2.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm +C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor +C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor +0 +4 +2 +Capacitor_THT +C_Rect_L7.0mm_W3.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W4.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W6.0mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.0mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf +C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L7.5mm_W6.5mm_P5.00mm +C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT +C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm +C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor +C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor +0 +4 +2 +Capacitor_THT +C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 +C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT +C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm +C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor +C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor +0 +4 +2 +Capacitor_THT +C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 +C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT +C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf +C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 +C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT +C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L27.0mm_W9.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor +C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L27.0mm_W9.0mm_P23.00mm +C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor +C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L27.0mm_W11.0mm_P22.00mm +C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor +C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 +C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT +C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf +C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L32.0mm_W15.0mm_P27.00mm +C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor +C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 +C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor +0 +2 +2 +Capacitor_THT +C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 +C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf +C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor +0 +2 +2 +Capacitor_THT +DX_5R5HxxxxU_D11.5mm_P10.00mm +CP, Radial series, Radial, pin pitch=10.00mm, diameter=11.5mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf +CP Radial series Radial pin pitch 10.00mm diameter 11.5mm supercapacitor +0 +2 +2 +Capacitor_THT +DX_5R5VxxxxU_D11.5mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=11.5mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf +CP Radial series Radial pin pitch 5.00mm diameter 11.5mm supercapacitor +0 +2 +2 +Capacitor_THT +DX_5R5VxxxxU_D19.0mm_P5.00mm +CP, Radial series, Radial, pin pitch=5.00mm, diameter=19mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf +CP Radial series Radial pin pitch 5.00mm diameter 19mm supercapacitor +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-08_AVX-J +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-10_AVX-L +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-12_Kemet-R +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm_HandSolder +Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-15_AVX-P +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm_HandSolder +Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-10_Kemet-I +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-12_Kemet-S +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-18_Kemet-A +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder +Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-12_Kemet-T +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-15_AVX-H +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-21_Kemet-B +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-15_Kemet-U +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-20_AVX-F +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-28_Kemet-C +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder +Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-20_AVX-U +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm_HandSolder +Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-28_AVX-C +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm_HandSolder +Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-15_AVX-R +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-20_AVX-M +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-28_AVX-M +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-38_AVX-R +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm_HandSolder +Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-15_Kemet-W +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-20_Kemet-V +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-30_AVX-N +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-31_Kemet-D +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-40_Kemet-Y +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-43_Kemet-X +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm_HandSolder +Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7360-38_Kemet-E +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm_HandSolder +Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-38_AVX-V +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm_HandSolder +Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-438_AVX-U +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Capacitor_Tantalum_SMD +CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm_HandSolder +Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator +capacitor tantalum +0 +2 +2 +Connector +Banana_Cliff_FCR7350x_S16N-PC_Horizontal +Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf +cliff 4mm socket jack banana +0 +1 +1 +Connector +Banana_Jack_1Pin +Single banana socket, footprint - 6mm drill +banana socket +0 +1 +1 +Connector +Banana_Jack_2Pin +Dual banana socket, footprint - 2 x 6mm drills +banana socket +0 +2 +2 +Connector +Banana_Jack_3Pin +Triple banana socket, footprint - 3 x 6mm drills +banana socket +0 +3 +3 +Connector +CUI_PD-30 +3 pin connector, PD-30, http://www.cui.com/product/resource/pd-30.pdf +connector 3-pin PD-30 power DIN +0 +4 +4 +Connector +CUI_PD-30S +3-pin nonstandard DIN connector, shielded, PD-30S, http://www.cui.com/product/resource/pd-30s.pdf +connector 3-pin PD-30S power DIN shielded +0 +8 +5 +Connector +CUI_PD-30S_CircularHoles +3-pin nonstandard DIN connector, shielded, PD-30S, http://www.cui.com/product/resource/pd-30s.pdf +connector 3-pin PD-30S power DIN shielded +0 +8 +5 +Connector +CalTest_CT3151 +Right-angle standard banana jack, http://www.caltestelectronics.com/images/attachments/P315100rH_drawing.pdf +banana jack horizontal +0 +4 +1 +Connector +Connector_SFP_and_Cage +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=2227302&DocType=Customer+Drawing&DocLang=English +SFP+ SFP +0 +40 +21 +Connector +DTF13-12Px +http://www.te.com/usa-en/product-DTF13-12PA-G003.html +DEUTSCH DT header 12 pin +0 +12 +12 +Connector +FanPinHeader_1x03_P2.54mm_Vertical +3-pin CPU fan Through hole pin header, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf +pin header 3-pin CPU fan +0 +3 +3 +Connector +FanPinHeader_1x04_P2.54mm_Vertical +4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf +pin header 4-pin CPU fan +0 +4 +4 +Connector +GB042-34S-H10 +http://www.lsmtron.com/pdf/Connector&Antenna_catalog.PDF +34pin SMD connector +0 +34 +34 +Connector +IHI_B6A-PCB-45_Vertical +https://lugsdirect.com/PDF_Webprint/B6A-PCB-45-XX(-X).pdf +connector IHI B6A-PCB-45 +0 +49 +1 +Connector +JWT_A3963_1x02_P3.96mm_Vertical +JWT A3963, 3.96mm pitch Pin head connector (http://www.jwt.com.tw/pro_pdf/A3963.pdf) +connector JWT A3963 pinhead +0 +2 +2 +Connector +NS-Tech_Grove_1x04_P2mm_Vertical +https://statics3.seeedstudio.com/images/opl/datasheet/3470130P1.pdf +Grove-1x04 +0 +4 +4 +Connector +SpringContact_Harwin_S1941-46R +7.25mm SMT Multi-directional Spring Contact (T+R), https://cdn.harwin.com/pdfs/S1941R.pdf +spring contact emi emc shield +0 +1 +1 +Connector +Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2030-IDC.pdf +tag connect programming header pogo pins +0 +6 +6 +Connector +Tag-Connect_TC2030-IDC-NL_2x03_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2030-IDC-NL.pdf +tag connect programming header pogo pins +0 +6 +6 +Connector +Tag-Connect_TC2050-IDC-FP_2x05_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2050-IDC-430%20Datasheet.pdf +tag connect programming header pogo pins +0 +10 +10 +Connector +Tag-Connect_TC2050-IDC-NL_2x05_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2050-IDC-NL%20Datasheet.pdf +tag connect programming header pogo pins +0 +10 +10 +Connector +Tag-Connect_TC2050-IDC-NL_2x05_P1.27mm_Vertical_with_bottom_clip +Tag-Connect programming header with bottom courtyard for TC2050-NL Clip board ; https://www.tag-connect.com/wp-content/uploads/bsk-pdf-manager/TC2050-IDC-NL_Datasheet_8.pdf https://www.tag-connect.com/wp-content/uploads/bsk-pdf-manager/TC2050-CLIP_Datasheet_25.pdf +tag connect programming header pogo pins +0 +10 +10 +Connector +Tag-Connect_TC2070-IDC-FP_2x07_P1.27mm_Vertical +Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2070-IDC%20Datasheet.pdf +tag connect programming header pogo pins +0 +14 +14 +Connector_AMASS +AMASS_MR30PW-FB_1x03_P3.50mm_Horizontal +Connector XT30 Horizontal PCB Female, https://www.tme.eu/en/Document/5e47640ba39fa492dbd4c0f4c8ae7b93/MR30PW%20SPEC.pdf +RC Connector XT30 +0 +5 +3 +Connector_AMASS +AMASS_MR30PW-M_1x03_P3.50mm_Horizontal +Connector XT30 Horizontal PCB Male, https://www.tme.eu/en/Document/5e47640ba39fa492dbd4c0f4c8ae7b93/MR30PW%20SPEC.pdf +RC Connector XT30 +0 +5 +3 +Connector_AMASS +AMASS_XT30PW-F_1x02_P2.50mm_Horizontal +Connector XT30 Horizontal PCB Female, https://www.tme.eu/en/Document/ce4077e36b79046da520ca73227e15de/XT30PW%20SPEC.pdf +RC Connector XT30 +0 +4 +2 +Connector_AMASS +AMASS_XT30PW-M_1x02_P2.50mm_Horizontal +Connector XT30 Horizontal PCB Male, https://www.tme.eu/en/Document/ce4077e36b79046da520ca73227e15de/XT30PW%20SPEC.pdf +RC Connector XT30 +0 +4 +2 +Connector_AMASS +AMASS_XT30U-F_1x02_P5.0mm_Vertical +Connector XT30 Vertical Cable Female, https://www.tme.eu/en/Document/3cbfa5cfa544d79584972dd5234a409e/XT30U%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT30U-M_1x02_P5.0mm_Vertical +Connector XT30 Vertical Cable Male, https://www.tme.eu/en/Document/3cbfa5cfa544d79584972dd5234a409e/XT30U%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT30UPB-F_1x02_P5.0mm_Vertical +Connector XT30 Vertical PCB Female, https://www.tme.eu/en/Document/4acc913878197f8c2e30d4b8cdc47230/XT30UPB%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT30UPB-M_1x02_P5.0mm_Vertical +Connector XT30 Vertical PCB Male, https://www.tme.eu/en/Document/4acc913878197f8c2e30d4b8cdc47230/XT30UPB%20SPEC.pdf +RC Connector XT30 +0 +2 +2 +Connector_AMASS +AMASS_XT60-F_1x02_P7.20mm_Vertical +AMASS female XT60, through hole, vertical, https://www.tme.eu/Document/2d152ced3b7a446066e6c419d84bb460/XT60%20SPEC.pdf +XT60 female vertical +0 +2 +2 +Connector_AMASS +AMASS_XT60-M_1x02_P7.20mm_Vertical +AMASS female XT60, through hole, vertical, https://www.tme.eu/Document/2d152ced3b7a446066e6c419d84bb460/XT60%20SPEC.pdf +XT60 female vertical +0 +2 +2 +Connector_AMASS +AMASS_XT60IPW-M_1x03_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Male, https://www.bto.pl/pdf/08988/XT60IPW-M3.pdf +RC Connector XT60 +0 +5 +3 +Connector_AMASS +AMASS_XT60PW-F_1x02_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Female, https://www.tme.eu/en/Document/9b8d0c5eb7094295f3d3112c214d3ade/XT60PW%20SPEC.pdf +RC Connector XT60 +0 +4 +2 +Connector_AMASS +AMASS_XT60PW-M_1x02_P7.20mm_Horizontal +Connector XT60 Horizontal PCB Female, https://www.tme.eu/en/Document/9b8d0c5eb7094295f3d3112c214d3ade/XT60PW%20SPEC.pdf +RC Connector XT60 +0 +4 +2 +Connector_Amphenol +Amphenol_M8S-03PMMR-SF8001 +M8 Male connector for panel, 90ยฐ PCB mount (https://www.amphenolltw.com/2012download/2D%20PDF/03_M%20Series%20Sensor%20Connectors/M8S-XXPMMR-SF8001.pdf) +three-pin M8 +0 +5 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ-3523-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cui.com/product/resource/sj-352x-smt-series.pdf) +3.5mm audio cui horizontal jack stereo +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ-3524-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cui.com/product/resource/sj-352x-smt-series.pdf) +3.5mm audio cui horizontal jack stereo +0 +4 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3523N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3524N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +4 +4 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3525N_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf +TRS audio jack stereo horizontal +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3533NG_Horizontal +TRS 3.5mm, horizontal, through-hole, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3533NG_Horizontal_CircularHoles +TRS 3.5mm, horizontal, through-hole, , circular holeshttps://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal circular +0 +3 +3 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3535NG_Horizontal +TRS 3.5mm, horizontal, through-hole, with switch, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ1-3535NG_Horizontal_CircularHoles +TRS 3.5mm, horizontal, through-hole, with switch, circular holes, https://www.cui.com/product/resource/sj1-353xng.pdf +TRS audio jack stereo horizontal circular +0 +5 +5 +Connector_Audio +Jack_3.5mm_CUI_SJ2-3593D-SMT_Horizontal +3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cuidevices.com/product/resource/sj2-359x-smt.pdf) +3.5mm audio cui horizontal jack stereo +0 +5 +5 +Connector_Audio +Jack_3.5mm_KoreanHropartsElec_PJ-320D-4A_Horizontal +Korean Hroparts Elec PJ-320D-4A (https://datasheet.lcsc.com/lcsc/1810121716_Korean-Hroparts-Elec-PJ-320D-4A_C95562.pdf) +smt female jack horizontal +0 +4 +4 +Connector_Audio +Jack_3.5mm_Ledino_KB3SPRS_Horizontal +https://www.reichelt.de/index.html?ACTION=7&LA=3&OPEN=0&INDEX=0&FILENAME=C160%252FKB3SPRS.pdf +jack stereo TRS +0 +5 +5 +Connector_Audio +Jack_3.5mm_Lumberg_1503_07_Horizontal +TRS 3.5mm, horizontal, through-hole, https://downloads.lumberg.com/datenblaetter/en/1503_07.pdf +TRS audio jack horizontal +0 +4 +3 +Connector_Audio +Jack_3.5mm_PJ311_Horizontal +PJ311 6pin SMD 3.5mm stereo headphones jack. +headphones jack plug stereo 3.5mm PJ311 +0 +6 +6 +Connector_Audio +Jack_3.5mm_PJ320D_Horizontal +Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320D-72.html) +3.5mm jack mic microphone phones headphones 4pins audio plug +0 +4 +4 +Connector_Audio +Jack_3.5mm_PJ320E_Horizontal +Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320E-177.html) +3.5mm jack mic microphone phones headphones 4pins audio plug +0 +5 +4 +Connector_Audio +Jack_3.5mm_PJ31060-I_Horizontal +PJ31060-I 6pin SMD 3.5mm headphones jack (http://www.china-bsun.com/Product48/1577.html) +headphones jack plug stereo 3.5mm PJ31060-I PJ31060 +0 +6 +6 +Connector_Audio +Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles +TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html) +WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu +0 +3 +3 +Connector_Audio +Jack_3.5mm_Switronic_ST-005-G_horizontal +3.5mm horizontal headphones jack, http://akizukidenshi.com/download/ds/switronic/ST-005-G.pdf +Connector Audio Switronic ST-005-G +0 +4 +3 +Connector_Audio +Jack_3.5mm_Technik_TWP-3002_Horizontal +3.5mm Horizontal Waterproof Stereo Headphones Jack, https://www.technik.com.hk/images/pdf_product/WP3002-PA66-A.pdf +audio jack stereo horizontal waterproof +0 +7 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NJ2FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, Non-switching mono jack (T/S), https://www.neutrik.com/en/product/nj2fd-v +neutrik jack vertical +0 +2 +2 +Connector_Audio +Jack_6.35mm_Neutrik_NJ3FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, Non-switching stereo jack (T/R/S), https://www.neutrik.com/en/product/nj3fd-v +neutrik jack vertical +0 +3 +3 +Connector_Audio +Jack_6.35mm_Neutrik_NJ5FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, 2 x switching (normalling) stereo jack (T/TN/R/RN/S), https://www.neutrik.com/en/product/nj5fd-v +neutrik jack vertical +0 +5 +5 +Connector_Audio +Jack_6.35mm_Neutrik_NJ6FD-V_Vertical +6.35mm (1/4 in) Vertical Jack, 3 x switching (normalling) stereo jack (T/TN/R/RN/S/SN), https://www.neutrik.com/en/product/nj6fd-v +neutrik jack vertical +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NJ6TB-V_Vertical +6.35mm (1/4 in) Vertical Jack, 3 x switching (normalling) stereo jack B-gauge type (T/TN/R/RN/S/SN), https://www.neutrik.com/en/product/nj6tb-v +neutrik jack vertical +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HCD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with chrome ferrule and straight PCB pins, https://www.neutrik.com/en/product/nmj4hcd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HFD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with full threaded nose and straight PCB pins, https://www.neutrik.com/en/product/nmj4hfd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HFD3_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with a full threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj4hfd3 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ4HHD2_Horizontal +M Series, 6.35mm (1/4in) mono jack, switched, with a half threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj4hhd2 +neutrik jack m +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HCD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with chrome ferrule and straight PCB pins, https://www.neutrik.com/en/product/nmj6hcd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HCD3_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with chrome ferrule and offset PCB pins, https://www.neutrik.com/en/product/nmj6hcd3 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD2-AU_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, full threaded nose, straight PCB pins, gold plated contacts, https://www.neutrik.com/en/product/nmj6hfd2-au +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and straight PCB pins, https://www.neutrik.com/en/product/nmj6hfd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD3_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj6hfd3 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HFD4_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and fishtail PCB pins, https://www.neutrik.com/en/product/nmj6hfd4 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NMJ6HHD2_Horizontal +M Series, 6.35mm (1/4in) stereo jack, switched, with half threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj6hhd2 +neutrik jack m +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ3HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, unswitched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj3hf-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj4hf-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HF_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, fully threaded nose, https://www.neutrik.com/en/product/nrj4hf +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HH-1_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, half threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj4hh-1 +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ4HH_Horizontal +Slim Jacks, 6.35mm (1/4in) mono jack, switched, half threaded nose, https://www.neutrik.com/en/product/nrj4hh +neutrik jack slim +0 +4 +4 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-1-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hf-1-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hf-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, fully threaded nose, https://www.neutrik.com/en/product/nrj6hf-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HF_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, fully threaded nose, https://www.neutrik.com/en/product/nrj6hf +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, half threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hh-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, half threaded nose, https://www.neutrik.com/en/product/nrj6hh-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HH_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, switched, half threaded nose, https://www.neutrik.com/en/product/nrj6hh +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1-AU_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose, gold plated contacts, efficient chassis ground connection, T+R+S normalling contact, https://www.neutrik.com/en/product/nrj6hm-1-au +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1-PRE_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose, efficient chassis ground connection, T+R normalling contact, https://www.neutrik.com/en/product/nrj6hm-1-pre +neutrik jack slim +0 +6 +5 +Connector_Audio +Jack_6.35mm_Neutrik_NRJ6HM-1_Horizontal +Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose with efficient chassis ground connection, T+R+S normalling contact, https://www.neutrik.com/en/product/nrj6hm-1 +neutrik jack slim +0 +6 +6 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ8HC_Horizontal +Stacking Jacks, Mono dual jack, full nose, https://www.neutrik.com/en/product/nsj8hc +neutrik jack stacking +0 +9 +9 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ8HL_Horizontal +Stacking Jacks, Mono dual jack, quick fix nose, https://www.neutrik.com/en/product/nsj8hl +neutrik jack stacking +0 +9 +9 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HC_Horizontal +Stacking Jacks, Stereo dual jack, full nose, https://www.neutrik.com/en/product/nsj12hc +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HF-1_Horizontal +Stacking Jacks, Stereo dual jack, full threaded nose, https://www.neutrik.com/en/product/nsj12hf-1 +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HH-1_Horizontal +Stacking Jacks, Stereo dual jack, half threaded nose, https://www.neutrik.com/en/product/nsj12hh-1 +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_6.35mm_Neutrik_NSJ12HL_Horizontal +Stacking Jacks, Stereo dual jack, quick fix nose, https://www.neutrik.com/en/product/nsj12hl +neutrik jack stacking +0 +13 +13 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj5fi-h-0 +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj5fi-h +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj5fi-v-0 +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ5FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj5fi-v +neutrik jack combo i +0 +6 +6 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H-0_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fa-h-0 +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H-DA_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/ncj6fa-h-da +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-H_Horizontal +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, https://www.neutrik.com/en/product/ncj6fa-h +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V-0_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fa-v-0 +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V-DA_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/ncj6fa-v-da +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FA-V_Vertical +Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, https://www.neutrik.com/en/product/ncj6fa-v +neutrik jack combo a +0 +8 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj6fi-h-0 +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fi-h +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj6fi-v-0 +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ6FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fi-v +neutrik jack combo i +0 +7 +7 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, horizontal PCB mount, https://www.neutrik.com/en/product/ncj9fi-h-0 +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj9fi-h +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, vertical PCB mount, https://www.neutrik.com/en/product/ncj9fi-v-0 +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ9FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj9fi-v +neutrik jack combo i +0 +10 +10 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-H-0_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj10fi-h-0 +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-H_Horizontal +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj10fi-h +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-V-0_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj10fi-v-0 +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR-6.35mm_Neutrik_NCJ10FI-V_Vertical +Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj10fi-v +neutrik jack combo i +0 +11 +11 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah1-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1-DA_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3faah1-da +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH1_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH2-0_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah2-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH2_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah2 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAH_Horizontal +AA Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV-0_Vertical +AA Series, 3 pole female receptacle, grounding: without ground/shell contact, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1-0_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav1-0 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1-DA_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3faav1-da +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV1_Vertical +AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV2-0_Vertical +AA Series, 3 pole female receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav2-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV2_Vertical +AA Series, 3 pole female receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav2 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAAV_Vertical +AA Series, 3 pole female receptacle, grounding: without ground/shell contact, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1-DA_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fah1-da +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2-DA_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fah2-da +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH2_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, lateral left PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahl-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahl1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHL1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3fahl1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR1-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR1_Horizontal +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3fahr1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR2-0_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAHR2_Horizontal +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3fahr2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAH_Horizontal +A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav1-0 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1-DA_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fav1-da +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV1_Vertical +A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav1 +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2-0_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav2-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2-DA_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fav2-da +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV2_Vertical +A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav2 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FAV_Vertical +A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-B_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbh1-b +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-DA_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbh1-da +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1-E_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3fbh1-e +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH1_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fbh1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-B_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbh2-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-DA_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbh2-da +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2-E_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3fbh2-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBH2_Horizontal +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fbh2 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBHL1_Horizontal +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3fbhl1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-0_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring, no latch, https://www.neutrik.com/en/product/nc3fbv1-0 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-B_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbv1-b +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1-DA_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbv1-da +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV1_Vertical +B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-B_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbv2-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-DA_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbv2-da +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2-SW_Vertical +B Series, 3 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv2-sw +neutrik xlr b +0 +7 +7 +Connector_Audio +Jack_XLR_Neutrik_NC3FBV2_Vertical +B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv2 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH-0_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH-1_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah-1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAH_Horizontal +AA Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV-0_Vertical +AA Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav-0 +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV-1_Vertical +AA Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav-1 +neutrik xlr aa +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAAV_Vertical +AA Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav +neutrik xlr aa +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAFH-PH_Horizontal +A Series, Chassis connector H female (A series layout), mates with Phoenix MSTB2,5/3-ST, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mafh-ph +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAH-0_Horizontal +A Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mah-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAHL_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3mahl +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAHR_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3mahr +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAH_Horizontal +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mah +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAMH-PH_Horizontal +A Series, Chassis connector Phoenix H male (A series layout), mates with Phoenix MSTB 2,5/3-ST, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mamh-ph +neutrik xlr a +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MAV-0_Vertical +A Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, vertical PCB mount, https://www.neutrik.com/en/product/nc3mav-0 +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MAV_Vertical +A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3mav +neutrik xlr a +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-0_Horizontal +B Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh-0 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-1_Horizontal +B Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh-1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbh-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH-E_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3mbh-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHL-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral left PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbhl-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHL_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral left PCB mount, https://www.neutrik.com/en/product/nc3mbhl +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHR-B_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral right PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbhr-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBHR_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral right PCB mount, https://www.neutrik.com/en/product/nc3mbhr +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBH_Horizontal +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-0_Vertical +B Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-0 +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-1_Vertical +B Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-1 +neutrik xlr b +0 +3 +3 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-B_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbv-b +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-E_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3mbv-e +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV-SW_Vertical +B Series, 3 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-sw +neutrik xlr b +0 +7 +7 +Connector_Audio +Jack_XLR_Neutrik_NC3MBV_Vertical +B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv +neutrik xlr b +0 +4 +4 +Connector_Audio +Jack_XLR_Neutrik_NC4FAH-0_Horizontal +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc4fah-0 +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAH_Horizontal +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4fah +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAV-0_Vertical +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc4fav-0 +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FAV_Vertical +A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4fav +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FBH_Horizontal +B Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4fbh +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4FBV_Vertical +B Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4fbv +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MAH_Horizontal +A Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4mah +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MAV_Vertical +A Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4mav +neutrik xlr a +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MBH_Horizontal +B Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4mbh +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC4MBV_Vertical +B Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4mbv +neutrik xlr b +0 +5 +5 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH-0_Horizontal +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc5fah-0 +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH-DA_Horizontal +A Series, 5 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc5fah-da +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAH_Horizontal +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5fah +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV-DA_Vertical +A Series, 5 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc5fav-da +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV-SW_Vertical +A Series, 5 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, color coding possible, https://www.neutrik.com/en/product/nc5fav-sw +neutrik xlr a +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5FAV_Vertical +A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fav +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBH-B_Horizontal +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5fbh-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBH_Horizontal +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5fbh +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV-B_Vertical +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5fbv-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV-SW_Vertical +B Series, 5 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fbv-sw +neutrik xlr b +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5FBV_Vertical +B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fbv +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MAH_Horizontal +A Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5mah +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MAV-SW_Vertical +A Series, 5 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mav-sw +neutrik xlr a +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5MAV_Vertical +A Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mav +neutrik xlr a +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBH-B_Horizontal +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5mbh-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBH_Horizontal +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5mbh +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV-B_Vertical +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5mbv-b +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV-SW_Vertical +B Series, 5 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mbv-sw +neutrik xlr b +0 +9 +9 +Connector_Audio +Jack_XLR_Neutrik_NC5MBV_Vertical +B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mbv +neutrik xlr b +0 +6 +6 +Connector_Audio +Jack_speakON-6.35mm_Neutrik_NLJ2MD-H_Horizontal +speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, horizontal pcb mount, https://www.neutrik.com/en/product/nlj2md-h +neutrik speakon combo +0 +2 +2 +Connector_Audio +Jack_speakON-6.35mm_Neutrik_NLJ2MD-V_Vertical +speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, vertical pcb mount, https://www.neutrik.com/en/product/nlj2md-v +neutrik speakon combo +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL2MD-H_Horizontal +speakON Chassis Connectors, 2 pole chassis connector, gray D-size flange, countersunk thru holes, horizontal PCB, https://www.neutrik.com/en/product/nl2md-h +neutrik speakon +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL2MD-V_Vertical +speakON Chassis Connectors, 2 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, https://www.neutrik.com/en/product/nl2md-v +neutrik speakon +0 +2 +2 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-H-1_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, countersunk thru holes, horizontal PCB mount, https://www.neutrik.com/en/product/nl4md-h-1 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-H-2_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), horizontal PCB mount, https://www.neutrik.com/en/product/nl4md-h-2 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-H-3_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, self tapping screw holes (A-screw), horizontal PCB mount, https://www.neutrik.com/en/product/nl4md-h-3 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-H_Horizontal +speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), horizontal PCB mount, https://www.neutrik.com/en/product/nl4md-h +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-V-1_Vertical +speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), vertical PCB mount, https://www.neutrik.com/en/product/nl4md-v-1 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-V-2_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), vertical PCB mount, https://www.neutrik.com/en/product/nl4md-v-2 +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-V-R_Vertical +speakON Chassis Connectors, 4 pole chassis connector, red D-size flange, countersunk thru holes, vertical PCB mount, https://www.neutrik.com/en/product/nl4md-v-r +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-V-S_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, switchable version of NL4MD-V with 8 vertical PCB contacts (4 switching contacts), https://www.neutrik.com/en/product/nl4md-v-s +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NL4MD-V_Vertical +speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, https://www.neutrik.com/en/product/nl4md-v +neutrik speakon +0 +4 +4 +Connector_Audio +Jack_speakON_Neutrik_NL8MD-V-1_Vertical +speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, self tapping screw holes (A-screw), vertical PCB mount, https://www.neutrik.com/en/product/nl8md-v-1 +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NL8MD-V_Vertical +speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, countersunk thru holes, vertical PCB mount, https://www.neutrik.com/en/product/nl8md-v +neutrik speakon +0 +8 +8 +Connector_Audio +Jack_speakON_Neutrik_NLT4MD-V_Vertical +STX Series, 4 pole male chassis connector, metal housing, vertical PCB mount, self tapping screw holes (A-screw), https://www.neutrik.com/en/product/nlt4md-v +neutrik speakon stx +0 +4 +4 +Connector_Audio +MiniXLR-5_Switchcraft_TRAPC_Horizontal +http://www.switchcraft.com/ProductSummary.aspx?Parent=620 http://www.switchcraft.com/Drawings/TRAPC_X-TRASM_X_SERIES_CD.PDF +THT Mini XLR 5Pin right angle +0 +5 +5 +Connector_BarrelJack +BarrelJack_CLIFF_FC681465S_SMT_Horizontal +Surface-mount DC Barrel Jack, https://www.cliffuk.co.uk/products/dcconnectors/FC681465S.pdf +Power Jack SMT +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-036AH-SMT_Horizontal +Surface-mount DC Barrel Jack, http://www.cui.com/product/resource/pj-036ah-smt.pdf +Power Jack SMT +0 +3 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-063AH_Horizontal +Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf +barrel jack cui dc power +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-063AH_Horizontal_CircularHoles +Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf +barrel jack cui dc power +0 +4 +3 +Connector_BarrelJack +BarrelJack_CUI_PJ-102AH_Horizontal +Thin-pin DC Barrel Jack, https://cdn-shop.adafruit.com/datasheets/21mmdcjackDatasheet.pdf +Power Jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_GCT_DCJ200-10-A_Horizontal +Barrel jack connector (5.5 mm outer diameter, 2.05 inner diameter ), https://gct.co/files/drawings/dcj200-10.pdf +connector barrel jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_Horizontal +DC Barrel Jack +Power Jack +0 +3 +3 +Connector_BarrelJack +BarrelJack_Kycon_KLDX-0202-xC_Horizontal +DC Barrel Jack 2mm or 2.5mm center pin, https://www.kycon.com/Pub_Eng_Draw/KLDX-0202-AC%20&%20BC.pdf +power jack 2mm 2.5mm KLDX-0202-BC KLDX-0202-AC +0 +3 +3 +Connector_BarrelJack +BarrelJack_SwitchcraftConxall_RAPC10U_Horizontal +DC Power Jack, 13A, 24V, Panel Mount,Through-hole, https://www.switchcraft.com/Drawings/RAPC10U_CD.pdf +barreljack switchcraftconxall dc power +0 +2 +2 +Connector_BarrelJack +BarrelJack_Wuerth_6941xx301002 +Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf +connector barrel jack +0 +3 +3 +Connector_Card +CF-Card_3M_N7E50-A516xx-30 +Compact Flash Card connector, polarization inverse (https://multimedia.3m.com/mws/media/22424O/3mtm-cf-card-header-type-i-low-profile-surface-mount-ts0747.pdf) +connector cf +0 +54 +50 +Connector_Card +CF-Card_3M_N7E50-E516xx-30 +Compact Flash Card connector, normal polarization (https://multimedia.3m.com/mws/media/22424O/3mtm-cf-card-header-type-i-low-profile-surface-mount-ts0747.pdf) +connector cf +0 +54 +50 +Connector_Card +SD_Hirose_DM1AA_SF_PEJ82 +SD, SMD, top-mount, push-push (https://www.hirose.com/product/document?clcode=CL0609-0004-8-82&productname=DM1AA-SF-PEJ(82)&series=DM1&documenttype=2DDrawing&lang=en&documentid=0000915301) +SD card connector +0 +16 +13 +Connector_Card +SD_Kyocera_145638009211859+ +SD Card Connector, Normal Type, Outer Tail, Without Ejector (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638009511859+ +SD Card Connector, Normal Type, Outer Tail, Spring Eject Type (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638109211859+ +SD Card Connector, Reverse Type, Outer Tail, Without Ejector (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_Kyocera_145638109511859+ +SD Card Connector, Reverse Type, Outer Tail, Spring Eject Type (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) +sd card smt +0 +13 +13 +Connector_Card +SD_TE_2041021 +SD card connector, top mount, SMT (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2041021%7FB%7Fpdf%7FEnglish%7FENG_CD_2041021_B_C_2041021_B.pdf%7F2041021-4) +sd card +0 +15 +12 +Connector_Card +microSD_HC_Hirose_DM3AT-SF-PEJM5 +Micro SD, SMD, right-angle, push-pull (https://www.hirose.com/product/en/download_file/key_name/DM3AT-SF-PEJM5/category/Drawing%20(2D)/doc_file_id/44099/?file_category_id=6&item_id=06090031000&is_series=) +Micro SD +0 +14 +11 +Connector_Card +microSD_HC_Hirose_DM3BT-DSF-PEJS +Micro SD, SMD, reverse on-board, right-angle, push-pull (https://www.hirose.com/product/en/download_file/key_name/DM3BT-DSF-PEJS/category/Drawing%20(2D)/doc_file_id/44097/?file_category_id=6&item_id=06090029900&is_series=) +Micro SD +0 +16 +11 +Connector_Card +microSD_HC_Hirose_DM3D-SF +Micro SD, SMD, right-angle, push-pull (https://media.digikey.com/PDF/Data%20Sheets/Hirose%20PDFs/DM3D-SF.pdf) +Micro SD +0 +14 +11 +Connector_Card +microSD_HC_Molex_47219-2001 +1.10mm Pitch microSD Card Connector, Hinge Type, https://www.molex.com/pdm_docs/sd/472192001_sd.pdf +Micro SD +0 +12 +9 +Connector_Card +microSD_HC_Molex_104031-0811 +1.10mm Pitch microSD Memory Card Connector, Surface Mount, Push-Pull Type, 1.42mm Height, with Detect Switch (https://www.molex.com/pdm_docs/sd/1040310811_sd.pdf) +microSD SD molex +0 +14 +11 +Connector_Card +microSD_HC_Wuerth_693072010801 +http://katalog.we-online.de/em/datasheet/693072010801.pdf +Micro SD Wuerth Wurth Wรผrth +0 +12 +9 +Connector_Card +microSIM_JAE_SF53S006VCBR2000 +https://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ115712.pdf +microSIM GSM Card +0 +14 +7 +Connector_Coaxial +BNC_Amphenol_031-5539_Vertical +BNC coaxial connector vertical, Amphenol 031-71059, https://www.amphenolrf.com/library/download/link/link_id/594427/parent/031-5539/ +BNC Amphenol Vertical +0 +4 +2 +Connector_Coaxial +BNC_Amphenol_031-6575_Horizontal +dual independently isolated BNC plug (https://www.amphenolrf.com/downloads/dl/file/id/2980/product/644/031_6575_customer_drawing.pdf) +Dual BNC Amphenol Horizontal +0 +6 +4 +Connector_Coaxial +BNC_Amphenol_B6252HB-NPP3G-50_Horizontal +http://www.farnell.com/datasheets/612848.pdf +BNC Amphenol Horizontal +0 +4 +2 +Connector_Coaxial +BNC_PanelMountable_Vertical +Panel-mountable BNC connector mounted through PCB, vertical +BNC connector +0 +2 +2 +Connector_Coaxial +BNC_TEConnectivity_1478035_Horizontal +BNC RF Interface, PCB mount 4 pin, Right Angle, Bayonet, 50Ohm, 4GHz, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1478035%7FB1%7Fpdf%7FEnglish%7FENG_CD_1478035_B1.pdf%7F1-1478035-0 +BNC RF interface bayonet 50ohm +0 +5 +2 +Connector_Coaxial +BNC_TEConnectivity_1478204_Vertical +BNC female PCB mount 4 pin straight chassis connector http://www.te.com/usa-en/product-1-1478204-0.html +BNC female PCB mount 4 pin straight chassis connector +0 +5 +2 +Connector_Coaxial +BNC_Win_364A2x95_Horizontal +Dual front isolated BNC plug (https://www.winconn.com/wp-content/uploads/364A2595.pdf) +Dual BNC Horizontal Isolated +0 +6 +3 +Connector_Coaxial +CoaxialSwitch_Hirose_MS-156C3_Horizontal +Subminiature Coaxial Switch 1.35mm High, DC to 11GHz +Switch Coaxial RF +0 +12 +3 +Connector_Coaxial +MMCX_Molex_73415-0961_Horizontal_0.8mm-PCB +Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf +Molex MMCX Horizontal Coaxial +0 +3 +2 +Connector_Coaxial +MMCX_Molex_73415-0961_Horizontal_1.0mm-PCB +Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf +Molex MMCX Horizontal Coaxial +0 +3 +2 +Connector_Coaxial +MMCX_Molex_73415-0961_Horizontal_1.6mm-PCB +Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf +Molex MMCX Horizontal Coaxial +0 +3 +2 +Connector_Coaxial +MMCX_Molex_73415-1471_Vertical +http://www.molex.com/pdm_docs/sd/734151471_sd.pdf +Molex MMCX Coaxial Connector 50 ohms Female Jack Vertical THT +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_901-143_Horizontal + Amphenol RF 901-143 https://www.amphenolrf.com/library/download/link/link_id/585682 +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_901-144_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/7023/product/3103/901_144_customer_drawing.pdf +SMA THT Female Jack Vertical +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-10_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/4007/product/2974/132134_10_customer_drawing.pdf +SMA SMD Female Jack Vertical +0 +3 +2 +Connector_Coaxial +SMA_Amphenol_132134-11_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/3406/product/2975/132134_11_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-14_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/1793/product/2976/132134_14_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134-16_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/1141/product/2978/132134_16_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132134_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132203-12_Horizontal +https://www.amphenolrf.com/media/downloads/1769/132203-12.pdf +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132289_EdgeMount +http://www.amphenolrf.com/132289.html +SMA +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132291-12_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/1688/product/3020/132291_12_customer_drawing.pdf +SMA THT Female Jack Vertical Bulkhead +0 +5 +2 +Connector_Coaxial +SMA_Amphenol_132291_Vertical +https://www.amphenolrf.com/downloads/dl/file/id/3222/product/2918/132291_customer_drawing.pdf +SMA THT Female Jack Vertical Bulkhead +0 +5 +2 +Connector_Coaxial +SMA_Molex_73251-1153_EdgeMount_Horizontal +Molex SMA RF Connectors, Edge Mount, (http://www.molex.com/pdm_docs/sd/732511150_sd.pdf) +sma edge +0 +11 +2 +Connector_Coaxial +SMA_Molex_73251-2120_EdgeMount_Horizontal +Molex SMA RF Connector, Edge Mount, (http://www.molex.com/pdm_docs/sd/732512120_sd.pdf) +sma edge +0 +11 +2 +Connector_Coaxial +SMA_Molex_73251-2200_Horizontal +https://www.molex.com/webdocs/datasheets/pdf/en-us/0732512200_RF_COAX_CONNECTORS.pdf +SMA THT Female Jack Horizontal +0 +5 +2 +Connector_Coaxial +SMA_Samtec_SMA-J-P-X-ST-EM1_EdgeMount +Connector SMA, 0Hz to 20GHz, 50Ohm, Edge Mount (http://suddendocs.samtec.com/prints/sma-j-p-x-st-em1-mkt.pdf) +SMA Straight Samtec Edge Mount +0 +5 +2 +Connector_Coaxial +SMA_Wurth_60312002114503_Vertical +https://www.we-online.de/katalog/datasheet/60312002114503.pdf +SMA THT Female Jack Vertical ExtendedLegs +0 +5 +2 +Connector_Coaxial +SMB_Jack_Vertical +SMB pcb mounting jack +SMB Jack Striaght +0 +5 +2 +Connector_Coaxial +U.FL_Hirose_U.FL-R-SMT-1_Vertical +Hirose U.FL Coaxial https://www.hirose.com/product/en/products/U.FL/U.FL-R-SMT-1%2810%29/ +Hirose U.FL Coaxial +0 +3 +2 +Connector_Coaxial +U.FL_Molex_MCRF_73412-0110_Vertical +Molex Microcoaxial RF Connectors (MCRF), mates Hirose U.FL, (http://www.molex.com/pdm_docs/sd/734120110_sd.pdf) +mcrf hirose ufl u.fl microcoaxial +0 +4 +2 +Connector_DIN +DIN41612_B2_2x8_Female_Vertical_THT +DIN41612 connector, type B/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +16 +16 +Connector_DIN +DIN41612_B2_2x8_Male_Horizontal_THT +DIN41612 connector, type B/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +16 +16 +Connector_DIN +DIN41612_B2_2x16_Female_Vertical_THT +DIN41612 connector, type B/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +32 +32 +Connector_DIN +DIN41612_B2_2x16_Male_Horizontal_THT +DIN41612 connector, type B/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/2 +0 +32 +32 +Connector_DIN +DIN41612_B3_2x5_Female_Vertical_THT +DIN41612 connector, type B/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +10 +10 +Connector_DIN +DIN41612_B3_2x5_Male_Horizontal_THT +DIN41612 connector, type B/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +10 +10 +Connector_DIN +DIN41612_B3_2x10_Female_Vertical_THT +DIN41612 connector, type B/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +20 +20 +Connector_DIN +DIN41612_B3_2x10_Male_Horizontal_THT +DIN41612 connector, type B/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B/3 +0 +20 +20 +Connector_DIN +DIN41612_B_1x32_Female_Vertical_THT +DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_1x32_Male_Horizontal_THT +DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_2x16_Female_Vertical_THT +DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_2x16_Male_Horizontal_THT +DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +32 +32 +Connector_DIN +DIN41612_B_2x32_Female_Vertical_THT +DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +64 +64 +Connector_DIN +DIN41612_B_2x32_Male_Horizontal_THT +DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 B +0 +64 +64 +Connector_DIN +DIN41612_C2_2x16_Female_Vertical_THT +DIN41612 connector, type C/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +32 +32 +Connector_DIN +DIN41612_C2_2x16_Male_Horizontal_THT +DIN41612 connector, type C/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +32 +32 +Connector_DIN +DIN41612_C2_3x16_Female_Vertical_THT +DIN41612 connector, type C/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +48 +48 +Connector_DIN +DIN41612_C2_3x16_Male_Horizontal_THT +DIN41612 connector, type C/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/2 +0 +48 +48 +Connector_DIN +DIN41612_C3_2x10_Female_Vertical_THT +DIN41612 connector, type C/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +20 +20 +Connector_DIN +DIN41612_C3_2x10_Male_Horizontal_THT +DIN41612 connector, type C/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +20 +20 +Connector_DIN +DIN41612_C3_3x10_Female_Vertical_THT +DIN41612 connector, type C/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +30 +30 +Connector_DIN +DIN41612_C3_3x10_Male_Horizontal_THT +DIN41612 connector, type C/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C/3 +0 +30 +30 +Connector_DIN +DIN41612_C_1x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_1x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x16_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x16_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +32 +32 +Connector_DIN +DIN41612_C_2x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +64 +64 +Connector_DIN +DIN41612_C_2x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +64 +64 +Connector_DIN +DIN41612_C_3x16_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +48 +48 +Connector_DIN +DIN41612_C_3x16_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +48 +48 +Connector_DIN +DIN41612_C_3x32_Female_Vertical_THT +DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +96 +96 +Connector_DIN +DIN41612_C_3x32_Male_Horizontal_THT +DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 C +0 +96 +96 +Connector_DIN +DIN41612_D_2x8_Female_Vertical_THT +DIN41612 connector, type D, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +16 +16 +Connector_DIN +DIN41612_D_2x8_Male_Horizontal_THT +DIN41612 connector, type D, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +16 +16 +Connector_DIN +DIN41612_D_2x16_Female_Vertical_THT +DIN41612 connector, type D, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +32 +32 +Connector_DIN +DIN41612_D_2x16_Male_Horizontal_THT +DIN41612 connector, type D, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 D +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_RowsAC_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_2x16_RowsAC_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +32 +32 +Connector_DIN +DIN41612_E_3x16_Female_Vertical_THT +DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +48 +48 +Connector_DIN +DIN41612_E_3x16_Male_Horizontal_THT +DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 E +0 +48 +48 +Connector_DIN +DIN41612_F_2x16_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_RowsZD_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_2x16_RowsZD_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +32 +32 +Connector_DIN +DIN41612_F_3x16_Female_Vertical_THT +DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +48 +48 +Connector_DIN +DIN41612_F_3x16_Male_Horizontal_THT +DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 F +0 +48 +48 +Connector_DIN +DIN41612_Q2_2x16_Male_Horizontal_THT +DIN41612 connector, type Q/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/2 +0 +32 +32 +Connector_DIN +DIN41612_Q2_2x16_Male_Vertical_THT +DIN41612 connector, type Q/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/2 +0 +32 +32 +Connector_DIN +DIN41612_Q3_2x10_Male_Horizontal_THT +DIN41612 connector, type Q/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/3 +0 +20 +20 +Connector_DIN +DIN41612_Q3_2x10_Male_Vertical_THT +DIN41612 connector, type Q/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q/3 +0 +20 +20 +Connector_DIN +DIN41612_Q_2x32_Male_Horizontal_THT +DIN41612 connector, type Q, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q +0 +64 +64 +Connector_DIN +DIN41612_Q_2x32_Male_Vertical_THT +DIN41612 connector, type Q, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 Q +0 +64 +64 +Connector_DIN +DIN41612_R2_2x16_Male_Horizontal_THT +DIN41612 connector, type R/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +32 +32 +Connector_DIN +DIN41612_R2_2x16_Male_Vertical_THT +DIN41612 connector, type R/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +32 +32 +Connector_DIN +DIN41612_R2_3x16_Male_Horizontal_THT +DIN41612 connector, type R/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +48 +48 +Connector_DIN +DIN41612_R2_3x16_Male_Vertical_THT +DIN41612 connector, type R/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/2 +0 +48 +48 +Connector_DIN +DIN41612_R3_2x10_Male_Horizontal_THT +DIN41612 connector, type R/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +20 +20 +Connector_DIN +DIN41612_R3_2x10_Male_Vertical_THT +DIN41612 connector, type R/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +20 +20 +Connector_DIN +DIN41612_R3_3x10_Male_Horizontal_THT +DIN41612 connector, type R/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +30 +30 +Connector_DIN +DIN41612_R3_3x10_Male_Vertical_THT +DIN41612 connector, type R/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R/3 +0 +30 +30 +Connector_DIN +DIN41612_R_1x32_Male_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_1x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x16_Male_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x16_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +32 +32 +Connector_DIN +DIN41612_R_2x32_Male_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +64 +64 +Connector_DIN +DIN41612_R_2x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +64 +64 +Connector_DIN +DIN41612_R_3x16_Male_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +48 +48 +Connector_DIN +DIN41612_R_3x16_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +48 +48 +Connector_DIN +DIN41612_R_3x32_Male_Horizontal_THT +DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +96 +96 +Connector_DIN +DIN41612_R_3x32_Male_Vertical_THT +DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf +DIN 41612 IEC 60603 R +0 +96 +96 +Connector_Dsub +DSUB-9_Female_EdgeMount_P2.77mm +9-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Female_Vertical_P2.77x2.84mm +9-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Female_Vertical_P2.77x2.84mm_MountingHoles +9-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_EdgeMount_P2.77mm +9-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +11 +10 +Connector_Dsub +DSUB-9_Male_Vertical_P2.77x2.84mm +9-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 25mm +0 +9 +9 +Connector_Dsub +DSUB-9_Male_Vertical_P2.77x2.84mm_MountingHoles +9-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +9-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 25mm +0 +11 +10 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Female_Vertical_P2.29x1.98mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 25mm mounting-hole-offset 25mm +0 +17 +16 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15-HD_Male_Vertical_P2.29x1.98mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 25mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_EdgeMount_P2.77mm +15-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Female_Vertical_P2.77x2.84mm +15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Female_Vertical_P2.77x2.84mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_EdgeMount_P2.77mm +15-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-15_Male_Vertical_P2.77x2.84mm +15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +15 +15 +Connector_Dsub +DSUB-15_Male_Vertical_P2.77x2.84mm_MountingHoles +15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +15-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 33.3mm +0 +17 +16 +Connector_Dsub +DSUB-25_Female_EdgeMount_P2.77mm +25-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Female_Vertical_P2.77x2.84mm +25-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Female_Vertical_P2.77x2.84mm_MountingHoles +25-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_EdgeMount_P2.77mm +25-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-25_Male_Vertical_P2.77x2.84mm +25-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +25 +25 +Connector_Dsub +DSUB-25_Male_Vertical_P2.77x2.84mm_MountingHoles +25-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +25-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 47.1mm +0 +27 +26 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Female_Vertical_P2.29x1.98mm_MountingHoles +26-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +26 +26 +Connector_Dsub +DSUB-26-HD_Male_Vertical_P2.29x1.98mm_MountingHoles +26-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +26-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 33.3mm +0 +28 +27 +Connector_Dsub +DSUB-37_Female_EdgeMount_P2.77mm +37-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Female_Vertical_P2.77x2.84mm +37-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Female_Vertical_P2.77x2.84mm_MountingHoles +37-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_EdgeMount_P2.77mm +37-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm +37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-37_Male_Vertical_P2.77x2.84mm +37-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +37 +37 +Connector_Dsub +DSUB-37_Male_Vertical_P2.77x2.84mm_MountingHoles +37-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +37-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 63.5mm +0 +39 +38 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Female_Vertical_P2.29x1.98mm_MountingHoles +44-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm +44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm +0 +44 +44 +Connector_Dsub +DSUB-44-HD_Male_Vertical_P2.29x1.98mm_MountingHoles +44-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +44-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 47.1mm +0 +46 +45 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Female_Horizontal_P2.41x2.54mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x2.54mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Female_Vertical_P2.41x1.98mm_MountingHoles +62-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.41x1.98mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector straight vertical THT female pitch 2.41x1.98mm mounting holes distance 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm +0 +64 +63 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Male_Horizontal_P2.41x2.54mm_EdgePinOffset9.40mm +62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf +62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x2.54mm pin-PCB-offset 9.4mm +0 +62 +62 +Connector_Dsub +DSUB-62-HD_Male_Vertical_P2.41x1.98mm_MountingHoles +62-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.41x1.98mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf +62-pin D-Sub connector straight vertical THT male pitch 2.41x1.98mm mounting holes distance 63.5mm +0 +64 +63 +Connector_FFC-FPC +Hirose_FH12-6S-0.5SH_1x06-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-6S-0.5SH, 6 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +8 +7 +Connector_FFC-FPC +Hirose_FH12-8S-0.5SH_1x08-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-8S-0.5SH, 8 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +10 +9 +Connector_FFC-FPC +Hirose_FH12-10S-0.5SH_1x10-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-10S-0.5SH, 10 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +12 +11 +Connector_FFC-FPC +Hirose_FH12-11S-0.5SH_1x11-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-11S-0.5SH, 11 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +13 +12 +Connector_FFC-FPC +Hirose_FH12-12S-0.5SH_1x12-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-12S-0.5SH, 12 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +14 +13 +Connector_FFC-FPC +Hirose_FH12-13S-0.5SH_1x13-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-13S-0.5SH, 13 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +15 +14 +Connector_FFC-FPC +Hirose_FH12-14S-0.5SH_1x14-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-14S-0.5SH, 14 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +16 +15 +Connector_FFC-FPC +Hirose_FH12-15S-0.5SH_1x15-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-15S-0.5SH, 15 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +17 +16 +Connector_FFC-FPC +Hirose_FH12-16S-0.5SH_1x16-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-16S-0.5SH, 16 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +18 +17 +Connector_FFC-FPC +Hirose_FH12-17S-0.5SH_1x17-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-17S-0.5SH, 17 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +19 +18 +Connector_FFC-FPC +Hirose_FH12-18S-0.5SH_1x18-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-18S-0.5SH, 18 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +20 +19 +Connector_FFC-FPC +Hirose_FH12-19S-0.5SH_1x19-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-19S-0.5SH, 19 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +21 +20 +Connector_FFC-FPC +Hirose_FH12-20S-0.5SH_1x20-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-20S-0.5SH, 20 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +22 +21 +Connector_FFC-FPC +Hirose_FH12-22S-0.5SH_1x22-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-22S-0.5SH, 22 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +24 +23 +Connector_FFC-FPC +Hirose_FH12-24S-0.5SH_1x24-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-24S-0.5SH, 24 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +26 +25 +Connector_FFC-FPC +Hirose_FH12-25S-0.5SH_1x25-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-25S-0.5SH, 25 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +27 +26 +Connector_FFC-FPC +Hirose_FH12-26S-0.5SH_1x26-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-26S-0.5SH, 26 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +28 +27 +Connector_FFC-FPC +Hirose_FH12-28S-0.5SH_1x28-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-28S-0.5SH, 28 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +30 +29 +Connector_FFC-FPC +Hirose_FH12-30S-0.5SH_1x30-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-30S-0.5SH, 30 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +32 +31 +Connector_FFC-FPC +Hirose_FH12-32S-0.5SH_1x32-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-32S-0.5SH, 32 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +34 +33 +Connector_FFC-FPC +Hirose_FH12-33S-0.5SH_1x33-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-33S-0.5SH, 33 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +35 +34 +Connector_FFC-FPC +Hirose_FH12-34S-0.5SH_1x34-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-34S-0.5SH, 34 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +36 +35 +Connector_FFC-FPC +Hirose_FH12-35S-0.5SH_1x35-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-35S-0.5SH, 35 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +37 +36 +Connector_FFC-FPC +Hirose_FH12-36S-0.5SH_1x36-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-36S-0.5SH, 36 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +38 +37 +Connector_FFC-FPC +Hirose_FH12-40S-0.5SH_1x40-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-40S-0.5SH, 40 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +42 +41 +Connector_FFC-FPC +Hirose_FH12-45S-0.5SH_1x45-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-45S-0.5SH, 45 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +47 +46 +Connector_FFC-FPC +Hirose_FH12-50S-0.5SH_1x50-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-50S-0.5SH, 50 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +52 +51 +Connector_FFC-FPC +Hirose_FH12-53S-0.5SH_1x53-1MP_P0.50mm_Horizontal +Hirose FH12, FFC/FPC connector, FH12-53S-0.5SH, 53 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator +connector Hirose FH12 horizontal +0 +55 +54 +Connector_FFC-FPC +Hirose_FH41-30S-0.5SH_1x30_1MP_1SH_P0.5mm_Horizontal +Hirose FH41, FFC/FPC connector, FH41-30S-0.5SH, 30 Pins per row (https://www.hirose.com/fr/product/document?clcode=CL0580-2218-5-05&productname=FH41-30S-0.5SH(05)&series=FH41&documenttype=2DDrawing&lang=fr&documentid=0001001704) +connector Hirose FH41 horizontal +0 +38 +32 +Connector_FFC-FPC +JAE_FF0825SA1_2Rows-25Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0825SA1, 25 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +25 +25 +Connector_FFC-FPC +JAE_FF0829SA1_2Rows-29Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0829SA1, 29 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +29 +29 +Connector_FFC-FPC +JAE_FF0841SA1_2Rows-41Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0841SA1, 41 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +41 +41 +Connector_FFC-FPC +JAE_FF0851SA1_2Rows-51Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0851SA1, 51 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +51 +51 +Connector_FFC-FPC +JAE_FF0871SA1_2Rows-71Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0871SA1, 71 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +71 +71 +Connector_FFC-FPC +JAE_FF0881SA1_2Rows-81Pins_P0.40mm_Horizontal +Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0881SA1, 81 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +81 +81 +Connector_FFC-FPC +Jushuo_AFC07-S06FCA-00_1x6-1MP_P0.50_Horizontal +Jushuo AFC07, FFC/FPC connector, AFC07-S06FCA-00, 6 Pins per row (https://datasheet.lcsc.com/lcsc/1811040204_JUSHUO-AFC07-S32FCC-00_C11061.pdf) +connector jushuo horizontal +0 +8 +7 +Connector_FFC-FPC +Jushuo_AFC07-S24FCA-00_1x24-1MP_P0.50_Horizontal +Jushuo AFC07, FFC/FPC connector, AFC07-S24FCA-00, 24 Pins per row (https://datasheet.lcsc.com/lcsc/1811040204_JUSHUO-AFC07-S32FCC-00_C11061.pdf) +connector jushuo horizontal +0 +26 +25 +Connector_FFC-FPC +Molex_52559-3652_2x18-1MP_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC, 52559-3652, 36 Circuits (https://www.molex.com/pdm_docs/sd/525593652_sd.pdf) +connector Molex top entry +0 +40 +37 +Connector_FFC-FPC +Molex_54132-5033_1x50-1MP_P0.5mm_Horizontal +Molex FFC/FPC connector, 50 bottom-side contacts, 0.5mm pitch, 2.0mm height, https://www.molex.com/pdm_docs/sd/541325033_sd.pdf +FFC FPC +0 +54 +51 +Connector_FFC-FPC +Molex_54548-1071_1x10-1MP_P0.5mm_Horizontal +Molex FFC/FPC connector, 10 bottom-side contacts, 0.5mm pitch, 1.2mm height, https://www.molex.com/pdm_docs/sd/545481071_sd.pdf +FFC FPC connector +0 +12 +11 +Connector_FFC-FPC +Molex_200528-0040_1x04-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0040, 4 Circuits (https://www.molex.com/pdm_docs/sd/2005280040_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +6 +5 +Connector_FFC-FPC +Molex_200528-0050_1x05-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0050, 5 Circuits (https://www.molex.com/pdm_docs/sd/2005280050_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +7 +6 +Connector_FFC-FPC +Molex_200528-0060_1x06-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0060, 6 Circuits (https://www.molex.com/pdm_docs/sd/2005280060_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +8 +7 +Connector_FFC-FPC +Molex_200528-0070_1x07-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0070, 7 Circuits (https://www.molex.com/pdm_docs/sd/2005280070_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +9 +8 +Connector_FFC-FPC +Molex_200528-0080_1x08-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0080, 8 Circuits (https://www.molex.com/pdm_docs/sd/2005280080_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +10 +9 +Connector_FFC-FPC +Molex_200528-0090_1x09-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0090, 9 Circuits (https://www.molex.com/pdm_docs/sd/2005280090_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +11 +10 +Connector_FFC-FPC +Molex_200528-0100_1x10-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0100, 10 Circuits (https://www.molex.com/pdm_docs/sd/2005280100_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +12 +11 +Connector_FFC-FPC +Molex_200528-0110_1x11-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0110, 11 Circuits (https://www.molex.com/pdm_docs/sd/2005280110_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +13 +12 +Connector_FFC-FPC +Molex_200528-0120_1x12-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0120, 12 Circuits (https://www.molex.com/pdm_docs/sd/2005280120_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +14 +13 +Connector_FFC-FPC +Molex_200528-0130_1x13-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0130, 13 Circuits (https://www.molex.com/pdm_docs/sd/2005280130_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +15 +14 +Connector_FFC-FPC +Molex_200528-0140_1x14-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0140, 14 Circuits (https://www.molex.com/pdm_docs/sd/2005280140_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +16 +15 +Connector_FFC-FPC +Molex_200528-0150_1x15-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0150, 15 Circuits (https://www.molex.com/pdm_docs/sd/2005280150_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +17 +16 +Connector_FFC-FPC +Molex_200528-0160_1x16-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0160, 16 Circuits (https://www.molex.com/pdm_docs/sd/2005280160_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +18 +17 +Connector_FFC-FPC +Molex_200528-0170_1x17-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0170, 17 Circuits (https://www.molex.com/pdm_docs/sd/2005280170_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +19 +18 +Connector_FFC-FPC +Molex_200528-0180_1x18-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0180, 18 Circuits (https://www.molex.com/pdm_docs/sd/2005280180_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +20 +19 +Connector_FFC-FPC +Molex_200528-0190_1x19-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0190, 19 Circuits (https://www.molex.com/pdm_docs/sd/2005280190_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +21 +20 +Connector_FFC-FPC +Molex_200528-0200_1x20-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0200, 20 Circuits (https://www.molex.com/pdm_docs/sd/2005280200_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +22 +21 +Connector_FFC-FPC +Molex_200528-0210_1x21-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0210, 21 Circuits (https://www.molex.com/pdm_docs/sd/2005280210_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +23 +22 +Connector_FFC-FPC +Molex_200528-0220_1x22-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0220, 22 Circuits (https://www.molex.com/pdm_docs/sd/2005280220_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +24 +23 +Connector_FFC-FPC +Molex_200528-0230_1x23-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0230, 23 Circuits (https://www.molex.com/pdm_docs/sd/2005280230_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +25 +24 +Connector_FFC-FPC +Molex_200528-0240_1x24-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0240, 24 Circuits (https://www.molex.com/pdm_docs/sd/2005280240_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +26 +25 +Connector_FFC-FPC +Molex_200528-0250_1x25-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0250, 25 Circuits (https://www.molex.com/pdm_docs/sd/2005280250_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +27 +26 +Connector_FFC-FPC +Molex_200528-0260_1x26-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0260, 26 Circuits (https://www.molex.com/pdm_docs/sd/2005280260_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +28 +27 +Connector_FFC-FPC +Molex_200528-0270_1x27-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0270, 27 Circuits (https://www.molex.com/pdm_docs/sd/2005280270_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +29 +28 +Connector_FFC-FPC +Molex_200528-0280_1x28-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0280, 28 Circuits (https://www.molex.com/pdm_docs/sd/2005280280_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +30 +29 +Connector_FFC-FPC +Molex_200528-0290_1x29-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0290, 29 Circuits (https://www.molex.com/pdm_docs/sd/2005280290_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +31 +30 +Connector_FFC-FPC +Molex_200528-0300_1x30-1MP_P1.00mm_Horizontal +Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0300, 30 Circuits (https://www.molex.com/pdm_docs/sd/2005280300_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +32 +31 +Connector_FFC-FPC +Molex_502231-1500_1x15-1SH_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 15 Circuits (https://www.molex.com/pdm_docs/sd/5022311500_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm vertical +0 +17 +16 +Connector_FFC-FPC +Molex_502231-2400_1x24-1SH_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 24 Circuits (https://www.molex.com/pdm_docs/sd/5022312400_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm vertical +0 +26 +25 +Connector_FFC-FPC +Molex_502231-3300_1x33-1SH_P0.5mm_Vertical +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 33 Circuits (https://www.molex.com/pdm_docs/sd/5022313300_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm vertical +0 +36 +34 +Connector_FFC-FPC +Molex_502244-1530_1x15-1MP_P0.5mm_Horizontal +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 15 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm right angle +0 +19 +16 +Connector_FFC-FPC +Molex_502244-2430_1x24-1MP_P0.5mm_Horizontal +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 24 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm right angle +0 +28 +25 +Connector_FFC-FPC +Molex_502244-3330_1x33-1MP_P0.5mm_Horizontal +Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 33 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) +molex FFC/FPC connector Pitch 0.5mm right angle +0 +39 +34 +Connector_FFC-FPC +Molex_502250-1791_2Rows-17Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-1791, 17 Circuits (http://www.molex.com/pdm_docs/sd/5022501791_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +19 +18 +Connector_FFC-FPC +Molex_502250-2191_2Rows-21Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2191, 21 Circuits (http://www.molex.com/pdm_docs/sd/5022502191_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +23 +22 +Connector_FFC-FPC +Molex_502250-2391_2Rows-23Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2391, 23 Circuits (http://www.molex.com/pdm_docs/sd/5022502391_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +25 +24 +Connector_FFC-FPC +Molex_502250-2791_2Rows-27Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2791, 27 Circuits (http://www.molex.com/pdm_docs/sd/5022502791_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +29 +28 +Connector_FFC-FPC +Molex_502250-3391_2Rows-33Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3391, 33 Circuits (http://www.molex.com/pdm_docs/sd/5022503391_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +35 +34 +Connector_FFC-FPC +Molex_502250-3591_2Rows-35Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3591, 35 Circuits (http://www.molex.com/pdm_docs/sd/5022503591_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +37 +36 +Connector_FFC-FPC +Molex_502250-3991_2Rows-39Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3991, 39 Circuits (http://www.molex.com/pdm_docs/sd/5022503991_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +41 +40 +Connector_FFC-FPC +Molex_502250-4191_2Rows-41Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-4191, 41 Circuits (http://www.molex.com/pdm_docs/sd/5022504191_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +43 +42 +Connector_FFC-FPC +Molex_502250-5191_2Rows-51Pins-1MP_P0.60mm_Horizontal +Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-5191, 51 Circuits (http://www.molex.com/pdm_docs/sd/5022505191_sd.pdf), generated with kicad-footprint-generator +connector Molex top entry +0 +53 +52 +Connector_FFC-FPC +Omron_XF2M-4015-1A_1x40-1MP_P0.5mm_Horizontal +Omron FPC connector, 40 top-side contacts, 0.5mm pitch, SMT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-xf2m.pdf +omron fpc xf2m +0 +42 +41 +Connector_FFC-FPC +TE_0-1734839-5_1x05-1MP_P0.5mm_Horizontal +TE FPC connector, 05 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +7 +6 +Connector_FFC-FPC +TE_0-1734839-6_1x06-1MP_P0.5mm_Horizontal +TE FPC connector, 06 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +8 +7 +Connector_FFC-FPC +TE_0-1734839-7_1x07-1MP_P0.5mm_Horizontal +TE FPC connector, 07 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +9 +8 +Connector_FFC-FPC +TE_0-1734839-8_1x08-1MP_P0.5mm_Horizontal +TE FPC connector, 08 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +10 +9 +Connector_FFC-FPC +TE_0-1734839-9_1x09-1MP_P0.5mm_Horizontal +TE FPC connector, 09 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +11 +10 +Connector_FFC-FPC +TE_1-84952-0_1x10-1MP_P1.0mm_Horizontal +TE FPC connector, 10 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +12 +11 +Connector_FFC-FPC +TE_1-84952-1_1x11-1MP_P1.0mm_Horizontal +TE FPC connector, 11 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +13 +12 +Connector_FFC-FPC +TE_1-84952-2_1x12-1MP_P1.0mm_Horizontal +TE FPC connector, 12 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +14 +13 +Connector_FFC-FPC +TE_1-84952-3_1x13-1MP_P1.0mm_Horizontal +TE FPC connector, 13 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +15 +14 +Connector_FFC-FPC +TE_1-84952-4_1x14-1MP_P1.0mm_Horizontal +TE FPC connector, 14 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +16 +15 +Connector_FFC-FPC +TE_1-84952-5_1x15-1MP_P1.0mm_Horizontal +TE FPC connector, 15 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +17 +16 +Connector_FFC-FPC +TE_1-84952-6_1x16-1MP_P1.0mm_Horizontal +TE FPC connector, 16 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +18 +17 +Connector_FFC-FPC +TE_1-84952-7_1x17-1MP_P1.0mm_Horizontal +TE FPC connector, 17 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +19 +18 +Connector_FFC-FPC +TE_1-84952-8_1x18-1MP_P1.0mm_Horizontal +TE FPC connector, 18 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +20 +19 +Connector_FFC-FPC +TE_1-84952-9_1x19-1MP_P1.0mm_Horizontal +TE FPC connector, 19 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +21 +20 +Connector_FFC-FPC +TE_1-84953-0_1x10-1MP_P1.0mm_Horizontal +TE FPC connector, 10 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +12 +11 +Connector_FFC-FPC +TE_1-84953-1_1x11-1MP_P1.0mm_Horizontal +TE FPC connector, 11 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +13 +12 +Connector_FFC-FPC +TE_1-84953-2_1x12-1MP_P1.0mm_Horizontal +TE FPC connector, 12 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +14 +13 +Connector_FFC-FPC +TE_1-84953-3_1x13-1MP_P1.0mm_Horizontal +TE FPC connector, 13 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +15 +14 +Connector_FFC-FPC +TE_1-84953-4_1x14-1MP_P1.0mm_Horizontal +TE FPC connector, 14 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +16 +15 +Connector_FFC-FPC +TE_1-84953-5_1x15-1MP_P1.0mm_Horizontal +TE FPC connector, 15 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +17 +16 +Connector_FFC-FPC +TE_1-84953-6_1x16-1MP_P1.0mm_Horizontal +TE FPC connector, 16 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +18 +17 +Connector_FFC-FPC +TE_1-84953-7_1x17-1MP_P1.0mm_Horizontal +TE FPC connector, 17 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +19 +18 +Connector_FFC-FPC +TE_1-84953-8_1x18-1MP_P1.0mm_Horizontal +TE FPC connector, 18 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +20 +19 +Connector_FFC-FPC +TE_1-84953-9_1x19-1MP_P1.0mm_Horizontal +TE FPC connector, 19 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +21 +20 +Connector_FFC-FPC +TE_1-1734839-0_1x10-1MP_P0.5mm_Horizontal +TE FPC connector, 10 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +12 +11 +Connector_FFC-FPC +TE_1-1734839-1_1x11-1MP_P0.5mm_Horizontal +TE FPC connector, 11 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +13 +12 +Connector_FFC-FPC +TE_1-1734839-2_1x12-1MP_P0.5mm_Horizontal +TE FPC connector, 12 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +14 +13 +Connector_FFC-FPC +TE_1-1734839-3_1x13-1MP_P0.5mm_Horizontal +TE FPC connector, 13 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +15 +14 +Connector_FFC-FPC +TE_1-1734839-4_1x14-1MP_P0.5mm_Horizontal +TE FPC connector, 14 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +16 +15 +Connector_FFC-FPC +TE_1-1734839-5_1x15-1MP_P0.5mm_Horizontal +TE FPC connector, 15 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +17 +16 +Connector_FFC-FPC +TE_1-1734839-6_1x16-1MP_P0.5mm_Horizontal +TE FPC connector, 16 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +18 +17 +Connector_FFC-FPC +TE_1-1734839-7_1x17-1MP_P0.5mm_Horizontal +TE FPC connector, 17 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +19 +18 +Connector_FFC-FPC +TE_1-1734839-8_1x18-1MP_P0.5mm_Horizontal +TE FPC connector, 18 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +20 +19 +Connector_FFC-FPC +TE_1-1734839-9_1x19-1MP_P0.5mm_Horizontal +TE FPC connector, 19 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +21 +20 +Connector_FFC-FPC +TE_2-84952-0_1x20-1MP_P1.0mm_Horizontal +TE FPC connector, 20 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +22 +21 +Connector_FFC-FPC +TE_2-84952-1_1x21-1MP_P1.0mm_Horizontal +TE FPC connector, 21 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +23 +22 +Connector_FFC-FPC +TE_2-84952-2_1x22-1MP_P1.0mm_Horizontal +TE FPC connector, 22 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +24 +23 +Connector_FFC-FPC +TE_2-84952-3_1x23-1MP_P1.0mm_Horizontal +TE FPC connector, 23 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +25 +24 +Connector_FFC-FPC +TE_2-84952-4_1x24-1MP_P1.0mm_Horizontal +TE FPC connector, 24 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +26 +25 +Connector_FFC-FPC +TE_2-84952-5_1x25-1MP_P1.0mm_Horizontal +TE FPC connector, 25 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +27 +26 +Connector_FFC-FPC +TE_2-84952-6_1x26-1MP_P1.0mm_Horizontal +TE FPC connector, 26 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +28 +27 +Connector_FFC-FPC +TE_2-84952-7_1x27-1MP_P1.0mm_Horizontal +TE FPC connector, 27 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +29 +28 +Connector_FFC-FPC +TE_2-84952-8_1x28-1MP_P1.0mm_Horizontal +TE FPC connector, 28 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +30 +29 +Connector_FFC-FPC +TE_2-84952-9_1x29-1MP_P1.0mm_Horizontal +TE FPC connector, 29 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +31 +30 +Connector_FFC-FPC +TE_2-84953-0_1x20-1MP_P1.0mm_Horizontal +TE FPC connector, 20 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +22 +21 +Connector_FFC-FPC +TE_2-84953-1_1x21-1MP_P1.0mm_Horizontal +TE FPC connector, 21 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +23 +22 +Connector_FFC-FPC +TE_2-84953-2_1x22-1MP_P1.0mm_Horizontal +TE FPC connector, 22 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +24 +23 +Connector_FFC-FPC +TE_2-84953-3_1x23-1MP_P1.0mm_Horizontal +TE FPC connector, 23 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +25 +24 +Connector_FFC-FPC +TE_2-84953-4_1x24-1MP_P1.0mm_Horizontal +TE FPC connector, 24 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +26 +25 +Connector_FFC-FPC +TE_2-84953-5_1x25-1MP_P1.0mm_Horizontal +TE FPC connector, 25 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +27 +26 +Connector_FFC-FPC +TE_2-84953-6_1x26-1MP_P1.0mm_Horizontal +TE FPC connector, 26 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +28 +27 +Connector_FFC-FPC +TE_2-84953-7_1x27-1MP_P1.0mm_Horizontal +TE FPC connector, 27 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +29 +28 +Connector_FFC-FPC +TE_2-84953-8_1x28-1MP_P1.0mm_Horizontal +TE FPC connector, 28 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +30 +29 +Connector_FFC-FPC +TE_2-84953-9_1x29-1MP_P1.0mm_Horizontal +TE FPC connector, 29 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +31 +30 +Connector_FFC-FPC +TE_2-1734839-0_1x20-1MP_P0.5mm_Horizontal +TE FPC connector, 20 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +22 +21 +Connector_FFC-FPC +TE_2-1734839-1_1x21-1MP_P0.5mm_Horizontal +TE FPC connector, 21 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +23 +22 +Connector_FFC-FPC +TE_2-1734839-2_1x22-1MP_P0.5mm_Horizontal +TE FPC connector, 22 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +24 +23 +Connector_FFC-FPC +TE_2-1734839-3_1x23-1MP_P0.5mm_Horizontal +TE FPC connector, 23 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +25 +24 +Connector_FFC-FPC +TE_2-1734839-4_1x24-1MP_P0.5mm_Horizontal +TE FPC connector, 24 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +26 +25 +Connector_FFC-FPC +TE_2-1734839-5_1x25-1MP_P0.5mm_Horizontal +TE FPC connector, 25 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +27 +26 +Connector_FFC-FPC +TE_2-1734839-6_1x26-1MP_P0.5mm_Horizontal +TE FPC connector, 26 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +28 +27 +Connector_FFC-FPC +TE_2-1734839-7_1x27-1MP_P0.5mm_Horizontal +TE FPC connector, 27 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +29 +28 +Connector_FFC-FPC +TE_2-1734839-8_1x28-1MP_P0.5mm_Horizontal +TE FPC connector, 28 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +30 +29 +Connector_FFC-FPC +TE_2-1734839-9_1x29-1MP_P0.5mm_Horizontal +TE FPC connector, 29 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +31 +30 +Connector_FFC-FPC +TE_3-84952-0_1x30-1MP_P1.0mm_Horizontal +TE FPC connector, 30 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +32 +31 +Connector_FFC-FPC +TE_3-84953-0_1x30-1MP_P1.0mm_Horizontal +TE FPC connector, 30 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +32 +31 +Connector_FFC-FPC +TE_3-1734839-0_1x30-1MP_P0.5mm_Horizontal +TE FPC connector, 30 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +32 +31 +Connector_FFC-FPC +TE_3-1734839-1_1x31-1MP_P0.5mm_Horizontal +TE FPC connector, 31 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +33 +32 +Connector_FFC-FPC +TE_3-1734839-2_1x32-1MP_P0.5mm_Horizontal +TE FPC connector, 32 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +34 +33 +Connector_FFC-FPC +TE_3-1734839-3_1x33-1MP_P0.5mm_Horizontal +TE FPC connector, 33 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +35 +34 +Connector_FFC-FPC +TE_3-1734839-4_1x34-1MP_P0.5mm_Horizontal +TE FPC connector, 34 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +36 +35 +Connector_FFC-FPC +TE_3-1734839-5_1x35-1MP_P0.5mm_Horizontal +TE FPC connector, 35 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +37 +36 +Connector_FFC-FPC +TE_3-1734839-6_1x36-1MP_P0.5mm_Horizontal +TE FPC connector, 36 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +38 +37 +Connector_FFC-FPC +TE_3-1734839-7_1x37-1MP_P0.5mm_Horizontal +TE FPC connector, 37 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +39 +38 +Connector_FFC-FPC +TE_3-1734839-8_1x38-1MP_P0.5mm_Horizontal +TE FPC connector, 38 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +40 +39 +Connector_FFC-FPC +TE_3-1734839-9_1x39-1MP_P0.5mm_Horizontal +TE FPC connector, 39 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +41 +40 +Connector_FFC-FPC +TE_4-1734839-0_1x40-1MP_P0.5mm_Horizontal +TE FPC connector, 40 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +42 +41 +Connector_FFC-FPC +TE_4-1734839-1_1x41-1MP_P0.5mm_Horizontal +TE FPC connector, 41 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +43 +42 +Connector_FFC-FPC +TE_4-1734839-2_1x42-1MP_P0.5mm_Horizontal +TE FPC connector, 42 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +44 +43 +Connector_FFC-FPC +TE_4-1734839-3_1x43-1MP_P0.5mm_Horizontal +TE FPC connector, 43 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +45 +44 +Connector_FFC-FPC +TE_4-1734839-4_1x44-1MP_P0.5mm_Horizontal +TE FPC connector, 44 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +46 +45 +Connector_FFC-FPC +TE_4-1734839-5_1x45-1MP_P0.5mm_Horizontal +TE FPC connector, 45 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +47 +46 +Connector_FFC-FPC +TE_4-1734839-6_1x46-1MP_P0.5mm_Horizontal +TE FPC connector, 46 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +48 +47 +Connector_FFC-FPC +TE_4-1734839-7_1x47-1MP_P0.5mm_Horizontal +TE FPC connector, 47 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +49 +48 +Connector_FFC-FPC +TE_4-1734839-8_1x48-1MP_P0.5mm_Horizontal +TE FPC connector, 48 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +50 +49 +Connector_FFC-FPC +TE_4-1734839-9_1x49-1MP_P0.5mm_Horizontal +TE FPC connector, 49 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +51 +50 +Connector_FFC-FPC +TE_5-1734839-0_1x50-1MP_P0.5mm_Horizontal +TE FPC connector, 50 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 +te fpc 1734839 +0 +52 +51 +Connector_FFC-FPC +TE_84952-4_1x04-1MP_P1.0mm_Horizontal +TE FPC connector, 04 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +6 +5 +Connector_FFC-FPC +TE_84952-5_1x05-1MP_P1.0mm_Horizontal +TE FPC connector, 05 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +7 +6 +Connector_FFC-FPC +TE_84952-6_1x06-1MP_P1.0mm_Horizontal +TE FPC connector, 06 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +8 +7 +Connector_FFC-FPC +TE_84952-7_1x07-1MP_P1.0mm_Horizontal +TE FPC connector, 07 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +9 +8 +Connector_FFC-FPC +TE_84952-8_1x08-1MP_P1.0mm_Horizontal +TE FPC connector, 08 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +10 +9 +Connector_FFC-FPC +TE_84952-9_1x09-1MP_P1.0mm_Horizontal +TE FPC connector, 09 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 +te fpc 84952 +0 +11 +10 +Connector_FFC-FPC +TE_84953-4_1x04-1MP_P1.0mm_Horizontal +TE FPC connector, 04 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +6 +5 +Connector_FFC-FPC +TE_84953-5_1x05-1MP_P1.0mm_Horizontal +TE FPC connector, 05 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +7 +6 +Connector_FFC-FPC +TE_84953-6_1x06-1MP_P1.0mm_Horizontal +TE FPC connector, 06 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +8 +7 +Connector_FFC-FPC +TE_84953-7_1x07-1MP_P1.0mm_Horizontal +TE FPC connector, 07 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +9 +8 +Connector_FFC-FPC +TE_84953-8_1x08-1MP_P1.0mm_Horizontal +TE FPC connector, 08 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +10 +9 +Connector_FFC-FPC +TE_84953-9_1x09-1MP_P1.0mm_Horizontal +TE FPC connector, 09 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 +te fpc 84953 +0 +11 +10 +Connector_FFC-FPC +Wuerth_68611214422_1x12-1MP_P1.0mm_Horizontal +http://katalog.we-online.de/em/datasheet/68611214422.pdf +Wuerth FPC 68611214422 connector 12 bottom-side contacts 1.0mm pitch 1.0mm height SMT +0 +14 +13 +Connector_HDMI +HDMI_A_Amphenol_10029449-x01xLF_Horizontal +HDMI Type A connector, Amphenol 10029449-001TLF 10029449-001RLF 10029449-101TLF 10029449-101RLF, Right Angle(https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10029449.pdf) +hdmi right angle +0 +23 +20 +Connector_HDMI +HDMI_A_Contact_Technology_HDMI-19APL2_Horizontal +HDMI Contact Technology Type A http://www.contactswitch.com/en/download.aspx?id=1449 +HDMI Contact Technology Type A +0 +23 +20 +Connector_HDMI +HDMI_A_Kycon_KDMIX-SL1-NS-WS-B15_VerticalRightAngle +HDMI, Type A, Kycon KDMIX-SL1-NS-WS-B15, Vertical Right Angle, http://www.kycon.com/Pub_Eng_Draw/KDMIX-SL1-NS-WS-B15.pdf +hdmi type a +0 +23 +20 +Connector_HDMI +HDMI_A_Molex_208658-1001_Horizontal +HDMI Molex Type A https://www.molex.com/pdm_docs/sd/2086581001_sd.pdf +HDMI Molex Type A +0 +23 +20 +Connector_HDMI +HDMI_Micro-D_Molex_46765-0x01 +HDMI, Micro, Type D, SMD, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) +hdmi micro type d right angle smd +0 +23 +20 +Connector_HDMI +HDMI_Micro-D_Molex_46765-1x01 +HDMI, Micro, Type D, THT, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) +hdmi micro type d right angle tht +0 +23 +20 +Connector_HDMI +HDMI_Micro-D_Molex_46765-2x0x +HDMI, Micro, Type D, THT/SMD hybrid, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) +hdmi micro type d right angle tht smd hybrid +0 +23 +20 +Connector_Harting +Harting_har-flexicon_14110213001xxx_1x02-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110213001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +4 +3 +Connector_Harting +Harting_har-flexicon_14110213002xxx_1x02-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110213002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +4 +3 +Connector_Harting +Harting_har-flexicon_14110213010xxx_1x02-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110213010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +4 +3 +Connector_Harting +Harting_har-flexicon_14110313001xxx_1x03-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110313001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +5 +4 +Connector_Harting +Harting_har-flexicon_14110313002xxx_1x03-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110313002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +5 +4 +Connector_Harting +Harting_har-flexicon_14110313010xxx_1x03-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110313010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +5 +4 +Connector_Harting +Harting_har-flexicon_14110413001xxx_1x04-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110413001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +6 +5 +Connector_Harting +Harting_har-flexicon_14110413002xxx_1x04-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110413002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +6 +5 +Connector_Harting +Harting_har-flexicon_14110413010xxx_1x04-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110413010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +6 +5 +Connector_Harting +Harting_har-flexicon_14110513001xxx_1x05-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110513001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +7 +6 +Connector_Harting +Harting_har-flexicon_14110513002xxx_1x05-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110513002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +7 +6 +Connector_Harting +Harting_har-flexicon_14110513010xxx_1x05-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110513010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +7 +6 +Connector_Harting +Harting_har-flexicon_14110613001xxx_1x06-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110613001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +8 +7 +Connector_Harting +Harting_har-flexicon_14110613002xxx_1x06-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110613002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +8 +7 +Connector_Harting +Harting_har-flexicon_14110613010xxx_1x06-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110613010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +8 +7 +Connector_Harting +Harting_har-flexicon_14110713001xxx_1x07-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110713001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +9 +8 +Connector_Harting +Harting_har-flexicon_14110713002xxx_1x07-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110713002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +9 +8 +Connector_Harting +Harting_har-flexicon_14110713010xxx_1x07-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110713010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +9 +8 +Connector_Harting +Harting_har-flexicon_14110813001xxx_1x08-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110813001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +10 +9 +Connector_Harting +Harting_har-flexicon_14110813002xxx_1x08-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110813002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +10 +9 +Connector_Harting +Harting_har-flexicon_14110813010xxx_1x08-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110813010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +10 +9 +Connector_Harting +Harting_har-flexicon_14110913001xxx_1x09-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14110913001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +11 +10 +Connector_Harting +Harting_har-flexicon_14110913002xxx_1x09-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110913002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +11 +10 +Connector_Harting +Harting_har-flexicon_14110913010xxx_1x09-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14110913010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +11 +10 +Connector_Harting +Harting_har-flexicon_14111013001xxx_1x10-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14111013001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +12 +11 +Connector_Harting +Harting_har-flexicon_14111013002xxx_1x10-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111013002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +12 +11 +Connector_Harting +Harting_har-flexicon_14111013010xxx_1x10-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111013010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +12 +11 +Connector_Harting +Harting_har-flexicon_14111113001xxx_1x11-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14111113001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +13 +12 +Connector_Harting +Harting_har-flexicon_14111113002xxx_1x11-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111113002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +13 +12 +Connector_Harting +Harting_har-flexicon_14111113010xxx_1x11-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111113010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +13 +12 +Connector_Harting +Harting_har-flexicon_14111213001xxx_1x12-MP_P2.54mm_Vertical +Harting har-flexicon series connector, 14111213001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon vertical +0 +14 +13 +Connector_Harting +Harting_har-flexicon_14111213002xxx_1x12-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111213002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +14 +13 +Connector_Harting +Harting_har-flexicon_14111213010xxx_1x12-MP_P2.54mm_Horizontal +Harting har-flexicon series connector, 14111213010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator +connector Harting har-flexicon horizontal +0 +14 +13 +Connector_Harwin +Harwin_Gecko-G125-FVX0605L0X_2x03_P1.25mm_Vertical +Harwin Gecko Connector, 6 pins, dual row female, vertical entry, PN:G125-FVX0605L0X +connector harwin gecko +0 +6 +6 +Connector_Harwin +Harwin_Gecko-G125-FVX1005L0X_2x05_P1.25mm_Vertical +Harwin Gecko Connector, 10 pins, dual row female, vertical entry, PN:G125-FVX1005L0X +connector harwin gecko +0 +10 +10 +Connector_Harwin +Harwin_Gecko-G125-FVX1205L0X_2x06_P1.25mm_Vertical +Harwin Gecko Connector, 12 pins, dual row female, vertical entry, PN:G125-FVX1205L0X +connector harwin gecko +0 +12 +12 +Connector_Harwin +Harwin_Gecko-G125-FVX1605L0X_2x08_P1.25mm_Vertical +Harwin Gecko Connector, 16 pins, dual row female, vertical entry, PN:G125-FVX1605L0X +connector harwin gecko +0 +16 +16 +Connector_Harwin +Harwin_Gecko-G125-FVX2005L0X_2x10_P1.25mm_Vertical +Harwin Gecko Connector, 20 pins, dual row female, vertical entry, PN:G125-FVX2005L0X +connector harwin gecko +0 +20 +20 +Connector_Harwin +Harwin_Gecko-G125-FVX2605L0X_2x13_P1.25mm_Vertical +Harwin Gecko Connector, 26 pins, dual row female, vertical entry, PN:G125-FVX2605L0X +connector harwin gecko +0 +26 +26 +Connector_Harwin +Harwin_Gecko-G125-FVX3405L0X_2x17_P1.25mm_Vertical +Harwin Gecko Connector, 34 pins, dual row female, vertical entry, PN:G125-FVX3405L0X +connector harwin gecko +0 +34 +34 +Connector_Harwin +Harwin_Gecko-G125-FVX5005L0X_2x25_P1.25mm_Vertical +Harwin Gecko Connector, 50 pins, dual row female, vertical entry, PN:G125-FVX5005L0X +connector harwin gecko +0 +50 +50 +Connector_Harwin +Harwin_Gecko-G125-MVX0605L0X_2x03_P1.25mm_Vertical +Harwin Gecko Connector, 6 pins, dual row male, vertical entry, no latches, PN:G125-MVX0605L0X +connector harwin gecko +0 +6 +6 +Connector_Harwin +Harwin_Gecko-G125-MVX0605L1X_2x03_P1.25mm_Vertical +Harwin Gecko Connector, 6 pins, dual row male, vertical entry, with latches, PN:G125-MVX0605L1X +connector harwin gecko +0 +6 +6 +Connector_Harwin +Harwin_Gecko-G125-MVX1005L0X_2x05_P1.25mm_Vertical +Harwin Gecko Connector, 10 pins, dual row male, vertical entry, no latches, PN:G125-MVX1005L0X +connector harwin gecko +0 +10 +10 +Connector_Harwin +Harwin_Gecko-G125-MVX1005L1X_2x05_P1.25mm_Vertical +Harwin Gecko Connector, 10 pins, dual row male, vertical entry, with latches, PN:G125-MVX1005L1X +connector harwin gecko +0 +10 +10 +Connector_Harwin +Harwin_Gecko-G125-MVX1205L0X_2x06_P1.25mm_Vertical +Harwin Gecko Connector, 12 pins, dual row male, vertical entry, no latches, PN:G125-MVX1205L0X +connector harwin gecko +0 +12 +12 +Connector_Harwin +Harwin_Gecko-G125-MVX1205L1X_2x06_P1.25mm_Vertical +Harwin Gecko Connector, 12 pins, dual row male, vertical entry, with latches, PN:G125-MVX1205L1X +connector harwin gecko +0 +12 +12 +Connector_Harwin +Harwin_Gecko-G125-MVX1605L0X_2x08_P1.25mm_Vertical +Harwin Gecko Connector, 16 pins, dual row male, vertical entry, no latches, PN:G125-MVX1605L0X +connector harwin gecko +0 +16 +16 +Connector_Harwin +Harwin_Gecko-G125-MVX1605L1X_2x08_P1.25mm_Vertical +Harwin Gecko Connector, 16 pins, dual row male, vertical entry, with latches, PN:G125-MVX1605L1X +connector harwin gecko +0 +16 +16 +Connector_Harwin +Harwin_Gecko-G125-MVX2005L0X_2x10_P1.25mm_Vertical +Harwin Gecko Connector, 20 pins, dual row male, vertical entry, no latches, PN:G125-MVX2005L0X +connector harwin gecko +0 +20 +20 +Connector_Harwin +Harwin_Gecko-G125-MVX2005L1X_2x10_P1.25mm_Vertical +Harwin Gecko Connector, 20 pins, dual row male, vertical entry, with latches, PN:G125-MVX2005L1X +connector harwin gecko +0 +20 +20 +Connector_Harwin +Harwin_Gecko-G125-MVX2605L0X_2x13_P1.25mm_Vertical +Harwin Gecko Connector, 26 pins, dual row male, vertical entry, no latches, PN:G125-MVX2605L0X +connector harwin gecko +0 +26 +26 +Connector_Harwin +Harwin_Gecko-G125-MVX2605L1X_2x13_P1.25mm_Vertical +Harwin Gecko Connector, 26 pins, dual row male, vertical entry, with latches, PN:G125-MVX2605L1X +connector harwin gecko +0 +26 +26 +Connector_Harwin +Harwin_Gecko-G125-MVX3405L0X_2x17_P1.25mm_Vertical +Harwin Gecko Connector, 34 pins, dual row male, vertical entry, no latches, PN:G125-MVX3405L0X +connector harwin gecko +0 +34 +34 +Connector_Harwin +Harwin_Gecko-G125-MVX3405L1X_2x17_P1.25mm_Vertical +Harwin Gecko Connector, 34 pins, dual row male, vertical entry, with latches, PN:G125-MVX3405L1X +connector harwin gecko +0 +34 +34 +Connector_Harwin +Harwin_Gecko-G125-MVX5005L0X_2x25_P1.25mm_Vertical +Harwin Gecko Connector, 50 pins, dual row male, vertical entry, no latches, PN:G125-MVX5005L0X +connector harwin gecko +0 +50 +50 +Connector_Harwin +Harwin_Gecko-G125-MVX5005L1X_2x25_P1.25mm_Vertical +Harwin Gecko Connector, 50 pins, dual row male, vertical entry, with latches, PN:G125-MVX5005L1X +connector harwin gecko +0 +50 +50 +Connector_Harwin +Harwin_LTek-Male_02_P2.00mm_Vertical +Harwin LTek Connector, 2 pins, single row male, vertical entry +connector harwin ltek M80 +0 +2 +2 +Connector_Harwin +Harwin_LTek-Male_02_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 2 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +6 +2 +Connector_Harwin +Harwin_LTek-Male_2x02_P2.00mm_Vertical +Harwin LTek Connector, 4 pins, single row male, vertical entry +connector harwin ltek M80 +0 +4 +4 +Connector_Harwin +Harwin_LTek-Male_2x02_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 4 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +8 +4 +Connector_Harwin +Harwin_LTek-Male_2x03_P2.00mm_Vertical +Harwin LTek Connector, 6 pins, single row male, vertical entry +connector harwin ltek M80 +0 +6 +6 +Connector_Harwin +Harwin_LTek-Male_2x03_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 6 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +10 +6 +Connector_Harwin +Harwin_LTek-Male_2x04_P2.00mm_Vertical +Harwin LTek Connector, 8 pins, single row male, vertical entry +connector harwin ltek M80 +0 +8 +8 +Connector_Harwin +Harwin_LTek-Male_2x04_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 8 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +12 +8 +Connector_Harwin +Harwin_LTek-Male_2x05_P2.00mm_Vertical +Harwin LTek Connector, 10 pins, single row male, vertical entry +connector harwin ltek M80 +0 +10 +10 +Connector_Harwin +Harwin_LTek-Male_2x05_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 10 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +14 +10 +Connector_Harwin +Harwin_LTek-Male_2x06_P2.00mm_Vertical +Harwin LTek Connector, 12 pins, single row male, vertical entry +connector harwin ltek M80 +0 +12 +12 +Connector_Harwin +Harwin_LTek-Male_2x06_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 12 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +16 +12 +Connector_Harwin +Harwin_LTek-Male_2x07_P2.00mm_Vertical +Harwin LTek Connector, 14 pins, single row male, vertical entry +connector harwin ltek M80 +0 +14 +14 +Connector_Harwin +Harwin_LTek-Male_2x07_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 14 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +18 +14 +Connector_Harwin +Harwin_LTek-Male_2x08_P2.00mm_Vertical +Harwin LTek Connector, 16 pins, single row male, vertical entry +connector harwin ltek M80 +0 +16 +16 +Connector_Harwin +Harwin_LTek-Male_2x08_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 16 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +20 +16 +Connector_Harwin +Harwin_LTek-Male_2x09_P2.00mm_Vertical +Harwin LTek Connector, 18 pins, single row male, vertical entry +connector harwin ltek M80 +0 +18 +18 +Connector_Harwin +Harwin_LTek-Male_2x09_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 18 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +22 +18 +Connector_Harwin +Harwin_LTek-Male_2x10_P2.00mm_Vertical +Harwin LTek Connector, 20 pins, single row male, vertical entry +connector harwin ltek M80 +0 +20 +20 +Connector_Harwin +Harwin_LTek-Male_2x10_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 20 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +24 +20 +Connector_Harwin +Harwin_LTek-Male_2x13_P2.00mm_Vertical +Harwin LTek Connector, 26 pins, single row male, vertical entry +connector harwin ltek M80 +0 +26 +26 +Connector_Harwin +Harwin_LTek-Male_2x13_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 26 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +30 +26 +Connector_Harwin +Harwin_LTek-Male_2x17_P2.00mm_Vertical +Harwin LTek Connector, 34 pins, single row male, vertical entry +connector harwin ltek M80 +0 +34 +34 +Connector_Harwin +Harwin_LTek-Male_2x17_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 34 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +38 +34 +Connector_Harwin +Harwin_LTek-Male_2x22_P2.00mm_Vertical +Harwin LTek Connector, 44 pins, single row male, vertical entry +connector harwin ltek M80 +0 +44 +44 +Connector_Harwin +Harwin_LTek-Male_2x22_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 44 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +48 +44 +Connector_Harwin +Harwin_LTek-Male_03_P2.00mm_Vertical +Harwin LTek Connector, 3 pins, single row male, vertical entry +connector harwin ltek M80 +0 +3 +3 +Connector_Harwin +Harwin_LTek-Male_03_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 3 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +7 +3 +Connector_Harwin +Harwin_LTek-Male_04_P2.00mm_Vertical +Harwin LTek Connector, 4 pins, single row male, vertical entry +connector harwin ltek M80 +0 +4 +4 +Connector_Harwin +Harwin_LTek-Male_04_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 4 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +8 +4 +Connector_Harwin +Harwin_LTek-Male_05_P2.00mm_Vertical +Harwin LTek Connector, 5 pins, single row male, vertical entry +connector harwin ltek M80 +0 +5 +5 +Connector_Harwin +Harwin_LTek-Male_05_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 5 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +9 +5 +Connector_Harwin +Harwin_LTek-Male_06_P2.00mm_Vertical +Harwin LTek Connector, 6 pins, single row male, vertical entry +connector harwin ltek M80 +0 +6 +6 +Connector_Harwin +Harwin_LTek-Male_06_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 6 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +10 +6 +Connector_Harwin +Harwin_LTek-Male_07_P2.00mm_Vertical +Harwin LTek Connector, 7 pins, single row male, vertical entry +connector harwin ltek M80 +0 +7 +7 +Connector_Harwin +Harwin_LTek-Male_07_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 7 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +11 +7 +Connector_Harwin +Harwin_LTek-Male_17_P2.00mm_Vertical +Harwin LTek Connector, 17 pins, single row male, vertical entry +connector harwin ltek M80 +0 +17 +17 +Connector_Harwin +Harwin_LTek-Male_17_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 17 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +21 +17 +Connector_Harwin +Harwin_LTek-Male_22_P2.00mm_Vertical +Harwin LTek Connector, 22 pins, single row male, vertical entry +connector harwin ltek M80 +0 +22 +22 +Connector_Harwin +Harwin_LTek-Male_22_P2.00mm_Vertical_StrainRelief +Harwin LTek Connector, 22 pins, single row male, vertical entry, strain relief clip +connector harwin ltek M80 +0 +26 +22 +Connector_Harwin +Harwin_M20-89003xx_1x03_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89003xx, 3 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +4 +3 +Connector_Harwin +Harwin_M20-89004xx_1x04_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89004xx, 4 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +5 +4 +Connector_Harwin +Harwin_M20-89005xx_1x05_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89005xx, 5 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +6 +5 +Connector_Harwin +Harwin_M20-89006xx_1x06_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89006xx, 6 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +7 +6 +Connector_Harwin +Harwin_M20-89007xx_1x07_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89007xx, 7 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +8 +7 +Connector_Harwin +Harwin_M20-89008xx_1x08_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89008xx, 8 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +9 +8 +Connector_Harwin +Harwin_M20-89009xx_1x09_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89009xx, 9 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +10 +9 +Connector_Harwin +Harwin_M20-89010xx_1x10_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89010xx, 10 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +11 +10 +Connector_Harwin +Harwin_M20-89011xx_1x11_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89011xx, 11 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +12 +11 +Connector_Harwin +Harwin_M20-89012xx_1x12_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89012xx, 12 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +13 +12 +Connector_Harwin +Harwin_M20-89013xx_1x13_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89013xx, 13 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +14 +13 +Connector_Harwin +Harwin_M20-89014xx_1x14_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89014xx, 14 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +15 +14 +Connector_Harwin +Harwin_M20-89015xx_1x15_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89015xx, 15 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +16 +15 +Connector_Harwin +Harwin_M20-89016xx_1x16_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89016xx, 16 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +17 +16 +Connector_Harwin +Harwin_M20-89017xx_1x17_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89017xx, 17 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +18 +17 +Connector_Harwin +Harwin_M20-89018xx_1x18_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89018xx, 18 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +19 +18 +Connector_Harwin +Harwin_M20-89019xx_1x19_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89019xx, 19 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +20 +19 +Connector_Harwin +Harwin_M20-89020xx_1x20_P2.54mm_Horizontal +Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89020xx, 20 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator +connector Harwin M20-890 horizontal +0 +21 +20 +Connector_Harwin +Harwin_M20-7810245_2x02_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810245, 2 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +4 +4 +Connector_Harwin +Harwin_M20-7810345_2x03_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810345, 3 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +6 +6 +Connector_Harwin +Harwin_M20-7810445_2x04_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810445, 4 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +8 +8 +Connector_Harwin +Harwin_M20-7810545_2x05_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810545, 5 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +10 +10 +Connector_Harwin +Harwin_M20-7810645_2x06_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810645, 6 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +12 +12 +Connector_Harwin +Harwin_M20-7810745_2x07_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810745, 7 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +14 +14 +Connector_Harwin +Harwin_M20-7810845_2x08_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810845, 8 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +16 +16 +Connector_Harwin +Harwin_M20-7810945_2x09_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810945, 9 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +18 +18 +Connector_Harwin +Harwin_M20-7811045_2x10_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811045, 10 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +20 +20 +Connector_Harwin +Harwin_M20-7811245_2x12_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811245, 12 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +24 +24 +Connector_Harwin +Harwin_M20-7811545_2x15_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811545, 15 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +30 +30 +Connector_Harwin +Harwin_M20-7812045_2x20_P2.54mm_Vertical +Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7812045, 20 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator +connector Harwin M20 side entry +0 +40 +40 +Connector_Hirose +Hirose_BM24_BM24-40DP-2-0.35V_2x20_P0.35mm_PowerPin2_Vertical +Hirose BM24 series connector, BM24-40DP/2-0.35V (https://www.hirose.com/product/en/download_file/key_name/BM24/category/Catalog/doc_file_id/47680/?file_category_id=4&item_id=50&is_series=1) +connector Hirose BM24 40pin header +0 +44 +42 +Connector_Hirose +Hirose_BM24_BM24-40DS-2-0.35V_2x20_P0.35mm_PowerPin2_Vertical +Hirose BM24 series connector, BM24-40DS/2-0.35V (https://www.hirose.com/product/en/download_file/key_name/BM24/category/Catalog/doc_file_id/47680/?file_category_id=4&item_id=50&is_series=1) +connector Hirose 40pin receptacle vertical +0 +42 +42 +Connector_Hirose +Hirose_DF3EA-02P-2H_1x02-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-02P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +4 +3 +Connector_Hirose +Hirose_DF3EA-03P-2H_1x03-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-03P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +5 +4 +Connector_Hirose +Hirose_DF3EA-04P-2H_1x04-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-04P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +6 +5 +Connector_Hirose +Hirose_DF3EA-05P-2H_1x05-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-05P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +7 +6 +Connector_Hirose +Hirose_DF3EA-06P-2H_1x06-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-06P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +8 +7 +Connector_Hirose +Hirose_DF3EA-07P-2H_1x07-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-07P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +9 +8 +Connector_Hirose +Hirose_DF3EA-08P-2H_1x08-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-08P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +10 +9 +Connector_Hirose +Hirose_DF3EA-09P-2H_1x09-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-09P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +11 +10 +Connector_Hirose +Hirose_DF3EA-10P-2H_1x10-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-10P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +12 +11 +Connector_Hirose +Hirose_DF3EA-11P-2H_1x11-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-11P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +13 +12 +Connector_Hirose +Hirose_DF3EA-12P-2H_1x12-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-12P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +14 +13 +Connector_Hirose +Hirose_DF3EA-13P-2H_1x13-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-13P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +15 +14 +Connector_Hirose +Hirose_DF3EA-14P-2H_1x14-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-14P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +16 +15 +Connector_Hirose +Hirose_DF3EA-15P-2H_1x15-1MP_P2.00mm_Horizontal +Hirose series connector, DF3EA-15P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator +connector Hirose top entry +0 +17 +16 +Connector_Hirose +Hirose_DF11-4DP-2DSA_2x02_P2.00mm_Vertical +Hirose DF11 through hole, DF11-4DP-2DSA, 2 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF11-6DP-2DSA_2x03_P2.00mm_Vertical +Hirose DF11 through hole, DF11-6DP-2DSA, 3 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +6 +6 +Connector_Hirose +Hirose_DF11-8DP-2DSA_2x04_P2.00mm_Vertical +Hirose DF11 through hole, DF11-8DP-2DSA, 4 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +8 +8 +Connector_Hirose +Hirose_DF11-10DP-2DSA_2x05_P2.00mm_Vertical +Hirose DF11 through hole, DF11-10DP-2DSA, 5 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +10 +10 +Connector_Hirose +Hirose_DF11-12DP-2DSA_2x06_P2.00mm_Vertical +Hirose DF11 through hole, DF11-12DP-2DSA, 6 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +12 +12 +Connector_Hirose +Hirose_DF11-14DP-2DSA_2x07_P2.00mm_Vertical +Hirose DF11 through hole, DF11-14DP-2DSA, 7 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +14 +14 +Connector_Hirose +Hirose_DF11-16DP-2DSA_2x08_P2.00mm_Vertical +Hirose DF11 through hole, DF11-16DP-2DSA, 8 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +16 +16 +Connector_Hirose +Hirose_DF11-18DP-2DSA_2x09_P2.00mm_Vertical +Hirose DF11 through hole, DF11-18DP-2DSA, 9 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +18 +18 +Connector_Hirose +Hirose_DF11-20DP-2DSA_2x10_P2.00mm_Vertical +Hirose DF11 through hole, DF11-20DP-2DSA, 10 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +20 +20 +Connector_Hirose +Hirose_DF11-22DP-2DSA_2x11_P2.00mm_Vertical +Hirose DF11 through hole, DF11-22DP-2DSA, 11 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +22 +22 +Connector_Hirose +Hirose_DF11-24DP-2DSA_2x12_P2.00mm_Vertical +Hirose DF11 through hole, DF11-24DP-2DSA, 12 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +24 +24 +Connector_Hirose +Hirose_DF11-26DP-2DSA_2x13_P2.00mm_Vertical +Hirose DF11 through hole, DF11-26DP-2DSA, 13 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +26 +26 +Connector_Hirose +Hirose_DF11-28DP-2DSA_2x14_P2.00mm_Vertical +Hirose DF11 through hole, DF11-28DP-2DSA, 14 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +28 +28 +Connector_Hirose +Hirose_DF11-30DP-2DSA_2x15_P2.00mm_Vertical +Hirose DF11 through hole, DF11-30DP-2DSA, 15 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +30 +30 +Connector_Hirose +Hirose_DF11-32DP-2DSA_2x16_P2.00mm_Vertical +Hirose DF11 through hole, DF11-32DP-2DSA, 16 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator +connector Hirose DF11 vertical +0 +32 +32 +Connector_Hirose +Hirose_DF12_DF12C3.0-10DS-0.5V_2x05_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-10DS-0.5V, 10 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +20 +10 +Connector_Hirose +Hirose_DF12_DF12C3.0-14DS-0.5V_2x07_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-14DS-0.5V, 14 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +28 +14 +Connector_Hirose +Hirose_DF12_DF12C3.0-20DS-0.5V_2x10_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-20DS-0.5V, 20 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +40 +20 +Connector_Hirose +Hirose_DF12_DF12C3.0-30DS-0.5V_2x15_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-30DS-0.5V, 30 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +60 +30 +Connector_Hirose +Hirose_DF12_DF12C3.0-32DS-0.5V_2x16_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-32DS-0.5V, 32 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +64 +32 +Connector_Hirose +Hirose_DF12_DF12C3.0-36DS-0.5V_2x18_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-36DS-0.5V, 36 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +72 +36 +Connector_Hirose +Hirose_DF12_DF12C3.0-40DS-0.5V_2x20_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-40DS-0.5V, 40 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +80 +40 +Connector_Hirose +Hirose_DF12_DF12C3.0-50DS-0.5V_2x25_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-50DS-0.5V, 50 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +100 +50 +Connector_Hirose +Hirose_DF12_DF12C3.0-60DS-0.5V_2x30_P0.50mm_Vertical +Hirose DF12C SMD, DF12C3.0-60DS-0.5V, 60 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +120 +60 +Connector_Hirose +Hirose_DF12_DF12E3.0-10DP-0.5V_2x05_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-10DP-0.5V, 10 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +20 +10 +Connector_Hirose +Hirose_DF12_DF12E3.0-14DP-0.5V_2x07_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-14DP-0.5V, 14 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +28 +14 +Connector_Hirose +Hirose_DF12_DF12E3.0-20DP-0.5V_2x10_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-20DP-0.5V, 20 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +40 +20 +Connector_Hirose +Hirose_DF12_DF12E3.0-30DP-0.5V_2x15_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-30DP-0.5V, 30 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +60 +30 +Connector_Hirose +Hirose_DF12_DF12E3.0-32DP-0.5V_2x16_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-32DP-0.5V, 32 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +64 +32 +Connector_Hirose +Hirose_DF12_DF12E3.0-36DP-0.5V_2x18_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-36DP-0.5V, 36 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +72 +36 +Connector_Hirose +Hirose_DF12_DF12E3.0-40DP-0.5V_2x20_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-40DP-0.5V, 40 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +80 +40 +Connector_Hirose +Hirose_DF12_DF12E3.0-50DP-0.5V_2x25_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-50DP-0.5V, 50 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +100 +50 +Connector_Hirose +Hirose_DF12_DF12E3.0-60DP-0.5V_2x30_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-60DP-0.5V, 60 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +120 +60 +Connector_Hirose +Hirose_DF12_DF12E3.0-80DP-0.5V_2x40_P0.50mm_Vertical +Hirose DF12E SMD, DF12E3.0-80DP-0.5V, 80 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator +connector Hirose DF12 vertical +0 +160 +80 +Connector_Hirose +Hirose_DF13-02P-1.25DSA_1x02_P1.25mm_Vertical +Hirose DF13 through hole, DF13-02P-1.25DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +2 +2 +Connector_Hirose +Hirose_DF13-02P-1.25DS_1x02_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-02P-1.25DS, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +2 +2 +Connector_Hirose +Hirose_DF13-03P-1.25DSA_1x03_P1.25mm_Vertical +Hirose DF13 through hole, DF13-03P-1.25DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +3 +3 +Connector_Hirose +Hirose_DF13-03P-1.25DS_1x03_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-03P-1.25DS, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +3 +3 +Connector_Hirose +Hirose_DF13-04P-1.25DSA_1x04_P1.25mm_Vertical +Hirose DF13 through hole, DF13-04P-1.25DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF13-04P-1.25DS_1x04_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-04P-1.25DS, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +4 +4 +Connector_Hirose +Hirose_DF13-05P-1.25DSA_1x05_P1.25mm_Vertical +Hirose DF13 through hole, DF13-05P-1.25DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +5 +5 +Connector_Hirose +Hirose_DF13-05P-1.25DS_1x05_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-05P-1.25DS, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +5 +5 +Connector_Hirose +Hirose_DF13-06P-1.25DSA_1x06_P1.25mm_Vertical +Hirose DF13 through hole, DF13-06P-1.25DSA, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +6 +6 +Connector_Hirose +Hirose_DF13-06P-1.25DS_1x06_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-06P-1.25DS, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +6 +6 +Connector_Hirose +Hirose_DF13-07P-1.25DSA_1x07_P1.25mm_Vertical +Hirose DF13 through hole, DF13-07P-1.25DSA, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +7 +7 +Connector_Hirose +Hirose_DF13-07P-1.25DS_1x07_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-07P-1.25DS, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +7 +7 +Connector_Hirose +Hirose_DF13-08P-1.25DSA_1x08_P1.25mm_Vertical +Hirose DF13 through hole, DF13-08P-1.25DSA, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +8 +8 +Connector_Hirose +Hirose_DF13-08P-1.25DS_1x08_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-08P-1.25DS, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +8 +8 +Connector_Hirose +Hirose_DF13-09P-1.25DSA_1x09_P1.25mm_Vertical +Hirose DF13 through hole, DF13-09P-1.25DSA, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +9 +9 +Connector_Hirose +Hirose_DF13-09P-1.25DS_1x09_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-09P-1.25DS, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +9 +9 +Connector_Hirose +Hirose_DF13-10P-1.25DSA_1x10_P1.25mm_Vertical +Hirose DF13 through hole, DF13-10P-1.25DSA, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +10 +10 +Connector_Hirose +Hirose_DF13-10P-1.25DS_1x10_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-10P-1.25DS, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +10 +10 +Connector_Hirose +Hirose_DF13-11P-1.25DSA_1x11_P1.25mm_Vertical +Hirose DF13 through hole, DF13-11P-1.25DSA, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +11 +11 +Connector_Hirose +Hirose_DF13-11P-1.25DS_1x11_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-11P-1.25DS, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +11 +11 +Connector_Hirose +Hirose_DF13-12P-1.25DSA_1x12_P1.25mm_Vertical +Hirose DF13 through hole, DF13-12P-1.25DSA, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +12 +12 +Connector_Hirose +Hirose_DF13-12P-1.25DS_1x12_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-12P-1.25DS, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +12 +12 +Connector_Hirose +Hirose_DF13-13P-1.25DSA_1x13_P1.25mm_Vertical +Hirose DF13 through hole, DF13-13P-1.25DSA, 13 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +13 +13 +Connector_Hirose +Hirose_DF13-14P-1.25DSA_1x14_P1.25mm_Vertical +Hirose DF13 through hole, DF13-14P-1.25DSA, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +14 +14 +Connector_Hirose +Hirose_DF13-14P-1.25DS_1x14_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-14P-1.25DS, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +14 +14 +Connector_Hirose +Hirose_DF13-15P-1.25DSA_1x15_P1.25mm_Vertical +Hirose DF13 through hole, DF13-15P-1.25DSA, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator +connector Hirose DF13 vertical +0 +15 +15 +Connector_Hirose +Hirose_DF13-15P-1.25DS_1x15_P1.25mm_Horizontal +Hirose DF13 through hole, DF13-15P-1.25DS, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator +connector Hirose DF13 horizontal +0 +15 +15 +Connector_Hirose +Hirose_DF13C_CL535-0402-2-51_1x02-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0402-2-51, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +4 +3 +Connector_Hirose +Hirose_DF13C_CL535-0403-5-51_1x03-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0403-5-51, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +5 +4 +Connector_Hirose +Hirose_DF13C_CL535-0404-8-51_1x04-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0404-8-51, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +6 +5 +Connector_Hirose +Hirose_DF13C_CL535-0405-0-51_1x05-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0405-0-51, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +7 +6 +Connector_Hirose +Hirose_DF13C_CL535-0406-3-51_1x06-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0406-3-51, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +8 +7 +Connector_Hirose +Hirose_DF13C_CL535-0407-6-51_1x07-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0407-6-51, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +9 +8 +Connector_Hirose +Hirose_DF13C_CL535-0408-9-51_1x08-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0408-9-51, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +10 +9 +Connector_Hirose +Hirose_DF13C_CL535-0409-1-51_1x09-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0409-1-51, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +11 +10 +Connector_Hirose +Hirose_DF13C_CL535-0410-4-51_1x10-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0410-4-51, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +12 +11 +Connector_Hirose +Hirose_DF13C_CL535-0411-3-51_1x11-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0411-3-51, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +13 +12 +Connector_Hirose +Hirose_DF13C_CL535-0412-6-51_1x12-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0412-6-51, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +14 +13 +Connector_Hirose +Hirose_DF13C_CL535-0414-1-51_1x14-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0414-1-51, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +16 +15 +Connector_Hirose +Hirose_DF13C_CL535-0415-4-51_1x15-1MP_P1.25mm_Vertical +Hirose DF13C SMD, CL535-0415-4-51, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator +connector Hirose DF13C vertical +0 +17 +16 +Connector_Hirose +Hirose_DF52-2S-0.8H_1x02-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-2S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +4 +3 +Connector_Hirose +Hirose_DF52-3S-0.8H_1x03-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-3S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +5 +4 +Connector_Hirose +Hirose_DF52-4S-0.8H_1x04-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-4S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +6 +5 +Connector_Hirose +Hirose_DF52-5S-0.8H_1x05-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-5S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +7 +6 +Connector_Hirose +Hirose_DF52-6S-0.8H_1x06-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-6S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +8 +7 +Connector_Hirose +Hirose_DF52-7S-0.8H_1x07-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-7S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +9 +8 +Connector_Hirose +Hirose_DF52-8S-0.8H_1x08-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-8S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +10 +9 +Connector_Hirose +Hirose_DF52-9S-0.8H_1x09-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-9S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +11 +10 +Connector_Hirose +Hirose_DF52-10S-0.8H_1x10-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-10S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +12 +11 +Connector_Hirose +Hirose_DF52-11S-0.8H_1x11-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-11S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +13 +12 +Connector_Hirose +Hirose_DF52-12S-0.8H_1x12-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-12S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +14 +13 +Connector_Hirose +Hirose_DF52-14S-0.8H_1x14-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-14S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +16 +15 +Connector_Hirose +Hirose_DF52-15S-0.8H_1x15-1MP_P0.80mm_Horizontal +Hirose series connector, DF52-15S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator +connector Hirose top entry +0 +17 +16 +Connector_Hirose +Hirose_DF63-5P-3.96DSA_1x05_P3.96mm_Vertical +Hirose DF63 through hole, DF63-5P-3.96DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +5 +5 +Connector_Hirose +Hirose_DF63-6P-3.96DSA_1x06_P3.96mm_Vertical +Hirose DF63 through hole, DF63-6P-3.96DSA, 6 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +6 +6 +Connector_Hirose +Hirose_DF63M-1P-3.96DSA_1x01_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-1P-3.96DSA, 1 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +1 +1 +Connector_Hirose +Hirose_DF63M-2P-3.96DSA_1x02_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-2P-3.96DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +2 +2 +Connector_Hirose +Hirose_DF63M-3P-3.96DSA_1x03_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-3P-3.96DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +3 +3 +Connector_Hirose +Hirose_DF63M-4P-3.96DSA_1x04_P3.96mm_Vertical +Hirose DF63 through hole, DF63M-4P-3.96DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF63R-1P-3.96DSA_1x01_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-1P-3.96DSA, 1 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +1 +1 +Connector_Hirose +Hirose_DF63R-2P-3.96DSA_1x02_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-2P-3.96DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +2 +2 +Connector_Hirose +Hirose_DF63R-3P-3.96DSA_1x03_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-3P-3.96DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +3 +3 +Connector_Hirose +Hirose_DF63R-4P-3.96DSA_1x04_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-4P-3.96DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +4 +4 +Connector_Hirose +Hirose_DF63R-5P-3.96DSA_1x05_P3.96mm_Vertical +Hirose DF63 through hole, DF63R-5P-3.96DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator +connector Hirose DF63 vertical +0 +5 +5 +Connector_IDC +IDC-Header_2x03_P2.54mm_Horizontal +Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x03_P2.54mm_Vertical +Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x03_P2.54mm_Vertical_SMD +SMD IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x03 2.54mm double row +0 +6 +6 +Connector_IDC +IDC-Header_2x04_P2.54mm_Horizontal +Through hole IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x04_P2.54mm_Vertical +Through hole IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x04_P2.54mm_Vertical_SMD +SMD IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x04 2.54mm double row +0 +8 +8 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +12 +11 +Connector_IDC +IDC-Header_2x05_P2.54mm_Horizontal +Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Latch_Vertical +Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Vertical +Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x05_P2.54mm_Vertical_SMD +SMD IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x05 2.54mm double row +0 +10 +10 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +14 +13 +Connector_IDC +IDC-Header_2x06_P2.54mm_Horizontal +Through hole IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Latch_Vertical +Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Vertical +Through hole IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x06_P2.54mm_Vertical_SMD +SMD IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x06 2.54mm double row +0 +12 +12 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +16 +15 +Connector_IDC +IDC-Header_2x07_P2.54mm_Horizontal +Through hole IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Horizontal_Lock +Connector IDC Locked, 10 contacts, compatible header: PANCON HE10 (Series 50, (https://www.reboul.fr/storage/00003af6.pdf) +connector idc locked +0 +16 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Latch_Vertical +Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Vertical +Through hole IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x07_P2.54mm_Vertical_SMD +SMD IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x07 2.54mm double row +0 +14 +14 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +18 +17 +Connector_IDC +IDC-Header_2x08_P2.54mm_Horizontal +Through hole IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Latch_Vertical +Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Vertical +Through hole IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x08_P2.54mm_Vertical_SMD +SMD IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x08 2.54mm double row +0 +16 +16 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +22 +21 +Connector_IDC +IDC-Header_2x10_P2.54mm_Horizontal +Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Latch_Vertical +Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Vertical +Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x10_P2.54mm_Vertical_SMD +SMD IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x10 2.54mm double row +0 +20 +20 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +26 +25 +Connector_IDC +IDC-Header_2x12_P2.54mm_Horizontal +Through hole IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Latch_Vertical +Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Vertical +Through hole IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x12_P2.54mm_Vertical_SMD +SMD IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x12 2.54mm double row +0 +24 +24 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +28 +27 +Connector_IDC +IDC-Header_2x13_P2.54mm_Horizontal +Through hole IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Latch_Vertical +Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Vertical +Through hole IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x13_P2.54mm_Vertical_SMD +SMD IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x13 2.54mm double row +0 +26 +26 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +32 +31 +Connector_IDC +IDC-Header_2x15_P2.54mm_Horizontal +Through hole IDC box header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Latch_Vertical +Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x15_P2.54mm_Vertical +Through hole IDC box header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x15 2.54mm double row +0 +30 +30 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +36 +35 +Connector_IDC +IDC-Header_2x17_P2.54mm_Horizontal +Through hole IDC box header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Latch_Vertical +Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x17_P2.54mm_Vertical +Through hole IDC box header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x17 2.54mm double row +0 +34 +34 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +42 +41 +Connector_IDC +IDC-Header_2x20_P2.54mm_Horizontal +Through hole IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Latch_Vertical +Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Vertical +Through hole IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x20_P2.54mm_Vertical_SMD +SMD IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x20 2.54mm double row +0 +40 +40 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +52 +51 +Connector_IDC +IDC-Header_2x25_P2.54mm_Horizontal +Through hole IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Latch_Vertical +Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Vertical +Through hole IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x25_P2.54mm_Vertical_SMD +SMD IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x25 2.54mm double row +0 +50 +50 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +62 +61 +Connector_IDC +IDC-Header_2x30_P2.54mm_Horizontal +Through hole IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Latch_Vertical +Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Vertical +Through hole IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x30_P2.54mm_Vertical_SMD +SMD IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf +SMD vertical IDC box header 2x30 2.54mm double row +0 +60 +60 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32-1MP_P2.54mm_Latch_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +66 +65 +Connector_IDC +IDC-Header_2x32_P2.54mm_Horizontal +Through hole IDC box header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC box header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch6.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch9.5mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch12.0mm_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch_Horizontal +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole horizontal IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Latch_Vertical +Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC header THT 2x32 2.54mm double row +0 +64 +64 +Connector_IDC +IDC-Header_2x32_P2.54mm_Vertical +Through hole IDC box header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 +Through hole vertical IDC box header THT 2x32 2.54mm double row +0 +64 +64 +Connector_JAE +JAE_LY20-4P-DLT1_2x02_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-4P-DLT1, 2 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +4 +4 +Connector_JAE +JAE_LY20-4P-DT1_2x02_P2.00mm_Vertical +Molex LY 20 series connector, LY20-4P-DT1, 2 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +4 +4 +Connector_JAE +JAE_LY20-6P-DLT1_2x03_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-6P-DLT1, 3 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +6 +6 +Connector_JAE +JAE_LY20-6P-DT1_2x03_P2.00mm_Vertical +Molex LY 20 series connector, LY20-6P-DT1, 3 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +6 +6 +Connector_JAE +JAE_LY20-8P-DLT1_2x04_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-8P-DLT1, 4 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +8 +8 +Connector_JAE +JAE_LY20-8P-DT1_2x04_P2.00mm_Vertical +Molex LY 20 series connector, LY20-8P-DT1, 4 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +8 +8 +Connector_JAE +JAE_LY20-10P-DLT1_2x05_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-10P-DLT1, 5 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +10 +10 +Connector_JAE +JAE_LY20-10P-DT1_2x05_P2.00mm_Vertical +Molex LY 20 series connector, LY20-10P-DT1, 5 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +10 +10 +Connector_JAE +JAE_LY20-12P-DLT1_2x06_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-12P-DLT1, 6 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +12 +12 +Connector_JAE +JAE_LY20-12P-DT1_2x06_P2.00mm_Vertical +Molex LY 20 series connector, LY20-12P-DT1, 6 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +12 +12 +Connector_JAE +JAE_LY20-14P-DLT1_2x07_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-14P-DLT1, 7 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +14 +14 +Connector_JAE +JAE_LY20-14P-DT1_2x07_P2.00mm_Vertical +Molex LY 20 series connector, LY20-14P-DT1, 7 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +14 +14 +Connector_JAE +JAE_LY20-16P-DLT1_2x08_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-16P-DLT1, 8 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +16 +16 +Connector_JAE +JAE_LY20-16P-DT1_2x08_P2.00mm_Vertical +Molex LY 20 series connector, LY20-16P-DT1, 8 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +16 +16 +Connector_JAE +JAE_LY20-18P-DLT1_2x09_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-18P-DLT1, 9 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +18 +18 +Connector_JAE +JAE_LY20-18P-DT1_2x09_P2.00mm_Vertical +Molex LY 20 series connector, LY20-18P-DT1, 9 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +18 +18 +Connector_JAE +JAE_LY20-20P-DLT1_2x10_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-20P-DLT1, 10 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +20 +20 +Connector_JAE +JAE_LY20-20P-DT1_2x10_P2.00mm_Vertical +Molex LY 20 series connector, LY20-20P-DT1, 10 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +20 +20 +Connector_JAE +JAE_LY20-22P-DLT1_2x11_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-22P-DLT1, 11 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +22 +22 +Connector_JAE +JAE_LY20-22P-DT1_2x11_P2.00mm_Vertical +Molex LY 20 series connector, LY20-22P-DT1, 11 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +22 +22 +Connector_JAE +JAE_LY20-24P-DLT1_2x12_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-24P-DLT1, 12 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +24 +24 +Connector_JAE +JAE_LY20-24P-DT1_2x12_P2.00mm_Vertical +Molex LY 20 series connector, LY20-24P-DT1, 12 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +24 +24 +Connector_JAE +JAE_LY20-26P-DLT1_2x13_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-26P-DLT1, 13 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +26 +26 +Connector_JAE +JAE_LY20-26P-DT1_2x13_P2.00mm_Vertical +Molex LY 20 series connector, LY20-26P-DT1, 13 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +26 +26 +Connector_JAE +JAE_LY20-28P-DLT1_2x14_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-28P-DLT1, 14 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +28 +28 +Connector_JAE +JAE_LY20-28P-DT1_2x14_P2.00mm_Vertical +Molex LY 20 series connector, LY20-28P-DT1, 14 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +28 +28 +Connector_JAE +JAE_LY20-30P-DLT1_2x15_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-30P-DLT1, 15 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +30 +30 +Connector_JAE +JAE_LY20-30P-DT1_2x15_P2.00mm_Vertical +Molex LY 20 series connector, LY20-30P-DT1, 15 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +30 +30 +Connector_JAE +JAE_LY20-32P-DLT1_2x16_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-32P-DLT1, 16 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +32 +32 +Connector_JAE +JAE_LY20-32P-DT1_2x16_P2.00mm_Vertical +Molex LY 20 series connector, LY20-32P-DT1, 16 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +32 +32 +Connector_JAE +JAE_LY20-34P-DLT1_2x17_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-34P-DLT1, 17 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +34 +34 +Connector_JAE +JAE_LY20-34P-DT1_2x17_P2.00mm_Vertical +Molex LY 20 series connector, LY20-34P-DT1, 17 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +34 +34 +Connector_JAE +JAE_LY20-36P-DLT1_2x18_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-36P-DLT1, 18 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +36 +36 +Connector_JAE +JAE_LY20-36P-DT1_2x18_P2.00mm_Vertical +Molex LY 20 series connector, LY20-36P-DT1, 18 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +36 +36 +Connector_JAE +JAE_LY20-38P-DLT1_2x19_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-38P-DLT1, 19 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +38 +38 +Connector_JAE +JAE_LY20-38P-DT1_2x19_P2.00mm_Vertical +Molex LY 20 series connector, LY20-38P-DT1, 19 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +38 +38 +Connector_JAE +JAE_LY20-40P-DLT1_2x20_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-40P-DLT1, 20 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +40 +40 +Connector_JAE +JAE_LY20-40P-DT1_2x20_P2.00mm_Vertical +Molex LY 20 series connector, LY20-40P-DT1, 20 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +40 +40 +Connector_JAE +JAE_LY20-42P-DLT1_2x21_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-42P-DLT1, 21 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +42 +42 +Connector_JAE +JAE_LY20-42P-DT1_2x21_P2.00mm_Vertical +Molex LY 20 series connector, LY20-42P-DT1, 21 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +42 +42 +Connector_JAE +JAE_LY20-44P-DLT1_2x22_P2.00mm_Horizontal +Molex LY 20 series connector, LY20-44P-DLT1, 22 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator +connector JAE top entry +0 +44 +44 +Connector_JAE +JAE_LY20-44P-DT1_2x22_P2.00mm_Vertical +Molex LY 20 series connector, LY20-44P-DT1, 22 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator +connector JAE side entry +0 +44 +44 +Connector_JAE +JAE_MM70-314-310B1 +http://www.heilind.com/marketing/documents/jae/JAE_MM70.pdf +connector JAE MXM +0 +280 +279 +Connector_JAE +JAE_SIM_Card_SF72S006 +SIM Card, Push-Push, https://www.jae.com/direct/topics/topics_file_download/topics_id=68892&ext_no=06&index=0&_lang=en&v=202003111511468456809 +SIM Card with Detect Switch +0 +18 +9 +Connector_JST +JST_ACH_BM01B-ACHSS-A-GAN-ETF_1x01-1MP_P1.20mm_Vertical +JST ACH series connector, BM01B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +3 +2 +Connector_JST +JST_ACH_BM02B-ACHSS-GAN-ETF_1x02-1MP_P1.20mm_Vertical +JST ACH series connector, BM02B-ACHSS-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +4 +3 +Connector_JST +JST_ACH_BM03B-ACHSS-GAN-ETF_1x03-1MP_P1.20mm_Vertical +JST ACH series connector, BM03B-ACHSS-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +5 +4 +Connector_JST +JST_ACH_BM04B-ACHSS-A-GAN-ETF_1x04-1MP_P1.20mm_Vertical +JST ACH series connector, BM04B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +6 +5 +Connector_JST +JST_ACH_BM05B-ACHSS-A-GAN-ETF_1x05-1MP_P1.20mm_Vertical +JST ACH series connector, BM05B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator +connector JST ACH vertical +0 +7 +6 +Connector_JST +JST_AUH_BM03B-AUHKS-GA-TB_1x03-1MP_P1.50mm_Vertical +JST AUH series connector, BM03B-AUHKS-GA-TB (http://www.jst-mfg.com/product/pdf/eng/eAUH.pdf), generated with kicad-footprint-generator +connector JST AUH side entry +0 +5 +4 +Connector_JST +JST_AUH_BM05B-AUHKS-GA-TB_1x05-1MP_P1.50mm_Vertical +JST AUH series connector, BM05B-AUHKS-GA-TB (http://www.jst-mfg.com/product/pdf/eng/eAUH.pdf), generated with kicad-footprint-generator +connector JST AUH side entry +0 +7 +6 +Connector_JST +JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical +JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +2 +2 +Connector_JST +JST_EH_B3B-EH-A_1x03_P2.50mm_Vertical +JST EH series connector, B3B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +3 +3 +Connector_JST +JST_EH_B4B-EH-A_1x04_P2.50mm_Vertical +JST EH series connector, B4B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +4 +4 +Connector_JST +JST_EH_B5B-EH-A_1x05_P2.50mm_Vertical +JST EH series connector, B5B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +5 +5 +Connector_JST +JST_EH_B6B-EH-A_1x06_P2.50mm_Vertical +JST EH series connector, B6B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +6 +6 +Connector_JST +JST_EH_B7B-EH-A_1x07_P2.50mm_Vertical +JST EH series connector, B7B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +7 +7 +Connector_JST +JST_EH_B8B-EH-A_1x08_P2.50mm_Vertical +JST EH series connector, B8B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +8 +8 +Connector_JST +JST_EH_B9B-EH-A_1x09_P2.50mm_Vertical +JST EH series connector, B9B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH vertical +0 +9 +9 +Connector_JST +JST_EH_B10B-EH-A_1x10_P2.50mm_Vertical +JST EH series connector, B10B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +10 +10 +Connector_JST +JST_EH_B11B-EH-A_1x11_P2.50mm_Vertical +JST EH series connector, B11B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +11 +11 +Connector_JST +JST_EH_B12B-EH-A_1x12_P2.50mm_Vertical +JST EH series connector, B12B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +12 +12 +Connector_JST +JST_EH_B13B-EH-A_1x13_P2.50mm_Vertical +JST EH series connector, B13B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +13 +13 +Connector_JST +JST_EH_B14B-EH-A_1x14_P2.50mm_Vertical +JST EH series connector, B14B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +14 +14 +Connector_JST +JST_EH_B15B-EH-A_1x15_P2.50mm_Vertical +JST EH series connector, B15B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH side entry +0 +15 +15 +Connector_JST +JST_EH_S2B-EH_1x02_P2.50mm_Horizontal +JST EH series connector, S2B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +2 +2 +Connector_JST +JST_EH_S3B-EH_1x03_P2.50mm_Horizontal +JST EH series connector, S3B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +3 +3 +Connector_JST +JST_EH_S4B-EH_1x04_P2.50mm_Horizontal +JST EH series connector, S4B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +4 +4 +Connector_JST +JST_EH_S5B-EH_1x05_P2.50mm_Horizontal +JST EH series connector, S5B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +5 +5 +Connector_JST +JST_EH_S6B-EH_1x06_P2.50mm_Horizontal +JST EH series connector, S6B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +6 +6 +Connector_JST +JST_EH_S7B-EH_1x07_P2.50mm_Horizontal +JST EH series connector, S7B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +7 +7 +Connector_JST +JST_EH_S8B-EH_1x08_P2.50mm_Horizontal +JST EH series connector, S8B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +8 +8 +Connector_JST +JST_EH_S9B-EH_1x09_P2.50mm_Horizontal +JST EH series connector, S9B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH horizontal +0 +9 +9 +Connector_JST +JST_EH_S10B-EH_1x10_P2.50mm_Horizontal +JST EH series connector, S10B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +10 +10 +Connector_JST +JST_EH_S11B-EH_1x11_P2.50mm_Horizontal +JST EH series connector, S11B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +11 +11 +Connector_JST +JST_EH_S12B-EH_1x12_P2.50mm_Horizontal +JST EH series connector, S12B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +12 +12 +Connector_JST +JST_EH_S13B-EH_1x13_P2.50mm_Horizontal +JST EH series connector, S13B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +13 +13 +Connector_JST +JST_EH_S14B-EH_1x14_P2.50mm_Horizontal +JST EH series connector, S14B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +14 +14 +Connector_JST +JST_EH_S15B-EH_1x15_P2.50mm_Horizontal +JST EH series connector, S15B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator +connector JST EH top entry +0 +15 +15 +Connector_JST +JST_GH_BM02B-GHS-TBT_1x02-1MP_P1.25mm_Vertical +JST GH series connector, BM02B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +4 +3 +Connector_JST +JST_GH_BM03B-GHS-TBT_1x03-1MP_P1.25mm_Vertical +JST GH series connector, BM03B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +5 +4 +Connector_JST +JST_GH_BM04B-GHS-TBT_1x04-1MP_P1.25mm_Vertical +JST GH series connector, BM04B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +6 +5 +Connector_JST +JST_GH_BM05B-GHS-TBT_1x05-1MP_P1.25mm_Vertical +JST GH series connector, BM05B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +7 +6 +Connector_JST +JST_GH_BM06B-GHS-TBT_1x06-1MP_P1.25mm_Vertical +JST GH series connector, BM06B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +8 +7 +Connector_JST +JST_GH_BM07B-GHS-TBT_1x07-1MP_P1.25mm_Vertical +JST GH series connector, BM07B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +9 +8 +Connector_JST +JST_GH_BM08B-GHS-TBT_1x08-1MP_P1.25mm_Vertical +JST GH series connector, BM08B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +10 +9 +Connector_JST +JST_GH_BM09B-GHS-TBT_1x09-1MP_P1.25mm_Vertical +JST GH series connector, BM09B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +11 +10 +Connector_JST +JST_GH_BM10B-GHS-TBT_1x10-1MP_P1.25mm_Vertical +JST GH series connector, BM10B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +12 +11 +Connector_JST +JST_GH_BM11B-GHS-TBT_1x11-1MP_P1.25mm_Vertical +JST GH series connector, BM11B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +13 +12 +Connector_JST +JST_GH_BM12B-GHS-TBT_1x12-1MP_P1.25mm_Vertical +JST GH series connector, BM12B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +14 +13 +Connector_JST +JST_GH_BM13B-GHS-TBT_1x13-1MP_P1.25mm_Vertical +JST GH series connector, BM13B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +15 +14 +Connector_JST +JST_GH_BM14B-GHS-TBT_1x14-1MP_P1.25mm_Vertical +JST GH series connector, BM14B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +16 +15 +Connector_JST +JST_GH_BM15B-GHS-TBT_1x15-1MP_P1.25mm_Vertical +JST GH series connector, BM15B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH side entry +0 +17 +16 +Connector_JST +JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal +JST GH series connector, SM02B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +4 +3 +Connector_JST +JST_GH_SM03B-GHS-TB_1x03-1MP_P1.25mm_Horizontal +JST GH series connector, SM03B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +5 +4 +Connector_JST +JST_GH_SM04B-GHS-TB_1x04-1MP_P1.25mm_Horizontal +JST GH series connector, SM04B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +6 +5 +Connector_JST +JST_GH_SM05B-GHS-TB_1x05-1MP_P1.25mm_Horizontal +JST GH series connector, SM05B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +7 +6 +Connector_JST +JST_GH_SM06B-GHS-TB_1x06-1MP_P1.25mm_Horizontal +JST GH series connector, SM06B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +8 +7 +Connector_JST +JST_GH_SM07B-GHS-TB_1x07-1MP_P1.25mm_Horizontal +JST GH series connector, SM07B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +9 +8 +Connector_JST +JST_GH_SM08B-GHS-TB_1x08-1MP_P1.25mm_Horizontal +JST GH series connector, SM08B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +10 +9 +Connector_JST +JST_GH_SM09B-GHS-TB_1x09-1MP_P1.25mm_Horizontal +JST GH series connector, SM09B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +11 +10 +Connector_JST +JST_GH_SM10B-GHS-TB_1x10-1MP_P1.25mm_Horizontal +JST GH series connector, SM10B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +12 +11 +Connector_JST +JST_GH_SM11B-GHS-TB_1x11-1MP_P1.25mm_Horizontal +JST GH series connector, SM11B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +13 +12 +Connector_JST +JST_GH_SM12B-GHS-TB_1x12-1MP_P1.25mm_Horizontal +JST GH series connector, SM12B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +14 +13 +Connector_JST +JST_GH_SM13B-GHS-TB_1x13-1MP_P1.25mm_Horizontal +JST GH series connector, SM13B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +15 +14 +Connector_JST +JST_GH_SM14B-GHS-TB_1x14-1MP_P1.25mm_Horizontal +JST GH series connector, SM14B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +16 +15 +Connector_JST +JST_GH_SM15B-GHS-TB_1x15-1MP_P1.25mm_Horizontal +JST GH series connector, SM15B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator +connector JST GH top entry +0 +17 +16 +Connector_JST +JST_J2100_B06B-J21DK-GGXR_2x03_P2.50x4.00mm_Vertical +JST J2100 series connector, B06B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +8 +6 +Connector_JST +JST_J2100_B08B-J21DK-GGXR_2x04_P2.50x4.00mm_Vertical +JST J2100 series connector, B08B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +10 +8 +Connector_JST +JST_J2100_B10B-J21DK-GGXR_2x05_P2.50x4.00mm_Vertical +JST J2100 series connector, B10B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +12 +10 +Connector_JST +JST_J2100_B12B-J21DK-GGXR_2x06_P2.50x4.00mm_Vertical +JST J2100 series connector, B12B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +14 +12 +Connector_JST +JST_J2100_B16B-J21DK-GGXR_2x08_P2.50x4.00mm_Vertical +JST J2100 series connector, B16B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +18 +16 +Connector_JST +JST_J2100_B20B-J21DK-GGXR_2x10_P2.50x4.00mm_Vertical +JST J2100 series connector, B20B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 vertical +0 +22 +20 +Connector_JST +JST_J2100_S06B-J21DK-GGXR_2x03_P2.50mm_Horizontal +JST J2100 series connector, S06B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +7 +6 +Connector_JST +JST_J2100_S08B-J21DK-GGXR_2x04_P2.50mm_Horizontal +JST J2100 series connector, S08B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +10 +8 +Connector_JST +JST_J2100_S10B-J21DK-GGXR_2x05_P2.50mm_Horizontal +JST J2100 series connector, S10B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +12 +10 +Connector_JST +JST_J2100_S12B-J21DK-GGXR_2x06_P2.50mm_Horizontal +JST J2100 series connector, S12B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +14 +12 +Connector_JST +JST_J2100_S16B-J21DK-GGXR_2x08_P2.50mm_Horizontal +JST J2100 series connector, S16B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +18 +16 +Connector_JST +JST_J2100_S20B-J21DK-GGXR_2x10_P2.50mm_Horizontal +JST J2100 series connector, S20B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator +connector JST J2100 horizontal +0 +22 +20 +Connector_JST +JST_JWPF_B02B-JWPF-SK-R_1x02_P2.00mm_Vertical +JST JWPF series connector, B02B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +2 +2 +Connector_JST +JST_JWPF_B03B-JWPF-SK-R_1x03_P2.00mm_Vertical +JST JWPF series connector, B03B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +3 +3 +Connector_JST +JST_JWPF_B04B-JWPF-SK-R_1x04_P2.00mm_Vertical +JST JWPF series connector, B04B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +4 +4 +Connector_JST +JST_JWPF_B06B-JWPF-SK-R_2x03_P2.00mm_Vertical +JST JWPF series connector, B06B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +6 +6 +Connector_JST +JST_JWPF_B08B-JWPF-SK-R_2x04_P2.00mm_Vertical +JST JWPF series connector, B08B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator +connector JST JWPF side entry +0 +8 +8 +Connector_JST +JST_LEA_SM02B-LEASS-TF_1x02-1MP_P4.20mm_Horizontal +JST LEA series connector, SM02B-LEASS-TF (http://www.jst-mfg.com/product/pdf/eng/eLEA.pdf), generated with kicad-footprint-generator +connector JST LEA top entry +0 +4 +3 +Connector_JST +JST_NV_B02P-NV_1x02_P5.00mm_Vertical +JST NV series connector, B02P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator +connector JST NV side entry +0 +2 +2 +Connector_JST +JST_NV_B03P-NV_1x03_P5.00mm_Vertical +JST NV series connector, B03P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator +connector JST NV side entry +0 +3 +3 +Connector_JST +JST_NV_B04P-NV_1x04_P5.00mm_Vertical +JST NV series connector, B04P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator +connector JST NV side entry +0 +4 +4 +Connector_JST +JST_PHD_B8B-PHDSS_2x04_P2.00mm_Vertical +JST PHD series connector, B8B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +8 +8 +Connector_JST +JST_PHD_B10B-PHDSS_2x05_P2.00mm_Vertical +JST PHD series connector, B10B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +10 +10 +Connector_JST +JST_PHD_B12B-PHDSS_2x06_P2.00mm_Vertical +JST PHD series connector, B12B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +12 +12 +Connector_JST +JST_PHD_B14B-PHDSS_2x07_P2.00mm_Vertical +JST PHD series connector, B14B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +14 +14 +Connector_JST +JST_PHD_B16B-PHDSS_2x08_P2.00mm_Vertical +JST PHD series connector, B16B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +16 +16 +Connector_JST +JST_PHD_B18B-PHDSS_2x09_P2.00mm_Vertical +JST PHD series connector, B18B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +18 +18 +Connector_JST +JST_PHD_B20B-PHDSS_2x10_P2.00mm_Vertical +JST PHD series connector, B20B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +20 +20 +Connector_JST +JST_PHD_B22B-PHDSS_2x11_P2.00mm_Vertical +JST PHD series connector, B22B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +22 +22 +Connector_JST +JST_PHD_B24B-PHDSS_2x12_P2.00mm_Vertical +JST PHD series connector, B24B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +24 +24 +Connector_JST +JST_PHD_B26B-PHDSS_2x13_P2.00mm_Vertical +JST PHD series connector, B26B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +26 +26 +Connector_JST +JST_PHD_B28B-PHDSS_2x14_P2.00mm_Vertical +JST PHD series connector, B28B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +28 +28 +Connector_JST +JST_PHD_B30B-PHDSS_2x15_P2.00mm_Vertical +JST PHD series connector, B30B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +30 +30 +Connector_JST +JST_PHD_B32B-PHDSS_2x16_P2.00mm_Vertical +JST PHD series connector, B32B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +32 +32 +Connector_JST +JST_PHD_B34B-PHDSS_2x17_P2.00mm_Vertical +JST PHD series connector, B34B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD vertical +0 +34 +34 +Connector_JST +JST_PHD_S8B-PHDSS_2x04_P2.00mm_Horizontal +JST PHD series connector, S8B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +8 +8 +Connector_JST +JST_PHD_S10B-PHDSS_2x05_P2.00mm_Horizontal +JST PHD series connector, S10B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +10 +10 +Connector_JST +JST_PHD_S12B-PHDSS_2x06_P2.00mm_Horizontal +JST PHD series connector, S12B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +12 +12 +Connector_JST +JST_PHD_S14B-PHDSS_2x07_P2.00mm_Horizontal +JST PHD series connector, S14B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +14 +14 +Connector_JST +JST_PHD_S16B-PHDSS_2x08_P2.00mm_Horizontal +JST PHD series connector, S16B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +16 +16 +Connector_JST +JST_PHD_S18B-PHDSS_2x09_P2.00mm_Horizontal +JST PHD series connector, S18B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +18 +18 +Connector_JST +JST_PHD_S20B-PHDSS_2x10_P2.00mm_Horizontal +JST PHD series connector, S20B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +20 +20 +Connector_JST +JST_PHD_S22B-PHDSS_2x11_P2.00mm_Horizontal +JST PHD series connector, S22B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +22 +22 +Connector_JST +JST_PHD_S24B-PHDSS_2x12_P2.00mm_Horizontal +JST PHD series connector, S24B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +24 +24 +Connector_JST +JST_PHD_S26B-PHDSS_2x13_P2.00mm_Horizontal +JST PHD series connector, S26B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +26 +26 +Connector_JST +JST_PHD_S28B-PHDSS_2x14_P2.00mm_Horizontal +JST PHD series connector, S28B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +28 +28 +Connector_JST +JST_PHD_S30B-PHDSS_2x15_P2.00mm_Horizontal +JST PHD series connector, S30B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +30 +30 +Connector_JST +JST_PHD_S32B-PHDSS_2x16_P2.00mm_Horizontal +JST PHD series connector, S32B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +32 +32 +Connector_JST +JST_PHD_S34B-PHDSS_2x17_P2.00mm_Horizontal +JST PHD series connector, S34B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator +connector JST PHD horizontal +0 +34 +34 +Connector_JST +JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical +JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +2 +2 +Connector_JST +JST_PH_B2B-PH-SM4-TB_1x02-1MP_P2.00mm_Vertical +JST PH series connector, B2B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +4 +3 +Connector_JST +JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical +JST PH series connector, B3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +3 +3 +Connector_JST +JST_PH_B3B-PH-SM4-TB_1x03-1MP_P2.00mm_Vertical +JST PH series connector, B3B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +5 +4 +Connector_JST +JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical +JST PH series connector, B4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +4 +4 +Connector_JST +JST_PH_B4B-PH-SM4-TB_1x04-1MP_P2.00mm_Vertical +JST PH series connector, B4B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +6 +5 +Connector_JST +JST_PH_B5B-PH-K_1x05_P2.00mm_Vertical +JST PH series connector, B5B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +5 +5 +Connector_JST +JST_PH_B5B-PH-SM4-TB_1x05-1MP_P2.00mm_Vertical +JST PH series connector, B5B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +7 +6 +Connector_JST +JST_PH_B6B-PH-K_1x06_P2.00mm_Vertical +JST PH series connector, B6B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +6 +6 +Connector_JST +JST_PH_B6B-PH-SM4-TB_1x06-1MP_P2.00mm_Vertical +JST PH series connector, B6B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +8 +7 +Connector_JST +JST_PH_B7B-PH-K_1x07_P2.00mm_Vertical +JST PH series connector, B7B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +7 +7 +Connector_JST +JST_PH_B7B-PH-SM4-TB_1x07-1MP_P2.00mm_Vertical +JST PH series connector, B7B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +9 +8 +Connector_JST +JST_PH_B8B-PH-K_1x08_P2.00mm_Vertical +JST PH series connector, B8B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +8 +8 +Connector_JST +JST_PH_B8B-PH-SM4-TB_1x08-1MP_P2.00mm_Vertical +JST PH series connector, B8B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +10 +9 +Connector_JST +JST_PH_B9B-PH-K_1x09_P2.00mm_Vertical +JST PH series connector, B9B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +9 +9 +Connector_JST +JST_PH_B9B-PH-SM4-TB_1x09-1MP_P2.00mm_Vertical +JST PH series connector, B9B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +11 +10 +Connector_JST +JST_PH_B10B-PH-K_1x10_P2.00mm_Vertical +JST PH series connector, B10B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +10 +10 +Connector_JST +JST_PH_B10B-PH-SM4-TB_1x10-1MP_P2.00mm_Vertical +JST PH series connector, B10B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +12 +11 +Connector_JST +JST_PH_B11B-PH-K_1x11_P2.00mm_Vertical +JST PH series connector, B11B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +11 +11 +Connector_JST +JST_PH_B11B-PH-SM4-TB_1x11-1MP_P2.00mm_Vertical +JST PH series connector, B11B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +13 +12 +Connector_JST +JST_PH_B12B-PH-K_1x12_P2.00mm_Vertical +JST PH series connector, B12B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +12 +12 +Connector_JST +JST_PH_B12B-PH-SM4-TB_1x12-1MP_P2.00mm_Vertical +JST PH series connector, B12B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +14 +13 +Connector_JST +JST_PH_B13B-PH-K_1x13_P2.00mm_Vertical +JST PH series connector, B13B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +13 +13 +Connector_JST +JST_PH_B13B-PH-SM4-TB_1x13-1MP_P2.00mm_Vertical +JST PH series connector, B13B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +15 +14 +Connector_JST +JST_PH_B14B-PH-K_1x14_P2.00mm_Vertical +JST PH series connector, B14B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +14 +14 +Connector_JST +JST_PH_B14B-PH-SM4-TB_1x14-1MP_P2.00mm_Vertical +JST PH series connector, B14B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +16 +15 +Connector_JST +JST_PH_B15B-PH-K_1x15_P2.00mm_Vertical +JST PH series connector, B15B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +15 +15 +Connector_JST +JST_PH_B15B-PH-SM4-TB_1x15-1MP_P2.00mm_Vertical +JST PH series connector, B15B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +17 +16 +Connector_JST +JST_PH_B16B-PH-K_1x16_P2.00mm_Vertical +JST PH series connector, B16B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +16 +16 +Connector_JST +JST_PH_B16B-PH-SM4-TB_1x16-1MP_P2.00mm_Vertical +JST PH series connector, B16B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH side entry +0 +18 +17 +Connector_JST +JST_PH_S2B-PH-K_1x02_P2.00mm_Horizontal +JST PH series connector, S2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +2 +2 +Connector_JST +JST_PH_S2B-PH-SM4-TB_1x02-1MP_P2.00mm_Horizontal +JST PH series connector, S2B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +4 +3 +Connector_JST +JST_PH_S3B-PH-K_1x03_P2.00mm_Horizontal +JST PH series connector, S3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +3 +3 +Connector_JST +JST_PH_S3B-PH-SM4-TB_1x03-1MP_P2.00mm_Horizontal +JST PH series connector, S3B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +5 +4 +Connector_JST +JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal +JST PH series connector, S4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +4 +4 +Connector_JST +JST_PH_S4B-PH-SM4-TB_1x04-1MP_P2.00mm_Horizontal +JST PH series connector, S4B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +6 +5 +Connector_JST +JST_PH_S5B-PH-K_1x05_P2.00mm_Horizontal +JST PH series connector, S5B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +5 +5 +Connector_JST +JST_PH_S5B-PH-SM4-TB_1x05-1MP_P2.00mm_Horizontal +JST PH series connector, S5B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +7 +6 +Connector_JST +JST_PH_S6B-PH-K_1x06_P2.00mm_Horizontal +JST PH series connector, S6B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +6 +6 +Connector_JST +JST_PH_S6B-PH-SM4-TB_1x06-1MP_P2.00mm_Horizontal +JST PH series connector, S6B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +8 +7 +Connector_JST +JST_PH_S7B-PH-K_1x07_P2.00mm_Horizontal +JST PH series connector, S7B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +7 +7 +Connector_JST +JST_PH_S7B-PH-SM4-TB_1x07-1MP_P2.00mm_Horizontal +JST PH series connector, S7B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +9 +8 +Connector_JST +JST_PH_S8B-PH-K_1x08_P2.00mm_Horizontal +JST PH series connector, S8B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +8 +8 +Connector_JST +JST_PH_S8B-PH-SM4-TB_1x08-1MP_P2.00mm_Horizontal +JST PH series connector, S8B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +10 +9 +Connector_JST +JST_PH_S9B-PH-K_1x09_P2.00mm_Horizontal +JST PH series connector, S9B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +9 +9 +Connector_JST +JST_PH_S9B-PH-SM4-TB_1x09-1MP_P2.00mm_Horizontal +JST PH series connector, S9B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +11 +10 +Connector_JST +JST_PH_S10B-PH-K_1x10_P2.00mm_Horizontal +JST PH series connector, S10B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +10 +10 +Connector_JST +JST_PH_S10B-PH-SM4-TB_1x10-1MP_P2.00mm_Horizontal +JST PH series connector, S10B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +12 +11 +Connector_JST +JST_PH_S11B-PH-K_1x11_P2.00mm_Horizontal +JST PH series connector, S11B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +11 +11 +Connector_JST +JST_PH_S11B-PH-SM4-TB_1x11-1MP_P2.00mm_Horizontal +JST PH series connector, S11B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +13 +12 +Connector_JST +JST_PH_S12B-PH-K_1x12_P2.00mm_Horizontal +JST PH series connector, S12B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +12 +12 +Connector_JST +JST_PH_S12B-PH-SM4-TB_1x12-1MP_P2.00mm_Horizontal +JST PH series connector, S12B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +14 +13 +Connector_JST +JST_PH_S13B-PH-K_1x13_P2.00mm_Horizontal +JST PH series connector, S13B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +13 +13 +Connector_JST +JST_PH_S13B-PH-SM4-TB_1x13-1MP_P2.00mm_Horizontal +JST PH series connector, S13B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +15 +14 +Connector_JST +JST_PH_S14B-PH-K_1x14_P2.00mm_Horizontal +JST PH series connector, S14B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +14 +14 +Connector_JST +JST_PH_S14B-PH-SM4-TB_1x14-1MP_P2.00mm_Horizontal +JST PH series connector, S14B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +16 +15 +Connector_JST +JST_PH_S15B-PH-K_1x15_P2.00mm_Horizontal +JST PH series connector, S15B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +15 +15 +Connector_JST +JST_PH_S15B-PH-SM4-TB_1x15-1MP_P2.00mm_Horizontal +JST PH series connector, S15B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +17 +16 +Connector_JST +JST_PH_S16B-PH-K_1x16_P2.00mm_Horizontal +JST PH series connector, S16B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator +connector JST PH top entry +0 +16 +16 +Connector_JST +JST_PUD_B08B-PUDSS_2x04_P2.00mm_Vertical +JST PUD series connector, B08B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +8 +8 +Connector_JST +JST_PUD_B10B-PUDSS_2x05_P2.00mm_Vertical +JST PUD series connector, B10B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +10 +10 +Connector_JST +JST_PUD_B12B-PUDSS_2x06_P2.00mm_Vertical +JST PUD series connector, B12B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +12 +12 +Connector_JST +JST_PUD_B14B-PUDSS_2x07_P2.00mm_Vertical +JST PUD series connector, B14B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +14 +14 +Connector_JST +JST_PUD_B16B-PUDSS_2x08_P2.00mm_Vertical +JST PUD series connector, B16B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +16 +16 +Connector_JST +JST_PUD_B18B-PUDSS_2x09_P2.00mm_Vertical +JST PUD series connector, B18B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +18 +18 +Connector_JST +JST_PUD_B20B-PUDSS_2x10_P2.00mm_Vertical +JST PUD series connector, B20B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +20 +20 +Connector_JST +JST_PUD_B22B-PUDSS_2x11_P2.00mm_Vertical +JST PUD series connector, B22B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +22 +22 +Connector_JST +JST_PUD_B24B-PUDSS_2x12_P2.00mm_Vertical +JST PUD series connector, B24B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +24 +24 +Connector_JST +JST_PUD_B26B-PUDSS_2x13_P2.00mm_Vertical +JST PUD series connector, B26B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +26 +26 +Connector_JST +JST_PUD_B28B-PUDSS_2x14_P2.00mm_Vertical +JST PUD series connector, B28B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +28 +28 +Connector_JST +JST_PUD_B30B-PUDSS_2x15_P2.00mm_Vertical +JST PUD series connector, B30B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +30 +30 +Connector_JST +JST_PUD_B32B-PUDSS_2x16_P2.00mm_Vertical +JST PUD series connector, B32B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +32 +32 +Connector_JST +JST_PUD_B34B-PUDSS_2x17_P2.00mm_Vertical +JST PUD series connector, B34B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +34 +34 +Connector_JST +JST_PUD_B36B-PUDSS_2x18_P2.00mm_Vertical +JST PUD series connector, B36B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +36 +36 +Connector_JST +JST_PUD_B38B-PUDSS_2x19_P2.00mm_Vertical +JST PUD series connector, B38B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +38 +38 +Connector_JST +JST_PUD_B40B-PUDSS_2x20_P2.00mm_Vertical +JST PUD series connector, B40B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD side entry +0 +40 +40 +Connector_JST +JST_PUD_S08B-PUDSS-1_2x04_P2.00mm_Horizontal +JST PUD series connector, S08B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +8 +8 +Connector_JST +JST_PUD_S10B-PUDSS-1_2x05_P2.00mm_Horizontal +JST PUD series connector, S10B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +10 +10 +Connector_JST +JST_PUD_S12B-PUDSS-1_2x06_P2.00mm_Horizontal +JST PUD series connector, S12B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +12 +12 +Connector_JST +JST_PUD_S14B-PUDSS-1_2x07_P2.00mm_Horizontal +JST PUD series connector, S14B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +14 +14 +Connector_JST +JST_PUD_S16B-PUDSS-1_2x08_P2.00mm_Horizontal +JST PUD series connector, S16B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +16 +16 +Connector_JST +JST_PUD_S18B-PUDSS-1_2x09_P2.00mm_Horizontal +JST PUD series connector, S18B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +18 +18 +Connector_JST +JST_PUD_S20B-PUDSS-1_2x10_P2.00mm_Horizontal +JST PUD series connector, S20B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +20 +20 +Connector_JST +JST_PUD_S22B-PUDSS-1_2x11_P2.00mm_Horizontal +JST PUD series connector, S22B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +22 +22 +Connector_JST +JST_PUD_S24B-PUDSS-1_2x12_P2.00mm_Horizontal +JST PUD series connector, S24B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +24 +24 +Connector_JST +JST_PUD_S26B-PUDSS-1_2x13_P2.00mm_Horizontal +JST PUD series connector, S26B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +26 +26 +Connector_JST +JST_PUD_S28B-PUDSS-1_2x14_P2.00mm_Horizontal +JST PUD series connector, S28B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +28 +28 +Connector_JST +JST_PUD_S30B-PUDSS-1_2x15_P2.00mm_Horizontal +JST PUD series connector, S30B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +30 +30 +Connector_JST +JST_PUD_S32B-PUDSS-1_2x16_P2.00mm_Horizontal +JST PUD series connector, S32B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +32 +32 +Connector_JST +JST_PUD_S34B-PUDSS-1_2x17_P2.00mm_Horizontal +JST PUD series connector, S34B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +34 +34 +Connector_JST +JST_PUD_S36B-PUDSS-1_2x18_P2.00mm_Horizontal +JST PUD series connector, S36B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +36 +36 +Connector_JST +JST_PUD_S38B-PUDSS-1_2x19_P2.00mm_Horizontal +JST PUD series connector, S38B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +38 +38 +Connector_JST +JST_PUD_S40B-PUDSS-1_2x20_P2.00mm_Horizontal +JST PUD series connector, S40B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator +connector JST PUD top entry +0 +40 +40 +Connector_JST +JST_SFH_SM02B-SFHRS-TF_1x02-1MP_P4.20mm_Horizontal +JST SFH series connector, SM02B-SFHRS-TF (http://www.jst-mfg.com/product/pdf/eng/eSFH.pdf), generated with kicad-footprint-generator +connector JST SFH horizontal +0 +4 +3 +Connector_JST +JST_SHL_SM02B-SHLS-TF_1x02-1MP_P1.00mm_Horizontal +JST SHL series connector, SM02B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +4 +3 +Connector_JST +JST_SHL_SM05B-SHLS-TF_1x05-1MP_P1.00mm_Horizontal +JST SHL series connector, SM05B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +7 +6 +Connector_JST +JST_SHL_SM06B-SHLS-TF_1x06-1MP_P1.00mm_Horizontal +JST SHL series connector, SM06B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +8 +7 +Connector_JST +JST_SHL_SM07B-SHLS-TF_1x07-1MP_P1.00mm_Horizontal +JST SHL series connector, SM07B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +9 +8 +Connector_JST +JST_SHL_SM08B-SHLS-TF_1x08-1MP_P1.00mm_Horizontal +JST SHL series connector, SM08B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +10 +9 +Connector_JST +JST_SHL_SM10B-SHLS-TF_1x10-1MP_P1.00mm_Horizontal +JST SHL series connector, SM10B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +12 +11 +Connector_JST +JST_SHL_SM11B-SHLS-TF_1x11-1MP_P1.00mm_Horizontal +JST SHL series connector, SM11B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +13 +12 +Connector_JST +JST_SHL_SM12B-SHLS-TF_1x12-1MP_P1.00mm_Horizontal +JST SHL series connector, SM12B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +14 +13 +Connector_JST +JST_SHL_SM14B-SHLS-TF_1x14-1MP_P1.00mm_Horizontal +JST SHL series connector, SM14B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +16 +15 +Connector_JST +JST_SHL_SM16B-SHLS-TF_1x16-1MP_P1.00mm_Horizontal +JST SHL series connector, SM16B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +18 +17 +Connector_JST +JST_SHL_SM20B-SHLS-TF_1x20-1MP_P1.00mm_Horizontal +JST SHL series connector, SM20B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +22 +21 +Connector_JST +JST_SHL_SM22B-SHLS-TF_1x22-1MP_P1.00mm_Horizontal +JST SHL series connector, SM22B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +24 +23 +Connector_JST +JST_SHL_SM26B-SHLS-TF_1x26-1MP_P1.00mm_Horizontal +JST SHL series connector, SM26B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +28 +27 +Connector_JST +JST_SHL_SM30B-SHLS-TF_1x30-1MP_P1.00mm_Horizontal +JST SHL series connector, SM30B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator +connector JST SHL top entry +0 +32 +31 +Connector_JST +JST_SH_BM02B-SRSS-TB_1x02-1MP_P1.00mm_Vertical +JST SH series connector, BM02B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +4 +3 +Connector_JST +JST_SH_BM03B-SRSS-TB_1x03-1MP_P1.00mm_Vertical +JST SH series connector, BM03B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +5 +4 +Connector_JST +JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical +JST SH series connector, BM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +6 +5 +Connector_JST +JST_SH_BM05B-SRSS-TB_1x05-1MP_P1.00mm_Vertical +JST SH series connector, BM05B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +7 +6 +Connector_JST +JST_SH_BM06B-SRSS-TB_1x06-1MP_P1.00mm_Vertical +JST SH series connector, BM06B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +8 +7 +Connector_JST +JST_SH_BM07B-SRSS-TB_1x07-1MP_P1.00mm_Vertical +JST SH series connector, BM07B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +9 +8 +Connector_JST +JST_SH_BM08B-SRSS-TB_1x08-1MP_P1.00mm_Vertical +JST SH series connector, BM08B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +10 +9 +Connector_JST +JST_SH_BM09B-SRSS-TB_1x09-1MP_P1.00mm_Vertical +JST SH series connector, BM09B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +11 +10 +Connector_JST +JST_SH_BM10B-SRSS-TB_1x10-1MP_P1.00mm_Vertical +JST SH series connector, BM10B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +12 +11 +Connector_JST +JST_SH_BM11B-SRSS-TB_1x11-1MP_P1.00mm_Vertical +JST SH series connector, BM11B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +13 +12 +Connector_JST +JST_SH_BM12B-SRSS-TB_1x12-1MP_P1.00mm_Vertical +JST SH series connector, BM12B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +14 +13 +Connector_JST +JST_SH_BM13B-SRSS-TB_1x13-1MP_P1.00mm_Vertical +JST SH series connector, BM13B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +15 +14 +Connector_JST +JST_SH_BM14B-SRSS-TB_1x14-1MP_P1.00mm_Vertical +JST SH series connector, BM14B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +16 +15 +Connector_JST +JST_SH_BM15B-SRSS-TB_1x15-1MP_P1.00mm_Vertical +JST SH series connector, BM15B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH side entry +0 +17 +16 +Connector_JST +JST_SH_SM02B-SRSS-TB_1x02-1MP_P1.00mm_Horizontal +JST SH series connector, SM02B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +4 +3 +Connector_JST +JST_SH_SM03B-SRSS-TB_1x03-1MP_P1.00mm_Horizontal +JST SH series connector, SM03B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +5 +4 +Connector_JST +JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal +JST SH series connector, SM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +6 +5 +Connector_JST +JST_SH_SM05B-SRSS-TB_1x05-1MP_P1.00mm_Horizontal +JST SH series connector, SM05B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +7 +6 +Connector_JST +JST_SH_SM06B-SRSS-TB_1x06-1MP_P1.00mm_Horizontal +JST SH series connector, SM06B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +8 +7 +Connector_JST +JST_SH_SM07B-SRSS-TB_1x07-1MP_P1.00mm_Horizontal +JST SH series connector, SM07B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +9 +8 +Connector_JST +JST_SH_SM08B-SRSS-TB_1x08-1MP_P1.00mm_Horizontal +JST SH series connector, SM08B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +10 +9 +Connector_JST +JST_SH_SM09B-SRSS-TB_1x09-1MP_P1.00mm_Horizontal +JST SH series connector, SM09B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +11 +10 +Connector_JST +JST_SH_SM10B-SRSS-TB_1x10-1MP_P1.00mm_Horizontal +JST SH series connector, SM10B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +12 +11 +Connector_JST +JST_SH_SM11B-SRSS-TB_1x11-1MP_P1.00mm_Horizontal +JST SH series connector, SM11B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +13 +12 +Connector_JST +JST_SH_SM12B-SRSS-TB_1x12-1MP_P1.00mm_Horizontal +JST SH series connector, SM12B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +14 +13 +Connector_JST +JST_SH_SM13B-SRSS-TB_1x13-1MP_P1.00mm_Horizontal +JST SH series connector, SM13B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +15 +14 +Connector_JST +JST_SH_SM14B-SRSS-TB_1x14-1MP_P1.00mm_Horizontal +JST SH series connector, SM14B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +16 +15 +Connector_JST +JST_SH_SM15B-SRSS-TB_1x15-1MP_P1.00mm_Horizontal +JST SH series connector, SM15B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +17 +16 +Connector_JST +JST_SH_SM20B-SRSS-TB_1x20-1MP_P1.00mm_Horizontal +JST SH series connector, SM20B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator +connector JST SH top entry +0 +22 +21 +Connector_JST +JST_SUR_BM02B-SURS-TF_1x02-1MP_P0.80mm_Vertical +JST SUR series connector, BM02B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +4 +3 +Connector_JST +JST_SUR_BM03B-SURS-TF_1x03-1MP_P0.80mm_Vertical +JST SUR series connector, BM03B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +5 +4 +Connector_JST +JST_SUR_BM04B-SURS-TF_1x04-1MP_P0.80mm_Vertical +JST SUR series connector, BM04B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +6 +5 +Connector_JST +JST_SUR_BM05B-SURS-TF_1x05-1MP_P0.80mm_Vertical +JST SUR series connector, BM05B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +7 +6 +Connector_JST +JST_SUR_BM06B-SURS-TF_1x06-1MP_P0.80mm_Vertical +JST SUR series connector, BM06B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +8 +7 +Connector_JST +JST_SUR_BM08B-SURS-TF_1x08-1MP_P0.80mm_Vertical +JST SUR series connector, BM08B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +10 +9 +Connector_JST +JST_SUR_BM10B-SURS-TF_1x10-1MP_P0.80mm_Vertical +JST SUR series connector, BM10B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +12 +11 +Connector_JST +JST_SUR_BM12B-SURS-TF_1x12-1MP_P0.80mm_Vertical +JST SUR series connector, BM12B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +14 +13 +Connector_JST +JST_SUR_BM14B-SURS-TF_1x14-1MP_P0.80mm_Vertical +JST SUR series connector, BM14B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +16 +15 +Connector_JST +JST_SUR_BM15B-SURS-TF_1x15-1MP_P0.80mm_Vertical +JST SUR series connector, BM15B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +17 +16 +Connector_JST +JST_SUR_BM16B-SURS-TF_1x16-1MP_P0.80mm_Vertical +JST SUR series connector, BM16B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +18 +17 +Connector_JST +JST_SUR_BM17B-SURS-TF_1x17-1MP_P0.80mm_Vertical +JST SUR series connector, BM17B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +19 +18 +Connector_JST +JST_SUR_BM20B-SURS-TF_1x20-1MP_P0.80mm_Vertical +JST SUR series connector, BM20B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR side entry +0 +22 +21 +Connector_JST +JST_SUR_SM02B-SURS-TF_1x02-1MP_P0.80mm_Horizontal +JST SUR series connector, SM02B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +4 +3 +Connector_JST +JST_SUR_SM03B-SURS-TF_1x03-1MP_P0.80mm_Horizontal +JST SUR series connector, SM03B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +5 +4 +Connector_JST +JST_SUR_SM04B-SURS-TF_1x04-1MP_P0.80mm_Horizontal +JST SUR series connector, SM04B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +6 +5 +Connector_JST +JST_SUR_SM05B-SURS-TF_1x05-1MP_P0.80mm_Horizontal +JST SUR series connector, SM05B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +7 +6 +Connector_JST +JST_SUR_SM06B-SURS-TF_1x06-1MP_P0.80mm_Horizontal +JST SUR series connector, SM06B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +8 +7 +Connector_JST +JST_SUR_SM08B-SURS-TF_1x08-1MP_P0.80mm_Horizontal +JST SUR series connector, SM08B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +10 +9 +Connector_JST +JST_SUR_SM10B-SURS-TF_1x10-1MP_P0.80mm_Horizontal +JST SUR series connector, SM10B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +12 +11 +Connector_JST +JST_SUR_SM12B-SURS-TF_1x12-1MP_P0.80mm_Horizontal +JST SUR series connector, SM12B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +14 +13 +Connector_JST +JST_SUR_SM14B-SURS-TF_1x14-1MP_P0.80mm_Horizontal +JST SUR series connector, SM14B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +16 +15 +Connector_JST +JST_SUR_SM15B-SURS-TF_1x15-1MP_P0.80mm_Horizontal +JST SUR series connector, SM15B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +17 +16 +Connector_JST +JST_SUR_SM16B-SURS-TF_1x16-1MP_P0.80mm_Horizontal +JST SUR series connector, SM16B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +18 +17 +Connector_JST +JST_SUR_SM17B-SURS-TF_1x17-1MP_P0.80mm_Horizontal +JST SUR series connector, SM17B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +19 +18 +Connector_JST +JST_SUR_SM20B-SURS-TF_1x20-1MP_P0.80mm_Horizontal +JST SUR series connector, SM20B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +22 +21 +Connector_JST +JST_SUR_SM22B-SURS-TF_1x22-1MP_P0.80mm_Horizontal +JST SUR series connector, SM22B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator +connector JST SUR top entry +0 +24 +23 +Connector_JST +JST_VH_B2P-VH-B_1x02_P3.96mm_Vertical +JST VH PBT series connector, B2P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +2 +2 +Connector_JST +JST_VH_B2P-VH-FB-B_1x02_P3.96mm_Vertical +JST VH series connector, B2P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +2 +2 +Connector_JST +JST_VH_B2P-VH_1x02_P3.96mm_Vertical +JST VH series connector, B2P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +2 +2 +Connector_JST +JST_VH_B2P3-VH_1x02_P7.92mm_Vertical +JST VH series connector, B2P3-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +2 +2 +Connector_JST +JST_VH_B2PS-VH_1x02_P3.96mm_Horizontal +JST VH series connector, B2PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +2 +2 +Connector_JST +JST_VH_B3P-VH-B_1x03_P3.96mm_Vertical +JST VH PBT series connector, B3P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +3 +3 +Connector_JST +JST_VH_B3P-VH-FB-B_1x03_P3.96mm_Vertical +JST VH series connector, B3P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +3 +3 +Connector_JST +JST_VH_B3P-VH_1x03_P3.96mm_Vertical +JST VH series connector, B3P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +3 +3 +Connector_JST +JST_VH_B3PS-VH_1x03_P3.96mm_Horizontal +JST VH series connector, B3PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +3 +3 +Connector_JST +JST_VH_B4P-VH-B_1x04_P3.96mm_Vertical +JST VH PBT series connector, B4P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +4 +4 +Connector_JST +JST_VH_B4P-VH-FB-B_1x04_P3.96mm_Vertical +JST VH series connector, B4P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +4 +4 +Connector_JST +JST_VH_B4P-VH_1x04_P3.96mm_Vertical +JST VH series connector, B4P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +4 +4 +Connector_JST +JST_VH_B4PS-VH_1x04_P3.96mm_Horizontal +JST VH series connector, B4PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +4 +4 +Connector_JST +JST_VH_B5P-VH-B_1x05_P3.96mm_Vertical +JST VH PBT series connector, B5P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +5 +5 +Connector_JST +JST_VH_B5P-VH-FB-B_1x05_P3.96mm_Vertical +JST VH series connector, B5P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +5 +5 +Connector_JST +JST_VH_B5P-VH_1x05_P3.96mm_Vertical +JST VH series connector, B5P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +5 +5 +Connector_JST +JST_VH_B5PS-VH_1x05_P3.96mm_Horizontal +JST VH series connector, B5PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +5 +5 +Connector_JST +JST_VH_B6P-VH-B_1x06_P3.96mm_Vertical +JST VH PBT series connector, B6P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +6 +6 +Connector_JST +JST_VH_B6P-VH-FB-B_1x06_P3.96mm_Vertical +JST VH series connector, B6P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +6 +6 +Connector_JST +JST_VH_B6P-VH_1x06_P3.96mm_Vertical +JST VH series connector, B6P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +6 +6 +Connector_JST +JST_VH_B6PS-VH_1x06_P3.96mm_Horizontal +JST VH series connector, B6PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +6 +6 +Connector_JST +JST_VH_B7P-VH-B_1x07_P3.96mm_Vertical +JST VH PBT series connector, B7P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +7 +7 +Connector_JST +JST_VH_B7P-VH-FB-B_1x07_P3.96mm_Vertical +JST VH series connector, B7P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +7 +7 +Connector_JST +JST_VH_B7P-VH_1x07_P3.96mm_Vertical +JST VH series connector, B7P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +7 +7 +Connector_JST +JST_VH_B7PS-VH_1x07_P3.96mm_Horizontal +JST VH series connector, B7PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +7 +7 +Connector_JST +JST_VH_B8P-VH-B_1x08_P3.96mm_Vertical +JST VH PBT series connector, B8P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +8 +8 +Connector_JST +JST_VH_B8P-VH-FB-B_1x08_P3.96mm_Vertical +JST VH series connector, B8P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +8 +8 +Connector_JST +JST_VH_B8P-VH_1x08_P3.96mm_Vertical +JST VH series connector, B8P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +8 +8 +Connector_JST +JST_VH_B8PS-VH_1x08_P3.96mm_Horizontal +JST VH series connector, B8PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +8 +8 +Connector_JST +JST_VH_B9P-VH-B_1x09_P3.96mm_Vertical +JST VH PBT series connector, B9P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +9 +9 +Connector_JST +JST_VH_B9P-VH-FB-B_1x09_P3.96mm_Vertical +JST VH series connector, B9P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +9 +9 +Connector_JST +JST_VH_B9P-VH_1x09_P3.96mm_Vertical +JST VH series connector, B9P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +9 +9 +Connector_JST +JST_VH_B9PS-VH_1x09_P3.96mm_Horizontal +JST VH series connector, B9PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +9 +9 +Connector_JST +JST_VH_B10P-VH-B_1x10_P3.96mm_Vertical +JST VH PBT series connector, B10P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +10 +10 +Connector_JST +JST_VH_B10P-VH-FB-B_1x10_P3.96mm_Vertical +JST VH series connector, B10P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH side entry +0 +10 +10 +Connector_JST +JST_VH_B10P-VH_1x10_P3.96mm_Vertical +JST VH series connector, B10P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +10 +10 +Connector_JST +JST_VH_B10PS-VH_1x10_P3.96mm_Horizontal +JST VH series connector, B10PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +10 +10 +Connector_JST +JST_VH_B11P-VH-B_1x11_P3.96mm_Vertical +JST VH PBT series connector, B11P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH vertical +0 +11 +11 +Connector_JST +JST_VH_S2P-VH_1x02_P3.96mm_Horizontal +JST VH series connector, S2P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +2 +2 +Connector_JST +JST_VH_S3P-VH_1x03_P3.96mm_Horizontal +JST VH series connector, S3P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +3 +3 +Connector_JST +JST_VH_S4P-VH_1x04_P3.96mm_Horizontal +JST VH series connector, S4P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +4 +4 +Connector_JST +JST_VH_S5P-VH_1x05_P3.96mm_Horizontal +JST VH series connector, S5P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +5 +5 +Connector_JST +JST_VH_S6P-VH_1x06_P3.96mm_Horizontal +JST VH series connector, S6P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +6 +6 +Connector_JST +JST_VH_S7P-VH_1x07_P3.96mm_Horizontal +JST VH series connector, S7P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator +connector JST VH top entry +0 +7 +7 +Connector_JST +JST_XAG_SM05B-XAGKS-BN-TB_1x05-1MP_P2.50mm_Horizontal +JST XAG series connector, SM05B-XAGKS-BN-TB (http://www.jst-mfg.com/product/pdf/eng/eXAG.pdf), generated with kicad-footprint-generator +connector JST XAG top entry +0 +7 +6 +Connector_JST +JST_XA_B02B-XASK-1-A_1x02_P2.50mm_Vertical +JST XA series connector, B02B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +2 +2 +Connector_JST +JST_XA_B02B-XASK-1_1x02_P2.50mm_Vertical +JST XA series connector, B02B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +2 +2 +Connector_JST +JST_XA_B03B-XASK-1-A_1x03_P2.50mm_Vertical +JST XA series connector, B03B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +3 +3 +Connector_JST +JST_XA_B03B-XASK-1_1x03_P2.50mm_Vertical +JST XA series connector, B03B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +3 +3 +Connector_JST +JST_XA_B04B-XASK-1-A_1x04_P2.50mm_Vertical +JST XA series connector, B04B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +4 +4 +Connector_JST +JST_XA_B04B-XASK-1_1x04_P2.50mm_Vertical +JST XA series connector, B04B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +4 +4 +Connector_JST +JST_XA_B05B-XASK-1-A_1x05_P2.50mm_Vertical +JST XA series connector, B05B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +5 +5 +Connector_JST +JST_XA_B05B-XASK-1_1x05_P2.50mm_Vertical +JST XA series connector, B05B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +5 +5 +Connector_JST +JST_XA_B06B-XASK-1-A_1x06_P2.50mm_Vertical +JST XA series connector, B06B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +6 +6 +Connector_JST +JST_XA_B06B-XASK-1_1x06_P2.50mm_Vertical +JST XA series connector, B06B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +6 +6 +Connector_JST +JST_XA_B07B-XASK-1-A_1x07_P2.50mm_Vertical +JST XA series connector, B07B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +7 +7 +Connector_JST +JST_XA_B07B-XASK-1_1x07_P2.50mm_Vertical +JST XA series connector, B07B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +7 +7 +Connector_JST +JST_XA_B08B-XASK-1-A_1x08_P2.50mm_Vertical +JST XA series connector, B08B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +8 +8 +Connector_JST +JST_XA_B08B-XASK-1_1x08_P2.50mm_Vertical +JST XA series connector, B08B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +8 +8 +Connector_JST +JST_XA_B09B-XASK-1-A_1x09_P2.50mm_Vertical +JST XA series connector, B09B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +9 +9 +Connector_JST +JST_XA_B09B-XASK-1_1x09_P2.50mm_Vertical +JST XA series connector, B09B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +9 +9 +Connector_JST +JST_XA_B10B-XASK-1-A_1x10_P2.50mm_Vertical +JST XA series connector, B10B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +10 +10 +Connector_JST +JST_XA_B10B-XASK-1_1x10_P2.50mm_Vertical +JST XA series connector, B10B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +10 +10 +Connector_JST +JST_XA_B11B-XASK-1-A_1x11_P2.50mm_Vertical +JST XA series connector, B11B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +11 +11 +Connector_JST +JST_XA_B11B-XASK-1_1x11_P2.50mm_Vertical +JST XA series connector, B11B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +11 +11 +Connector_JST +JST_XA_B12B-XASK-1-A_1x12_P2.50mm_Vertical +JST XA series connector, B12B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +12 +12 +Connector_JST +JST_XA_B12B-XASK-1_1x12_P2.50mm_Vertical +JST XA series connector, B12B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +12 +12 +Connector_JST +JST_XA_B13B-XASK-1-A_1x13_P2.50mm_Vertical +JST XA series connector, B13B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +13 +13 +Connector_JST +JST_XA_B13B-XASK-1_1x13_P2.50mm_Vertical +JST XA series connector, B13B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +13 +13 +Connector_JST +JST_XA_B14B-XASK-1-A_1x14_P2.50mm_Vertical +JST XA series connector, B14B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +14 +14 +Connector_JST +JST_XA_B14B-XASK-1_1x14_P2.50mm_Vertical +JST XA series connector, B14B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +14 +14 +Connector_JST +JST_XA_B15B-XASK-1-A_1x15_P2.50mm_Vertical +JST XA series connector, B15B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +15 +15 +Connector_JST +JST_XA_B15B-XASK-1_1x15_P2.50mm_Vertical +JST XA series connector, B15B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +15 +15 +Connector_JST +JST_XA_B18B-XASK-1_1x18_P2.50mm_Vertical +JST XA series connector, B18B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +18 +18 +Connector_JST +JST_XA_B20B-XASK-1-A_1x20_P2.50mm_Vertical +JST XA series connector, B20B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical boss +0 +20 +20 +Connector_JST +JST_XA_B20B-XASK-1_1x20_P2.50mm_Vertical +JST XA series connector, B20B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA vertical +0 +20 +20 +Connector_JST +JST_XA_S02B-XASK-1N-BN_1x02_P2.50mm_Horizontal +JST XA series connector, S02B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +2 +2 +Connector_JST +JST_XA_S02B-XASK-1_1x02_P2.50mm_Horizontal +JST XA series connector, S02B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +2 +2 +Connector_JST +JST_XA_S03B-XASK-1N-BN_1x03_P2.50mm_Horizontal +JST XA series connector, S03B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +3 +3 +Connector_JST +JST_XA_S03B-XASK-1_1x03_P2.50mm_Horizontal +JST XA series connector, S03B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +3 +3 +Connector_JST +JST_XA_S04B-XASK-1N-BN_1x04_P2.50mm_Horizontal +JST XA series connector, S04B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +4 +4 +Connector_JST +JST_XA_S04B-XASK-1_1x04_P2.50mm_Horizontal +JST XA series connector, S04B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +4 +4 +Connector_JST +JST_XA_S05B-XASK-1N-BN_1x05_P2.50mm_Horizontal +JST XA series connector, S05B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +5 +5 +Connector_JST +JST_XA_S05B-XASK-1_1x05_P2.50mm_Horizontal +JST XA series connector, S05B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +5 +5 +Connector_JST +JST_XA_S06B-XASK-1N-BN_1x06_P2.50mm_Horizontal +JST XA series connector, S06B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +6 +6 +Connector_JST +JST_XA_S06B-XASK-1_1x06_P2.50mm_Horizontal +JST XA series connector, S06B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +6 +6 +Connector_JST +JST_XA_S07B-XASK-1N-BN_1x07_P2.50mm_Horizontal +JST XA series connector, S07B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +7 +7 +Connector_JST +JST_XA_S07B-XASK-1_1x07_P2.50mm_Horizontal +JST XA series connector, S07B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +7 +7 +Connector_JST +JST_XA_S08B-XASK-1N-BN_1x08_P2.50mm_Horizontal +JST XA series connector, S08B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +8 +8 +Connector_JST +JST_XA_S08B-XASK-1_1x08_P2.50mm_Horizontal +JST XA series connector, S08B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +8 +8 +Connector_JST +JST_XA_S09B-XASK-1N-BN_1x09_P2.50mm_Horizontal +JST XA series connector, S09B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +9 +9 +Connector_JST +JST_XA_S09B-XASK-1_1x09_P2.50mm_Horizontal +JST XA series connector, S09B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +9 +9 +Connector_JST +JST_XA_S10B-XASK-1N-BN_1x10_P2.50mm_Horizontal +JST XA series connector, S10B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +10 +10 +Connector_JST +JST_XA_S10B-XASK-1_1x10_P2.50mm_Horizontal +JST XA series connector, S10B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +10 +10 +Connector_JST +JST_XA_S11B-XASK-1N-BN_1x11_P2.50mm_Horizontal +JST XA series connector, S11B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +11 +11 +Connector_JST +JST_XA_S11B-XASK-1_1x11_P2.50mm_Horizontal +JST XA series connector, S11B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +11 +11 +Connector_JST +JST_XA_S12B-XASK-1N-BN_1x12_P2.50mm_Horizontal +JST XA series connector, S12B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +12 +12 +Connector_JST +JST_XA_S12B-XASK-1_1x12_P2.50mm_Horizontal +JST XA series connector, S12B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +12 +12 +Connector_JST +JST_XA_S13B-XASK-1N-BN_1x13_P2.50mm_Horizontal +JST XA series connector, S13B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +13 +13 +Connector_JST +JST_XA_S13B-XASK-1_1x13_P2.50mm_Horizontal +JST XA series connector, S13B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +13 +13 +Connector_JST +JST_XA_S14B-XASK-1N-BN_1x14_P2.50mm_Horizontal +JST XA series connector, S14B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal +0 +14 +14 +Connector_JST +JST_XA_S14B-XASK-1_1x14_P2.50mm_Horizontal +JST XA series connector, S14B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator +connector JST XA horizontal hook +0 +14 +14 +Connector_JST +JST_XH_B1B-XH-AM_1x01_P2.50mm_Vertical +JST XH series connector, B1B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +1 +1 +Connector_JST +JST_XH_B2B-XH-AM_1x02_P2.50mm_Vertical +JST XH series connector, B2B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +2 +2 +Connector_JST +JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical +JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +2 +2 +Connector_JST +JST_XH_B3B-XH-AM_1x03_P2.50mm_Vertical +JST XH series connector, B3B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +3 +3 +Connector_JST +JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical +JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +3 +3 +Connector_JST +JST_XH_B4B-XH-AM_1x04_P2.50mm_Vertical +JST XH series connector, B4B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +4 +4 +Connector_JST +JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical +JST XH series connector, B4B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +4 +4 +Connector_JST +JST_XH_B5B-XH-AM_1x05_P2.50mm_Vertical +JST XH series connector, B5B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +5 +5 +Connector_JST +JST_XH_B5B-XH-A_1x05_P2.50mm_Vertical +JST XH series connector, B5B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +5 +5 +Connector_JST +JST_XH_B6B-XH-AM_1x06_P2.50mm_Vertical +JST XH series connector, B6B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +6 +6 +Connector_JST +JST_XH_B6B-XH-A_1x06_P2.50mm_Vertical +JST XH series connector, B6B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +6 +6 +Connector_JST +JST_XH_B7B-XH-AM_1x07_P2.50mm_Vertical +JST XH series connector, B7B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +7 +7 +Connector_JST +JST_XH_B7B-XH-A_1x07_P2.50mm_Vertical +JST XH series connector, B7B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +7 +7 +Connector_JST +JST_XH_B8B-XH-AM_1x08_P2.50mm_Vertical +JST XH series connector, B8B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +8 +8 +Connector_JST +JST_XH_B8B-XH-A_1x08_P2.50mm_Vertical +JST XH series connector, B8B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +8 +8 +Connector_JST +JST_XH_B9B-XH-AM_1x09_P2.50mm_Vertical +JST XH series connector, B9B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical boss +0 +9 +9 +Connector_JST +JST_XH_B9B-XH-A_1x09_P2.50mm_Vertical +JST XH series connector, B9B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH vertical +0 +9 +9 +Connector_JST +JST_XH_B10B-XH-AM_1x10_P2.50mm_Vertical +JST XH series connector, B10B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry boss +0 +10 +10 +Connector_JST +JST_XH_B10B-XH-A_1x10_P2.50mm_Vertical +JST XH series connector, B10B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +10 +10 +Connector_JST +JST_XH_B11B-XH-A_1x11_P2.50mm_Vertical +JST XH series connector, B11B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +11 +11 +Connector_JST +JST_XH_B12B-XH-AM_1x12_P2.50mm_Vertical +JST XH series connector, B12B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry boss +0 +12 +12 +Connector_JST +JST_XH_B12B-XH-A_1x12_P2.50mm_Vertical +JST XH series connector, B12B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +12 +12 +Connector_JST +JST_XH_B13B-XH-A_1x13_P2.50mm_Vertical +JST XH series connector, B13B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +13 +13 +Connector_JST +JST_XH_B14B-XH-A_1x14_P2.50mm_Vertical +JST XH series connector, B14B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +14 +14 +Connector_JST +JST_XH_B15B-XH-A_1x15_P2.50mm_Vertical +JST XH series connector, B15B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +15 +15 +Connector_JST +JST_XH_B16B-XH-A_1x16_P2.50mm_Vertical +JST XH series connector, B16B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +16 +16 +Connector_JST +JST_XH_B20B-XH-A_1x20_P2.50mm_Vertical +JST XH series connector, B20B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH side entry +0 +20 +20 +Connector_JST +JST_XH_S2B-XH-A-1_1x02_P2.50mm_Horizontal +JST XH series connector, S2B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +2 +2 +Connector_JST +JST_XH_S2B-XH-A_1x02_P2.50mm_Horizontal +JST XH series connector, S2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +2 +2 +Connector_JST +JST_XH_S3B-XH-A-1_1x03_P2.50mm_Horizontal +JST XH series connector, S3B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +3 +3 +Connector_JST +JST_XH_S3B-XH-A_1x03_P2.50mm_Horizontal +JST XH series connector, S3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +3 +3 +Connector_JST +JST_XH_S4B-XH-A-1_1x04_P2.50mm_Horizontal +JST XH series connector, S4B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +4 +4 +Connector_JST +JST_XH_S4B-XH-A_1x04_P2.50mm_Horizontal +JST XH series connector, S4B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +4 +4 +Connector_JST +JST_XH_S5B-XH-A-1_1x05_P2.50mm_Horizontal +JST XH series connector, S5B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +5 +5 +Connector_JST +JST_XH_S5B-XH-A_1x05_P2.50mm_Horizontal +JST XH series connector, S5B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +5 +5 +Connector_JST +JST_XH_S6B-XH-A-1_1x06_P2.50mm_Horizontal +JST XH series connector, S6B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +6 +6 +Connector_JST +JST_XH_S6B-XH-A_1x06_P2.50mm_Horizontal +JST XH series connector, S6B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +6 +6 +Connector_JST +JST_XH_S7B-XH-A-1_1x07_P2.50mm_Horizontal +JST XH series connector, S7B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +7 +7 +Connector_JST +JST_XH_S7B-XH-A_1x07_P2.50mm_Horizontal +JST XH series connector, S7B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +7 +7 +Connector_JST +JST_XH_S8B-XH-A-1_1x08_P2.50mm_Horizontal +JST XH series connector, S8B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +8 +8 +Connector_JST +JST_XH_S8B-XH-A_1x08_P2.50mm_Horizontal +JST XH series connector, S8B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +8 +8 +Connector_JST +JST_XH_S9B-XH-A-1_1x09_P2.50mm_Horizontal +JST XH series connector, S9B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +9 +9 +Connector_JST +JST_XH_S9B-XH-A_1x09_P2.50mm_Horizontal +JST XH series connector, S9B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH horizontal +0 +9 +9 +Connector_JST +JST_XH_S10B-XH-A-1_1x10_P2.50mm_Horizontal +JST XH series connector, S10B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +10 +10 +Connector_JST +JST_XH_S10B-XH-A_1x10_P2.50mm_Horizontal +JST XH series connector, S10B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +10 +10 +Connector_JST +JST_XH_S11B-XH-A-1_1x11_P2.50mm_Horizontal +JST XH series connector, S11B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +11 +11 +Connector_JST +JST_XH_S11B-XH-A_1x11_P2.50mm_Horizontal +JST XH series connector, S11B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +11 +11 +Connector_JST +JST_XH_S12B-XH-A-1_1x12_P2.50mm_Horizontal +JST XH series connector, S12B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +12 +12 +Connector_JST +JST_XH_S12B-XH-A_1x12_P2.50mm_Horizontal +JST XH series connector, S12B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +12 +12 +Connector_JST +JST_XH_S13B-XH-A-1_1x13_P2.50mm_Horizontal +JST XH series connector, S13B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +13 +13 +Connector_JST +JST_XH_S13B-XH-A_1x13_P2.50mm_Horizontal +JST XH series connector, S13B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +13 +13 +Connector_JST +JST_XH_S14B-XH-A-1_1x14_P2.50mm_Horizontal +JST XH series connector, S14B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +14 +14 +Connector_JST +JST_XH_S14B-XH-A_1x14_P2.50mm_Horizontal +JST XH series connector, S14B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +14 +14 +Connector_JST +JST_XH_S15B-XH-A-1_1x15_P2.50mm_Horizontal +JST XH series connector, S15B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +15 +15 +Connector_JST +JST_XH_S15B-XH-A_1x15_P2.50mm_Horizontal +JST XH series connector, S15B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +15 +15 +Connector_JST +JST_XH_S16B-XH-A_1x16_P2.50mm_Horizontal +JST XH series connector, S16B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator +connector JST XH top entry +0 +16 +16 +Connector_JST +JST_ZE_B02B-ZESK-1D_1x02_P1.50mm_Vertical +JST ZE series connector, B02B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +2 +2 +Connector_JST +JST_ZE_B03B-ZESK-1D_1x03_P1.50mm_Vertical +JST ZE series connector, B03B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +3 +3 +Connector_JST +JST_ZE_B03B-ZESK-D_1x03_P1.50mm_Vertical +JST ZE series connector, B03B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +3 +3 +Connector_JST +JST_ZE_B04B-ZESK-1D_1x04_P1.50mm_Vertical +JST ZE series connector, B04B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +4 +4 +Connector_JST +JST_ZE_B04B-ZESK-D_1x04_P1.50mm_Vertical +JST ZE series connector, B04B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +4 +4 +Connector_JST +JST_ZE_B05B-ZESK-1D_1x05_P1.50mm_Vertical +JST ZE series connector, B05B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +5 +5 +Connector_JST +JST_ZE_B05B-ZESK-D_1x05_P1.50mm_Vertical +JST ZE series connector, B05B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +5 +5 +Connector_JST +JST_ZE_B06B-ZESK-1D_1x06_P1.50mm_Vertical +JST ZE series connector, B06B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +6 +6 +Connector_JST +JST_ZE_B06B-ZESK-D_1x06_P1.50mm_Vertical +JST ZE series connector, B06B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +6 +6 +Connector_JST +JST_ZE_B07B-ZESK-1D_1x07_P1.50mm_Vertical +JST ZE series connector, B07B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +7 +7 +Connector_JST +JST_ZE_B07B-ZESK-D_1x07_P1.50mm_Vertical +JST ZE series connector, B07B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +7 +7 +Connector_JST +JST_ZE_B08B-ZESK-1D_1x08_P1.50mm_Vertical +JST ZE series connector, B08B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +8 +8 +Connector_JST +JST_ZE_B08B-ZESK-D_1x08_P1.50mm_Vertical +JST ZE series connector, B08B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +8 +8 +Connector_JST +JST_ZE_B09B-ZESK-1D_1x09_P1.50mm_Vertical +JST ZE series connector, B09B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +9 +9 +Connector_JST +JST_ZE_B09B-ZESK-D_1x09_P1.50mm_Vertical +JST ZE series connector, B09B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +9 +9 +Connector_JST +JST_ZE_B10B-ZESK-1D_1x10_P1.50mm_Vertical +JST ZE series connector, B10B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +10 +10 +Connector_JST +JST_ZE_B10B-ZESK-D_1x10_P1.50mm_Vertical +JST ZE series connector, B10B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +10 +10 +Connector_JST +JST_ZE_B11B-ZESK-1D_1x11_P1.50mm_Vertical +JST ZE series connector, B11B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +11 +11 +Connector_JST +JST_ZE_B11B-ZESK-D_1x11_P1.50mm_Vertical +JST ZE series connector, B11B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +11 +11 +Connector_JST +JST_ZE_B12B-ZESK-1D_1x12_P1.50mm_Vertical +JST ZE series connector, B12B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +12 +12 +Connector_JST +JST_ZE_B12B-ZESK-D_1x12_P1.50mm_Vertical +JST ZE series connector, B12B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +12 +12 +Connector_JST +JST_ZE_B13B-ZESK-1D_1x13_P1.50mm_Vertical +JST ZE series connector, B13B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +13 +13 +Connector_JST +JST_ZE_B13B-ZESK-D_1x13_P1.50mm_Vertical +JST ZE series connector, B13B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +13 +13 +Connector_JST +JST_ZE_B14B-ZESK-1D_1x14_P1.50mm_Vertical +JST ZE series connector, B14B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +14 +14 +Connector_JST +JST_ZE_B14B-ZESK-D_1x14_P1.50mm_Vertical +JST ZE series connector, B14B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +14 +14 +Connector_JST +JST_ZE_B15B-ZESK-1D_1x15_P1.50mm_Vertical +JST ZE series connector, B15B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +15 +15 +Connector_JST +JST_ZE_B15B-ZESK-D_1x15_P1.50mm_Vertical +JST ZE series connector, B15B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +15 +15 +Connector_JST +JST_ZE_B16B-ZESK-1D_1x16_P1.50mm_Vertical +JST ZE series connector, B16B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry boss +0 +16 +16 +Connector_JST +JST_ZE_B16B-ZESK-D_1x16_P1.50mm_Vertical +JST ZE series connector, B16B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE side entry +0 +16 +16 +Connector_JST +JST_ZE_BM02B-ZESS-TBT_1x02-1MP_P1.50mm_Vertical +JST ZE series connector, BM02B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +4 +3 +Connector_JST +JST_ZE_BM03B-ZESS-TBT_1x03-1MP_P1.50mm_Vertical +JST ZE series connector, BM03B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +5 +4 +Connector_JST +JST_ZE_BM04B-ZESS-TBT_1x04-1MP_P1.50mm_Vertical +JST ZE series connector, BM04B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +6 +5 +Connector_JST +JST_ZE_BM05B-ZESS-TBT_1x05-1MP_P1.50mm_Vertical +JST ZE series connector, BM05B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +7 +6 +Connector_JST +JST_ZE_BM06B-ZESS-TBT_1x06-1MP_P1.50mm_Vertical +JST ZE series connector, BM06B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +8 +7 +Connector_JST +JST_ZE_BM07B-ZESS-TBT_1x07-1MP_P1.50mm_Vertical +JST ZE series connector, BM07B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +9 +8 +Connector_JST +JST_ZE_BM08B-ZESS-TBT_1x08-1MP_P1.50mm_Vertical +JST ZE series connector, BM08B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +10 +9 +Connector_JST +JST_ZE_BM09B-ZESS-TBT_1x09-1MP_P1.50mm_Vertical +JST ZE series connector, BM09B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +11 +10 +Connector_JST +JST_ZE_BM10B-ZESS-TBT_1x10-1MP_P1.50mm_Vertical +JST ZE series connector, BM10B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +12 +11 +Connector_JST +JST_ZE_BM11B-ZESS-TBT_1x11-1MP_P1.50mm_Vertical +JST ZE series connector, BM11B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +13 +12 +Connector_JST +JST_ZE_BM12B-ZESS-TBT_1x12-1MP_P1.50mm_Vertical +JST ZE series connector, BM12B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +14 +13 +Connector_JST +JST_ZE_BM13B-ZESS-TBT_1x13-1MP_P1.50mm_Vertical +JST ZE series connector, BM13B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +15 +14 +Connector_JST +JST_ZE_BM14B-ZESS-TBT_1x14-1MP_P1.50mm_Vertical +JST ZE series connector, BM14B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +16 +15 +Connector_JST +JST_ZE_BM15B-ZESS-TBT_1x15-1MP_P1.50mm_Vertical +JST ZE series connector, BM15B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +17 +16 +Connector_JST +JST_ZE_BM16B-ZESS-TBT_1x16-1MP_P1.50mm_Vertical +JST ZE series connector, BM16B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE vertical +0 +18 +17 +Connector_JST +JST_ZE_S02B-ZESK-2D_1x02_P1.50mm_Horizontal +JST ZE series connector, S02B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +2 +2 +Connector_JST +JST_ZE_S03B-ZESK-2D_1x03_P1.50mm_Horizontal +JST ZE series connector, S03B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +3 +3 +Connector_JST +JST_ZE_S04B-ZESK-2D_1x04_P1.50mm_Horizontal +JST ZE series connector, S04B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +4 +4 +Connector_JST +JST_ZE_S05B-ZESK-2D_1x05_P1.50mm_Horizontal +JST ZE series connector, S05B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +5 +5 +Connector_JST +JST_ZE_S06B-ZESK-2D_1x06_P1.50mm_Horizontal +JST ZE series connector, S06B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +6 +6 +Connector_JST +JST_ZE_S07B-ZESK-2D_1x07_P1.50mm_Horizontal +JST ZE series connector, S07B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +7 +7 +Connector_JST +JST_ZE_S08B-ZESK-2D_1x08_P1.50mm_Horizontal +JST ZE series connector, S08B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +8 +8 +Connector_JST +JST_ZE_S09B-ZESK-2D_1x09_P1.50mm_Horizontal +JST ZE series connector, S09B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +9 +9 +Connector_JST +JST_ZE_S10B-ZESK-2D_1x10_P1.50mm_Horizontal +JST ZE series connector, S10B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +10 +10 +Connector_JST +JST_ZE_S11B-ZESK-2D_1x11_P1.50mm_Horizontal +JST ZE series connector, S11B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +11 +11 +Connector_JST +JST_ZE_S12B-ZESK-2D_1x12_P1.50mm_Horizontal +JST ZE series connector, S12B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +12 +12 +Connector_JST +JST_ZE_S13B-ZESK-2D_1x13_P1.50mm_Horizontal +JST ZE series connector, S13B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +13 +13 +Connector_JST +JST_ZE_S14B-ZESK-2D_1x14_P1.50mm_Horizontal +JST ZE series connector, S14B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +14 +14 +Connector_JST +JST_ZE_S15B-ZESK-2D_1x15_P1.50mm_Horizontal +JST ZE series connector, S15B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +15 +15 +Connector_JST +JST_ZE_S16B-ZESK-2D_1x16_P1.50mm_Horizontal +JST ZE series connector, S16B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE top entry +0 +16 +16 +Connector_JST +JST_ZE_SM02B-ZESS-TB_1x02-1MP_P1.50mm_Horizontal +JST ZE series connector, SM02B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +4 +3 +Connector_JST +JST_ZE_SM03B-ZESS-TB_1x03-1MP_P1.50mm_Horizontal +JST ZE series connector, SM03B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +5 +4 +Connector_JST +JST_ZE_SM04B-ZESS-TB_1x04-1MP_P1.50mm_Horizontal +JST ZE series connector, SM04B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +6 +5 +Connector_JST +JST_ZE_SM05B-ZESS-TB_1x05-1MP_P1.50mm_Horizontal +JST ZE series connector, SM05B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +7 +6 +Connector_JST +JST_ZE_SM06B-ZESS-TB_1x06-1MP_P1.50mm_Horizontal +JST ZE series connector, SM06B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +8 +7 +Connector_JST +JST_ZE_SM07B-ZESS-TB_1x07-1MP_P1.50mm_Horizontal +JST ZE series connector, SM07B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +9 +8 +Connector_JST +JST_ZE_SM08B-ZESS-TB_1x08-1MP_P1.50mm_Horizontal +JST ZE series connector, SM08B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +10 +9 +Connector_JST +JST_ZE_SM09B-ZESS-TB_1x09-1MP_P1.50mm_Horizontal +JST ZE series connector, SM09B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +11 +10 +Connector_JST +JST_ZE_SM10B-ZESS-TB_1x10-1MP_P1.50mm_Horizontal +JST ZE series connector, SM10B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +12 +11 +Connector_JST +JST_ZE_SM11B-ZESS-TB_1x11-1MP_P1.50mm_Horizontal +JST ZE series connector, SM11B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +13 +12 +Connector_JST +JST_ZE_SM12B-ZESS-TB_1x12-1MP_P1.50mm_Horizontal +JST ZE series connector, SM12B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +14 +13 +Connector_JST +JST_ZE_SM13B-ZESS-TB_1x13-1MP_P1.50mm_Horizontal +JST ZE series connector, SM13B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +15 +14 +Connector_JST +JST_ZE_SM14B-ZESS-TB_1x14-1MP_P1.50mm_Horizontal +JST ZE series connector, SM14B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +16 +15 +Connector_JST +JST_ZE_SM15B-ZESS-TB_1x15-1MP_P1.50mm_Horizontal +JST ZE series connector, SM15B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +17 +16 +Connector_JST +JST_ZE_SM16B-ZESS-TB_1x16-1MP_P1.50mm_Horizontal +JST ZE series connector, SM16B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator +connector JST ZE horizontal +0 +18 +17 +Connector_Molex +Molex_CLIK-Mate_502382-0270_1x02-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0270 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502382-0370_1x03-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0370 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502382-0470_1x04-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0470 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502382-0570_1x05-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0570 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502382-0670_1x06-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0670 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502382-0770_1x07-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0770 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502382-0870_1x08-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0870 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502382-0970_1x09-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-0970 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502382-1070_1x10-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1070 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502382-1170_1x11-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1170 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_502382-1270_1x12-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1270 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502382-1370_1x13-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1370 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502382-1470_1x14-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1470 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502382-1570_1x15-1MP_P1.25mm_Vertical +Molex CLIK-Mate series connector, 502382-1570 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502386-0270_1x02-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0270 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0370 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502386-0470_1x04-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0470 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502386-0570_1x05-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0570 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502386-0670_1x06-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0670 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502386-0770_1x07-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0770 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502386-0870_1x08-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0870 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502386-0970_1x09-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-0970 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502386-1070_1x10-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1070 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502386-1170_1x11-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1170 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_502386-1270_1x12-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1270 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502386-1370_1x13-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1370 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502386-1470_1x14-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1470 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502386-1570_1x15-1MP_P1.25mm_Horizontal +Molex CLIK-Mate series connector, 502386-1570 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502443-0270_1x02-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0270 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502443-0370_1x03-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0370 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502443-0470_1x04-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0470 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502443-0570_1x05-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0570 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502443-0670_1x06-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0670 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502443-0770_1x07-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0770 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502443-0870_1x08-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0870 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502443-0970_1x09-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-0970 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502443-1270_1x12-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1270 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502443-1370_1x13-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1370 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502443-1470_1x14-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1470 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502443-1570_1x15-1MP_P2.00mm_Vertical +Molex CLIK-Mate series connector, 502443-1570 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502494-0270_1x02-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0270 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502494-0370_1x03-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0370 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502494-0470_1x04-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0470 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502494-0670_1x06-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0670 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502494-0870_1x08-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-0870 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502494-1070_1x10-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1070 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502494-1270_1x12-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1270 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502494-1370_1x13-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1370 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502494-1470_1x14-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1470 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502494-1570_1x15-1MP_P2.00mm_Horizontal +Molex CLIK-Mate series connector, 502494-1570 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_502585-0270_1x02-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0270 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_502585-0370_1x03-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0370 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_502585-0470_1x04-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0470 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_502585-0570_1x05-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0570 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_502585-0670_1x06-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0670 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_502585-0770_1x07-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0770 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_502585-0870_1x08-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0870 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_502585-0970_1x09-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-0970 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_502585-1070_1x10-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1070 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_502585-1170_1x11-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1170 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_502585-1270_1x12-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1270 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_502585-1370_1x13-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1370 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_502585-1470_1x14-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1470 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_502585-1570_1x15-1MP_P1.50mm_Horizontal +Molex CLIK-Mate series connector, 502585-1570 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate top entry +0 +17 +16 +Connector_Molex +Molex_CLIK-Mate_505405-0270_1x02-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0270 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +4 +3 +Connector_Molex +Molex_CLIK-Mate_505405-0370_1x03-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0370 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +5 +4 +Connector_Molex +Molex_CLIK-Mate_505405-0470_1x04-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0470 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +6 +5 +Connector_Molex +Molex_CLIK-Mate_505405-0570_1x05-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0570 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +7 +6 +Connector_Molex +Molex_CLIK-Mate_505405-0670_1x06-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0670 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +8 +7 +Connector_Molex +Molex_CLIK-Mate_505405-0770_1x07-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0770 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +9 +8 +Connector_Molex +Molex_CLIK-Mate_505405-0870_1x08-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0870 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +10 +9 +Connector_Molex +Molex_CLIK-Mate_505405-0970_1x09-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-0970 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +11 +10 +Connector_Molex +Molex_CLIK-Mate_505405-1070_1x10-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1070 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +12 +11 +Connector_Molex +Molex_CLIK-Mate_505405-1170_1x11-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1170 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +13 +12 +Connector_Molex +Molex_CLIK-Mate_505405-1270_1x12-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1270 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +14 +13 +Connector_Molex +Molex_CLIK-Mate_505405-1370_1x13-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1370 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +15 +14 +Connector_Molex +Molex_CLIK-Mate_505405-1470_1x14-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1470 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +16 +15 +Connector_Molex +Molex_CLIK-Mate_505405-1570_1x15-1MP_P1.50mm_Vertical +Molex CLIK-Mate series connector, 505405-1570 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator +connector Molex CLIK-Mate side entry +0 +17 +16 +Connector_Molex +Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-02A example for new part number: 22-27-2021, 2 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +2 +2 +Connector_Molex +Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-03A example for new part number: 22-27-2031, 3 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +3 +3 +Connector_Molex +Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +4 +4 +Connector_Molex +Molex_KK-254_AE-6410-05A_1x05_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-05A example for new part number: 22-27-2051, 5 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +5 +5 +Connector_Molex +Molex_KK-254_AE-6410-06A_1x06_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-06A example for new part number: 22-27-2061, 6 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +6 +6 +Connector_Molex +Molex_KK-254_AE-6410-07A_1x07_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-07A example for new part number: 22-27-2071, 7 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +7 +7 +Connector_Molex +Molex_KK-254_AE-6410-08A_1x08_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-08A example for new part number: 22-27-2081, 8 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +8 +8 +Connector_Molex +Molex_KK-254_AE-6410-09A_1x09_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-09A example for new part number: 22-27-2091, 9 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +9 +9 +Connector_Molex +Molex_KK-254_AE-6410-10A_1x10_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-10A example for new part number: 22-27-2101, 10 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +10 +10 +Connector_Molex +Molex_KK-254_AE-6410-11A_1x11_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-11A example for new part number: 22-27-2111, 11 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +11 +11 +Connector_Molex +Molex_KK-254_AE-6410-12A_1x12_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-12A example for new part number: 22-27-2121, 12 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +12 +12 +Connector_Molex +Molex_KK-254_AE-6410-13A_1x13_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-13A example for new part number: 22-27-2131, 13 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +13 +13 +Connector_Molex +Molex_KK-254_AE-6410-14A_1x14_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-14A example for new part number: 22-27-2141, 14 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +14 +14 +Connector_Molex +Molex_KK-254_AE-6410-15A_1x15_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-15A example for new part number: 22-27-2151, 15 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +15 +15 +Connector_Molex +Molex_KK-254_AE-6410-16A_1x16_P2.54mm_Vertical +Molex KK-254 Interconnect System, old/engineering part number: AE-6410-16A example for new part number: 22-27-2161, 16 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-254 vertical +0 +16 +16 +Connector_Molex +Molex_KK-396_5273-02A_1x02_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-02A example for new part number: 09-65-2028, 2 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +2 +2 +Connector_Molex +Molex_KK-396_5273-03A_1x03_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-03A example for new part number: 09-65-2038, 3 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +3 +3 +Connector_Molex +Molex_KK-396_5273-04A_1x04_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-04A example for new part number: 09-65-2048, 4 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +4 +4 +Connector_Molex +Molex_KK-396_5273-05A_1x05_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-05A example for new part number: 09-65-2058, 5 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +5 +5 +Connector_Molex +Molex_KK-396_5273-06A_1x06_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-06A example for new part number: 09-65-2068, 6 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +6 +6 +Connector_Molex +Molex_KK-396_5273-07A_1x07_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-07A example for new part number: 09-65-2078, 7 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +7 +7 +Connector_Molex +Molex_KK-396_5273-08A_1x08_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-08A example for new part number: 09-65-2088, 8 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +8 +8 +Connector_Molex +Molex_KK-396_5273-09A_1x09_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-09A example for new part number: 09-65-2098, 9 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +9 +9 +Connector_Molex +Molex_KK-396_5273-10A_1x10_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-10A example for new part number: 09-65-2108, 10 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +10 +10 +Connector_Molex +Molex_KK-396_5273-11A_1x11_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-11A example for new part number: 09-65-2118, 11 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +11 +11 +Connector_Molex +Molex_KK-396_5273-12A_1x12_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: 5273-12A example for new part number: 09-65-2128, 12 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +12 +12 +Connector_Molex +Molex_KK-396_A-41791-0002_1x02_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0002 example for new part number: 26-60-4020, 2 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +2 +2 +Connector_Molex +Molex_KK-396_A-41791-0003_1x03_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0003 example for new part number: 26-60-4030, 3 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +3 +3 +Connector_Molex +Molex_KK-396_A-41791-0004_1x04_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0004 example for new part number: 26-60-4040, 4 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +4 +4 +Connector_Molex +Molex_KK-396_A-41791-0005_1x05_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0005 example for new part number: 26-60-4050, 5 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +5 +5 +Connector_Molex +Molex_KK-396_A-41791-0006_1x06_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0006 example for new part number: 26-60-4060, 6 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +6 +6 +Connector_Molex +Molex_KK-396_A-41791-0007_1x07_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0007 example for new part number: 26-60-4070, 7 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +7 +7 +Connector_Molex +Molex_KK-396_A-41791-0008_1x08_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0008 example for new part number: 26-60-4080, 8 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +8 +8 +Connector_Molex +Molex_KK-396_A-41791-0009_1x09_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0009 example for new part number: 26-60-4090, 9 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +9 +9 +Connector_Molex +Molex_KK-396_A-41791-0010_1x10_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0010 example for new part number: 26-60-4100, 10 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +10 +10 +Connector_Molex +Molex_KK-396_A-41791-0011_1x11_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0011 example for new part number: 26-60-4110, 11 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +11 +11 +Connector_Molex +Molex_KK-396_A-41791-0012_1x12_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0012 example for new part number: 26-60-4120, 12 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +12 +12 +Connector_Molex +Molex_KK-396_A-41791-0013_1x13_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0013 example for new part number: 26-60-4130, 13 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +13 +13 +Connector_Molex +Molex_KK-396_A-41791-0014_1x14_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0014 example for new part number: 26-60-4140, 14 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +14 +14 +Connector_Molex +Molex_KK-396_A-41791-0015_1x15_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0015 example for new part number: 26-60-4150, 15 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +15 +15 +Connector_Molex +Molex_KK-396_A-41791-0016_1x16_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0016 example for new part number: 26-60-4160, 16 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +16 +16 +Connector_Molex +Molex_KK-396_A-41791-0017_1x17_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0017 example for new part number: 26-60-4170, 17 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +17 +17 +Connector_Molex +Molex_KK-396_A-41791-0018_1x18_P3.96mm_Vertical +Molex KK 396 Interconnect System, old/engineering part number: A-41791-0018 example for new part number: 26-60-4180, 18 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 vertical +0 +18 +18 +Connector_Molex +Molex_KK-396_A-41792-0002_1x02_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0002 example for new part number: 26-60-5020, 2 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +2 +2 +Connector_Molex +Molex_KK-396_A-41792-0003_1x03_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0003 example for new part number: 26-60-5030, 3 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +3 +3 +Connector_Molex +Molex_KK-396_A-41792-0004_1x04_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0004 example for new part number: 26-60-5040, 4 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +4 +4 +Connector_Molex +Molex_KK-396_A-41792-0005_1x05_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0005 example for new part number: 26-60-5050, 5 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +5 +5 +Connector_Molex +Molex_KK-396_A-41792-0006_1x06_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0006 example for new part number: 26-60-5060, 6 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +6 +6 +Connector_Molex +Molex_KK-396_A-41792-0007_1x07_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0007 example for new part number: 26-60-5070, 7 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +7 +7 +Connector_Molex +Molex_KK-396_A-41792-0008_1x08_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0008 example for new part number: 26-60-5080, 8 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +8 +8 +Connector_Molex +Molex_KK-396_A-41792-0009_1x09_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0009 example for new part number: 26-60-5090, 9 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +9 +9 +Connector_Molex +Molex_KK-396_A-41792-0010_1x10_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0010 example for new part number: 26-60-5100, 10 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +10 +10 +Connector_Molex +Molex_KK-396_A-41792-0011_1x11_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0011 example for new part number: 26-60-5110, 11 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +11 +11 +Connector_Molex +Molex_KK-396_A-41792-0012_1x12_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0012 example for new part number: 26-60-5120, 12 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +12 +12 +Connector_Molex +Molex_KK-396_A-41792-0013_1x13_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0013 example for new part number: 26-60-5130, 13 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +13 +13 +Connector_Molex +Molex_KK-396_A-41792-0014_1x14_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0014 example for new part number: 26-60-5140, 14 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +14 +14 +Connector_Molex +Molex_KK-396_A-41792-0015_1x15_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0015 example for new part number: 26-60-5150, 15 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +15 +15 +Connector_Molex +Molex_KK-396_A-41792-0016_1x16_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0016 example for new part number: 26-60-5160, 16 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +16 +16 +Connector_Molex +Molex_KK-396_A-41792-0017_1x17_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0017 example for new part number: 26-60-5170, 17 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +17 +17 +Connector_Molex +Molex_KK-396_A-41792-0018_1x18_P3.96mm_Horizontal +Molex KK 396 Interconnect System, old/engineering part number: A-41792-0018 example for new part number: 26-60-5180, 18 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator +connector Molex KK-396 horizontal +0 +18 +18 +Connector_Molex +Molex_Mega-Fit_76825-0002_2x01_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0002 (compatible alternatives: 172064-0002, 172064-1002), 1 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +2 +2 +Connector_Molex +Molex_Mega-Fit_76825-0004_2x02_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0004 (compatible alternatives: 172064-0004, 172064-1004), 2 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +4 +4 +Connector_Molex +Molex_Mega-Fit_76825-0006_2x03_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0006 (compatible alternatives: 172064-0006, 172064-1006), 3 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +6 +6 +Connector_Molex +Molex_Mega-Fit_76825-0008_2x04_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0008 (compatible alternatives: 172064-0008, 172064-1008), 4 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +8 +8 +Connector_Molex +Molex_Mega-Fit_76825-0010_2x05_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0010 (compatible alternatives: 172064-0010, 172064-1010), 5 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +10 +10 +Connector_Molex +Molex_Mega-Fit_76825-0012_2x06_P5.70mm_Horizontal +Molex Mega-Fit Power Connectors, 76825-0012 (compatible alternatives: 172064-0012, 172064-1012), 6 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit top entry +0 +12 +12 +Connector_Molex +Molex_Mega-Fit_76829-0002_2x01_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0002 (compatible alternatives: 172065-0002, 172065-1002), 1 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +2 +2 +Connector_Molex +Molex_Mega-Fit_76829-0004_2x02_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0004 (compatible alternatives: 172065-0004, 172065-1004), 2 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Mega-Fit_76829-0006_2x03_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0006 (compatible alternatives: 172065-0006, 172065-1006), 3 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Mega-Fit_76829-0008_2x04_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0008 (compatible alternatives: 172065-0008, 172065-1008), 4 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Mega-Fit_76829-0010_2x05_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0010 (compatible alternatives: 172065-0010, 172065-1010), 5 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +10 +10 +Connector_Molex +Molex_Mega-Fit_76829-0012_2x06_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0012 (compatible alternatives: 172065-0012, 172065-1012), 6 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +12 +12 +Connector_Molex +Molex_Mega-Fit_76829-0102_2x01_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0102 (compatible alternatives: 172065-0202, 172065-0302), 1 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +2 +2 +Connector_Molex +Molex_Mega-Fit_76829-0104_2x02_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0104 (compatible alternatives: 172065-0204, 172065-0304), 2 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Mega-Fit_76829-0106_2x03_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0106 (compatible alternatives: 172065-0206, 172065-0306), 3 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Mega-Fit_76829-0108_2x04_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0108 (compatible alternatives: 172065-0208, 172065-0308), 4 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Mega-Fit_76829-0110_2x05_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0110 (compatible alternatives: 172065-0210, 172065-0310), 5 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +10 +10 +Connector_Molex +Molex_Mega-Fit_76829-0112_2x06_P5.70mm_Vertical +Molex Mega-Fit Power Connectors, 76829-0112 (compatible alternatives: 172065-0212, 172065-0312), 6 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator +connector Molex Mega-Fit side entry +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0200_2x01_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0200 (alternative finishes: 43045-020x), 1 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0210_2x01-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0210 (compatible alternatives: 43045-0211, 43045-0209), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0212_2x01_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0212 (compatible alternatives: 43045-0213, 43045-0224), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0215_2x01_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0215 (compatible alternatives: 43045-0216, 43045-0217), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0218_2x01-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0218 (compatible alternatives: 43045-0219, 43045-0220), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0221_2x01-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0221 (alternative finishes: 43045-022x), 1 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0400_2x02_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0400 (alternative finishes: 43045-040x), 2 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0410_2x02-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0410 (compatible alternatives: 43045-0411, 43045-0409), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0412_2x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0412 (compatible alternatives: 43045-0413, 43045-0424), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0415_2x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0415 (compatible alternatives: 43045-0416, 43045-0417), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0418_2x02-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0418 (compatible alternatives: 43045-0419, 43045-0420), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0421_2x02-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0421 (alternative finishes: 43045-042x), 2 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0600_2x03_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0600 (alternative finishes: 43045-060x), 3 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0610_2x03-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0610 (compatible alternatives: 43045-0611, 43045-0609), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0612_2x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0612 (compatible alternatives: 43045-0613, 43045-0624), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0615_2x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0615 (compatible alternatives: 43045-0616, 43045-0617), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0618_2x03-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0618 (compatible alternatives: 43045-0619, 43045-0620), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0621_2x03-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0621 (alternative finishes: 43045-062x), 3 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0800_2x04_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0800 (alternative finishes: 43045-080x), 4 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0810_2x04-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0810 (compatible alternatives: 43045-0811, 43045-0809), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0812_2x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0812 (compatible alternatives: 43045-0813, 43045-0824), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0815_2x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0815 (compatible alternatives: 43045-0816, 43045-0817), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0818_2x04-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-0818 (compatible alternatives: 43045-0819, 43045-0820), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43045-0821_2x04-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-0821 (alternative finishes: 43045-082x), 4 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1000_2x05_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1000 (alternative finishes: 43045-100x), 5 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1010_2x05-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1010 (compatible alternatives: 43045-1011, 43045-1009), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1012_2x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1012 (compatible alternatives: 43045-1013, 43045-1024), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1015_2x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1015 (compatible alternatives: 43045-1016, 43045-1017), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1018_2x05-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1018 (compatible alternatives: 43045-1019, 43045-1020), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1021_2x05-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1021 (alternative finishes: 43045-102x), 5 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1200_2x06_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1200 (alternative finishes: 43045-120x), 6 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1210_2x06-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1210 (compatible alternatives: 43045-1211, 43045-1209), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1212_2x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1212 (compatible alternatives: 43045-1213, 43045-1224), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1215_2x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1215 (compatible alternatives: 43045-1216, 43045-1217), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1218_2x06-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1218 (compatible alternatives: 43045-1219, 43045-1220), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1221_2x06-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1221 (alternative finishes: 43045-122x), 6 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1400_2x07_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1400 (alternative finishes: 43045-140x), 7 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +14 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1410_2x07-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1410 (compatible alternatives: 43045-1411, 43045-1409), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +16 +15 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1412_2x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1412 (compatible alternatives: 43045-1413, 43045-1424), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +14 +14 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1415_2x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1415 (compatible alternatives: 43045-1416, 43045-1417), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +14 +14 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1418_2x07-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1418 (compatible alternatives: 43045-1419, 43045-1420), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +16 +15 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1421_2x07-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1421 (alternative finishes: 43045-142x), 7 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +16 +15 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1600_2x08_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1600 (alternative finishes: 43045-160x), 8 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +16 +16 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1610_2x08-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1610 (compatible alternatives: 43045-1611, 43045-1609), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +18 +17 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1612_2x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1612 (compatible alternatives: 43045-1613, 43045-1624), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +16 +16 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1615_2x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1615 (compatible alternatives: 43045-1616, 43045-1617), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +16 +16 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1618_2x08-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1618 (compatible alternatives: 43045-1619, 43045-1620), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +18 +17 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1621_2x08-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1621 (alternative finishes: 43045-162x), 8 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +18 +17 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1800_2x09_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1800 (alternative finishes: 43045-180x), 9 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +18 +18 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1810_2x09-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1810 (compatible alternatives: 43045-1811, 43045-1809), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +20 +19 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1812_2x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1812 (compatible alternatives: 43045-1813, 43045-1824), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +18 +18 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1815_2x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1815 (compatible alternatives: 43045-1816, 43045-1817), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +18 +18 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1818_2x09-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-1818 (compatible alternatives: 43045-1819, 43045-1820), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +20 +19 +Connector_Molex +Molex_Micro-Fit_3.0_43045-1821_2x09-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-1821 (alternative finishes: 43045-182x), 9 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +20 +19 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2000_2x10_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2000 (alternative finishes: 43045-200x), 10 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +20 +20 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2010_2x10-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2010 (compatible alternatives: 43045-2011, 43045-2009), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +22 +21 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2012_2x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2012 (compatible alternatives: 43045-2013, 43045-2024), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +20 +20 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2015_2x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2015 (compatible alternatives: 43045-2016, 43045-2017), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +20 +20 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2018_2x10-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2018 (compatible alternatives: 43045-2019, 43045-2020), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +22 +21 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2021_2x10-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2021 (alternative finishes: 43045-202x), 10 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +22 +21 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2200_2x11_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2200 (alternative finishes: 43045-220x), 11 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +22 +22 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2210_2x11-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2210 (compatible alternatives: 43045-2211, 43045-2209), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +24 +23 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2212_2x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2212 (compatible alternatives: 43045-2213, 43045-2224), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +22 +22 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2215_2x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2215 (compatible alternatives: 43045-2216, 43045-2217), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +22 +22 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2218_2x11-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2218 (compatible alternatives: 43045-2219, 43045-2220), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +24 +23 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2221_2x11-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2221 (alternative finishes: 43045-222x), 11 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +24 +23 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2400_2x12_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2400 (alternative finishes: 43045-240x), 12 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +24 +24 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2410_2x12-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2410 (compatible alternatives: 43045-2411, 43045-2409), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +26 +25 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2412_2x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2412 (compatible alternatives: 43045-2413, 43045-2424), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +24 +24 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2415_2x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2415 (compatible alternatives: 43045-2416, 43045-2417), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +24 +24 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2418_2x12-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43045-2418 (compatible alternatives: 43045-2419, 43045-2420), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 side entry +0 +26 +25 +Connector_Molex +Molex_Micro-Fit_3.0_43045-2421_2x12-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43045-2421 (alternative finishes: 43045-242x), 12 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +26 +25 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0200_1x02_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0200 (compatible alternatives: 43650-0201, 43650-0202), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0210_1x02-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0210 (compatible alternatives: 43650-0211, 43650-0209), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0210_1x02-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0210 (compatible alternatives: 43650-0211, 43650-0209), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0215_1x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0215 (compatible alternatives: 43650-0216, 43650-0217), 2 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0221_1x02_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0221 (compatible alternatives: 43650-0222, 43650-0223), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +2 +2 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0224_1x02-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0224 (compatible alternatives: 43650-0225, 43650-0226), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0300_1x03_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0300 (compatible alternatives: 43650-0301, 43650-0302), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +3 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0310_1x03-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0310 (compatible alternatives: 43650-0311, 43650-0309), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +5 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0310_1x03-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0310 (compatible alternatives: 43650-0311, 43650-0309), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +5 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0315_1x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0315 (compatible alternatives: 43650-0316, 43650-0317), 3 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +3 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0321_1x03_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0321 (compatible alternatives: 43650-0322, 43650-0323), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +3 +3 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0324_1x03-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0324 (compatible alternatives: 43650-0325, 43650-0326), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +5 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0400_1x04_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0400 (compatible alternatives: 43650-0401, 43650-0402), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0410_1x04-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0410 (compatible alternatives: 43650-0411, 43650-0409), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0410_1x04-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0410 (compatible alternatives: 43650-0411, 43650-0409), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0415_1x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0415 (compatible alternatives: 43650-0416, 43650-0417), 4 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0421_1x04_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0421 (compatible alternatives: 43650-0422, 43650-0423), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +4 +4 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0424_1x04-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0424 (compatible alternatives: 43650-0425, 43650-0426), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0500_1x05_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0500 (compatible alternatives: 43650-0501, 43650-0502), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +5 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0510_1x05-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0510 (compatible alternatives: 43650-0511, 43650-0509), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +7 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0510_1x05-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0510 (compatible alternatives: 43650-0511, 43650-0509), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +7 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0515_1x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0515 (compatible alternatives: 43650-0516, 43650-0517), 5 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +5 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0521_1x05_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0521 (compatible alternatives: 43650-0522, 43650-0523), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +5 +5 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0524_1x05-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0524 (compatible alternatives: 43650-0525, 43650-0526), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +7 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0600_1x06_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0600 (compatible alternatives: 43650-0601, 43650-0602), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0610_1x06-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0610 (compatible alternatives: 43650-0611, 43650-0609), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0610_1x06-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0610 (compatible alternatives: 43650-0611, 43650-0609), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0615_1x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0615 (compatible alternatives: 43650-0616, 43650-0617), 6 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0621_1x06_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0621 (compatible alternatives: 43650-0622, 43650-0623), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +6 +6 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0624_1x06-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0624 (compatible alternatives: 43650-0625, 43650-0626), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0700_1x07_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0700 (compatible alternatives: 43650-0701, 43650-0702), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +7 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0710_1x07-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0710 (compatible alternatives: 43650-0711, 43650-0709), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +9 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0710_1x07-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0710 (compatible alternatives: 43650-0711, 43650-0709), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +9 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0715_1x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0715 (compatible alternatives: 43650-0716, 43650-0717), 7 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +7 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0721_1x07_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0721 (compatible alternatives: 43650-0722, 43650-0723), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +7 +7 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0724_1x07-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0724 (compatible alternatives: 43650-0725, 43650-0726), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +9 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0800_1x08_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0800 (compatible alternatives: 43650-0801, 43650-0802), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0810_1x08-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0810 (compatible alternatives: 43650-0811, 43650-0809), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0810_1x08-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0810 (compatible alternatives: 43650-0811, 43650-0809), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0815_1x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0815 (compatible alternatives: 43650-0816, 43650-0817), 8 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0821_1x08_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0821 (compatible alternatives: 43650-0822, 43650-0823), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +8 +8 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0824_1x08-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0824 (compatible alternatives: 43650-0825, 43650-0826), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0900_1x09_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0900 (compatible alternatives: 43650-0901, 43650-0902), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +9 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0910_1x09-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-0910 (compatible alternatives: 43650-0911, 43650-0909), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +11 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0910_1x09-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-0910 (compatible alternatives: 43650-0911, 43650-0909), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +11 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0915_1x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0915 (compatible alternatives: 43650-0916, 43650-0917), 9 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +9 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0921_1x09_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0921 (compatible alternatives: 43650-0922, 43650-0923), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +9 +9 +Connector_Molex +Molex_Micro-Fit_3.0_43650-0924_1x09-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-0924 (compatible alternatives: 43650-0925, 43650-0926), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +11 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1000_1x10_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1000 (compatible alternatives: 43650-1001, 43650-1002), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1010_1x10-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1010 (compatible alternatives: 43650-1011, 43650-1009), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1010_1x10-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-1010 (compatible alternatives: 43650-1011, 43650-1009), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1015_1x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1015 (compatible alternatives: 43650-1016, 43650-1017), 10 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1021_1x10_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1021 (compatible alternatives: 43650-1022, 43650-1023), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +10 +10 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1024_1x10-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1024 (compatible alternatives: 43650-1025, 43650-1026), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1100_1x11_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1100 (compatible alternatives: 43650-1101, 43650-1102), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +11 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1110_1x11-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1110 (compatible alternatives: 43650-1111, 43650-1109), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +13 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1110_1x11-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-1110 (compatible alternatives: 43650-1111, 43650-1109), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +13 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1115_1x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1115 (compatible alternatives: 43650-1116, 43650-1117), 11 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +11 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1121_1x11_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1121 (compatible alternatives: 43650-1122, 43650-1123), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +11 +11 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1124_1x11-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1124 (compatible alternatives: 43650-1125, 43650-1126), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +13 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1200_1x12_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1200 (compatible alternatives: 43650-1201, 43650-1202), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 top entry +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1210_1x12-1MP_P3.00mm_Horizontal +Molex Micro-Fit 3.0 Connector System, 43650-1210 (compatible alternatives: 43650-1211, 43650-1209), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1210_1x12-1MP_P3.00mm_Horizontal_PnP +Molex Micro-Fit 3.0 Connector System, 43650-1210 (compatible alternatives: 43650-1211, 43650-1209), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 horizontal +0 +14 +13 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1215_1x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1215 (compatible alternatives: 43650-1216, 43650-1217), 12 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1221_1x12_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1221 (compatible alternatives: 43650-1222, 43650-1223), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +12 +12 +Connector_Molex +Molex_Micro-Fit_3.0_43650-1224_1x12-1MP_P3.00mm_Vertical +Molex Micro-Fit 3.0 Connector System, 43650-1224 (compatible alternatives: 43650-1225, 43650-1226), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Fit_3.0 vertical +0 +14 +13 +Connector_Molex +Molex_Micro-Latch_53253-0270_1x02_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0270 (compatible alternatives: 53253-0250), 2 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +2 +2 +Connector_Molex +Molex_Micro-Latch_53253-0370_1x03_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0370 (compatible alternatives: 53253-0350), 3 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +3 +3 +Connector_Molex +Molex_Micro-Latch_53253-0470_1x04_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0470 (compatible alternatives: 53253-0450), 4 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +4 +4 +Connector_Molex +Molex_Micro-Latch_53253-0570_1x05_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0570 (compatible alternatives: 53253-0550), 5 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +5 +5 +Connector_Molex +Molex_Micro-Latch_53253-0670_1x06_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0670 (compatible alternatives: 53253-0650), 6 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +6 +6 +Connector_Molex +Molex_Micro-Latch_53253-0770_1x07_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0770 (compatible alternatives: 53253-0750), 7 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +7 +7 +Connector_Molex +Molex_Micro-Latch_53253-0870_1x08_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0870 (compatible alternatives: 53253-0850), 8 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +8 +8 +Connector_Molex +Molex_Micro-Latch_53253-0970_1x09_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-0970 (compatible alternatives: 53253-0950), 9 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +9 +9 +Connector_Molex +Molex_Micro-Latch_53253-1070_1x10_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1070 (compatible alternatives: 53253-1050), 10 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +10 +10 +Connector_Molex +Molex_Micro-Latch_53253-1170_1x11_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1170 (compatible alternatives: 53253-1150), 11 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +11 +11 +Connector_Molex +Molex_Micro-Latch_53253-1270_1x12_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1270 (compatible alternatives: 53253-1250), 12 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +12 +12 +Connector_Molex +Molex_Micro-Latch_53253-1370_1x13_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1370 (compatible alternatives: 53253-1350), 13 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +13 +13 +Connector_Molex +Molex_Micro-Latch_53253-1470_1x14_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1470 (compatible alternatives: 53253-1450), 14 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +14 +14 +Connector_Molex +Molex_Micro-Latch_53253-1570_1x15_P2.00mm_Vertical +Molex Micro-Latch Wire-to-Board Connector System, 53253-1570 (compatible alternatives: 53253-1550), 15 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch side entry +0 +15 +15 +Connector_Molex +Molex_Micro-Latch_53254-0270_1x02_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0270 (compatible alternatives: 53254-0250), 2 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +2 +2 +Connector_Molex +Molex_Micro-Latch_53254-0370_1x03_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0370 (compatible alternatives: 53254-0350), 3 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +3 +3 +Connector_Molex +Molex_Micro-Latch_53254-0470_1x04_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0470 (compatible alternatives: 53254-0450), 4 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +4 +4 +Connector_Molex +Molex_Micro-Latch_53254-0570_1x05_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0570 (compatible alternatives: 53254-0550), 5 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +5 +5 +Connector_Molex +Molex_Micro-Latch_53254-0670_1x06_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0670 (compatible alternatives: 53254-0650), 6 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +6 +6 +Connector_Molex +Molex_Micro-Latch_53254-0770_1x07_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0770 (compatible alternatives: 53254-0750), 7 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +7 +7 +Connector_Molex +Molex_Micro-Latch_53254-0870_1x08_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0870 (compatible alternatives: 53254-0850), 8 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +8 +8 +Connector_Molex +Molex_Micro-Latch_53254-0970_1x09_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-0970 (compatible alternatives: 53254-0950), 9 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +9 +9 +Connector_Molex +Molex_Micro-Latch_53254-1070_1x10_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1070 (compatible alternatives: 53254-1050), 10 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +10 +10 +Connector_Molex +Molex_Micro-Latch_53254-1170_1x11_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1170 (compatible alternatives: 53254-1150), 11 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +11 +11 +Connector_Molex +Molex_Micro-Latch_53254-1270_1x12_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1270 (compatible alternatives: 53254-1250), 12 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +12 +12 +Connector_Molex +Molex_Micro-Latch_53254-1370_1x13_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1370 (compatible alternatives: 53254-1350), 13 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +13 +13 +Connector_Molex +Molex_Micro-Latch_53254-1470_1x14_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1470 (compatible alternatives: 53254-1450), 14 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +14 +14 +Connector_Molex +Molex_Micro-Latch_53254-1570_1x15_P2.00mm_Horizontal +Molex Micro-Latch Wire-to-Board Connector System, 53254-1570 (compatible alternatives: 53254-1550), 15 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator +connector Molex Micro-Latch top entry +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55932-0210_1x02_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0210, with PCB locator, 2 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55932-0230_1x02_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0230, 2 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55932-0310_1x03_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0310, with PCB locator, 3 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55932-0330_1x03_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0330, 3 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55932-0410_1x04_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0410, with PCB locator, 4 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55932-0430_1x04_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0430, 4 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55932-0510_1x05_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0510, with PCB locator, 5 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55932-0530_1x05_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0530, 5 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55932-0610_1x06_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0610, with PCB locator, 6 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55932-0630_1x06_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0630, 6 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55932-0710_1x07_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0710, with PCB locator, 7 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55932-0730_1x07_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0730, 7 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55932-0810_1x08_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0810, with PCB locator, 8 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55932-0830_1x08_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0830, 8 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55932-0910_1x09_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0910, with PCB locator, 9 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55932-0930_1x09_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-0930, 9 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55932-1010_1x10_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1010, with PCB locator, 10 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55932-1030_1x10_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1030, 10 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55932-1110_1x11_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1110, with PCB locator, 11 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55932-1130_1x11_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1130, 11 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55932-1210_1x12_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1210, with PCB locator, 12 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55932-1230_1x12_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1230, 12 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55932-1310_1x13_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1310, with PCB locator, 13 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55932-1330_1x13_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1330, 13 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55932-1410_1x14_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1410, with PCB locator, 14 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55932-1430_1x14_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1430, 14 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55932-1510_1x15_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1510, with PCB locator, 15 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55932-1530_1x15_P2.00mm_Vertical +Molex MicroClasp Wire-to-Board System, 55932-1530, 15 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp side entry +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55935-0210_1x02_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0210, with PCB locator, 2 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55935-0230_1x02_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0230, 2 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +2 +2 +Connector_Molex +Molex_MicroClasp_55935-0310_1x03_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0310, with PCB locator, 3 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55935-0330_1x03_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0330, 3 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +3 +3 +Connector_Molex +Molex_MicroClasp_55935-0410_1x04_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0410, with PCB locator, 4 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55935-0430_1x04_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0430, 4 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +4 +4 +Connector_Molex +Molex_MicroClasp_55935-0510_1x05_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0510, with PCB locator, 5 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55935-0530_1x05_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0530, 5 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +5 +5 +Connector_Molex +Molex_MicroClasp_55935-0610_1x06_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0610, with PCB locator, 6 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55935-0630_1x06_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0630, 6 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +6 +6 +Connector_Molex +Molex_MicroClasp_55935-0710_1x07_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0710, with PCB locator, 7 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55935-0730_1x07_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0730, 7 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +7 +7 +Connector_Molex +Molex_MicroClasp_55935-0810_1x08_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0810, with PCB locator, 8 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55935-0830_1x08_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0830, 8 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +8 +8 +Connector_Molex +Molex_MicroClasp_55935-0910_1x09_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0910, with PCB locator, 9 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55935-0930_1x09_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-0930, 9 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +9 +9 +Connector_Molex +Molex_MicroClasp_55935-1010_1x10_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1010, with PCB locator, 10 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55935-1030_1x10_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1030, 10 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +10 +10 +Connector_Molex +Molex_MicroClasp_55935-1110_1x11_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1110, with PCB locator, 11 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55935-1130_1x11_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1130, 11 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +11 +11 +Connector_Molex +Molex_MicroClasp_55935-1210_1x12_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1210, with PCB locator, 12 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55935-1230_1x12_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1230, 12 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +12 +12 +Connector_Molex +Molex_MicroClasp_55935-1310_1x13_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1310, with PCB locator, 13 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55935-1330_1x13_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1330, 13 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +13 +13 +Connector_Molex +Molex_MicroClasp_55935-1410_1x14_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1410, with PCB locator, 14 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55935-1430_1x14_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1430, 14 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +14 +14 +Connector_Molex +Molex_MicroClasp_55935-1510_1x15_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1510, with PCB locator, 15 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +15 +15 +Connector_Molex +Molex_MicroClasp_55935-1530_1x15_P2.00mm_Horizontal +Molex MicroClasp Wire-to-Board System, 55935-1530, 15 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator +connector Molex MicroClasp horizontal +0 +15 +15 +Connector_Molex +Molex_Mini-Fit_Jr_5566-02A2_2x01_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-02A2, example for new mpn: 39-28-902x, 1 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5566-02A_2x01_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-02A, example for new mpn: 39-28-x02x, 1 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5566-04A2_2x02_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-04A2, example for new mpn: 39-28-904x, 2 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5566-04A_2x02_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-04A, example for new mpn: 39-28-x04x, 2 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5566-06A2_2x03_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-06A2, example for new mpn: 39-28-906x, 3 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5566-06A_2x03_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-06A, example for new mpn: 39-28-x06x, 3 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5566-08A2_2x04_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-08A2, example for new mpn: 39-28-908x, 4 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5566-08A_2x04_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-08A, example for new mpn: 39-28-x08x, 4 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5566-10A2_2x05_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-10A2, example for new mpn: 39-28-910x, 5 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5566-10A_2x05_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-10A, example for new mpn: 39-28-x10x, 5 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5566-12A2_2x06_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-12A2, example for new mpn: 39-28-912x, 6 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5566-12A_2x06_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-12A, example for new mpn: 39-28-x12x, 6 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5566-14A2_2x07_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-14A2, example for new mpn: 39-28-914x, 7 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5566-14A_2x07_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-14A, example for new mpn: 39-28-x14x, 7 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5566-16A2_2x08_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-16A2, example for new mpn: 39-28-916x, 8 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5566-16A_2x08_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-16A, example for new mpn: 39-28-x16x, 8 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5566-18A2_2x09_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-18A2, example for new mpn: 39-28-918x, 9 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5566-18A_2x09_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-18A, example for new mpn: 39-28-x18x, 9 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5566-20A2_2x10_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-20A2, example for new mpn: 39-28-920x, 10 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5566-20A_2x10_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-20A, example for new mpn: 39-28-x20x, 10 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5566-22A2_2x11_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-22A2, example for new mpn: 39-28-922x, 11 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5566-22A_2x11_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-22A, example for new mpn: 39-28-x22x, 11 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5566-24A2_2x12_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-24A2, example for new mpn: 39-28-924x, 12 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entryplastic_peg +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Jr_5566-24A_2x12_P4.20mm_Vertical +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-24A, example for new mpn: 39-28-x24x, 12 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr side entry +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Jr_5569-02A1_2x01_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-02A1, example for new mpn: 39-29-4029, 1 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5569-02A2_2x01_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-02A2, example for new mpn: 39-30-0020, 1 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +2 +2 +Connector_Molex +Molex_Mini-Fit_Jr_5569-04A1_2x02_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-04A1, example for new mpn: 39-29-4049, 2 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5569-04A2_2x02_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-04A2, example for new mpn: 39-30-0040, 2 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +4 +4 +Connector_Molex +Molex_Mini-Fit_Jr_5569-06A1_2x03_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-06A1, example for new mpn: 39-29-4069, 3 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5569-06A2_2x03_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-06A2, example for new mpn: 39-30-0060, 3 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +6 +6 +Connector_Molex +Molex_Mini-Fit_Jr_5569-08A1_2x04_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-08A1, example for new mpn: 39-29-4089, 4 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5569-08A2_2x04_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-08A2, example for new mpn: 39-30-0080, 4 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +8 +8 +Connector_Molex +Molex_Mini-Fit_Jr_5569-10A1_2x05_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-10A1, example for new mpn: 39-29-4109, 5 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5569-10A2_2x05_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-10A2, example for new mpn: 39-30-0100, 5 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +10 +10 +Connector_Molex +Molex_Mini-Fit_Jr_5569-12A1_2x06_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-12A1, example for new mpn: 39-29-4129, 6 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5569-12A2_2x06_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-12A2, example for new mpn: 39-30-0120, 6 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +12 +12 +Connector_Molex +Molex_Mini-Fit_Jr_5569-14A1_2x07_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-14A1, example for new mpn: 39-29-4149, 7 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5569-14A2_2x07_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-14A2, example for new mpn: 39-30-0140, 7 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +14 +14 +Connector_Molex +Molex_Mini-Fit_Jr_5569-16A1_2x08_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-16A1, example for new mpn: 39-29-4169, 8 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5569-16A2_2x08_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-16A2, example for new mpn: 39-30-0160, 8 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +16 +16 +Connector_Molex +Molex_Mini-Fit_Jr_5569-18A1_2x09_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-18A1, example for new mpn: 39-29-4189, 9 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5569-18A2_2x09_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-18A2, example for new mpn: 39-30-0180, 9 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +18 +18 +Connector_Molex +Molex_Mini-Fit_Jr_5569-20A1_2x10_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-20A1, example for new mpn: 39-29-4209, 10 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5569-20A2_2x10_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-20A2, example for new mpn: 39-30-0200, 10 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +20 +20 +Connector_Molex +Molex_Mini-Fit_Jr_5569-22A1_2x11_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-22A1, example for new mpn: 39-29-4229, 11 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5569-22A2_2x11_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-22A2, example for new mpn: 39-30-0220, 11 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +22 +22 +Connector_Molex +Molex_Mini-Fit_Jr_5569-24A1_2x12_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-24A1, example for new mpn: 39-29-4249, 12 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryscrew_flange +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Jr_5569-24A2_2x12_P4.20mm_Horizontal +Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-24A2, example for new mpn: 39-30-0240, 12 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Jr top entryplastic_peg +0 +24 +24 +Connector_Molex +Molex_Mini-Fit_Sr_42819-22XX_1x02_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-22XX, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +6 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42819-22XX_1x02_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-22XX, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +32 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42819-32XX_1x03_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-32XX, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +8 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42819-32XX_1x03_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-32XX, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +47 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42819-42XX_1x04_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-42XX, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +10 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42819-42XX_1x04_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-42XX, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +62 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42819-52XX_1x05_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-52XX, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +12 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42819-52XX_1x05_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-52XX, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +77 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42819-62XX_1x06_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 42819-62XX, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +14 +6 +Connector_Molex +Molex_Mini-Fit_Sr_42819-62XX_1x06_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42819-62XX, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +92 +6 +Connector_Molex +Molex_Mini-Fit_Sr_42820-22XX_1x02_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-22XX, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +6 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42820-22XX_1x02_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-22XX, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +32 +2 +Connector_Molex +Molex_Mini-Fit_Sr_42820-32XX_1x03_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-32XX, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +8 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42820-32XX_1x03_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-32XX, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +47 +3 +Connector_Molex +Molex_Mini-Fit_Sr_42820-42XX_1x04_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-42XX, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +10 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42820-42XX_1x04_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-42XX, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +62 +4 +Connector_Molex +Molex_Mini-Fit_Sr_42820-52XX_1x05_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-52XX, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +12 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42820-52XX_1x05_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-52XX, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +77 +5 +Connector_Molex +Molex_Mini-Fit_Sr_42820-62XX_1x06_P10.00mm_Horizontal +Molex Mini-Fit Sr. Power Connectors, 42820-62XX, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +14 +6 +Connector_Molex +Molex_Mini-Fit_Sr_42820-62XX_1x06_P10.00mm_Horizontal_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 42820-62XX, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr top entry +0 +92 +6 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx06_2x03_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +14 +6 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx06_2x03_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx06, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +92 +6 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx08_2x04_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +18 +8 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx08_2x04_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx08, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +122 +8 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx10_2x05_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +22 +10 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx10_2x05_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx10, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +152 +10 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx12_2x06_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +26 +12 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx12_2x06_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx12, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +182 +12 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx14_2x07_P10.00mm_Vertical +Molex Mini-Fit Sr. Power Connectors, 43915-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +30 +14 +Connector_Molex +Molex_Mini-Fit_Sr_43915-xx14_2x07_P10.00mm_Vertical_ThermalVias +Molex Mini-Fit Sr. Power Connectors, 43915-xx14, With thermal vias in pads, 7 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator +connector Molex Mini-Fit_Sr side entry +0 +212 +14 +Connector_Molex +Molex_Nano-Fit_105309-xx02_1x02_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx02, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +2 +2 +Connector_Molex +Molex_Nano-Fit_105309-xx03_1x03_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx03, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +3 +3 +Connector_Molex +Molex_Nano-Fit_105309-xx04_1x04_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx04, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105309-xx05_1x05_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx05, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +5 +5 +Connector_Molex +Molex_Nano-Fit_105309-xx06_1x06_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx06, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105309-xx07_1x07_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx07, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +7 +7 +Connector_Molex +Molex_Nano-Fit_105309-xx08_1x08_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105309-xx08, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105310-xx04_2x02_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx04, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105310-xx06_2x03_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105310-xx08_2x04_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105310-xx10_2x05_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +10 +10 +Connector_Molex +Molex_Nano-Fit_105310-xx12_2x06_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +12 +12 +Connector_Molex +Molex_Nano-Fit_105310-xx14_2x07_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +14 +14 +Connector_Molex +Molex_Nano-Fit_105310-xx16_2x08_P2.50mm_Vertical +Molex Nano-Fit Power Connectors, 105310-xx16, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit side entry +0 +16 +16 +Connector_Molex +Molex_Nano-Fit_105313-xx02_1x02_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx02, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +2 +2 +Connector_Molex +Molex_Nano-Fit_105313-xx03_1x03_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx03, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +3 +3 +Connector_Molex +Molex_Nano-Fit_105313-xx04_1x04_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx04, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105313-xx05_1x05_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx05, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +5 +5 +Connector_Molex +Molex_Nano-Fit_105313-xx06_1x06_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx06, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105313-xx07_1x07_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx07, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +7 +7 +Connector_Molex +Molex_Nano-Fit_105313-xx08_1x08_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105313-xx08, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105314-xx04_2x02_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx04, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +4 +4 +Connector_Molex +Molex_Nano-Fit_105314-xx06_2x03_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +6 +6 +Connector_Molex +Molex_Nano-Fit_105314-xx08_2x04_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +8 +8 +Connector_Molex +Molex_Nano-Fit_105314-xx10_2x05_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +10 +10 +Connector_Molex +Molex_Nano-Fit_105314-xx12_2x06_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +12 +12 +Connector_Molex +Molex_Nano-Fit_105314-xx14_2x07_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +14 +14 +Connector_Molex +Molex_Nano-Fit_105314-xx16_2x08_P2.50mm_Horizontal +Molex Nano-Fit Power Connectors, 105314-xx16, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator +connector Molex Nano-Fit top entry +0 +16 +16 +Connector_Molex +Molex_Panelmate_53780-0270_1x02-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0270 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +4 +3 +Connector_Molex +Molex_Panelmate_53780-0370_1x03-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0370 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +5 +4 +Connector_Molex +Molex_Panelmate_53780-0470_1x04-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0470 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +6 +5 +Connector_Molex +Molex_Panelmate_53780-0570_1x05-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0570 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +7 +6 +Connector_Molex +Molex_Panelmate_53780-0670_1x06-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0670 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +8 +7 +Connector_Molex +Molex_Panelmate_53780-0770_1x07-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0770 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +9 +8 +Connector_Molex +Molex_Panelmate_53780-0870_1x08-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0870 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +10 +9 +Connector_Molex +Molex_Panelmate_53780-0970_1x09-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-0970 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +11 +10 +Connector_Molex +Molex_Panelmate_53780-1070_1x10-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1070 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +12 +11 +Connector_Molex +Molex_Panelmate_53780-1270_1x12-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1270 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +14 +13 +Connector_Molex +Molex_Panelmate_53780-1470_1x14-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1470 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +16 +15 +Connector_Molex +Molex_Panelmate_53780-1570_1x15-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1570 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +17 +16 +Connector_Molex +Molex_Panelmate_53780-1870_1x18-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-1870 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +20 +19 +Connector_Molex +Molex_Panelmate_53780-3070_1x30-1MP_P1.25mm_Horizontal +Molex Panelmate series connector, 53780-3070 (), generated with kicad-footprint-generator +connector Molex Panelmate top entry +0 +32 +31 +Connector_Molex +Molex_Pico-Clasp_202396-0207_1x02-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0207 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +4 +3 +Connector_Molex +Molex_Pico-Clasp_202396-0307_1x03-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0307 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +5 +4 +Connector_Molex +Molex_Pico-Clasp_202396-0407_1x04-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0407 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +6 +5 +Connector_Molex +Molex_Pico-Clasp_202396-0507_1x05-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0507 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +7 +6 +Connector_Molex +Molex_Pico-Clasp_202396-0607_1x06-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0607 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +8 +7 +Connector_Molex +Molex_Pico-Clasp_202396-0707_1x07-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0707 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +9 +8 +Connector_Molex +Molex_Pico-Clasp_202396-0807_1x08-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0807 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +10 +9 +Connector_Molex +Molex_Pico-Clasp_202396-0907_1x09-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-0907 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +11 +10 +Connector_Molex +Molex_Pico-Clasp_202396-1007_1x10-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1007 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +12 +11 +Connector_Molex +Molex_Pico-Clasp_202396-1107_1x11-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1107 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +13 +12 +Connector_Molex +Molex_Pico-Clasp_202396-1207_1x12-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1207 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +14 +13 +Connector_Molex +Molex_Pico-Clasp_202396-1307_1x13-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1307 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +15 +14 +Connector_Molex +Molex_Pico-Clasp_202396-1407_1x14-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1407 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +16 +15 +Connector_Molex +Molex_Pico-Clasp_202396-1507_1x15-1MP_P1.00mm_Horizontal +Molex Pico-Clasp series connector, 202396-1507 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp top entry +0 +17 +16 +Connector_Molex +Molex_Pico-Clasp_501331-0207_1x02-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0207 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +4 +3 +Connector_Molex +Molex_Pico-Clasp_501331-0307_1x03-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0307 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +5 +4 +Connector_Molex +Molex_Pico-Clasp_501331-0407_1x04-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0407 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +6 +5 +Connector_Molex +Molex_Pico-Clasp_501331-0507_1x05-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0507 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +7 +6 +Connector_Molex +Molex_Pico-Clasp_501331-0607_1x06-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0607 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +8 +7 +Connector_Molex +Molex_Pico-Clasp_501331-0707_1x07-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0707 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +9 +8 +Connector_Molex +Molex_Pico-Clasp_501331-0807_1x08-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0807 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +10 +9 +Connector_Molex +Molex_Pico-Clasp_501331-0907_1x09-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-0907 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +11 +10 +Connector_Molex +Molex_Pico-Clasp_501331-1007_1x10-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1007 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +12 +11 +Connector_Molex +Molex_Pico-Clasp_501331-1107_1x11-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1107 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +13 +12 +Connector_Molex +Molex_Pico-Clasp_501331-1207_1x12-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1207 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +14 +13 +Connector_Molex +Molex_Pico-Clasp_501331-1307_1x13-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1307 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +15 +14 +Connector_Molex +Molex_Pico-Clasp_501331-1407_1x14-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1407 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +16 +15 +Connector_Molex +Molex_Pico-Clasp_501331-1507_1x15-1MP_P1.00mm_Vertical +Molex Pico-Clasp series connector, 501331-1507 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Clasp side entry +0 +17 +16 +Connector_Molex +Molex_Pico-EZmate_78171-0002_1x02-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0002 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +4 +3 +Connector_Molex +Molex_Pico-EZmate_78171-0003_1x03-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0003 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +5 +4 +Connector_Molex +Molex_Pico-EZmate_78171-0004_1x04-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0004 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +6 +5 +Connector_Molex +Molex_Pico-EZmate_78171-0005_1x05-1MP_P1.20mm_Vertical +Molex Pico-EZmate series connector, 78171-0005 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate side entry +0 +7 +6 +Connector_Molex +Molex_Pico-EZmate_Slim_202656-0021_1x02-1MP_P1.20mm_Vertical +Molex Pico-EZmate_Slim series connector, 202656-0021 (http://www.molex.com/pdm_docs/sd/2026560021_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-EZmate_Slim side entry +0 +4 +3 +Connector_Molex +Molex_Pico-Lock_504050-0491_1x04-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0491 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +6 +5 +Connector_Molex +Molex_Pico-Lock_504050-0591_1x05-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0591 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +7 +6 +Connector_Molex +Molex_Pico-Lock_504050-0691_1x06-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0691 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +8 +7 +Connector_Molex +Molex_Pico-Lock_504050-0791_1x07-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0791 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +9 +8 +Connector_Molex +Molex_Pico-Lock_504050-0891_1x08-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-0891 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +10 +9 +Connector_Molex +Molex_Pico-Lock_504050-1091_1x10-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-1091 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +12 +11 +Connector_Molex +Molex_Pico-Lock_504050-1291_1x12-1MP_P1.50mm_Horizontal +Molex Pico-Lock series connector, 504050-1291 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator +connector Molex Pico-Lock horizontal +0 +14 +13 +Connector_Molex +Molex_Pico-SPOX_87437-1443_1x14-P1.5mm_Vertical +Molex Pico-SPOX Connector System, 87437-1443, 14 Pins per row (https://www.molex.com/pdm_docs/sd/874371443_sd.pdf#page=2) +molex pico spox 14 +0 +28 +14 +Connector_Molex +Molex_PicoBlade_53047-0210_1x02_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0210, 2 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +2 +2 +Connector_Molex +Molex_PicoBlade_53047-0310_1x03_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0310, 3 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +3 +3 +Connector_Molex +Molex_PicoBlade_53047-0410_1x04_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0410, 4 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +4 +4 +Connector_Molex +Molex_PicoBlade_53047-0510_1x05_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +5 +5 +Connector_Molex +Molex_PicoBlade_53047-0610_1x06_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0610, 6 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +6 +6 +Connector_Molex +Molex_PicoBlade_53047-0710_1x07_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0710, 7 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +7 +7 +Connector_Molex +Molex_PicoBlade_53047-0810_1x08_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0810, 8 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +8 +8 +Connector_Molex +Molex_PicoBlade_53047-0910_1x09_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-0910, 9 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +9 +9 +Connector_Molex +Molex_PicoBlade_53047-1010_1x10_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1010, 10 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +10 +10 +Connector_Molex +Molex_PicoBlade_53047-1110_1x11_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1110, 11 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +11 +11 +Connector_Molex +Molex_PicoBlade_53047-1210_1x12_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1210, 12 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +12 +12 +Connector_Molex +Molex_PicoBlade_53047-1310_1x13_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1310, 13 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +13 +13 +Connector_Molex +Molex_PicoBlade_53047-1410_1x14_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1410, 14 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +14 +14 +Connector_Molex +Molex_PicoBlade_53047-1510_1x15_P1.25mm_Vertical +Molex PicoBlade Connector System, 53047-1510, 15 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +15 +15 +Connector_Molex +Molex_PicoBlade_53048-0210_1x02_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0210, 2 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +2 +2 +Connector_Molex +Molex_PicoBlade_53048-0310_1x03_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0310, 3 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +3 +3 +Connector_Molex +Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0410, 4 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +4 +4 +Connector_Molex +Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +5 +5 +Connector_Molex +Molex_PicoBlade_53048-0610_1x06_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0610, 6 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +6 +6 +Connector_Molex +Molex_PicoBlade_53048-0710_1x07_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0710, 7 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +7 +7 +Connector_Molex +Molex_PicoBlade_53048-0810_1x08_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0810, 8 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +8 +8 +Connector_Molex +Molex_PicoBlade_53048-0910_1x09_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-0910, 9 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +9 +9 +Connector_Molex +Molex_PicoBlade_53048-1010_1x10_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1010, 10 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +10 +10 +Connector_Molex +Molex_PicoBlade_53048-1110_1x11_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1110, 11 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +11 +11 +Connector_Molex +Molex_PicoBlade_53048-1210_1x12_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1210, 12 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +12 +12 +Connector_Molex +Molex_PicoBlade_53048-1310_1x13_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1310, 13 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +13 +13 +Connector_Molex +Molex_PicoBlade_53048-1410_1x14_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1410, 14 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +14 +14 +Connector_Molex +Molex_PicoBlade_53048-1510_1x15_P1.25mm_Horizontal +Molex PicoBlade Connector System, 53048-1510, 15 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +15 +15 +Connector_Molex +Molex_PicoBlade_53261-0271_1x02-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0271 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +4 +3 +Connector_Molex +Molex_PicoBlade_53261-0371_1x03-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0371 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +5 +4 +Connector_Molex +Molex_PicoBlade_53261-0471_1x04-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0471 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +6 +5 +Connector_Molex +Molex_PicoBlade_53261-0571_1x05-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0571 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +7 +6 +Connector_Molex +Molex_PicoBlade_53261-0671_1x06-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0671 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +8 +7 +Connector_Molex +Molex_PicoBlade_53261-0771_1x07-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0771 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +9 +8 +Connector_Molex +Molex_PicoBlade_53261-0871_1x08-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0871 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +10 +9 +Connector_Molex +Molex_PicoBlade_53261-0971_1x09-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-0971 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +11 +10 +Connector_Molex +Molex_PicoBlade_53261-1071_1x10-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1071 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +12 +11 +Connector_Molex +Molex_PicoBlade_53261-1171_1x11-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1171 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +13 +12 +Connector_Molex +Molex_PicoBlade_53261-1271_1x12-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1271 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +14 +13 +Connector_Molex +Molex_PicoBlade_53261-1371_1x13-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1371 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +15 +14 +Connector_Molex +Molex_PicoBlade_53261-1471_1x14-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1471 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +16 +15 +Connector_Molex +Molex_PicoBlade_53261-1571_1x15-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1571 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +17 +16 +Connector_Molex +Molex_PicoBlade_53261-1771_1x17-1MP_P1.25mm_Horizontal +Molex PicoBlade series connector, 53261-1771 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade top entry +0 +19 +18 +Connector_Molex +Molex_PicoBlade_53398-0271_1x02-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0271 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +4 +3 +Connector_Molex +Molex_PicoBlade_53398-0371_1x03-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0371 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +5 +4 +Connector_Molex +Molex_PicoBlade_53398-0471_1x04-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0471 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +6 +5 +Connector_Molex +Molex_PicoBlade_53398-0571_1x05-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0571 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +7 +6 +Connector_Molex +Molex_PicoBlade_53398-0671_1x06-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0671 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +8 +7 +Connector_Molex +Molex_PicoBlade_53398-0771_1x07-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0771 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +9 +8 +Connector_Molex +Molex_PicoBlade_53398-0871_1x08-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0871 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +10 +9 +Connector_Molex +Molex_PicoBlade_53398-0971_1x09-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-0971 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +11 +10 +Connector_Molex +Molex_PicoBlade_53398-1071_1x10-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1071 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +12 +11 +Connector_Molex +Molex_PicoBlade_53398-1171_1x11-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1171 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +13 +12 +Connector_Molex +Molex_PicoBlade_53398-1271_1x12-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1271 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +14 +13 +Connector_Molex +Molex_PicoBlade_53398-1371_1x13-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1371 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +15 +14 +Connector_Molex +Molex_PicoBlade_53398-1471_1x14-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1471 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +16 +15 +Connector_Molex +Molex_PicoBlade_53398-1571_1x15-1MP_P1.25mm_Vertical +Molex PicoBlade series connector, 53398-1571 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator +connector Molex PicoBlade side entry +0 +17 +16 +Connector_Molex +Molex_Picoflex_90325-0004_2x02_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0004, 4 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +4 +4 +Connector_Molex +Molex_Picoflex_90325-0006_2x03_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0006, 6 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +6 +6 +Connector_Molex +Molex_Picoflex_90325-0008_2x04_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0008, 8 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +8 +8 +Connector_Molex +Molex_Picoflex_90325-0010_2x05_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0010, 10 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +10 +10 +Connector_Molex +Molex_Picoflex_90325-0012_2x06_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0012, 12 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +12 +12 +Connector_Molex +Molex_Picoflex_90325-0014_2x07_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0014, 14 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +14 +14 +Connector_Molex +Molex_Picoflex_90325-0016_2x08_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0016, 16 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +16 +16 +Connector_Molex +Molex_Picoflex_90325-0018_2x09_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0018, 18 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +18 +18 +Connector_Molex +Molex_Picoflex_90325-0020_2x10_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0020, 20 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +20 +20 +Connector_Molex +Molex_Picoflex_90325-0022_2x11_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0022, 22 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +22 +22 +Connector_Molex +Molex_Picoflex_90325-0024_2x12_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0024, 24 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +24 +24 +Connector_Molex +Molex_Picoflex_90325-0026_2x13_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90325-0026, 26 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +26 +26 +Connector_Molex +Molex_Picoflex_90814-0004_2x02_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0004, 4 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +4 +4 +Connector_Molex +Molex_Picoflex_90814-0006_2x03_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0006, 6 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +6 +6 +Connector_Molex +Molex_Picoflex_90814-0008_2x04_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0008, 8 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +8 +8 +Connector_Molex +Molex_Picoflex_90814-0010_2x05_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0010, 10 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +10 +10 +Connector_Molex +Molex_Picoflex_90814-0012_2x06_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0012, 12 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +12 +12 +Connector_Molex +Molex_Picoflex_90814-0014_2x07_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0014, 14 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +14 +14 +Connector_Molex +Molex_Picoflex_90814-0016_2x08_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0016, 16 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +16 +16 +Connector_Molex +Molex_Picoflex_90814-0018_2x09_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0018, 18 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +18 +18 +Connector_Molex +Molex_Picoflex_90814-0020_2x10_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0020, 20 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +20 +20 +Connector_Molex +Molex_Picoflex_90814-0022_2x11_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0022, 22 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +22 +22 +Connector_Molex +Molex_Picoflex_90814-0024_2x12_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0024, 24 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +24 +24 +Connector_Molex +Molex_Picoflex_90814-0026_2x13_P1.27mm_Vertical +Molex Picoflex Ribbon-Cable Connectors, 90814-0026, 26 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator +connector Molex Picoflex side entry +0 +26 +26 +Connector_Molex +Molex_SL_171971-0002_1x02_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0002 (compatible alternatives: 171971-0102, 171971-0202), 2 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +2 +2 +Connector_Molex +Molex_SL_171971-0003_1x03_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0003 (compatible alternatives: 171971-0103, 171971-0203), 3 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +3 +3 +Connector_Molex +Molex_SL_171971-0004_1x04_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0004 (compatible alternatives: 171971-0104, 171971-0204), 4 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +4 +4 +Connector_Molex +Molex_SL_171971-0005_1x05_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0005 (compatible alternatives: 171971-0105, 171971-0205), 5 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +5 +5 +Connector_Molex +Molex_SL_171971-0006_1x06_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0006 (compatible alternatives: 171971-0106, 171971-0206), 6 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +6 +6 +Connector_Molex +Molex_SL_171971-0007_1x07_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0007 (compatible alternatives: 171971-0107, 171971-0207), 7 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +7 +7 +Connector_Molex +Molex_SL_171971-0008_1x08_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0008 (compatible alternatives: 171971-0108, 171971-0208), 8 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +8 +8 +Connector_Molex +Molex_SL_171971-0009_1x09_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0009 (compatible alternatives: 171971-0109, 171971-0209), 9 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +9 +9 +Connector_Molex +Molex_SL_171971-0010_1x10_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0010 (compatible alternatives: 171971-0110, 171971-0210), 10 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +10 +10 +Connector_Molex +Molex_SL_171971-0011_1x11_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0011 (compatible alternatives: 171971-0111, 171971-0211), 11 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +11 +11 +Connector_Molex +Molex_SL_171971-0012_1x12_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0012 (compatible alternatives: 171971-0112, 171971-0212), 12 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +12 +12 +Connector_Molex +Molex_SL_171971-0013_1x13_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0013 (compatible alternatives: 171971-0113, 171971-0213), 13 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +13 +13 +Connector_Molex +Molex_SL_171971-0014_1x14_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0014 (compatible alternatives: 171971-0114, 171971-0214), 14 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +14 +14 +Connector_Molex +Molex_SL_171971-0015_1x15_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0015 (compatible alternatives: 171971-0115, 171971-0215), 15 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +15 +15 +Connector_Molex +Molex_SL_171971-0016_1x16_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0016 (compatible alternatives: 171971-0116, 171971-0216), 16 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +16 +16 +Connector_Molex +Molex_SL_171971-0017_1x17_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0017 (compatible alternatives: 171971-0117, 171971-0217), 17 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +17 +17 +Connector_Molex +Molex_SL_171971-0018_1x18_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0018 (compatible alternatives: 171971-0118, 171971-0218), 18 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +18 +18 +Connector_Molex +Molex_SL_171971-0019_1x19_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0019 (compatible alternatives: 171971-0119, 171971-0219), 19 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +19 +19 +Connector_Molex +Molex_SL_171971-0020_1x20_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0020 (compatible alternatives: 171971-0120, 171971-0220), 20 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +20 +20 +Connector_Molex +Molex_SL_171971-0021_1x21_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0021 (compatible alternatives: 171971-0121, 171971-0221), 21 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +21 +21 +Connector_Molex +Molex_SL_171971-0022_1x22_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0022 (compatible alternatives: 171971-0122, 171971-0222), 22 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +22 +22 +Connector_Molex +Molex_SL_171971-0023_1x23_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0023 (compatible alternatives: 171971-0123, 171971-0223), 23 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +23 +23 +Connector_Molex +Molex_SL_171971-0024_1x24_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0024 (compatible alternatives: 171971-0124, 171971-0224), 24 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +24 +24 +Connector_Molex +Molex_SL_171971-0025_1x25_P2.54mm_Vertical +Molex Stackable Linear Connector, 171971-0025 (compatible alternatives: 171971-0125, 171971-0225), 25 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator +connector Molex SL vertical +0 +25 +25 +Connector_Molex +Molex_SPOX_5267-02A_1x02_P2.50mm_Vertical +Molex SPOX Connector System, 5267-02A, 2 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +2 +2 +Connector_Molex +Molex_SPOX_5267-03A_1x03_P2.50mm_Vertical +Molex SPOX Connector System, 5267-03A, 3 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +3 +3 +Connector_Molex +Molex_SPOX_5267-04A_1x04_P2.50mm_Vertical +Molex SPOX Connector System, 5267-04A, 4 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +4 +4 +Connector_Molex +Molex_SPOX_5267-05A_1x05_P2.50mm_Vertical +Molex SPOX Connector System, 5267-05A, 5 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +5 +5 +Connector_Molex +Molex_SPOX_5267-06A_1x06_P2.50mm_Vertical +Molex SPOX Connector System, 5267-06A, 6 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +6 +6 +Connector_Molex +Molex_SPOX_5267-07A_1x07_P2.50mm_Vertical +Molex SPOX Connector System, 5267-07A, 7 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +7 +7 +Connector_Molex +Molex_SPOX_5267-08A_1x08_P2.50mm_Vertical +Molex SPOX Connector System, 5267-08A, 8 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +8 +8 +Connector_Molex +Molex_SPOX_5267-09A_1x09_P2.50mm_Vertical +Molex SPOX Connector System, 5267-09A, 9 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +9 +9 +Connector_Molex +Molex_SPOX_5267-10A_1x10_P2.50mm_Vertical +Molex SPOX Connector System, 5267-10A, 10 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +10 +10 +Connector_Molex +Molex_SPOX_5267-11A_1x11_P2.50mm_Vertical +Molex SPOX Connector System, 5267-11A, 11 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +11 +11 +Connector_Molex +Molex_SPOX_5267-12A_1x12_P2.50mm_Vertical +Molex SPOX Connector System, 5267-12A, 12 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +12 +12 +Connector_Molex +Molex_SPOX_5267-13A_1x13_P2.50mm_Vertical +Molex SPOX Connector System, 5267-13A, 13 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +13 +13 +Connector_Molex +Molex_SPOX_5267-14A_1x14_P2.50mm_Vertical +Molex SPOX Connector System, 5267-14A, 14 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +14 +14 +Connector_Molex +Molex_SPOX_5267-15A_1x15_P2.50mm_Vertical +Molex SPOX Connector System, 5267-15A, 15 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX side entry +0 +15 +15 +Connector_Molex +Molex_SPOX_5268-02A_1x02_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-02A, 2 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +2 +2 +Connector_Molex +Molex_SPOX_5268-03A_1x03_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-03A, 3 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +3 +3 +Connector_Molex +Molex_SPOX_5268-04A_1x04_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-04A, 4 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +4 +4 +Connector_Molex +Molex_SPOX_5268-05A_1x05_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-05A, 5 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +5 +5 +Connector_Molex +Molex_SPOX_5268-06A_1x06_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-06A, 6 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +6 +6 +Connector_Molex +Molex_SPOX_5268-07A_1x07_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-07A, 7 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +7 +7 +Connector_Molex +Molex_SPOX_5268-08A_1x08_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-08A, 8 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +8 +8 +Connector_Molex +Molex_SPOX_5268-09A_1x09_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-09A, 9 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +9 +9 +Connector_Molex +Molex_SPOX_5268-10A_1x10_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-10A, 10 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +10 +10 +Connector_Molex +Molex_SPOX_5268-11A_1x11_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-11A, 11 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +11 +11 +Connector_Molex +Molex_SPOX_5268-12A_1x12_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-12A, 12 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +12 +12 +Connector_Molex +Molex_SPOX_5268-13A_1x13_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-13A, 13 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +13 +13 +Connector_Molex +Molex_SPOX_5268-14A_1x14_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-14A, 14 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +14 +14 +Connector_Molex +Molex_SPOX_5268-15A_1x15_P2.50mm_Horizontal +Molex SPOX Connector System, 5268-15A, 15 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator +connector Molex SPOX horizontal +0 +15 +15 +Connector_Molex +Molex_Sabre_43160-0102_1x02_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +4 +2 +Connector_Molex +Molex_Sabre_43160-0102_1x02_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +30 +2 +Connector_Molex +Molex_Sabre_43160-0103_1x03_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +6 +3 +Connector_Molex +Molex_Sabre_43160-0103_1x03_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +45 +3 +Connector_Molex +Molex_Sabre_43160-0104_1x04_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +8 +4 +Connector_Molex +Molex_Sabre_43160-0104_1x04_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +60 +4 +Connector_Molex +Molex_Sabre_43160-0105_1x05_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +10 +5 +Connector_Molex +Molex_Sabre_43160-0105_1x05_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +75 +5 +Connector_Molex +Molex_Sabre_43160-0106_1x06_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-0106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +12 +6 +Connector_Molex +Molex_Sabre_43160-0106_1x06_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-0106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +90 +6 +Connector_Molex +Molex_Sabre_43160-1102_1x02_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +6 +2 +Connector_Molex +Molex_Sabre_43160-1102_1x02_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +32 +2 +Connector_Molex +Molex_Sabre_43160-1103_1x03_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +8 +3 +Connector_Molex +Molex_Sabre_43160-1103_1x03_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +47 +3 +Connector_Molex +Molex_Sabre_43160-1104_1x04_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +10 +4 +Connector_Molex +Molex_Sabre_43160-1104_1x04_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +62 +4 +Connector_Molex +Molex_Sabre_43160-1105_1x05_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +12 +5 +Connector_Molex +Molex_Sabre_43160-1105_1x05_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +77 +5 +Connector_Molex +Molex_Sabre_43160-1106_1x06_P7.49mm_Horizontal +Molex Sabre Power Connector, 43160-1106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +14 +6 +Connector_Molex +Molex_Sabre_43160-1106_1x06_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 43160-1106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +92 +6 +Connector_Molex +Molex_Sabre_43160-2102_1x02_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +6 +2 +Connector_Molex +Molex_Sabre_43160-2102_1x02_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +32 +2 +Connector_Molex +Molex_Sabre_43160-2103_1x03_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +8 +3 +Connector_Molex +Molex_Sabre_43160-2103_1x03_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +47 +3 +Connector_Molex +Molex_Sabre_43160-2104_1x04_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +10 +4 +Connector_Molex +Molex_Sabre_43160-2104_1x04_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +62 +4 +Connector_Molex +Molex_Sabre_43160-2105_1x05_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +12 +5 +Connector_Molex +Molex_Sabre_43160-2105_1x05_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +77 +5 +Connector_Molex +Molex_Sabre_43160-2106_1x06_P7.49mm_Vertical +Molex Sabre Power Connector, 43160-2106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +14 +6 +Connector_Molex +Molex_Sabre_43160-2106_1x06_P7.49mm_Vertical_ThermalVias +Molex Sabre Power Connector, 43160-2106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre side entry +0 +92 +6 +Connector_Molex +Molex_Sabre_46007-1102_1x02_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +4 +2 +Connector_Molex +Molex_Sabre_46007-1102_1x02_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +30 +2 +Connector_Molex +Molex_Sabre_46007-1103_1x03_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +6 +3 +Connector_Molex +Molex_Sabre_46007-1103_1x03_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +45 +3 +Connector_Molex +Molex_Sabre_46007-1104_1x04_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +8 +4 +Connector_Molex +Molex_Sabre_46007-1104_1x04_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +60 +4 +Connector_Molex +Molex_Sabre_46007-1105_1x05_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +10 +5 +Connector_Molex +Molex_Sabre_46007-1105_1x05_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +75 +5 +Connector_Molex +Molex_Sabre_46007-1106_1x06_P7.49mm_Horizontal +Molex Sabre Power Connector, 46007-1106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +12 +6 +Connector_Molex +Molex_Sabre_46007-1106_1x06_P7.49mm_Horizontal_ThermalVias +Molex Sabre Power Connector, 46007-1106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator +connector Molex Sabre top entry +0 +90 +6 +Connector_Molex +Molex_SlimStack_52991-0208_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0208, 20 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +20 +20 +Connector_Molex +Molex_SlimStack_52991-0308_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0308, 30 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +30 +30 +Connector_Molex +Molex_SlimStack_52991-0408_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0408, 40 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +40 +40 +Connector_Molex +Molex_SlimStack_52991-0508_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0508, 50 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +50 +50 +Connector_Molex +Molex_SlimStack_52991-0608_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0608, 60 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +60 +60 +Connector_Molex +Molex_SlimStack_52991-0708_2x35_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0708, 70 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +70 +70 +Connector_Molex +Molex_SlimStack_52991-0808_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0808, 80 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +80 +80 +Connector_Molex +Molex_SlimStack_53748-0208_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0208, 20 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +20 +20 +Connector_Molex +Molex_SlimStack_53748-0308_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0308, 30 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +30 +30 +Connector_Molex +Molex_SlimStack_53748-0408_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0408, 40 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +40 +40 +Connector_Molex +Molex_SlimStack_53748-0608_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0608, 60 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +60 +60 +Connector_Molex +Molex_SlimStack_53748-0708_2x35_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0708, 70 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +70 +70 +Connector_Molex +Molex_SlimStack_53748-0808_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0808, 80 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack vertical +0 +80 +80 +Connector_Molex +Molex_SlimStack_54722-0164_2x08_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0164, 16 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +16 +16 +Connector_Molex +Molex_SlimStack_54722-0204_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0204, 20 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_54722-0224_2x11_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0224, 22 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_54722-0244_2x12_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0244, 24 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_54722-0304_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0304, 30 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_54722-0344_2x17_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0344, 34 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_54722-0404_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0404, 40 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_54722-0504_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0504, 50 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_54722-0604_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0604, 60 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_54722-0804_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0804, 80 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_Molex +Molex_SlimStack_55560-0161_2x08_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0161, 16 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +16 +16 +Connector_Molex +Molex_SlimStack_55560-0201_2x10_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0201, 20 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_55560-0221_2x11_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0221, 22 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_55560-0241_2x12_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0241, 24 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_55560-0301_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0301, 30 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_55560-0341_2x17_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0341, 34 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_55560-0401_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0401, 40 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_55560-0501_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0501, 50 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_55560-0601_2x30_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0601, 60 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_55560-0801_2x40_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0801, 80 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_Molex +Molex_SlimStack_501920-3001_2x15_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-3001, 30 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_501920-4001_2x20_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-4001, 40 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_501920-5001_2x25_P0.50mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-5001, 50 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_502426-0810_2x04_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-0810, 8 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +8 +8 +Connector_Molex +Molex_SlimStack_502426-1410_2x07_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-1410, 14 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +14 +14 +Connector_Molex +Molex_SlimStack_502426-2010_2x10_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2010, 20 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_502426-2210_2x11_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2210, 22 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_502426-2410_2x12_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2410, 24 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_502426-2610_2x13_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2610, 26 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +26 +26 +Connector_Molex +Molex_SlimStack_502426-3010_2x15_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3010, 30 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_502426-3210_2x16_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3210, 32 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +32 +32 +Connector_Molex +Molex_SlimStack_502426-3410_2x17_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3410, 34 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_502426-4010_2x20_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-4010, 40 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_502426-4410_2x22_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-4410, 44 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +44 +44 +Connector_Molex +Molex_SlimStack_502426-5010_2x25_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-5010, 50 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_502426-6010_2x30_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-6010, 60 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_502426-6410_2x32_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-6410, 64 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +64 +64 +Connector_Molex +Molex_SlimStack_502426-8010_2x40_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-8010, 80 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_Molex +Molex_SlimStack_502430-0820_2x04_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-0820, 8 Pins (http://www.molex.com/pdm_docs/sd/5024300820_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +8 +8 +Connector_Molex +Molex_SlimStack_502430-1410_2x07_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-1410, 14 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +14 +14 +Connector_Molex +Molex_SlimStack_502430-2010_2x10_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2010, 20 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +20 +20 +Connector_Molex +Molex_SlimStack_502430-2210_2x11_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2210, 22 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +22 +22 +Connector_Molex +Molex_SlimStack_502430-2410_2x12_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2410, 24 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +24 +24 +Connector_Molex +Molex_SlimStack_502430-2610_2x13_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2610, 26 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +26 +26 +Connector_Molex +Molex_SlimStack_502430-3010_2x15_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3010, 30 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +30 +30 +Connector_Molex +Molex_SlimStack_502430-3210_2x16_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3210, 32 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +32 +32 +Connector_Molex +Molex_SlimStack_502430-3410_2x17_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3410, 34 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +34 +34 +Connector_Molex +Molex_SlimStack_502430-4010_2x20_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-4010, 40 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +40 +40 +Connector_Molex +Molex_SlimStack_502430-4410_2x22_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-4410, 44 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +44 +44 +Connector_Molex +Molex_SlimStack_502430-5010_2x25_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-5010, 50 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +50 +50 +Connector_Molex +Molex_SlimStack_502430-6010_2x30_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-6010, 60 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +60 +60 +Connector_Molex +Molex_SlimStack_502430-6410_2x32_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-6410, 64 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +64 +64 +Connector_Molex +Molex_SlimStack_502430-8010_2x40_P0.40mm_Vertical +Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-8010, 80 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator +connector Molex SlimStack side entry +0 +80 +80 +Connector_PCBEdge +4UCON_10156_2x40_P1.27mm_Socket_Horizontal +4UCON 10156 Card edge socket with 80 contacts (40 each side), through-hole, http://www.4uconnector.com/online/object/4udrawing/10156.pdf +4UCON 10156 Card edge socket with 80 contacts +0 +80 +80 +Connector_PCBEdge +BUS_AT +AT ISA 16 bits Bus Edge Connector +BUS ISA AT Edge connector +0 +98 +98 +Connector_PCBEdge +BUS_PCI +PCI bus Edge Connector +PCI bus Edge Connector +0 +240 +120 +Connector_PCBEdge +BUS_PCI_Express_Mini +Mini-PCI Express bus connector (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=11) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCI_Express_Mini_Dual +Mini-PCI Express bus connector full size with dual clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=28) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCI_Express_Mini_Full +Mini-PCI Express bus connector full size with clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=24) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCI_Express_Mini_Half +Mini-PCI Express bus connector half size with clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=25) +mini pcie +0 +54 +53 +Connector_PCBEdge +BUS_PCIexpress_x1 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +36 +36 +Connector_PCBEdge +BUS_PCIexpress_x4 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +64 +64 +Connector_PCBEdge +BUS_PCIexpress_x8 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +98 +98 +Connector_PCBEdge +BUS_PCIexpress_x16 +PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 +PCIe +0 +164 +164 +Connector_PCBEdge +Samtec_MECF-05-0_-L-DV_2x05_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-0_-NP-L-DV_2x05_P1.27mm_Edge +Highspeed card edge connector for PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-05-01-L-DV-WT_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +10 +8 +Connector_PCBEdge +Samtec_MECF-05-01-L-DV_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-01-NP-L-DV-WT_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +12 +10 +Connector_PCBEdge +Samtec_MECF-05-01-NP-L-DV_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-05-02-L-DV-WT_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +10 +8 +Connector_PCBEdge +Samtec_MECF-05-02-L-DV_2x05_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (polarized) +conn samtec card-edge high-speed +0 +8 +8 +Connector_PCBEdge +Samtec_MECF-05-02-NP-L-DV-WT_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +12 +10 +Connector_PCBEdge +Samtec_MECF-05-02-NP-L-DV_2x05_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 05 contacts (not polarized) +conn samtec card-edge high-speed +0 +10 +10 +Connector_PCBEdge +Samtec_MECF-08-0_-L-DV_2x08_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-0_-NP-L-DV_2x08_P1.27mm_Edge +Highspeed card edge connector for PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-08-01-L-DV-WT_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +16 +14 +Connector_PCBEdge +Samtec_MECF-08-01-L-DV_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-01-NP-L-DV-WT_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +18 +16 +Connector_PCBEdge +Samtec_MECF-08-01-NP-L-DV_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-08-02-L-DV-WT_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +16 +14 +Connector_PCBEdge +Samtec_MECF-08-02-L-DV_2x08_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (polarized) +conn samtec card-edge high-speed +0 +14 +14 +Connector_PCBEdge +Samtec_MECF-08-02-NP-L-DV-WT_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +18 +16 +Connector_PCBEdge +Samtec_MECF-08-02-NP-L-DV_2x08_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 08 contacts (not polarized) +conn samtec card-edge high-speed +0 +16 +16 +Connector_PCBEdge +Samtec_MECF-20-0_-L-DV_2x20_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-0_-NP-L-DV_2x20_P1.27mm_Edge +Highspeed card edge connector for PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-20-01-L-DV-WT_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +40 +38 +Connector_PCBEdge +Samtec_MECF-20-01-L-DV_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-01-NP-L-DV-WT_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +42 +40 +Connector_PCBEdge +Samtec_MECF-20-01-NP-L-DV_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-20-02-L-DV-WT_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +40 +38 +Connector_PCBEdge +Samtec_MECF-20-02-L-DV_2x20_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (polarized) +conn samtec card-edge high-speed +0 +38 +38 +Connector_PCBEdge +Samtec_MECF-20-02-NP-L-DV-WT_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +42 +40 +Connector_PCBEdge +Samtec_MECF-20-02-NP-L-DV_2x20_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 20 contacts (not polarized) +conn samtec card-edge high-speed +0 +40 +40 +Connector_PCBEdge +Samtec_MECF-30-0_-L-DV_2x30_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-0_-NP-L-DV_2x30_P1.27mm_Edge +Highspeed card edge connector for PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-30-01-L-DV-WT_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +60 +58 +Connector_PCBEdge +Samtec_MECF-30-01-L-DV_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-01-NP-L-DV-WT_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +62 +60 +Connector_PCBEdge +Samtec_MECF-30-01-NP-L-DV_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-30-02-L-DV-WT_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +60 +58 +Connector_PCBEdge +Samtec_MECF-30-02-L-DV_2x30_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (polarized) +conn samtec card-edge high-speed +0 +58 +58 +Connector_PCBEdge +Samtec_MECF-30-02-NP-L-DV-WT_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +62 +60 +Connector_PCBEdge +Samtec_MECF-30-02-NP-L-DV_2x30_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 30 contacts (not polarized) +conn samtec card-edge high-speed +0 +60 +60 +Connector_PCBEdge +Samtec_MECF-40-0_-L-DV_2x40_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-0_-NP-L-DV_2x40_P1.27mm_Edge +Highspeed card edge connector for PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-40-01-L-DV-WT_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +80 +78 +Connector_PCBEdge +Samtec_MECF-40-01-L-DV_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-01-NP-L-DV-WT_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +82 +80 +Connector_PCBEdge +Samtec_MECF-40-01-NP-L-DV_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-40-02-L-DV-WT_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +80 +78 +Connector_PCBEdge +Samtec_MECF-40-02-L-DV_2x40_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (polarized) +conn samtec card-edge high-speed +0 +78 +78 +Connector_PCBEdge +Samtec_MECF-40-02-NP-L-DV-WT_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +82 +80 +Connector_PCBEdge +Samtec_MECF-40-02-NP-L-DV_2x40_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 40 contacts (not polarized) +conn samtec card-edge high-speed +0 +80 +80 +Connector_PCBEdge +Samtec_MECF-50-0_-L-DV_2x50_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-0_-NP-L-DV_2x50_P1.27mm_Edge +Highspeed card edge connector for PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-50-01-L-DV-WT_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +100 +98 +Connector_PCBEdge +Samtec_MECF-50-01-L-DV_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-01-NP-L-DV-WT_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +102 +100 +Connector_PCBEdge +Samtec_MECF-50-01-NP-L-DV_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-50-02-L-DV-WT_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +100 +98 +Connector_PCBEdge +Samtec_MECF-50-02-L-DV_2x50_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (polarized) +conn samtec card-edge high-speed +0 +98 +98 +Connector_PCBEdge +Samtec_MECF-50-02-NP-L-DV-WT_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +102 +100 +Connector_PCBEdge +Samtec_MECF-50-02-NP-L-DV_2x50_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 50 contacts (not polarized) +conn samtec card-edge high-speed +0 +100 +100 +Connector_PCBEdge +Samtec_MECF-60-0_-L-DV_2x60_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-0_-NP-L-DV_2x60_P1.27mm_Edge +Highspeed card edge connector for PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-60-01-L-DV-WT_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +118 +116 +Connector_PCBEdge +Samtec_MECF-60-01-L-DV_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-01-NP-L-DV-WT_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +122 +120 +Connector_PCBEdge +Samtec_MECF-60-01-NP-L-DV_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-60-02-L-DV-WT_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +118 +116 +Connector_PCBEdge +Samtec_MECF-60-02-L-DV_2x60_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (polarized) +conn samtec card-edge high-speed +0 +116 +116 +Connector_PCBEdge +Samtec_MECF-60-02-NP-L-DV-WT_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +122 +120 +Connector_PCBEdge +Samtec_MECF-60-02-NP-L-DV_2x60_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 60 contacts (not polarized) +conn samtec card-edge high-speed +0 +120 +120 +Connector_PCBEdge +Samtec_MECF-70-0_-L-DV_2x70_P1.27mm_Polarized_Edge +Highspeed card edge connector for PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-0_-NP-L-DV_2x70_P1.27mm_Edge +Highspeed card edge connector for PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +Samtec_MECF-70-01-L-DV-WT_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +138 +136 +Connector_PCBEdge +Samtec_MECF-70-01-L-DV_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-01-NP-L-DV-WT_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +142 +140 +Connector_PCBEdge +Samtec_MECF-70-01-NP-L-DV_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 1.6mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +Samtec_MECF-70-02-L-DV-WT_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +138 +136 +Connector_PCBEdge +Samtec_MECF-70-02-L-DV_2x70_P1.27mm_Polarized_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (polarized) +conn samtec card-edge high-speed +0 +136 +136 +Connector_PCBEdge +Samtec_MECF-70-02-NP-L-DV-WT_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +142 +140 +Connector_PCBEdge +Samtec_MECF-70-02-NP-L-DV_2x70_P1.27mm_Socket_Horizontal +Highspeed card edge connector for 2.4mm PCB's with 70 contacts (not polarized) +conn samtec card-edge high-speed +0 +140 +140 +Connector_PCBEdge +molex_EDGELOCK_2-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +2 +2 +Connector_PCBEdge +molex_EDGELOCK_4-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +4 +4 +Connector_PCBEdge +molex_EDGELOCK_6-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +6 +6 +Connector_PCBEdge +molex_EDGELOCK_8-CKT +https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf +Connector PCBEdge molex EDGELOCK +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_2-G-7,62_1x02_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/2-G-7,62; number of pins: 02; pin pitch: 7.62mm; Angled || order number: 1766233 12A 630V +phoenix_contact connector GMSTBA_01x02_G_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_2-G_1x02_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/2-G; number of pins: 02; pin pitch: 7.50mm; Angled || order number: 1766343 12A 630V +phoenix_contact connector GMSTBA_01x02_G_7.50mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_3-G-7,62_1x03_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/3-G-7,62; number of pins: 03; pin pitch: 7.62mm; Angled || order number: 1766246 12A 630V +phoenix_contact connector GMSTBA_01x03_G_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_3-G_1x03_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/3-G; number of pins: 03; pin pitch: 7.50mm; Angled || order number: 1766356 12A 630V +phoenix_contact connector GMSTBA_01x03_G_7.50mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_4-G-7,62_1x04_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/4-G-7,62; number of pins: 04; pin pitch: 7.62mm; Angled || order number: 1766259 12A 630V +phoenix_contact connector GMSTBA_01x04_G_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_4-G_1x04_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/4-G; number of pins: 04; pin pitch: 7.50mm; Angled || order number: 1766369 12A 630V +phoenix_contact connector GMSTBA_01x04_G_7.50mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_5-G-7,62_1x05_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/5-G-7,62; number of pins: 05; pin pitch: 7.62mm; Angled || order number: 1766262 12A 630V +phoenix_contact connector GMSTBA_01x05_G_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_5-G_1x05_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/5-G; number of pins: 05; pin pitch: 7.50mm; Angled || order number: 1766372 12A 630V +phoenix_contact connector GMSTBA_01x05_G_7.50mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_6-G-7,62_1x06_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/6-G-7,62; number of pins: 06; pin pitch: 7.62mm; Angled || order number: 1766275 12A 630V +phoenix_contact connector GMSTBA_01x06_G_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_6-G_1x06_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/6-G; number of pins: 06; pin pitch: 7.50mm; Angled || order number: 1766385 12A 630V +phoenix_contact connector GMSTBA_01x06_G_7.50mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_7-G-7,62_1x07_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/7-G-7,62; number of pins: 07; pin pitch: 7.62mm; Angled || order number: 1766288 12A 630V +phoenix_contact connector GMSTBA_01x07_G_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_7-G_1x07_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/7-G; number of pins: 07; pin pitch: 7.50mm; Angled || order number: 1766398 12A 630V +phoenix_contact connector GMSTBA_01x07_G_7.50mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_8-G-7,62_1x08_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/8-G-7,62; number of pins: 08; pin pitch: 7.62mm; Angled || order number: 1766291 12A 630V +phoenix_contact connector GMSTBA_01x08_G_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_8-G_1x08_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/8-G; number of pins: 08; pin pitch: 7.50mm; Angled || order number: 1766408 12A 630V +phoenix_contact connector GMSTBA_01x08_G_7.50mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_9-G-7,62_1x09_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/9-G-7,62; number of pins: 09; pin pitch: 7.62mm; Angled || order number: 1766301 12A 630V +phoenix_contact connector GMSTBA_01x09_G_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_9-G_1x09_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/9-G; number of pins: 09; pin pitch: 7.50mm; Angled || order number: 1766411 12A 630V +phoenix_contact connector GMSTBA_01x09_G_7.50mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_10-G-7,62_1x10_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/10-G-7,62; number of pins: 10; pin pitch: 7.62mm; Angled || order number: 1766314 12A 630V +phoenix_contact connector GMSTBA_01x10_G_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_10-G_1x10_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/10-G; number of pins: 10; pin pitch: 7.50mm; Angled || order number: 1766424 12A 630V +phoenix_contact connector GMSTBA_01x10_G_7.50mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_11-G-7,62_1x11_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/11-G-7,62; number of pins: 11; pin pitch: 7.62mm; Angled || order number: 1766327 12A 630V +phoenix_contact connector GMSTBA_01x11_G_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_11-G_1x11_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/11-G; number of pins: 11; pin pitch: 7.50mm; Angled || order number: 1766437 12A 630V +phoenix_contact connector GMSTBA_01x11_G_7.50mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_12-G-7,62_1x12_P7.62mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/12-G-7,62; number of pins: 12; pin pitch: 7.62mm; Angled || order number: 1766330 12A 630V +phoenix_contact connector GMSTBA_01x12_G_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBA_2,5_12-G_1x12_P7.50mm_Horizontal +Generic Phoenix Contact connector footprint for: GMSTBA_2,5/12-G; number of pins: 12; pin pitch: 7.50mm; Angled || order number: 1766440 12A 630V +phoenix_contact connector GMSTBA_01x12_G_7.50mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_2-G-7,62_1x02_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/2-G-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical || order number: 1766770 12A 630V +phoenix_contact connector GMSTBVA_01x02_G_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_2-G_1x02_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/2-G; number of pins: 02; pin pitch: 7.50mm; Vertical || order number: 1766660 12A 630V +phoenix_contact connector GMSTBVA_01x02_G_7.50mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_3-G-7,62_1x03_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/3-G-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical || order number: 1766783 12A 630V +phoenix_contact connector GMSTBVA_01x03_G_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_3-G_1x03_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/3-G; number of pins: 03; pin pitch: 7.50mm; Vertical || order number: 1766673 12A 630V +phoenix_contact connector GMSTBVA_01x03_G_7.50mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_4-G-7,62_1x04_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/4-G-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical || order number: 1766796 12A 630V +phoenix_contact connector GMSTBVA_01x04_G_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_4-G_1x04_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/4-G; number of pins: 04; pin pitch: 7.50mm; Vertical || order number: 1766686 12A 630V +phoenix_contact connector GMSTBVA_01x04_G_7.50mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_5-G-7,62_1x05_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/5-G-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical || order number: 1766806 12A 630V +phoenix_contact connector GMSTBVA_01x05_G_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_5-G_1x05_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/5-G; number of pins: 05; pin pitch: 7.50mm; Vertical || order number: 1766699 12A 630V +phoenix_contact connector GMSTBVA_01x05_G_7.50mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_6-G-7,62_1x06_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/6-G-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical || order number: 1766819 12A 630V +phoenix_contact connector GMSTBVA_01x06_G_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_6-G_1x06_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/6-G; number of pins: 06; pin pitch: 7.50mm; Vertical || order number: 1766709 12A 630V +phoenix_contact connector GMSTBVA_01x06_G_7.50mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_7-G-7,62_1x07_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/7-G-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical || order number: 1766822 12A 630V +phoenix_contact connector GMSTBVA_01x07_G_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_7-G_1x07_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/7-G; number of pins: 07; pin pitch: 7.50mm; Vertical || order number: 1766712 12A 630V +phoenix_contact connector GMSTBVA_01x07_G_7.50mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_8-G-7,62_1x08_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/8-G-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical || order number: 1766835 12A 630V +phoenix_contact connector GMSTBVA_01x08_G_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_8-G_1x08_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/8-G; number of pins: 08; pin pitch: 7.50mm; Vertical || order number: 1766725 12A 630V +phoenix_contact connector GMSTBVA_01x08_G_7.50mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_9-G-7,62_1x09_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/9-G-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical || order number: 1766848 12A 630V +phoenix_contact connector GMSTBVA_01x09_G_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_9-G_1x09_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/9-G; number of pins: 09; pin pitch: 7.50mm; Vertical || order number: 1766738 12A 630V +phoenix_contact connector GMSTBVA_01x09_G_7.50mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_10-G-7,62_1x10_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/10-G-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical || order number: 1766851 12A 630V +phoenix_contact connector GMSTBVA_01x10_G_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_10-G_1x10_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/10-G; number of pins: 10; pin pitch: 7.50mm; Vertical || order number: 1766741 12A 630V +phoenix_contact connector GMSTBVA_01x10_G_7.50mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_11-G-7,62_1x11_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/11-G-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical || order number: 1766864 12A 630V +phoenix_contact connector GMSTBVA_01x11_G_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_11-G_1x11_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/11-G; number of pins: 11; pin pitch: 7.50mm; Vertical || order number: 1766754 12A 630V +phoenix_contact connector GMSTBVA_01x11_G_7.50mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_12-G-7,62_1x12_P7.62mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/12-G-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical || order number: 1766877 12A 630V +phoenix_contact connector GMSTBVA_01x12_G_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBVA_2,5_12-G_1x12_P7.50mm_Vertical +Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/12-G; number of pins: 12; pin pitch: 7.50mm; Vertical || order number: 1766767 12A 630V +phoenix_contact connector GMSTBVA_01x12_G_7.50mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_2-GF-7,62_1x02_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829154 12A 630V +phoenix_contact connector GMSTBV_01x02_GF_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_2-GF-7,62_1x02_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829154 12A 630V +phoenix_contact connector GMSTBV_01x02_GF_7.62mm_MH +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_3-GF-7,62_1x03_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829167 12A 630V +phoenix_contact connector GMSTBV_01x03_GF_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_3-GF-7,62_1x03_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829167 12A 630V +phoenix_contact connector GMSTBV_01x03_GF_7.62mm_MH +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_4-GF-7,62_1x04_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829170 12A 630V +phoenix_contact connector GMSTBV_01x04_GF_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_4-GF-7,62_1x04_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829170 12A 630V +phoenix_contact connector GMSTBV_01x04_GF_7.62mm_MH +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_5-GF-7,62_1x05_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829183 12A 630V +phoenix_contact connector GMSTBV_01x05_GF_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_5-GF-7,62_1x05_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829183 12A 630V +phoenix_contact connector GMSTBV_01x05_GF_7.62mm_MH +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_6-GF-7,62_1x06_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829196 12A 630V +phoenix_contact connector GMSTBV_01x06_GF_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_6-GF-7,62_1x06_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829196 12A 630V +phoenix_contact connector GMSTBV_01x06_GF_7.62mm_MH +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_7-GF-7,62_1x07_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829206 12A 630V +phoenix_contact connector GMSTBV_01x07_GF_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_7-GF-7,62_1x07_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829206 12A 630V +phoenix_contact connector GMSTBV_01x07_GF_7.62mm_MH +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_8-GF-7,62_1x08_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829219 12A 630V +phoenix_contact connector GMSTBV_01x08_GF_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_8-GF-7,62_1x08_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829219 12A 630V +phoenix_contact connector GMSTBV_01x08_GF_7.62mm_MH +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_9-GF-7,62_1x09_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829222 12A 630V +phoenix_contact connector GMSTBV_01x09_GF_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_9-GF-7,62_1x09_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829222 12A 630V +phoenix_contact connector GMSTBV_01x09_GF_7.62mm_MH +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_10-GF-7,62_1x10_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829235 12A 630V +phoenix_contact connector GMSTBV_01x10_GF_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_10-GF-7,62_1x10_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829235 12A 630V +phoenix_contact connector GMSTBV_01x10_GF_7.62mm_MH +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_11-GF-7,62_1x11_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829248 12A 630V +phoenix_contact connector GMSTBV_01x11_GF_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_11-GF-7,62_1x11_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829248 12A 630V +phoenix_contact connector GMSTBV_01x11_GF_7.62mm_MH +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_12-GF-7,62_1x12_P7.62mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829251 12A 630V +phoenix_contact connector GMSTBV_01x12_GF_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTBV_2,5_12-GF-7,62_1x12_P7.62mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTBV_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829251 12A 630V +phoenix_contact connector GMSTBV_01x12_GF_7.62mm_MH +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_2-GF-7,62_1x02_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806229 12A 630V +phoenix_contact connector GMSTB_01x02_GF_7.62mm +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_2-GF-7,62_1x02_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806229 12A 630V +phoenix_contact connector GMSTB_01x02_GF_7.62mm_MH +0 +2 +2 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_3-GF-7,62_1x03_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806232 12A 630V +phoenix_contact connector GMSTB_01x03_GF_7.62mm +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_3-GF-7,62_1x03_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806232 12A 630V +phoenix_contact connector GMSTB_01x03_GF_7.62mm_MH +0 +3 +3 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_4-GF-7,62_1x04_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806245 12A 630V +phoenix_contact connector GMSTB_01x04_GF_7.62mm +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_4-GF-7,62_1x04_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806245 12A 630V +phoenix_contact connector GMSTB_01x04_GF_7.62mm_MH +0 +4 +4 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_5-GF-7,62_1x05_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806258 12A 630V +phoenix_contact connector GMSTB_01x05_GF_7.62mm +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_5-GF-7,62_1x05_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806258 12A 630V +phoenix_contact connector GMSTB_01x05_GF_7.62mm_MH +0 +5 +5 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_6-GF-7,62_1x06_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806261 12A 630V +phoenix_contact connector GMSTB_01x06_GF_7.62mm +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_6-GF-7,62_1x06_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806261 12A 630V +phoenix_contact connector GMSTB_01x06_GF_7.62mm_MH +0 +6 +6 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_7-GF-7,62_1x07_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806274 12A 630V +phoenix_contact connector GMSTB_01x07_GF_7.62mm +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_7-GF-7,62_1x07_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806274 12A 630V +phoenix_contact connector GMSTB_01x07_GF_7.62mm_MH +0 +7 +7 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_8-GF-7,62_1x08_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806287 12A 630V +phoenix_contact connector GMSTB_01x08_GF_7.62mm +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_8-GF-7,62_1x08_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806287 12A 630V +phoenix_contact connector GMSTB_01x08_GF_7.62mm_MH +0 +8 +8 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_9-GF-7,62_1x09_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806290 12A 630V +phoenix_contact connector GMSTB_01x09_GF_7.62mm +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_9-GF-7,62_1x09_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806290 12A 630V +phoenix_contact connector GMSTB_01x09_GF_7.62mm_MH +0 +9 +9 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_10-GF-7,62_1x10_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806300 12A 630V +phoenix_contact connector GMSTB_01x10_GF_7.62mm +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_10-GF-7,62_1x10_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806300 12A 630V +phoenix_contact connector GMSTB_01x10_GF_7.62mm_MH +0 +10 +10 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_11-GF-7,62_1x11_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806313 12A 630V +phoenix_contact connector GMSTB_01x11_GF_7.62mm +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_11-GF-7,62_1x11_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806313 12A 630V +phoenix_contact connector GMSTB_01x11_GF_7.62mm_MH +0 +11 +11 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_12-GF-7,62_1x12_P7.62mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: GMSTB_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806326 12A 630V +phoenix_contact connector GMSTB_01x12_GF_7.62mm +0 +12 +12 +Connector_Phoenix_GMSTB +PhoenixContact_GMSTB_2,5_12-GF-7,62_1x12_P7.62mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: GMSTB_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806326 12A 630V +phoenix_contact connector GMSTB_01x12_GF_7.62mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-G-3.5_1x02_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical || order number: 1843606 8A 160V +phoenix_contact connector MCV_01x02_G_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-G-3.81_1x02_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical || order number: 1803426 8A 160V +phoenix_contact connector MCV_01x02_G_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.5_1x02_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843224 8A 160V +phoenix_contact connector MCV_01x02_GF_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.5_1x02_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843224 8A 160V +phoenix_contact connector MCV_01x02_GF_3.5mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.81_1x02_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830596 8A 160V +phoenix_contact connector MCV_01x02_GF_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_2-GF-3.81_1x02_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830596 8A 160V +phoenix_contact connector MCV_01x02_GF_3.81mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-G-3.5_1x03_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical || order number: 1843619 8A 160V +phoenix_contact connector MCV_01x03_G_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-G-3.81_1x03_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical || order number: 1803439 8A 160V +phoenix_contact connector MCV_01x03_G_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.5_1x03_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843237 8A 160V +phoenix_contact connector MCV_01x03_GF_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.5_1x03_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843237 8A 160V +phoenix_contact connector MCV_01x03_GF_3.5mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.81_1x03_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830606 8A 160V +phoenix_contact connector MCV_01x03_GF_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_3-GF-3.81_1x03_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830606 8A 160V +phoenix_contact connector MCV_01x03_GF_3.81mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-G-3.5_1x04_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical || order number: 1843622 8A 160V +phoenix_contact connector MCV_01x04_G_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical || order number: 1803442 8A 160V +phoenix_contact connector MCV_01x04_G_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.5_1x04_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843240 8A 160V +phoenix_contact connector MCV_01x04_GF_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.5_1x04_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843240 8A 160V +phoenix_contact connector MCV_01x04_GF_3.5mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.81_1x04_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830619 8A 160V +phoenix_contact connector MCV_01x04_GF_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_4-GF-3.81_1x04_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830619 8A 160V +phoenix_contact connector MCV_01x04_GF_3.81mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-G-3.5_1x05_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical || order number: 1843635 8A 160V +phoenix_contact connector MCV_01x05_G_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-G-3.81_1x05_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical || order number: 1803455 8A 160V +phoenix_contact connector MCV_01x05_G_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.5_1x05_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843253 8A 160V +phoenix_contact connector MCV_01x05_GF_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.5_1x05_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843253 8A 160V +phoenix_contact connector MCV_01x05_GF_3.5mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.81_1x05_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830622 8A 160V +phoenix_contact connector MCV_01x05_GF_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_5-GF-3.81_1x05_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830622 8A 160V +phoenix_contact connector MCV_01x05_GF_3.81mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-G-3.5_1x06_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical || order number: 1843648 8A 160V +phoenix_contact connector MCV_01x06_G_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-G-3.81_1x06_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical || order number: 1803468 8A 160V +phoenix_contact connector MCV_01x06_G_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.5_1x06_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843266 8A 160V +phoenix_contact connector MCV_01x06_GF_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.5_1x06_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843266 8A 160V +phoenix_contact connector MCV_01x06_GF_3.5mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.81_1x06_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830635 8A 160V +phoenix_contact connector MCV_01x06_GF_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_6-GF-3.81_1x06_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830635 8A 160V +phoenix_contact connector MCV_01x06_GF_3.81mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-G-3.5_1x07_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical || order number: 1843651 8A 160V +phoenix_contact connector MCV_01x07_G_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-G-3.81_1x07_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical || order number: 1803471 8A 160V +phoenix_contact connector MCV_01x07_G_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.5_1x07_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843279 8A 160V +phoenix_contact connector MCV_01x07_GF_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.5_1x07_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843279 8A 160V +phoenix_contact connector MCV_01x07_GF_3.5mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.81_1x07_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830648 8A 160V +phoenix_contact connector MCV_01x07_GF_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_7-GF-3.81_1x07_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830648 8A 160V +phoenix_contact connector MCV_01x07_GF_3.81mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-G-3.5_1x08_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical || order number: 1843664 8A 160V +phoenix_contact connector MCV_01x08_G_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-G-3.81_1x08_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical || order number: 1803484 8A 160V +phoenix_contact connector MCV_01x08_G_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.5_1x08_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843282 8A 160V +phoenix_contact connector MCV_01x08_GF_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.5_1x08_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843282 8A 160V +phoenix_contact connector MCV_01x08_GF_3.5mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.81_1x08_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830651 8A 160V +phoenix_contact connector MCV_01x08_GF_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_8-GF-3.81_1x08_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830651 8A 160V +phoenix_contact connector MCV_01x08_GF_3.81mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-G-3.5_1x09_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical || order number: 1843677 8A 160V +phoenix_contact connector MCV_01x09_G_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-G-3.81_1x09_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical || order number: 1803497 8A 160V +phoenix_contact connector MCV_01x09_G_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.5_1x09_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843295 8A 160V +phoenix_contact connector MCV_01x09_GF_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.5_1x09_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843295 8A 160V +phoenix_contact connector MCV_01x09_GF_3.5mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.81_1x09_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830664 8A 160V +phoenix_contact connector MCV_01x09_GF_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_9-GF-3.81_1x09_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830664 8A 160V +phoenix_contact connector MCV_01x09_GF_3.81mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-G-3.5_1x10_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical || order number: 1843680 8A 160V +phoenix_contact connector MCV_01x10_G_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-G-3.81_1x10_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical || order number: 1803507 8A 160V +phoenix_contact connector MCV_01x10_G_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.5_1x10_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843305 8A 160V +phoenix_contact connector MCV_01x10_GF_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.5_1x10_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843305 8A 160V +phoenix_contact connector MCV_01x10_GF_3.5mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.81_1x10_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830677 8A 160V +phoenix_contact connector MCV_01x10_GF_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_10-GF-3.81_1x10_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830677 8A 160V +phoenix_contact connector MCV_01x10_GF_3.81mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-G-3.5_1x11_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical || order number: 1843693 8A 160V +phoenix_contact connector MCV_01x11_G_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-G-3.81_1x11_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical || order number: 1803510 8A 160V +phoenix_contact connector MCV_01x11_G_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.5_1x11_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843318 8A 160V +phoenix_contact connector MCV_01x11_GF_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.5_1x11_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843318 8A 160V +phoenix_contact connector MCV_01x11_GF_3.5mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.81_1x11_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830680 8A 160V +phoenix_contact connector MCV_01x11_GF_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_11-GF-3.81_1x11_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830680 8A 160V +phoenix_contact connector MCV_01x11_GF_3.81mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-G-3.5_1x12_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical || order number: 1843703 8A 160V +phoenix_contact connector MCV_01x12_G_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-G-3.81_1x12_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical || order number: 1803523 8A 160V +phoenix_contact connector MCV_01x12_G_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.5_1x12_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843321 8A 160V +phoenix_contact connector MCV_01x12_GF_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.5_1x12_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843321 8A 160V +phoenix_contact connector MCV_01x12_GF_3.5mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.81_1x12_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830693 8A 160V +phoenix_contact connector MCV_01x12_GF_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_12-GF-3.81_1x12_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830693 8A 160V +phoenix_contact connector MCV_01x12_GF_3.81mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-G-3.5_1x13_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/13-G-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical || order number: 1843716 8A 160V +phoenix_contact connector MCV_01x13_G_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-G-3.81_1x13_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/13-G-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical || order number: 1803536 8A 160V +phoenix_contact connector MCV_01x13_G_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.5_1x13_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843334 8A 160V +phoenix_contact connector MCV_01x13_GF_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.5_1x13_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843334 8A 160V +phoenix_contact connector MCV_01x13_GF_3.5mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.81_1x13_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830703 8A 160V +phoenix_contact connector MCV_01x13_GF_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_13-GF-3.81_1x13_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830703 8A 160V +phoenix_contact connector MCV_01x13_GF_3.81mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-G-3.5_1x14_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/14-G-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical || order number: 1843729 8A 160V +phoenix_contact connector MCV_01x14_G_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-G-3.81_1x14_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/14-G-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical || order number: 1803549 8A 160V +phoenix_contact connector MCV_01x14_G_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.5_1x14_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843347 8A 160V +phoenix_contact connector MCV_01x14_GF_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.5_1x14_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843347 8A 160V +phoenix_contact connector MCV_01x14_GF_3.5mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.81_1x14_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830716 8A 160V +phoenix_contact connector MCV_01x14_GF_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_14-GF-3.81_1x14_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830716 8A 160V +phoenix_contact connector MCV_01x14_GF_3.81mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-G-3.5_1x15_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/15-G-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical || order number: 1843732 8A 160V +phoenix_contact connector MCV_01x15_G_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-G-3.81_1x15_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/15-G-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical || order number: 1803552 8A 160V +phoenix_contact connector MCV_01x15_G_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.5_1x15_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843350 8A 160V +phoenix_contact connector MCV_01x15_GF_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.5_1x15_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843350 8A 160V +phoenix_contact connector MCV_01x15_GF_3.5mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.81_1x15_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830729 8A 160V +phoenix_contact connector MCV_01x15_GF_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_15-GF-3.81_1x15_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830729 8A 160V +phoenix_contact connector MCV_01x15_GF_3.81mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-G-3.5_1x16_P3.50mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/16-G-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical || order number: 1843745 8A 160V +phoenix_contact connector MCV_01x16_G_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-G-3.81_1x16_P3.81mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/16-G-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical || order number: 1803565 8A 160V +phoenix_contact connector MCV_01x16_G_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.5_1x16_P3.50mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843363 8A 160V +phoenix_contact connector MCV_01x16_GF_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.5_1x16_P3.50mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843363 8A 160V +phoenix_contact connector MCV_01x16_GF_3.5mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.81_1x16_P3.81mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830732 8A 160V +phoenix_contact connector MCV_01x16_GF_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MCV_1,5_16-GF-3.81_1x16_P3.81mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830732 8A 160V +phoenix_contact connector MCV_01x16_GF_3.81mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-G-3.5_1x02_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Angled || order number: 1844210 8A 160V +phoenix_contact connector MC_01x02_G_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-G-3.81_1x02_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-3.81; number of pins: 02; pin pitch: 3.81mm; Angled || order number: 1803277 8A 160V +phoenix_contact connector MC_01x02_G_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.5_1x02_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843790 8A 160V +phoenix_contact connector MC_01x02_GF_3.5mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.5_1x02_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843790 8A 160V +phoenix_contact connector MC_01x02_GF_3.5mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.81_1x02_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827868 8A 160V +phoenix_contact connector MC_01x02_GF_3.81mm +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_2-GF-3.81_1x02_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827868 8A 160V +phoenix_contact connector MC_01x02_GF_3.81mm_MH +0 +2 +2 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-G-3.5_1x03_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Angled || order number: 1844223 8A 160V +phoenix_contact connector MC_01x03_G_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-G-3.81_1x03_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-3.81; number of pins: 03; pin pitch: 3.81mm; Angled || order number: 1803280 8A 160V +phoenix_contact connector MC_01x03_G_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.5_1x03_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843800 8A 160V +phoenix_contact connector MC_01x03_GF_3.5mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.5_1x03_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843800 8A 160V +phoenix_contact connector MC_01x03_GF_3.5mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.81_1x03_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827871 8A 160V +phoenix_contact connector MC_01x03_GF_3.81mm +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_3-GF-3.81_1x03_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827871 8A 160V +phoenix_contact connector MC_01x03_GF_3.81mm_MH +0 +3 +3 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-G-3.5_1x04_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-3.5; number of pins: 04; pin pitch: 3.50mm; Angled || order number: 1844236 8A 160V +phoenix_contact connector MC_01x04_G_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-G-3.81_1x04_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-3.81; number of pins: 04; pin pitch: 3.81mm; Angled || order number: 1803293 8A 160V +phoenix_contact connector MC_01x04_G_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.5_1x04_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843813 8A 160V +phoenix_contact connector MC_01x04_GF_3.5mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.5_1x04_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843813 8A 160V +phoenix_contact connector MC_01x04_GF_3.5mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.81_1x04_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827884 8A 160V +phoenix_contact connector MC_01x04_GF_3.81mm +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_4-GF-3.81_1x04_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827884 8A 160V +phoenix_contact connector MC_01x04_GF_3.81mm_MH +0 +4 +4 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-G-3.5_1x05_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-3.5; number of pins: 05; pin pitch: 3.50mm; Angled || order number: 1844249 8A 160V +phoenix_contact connector MC_01x05_G_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-G-3.81_1x05_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-3.81; number of pins: 05; pin pitch: 3.81mm; Angled || order number: 1803303 8A 160V +phoenix_contact connector MC_01x05_G_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.5_1x05_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843826 8A 160V +phoenix_contact connector MC_01x05_GF_3.5mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.5_1x05_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843826 8A 160V +phoenix_contact connector MC_01x05_GF_3.5mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.81_1x05_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827897 8A 160V +phoenix_contact connector MC_01x05_GF_3.81mm +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_5-GF-3.81_1x05_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827897 8A 160V +phoenix_contact connector MC_01x05_GF_3.81mm_MH +0 +5 +5 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-G-3.5_1x06_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-3.5; number of pins: 06; pin pitch: 3.50mm; Angled || order number: 1844252 8A 160V +phoenix_contact connector MC_01x06_G_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-G-3.81_1x06_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-3.81; number of pins: 06; pin pitch: 3.81mm; Angled || order number: 1803316 8A 160V +phoenix_contact connector MC_01x06_G_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.5_1x06_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843839 8A 160V +phoenix_contact connector MC_01x06_GF_3.5mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.5_1x06_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843839 8A 160V +phoenix_contact connector MC_01x06_GF_3.5mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.81_1x06_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827907 8A 160V +phoenix_contact connector MC_01x06_GF_3.81mm +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_6-GF-3.81_1x06_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827907 8A 160V +phoenix_contact connector MC_01x06_GF_3.81mm_MH +0 +6 +6 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-G-3.5_1x07_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-3.5; number of pins: 07; pin pitch: 3.50mm; Angled || order number: 1844265 8A 160V +phoenix_contact connector MC_01x07_G_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-G-3.81_1x07_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-3.81; number of pins: 07; pin pitch: 3.81mm; Angled || order number: 1803329 8A 160V +phoenix_contact connector MC_01x07_G_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.5_1x07_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843842 8A 160V +phoenix_contact connector MC_01x07_GF_3.5mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.5_1x07_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843842 8A 160V +phoenix_contact connector MC_01x07_GF_3.5mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.81_1x07_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827910 8A 160V +phoenix_contact connector MC_01x07_GF_3.81mm +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_7-GF-3.81_1x07_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827910 8A 160V +phoenix_contact connector MC_01x07_GF_3.81mm_MH +0 +7 +7 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-G-3.5_1x08_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-3.5; number of pins: 08; pin pitch: 3.50mm; Angled || order number: 1844278 8A 160V +phoenix_contact connector MC_01x08_G_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-G-3.81_1x08_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-3.81; number of pins: 08; pin pitch: 3.81mm; Angled || order number: 1803332 8A 160V +phoenix_contact connector MC_01x08_G_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.5_1x08_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843855 8A 160V +phoenix_contact connector MC_01x08_GF_3.5mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.5_1x08_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843855 8A 160V +phoenix_contact connector MC_01x08_GF_3.5mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.81_1x08_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827923 8A 160V +phoenix_contact connector MC_01x08_GF_3.81mm +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_8-GF-3.81_1x08_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827923 8A 160V +phoenix_contact connector MC_01x08_GF_3.81mm_MH +0 +8 +8 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-G-3.5_1x09_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-3.5; number of pins: 09; pin pitch: 3.50mm; Angled || order number: 1844281 8A 160V +phoenix_contact connector MC_01x09_G_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-G-3.81_1x09_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-3.81; number of pins: 09; pin pitch: 3.81mm; Angled || order number: 1803345 8A 160V +phoenix_contact connector MC_01x09_G_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.5_1x09_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843868 8A 160V +phoenix_contact connector MC_01x09_GF_3.5mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.5_1x09_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843868 8A 160V +phoenix_contact connector MC_01x09_GF_3.5mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.81_1x09_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827936 8A 160V +phoenix_contact connector MC_01x09_GF_3.81mm +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_9-GF-3.81_1x09_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827936 8A 160V +phoenix_contact connector MC_01x09_GF_3.81mm_MH +0 +9 +9 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-G-3.5_1x10_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-3.5; number of pins: 10; pin pitch: 3.50mm; Angled || order number: 1844294 8A 160V +phoenix_contact connector MC_01x10_G_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-G-3.81_1x10_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-3.81; number of pins: 10; pin pitch: 3.81mm; Angled || order number: 1803358 8A 160V +phoenix_contact connector MC_01x10_G_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.5_1x10_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843871 8A 160V +phoenix_contact connector MC_01x10_GF_3.5mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.5_1x10_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843871 8A 160V +phoenix_contact connector MC_01x10_GF_3.5mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.81_1x10_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827949 8A 160V +phoenix_contact connector MC_01x10_GF_3.81mm +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_10-GF-3.81_1x10_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827949 8A 160V +phoenix_contact connector MC_01x10_GF_3.81mm_MH +0 +10 +10 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-G-3.5_1x11_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-3.5; number of pins: 11; pin pitch: 3.50mm; Angled || order number: 1844304 8A 160V +phoenix_contact connector MC_01x11_G_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-G-3.81_1x11_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-3.81; number of pins: 11; pin pitch: 3.81mm; Angled || order number: 1803361 8A 160V +phoenix_contact connector MC_01x11_G_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.5_1x11_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843884 8A 160V +phoenix_contact connector MC_01x11_GF_3.5mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.5_1x11_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843884 8A 160V +phoenix_contact connector MC_01x11_GF_3.5mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.81_1x11_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827952 8A 160V +phoenix_contact connector MC_01x11_GF_3.81mm +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_11-GF-3.81_1x11_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827952 8A 160V +phoenix_contact connector MC_01x11_GF_3.81mm_MH +0 +11 +11 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-G-3.5_1x12_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-3.5; number of pins: 12; pin pitch: 3.50mm; Angled || order number: 1844317 8A 160V +phoenix_contact connector MC_01x12_G_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-G-3.81_1x12_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-3.81; number of pins: 12; pin pitch: 3.81mm; Angled || order number: 1803374 8A 160V +phoenix_contact connector MC_01x12_G_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.5_1x12_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843897 8A 160V +phoenix_contact connector MC_01x12_GF_3.5mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.5_1x12_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843897 8A 160V +phoenix_contact connector MC_01x12_GF_3.5mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.81_1x12_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827965 8A 160V +phoenix_contact connector MC_01x12_GF_3.81mm +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_12-GF-3.81_1x12_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827965 8A 160V +phoenix_contact connector MC_01x12_GF_3.81mm_MH +0 +12 +12 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-G-3.5_1x13_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/13-G-3.5; number of pins: 13; pin pitch: 3.50mm; Angled || order number: 1844320 8A 160V +phoenix_contact connector MC_01x13_G_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-G-3.81_1x13_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/13-G-3.81; number of pins: 13; pin pitch: 3.81mm; Angled || order number: 1803387 8A 160V +phoenix_contact connector MC_01x13_G_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.5_1x13_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843907 8A 160V +phoenix_contact connector MC_01x13_GF_3.5mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.5_1x13_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843907 8A 160V +phoenix_contact connector MC_01x13_GF_3.5mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.81_1x13_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827978 8A 160V +phoenix_contact connector MC_01x13_GF_3.81mm +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_13-GF-3.81_1x13_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827978 8A 160V +phoenix_contact connector MC_01x13_GF_3.81mm_MH +0 +13 +13 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-G-3.5_1x14_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/14-G-3.5; number of pins: 14; pin pitch: 3.50mm; Angled || order number: 1844333 8A 160V +phoenix_contact connector MC_01x14_G_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-G-3.81_1x14_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/14-G-3.81; number of pins: 14; pin pitch: 3.81mm; Angled || order number: 1803390 8A 160V +phoenix_contact connector MC_01x14_G_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.5_1x14_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843910 8A 160V +phoenix_contact connector MC_01x14_GF_3.5mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.5_1x14_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843910 8A 160V +phoenix_contact connector MC_01x14_GF_3.5mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.81_1x14_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827981 8A 160V +phoenix_contact connector MC_01x14_GF_3.81mm +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_14-GF-3.81_1x14_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827981 8A 160V +phoenix_contact connector MC_01x14_GF_3.81mm_MH +0 +14 +14 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-G-3.5_1x15_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/15-G-3.5; number of pins: 15; pin pitch: 3.50mm; Angled || order number: 1844346 8A 160V +phoenix_contact connector MC_01x15_G_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-G-3.81_1x15_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/15-G-3.81; number of pins: 15; pin pitch: 3.81mm; Angled || order number: 1803400 8A 160V +phoenix_contact connector MC_01x15_G_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.5_1x15_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843923 8A 160V +phoenix_contact connector MC_01x15_GF_3.5mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.5_1x15_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843923 8A 160V +phoenix_contact connector MC_01x15_GF_3.5mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.81_1x15_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827994 8A 160V +phoenix_contact connector MC_01x15_GF_3.81mm +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_15-GF-3.81_1x15_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827994 8A 160V +phoenix_contact connector MC_01x15_GF_3.81mm_MH +0 +15 +15 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-G-3.5_1x16_P3.50mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/16-G-3.5; number of pins: 16; pin pitch: 3.50mm; Angled || order number: 1844359 8A 160V +phoenix_contact connector MC_01x16_G_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-G-3.81_1x16_P3.81mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/16-G-3.81; number of pins: 16; pin pitch: 3.81mm; Angled || order number: 1803413 8A 160V +phoenix_contact connector MC_01x16_G_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.5_1x16_P3.50mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843936 8A 160V +phoenix_contact connector MC_01x16_GF_3.5mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.5_1x16_P3.50mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843936 8A 160V +phoenix_contact connector MC_01x16_GF_3.5mm_MH +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.81_1x16_P3.81mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Angled; threaded flange || order number: 1828003 8A 160V +phoenix_contact connector MC_01x16_GF_3.81mm +0 +16 +16 +Connector_Phoenix_MC +PhoenixContact_MC_1,5_16-GF-3.81_1x16_P3.81mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1828003 8A 160V +phoenix_contact connector MC_01x16_GF_3.81mm_MH +0 +16 +16 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-G-5.08_1x02_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical || order number: 1836299 8A 320V +phoenix_contact connector MCV_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-GF-5.08_1x02_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847615 8A 320V +phoenix_contact connector MCV_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_2-GF-5.08_1x02_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847615 8A 320V +phoenix_contact connector MCV_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-G-5.08_1x03_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical || order number: 1836309 8A 320V +phoenix_contact connector MCV_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-GF-5.08_1x03_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847628 8A 320V +phoenix_contact connector MCV_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_3-GF-5.08_1x03_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847628 8A 320V +phoenix_contact connector MCV_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-G-5.08_1x04_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical || order number: 1836312 8A 320V +phoenix_contact connector MCV_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-GF-5.08_1x04_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847631 8A 320V +phoenix_contact connector MCV_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_4-GF-5.08_1x04_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847631 8A 320V +phoenix_contact connector MCV_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-G-5.08_1x05_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical || order number: 1836325 8A 320V +phoenix_contact connector MCV_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-GF-5.08_1x05_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847644 8A 320V +phoenix_contact connector MCV_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_5-GF-5.08_1x05_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847644 8A 320V +phoenix_contact connector MCV_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-G-5.08_1x06_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical || order number: 1836338 8A 320V +phoenix_contact connector MCV_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-GF-5.08_1x06_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847657 8A 320V +phoenix_contact connector MCV_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_6-GF-5.08_1x06_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847657 8A 320V +phoenix_contact connector MCV_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-G-5.08_1x07_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical || order number: 1836341 8A 320V +phoenix_contact connector MCV_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-GF-5.08_1x07_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847660 8A 320V +phoenix_contact connector MCV_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_7-GF-5.08_1x07_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847660 8A 320V +phoenix_contact connector MCV_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-G-5.08_1x08_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical || order number: 1836354 8A 320V +phoenix_contact connector MCV_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-GF-5.08_1x08_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847673 8A 320V +phoenix_contact connector MCV_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_8-GF-5.08_1x08_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847673 8A 320V +phoenix_contact connector MCV_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-G-5.08_1x09_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical || order number: 1836367 8A 320V +phoenix_contact connector MCV_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-GF-5.08_1x09_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847686 8A 320V +phoenix_contact connector MCV_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_9-GF-5.08_1x09_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847686 8A 320V +phoenix_contact connector MCV_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-G-5.08_1x10_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical || order number: 1836370 8A 320V +phoenix_contact connector MCV_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-GF-5.08_1x10_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847699 8A 320V +phoenix_contact connector MCV_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_10-GF-5.08_1x10_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847699 8A 320V +phoenix_contact connector MCV_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-G-5.08_1x11_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical || order number: 1836383 8A 320V +phoenix_contact connector MCV_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-GF-5.08_1x11_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847709 8A 320V +phoenix_contact connector MCV_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_11-GF-5.08_1x11_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847709 8A 320V +phoenix_contact connector MCV_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-G-5.08_1x12_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical || order number: 1836396 8A 320V +phoenix_contact connector MCV_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-GF-5.08_1x12_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847712 8A 320V +phoenix_contact connector MCV_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MCV_1,5_12-GF-5.08_1x12_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847712 8A 320V +phoenix_contact connector MCV_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-G-5.08_1x02_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/2-G-5.08; number of pins: 02; pin pitch: 5.08mm; Angled || order number: 1836189 8A 320V +phoenix_contact connector MC_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-GF-5.08_1x02_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847466 8A 320V +phoenix_contact connector MC_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_2-GF-5.08_1x02_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847466 8A 320V +phoenix_contact connector MC_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-G-5.08_1x03_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/3-G-5.08; number of pins: 03; pin pitch: 5.08mm; Angled || order number: 1836192 8A 320V +phoenix_contact connector MC_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-GF-5.08_1x03_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847479 8A 320V +phoenix_contact connector MC_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_3-GF-5.08_1x03_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847479 8A 320V +phoenix_contact connector MC_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-G-5.08_1x04_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/4-G-5.08; number of pins: 04; pin pitch: 5.08mm; Angled || order number: 1836202 8A 320V +phoenix_contact connector MC_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-GF-5.08_1x04_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847482 8A 320V +phoenix_contact connector MC_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_4-GF-5.08_1x04_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847482 8A 320V +phoenix_contact connector MC_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-G-5.08_1x05_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/5-G-5.08; number of pins: 05; pin pitch: 5.08mm; Angled || order number: 1836215 8A 320V +phoenix_contact connector MC_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-GF-5.08_1x05_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847495 8A 320V +phoenix_contact connector MC_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_5-GF-5.08_1x05_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847495 8A 320V +phoenix_contact connector MC_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-G-5.08_1x06_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/6-G-5.08; number of pins: 06; pin pitch: 5.08mm; Angled || order number: 1836228 8A 320V +phoenix_contact connector MC_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-GF-5.08_1x06_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847505 8A 320V +phoenix_contact connector MC_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_6-GF-5.08_1x06_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847505 8A 320V +phoenix_contact connector MC_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-G-5.08_1x07_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/7-G-5.08; number of pins: 07; pin pitch: 5.08mm; Angled || order number: 1836231 8A 320V +phoenix_contact connector MC_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-GF-5.08_1x07_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847518 8A 320V +phoenix_contact connector MC_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_7-GF-5.08_1x07_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847518 8A 320V +phoenix_contact connector MC_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-G-5.08_1x08_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/8-G-5.08; number of pins: 08; pin pitch: 5.08mm; Angled || order number: 1836244 8A 320V +phoenix_contact connector MC_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-GF-5.08_1x08_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847521 8A 320V +phoenix_contact connector MC_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_8-GF-5.08_1x08_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847521 8A 320V +phoenix_contact connector MC_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-G-5.08_1x09_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/9-G-5.08; number of pins: 09; pin pitch: 5.08mm; Angled || order number: 1836257 8A 320V +phoenix_contact connector MC_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-GF-5.08_1x09_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847534 8A 320V +phoenix_contact connector MC_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_9-GF-5.08_1x09_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847534 8A 320V +phoenix_contact connector MC_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-G-5.08_1x10_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/10-G-5.08; number of pins: 10; pin pitch: 5.08mm; Angled || order number: 1836260 8A 320V +phoenix_contact connector MC_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-GF-5.08_1x10_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847547 8A 320V +phoenix_contact connector MC_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_10-GF-5.08_1x10_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847547 8A 320V +phoenix_contact connector MC_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-G-5.08_1x11_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/11-G-5.08; number of pins: 11; pin pitch: 5.08mm; Angled || order number: 1836273 8A 320V +phoenix_contact connector MC_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-GF-5.08_1x11_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847550 8A 320V +phoenix_contact connector MC_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_11-GF-5.08_1x11_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847550 8A 320V +phoenix_contact connector MC_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-G-5.08_1x12_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MC_1,5/12-G-5.08; number of pins: 12; pin pitch: 5.08mm; Angled || order number: 1836286 8A 320V +phoenix_contact connector MC_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-GF-5.08_1x12_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847563 8A 320V +phoenix_contact connector MC_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MC_HighVoltage +PhoenixContact_MC_1,5_12-GF-5.08_1x12_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847563 8A 320V +phoenix_contact connector MC_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_2-G-5,08_1x02_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/2-G-5,08; number of pins: 02; pin pitch: 5.08mm; Angled || order number: 1757242 12A || order number: 1923869 16A (HC) +phoenix_contact connector MSTBA_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_2-G_1x02_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/2-G; number of pins: 02; pin pitch: 5.00mm; Angled || order number: 1757475 12A || order number: 1923759 16A (HC) +phoenix_contact connector MSTBA_01x02_G_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/3-G-5,08; number of pins: 03; pin pitch: 5.08mm; Angled || order number: 1757255 12A || order number: 1923872 16A (HC) +phoenix_contact connector MSTBA_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_3-G_1x03_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/3-G; number of pins: 03; pin pitch: 5.00mm; Angled || order number: 1757488 12A || order number: 1923762 16A (HC) +phoenix_contact connector MSTBA_01x03_G_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_4-G-5,08_1x04_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/4-G-5,08; number of pins: 04; pin pitch: 5.08mm; Angled || order number: 1757268 12A || order number: 1923885 16A (HC) +phoenix_contact connector MSTBA_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_4-G_1x04_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/4-G; number of pins: 04; pin pitch: 5.00mm; Angled || order number: 1757491 12A || order number: 1923775 16A (HC) +phoenix_contact connector MSTBA_01x04_G_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_5-G-5,08_1x05_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/5-G-5,08; number of pins: 05; pin pitch: 5.08mm; Angled || order number: 1757271 12A || order number: 1923898 16A (HC) +phoenix_contact connector MSTBA_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_5-G_1x05_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/5-G; number of pins: 05; pin pitch: 5.00mm; Angled || order number: 1757501 12A || order number: 1923788 16A (HC) +phoenix_contact connector MSTBA_01x05_G_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_6-G-5,08_1x06_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/6-G-5,08; number of pins: 06; pin pitch: 5.08mm; Angled || order number: 1757284 12A || order number: 1923908 16A (HC) +phoenix_contact connector MSTBA_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_6-G_1x06_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/6-G; number of pins: 06; pin pitch: 5.00mm; Angled || order number: 1757514 12A || order number: 1923791 16A (HC) +phoenix_contact connector MSTBA_01x06_G_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_7-G-5,08_1x07_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/7-G-5,08; number of pins: 07; pin pitch: 5.08mm; Angled || order number: 1757297 12A || order number: 1923911 16A (HC) +phoenix_contact connector MSTBA_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_7-G_1x07_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/7-G; number of pins: 07; pin pitch: 5.00mm; Angled || order number: 1757493 12A || order number: 1923801 16A (HC) +phoenix_contact connector MSTBA_01x07_G_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_8-G-5,08_1x08_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/8-G-5,08; number of pins: 08; pin pitch: 5.08mm; Angled || order number: 1757307 12A || order number: 1923924 16A (HC) +phoenix_contact connector MSTBA_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_8-G_1x08_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/8-G; number of pins: 08; pin pitch: 5.00mm; Angled || order number: 1757527 12A || order number: 1923814 16A (HC) +phoenix_contact connector MSTBA_01x08_G_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_9-G-5,08_1x09_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/9-G-5,08; number of pins: 09; pin pitch: 5.08mm; Angled || order number: 1757310 12A || order number: 1923937 16A (HC) +phoenix_contact connector MSTBA_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_9-G_1x09_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/9-G; number of pins: 09; pin pitch: 5.00mm; Angled || order number: 1757530 12A || order number: 1923827 16A (HC) +phoenix_contact connector MSTBA_01x09_G_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_10-G-5,08_1x10_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/10-G-5,08; number of pins: 10; pin pitch: 5.08mm; Angled || order number: 1757323 12A || order number: 1923940 16A (HC) +phoenix_contact connector MSTBA_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_10-G_1x10_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/10-G; number of pins: 10; pin pitch: 5.00mm; Angled || order number: 1757543 12A || order number: 1923830 16A (HC) +phoenix_contact connector MSTBA_01x10_G_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_11-G-5,08_1x11_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/11-G-5,08; number of pins: 11; pin pitch: 5.08mm; Angled || order number: 1757336 12A || order number: 1923953 16A (HC) +phoenix_contact connector MSTBA_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_11-G_1x11_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/11-G; number of pins: 11; pin pitch: 5.00mm; Angled || order number: 1757556 12A || order number: 1923843 16A (HC) +phoenix_contact connector MSTBA_01x11_G_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_12-G-5,08_1x12_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/12-G-5,08; number of pins: 12; pin pitch: 5.08mm; Angled || order number: 1757349 12A || order number: 1923966 16A (HC) +phoenix_contact connector MSTBA_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_12-G_1x12_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/12-G; number of pins: 12; pin pitch: 5.00mm; Angled || order number: 1757569 12A || order number: 1923856 16A (HC) +phoenix_contact connector MSTBA_01x12_G_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_13-G-5,08_1x13_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/13-G-5,08; number of pins: 13; pin pitch: 5.08mm; Angled || order number: 1757352 12A +phoenix_contact connector MSTBA_01x13_G_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_13-G_1x13_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/13-G; number of pins: 13; pin pitch: 5.00mm; Angled || order number: 1757572 12A +phoenix_contact connector MSTBA_01x13_G_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_14-G-5,08_1x14_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/14-G-5,08; number of pins: 14; pin pitch: 5.08mm; Angled || order number: 1757365 12A +phoenix_contact connector MSTBA_01x14_G_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_14-G_1x14_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/14-G; number of pins: 14; pin pitch: 5.00mm; Angled || order number: 1757585 12A +phoenix_contact connector MSTBA_01x14_G_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_15-G-5,08_1x15_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/15-G-5,08; number of pins: 15; pin pitch: 5.08mm; Angled || order number: 1757378 12A +phoenix_contact connector MSTBA_01x15_G_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_15-G_1x15_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/15-G; number of pins: 15; pin pitch: 5.00mm; Angled || order number: 1757598 12A +phoenix_contact connector MSTBA_01x15_G_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_16-G-5,08_1x16_P5.08mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/16-G-5,08; number of pins: 16; pin pitch: 5.08mm; Angled || order number: 1757381 12A +phoenix_contact connector MSTBA_01x16_G_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBA_2,5_16-G_1x16_P5.00mm_Horizontal +Generic Phoenix Contact connector footprint for: MSTBA_2,5/16-G; number of pins: 16; pin pitch: 5.00mm; Angled || order number: 1757608 12A +phoenix_contact connector MSTBA_01x16_G_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/2-G-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical || order number: 1755736 12A || order number: 1924305 16A (HC) +phoenix_contact connector MSTBVA_01x02_G_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_2-G_1x02_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/2-G; number of pins: 02; pin pitch: 5.00mm; Vertical || order number: 1755516 12A || order number: 1924198 16A (HC) +phoenix_contact connector MSTBVA_01x02_G_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_3-G-5,08_1x03_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/3-G-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical || order number: 1755749 12A || order number: 1924318 16A (HC) +phoenix_contact connector MSTBVA_01x03_G_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_3-G_1x03_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/3-G; number of pins: 03; pin pitch: 5.00mm; Vertical || order number: 1755529 12A || order number: 1924208 16A (HC) +phoenix_contact connector MSTBVA_01x03_G_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_4-G-5,08_1x04_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/4-G-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical || order number: 1755752 12A || order number: 1924321 16A (HC) +phoenix_contact connector MSTBVA_01x04_G_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_4-G_1x04_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/4-G; number of pins: 04; pin pitch: 5.00mm; Vertical || order number: 1755532 12A || order number: 1924211 16A (HC) +phoenix_contact connector MSTBVA_01x04_G_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_5-G-5,08_1x05_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/5-G-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical || order number: 1755765 12A || order number: 1924334 16A (HC) +phoenix_contact connector MSTBVA_01x05_G_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_5-G_1x05_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/5-G; number of pins: 05; pin pitch: 5.00mm; Vertical || order number: 1755545 12A || order number: 1924224 16A (HC) +phoenix_contact connector MSTBVA_01x05_G_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_6-G-5,08_1x06_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/6-G-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical || order number: 1755778 12A || order number: 1924347 16A (HC) +phoenix_contact connector MSTBVA_01x06_G_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_6-G_1x06_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/6-G; number of pins: 06; pin pitch: 5.00mm; Vertical || order number: 1755558 12A || order number: 1924237 16A (HC) +phoenix_contact connector MSTBVA_01x06_G_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_7-G-5,08_1x07_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/7-G-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical || order number: 1755781 12A || order number: 1924350 16A (HC) +phoenix_contact connector MSTBVA_01x07_G_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_7-G_1x07_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/7-G; number of pins: 07; pin pitch: 5.00mm; Vertical || order number: 1755561 12A || order number: 1924240 16A (HC) +phoenix_contact connector MSTBVA_01x07_G_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_8-G-5,08_1x08_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/8-G-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical || order number: 1755794 12A || order number: 1924363 16A (HC) +phoenix_contact connector MSTBVA_01x08_G_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_8-G_1x08_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/8-G; number of pins: 08; pin pitch: 5.00mm; Vertical || order number: 1755574 12A || order number: 1924253 16A (HC) +phoenix_contact connector MSTBVA_01x08_G_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_9-G-5,08_1x09_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/9-G-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical || order number: 1755804 12A || order number: 1924376 16A (HC) +phoenix_contact connector MSTBVA_01x09_G_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_9-G_1x09_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/9-G; number of pins: 09; pin pitch: 5.00mm; Vertical || order number: 1755587 12A || order number: 1924266 16A (HC) +phoenix_contact connector MSTBVA_01x09_G_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_10-G-5,08_1x10_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/10-G-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical || order number: 1755817 12A || order number: 1924389 16A (HC) +phoenix_contact connector MSTBVA_01x10_G_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_10-G_1x10_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/10-G; number of pins: 10; pin pitch: 5.00mm; Vertical || order number: 1755503 12A || order number: 1924279 16A (HC) +phoenix_contact connector MSTBVA_01x10_G_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_11-G-5,08_1x11_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/11-G-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical || order number: 1755820 12A || order number: 1924392 16A (HC) +phoenix_contact connector MSTBVA_01x11_G_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_11-G_1x11_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/11-G; number of pins: 11; pin pitch: 5.00mm; Vertical || order number: 1755590 12A || order number: 1924282 16A (HC) +phoenix_contact connector MSTBVA_01x11_G_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_12-G-5,08_1x12_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/12-G-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical || order number: 1755833 12A || order number: 1924402 16A (HC) +phoenix_contact connector MSTBVA_01x12_G_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_12-G_1x12_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/12-G; number of pins: 12; pin pitch: 5.00mm; Vertical || order number: 1755600 12A || order number: 1924295 16A (HC) +phoenix_contact connector MSTBVA_01x12_G_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_13-G-5,08_1x13_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/13-G-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical || order number: 1755846 12A +phoenix_contact connector MSTBVA_01x13_G_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_13-G_1x13_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/13-G; number of pins: 13; pin pitch: 5.00mm; Vertical || order number: 1755613 12A +phoenix_contact connector MSTBVA_01x13_G_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_14-G-5,08_1x14_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/14-G-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical || order number: 1755859 12A +phoenix_contact connector MSTBVA_01x14_G_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_14-G_1x14_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/14-G; number of pins: 14; pin pitch: 5.00mm; Vertical || order number: 1755626 12A +phoenix_contact connector MSTBVA_01x14_G_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_15-G-5,08_1x15_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/15-G-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical || order number: 1755862 12A +phoenix_contact connector MSTBVA_01x15_G_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_15-G_1x15_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/15-G; number of pins: 15; pin pitch: 5.00mm; Vertical || order number: 1755639 12A +phoenix_contact connector MSTBVA_01x15_G_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_16-G-5,08_1x16_P5.08mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/16-G-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical || order number: 1755875 12A +phoenix_contact connector MSTBVA_01x16_G_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBVA_2,5_16-G_1x16_P5.00mm_Vertical +Generic Phoenix Contact connector footprint for: MSTBVA_2,5/16-G; number of pins: 16; pin pitch: 5.00mm; Vertical || order number: 1755642 12A +phoenix_contact connector MSTBVA_01x16_G_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF-5,08_1x02_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777073 12A || order number: 1924525 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF-5,08_1x02_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777073 12A || order number: 1924525 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF_1x02_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776883 12A || order number: 1924415 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_2-GF_1x02_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776883 12A || order number: 1924415 16A (HC) +phoenix_contact connector MSTBV_01x02_GF_5.00mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF-5,08_1x03_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777086 12A || order number: 1924538 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF-5,08_1x03_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777086 12A || order number: 1924538 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF_1x03_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776896 12A || order number: 1924428 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_3-GF_1x03_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776896 12A || order number: 1924428 16A (HC) +phoenix_contact connector MSTBV_01x03_GF_5.00mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF-5,08_1x04_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777099 12A || order number: 1924541 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF-5,08_1x04_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777099 12A || order number: 1924541 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF_1x04_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776906 12A || order number: 1924431 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_4-GF_1x04_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776906 12A || order number: 1924431 16A (HC) +phoenix_contact connector MSTBV_01x04_GF_5.00mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF-5,08_1x05_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777109 12A || order number: 1924554 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF-5,08_1x05_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777109 12A || order number: 1924554 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF_1x05_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776919 12A || order number: 1924444 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_5-GF_1x05_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776919 12A || order number: 1924444 16A (HC) +phoenix_contact connector MSTBV_01x05_GF_5.00mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF-5,08_1x06_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777112 12A || order number: 1924567 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF-5,08_1x06_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777112 12A || order number: 1924567 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF_1x06_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776922 12A || order number: 1924457 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_6-GF_1x06_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776922 12A || order number: 1924457 16A (HC) +phoenix_contact connector MSTBV_01x06_GF_5.00mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF-5,08_1x07_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777125 12A || order number: 1924570 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF-5,08_1x07_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777125 12A || order number: 1924570 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF_1x07_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776935 12A || order number: 1924460 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_7-GF_1x07_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776935 12A || order number: 1924460 16A (HC) +phoenix_contact connector MSTBV_01x07_GF_5.00mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF-5,08_1x08_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777138 12A || order number: 1924583 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF-5,08_1x08_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777138 12A || order number: 1924583 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF_1x08_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776948 12A || order number: 1924473 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_8-GF_1x08_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776948 12A || order number: 1924473 16A (HC) +phoenix_contact connector MSTBV_01x08_GF_5.00mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF-5,08_1x09_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777141 12A || order number: 1924596 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF-5,08_1x09_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777141 12A || order number: 1924596 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF_1x09_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776951 12A || order number: 1924486 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_9-GF_1x09_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776951 12A || order number: 1924486 16A (HC) +phoenix_contact connector MSTBV_01x09_GF_5.00mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF-5,08_1x10_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777154 12A || order number: 1924606 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF-5,08_1x10_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777154 12A || order number: 1924606 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF_1x10_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776964 12A || order number: 1924499 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_10-GF_1x10_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776964 12A || order number: 1924499 16A (HC) +phoenix_contact connector MSTBV_01x10_GF_5.00mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF-5,08_1x11_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777167 12A || order number: 1924619 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF-5,08_1x11_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777167 12A || order number: 1924619 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF_1x11_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776977 12A || order number: 1924509 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_11-GF_1x11_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776977 12A || order number: 1924509 16A (HC) +phoenix_contact connector MSTBV_01x11_GF_5.00mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF-5,08_1x12_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777170 12A || order number: 1924622 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF-5,08_1x12_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777170 12A || order number: 1924622 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF_1x12_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776980 12A || order number: 1924512 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_12-GF_1x12_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776980 12A || order number: 1924512 16A (HC) +phoenix_contact connector MSTBV_01x12_GF_5.00mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF-5,08_1x13_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777183 12A +phoenix_contact connector MSTBV_01x13_GF_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF-5,08_1x13_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777183 12A +phoenix_contact connector MSTBV_01x13_GF_5.08mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF_1x13_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776993 12A +phoenix_contact connector MSTBV_01x13_GF_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_13-GF_1x13_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776993 12A +phoenix_contact connector MSTBV_01x13_GF_5.00mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF-5,08_1x14_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777196 12A +phoenix_contact connector MSTBV_01x14_GF_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF-5,08_1x14_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777196 12A +phoenix_contact connector MSTBV_01x14_GF_5.08mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF_1x14_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776002 12A +phoenix_contact connector MSTBV_01x14_GF_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_14-GF_1x14_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776002 12A +phoenix_contact connector MSTBV_01x14_GF_5.00mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF-5,08_1x15_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777206 12A +phoenix_contact connector MSTBV_01x15_GF_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF-5,08_1x15_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777206 12A +phoenix_contact connector MSTBV_01x15_GF_5.08mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF_1x15_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776015 12A +phoenix_contact connector MSTBV_01x15_GF_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_15-GF_1x15_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776015 12A +phoenix_contact connector MSTBV_01x15_GF_5.00mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF-5,08_1x16_P5.08mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777219 12A +phoenix_contact connector MSTBV_01x16_GF_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF-5,08_1x16_P5.08mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777219 12A +phoenix_contact connector MSTBV_01x16_GF_5.08mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF_1x16_P5.00mm_Vertical_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776028 12A +phoenix_contact connector MSTBV_01x16_GF_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTBV_2,5_16-GF_1x16_P5.00mm_Vertical_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776028 12A +phoenix_contact connector MSTBV_01x16_GF_5.00mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF-5,08_1x02_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776508 12A || order number: 1924088 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.08mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF-5,08_1x02_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776508 12A || order number: 1924088 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.08mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF_1x02_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776692 12A || order number: 1923979 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.00mm +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_2-GF_1x02_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776692 12A || order number: 1923979 16A (HC) +phoenix_contact connector MSTB_01x02_GF_5.00mm_MH +0 +2 +2 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF-5,08_1x03_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776511 12A || order number: 1924091 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.08mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF-5,08_1x03_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776511 12A || order number: 1924091 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.08mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF_1x03_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776702 12A || order number: 1923982 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.00mm +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_3-GF_1x03_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776702 12A || order number: 1923982 16A (HC) +phoenix_contact connector MSTB_01x03_GF_5.00mm_MH +0 +3 +3 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF-5,08_1x04_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776524 12A || order number: 1924101 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.08mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF-5,08_1x04_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776524 12A || order number: 1924101 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.08mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF_1x04_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776715 12A || order number: 1923995 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.00mm +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_4-GF_1x04_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776715 12A || order number: 1923995 16A (HC) +phoenix_contact connector MSTB_01x04_GF_5.00mm_MH +0 +4 +4 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF-5,08_1x05_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776537 12A || order number: 1924114 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.08mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF-5,08_1x05_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776537 12A || order number: 1924114 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.08mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF_1x05_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776728 12A || order number: 1924004 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.00mm +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_5-GF_1x05_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776728 12A || order number: 1924004 16A (HC) +phoenix_contact connector MSTB_01x05_GF_5.00mm_MH +0 +5 +5 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF-5,08_1x06_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776540 12A || order number: 1924127 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.08mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF-5,08_1x06_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776540 12A || order number: 1924127 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.08mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF_1x06_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776731 12A || order number: 1924017 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.00mm +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_6-GF_1x06_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776731 12A || order number: 1924017 16A (HC) +phoenix_contact connector MSTB_01x06_GF_5.00mm_MH +0 +6 +6 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF-5,08_1x07_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776553 12A || order number: 1924130 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.08mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF-5,08_1x07_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776553 12A || order number: 1924130 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.08mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF_1x07_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776744 12A || order number: 1924020 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.00mm +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_7-GF_1x07_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776744 12A || order number: 1924020 16A (HC) +phoenix_contact connector MSTB_01x07_GF_5.00mm_MH +0 +7 +7 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF-5,08_1x08_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776566 12A || order number: 1924143 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.08mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF-5,08_1x08_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776566 12A || order number: 1924143 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.08mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF_1x08_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776757 12A || order number: 1924033 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.00mm +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_8-GF_1x08_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776757 12A || order number: 1924033 16A (HC) +phoenix_contact connector MSTB_01x08_GF_5.00mm_MH +0 +8 +8 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF-5,08_1x09_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776579 12A || order number: 1924156 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.08mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF-5,08_1x09_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776579 12A || order number: 1924156 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.08mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF_1x09_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776760 12A || order number: 1924046 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.00mm +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_9-GF_1x09_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776760 12A || order number: 1924046 16A (HC) +phoenix_contact connector MSTB_01x09_GF_5.00mm_MH +0 +9 +9 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF-5,08_1x10_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776582 12A || order number: 1924169 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.08mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF-5,08_1x10_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776582 12A || order number: 1924169 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.08mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF_1x10_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776773 12A || order number: 1924059 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.00mm +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_10-GF_1x10_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776773 12A || order number: 1924059 16A (HC) +phoenix_contact connector MSTB_01x10_GF_5.00mm_MH +0 +10 +10 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF-5,08_1x11_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776595 12A || order number: 1924172 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.08mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF-5,08_1x11_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776595 12A || order number: 1924172 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.08mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF_1x11_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776786 12A || order number: 1924062 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.00mm +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_11-GF_1x11_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776786 12A || order number: 1924062 16A (HC) +phoenix_contact connector MSTB_01x11_GF_5.00mm_MH +0 +11 +11 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF-5,08_1x12_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776605 12A || order number: 1924185 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.08mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF-5,08_1x12_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776605 12A || order number: 1924185 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.08mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF_1x12_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776799 12A || order number: 1924075 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.00mm +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_12-GF_1x12_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776799 12A || order number: 1924075 16A (HC) +phoenix_contact connector MSTB_01x12_GF_5.00mm_MH +0 +12 +12 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF-5,08_1x13_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776618 12A +phoenix_contact connector MSTB_01x13_GF_5.08mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF-5,08_1x13_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776618 12A +phoenix_contact connector MSTB_01x13_GF_5.08mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF_1x13_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776809 12A +phoenix_contact connector MSTB_01x13_GF_5.00mm +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_13-GF_1x13_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776809 12A +phoenix_contact connector MSTB_01x13_GF_5.00mm_MH +0 +13 +13 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF-5,08_1x14_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776621 12A +phoenix_contact connector MSTB_01x14_GF_5.08mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF-5,08_1x14_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776621 12A +phoenix_contact connector MSTB_01x14_GF_5.08mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF_1x14_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776812 12A +phoenix_contact connector MSTB_01x14_GF_5.00mm +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_14-GF_1x14_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776812 12A +phoenix_contact connector MSTB_01x14_GF_5.00mm_MH +0 +14 +14 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF-5,08_1x15_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776634 12A +phoenix_contact connector MSTB_01x15_GF_5.08mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF-5,08_1x15_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776634 12A +phoenix_contact connector MSTB_01x15_GF_5.08mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF_1x15_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776825 12A +phoenix_contact connector MSTB_01x15_GF_5.00mm +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_15-GF_1x15_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776825 12A +phoenix_contact connector MSTB_01x15_GF_5.00mm_MH +0 +15 +15 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF-5,08_1x16_P5.08mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776647 12A +phoenix_contact connector MSTB_01x16_GF_5.08mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF-5,08_1x16_P5.08mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776647 12A +phoenix_contact connector MSTB_01x16_GF_5.08mm_MH +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF_1x16_P5.00mm_Horizontal_ThreadedFlange +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776838 12A +phoenix_contact connector MSTB_01x16_GF_5.00mm +0 +16 +16 +Connector_Phoenix_MSTB +PhoenixContact_MSTB_2,5_16-GF_1x16_P5.00mm_Horizontal_ThreadedFlange_MountHole +Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776838 12A +phoenix_contact connector MSTB_01x16_GF_5.00mm_MH +0 +16 +16 +Connector_Pin +Pin_D0.7mm_L6.5mm_W1.8mm_FlatFork +solder Pin_ with flat fork, hole diameter 0.7mm, length 6.5mm, width 1.8mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D0.9mm_L10.0mm_W2.4mm_FlatFork +solder Pin_ with flat fork, hole diameter 0.9mm, length 10.0mm, width 2.4mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.0mm_L10.0mm +solder Pin_ diameter 1.0mm, hole diameter 1.0mm (press fit), length 10.0mm +solder Pin_ press fit +0 +1 +1 +Connector_Pin +Pin_D1.0mm_L10.0mm_LooseFit +solder Pin_ diameter 1.0mm, hole diameter 1.2mm (loose fit), length 10.0mm +solder Pin_ loose fit +0 +1 +1 +Connector_Pin +Pin_D1.1mm_L8.5mm_W2.5mm_FlatFork +solder Pin_ with flat fork, hole diameter 1.1mm, length 8.5mm, width 2.5mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.1mm_L10.2mm_W3.5mm_Flat +solder Pin_ with flat with hole, hole diameter 1.1mm, length 10.2mm, width 3.5mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.2mm_L10.2mm_W2.9mm_FlatFork +solder Pin_ with flat with fork, hole diameter 1.2mm, length 11.3mm, width 3.0mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.2mm_L11.3mm_W3.0mm_Flat +solder Pin_ with flat with hole, hole diameter 1.2mm, length 11.3mm, width 3.0mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L10.0mm_W3.5mm_Flat +solder Pin_ with flat with hole, hole diameter 1.3mm, length 10.0mm, width 3.5mm, e.g. Ettinger 13.13.865, https://katalog.ettinger.de/#p=434 +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.0mm +solder Pin_ diameter 1.3mm, hole diameter 1.3mm, length 11.0mm +solder Pin_ pressfit +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.0mm_LooseFit +solder Pin_ diameter 1.3mm, hole diameter 1.5mm (loose fit), length 11.0mm +solder Pin_ loose fit +0 +1 +1 +Connector_Pin +Pin_D1.3mm_L11.3mm_W2.8mm_Flat +solder Pin_ with flat with hole, hole diameter 1.3mm, length 11.3mm, width 2.8mm +solder Pin_ with flat fork +0 +1 +1 +Connector_Pin +Pin_D1.4mm_L8.5mm_W2.8mm_FlatFork +solder Pin_ with flat with fork, hole diameter 1.4mm, length 8.5mm, width 2.8mm, e.g. Ettinger 13.13.890, https://katalog.ettinger.de/#p=434 +solder Pin_ with flat fork +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x01_P1.00mm_Horizontal +Through hole angled pin header, 1x01, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x01 1.00mm single row +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x01_P1.00mm_Vertical +Through hole straight pin header, 1x01, 1.00mm pitch, single row +Through hole pin header THT 1x01 1.00mm single row +0 +1 +1 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Horizontal +Through hole angled pin header, 1x02, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical +Through hole straight pin header, 1x02, 1.00mm pitch, single row +Through hole pin header THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 1.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x02_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 1.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Horizontal +Through hole angled pin header, 1x03, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical +Through hole straight pin header, 1x03, 1.00mm pitch, single row +Through hole pin header THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 1.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x03_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 1.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Horizontal +Through hole angled pin header, 1x04, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical +Through hole straight pin header, 1x04, 1.00mm pitch, single row +Through hole pin header THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 1.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x04_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 1.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Horizontal +Through hole angled pin header, 1x05, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical +Through hole straight pin header, 1x05, 1.00mm pitch, single row +Through hole pin header THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 1.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x05_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 1.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Horizontal +Through hole angled pin header, 1x06, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical +Through hole straight pin header, 1x06, 1.00mm pitch, single row +Through hole pin header THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 1.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x06_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 1.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Horizontal +Through hole angled pin header, 1x07, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical +Through hole straight pin header, 1x07, 1.00mm pitch, single row +Through hole pin header THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 1.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x07_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 1.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Horizontal +Through hole angled pin header, 1x08, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical +Through hole straight pin header, 1x08, 1.00mm pitch, single row +Through hole pin header THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 1.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x08_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 1.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Horizontal +Through hole angled pin header, 1x09, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical +Through hole straight pin header, 1x09, 1.00mm pitch, single row +Through hole pin header THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 1.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x09_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 1.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Horizontal +Through hole angled pin header, 1x10, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical +Through hole straight pin header, 1x10, 1.00mm pitch, single row +Through hole pin header THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 1.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x10_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 1.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Horizontal +Through hole angled pin header, 1x11, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical +Through hole straight pin header, 1x11, 1.00mm pitch, single row +Through hole pin header THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 1.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x11_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 1.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Horizontal +Through hole angled pin header, 1x12, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical +Through hole straight pin header, 1x12, 1.00mm pitch, single row +Through hole pin header THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 1.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x12_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 1.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Horizontal +Through hole angled pin header, 1x13, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical +Through hole straight pin header, 1x13, 1.00mm pitch, single row +Through hole pin header THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 1.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x13_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 1.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Horizontal +Through hole angled pin header, 1x14, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical +Through hole straight pin header, 1x14, 1.00mm pitch, single row +Through hole pin header THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 1.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x14_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 1.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Horizontal +Through hole angled pin header, 1x15, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical +Through hole straight pin header, 1x15, 1.00mm pitch, single row +Through hole pin header THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 1.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x15_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 1.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Horizontal +Through hole angled pin header, 1x16, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical +Through hole straight pin header, 1x16, 1.00mm pitch, single row +Through hole pin header THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 1.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x16_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 1.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Horizontal +Through hole angled pin header, 1x17, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical +Through hole straight pin header, 1x17, 1.00mm pitch, single row +Through hole pin header THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 1.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x17_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 1.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Horizontal +Through hole angled pin header, 1x18, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical +Through hole straight pin header, 1x18, 1.00mm pitch, single row +Through hole pin header THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 1.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x18_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 1.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Horizontal +Through hole angled pin header, 1x19, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical +Through hole straight pin header, 1x19, 1.00mm pitch, single row +Through hole pin header THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 1.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x19_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 1.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Horizontal +Through hole angled pin header, 1x20, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical +Through hole straight pin header, 1x20, 1.00mm pitch, single row +Through hole pin header THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 1.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x20_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 1.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Horizontal +Through hole angled pin header, 1x21, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical +Through hole straight pin header, 1x21, 1.00mm pitch, single row +Through hole pin header THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 1.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x21_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 1.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Horizontal +Through hole angled pin header, 1x22, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical +Through hole straight pin header, 1x22, 1.00mm pitch, single row +Through hole pin header THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 1.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x22_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 1.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Horizontal +Through hole angled pin header, 1x23, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical +Through hole straight pin header, 1x23, 1.00mm pitch, single row +Through hole pin header THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 1.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x23_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 1.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Horizontal +Through hole angled pin header, 1x24, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical +Through hole straight pin header, 1x24, 1.00mm pitch, single row +Through hole pin header THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 1.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x24_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 1.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Horizontal +Through hole angled pin header, 1x25, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical +Through hole straight pin header, 1x25, 1.00mm pitch, single row +Through hole pin header THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 1.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x25_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 1.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Horizontal +Through hole angled pin header, 1x26, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical +Through hole straight pin header, 1x26, 1.00mm pitch, single row +Through hole pin header THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 1.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x26_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 1.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Horizontal +Through hole angled pin header, 1x27, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical +Through hole straight pin header, 1x27, 1.00mm pitch, single row +Through hole pin header THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 1.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x27_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 1.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Horizontal +Through hole angled pin header, 1x28, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical +Through hole straight pin header, 1x28, 1.00mm pitch, single row +Through hole pin header THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 1.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x28_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 1.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Horizontal +Through hole angled pin header, 1x29, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical +Through hole straight pin header, 1x29, 1.00mm pitch, single row +Through hole pin header THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 1.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x29_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 1.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Horizontal +Through hole angled pin header, 1x30, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical +Through hole straight pin header, 1x30, 1.00mm pitch, single row +Through hole pin header THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 1.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x30_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 1.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Horizontal +Through hole angled pin header, 1x31, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical +Through hole straight pin header, 1x31, 1.00mm pitch, single row +Through hole pin header THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 1.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x31_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 1.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Horizontal +Through hole angled pin header, 1x32, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical +Through hole straight pin header, 1x32, 1.00mm pitch, single row +Through hole pin header THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 1.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x32_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 1.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Horizontal +Through hole angled pin header, 1x33, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical +Through hole straight pin header, 1x33, 1.00mm pitch, single row +Through hole pin header THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 1.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x33_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 1.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Horizontal +Through hole angled pin header, 1x34, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical +Through hole straight pin header, 1x34, 1.00mm pitch, single row +Through hole pin header THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 1.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x34_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 1.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Horizontal +Through hole angled pin header, 1x35, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical +Through hole straight pin header, 1x35, 1.00mm pitch, single row +Through hole pin header THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 1.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x35_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 1.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Horizontal +Through hole angled pin header, 1x36, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical +Through hole straight pin header, 1x36, 1.00mm pitch, single row +Through hole pin header THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 1.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x36_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 1.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Horizontal +Through hole angled pin header, 1x37, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical +Through hole straight pin header, 1x37, 1.00mm pitch, single row +Through hole pin header THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 1.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x37_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 1.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Horizontal +Through hole angled pin header, 1x38, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical +Through hole straight pin header, 1x38, 1.00mm pitch, single row +Through hole pin header THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 1.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x38_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 1.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Horizontal +Through hole angled pin header, 1x39, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical +Through hole straight pin header, 1x39, 1.00mm pitch, single row +Through hole pin header THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 1.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x39_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 1.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Horizontal +Through hole angled pin header, 1x40, 1.00mm pitch, 2.0mm pin length, single row +Through hole angled pin header THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical +Through hole straight pin header, 1x40, 1.00mm pitch, single row +Through hole pin header THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 1.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 1.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_1x40_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 1.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 1.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Horizontal +Through hole angled pin header, 2x01, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Vertical +Through hole straight pin header, 2x01, 1.00mm pitch, double rows +Through hole pin header THT 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x01_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x01 1.00mm double row +0 +2 +2 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Horizontal +Through hole angled pin header, 2x02, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Vertical +Through hole straight pin header, 2x02, 1.00mm pitch, double rows +Through hole pin header THT 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x02_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x02 1.00mm double row +0 +4 +4 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Horizontal +Through hole angled pin header, 2x03, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Vertical +Through hole straight pin header, 2x03, 1.00mm pitch, double rows +Through hole pin header THT 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x03_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x03 1.00mm double row +0 +6 +6 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Horizontal +Through hole angled pin header, 2x04, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Vertical +Through hole straight pin header, 2x04, 1.00mm pitch, double rows +Through hole pin header THT 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x04_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x04 1.00mm double row +0 +8 +8 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Horizontal +Through hole angled pin header, 2x05, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Vertical +Through hole straight pin header, 2x05, 1.00mm pitch, double rows +Through hole pin header THT 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x05_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x05 1.00mm double row +0 +10 +10 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Horizontal +Through hole angled pin header, 2x06, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Vertical +Through hole straight pin header, 2x06, 1.00mm pitch, double rows +Through hole pin header THT 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x06_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x06 1.00mm double row +0 +12 +12 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Horizontal +Through hole angled pin header, 2x07, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Vertical +Through hole straight pin header, 2x07, 1.00mm pitch, double rows +Through hole pin header THT 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x07_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x07 1.00mm double row +0 +14 +14 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Horizontal +Through hole angled pin header, 2x08, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Vertical +Through hole straight pin header, 2x08, 1.00mm pitch, double rows +Through hole pin header THT 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x08_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x08 1.00mm double row +0 +16 +16 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Horizontal +Through hole angled pin header, 2x09, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Vertical +Through hole straight pin header, 2x09, 1.00mm pitch, double rows +Through hole pin header THT 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x09_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x09 1.00mm double row +0 +18 +18 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Horizontal +Through hole angled pin header, 2x10, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Vertical +Through hole straight pin header, 2x10, 1.00mm pitch, double rows +Through hole pin header THT 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x10_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x10 1.00mm double row +0 +20 +20 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Horizontal +Through hole angled pin header, 2x11, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Vertical +Through hole straight pin header, 2x11, 1.00mm pitch, double rows +Through hole pin header THT 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x11_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x11 1.00mm double row +0 +22 +22 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Horizontal +Through hole angled pin header, 2x12, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Vertical +Through hole straight pin header, 2x12, 1.00mm pitch, double rows +Through hole pin header THT 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x12_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x12 1.00mm double row +0 +24 +24 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Horizontal +Through hole angled pin header, 2x13, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Vertical +Through hole straight pin header, 2x13, 1.00mm pitch, double rows +Through hole pin header THT 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x13_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x13 1.00mm double row +0 +26 +26 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Horizontal +Through hole angled pin header, 2x14, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Vertical +Through hole straight pin header, 2x14, 1.00mm pitch, double rows +Through hole pin header THT 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x14_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x14 1.00mm double row +0 +28 +28 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Horizontal +Through hole angled pin header, 2x15, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Vertical +Through hole straight pin header, 2x15, 1.00mm pitch, double rows +Through hole pin header THT 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x15_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x15 1.00mm double row +0 +30 +30 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Horizontal +Through hole angled pin header, 2x16, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Vertical +Through hole straight pin header, 2x16, 1.00mm pitch, double rows +Through hole pin header THT 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x16_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x16 1.00mm double row +0 +32 +32 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Horizontal +Through hole angled pin header, 2x17, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Vertical +Through hole straight pin header, 2x17, 1.00mm pitch, double rows +Through hole pin header THT 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x17_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x17 1.00mm double row +0 +34 +34 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Horizontal +Through hole angled pin header, 2x18, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Vertical +Through hole straight pin header, 2x18, 1.00mm pitch, double rows +Through hole pin header THT 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x18_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x18 1.00mm double row +0 +36 +36 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Horizontal +Through hole angled pin header, 2x19, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Vertical +Through hole straight pin header, 2x19, 1.00mm pitch, double rows +Through hole pin header THT 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x19_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x19 1.00mm double row +0 +38 +38 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Horizontal +Through hole angled pin header, 2x20, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Vertical +Through hole straight pin header, 2x20, 1.00mm pitch, double rows +Through hole pin header THT 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x20_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x20 1.00mm double row +0 +40 +40 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Horizontal +Through hole angled pin header, 2x21, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Vertical +Through hole straight pin header, 2x21, 1.00mm pitch, double rows +Through hole pin header THT 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x21_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x21 1.00mm double row +0 +42 +42 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Horizontal +Through hole angled pin header, 2x22, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Vertical +Through hole straight pin header, 2x22, 1.00mm pitch, double rows +Through hole pin header THT 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x22_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x22 1.00mm double row +0 +44 +44 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Horizontal +Through hole angled pin header, 2x23, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Vertical +Through hole straight pin header, 2x23, 1.00mm pitch, double rows +Through hole pin header THT 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x23_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x23 1.00mm double row +0 +46 +46 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Horizontal +Through hole angled pin header, 2x24, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Vertical +Through hole straight pin header, 2x24, 1.00mm pitch, double rows +Through hole pin header THT 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x24_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x24 1.00mm double row +0 +48 +48 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Horizontal +Through hole angled pin header, 2x25, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Vertical +Through hole straight pin header, 2x25, 1.00mm pitch, double rows +Through hole pin header THT 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x25_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x25 1.00mm double row +0 +50 +50 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Horizontal +Through hole angled pin header, 2x26, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Vertical +Through hole straight pin header, 2x26, 1.00mm pitch, double rows +Through hole pin header THT 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x26_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x26 1.00mm double row +0 +52 +52 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Horizontal +Through hole angled pin header, 2x27, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Vertical +Through hole straight pin header, 2x27, 1.00mm pitch, double rows +Through hole pin header THT 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x27_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x27 1.00mm double row +0 +54 +54 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Horizontal +Through hole angled pin header, 2x28, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Vertical +Through hole straight pin header, 2x28, 1.00mm pitch, double rows +Through hole pin header THT 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x28_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x28 1.00mm double row +0 +56 +56 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Horizontal +Through hole angled pin header, 2x29, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Vertical +Through hole straight pin header, 2x29, 1.00mm pitch, double rows +Through hole pin header THT 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x29_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x29 1.00mm double row +0 +58 +58 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Horizontal +Through hole angled pin header, 2x30, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Vertical +Through hole straight pin header, 2x30, 1.00mm pitch, double rows +Through hole pin header THT 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x30_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x30 1.00mm double row +0 +60 +60 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Horizontal +Through hole angled pin header, 2x31, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Vertical +Through hole straight pin header, 2x31, 1.00mm pitch, double rows +Through hole pin header THT 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x31_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x31 1.00mm double row +0 +62 +62 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Horizontal +Through hole angled pin header, 2x32, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Vertical +Through hole straight pin header, 2x32, 1.00mm pitch, double rows +Through hole pin header THT 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x32_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x32 1.00mm double row +0 +64 +64 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Horizontal +Through hole angled pin header, 2x33, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Vertical +Through hole straight pin header, 2x33, 1.00mm pitch, double rows +Through hole pin header THT 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x33_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x33 1.00mm double row +0 +66 +66 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Horizontal +Through hole angled pin header, 2x34, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Vertical +Through hole straight pin header, 2x34, 1.00mm pitch, double rows +Through hole pin header THT 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x34_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x34 1.00mm double row +0 +68 +68 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Horizontal +Through hole angled pin header, 2x35, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Vertical +Through hole straight pin header, 2x35, 1.00mm pitch, double rows +Through hole pin header THT 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x35_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x35 1.00mm double row +0 +70 +70 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Horizontal +Through hole angled pin header, 2x36, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Vertical +Through hole straight pin header, 2x36, 1.00mm pitch, double rows +Through hole pin header THT 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x36_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x36 1.00mm double row +0 +72 +72 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Horizontal +Through hole angled pin header, 2x37, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Vertical +Through hole straight pin header, 2x37, 1.00mm pitch, double rows +Through hole pin header THT 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x37_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x37 1.00mm double row +0 +74 +74 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Horizontal +Through hole angled pin header, 2x38, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Vertical +Through hole straight pin header, 2x38, 1.00mm pitch, double rows +Through hole pin header THT 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x38_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x38 1.00mm double row +0 +76 +76 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Horizontal +Through hole angled pin header, 2x39, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Vertical +Through hole straight pin header, 2x39, 1.00mm pitch, double rows +Through hole pin header THT 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x39_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x39 1.00mm double row +0 +78 +78 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Horizontal +Through hole angled pin header, 2x40, 1.00mm pitch, 2.0mm pin length, double rows +Through hole angled pin header THT 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Vertical +Through hole straight pin header, 2x40, 1.00mm pitch, double rows +Through hole pin header THT 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.00mm +PinHeader_2x40_P1.00mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 1.00mm pitch, double rows +Surface mounted pin header SMD 2x40 1.00mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_1x01_P1.27mm_Horizontal +Through hole angled pin header, 1x01, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinHeader_1.27mm +PinHeader_1x01_P1.27mm_Vertical +Through hole straight pin header, 1x01, 1.27mm pitch, single row +Through hole pin header THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Horizontal +Through hole angled pin header, 1x02, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical +Through hole straight pin header, 1x02, 1.27mm pitch, single row +Through hole pin header THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 1.27mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x02_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 1.27mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Horizontal +Through hole angled pin header, 1x03, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical +Through hole straight pin header, 1x03, 1.27mm pitch, single row +Through hole pin header THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 1.27mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x03_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 1.27mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Horizontal +Through hole angled pin header, 1x04, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical +Through hole straight pin header, 1x04, 1.27mm pitch, single row +Through hole pin header THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 1.27mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x04_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 1.27mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Horizontal +Through hole angled pin header, 1x05, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical +Through hole straight pin header, 1x05, 1.27mm pitch, single row +Through hole pin header THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 1.27mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x05_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 1.27mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Horizontal +Through hole angled pin header, 1x06, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical +Through hole straight pin header, 1x06, 1.27mm pitch, single row +Through hole pin header THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 1.27mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x06_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 1.27mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Horizontal +Through hole angled pin header, 1x07, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical +Through hole straight pin header, 1x07, 1.27mm pitch, single row +Through hole pin header THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 1.27mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x07_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 1.27mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Horizontal +Through hole angled pin header, 1x08, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical +Through hole straight pin header, 1x08, 1.27mm pitch, single row +Through hole pin header THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 1.27mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x08_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 1.27mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Horizontal +Through hole angled pin header, 1x09, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical +Through hole straight pin header, 1x09, 1.27mm pitch, single row +Through hole pin header THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 1.27mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x09_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 1.27mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Horizontal +Through hole angled pin header, 1x10, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical +Through hole straight pin header, 1x10, 1.27mm pitch, single row +Through hole pin header THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 1.27mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x10_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 1.27mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Horizontal +Through hole angled pin header, 1x11, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical +Through hole straight pin header, 1x11, 1.27mm pitch, single row +Through hole pin header THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 1.27mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x11_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 1.27mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Horizontal +Through hole angled pin header, 1x12, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical +Through hole straight pin header, 1x12, 1.27mm pitch, single row +Through hole pin header THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 1.27mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x12_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 1.27mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Horizontal +Through hole angled pin header, 1x13, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical +Through hole straight pin header, 1x13, 1.27mm pitch, single row +Through hole pin header THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 1.27mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x13_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 1.27mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Horizontal +Through hole angled pin header, 1x14, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical +Through hole straight pin header, 1x14, 1.27mm pitch, single row +Through hole pin header THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 1.27mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x14_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 1.27mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Horizontal +Through hole angled pin header, 1x15, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical +Through hole straight pin header, 1x15, 1.27mm pitch, single row +Through hole pin header THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 1.27mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x15_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 1.27mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Horizontal +Through hole angled pin header, 1x16, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical +Through hole straight pin header, 1x16, 1.27mm pitch, single row +Through hole pin header THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 1.27mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x16_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 1.27mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Horizontal +Through hole angled pin header, 1x17, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical +Through hole straight pin header, 1x17, 1.27mm pitch, single row +Through hole pin header THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 1.27mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x17_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 1.27mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Horizontal +Through hole angled pin header, 1x18, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical +Through hole straight pin header, 1x18, 1.27mm pitch, single row +Through hole pin header THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 1.27mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x18_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 1.27mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Horizontal +Through hole angled pin header, 1x19, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical +Through hole straight pin header, 1x19, 1.27mm pitch, single row +Through hole pin header THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 1.27mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x19_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 1.27mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Horizontal +Through hole angled pin header, 1x20, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical +Through hole straight pin header, 1x20, 1.27mm pitch, single row +Through hole pin header THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 1.27mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x20_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 1.27mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Horizontal +Through hole angled pin header, 1x21, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical +Through hole straight pin header, 1x21, 1.27mm pitch, single row +Through hole pin header THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 1.27mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x21_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 1.27mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Horizontal +Through hole angled pin header, 1x22, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical +Through hole straight pin header, 1x22, 1.27mm pitch, single row +Through hole pin header THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 1.27mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x22_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 1.27mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Horizontal +Through hole angled pin header, 1x23, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical +Through hole straight pin header, 1x23, 1.27mm pitch, single row +Through hole pin header THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 1.27mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x23_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 1.27mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Horizontal +Through hole angled pin header, 1x24, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical +Through hole straight pin header, 1x24, 1.27mm pitch, single row +Through hole pin header THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 1.27mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x24_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 1.27mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Horizontal +Through hole angled pin header, 1x25, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical +Through hole straight pin header, 1x25, 1.27mm pitch, single row +Through hole pin header THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 1.27mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x25_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 1.27mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Horizontal +Through hole angled pin header, 1x26, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical +Through hole straight pin header, 1x26, 1.27mm pitch, single row +Through hole pin header THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 1.27mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x26_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 1.27mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Horizontal +Through hole angled pin header, 1x27, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical +Through hole straight pin header, 1x27, 1.27mm pitch, single row +Through hole pin header THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 1.27mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x27_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 1.27mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Horizontal +Through hole angled pin header, 1x28, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical +Through hole straight pin header, 1x28, 1.27mm pitch, single row +Through hole pin header THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 1.27mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x28_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 1.27mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Horizontal +Through hole angled pin header, 1x29, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical +Through hole straight pin header, 1x29, 1.27mm pitch, single row +Through hole pin header THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 1.27mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x29_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 1.27mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Horizontal +Through hole angled pin header, 1x30, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical +Through hole straight pin header, 1x30, 1.27mm pitch, single row +Through hole pin header THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 1.27mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x30_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 1.27mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Horizontal +Through hole angled pin header, 1x31, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical +Through hole straight pin header, 1x31, 1.27mm pitch, single row +Through hole pin header THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 1.27mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x31_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 1.27mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Horizontal +Through hole angled pin header, 1x32, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical +Through hole straight pin header, 1x32, 1.27mm pitch, single row +Through hole pin header THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 1.27mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x32_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 1.27mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Horizontal +Through hole angled pin header, 1x33, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical +Through hole straight pin header, 1x33, 1.27mm pitch, single row +Through hole pin header THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 1.27mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x33_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 1.27mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Horizontal +Through hole angled pin header, 1x34, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical +Through hole straight pin header, 1x34, 1.27mm pitch, single row +Through hole pin header THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 1.27mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x34_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 1.27mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Horizontal +Through hole angled pin header, 1x35, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical +Through hole straight pin header, 1x35, 1.27mm pitch, single row +Through hole pin header THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 1.27mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x35_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 1.27mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Horizontal +Through hole angled pin header, 1x36, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical +Through hole straight pin header, 1x36, 1.27mm pitch, single row +Through hole pin header THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 1.27mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x36_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 1.27mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Horizontal +Through hole angled pin header, 1x37, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical +Through hole straight pin header, 1x37, 1.27mm pitch, single row +Through hole pin header THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 1.27mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x37_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 1.27mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Horizontal +Through hole angled pin header, 1x38, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical +Through hole straight pin header, 1x38, 1.27mm pitch, single row +Through hole pin header THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 1.27mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x38_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 1.27mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Horizontal +Through hole angled pin header, 1x39, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical +Through hole straight pin header, 1x39, 1.27mm pitch, single row +Through hole pin header THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 1.27mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x39_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 1.27mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Horizontal +Through hole angled pin header, 1x40, 1.27mm pitch, 4.0mm pin length, single row +Through hole angled pin header THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical +Through hole straight pin header, 1x40, 1.27mm pitch, single row +Through hole pin header THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 1.27mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 1.27mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_1x40_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 1.27mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 1.27mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Horizontal +Through hole angled pin header, 2x01, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Vertical +Through hole straight pin header, 2x01, 1.27mm pitch, double rows +Through hole pin header THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x01_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x01 1.27mm double row +0 +2 +2 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Horizontal +Through hole angled pin header, 2x02, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Vertical +Through hole straight pin header, 2x02, 1.27mm pitch, double rows +Through hole pin header THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x02_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x02 1.27mm double row +0 +4 +4 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Horizontal +Through hole angled pin header, 2x03, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Vertical +Through hole straight pin header, 2x03, 1.27mm pitch, double rows +Through hole pin header THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x03_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x03 1.27mm double row +0 +6 +6 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Horizontal +Through hole angled pin header, 2x04, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Vertical +Through hole straight pin header, 2x04, 1.27mm pitch, double rows +Through hole pin header THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x04_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x04 1.27mm double row +0 +8 +8 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Horizontal +Through hole angled pin header, 2x05, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Vertical +Through hole straight pin header, 2x05, 1.27mm pitch, double rows +Through hole pin header THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x05_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x05 1.27mm double row +0 +10 +10 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Horizontal +Through hole angled pin header, 2x06, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Vertical +Through hole straight pin header, 2x06, 1.27mm pitch, double rows +Through hole pin header THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x06_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x06 1.27mm double row +0 +12 +12 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Horizontal +Through hole angled pin header, 2x07, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Vertical +Through hole straight pin header, 2x07, 1.27mm pitch, double rows +Through hole pin header THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x07_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x07 1.27mm double row +0 +14 +14 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Horizontal +Through hole angled pin header, 2x08, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Vertical +Through hole straight pin header, 2x08, 1.27mm pitch, double rows +Through hole pin header THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x08_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x08 1.27mm double row +0 +16 +16 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Horizontal +Through hole angled pin header, 2x09, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Vertical +Through hole straight pin header, 2x09, 1.27mm pitch, double rows +Through hole pin header THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x09_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x09 1.27mm double row +0 +18 +18 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Horizontal +Through hole angled pin header, 2x10, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Vertical +Through hole straight pin header, 2x10, 1.27mm pitch, double rows +Through hole pin header THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x10_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x10 1.27mm double row +0 +20 +20 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Horizontal +Through hole angled pin header, 2x11, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Vertical +Through hole straight pin header, 2x11, 1.27mm pitch, double rows +Through hole pin header THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x11_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x11 1.27mm double row +0 +22 +22 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Horizontal +Through hole angled pin header, 2x12, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Vertical +Through hole straight pin header, 2x12, 1.27mm pitch, double rows +Through hole pin header THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x12_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x12 1.27mm double row +0 +24 +24 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Horizontal +Through hole angled pin header, 2x13, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Vertical +Through hole straight pin header, 2x13, 1.27mm pitch, double rows +Through hole pin header THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x13_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x13 1.27mm double row +0 +26 +26 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Horizontal +Through hole angled pin header, 2x14, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Vertical +Through hole straight pin header, 2x14, 1.27mm pitch, double rows +Through hole pin header THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x14_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x14 1.27mm double row +0 +28 +28 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Horizontal +Through hole angled pin header, 2x15, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Vertical +Through hole straight pin header, 2x15, 1.27mm pitch, double rows +Through hole pin header THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x15_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x15 1.27mm double row +0 +30 +30 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Horizontal +Through hole angled pin header, 2x16, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Vertical +Through hole straight pin header, 2x16, 1.27mm pitch, double rows +Through hole pin header THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x16_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x16 1.27mm double row +0 +32 +32 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Horizontal +Through hole angled pin header, 2x17, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Vertical +Through hole straight pin header, 2x17, 1.27mm pitch, double rows +Through hole pin header THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x17_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x17 1.27mm double row +0 +34 +34 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Horizontal +Through hole angled pin header, 2x18, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Vertical +Through hole straight pin header, 2x18, 1.27mm pitch, double rows +Through hole pin header THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x18_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x18 1.27mm double row +0 +36 +36 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Horizontal +Through hole angled pin header, 2x19, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Vertical +Through hole straight pin header, 2x19, 1.27mm pitch, double rows +Through hole pin header THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x19_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x19 1.27mm double row +0 +38 +38 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Horizontal +Through hole angled pin header, 2x20, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Vertical +Through hole straight pin header, 2x20, 1.27mm pitch, double rows +Through hole pin header THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x20_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x20 1.27mm double row +0 +40 +40 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Horizontal +Through hole angled pin header, 2x21, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Vertical +Through hole straight pin header, 2x21, 1.27mm pitch, double rows +Through hole pin header THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x21_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x21 1.27mm double row +0 +42 +42 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Horizontal +Through hole angled pin header, 2x22, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Vertical +Through hole straight pin header, 2x22, 1.27mm pitch, double rows +Through hole pin header THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x22_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x22 1.27mm double row +0 +44 +44 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Horizontal +Through hole angled pin header, 2x23, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Vertical +Through hole straight pin header, 2x23, 1.27mm pitch, double rows +Through hole pin header THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x23_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x23 1.27mm double row +0 +46 +46 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Horizontal +Through hole angled pin header, 2x24, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Vertical +Through hole straight pin header, 2x24, 1.27mm pitch, double rows +Through hole pin header THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x24_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x24 1.27mm double row +0 +48 +48 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Horizontal +Through hole angled pin header, 2x25, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Vertical +Through hole straight pin header, 2x25, 1.27mm pitch, double rows +Through hole pin header THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x25_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x25 1.27mm double row +0 +50 +50 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Horizontal +Through hole angled pin header, 2x26, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Vertical +Through hole straight pin header, 2x26, 1.27mm pitch, double rows +Through hole pin header THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x26_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x26 1.27mm double row +0 +52 +52 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Horizontal +Through hole angled pin header, 2x27, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Vertical +Through hole straight pin header, 2x27, 1.27mm pitch, double rows +Through hole pin header THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x27_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x27 1.27mm double row +0 +54 +54 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Horizontal +Through hole angled pin header, 2x28, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Vertical +Through hole straight pin header, 2x28, 1.27mm pitch, double rows +Through hole pin header THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x28_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x28 1.27mm double row +0 +56 +56 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Horizontal +Through hole angled pin header, 2x29, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Vertical +Through hole straight pin header, 2x29, 1.27mm pitch, double rows +Through hole pin header THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x29_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x29 1.27mm double row +0 +58 +58 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Horizontal +Through hole angled pin header, 2x30, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Vertical +Through hole straight pin header, 2x30, 1.27mm pitch, double rows +Through hole pin header THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x30_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x30 1.27mm double row +0 +60 +60 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Horizontal +Through hole angled pin header, 2x31, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Vertical +Through hole straight pin header, 2x31, 1.27mm pitch, double rows +Through hole pin header THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x31_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x31 1.27mm double row +0 +62 +62 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Horizontal +Through hole angled pin header, 2x32, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Vertical +Through hole straight pin header, 2x32, 1.27mm pitch, double rows +Through hole pin header THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x32_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x32 1.27mm double row +0 +64 +64 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Horizontal +Through hole angled pin header, 2x33, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Vertical +Through hole straight pin header, 2x33, 1.27mm pitch, double rows +Through hole pin header THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x33_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x33 1.27mm double row +0 +66 +66 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Horizontal +Through hole angled pin header, 2x34, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Vertical +Through hole straight pin header, 2x34, 1.27mm pitch, double rows +Through hole pin header THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x34_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x34 1.27mm double row +0 +68 +68 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Horizontal +Through hole angled pin header, 2x35, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Vertical +Through hole straight pin header, 2x35, 1.27mm pitch, double rows +Through hole pin header THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x35_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x35 1.27mm double row +0 +70 +70 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Horizontal +Through hole angled pin header, 2x36, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Vertical +Through hole straight pin header, 2x36, 1.27mm pitch, double rows +Through hole pin header THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x36_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x36 1.27mm double row +0 +72 +72 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Horizontal +Through hole angled pin header, 2x37, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Vertical +Through hole straight pin header, 2x37, 1.27mm pitch, double rows +Through hole pin header THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x37_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x37 1.27mm double row +0 +74 +74 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Horizontal +Through hole angled pin header, 2x38, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Vertical +Through hole straight pin header, 2x38, 1.27mm pitch, double rows +Through hole pin header THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x38_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x38 1.27mm double row +0 +76 +76 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Horizontal +Through hole angled pin header, 2x39, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Vertical +Through hole straight pin header, 2x39, 1.27mm pitch, double rows +Through hole pin header THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x39_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x39 1.27mm double row +0 +78 +78 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Horizontal +Through hole angled pin header, 2x40, 1.27mm pitch, 4.0mm pin length, double rows +Through hole angled pin header THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Vertical +Through hole straight pin header, 2x40, 1.27mm pitch, double rows +Through hole pin header THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_1.27mm +PinHeader_2x40_P1.27mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 1.27mm pitch, double rows +Surface mounted pin header SMD 2x40 1.27mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_1x01_P2.00mm_Horizontal +Through hole angled pin header, 1x01, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinHeader_2.00mm +PinHeader_1x01_P2.00mm_Vertical +Through hole straight pin header, 1x01, 2.00mm pitch, single row +Through hole pin header THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Horizontal +Through hole angled pin header, 1x02, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical +Through hole straight pin header, 1x02, 2.00mm pitch, single row +Through hole pin header THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 2.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x02_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 2.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Horizontal +Through hole angled pin header, 1x03, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical +Through hole straight pin header, 1x03, 2.00mm pitch, single row +Through hole pin header THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 2.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x03_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 2.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Horizontal +Through hole angled pin header, 1x04, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical +Through hole straight pin header, 1x04, 2.00mm pitch, single row +Through hole pin header THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 2.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 2.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Horizontal +Through hole angled pin header, 1x05, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical +Through hole straight pin header, 1x05, 2.00mm pitch, single row +Through hole pin header THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 2.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x05_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 2.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Horizontal +Through hole angled pin header, 1x06, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical +Through hole straight pin header, 1x06, 2.00mm pitch, single row +Through hole pin header THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 2.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x06_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 2.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Horizontal +Through hole angled pin header, 1x07, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical +Through hole straight pin header, 1x07, 2.00mm pitch, single row +Through hole pin header THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 2.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x07_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 2.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Horizontal +Through hole angled pin header, 1x08, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical +Through hole straight pin header, 1x08, 2.00mm pitch, single row +Through hole pin header THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 2.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x08_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 2.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Horizontal +Through hole angled pin header, 1x09, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical +Through hole straight pin header, 1x09, 2.00mm pitch, single row +Through hole pin header THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 2.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x09_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 2.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Horizontal +Through hole angled pin header, 1x10, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical +Through hole straight pin header, 1x10, 2.00mm pitch, single row +Through hole pin header THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 2.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x10_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 2.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Horizontal +Through hole angled pin header, 1x11, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical +Through hole straight pin header, 1x11, 2.00mm pitch, single row +Through hole pin header THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 2.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x11_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 2.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Horizontal +Through hole angled pin header, 1x12, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical +Through hole straight pin header, 1x12, 2.00mm pitch, single row +Through hole pin header THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 2.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x12_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 2.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Horizontal +Through hole angled pin header, 1x13, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical +Through hole straight pin header, 1x13, 2.00mm pitch, single row +Through hole pin header THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 2.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x13_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 2.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Horizontal +Through hole angled pin header, 1x14, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical +Through hole straight pin header, 1x14, 2.00mm pitch, single row +Through hole pin header THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 2.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x14_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 2.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Horizontal +Through hole angled pin header, 1x15, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical +Through hole straight pin header, 1x15, 2.00mm pitch, single row +Through hole pin header THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 2.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x15_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 2.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Horizontal +Through hole angled pin header, 1x16, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical +Through hole straight pin header, 1x16, 2.00mm pitch, single row +Through hole pin header THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 2.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x16_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 2.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Horizontal +Through hole angled pin header, 1x17, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical +Through hole straight pin header, 1x17, 2.00mm pitch, single row +Through hole pin header THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 2.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x17_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 2.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Horizontal +Through hole angled pin header, 1x18, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical +Through hole straight pin header, 1x18, 2.00mm pitch, single row +Through hole pin header THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 2.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x18_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 2.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Horizontal +Through hole angled pin header, 1x19, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical +Through hole straight pin header, 1x19, 2.00mm pitch, single row +Through hole pin header THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 2.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x19_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 2.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Horizontal +Through hole angled pin header, 1x20, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical +Through hole straight pin header, 1x20, 2.00mm pitch, single row +Through hole pin header THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 2.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x20_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 2.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Horizontal +Through hole angled pin header, 1x21, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical +Through hole straight pin header, 1x21, 2.00mm pitch, single row +Through hole pin header THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 2.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x21_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 2.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Horizontal +Through hole angled pin header, 1x22, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical +Through hole straight pin header, 1x22, 2.00mm pitch, single row +Through hole pin header THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 2.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x22_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 2.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Horizontal +Through hole angled pin header, 1x23, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical +Through hole straight pin header, 1x23, 2.00mm pitch, single row +Through hole pin header THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 2.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x23_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 2.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Horizontal +Through hole angled pin header, 1x24, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical +Through hole straight pin header, 1x24, 2.00mm pitch, single row +Through hole pin header THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 2.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x24_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 2.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Horizontal +Through hole angled pin header, 1x25, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical +Through hole straight pin header, 1x25, 2.00mm pitch, single row +Through hole pin header THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 2.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x25_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 2.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Horizontal +Through hole angled pin header, 1x26, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical +Through hole straight pin header, 1x26, 2.00mm pitch, single row +Through hole pin header THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 2.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x26_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 2.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Horizontal +Through hole angled pin header, 1x27, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical +Through hole straight pin header, 1x27, 2.00mm pitch, single row +Through hole pin header THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 2.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x27_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 2.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Horizontal +Through hole angled pin header, 1x28, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical +Through hole straight pin header, 1x28, 2.00mm pitch, single row +Through hole pin header THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 2.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x28_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 2.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Horizontal +Through hole angled pin header, 1x29, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical +Through hole straight pin header, 1x29, 2.00mm pitch, single row +Through hole pin header THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 2.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x29_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 2.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Horizontal +Through hole angled pin header, 1x30, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical +Through hole straight pin header, 1x30, 2.00mm pitch, single row +Through hole pin header THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 2.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x30_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 2.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Horizontal +Through hole angled pin header, 1x31, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical +Through hole straight pin header, 1x31, 2.00mm pitch, single row +Through hole pin header THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 2.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x31_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 2.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Horizontal +Through hole angled pin header, 1x32, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical +Through hole straight pin header, 1x32, 2.00mm pitch, single row +Through hole pin header THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 2.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x32_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 2.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Horizontal +Through hole angled pin header, 1x33, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical +Through hole straight pin header, 1x33, 2.00mm pitch, single row +Through hole pin header THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 2.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x33_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 2.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Horizontal +Through hole angled pin header, 1x34, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical +Through hole straight pin header, 1x34, 2.00mm pitch, single row +Through hole pin header THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 2.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x34_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 2.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Horizontal +Through hole angled pin header, 1x35, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical +Through hole straight pin header, 1x35, 2.00mm pitch, single row +Through hole pin header THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 2.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x35_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 2.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Horizontal +Through hole angled pin header, 1x36, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical +Through hole straight pin header, 1x36, 2.00mm pitch, single row +Through hole pin header THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 2.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x36_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 2.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Horizontal +Through hole angled pin header, 1x37, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical +Through hole straight pin header, 1x37, 2.00mm pitch, single row +Through hole pin header THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 2.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x37_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 2.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Horizontal +Through hole angled pin header, 1x38, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical +Through hole straight pin header, 1x38, 2.00mm pitch, single row +Through hole pin header THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 2.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x38_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 2.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Horizontal +Through hole angled pin header, 1x39, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical +Through hole straight pin header, 1x39, 2.00mm pitch, single row +Through hole pin header THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 2.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x39_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 2.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Horizontal +Through hole angled pin header, 1x40, 2.00mm pitch, 4.2mm pin length, single row +Through hole angled pin header THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical +Through hole straight pin header, 1x40, 2.00mm pitch, single row +Through hole pin header THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 2.00mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 2.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_1x40_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 2.00mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 2.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Horizontal +Through hole angled pin header, 2x01, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Vertical +Through hole straight pin header, 2x01, 2.00mm pitch, double rows +Through hole pin header THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x01_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x01 2.00mm double row +0 +2 +2 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Horizontal +Through hole angled pin header, 2x02, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Vertical +Through hole straight pin header, 2x02, 2.00mm pitch, double rows +Through hole pin header THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x02_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x02 2.00mm double row +0 +4 +4 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Horizontal +Through hole angled pin header, 2x03, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Vertical +Through hole straight pin header, 2x03, 2.00mm pitch, double rows +Through hole pin header THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x03_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x03 2.00mm double row +0 +6 +6 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Horizontal +Through hole angled pin header, 2x04, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Vertical +Through hole straight pin header, 2x04, 2.00mm pitch, double rows +Through hole pin header THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x04_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x04 2.00mm double row +0 +8 +8 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Horizontal +Through hole angled pin header, 2x05, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Vertical +Through hole straight pin header, 2x05, 2.00mm pitch, double rows +Through hole pin header THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x05_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x05 2.00mm double row +0 +10 +10 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Horizontal +Through hole angled pin header, 2x06, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Vertical +Through hole straight pin header, 2x06, 2.00mm pitch, double rows +Through hole pin header THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x06_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x06 2.00mm double row +0 +12 +12 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Horizontal +Through hole angled pin header, 2x07, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Vertical +Through hole straight pin header, 2x07, 2.00mm pitch, double rows +Through hole pin header THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x07_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x07 2.00mm double row +0 +14 +14 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Horizontal +Through hole angled pin header, 2x08, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Vertical +Through hole straight pin header, 2x08, 2.00mm pitch, double rows +Through hole pin header THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x08_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x08 2.00mm double row +0 +16 +16 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Horizontal +Through hole angled pin header, 2x09, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Vertical +Through hole straight pin header, 2x09, 2.00mm pitch, double rows +Through hole pin header THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x09_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x09 2.00mm double row +0 +18 +18 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Horizontal +Through hole angled pin header, 2x10, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Vertical +Through hole straight pin header, 2x10, 2.00mm pitch, double rows +Through hole pin header THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x10_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x10 2.00mm double row +0 +20 +20 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Horizontal +Through hole angled pin header, 2x11, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Vertical +Through hole straight pin header, 2x11, 2.00mm pitch, double rows +Through hole pin header THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x11_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x11 2.00mm double row +0 +22 +22 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Horizontal +Through hole angled pin header, 2x12, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Vertical +Through hole straight pin header, 2x12, 2.00mm pitch, double rows +Through hole pin header THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x12_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x12 2.00mm double row +0 +24 +24 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Horizontal +Through hole angled pin header, 2x13, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Vertical +Through hole straight pin header, 2x13, 2.00mm pitch, double rows +Through hole pin header THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x13_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x13 2.00mm double row +0 +26 +26 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Horizontal +Through hole angled pin header, 2x14, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Vertical +Through hole straight pin header, 2x14, 2.00mm pitch, double rows +Through hole pin header THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x14_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x14 2.00mm double row +0 +28 +28 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Horizontal +Through hole angled pin header, 2x15, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Vertical +Through hole straight pin header, 2x15, 2.00mm pitch, double rows +Through hole pin header THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x15_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x15 2.00mm double row +0 +30 +30 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Horizontal +Through hole angled pin header, 2x16, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Vertical +Through hole straight pin header, 2x16, 2.00mm pitch, double rows +Through hole pin header THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x16_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x16 2.00mm double row +0 +32 +32 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Horizontal +Through hole angled pin header, 2x17, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Vertical +Through hole straight pin header, 2x17, 2.00mm pitch, double rows +Through hole pin header THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x17_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x17 2.00mm double row +0 +34 +34 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Horizontal +Through hole angled pin header, 2x18, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Vertical +Through hole straight pin header, 2x18, 2.00mm pitch, double rows +Through hole pin header THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x18_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x18 2.00mm double row +0 +36 +36 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Horizontal +Through hole angled pin header, 2x19, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Vertical +Through hole straight pin header, 2x19, 2.00mm pitch, double rows +Through hole pin header THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x19_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x19 2.00mm double row +0 +38 +38 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Horizontal +Through hole angled pin header, 2x20, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Vertical +Through hole straight pin header, 2x20, 2.00mm pitch, double rows +Through hole pin header THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x20_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x20 2.00mm double row +0 +40 +40 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Horizontal +Through hole angled pin header, 2x21, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Vertical +Through hole straight pin header, 2x21, 2.00mm pitch, double rows +Through hole pin header THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x21_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x21 2.00mm double row +0 +42 +42 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Horizontal +Through hole angled pin header, 2x22, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Vertical +Through hole straight pin header, 2x22, 2.00mm pitch, double rows +Through hole pin header THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x22_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x22 2.00mm double row +0 +44 +44 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Horizontal +Through hole angled pin header, 2x23, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Vertical +Through hole straight pin header, 2x23, 2.00mm pitch, double rows +Through hole pin header THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x23_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x23 2.00mm double row +0 +46 +46 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Horizontal +Through hole angled pin header, 2x24, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Vertical +Through hole straight pin header, 2x24, 2.00mm pitch, double rows +Through hole pin header THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x24_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x24 2.00mm double row +0 +48 +48 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Horizontal +Through hole angled pin header, 2x25, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Vertical +Through hole straight pin header, 2x25, 2.00mm pitch, double rows +Through hole pin header THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x25_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x25 2.00mm double row +0 +50 +50 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Horizontal +Through hole angled pin header, 2x26, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Vertical +Through hole straight pin header, 2x26, 2.00mm pitch, double rows +Through hole pin header THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x26_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x26 2.00mm double row +0 +52 +52 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Horizontal +Through hole angled pin header, 2x27, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Vertical +Through hole straight pin header, 2x27, 2.00mm pitch, double rows +Through hole pin header THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x27_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x27 2.00mm double row +0 +54 +54 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Horizontal +Through hole angled pin header, 2x28, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Vertical +Through hole straight pin header, 2x28, 2.00mm pitch, double rows +Through hole pin header THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x28_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x28 2.00mm double row +0 +56 +56 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Horizontal +Through hole angled pin header, 2x29, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Vertical +Through hole straight pin header, 2x29, 2.00mm pitch, double rows +Through hole pin header THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x29_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x29 2.00mm double row +0 +58 +58 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Horizontal +Through hole angled pin header, 2x30, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Vertical +Through hole straight pin header, 2x30, 2.00mm pitch, double rows +Through hole pin header THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x30_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x30 2.00mm double row +0 +60 +60 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Horizontal +Through hole angled pin header, 2x31, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Vertical +Through hole straight pin header, 2x31, 2.00mm pitch, double rows +Through hole pin header THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x31_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x31 2.00mm double row +0 +62 +62 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Horizontal +Through hole angled pin header, 2x32, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Vertical +Through hole straight pin header, 2x32, 2.00mm pitch, double rows +Through hole pin header THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x32_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x32 2.00mm double row +0 +64 +64 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Horizontal +Through hole angled pin header, 2x33, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Vertical +Through hole straight pin header, 2x33, 2.00mm pitch, double rows +Through hole pin header THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x33_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x33 2.00mm double row +0 +66 +66 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Horizontal +Through hole angled pin header, 2x34, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Vertical +Through hole straight pin header, 2x34, 2.00mm pitch, double rows +Through hole pin header THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x34_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x34 2.00mm double row +0 +68 +68 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Horizontal +Through hole angled pin header, 2x35, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Vertical +Through hole straight pin header, 2x35, 2.00mm pitch, double rows +Through hole pin header THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x35_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x35 2.00mm double row +0 +70 +70 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Horizontal +Through hole angled pin header, 2x36, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Vertical +Through hole straight pin header, 2x36, 2.00mm pitch, double rows +Through hole pin header THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x36_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x36 2.00mm double row +0 +72 +72 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Horizontal +Through hole angled pin header, 2x37, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Vertical +Through hole straight pin header, 2x37, 2.00mm pitch, double rows +Through hole pin header THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x37_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x37 2.00mm double row +0 +74 +74 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Horizontal +Through hole angled pin header, 2x38, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Vertical +Through hole straight pin header, 2x38, 2.00mm pitch, double rows +Through hole pin header THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x38_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x38 2.00mm double row +0 +76 +76 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Horizontal +Through hole angled pin header, 2x39, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Vertical +Through hole straight pin header, 2x39, 2.00mm pitch, double rows +Through hole pin header THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x39_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x39 2.00mm double row +0 +78 +78 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Horizontal +Through hole angled pin header, 2x40, 2.00mm pitch, 4.2mm pin length, double rows +Through hole angled pin header THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Vertical +Through hole straight pin header, 2x40, 2.00mm pitch, double rows +Through hole pin header THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.00mm +PinHeader_2x40_P2.00mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 2.00mm pitch, double rows +Surface mounted pin header SMD 2x40 2.00mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_1x01_P2.54mm_Horizontal +Through hole angled pin header, 1x01, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinHeader_2.54mm +PinHeader_1x01_P2.54mm_Vertical +Through hole straight pin header, 1x01, 2.54mm pitch, single row +Through hole pin header THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Horizontal +Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical +Through hole straight pin header, 1x02, 2.54mm pitch, single row +Through hole pin header THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x02 2.54mm single row style1 pin1 left +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x02 2.54mm single row style2 pin1 right +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Horizontal +Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical +Through hole straight pin header, 1x03, 2.54mm pitch, single row +Through hole pin header THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x03 2.54mm single row style1 pin1 left +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x03 2.54mm single row style2 pin1 right +0 +3 +3 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Horizontal +Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical +Through hole straight pin header, 1x04, 2.54mm pitch, single row +Through hole pin header THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x04 2.54mm single row style1 pin1 left +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x04 2.54mm single row style2 pin1 right +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Horizontal +Through hole angled pin header, 1x05, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical +Through hole straight pin header, 1x05, 2.54mm pitch, single row +Through hole pin header THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x05 2.54mm single row style1 pin1 left +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x05 2.54mm single row style2 pin1 right +0 +5 +5 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Horizontal +Through hole angled pin header, 1x06, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical +Through hole straight pin header, 1x06, 2.54mm pitch, single row +Through hole pin header THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x06 2.54mm single row style1 pin1 left +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x06 2.54mm single row style2 pin1 right +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Horizontal +Through hole angled pin header, 1x07, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical +Through hole straight pin header, 1x07, 2.54mm pitch, single row +Through hole pin header THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x07 2.54mm single row style1 pin1 left +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x07 2.54mm single row style2 pin1 right +0 +7 +7 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Horizontal +Through hole angled pin header, 1x08, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical +Through hole straight pin header, 1x08, 2.54mm pitch, single row +Through hole pin header THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x08 2.54mm single row style1 pin1 left +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x08 2.54mm single row style2 pin1 right +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Horizontal +Through hole angled pin header, 1x09, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical +Through hole straight pin header, 1x09, 2.54mm pitch, single row +Through hole pin header THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x09 2.54mm single row style1 pin1 left +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x09 2.54mm single row style2 pin1 right +0 +9 +9 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Horizontal +Through hole angled pin header, 1x10, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical +Through hole straight pin header, 1x10, 2.54mm pitch, single row +Through hole pin header THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x10 2.54mm single row style1 pin1 left +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x10 2.54mm single row style2 pin1 right +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Horizontal +Through hole angled pin header, 1x11, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical +Through hole straight pin header, 1x11, 2.54mm pitch, single row +Through hole pin header THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x11 2.54mm single row style1 pin1 left +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x11 2.54mm single row style2 pin1 right +0 +11 +11 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Horizontal +Through hole angled pin header, 1x12, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical +Through hole straight pin header, 1x12, 2.54mm pitch, single row +Through hole pin header THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x12 2.54mm single row style1 pin1 left +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x12 2.54mm single row style2 pin1 right +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Horizontal +Through hole angled pin header, 1x13, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical +Through hole straight pin header, 1x13, 2.54mm pitch, single row +Through hole pin header THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x13 2.54mm single row style1 pin1 left +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x13 2.54mm single row style2 pin1 right +0 +13 +13 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Horizontal +Through hole angled pin header, 1x14, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical +Through hole straight pin header, 1x14, 2.54mm pitch, single row +Through hole pin header THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x14 2.54mm single row style1 pin1 left +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x14 2.54mm single row style2 pin1 right +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Horizontal +Through hole angled pin header, 1x15, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical +Through hole straight pin header, 1x15, 2.54mm pitch, single row +Through hole pin header THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x15 2.54mm single row style1 pin1 left +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x15 2.54mm single row style2 pin1 right +0 +15 +15 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Horizontal +Through hole angled pin header, 1x16, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical +Through hole straight pin header, 1x16, 2.54mm pitch, single row +Through hole pin header THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x16 2.54mm single row style1 pin1 left +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x16 2.54mm single row style2 pin1 right +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Horizontal +Through hole angled pin header, 1x17, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical +Through hole straight pin header, 1x17, 2.54mm pitch, single row +Through hole pin header THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x17 2.54mm single row style1 pin1 left +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x17 2.54mm single row style2 pin1 right +0 +17 +17 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Horizontal +Through hole angled pin header, 1x18, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical +Through hole straight pin header, 1x18, 2.54mm pitch, single row +Through hole pin header THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x18 2.54mm single row style1 pin1 left +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x18 2.54mm single row style2 pin1 right +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Horizontal +Through hole angled pin header, 1x19, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical +Through hole straight pin header, 1x19, 2.54mm pitch, single row +Through hole pin header THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x19 2.54mm single row style1 pin1 left +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x19 2.54mm single row style2 pin1 right +0 +19 +19 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Horizontal +Through hole angled pin header, 1x20, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical +Through hole straight pin header, 1x20, 2.54mm pitch, single row +Through hole pin header THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x20 2.54mm single row style1 pin1 left +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x20 2.54mm single row style2 pin1 right +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Horizontal +Through hole angled pin header, 1x21, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical +Through hole straight pin header, 1x21, 2.54mm pitch, single row +Through hole pin header THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x21 2.54mm single row style1 pin1 left +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x21 2.54mm single row style2 pin1 right +0 +21 +21 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Horizontal +Through hole angled pin header, 1x22, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical +Through hole straight pin header, 1x22, 2.54mm pitch, single row +Through hole pin header THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x22 2.54mm single row style1 pin1 left +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x22 2.54mm single row style2 pin1 right +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Horizontal +Through hole angled pin header, 1x23, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical +Through hole straight pin header, 1x23, 2.54mm pitch, single row +Through hole pin header THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x23 2.54mm single row style1 pin1 left +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x23 2.54mm single row style2 pin1 right +0 +23 +23 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Horizontal +Through hole angled pin header, 1x24, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical +Through hole straight pin header, 1x24, 2.54mm pitch, single row +Through hole pin header THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x24 2.54mm single row style1 pin1 left +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x24 2.54mm single row style2 pin1 right +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Horizontal +Through hole angled pin header, 1x25, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical +Through hole straight pin header, 1x25, 2.54mm pitch, single row +Through hole pin header THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x25 2.54mm single row style1 pin1 left +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x25 2.54mm single row style2 pin1 right +0 +25 +25 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Horizontal +Through hole angled pin header, 1x26, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical +Through hole straight pin header, 1x26, 2.54mm pitch, single row +Through hole pin header THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x26 2.54mm single row style1 pin1 left +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x26 2.54mm single row style2 pin1 right +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Horizontal +Through hole angled pin header, 1x27, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical +Through hole straight pin header, 1x27, 2.54mm pitch, single row +Through hole pin header THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x27 2.54mm single row style1 pin1 left +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x27 2.54mm single row style2 pin1 right +0 +27 +27 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Horizontal +Through hole angled pin header, 1x28, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical +Through hole straight pin header, 1x28, 2.54mm pitch, single row +Through hole pin header THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x28 2.54mm single row style1 pin1 left +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x28 2.54mm single row style2 pin1 right +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Horizontal +Through hole angled pin header, 1x29, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical +Through hole straight pin header, 1x29, 2.54mm pitch, single row +Through hole pin header THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x29 2.54mm single row style1 pin1 left +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x29 2.54mm single row style2 pin1 right +0 +29 +29 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Horizontal +Through hole angled pin header, 1x30, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical +Through hole straight pin header, 1x30, 2.54mm pitch, single row +Through hole pin header THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x30 2.54mm single row style1 pin1 left +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x30 2.54mm single row style2 pin1 right +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Horizontal +Through hole angled pin header, 1x31, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical +Through hole straight pin header, 1x31, 2.54mm pitch, single row +Through hole pin header THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x31 2.54mm single row style1 pin1 left +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x31 2.54mm single row style2 pin1 right +0 +31 +31 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Horizontal +Through hole angled pin header, 1x32, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical +Through hole straight pin header, 1x32, 2.54mm pitch, single row +Through hole pin header THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x32 2.54mm single row style1 pin1 left +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x32 2.54mm single row style2 pin1 right +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Horizontal +Through hole angled pin header, 1x33, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical +Through hole straight pin header, 1x33, 2.54mm pitch, single row +Through hole pin header THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x33 2.54mm single row style1 pin1 left +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x33 2.54mm single row style2 pin1 right +0 +33 +33 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Horizontal +Through hole angled pin header, 1x34, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical +Through hole straight pin header, 1x34, 2.54mm pitch, single row +Through hole pin header THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x34 2.54mm single row style1 pin1 left +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x34 2.54mm single row style2 pin1 right +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Horizontal +Through hole angled pin header, 1x35, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical +Through hole straight pin header, 1x35, 2.54mm pitch, single row +Through hole pin header THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x35 2.54mm single row style1 pin1 left +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x35 2.54mm single row style2 pin1 right +0 +35 +35 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Horizontal +Through hole angled pin header, 1x36, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical +Through hole straight pin header, 1x36, 2.54mm pitch, single row +Through hole pin header THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x36 2.54mm single row style1 pin1 left +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x36 2.54mm single row style2 pin1 right +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Horizontal +Through hole angled pin header, 1x37, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical +Through hole straight pin header, 1x37, 2.54mm pitch, single row +Through hole pin header THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x37 2.54mm single row style1 pin1 left +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x37 2.54mm single row style2 pin1 right +0 +37 +37 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Horizontal +Through hole angled pin header, 1x38, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical +Through hole straight pin header, 1x38, 2.54mm pitch, single row +Through hole pin header THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x38 2.54mm single row style1 pin1 left +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x38 2.54mm single row style2 pin1 right +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Horizontal +Through hole angled pin header, 1x39, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical +Through hole straight pin header, 1x39, 2.54mm pitch, single row +Through hole pin header THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x39 2.54mm single row style1 pin1 left +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x39 2.54mm single row style2 pin1 right +0 +39 +39 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Horizontal +Through hole angled pin header, 1x40, 2.54mm pitch, 6mm pin length, single row +Through hole angled pin header THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical +Through hole straight pin header, 1x40, 2.54mm pitch, single row +Through hole pin header THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) +Surface mounted pin header SMD 1x40 2.54mm single row style1 pin1 left +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) +Surface mounted pin header SMD 1x40 2.54mm single row style2 pin1 right +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Horizontal +Through hole angled pin header, 2x01, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Vertical +Through hole straight pin header, 2x01, 2.54mm pitch, double rows +Through hole pin header THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x01_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x01, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x01 2.54mm double row +0 +2 +2 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Horizontal +Through hole angled pin header, 2x02, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Vertical +Through hole straight pin header, 2x02, 2.54mm pitch, double rows +Through hole pin header THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x02_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x02, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x02 2.54mm double row +0 +4 +4 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Horizontal +Through hole angled pin header, 2x03, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Vertical +Through hole straight pin header, 2x03, 2.54mm pitch, double rows +Through hole pin header THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x03_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x03, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x03 2.54mm double row +0 +6 +6 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Horizontal +Through hole angled pin header, 2x04, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Vertical +Through hole straight pin header, 2x04, 2.54mm pitch, double rows +Through hole pin header THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x04_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x04, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x04 2.54mm double row +0 +8 +8 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Horizontal +Through hole angled pin header, 2x05, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Vertical +Through hole straight pin header, 2x05, 2.54mm pitch, double rows +Through hole pin header THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x05_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x05, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x05 2.54mm double row +0 +10 +10 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Horizontal +Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Vertical +Through hole straight pin header, 2x06, 2.54mm pitch, double rows +Through hole pin header THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x06_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x06, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x06 2.54mm double row +0 +12 +12 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Horizontal +Through hole angled pin header, 2x07, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Vertical +Through hole straight pin header, 2x07, 2.54mm pitch, double rows +Through hole pin header THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x07_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x07, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x07 2.54mm double row +0 +14 +14 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Horizontal +Through hole angled pin header, 2x08, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Vertical +Through hole straight pin header, 2x08, 2.54mm pitch, double rows +Through hole pin header THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x08_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x08, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x08 2.54mm double row +0 +16 +16 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Horizontal +Through hole angled pin header, 2x09, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Vertical +Through hole straight pin header, 2x09, 2.54mm pitch, double rows +Through hole pin header THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x09_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x09, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x09 2.54mm double row +0 +18 +18 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Horizontal +Through hole angled pin header, 2x10, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Vertical +Through hole straight pin header, 2x10, 2.54mm pitch, double rows +Through hole pin header THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x10_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x10, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x10 2.54mm double row +0 +20 +20 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Horizontal +Through hole angled pin header, 2x11, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Vertical +Through hole straight pin header, 2x11, 2.54mm pitch, double rows +Through hole pin header THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x11_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x11, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x11 2.54mm double row +0 +22 +22 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Horizontal +Through hole angled pin header, 2x12, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Vertical +Through hole straight pin header, 2x12, 2.54mm pitch, double rows +Through hole pin header THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x12_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x12, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x12 2.54mm double row +0 +24 +24 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Horizontal +Through hole angled pin header, 2x13, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Vertical +Through hole straight pin header, 2x13, 2.54mm pitch, double rows +Through hole pin header THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x13_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x13, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x13 2.54mm double row +0 +26 +26 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Horizontal +Through hole angled pin header, 2x14, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Vertical +Through hole straight pin header, 2x14, 2.54mm pitch, double rows +Through hole pin header THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x14_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x14, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x14 2.54mm double row +0 +28 +28 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Horizontal +Through hole angled pin header, 2x15, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Vertical +Through hole straight pin header, 2x15, 2.54mm pitch, double rows +Through hole pin header THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x15_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x15, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x15 2.54mm double row +0 +30 +30 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Horizontal +Through hole angled pin header, 2x16, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Vertical +Through hole straight pin header, 2x16, 2.54mm pitch, double rows +Through hole pin header THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x16_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x16, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x16 2.54mm double row +0 +32 +32 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Horizontal +Through hole angled pin header, 2x17, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Vertical +Through hole straight pin header, 2x17, 2.54mm pitch, double rows +Through hole pin header THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x17_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x17, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x17 2.54mm double row +0 +34 +34 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Horizontal +Through hole angled pin header, 2x18, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Vertical +Through hole straight pin header, 2x18, 2.54mm pitch, double rows +Through hole pin header THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x18_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x18, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x18 2.54mm double row +0 +36 +36 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Horizontal +Through hole angled pin header, 2x19, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Vertical +Through hole straight pin header, 2x19, 2.54mm pitch, double rows +Through hole pin header THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x19_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x19, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x19 2.54mm double row +0 +38 +38 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Horizontal +Through hole angled pin header, 2x20, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Vertical +Through hole straight pin header, 2x20, 2.54mm pitch, double rows +Through hole pin header THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x20_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x20, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x20 2.54mm double row +0 +40 +40 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Horizontal +Through hole angled pin header, 2x21, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Vertical +Through hole straight pin header, 2x21, 2.54mm pitch, double rows +Through hole pin header THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x21_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x21, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x21 2.54mm double row +0 +42 +42 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Horizontal +Through hole angled pin header, 2x22, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Vertical +Through hole straight pin header, 2x22, 2.54mm pitch, double rows +Through hole pin header THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x22_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x22, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x22 2.54mm double row +0 +44 +44 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Horizontal +Through hole angled pin header, 2x23, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Vertical +Through hole straight pin header, 2x23, 2.54mm pitch, double rows +Through hole pin header THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x23_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x23, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x23 2.54mm double row +0 +46 +46 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Horizontal +Through hole angled pin header, 2x24, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Vertical +Through hole straight pin header, 2x24, 2.54mm pitch, double rows +Through hole pin header THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x24_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x24, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x24 2.54mm double row +0 +48 +48 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Horizontal +Through hole angled pin header, 2x25, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Vertical +Through hole straight pin header, 2x25, 2.54mm pitch, double rows +Through hole pin header THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x25_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x25, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x25 2.54mm double row +0 +50 +50 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Horizontal +Through hole angled pin header, 2x26, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Vertical +Through hole straight pin header, 2x26, 2.54mm pitch, double rows +Through hole pin header THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x26_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x26, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x26 2.54mm double row +0 +52 +52 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Horizontal +Through hole angled pin header, 2x27, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Vertical +Through hole straight pin header, 2x27, 2.54mm pitch, double rows +Through hole pin header THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x27_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x27, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x27 2.54mm double row +0 +54 +54 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Horizontal +Through hole angled pin header, 2x28, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Vertical +Through hole straight pin header, 2x28, 2.54mm pitch, double rows +Through hole pin header THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x28_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x28, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x28 2.54mm double row +0 +56 +56 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Horizontal +Through hole angled pin header, 2x29, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Vertical +Through hole straight pin header, 2x29, 2.54mm pitch, double rows +Through hole pin header THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x29_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x29, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x29 2.54mm double row +0 +58 +58 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Horizontal +Through hole angled pin header, 2x30, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Vertical +Through hole straight pin header, 2x30, 2.54mm pitch, double rows +Through hole pin header THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x30_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x30, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x30 2.54mm double row +0 +60 +60 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Horizontal +Through hole angled pin header, 2x31, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Vertical +Through hole straight pin header, 2x31, 2.54mm pitch, double rows +Through hole pin header THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x31_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x31, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x31 2.54mm double row +0 +62 +62 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Horizontal +Through hole angled pin header, 2x32, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Vertical +Through hole straight pin header, 2x32, 2.54mm pitch, double rows +Through hole pin header THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x32_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x32, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x32 2.54mm double row +0 +64 +64 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Horizontal +Through hole angled pin header, 2x33, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Vertical +Through hole straight pin header, 2x33, 2.54mm pitch, double rows +Through hole pin header THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x33_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x33, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x33 2.54mm double row +0 +66 +66 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Horizontal +Through hole angled pin header, 2x34, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Vertical +Through hole straight pin header, 2x34, 2.54mm pitch, double rows +Through hole pin header THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x34_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x34, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x34 2.54mm double row +0 +68 +68 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Horizontal +Through hole angled pin header, 2x35, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Vertical +Through hole straight pin header, 2x35, 2.54mm pitch, double rows +Through hole pin header THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x35_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x35, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x35 2.54mm double row +0 +70 +70 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Horizontal +Through hole angled pin header, 2x36, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Vertical +Through hole straight pin header, 2x36, 2.54mm pitch, double rows +Through hole pin header THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x36_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x36, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x36 2.54mm double row +0 +72 +72 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Horizontal +Through hole angled pin header, 2x37, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Vertical +Through hole straight pin header, 2x37, 2.54mm pitch, double rows +Through hole pin header THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x37_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x37, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x37 2.54mm double row +0 +74 +74 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Horizontal +Through hole angled pin header, 2x38, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Vertical +Through hole straight pin header, 2x38, 2.54mm pitch, double rows +Through hole pin header THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x38_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x38, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x38 2.54mm double row +0 +76 +76 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Horizontal +Through hole angled pin header, 2x39, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Vertical +Through hole straight pin header, 2x39, 2.54mm pitch, double rows +Through hole pin header THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x39_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x39, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x39 2.54mm double row +0 +78 +78 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Horizontal +Through hole angled pin header, 2x40, 2.54mm pitch, 6mm pin length, double rows +Through hole angled pin header THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Vertical +Through hole straight pin header, 2x40, 2.54mm pitch, double rows +Through hole pin header THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinHeader_2.54mm +PinHeader_2x40_P2.54mm_Vertical_SMD +surface-mounted straight pin header, 2x40, 2.54mm pitch, double rows +Surface mounted pin header SMD 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical +Through hole straight socket strip, 1x02, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x02 1.00mm single row +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x02 1.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x02_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x02 1.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical +Through hole straight socket strip, 1x03, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x03 1.00mm single row +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x03 1.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x03_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x03 1.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical +Through hole straight socket strip, 1x04, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x04 1.00mm single row +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x04 1.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x04_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x04 1.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical +Through hole straight socket strip, 1x05, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x05 1.00mm single row +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x05 1.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x05_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x05 1.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical +Through hole straight socket strip, 1x06, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x06 1.00mm single row +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x06 1.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x06_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x06 1.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical +Through hole straight socket strip, 1x07, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x07 1.00mm single row +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x07 1.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x07_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x07 1.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical +Through hole straight socket strip, 1x08, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x08 1.00mm single row +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x08 1.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x08_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x08 1.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical +Through hole straight socket strip, 1x09, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x09 1.00mm single row +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x09 1.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x09_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x09 1.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical +Through hole straight socket strip, 1x10, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x10 1.00mm single row +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x10 1.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x10_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x10 1.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical +Through hole straight socket strip, 1x11, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x11 1.00mm single row +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x11 1.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x11_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x11 1.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical +Through hole straight socket strip, 1x12, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x12 1.00mm single row +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x12 1.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x12_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x12 1.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical +Through hole straight socket strip, 1x13, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x13 1.00mm single row +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x13 1.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x13_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x13 1.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical +Through hole straight socket strip, 1x14, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x14 1.00mm single row +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x14 1.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x14_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x14 1.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical +Through hole straight socket strip, 1x15, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x15 1.00mm single row +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x15 1.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x15_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x15 1.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical +Through hole straight socket strip, 1x16, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x16 1.00mm single row +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x16 1.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x16_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x16 1.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical +Through hole straight socket strip, 1x17, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x17 1.00mm single row +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x17 1.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x17_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x17 1.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical +Through hole straight socket strip, 1x18, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x18 1.00mm single row +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x18 1.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x18_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x18 1.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical +Through hole straight socket strip, 1x19, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x19 1.00mm single row +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x19 1.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x19_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x19 1.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical +Through hole straight socket strip, 1x20, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x20 1.00mm single row +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x20 1.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x20_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x20 1.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical +Through hole straight socket strip, 1x21, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x21 1.00mm single row +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x21 1.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x21_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x21 1.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical +Through hole straight socket strip, 1x22, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x22 1.00mm single row +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x22 1.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x22_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x22 1.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical +Through hole straight socket strip, 1x23, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x23 1.00mm single row +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x23 1.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x23_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x23 1.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical +Through hole straight socket strip, 1x24, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x24 1.00mm single row +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x24 1.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x24_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x24 1.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical +Through hole straight socket strip, 1x25, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x25 1.00mm single row +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x25 1.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x25_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x25 1.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical +Through hole straight socket strip, 1x26, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x26 1.00mm single row +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x26 1.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x26_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x26 1.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical +Through hole straight socket strip, 1x27, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x27 1.00mm single row +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x27 1.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x27_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x27 1.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical +Through hole straight socket strip, 1x28, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x28 1.00mm single row +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x28 1.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x28_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x28 1.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical +Through hole straight socket strip, 1x29, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x29 1.00mm single row +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x29 1.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x29_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x29 1.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical +Through hole straight socket strip, 1x30, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x30 1.00mm single row +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x30 1.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x30_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x30 1.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical +Through hole straight socket strip, 1x31, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x31 1.00mm single row +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x31 1.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x31_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x31 1.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical +Through hole straight socket strip, 1x32, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x32 1.00mm single row +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x32 1.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x32_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x32 1.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical +Through hole straight socket strip, 1x33, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x33 1.00mm single row +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x33 1.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x33_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x33 1.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical +Through hole straight socket strip, 1x34, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x34 1.00mm single row +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x34 1.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x34_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x34 1.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical +Through hole straight socket strip, 1x35, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x35 1.00mm single row +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x35 1.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x35_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x35 1.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical +Through hole straight socket strip, 1x36, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x36 1.00mm single row +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x36 1.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x36_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x36 1.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical +Through hole straight socket strip, 1x37, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x37 1.00mm single row +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x37 1.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x37_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x37 1.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical +Through hole straight socket strip, 1x38, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x38 1.00mm single row +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x38 1.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x38_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x38 1.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical +Through hole straight socket strip, 1x39, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x39 1.00mm single row +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x39 1.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x39_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x39 1.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical +Through hole straight socket strip, 1x40, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated +Through hole socket strip THT 1x40 1.00mm single row +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x40 1.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_1x40_P1.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated +Surface mounted socket strip SMD 1x40 1.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_2x02_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x02 1.00mm double row +0 +4 +4 +Connector_PinSocket_1.00mm +PinSocket_2x03_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x03 1.00mm double row +0 +6 +6 +Connector_PinSocket_1.00mm +PinSocket_2x04_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x04 1.00mm double row +0 +8 +8 +Connector_PinSocket_1.00mm +PinSocket_2x05_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x05 1.00mm double row +0 +10 +10 +Connector_PinSocket_1.00mm +PinSocket_2x06_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x06 1.00mm double row +0 +12 +12 +Connector_PinSocket_1.00mm +PinSocket_2x07_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x07 1.00mm double row +0 +14 +14 +Connector_PinSocket_1.00mm +PinSocket_2x08_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x08 1.00mm double row +0 +16 +16 +Connector_PinSocket_1.00mm +PinSocket_2x09_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x09 1.00mm double row +0 +18 +18 +Connector_PinSocket_1.00mm +PinSocket_2x10_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x10 1.00mm double row +0 +20 +20 +Connector_PinSocket_1.00mm +PinSocket_2x11_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x11 1.00mm double row +0 +22 +22 +Connector_PinSocket_1.00mm +PinSocket_2x12_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x12 1.00mm double row +0 +24 +24 +Connector_PinSocket_1.00mm +PinSocket_2x13_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x13 1.00mm double row +0 +26 +26 +Connector_PinSocket_1.00mm +PinSocket_2x14_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x14 1.00mm double row +0 +28 +28 +Connector_PinSocket_1.00mm +PinSocket_2x15_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x15 1.00mm double row +0 +30 +30 +Connector_PinSocket_1.00mm +PinSocket_2x16_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x16 1.00mm double row +0 +32 +32 +Connector_PinSocket_1.00mm +PinSocket_2x17_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x17 1.00mm double row +0 +34 +34 +Connector_PinSocket_1.00mm +PinSocket_2x18_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x18 1.00mm double row +0 +36 +36 +Connector_PinSocket_1.00mm +PinSocket_2x19_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x19 1.00mm double row +0 +38 +38 +Connector_PinSocket_1.00mm +PinSocket_2x20_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x20 1.00mm double row +0 +40 +40 +Connector_PinSocket_1.00mm +PinSocket_2x21_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x21 1.00mm double row +0 +42 +42 +Connector_PinSocket_1.00mm +PinSocket_2x22_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x22 1.00mm double row +0 +44 +44 +Connector_PinSocket_1.00mm +PinSocket_2x23_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x23 1.00mm double row +0 +46 +46 +Connector_PinSocket_1.00mm +PinSocket_2x24_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x24 1.00mm double row +0 +48 +48 +Connector_PinSocket_1.00mm +PinSocket_2x25_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x25 1.00mm double row +0 +50 +50 +Connector_PinSocket_1.00mm +PinSocket_2x26_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x26 1.00mm double row +0 +52 +52 +Connector_PinSocket_1.00mm +PinSocket_2x27_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x27 1.00mm double row +0 +54 +54 +Connector_PinSocket_1.00mm +PinSocket_2x28_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x28 1.00mm double row +0 +56 +56 +Connector_PinSocket_1.00mm +PinSocket_2x29_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x29 1.00mm double row +0 +58 +58 +Connector_PinSocket_1.00mm +PinSocket_2x30_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x30 1.00mm double row +0 +60 +60 +Connector_PinSocket_1.00mm +PinSocket_2x31_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x31 1.00mm double row +0 +62 +62 +Connector_PinSocket_1.00mm +PinSocket_2x32_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x32 1.00mm double row +0 +64 +64 +Connector_PinSocket_1.00mm +PinSocket_2x33_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x33 1.00mm double row +0 +66 +66 +Connector_PinSocket_1.00mm +PinSocket_2x34_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x34 1.00mm double row +0 +68 +68 +Connector_PinSocket_1.00mm +PinSocket_2x35_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x35 1.00mm double row +0 +70 +70 +Connector_PinSocket_1.00mm +PinSocket_2x36_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x36 1.00mm double row +0 +72 +72 +Connector_PinSocket_1.00mm +PinSocket_2x37_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x37 1.00mm double row +0 +74 +74 +Connector_PinSocket_1.00mm +PinSocket_2x38_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x38 1.00mm double row +0 +76 +76 +Connector_PinSocket_1.00mm +PinSocket_2x39_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x39 1.00mm double row +0 +78 +78 +Connector_PinSocket_1.00mm +PinSocket_2x40_P1.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated +Surface mounted socket strip SMD 2x40 1.00mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_1x01_P1.27mm_Vertical +Through hole straight socket strip, 1x01, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 1.27mm single row +0 +1 +1 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical +Through hole straight socket strip, 1x02, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 1.27mm single row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x02 1.27mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x02_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x02 1.27mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical +Through hole straight socket strip, 1x03, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 1.27mm single row +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x03 1.27mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x03_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x03 1.27mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical +Through hole straight socket strip, 1x04, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 1.27mm single row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x04 1.27mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x04_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x04 1.27mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical +Through hole straight socket strip, 1x05, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 1.27mm single row +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x05 1.27mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x05_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x05 1.27mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical +Through hole straight socket strip, 1x06, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 1.27mm single row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x06 1.27mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x06_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x06 1.27mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical +Through hole straight socket strip, 1x07, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 1.27mm single row +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x07 1.27mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x07_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x07 1.27mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical +Through hole straight socket strip, 1x08, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 1.27mm single row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x08 1.27mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x08_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x08 1.27mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical +Through hole straight socket strip, 1x09, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 1.27mm single row +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x09 1.27mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x09_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x09 1.27mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical +Through hole straight socket strip, 1x10, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 1.27mm single row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x10 1.27mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x10_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x10 1.27mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical +Through hole straight socket strip, 1x11, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 1.27mm single row +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x11 1.27mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x11_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x11 1.27mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical +Through hole straight socket strip, 1x12, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 1.27mm single row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x12 1.27mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x12_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x12 1.27mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical +Through hole straight socket strip, 1x13, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 1.27mm single row +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x13 1.27mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x13_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x13 1.27mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical +Through hole straight socket strip, 1x14, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 1.27mm single row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x14 1.27mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x14_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x14 1.27mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical +Through hole straight socket strip, 1x15, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 1.27mm single row +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x15 1.27mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x15_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x15 1.27mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical +Through hole straight socket strip, 1x16, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 1.27mm single row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x16 1.27mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x16_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x16 1.27mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical +Through hole straight socket strip, 1x17, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 1.27mm single row +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x17 1.27mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x17_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x17 1.27mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical +Through hole straight socket strip, 1x18, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 1.27mm single row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x18 1.27mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x18_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x18 1.27mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical +Through hole straight socket strip, 1x19, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 1.27mm single row +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x19 1.27mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x19_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x19 1.27mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical +Through hole straight socket strip, 1x20, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 1.27mm single row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x20 1.27mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x20_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x20 1.27mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical +Through hole straight socket strip, 1x21, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 1.27mm single row +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x21 1.27mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x21_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x21 1.27mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical +Through hole straight socket strip, 1x22, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 1.27mm single row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x22 1.27mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x22_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x22 1.27mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical +Through hole straight socket strip, 1x23, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 1.27mm single row +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x23 1.27mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x23_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x23 1.27mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical +Through hole straight socket strip, 1x24, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 1.27mm single row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x24 1.27mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x24_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x24 1.27mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical +Through hole straight socket strip, 1x25, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 1.27mm single row +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x25 1.27mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x25_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x25 1.27mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical +Through hole straight socket strip, 1x26, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 1.27mm single row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x26 1.27mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x26_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x26 1.27mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical +Through hole straight socket strip, 1x27, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 1.27mm single row +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x27 1.27mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x27_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x27 1.27mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical +Through hole straight socket strip, 1x28, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 1.27mm single row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x28 1.27mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x28_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x28 1.27mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical +Through hole straight socket strip, 1x29, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 1.27mm single row +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x29 1.27mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x29_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x29 1.27mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical +Through hole straight socket strip, 1x30, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 1.27mm single row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x30 1.27mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x30_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x30 1.27mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical +Through hole straight socket strip, 1x31, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 1.27mm single row +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x31 1.27mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x31_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x31 1.27mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical +Through hole straight socket strip, 1x32, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 1.27mm single row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x32 1.27mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x32_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x32 1.27mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical +Through hole straight socket strip, 1x33, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 1.27mm single row +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x33 1.27mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x33_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x33 1.27mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical +Through hole straight socket strip, 1x34, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 1.27mm single row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x34 1.27mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x34_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x34 1.27mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical +Through hole straight socket strip, 1x35, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 1.27mm single row +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x35 1.27mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x35_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x35 1.27mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical +Through hole straight socket strip, 1x36, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 1.27mm single row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x36 1.27mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x36_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x36 1.27mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical +Through hole straight socket strip, 1x37, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 1.27mm single row +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x37 1.27mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x37_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x37 1.27mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical +Through hole straight socket strip, 1x38, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 1.27mm single row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x38 1.27mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x38_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x38 1.27mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical +Through hole straight socket strip, 1x39, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 1.27mm single row +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x39 1.27mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x39_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x39 1.27mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical +Through hole straight socket strip, 1x40, 1.27mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 1.27mm single row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x40 1.27mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_1x40_P1.27mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated +Surface mounted socket strip SMD 1x40 1.27mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x01_P1.27mm_Vertical +Through hole straight socket strip, 2x01, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 1.27mm double row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_2x01_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x01 1.27mm double row +0 +2 +2 +Connector_PinSocket_1.27mm +PinSocket_2x02_P1.27mm_Vertical +Through hole straight socket strip, 2x02, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 1.27mm double row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_2x02_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x02 1.27mm double row +0 +4 +4 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Horizontal +Through hole angled socket strip, 2x03, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Vertical +Through hole straight socket strip, 2x03, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x03_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x03 1.27mm double row +0 +6 +6 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Horizontal +Through hole angled socket strip, 2x04, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Vertical +Through hole straight socket strip, 2x04, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x04_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x04 1.27mm double row +0 +8 +8 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Horizontal +Through hole angled socket strip, 2x05, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Vertical +Through hole straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x05_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x05 1.27mm double row +0 +10 +10 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Horizontal +Through hole angled socket strip, 2x06, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Vertical +Through hole straight socket strip, 2x06, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x06_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x06 1.27mm double row +0 +12 +12 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Horizontal +Through hole angled socket strip, 2x07, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Vertical +Through hole straight socket strip, 2x07, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x07_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x07 1.27mm double row +0 +14 +14 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Horizontal +Through hole angled socket strip, 2x08, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Vertical +Through hole straight socket strip, 2x08, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x08_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x08 1.27mm double row +0 +16 +16 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Horizontal +Through hole angled socket strip, 2x09, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Vertical +Through hole straight socket strip, 2x09, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x09_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x09 1.27mm double row +0 +18 +18 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Horizontal +Through hole angled socket strip, 2x10, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Vertical +Through hole straight socket strip, 2x10, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x10_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x10 1.27mm double row +0 +20 +20 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Horizontal +Through hole angled socket strip, 2x11, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Vertical +Through hole straight socket strip, 2x11, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x11_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x11 1.27mm double row +0 +22 +22 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Horizontal +Through hole angled socket strip, 2x12, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Vertical +Through hole straight socket strip, 2x12, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x12_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x12 1.27mm double row +0 +24 +24 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Horizontal +Through hole angled socket strip, 2x13, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Vertical +Through hole straight socket strip, 2x13, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x13_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x13 1.27mm double row +0 +26 +26 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Horizontal +Through hole angled socket strip, 2x14, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Vertical +Through hole straight socket strip, 2x14, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x14_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x14 1.27mm double row +0 +28 +28 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Horizontal +Through hole angled socket strip, 2x15, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Vertical +Through hole straight socket strip, 2x15, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x15_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x15 1.27mm double row +0 +30 +30 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Horizontal +Through hole angled socket strip, 2x16, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Vertical +Through hole straight socket strip, 2x16, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x16_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x16 1.27mm double row +0 +32 +32 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Horizontal +Through hole angled socket strip, 2x17, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Vertical +Through hole straight socket strip, 2x17, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x17_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x17 1.27mm double row +0 +34 +34 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Horizontal +Through hole angled socket strip, 2x18, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Vertical +Through hole straight socket strip, 2x18, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x18_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x18 1.27mm double row +0 +36 +36 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Horizontal +Through hole angled socket strip, 2x19, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Vertical +Through hole straight socket strip, 2x19, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x19_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x19 1.27mm double row +0 +38 +38 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Horizontal +Through hole angled socket strip, 2x20, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Vertical +Through hole straight socket strip, 2x20, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x20_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x20 1.27mm double row +0 +40 +40 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Horizontal +Through hole angled socket strip, 2x21, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Vertical +Through hole straight socket strip, 2x21, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x21_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x21 1.27mm double row +0 +42 +42 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Horizontal +Through hole angled socket strip, 2x22, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Vertical +Through hole straight socket strip, 2x22, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x22_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x22 1.27mm double row +0 +44 +44 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Horizontal +Through hole angled socket strip, 2x23, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Vertical +Through hole straight socket strip, 2x23, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x23_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x23 1.27mm double row +0 +46 +46 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Horizontal +Through hole angled socket strip, 2x24, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Vertical +Through hole straight socket strip, 2x24, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x24_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x24 1.27mm double row +0 +48 +48 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Horizontal +Through hole angled socket strip, 2x25, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Vertical +Through hole straight socket strip, 2x25, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x25_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x25 1.27mm double row +0 +50 +50 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Horizontal +Through hole angled socket strip, 2x26, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Vertical +Through hole straight socket strip, 2x26, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x26_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x26 1.27mm double row +0 +52 +52 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Horizontal +Through hole angled socket strip, 2x27, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Vertical +Through hole straight socket strip, 2x27, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x27_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x27 1.27mm double row +0 +54 +54 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Horizontal +Through hole angled socket strip, 2x28, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Vertical +Through hole straight socket strip, 2x28, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x28_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x28 1.27mm double row +0 +56 +56 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Horizontal +Through hole angled socket strip, 2x29, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Vertical +Through hole straight socket strip, 2x29, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x29_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x29 1.27mm double row +0 +58 +58 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Horizontal +Through hole angled socket strip, 2x30, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Vertical +Through hole straight socket strip, 2x30, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x30_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x30 1.27mm double row +0 +60 +60 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Horizontal +Through hole angled socket strip, 2x31, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Vertical +Through hole straight socket strip, 2x31, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x31_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x31 1.27mm double row +0 +62 +62 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Horizontal +Through hole angled socket strip, 2x32, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Vertical +Through hole straight socket strip, 2x32, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x32_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x32 1.27mm double row +0 +64 +64 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Horizontal +Through hole angled socket strip, 2x33, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Vertical +Through hole straight socket strip, 2x33, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x33_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x33 1.27mm double row +0 +66 +66 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Horizontal +Through hole angled socket strip, 2x34, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Vertical +Through hole straight socket strip, 2x34, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x34_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x34 1.27mm double row +0 +68 +68 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Horizontal +Through hole angled socket strip, 2x35, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Vertical +Through hole straight socket strip, 2x35, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x35_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x35 1.27mm double row +0 +70 +70 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Horizontal +Through hole angled socket strip, 2x36, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Vertical +Through hole straight socket strip, 2x36, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x36_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x36 1.27mm double row +0 +72 +72 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Horizontal +Through hole angled socket strip, 2x37, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Vertical +Through hole straight socket strip, 2x37, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x37_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x37 1.27mm double row +0 +74 +74 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Horizontal +Through hole angled socket strip, 2x38, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Vertical +Through hole straight socket strip, 2x38, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x38_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x38 1.27mm double row +0 +76 +76 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Horizontal +Through hole angled socket strip, 2x39, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Vertical +Through hole straight socket strip, 2x39, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x39_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x39 1.27mm double row +0 +78 +78 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Horizontal +Through hole angled socket strip, 2x40, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Vertical +Through hole straight socket strip, 2x40, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x40_P1.27mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated +Surface mounted socket strip SMD 2x40 1.27mm double row +0 +80 +80 +Connector_PinSocket_1.27mm +PinSocket_2x41_P1.27mm_Horizontal +Through hole angled socket strip, 2x41, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x41 1.27mm double row +0 +82 +82 +Connector_PinSocket_1.27mm +PinSocket_2x42_P1.27mm_Horizontal +Through hole angled socket strip, 2x42, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x42 1.27mm double row +0 +84 +84 +Connector_PinSocket_1.27mm +PinSocket_2x43_P1.27mm_Horizontal +Through hole angled socket strip, 2x43, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x43 1.27mm double row +0 +86 +86 +Connector_PinSocket_1.27mm +PinSocket_2x44_P1.27mm_Horizontal +Through hole angled socket strip, 2x44, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x44 1.27mm double row +0 +88 +88 +Connector_PinSocket_1.27mm +PinSocket_2x45_P1.27mm_Horizontal +Through hole angled socket strip, 2x45, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x45 1.27mm double row +0 +90 +90 +Connector_PinSocket_1.27mm +PinSocket_2x46_P1.27mm_Horizontal +Through hole angled socket strip, 2x46, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x46 1.27mm double row +0 +92 +92 +Connector_PinSocket_1.27mm +PinSocket_2x47_P1.27mm_Horizontal +Through hole angled socket strip, 2x47, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x47 1.27mm double row +0 +94 +94 +Connector_PinSocket_1.27mm +PinSocket_2x48_P1.27mm_Horizontal +Through hole angled socket strip, 2x48, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x48 1.27mm double row +0 +96 +96 +Connector_PinSocket_1.27mm +PinSocket_2x49_P1.27mm_Horizontal +Through hole angled socket strip, 2x49, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x49 1.27mm double row +0 +98 +98 +Connector_PinSocket_1.27mm +PinSocket_2x50_P1.27mm_Horizontal +Through hole angled socket strip, 2x50, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated +Through hole angled socket strip THT 2x50 1.27mm double row +0 +100 +100 +Connector_PinSocket_2.00mm +PinSocket_1x01_P2.00mm_Horizontal +Through hole angled socket strip, 1x01, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinSocket_2.00mm +PinSocket_1x01_P2.00mm_Vertical +Through hole straight socket strip, 1x01, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 2.00mm single row +0 +1 +1 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Horizontal +Through hole angled socket strip, 1x02, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical +Through hole straight socket strip, 1x02, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 2.00mm single row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x02 2.00mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x02_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x02 2.00mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Horizontal +Through hole angled socket strip, 1x03, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical +Through hole straight socket strip, 1x03, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 2.00mm single row +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x03 2.00mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x03_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x03 2.00mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Horizontal +Through hole angled socket strip, 1x04, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical +Through hole straight socket strip, 1x04, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 2.00mm single row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x04 2.00mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x04_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x04 2.00mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Horizontal +Through hole angled socket strip, 1x05, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical +Through hole straight socket strip, 1x05, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 2.00mm single row +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x05 2.00mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x05_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x05 2.00mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Horizontal +Through hole angled socket strip, 1x06, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical +Through hole straight socket strip, 1x06, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 2.00mm single row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x06 2.00mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x06_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x06 2.00mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Horizontal +Through hole angled socket strip, 1x07, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical +Through hole straight socket strip, 1x07, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 2.00mm single row +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x07 2.00mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x07_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x07 2.00mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Horizontal +Through hole angled socket strip, 1x08, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical +Through hole straight socket strip, 1x08, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 2.00mm single row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x08 2.00mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x08_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x08 2.00mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Horizontal +Through hole angled socket strip, 1x09, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical +Through hole straight socket strip, 1x09, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 2.00mm single row +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x09 2.00mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x09_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x09 2.00mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Horizontal +Through hole angled socket strip, 1x10, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical +Through hole straight socket strip, 1x10, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 2.00mm single row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x10 2.00mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x10_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x10 2.00mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Horizontal +Through hole angled socket strip, 1x11, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical +Through hole straight socket strip, 1x11, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 2.00mm single row +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x11 2.00mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x11_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x11 2.00mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Horizontal +Through hole angled socket strip, 1x12, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical +Through hole straight socket strip, 1x12, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 2.00mm single row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x12 2.00mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x12_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x12 2.00mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Horizontal +Through hole angled socket strip, 1x13, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical +Through hole straight socket strip, 1x13, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 2.00mm single row +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x13 2.00mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x13_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x13 2.00mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Horizontal +Through hole angled socket strip, 1x14, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical +Through hole straight socket strip, 1x14, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 2.00mm single row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x14 2.00mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x14_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x14 2.00mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Horizontal +Through hole angled socket strip, 1x15, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical +Through hole straight socket strip, 1x15, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 2.00mm single row +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x15 2.00mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x15_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x15 2.00mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Horizontal +Through hole angled socket strip, 1x16, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical +Through hole straight socket strip, 1x16, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 2.00mm single row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x16 2.00mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x16_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x16 2.00mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Horizontal +Through hole angled socket strip, 1x17, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical +Through hole straight socket strip, 1x17, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 2.00mm single row +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x17 2.00mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x17_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x17 2.00mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Horizontal +Through hole angled socket strip, 1x18, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical +Through hole straight socket strip, 1x18, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 2.00mm single row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x18 2.00mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x18_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x18 2.00mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Horizontal +Through hole angled socket strip, 1x19, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical +Through hole straight socket strip, 1x19, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 2.00mm single row +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x19 2.00mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x19_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x19 2.00mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Horizontal +Through hole angled socket strip, 1x20, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical +Through hole straight socket strip, 1x20, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 2.00mm single row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x20 2.00mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x20_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x20 2.00mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Horizontal +Through hole angled socket strip, 1x21, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical +Through hole straight socket strip, 1x21, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 2.00mm single row +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x21 2.00mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x21_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x21 2.00mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Horizontal +Through hole angled socket strip, 1x22, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical +Through hole straight socket strip, 1x22, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 2.00mm single row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x22 2.00mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x22_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x22 2.00mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Horizontal +Through hole angled socket strip, 1x23, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical +Through hole straight socket strip, 1x23, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 2.00mm single row +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x23 2.00mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x23_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x23 2.00mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Horizontal +Through hole angled socket strip, 1x24, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical +Through hole straight socket strip, 1x24, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 2.00mm single row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x24 2.00mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x24_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x24 2.00mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Horizontal +Through hole angled socket strip, 1x25, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical +Through hole straight socket strip, 1x25, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 2.00mm single row +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x25 2.00mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x25_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x25 2.00mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Horizontal +Through hole angled socket strip, 1x26, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical +Through hole straight socket strip, 1x26, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 2.00mm single row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x26 2.00mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x26_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x26 2.00mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Horizontal +Through hole angled socket strip, 1x27, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical +Through hole straight socket strip, 1x27, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 2.00mm single row +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x27 2.00mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x27_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x27 2.00mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Horizontal +Through hole angled socket strip, 1x28, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical +Through hole straight socket strip, 1x28, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 2.00mm single row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x28 2.00mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x28_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x28 2.00mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Horizontal +Through hole angled socket strip, 1x29, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical +Through hole straight socket strip, 1x29, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 2.00mm single row +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x29 2.00mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x29_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x29 2.00mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Horizontal +Through hole angled socket strip, 1x30, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical +Through hole straight socket strip, 1x30, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 2.00mm single row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x30 2.00mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x30_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x30 2.00mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Horizontal +Through hole angled socket strip, 1x31, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical +Through hole straight socket strip, 1x31, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 2.00mm single row +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x31 2.00mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x31_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x31 2.00mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Horizontal +Through hole angled socket strip, 1x32, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical +Through hole straight socket strip, 1x32, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 2.00mm single row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x32 2.00mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x32_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x32 2.00mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Horizontal +Through hole angled socket strip, 1x33, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical +Through hole straight socket strip, 1x33, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 2.00mm single row +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x33 2.00mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x33_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x33 2.00mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Horizontal +Through hole angled socket strip, 1x34, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical +Through hole straight socket strip, 1x34, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 2.00mm single row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x34 2.00mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x34_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x34 2.00mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Horizontal +Through hole angled socket strip, 1x35, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical +Through hole straight socket strip, 1x35, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 2.00mm single row +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x35 2.00mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x35_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x35 2.00mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Horizontal +Through hole angled socket strip, 1x36, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical +Through hole straight socket strip, 1x36, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 2.00mm single row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x36 2.00mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x36_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x36 2.00mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Horizontal +Through hole angled socket strip, 1x37, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical +Through hole straight socket strip, 1x37, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 2.00mm single row +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x37 2.00mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x37_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x37 2.00mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Horizontal +Through hole angled socket strip, 1x38, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical +Through hole straight socket strip, 1x38, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 2.00mm single row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x38 2.00mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x38_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x38 2.00mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Horizontal +Through hole angled socket strip, 1x39, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical +Through hole straight socket strip, 1x39, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 2.00mm single row +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x39 2.00mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x39_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x39 2.00mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Horizontal +Through hole angled socket strip, 1x40, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical +Through hole straight socket strip, 1x40, 2.00mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 2.00mm single row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x40 2.00mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_1x40_P2.00mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated +Surface mounted socket strip SMD 1x40 2.00mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Horizontal +Through hole angled socket strip, 2x01, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Vertical +Through hole straight socket strip, 2x01, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x01_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x01 2.00mm double row +0 +2 +2 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Horizontal +Through hole angled socket strip, 2x02, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Vertical +Through hole straight socket strip, 2x02, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x02_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x02 2.00mm double row +0 +4 +4 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Horizontal +Through hole angled socket strip, 2x03, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Vertical +Through hole straight socket strip, 2x03, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x03_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x03 2.00mm double row +0 +6 +6 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Horizontal +Through hole angled socket strip, 2x04, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Vertical +Through hole straight socket strip, 2x04, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x04_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x04 2.00mm double row +0 +8 +8 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Horizontal +Through hole angled socket strip, 2x05, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Vertical +Through hole straight socket strip, 2x05, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x05_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x05 2.00mm double row +0 +10 +10 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Horizontal +Through hole angled socket strip, 2x06, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Vertical +Through hole straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x06_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x06 2.00mm double row +0 +12 +12 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Horizontal +Through hole angled socket strip, 2x07, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Vertical +Through hole straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x07_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x07 2.00mm double row +0 +14 +14 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Horizontal +Through hole angled socket strip, 2x08, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Vertical +Through hole straight socket strip, 2x08, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x08_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x08 2.00mm double row +0 +16 +16 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Horizontal +Through hole angled socket strip, 2x09, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Vertical +Through hole straight socket strip, 2x09, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x09_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x09 2.00mm double row +0 +18 +18 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Horizontal +Through hole angled socket strip, 2x10, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Vertical +Through hole straight socket strip, 2x10, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x10_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x10 2.00mm double row +0 +20 +20 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Horizontal +Through hole angled socket strip, 2x11, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Vertical +Through hole straight socket strip, 2x11, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x11_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x11 2.00mm double row +0 +22 +22 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Horizontal +Through hole angled socket strip, 2x12, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Vertical +Through hole straight socket strip, 2x12, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x12_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x12 2.00mm double row +0 +24 +24 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Horizontal +Through hole angled socket strip, 2x13, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Vertical +Through hole straight socket strip, 2x13, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x13_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x13 2.00mm double row +0 +26 +26 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Horizontal +Through hole angled socket strip, 2x14, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Vertical +Through hole straight socket strip, 2x14, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x14_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x14 2.00mm double row +0 +28 +28 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Horizontal +Through hole angled socket strip, 2x15, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Vertical +Through hole straight socket strip, 2x15, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x15_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x15 2.00mm double row +0 +30 +30 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Horizontal +Through hole angled socket strip, 2x16, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Vertical +Through hole straight socket strip, 2x16, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x16_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x16 2.00mm double row +0 +32 +32 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Horizontal +Through hole angled socket strip, 2x17, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Vertical +Through hole straight socket strip, 2x17, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x17_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x17 2.00mm double row +0 +34 +34 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Horizontal +Through hole angled socket strip, 2x18, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Vertical +Through hole straight socket strip, 2x18, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x18_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x18 2.00mm double row +0 +36 +36 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Horizontal +Through hole angled socket strip, 2x19, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Vertical +Through hole straight socket strip, 2x19, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x19_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x19 2.00mm double row +0 +38 +38 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Horizontal +Through hole angled socket strip, 2x20, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Vertical +Through hole straight socket strip, 2x20, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x20_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x20 2.00mm double row +0 +40 +40 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Horizontal +Through hole angled socket strip, 2x21, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Vertical +Through hole straight socket strip, 2x21, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x21_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x21 2.00mm double row +0 +42 +42 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Horizontal +Through hole angled socket strip, 2x22, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Vertical +Through hole straight socket strip, 2x22, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x22_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x22 2.00mm double row +0 +44 +44 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Horizontal +Through hole angled socket strip, 2x23, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Vertical +Through hole straight socket strip, 2x23, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x23_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x23 2.00mm double row +0 +46 +46 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Horizontal +Through hole angled socket strip, 2x24, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Vertical +Through hole straight socket strip, 2x24, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x24_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x24 2.00mm double row +0 +48 +48 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Horizontal +Through hole angled socket strip, 2x25, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Vertical +Through hole straight socket strip, 2x25, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x25_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x25 2.00mm double row +0 +50 +50 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Horizontal +Through hole angled socket strip, 2x26, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Vertical +Through hole straight socket strip, 2x26, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x26_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x26 2.00mm double row +0 +52 +52 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Horizontal +Through hole angled socket strip, 2x27, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Vertical +Through hole straight socket strip, 2x27, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x27_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x27 2.00mm double row +0 +54 +54 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Horizontal +Through hole angled socket strip, 2x28, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Vertical +Through hole straight socket strip, 2x28, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x28_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x28 2.00mm double row +0 +56 +56 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Horizontal +Through hole angled socket strip, 2x29, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Vertical +Through hole straight socket strip, 2x29, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x29_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x29 2.00mm double row +0 +58 +58 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Horizontal +Through hole angled socket strip, 2x30, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Vertical +Through hole straight socket strip, 2x30, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x30_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x30 2.00mm double row +0 +60 +60 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Horizontal +Through hole angled socket strip, 2x31, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Vertical +Through hole straight socket strip, 2x31, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x31_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x31 2.00mm double row +0 +62 +62 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Horizontal +Through hole angled socket strip, 2x32, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Vertical +Through hole straight socket strip, 2x32, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x32_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x32 2.00mm double row +0 +64 +64 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Horizontal +Through hole angled socket strip, 2x33, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Vertical +Through hole straight socket strip, 2x33, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x33_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x33 2.00mm double row +0 +66 +66 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Horizontal +Through hole angled socket strip, 2x34, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Vertical +Through hole straight socket strip, 2x34, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x34_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x34 2.00mm double row +0 +68 +68 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Horizontal +Through hole angled socket strip, 2x35, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Vertical +Through hole straight socket strip, 2x35, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x35_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x35 2.00mm double row +0 +70 +70 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Horizontal +Through hole angled socket strip, 2x36, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Vertical +Through hole straight socket strip, 2x36, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x36_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x36 2.00mm double row +0 +72 +72 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Horizontal +Through hole angled socket strip, 2x37, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Vertical +Through hole straight socket strip, 2x37, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x37_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x37 2.00mm double row +0 +74 +74 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Horizontal +Through hole angled socket strip, 2x38, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Vertical +Through hole straight socket strip, 2x38, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x38_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x38 2.00mm double row +0 +76 +76 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Horizontal +Through hole angled socket strip, 2x39, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Vertical +Through hole straight socket strip, 2x39, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x39_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x39 2.00mm double row +0 +78 +78 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Horizontal +Through hole angled socket strip, 2x40, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Vertical +Through hole straight socket strip, 2x40, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.00mm +PinSocket_2x40_P2.00mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x40 2.00mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Horizontal +Through hole angled socket strip, 1x01, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Vertical +Through hole straight socket strip, 1x01, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Horizontal +Through hole angled socket strip, 1x02, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical +Through hole straight socket strip, 1x02, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Horizontal +Through hole angled socket strip, 1x03, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical +Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Horizontal +Through hole angled socket strip, 1x04, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical +Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Horizontal +Through hole angled socket strip, 1x05, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical +Through hole straight socket strip, 1x05, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Horizontal +Through hole angled socket strip, 1x06, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical +Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Horizontal +Through hole angled socket strip, 1x07, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical +Through hole straight socket strip, 1x07, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Horizontal +Through hole angled socket strip, 1x08, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical +Through hole straight socket strip, 1x08, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Horizontal +Through hole angled socket strip, 1x09, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical +Through hole straight socket strip, 1x09, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Horizontal +Through hole angled socket strip, 1x10, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical +Through hole straight socket strip, 1x10, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Horizontal +Through hole angled socket strip, 1x11, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical +Through hole straight socket strip, 1x11, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Horizontal +Through hole angled socket strip, 1x12, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical +Through hole straight socket strip, 1x12, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Horizontal +Through hole angled socket strip, 1x13, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical +Through hole straight socket strip, 1x13, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Horizontal +Through hole angled socket strip, 1x14, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical +Through hole straight socket strip, 1x14, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Horizontal +Through hole angled socket strip, 1x15, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical +Through hole straight socket strip, 1x15, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Horizontal +Through hole angled socket strip, 1x16, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical +Through hole straight socket strip, 1x16, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Horizontal +Through hole angled socket strip, 1x17, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical +Through hole straight socket strip, 1x17, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Horizontal +Through hole angled socket strip, 1x18, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical +Through hole straight socket strip, 1x18, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Horizontal +Through hole angled socket strip, 1x19, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical +Through hole straight socket strip, 1x19, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Horizontal +Through hole angled socket strip, 1x20, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical +Through hole straight socket strip, 1x20, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Horizontal +Through hole angled socket strip, 1x21, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical +Through hole straight socket strip, 1x21, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Horizontal +Through hole angled socket strip, 1x22, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical +Through hole straight socket strip, 1x22, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Horizontal +Through hole angled socket strip, 1x23, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical +Through hole straight socket strip, 1x23, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Horizontal +Through hole angled socket strip, 1x24, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical +Through hole straight socket strip, 1x24, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Horizontal +Through hole angled socket strip, 1x25, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical +Through hole straight socket strip, 1x25, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Horizontal +Through hole angled socket strip, 1x26, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical +Through hole straight socket strip, 1x26, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Horizontal +Through hole angled socket strip, 1x27, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical +Through hole straight socket strip, 1x27, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Horizontal +Through hole angled socket strip, 1x28, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical +Through hole straight socket strip, 1x28, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Horizontal +Through hole angled socket strip, 1x29, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical +Through hole straight socket strip, 1x29, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Horizontal +Through hole angled socket strip, 1x30, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical +Through hole straight socket strip, 1x30, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Horizontal +Through hole angled socket strip, 1x31, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical +Through hole straight socket strip, 1x31, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Horizontal +Through hole angled socket strip, 1x32, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical +Through hole straight socket strip, 1x32, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Horizontal +Through hole angled socket strip, 1x33, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical +Through hole straight socket strip, 1x33, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Horizontal +Through hole angled socket strip, 1x34, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical +Through hole straight socket strip, 1x34, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Horizontal +Through hole angled socket strip, 1x35, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical +Through hole straight socket strip, 1x35, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Horizontal +Through hole angled socket strip, 1x36, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical +Through hole straight socket strip, 1x36, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Horizontal +Through hole angled socket strip, 1x37, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical +Through hole straight socket strip, 1x37, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Horizontal +Through hole angled socket strip, 1x38, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical +Through hole straight socket strip, 1x38, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Horizontal +Through hole angled socket strip, 1x39, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical +Through hole straight socket strip, 1x39, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Horizontal +Through hole angled socket strip, 1x40, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical +Through hole straight socket strip, 1x40, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Horizontal +Through hole angled socket strip, 2x01, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical +Through hole straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Horizontal +Through hole angled socket strip, 2x02, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical +Through hole straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Horizontal +Through hole angled socket strip, 2x03, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical +Through hole straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Horizontal +Through hole angled socket strip, 2x04, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical +Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Horizontal +Through hole angled socket strip, 2x05, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical +Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Horizontal +Through hole angled socket strip, 2x06, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical +Through hole straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Horizontal +Through hole angled socket strip, 2x07, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical +Through hole straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Horizontal +Through hole angled socket strip, 2x08, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical +Through hole straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Horizontal +Through hole angled socket strip, 2x09, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical +Through hole straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Horizontal +Through hole angled socket strip, 2x10, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical +Through hole straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Horizontal +Through hole angled socket strip, 2x11, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical +Through hole straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Horizontal +Through hole angled socket strip, 2x12, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical +Through hole straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Horizontal +Through hole angled socket strip, 2x13, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical +Through hole straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Horizontal +Through hole angled socket strip, 2x14, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical +Through hole straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Horizontal +Through hole angled socket strip, 2x15, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical +Through hole straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Horizontal +Through hole angled socket strip, 2x16, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical +Through hole straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Horizontal +Through hole angled socket strip, 2x17, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical +Through hole straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Horizontal +Through hole angled socket strip, 2x18, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical +Through hole straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Horizontal +Through hole angled socket strip, 2x19, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical +Through hole straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Horizontal +Through hole angled socket strip, 2x20, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical +Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Horizontal +Through hole angled socket strip, 2x21, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical +Through hole straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Horizontal +Through hole angled socket strip, 2x22, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical +Through hole straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Horizontal +Through hole angled socket strip, 2x23, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical +Through hole straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Horizontal +Through hole angled socket strip, 2x24, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical +Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Horizontal +Through hole angled socket strip, 2x25, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical +Through hole straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Horizontal +Through hole angled socket strip, 2x26, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical +Through hole straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Horizontal +Through hole angled socket strip, 2x27, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical +Through hole straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Horizontal +Through hole angled socket strip, 2x28, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical +Through hole straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Horizontal +Through hole angled socket strip, 2x29, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical +Through hole straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Horizontal +Through hole angled socket strip, 2x30, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical +Through hole straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Horizontal +Through hole angled socket strip, 2x31, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical +Through hole straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Horizontal +Through hole angled socket strip, 2x32, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical +Through hole straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Horizontal +Through hole angled socket strip, 2x33, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical +Through hole straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Horizontal +Through hole angled socket strip, 2x34, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical +Through hole straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Horizontal +Through hole angled socket strip, 2x35, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical +Through hole straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Horizontal +Through hole angled socket strip, 2x36, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical +Through hole straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Horizontal +Through hole angled socket strip, 2x37, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical +Through hole straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Horizontal +Through hole angled socket strip, 2x38, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical +Through hole straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Horizontal +Through hole angled socket strip, 2x39, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical +Through hole straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Horizontal +Through hole angled socket strip, 2x40, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical +Through hole straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x40 2.54mm double row +0 +80 +80 +Connector_RJ +RJ12_Amphenol_54601 +RJ12 connector https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/c-bmj-0082.pdf +RJ12 connector +0 +6 +6 +Connector_RJ +RJ14_Connfly_DS1133-S4_Horizontal +RJ14 connector 6P4C Horizontal http://www.connfly.com/userfiles/image/UpLoadFile/File/2012/10/26/DS1133.pdf +RJ14 connector 6P4C Connfly DS1133 +0 +4 +4 +Connector_RJ +RJ25_Wayconn_MJEA-660X1_Horizontal +RJ25 6P6C Socket 90 degrees, https://wayconn.com/wp-content/themes/way/datasheet/MJEA-660X1XXX_RJ25_6P6C_PCB_RA.pdf +RJ12 RJ18 RJ25 jack connector 6P6C +0 +6 +6 +Connector_RJ +RJ45_Abracon_ARJP11A-MA_Horizontal +Shielded RJ45 ethernet connector with transformer and POE (https://abracon.com/Magnetics/lan/ARJP11A.PDF) +ethernet 8p8c transformer poe rj45 +0 +15 +14 +Connector_RJ +RJ45_Amphenol_54602-x08_Horizontal +8 Pol Shallow Latch Connector, Modjack, RJ45 (https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/c-bmj-0102.pdf) +RJ45 +0 +8 +8 +Connector_RJ +RJ45_Amphenol_RJHSE538X +Shielded, 2 LED, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X.pdf +RJ45 8p8c ethernet cat5 +0 +14 +13 +Connector_RJ +RJ45_Amphenol_RJHSE538X-02 +Shielded, 2 LED, 2 Ports, http://www.amphenolinfocom.eu/NavData/Drawings/RJHSE-538X-02-REVC.pdf +RJ45 8p8c dual ethernet cat5 +0 +26 +25 +Connector_RJ +RJ45_Amphenol_RJHSE5380 +Shielded, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X.pdf +RJ45 8p8c ethernet cat5 +0 +10 +9 +Connector_RJ +RJ45_Amphenol_RJHSE5380-08 +Shielded, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X08.pdf +RJ45 8p8c ethernet cat5 +0 +68 +65 +Connector_RJ +RJ45_Amphenol_RJMG1BD3B8K1ANR +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, AutoMDIX, https://www.amphenolcanada.com/ProductSearch/Drawings/AC/RJMG1BD3B8K1ANR.PDF +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_BEL_SS74301-00x_Vertical +https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-74301-001-ss-74301-002-ss-74301-005.pdf +RJ45 Vertical Shield LED Green Yellow +0 +14 +13 +Connector_RJ +RJ45_Bel_SI-60062-F +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, AutoMDIX, https://belfuse.com/resources/drawings/magneticsolutions/dr-mag-si-60062-f.pdf +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_Cetus_J1B1211CCD_Horizontal +1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, Cetus, used and distributed by WIZnet (https://wizwiki.net/wiki/lib/exe/fetch.php?media=products:wiz550web:wiz550webds_kr:j1b1211ccd.pdf) +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_Hanrun_HR911105A +http://www.kosmodrom.com.ua/pdf/HR911105A.pdf +RJ45 Magjack +0 +14 +13 +Connector_RJ +RJ45_Kycon_G7LX-A88S7-BP-xx_Horizontal +10/100Base-T RJ45 ethernet magnetic transformer connector horizontal with green/yellow LEDs http://www.kycon.com/Pub_Eng_Draw/G7LX-A88S7-BP-GY.pdf +RJ45 ethernet magnetic +0 +16 +15 +Connector_RJ +RJ45_Molex_0855135013_Vertical +1 Port, RJ45, Series 85513, vertical, SMD, https://www.molex.com/pdm_docs/sd/855135013_sd.pdf +RJ45 Vertical +0 +9 +9 +Connector_RJ +RJ45_Ninigi_GE +1 port ethernet throughhole connector, https://en.ninigi.com/product/rj45ge/pdf +RJ45 ethernet 8p8c +0 +10 +9 +Connector_RJ +RJ45_OST_PJ012-8P8CX_Vertical +RJ45 vertical connector https://www.on-shore.com/wp-content/uploads/PJ012-8P8CX.pdf +RJ45 PJ012 +0 +8 +8 +Connector_RJ +RJ45_Plug_Metz_AJP92A8813 +plug, ethernet, 8P8C, RJ45 Plug +AJP92A8813 8P8C RJ45 ethernet plug +0 +8 +8 +Connector_RJ +RJ45_Pulse_JK00177NL_Horizontal +10/100/1000 Base-T RJ45 single port with LEDs and 75W POE, https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/J432/doc_part/J432.pdf +RJ45 8p8c ethernet POE +0 +22 +21 +Connector_RJ +RJ45_Pulse_JK0654219NL_Horizontal +10/100/1000 Base-T RJ45 single port with LEDs https://media.digikey.com/pdf/Data%20Sheets/Pulse%20PDFs/JK%20Series.pdf#page=2 +RJ45 8p8c ethernet +0 +18 +17 +Connector_RJ +RJ45_Pulse_JXD6-0001NL_Horizontal +RJ45 ethernet transformer with magnetics (https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/JXD6-0001NL/doc_part/JXD6-0001NL.pdf) +ethernet 8p8c transformer magjack +0 +12 +11 +Connector_RJ +RJ45_UDE_RB1-125B8G1A +1 Port RJ45 Connector Through Hole 10/100/1000 Base-T, https://datasheet.lcsc.com/szlcsc/1901091107_UDE-Corp-RB1-125B8G1A_C363353.pdf#page=3 +RJ45 ethernet +0 +16 +15 +Connector_RJ +RJ45_Wuerth_7499010001A_Horizontal +10/100Base-TX RJ45 ethernet magnetic transformer connector horizontal https://katalog.we-online.de/pbs/datasheet/7499010001A.pdf +RJ45 ethernet magnetic +0 +10 +9 +Connector_RJ +RJ45_Wuerth_7499010121A_Horizontal +10/100Base-TX RJ45 ethernet magnetic transformer connector horizontal with green/orange LEDs https://katalog.we-online.de/pbs/datasheet/7499010121A.pdf +RJ45 ethernet magnetic +0 +14 +13 +Connector_RJ +RJ45_Wuerth_7499111446_Horizontal +LAN-Transformer WE-RJ45LAN 10/100/1000 BaseT +ethernet lan connector +0 +16 +15 +Connector_RJ +RJ45_Wuerth_7499151120_Horizontal +Wuerth 7499151120, LAN-Transformer WE-RJ45LAN 10/100/1000 BaseT, Dual Ethernet Jack (http://katalog.we-online.de/pbs/datasheet/7499151120.pdf) +ethernet lan connector +0 +32 +29 +Connector_RJ +RJ45_Wuerth_74980111211_Horizontal +RJ45 LAN Transformer 10/100BaseT (https://katalog.we-online.de/pbs/datasheet/74980111211.pdf) +lan magnetics transformer +0 +14 +13 +Connector_SATA_SAS +SAS-mini_TEConnectivity_1888174_Vertical +36pin mini SAS connector, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1888174&DocType=Customer+Drawing&DocLang=English +SAS mini connector +0 +44 +44 +Connector_SATA_SAS +SATA_Amphenol_10029364-001LF_Horizontal +https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10029364.pdf +SATA +0 +24 +23 +Connector_Samtec +Samtec_FMC_ASP-134486-01_10x40_P1.27mm_Vertical +http://suddendocs.samtec.com/prints/asp-134486-01-mkt.pdf +FMC HPC +0 +400 +400 +Connector_Samtec +Samtec_FMC_ASP-134602-01_10x40_P1.27mm_Vertical +https://www.marutsu.co.jp/contents/shop/marutsu/ds/asp-134602-01.pdf +FMC HPC +0 +400 +400 +Connector_Samtec +Samtec_FMC_ASP-134604-01_4x40_Vertical +https://suddendocs.samtec.com/prints/asp-134604-01-mkt.pdf +FMC LPC VITA +0 +160 +160 +Connector_Samtec +Samtec_LSHM-105-xx.x-x-DV-N_2x05_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-105-xx.x-x-DV-N, 5 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +10 +10 +Connector_Samtec +Samtec_LSHM-105-xx.x-x-DV-S_2x05-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-105-xx.x-x-DV-S, 5 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +12 +11 +Connector_Samtec +Samtec_LSHM-110-xx.x-x-DV-N_2x10_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-110-xx.x-x-DV-N, 10 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +20 +20 +Connector_Samtec +Samtec_LSHM-110-xx.x-x-DV-S_2x10-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-110-xx.x-x-DV-S, 10 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +22 +21 +Connector_Samtec +Samtec_LSHM-120-xx.x-x-DV-N_2x20_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-120-xx.x-x-DV-N, 20 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +40 +40 +Connector_Samtec +Samtec_LSHM-120-xx.x-x-DV-S_2x20-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-120-xx.x-x-DV-S, 20 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +42 +41 +Connector_Samtec +Samtec_LSHM-130-xx.x-x-DV-N_2x30_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-130-xx.x-x-DV-N, 30 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +60 +60 +Connector_Samtec +Samtec_LSHM-130-xx.x-x-DV-S_2x30-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-130-xx.x-x-DV-S, 30 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +62 +61 +Connector_Samtec +Samtec_LSHM-140-xx.x-x-DV-N_2x40_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-140-xx.x-x-DV-N, 40 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +80 +80 +Connector_Samtec +Samtec_LSHM-140-xx.x-x-DV-S_2x40-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-140-xx.x-x-DV-S, 40 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +82 +81 +Connector_Samtec +Samtec_LSHM-150-xx.x-x-DV-N_2x50_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-150-xx.x-x-DV-N, 50 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +100 +100 +Connector_Samtec +Samtec_LSHM-150-xx.x-x-DV-S_2x50-1SH_P0.50mm_Vertical +Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-150-xx.x-x-DV-S, 50 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator +connector Samtec side entry +0 +102 +101 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV-BE-LC_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-BE-LC, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV-BE_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-BE, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV-LC_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-LC, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-102-02-xxx-DV_2x02_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +4 +4 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV-BE-LC_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-BE-LC, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV-BE_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-BE, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV-LC_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-LC, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-103-02-xxx-DV_2x03_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +6 +6 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-A_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-A, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-BE-A_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE-A, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-BE-LC_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-BE_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV-LC_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-104-02-xxx-DV_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +8 +8 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-A_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-A, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-BE-A_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE-A, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-BE-LC_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-BE_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV-LC_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-105-02-xxx-DV_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +10 +10 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-A_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-A, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-BE-A_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE-A, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-BE-LC_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-BE_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV-LC_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-106-02-xxx-DV_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +12 +12 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-A_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-A, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-BE-A_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE-A, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-BE-LC_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-BE_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV-LC_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-107-02-xxx-DV_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +14 +14 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-A_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-A, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-BE-A_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE-A, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-BE-LC_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-BE_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV-LC_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-108-02-xxx-DV_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +16 +16 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-A_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-A, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-BE-A_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE-A, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-BE-LC_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-BE_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV-LC_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-109-02-xxx-DV_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +18 +18 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-A_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-A, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-BE-A_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE-A, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-BE-LC_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-BE_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV-LC_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-110-02-xxx-DV_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +20 +20 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-A_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-A, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-BE-A_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE-A, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-BE-LC_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-BE_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV-LC_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-111-02-xxx-DV_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +22 +22 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-A_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-A, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-BE-A_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE-A, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-BE-LC_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-BE_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV-LC_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-112-02-xxx-DV_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +24 +24 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-A_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-A, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-BE-A_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE-A, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-BE-LC_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-BE_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV-LC_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-113-02-xxx-DV_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +26 +26 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-A_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-A, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-BE-A_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE-A, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-BE-LC_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-BE_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV-LC_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-114-02-xxx-DV_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +28 +28 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-A_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-A, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-BE-A_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE-A, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-BE-LC_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-BE_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV-LC_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-115-02-xxx-DV_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +30 +30 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-A_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-A, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-BE-A_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE-A, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-BE-LC_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-BE_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV-LC_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-116-02-xxx-DV_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +32 +32 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-A_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-A, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-BE-A_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE-A, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-BE-LC_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-BE_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV-LC_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-117-02-xxx-DV_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +34 +34 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-A_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-A, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-BE-A_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE-A, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-BE-LC_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-BE_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV-LC_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-118-02-xxx-DV_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +36 +36 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-A_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-A, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-BE-A_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE-A, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-BE-LC_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-BE_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV-LC_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-119-02-xxx-DV_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +38 +38 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-A_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-A, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-BE-A_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE-A, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-BE-LC_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-BE_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV-LC_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-120-02-xxx-DV_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +40 +40 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-A_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-A, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-BE-A_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE-A, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-BE-LC_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-BE_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV-LC_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-121-02-xxx-DV_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +42 +42 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-A_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-A, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-BE-A_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE-A, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-BE-LC_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-BE_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV-LC_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-122-02-xxx-DV_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +44 +44 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-A_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-A, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-BE-A_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE-A, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-BE-LC_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-BE_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV-LC_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-123-02-xxx-DV_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +46 +46 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-A_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-A, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-BE-A_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE-A, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-BE-LC_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-BE_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV-LC_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-124-02-xxx-DV_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +48 +48 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-A_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-A, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-BE-A_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE-A, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-BE-LC_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-BE_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV-LC_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-125-02-xxx-DV_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +50 +50 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-A_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-A, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-BE-A_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE-A, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-BE-LC_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-BE_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV-LC_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-126-02-xxx-DV_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +52 +52 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-A_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-A, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-BE-A_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE-A, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-BE-LC_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-BE_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV-LC_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-127-02-xxx-DV_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +54 +54 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-A_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-A, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-BE-A_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE-A, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-BE-LC_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-BE_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV-LC_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-128-02-xxx-DV_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +56 +56 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-A_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-A, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-BE-A_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE-A, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-BE-LC_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-BE_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV-LC_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-129-02-xxx-DV_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +58 +58 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-A_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-A, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-BE-A_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE-A, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-BE-LC_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-BE_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV-LC_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-130-02-xxx-DV_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +60 +60 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-A_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-A, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-BE-A_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE-A, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-BE-LC_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-BE_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV-LC_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-131-02-xxx-DV_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +62 +62 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-A_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-A, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-BE-A_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE-A, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-BE-LC_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-BE_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV-LC_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-132-02-xxx-DV_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +64 +64 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-A_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-A, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-BE-A_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE-A, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-BE-LC_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-BE_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV-LC_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-133-02-xxx-DV_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +66 +66 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-A_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-A, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-BE-A_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE-A, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-BE-LC_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-BE_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV-LC_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-134-02-xxx-DV_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +68 +68 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-A_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-A, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-BE-A_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE-A, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-BE-LC_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-BE_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV-LC_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-135-02-xxx-DV_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +70 +70 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-A_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-A, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-BE-A_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE-A, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-BE-LC_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-BE_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV-LC_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-136-02-xxx-DV_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +72 +72 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-A_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-A, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-BE-A_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE-A, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-BE-LC_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-BE_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV-LC_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-137-02-xxx-DV_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +74 +74 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-A_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-A, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-BE-A_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE-A, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-BE-LC_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-BE_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV-LC_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-138-02-xxx-DV_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +76 +76 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-A_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-A, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-BE-A_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE-A, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-BE-LC_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-BE_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV-LC_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-139-02-xxx-DV_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +78 +78 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-A_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-A, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-BE-A_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE-A, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-BE-LC_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-BE_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV-LC_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-140-02-xxx-DV_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +80 +80 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-A_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-A, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-BE-A_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE-A, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-BE-LC_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-BE_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV-LC_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-141-02-xxx-DV_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +82 +82 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-A_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-A, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-BE-A_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE-A, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-BE-LC_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-BE_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV-LC_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-142-02-xxx-DV_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +84 +84 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-A_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-A, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-BE-A_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE-A, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-BE-LC_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-BE_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV-LC_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-143-02-xxx-DV_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +86 +86 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-A_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-A, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-BE-A_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE-A, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-BE-LC_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-BE_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV-LC_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-144-02-xxx-DV_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +88 +88 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-A_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-A, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-BE-A_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE-A, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-BE-LC_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-BE_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV-LC_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-145-02-xxx-DV_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +90 +90 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-A_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-A, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-BE-A_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE-A, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-BE-LC_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-BE_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV-LC_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-146-02-xxx-DV_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +92 +92 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-A_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-A, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-BE-A_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE-A, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-BE-LC_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-BE_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV-LC_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-147-02-xxx-DV_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +94 +94 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-A_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-A, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-BE-A_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE-A, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-BE-LC_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-BE_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV-LC_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-148-02-xxx-DV_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +96 +96 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-A_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-A, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-BE-A_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE-A, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-BE-LC_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-BE_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV-LC_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-149-02-xxx-DV_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +98 +98 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-A_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-A, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-BE-A_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE-A, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-BE-LC_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-BE_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV-LC_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_SMD +Samtec_HLE-150-02-xxx-DV_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator +connector Samtec HLE horizontal +0 +100 +100 +Connector_Samtec_HLE_THT +Samtec_HLE-104-02-xx-DV-PE-LC_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-PE-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +8 +8 +Connector_Samtec_HLE_THT +Samtec_HLE-104-02-xx-DV-PE_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-PE (compatible alternatives: HLE-104-02-xx-DV-PE-BE), 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +8 +8 +Connector_Samtec_HLE_THT +Samtec_HLE-104-02-xx-DV-TE_2x04_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-TE, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +8 +8 +Connector_Samtec_HLE_THT +Samtec_HLE-105-02-xx-DV-PE-LC_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-PE-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +10 +10 +Connector_Samtec_HLE_THT +Samtec_HLE-105-02-xx-DV-PE_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-PE (compatible alternatives: HLE-105-02-xx-DV-PE-BE), 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +10 +10 +Connector_Samtec_HLE_THT +Samtec_HLE-105-02-xx-DV-TE_2x05_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-TE, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +10 +10 +Connector_Samtec_HLE_THT +Samtec_HLE-106-02-xx-DV-PE-LC_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-PE-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +12 +12 +Connector_Samtec_HLE_THT +Samtec_HLE-106-02-xx-DV-PE_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-PE (compatible alternatives: HLE-106-02-xx-DV-PE-BE), 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +12 +12 +Connector_Samtec_HLE_THT +Samtec_HLE-106-02-xx-DV-TE_2x06_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-TE, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +12 +12 +Connector_Samtec_HLE_THT +Samtec_HLE-107-02-xx-DV-PE-LC_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-PE-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +14 +14 +Connector_Samtec_HLE_THT +Samtec_HLE-107-02-xx-DV-PE_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-PE (compatible alternatives: HLE-107-02-xx-DV-PE-BE), 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +14 +14 +Connector_Samtec_HLE_THT +Samtec_HLE-107-02-xx-DV-TE_2x07_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-TE, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +14 +14 +Connector_Samtec_HLE_THT +Samtec_HLE-108-02-xx-DV-PE-LC_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-PE-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +16 +16 +Connector_Samtec_HLE_THT +Samtec_HLE-108-02-xx-DV-PE_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-PE (compatible alternatives: HLE-108-02-xx-DV-PE-BE), 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +16 +16 +Connector_Samtec_HLE_THT +Samtec_HLE-108-02-xx-DV-TE_2x08_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-TE, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +16 +16 +Connector_Samtec_HLE_THT +Samtec_HLE-109-02-xx-DV-PE-LC_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-PE-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +18 +18 +Connector_Samtec_HLE_THT +Samtec_HLE-109-02-xx-DV-PE_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-PE (compatible alternatives: HLE-109-02-xx-DV-PE-BE), 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +18 +18 +Connector_Samtec_HLE_THT +Samtec_HLE-109-02-xx-DV-TE_2x09_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-TE, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +18 +18 +Connector_Samtec_HLE_THT +Samtec_HLE-110-02-xx-DV-PE-LC_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-PE-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +20 +20 +Connector_Samtec_HLE_THT +Samtec_HLE-110-02-xx-DV-PE_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-PE (compatible alternatives: HLE-110-02-xx-DV-PE-BE), 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +20 +20 +Connector_Samtec_HLE_THT +Samtec_HLE-110-02-xx-DV-TE_2x10_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-TE, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +20 +20 +Connector_Samtec_HLE_THT +Samtec_HLE-111-02-xx-DV-PE-LC_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-PE-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +22 +22 +Connector_Samtec_HLE_THT +Samtec_HLE-111-02-xx-DV-PE_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-PE (compatible alternatives: HLE-111-02-xx-DV-PE-BE), 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +22 +22 +Connector_Samtec_HLE_THT +Samtec_HLE-111-02-xx-DV-TE_2x11_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-TE, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +22 +22 +Connector_Samtec_HLE_THT +Samtec_HLE-112-02-xx-DV-PE-LC_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-PE-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +24 +24 +Connector_Samtec_HLE_THT +Samtec_HLE-112-02-xx-DV-PE_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-PE (compatible alternatives: HLE-112-02-xx-DV-PE-BE), 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +24 +24 +Connector_Samtec_HLE_THT +Samtec_HLE-112-02-xx-DV-TE_2x12_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-TE, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +24 +24 +Connector_Samtec_HLE_THT +Samtec_HLE-113-02-xx-DV-PE-LC_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-PE-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +26 +26 +Connector_Samtec_HLE_THT +Samtec_HLE-113-02-xx-DV-PE_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-PE (compatible alternatives: HLE-113-02-xx-DV-PE-BE), 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +26 +26 +Connector_Samtec_HLE_THT +Samtec_HLE-113-02-xx-DV-TE_2x13_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-TE, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +26 +26 +Connector_Samtec_HLE_THT +Samtec_HLE-114-02-xx-DV-PE-LC_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-PE-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +28 +28 +Connector_Samtec_HLE_THT +Samtec_HLE-114-02-xx-DV-PE_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-PE (compatible alternatives: HLE-114-02-xx-DV-PE-BE), 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +28 +28 +Connector_Samtec_HLE_THT +Samtec_HLE-114-02-xx-DV-TE_2x14_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-TE, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +28 +28 +Connector_Samtec_HLE_THT +Samtec_HLE-115-02-xx-DV-PE-LC_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-PE-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +30 +30 +Connector_Samtec_HLE_THT +Samtec_HLE-115-02-xx-DV-PE_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-PE (compatible alternatives: HLE-115-02-xx-DV-PE-BE), 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +30 +30 +Connector_Samtec_HLE_THT +Samtec_HLE-115-02-xx-DV-TE_2x15_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-TE, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +30 +30 +Connector_Samtec_HLE_THT +Samtec_HLE-116-02-xx-DV-PE-LC_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-PE-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +32 +32 +Connector_Samtec_HLE_THT +Samtec_HLE-116-02-xx-DV-PE_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-PE (compatible alternatives: HLE-116-02-xx-DV-PE-BE), 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +32 +32 +Connector_Samtec_HLE_THT +Samtec_HLE-116-02-xx-DV-TE_2x16_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-TE, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +32 +32 +Connector_Samtec_HLE_THT +Samtec_HLE-117-02-xx-DV-PE-LC_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-PE-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +34 +34 +Connector_Samtec_HLE_THT +Samtec_HLE-117-02-xx-DV-PE_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-PE (compatible alternatives: HLE-117-02-xx-DV-PE-BE), 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +34 +34 +Connector_Samtec_HLE_THT +Samtec_HLE-117-02-xx-DV-TE_2x17_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-TE, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +34 +34 +Connector_Samtec_HLE_THT +Samtec_HLE-118-02-xx-DV-PE-LC_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-PE-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +36 +36 +Connector_Samtec_HLE_THT +Samtec_HLE-118-02-xx-DV-PE_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-PE (compatible alternatives: HLE-118-02-xx-DV-PE-BE), 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +36 +36 +Connector_Samtec_HLE_THT +Samtec_HLE-118-02-xx-DV-TE_2x18_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-TE, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +36 +36 +Connector_Samtec_HLE_THT +Samtec_HLE-119-02-xx-DV-PE-LC_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-PE-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +38 +38 +Connector_Samtec_HLE_THT +Samtec_HLE-119-02-xx-DV-PE_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-PE (compatible alternatives: HLE-119-02-xx-DV-PE-BE), 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +38 +38 +Connector_Samtec_HLE_THT +Samtec_HLE-119-02-xx-DV-TE_2x19_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-TE, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +38 +38 +Connector_Samtec_HLE_THT +Samtec_HLE-120-02-xx-DV-PE-LC_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-PE-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +40 +40 +Connector_Samtec_HLE_THT +Samtec_HLE-120-02-xx-DV-PE_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-PE (compatible alternatives: HLE-120-02-xx-DV-PE-BE), 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +40 +40 +Connector_Samtec_HLE_THT +Samtec_HLE-120-02-xx-DV-TE_2x20_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-TE, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +40 +40 +Connector_Samtec_HLE_THT +Samtec_HLE-121-02-xx-DV-PE-LC_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-PE-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +42 +42 +Connector_Samtec_HLE_THT +Samtec_HLE-121-02-xx-DV-PE_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-PE (compatible alternatives: HLE-121-02-xx-DV-PE-BE), 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +42 +42 +Connector_Samtec_HLE_THT +Samtec_HLE-121-02-xx-DV-TE_2x21_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-TE, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +42 +42 +Connector_Samtec_HLE_THT +Samtec_HLE-122-02-xx-DV-PE-LC_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-PE-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +44 +44 +Connector_Samtec_HLE_THT +Samtec_HLE-122-02-xx-DV-PE_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-PE (compatible alternatives: HLE-122-02-xx-DV-PE-BE), 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +44 +44 +Connector_Samtec_HLE_THT +Samtec_HLE-122-02-xx-DV-TE_2x22_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-TE, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +44 +44 +Connector_Samtec_HLE_THT +Samtec_HLE-123-02-xx-DV-PE-LC_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-PE-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +46 +46 +Connector_Samtec_HLE_THT +Samtec_HLE-123-02-xx-DV-PE_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-PE (compatible alternatives: HLE-123-02-xx-DV-PE-BE), 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +46 +46 +Connector_Samtec_HLE_THT +Samtec_HLE-123-02-xx-DV-TE_2x23_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-TE, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +46 +46 +Connector_Samtec_HLE_THT +Samtec_HLE-124-02-xx-DV-PE-LC_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-PE-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +48 +48 +Connector_Samtec_HLE_THT +Samtec_HLE-124-02-xx-DV-PE_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-PE (compatible alternatives: HLE-124-02-xx-DV-PE-BE), 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +48 +48 +Connector_Samtec_HLE_THT +Samtec_HLE-124-02-xx-DV-TE_2x24_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-TE, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +48 +48 +Connector_Samtec_HLE_THT +Samtec_HLE-125-02-xx-DV-PE-LC_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-PE-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +50 +50 +Connector_Samtec_HLE_THT +Samtec_HLE-125-02-xx-DV-PE_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-PE (compatible alternatives: HLE-125-02-xx-DV-PE-BE), 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +50 +50 +Connector_Samtec_HLE_THT +Samtec_HLE-125-02-xx-DV-TE_2x25_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-TE, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +50 +50 +Connector_Samtec_HLE_THT +Samtec_HLE-126-02-xx-DV-PE-LC_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-PE-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +52 +52 +Connector_Samtec_HLE_THT +Samtec_HLE-126-02-xx-DV-PE_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-PE (compatible alternatives: HLE-126-02-xx-DV-PE-BE), 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +52 +52 +Connector_Samtec_HLE_THT +Samtec_HLE-126-02-xx-DV-TE_2x26_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-TE, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +52 +52 +Connector_Samtec_HLE_THT +Samtec_HLE-127-02-xx-DV-PE-LC_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-PE-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +54 +54 +Connector_Samtec_HLE_THT +Samtec_HLE-127-02-xx-DV-PE_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-PE (compatible alternatives: HLE-127-02-xx-DV-PE-BE), 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +54 +54 +Connector_Samtec_HLE_THT +Samtec_HLE-127-02-xx-DV-TE_2x27_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-TE, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +54 +54 +Connector_Samtec_HLE_THT +Samtec_HLE-128-02-xx-DV-PE-LC_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-PE-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +56 +56 +Connector_Samtec_HLE_THT +Samtec_HLE-128-02-xx-DV-PE_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-PE (compatible alternatives: HLE-128-02-xx-DV-PE-BE), 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +56 +56 +Connector_Samtec_HLE_THT +Samtec_HLE-128-02-xx-DV-TE_2x28_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-TE, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +56 +56 +Connector_Samtec_HLE_THT +Samtec_HLE-129-02-xx-DV-PE-LC_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-PE-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +58 +58 +Connector_Samtec_HLE_THT +Samtec_HLE-129-02-xx-DV-PE_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-PE (compatible alternatives: HLE-129-02-xx-DV-PE-BE), 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +58 +58 +Connector_Samtec_HLE_THT +Samtec_HLE-129-02-xx-DV-TE_2x29_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-TE, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +58 +58 +Connector_Samtec_HLE_THT +Samtec_HLE-130-02-xx-DV-PE-LC_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-PE-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +60 +60 +Connector_Samtec_HLE_THT +Samtec_HLE-130-02-xx-DV-PE_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-PE (compatible alternatives: HLE-130-02-xx-DV-PE-BE), 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +60 +60 +Connector_Samtec_HLE_THT +Samtec_HLE-130-02-xx-DV-TE_2x30_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-TE, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +60 +60 +Connector_Samtec_HLE_THT +Samtec_HLE-131-02-xx-DV-PE-LC_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-PE-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +62 +62 +Connector_Samtec_HLE_THT +Samtec_HLE-131-02-xx-DV-PE_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-PE (compatible alternatives: HLE-131-02-xx-DV-PE-BE), 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +62 +62 +Connector_Samtec_HLE_THT +Samtec_HLE-131-02-xx-DV-TE_2x31_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-TE, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +62 +62 +Connector_Samtec_HLE_THT +Samtec_HLE-132-02-xx-DV-PE-LC_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-PE-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +64 +64 +Connector_Samtec_HLE_THT +Samtec_HLE-132-02-xx-DV-PE_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-PE (compatible alternatives: HLE-132-02-xx-DV-PE-BE), 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +64 +64 +Connector_Samtec_HLE_THT +Samtec_HLE-132-02-xx-DV-TE_2x32_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-TE, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +64 +64 +Connector_Samtec_HLE_THT +Samtec_HLE-133-02-xx-DV-PE-LC_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-PE-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +66 +66 +Connector_Samtec_HLE_THT +Samtec_HLE-133-02-xx-DV-PE_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-PE (compatible alternatives: HLE-133-02-xx-DV-PE-BE), 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +66 +66 +Connector_Samtec_HLE_THT +Samtec_HLE-133-02-xx-DV-TE_2x33_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-TE, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +66 +66 +Connector_Samtec_HLE_THT +Samtec_HLE-134-02-xx-DV-PE-LC_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-PE-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +68 +68 +Connector_Samtec_HLE_THT +Samtec_HLE-134-02-xx-DV-PE_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-PE (compatible alternatives: HLE-134-02-xx-DV-PE-BE), 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +68 +68 +Connector_Samtec_HLE_THT +Samtec_HLE-134-02-xx-DV-TE_2x34_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-TE, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +68 +68 +Connector_Samtec_HLE_THT +Samtec_HLE-135-02-xx-DV-PE-LC_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-PE-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +70 +70 +Connector_Samtec_HLE_THT +Samtec_HLE-135-02-xx-DV-PE_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-PE (compatible alternatives: HLE-135-02-xx-DV-PE-BE), 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +70 +70 +Connector_Samtec_HLE_THT +Samtec_HLE-135-02-xx-DV-TE_2x35_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-TE, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +70 +70 +Connector_Samtec_HLE_THT +Samtec_HLE-136-02-xx-DV-PE-LC_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-PE-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +72 +72 +Connector_Samtec_HLE_THT +Samtec_HLE-136-02-xx-DV-PE_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-PE (compatible alternatives: HLE-136-02-xx-DV-PE-BE), 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +72 +72 +Connector_Samtec_HLE_THT +Samtec_HLE-136-02-xx-DV-TE_2x36_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-TE, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +72 +72 +Connector_Samtec_HLE_THT +Samtec_HLE-137-02-xx-DV-PE-LC_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-PE-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +74 +74 +Connector_Samtec_HLE_THT +Samtec_HLE-137-02-xx-DV-PE_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-PE (compatible alternatives: HLE-137-02-xx-DV-PE-BE), 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +74 +74 +Connector_Samtec_HLE_THT +Samtec_HLE-137-02-xx-DV-TE_2x37_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-TE, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +74 +74 +Connector_Samtec_HLE_THT +Samtec_HLE-138-02-xx-DV-PE-LC_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-PE-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +76 +76 +Connector_Samtec_HLE_THT +Samtec_HLE-138-02-xx-DV-PE_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-PE (compatible alternatives: HLE-138-02-xx-DV-PE-BE), 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +76 +76 +Connector_Samtec_HLE_THT +Samtec_HLE-138-02-xx-DV-TE_2x38_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-TE, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +76 +76 +Connector_Samtec_HLE_THT +Samtec_HLE-139-02-xx-DV-PE-LC_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-PE-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +78 +78 +Connector_Samtec_HLE_THT +Samtec_HLE-139-02-xx-DV-PE_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-PE (compatible alternatives: HLE-139-02-xx-DV-PE-BE), 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +78 +78 +Connector_Samtec_HLE_THT +Samtec_HLE-139-02-xx-DV-TE_2x39_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-TE, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +78 +78 +Connector_Samtec_HLE_THT +Samtec_HLE-140-02-xx-DV-PE-LC_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-PE-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +80 +80 +Connector_Samtec_HLE_THT +Samtec_HLE-140-02-xx-DV-PE_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-PE (compatible alternatives: HLE-140-02-xx-DV-PE-BE), 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +80 +80 +Connector_Samtec_HLE_THT +Samtec_HLE-140-02-xx-DV-TE_2x40_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-TE, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +80 +80 +Connector_Samtec_HLE_THT +Samtec_HLE-141-02-xx-DV-PE-LC_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-PE-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +82 +82 +Connector_Samtec_HLE_THT +Samtec_HLE-141-02-xx-DV-PE_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-PE (compatible alternatives: HLE-141-02-xx-DV-PE-BE), 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +82 +82 +Connector_Samtec_HLE_THT +Samtec_HLE-141-02-xx-DV-TE_2x41_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-TE, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +82 +82 +Connector_Samtec_HLE_THT +Samtec_HLE-142-02-xx-DV-PE-LC_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-PE-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +84 +84 +Connector_Samtec_HLE_THT +Samtec_HLE-142-02-xx-DV-PE_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-PE (compatible alternatives: HLE-142-02-xx-DV-PE-BE), 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +84 +84 +Connector_Samtec_HLE_THT +Samtec_HLE-142-02-xx-DV-TE_2x42_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-TE, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +84 +84 +Connector_Samtec_HLE_THT +Samtec_HLE-143-02-xx-DV-PE-LC_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-PE-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +86 +86 +Connector_Samtec_HLE_THT +Samtec_HLE-143-02-xx-DV-PE_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-PE (compatible alternatives: HLE-143-02-xx-DV-PE-BE), 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +86 +86 +Connector_Samtec_HLE_THT +Samtec_HLE-143-02-xx-DV-TE_2x43_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-TE, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +86 +86 +Connector_Samtec_HLE_THT +Samtec_HLE-144-02-xx-DV-PE-LC_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-PE-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +88 +88 +Connector_Samtec_HLE_THT +Samtec_HLE-144-02-xx-DV-PE_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-PE (compatible alternatives: HLE-144-02-xx-DV-PE-BE), 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +88 +88 +Connector_Samtec_HLE_THT +Samtec_HLE-144-02-xx-DV-TE_2x44_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-TE, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +88 +88 +Connector_Samtec_HLE_THT +Samtec_HLE-145-02-xx-DV-PE-LC_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-PE-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +90 +90 +Connector_Samtec_HLE_THT +Samtec_HLE-145-02-xx-DV-PE_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-PE (compatible alternatives: HLE-145-02-xx-DV-PE-BE), 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +90 +90 +Connector_Samtec_HLE_THT +Samtec_HLE-145-02-xx-DV-TE_2x45_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-TE, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +90 +90 +Connector_Samtec_HLE_THT +Samtec_HLE-146-02-xx-DV-PE-LC_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-PE-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +92 +92 +Connector_Samtec_HLE_THT +Samtec_HLE-146-02-xx-DV-PE_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-PE (compatible alternatives: HLE-146-02-xx-DV-PE-BE), 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +92 +92 +Connector_Samtec_HLE_THT +Samtec_HLE-146-02-xx-DV-TE_2x46_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-TE, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +92 +92 +Connector_Samtec_HLE_THT +Samtec_HLE-147-02-xx-DV-PE-LC_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-PE-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +94 +94 +Connector_Samtec_HLE_THT +Samtec_HLE-147-02-xx-DV-PE_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-PE (compatible alternatives: HLE-147-02-xx-DV-PE-BE), 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +94 +94 +Connector_Samtec_HLE_THT +Samtec_HLE-147-02-xx-DV-TE_2x47_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-TE, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +94 +94 +Connector_Samtec_HLE_THT +Samtec_HLE-148-02-xx-DV-PE-LC_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-PE-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +96 +96 +Connector_Samtec_HLE_THT +Samtec_HLE-148-02-xx-DV-PE_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-PE (compatible alternatives: HLE-148-02-xx-DV-PE-BE), 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +96 +96 +Connector_Samtec_HLE_THT +Samtec_HLE-148-02-xx-DV-TE_2x48_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-TE, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +96 +96 +Connector_Samtec_HLE_THT +Samtec_HLE-149-02-xx-DV-PE-LC_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-PE-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +98 +98 +Connector_Samtec_HLE_THT +Samtec_HLE-149-02-xx-DV-PE_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-PE (compatible alternatives: HLE-149-02-xx-DV-PE-BE), 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +98 +98 +Connector_Samtec_HLE_THT +Samtec_HLE-149-02-xx-DV-TE_2x49_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-TE, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +98 +98 +Connector_Samtec_HLE_THT +Samtec_HLE-150-02-xx-DV-PE-LC_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-PE-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +100 +100 +Connector_Samtec_HLE_THT +Samtec_HLE-150-02-xx-DV-PE_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-PE (compatible alternatives: HLE-150-02-xx-DV-PE-BE), 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +100 +100 +Connector_Samtec_HLE_THT +Samtec_HLE-150-02-xx-DV-TE_2x50_P2.54mm_Horizontal +Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-TE, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator +connector Samtec HLE top entry +0 +100 +100 +Connector_Stocko +Stocko_MKS_1651-6-0-202_1x2_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +2 +2 +Connector_Stocko +Stocko_MKS_1652-6-0-202_1x2_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +2 +2 +Connector_Stocko +Stocko_MKS_1653-6-0-303_1x3_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +3 +3 +Connector_Stocko +Stocko_MKS_1654-6-0-404_1x4_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +4 +4 +Connector_Stocko +Stocko_MKS_1655-6-0-505_1x5_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +5 +5 +Connector_Stocko +Stocko_MKS_1656-6-0-606_1x6_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +6 +6 +Connector_Stocko +Stocko_MKS_1657-6-0-707_1x7_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +7 +7 +Connector_Stocko +Stocko_MKS_1658-6-0-808_1x8_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +8 +8 +Connector_Stocko +Stocko_MKS_1659-6-0-909_1x9_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +9 +9 +Connector_Stocko +Stocko_MKS_1660-6-0-1010_1x10_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +10 +10 +Connector_Stocko +Stocko_MKS_1661-6-0-1111_1x11_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +11 +11 +Connector_Stocko +Stocko_MKS_1662-6-0-1212_1x12_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +12 +12 +Connector_Stocko +Stocko_MKS_1663-6-0-1313_1x13_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +13 +13 +Connector_Stocko +Stocko_MKS_1664-6-0-1414_1x14_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +14 +14 +Connector_Stocko +Stocko_MKS_1665-6-0-1515_1x15_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +15 +15 +Connector_Stocko +Stocko_MKS_1666-6-0-1616_1x16_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +16 +16 +Connector_Stocko +Stocko_MKS_1667-6-0-1717_1x17_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +17 +17 +Connector_Stocko +Stocko_MKS_1668-6-0-1818_1x18_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +18 +18 +Connector_Stocko +Stocko_MKS_1669-6-0-1919_1x19_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +19 +19 +Connector_Stocko +Stocko_MKS_1670-6-0-2020_1x20_P2.50mm_Vertical +Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator +Stocko RFK MKS 16xx +0 +20 +20 +Connector_TE-Connectivity +TE_1-826576-3_1x13_P3.96mm_Vertical +TE, 1-826576-3, 13 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +13 +13 +Connector_TE-Connectivity +TE_1-826576-5_1x15_P3.96mm_Vertical +TE, 1-826576-5, 15 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +15 +15 +Connector_TE-Connectivity +TE_1-826576-6_1x16_P3.96mm_Vertical +TE, 1-826576-6, 16 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +16 +16 +Connector_TE-Connectivity +TE_1-826576-7_1x17_P3.96mm_Vertical +TE, 1-826576-7, 17 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +17 +17 +Connector_TE-Connectivity +TE_1-826576-8_1x18_P3.96mm_Vertical +TE, 1-826576-8, 18 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +18 +18 +Connector_TE-Connectivity +TE_2-826576-0_1x20_P3.96mm_Vertical +TE, 2-826576-0, 20 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +20 +20 +Connector_TE-Connectivity +TE_3-826576-6_1x36_P3.96mm_Vertical +TE, 3-826576-6, 36 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +36 +36 +Connector_TE-Connectivity +TE_440054-2_1x02_P2.00mm_Vertical +TE Connectivity, HDI, Wire-to-Board, Fully Shrouded, Vertical Header: https://www.te.com/usa-en/product-440054-2.datasheet.pdf +connector header hdr horizontal vertical shrouded fully-shrounded 440054-2 2-440054-2 4-440054-2 6-440054-2 2-440054-6 4-440054-6 6-440054-6 +0 +2 +2 +Connector_TE-Connectivity +TE_440055-2_1x02_P2.00mm_Horizontal +TE Connectivity, HDI, Wire-to-Board, Fully Shrouded, Header: https://www.te.com/usa-en/product-440055-2.datasheet.pdf +connector header hdr horizontal right-angle shrouded fully-shrounded 440055-2 2-440055-2 4-440055-2 6-440055-2 8-440055-2 +0 +2 +2 +Connector_TE-Connectivity +TE_826576-2_1x02_P3.96mm_Vertical +TE, 826576-2, 2 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +2 +2 +Connector_TE-Connectivity +TE_826576-3_1x03_P3.96mm_Vertical +TE, 826576-3, 3 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +3 +3 +Connector_TE-Connectivity +TE_826576-5_1x05_P3.96mm_Vertical +TE, 826576-5, 5 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +5 +5 +Connector_TE-Connectivity +TE_826576-6_1x06_P3.96mm_Vertical +TE, 826576-6, 6 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +6 +6 +Connector_TE-Connectivity +TE_826576-7_1x07_P3.96mm_Vertical +TE, 826576-7, 7 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +7 +7 +Connector_TE-Connectivity +TE_826576-8_1x08_P3.96mm_Vertical +TE, 826576-8, 8 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +8 +8 +Connector_TE-Connectivity +TE_826576-9_1x09_P3.96mm_Vertical +TE, 826576-9, 9 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator +connector TE 826576 vertical +0 +9 +9 +Connector_TE-Connectivity +TE_2834006-1_1x01_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 1-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +2 +1 +Connector_TE-Connectivity +TE_2834006-2_1x02_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 2-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +4 +2 +Connector_TE-Connectivity +TE_2834006-3_1x03_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 3-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +6 +3 +Connector_TE-Connectivity +TE_2834006-4_1x04_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 4-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +8 +4 +Connector_TE-Connectivity +TE_2834006-5_1x05_P4.0mm_Horizontal +TE Connectivity Buchanan WireMate connector, Poke-In series, 5-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 +wire connector +0 +10 +5 +Connector_TE-Connectivity +TE_5767171-1_2x19_P0.635mm_Vertical +PCB Mount Receptacle, Vertical, Board-to-Board, 38 Position, 24.003mm / .64mm [.945in] Centerline, Header Only, Palladium Nickel (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F5767171%7FB2%7Fpdf%7FEnglish%7FENG_CD_5767171_B2.pdf%7F5767171-1#page=2) +mictor38 receptacle board-to-board +0 +43 +39 +Connector_TE-Connectivity +TE_AMPSEAL_1-776087-x_3Rows_23_P0.4mm_Horizontal +Connector +TE 776087 +0 +23 +23 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770182-x_3x03_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770182-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +9 +9 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770186-x_3x04_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770186-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +12 +12 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770190-x_3x05_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770190-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +15 +15 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770621-x_2x06_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770621-x, 6 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +12 +12 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770858-x_2x05_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770858-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +10 +10 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770866-x_1x02_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770866-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +2 +2 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770870-x_1x03_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770870-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +3 +3 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770874-x_2x02_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770874-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +4 +4 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770875-x_2x03_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770875-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +6 +6 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770966-x_1x02_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770966-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +2 +2 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770967-x_1x03_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770967-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +3 +3 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770968-x_2x02_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770968-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +4 +4 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770969-x_2x03_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770969-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +6 +6 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770970-x_2x04_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770970-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +8 +8 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770971-x_2x05_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770971-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +10 +10 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770972-x_2x06_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770972-x, 6 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +12 +12 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770973-x_2x07_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770973-x, 7 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +14 +14 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-770974-x_2x08_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770974-x, 8 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +16 +16 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794067-x_2x07_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794067-x, 7 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +14 +14 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794068-x_2x08_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794068-x, 8 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +16 +16 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794069-x_2x09_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794069-x, 9 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +18 +18 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794070-x_2x10_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794070-x, 10 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +20 +20 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794071-x_2x11_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794071-x, 11 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +22 +22 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794072-x_2x12_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794072-x, 12 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +24 +24 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794073-x_2x04_P4.14mm_Vertical +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794073-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK side entry +0 +8 +8 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794105-x_2x09_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794105-x, 9 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +18 +18 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794106-x_2x10_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794106-x, 10 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +20 +20 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794107-x_2x11_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794107-x, 11 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +22 +22 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794108-x_2x12_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794108-x, 12 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +24 +24 +Connector_TE-Connectivity +TE_MATE-N-LOK_1-794374-x_1x01_P4.14mm_Horizontal +Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794374-x, 1 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator +connector TE MATE-N-LOK top entry +0 +1 +1 +Connector_TE-Connectivity +TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F350211%7FU5%7Fpdf%7FEnglish%7FENG_CD_350211_U5.pdf%7F350211-1 +connector TE MATE-N-LOK top entry ATA PATA IDE 5.25 inch floppy drive power +0 +4 +4 +Connector_USB +USB3_A_Molex_48393-001 +USB 3.0, type A, right angle (http://www.molex.com/pdm_docs/sd/483930003_sd.pdf) +USB 3.0 type A right angle +0 +13 +10 +Connector_USB +USB3_A_Plug_Wuerth_692112030100_Horizontal +USB3 type A Plug, Horizontal, http://katalog.we-online.de/em/datasheet/692112030100.pdf +usb A plug horizontal +0 +11 +10 +Connector_USB +USB3_A_Receptacle_Wuerth_692122030100 +USB 3.0, type A, right angle (https://www.we-online.com/katalog/datasheet/692122030100.pdf) +USB 3.0 type A right angle Wรผrth +0 +11 +10 +Connector_USB +USB3_Micro-B_Connfly_DS1104-01 +Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://en.connfly.com/static/upload/file/pdf/DS1104-01.pdf) +USB 3.0 Micro B SMD right angle +0 +16 +11 +Connector_USB +USB_A_CNCTech_1001-011-01101_Horizontal +USB type A Plug, Horizontal, http://cnctech.us/pdfs/1001-011-01101.pdf +USB-A +0 +6 +5 +Connector_USB +USB_A_CONNFLY_DS1095-WNR0 +http://www.connfly.com/userfiles/image/UpLoadFile/File/2013/5/6/DS1095.pdf +USB-A receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_A_Molex_67643_Horizontal +USB type A, Horizontal, https://www.molex.com/pdm_docs/sd/676433910_sd.pdf +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_Molex_105057_Vertical +https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf +USB A Vertical +0 +7 +5 +Connector_USB +USB_A_Stewart_SS-52100-001_Horizontal +USB A connector https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52100-001.pdf +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_TE_292303-7_Horizontal +USB type A, Horizontal, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=292303&DocType=Customer+Drawing&DocLang=English +USB_A Female Connector receptacle +0 +6 +5 +Connector_USB +USB_A_Wuerth_614004134726_Horizontal +USB A connector https://www.we-online.com/catalog/datasheet/614004134726.pdf +USB_A Female Connector receptacle +0 +8 +5 +Connector_USB +USB_A_Wuerth_61400826021_Horizontal_Stacked +Stacked USB A connector http://katalog.we-online.de/em/datasheet/61400826021.pdf +Wuerth stacked USB_A +0 +12 +9 +Connector_USB +USB_B_Amphenol_MUSB-D511_Vertical_Rugged +A,phenol MUSB_D511, USB B female connector, straight, rugged, https://www.amphenolcanada.com/ProductSearch/drawings/AC/MUSBD511XX.pdf +USB_B_MUSB_Straight female connector straight rugged MUSB D511 +0 +6 +5 +Connector_USB +USB_B_Lumberg_2411_02_Horizontal +USB 2.0 receptacle type B, horizontal version, through-hole, https://downloads.lumberg.com/datenblaetter/en/2411_02.pdf +USB B receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_B_OST_USB-B1HSxx_Horizontal +USB B receptacle, Horizontal, through-hole, http://www.on-shore.com/wp-content/uploads/2015/09/usb-b1hsxx.pdf +USB-B receptacle horizontal through-hole +0 +6 +5 +Connector_USB +USB_B_TE_5787834_Vertical +http://www.mouser.com/ds/2/418/NG_CD_5787834_A4-669110.pdf +USB_B USB B vertical female connector +0 +6 +5 +Connector_USB +USB_C_Plug_JAE_DX07P024AJ1 +Universal Serial Bus (USB) Shielded I/O Plug, Type C, Right Angle, Surface Mount, https://www.jae.com/en/searchfilter/?topics_keyword=DX07P024AJ1&mainItemSelect=1 +USB Type-C Plug Edge Mount +0 +30 +25 +Connector_USB +USB_C_Plug_Molex_105444 +Universal Serial Bus (USB) Shielded I/O Plug, Type C, Right Angle, Surface Mount, http://www.molex.com/pdm_docs/sd/1054440001_sd.pdf +USB Type-C Plug Edge Mount +0 +24 +23 +Connector_USB +USB_C_Receptacle_Amphenol_12401548E4-2A +USB TYPE C, RA RCPT PCB, Hybrid, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401548E4%7e2A +USB C Type-C Receptacle Hybrid +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401548E4-2A_CircularHoles +USB TYPE C, RA RCPT PCB, Hybrid, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401548E4%7e2A +USB C Type-C Receptacle Hybrid +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401610E4-2A +USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Amphenol_12401610E4-2A_CircularHoles +USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_CNCTech_C-ARA1-AK51X +USB Type-C 3.0 Receptacle, 24-pin, right angle (source: https://www.cnctech.us/pdfs/C-ARA1-AK512.pdf) +USB C Type-C Receptacle Hybrid CNCTech C-ARA1-AK51X +0 +32 +25 +Connector_USB +USB_C_Receptacle_G-Switch_GT-USB-7010ASV +USB Type C, right-angle, SMT, https://datasheet.lcsc.com/lcsc/2204071530_G-Switch-GT-USB-7010ASV_C2988369.pdf +USB C Type-C Receptacle SMD +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4085 +USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf +USB Type-C Receptacle Through-hole Right angle +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal +USB 2.0 Type C Receptacle, GCT, 16P, top mounted, horizontal, 5A: https://gct.co/files/drawings/usb4105.pdf +USB C Type-C Receptacle SMD USB 2.0 16P 16C USB4105-15-A USB4105-15-A-060 USB4105-15-A-120 USB4105-GF-A USB4105-GF-A-060 USB4105-GF-A-120 +0 +20 +17 +Connector_USB +USB_C_Receptacle_GCT_USB4115-03-C +USB TYPE C, VERT RCPT PCB, SMT, https://gct.co/files/drawings/usb4115.pdf +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_GCT_USB4135-GF-A_6P_TopMnt_Horizontal +USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A: https://gct.co/files/drawings/usb4135.pdf +USB C Type-C Receptacle SMD USB Power-only Charging-only 6P 6C USB4135-GF-A +0 +10 +7 +Connector_USB +USB_C_Receptacle_HRO_TYPE-C-31-M-12 +USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf +usb usb-c 2.0 pd +0 +20 +17 +Connector_USB +USB_C_Receptacle_JAE_DX07S016JA1R1500 +USB TYPE C, USB 2.0, SMT, https://www.jae.com/en/connectors/series/detail/product/id=91780 +USB C Type-C Receptacle SMD USB 2.0 +0 +22 +17 +Connector_USB +USB_C_Receptacle_JAE_DX07S024WJ1R350 +http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117219.pdf +USB C Type-C Receptacle SMD +0 +30 +25 +Connector_USB +USB_C_Receptacle_JAE_DX07S024WJ3R400 +USB TYPE C, VERT RCPT PCB, SMT, http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117928.pdf +USB C Type-C Receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Molex_105450-0101 +USB 3.0 3.1 3.2 4.0 Type-C receptable, through-hole mount, SMD, right-angle (https://www.molex.com/pdm_docs/sd/1054500101_sd.pdf) +USB C Type-C USB3 receptacle SMD +0 +28 +25 +Connector_USB +USB_C_Receptacle_Palconn_UTC16-G +http://www.palpilot.com/wp-content/uploads/2017/05/UTC027-GKN-OR-Rev-A.pdf +USB C Type-C Receptacle USB2.0 +0 +20 +17 +Connector_USB +USB_C_Receptacle_XKB_U262-16XN-4BVC11 +USB Type C, right-angle, SMT, https://datasheet.lcsc.com/szlcsc/1811141824_XKB-Enterprise-U262-161N-4BVC11_C319148.pdf +USB C Type-C Receptacle SMD +0 +20 +17 +Connector_USB +USB_Micro-AB_Molex_47590-0001 +Micro USB AB receptable, right-angle inverted (https://www.molex.com/pdm_docs/sd/475900001_sd.pdf) +Micro AB USB SMD +0 +14 +6 +Connector_USB +USB_Micro-B_Amphenol_10103594-0001LF_Horizontal +Micro USB Type B 10103594-0001LF, http://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10103594.pdf +USB USB_B USB_micro USB_OTG +0 +17 +6 +Connector_USB +USB_Micro-B_Amphenol_10104110_Horizontal +USB Micro-B, horizontal, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10104110.pdf +USB Micro B horizontal +0 +9 +6 +Connector_USB +USB_Micro-B_Amphenol_10118194_Horizontal +USB Micro-B receptacle, horizontal, SMD, 10118194, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118194.pdf +USB Micro B horizontal SMD +0 +17 +6 +Connector_USB +USB_Micro-B_GCT_USB3076-30-A +GCT Micro USB https://gct.co/files/drawings/usb3076.pdf +Micro-USB SMD Typ-B GCT +0 +11 +6 +Connector_USB +USB_Micro-B_Molex-105017-0001 +http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf +Micro-USB SMD Typ-B +0 +13 +6 +Connector_USB +USB_Micro-B_Molex-105133-0001 +Molex Vertical Micro USB Typ-B (http://www.molex.com/pdm_docs/sd/1051330001_sd.pdf) +Micro-USB SMD Typ-B Vertical +0 +8 +6 +Connector_USB +USB_Micro-B_Molex-105133-0031 +Molex Vertical Micro USB Typ-B (http://www.molex.com/pdm_docs/sd/1051330031_sd.pdf) +Micro-USB SMD Typ-B Vertical +0 +8 +6 +Connector_USB +USB_Micro-B_Molex_47346-0001 +Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://www.molex.com/pdm_docs/sd/473460001_sd.pdf) +Micro B USB SMD +0 +11 +6 +Connector_USB +USB_Micro-B_Wuerth_614105150721_Vertical +USB Micro-B receptacle, through-hole, vertical, http://katalog.we-online.de/em/datasheet/614105150721.pdf +usb micro receptacle vertical +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_614105150721_Vertical_CircularHoles +USB Micro-B receptacle, through-hole, vertical, http://katalog.we-online.de/em/datasheet/614105150721.pdf +usb micro receptacle vertical +0 +7 +6 +Connector_USB +USB_Micro-B_Wuerth_629105150521 +USB Micro-B receptacle, http://www.mouser.com/ds/2/445/629105150521-469306.pdf +usb micro receptacle +0 +9 +6 +Connector_USB +USB_Micro-B_Wuerth_629105150521_CircularHoles +USB Micro-B receptacle, http://www.mouser.com/ds/2/445/629105150521-469306.pdf +usb micro receptacle +0 +9 +6 +Connector_USB +USB_Mini-B_AdamTech_MUSB-B5-S-VT-TSMT-1_SMD_Vertical +http://www.adam-tech.com/upload/MUSB-B5-S-VT-TSMT-1.pdf +USB Mini-B +0 +7 +6 +Connector_USB +USB_Mini-B_Lumberg_2486_01_Horizontal +USB Mini-B 5-pin SMD connector, http://downloads.lumberg.com/datenblaetter/en/2486_01.pdf +USB USB_B USB_Mini connector +0 +9 +6 +Connector_USB +USB_Mini-B_Tensility_54-00023_Vertical +http://www.tensility.com/pdffiles/54-00023.pdf +usb mini receptacle vertical +0 +7 +6 +Connector_USB +USB_Mini-B_Tensility_54-00023_Vertical_CircularHoles +http://www.tensility.com/pdffiles/54-00023.pdf +usb mini receptacle vertical +0 +7 +6 +Connector_USB +USB_Mini-B_Wuerth_65100516121_Horizontal +Mini USB 2.0 Type B SMT Horizontal 5 Contacts (https://katalog.we-online.de/em/datasheet/65100516121.pdf) +Mini USB 2.0 Type B +0 +9 +6 +Connector_Wago +Wago_734-132_1x02_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-132 , 2 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +2 +2 +Connector_Wago +Wago_734-133_1x03_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-133 , 3 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +3 +3 +Connector_Wago +Wago_734-134_1x04_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-134 , 4 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +4 +4 +Connector_Wago +Wago_734-135_1x05_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-135 , 5 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +5 +5 +Connector_Wago +Wago_734-136_1x06_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-136 , 6 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +6 +6 +Connector_Wago +Wago_734-137_1x07_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-137 , 7 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +7 +7 +Connector_Wago +Wago_734-138_1x08_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-138 , 8 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +8 +8 +Connector_Wago +Wago_734-139_1x09_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-139 , 9 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +9 +9 +Connector_Wago +Wago_734-140_1x10_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-140 , 10 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +10 +10 +Connector_Wago +Wago_734-141_1x11_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-141 , 11 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +11 +11 +Connector_Wago +Wago_734-142_1x12_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-142 , 12 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +12 +12 +Connector_Wago +Wago_734-143_1x13_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-143 , 13 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +13 +13 +Connector_Wago +Wago_734-144_1x14_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-144 , 14 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +14 +14 +Connector_Wago +Wago_734-146_1x16_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-146 , 16 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +16 +16 +Connector_Wago +Wago_734-148_1x18_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-148 , 18 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +18 +18 +Connector_Wago +Wago_734-150_1x20_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-150 , 20 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +20 +20 +Connector_Wago +Wago_734-154_1x24_P3.50mm_Vertical +Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-154 , 24 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago side entry +0 +24 +24 +Connector_Wago +Wago_734-162_1x02_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-162 , 2 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +2 +2 +Connector_Wago +Wago_734-163_1x03_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-163 , 3 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +3 +3 +Connector_Wago +Wago_734-164_1x04_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-164 , 4 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +4 +4 +Connector_Wago +Wago_734-165_1x05_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-165 , 5 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +5 +5 +Connector_Wago +Wago_734-166_1x06_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-166 , 6 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +6 +6 +Connector_Wago +Wago_734-167_1x07_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-167 , 7 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +7 +7 +Connector_Wago +Wago_734-168_1x08_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-168 , 8 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +8 +8 +Connector_Wago +Wago_734-169_1x09_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-169 , 9 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +9 +9 +Connector_Wago +Wago_734-170_1x10_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-170 , 10 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +10 +10 +Connector_Wago +Wago_734-171_1x11_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-171 , 11 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +11 +11 +Connector_Wago +Wago_734-172_1x12_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-172 , 12 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +12 +12 +Connector_Wago +Wago_734-173_1x13_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-173 , 13 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +13 +13 +Connector_Wago +Wago_734-174_1x14_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-174 , 14 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +14 +14 +Connector_Wago +Wago_734-176_1x16_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-176 , 16 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +16 +16 +Connector_Wago +Wago_734-178_1x18_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-178 , 18 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +18 +18 +Connector_Wago +Wago_734-180_1x20_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-180 , 20 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +20 +20 +Connector_Wago +Wago_734-184_1x24_P3.50mm_Horizontal +Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-184 , 24 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator +connector Wago top entry +0 +24 +24 +Connector_Wire +SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm +Soldered wire connection, for a single 0.1 mmยฒ wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.1 mmยฒ wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.1 mmยฒ wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 2 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 3 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 4 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 5 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm +Soldered wire connection, for 6 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.1 mmยฒ wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.1sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm +Soldered wire connection, for a single 0.5 mmยฒ wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.5 mmยฒ wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.5 mmยฒ wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm +Soldered wire connection, for a single 0.5 mmยฒ wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.5 mmยฒ wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.5 mmยฒ wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 2 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 2 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 3 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 3 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 4 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 4 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 5 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 5 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm +Soldered wire connection, for 6 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.5 mmยฒ wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm +Soldered wire connection, for 6 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.5 mmยฒ wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm +Soldered wire connection, for a single 0.15 mmยฒ wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.15 mmยฒ wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.15 mmยฒ wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 2 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 3 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 4 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 5 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm +Soldered wire connection, for 6 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.15 mmยฒ wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.15sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm +Soldered wire connection, for a single 0.25 mmยฒ wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.25 mmยฒ wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.25 mmยฒ wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm +Soldered wire connection, for a single 0.25 mmยฒ wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.25 mmยฒ wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.25 mmยฒ wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 2 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 2 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 3 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 3 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 4 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 4 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 5 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 5 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm +Soldered wire connection, for 6 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.25 mmยฒ wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm +Soldered wire connection, for 6 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.25 mmยฒ wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.25sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm +Soldered wire connection, for a single 0.75 mmยฒ wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.75 mmยฒ wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.75 mmยฒ wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm +Soldered wire connection, for a single 0.75 mmยฒ wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.75 mmยฒ wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.75 mmยฒ wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 2 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 2 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 3 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 3 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 4 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 4 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 5 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 5 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm +Soldered wire connection, for 6 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.75 mmยฒ wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm +Soldered wire connection, for 6 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.75 mmยฒ wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.75sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm +Soldered wire connection, for a single 0.127 mmยฒ wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +1 +1 +Connector_Wire +SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for a single 0.127 mmยฒ wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 0.127 mmยฒ wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 2 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +2 +2 +Connector_Wire +SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 3 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +3 +3 +Connector_Wire +SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 4 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +4 +4 +Connector_Wire +SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 5 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +5 +5 +Connector_Wire +SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm +Soldered wire connection, for 6 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm +0 +6 +6 +Connector_Wire +SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 0.127 mmยฒ wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 0.127sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm +Soldered wire connection, for a single 1.5 mmยฒ wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for a single 1.5 mmยฒ wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1.5 mmยฒ wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm +Soldered wire connection, for a single 1.5 mmยฒ wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for a single 1.5 mmยฒ wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1.5 mmยฒ wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 2 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 2 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 3 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 3 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 4 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 4 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 5 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 5 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm +Soldered wire connection, for 6 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1.5 mmยฒ wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm +Soldered wire connection, for 6 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1.5 mmยฒ wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm +Soldered wire connection, for a single 1 mmยฒ wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for a single 1 mmยฒ wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1 mmยฒ wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm +Soldered wire connection, for a single 1 mmยฒ wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for a single 1 mmยฒ wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 1 mmยฒ wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 2 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 2 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 3 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 3 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 4 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 4 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 5 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 5 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm +Soldered wire connection, for 6 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1 mmยฒ wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm +Soldered wire connection, for 6 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 1 mmยฒ wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 1sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm +Soldered wire connection, for a single 2.5 mmยฒ wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for a single 2.5 mmยฒ wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 2.5 mmยฒ wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm +Soldered wire connection, for a single 2.5 mmยฒ wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for a single 2.5 mmยฒ wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 2.5 mmยฒ wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 2 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 2 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 3 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 3 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 4 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 4 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 5 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 5 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm +Soldered wire connection, for 6 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 2.5 mmยฒ wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm +Soldered wire connection, for 6 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 2.5 mmยฒ wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2.5sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2sqmm_1x01_D2mm_OD3.9mm +Soldered wire connection, for a single 2 mmยฒ wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +1 +1 +Connector_Wire +SolderWire-2sqmm_1x01_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for a single 2 mmยฒ wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2sqmm_1x01_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for a single 2 mmยฒ wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +1 +1 +Connector_Wire +SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 2 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +2 +2 +Connector_Wire +SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 2 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 2 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +2 +2 +Connector_Wire +SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 3 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +3 +3 +Connector_Wire +SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 3 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 3 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +3 +3 +Connector_Wire +SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 4 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +4 +4 +Connector_Wire +SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 4 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 4 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +4 +4 +Connector_Wire +SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 5 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +5 +5 +Connector_Wire +SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 5 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 5 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +5 +5 +Connector_Wire +SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm +Soldered wire connection, for 6 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm +0 +6 +6 +Connector_Wire +SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm_Relief +Soldered wire connection with feed through strain relief, for 6 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm strain-relief +0 +6 +6 +Connector_Wire +SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm_Relief2x +Soldered wire connection with double feed through strain relief, for 6 times 2 mmยฒ wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator +connector wire 2sqmm double-strain-relief +0 +6 +6 +Connector_Wire +SolderWirePad_1x01_SMD_1x2mm +Wire Pad, Square, SMD Pad, 1mm x 2mm, +MesurementPoint Square SMDPad 1mmx2mm +0 +1 +1 +Connector_Wire +SolderWirePad_1x01_SMD_5x10mm +Wire Pad, Square, SMD Pad, 5mm x 10mm, +MesurementPoint Square SMDPad 5mmx10mm +0 +1 +1 +Connector_Wuerth +Wuerth_WR-WTB_64800211622_1x02_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800211622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +2 +2 +Connector_Wuerth +Wuerth_WR-WTB_64800311622_1x03_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800311622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +3 +3 +Connector_Wuerth +Wuerth_WR-WTB_64800411622_1x04_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800411622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +4 +4 +Connector_Wuerth +Wuerth_WR-WTB_64800511622_1x05_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800511622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +5 +5 +Connector_Wuerth +Wuerth_WR-WTB_64800611622_1x06_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800611622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +6 +6 +Connector_Wuerth +Wuerth_WR-WTB_64800711622_1x07_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800711622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +7 +7 +Connector_Wuerth +Wuerth_WR-WTB_64800811622_1x08_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800811622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +8 +8 +Connector_Wuerth +Wuerth_WR-WTB_64800911622_1x09_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64800911622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +9 +9 +Connector_Wuerth +Wuerth_WR-WTB_64801011622_1x10_P1.50mm_Vertical +Wuerth WR-WTB series connector, 64801011622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator +connector Wuerth WR-WTB vertical +0 +10 +10 +Converter_ACDC +Converter_ACDC_CUI_PBO-3-Sxx_THT_Vertical +ACDC-Converter, 3W, CUI PBO-3, THT https://www.cui.com/product/resource/pbo-3.pdf +Converter AC-DC THT Vertical +0 +6 +6 +Converter_ACDC +Converter_ACDC_Hahn_HS-400xx_THT +ACDC-Converter, 3W, Hahn-HS-400xx, THT https://www.schukat.com/schukat/schukat_cms_de.nsf/index/FrameView?OpenDocument&art=HS40009&wg=M7942 +Hahn ACDC-Converter THT +0 +4 +4 +Converter_ACDC +Converter_ACDC_HiLink_HLK-PMxx +ACDC-Converter, 3W, HiLink, HLK-PMxx, THT, http://www.hlktech.net/product_detail.php?ProId=54 +ACDC-Converter 3W THT HiLink board mount module +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-02-xx_SMD +ACDC-Converter, 3W, Meanwell, IRM-02, SMD, https://www.meanwell.com/Upload/PDF/IRM-02/IRM-02-SPEC.PDF +ACDC-Converter 3W +0 +14 +14 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-02-xx_THT +ACDC-Converter, 2W, Meanwell, IRM-02, THT, https://www.meanwell.co.uk/media/productPDF/IRM-02-spec.pdf +ACDC-Converter 2W THT +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-03-xx_SMD +ACDC-Converter, 3W, Meanwell, IRM-03, SMD, http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-03 +ACDC-Converter 3W +0 +14 +14 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-03-xx_THT +ACDC-Converter, 3W, Meanwell, IRM-03, THT, https://www.meanwell.com/Upload/PDF/IRM-03/IRM-03-SPEC.PDF +ACDC-Converter 3W THT +0 +5 +5 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-05-xx_THT +http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-05 +ACDC-Converter 5W Meanwell IRM-05 +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-10-xx_THT +http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-10 +ACDC-Converter 10W Meanwell IRM-10 +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-20-xx_THT +ACDC-Converter, 20W, Meanwell, IRM-20, THT http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-20 +ACDC-Converter 20W Meanwell IRM-20 +0 +4 +4 +Converter_ACDC +Converter_ACDC_MeanWell_IRM-60-xx_THT +ACDC-Converter, 50-60W, Meanwell, IRM-60, THT https://www.meanwellusa.com/productPdf.aspx?i=687 +switching power supply +0 +4 +4 +Converter_ACDC +Converter_ACDC_Murata_BAC05SxxDC_THT +ACDC-Converter, Murata, 5W, ClassB, https://www.murata.com/products/productdata/8809982558238/KAC-BAC05.pdf +switching power supply tht +0 +5 +5 +Converter_ACDC +Converter_ACDC_RECOM_RAC01-xxSGB_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC01-GB.pdf +recom power ac dc rac01xxgb rac01-05sgb rac01-12sgb +0 +4 +4 +Converter_ACDC +Converter_ACDC_RECOM_RAC04-xxSGx_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC04-GA.pdf +recom power ac dc +0 +5 +5 +Converter_ACDC +Converter_ACDC_RECOM_RAC05-xxSK_THT +https://www.recom-power.com/pdf/Powerline-AC-DC/RAC05-K.pdf +recom power ac dc +0 +5 +5 +Converter_ACDC +Converter_ACDC_Recom_RAC20-xxDK_THT +Recom RAC20-xxDK https://recom-power.com/pdf/Powerline_AC-DC/RAC20-K.pdf#page=6 Rev. 6/2020 +Recom RAC20-xxDK +0 +5 +5 +Converter_ACDC +Converter_ACDC_Recom_RAC20-xxSK_THT +Recom RAC20-xxSK https://recom-power.com/pdf/Powerline_AC-DC/RAC20-K.pdf#page=6 Rev. 6/2020 +Recom RAC20-xxSK +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMG-15_THT +ACDC-Converter, TRACO, TMG Series 15 https://www.tracopower.com/products/tmg.pdf +ACDC-Converter TRACO TMG Series 15 +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMLM-04_THT +ACDC-Converter, TRACO, TMLM Series 04 https://www.tracopower.com/products/tmlm.pdf +ACDC-Converter TRACO TMLM Series 04 +0 +7 +7 +Converter_ACDC +Converter_ACDC_TRACO_TMLM-05_THT +ACDC-Converter, TRACO TMLM 05,https://www.tracopower.com/products/tmlm.pdf +ACDC-Converter TRACO TMLM 05 +0 +4 +4 +Converter_ACDC +Converter_ACDC_TRACO_TMLM-10-20_THT +ACDC-Converter, TRACO TMLM 10, TRACO TMLM 20, https://www.tracopower.com/products/tmlm.pdf +ACDC-Converter TRACO TMLM 10 and TMLM 20 +0 +4 +4 +Converter_ACDC +Converter_ACDC_Vigortronix_VTX-214-010-xxx_THT +Vigortronix VTX-214-010-xxx serie of ACDC converter, http://www.vigortronix.com/10WattACDCPCBPowerModule.aspx +Vigortronix VTX-214-010-xxx serie of ACDC converter +0 +4 +4 +Converter_ACDC +Converter_ACDC_Vigortronix_VTX-214-015-1xx_THT +Vigortronix VTX-214-010-xxx serie of ACDC converter, http://www.vigortronix.com/10WattACDCPCBPowerModule.aspx +Vigortronix VTX-214-010-xxx serie of ACDC converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_Artesyn_ATA_SMD +DCDC-Converter, Artesyn, ATA Series, 3W Single and Dual Output, 1500VDC Isolation, 24.0x13.7x8.0mm https://www.artesyn.com/power/assets/ata_series_ds_01apr2015_79c25814fd.pdf https://www.artesyn.com/power/assets/trn_dc-dc_ata_3w_series_releas1430412818_techref.pdf +DCDC SMD +0 +7 +7 +Converter_DCDC +Converter_DCDC_Bothhand_CFUDxxxx_THT +DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), +DCDC-Converter BOTHHAND Type CFxxxx-Serie +0 +10 +10 +Converter_DCDC +Converter_DCDC_Bothhand_CFUSxxxxEH_THT +DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), +DCDC-Converter BOTHHAND Type CFxxxx-Serie +0 +9 +9 +Converter_DCDC +Converter_DCDC_Bothhand_CFUSxxxx_THT +DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), +DCDC-Converter BOTHHAND Type CFxxxx-Serie +0 +8 +8 +Converter_DCDC +Converter_DCDC_Cincon_EC5BExx_Dual_THT +DCDC-Converter, CINCON, EC5BExx, 18-36VDC to Dual output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/B%20CASE/SPEC-EC5BE-V24.pdf +DCDC-Converter CINCON EC5BExx 18-36VDC to Dual output +0 +6 +6 +Converter_DCDC +Converter_DCDC_Cincon_EC5BExx_Single_THT +DCDC-Converter, CINCON, EC5BExx, 18-36VDC to dual output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/B%20CASE/SPEC-EC5BE-V24.pdf +DCDC-Converter CINCON EC5BExx 18-36VDC to dual output +0 +4 +4 +Converter_DCDC +Converter_DCDC_Cincon_EC6Cxx_Dual-Triple_THT +DCDC-Converter, CINCON, EC6Cxx, dual or tripple output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/C%20CASE/SPEC-EC6C-V12.pdf +DCDC-Converter CINCON EC6Cxx dual or tripple output +0 +7 +7 +Converter_DCDC +Converter_DCDC_Cincon_EC6Cxx_Single_THT +DCDC-Converter, CINCON, EC6Cxx, single output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/C%20CASE/SPEC-EC6C-V12.pdf +DCDC-Converter CINCON EC6Cxx single output +0 +6 +6 +Converter_DCDC +Converter_DCDC_Cyntec_MUN12AD01-SH +http://www.cyntec.com/upfile/products/download/Cyntec%20MUN12AD01-SH_Datasheet.pdf +Power Module uPOL MUN12AD01 +0 +13 +9 +Converter_DCDC +Converter_DCDC_Cyntec_MUN12AD03-SH +http://www.cyntec.com/upfile/products/download/Cyntec%20MUN12AD03-SH_Datasheet.pdf +Power Module uPOL MUN12AD03 +0 +19 +11 +Converter_DCDC +Converter_DCDC_MeanWell_NID30_THT +Meanwell DCDC non-isolated converter SIP module, http://www.meanwell.com/webapp/product/search.aspx?prod=nid30 +DCDC non-isolated converter +0 +11 +11 +Converter_DCDC +Converter_DCDC_MeanWell_NID60_THT +MeanWell NID60, http://www.meanwell.com/Upload/PDF/NID60/NID60-SPEC.PDF +MeanWell NID60 +0 +11 +11 +Converter_DCDC +Converter_DCDC_Murata_CRE1xxxxxx3C_THT +Isolated 1W single output DC/DC, http://power.murata.com/data/power/ncl/kdc_cre1.pdf +Isolated 1W single output DC/DC +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_CRE1xxxxxxDC_THT +Isloated DC-DC, http://power.murata.com/data/power/ncl/kdc_cre1.pdf +Isloated DC-DC +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_CRE1xxxxxxSC_THT +http://power.murata.com/data/power/ncl/kdc_cre1.pdf +murata dc-dc transformer +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_MEE1SxxxxSC_THT +https://power.murata.com/pub/data/power/ncl/kdc_mee1.pdf +murata dc-dc transformer +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_MEE3SxxxxSC_THT +https://power.murata.com/pub/data/power/ncl/kdc_mee3.pdf +murata dc-dc transformer +0 +4 +4 +Converter_DCDC +Converter_DCDC_Murata_MGJ2DxxxxxxSC_THT +Murata MGJ2DxxxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 2W, SIP package style, https://power.murata.com/data/power/ncl/kdc_mgj2.pdf +Murata MGJ2DxxxxxxSC +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_MGJ3 +Murata MGJ3, 5.2kVDC Isolated 3W Gate Drive, 15V/5V/5V Configurable, 22.61x23.11x14.19mm, https://power.murata.com/datasheet?/data/power/ncl/kdc_mgj3.pdf +DCDC SMD +0 +7 +7 +Converter_DCDC +Converter_DCDC_Murata_NCS1SxxxxSC_THT +Murata NCS1SxxxxSC https://power.murata.com/data/power/ncl/kdc_ncs1.pdf (Script generated with StandardBox.py) (Murata NCS1SxxxxSC https://power.murata.com/data/power/ncl/kdc_ncs1.pdf) +Murata NCS1SxxxxSC +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_NMAxxxxDC_THT +Isolated 1W DCDC-Converter, http://power.murata.com/data/power/ncl/kdc_nma.pdf +Isolated 1W DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_Murata_NMAxxxxSC_THT +Murata NMAxxxxSC footprint based on SIP7, http://power.murata.com/data/power/ncl/kdc_nma.pdf +Murata NMAxxxxSC DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_NXExSxxxxMC_SMD +Isolated 1W or 2W Single Output SM DC/DC Converters https://www.murata.com/products/productdata/8807031865374/kdc-nxe1.pdf#page=8 https://www.murata.com/products/productdata/8807031898142/kdc-nxe2.pdf#page=9 +Isolated 1W or 2W Single Output SM DC/DC Converters +0 +5 +5 +Converter_DCDC +Converter_DCDC_Murata_OKI-78SR_Horizontal +https://power.murata.com/data/power/oki-78sr.pdf +78sr3.3 78sr5 78sr9 78sr12 78srXX +0 +3 +3 +Converter_DCDC +Converter_DCDC_Murata_OKI-78SR_Vertical +https://power.murata.com/data/power/oki-78sr.pdf +78sr3.3 78sr5 78sr9 78sr12 78srXX +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78B-2.0_THT +DCDC-Converter, RECOM, RECOM_R-78B-2.0, SIP-3, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78E-0.5_THT +DCDC-Converter, RECOM, RECOM_R-78E-0.5, SIP-3, pitch 2.54mm, package size 11.6x8.5x10.4mm^3, https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78HB-0.5L_THT +DCDC-Converter, RECOM, RECOM_R-78HB-0.5L, SIP-3, Horizontally Mounted, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78HB-0.5_THT +DCDC-Converter, RECOM, RECOM_R-78HB-0.5, SIP-3, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +dc-dc recom buck sip-3 pitch 2.54mm +0 +3 +3 +Converter_DCDC +Converter_DCDC_RECOM_R-78S-0.1_THT +DCDC-Converter, RECOM, RECOM_R-78S-0.1, SIP-4, pitch 2.54mm, package size 11.6x8.5x10.4mm^3, https://www.recom-power.com/pdf/Innoline/R-78Sxx-0.1.pdf +dc-dc recom buck sip-4 pitch 2.54mm +0 +4 +4 +Converter_DCDC +Converter_DCDC_RECOM_R5xxxDA_THT +DCDC-Converter, RECOM, RECOM_R5xxxDA, SIP-12, Horizontally Mounted, pitch 2.54mm, package size 32.2x9.1x15mm^3, https://www.recom-power.com/pdf/Innoline/R-5xxxPA_DA.pdf +dc-dc recom buck sip-12 pitch 2.54mm +0 +12 +12 +Converter_DCDC +Converter_DCDC_RECOM_R5xxxPA_THT +DCDC-Converter, RECOM, RECOM_R5xxxPA, SIP-12, pitch 2.54mm, package size 32.2x9.1x15mm^3, https://www.recom-power.com/pdf/Innoline/R-5xxxPA_DA.pdf +dc-dc recom buck sip-12 pitch 2.54mm +0 +12 +12 +Converter_DCDC +Converter_DCDC_RECOM_RPA60-xxxxSFW +RPA60-FW 60W Isolated DC to DC Converters +DCDC Regulator Single +0 +6 +6 +Converter_DCDC +Converter_DCDC_RECOM_RPMx.x-x.0 +https://www.recom-power.com/pdf/Innoline/RPM-6.0.pdf +dc-dc recom buck lga-25 pitch 2.29mm +0 +25 +25 +Converter_DCDC +Converter_DCDC_Silvertel_Ag54xx +DCDC-Converter, 30W POE, Silvertel, pitch 2.54mm, package size 62x19.5x14mm, https://silvertel.com/images/datasheets/Ag5400-datasheet-high%20Efficiency-30W-Power-Over-Ethernet-Plus-Module-PoE+PD.pdf +DCDC-Converter Silvertel Ag5405 Ag5412 Ag5424 single output POE +0 +10 +10 +Converter_DCDC +Converter_DCDC_Silvertel_Ag5810 +DCDC-Converter, 60W POE, Silvertel, pitch 2.54mm, package size 69.98x30x15.64mm, https://silvertel.com/images/datasheets/Ag5810-datasheet-IEEE802_3bt-Power-over-Ethernet-4-pair-PD.pdf +DCDC-Converter Silvertel Ag5810 single output POE +0 +163 +13 +Converter_DCDC +Converter_DCDC_TRACO_TDN_5-xxxxWISM_SMD +Traco TDN 5WISM Series, 5W, SMD (https://assets.tracopower.com/20200225170127/TDN5WISM/documents/tdn5wism-datasheet.pdf#page=3) +dcdc traco 5w smd +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TDN_5-xxxxWI_THT +Traco TDN 5WI Series, 5W (https://www.tracopower.com/sites/default/files/products/datasheets/tdn5wi_datasheet.pdf#page=4) +dcdc traco 5w +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_TEL12-xxxx_THT +Traco 12W, THT (https://www.tracopower.com/sites/default/files/products/datasheets/tel12_datasheet.pdf) +traco dcdc tht 12w +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TEN10-xxxx_Dual_THT +DCDC-Converter, TRACO, TEN10-xxxx, single output, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf +DCDC-Converter TRACO TEN10-xxxx single output +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TEN10-xxxx_Single_THT +DCDC-Converter, TRACO, TEN10-xxxx, single output, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf +DCDC-Converter TRACO TEN10-xxxx single output +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEN10-xxxx_THT +DCDC-Converter, TRACO, TEN10-xxxx, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf +DCDC-Converter TRACO TEN10-xxxx +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TEN20-xxxx-N4_THT +DCDC-Converter TRACO TEN20 Generic, https://assets.tracopower.com/20171102100522/TEN20/documents/ten20-datasheet.pdf +DCDC-Converter TRACO TEN20 Generic +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TEN20-xxxx_THT +DCDC-Converter TRACO TEN20 Generic, https://assets.tracopower.com/20171102100522/TEN20/documents/ten20-datasheet.pdf +DCDC-Converter TRACO TEN20 Generic +0 +6 +6 +Converter_DCDC +Converter_DCDC_TRACO_THD_15-xxxxWIN_THT +Traco THD 15WIN, 15W, THT (https://www.tracopower.com/products/thd15win.pdf#page=3) +traco dcdc tht 15w +0 +9 +9 +Converter_DCDC +Converter_DCDC_TRACO_TMR-1-xxxx_Dual_THT +DCDC-Converter, TRACO, TMR 1-xxxx, Dual output, Rev. March 21.2016 +DCDC-Converter TRACO TMR1-xxxx Dual_output +0 +5 +5 +Converter_DCDC +Converter_DCDC_TRACO_TMR-1-xxxx_Single_THT +DCDC-Converter, TRACO, TMR 1-xxxx, Single output, Rev. March 21.2016 +DCDC-Converter TRACO TMR1-xxxx Single_output +0 +4 +4 +Converter_DCDC +Converter_DCDC_TRACO_TMR-1SM_SMD +http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +DCDC SMD TRACO TMR-1SM +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMR-2xxxxWI_THT +https://www.tracopower.com/products/tmr2wi.pdf +DCDC-Converter TRACO TMRxxxxWI Single/Dual_output +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TMR-xxxx_THT +DCDC-Converter, TRACO, TMR xxxx, Single/Dual output, http://www.datasheetlib.com/datasheet/135136/tmr-2-2410e_traco-power.html?page=3#datasheet +DCDC-Converter TRACO TMRxxxx Single/Dual_output +0 +7 +7 +Converter_DCDC +Converter_DCDC_TRACO_TSR-1_THT +DCDC-Converter, TRACO, TSR 1-xxxx +DCDC-Converter TRACO TSR-1 +0 +3 +3 +Converter_DCDC +Converter_DCDC_XP_POWER-IA48xxD_THT +XP_POWER IA48xxD, DIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IA48xxD DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IA48xxS_THT +XP_POWER IA48xxS, SIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IA48xxS SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IAxxxxD_THT +XP_POWER IAxxxxD, DIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IAxxxxD DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IAxxxxS_THT +XP_POWER IAxxxxS, SIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator +XP_POWER IAxxxxS SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxDH_THT +XP_POWER IHxxxxDH, DIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxDH DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxD_THT +XP_POWER IHxxxxD, DIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxD DIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxSH_THT +XP_POWER IHxxxxSH, SIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxSH SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-IHxxxxS_THT +XP_POWER IHxxxxS, SIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator +XP_POWER IHxxxxS SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-ISU02_SMD +DCDC-Converter, XP POWER, ISU02 Series, 2W Single and Dual Output, 1500VDC Isolation, 19.0x17.0x8.7mm https://www.xppower.com/Portals/0/pdfs/SF_ISU02.pdf +DCDC SMD XP POWER ISU02 +0 +7 +7 +Converter_DCDC +Converter_DCDC_XP_POWER-ITQxxxxS-H_THT +XP_POWER ITQxxxxS-H, SIP, (https://www.xppower.com/pdfs/SF_ITQ.pdf), generated with kicad-footprint-generator +XP_POWER ITQxxxxS-H SIP DCDC-Converter +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER-ITXxxxxSA_THT +XP_POWER ITXxxxxSA, SIP, (https://www.xppower.com/pdfs/SF_ITX.pdf), generated with kicad-footprint-generator +XP_POWER ITXxxxxSA SIP DCDC-Converter +0 +5 +5 +Converter_DCDC +Converter_DCDC_XP_POWER-ITxxxxxS_THT +XP_POWER ITxxxxxS, SIP, (https://www.xppower.com/portals/0/pdfs/SF_ITX.pdf https://www.xppower.com/portals/0/pdfs/SF_ITQ.pdf), generated with kicad-footprint-generator +XP_POWER ITxxxxxS SIP DCDC-Converter +0 +7 +7 +Converter_DCDC +Converter_DCDC_XP_POWER_JTDxxxxxxx_THT +XP Power JTD Series DC-DC Converter +DCDC Isolated +0 +6 +6 +Converter_DCDC +Converter_DCDC_XP_POWER_JTExxxxDxx_THT +DCDC-Converter, XP POWER, Type JTE06 Series, Dual Output +DCDC-Converter XP_POWER JTE06 Dual +0 +8 +8 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +2 +2 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style1 +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +3 +3 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style2 +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +5 +3 +Crystal +Crystal_AT310_D3.0mm_L10.0mm_Vertical +Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf +['AT310'] +0 +2 +2 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +2 +2 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style1 +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +3 +3 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style2 +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +5 +3 +Crystal +Crystal_C26-LF_D2.1mm_L6.5mm_Vertical +Crystal THT C26-LF 6.5mm length 2.06mm diameter +['C26-LF'] +0 +2 +2 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +2 +2 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style1 +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +3 +3 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style2 +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +5 +3 +Crystal +Crystal_C38-LF_D3.0mm_L8.0mm_Vertical +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +2 +2 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +2 +2 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style1 +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +3 +3 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style2 +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +5 +3 +Crystal +Crystal_DS10_D1.0mm_L4.3mm_Vertical +Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +2 +2 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +2 +2 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style1 +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +3 +3 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style2 +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +5 +3 +Crystal +Crystal_DS15_D1.5mm_L5.0mm_Vertical +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +2 +2 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +2 +2 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style1 +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +3 +3 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style2 +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +5 +3 +Crystal +Crystal_DS26_D2.0mm_L6.0mm_Vertical +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +2 +2 +Crystal +Crystal_HC18-U_Horizontal +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC18-U_Horizontal_1EP_style1 +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC18-U_Horizontal_1EP_style2 +Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC18-U_Vertical +Crystal THT HC-18/U, http://5hertz.com/pdfs/04404_D.pdf +THT crystalHC-18/U +0 +2 +2 +Crystal +Crystal_HC33-U_Horizontal +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC33-U_Horizontal_1EP_style1 +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC33-U_Horizontal_1EP_style2 +Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC33-U_Vertical +Crystal THT HC-33/U, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf +THT crystalHC-33/U +0 +2 +2 +Crystal +Crystal_HC35-U +Crystal, Quarz, HC35/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/TO71xx.pdf +Crystal Quarz HC35/U +0 +3 +3 +Crystal +Crystal_HC49-4H_Vertical +Crystal THT HC-49-4H http://5hertz.com/pdfs/04404_D.pdf +THT crystalHC-49-4H +0 +2 +2 +Crystal +Crystal_HC49-U-3Pin_Vertical +Crystal THT HC-49/U, 3pin-version, http://www.raltron.com/products/pdfspecs/crystal_hc_49_45_51.pdf +THT crystalHC-49/U +0 +3 +3 +Crystal +Crystal_HC49-U_Horizontal +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC49-U_Horizontal_1EP_style1 +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC49-U_Horizontal_1EP_style2 +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC49-U_Vertical +Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf +THT crystalHC-49/U +0 +2 +2 +Crystal +Crystal_HC50_Horizontal +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC50_Horizontal_1EP_style1 +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC50_Horizontal_1EP_style2 +Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC50_Vertical +Crystal THT HC-50, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf +THT crystalHC-50 +0 +2 +2 +Crystal +Crystal_HC51-U_Vertical +Crystal THT HC-51/U, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystalHC-51/U +0 +2 +2 +Crystal +Crystal_HC51_Horizontal +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC51_Horizontal_1EP_style1 +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC51_Horizontal_1EP_style2 +Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-6mm_Horizontal +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC52-6mm_Horizontal_1EP_style1 +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC52-6mm_Horizontal_1EP_style2 +Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-6mm_Vertical +Crystal THT HC-52/6mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystalHC-49/U +0 +2 +2 +Crystal +Crystal_HC52-8mm_Horizontal +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC52-8mm_Horizontal_1EP_style1 +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC52-8mm_Horizontal_1EP_style2 +Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-8mm_Vertical +Crystal THT HC-52/8mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystalHC-49/U +0 +2 +2 +Crystal +Crystal_HC52-U-3Pin_Vertical +Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystalHC-52/U +0 +3 +3 +Crystal +Crystal_HC52-U_Horizontal +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +2 +2 +Crystal +Crystal_HC52-U_Horizontal_1EP_style1 +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +3 +3 +Crystal +Crystal_HC52-U_Horizontal_1EP_style2 +Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal +0 +5 +3 +Crystal +Crystal_HC52-U_Vertical +Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf +THT crystal HC-52/U +0 +2 +2 +Crystal +Crystal_Round_D1.0mm_Vertical +Crystal THT DS10 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS10'] +0 +2 +2 +Crystal +Crystal_Round_D1.5mm_Vertical +Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS15'] +0 +2 +2 +Crystal +Crystal_Round_D2.0mm_Vertical +Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf +['DS26'] +0 +2 +2 +Crystal +Crystal_Round_D3.0mm_Vertical +Crystal THT C38-LF 8.0mm length 3.0mm diameter +['C38-LF'] +0 +2 +2 +Crystal +Crystal_SMD_0603-2Pin_6.0x3.5mm +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, 6.0x3.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering +SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_0603-4Pin_6.0x3.5mm +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, 6.0x3.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_0603-4Pin_6.0x3.5mm_HandSoldering +SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, hand-soldering, 6.0x3.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_2012-2Pin_2.0x1.2mm +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_2012-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_2016-4Pin_2.0x1.6mm +SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_2520-4Pin_2.5x2.0mm +SMD Crystal SERIES SMD2520/4 http://www.newxtal.com/UploadFiles/Images/2012-11-12-09-29-09-776.pdf, 2.5x2.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_3215-2Pin_3.2x1.5mm +SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf +SMD SMT Crystal +0 +2 +2 +Crystal +Crystal_SMD_3225-4Pin_3.2x2.5mm +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_5032-2Pin_5.0x3.2mm +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_5032-2Pin_5.0x3.2mm_HandSoldering +SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_5032-4Pin_5.0x3.2mm +SMD Crystal SERIES SMD2520/4 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_7050-2Pin_7.0x5.0mm +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_7050-2Pin_7.0x5.0mm_HandSoldering +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_7050-4Pin_7.0x5.0mm +SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_HandSoldering +Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM3B-4Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3B http://www.abracon.com/Resonators/abm3b.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM3C-4Pin_5.0x3.2mm +Abracon Miniature Ceramic Smd Crystal ABM3C http://www.abracon.com/Resonators/abm3c.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM7-2Pin_6.0x3.5mm +SMD Crystal Abracon ABM7, https://abracon.com/Resonators/abm7.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_Abracon_ABM8AIG-4Pin_3.2x2.5mm +Abracon Miniature Ceramic Smd Crystal ABM8AIG https://abracon.com/AIGcrystals/ABM8AIG.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM8G-4Pin_3.2x2.5mm +Abracon Miniature Ceramic Smd Crystal ABM8G http://www.abracon.com/Resonators/ABM8G.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABM10-4Pin_2.5x2.0mm +Abracon Miniature Ceramic Smd Crystal ABM10 http://www.abracon.com/Resonators/ABM10.pdf +SMD SMT crystal Abracon ABM10 +0 +4 +4 +Crystal +Crystal_SMD_Abracon_ABS25-4Pin_8.0x3.8mm +Abracon Miniature Ceramic SMD Crystal ABS25 https://abracon.com/Resonators/abs25.pdf, 8.0x3.8mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_ECS_CSM3X-2Pin_7.6x4.1mm +http://www.ecsxtal.com/store/pdf/CSM-3X.pdf +Crystal CSM-3X +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, 3.2x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, hand-soldering, 3.2x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, 5.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_HandSoldering +SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_HandSoldering +SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_HandSoldering +SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, 2.5x2.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_HandSoldering +SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, hand-soldering, 2.5x2.0mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, 7.5x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_HandSoldering +crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, hand-soldering, 7.5x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_HandSoldering +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_FOX_FQ7050-4Pin_7.0x5.0mm +FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_FrontierElectronics_FM206 +SMD Watch Crystal FrontierElectronics FM206 6.0mm length 1.9mm diameter http://www.chinafronter.com/wp-content/uploads/2013/12/FM206.pdf +['FM206'] +0 +3 +3 +Crystal +Crystal_SMD_G8-2Pin_3.2x1.5mm +SMD Crystal G8, 3.2x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_G8-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal G8, hand-soldering, 3.2x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_HC49-SD +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, 11.4x4.7mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_HC49-SD_HandSoldering +SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, hand-soldering, 11.4x4.7mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, 8.0x3.7mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_HandSoldering +SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, hand-soldering, 8.0x3.7mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, 5.0x1.9mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_HandSoldering +SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, hand-soldering, 5.0x1.9mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, 4.1x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_HandSoldering +SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, hand-soldering, 4.1x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC7V-T1A.pdf, 3.2x1.5mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_HandSoldering +SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf, hand-soldering, 3.2x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC8V-T1A.pdf, 2.0x1.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf, hand-soldering, 2.0x1.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm +SMD Crystal MicroCrystal CM9V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CM9V-T1A.pdf, 1.6x1.0mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_HandSoldering +SMD Crystal MicroCrystal CM9V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf, hand-soldering, 1.6x1.0mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_MicroCrystal_MS1V-T1K +SMD Watch Crystal MicroCrystal MS1V-T1K 6.1mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS1V-T1K.pdf +['MS1V-T1K'] +0 +3 +3 +Crystal +Crystal_SMD_MicroCrystal_MS3V-T1R +SMD Watch Crystal MicroCrystal MS3V-T1R 5.2mm length 1.4mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS3V-T1R.pdf +['MS3V-T1R'] +0 +3 +3 +Crystal +Crystal_SMD_Qantek_QC5CB-2Pin_5x3.2mm +SMD Crystal Qantek QC5CB, https://www.qantek.com/tl_files/products/crystals/QC5CB.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm +crystal Epson Toyocom FA-238 https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm +crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 11.7x4.0mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_HandSoldering +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 11.7x4.0mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_HandSoldering +SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_HandSoldering +SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 6.7x1.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_HandSoldering +SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 6.7x1.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 7.1x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_HandSoldering +SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 7.1x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 8.0x3.2mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_HandSoldering +SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 8.0x3.2mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_HandSoldering +SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_HandSoldering +SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_HandSoldering +crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_TXC_7A-2Pin_5x3.2mm +SMD Crystal TXC 7A http://txccrystal.com/images/pdf/7a.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package +SMD SMT crystal +0 +4 +4 +Crystal +Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal hand-soldering +0 +4 +4 +Crystal +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package +SMD SMT crystal +0 +2 +2 +Crystal +Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_HandSoldering +SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package +SMD SMT crystal hand-soldering +0 +2 +2 +Crystal +Crystal_SMD_TXC_AX_8045-2Pin_8.0x4.5mm +http://www.txccrystal.com/images/pdf/ax-automotive.pdf +SMD SMT crystal +0 +2 +2 +Crystal +Resonator-2Pin_W6.0mm_H3.0mm +Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-2Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-2Pin_W8.0mm_H3.5mm +Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-2Pin_W10.0mm_H5.0mm +Ceramic Resomator/Filter 10.0x5.0 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 2 pins +THT ceramic resonator filter +0 +2 +2 +Crystal +Resonator-3Pin_W6.0mm_H3.0mm +Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator-3Pin_W8.0mm_H3.5mm +Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator-3Pin_W10.0mm_H5.0mm +Ceramic Resomator/Filter 10.0x5.0mm^2 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 3 pins +THT ceramic resonator filter +0 +3 +3 +Crystal +Resonator_Murata_CSTLSxxxG-3Pin_W8.0mm_H3.0mm +Ceramic Resomator/Filter Murata CSTLSxxxG, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=8.0x3.0mm^2 package, package length=8.0mm, package width=3.0mm, 3 pins +THT ceramic resonator filter CSTLSxxxG +0 +3 +3 +Crystal +Resonator_Murata_CSTLSxxxX-3Pin_W5.5mm_H3.0mm +Ceramic Resomator/Filter Murata CSTLSxxxX, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=5.5x3.0mm^2 package, package length=5.5mm, package width=3.0mm, 3 pins +THT ceramic resonator filter CSTLSxxxX +0 +3 +3 +Crystal +Resonator_Murata_DSN6-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter Murata DSN6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins +THT ceramic resonator filter DSN6 +0 +3 +3 +Crystal +Resonator_Murata_DSS6-3Pin_W7.0mm_H2.5mm +Ceramic Resomator/Filter Murata DSS6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins +THT ceramic resonator filter DSS6 +0 +3 +3 +Crystal +Resonator_SMD-3Pin_7.2x3.0mm +SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, 7.2x3.0mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD-3Pin_7.2x3.0mm_HandSoldering +SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, hand-soldering, 7.2x3.0mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Crystal +Resonator_SMD_Murata_CDSCB-2Pin_4.5x2.0mm +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 4.5x2.0mm^2 package +SMD SMT ceramic resonator filter filter +0 +2 +2 +Crystal +Resonator_SMD_Murata_CDSCB-2Pin_4.5x2.0mm_HandSoldering +SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 4.5x2.0mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +2 +2 +Crystal +Resonator_SMD_Murata_CSTxExxV-3Pin_3.0x1.1mm +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf +SMD SMT ceramic resonator filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_CSTxExxV-3Pin_3.0x1.1mm_HandSoldering +SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf +SMD SMT ceramic resonator filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFECV-3Pin_6.9x2.9mm +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 6.9x2.9mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFECV-3Pin_6.9x2.9mm_HandSoldering +SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 6.9x2.9mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFSKA-3Pin_7.9x3.8mm +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_SFSKA-3Pin_7.9x3.8mm_HandSoldering +SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Crystal +Resonator_SMD_Murata_TPSKA-3Pin_7.9x3.8mm +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter +0 +3 +3 +Crystal +Resonator_SMD_Murata_TPSKA-3Pin_7.9x3.8mm_HandSoldering +SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package +SMD SMT ceramic resonator filter filter hand-soldering +0 +3 +3 +Diode_SMD +D_0201_0603Metric +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +diode +0 +4 +2 +Diode_SMD +D_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +diode handsolder +0 +4 +2 +Diode_SMD +D_0402_1005Metric +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_0603_1608Metric +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_0805_2012Metric +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_01005_0402Metric +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +diode +0 +4 +2 +Diode_SMD +D_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +diode handsolder +0 +4 +2 +Diode_SMD +D_1206_3216Metric +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_1210_3225Metric +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_1812_4532Metric +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2010_5025Metric +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2114_3652Metric +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2114_3652Metric_Pad1.85x3.75mm_HandSolder +Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_2512_6332Metric +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_3220_8050Metric +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode +0 +2 +2 +Diode_SMD +D_3220_8050Metric_Pad2.65x5.15mm_HandSolder +Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator +diode handsolder +0 +2 +2 +Diode_SMD +D_MELF +Diode, MELF,, +Diode MELF +0 +2 +2 +Diode_SMD +D_MELF-RM10_Universal_Handsoldering +Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole, +Diode Universal MELF RM10 Handsoldering SMD Thruhole +0 +2 +2 +Diode_SMD +D_MELF_Handsoldering +Diode MELF Handsoldering +Diode MELF Handsoldering +0 +2 +2 +Diode_SMD +D_MicroMELF +Diode, MicroMELF, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf +MicroMELF Diode +0 +2 +2 +Diode_SMD +D_MicroMELF_Handsoldering +Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf +MicroMELF Diode +0 +2 +2 +Diode_SMD +D_MicroSMP_AK +Diode MicroSMP (DO-219AD), large-pad cathode, https://www.vishay.com/docs/89020/mss1p3l.pdf +Diode MicroSMP (DO-219AD) +0 +2 +2 +Diode_SMD +D_MicroSMP_KA +Diode MicroSMP (DO-219AD), large-pad anode, https://www.vishay.com/docs/89457/msmp6a.pdf +Diode MicroSMP (DO-219AD) +0 +2 +2 +Diode_SMD +D_MiniMELF +Diode Mini-MELF (SOD-80) +Diode Mini-MELF (SOD-80) +0 +2 +2 +Diode_SMD +D_MiniMELF_Handsoldering +Diode Mini-MELF (SOD-80) Handsoldering +Diode Mini-MELF (SOD-80) Handsoldering +0 +2 +2 +Diode_SMD +D_PowerDI-5 +PowerDI,Diode,Vishay,https://www.diodes.com/assets/Package-Files/PowerDI5.pdf +PowerDI diode vishay +0 +3 +2 +Diode_SMD +D_PowerDI-123 +http://www.diodes.com/_files/datasheets/ds30497.pdf +PowerDI diode vishay +0 +2 +2 +Diode_SMD +D_Powermite2_AK +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341) +PowerMite2 +0 +2 +2 +Diode_SMD +D_Powermite2_KA +Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341) +PowerMite2 +0 +2 +2 +Diode_SMD +D_Powermite3 +Microsemi Powermite 3 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5340) +PowerMite3 +0 +3 +3 +Diode_SMD +D_Powermite_AK +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF) +Powermite +0 +2 +2 +Diode_SMD +D_Powermite_KA +Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF) +Powermite +0 +2 +2 +Diode_SMD +D_QFN_3.3x3.3mm_P0.65mm +QFN, diode, 3.3x3.3x1mm (https://www.wolfspeed.com/media/downloads/846/C3D1P7060Q.pdf) +diode qfn 3.3 +0 +3 +2 +Diode_SMD +D_SC-80 +JEITA SC-80 +SC-80 +0 +2 +2 +Diode_SMD +D_SC-80_HandSoldering +JEITA SC-80 +SC-80 +0 +2 +2 +Diode_SMD +D_SMA +Diode SMA (DO-214AC) +Diode SMA (DO-214AC) +0 +2 +2 +Diode_SMD +D_SMA-SMB_Universal_Handsoldering +Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, +Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering +0 +2 +2 +Diode_SMD +D_SMA_Handsoldering +Diode SMA (DO-214AC) Handsoldering +Diode SMA (DO-214AC) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB +Diode SMB (DO-214AA) +Diode SMB (DO-214AA) +0 +2 +2 +Diode_SMD +D_SMB-SMC_Universal_Handsoldering +Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, +Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB_Handsoldering +Diode SMB (DO-214AA) Handsoldering +Diode SMB (DO-214AA) Handsoldering +0 +2 +2 +Diode_SMD +D_SMB_Modified +Diode SMB (DO-214AA) Modified (http://www.littelfuse.com/~/media/electronics/datasheets/sidactors/littelfuse_sidactor_battrax_positive_negative_modified_do_214_datasheet.pdf.pdf) +Diode SMB (DO-214AA) +0 +3 +3 +Diode_SMD +D_SMC +Diode SMC (DO-214AB) +Diode SMC (DO-214AB) +0 +2 +2 +Diode_SMD +D_SMC-RM10_Universal_Handsoldering +Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole +Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole +0 +2 +2 +Diode_SMD +D_SMC_Handsoldering +Diode SMC (DO-214AB) Handsoldering +Diode SMC (DO-214AB) Handsoldering +0 +2 +2 +Diode_SMD +D_SMF +Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf +Diode SMF (DO-214AB) +0 +2 +2 +Diode_SMD +D_SOD-110 +SOD-110 +SOD-110 +0 +2 +2 +Diode_SMD +D_SOD-123 +SOD-123 +SOD-123 +0 +2 +2 +Diode_SMD +D_SOD-123F +D_SOD-123F +D_SOD-123F +0 +2 +2 +Diode_SMD +D_SOD-128 +D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf +D_SOD-128 +0 +2 +2 +Diode_SMD +D_SOD-323 +SOD-323 +SOD-323 +0 +2 +2 +Diode_SMD +D_SOD-323F +SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf +SOD-323F +0 +2 +2 +Diode_SMD +D_SOD-323_HandSoldering +SOD-323 +SOD-323 +0 +2 +2 +Diode_SMD +D_SOD-523 +http://www.diodes.com/datasheets/ap02001.pdf p.144 +Diode SOD523 +0 +2 +2 +Diode_SMD +D_SOD-923 +https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4 +Diode SOD923 +0 +2 +2 +Diode_SMD +D_TUMD2 +ROHM - TUMD2 +TUMD2 +0 +2 +2 +Diode_SMD +Diode_Bridge_Bourns_CD-DF4xxS +8.1x10.5mm, 4A, single phase bridge rectifier, https://www.bourns.com/docs/Product-Datasheets/CD-DF4xxSL.pdf +Surface Mount Bridge Rectifier Diode +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_ABS +SMD diode bridge ABS (Diotec), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/abs2.pdf +ABS MBLS +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_MicroDil_3.0x3.0x1.8mm +SMD package Diotec Diotec MicroDil, body 3.0x3.0x1.8mm (e.g. diode bridge), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/mys40.pdf +Diotec MicroDil diode bridge +0 +4 +4 +Diode_SMD +Diode_Bridge_Diotec_SO-DIL-Slim +SMD diode bridge Diotec SO-DIL Slim, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40fs.pdf +DFS SO-DIL Slim +0 +4 +4 +Diode_SMD +Diode_Bridge_OnSemi_SDIP-4L +SMD diode bridge OnSemi SDIP-4L, see https://www.onsemi.com/pdf/datasheet/df10s1-d.pdf +OnSemi Diode Bridge SDIP-4L +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_DFS +SMD diode bridge DFS, see http://www.vishay.com/docs/88854/padlayouts.pdf +DFS +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_DFSFlat +SMD diode bridge Low Profile DFS "Flat", see http://www.vishay.com/docs/88874/dfl15005.pdf +DFS +0 +4 +4 +Diode_SMD +Diode_Bridge_Vishay_MBLS +SMD diode bridge MBLS, see http://www.vishay.com/docs/89959/mbl104s.pdf http://www.vishay.com/docs/88854/padlayouts.pdf +DFS +0 +4 +4 +Diode_SMD +Littelfuse_PolyZen-LS +http://m.littelfuse.com/~/media/electronics/datasheets/polyzen_devices/littelfuse_polyzen_standard_polyzen_catalog_datasheet.pdf.pdf +Diode Polymer Protected Zener Diode Littelfuse LS +0 +3 +3 +Diode_SMD +Nexperia_CFP3_SOD-123W +Nexperia CFP3 (SOD-123W), https://assets.nexperia.com/documents/outline-drawing/SOD123W.pdf +CFP3 SOD-123W +0 +2 +2 +Diode_SMD +Nexperia_DSN0603-2_0.6x0.3mm_P0.4mm +SOD962-2 silicon, leadless ultra small package; 2 terminals; 0.4 mm pitch; 0.6 mm x 0.3 mm x 0.3 mm body (https://assets.nexperia.com/documents/package-information/SOD962-2.pdf https://www.nexperia.com/packages/SOD962-2.html) +TVS protection diodes +0 +2 +2 +Diode_THT +D_5KPW_P7.62mm_Vertical_AnodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KPW_P7.62mm_Vertical_KathodeUp +Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KPW_P12.70mm_Horizontal +Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm +0 +2 +2 +Diode_THT +D_5KP_P7.62mm_Vertical_AnodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P7.62mm_Vertical_KathodeUp +Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P10.16mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5KP_P12.70mm_Horizontal +Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm +0 +2 +2 +Diode_THT +D_5W_P5.08mm_Vertical_AnodeUp +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P5.08mm_Vertical_KathodeUp +Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P10.16mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_5W_P12.70mm_Horizontal +Diode, 5W series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif +Diode 5W series Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm +0 +2 +2 +Diode_THT +D_A-405_P2.54mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P2.54mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P5.08mm_Vertical_AnodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P5.08mm_Vertical_KathodeUp +Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P7.62mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P10.16mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_A-405_P12.70mm_Horizontal +Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf +Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-15_P2.54mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P2.54mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P3.81mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P3.81mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P5.08mm_Vertical_AnodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P5.08mm_Vertical_KathodeUp +Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P10.16mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P12.70mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-15_P15.24mm_Horizontal +Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf +Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm +0 +2 +2 +Diode_THT +D_DO-27_P5.08mm_Vertical_AnodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P5.08mm_Vertical_KathodeUp +Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P12.70mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-27_P15.24mm_Horizontal +Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg +Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp +Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P7.62mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P10.16mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-34_SOD68_P12.70mm_Horizontal +Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf +Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp +Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P7.62mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P10.16mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-35_SOD27_P12.70mm_Horizontal +Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf +Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp +Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P7.62mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P10.16mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-41_SOD81_P12.70mm_Horizontal +Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf +Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm +0 +2 +2 +Diode_THT +D_DO-201AD_P3.81mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P3.81mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P5.08mm_Vertical_AnodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P5.08mm_Vertical_KathodeUp +Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P12.70mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AD_P15.24mm_Horizontal +Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf +Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm +0 +2 +2 +Diode_THT +D_DO-201AE_P3.81mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P3.81mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P5.08mm_Vertical_AnodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P5.08mm_Vertical_KathodeUp +Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P12.70mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201AE_P15.24mm_Horizontal +Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf +Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm +0 +2 +2 +Diode_THT +D_DO-201_P3.81mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P3.81mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P5.08mm_Vertical_AnodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P5.08mm_Vertical_KathodeUp +Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P12.70mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-201_P15.24mm_Horizontal +Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf +Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm +0 +2 +2 +Diode_THT +D_DO-247_Horizontal_TabDown +Diode, DO-247 series, Horizontal, TabDown, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_DO-247_Horizontal_TabUp +Diode, DO-247 series, Horizontal, TabUp, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_DO-247_Vertical +Diode, DO-247 series, Vertical, P 10.9mm +diode rectifier +0 +2 +2 +Diode_THT +D_P600_R-6_P7.62mm_Vertical_AnodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P7.62mm_Vertical_KathodeUp +Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P12.70mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_P600_R-6_P20.00mm_Horizontal +Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf +Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm +0 +2 +2 +Diode_THT +D_T-1_P2.54mm_Vertical_AnodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P2.54mm_Vertical_KathodeUp +Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P5.08mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P10.16mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +D_T-1_P12.70mm_Horizontal +Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf +Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm +0 +2 +2 +Diode_THT +Diode_Bridge_15.1x15.1x6.3mm_P10.9mm +Single phase bridge rectifier case 15.1x15.1mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xxS +0 +4 +4 +Diode_THT +Diode_Bridge_15.2x15.2x6.3mm_P10.9mm +Single phase bridge rectifier case 15.2x15.2mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc600.pdf +Diode Bridge KBPC6xx +0 +4 +4 +Diode_THT +Diode_Bridge_15.7x15.7x6.3mm_P10.8mm +Single phase bridge rectifier case 15.7x15.7 +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_16.7x16.7x6.3mm_P10.8mm +Single phase bridge rectifier case 16.7x16.7 +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_19.0x3.5x10.0mm_P5.0mm +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_19.0x19.0x6.8mm_P12.7mm +Single phase bridge rectifier case 19x19mm, pitch 12.7mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf +Diode Bridge PB10xx +0 +4 +4 +Diode_THT +Diode_Bridge_28.6x28.6x7.3mm_P18.0mm_P11.6mm +Single phase bridge rectifier case 28.6x28.6mm, pitch 18.0mm & 11.6mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc1500fw.pdf +Diode Bridge KBPCxxxxWP +0 +4 +4 +Diode_THT +Diode_Bridge_32.0x5.6x17.0mm_P10.0mm_P7.5mm +Diotec 32x5.6x17mm rectifier package, 7.5mm/10mm pitch, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40c3700.pdf +Diotec rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Comchip_SCVB-L +Three phase, Bridge, Rectifier, https://www.comchiptech.com/admin/files/product/SC35VB80S-G%20Thru506369.%20SC35VB160S-G%20RevB.pdf +diode module +0 +5 +5 +Diode_THT +Diode_Bridge_DIGITRON_KBPC_T +Single phase, Bridge rectifier, 28.614x28.614mm, case KBPC_T(FP), https://www.digitroncorp.com/Digitron/media/Files/Datasheets/KBPC15005-SERIES.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_DIP-4_W5.08mm_P2.54mm +4-lead dip package for diode bridges, row spacing 5.08mm, pin-spacing 2.54mm, see http://www.vishay.com/docs/88898/b2m.pdf +DIL DIP PDIP 5.08mm 2.54 +0 +4 +4 +Diode_THT +Diode_Bridge_DIP-4_W7.62mm_P5.08mm +4-lead dip package for diode bridges, row spacing 7.62 mm (300 mils), see http://cdn-reichelt.de/documents/datenblatt/A400/HDBL101G_20SERIES-TSC.pdf +DIL DIP PDIP 5.08mm 7.62mm 300mil +0 +4 +4 +Diode_THT +Diode_Bridge_GeneSiC_KBPC_T +Single phase, Bridge rectifier, 28.55x28.55mm, case KBPC_T(FP), https://www.diodemodule.com/bridge-rectifier/kbpc/kbpc1501t.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_GeneSiC_KBPC_W +Single phase, Bridge Rectifier, 28.55x28.55mm, case KBPC_W(WP), https://www.diodemodule.com/bridge-rectifier/kbpc/kbpc15005w.pdf +diode module +0 +4 +4 +Diode_THT +Diode_Bridge_IXYS_GUFP +Three phase, Bridge, Rectifier +diode module +0 +5 +5 +Diode_THT +Diode_Bridge_Round_D8.9mm +4-lead round diode bridge package, diameter 8.9mm, pin pitch 5.08mm, see http://cdn-reichelt.de/documents/datenblatt/A400/W005M-W10M_SEP.PDF +diode bridge 8.9mm 8.85mm WOB pitch 5.08mm +0 +4 +4 +Diode_THT +Diode_Bridge_Round_D9.0mm +4-lead round diode bridge package, diameter 9.0mm, pin pitch 5.0mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40r.pdf +diode bridge 9.0mm 8.85mm WOB pitch 5.0mm +0 +4 +4 +Diode_THT +Diode_Bridge_Round_D9.8mm +4-lead round diode bridge package, diameter 9.8mm, pin pitch 5.08mm, see http://www.vishay.com/docs/88769/woo5g.pdf +diode bridge 9.8mm WOG pitch 5.08mm +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_GBL +Vishay GBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88609/gbl005.pdf +Vishay GBL rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_GBU +Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf +Vishay GBU rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBL +Vishay KBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88655/kbl005.pdf +Vishay KBL rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPC1 +Single phase bridge rectifier case KBPC1, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPC6 +Single phase bridge rectifier case KBPC6, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf +Diode Bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBPM +Vishay KBM rectifier package, 3.95mm pitch (http://www.farnell.com/datasheets/2238158.pdf, http://www.cdil.com/s/kbp2005_.pdf) +Vishay KBM rectifier diode bridge +0 +4 +4 +Diode_THT +Diode_Bridge_Vishay_KBU +Vishay KBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88656/kbu4.pdf +Vishay KBU rectifier diode bridge +0 +4 +4 +Display +AG12864E +STN/FSTN LCD 128x64 dot https://www.digchip.com/datasheets/parts/datasheet/1121/AG-12864E-pdf.php +AG12864E Graphics Display 128x64 Ampire +0 +24 +20 +Display +Adafruit_SSD1306 +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI https://learn.adafruit.com/monochrome-oled-breakouts/downloads +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI +0 +8 +8 +Display +Adafruit_SSD1306_No_Mounting_Holes +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI https://learn.adafruit.com/monochrome-oled-breakouts/downloads +Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI +0 +8 +8 +Display +CR2013-MI2120 +CR2013-MI2120 ILI9341 LCD Breakout http://pan.baidu.com/s/11Y990 +CR2013-MI2120 ILI9341 LCD Breakout +0 +18 +14 +Display +EA-eDIP128B-XXX +LCD-graphical display with LED backlight 128x64 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip128-6e.pdf +LCD-graphical display with LED backlight 128x64 RS-232 I2C or SPI +0 +32 +32 +Display +EA_DOGL128-6 +Graphical,Display,LCD,128x64 https://www.lcd-module.com/eng/pdf/grafik/dogl128-6e.pdf +EA DOGL128 +0 +26 +26 +Display +EA_DOGM128-6 +Graphical,Display,LCD,128x64 https://www.lcd-module.de/eng/pdf/grafik/dogm128e.pdf +EA DOGM128-6 +0 +26 +26 +Display +EA_DOGS104X-A +LCD 4x10 character 3.3V VDD I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/doma/dogs104e.pdf +LCD 4x10 character 3.3V VDD I2C or SPI +0 +14 +14 +Display +EA_DOGXL160-7 +Grapchical,Display,LCD,160x104 http://www.lcd-module.com/eng/pdf/grafik/dogxl160-7e.pdf +EA_DOGXL160-7 +0 +22 +22 +Display +EA_DOGXL160-7_Backlight +Grapchical,Display,LCD,160x104 http://www.lcd-module.com/eng/pdf/grafik/dogxl160-7e.pdf +EA_DOGXL160-7_Backlight +0 +22 +22 +Display +EA_T123X-I2C +http://www.lcd-module.de/pdf/doma/t123-i2c.pdf +3 Line 12 character wide alpha numeric LCD +0 +6 +6 +Display +EA_eDIP160-XXX +LCD-graphical display with LED backlight 160x104 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip160-7e.pdf +LCD-graphical display with LED backlight 160x104 RS-232 I2C or SPI +0 +40 +40 +Display +EA_eDIP240-XXX +LCD graphical display LED backlight 240x128 http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip240-7e.pdf +LCD graphical display LED backlight 240x128 +0 +40 +40 +Display +EA_eDIP320X-XXX +LCD display 320x340 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip320-8e.pdf +LCD display 320x340 RS-232 I2C or SPI +0 +48 +48 +Display +EA_eDIPTFT32-XXX +TFT-graphic display 320x240 16 bit colour with led backlight http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft32-ae.pdf +TFT-graphic display 320x240 16 bit colour with led backlight +0 +40 +40 +Display +EA_eDIPTFT43-ATC +http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft43-ae.pdf +TFT graphical display 480x272 16-bit colour with LED backlight +0 +40 +40 +Display +EA_eDIPTFT43-XXX +TFT graphical display 480x272 16-bit colour with LED backlight http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft43-ae.pdf +TFT graphical display 480x272 16-bit colour with LED backlight +0 +40 +40 +Display +EA_eDIPTFT57-XXX +http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft57-ae.pdf +TFT-graphic display 640x480 16 bit colour +0 +48 +48 +Display +EA_eDIPTFT70-ATC +TFT-graphical display 800x480 16-bit colours with capacitive touch panel http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft70-ae.pdf +TFT-graphical display 800x480 16-bit colours with capacitive touch panel +0 +48 +48 +Display +EA_eDIPTFT70-XXX +TFT-graphical display 800x480 16-bit colours http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft70-ae.pdf +TFT-graphical display 800x480 16-bit colours and touch display +0 +48 +48 +Display +ERM19264 +STN/FSTN LCD 192x64 dot https://www.buydisplay.com/download/manual/ERM19264-1_Series_Datasheet.pdf +ERM19264 Graphics Display 192x64 +0 +20 +20 +Display +HDSM-441B_HDSM-443B +2 Digit 7 segemnt blue LED, right hand decimal, https://docs.broadcom.com/docs/AV02-1589EN +2 Digit 7 segment blue LED +0 +10 +10 +Display +HDSM-541B_HDSM-543B +2 digit 7 segement blue LED with right hand decimal, https://docs.broadcom.com/docs/AV02-1588EN +2 digit 7 segement blue LED with right hand decimal +0 +10 +10 +Display +HDSP-48xx +10-Element Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Bar Graph Array +0 +20 +20 +Display +HDSP-4830 +10-Element Red Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Bar Graph Array +0 +20 +20 +Display +HDSP-4832 +10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Yellow Green Bar Graph Array +0 +20 +20 +Display +HDSP-4836 +10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Yellow Green Bar Graph Array +0 +20 +20 +Display +HDSP-4840 +10-Element Yellow Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Yellow Bar Graph Array +0 +20 +20 +Display +HDSP-4850 +10-Element Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Green Bar Graph Array +0 +20 +20 +Display +HLCP-J100 +10-Element Red Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN +10-Element Red Bar Graph Array +0 +20 +20 +Display +HY1602E +http://www.icbank.com/data/ICBShop/board/HY1602E.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +Display +LCD-016N002L +16 x 2 Character LCD, http://www.vishay.com/product?docid=37299 +LCD-016N002L 16 x 2 Character LCD +0 +24 +20 +Display +LM16255 +LCD LM16255 16x2 character http://www.datasheetlib.com/datasheet/259542/lm16255_sharp-electronics.html +LCD 12x2 +0 +14 +14 +Display +NHD-0420H1Z +NHD-0420H1Z LCD http://www.newhavendisplay.com/specs/NHD-0420H1Z-FSW-GBW-33V3.pdf +NHD-0420H1Z LCD +0 +16 +16 +Display +NHD-C0220BiZ +NHD-C0220BiZ LCD http://www.newhavendisplay.com/specs/NHD-C0220BiZ-FSW-FBW-3V3M.pdf +NHD-C0220BiZ LCD +0 +10 +10 +Display +NHD-C12832A1Z-FSRGB +128x32 LCD with RGB backlight https://www.newhavendisplay.com/specs/NHD-C12832A1Z-FSRGB-FBW-3V.pdf +lcd rgb st7565 +0 +21 +21 +Display +OLED-128O064D +128x64 OLED display +display oled +0 +30 +30 +Display +RC1602A +http://www.raystar-optronics.com/down.php?ProID=18 +LCD 16x2 Alphanumeric 16pin +0 +22 +18 +Display +WC1602A +LCD 16x2 http://www.wincomlcd.com/pdf/WC1602A-SFYLYHTC06.pdf +LCD 16x2 Alphanumeric 16pin +0 +20 +16 +Display_7Segment +7SEGMENT-LED__HDSM531_HDSM533_SMD +7-Segment Display, HDSM53x, https://docs.broadcom.com/docs/AV02-0713EN +7segment LED HDSM531 HDSM533 +0 +10 +10 +Display_7Segment +7SegmentLED_LTS6760_LTS6780 +7-Segment Display, LTS67x0, http://optoelectronics.liteon.com/upload/download/DS30-2001-355/S6760jd.pdf +7Segment LED LTS6760 LTS6780 +0 +10 +10 +Display_7Segment +AD-121F2 +Single Digit 7-segment RGB LED Display, 1-inch digit height, common anode, http://usasyck.com/products/AD-121F2_cat_e.pdf +RGB LED digit +0 +22 +22 +Display_7Segment +AFF_2x7SEG-DIGIT_10mm +Afficheur 7 segments 10mm DIGIT +AFFICHEUR +0 +16 +16 +Display_7Segment +CA56-12CGKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12CGKWA(Ver.9A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12EWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-12EWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SEKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SEKWA(Ver.7A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SRWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-12SRWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SURKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SURKWA(Ver.8A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CA56-12SYKWA +4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SYKWA(Ver.6A).pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CC56-12GWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-11GWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +CC56-12YWA +4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CC56-12YWA.pdf +4 digit 7 segment green LED +0 +12 +12 +Display_7Segment +D1X8K +https://ia800903.us.archive.org/24/items/CTKD1x8K/Cromatek%20D168K.pdf +Single digit 7 segment ultra bright red +0 +10 +10 +Display_7Segment +DA04-11CGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11CGKWA(Ver.6A).pdf +Dubble digit green 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SEKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SEKWA(Ver.9A).pdf +Dubble digit super bright orange 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SURKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SURKWA(Ver.10A).pdf +Dubble digit hyper red 7 segment LED display +0 +16 +16 +Display_7Segment +DA04-11SYKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SYKWA(Ver.6A).pdf +Dubble digit super bright yellow 7 segment LED display +0 +16 +16 +Display_7Segment +DA56-11CGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11CGKWA(Ver.16A).pdf +Double digit seven segment green LED display +0 +18 +18 +Display_7Segment +DA56-11SEKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SEKWA(Ver.9A).pdf +Double digit seven segment super bright orange LED display +0 +18 +18 +Display_7Segment +DA56-11SURKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SURKWA(Ver.11A).pdf +Double digit seven segment hyper red LED display +0 +18 +18 +Display_7Segment +DA56-11SYKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SYKWA(Ver.11A).pdf +Double digit seven segment super bright yellow LED display +0 +18 +18 +Display_7Segment +DE113-XX-XX +http://www.display-elektronik.de/filter/DE113-RS-20_635.pdf +3 1/5 digit LOW BAT + 7-Segment LCD +0 +40 +40 +Display_7Segment +DE114-RS-20 +http://www.display-elektronik.de/filter/DE113-RS-20_635.pdf +3 1/5 digit reflective LCD LOW-BAT + 7-Segment +0 +40 +40 +Display_7Segment +DE119-XX-XX +https://www.display-elektronik.de/filter/DE119-RS-20_635.pdf +4 digit 7 segment LCD +0 +40 +40 +Display_7Segment +DE122-XX-XX +http://www.display-elektronik.de/filter/DE122-RS-20_635.pdf +6 digit 7 segment LCD +0 +50 +50 +Display_7Segment +DE170-XX-XX +http://www.display-elektronik.de/filter/DE170-RS-20_75.pdf +3 1/5 digit reflective arrow bat + 7 segment LCD +0 +40 +40 +Display_7Segment +ELD_426XXXX +http://www.everlight.com/file/ProductFile/D426SYGWA-S530-E2.pdf +Double digit 7 segment brilliant yellow green LED +0 +10 +10 +Display_7Segment +HDSP-7401 +One digit 7 segment yellow, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment yellow +0 +10 +10 +Display_7Segment +HDSP-7507 ++-1 overflow 7 segment high efficiency red, https://docs.broadcom.com/docs/AV02-2553EN ++-1 overflow 7 segment high efficiency red +0 +10 +10 +Display_7Segment +HDSP-7801 +One digit 7 segment green, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment green +0 +10 +10 +Display_7Segment +HDSP-7807 ++-1 overflow 7 segment green, https://docs.broadcom.com/docs/AV02-2553EN ++-1 overflow 7 segment green +0 +10 +10 +Display_7Segment +HDSP-A151 +One digit 7 segment red, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment high efficiency red +0 +10 +10 +Display_7Segment +HDSP-A401 +One digit 7 segment orange, common anode, https://docs.broadcom.com/docs/AV02-2553EN +One digit 7 segment orange common anode +0 +10 +10 +Display_7Segment +KCSC02-105 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-105(Ver.9A).pdf +Single digit 7 segement hyper red LED +0 +10 +10 +Display_7Segment +KCSC02-106 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-106(Ver.10A).pdf +Single digit 7 segement super bright orange LED +0 +10 +10 +Display_7Segment +KCSC02-107 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-107(Ver.9A).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +KCSC02-123 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-123(Ver.10A).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +KCSC02-136 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-136(Ver.6B).pdf +Single digit 7 segement super bright yellow LED +0 +10 +10 +Display_7Segment +LTC-4627Jx +http://optoelectronics.liteon.com/upload/download/DS30-2001-393/C4627JG.pdf +4 digit 7 segment LED +0 +14 +14 +Display_7Segment +MAN71A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment red LED with right dot +0 +14 +14 +Display_7Segment +MAN72A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment red LED with left dot +0 +14 +14 +Display_7Segment +MAN73A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +Overflow +- 1 red LED +0 +14 +14 +Display_7Segment +MAN3410A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment green LED with dot +0 +14 +14 +Display_7Segment +MAN3420A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment green LED with left dot +0 +14 +14 +Display_7Segment +MAN3610A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment orange LED with right dot +0 +14 +14 +Display_7Segment +MAN3620A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment orange LED with left dot +0 +14 +14 +Display_7Segment +MAN3630A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +Overflow +- 1 orange LED +0 +14 +14 +Display_7Segment +MAN3810A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment yellow LED with right dot +0 +14 +14 +Display_7Segment +MAN3820A +https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php +One digit 7 segment yellow LED with left dot +0 +14 +14 +Display_7Segment +SA15-11xxx +http://www.kingbrightusa.com/images/catalog/SPEC/SA15-11SRWA.pdf +SA15-11xxx single digit 7 segment display 38.1mm 1.5inch +0 +10 +10 +Display_7Segment +SBC18-11SURKCGKWA +http://www.kingbright.com/attachments/file/psearch/000/00/00/SBC18-11SURKCGKWA(Ver.6A).pdf +single digit 7 segemnt red/green LED +0 +10 +10 +Display_7Segment +Sx39-1xxxxx +Single digit 7 segment LED display in red, yellow or green colour http://www.kingbrightusa.com/images/catalog/SPEC/sa39-11ewa.pdf +One digit LED 7 segment SA39-11 SC39-11 SA39-12 SC39-12 +0 +10 +10 +Ferrite_THT +LairdTech_28C0236-0JW-10 +Ferrite, vertical, LairdTech 28C0236-0JW-10, https://assets.lairdtech.com/home/brandworld/files/28C0236-0JW-10.pdf, JW Miller core https://www.bourns.com/products/magnetic-products/j.w.-miller-through-hole-ferrite-beads-emi-filters +Ferrite vertical LairdTech 28C0236-0JW-10 +0 +2 +2 +Fiducial +Fiducial_0.5mm_Mask1.5mm +Circular Fiducial, 0.5mm bare copper, 1.5mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_0.5mm_Mask1mm +Circular Fiducial, 0.5mm bare copper, 1mm soldermask opening (Level C) +fiducial +0 +1 +0 +Fiducial +Fiducial_0.75mm_Mask1.5mm +Circular Fiducial, 0.75mm bare copper, 1.5mm soldermask opening (Level B) +fiducial +0 +1 +0 +Fiducial +Fiducial_0.75mm_Mask2.25mm +Circular Fiducial, 0.75mm bare copper, 2.25mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1.5mm_Mask3mm +Circular Fiducial, 1.5mm bare copper, 3mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1.5mm_Mask4.5mm +Circular Fiducial, 1.5mm bare copper, 4.5mm soldermask opening +fiducial +0 +1 +0 +Fiducial +Fiducial_1mm_Mask2mm +Circular Fiducial, 1mm bare copper, 2mm soldermask opening (Level A) +fiducial +0 +1 +0 +Fiducial +Fiducial_1mm_Mask3mm +Circular Fiducial, 1mm bare copper, 3mm soldermask opening (recommended) +fiducial +0 +1 +0 +Filter +Filter_1109-5_1.1x0.9mm +5-pin SAW filter package - 1.1x0.9 mm Body; (see https://www.murata.com/~/media/webrenewal/support/library/catalog/products/filter/rf/p73e.ashx?la=en-gb) +Filter 5 +0 +5 +5 +Filter +Filter_1411-5_1.4x1.1mm +5-pin filter package - 1.4x1.1 mm Body; (see https://global.kyocera.com/prdct/electro/product/pdf/sf14_tdlte.pdf) +Filter 5 +0 +5 +5 +Filter +Filter_Bourns_SRF0905_6.0x9.2mm +https://www.bourns.com/docs/Product-Datasheets/SRF0905.pdf +Line Filter +0 +4 +4 +Filter +Filter_FILTERCON_1FPxx +0.5A, 250VAC, 50/60Hz line filter (https://filtercon.com.pl/wp-content/uploads/2019/07/Karta-katalogowa-FP-12-1.pdf) +EMI filter +0 +4 +4 +Filter +Filter_Mini-Circuits_FV1206 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206.pdf +Mini-Circuits Filter SMD 1206 +0 +6 +4 +Filter +Filter_Mini-Circuits_FV1206-1 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-1.pdf +Mini-Circuits Filter SMD 1206 +0 +6 +6 +Filter +Filter_Mini-Circuits_FV1206-4 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-4.pdf +Mini-Circuits Filter SMD 1206 +0 +8 +4 +Filter +Filter_Mini-Circuits_FV1206-5 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-5.pdf +Mini-Circuits Filter SMD 1206 +0 +8 +4 +Filter +Filter_Mini-Circuits_FV1206-6 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-6.pdf +Mini-Circuits Filter SMD 1206 +0 +14 +8 +Filter +Filter_Mini-Circuits_FV1206-7 +Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-7.pdf +Mini-Circuits Filter SMD 1206 +0 +5 +3 +Filter +Filter_Murata_BNX025 +https://www.murata.com/en-us/products/productdata/8796778004510/QNFH9101.pdf?1496719830000 +EMI Filter +0 +6 +4 +Filter +Filter_Murata_BNX025_ThermalVias +https://www.murata.com/en-us/products/productdata/8796778004510/QNFH9101.pdf?1496719830000 +EMI Filter +0 +19 +4 +Filter +Filter_Murata_SFECF-6 +SMD Type 10.7MHz Ceramic Filter https://www.murata.com/en-us/products/filter/cerafil/sfecf +10.7MHz smd ceramic +0 +6 +6 +Filter +Filter_Murata_SFECF-6_HandSoldering +SMD Type 10.7MHz Ceramic Filter https://www.murata.com/en-us/products/filter/cerafil/sfecf +10.7MHz smd ceramic +0 +6 +6 +Filter +Filter_SAW-6_3.8x3.8mm +6-pin 3.8 x 3.8mm SAW filter package, https://www.golledge.com/media/3785/mp08167.pdf +SAW filter 6-pin +0 +6 +6 +Filter +Filter_SAW-8_3.8x3.8mm +8-pin 3.8x3.8mm SAW filter, https://www.golledge.com/media/1831/ma05497.pdf +SAW filter 8-pin +0 +8 +8 +Filter +Filter_SAW_Epcos_DCC6C_3x3mm +EPCOS/TDK Electronics/Qualcomm DCC6c SAW filter package based on EPCOS app note 93 (https://www.catagle.com/45-2/PDF_AN93.htm) +SAW filter 6-pin +0 +6 +6 +Filter +Filter_Schaffner_FN405 +Compact PCB mounting EMI filter (https://www.schaffner.com/de/produkte/download/product/datasheet/fn-405-pcb-mounting-filter/) +EMI filter +0 +5 +5 +Filter +Filter_Schaffner_FN406 +Ultra Compact EMC Filter (https://www.schaffner.com/products/download/product/datasheet/fn-406-ultra-compact-emc-filter/) +emi filter +0 +5 +5 +Fuse +Fuse_0402_1005Metric +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_0603_1608Metric +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_0805_2012Metric +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1206_3216Metric +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1210_3225Metric +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_1812_4532Metric +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2010_5025Metric +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2512_6332Metric +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_2920_7451Metric +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator +fuse +0 +2 +2 +Fuse +Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder +Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator +fuse handsolder +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm +Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm +Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm +Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm +Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm +Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm +Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm +Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm +Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm +Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm +Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm +Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm +Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm +Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf +0ZRE BelFuse radial PTC +0 +2 +2 +Fuse +Fuse_Blade_ATO_directSolder +car blade fuse direct solder +car blade fuse +0 +2 +2 +Fuse +Fuse_Blade_Mini_directSolder +car blade fuse mini, direct solder +car blade fuse mini +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RG1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT050 +PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT070 +PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT100 +PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT200 +PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT300 +PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT400 +PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT500 +PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT550 +PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT600 +PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT650 +PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT700 +PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT750 +PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT800 +PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT900 +PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1000 +PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1100 +PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-RHT1300 +PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf +ptc resettable fuse polyfuse THT +0 +2 +2 +Fuse +Fuse_Bourns_MF-SM_7.98x5.44mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +Fuse +Fuse_Bourns_MF-SM_9.5x6.71mm +https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf +bourns ptc resettable fuse polyfuse MF-SM MF-SMHT +0 +2 +2 +Fuse +Fuse_Bourns_TBU-CA +Bourns TBU-CA Fuse, 2 Pin (https://www.bourns.com/data/global/pdfs/TBU-CA.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Bourns Fuse NoLead +0 +3 +3 +Fuse +Fuse_Littelfuse-LVR100 +Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR100 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-LVR125 +Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR125 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-LVR200 +Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf +LVR200 PTC resettable polyswitch +0 +2 +2 +Fuse +Fuse_Littelfuse-NANO2-451_453 +Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf.pdf +Fuse Nano2 +0 +2 +2 +Fuse +Fuse_Littelfuse_372_D8.50mm +Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf +fuse tht radial +0 +2 +2 +Fuse +Fuse_Littelfuse_395Series +Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, +Fuse TE5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +Fuse +Fuse_Schurter_UMT250 +Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf) +Schurter fuse smd +0 +2 +2 +Fuse +Fuse_Schurter_UMZ250 +Surface Mount Fuse with Clip, 4.2 x 11.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMZ_250.pdf) +fuse smd mount holder +0 +2 +2 +Fuse +Fuse_SunFuse-6HP +SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF +UL/CSA 6x32mm Ceramic Slow Blow Fuse +0 +2 +2 +Fuse +Fuseholder_Blade_ATO_Littelfuse_Pudenz_2_Pin +Fuseholder ATO Blade littelfuse Pudenz 2 Pin +Fuseholder ATO Blade littelfuse Pudenz 2 Pin +0 +2 +2 +Fuse +Fuseholder_Blade_Mini_Keystone_3568 +fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306 +car blade fuse mini +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Bel_FC-203-22_Lateral_P17.80x5.00mm_D1.17mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Lateral, Horizontal, Bel FC-203-22, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0672-fuse-clips-series.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Eaton_1A5601-01_Inline_P20.80x6.76mm_D1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Eaton 1A5601-01, https://www.eaton.com/content/dam/eaton/products/electronic-components/resources/data-sheet/eaton-1axxxx-pcb-fuse-clips-atc-atm-blade-data-sheet.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3512P_Inline_P23.62x7.27mm_D1.02x2.41x1.02x1.57mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3512P, http://www.keyelco.com/product-pdf.cfm?p=1386 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3512_Inline_P23.62x7.27mm_D1.02x1.57mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3512, http://www.keyelco.com/product-pdf.cfm?p=356 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3517_Inline_P23.11x6.76mm_D1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3517, http://www.keyelco.com/product-pdf.cfm?p=354 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Keystone_3518P_Inline_P23.11x6.76mm_D2.44x1.70mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3518P, http://www.keyelco.com/product-pdf.cfm?p=1387 +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_100_Inline_P20.50x4.60mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 100, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_111_Inline_P20.00x5.00mm_D1.05mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 111, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_519_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_111_Lateral_P18.80x5.00mm_D1.17mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 111 (501 and 506), https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 445/030, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_519_Inline_P20.60x5.00mm_D1.00mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 519, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_519_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_520_Inline_P20.50x5.80mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 520, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Littelfuse_521_Lateral_P17.00x5.00mm_D1.30mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 521, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_520_521_102071_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Schurter_CQM_Inline_P20.60x5.00mm_D1.00mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Schurter CQM (0752), https://www.schurter.com/en/datasheet/typ_CQM.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-5x20mm_Schurter_OG_Lateral_P15.00x5.00mm_D1.3mm_Horizontal +Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Schurter OG, https://ch.schurter.com/en/datasheet/typ_OG__Clip__5x20.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102_122_Inline_P34.21x7.62mm_D1.98mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102/122 Straight Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102_Inline_P34.21x7.62mm_D2.54mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102 Bowed Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_122_Inline_P34.21x7.62mm_D2.54mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 122 Bowed Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Clip-6.3x32mm_Littelfuse_102071_Inline_P34.70x7.60mm_D2.00mm_Horizontal +Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102071, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_520_521_102071_datasheet.pdf.pdf +fuse clip open +0 +4 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed +Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf +Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed +Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, +Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed +PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed +5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf) +fuse holder vertical 5x20mm +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf +Fuseholder horizontal open 5x20 Schurter 0031.8201 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed +Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf) +Fuseholder 5x20mm closed horizontal +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed +Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf) +fuse holder vertical 5x20mm +0 +4 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf +Fuseholder 5x20mm horizontal closed +0 +3 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open +Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf) +Fuseholder horizontal open 5x20 Schurter 0031.8221 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open +https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf +Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 +0 +2 +2 +Fuse +Fuseholder_Cylinder-5x20mm_Wuerth_696103101002-SMD_Horizontal_Open +Fuseholder horizontal open 5x20mm 250V 10A Wรผrth 696103101002 +Fuseholder horizontal open 5x20mm 250V 10A +0 +2 +2 +Fuse +Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open +Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf +Fuseholder horizontal open 6.3x32 Schurter 0031.8002 +0 +2 +2 +Fuse +Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed +Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf +Fuseholder 6.3x32mm horizontal closed +0 +3 +2 +Fuse +Fuseholder_Keystone_3555-2 +Maxi APX ATX Automotive Blade Fuse Clip Holder https://www.keyelco.com/userAssets/file/M65p40.pdf +Maxi APX ATX Automotive Blade Fuse Clip Holder +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x20mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x25mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_100_series_5x30mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x20mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x25mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_445_030_series_5x30mm +Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf +Fuseholder clips +0 +4 +2 +Fuse +Fuseholder_Littelfuse_Nano2_154x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_154_154t_154l_154tl_datasheet.pdf.pdf +SMD Nano2 holder +0 +2 +2 +Fuse +Fuseholder_Littelfuse_Nano2_157x +Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf +SMD Nano2 holder +0 +2 +2 +Fuse +Fuseholder_TR5_Littelfuse_No560_No460 +Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf +Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 +0 +2 +2 +Heatsink +Heatsink_35x26mm_1xFixation3mm_Fischer-SK486-35 +Heatsink, 35mm x 26mm, 1x Fixation 3mm, Fischer SK486-35 +heatsink +0 +1 +1 +Heatsink +Heatsink_38x38mm_SpringFixation +Heatsink, 38x38mm, Spring Fixation, diagonal, +heatsink +0 +4 +1 +Heatsink +Heatsink_62x40mm_2xFixation3mm +Heatsink, 62 x 40mm, 2x 3mm Drills, +heatsink +0 +2 +1 +Heatsink +Heatsink_125x35x50mm_3xFixationM3 +Heatsink, 125x35x50mm, 3 fixation holes 3.2mm +heatsink +0 +0 +0 +Heatsink +Heatsink_AAVID_573300D00010G_TO-263 +Heatsink, 12.70mm x 26.16mm x 10.16, SMD, 18K/W, TO-263, D2 Pak, https://www.shopaavid.com/Product/573300D00000G +Heatsink AAVID TO-263 D2 Pak +0 +2 +1 +Heatsink +Heatsink_AAVID_576802B03900G +Heatsink, 14.48x12.7x19.05mm, TO-220/ TO-262, https://www.boydcorp.com/aavid-datasheets/Board-Level-Cooling-Plug-In-5768.pdf +heatsink +0 +1 +1 +Heatsink +Heatsink_AAVID_590302B03600G +Heatsink, 25.4x25.4x42.54mm, TO-220, https://www.boydcorp.com/aavid-datasheets/Board-Level-Cooling-Channel-5903.pdf +heatsink +0 +2 +2 +Heatsink +Heatsink_AAVID_TV5G_TO220_Horizontal +Heatsink TV5G TO-220 Horizontal, https://www.shopaavid.com/Product/TV-5G +Heatsink TV5G TO-220 Horizontal +0 +0 +0 +Heatsink +Heatsink_Fischer_FK224xx2201_25x8.3mm +25x8.3mm Heatsink, 18K/W, TO-220, https://www.fischerelektronik.de/web_fischer/en_GB/$catalogue/fischerData/PR/FK224_220_1_/datasheet.xhtml?branch=heatsinks +heatsink TO-220 +0 +2 +1 +Heatsink +Heatsink_Fischer_FK24413D2PAK_26x13mm +26x13 mm SMD heatsink for TO-252 TO-263 TO-268, https://www.fischerelektronik.de/pim/upload/fischerData/cadpdf/base/fk_244_13_d2_pak.pdf +heatsink TO-252 TO-263 TO-268 +0 +2 +1 +Heatsink +Heatsink_Fischer_FK24413DPAK_23x13mm +23x13 mm SMD heatsink for TO-252 TO-263 TO-268, https://www.fischerelektronik.de/pim/upload/fischerData/cadpdf/base/fk_244_13_d_pak.pdf +heatsink TO-252 TO-263 TO-268 +0 +2 +1 +Heatsink +Heatsink_Fischer_SK104-STC-STIC_35x13mm_2xDrill2.5mm +Heatsink, 35mm x 13mm, 2x Fixation 2,5mm Drill, Soldering, Fischer SK104-STC-STIC, +Heatsink fischer TO-220 +0 +2 +1 +Heatsink +Heatsink_Fischer_SK104-STCB_35x13mm__2xDrill3.5mm_ScrewM3 +Heatsink, 35mm x 13mm, 2x Fixation 2,5mm Drill, Soldering, Fischer SK104-STC-STIC, +Heatsink fischer TO-220 +0 +2 +1 +Heatsink +Heatsink_Fischer_SK129-STS_42x25mm_2xDrill2.5mm +Heatsink, Fischer SK129 +heatsink fischer +0 +2 +1 +Heatsink +Heatsink_SheetType_50x7mm_2Fixations +Heatsink, Sheet type, 50x7mm, 2 fixations (solder), +Heatsink sheet +0 +2 +1 +Heatsink +Heatsink_Stonecold_HS-132_32x14mm_2xFixation1.5mm +Heatsink, StoneCold HS +heatsink +0 +2 +1 +Inductor_SMD +L_6.3x6.3_H3 +Choke, SMD, 6.3x6.3mm 3mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_7.3x7.3_H3.5 +Choke, SMD, 7.3x7.3mm 3.5mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_7.3x7.3_H4.5 +Choke, SMD, 7.3x7.3mm 4.5mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_10.4x10.4_H4.8 +Choke, SMD, 10.4x10.4mm 4.8mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_12x12mm_H4.5mm +Choke, SMD, 12x12mm 4.5mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_12x12mm_H6mm +Choke, SMD, 12x12mm 6mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_12x12mm_H8mm +Choke, SMD, 12x12mm 8mm height +Choke SMD +0 +2 +2 +Inductor_SMD +L_0201_0603Metric +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +inductor +0 +4 +2 +Inductor_SMD +L_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +4 +2 +Inductor_SMD +L_0402_1005Metric +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_0402_1005Metric_Pad0.77x0.64mm_HandSolder +Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_0603_1608Metric +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_0603_1608Metric_Pad1.05x0.95mm_HandSolder +Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_0805_2012Metric +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_0805_2012Metric_Pad1.05x1.20mm_HandSolder +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_0805_2012Metric_Pad1.15x1.40mm_HandSolder +Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_01005_0402Metric +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +inductor +0 +4 +2 +Inductor_SMD +L_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +4 +2 +Inductor_SMD +L_1008_2520Metric +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1008_2520Metric_Pad1.43x2.20mm_HandSolder +Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1206_3216Metric +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1206_3216Metric_Pad1.22x1.90mm_HandSolder +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1206_3216Metric_Pad1.42x1.75mm_HandSolder +Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1210_3225Metric +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1210_3225Metric_Pad1.42x2.65mm_HandSolder +Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1806_4516Metric +Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1806_4516Metric_Pad1.45x1.90mm_HandSolder +Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_1812_4532Metric +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_2010_5025Metric +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_2010_5025Metric_Pad1.52x2.65mm_HandSolder +Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_2512_6332Metric +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor +0 +2 +2 +Inductor_SMD +L_2512_6332Metric_Pad1.52x3.35mm_HandSolder +Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +inductor handsolder +0 +2 +2 +Inductor_SMD +L_AVX_LMLP07A7 +Inductor, AVX Kyocera, LMLP Series, style D, 6.6mmx7.3mm, 3.0mm height. (Script generated with StandardBox.py) (https://datasheets.avx.com/LMLPD.pdf) +Inductor LMLP +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-0630LR +smd shielded power inductor https://abracon.com/Magnetics/power/ASPI-0630LR.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-3012S +smd shielded power inductor http://www.abracon.com/Magnetics/power/ASPI-3012S.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Abracon_ASPI-4030S +smd shielded power inductor 4x4x3mm, Abracon ASPI-4030S, https://abracon.com/Magnetics/power/ASPI-4030S.pdf +inductor abracon smd shielded +0 +2 +2 +Inductor_SMD +L_Bourns-SRN1060 +Bourns SRN1060 series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRN1060.pdf +Bourns SRN1060 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRN4018 +Bourns SRN4018 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRN4018.pdf +Bourns SRN4018 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRN6028 +Bourns SRN6028 series SMD inductor +Bourns SRN6028 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRN8040_8x8.15mm +Bourns SRN8040 series SMD inductor 8x8.15mm, https://www.bourns.com/docs/Product-Datasheets/SRN8040.pdf +Bourns SRN8040 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRR1005 +Bourns SRR1005 series SMD inductor +Bourns SRR1005 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRU1028_10.0x10.0mm +Bourns SRU1028 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRU1028.pdf +Bourns SRU1028 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRU8028_8.0x8.0mm +Bourns SRU8028 series SMD inductor +Bourns SRU8028 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns-SRU8043 +Bourns SRU8043 series SMD inductor +Bourns SRU8043 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SDR1806 +https://www.bourns.com/docs/Product-Datasheets/SDR1806.pdf +Bourns SDR1806 +0 +2 +2 +Inductor_SMD +L_Bourns_SRF1260 +Inductor, Bourns, SRF1260, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/Product-Datasheets/SRF1260.pdf) +Inductor Bourns_SRF1260 +0 +4 +4 +Inductor_SMD +L_Bourns_SRN6045TA +http://www.bourns.com/docs/product-datasheets/srn6045ta.pdf +Semi-shielded Power Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRN8040TA +https://www.bourns.com/docs/product-datasheets/srn8040ta.pdf +Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1038C_10.0x10.0mm +Bourns SRP1038C series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1038C.pdf +Bourns SRP1038C SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1245A +Bourns SRP1245A series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1245A.pdf +Bourns SRP1245A SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP1770TA_16.9x16.9mm +Bourns SRP1770TA series SMD Inductor http://www.bourns.com/docs/Product-Datasheets/SRP1770TA.pdf +Bourns SRP1770TA series SMD Inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRP2313AA +Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/product-datasheets/srp2313aa.pdf +Bourns SRR1260 SMD inductor +0 +4 +2 +Inductor_SMD +L_Bourns_SRP5030T +Inductor, Bourns, SRP5030T, 5.7mmx5.2mm (Script generated with StandardBox.py) (https://www.bourns.com/data/global/pdfs/SRP5030T.pdf) +Inductor Bourns_SRP5030T +0 +2 +2 +Inductor_SMD +L_Bourns_SRP7028A_7.3x6.6mm +Shielded Power Inductors (https://www.bourns.com/docs/product-datasheets/srp7028a.pdf) +Shielded Inductors Bourns SMD SRP7028A +0 +2 +2 +Inductor_SMD +L_Bourns_SRR1208_12.7x12.7mm +Bourns SRP1208 series SMD inductor https://www.bourns.com/pdfs/SRR1208.pdf +Bourns SRP1208 SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRR1210A +Bourns SRR1210A series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRR1210A.pdf +Bourns SRR1210A SMD inductor +0 +2 +2 +Inductor_SMD +L_Bourns_SRR1260 +Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRR1260.pdf +Bourns SRR1260 SMD inductor +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS3010 +Shielded Power Inductor SMD 3x3x1mm, Coilcraft LPS3010, https://www.coilcraft.com/pdfs/lps3010.pdf +inductor low profile +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS3314 +SMD Inductor, 3.3x3.3x1.4mm, Coilcraft LPS3314, https://www.coilcraft.com/pdfs/lps3314.pdf +L Coilcraft LPS3314 +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS4018 +SMD Inductor Coilcraft LPS4018 https://www.coilcraft.com/pdfs/lps4018.pdf +L Coilcraft LPS4018 +0 +2 +2 +Inductor_SMD +L_Coilcraft_LPS5030 +Shielded Power Inductor SMD, Coilcraft LPS5030, https://www.coilcraft.com/pdfs/lps5030.pdf, StepUp generated footprint +inductor +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL60xx_6.36x6.56mm +Coilcraft XAL60xx series, https://www.coilcraft.com/pdfs/xal60xx.pdf +L Coilcraft XAL60xx +0 +2 +2 +Inductor_SMD +L_Coilcraft_XAL5030 +L_Coilcraft_XAL5030 +L Coilcraft XAL5030 +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4020 +L_Coilcraft_XxL4020 https://www.coilcraft.com/pdfs/xfl4020.pdf +L Coilcraft XxL4020 +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4030 +L_Coilcraft_XxL4030 https://www.coilcraft.com/pdfs/xfl4030.pdf +L Coilcraft XxL4030 +0 +2 +2 +Inductor_SMD +L_Coilcraft_XxL4040 +L_Coilcraft_XxL4040 https://www.coilcraft.com/pdfs/xal4000.pdf +L Coilcraft XxL4040 +0 +2 +2 +Inductor_SMD +L_CommonModeChoke_Coilcraft_0603USB +Coilcraft 0603USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0603usb.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Coilcraft_0805USB +Coilcraft 0805USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0805usb.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Coilcraft_1812CAN +Coilcraft 1812CAN Series Common Mode Choke, https://www.coilcraft.com/pdfs/1812can.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonModeChoke_Wuerth_WE-SL5 +WE-SL5 SMT Common Mode Line Filter, https://www.we-online.de/katalog/en/WE-SL5/, https://www.we-online.de/katalog/datasheet/744272471.pdf +SMT Common Mode Line Filter +0 +4 +4 +Inductor_SMD +L_CommonMode_Delevan_4222 +API Delevan, Surface Mount Common Mode Bead, 4222 4222R, http://www.delevan.com/seriesPDFs/4222.pdf +surface mount common mode bead +0 +4 +4 +Inductor_SMD +L_CommonMode_Wuerth_WE-SL2 +http://katalog.we-online.de/en/pbs/WE-SL2?sid=5fbec16187#vs_t1:c1_ct:1 +Wuerth WE-SL2 +0 +4 +4 +Inductor_SMD +L_Fastron_PISN +Choke, Drossel, PISN, SMD, Fastron, +Choke Drossel PISN SMD Fastron +0 +2 +2 +Inductor_SMD +L_Fastron_PISN_Handsoldering +Choke, Drossel, PISN, SMD, Fastron, +Choke Drossel PISN SMD Fastron +0 +2 +2 +Inductor_SMD +L_Fastron_PISR +Choke, Drossel, PISR, Fastron, SMD, +Choke Drossel PISR Fastron SMD +0 +2 +2 +Inductor_SMD +L_Fastron_PISR_Handsoldering +Choke, Drossel, PISR, Fastron, SMD, +Choke Drossel PISR Fastron SMD +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0302 +Ferrocore DLG-0302 unshielded SMD power inductor, 3.0x2.8x2.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0302 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0403 + Ferrocore DLG-0403 unshielded SMD power inductor, 4.5x4.0x3.2mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0403 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0504 +Ferrocore DLG-0504 unshielded SMD power inductor, 5.8x5.2x4.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0504 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0703 +Ferrocore DLG-0703 unshielded SMD power inductor, 7.8x7.0x3.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0703 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-0705 +Ferrocore DLG-0705 unshielded SMD power inductor, 7.8x7.0x5.0mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-0705 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-1004 +Ferrocore DLG-1004 unshielded SMD power inductor, 10.0x9.0x4.0mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-1004 +0 +2 +2 +Inductor_SMD +L_Ferrocore_DLG-1005 +Ferrocore DLG-1005 unshielded SMD power inductor, 10.0x9.0x5.4mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf +smd inductor dlg-1005 +0 +2 +2 +Inductor_SMD +L_Murata_DEM35xxC +https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundferritetypeforpl/m_dem3518c.ashx +Inductor SMD DEM35xxC +0 +2 +2 +Inductor_SMD +L_Murata_LQH2MCNxxxx02_2.0x1.6mm +Inductor, Murata, LQH2MCN_02 series, 1.6x2.0x0.9mm (https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0053.pdf) +chip coil inductor Murata LQH2MC +0 +2 +2 +Inductor_SMD +L_Murata_LQH55DN_5.7x5.0mm +Inductor, SMD, 5.7x5.0x4.7mm, https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0045.pdf +inductor smd +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_1turn_HDM0131A +Neosid, Air-Coil, SML, 1turn, HDM0131A, +Neosid Air-Coil SML 1turn HDM0131A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_2turn_HAM0231A +Neosid, Air-Coil, SML, 2turn, HAM0231A, +Neosid Air-Coil SML 2turn HAM0231A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_2turn_HDM0231A +Neosid, Air-Coil, SML, 2turn, HDM0231A, +Neosid Air-Coil SML 2turn HDM0231A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_3turn_HAM0331A +Neosid, Air-Coil, SML, 2turn, HAM0331A, +Neosid Air-Coil SML 3turn HAM0331A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_3turn_HDM0331A +Neosid, Air-Coil, SML, 3turn, HDM0331A, +Neosid Air-Coil SML 3turn HDM0331A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_4turn_HAM0431A +Neosid, Air-Coil, SML, 4turn, HAM0431A, +Neosid Air-Coil SML 4turn HAM0431A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_4turn_HDM0431A +Neosid, Air-Coil, SML, 4turn, HDM0431A, +Neosid Air-Coil SML 4turn HDM0431A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_5turn_HAM0531A +Neosid, Air-Coil, SML, 5turn, HAM0531A, +Neosid Air-Coil SML 5turn HAM0531A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_5turn_HDM0531A +Neosid, Air-Coil, SML, 5turn, HDM0531A, +Neosid Air-Coil SML 5turn HDM0531A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6-10turn_HAM0631A-HAM1031A +Neosid, Air-Coil, SML, 6-10turn, HAM0631A-HAM1031A, +Neosid Air-Coil SML 6-10turn HAM0631A-HAM1031A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6-10turn_HDM0431A-HDM1031A +Neosid, Air-Coil, SML, 6-10turn, HDM0431A-HDM1031A, +Neosid Air-Coil SML 6-10turn HDM0431A-HDM1031A +0 +2 +2 +Inductor_SMD +L_Neosid_Air-Coil_SML_6turn_HAM0631A +Neosid, Air-Coil, SML, 6turn, HAM0631A, +Neosid Air-Coil SML 6turn HAM0631A +0 +2 +2 +Inductor_SMD +L_Neosid_MicroCoil_Ms36-L +Neosid, Micro Coil, Inductor, Ms36-L, SMD, Fixed inductor, anti clockwise, https://neosid.de/en/products/inductors/rod-core-chokes/smd-rod-core-chokes/52026/ms-36/7-h?c=94 +Neosid Micro Coil Inductor Ms36-L SMD Fixed inductor anti clockwise +0 +2 +2 +Inductor_SMD +L_Neosid_Ms42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_Ms42.pdf +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_Ms50 +Neosid, Power Inductor, Ms50, SMD, Fixed inductor, https://neosid.de/import-data/product-pdf/neoFestind_Ms50.pdf +Neosid Power Inductor Ms50 SMD Fixed inductor +0 +2 +2 +Inductor_SMD +L_Neosid_Ms50T +Neosid, Power Inductor, Ms50T, SMD, Fixed inductor, high temperature, https://neosid.de/import-data/product-pdf/neoFestind_Ms50T.pdf +Neosid Power Inductor Ms50T SMD Fixed inductor high temperature +0 +2 +2 +Inductor_SMD +L_Neosid_Ms85 +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85.pdf +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms85T +Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85T.pdf +Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95 +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95T +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95T.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_Ms95a +Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95a.pdf +NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE95H +Neosid, Inductor,SM-NE95H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE95H.pdf +Neosid Inductor SM-NE95H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE127 +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE127_HandSoldering +Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf +Neosid Inductor SM-NE127 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-NE150 +Neosid, Inductor, SM-NE150, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE150.pdf +Neosid Inductor SM-NE150 Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0512H +Neosid, Inductor, PIC0512H, Power Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0512H.pdf +Neosid Inductor PIC0512H Power Inductor Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0602H +Neosid, Power Inductor, SM-PIC0602H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0602H.pdf +Neosid Power Inductor SM-PIC0602H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC0612H +Neosid, Power Inductor, SM-PIC0612H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0612H.pdf +Neosid Power Inductor SM-PIC0612H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SM-PIC1004H +Neosid, Inductor, SM-PIC1004H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC1004H.pdf +Neosid Inductor SM-PIC1004H Fixed inductor SMD +0 +2 +2 +Inductor_SMD +L_Neosid_SMS-ME3010 +Neosid, Inductor, SMS-ME3010, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3010.pdf +Neosid Inductor SMS-ME3010 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMS-ME3015 +Neosid, Power Inductor, SMS-ME3015, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3015.pdf +Neosid Power Inductor SMS-ME3015 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs42 +Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs42.pdf +Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs50 +Neosid, Inductor, SMs50, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs50.pdf +Neosid Inductor SMs50 Fixed inductor SMD magneticaly shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs85 +Neosid, Inductor, SMs85, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs85.pdf +Neosid Inductor SMs85 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Neosid_SMs95_SMs95p +Neosid, Inductor, SMs95, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMs95SMs95p.pdf +Neosid Inductor SMs95 Fixed inductor SMD magnetically shielded +0 +2 +2 +Inductor_SMD +L_Pulse_P059x +1:1, Power Inductor, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/p0599nl +inductor coil choke +0 +4 +4 +Inductor_SMD +L_Pulse_PA4320 +Inductor SMD Pulse PA4320 http://productfinder.pulseeng.com/products/datasheets/P787.pdf +Inductor SMD Pulse PA4320 +0 +2 +2 +Inductor_SMD +L_Pulse_PA4344 +Pulse PA4344 / PM4344 Series SMD Inductors https://productfinder.pulseelectronics.com/api/public/uploads/product-attachments/datasheet_p771_1608107700.pdf +Pulse PA4344 PM4344 Series SMD Inductors +0 +2 +2 +Inductor_SMD +L_Pulse_PA4349 +Shielded Molded High Current Power Inductors 23.5x22mm, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/pa4349.104anlt +Shielded Molded High Current Power Inductor +0 +2 +2 +Inductor_SMD +L_Sagami_CER1242B +Inductor, Sagami, h=4.5mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CER1257B +Inductor, Sagami, h=6.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CER1277B +Inductor, Sagami, h=8.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf +inductor sagami cer12xxb smd +0 +2 +2 +Inductor_SMD +L_Sagami_CWR1242C +Sagami power inductor, CWR1242C, H=4.5mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_Sagami_CWR1257C +Sagami power inductor, CWR1242C, H=6.0mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_Sagami_CWR1277C +Sagami power inductor, CWR1242C, H=7.7mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) +inductor sagami cwr12xx smd +0 +4 +2 +Inductor_SMD +L_SigTra_SC3316F +http://www.signaltransformer.com/sites/all/pdf/smd/P080_SC3316F.pdf +Choke +0 +2 +2 +Inductor_SMD +L_Sumida_CDMC6D28_7.25x6.5mm +SMD Power Inductor (http://products.sumida.com/products/pdf/CDMC6D28.pdf) +Inductor Sumida SMD CDMC6D28 +0 +2 +2 +Inductor_SMD +L_Sumida_CR75 +Inductor, Sumida, 8.1mm ร— 7.3mm ร— 5.5 mm, Unshielded, http://products.sumida.com/products/pdf/CR75.pdf +Inductor SMD CR75 Unshielded +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA04xxS +Inductor, Sunlord, MWSA04xxS, 4.4mmx4.2mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor inductor mwsa-s +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA05xxS +Inductor, Sunlord, MWSA05xxS, 5.4mmx5.2mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor inductor mwsa-s +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA06xxS +Inductor, Sunlord, MWSA06xxS, 7.0mmx6.6mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor inductor mwsa-s +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA08xxS +Inductor, Sunlord, MWSA08xxS, 8.2mmx8.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor inductor mwsa-s +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA12xxS +Inductor, Sunlord, MWSA12xxS, 13.45mmx12.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor inductor mwsa-s +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA17xxS +Inductor, Sunlord, MWSA17xxS, 17.15mmx17.15mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor inductor mwsa-s +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA22xxS +Inductor, Sunlord, MWSA22xxS, 22.0mmx23.5mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor inductor mwsa-s +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1003S +Inductor, Sunlord, MWSA1003S, 11.5mmx10.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor inductor mwsa-s +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1004S +Inductor, Sunlord, MWSA1004S, 11.0mmx10.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor inductor mwsa-s +0 +2 +2 +Inductor_SMD +L_Sunlord_MWSA1005S +Inductor, Sunlord, MWSA1005S, 11.5mmx10.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en +Inductor inductor mwsa-s +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA30xxS +Inductor, Sunlord, SWPA30xxS, 3.0mmx3.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA40xxS +Inductor, Sunlord, SWPA40xxS, 4.0mmx4.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA60xxS +Inductor, Sunlord, SWPA60xxS, 6.0mmx6.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA80xxS +Inductor, Sunlord, SWPA80xxS, 8.0mmx8.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA2520xxS +Inductor, Sunlord, SWPA2520xxS, 2.5mmx2.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5012S +Inductor, Sunlord, SWPA5012S, 5.0mmx5.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5020S +Inductor, Sunlord, SWPA5020S, 5.0mmx5.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor inductor swpa +0 +2 +2 +Inductor_SMD +L_Sunlord_SWPA5040S +Inductor, Sunlord, SWPA5040S, 5.0mmx5.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf +Inductor inductor swpa +0 +2 +2 +Inductor_SMD +L_TDK_NLV25_2.5x2.0mm +TDK NLV25, 2.5x2.0x1.8mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv25-ef_en.pdf +tdk nlv25 nlcv25 nlfv25 +0 +2 +2 +Inductor_SMD +L_TDK_NLV32_3.2x2.5mm +TDK NLV32, 3.2x2.5x2.2mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv32-ef_en.pdf +tdk nlv32 nlcv32 nlfv32 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6025 +Inductor, TDK, SLF6025, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6025_en.pdf) +Inductor TDK_SLF6025 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6028 +Inductor, TDK, SLF6028, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6028_en.pdf) +Inductor TDK_SLF6028 +0 +2 +2 +Inductor_SMD +L_TDK_SLF6045 +Inductor, TDK, SLF6045, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6045_en.pdf) +Inductor TDK_SLF6045 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7032 +Inductor, TDK, SLF7032, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7032_en.pdf) +Inductor TDK_SLF7032 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7045 +Inductor, TDK, SLF7045, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7045_en.pdf) +Inductor TDK_SLF7045 +0 +2 +2 +Inductor_SMD +L_TDK_SLF7055 +Inductor, TDK, SLF7055, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7055_en.pdf) +Inductor TDK_SLF7055 +0 +2 +2 +Inductor_SMD +L_TDK_SLF10145 +Inductor, TDK, SLF10145, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf10145-h_en.pdf) +Inductor TDK_SLF10145 +0 +2 +2 +Inductor_SMD +L_TDK_SLF10165 +Inductor, TDK, SLF10165, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf10165_en.pdf) +Inductor TDK_SLF10165 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12555 +Inductor, TDK, SLF12555, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf12555_en.pdf) +Inductor SLF12555 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12565 +Inductor, TDK, SLF12565, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12565-h_en.pdf) +Inductor SLF12565 +0 +2 +2 +Inductor_SMD +L_TDK_SLF12575 +Inductor, TDK, SLF12575, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12575-h_en.pdf) +Inductor SLF12575 +0 +2 +2 +Inductor_SMD +L_TDK_VLF10040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm +inductor TDK VLP smd VLF10040 +0 +2 +2 +Inductor_SMD +L_TDK_VLP8040 +Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm +inductor TDK VLP smd VLP8040 +0 +2 +2 +Inductor_SMD +L_TDK_VLS6045EX_VLS6045AF +Inductor,TDK, VLS-6045, 6x6x4.5mm, https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_power_vls6045ex_en.pdf +inductor TDK VLS SMD VLS6045EF VLS6045AF +0 +2 +2 +Inductor_SMD +L_TaiTech_TMPC1265_13.5x12.5mm +Tai Tech TMPC1265 series SMD inductor https://datasheet.lcsc.com/lcsc/2009171439_TAI-TECH-TMPC1265HP-100MG-D_C305223.pdf, 13.5x12.5x6.2mm +Tai Tech TMPC1265 SMD inductor +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_BK_Array_1206_3216Metric +Ferrite Bead Array 4x0603, Taiyo Yuden BK Series (see https://www.yuden.co.jp/productdata/catalog/mlci09_e.pdf) +ferrite bead array +0 +8 +8 +Inductor_SMD +L_Taiyo-Yuden_MD-1616 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-1616, 1.6mmx1.6mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-2020 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-2020, 2.0mmx2.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-3030 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-3030, 3.0mmx3.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-4040 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-4040, 4.0mmx4.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_MD-5050 +Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-5050, 5.0mmx5.0mm +inductor taiyo-yuden md smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-20xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-20xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-24xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-24xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-30xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-30xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-40xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-40xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-50xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-50xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-60xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-60xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-80xx +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-80xx_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-10050_9.8x10.0mm +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_Taiyo-Yuden_NR-10050_9.8x10.0mm_HandSoldering +Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N +inductor taiyo-yuden nr smd +0 +2 +2 +Inductor_SMD +L_TracoPower_TCK-047_5.2x5.8mm +Inductor, Traco, TCK-047, 5.2x5.8mm, https://www.tracopower.com/products/tck047.pdf +inductor smd traco +0 +2 +2 +Inductor_SMD +L_TracoPower_TCK-141 +Choke, SMD, 4.0x4.0mm 2.1mm height, https://www.tracopower.com/products/tck141.pdf +Choke SMD +0 +2 +2 +Inductor_SMD +L_Vishay_IFSC-1515AH_4x4x1.8mm +Low Profile, High Current Inductors (https://www.vishay.com/docs/34295/sc15ah01.pdf) +SMD Vishay Inductor Low Profile +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-1212 +Inductor, Vishay, IHLP series, 3.0mmx3.0mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-1616 +Inductor, Vishay, IHLP series, 4.1mmx4.1mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-2020 +Inductor, Vishay, IHLP series, 5.1mmx5.1mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-2525 +Inductor, Vishay, IHLP series, 6.3mmx6.3mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-4040 +Inductor, Vishay, IHLP series, 10.2mmx10.2mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-5050 +Inductor, Vishay, IHLP series, 12.7mmx12.7mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHLP-6767 +Inductor, Vishay, IHLP series, 17.0mmx17.0mm +inductor vishay ihlp smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-3825 +Inductor, Vishay, Vishay_IHSM-3825, http://www.vishay.com/docs/34018/ihsm3825.pdf, 11.2mmx6.3mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-4825 +Inductor, Vishay, Vishay_IHSM-4825, http://www.vishay.com/docs/34019/ihsm4825.pdf, 13.7mmx6.3mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-5832 +Inductor, Vishay, Vishay_IHSM-5832, http://www.vishay.com/docs/34020/ihsm5832.pdf, 16.3mmx8.1mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Vishay_IHSM-7832 +Inductor, Vishay, Vishay_IHSM-7832, http://www.vishay.com/docs/34021/ihsm7832.pdf, 19.8mmx8.1mm +inductor vishay icsm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCF-2013 +7443630070, http://katalog.we-online.de/pbs/datasheet/7443630070.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCF-2815 +74436410150, http://katalog.we-online.de/pbs/datasheet/74436410150.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCF-2818 +7443640330, http://katalog.we-online.de/pbs/datasheet/7443640330.pdf +inductor shielded wuerth hcf +0 +3 +2 +Inductor_SMD +L_Wuerth_HCI-1030 +Inductor, Wuerth Elektronik, Wuerth_HCI-1030, 10.6mmx10.6mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1040 +Inductor, Wuerth Elektronik, Wuerth_HCI-1040, 10.2mmx10.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1050 +Inductor, Wuerth Elektronik, Wuerth_HCI-1050, 10.2mmx10.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1335 +Inductor, Wuerth Elektronik, Wuerth_HCI-1335, 12.8mmx12.8mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1350 +Inductor, Wuerth Elektronik, Wuerth_HCI-1350, 12.8mmx12.8mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1365 +Inductor, Wuerth Elektronik, Wuerth_HCI-1365, 12.8mmx12.8mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-1890 +Inductor, Wuerth Elektronik, Wuerth_HCI-1890, 18.2mmx18.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-2212 +Inductor, Wuerth Elektronik, Wuerth_HCI-2212, 22.5mmx22.0mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-5040 +Inductor, Wuerth Elektronik, Wuerth_HCI-5040, 5.5mmx5.2mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7030 +Inductor, Wuerth Elektronik, Wuerth_HCI-7030, 6.9mmx6.9mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7040 +Inductor, Wuerth Elektronik, Wuerth_HCI-7040, 6.9mmx6.9mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCI-7050 +Inductor, Wuerth Elektronik, Wuerth_HCI-7050, 6.9mmx6.9mm +inductor Wuerth hci smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1050 +Inductor, Wuerth Elektronik, Wuerth_HCM-1050, 10.2mmx7.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1052 +Inductor, Wuerth Elektronik, Wuerth_HCM-1052, 10.5mmx10.3mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1070 +Inductor, Wuerth Elektronik, Wuerth_HCM-1070, 10.1mmx7.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1078 +Inductor, Wuerth Elektronik, Wuerth_HCM-1078, 9.4mmx6.2mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1190 +Inductor, Wuerth Elektronik, Wuerth_HCM-1190, 10.5mmx11.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1240 +Inductor, Wuerth Elektronik, Wuerth_HCM-1240, 10.0mmx11.8mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1350 +Inductor, Wuerth Elektronik, Wuerth_HCM-1350, 13.5mmx13.3mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-1390 +Inductor, Wuerth Elektronik, Wuerth_HCM-1390, 12.5mmx13.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-7050 +Inductor, Wuerth Elektronik, Wuerth_HCM-7050, 7.2mmx7.0mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_HCM-7070 +Inductor, Wuerth Elektronik, Wuerth_HCM-7070, 7.4mmx7.2mm +inductor Wuerth hcm smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-1610 +Inductor, Wuerth Elektronik, Wuerth_MAPI-1610, 1.6mmx1.6mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2010 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2010, 2.0mmx1.6mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2506 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2506, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2508 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2508, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2510 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2510, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-2512 +Inductor, Wuerth Elektronik, Wuerth_MAPI-2512, 2.5mmx2.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3010 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3010, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3012 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3012, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3015 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3015, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-3020 +Inductor, Wuerth Elektronik, Wuerth_MAPI-3020, 3.0mmx3.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-4020 +Inductor, Wuerth Elektronik, Wuerth_MAPI-4020, 4.0mmx4.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_MAPI-4030 +Inductor, Wuerth Elektronik, Wuerth_MAPI-4030, 4.0mmx4.0mm +inductor Wuerth smd +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-DD-Typ-L-Typ-XL-Typ-XXL +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ L, Typ XL, Typ XXL, https://katalog.we-online.com/pbs/datasheet/744874001.pdf +Choke Coupled Double Inductor SMD Wuerth WE-DD TypL TypXL TypXXL +0 +4 +4 +Inductor_SMD +L_Wuerth_WE-DD-Typ-M-Typ-S +Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744878001.pdf, https://katalog.we-online.de/pbs/datasheet/744877001.pdf +Choke Coupled Double Inductor SMD Wuerth WE-DD TypM TypS +0 +4 +4 +Inductor_SMD +L_Wuerth_WE-GF-1210 +Unshielded Inductor, Wuerth Elektronik, WE-GF, SMD, 1210, https://www.we-online.de/katalog/datasheet/74476401.pdf +Unshielded Inductor WE-GF 1210 Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-7345 +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, 7345, https://katalog.we-online.com/pbs/datasheet/744777001.pdf +Choke Shielded Power Inductor WE-PD 7345 Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-LS +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-LS_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf +Choke Shielded Power Inductor WE-PD TypLS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-M-Typ-S +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744778005.pdf +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD-Typ-M-Typ-S_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf +Choke Shielded Power Inductor WE-PD TypM TypS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-L +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ L, , https://katalog.we-online.com/pbs/datasheet/74477510.pdf +Choke Power Inductor WE-PD2 TypL Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-MS +Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ MS, https://katalog.we-online.com/pbs/datasheet/744774022.pdf +Choke Power Inductor WE-PD2 TypMS Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD2-Typ-XL +Power Inductor, Wuerth Elektronik, WE-PD2, SMT, Typ XL, https://katalog.we-online.com/pbs/datasheet/744776012.pdf +Choke Power Inductor WE-PD2 TypXL Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PD4-Typ-X +Power Inductor, Wuerth Elektronik, WE-PD4, SMT, Typ X, https://katalog.we-online.de/pbs/datasheet/74458001.pdf +Choke Power Inductor WE-PD4 TypX Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PDF +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf +Choke Shielded Power Inductor WE-PDF Wuerth +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-PDF_Handsoldering +Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf +Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering +0 +2 +2 +Inductor_SMD +L_Wuerth_WE-TPC-3816 +L_Wuerth_WE-TPC-3816 StepUp generated footprint, http://katalog.we-online.de/pbs/datasheet/7440310047.pdf +wurth wuerth smd inductor +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-2010 +Semi-Shielded High Saturation Power Inductor, body 2x1.6mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-2010 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-2512 +Semi-Shielded High Saturation Power Inductor, body 2.5x2mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-2512 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-3012 +Semi-Shielded High Saturation Power Inductor, body 3x3mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-3012 +SMT +0 +2 +2 +Inductor_SMD_Wurth +L_Wurth_WE-LQSH-4020 +Semi-Shielded High Saturation Power Inductor, body 4x4mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-4020 +SMT +0 +2 +2 +Inductor_THT +Choke_EPCOS_B82722A +Current-Compensated Ring Core Double Chokes, EPCOS, B82722A, 22.3mmx22.7mm, https://en.tdk.eu/inf/30/db/ind_2008/b82722a_j.pdf +chokes epcos tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN102-04-14.0x14.0mm +Current-compensated Chokes, Schaffner, RN102-04, 14.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN112-04-17.7x17.1mm +Current-compensated Chokes, Schaffner, RN112-04, 17.7mmx17.1mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN114-04-22.5x21.5mm +Current-compensated Chokes, Schaffner, RN114-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN116-04-22.5x21.5mm +Current-compensated Chokes, Schaffner, RN116-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN122-04-28.0x27.0mm +Current-compensated Chokes, Schaffner, RN122-04, 28.0mmx27.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN142-04-33.1x32.5mm +Current-compensated Chokes, Schaffner, RN142-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN143-04-33.1x32.5mm +Current-compensated Chokes, Schaffner, RN143-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN152-04-43.0x41.8mm +Current-compensated Chokes, Schaffner, RN152-04, 43.0mmx41.8mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN202-04-8.8x18.2mm +Current-compensated Chokes, Schaffner, RN202-04, 8.8mmx18.2mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN204-04-9.0x14.0mm +Current-compensated Chokes, Schaffner, RN204-04, 9.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN212-04-12.5x18.0mm +Current-compensated Chokes, Schaffner, RN212-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN214-04-15.5x23.0mm +Current-compensated Chokes, Schaffner, RN214-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN216-04-15.5x23.0mm +Current-compensated Chokes, Schaffner, RN216-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN218-04-12.5x18.0mm +Current-compensated Chokes, Schaffner, RN218-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN222-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN222-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN232-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN232-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +Choke_Schaffner_RN242-04-18.0x31.0mm +Current-compensated Chokes, Schaffner, RN242-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ +chokes schaffner tht +0 +4 +4 +Inductor_THT +L_Axial_L5.0mm_D3.6mm_P10.00mm_Horizontal_Murata_BL01RN1A2A2 +Inductor, Murata BL01RN1A2A2, Axial, Horizontal, pin pitch=10.00mm, length*diameter=5*3.6mm, https://www.murata.com/en-global/products/productdetail?partno=BL01RN1A2A2%23 +inductor axial horizontal +0 +2 +2 +Inductor_THT +L_Axial_L5.3mm_D2.2mm_P2.54mm_Vertical_Vishay_IM-1 +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Vertical pin pitch 2.54mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +Inductor_THT +L_Axial_L5.3mm_D2.2mm_P7.62mm_Horizontal_Vishay_IM-1 +Inductor, Axial series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Horizontal pin pitch 7.62mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +Inductor_THT +L_Axial_L5.3mm_D2.2mm_P10.16mm_Horizontal_Vishay_IM-1 +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 5.3mm diameter 2.2mm Vishay IM-1 +0 +2 +2 +Inductor_THT +L_Axial_L6.6mm_D2.7mm_P2.54mm_Vertical_Vishay_IM-2 +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Vertical pin pitch 2.54mm length 6.6mm diameter 2.7mm Vishay IM-2 +0 +2 +2 +Inductor_THT +L_Axial_L6.6mm_D2.7mm_P10.16mm_Horizontal_Vishay_IM-2 +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 6.6mm diameter 2.7mm Vishay IM-2 +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P2.54mm_Vertical_Fastron_MICC +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 2.54mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P5.08mm_Vertical_Fastron_MICC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P10.16mm_Horizontal_Fastron_MICC +Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 10.16mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L7.0mm_D3.3mm_P12.70mm_Horizontal_Fastron_MICC +Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 12.7mm length 7mm diameter 3.3mm Fastron MICC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P2.54mm_Vertical_Fastron_SMCC +Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Vertical pin pitch 2.54mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P5.08mm_Vertical_Fastron_SMCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P12.70mm_Horizontal_Fastron_SMCC +Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L9.5mm_D4.0mm_P15.24mm_Horizontal_Fastron_SMCC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 4mm Fastron SMCC +0 +2 +2 +Inductor_THT +L_Axial_L11.0mm_D4.5mm_P5.08mm_Vertical_Fastron_MECC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +Inductor_THT +L_Axial_L11.0mm_D4.5mm_P7.62mm_Vertical_Fastron_MECC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +Inductor_THT +L_Axial_L11.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_MECC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 11mm diameter 4.5mm Fastron MECC +0 +2 +2 +Inductor_THT +L_Axial_L12.0mm_D5.0mm_P5.08mm_Vertical_Fastron_MISC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +Inductor_THT +L_Axial_L12.0mm_D5.0mm_P7.62mm_Vertical_Fastron_MISC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +Inductor_THT +L_Axial_L12.0mm_D5.0mm_P15.24mm_Horizontal_Fastron_MISC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 12mm diameter 5mm Fastron MISC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L12.8mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 12.8mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L13.0mm_D4.5mm_P5.08mm_Vertical_Fastron_HCCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +Inductor_THT +L_Axial_L13.0mm_D4.5mm_P7.62mm_Vertical_Fastron_HCCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +Inductor_THT +L_Axial_L13.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_HCCC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 13mm diameter 4.5mm Fastron HCCC +0 +2 +2 +Inductor_THT +L_Axial_L14.0mm_D4.5mm_P5.08mm_Vertical_Fastron_LACC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +Inductor_THT +L_Axial_L14.0mm_D4.5mm_P7.62mm_Vertical_Fastron_LACC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +Inductor_THT +L_Axial_L14.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_LACC +Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 15.24mm length 14mm diameter 4.5mm Fastron LACC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L14.5mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 14.5mm diameter 5.8mm Fastron HBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P5.08mm_Vertical_Fastron_VHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P7.62mm_Vertical_Fastron_VHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P20.32mm_Horizontal_Fastron_VHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D6.3mm_P25.40mm_Horizontal_Fastron_VHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 6.3mm Fastron VHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P5.08mm_Vertical_Fastron_XHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P7.62mm_Vertical_Fastron_XHBCC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P20.32mm_Horizontal_Fastron_XHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D7.5mm_P25.40mm_Horizontal_Fastron_XHBCC +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 7.5mm Fastron XHBCC +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D9.5mm_P5.08mm_Vertical_Vishay_IM-10-37 +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 9.5mm Vishay IM-10-37 +0 +2 +2 +Inductor_THT +L_Axial_L16.0mm_D9.5mm_P20.32mm_Horizontal_Vishay_IM-10-37 +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 9.5mm Vishay IM-10-37 +0 +2 +2 +Inductor_THT +L_Axial_L17.5mm_D12.0mm_P7.62mm_Vertical_Vishay_IM-10-46 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 17.5mm diameter 12mm Vishay IM-10-46 +0 +2 +2 +Inductor_THT +L_Axial_L17.5mm_D12.0mm_P20.32mm_Horizontal_Vishay_IM-10-46 +Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf +Inductor Axial series Axial Horizontal pin pitch 20.32mm length 17.5mm diameter 12mm Vishay IM-10-46 +0 +2 +2 +Inductor_THT +L_Axial_L20.0mm_D8.0mm_P5.08mm_Vertical +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=20*8mm^2 +Inductor Axial series Axial Vertical pin pitch 5.08mm length 20mm diameter 8mm +0 +2 +2 +Inductor_THT +L_Axial_L20.0mm_D8.0mm_P7.62mm_Vertical +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20*8mm^2 +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20mm diameter 8mm +0 +2 +2 +Inductor_THT +L_Axial_L20.0mm_D8.0mm_P25.40mm_Horizontal +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20*8mm^2 +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20mm diameter 8mm +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-101 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.07mm Vishay IHA-101 +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.1mm_P28.50mm_Horizontal_Vishay_IHA-101 +Inductor, Axial series, Axial, Horizontal, pin pitch=28.5mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 28.5mm length 20.32mm diameter 12.07mm Vishay IHA-101 +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-201 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.7mm Vishay IHA-201 +0 +2 +2 +Inductor_THT +L_Axial_L20.3mm_D12.7mm_P25.40mm_Horizontal_Vishay_IHA-201 +Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20.32mm diameter 12.7mm Vishay IHA-201 +0 +2 +2 +Inductor_THT +L_Axial_L23.4mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-203 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 23.37mm diameter 12.7mm Vishay IHA-203 +0 +2 +2 +Inductor_THT +L_Axial_L23.4mm_D12.7mm_P32.00mm_Horizontal_Vishay_IHA-203 +Inductor, Axial series, Axial, Horizontal, pin pitch=32mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 32mm length 23.37mm diameter 12.7mm Vishay IHA-203 +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.1mm_P5.08mm_Vertical_Vishay_IM-10-28 +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.1mm Vishay IM-10-28 +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.1mm_P30.48mm_Horizontal_Vishay_IM-10-28 +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 24mm diameter 7.1mm Vishay IM-10-28 +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.5mm_P5.08mm_Vertical_Fastron_MESC +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.5mm_P7.62mm_Vertical_Fastron_MESC +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +Inductor_THT +L_Axial_L24.0mm_D7.5mm_P27.94mm_Horizontal_Fastron_MESC +Inductor, Axial series, Axial, Horizontal, pin pitch=27.94mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf +Inductor Axial series Axial Horizontal pin pitch 27.94mm length 24mm diameter 7.5mm Fastron MESC +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D9.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D9.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D9.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 9mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D10.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D10.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D10.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 10mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D11.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D11.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.0mm_D11.0mm_P30.48mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 11mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-103 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 12.07mm Vishay IHA-103 +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D12.1mm_P35.00mm_Horizontal_Vishay_IHA-103 +Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 12.07mm Vishay IHA-103 +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-104 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 13.97mm Vishay IHA-104 +0 +2 +2 +Inductor_THT +L_Axial_L26.7mm_D14.0mm_P35.00mm_Horizontal_Vishay_IHA-104 +Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 13.97mm Vishay IHA-104 +0 +2 +2 +Inductor_THT +L_Axial_L29.9mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-105 +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 29.85mm diameter 13.97mm Vishay IHA-105 +0 +2 +2 +Inductor_THT +L_Axial_L29.9mm_D14.0mm_P38.00mm_Horizontal_Vishay_IHA-105 +Inductor, Axial series, Axial, Horizontal, pin pitch=38mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf +Inductor Axial series Axial Horizontal pin pitch 38mm length 29.85mm diameter 13.97mm Vishay IHA-105 +0 +2 +2 +Inductor_THT +L_Axial_L30.0mm_D8.0mm_P5.08mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 5.08mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L30.0mm_D8.0mm_P7.62mm_Vertical_Fastron_77A +Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Vertical pin pitch 7.62mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +Inductor_THT +L_Axial_L30.0mm_D8.0mm_P35.56mm_Horizontal_Fastron_77A +Inductor, Axial series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf +Inductor Axial series Axial Horizontal pin pitch 35.56mm length 30mm diameter 8mm Fastron 77A +0 +2 +2 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x105NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x155NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x205NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x405NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455x705NL_1 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_PulseElectronics_PH9455xxx6NL_2 +common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl +cmode choke dual +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L19.3mm_W10.8mm_Px6.35mm_Py15.24mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=6.35*15.24mm^2, , length*width=19.304*10.795mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 6.35*15.24mm^2 length 19.304mm width 10.795mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L21.0mm_W10.0mm_Px5.08mm_Py12.70mm_Murata_5100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=5.08*12.70mm^2, , length*width=21*10mm^2, muRATA, 5100, http://www.murata-ps.com/data/magnetics/kmp_5100.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 5.08*12.70mm^2 length 21mm width 10mm muRATA 5100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L24.0mm_W16.3mm_Px10.16mm_Py20.32mm_Murata_5200 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=24*16.3mm^2, muRATA, 5200, http://www.murata-ps.com/data/magnetics/kmp_5200.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 24mm width 16.3mm muRATA 5200 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L30.5mm_W15.2mm_Px10.16mm_Py20.32mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=30.479999999999997*15.239999999999998mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 30.479999999999997mm width 15.239999999999998mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L34.3mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=34.29*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 34.29mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L36.8mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=36.83*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 36.83mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L38.1mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=38.099999999999994*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 38.099999999999994mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L39.4mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=39.37*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 39.37mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L41.9mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=41.91*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 41.91mm width 20.32mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_Toroid_Vertical_L43.2mm_W22.9mm_Px17.78mm_Py30.48mm_Bourns_8100 +L_CommonMode_Toroid, Vertical series, Radial, pin pitch=17.78*30.48mm^2, , length*width=43.18*22.86mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf +L_CommonMode_Toroid Vertical series Radial pin pitch 17.78*30.48mm^2 length 43.18mm width 22.86mm Bourns 8100 +0 +4 +4 +Inductor_THT +L_CommonMode_VAC_T60405-S6123-X140 +3 Phase, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X140.pdf +common mode filter +0 +6 +6 +Inductor_THT +L_CommonMode_VAC_T60405-S6123-X240 +3 Phase, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X240.pdf +common mode filter +0 +6 +6 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-L +Wuerth, WE-CMB, Bauform L, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-M +Wuerth, WE-CMB, Bauform M, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-S +Wuerth, WE-CMB, Bauform S, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-XL +Wuerth, WE-CMB, Bauform XL, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-XS +Wuerth, WE-CMB, Bauform XS, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_CommonMode_Wuerth_WE-CMB-XXL +Wuerth, WE-CMB, Bauform XXL, +CommonModeChoke Gleichtaktdrossel +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM120 +Lodestone Pacific, 30.48mm diameter vertical toroid mount, 16AWG/1.27mm holes, http://www.lodestonepacific.com/CatKpdf/VTM_Series.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM160 +Lodestone Pacific, 40.64mm diameter vertical toroid mount, 16AWG/1.27mm holes, http://www.lodestonepacific.com/CatKpdf/VTM_Series.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM254 +Lodestone Pacific, 64.51mm diameter vertical toroid mount, 16AWG/1.27mm holes, http://www.lodestonepacific.com/CatKpdf/VTM_Series.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM280 +Lodestone Pacific, 71.12mm diameter vertical toroid mount, 16AWG/1.27mm holes, http://www.lodestonepacific.com/CatKpdf/VTM_Series.pdf +vertical inductor toroid mount +0 +4 +4 +Inductor_THT +L_Mount_Lodestone_VTM950-6 +Lodestone Pacific, vertical toroid mount, 11x19mm, 6 pins, http://www.lodestonepacific.com/CatKpdf/VTM950-6.pdf +vertical inductor toroid mount +0 +6 +6 +Inductor_THT +L_Radial_D6.0mm_P4.00mm +Inductor, Radial series, Radial, pin pitch=4.00mm, , diameter=6.0mm, http://www.abracon.com/Magnetics/radial/AIUR-07.pdf +Inductor Radial series Radial pin pitch 4.00mm diameter 6.0mm +0 +2 +2 +Inductor_THT +L_Radial_D7.0mm_P3.00mm +Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7mm, http://www.abracon.com/Magnetics/radial/AIUR-16.pdf +Inductor Radial series Radial pin pitch 3.00mm diameter 7mm +0 +2 +2 +Inductor_THT +L_Radial_D7.2mm_P3.00mm_Murata_1700 +Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7.2mm, MuRATA, 1700, http://www.murata-ps.com/data/magnetics/kmp_1700.pdf +Inductor Radial series Radial pin pitch 3.00mm diameter 7.2mm MuRATA 1700 +0 +2 +2 +Inductor_THT +L_Radial_D7.5mm_P3.50mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=3.50mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 3.50mm diameter 7.5mm Fastron 07P +0 +2 +2 +Inductor_THT +L_Radial_D7.5mm_P5.00mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 7.5mm Fastron 07P +0 +2 +2 +Inductor_THT +L_Radial_D7.8mm_P5.00mm_Fastron_07HCP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.8mm, Fastron, 07HCP, http://www.abracon.com/Magnetics/radial/AISR875.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 7.8mm Fastron 07HCP +0 +2 +2 +Inductor_THT +L_Radial_D8.7mm_P5.00mm_Fastron_07HCP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=8.7mm, Fastron, 07HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_07HCP.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 8.7mm Fastron 07HCP +0 +2 +2 +Inductor_THT +L_Radial_D9.5mm_P5.00mm_Fastron_07HVP +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=9.5mm, Fastron, 07HVP, http://www.fastrongroup.com/image-show/107/07HVP%2007HVP_T.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 9.5mm Fastron 07HVP +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Fastron_07M +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07M, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07M +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Fastron_07P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07P, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series +Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07P +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Neosid_SD12_style3 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12 style3 +0 +2 +2 +Inductor_THT +L_Radial_D10.0mm_P5.00mm_Neosid_SD12k_style3 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12k, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12k style3 +0 +2 +2 +Inductor_THT +L_Radial_D10.5mm_P4.00x5.00mm_Murata_1200RS +Inductor, Radial, Pitch=4.00x5.00mm, Diameter=10.5mm, Murata 1200RS, http://www.murata-ps.com/data/magnetics/kmp_1200rs.pdf +Inductor Radial Murata 1200RS +0 +4 +2 +Inductor_THT +L_Radial_D10.5mm_P5.00mm_Abacron_AISR-01 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Abacron, AISR-01, http://www.abracon.com/Magnetics/radial/AISR-01.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 10.5mm Abacron AISR-01 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P5.00mm_Fastron_11P +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Fastron, 11P, http://cdn-reichelt.de/documents/datenblatt/B400/DS_11P.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Fastron 11P +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P5.00mm_Neosid_SD12_style2 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12 style2 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P5.00mm_Neosid_SD12k_style2 +Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12k, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12k style2 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P6.00mm_Murata_1900R +Inductor, Radial series, Radial, pin pitch=6.00mm, , diameter=12.0mm, MuRATA, 1900R, http://www.murata-ps.com/data/magnetics/kmp_1900r.pdf +Inductor Radial series Radial pin pitch 6.00mm diameter 12.0mm MuRATA 1900R +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P10.00mm_Neosid_SD12_style1 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12 style1 +0 +2 +2 +Inductor_THT +L_Radial_D12.0mm_P10.00mm_Neosid_SD12k_style1 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12k, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12k style1 +0 +2 +2 +Inductor_THT +L_Radial_D12.5mm_P7.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 7.00mm diameter 12.5mm Fastron 09HCP +0 +2 +2 +Inductor_THT +L_Radial_D12.5mm_P9.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=9.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 9.00mm diameter 12.5mm Fastron 09HCP +0 +2 +2 +Inductor_THT +L_Radial_D13.5mm_P7.00mm_Fastron_09HCP +Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=13.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf +Inductor Radial series Radial pin pitch 7.00mm diameter 13.5mm Fastron 09HCP +0 +2 +2 +Inductor_THT +L_Radial_D14.2mm_P10.00mm_Neosid_SD14 +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=14.2mm, Neosid, SD14, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd14.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 14.2mm Neosid SD14 +0 +2 +2 +Inductor_THT +L_Radial_D16.8mm_P11.43mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=11.43mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 11.43mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +Inductor_THT +L_Radial_D16.8mm_P12.07mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=12.07mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 12.07mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +Inductor_THT +L_Radial_D16.8mm_P12.70mm_Vishay_IHB-1 +Inductor, Radial series, Radial, pin pitch=12.70mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 12.70mm diameter 16.8mm Vishay IHB-1 +0 +2 +2 +Inductor_THT +L_Radial_D18.0mm_P10.00mm +Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=18mm, http://www.abracon.com/Magnetics/radial/AIUR-15.pdf +Inductor Radial series Radial pin pitch 10.00mm diameter 18mm +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=14.61mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 14.61mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P15.00mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.00mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.00mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P15.24mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.24mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.24mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P15.75mm_Vishay_IHB-2 +Inductor, Radial series, Radial, pin pitch=15.75mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 15.75mm diameter 21mm Vishay IHB-2 +0 +2 +2 +Inductor_THT +L_Radial_D21.0mm_P19.00mm +Inductor, Radial series, Radial, pin pitch=19.00mm, , diameter=21mm, http://www.abracon.com/Magnetics/radial/AIRD02.pdf +Inductor Radial series Radial pin pitch 19.00mm diameter 21mm +0 +2 +2 +Inductor_THT +L_Radial_D24.0mm_P24.00mm +Inductor, Radial series, Radial, pin pitch=24.00mm, , diameter=24mm +Inductor Radial series Radial pin pitch 24.00mm diameter 24mm +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P22.90mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=22.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 22.90mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.10mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.10mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.10mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.40mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.40mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.40mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.70mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.70mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.70mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D24.4mm_P23.90mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=23.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 23.90mm diameter 24.4mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D27.9mm_P18.29mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=18.29mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 18.29mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +Inductor_THT +L_Radial_D27.9mm_P19.05mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=19.05mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 19.05mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +Inductor_THT +L_Radial_D27.9mm_P20.07mm_Vishay_IHB-3 +Inductor, Radial series, Radial, pin pitch=20.07mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 20.07mm diameter 27.9mm Vishay IHB-3 +0 +2 +2 +Inductor_THT +L_Radial_D28.0mm_P29.20mm +Inductor, Radial series, Radial, pin pitch=29.20mm, , diameter=28mm +Inductor Radial series Radial pin pitch 29.20mm diameter 28mm +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P28.30mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=28.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.30mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P28.50mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=28.50mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.50mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P28.80mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=28.80mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 28.80mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P29.00mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=29.00mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 29.00mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D29.8mm_P29.30mm_Murata_1400series +Inductor, Radial series, Radial, pin pitch=29.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf +Inductor Radial series Radial pin pitch 29.30mm diameter 29.8mm muRATA 1400series +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P26.16mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=26.16mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 26.16mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P27.18mm_Vishay_IHB-4 +Inductor, Radial series, Radial, pin pitch=27.18mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.18mm diameter 40.64mm Vishay IHB-4 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P27.94mm_Vishay_IHB-4 +Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-4 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P27.94mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +Inductor_THT +L_Radial_D40.6mm_P28.70mm_Vishay_IHB-5 +Inductor, Radial series, Radial, pin pitch=28.70mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 28.70mm diameter 40.64mm Vishay IHB-5 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P33.27mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=33.27mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 33.27mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P34.29mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=34.29mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 34.29mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P35.81mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=35.81mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 35.81mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P36.32mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=36.32mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 36.32mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_D50.8mm_P38.86mm_Vishay_IHB-6 +Inductor, Radial series, Radial, pin pitch=38.86mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf +Inductor Radial series Radial pin pitch 38.86mm diameter 50.8mm Vishay IHB-6 +0 +2 +2 +Inductor_THT +L_Radial_L7.5mm_W4.6mm_P5.00mm_Neosid_SD75 +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=7.5*4.6mm^2, Neosid, SD75, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd75.pdf +Inductor Radial series Radial pin pitch 5.00mm length 7.5mm width 4.6mm Neosid SD75 +0 +2 +2 +Inductor_THT +L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_NE-CPB-07E +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, NE-CPB-07E, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB07E.pdf +Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid NE-CPB-07E +0 +2 +2 +Inductor_THT +L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_SD8 +Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, SD8, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd8.pdf +Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid SD8 +0 +2 +2 +Inductor_THT +L_Radial_L9.1mm_W9.1mm_Px6.35mm_Py6.35mm_Pulse_LP-25 +Inductor, Radial series, Radial, pin pitch=6.35*6.35mm^2, , length*width=9.14*9.14mm^2, Pulse, LP-25, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 6.35*6.35mm^2 length 9.14mm width 9.14mm Pulse LP-25 +0 +2 +2 +Inductor_THT +L_Radial_L10.2mm_W10.2mm_Px7.62mm_Py7.62mm_Pulse_LP-30 +Inductor, Radial series, Radial, pin pitch=7.62*7.62mm^2, , length*width=10.16*10.16mm^2, Pulse, LP-30, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 7.62*7.62mm^2 length 10.16mm width 10.16mm Pulse LP-30 +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.3mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.3mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.3mm +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.5mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.5mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.5mm +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.7mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.7mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.7mm +0 +2 +2 +Inductor_THT +L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.8mm +Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.8mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf +Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.8mm +0 +2 +2 +Inductor_THT +L_Radial_L12.6mm_W12.6mm_Px9.52mm_Py9.52mm_Pulse_LP-37 +Inductor, Radial series, Radial, pin pitch=9.52*9.52mm^2, , length*width=12.57*12.57mm^2, Pulse, LP-37, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 9.52*9.52mm^2 length 12.57mm width 12.57mm Pulse LP-37 +0 +2 +2 +Inductor_THT +L_Radial_L16.1mm_W16.1mm_Px7.62mm_Py12.70mm_Pulse_LP-44 +Inductor, Radial series, Radial, pin pitch=7.62*12.70mm^2, , length*width=16.13*16.13mm^2, Pulse, LP-44, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf +Inductor Radial series Radial pin pitch 7.62*12.70mm^2 length 16.13mm width 16.13mm Pulse LP-44 +0 +2 +2 +Inductor_THT +L_SELF1408 +Self Ferrite 14 - 08 +SELF +0 +7 +3 +Inductor_THT +L_SELF1418 +Self Ferrite 14 - 18 +SELF +0 +10 +4 +Inductor_THT +L_Toroid_Horizontal_D3.2mm_P6.40mm_Diameter3-5mm_Amidon-T12 +L_Toroid, Horizontal series, Radial, pin pitch=6.40mm, , diameter=3.175mm, Diameter3-5mm, Amidon-T12 +L_Toroid Horizontal series Radial pin pitch 6.40mm diameter 3.175mm Diameter3-5mm Amidon-T12 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D4.1mm_P8.00mm_Diameter4-5mm_Amidon-T16 +L_Toroid, Horizontal series, Radial, pin pitch=8.00mm, , diameter=4.064mm, Diameter4-5mm, Amidon-T16 +L_Toroid Horizontal series Radial pin pitch 8.00mm diameter 4.064mm Diameter4-5mm Amidon-T16 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D5.1mm_P9.00mm_Diameter6-5mm_Amidon-T20 +L_Toroid, Horizontal series, Radial, pin pitch=9.00mm, , diameter=5.08mm, Diameter6-5mm, Amidon-T20 +L_Toroid Horizontal series Radial pin pitch 9.00mm diameter 5.08mm Diameter6-5mm Amidon-T20 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D6.5mm_P10.00mm_Diameter7-5mm_Amidon-T25 +L_Toroid, Horizontal series, Radial, pin pitch=10.00mm, , diameter=6.476999999999999mm, Diameter7-5mm, Amidon-T25 +L_Toroid Horizontal series Radial pin pitch 10.00mm diameter 6.476999999999999mm Diameter7-5mm Amidon-T25 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D7.8mm_P13.00mm_Diameter9-5mm_Amidon-T30 +L_Toroid, Horizontal series, Radial, pin pitch=13.00mm, , diameter=7.7978mm, Diameter9-5mm, Amidon-T30 +L_Toroid Horizontal series Radial pin pitch 13.00mm diameter 7.7978mm Diameter9-5mm Amidon-T30 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D9.5mm_P15.00mm_Diameter10-5mm_Amidon-T37 +L_Toroid, Horizontal series, Radial, pin pitch=15.00mm, , diameter=9.524999999999999mm, Diameter10-5mm, Amidon-T37 +L_Toroid Horizontal series Radial pin pitch 15.00mm diameter 9.524999999999999mm Diameter10-5mm Amidon-T37 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D11.2mm_P17.00mm_Diameter12-5mm_Amidon-T44 +L_Toroid, Horizontal series, Radial, pin pitch=17.00mm, , diameter=11.176mm, Diameter12-5mm, Amidon-T44 +L_Toroid Horizontal series Radial pin pitch 17.00mm diameter 11.176mm Diameter12-5mm Amidon-T44 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D12.7mm_P20.00mm_Diameter14-5mm_Amidon-T50 +L_Toroid, Horizontal series, Radial, pin pitch=20.00mm, , diameter=12.7mm, Diameter14-5mm, Amidon-T50 +L_Toroid Horizontal series Radial pin pitch 20.00mm diameter 12.7mm Diameter14-5mm Amidon-T50 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3 +L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3_BigPads +L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D17.3mm_P15.24mm_Bourns_2000 +L_Toroid, Horizontal series, Radial, pin pitch=15.24mm, , diameter=17.3mm, Bourns, 2000, http://www.bourns.com/docs/Product-Datasheets/2000_series.pdf?sfvrsn=5 +L_Toroid Horizontal series Radial pin pitch 15.24mm diameter 17.3mm Bourns 2000 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D21.8mm_P19.10mm_Bourns_2100 +L_Toroid, Horizontal series, Radial, pin pitch=19.10mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 19.10mm diameter 21.8mm Bourns 2100 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D21.8mm_P19.60mm_Bourns_2100 +L_Toroid, Horizontal series, Radial, pin pitch=19.60mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 19.60mm diameter 21.8mm Bourns 2100 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D22.4mm_P19.80mm_Vishay_TJ4 +L_Toroid, Horizontal series, Radial, pin pitch=19.80mm, , diameter=22.4mm, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 19.80mm diameter 22.4mm Vishay TJ4 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D24.1mm_P21.80mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=21.80mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 21.80mm diameter 24.1mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D24.1mm_P23.10mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=23.10mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 23.10mm diameter 24.1mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5 +L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5_BigPads +L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D26.0mm_P5.08mm +inductor 26mm diameter toroid +SELF INDUCTOR +0 +3 +2 +Inductor_THT +L_Toroid_Horizontal_D28.0mm_P25.10mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=25.10mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 25.10mm diameter 28mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D28.0mm_P26.67mm_Bourns_2200 +L_Toroid, Horizontal series, Radial, pin pitch=26.67mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 26.67mm diameter 28mm Bourns 2200 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D32.5mm_P28.90mm_Bourns_2300 +L_Toroid, Horizontal series, Radial, pin pitch=28.90mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 28.90mm diameter 32.5mm Bourns 2300 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D32.5mm_P30.00mm_Bourns_2300 +L_Toroid, Horizontal series, Radial, pin pitch=30.00mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3 +L_Toroid Horizontal series Radial pin pitch 30.00mm diameter 32.5mm Bourns 2300 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D35.1mm_P31.00mm_Vishay_TJ6 +L_Toroid, Horizontal series, Radial, pin pitch=31.00mm, , diameter=35.1mm, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 31.00mm diameter 35.1mm Vishay TJ6 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D40.0mm_P48.26mm +L_Toroid, Horizontal series, Radial, pin pitch=48.26mm, , diameter=40mm +L_Toroid Horizontal series Radial pin pitch 48.26mm diameter 40mm +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D41.9mm_P37.60mm_Vishay_TJ7 +L_Toroid, Horizontal series, Radial, pin pitch=37.60mm, , diameter=41.9mm, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 37.60mm diameter 41.9mm Vishay TJ7 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D49.3mm_P44.60mm_Vishay_TJ8 +L_Toroid, Horizontal series, Radial, pin pitch=44.60mm, , diameter=49.3mm, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 44.60mm diameter 49.3mm Vishay TJ8 +0 +2 +2 +Inductor_THT +L_Toroid_Horizontal_D69.1mm_P63.20mm_Vishay_TJ9 +L_Toroid, Horizontal series, Radial, pin pitch=63.20mm, , diameter=69.1mm, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Horizontal series Radial pin pitch 63.20mm diameter 69.1mm Vishay TJ9 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L10.0mm_W5.0mm_P5.08mm +L_Toroid, Vertical series, Radial, pin pitch=5.08mm, , length*width=10*5mm^2 +L_Toroid Vertical series Radial pin pitch 5.08mm length 10mm width 5mm +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L13.0mm_W6.5mm_P5.60mm +L_Toroid, Vertical series, Radial, pin pitch=5.60mm, , length*width=13*6.5mm^2 +L_Toroid Vertical series Radial pin pitch 5.60mm length 13mm width 6.5mm +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L14.0mm_W5.6mm_P5.30mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=5.30mm, , length*width=14*5.6mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 5.30mm length 14mm width 5.6mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L14.0mm_W6.3mm_P4.57mm_Pulse_A +L_Toroid, Vertical series, Radial, pin pitch=4.57mm, , length*width=13.97*6.35mm^2, Pulse, A, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 4.57mm length 13.97mm width 6.35mm Pulse A +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L14.7mm_W8.6mm_P5.58mm_Pulse_KM-1 +L_Toroid, Vertical series, Radial, pin pitch=5.58mm, , length*width=14.73*8.64mm^2, Pulse, KM-1, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 5.58mm length 14.73mm width 8.64mm Pulse KM-1 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.0mm_W8.0mm_P7.62mm +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16*8mm^2 +L_Toroid Vertical series Radial pin pitch 7.62mm length 16mm width 8mm +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.3mm_W7.1mm_P7.11mm_Pulse_H +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=16.26*7.11mm^2, Pulse, H, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.11mm length 16.26mm width 7.11mm Pulse H +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.4mm_W7.6mm_P6.60mm_Vishay_TJ3 +L_Toroid, Vertical series, Radial, pin pitch=6.60mm, , length*width=16.4*7.6mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 6.60mm length 16.4mm width 7.6mm Vishay TJ3 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.5mm_W11.4mm_P7.62mm_Pulse_KM-2 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16.51*11.43mm^2, Pulse, KM-2, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.62mm length 16.51mm width 11.43mm Pulse KM-2 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3 +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3_BigPads +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L17.8mm_W8.1mm_P7.62mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=17.8*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 7.62mm length 17.8mm width 8.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L17.8mm_W9.7mm_P7.11mm_Pulse_B +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=17.78*9.65mm^2, Pulse, B, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.11mm length 17.78mm width 9.65mm Pulse B +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L19.1mm_W8.1mm_P7.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=19.1*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 7.10mm length 19.1mm width 8.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W8.4mm_P8.38mm_Pulse_G +L_Toroid, Vertical series, Radial, pin pitch=8.38mm, , length*width=21.59*8.38mm^2, Pulse, G, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 8.38mm length 21.59mm width 8.38mm Pulse G +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W9.1mm_P8.40mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=8.40mm, , length*width=21.6*9.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 8.40mm length 21.6mm width 9.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W9.5mm_P7.11mm_Pulse_C +L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=21.59*9.53mm^2, Pulse, C, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.11mm length 21.59mm width 9.53mm Pulse C +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L21.6mm_W11.4mm_P7.62mm_Pulse_KM-3 +L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=21.59*11.43mm^2, Pulse, KM-3, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 7.62mm length 21.59mm width 11.43mm Pulse KM-3 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L22.4mm_W10.2mm_P7.90mm_Vishay_TJ4 +L_Toroid, Vertical series, Radial, pin pitch=7.90mm, , length*width=22.4*10.2mm^2, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 7.90mm length 22.4mm width 10.2mm Vishay TJ4 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L24.6mm_W15.5mm_P11.44mm_Pulse_KM-4 +L_Toroid, Vertical series, Radial, pin pitch=11.44mm, , length*width=24.64*15.5mm^2, Pulse, KM-4, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 11.44mm length 24.64mm width 15.5mm Pulse KM-4 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5 +L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5_BigPads +L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 BigPads +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L26.7mm_W14.0mm_P10.16mm_Pulse_D +L_Toroid, Vertical series, Radial, pin pitch=10.16mm, , length*width=26.67*13.97mm^2, Pulse, D, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 10.16mm length 26.67mm width 13.97mm Pulse D +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L28.6mm_W14.3mm_P11.43mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=11.43mm, , length*width=28.6*14.3mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 11.43mm length 28.6mm width 14.3mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L31.8mm_W15.9mm_P13.50mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=13.50mm, , length*width=31.8*15.9mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 13.50mm length 31.8mm width 15.9mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L33.0mm_W17.8mm_P12.70mm_Pulse_KM-5 +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=33.02*17.78mm^2, Pulse, KM-5, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 33.02mm width 17.78mm Pulse KM-5 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L35.1mm_W21.1mm_P18.50mm_Vishay_TJ6 +L_Toroid, Vertical series, Radial, pin pitch=18.50mm, , length*width=35.1*21.1mm^2, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 18.50mm length 35.1mm width 21.1mm Vishay TJ6 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L35.6mm_W17.8mm_P12.70mm_Pulse_E +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=35.56*17.78mm^2, Pulse, E, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 35.56mm width 17.78mm Pulse E +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L41.9mm_W17.8mm_P12.70mm_Pulse_F +L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=41.91*17.78mm^2, Pulse, F, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf +L_Toroid Vertical series Radial pin pitch 12.70mm length 41.91mm width 17.78mm Pulse F +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L41.9mm_W19.1mm_P15.80mm_Vishay_TJ7 +L_Toroid, Vertical series, Radial, pin pitch=15.80mm, , length*width=41.9*19.1mm^2, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 15.80mm length 41.9mm width 19.1mm Vishay TJ7 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L46.0mm_W19.1mm_P21.80mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=21.80mm, , length*width=46*19.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 21.80mm length 46mm width 19.1mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L48.8mm_W25.4mm_P20.80mm_Vishay_TJ8 +L_Toroid, Vertical series, Radial, pin pitch=20.80mm, , length*width=48.8*25.4mm^2, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 20.80mm length 48.8mm width 25.4mm Vishay TJ8 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L54.0mm_W23.8mm_P20.10mm_Bourns_5700 +L_Toroid, Vertical series, Radial, pin pitch=20.10mm, , length*width=54*23.8mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf +L_Toroid Vertical series Radial pin pitch 20.10mm length 54mm width 23.8mm Bourns 5700 +0 +2 +2 +Inductor_THT +L_Toroid_Vertical_L67.6mm_W36.1mm_P31.80mm_Vishay_TJ9 +L_Toroid, Vertical series, Radial, pin pitch=31.80mm, , length*width=67.6*36.1mm^2, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf +L_Toroid Vertical series Radial pin pitch 31.80mm length 67.6mm width 36.1mm Vishay TJ9 +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2012_LeadDiameter1.2mm +Shielded High Current Inductor, body 17x22mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-2012-ROUND +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2012_LeadDiameter1.5mm +Shielded High Current Inductor, body 17x22mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-2012-ROUND +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-2504 +Shielded High Current Inductor, body 22x25.7mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT_SIZE_2504 +THT +0 +2 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3521 +Shielded High Current Inductor, body 21.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3521 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3533_LeadDiameter1.8mm +Shielded High Current Inductor, body 34.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3533-ROUND +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3533_LeadDiameter2.0mm +Shielded High Current Inductor, body 34.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3533-ROUND +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter0.8mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter1.3mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter1.5mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Inductor_THT_Wurth +L_Wurth_WE-HCFT-3540_LeadDiameter2.0mm +Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 +THT +0 +4 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged2Bar_Pad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, bridged with 2 copper strips +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged2Bar_RoundedPad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 2 copper strips +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged_Pad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, bridged with 1 copper strip +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip +net tie solder jumper bridged +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open +solder jumper open +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open +solder jumper open +0 +2 +2 +Jumper +SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open +solder jumper open +0 +2 +2 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged2Bar12_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip, labeled with numbers +net tie solder jumper bridged +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, open +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open, labeled with numbers +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels +SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open, labeled with numbers +solder jumper open +0 +3 +3 +Jumper +SolderJumper-3_P2.0mm_Open_TrianglePad1.0x1.5mm +SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open +solder jumper open +0 +5 +3 +Jumper +SolderJumper-3_P2.0mm_Open_TrianglePad1.0x1.5mm_NumberLabels +SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open, labeled with numbers +solder jumper open +0 +5 +3 +LED_SMD +LED-APA102-2020 +http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf +LED RGB SPI +0 +8 +6 +LED_SMD +LED-L1T2_LUMILEDS +http://www.lumileds.com/uploads/438/DS133-pdf +LUMILEDS LUXEON TX L1T2 LED +0 +3 +3 +LED_SMD +LED_1W_3W_R8 +https://www.gme.cz/data/attachments/dsh.518-234.1.pdf +LED 1W 3W 5W +0 +3 +3 +LED_SMD +LED_0201_0603Metric +LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +LED +0 +4 +2 +LED_SMD +LED_0201_0603Metric_Pad0.64x0.40mm_HandSolder +LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +LED handsolder +0 +4 +2 +LED_SMD +LED_0402_1005Metric +LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_0402_1005Metric_Pad0.77x0.64mm_HandSolder +LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_0603_1608Metric +LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder +LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_0805_2012Metric +LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder +LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_1206_3216Metric +LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder +LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_1206_3216Metric_ReverseMount_Hole1.8x2.4mm +LED SMD 1206 (3216 Metric), reverse mount, square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +diode reverse +0 +2 +2 +LED_SMD +LED_1210_3225Metric +LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_1210_3225Metric_Pad1.42x2.65mm_HandSolder +LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_1812_4532Metric +LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_1812_4532Metric_Pad1.30x3.40mm_HandSolder +LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_2010_5025Metric +LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_2010_5025Metric_Pad1.52x2.65mm_HandSolder +LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_2512_6332Metric +LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED +0 +2 +2 +LED_SMD +LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder +LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator +LED handsolder +0 +2 +2 +LED_SMD +LED_ASMB-KTF0-0A306 +2220 Tricolor PLCC-4 LED, https://docs.broadcom.com/docs/ASMB-KTF0-0A306-DS100 +Tricolor LED +0 +4 +4 +LED_SMD +LED_Avago_PLCC4_3.2x2.8mm_CW +https://docs.broadcom.com/docs/AV02-4186EN +LED Avago PLCC-4 ASMB-MTB0-0A3A2 +0 +4 +4 +LED_SMD +LED_Avago_PLCC6_3x2.8mm +https://docs.broadcom.com/docs/AV02-3793EN +LED Avago PLCC-6 ASMT-YTB7-0AA02 +0 +6 +6 +LED_SMD +LED_CSP_Samsung_LH181B_2.36x2.36mm +High Power CSP LED, 2.36mm x 2.36mm, 1.4A max, https://cdn.samsung.com/led/file/resource/2021/01/Data_Sheet_LH181B_Rev.4.0.pdf +LED Samsung LH181B +0 +2 +2 +LED_SMD +LED_Cree-PLCC4_2x2mm_CW +2.0mm x 2.0mm PLCC4 LED, http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/HB/Data-Sheets/CLMVBFKA.pdf +LED Cree PLCC-4 +0 +4 +4 +LED_SMD +LED_Cree-PLCC4_3.2x2.8mm_CCW +3.2mm x 2.8mm PLCC4 LED, http://www.cree.com/led-components/media/documents/CLV1AFKB(874).pdf +LED Cree PLCC-4 +0 +4 +4 +LED_SMD +LED_Cree-PLCC4_5x5mm_CW +5.0mm x 5.0mm PLCC4 LED +LED Cree PLCC-4 +0 +4 +4 +LED_SMD +LED_Cree-PLCC6_4.7x1.5mm +4.7mm x 1.5mm PLCC6 LED, http://www.cree.com/led-components/media/documents/1381-QLS6AFKW.pdf +LED Cree PLCC-6 +0 +6 +6 +LED_SMD +LED_Cree-XB +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXBD.pdf +LED Cree XB +0 +5 +3 +LED_SMD +LED_Cree-XH +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XHB.pdf +LED Cree XH +0 +8 +2 +LED_SMD +LED_Cree-XHP35 +http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds--XHP35.pdf +LED Cree XHP35 +0 +6 +3 +LED_SMD +LED_Cree-XHP50_6V +Cree XHP50, 6V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf +LED Cree XHP50 +0 +15 +3 +LED_SMD +LED_Cree-XHP50_12V +Cree XHP50, 12V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf +LED XHP50 Cree +0 +15 +3 +LED_SMD +LED_Cree-XHP70_6V +Cree XHP70 LED, 6V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf +LED Cree XHP70 +0 +15 +3 +LED_SMD +LED_Cree-XHP70_12V +Cree XHP70 LED, 12V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf +LED Cree XHP70 +0 +15 +3 +LED_SMD +LED_Cree-XP +LED Cree-XP http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXPE2.pdf +LED Cree XP +0 +6 +3 +LED_SMD +LED_Cree-XP-G +LED Cree-XP-G http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/XLampXPG.pdf +LED Cree XP-G +0 +6 +3 +LED_SMD +LED_Cree-XQ +LED Cree-XQ http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf +LED Cree XQ +0 +2 +2 +LED_SMD +LED_Cree-XQ_HandSoldering +LED Cree-XQ handsoldering pads http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf +LED Cree XQ +0 +2 +2 +LED_SMD +LED_Dialight_591 +LED SMD 3mm Right Angle series (http://www.dialightsignalsandcomponents.com/Assets/Drawings/2D_Drawings_DrawingDetailedSpec/C17354.pdf) +LED Dialight 591 +0 +2 +2 +LED_SMD +LED_Inolux_IN-PI554FCH_PLCC4_5.0x5.0mm_P3.2mm +http://www.inolux-corp.com/datasheet/SMDLED/Addressable%20LED/IN-PI554FCH.pdf +RGB LED NeoPixel addressable +0 +4 +4 +LED_SMD +LED_Kingbright_AAA3528ESGCT +Kingbright, dual LED, 3.5 x 2.8 mm Surface Mount LED Lamp (http://www.kingbrightusa.com/images/catalog/SPEC/AAA3528ESGCT.pdf) +dual led smd +0 +4 +4 +LED_SMD +LED_Kingbright_APDA3020VBCD +LED, SMD, APDA3020VBC/D, https://www.kingbrightusa.com/images/catalog/SPEC/APDA3020VBC-D.pdf +LED APDA3020VBC/D Kingbright +0 +2 +2 +LED_SMD +LED_Kingbright_APFA3010_3x1.5mm_Horizontal +LED RGB, APFA3010, http://www.kingbrightusa.com/images/catalog/SPEC/APFA3010LSEEZGKQBKC.pdf +LED RGB APFA3010 KINGBRIGHT 3x1.5mm +0 +4 +4 +LED_SMD +LED_Kingbright_APHBM2012_2x1.25mm +Dual LED SMD https://www.kingbrightusa.com/KCpack.asp?txtPack=APHBM2012 +LED Kingbright APHM2012 +0 +4 +4 +LED_SMD +LED_Kingbright_KPBD-3224 +Kingbright, dual LED, red-green, dome lens, 3.2 x 2.4 mm Surface Mount LED Lamp (https://www.kingbright.com/attachments/file/psearch/000/00/00/KPBD-3224SURKCGKC(Ver.20A).pdf) +Kingbright dual LED KPBD-3224 +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-C19HE1WT +LiteOn RGB LED; https://optoelectronics.liteon.com/upload/download/DS22-2008-0044/LTST-C19HE1WT.pdf +LED RGB Chip SMD +0 +4 +4 +LED_SMD +LED_LiteOn_LTST-S326 +http://optoelectronics.liteon.com/upload/download/DS22-2000-287/LTST-S326KGJRKT.PDF +LED SMD right angle CCA +0 +3 +3 +LED_SMD +LED_Lumex_SML-LX0303SIUPGUSB +Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0303SIUPGUSB.pdf +LED RGB +0 +4 +4 +LED_SMD +LED_Lumex_SML-LX0404SIUPGUSB +Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0404SIUPGUSB.pdf +LED RGB +0 +4 +4 +LED_SMD +LED_Luminus_MP-3030-1100_3.0x3.0mm +Mid Power LED, Luminus MP-3030-1100, 3.0x3.0mm, 816mW, https://download.luminus.com/datasheets/Luminus_MP3030_1100_Datasheet.pdf +LED Luminus MP-3030-1100 +0 +5 +2 +LED_SMD +LED_Osram_Lx_P47F_D2mm_ReverseMount +OSRAM, reverse-mount LED, SMD, 2mm diameter, http://www.farnell.com/datasheets/2711587.pdf +LED ReverseMount Reverse +0 +4 +2 +LED_SMD +LED_PLCC-2_3.4x3.0mm_AK +LED PLCC-2 SMD package, orientation marker at anode, https://dammedia.osram.info/media/resource/hires/osram-dam-5824137/SFH%204257_EN.pdf +LED PLCC-2 SMD TOPLED +0 +2 +2 +LED_SMD +LED_PLCC-2_3.4x3.0mm_KA +LED PLCC-2 SMD package, orientation marker at cathode, https://dammedia.osram.info/media/resource/hires/osram-dam-6035009/SFH%204253_EN.pdf +LED PLCC-2 SMD TOPLED +0 +2 +2 +LED_SMD +LED_PLCC-2_3x2mm_AK +LED, SMD, PLCC-2, 3.0 x 2.0mm, orientation marker at anode, https://media.digikey.com/pdf/Data%20Sheets/CREE%20Power/CLM3A-BKW,GKW.pdf +LED PLCC-2 SMD +0 +2 +2 +LED_SMD +LED_PLCC-2_3x2mm_KA +LED, SMD, PLCC-2, 3.0 x 2.0mm, orientation marker at cathode, https://optoelectronics.liteon.com/upload/download/DS22-2009-0099/LTW-M670ZVS-M5_0906.pdf +LED PLCC-2 SMD +0 +2 +2 +LED_SMD +LED_PLCC_2835 +https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf +LED +0 +2 +2 +LED_SMD +LED_PLCC_2835_Handsoldering +https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf +LED +0 +2 +2 +LED_SMD +LED_RGB_1210 +RGB LED 3.2x2.7mm http://www.avagotech.com/docs/AV02-0610EN +LED 3227 +0 +4 +4 +LED_SMD +LED_RGB_5050-6 +http://cdn.sparkfun.com/datasheets/Components/LED/5060BRG4.pdf +RGB LED 5050-6 +0 +6 +6 +LED_SMD +LED_RGB_Cree-PLCC-6_6x5mm_P2.1mm +http://www.farnell.com/datasheets/2003905.pdf +LED RGB PLCC-6 CLP6C-FBK +0 +6 +6 +LED_SMD +LED_RGB_Everlight_EASV3015RGBA0_Horizontal +LED, RGB, right-angle, clear, https://everlightamericas.com/index.php?controller=attachment&id_attachment=3220 +LED RGB right-angle +0 +4 +4 +LED_SMD +LED_RGB_Getian_GT-P6PRGB4303 +https://www.gme.sk/img/cache/doc/518/177/vykonova-led-getian-gt-p6prgb4303-datasheet-1.pdf +LED RGB +0 +7 +7 +LED_SMD +LED_RGB_PLCC-6 +RGB LED PLCC-6 +RGB LED PLCC-6 +0 +6 +6 +LED_SMD +LED_RGB_Wuerth-PLCC4_3.2x2.8mm_150141M173100 +3.2mm x 2.8mm PLCC4 LED, https://www.we-online.de/katalog/datasheet/150141M173100.pdf +LED RGB Wurth PLCC-4 +0 +4 +4 +LED_SMD +LED_ROHM_SMLVN6 +https://www.rohm.com/datasheet/SMLVN6RGB1U +LED ROHM SMLVN6 +0 +6 +6 +LED_SMD +LED_SK6805_PLCC4_2.4x2.7mm_P1.3mm +https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf +LED RGB NeoPixel Nano +0 +4 +4 +LED_SMD +LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm +https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf +LED RGB NeoPixel Mini +0 +4 +4 +LED_SMD +LED_SK6812_EC15_1.5x1.5mm +http://www.newstar-ledstrip.com/product/20181119172602110.pdf +LED RGB NeoPixel +0 +4 +4 +LED_SMD +LED_SK6812_PLCC4_5.0x5.0mm_P3.2mm +https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf +LED RGB NeoPixel +0 +4 +4 +LED_SMD +LED_WS2812B-2020_PLCC4_2.0x2.0mm +Addressable RGB LED NeoPixel Nano, 12 mA, https://cdn-shop.adafruit.com/product-files/4684/4684_WS2812B-2020_V1.3_EN.pdf +LED RGB NeoPixel Nano 2020 +0 +4 +4 +LED_SMD +LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm +https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf +LED RGB NeoPixel +0 +4 +4 +LED_SMD +LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm +https://cdn-shop.adafruit.com/datasheets/WS2812.pdf +LED RGB NeoPixel +0 +6 +6 +LED_SMD +LED_Yuji_5730 +LED,Yuji,5730,https://cdn.shopify.com/s/files/1/0344/6401/files/YJWJ014-1.1_YJ-BC-5730L-G02.pdf +LED Yuji 5730 +0 +3 +2 +LED_SMD +LED_miniPLCC_2315 +https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true +LED +0 +2 +2 +LED_SMD +LED_miniPLCC_2315_Handsoldering +https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true +LED +0 +2 +2 +LED_THT +LED_BL-FL7680RGB +'Piranha' RGB LED, through hole, common anode, 7.62x7.62mm, BGRA pin order, https://cdn-shop.adafruit.com/datasheets/BL-FL7680RGB.pdf +RGB LED Piranha Super-Flux BetLux +0 +4 +4 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z1.6mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z4.9mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z8.2mm +LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins +LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins +0 +2 +2 +LED_THT +LED_D1.8mm_W3.3mm_H2.4mm +LED, Round, Rectangular size 3.3x2.4mm^2 diameter 1.8mm, 2 pins +LED Round Rectangular size 3.3x2.4mm^2 diameter 1.8mm 2 pins +0 +2 +2 +LED_THT +LED_D2.0mm_W4.0mm_H2.8mm_FlatTop +LED, Round, FlatTop, Rectangular size 4.0x2.8mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-1034IDT(Ver.9A).pdf +LED Round FlatTop Rectangular size 4.0x2.8mm^2 diameter 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D2.0mm_W4.8mm_H2.5mm_FlatTop +LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf +LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm +LED, diameter 3.0mm, 2 pins +LED diameter 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm-3 +LED, diameter 3.0mm, 2 pins, diameter 3.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-3VSURKCGKC(Ver.8A).pdf +LED diameter 3.0mm 2 pins diameter 3.0mm 3 pins +0 +3 +3 +LED_THT +LED_D3.0mm_Clear +IR-LED, diameter 3.0mm, 2 pins, color: clear +IR infrared LED diameter 3.0mm 2 pins clear +0 +2 +2 +LED_THT +LED_D3.0mm_FlatTop +LED, Round, FlatTop, diameter 3.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-47XEC(Ver.9A).pdf +LED Round FlatTop diameter 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_Clear +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRBlack +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRGrey +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O1.27mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm +LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins +LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D3.0mm_IRBlack +IR-ED, diameter 3.0mm, 2 pins, color: black +IR infrared LED diameter 3.0mm 2 pins black +0 +2 +2 +LED_THT +LED_D3.0mm_IRGrey +IR-LED, diameter 3.0mm, 2 pins, color: grey +IR infrared LED diameter 3.0mm 2 pins grey +0 +2 +2 +LED_THT +LED_D4.0mm +LED, diameter 4.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-43GD(Ver.12B).pdf +LED diameter 4.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm-3 +LED, diameter 5.0mm, 2 pins, diameter 5.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-59EGC(Ver.17A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins +0 +3 +3 +LED_THT +LED_D5.0mm-3_Horizontal_O3.81mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 3 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 3 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +3 +3 +LED_THT +LED_D5.0mm-4_RGB +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED +0 +4 +4 +LED_THT +LED_D5.0mm-4_RGB_Staggered_Pins +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +rgb led +0 +4 +4 +LED_THT +LED_D5.0mm-4_RGB_Wide_Pins +LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf +LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED +0 +4 +4 +LED_THT +LED_D5.0mm_Clear +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_FlatTop +LED, Round, FlatTop, diameter 5.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-483GDT(Ver.15B).pdf +LED Round FlatTop diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_Clear +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRBlack +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRGrey +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O1.27mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm +LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins +LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_IRBlack +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D5.0mm_IRGrey +LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf +LED diameter 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_D8.0mm +LED, diameter 8.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED8MMGE_LED8MMGN_LED8MMRT%23KIN.pdf +LED diameter 8.0mm 2 pins +0 +2 +2 +LED_THT +LED_D8.0mm-3 +LED, diameter 8.0mm, 2 pins, diameter 8.0mm, 3 pins +LED diameter 8.0mm 2 pins diameter 8.0mm 3 pins +0 +3 +3 +LED_THT +LED_D10.0mm +LED, diameter 10.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED10-4500RT%23KIN.pdf +LED diameter 10.0mm 2 pins +0 +2 +2 +LED_THT +LED_D10.0mm-3 +LED, diameter 10.0mm, 2 pins, diameter 10.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-819EGW(Ver.14A).pdf +LED diameter 10.0mm 2 pins diameter 10.0mm 3 pins +0 +3 +3 +LED_THT +LED_D20.0mm +LED, diameter 20.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/DLC2-6GD%28V6%29.pdf +LED diameter 20.0mm 2 pins +0 +2 +2 +LED_THT +LED_Oval_W5.2mm_H3.8mm +LED_Oval, Oval, Oval size 5.2x3.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-5603QBC-D(Ver.12B).pdf +LED_Oval Oval Oval size 5.2x3.8mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.0mm_H2.0mm +LED_Rectangular, Rectangular, Rectangular size 3.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 3.0x2.0mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.8mm +LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.8mm_FlatTop +LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W3.9mm_H1.9mm +LED_Rectangular, Rectangular, Rectangular size 3.9x1.9mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-144GDT(Ver.14B).pdf +LED_Rectangular Rectangular Rectangular size 3.9x1.9mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm-3Pins +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 3 pins +0 +3 +3 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins +LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W5.0mm_H5.0mm +LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf +LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins +0 +2 +2 +LED_THT +LED_Rectangular_W7.62mm_H4.55mm_P5.08mm_R3 +Datasheet can be found at https://www.gme.cz/data/attachments/dsh.511-795.1.pdf +LED automotive super flux 7.62mm +0 +4 +2 +LED_THT +LED_SideEmitter_Rectangular_W4.5mm_H1.6mm +LED_SideEmitter_Rectangular, Rectangular, SideEmitter, Rectangular size 4.5x1.6mm^2, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED15MMGE_LED15MMGN%23KIN.pdf +LED_SideEmitter_Rectangular Rectangular SideEmitter Rectangular size 4.5x1.6mm^2 2 pins +0 +2 +2 +LED_THT +LED_VCCLite_5381H1_6.35x6.35mm +Red 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Red 5381 Series LED +0 +2 +2 +LED_THT +LED_VCCLite_5381H3_6.35x6.35mm +Amber 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Amber 5381 Series LED +0 +2 +2 +LED_THT +LED_VCCLite_5381H5_6.35x6.35mm +Green 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Green 5381 Series LED +0 +2 +2 +LED_THT +LED_VCCLite_5381H7_6.35x6.35mm +Yellow 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf +Yellow 5381 Series LED +0 +2 +2 +Module +A20_OLINUXINO_LIME2 +A20 Olinuxino LIME2, 1.2GHz, 512-1024MB RAM, Micro-SD, NAND or eMMC, 1000Mbit Ethernet +A20 Olimex Olinuxino LIME2 development board +0 +180 +180 +Module +Adafruit_Feather +Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification +Adafruit Feather +0 +28 +28 +Module +Adafruit_Feather_32u4_FONA +Footprint for the Adafruit Feather 32u4 FONA board, https://learn.adafruit.com/adafruit-feather-32u4-fona +Adafruit Feather 32u4 FONA +0 +28 +28 +Module +Adafruit_Feather_32u4_FONA_WithMountingHoles +Footprint for the Adafruit Feather 32u4 FONA board, https://learn.adafruit.com/adafruit-feather-32u4-fona +Adafruit Feather 32u4 FONA +0 +28 +28 +Module +Adafruit_Feather_32u4_RFM +Footprint for the Adafruit Feather 32u4 RFM series of boards, https://learn.adafruit.com/adafruit-feather-32u4-radio-with-rfm69hcw-module +Adafruit Feather 32u4 RFM +0 +31 +31 +Module +Adafruit_Feather_32u4_RFM_WithMountingHoles +Footprint for the Adafruit Feather 32u4 RFM series of boards, https://learn.adafruit.com/adafruit-feather-32u4-radio-with-rfm69hcw-module +Adafruit Feather 32u4 RFM +0 +31 +31 +Module +Adafruit_Feather_M0_RFM +Footprint for the Adafruit Feather M0 RFM series of boards, e.g. https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio +Adafruit Feather M0 RFM +0 +32 +32 +Module +Adafruit_Feather_M0_RFM_WithMountingHoles +Footprint for the Adafruit Feather M0 RFM series of boards, e.g. https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio + Adafruit Feather M0 RFM +0 +32 +32 +Module +Adafruit_Feather_M0_Wifi +Footprint for the Adafruit Feather M0 Wifi board, https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/ +Adafruit Feather M0 Wifi +0 +28 +28 +Module +Adafruit_Feather_M0_Wifi_WithMountingHoles +Footprint for the Adafruit Feather M0 Wifi board, https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/ +Adafruit Feather M0 Wifi +0 +28 +28 +Module +Adafruit_Feather_WICED +Footprint for the Adafruit Feather WICED Wifi board, https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi +Adafruit Feather WICED Wifi +0 +29 +29 +Module +Adafruit_Feather_WICED_WithMountingHoles +Footprint for the Adafruit Feather WICED Wifi board, https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi +Adafruit Feather WICED Wifi +0 +29 +29 +Module +Adafruit_Feather_WithMountingHoles +Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification +Adafruit Feather +0 +28 +28 +Module +Adafruit_HUZZAH_ESP8266_breakout +32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471 +ESP8266 WiFi microcontroller +0 +20 +20 +Module +Adafruit_HUZZAH_ESP8266_breakout_WithMountingHoles +32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471 +ESP8266 WiFi microcontroller +0 +20 +20 +Module +Arduino_Nano +Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino Nano +0 +30 +30 +Module +Arduino_Nano_WithMountingHoles +Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino Nano +0 +30 +30 +Module +Arduino_UNO_R2 +Arduino UNO R2, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R2 +0 +30 +30 +Module +Arduino_UNO_R2_WithMountingHoles +Arduino UNO R2, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R2 +0 +30 +30 +Module +Arduino_UNO_R3 +Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R3 +0 +32 +32 +Module +Arduino_UNO_R3_WithMountingHoles +Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf +Arduino UNO R3 +0 +32 +32 +Module +BeagleBoard_PocketBeagle +PocketBeagle, https://github.com/beagleboard/pocketbeagle/wiki/System-Reference-Manual#71_Expansion_Header_Connectors +PocketBeagle +0 +72 +72 +Module +Carambola2 +8devices Carambola2, OpenWRT, industrial SoM computer, https://www.8devices.com/media/products/carambola2/downloads/carambola2-datasheet.pdf +carambola2 8devices +0 +104 +52 +Module +Maple_Mini +Maple Mini, http://docs.leaflabs.com/static.leaflabs.com/pub/leaflabs/maple-docs/0.0.12/hardware/maple-mini.html +Maple Mini +0 +40 +40 +Module +Onion_Omega2+ +https://onion.io/omega2/ +Omega Onion module +0 +32 +32 +Module +Onion_Omega2S +https://github.com/OnionIoT/Omega2/raw/master/Documents/Omega2S%20Datasheet.pdf +onion omega module +0 +89 +64 +Module +Pololu_Breakout-16_15.2x20.3mm +Pololu Breakout 16-pin 15.2x20.3mm 0.6x0.8\ +Pololu Breakout +0 +16 +16 +Module +Raspberry_Pi_Zero_Socketed_THT_FaceDown_MountingHoles +Raspberry Pi Zero using through hole straight pin socket, 2x20, 2.54mm pitch, https://www.raspberrypi.org/documentation/hardware/raspberrypi/mechanical/rpi_MECH_Zero_1p2.pdf +raspberry pi zero through hole +0 +40 +40 +Module +ST_Morpho_Connector_144_STLink +ST Morpho Connector 144 With STLink +ST Morpho Connector 144 STLink +0 +148 +148 +Module +ST_Morpho_Connector_144_STLink_MountingHoles +ST Morpho Connector 144 With STLink +ST Morpho Connector 144 STLink +0 +148 +148 +Module +Sipeed-M1 +AI accelerated MCU with optional wifi, https://dl.sipeed.com/MAIX/HDK/Sipeed-M1&M1W/Specifications +AI Kendryte K210 RISC-V +0 +85 +77 +Module +Texas_EUK_R-PDSS-T7_THT +Texas Instruments EUK 7 Pin Double Sided Module +module pcb +0 +7 +7 +Module +Texas_EUS_R-PDSS-T5_THT +Texas Instruments EUS 5 Pin Double Sided Module +module pcb +0 +5 +5 +Module +Texas_EUW_R-PDSS-T7_THT +Texas Instruments EUW 7 Pin Double Sided Module +module pcb +0 +7 +7 +Module +WEMOS_D1_mini_light +16-pin module, column spacing 22.86 mm (900 mils), https://wiki.wemos.cc/products:d1:d1_mini, https://c1.staticflickr.com/1/734/31400410271_f278b087db_z.jpg +ESP8266 WiFi microcontroller +0 +16 +16 +Motors +Vybronics_VZ30C1T8219732L +Vibration motor, 2.3-3.2V, 14000rpm, 0.7G, https://www.vybronics.com/wp-content/uploads/datasheet-files/Vybronics-VZ30C1T8219732L-datasheet.pdf +vibration motor Vybronics +0 +12 +3 +MountingEquipment +DINRailAdapter_3xM3_PhoenixContact_1201578 +https://www.phoenixcontact.com/online/portal/us?uri=pxc-oc-itemdetail:pid=1201578&library=usen&tab=1 +DIN rail adapter universal three M3 clearance holes +0 +0 +0 +MountingHole +MountingHole_2.1mm +Mounting Hole 2.1mm, no annular +mounting hole 2.1mm no annular +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2 +Mounting Hole 2.2mm, no annular, M2 +mounting hole 2.2mm no annular m2 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_DIN965 +Mounting Hole 2.2mm, no annular, M2, DIN965 +mounting hole 2.2mm no annular m2 din965 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad +Mounting Hole 2.2mm, M2, DIN965 +mounting hole 2.2mm m2 din965 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad_TopBottom +Mounting Hole 2.2mm, M2, DIN965 +mounting hole 2.2mm m2 din965 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_DIN965_Pad_TopOnly +Mounting Hole 2.2mm, M2, DIN965 +mounting hole 2.2mm m2 din965 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380 +Mounting Hole 2.2mm, no annular, M2, ISO7380 +mounting hole 2.2mm no annular m2 iso7380 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad +Mounting Hole 2.2mm, M2, ISO7380 +mounting hole 2.2mm m2 iso7380 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad_TopBottom +Mounting Hole 2.2mm, M2, ISO7380 +mounting hole 2.2mm m2 iso7380 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_ISO7380_Pad_TopOnly +Mounting Hole 2.2mm, M2, ISO7380 +mounting hole 2.2mm m2 iso7380 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580 +Mounting Hole 2.2mm, no annular, M2, ISO14580 +mounting hole 2.2mm no annular m2 iso14580 +0 +0 +0 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad +Mounting Hole 2.2mm, M2, ISO14580 +mounting hole 2.2mm m2 iso14580 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad_TopBottom +Mounting Hole 2.2mm, M2, ISO14580 +mounting hole 2.2mm m2 iso14580 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_ISO14580_Pad_TopOnly +Mounting Hole 2.2mm, M2, ISO14580 +mounting hole 2.2mm m2 iso14580 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_Pad +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +1 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_TopBottom +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +3 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_TopOnly +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +2 +1 +MountingHole +MountingHole_2.2mm_M2_Pad_Via +Mounting Hole 2.2mm, M2 +mounting hole 2.2mm m2 +0 +9 +1 +MountingHole +MountingHole_2.5mm +Mounting Hole 2.5mm, no annular +mounting hole 2.5mm no annular +0 +0 +0 +MountingHole +MountingHole_2.5mm_Pad +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +1 +1 +MountingHole +MountingHole_2.5mm_Pad_TopBottom +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +3 +1 +MountingHole +MountingHole_2.5mm_Pad_TopOnly +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +2 +1 +MountingHole +MountingHole_2.5mm_Pad_Via +Mounting Hole 2.5mm +mounting hole 2.5mm +0 +9 +1 +MountingHole +MountingHole_2.7mm +Mounting Hole 2.7mm, no annular +mounting hole 2.7mm no annular +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5 +Mounting Hole 2.7mm, no annular, M2.5 +mounting hole 2.7mm no annular m2.5 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_DIN965 +Mounting Hole 2.7mm, no annular, M2.5, DIN965 +mounting hole 2.7mm no annular m2.5 din965 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad +Mounting Hole 2.7mm, M2.5, DIN965 +mounting hole 2.7mm m2.5 din965 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, DIN965 +mounting hole 2.7mm m2.5 din965 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_DIN965_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, DIN965 +mounting hole 2.7mm m2.5 din965 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380 +Mounting Hole 2.7mm, no annular, M2.5, ISO7380 +mounting hole 2.7mm no annular m2.5 iso7380 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad +Mounting Hole 2.7mm, M2.5, ISO7380 +mounting hole 2.7mm m2.5 iso7380 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, ISO7380 +mounting hole 2.7mm m2.5 iso7380 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO7380_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, ISO7380 +mounting hole 2.7mm m2.5 iso7380 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580 +Mounting Hole 2.7mm, no annular, M2.5, ISO14580 +mounting hole 2.7mm no annular m2.5 iso14580 +0 +0 +0 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad +Mounting Hole 2.7mm, M2.5, ISO14580 +mounting hole 2.7mm m2.5 iso14580 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad_TopBottom +Mounting Hole 2.7mm, M2.5, ISO14580 +mounting hole 2.7mm m2.5 iso14580 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_ISO14580_Pad_TopOnly +Mounting Hole 2.7mm, M2.5, ISO14580 +mounting hole 2.7mm m2.5 iso14580 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad +Mounting Hole 2.7mm, M2.5 +mounting hole 2.7mm m2.5 +0 +1 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_TopBottom +Mounting Hole 2.7mm, M2.5 +mounting hole 2.7mm m2.5 +0 +3 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_TopOnly +Mounting Hole 2.7mm, M2.5 +mounting hole 2.7mm m2.5 +0 +2 +1 +MountingHole +MountingHole_2.7mm_M2.5_Pad_Via +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +9 +1 +MountingHole +MountingHole_2.7mm_Pad +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +1 +1 +MountingHole +MountingHole_2.7mm_Pad_TopBottom +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +3 +1 +MountingHole +MountingHole_2.7mm_Pad_TopOnly +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +2 +1 +MountingHole +MountingHole_2.7mm_Pad_Via +Mounting Hole 2.7mm +mounting hole 2.7mm +0 +9 +1 +MountingHole +MountingHole_2mm +Mounting Hole 2mm, no annular +mounting hole 2mm no annular +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3 +Mounting Hole 3.2mm, no annular, M3 +mounting hole 3.2mm no annular m3 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_DIN965 +Mounting Hole 3.2mm, no annular, M3, DIN965 +mounting hole 3.2mm no annular m3 din965 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad +Mounting Hole 3.2mm, M3, DIN965 +mounting hole 3.2mm m3 din965 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad_TopBottom +Mounting Hole 3.2mm, M3, DIN965 +mounting hole 3.2mm m3 din965 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_DIN965_Pad_TopOnly +Mounting Hole 3.2mm, M3, DIN965 +mounting hole 3.2mm m3 din965 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380 +Mounting Hole 3.2mm, no annular, M3, ISO7380 +mounting hole 3.2mm no annular m3 iso7380 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad +Mounting Hole 3.2mm, M3, ISO7380 +mounting hole 3.2mm m3 iso7380 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad_TopBottom +Mounting Hole 3.2mm, M3, ISO7380 +mounting hole 3.2mm m3 iso7380 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_ISO7380_Pad_TopOnly +Mounting Hole 3.2mm, M3, ISO7380 +mounting hole 3.2mm m3 iso7380 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580 +Mounting Hole 3.2mm, no annular, M3, ISO14580 +mounting hole 3.2mm no annular m3 iso14580 +0 +0 +0 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad +Mounting Hole 3.2mm, M3, ISO14580 +mounting hole 3.2mm m3 iso14580 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad_TopBottom +Mounting Hole 3.2mm, M3, ISO14580 +mounting hole 3.2mm m3 iso14580 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_ISO14580_Pad_TopOnly +Mounting Hole 3.2mm, M3, ISO14580 +mounting hole 3.2mm m3 iso14580 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_Pad +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +1 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_TopBottom +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +3 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_TopOnly +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +2 +1 +MountingHole +MountingHole_3.2mm_M3_Pad_Via +Mounting Hole 3.2mm, M3 +mounting hole 3.2mm m3 +0 +9 +1 +MountingHole +MountingHole_3.5mm +Mounting Hole 3.5mm, no annular +mounting hole 3.5mm no annular +0 +0 +0 +MountingHole +MountingHole_3.5mm_Pad +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +1 +1 +MountingHole +MountingHole_3.5mm_Pad_TopBottom +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +3 +1 +MountingHole +MountingHole_3.5mm_Pad_TopOnly +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +2 +1 +MountingHole +MountingHole_3.5mm_Pad_Via +Mounting Hole 3.5mm +mounting hole 3.5mm +0 +9 +1 +MountingHole +MountingHole_3.7mm +Mounting Hole 3.7mm, no annular +mounting hole 3.7mm no annular +0 +0 +0 +MountingHole +MountingHole_3.7mm_Pad +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +1 +1 +MountingHole +MountingHole_3.7mm_Pad_TopBottom +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +3 +1 +MountingHole +MountingHole_3.7mm_Pad_TopOnly +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +2 +1 +MountingHole +MountingHole_3.7mm_Pad_Via +Mounting Hole 3.7mm +mounting hole 3.7mm +0 +9 +1 +MountingHole +MountingHole_3mm +Mounting Hole 3mm, no annular +mounting hole 3mm no annular +0 +0 +0 +MountingHole +MountingHole_3mm_Pad +Mounting Hole 3mm +mounting hole 3mm +0 +1 +1 +MountingHole +MountingHole_3mm_Pad_TopBottom +Mounting Hole 3mm +mounting hole 3mm +0 +3 +1 +MountingHole +MountingHole_3mm_Pad_TopOnly +Mounting Hole 3mm +mounting hole 3mm +0 +2 +1 +MountingHole +MountingHole_3mm_Pad_Via +Mounting Hole 3mm +mounting hole 3mm +0 +9 +1 +MountingHole +MountingHole_4.3mm_M4 +Mounting Hole 4.3mm, no annular, M4 +mounting hole 4.3mm no annular m4 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_DIN965 +Mounting Hole 4.3mm, no annular, M4, DIN965 +mounting hole 4.3mm no annular m4 din965 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad +Mounting Hole 4.3mm, M4, DIN965 +mounting hole 4.3mm m4 din965 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad_TopBottom +Mounting Hole 4.3mm, M4, DIN965 +mounting hole 4.3mm m4 din965 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_DIN965_Pad_TopOnly +Mounting Hole 4.3mm, M4, DIN965 +mounting hole 4.3mm m4 din965 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380 +Mounting Hole 4.3mm, no annular, M4, ISO7380 +mounting hole 4.3mm no annular m4 iso7380 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad +Mounting Hole 4.3mm, M4, ISO7380 +mounting hole 4.3mm m4 iso7380 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad_TopBottom +Mounting Hole 4.3mm, M4, ISO7380 +mounting hole 4.3mm m4 iso7380 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_ISO7380_Pad_TopOnly +Mounting Hole 4.3mm, M4, ISO7380 +mounting hole 4.3mm m4 iso7380 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580 +Mounting Hole 4.3mm, no annular, M4, ISO14580 +mounting hole 4.3mm no annular m4 iso14580 +0 +0 +0 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad +Mounting Hole 4.3mm, M4, ISO14580 +mounting hole 4.3mm m4 iso14580 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad_TopBottom +Mounting Hole 4.3mm, M4, ISO14580 +mounting hole 4.3mm m4 iso14580 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_ISO14580_Pad_TopOnly +Mounting Hole 4.3mm, M4, ISO14580 +mounting hole 4.3mm m4 iso14580 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_Pad +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +1 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_TopBottom +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +3 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_TopOnly +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +2 +1 +MountingHole +MountingHole_4.3mm_M4_Pad_Via +Mounting Hole 4.3mm, M4 +mounting hole 4.3mm m4 +0 +9 +1 +MountingHole +MountingHole_4.3x6.2mm_M4_Pad +Mounting Hole 4.3x6.2mm, M4 +mounting hole 4.3x6.2mm m4 +0 +1 +1 +MountingHole +MountingHole_4.3x6.2mm_M4_Pad_Via +Mounting Hole 4.3x6.2mm, M4 +mounting hole 4.3x6.2mm m4 +0 +17 +1 +MountingHole +MountingHole_4.5mm +Mounting Hole 4.5mm, no annular +mounting hole 4.5mm no annular +0 +0 +0 +MountingHole +MountingHole_4.5mm_Pad +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +1 +1 +MountingHole +MountingHole_4.5mm_Pad_TopBottom +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +3 +1 +MountingHole +MountingHole_4.5mm_Pad_TopOnly +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +2 +1 +MountingHole +MountingHole_4.5mm_Pad_Via +Mounting Hole 4.5mm +mounting hole 4.5mm +0 +9 +1 +MountingHole +MountingHole_4mm +Mounting Hole 4mm, no annular +mounting hole 4mm no annular +0 +0 +0 +MountingHole +MountingHole_4mm_Pad +Mounting Hole 4mm +mounting hole 4mm +0 +1 +1 +MountingHole +MountingHole_4mm_Pad_TopBottom +Mounting Hole 4mm +mounting hole 4mm +0 +3 +1 +MountingHole +MountingHole_4mm_Pad_TopOnly +Mounting Hole 4mm +mounting hole 4mm +0 +2 +1 +MountingHole +MountingHole_4mm_Pad_Via +Mounting Hole 4mm +mounting hole 4mm +0 +9 +1 +MountingHole +MountingHole_5.3mm_M5 +Mounting Hole 5.3mm, no annular, M5 +mounting hole 5.3mm no annular m5 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_DIN965 +Mounting Hole 5.3mm, no annular, M5, DIN965 +mounting hole 5.3mm no annular m5 din965 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad +Mounting Hole 5.3mm, M5, DIN965 +mounting hole 5.3mm m5 din965 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad_TopBottom +Mounting Hole 5.3mm, M5, DIN965 +mounting hole 5.3mm m5 din965 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_DIN965_Pad_TopOnly +Mounting Hole 5.3mm, M5, DIN965 +mounting hole 5.3mm m5 din965 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380 +Mounting Hole 5.3mm, no annular, M5, ISO7380 +mounting hole 5.3mm no annular m5 iso7380 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad +Mounting Hole 5.3mm, M5, ISO7380 +mounting hole 5.3mm m5 iso7380 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad_TopBottom +Mounting Hole 5.3mm, M5, ISO7380 +mounting hole 5.3mm m5 iso7380 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_ISO7380_Pad_TopOnly +Mounting Hole 5.3mm, M5, ISO7380 +mounting hole 5.3mm m5 iso7380 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580 +Mounting Hole 5.3mm, no annular, M5, ISO14580 +mounting hole 5.3mm no annular m5 iso14580 +0 +0 +0 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad +Mounting Hole 5.3mm, M5, ISO14580 +mounting hole 5.3mm m5 iso14580 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad_TopBottom +Mounting Hole 5.3mm, M5, ISO14580 +mounting hole 5.3mm m5 iso14580 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_ISO14580_Pad_TopOnly +Mounting Hole 5.3mm, M5, ISO14580 +mounting hole 5.3mm m5 iso14580 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_Pad +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +1 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_TopBottom +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +3 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_TopOnly +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +2 +1 +MountingHole +MountingHole_5.3mm_M5_Pad_Via +Mounting Hole 5.3mm, M5 +mounting hole 5.3mm m5 +0 +9 +1 +MountingHole +MountingHole_5.5mm +Mounting Hole 5.5mm, no annular +mounting hole 5.5mm no annular +0 +0 +0 +MountingHole +MountingHole_5.5mm_Pad +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +1 +1 +MountingHole +MountingHole_5.5mm_Pad_TopBottom +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +3 +1 +MountingHole +MountingHole_5.5mm_Pad_TopOnly +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +2 +1 +MountingHole +MountingHole_5.5mm_Pad_Via +Mounting Hole 5.5mm +mounting hole 5.5mm +0 +9 +1 +MountingHole +MountingHole_5mm +Mounting Hole 5mm, no annular +mounting hole 5mm no annular +0 +0 +0 +MountingHole +MountingHole_5mm_Pad +Mounting Hole 5mm +mounting hole 5mm +0 +1 +1 +MountingHole +MountingHole_5mm_Pad_TopBottom +Mounting Hole 5mm +mounting hole 5mm +0 +3 +1 +MountingHole +MountingHole_5mm_Pad_TopOnly +Mounting Hole 5mm +mounting hole 5mm +0 +2 +1 +MountingHole +MountingHole_5mm_Pad_Via +Mounting Hole 5mm +mounting hole 5mm +0 +9 +1 +MountingHole +MountingHole_6.4mm_M6 +Mounting Hole 6.4mm, no annular, M6 +mounting hole 6.4mm no annular m6 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_DIN965 +Mounting Hole 6.4mm, no annular, M6, DIN965 +mounting hole 6.4mm no annular m6 din965 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad +Mounting Hole 6.4mm, M6, DIN965 +mounting hole 6.4mm m6 din965 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad_TopBottom +Mounting Hole 6.4mm, M6, DIN965 +mounting hole 6.4mm m6 din965 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_DIN965_Pad_TopOnly +Mounting Hole 6.4mm, M6, DIN965 +mounting hole 6.4mm m6 din965 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380 +Mounting Hole 6.4mm, no annular, M6, ISO7380 +mounting hole 6.4mm no annular m6 iso7380 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad +Mounting Hole 6.4mm, M6, ISO7380 +mounting hole 6.4mm m6 iso7380 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad_TopBottom +Mounting Hole 6.4mm, M6, ISO7380 +mounting hole 6.4mm m6 iso7380 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_ISO7380_Pad_TopOnly +Mounting Hole 6.4mm, M6, ISO7380 +mounting hole 6.4mm m6 iso7380 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580 +Mounting Hole 6.4mm, no annular, M6, ISO14580 +mounting hole 6.4mm no annular m6 iso14580 +0 +0 +0 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad +Mounting Hole 6.4mm, M6, ISO14580 +mounting hole 6.4mm m6 iso14580 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad_TopBottom +Mounting Hole 6.4mm, M6, ISO14580 +mounting hole 6.4mm m6 iso14580 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_ISO14580_Pad_TopOnly +Mounting Hole 6.4mm, M6, ISO14580 +mounting hole 6.4mm m6 iso14580 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_Pad +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +1 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_TopBottom +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +3 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_TopOnly +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +2 +1 +MountingHole +MountingHole_6.4mm_M6_Pad_Via +Mounting Hole 6.4mm, M6 +mounting hole 6.4mm m6 +0 +9 +1 +MountingHole +MountingHole_6.5mm +Mounting Hole 6.5mm, no annular +mounting hole 6.5mm no annular +0 +0 +0 +MountingHole +MountingHole_6.5mm_Pad +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +1 +1 +MountingHole +MountingHole_6.5mm_Pad_TopBottom +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +3 +1 +MountingHole +MountingHole_6.5mm_Pad_TopOnly +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +2 +1 +MountingHole +MountingHole_6.5mm_Pad_Via +Mounting Hole 6.5mm +mounting hole 6.5mm +0 +9 +1 +MountingHole +MountingHole_6mm +Mounting Hole 6mm, no annular +mounting hole 6mm no annular +0 +0 +0 +MountingHole +MountingHole_6mm_Pad +Mounting Hole 6mm +mounting hole 6mm +0 +1 +1 +MountingHole +MountingHole_6mm_Pad_TopBottom +Mounting Hole 6mm +mounting hole 6mm +0 +3 +1 +MountingHole +MountingHole_6mm_Pad_TopOnly +Mounting Hole 6mm +mounting hole 6mm +0 +2 +1 +MountingHole +MountingHole_6mm_Pad_Via +Mounting Hole 6mm +mounting hole 6mm +0 +9 +1 +MountingHole +MountingHole_8.4mm_M8 +Mounting Hole 8.4mm, no annular, M8 +mounting hole 8.4mm no annular m8 +0 +0 +0 +MountingHole +MountingHole_8.4mm_M8_Pad +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +1 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_TopBottom +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +3 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_TopOnly +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +2 +1 +MountingHole +MountingHole_8.4mm_M8_Pad_Via +Mounting Hole 8.4mm, M8 +mounting hole 8.4mm m8 +0 +9 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H5mm_9771050360 +Mounting Hardware, external M3, height 5, Wuerth electronics 9771050360 (https://katalog.we-online.com/em/datasheet/9771050360.pdf), generated with kicad-footprint-generator +Mounting M3 9771050360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H6mm_9771060360 +Mounting Hardware, external M3, height 6, Wuerth electronics 9771060360 (https://katalog.we-online.com/em/datasheet/9771060360.pdf), generated with kicad-footprint-generator +Mounting M3 9771060360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H7mm_9771070360 +Mounting Hardware, external M3, height 7, Wuerth electronics 9771070360 (https://katalog.we-online.com/em/datasheet/9771070360.pdf), generated with kicad-footprint-generator +Mounting M3 9771070360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H8mm_9771080360 +Mounting Hardware, external M3, height 8, Wuerth electronics 9771080360 (https://katalog.we-online.com/em/datasheet/9771080360.pdf), generated with kicad-footprint-generator +Mounting M3 9771080360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H9mm_9771090360 +Mounting Hardware, external M3, height 9, Wuerth electronics 9771090360 (https://katalog.we-online.com/em/datasheet/9771090360.pdf), generated with kicad-footprint-generator +Mounting M3 9771090360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H10mm_9771100360 +Mounting Hardware, external M3, height 10, Wuerth electronics 9771100360 (https://katalog.we-online.com/em/datasheet/9771100360.pdf), generated with kicad-footprint-generator +Mounting M3 9771100360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H11mm_9771110360 +Mounting Hardware, external M3, height 11, Wuerth electronics 9771110360 (https://katalog.we-online.com/em/datasheet/9771110360.pdf), generated with kicad-footprint-generator +Mounting M3 9771110360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H12mm_9771120360 +Mounting Hardware, external M3, height 12, Wuerth electronics 9771120360 (https://katalog.we-online.com/em/datasheet/9771120360.pdf), generated with kicad-footprint-generator +Mounting M3 9771120360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H13mm_9771130360 +Mounting Hardware, external M3, height 13, Wuerth electronics 9771130360 (https://katalog.we-online.com/em/datasheet/9771130360.pdf), generated with kicad-footprint-generator +Mounting M3 9771130360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H14mm_9771140360 +Mounting Hardware, external M3, height 14, Wuerth electronics 9771140360 (https://katalog.we-online.com/em/datasheet/9771140360.pdf), generated with kicad-footprint-generator +Mounting M3 9771140360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSE-ExternalM3_H15mm_9771150360 +Mounting Hardware, external M3, height 15, Wuerth electronics 9771150360 (https://katalog.we-online.com/em/datasheet/9771150360.pdf), generated with kicad-footprint-generator +Mounting M3 9771150360 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H1mm_9774010482 +Mounting Hardware, inside through hole 4.5mm, height 1, Wuerth electronics 9774010482 (https://katalog.we-online.de/em/datasheet/9774010482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774010482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H2mm_9774020482 +Mounting Hardware, inside through hole 4.5mm, height 2, Wuerth electronics 9774020482 (https://katalog.we-online.de/em/datasheet/9774020482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774020482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H3mm_9774030482 +Mounting Hardware, inside through hole 4.5mm, height 3, Wuerth electronics 9774030482 (https://katalog.we-online.de/em/datasheet/9774030482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774030482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H4mm_9774040482 +Mounting Hardware, inside through hole 4.5mm, height 4, Wuerth electronics 9774040482 (https://katalog.we-online.de/em/datasheet/9774040482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774040482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H5mm_9774050482 +Mounting Hardware, inside through hole 4.5mm, height 5, Wuerth electronics 9774050482 (https://katalog.we-online.de/em/datasheet/9774050482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774050482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H6mm_9774060482 +Mounting Hardware, inside through hole 4.5mm, height 6, Wuerth electronics 9774060482 (https://katalog.we-online.de/em/datasheet/9774060482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774060482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H7mm_9774070482 +Mounting Hardware, inside through hole 4.5mm, height 7, Wuerth electronics 9774070482 (https://katalog.we-online.de/em/datasheet/9774070482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774070482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H8mm_9774080482 +Mounting Hardware, inside through hole 4.5mm, height 8, Wuerth electronics 9774080482 (https://katalog.we-online.de/em/datasheet/9774080482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774080482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H9mm_9774090482 +Mounting Hardware, inside through hole 4.5mm, height 9, Wuerth electronics 9774090482 (https://katalog.we-online.de/em/datasheet/9774090482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774090482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-4.5mm_H10mm_9774100482 +Mounting Hardware, inside through hole 4.5mm, height 10, Wuerth electronics 9774100482 (https://katalog.we-online.de/em/datasheet/9774100482.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774100482 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H1.5mm_9774015633 +Mounting Hardware, inside through hole M1.6, height 1.5, Wuerth electronics 9774015633 (https://katalog.we-online.com/em/datasheet/9774015633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774015633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H1mm_9774010633 +Mounting Hardware, inside through hole M1.6, height 1, Wuerth electronics 9774010633 (https://katalog.we-online.com/em/datasheet/9774010633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774010633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_9774025633 +Mounting Hardware, inside through hole M1.6, height 2.5, Wuerth electronics 9774025633 (https://katalog.we-online.com/em/datasheet/9774025633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774025633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_ThreadDepth1.5mm_97730256332 +Mounting Hardware, inside blind hole M1.6, height 2.5, Wuerth electronics 97730256332 (https://katalog.we-online.com/em/datasheet/97730256332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730256332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_ThreadDepth1.5mm_NoNPTH_97730256330 +Mounting Hardware, inside blind hole M1.6, height 2.5, Wuerth electronics 97730256330 (https://katalog.we-online.com/em/datasheet/97730256330R.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730256330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H2mm_9774020633 +Mounting Hardware, inside through hole M1.6, height 2, Wuerth electronics 9774020633 (https://katalog.we-online.com/em/datasheet/9774020633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774020633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_97730356332 +Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356332 (https://katalog.we-online.com/em/datasheet/97730356332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730356332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_97730356334 +Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356334 (https://katalog.we-online.com/em/datasheet/97730356334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730356334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_NoNPTH_97730356330 +Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356330 (https://katalog.we-online.com/em/datasheet/97730356330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730356330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3mm_9774030633 +Mounting Hardware, inside through hole M1.6, height 3, Wuerth electronics 9774030633 (https://katalog.we-online.com/em/datasheet/9774030633.pdf), generated with kicad-footprint-generator +Mounting M1.6 9774030633 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3mm_ThreadDepth1.8mm_97730306332 +Mounting Hardware, inside blind hole M1.6, height 3, Wuerth electronics 97730306332 (https://katalog.we-online.com/em/datasheet/97730306332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730306332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H3mm_ThreadDepth1.8mm_NoNPTH_97730306330 +Mounting Hardware, inside blind hole M1.6, height 3, Wuerth electronics 97730306330 (https://katalog.we-online.com/em/datasheet/97730306330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730306330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_97730456332 +Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456332 (https://katalog.we-online.com/em/datasheet/97730456332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730456332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_97730456334 +Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456334 (https://katalog.we-online.com/em/datasheet/97730456334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730456334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_NoNPTH_97730456330 +Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456330 (https://katalog.we-online.com/em/datasheet/97730456330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730456330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_97730406332 +Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406332 (https://katalog.we-online.com/em/datasheet/97730406332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730406332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_97730406334 +Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406334 (https://katalog.we-online.com/em/datasheet/97730406334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730406334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_NoNPTH_97730406330 +Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406330 (https://katalog.we-online.com/em/datasheet/97730406330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730406330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_97730506332 +Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506332 (https://katalog.we-online.com/em/datasheet/97730506332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730506332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_97730506334 +Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506334 (https://katalog.we-online.com/em/datasheet/97730506334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730506334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_NoNPTH_97730506330 +Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506330 (https://katalog.we-online.com/em/datasheet/97730506330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730506330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_97730606332 +Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606332 (https://katalog.we-online.com/em/datasheet/97730606332.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730606332 +0 +6 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_97730606334 +Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606334 (https://katalog.we-online.com/em/datasheet/97730606334.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730606334 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_NoNPTH_97730606330 +Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606330 (https://katalog.we-online.com/em/datasheet/97730606330.pdf), generated with kicad-footprint-generator +Mounting M1.6 97730606330 +0 +5 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H1.5mm_9774015243 +Mounting Hardware, inside through hole M2, height 1.5, Wuerth electronics 9774015243 (https://katalog.we-online.de/em/datasheet/9774015243.pdf), generated with kicad-footprint-generator +Mounting M2 9774015243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H1mm_9774010243 +Mounting Hardware, inside through hole M2, height 1, Wuerth electronics 9774010243 (https://katalog.we-online.de/em/datasheet/9774010243.pdf), generated with kicad-footprint-generator +Mounting M2 9774010243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H2.5mm_9774025243 +Mounting Hardware, inside through hole M2, height 2.5, Wuerth electronics 9774025243 (https://katalog.we-online.de/em/datasheet/9774025243.pdf), generated with kicad-footprint-generator +Mounting M2 9774025243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H2mm_9774020243 +Mounting Hardware, inside through hole M2, height 2, Wuerth electronics 9774020243 (https://katalog.we-online.de/em/datasheet/9774020243.pdf), generated with kicad-footprint-generator +Mounting M2 9774020243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H3.5mm_9774035243 +Mounting Hardware, inside through hole M2, height 3.5, Wuerth electronics 9774035243 (https://katalog.we-online.de/em/datasheet/9774035243.pdf), generated with kicad-footprint-generator +Mounting M2 9774035243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H3mm_9774030243 +Mounting Hardware, inside through hole M2, height 3, Wuerth electronics 9774030243 (https://katalog.we-online.de/em/datasheet/9774030243.pdf), generated with kicad-footprint-generator +Mounting M2 9774030243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H4.5mm_9774045243 +Mounting Hardware, inside through hole M2, height 4.5, Wuerth electronics 9774045243 (https://katalog.we-online.de/em/datasheet/9774045243.pdf), generated with kicad-footprint-generator +Mounting M2 9774045243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H4mm_9774040243 +Mounting Hardware, inside through hole M2, height 4, Wuerth electronics 9774040243 (https://katalog.we-online.de/em/datasheet/9774040243.pdf), generated with kicad-footprint-generator +Mounting M2 9774040243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H5mm_9774050243 +Mounting Hardware, inside through hole M2, height 5, Wuerth electronics 9774050243 (https://katalog.we-online.de/em/datasheet/9774050243.pdf), generated with kicad-footprint-generator +Mounting M2 9774050243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H6mm_9774060243 +Mounting Hardware, inside through hole M2, height 6, Wuerth electronics 9774060243 (https://katalog.we-online.de/em/datasheet/9774060243.pdf), generated with kicad-footprint-generator +Mounting M2 9774060243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H7mm_9774070243 +Mounting Hardware, inside through hole M2, height 7, Wuerth electronics 9774070243 (https://katalog.we-online.de/em/datasheet/9774070243.pdf), generated with kicad-footprint-generator +Mounting M2 9774070243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M2_H8mm_9774080243 +Mounting Hardware, inside through hole M2, height 8, Wuerth electronics 9774080243 (https://katalog.we-online.de/em/datasheet/9774080243.pdf), generated with kicad-footprint-generator +Mounting M2 9774080243 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H1.5mm_9774015360 +Mounting Hardware, inside through hole M3, height 1.5, Wuerth electronics 9774015360 (https://katalog.we-online.de/em/datasheet/9774015360.pdf), generated with kicad-footprint-generator +Mounting M3 9774015360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H1mm_9774010360 +Mounting Hardware, inside through hole M3, height 1, Wuerth electronics 9774010360 (https://katalog.we-online.de/em/datasheet/9774010360.pdf), generated with kicad-footprint-generator +Mounting M3 9774010360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H2.5mm_9774025360 +Mounting Hardware, inside through hole M3, height 2.5, Wuerth electronics 9774025360 (https://katalog.we-online.de/em/datasheet/9774025360.pdf), generated with kicad-footprint-generator +Mounting M3 9774025360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H2mm_9774020360 +Mounting Hardware, inside through hole M3, height 2, Wuerth electronics 9774020360 (https://katalog.we-online.de/em/datasheet/9774020360.pdf), generated with kicad-footprint-generator +Mounting M3 9774020360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H3mm_9774030360 +Mounting Hardware, inside through hole M3, height 3, Wuerth electronics 9774030360 (https://katalog.we-online.de/em/datasheet/9774030360R.pdf), generated with kicad-footprint-generator +Mounting M3 9774030360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H4mm_9774040360 +Mounting Hardware, inside through hole M3, height 4, Wuerth electronics 9774040360 (https://katalog.we-online.de/em/datasheet/9774040360.pdf), generated with kicad-footprint-generator +Mounting M3 9774040360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H5mm_9774050360 +Mounting Hardware, inside through hole M3, height 5, Wuerth electronics 9774050360 (https://katalog.we-online.de/em/datasheet/9774050360.pdf), generated with kicad-footprint-generator +Mounting M3 9774050360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H6mm_9774060360 +Mounting Hardware, inside through hole M3, height 6, Wuerth electronics 9774060360 (https://katalog.we-online.de/em/datasheet/9774060360.pdf), generated with kicad-footprint-generator +Mounting M3 9774060360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H7mm_9774070360 +Mounting Hardware, inside through hole M3, height 7, Wuerth electronics 9774070360 (https://katalog.we-online.de/em/datasheet/9774070360.pdf), generated with kicad-footprint-generator +Mounting M3 9774070360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H8mm_9774080360 +Mounting Hardware, inside through hole M3, height 8, Wuerth electronics 9774080360 (https://katalog.we-online.de/em/datasheet/9774080360.pdf), generated with kicad-footprint-generator +Mounting M3 9774080360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H9mm_9774090360 +Mounting Hardware, inside through hole M3, height 9, Wuerth electronics 9774090360 (https://katalog.we-online.de/em/datasheet/9774090360.pdf), generated with kicad-footprint-generator +Mounting M3 9774090360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H10mm_9774100360 +Mounting Hardware, inside through hole M3, height 10, Wuerth electronics 9774100360 (https://katalog.we-online.de/em/datasheet/9774100360.pdf), generated with kicad-footprint-generator +Mounting M3 9774100360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H11mm_9774110360 +Mounting Hardware, inside through hole M3, height 11, Wuerth electronics 9774110360 (https://katalog.we-online.de/em/datasheet/9774110360.pdf), generated with kicad-footprint-generator +Mounting M3 9774110360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H12mm_9774120360 +Mounting Hardware, inside through hole M3, height 12, Wuerth electronics 9774120360 (https://katalog.we-online.de/em/datasheet/9774120360.pdf), generated with kicad-footprint-generator +Mounting M3 9774120360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H13mm_9774130360 +Mounting Hardware, inside through hole M3, height 13, Wuerth electronics 9774130360 (https://katalog.we-online.de/em/datasheet/9774130360.pdf), generated with kicad-footprint-generator +Mounting M3 9774130360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H14mm_9774140360 +Mounting Hardware, inside through hole M3, height 14, Wuerth electronics 9774140360 (https://katalog.we-online.de/em/datasheet/9774140360.pdf), generated with kicad-footprint-generator +Mounting M3 9774140360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSI-M3_H15mm_9774150360 +Mounting Hardware, inside through hole M3, height 15, Wuerth electronics 9774150360 (https://katalog.we-online.de/em/datasheet/9774150360.pdf), generated with kicad-footprint-generator +Mounting M3 9774150360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H2.6mm_ReverseMount_9775026960 +Mounting Hardware, inside through hole 3.2mm, height 2.6, Wuerth electronics 9775026960 (https://katalog.we-online.com/em/datasheet/9775026960R.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775026960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H3.1mm_ReverseMount_9775031960 +Mounting Hardware, inside through hole 3.2mm, height 3.1, Wuerth electronics 9775031960 (https://katalog.we-online.com/em/datasheet/9775031960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775031960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H3.6mm_ReverseMount_9775036960 +Mounting Hardware, inside through hole 3.2mm, height 3.6, Wuerth electronics 9775036960 (https://katalog.we-online.com/em/datasheet/9775036960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775036960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H4.1mm_ReverseMount_9775041960 +Mounting Hardware, inside through hole 3.2mm, height 4.1, Wuerth electronics 9775041960 (https://katalog.we-online.com/em/datasheet/9775041960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775041960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H4.6mm_ReverseMount_9775046960 +Mounting Hardware, inside through hole 3.2mm, height 4.6, Wuerth electronics 9775046960 (https://katalog.we-online.com/em/datasheet/9775046960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775046960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H5.1mm_ReverseMount_9775051960 +Mounting Hardware, inside through hole 3.2mm, height 5.1, Wuerth electronics 9775051960 (https://katalog.we-online.com/em/datasheet/9775051960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775051960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H5.6mm_ReverseMount_9775056960 +Mounting Hardware, inside through hole 3.2mm, height 5.6, Wuerth electronics 9775056960 (https://katalog.we-online.com/em/datasheet/9775056960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775056960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H6.6mm_ReverseMount_9775066960 +Mounting Hardware, inside through hole 3.2mm, height 6.6, Wuerth electronics 9775066960 (https://katalog.we-online.com/em/datasheet/9775066960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775066960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H7.6mm_ReverseMount_9775076960 +Mounting Hardware, inside through hole 3.2mm, height 7.6, Wuerth electronics 9775076960 (https://katalog.we-online.com/em/datasheet/9775076960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775076960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H8.6mm_ReverseMount_9775086960 +Mounting Hardware, inside through hole 3.2mm, height 8.6, Wuerth electronics 9775086960 (https://katalog.we-online.com/em/datasheet/9775086960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775086960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H9.6mm_ReverseMount_9775096960 +Mounting Hardware, inside through hole 3.2mm, height 9.6, Wuerth electronics 9775096960 (https://katalog.we-online.com/em/datasheet/9775096960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775096960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H10.6mm_ReverseMount_9775106960 +Mounting Hardware, inside through hole 3.2mm, height 10.6, Wuerth electronics 9775106960 (https://katalog.we-online.com/em/datasheet/9775106960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775106960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-3.2mm_H11.6mm_ReverseMount_9775116960 +Mounting Hardware, inside through hole 3.2mm, height 11.6, Wuerth electronics 9775116960 (https://katalog.we-online.com/em/datasheet/9775116960.pdf), generated with kicad-footprint-generator +Mounting 3.2mm 9775116960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H2.6mm_ReverseMount_9775026360 +Mounting Hardware, inside through hole M3, height 2.6, Wuerth electronics 9775026360 (https://katalog.we-online.com/em/datasheet/9775026360.pdf), generated with kicad-footprint-generator +Mounting M3 9775026360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H3.1mm_ReverseMount_9775031360 +Mounting Hardware, inside through hole M3, height 3.1, Wuerth electronics 9775031360 (https://katalog.we-online.com/em/datasheet/9775031360.pdf), generated with kicad-footprint-generator +Mounting M3 9775031360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H3.6mm_ReverseMount_9775036360 +Mounting Hardware, inside through hole M3, height 3.6, Wuerth electronics 9775036360 (https://katalog.we-online.com/em/datasheet/9775036360.pdf), generated with kicad-footprint-generator +Mounting M3 9775036360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H4.1mm_ReverseMount_9775041360 +Mounting Hardware, inside through hole M3, height 4.1, Wuerth electronics 9775041360 (https://katalog.we-online.com/em/datasheet/9775041360.pdf), generated with kicad-footprint-generator +Mounting M3 9775041360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H4.6mm_ReverseMount_9775046360 +Mounting Hardware, inside through hole M3, height 4.6, Wuerth electronics 9775046360 (https://katalog.we-online.com/em/datasheet/9775046360.pdf), generated with kicad-footprint-generator +Mounting M3 9775046360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H5.1mm_ReverseMount_9775051360 +Mounting Hardware, inside through hole M3, height 5.1, Wuerth electronics 9775051360 (https://katalog.we-online.com/em/datasheet/9775051360.pdf), generated with kicad-footprint-generator +Mounting M3 9775051360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H5.6mm_ReverseMount_9775056360 +Mounting Hardware, inside through hole M3, height 5.6, Wuerth electronics 9775056360 (https://katalog.we-online.com/em/datasheet/9775056360.pdf), generated with kicad-footprint-generator +Mounting M3 9775056360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H6.6mm_ReverseMount_9775066360 +Mounting Hardware, inside through hole M3, height 6.6, Wuerth electronics 9775066360 (https://katalog.we-online.com/em/datasheet/9775066360.pdf), generated with kicad-footprint-generator +Mounting M3 9775066360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H7.6mm_ReverseMount_9775076360 +Mounting Hardware, inside through hole M3, height 7.6, Wuerth electronics 9775076360 (https://katalog.we-online.com/em/datasheet/9775076360.pdf), generated with kicad-footprint-generator +Mounting M3 9775076360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H8.6mm_ReverseMount_9775086360 +Mounting Hardware, inside through hole M3, height 8.6, Wuerth electronics 9775086360 (https://katalog.we-online.com/em/datasheet/9775086360.pdf), generated with kicad-footprint-generator +Mounting M3 9775086360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H9.6mm_ReverseMount_9775096360 +Mounting Hardware, inside through hole M3, height 9.6, Wuerth electronics 9775096360 (https://katalog.we-online.com/em/datasheet/9775096360.pdf), generated with kicad-footprint-generator +Mounting M3 9775096360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H10.6mm_ReverseMount_9775106360 +Mounting Hardware, inside through hole M3, height 10.6, Wuerth electronics 9775106360 (https://katalog.we-online.com/em/datasheet/9775106360.pdf), generated with kicad-footprint-generator +Mounting M3 9775106360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSR-M3_H11.6mm_ReverseMount_9775116360 +Mounting Hardware, inside through hole M3, height 11.6, Wuerth electronics 9775116360 (https://katalog.we-online.com/em/datasheet/9775116360.pdf), generated with kicad-footprint-generator +Mounting M3 9775116360 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H2.5mm_SnapRivet_9776025960 +Mounting Hardware, inside through hole 3.3mm, height 2.5, Wuerth electronics 9776025960 (https://katalog.we-online.com/em/datasheet/9776025960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776025960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H2mm_SnapRivet_9776020960 +Mounting Hardware, inside through hole 3.3mm, height 2, Wuerth electronics 9776020960 (https://katalog.we-online.com/em/datasheet/9776020960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776020960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H3mm_SnapRivet_9776030960 +Mounting Hardware, inside through hole 3.3mm, height 3, Wuerth electronics 9776030960 (https://katalog.we-online.com/em/datasheet/9776030960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776030960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H4mm_SnapRivet_9776040960 +Mounting Hardware, inside through hole 3.3mm, height 4, Wuerth electronics 9776040960 (https://katalog.we-online.com/em/datasheet/9776040960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776040960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H5mm_SnapRivet_9776050960 +Mounting Hardware, inside through hole 3.3mm, height 5, Wuerth electronics 9776050960 (https://katalog.we-online.com/em/datasheet/9776050960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776050960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H6mm_SnapRivet_9776060960 +Mounting Hardware, inside through hole 3.3mm, height 6, Wuerth electronics 9776060960 (https://katalog.we-online.com/em/datasheet/9776060960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776060960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H7mm_SnapRivet_9776070960 +Mounting Hardware, inside through hole 3.3mm, height 7, Wuerth electronics 9776070960 (https://katalog.we-online.com/em/datasheet/9776070960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776070960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H8mm_SnapRivet_9776080960 +Mounting Hardware, inside through hole 3.3mm, height 8, Wuerth electronics 9776080960 (https://katalog.we-online.com/em/datasheet/9776080960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776080960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H9mm_SnapRivet_9776090960 +Mounting Hardware, inside through hole 3.3mm, height 9, Wuerth electronics 9776090960 (https://katalog.we-online.com/em/datasheet/9776090960.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776090960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMSSR-3.3mm_H10mm_SnapRivet_9776100960 +Mounting Hardware, inside through hole 3.3mm, height 10, Wuerth electronics 9776100960 (https://katalog.we-online.com/em/datasheet/9776100960R.pdf), generated with kicad-footprint-generator +Mounting 3.3mm 9776100960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H1.5mm_9774015951 +Mounting Hardware, inside through hole 2.7mm, height 1.5, Wuerth electronics 9774015951 (https://katalog.we-online.de/em/datasheet/9774015951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774015951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H1mm_9774010951 +Mounting Hardware, inside through hole 2.7mm, height 1, Wuerth electronics 9774010951 (https://katalog.we-online.de/em/datasheet/9774010951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774010951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H2.5mm_9774025951 +Mounting Hardware, inside through hole 2.7mm, height 2.5, Wuerth electronics 9774025951 (https://katalog.we-online.de/em/datasheet/9774025951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774025951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H2mm_9774020951 +Mounting Hardware, inside through hole 2.7mm, height 2, Wuerth electronics 9774020951 (https://katalog.we-online.de/em/datasheet/9774020951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774020951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H3mm_9774030951 +Mounting Hardware, inside through hole 2.7mm, height 3, Wuerth electronics 9774030951 (https://katalog.we-online.de/em/datasheet/9774030951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774030951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H4mm_9774040951 +Mounting Hardware, inside through hole 2.7mm, height 4, Wuerth electronics 9774040951 (https://katalog.we-online.de/em/datasheet/9774040951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774040951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H5.5mm_9774055951 +Mounting Hardware, inside through hole 2.7mm, height 5.5, Wuerth electronics 9774055951 (https://katalog.we-online.de/em/datasheet/9774055951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774055951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H5mm_9774050951 +Mounting Hardware, inside through hole 2.7mm, height 5, Wuerth electronics 9774050951 (https://katalog.we-online.de/em/datasheet/9774050951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774050951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H6.5mm_9774065951 +Mounting Hardware, inside through hole 2.7mm, height 6.5, Wuerth electronics 9774065951 (https://katalog.we-online.de/em/datasheet/9774065951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774065951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H6mm_9774060951 +Mounting Hardware, inside through hole 2.7mm, height 6, Wuerth electronics 9774060951 (https://katalog.we-online.de/em/datasheet/9774060951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774060951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H7mm_9774070951 +Mounting Hardware, inside through hole 2.7mm, height 7, Wuerth electronics 9774070951 (https://katalog.we-online.de/em/datasheet/9774070951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774070951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H8mm_9774080951 +Mounting Hardware, inside through hole 2.7mm, height 8, Wuerth electronics 9774080951 (https://katalog.we-online.de/em/datasheet/9774080951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774080951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H9mm_9774090951 +Mounting Hardware, inside through hole 2.7mm, height 9, Wuerth electronics 9774090951 (https://katalog.we-online.de/em/datasheet/9774090951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774090951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.7mm_H10mm_9774100951 +Mounting Hardware, inside through hole 2.7mm, height 10, Wuerth electronics 9774100951 (https://katalog.we-online.de/em/datasheet/9774100951.pdf), generated with kicad-footprint-generator +Mounting 2.7mm 9774100951 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H1.5mm_9774015943 +Mounting Hardware, inside through hole 2.25mm, height 1.5, Wuerth electronics 9774015943 (https://katalog.we-online.de/em/datasheet/9774015943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774015943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H1mm_9774010943 +Mounting Hardware, inside through hole 2.25mm, height 1, Wuerth electronics 9774010943 (https://katalog.we-online.de/em/datasheet/9774010943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774010943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H2.5mm_9774025943 +Mounting Hardware, inside through hole 2.25mm, height 2.5, Wuerth electronics 9774025943 (https://katalog.we-online.de/em/datasheet/9774025943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774025943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H2mm_9774020943 +Mounting Hardware, inside through hole 2.25mm, height 2, Wuerth electronics 9774020943 (https://katalog.we-online.de/em/datasheet/9774020943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774020943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H3.5mm_9774035943 +Mounting Hardware, inside through hole 2.25mm, height 3.5, Wuerth electronics 9774035943 (https://katalog.we-online.de/em/datasheet/9774035943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774035943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H3mm_9774030943 +Mounting Hardware, inside through hole 2.25mm, height 3, Wuerth electronics 9774030943 (https://katalog.we-online.de/em/datasheet/9774030943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774030943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H4.5mm_9774045943 +Mounting Hardware, inside through hole 2.25mm, height 4.5, Wuerth electronics 9774045943 (https://katalog.we-online.de/em/datasheet/9774045943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774045943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H4mm_9774040943 +Mounting Hardware, inside through hole 2.25mm, height 4, Wuerth electronics 9774040943 (https://katalog.we-online.de/em/datasheet/9774040943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774040943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H5mm_9774050943 +Mounting Hardware, inside through hole 2.25mm, height 5, Wuerth electronics 9774050943 (https://katalog.we-online.de/em/datasheet/9774050943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774050943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H6mm_9774060943 +Mounting Hardware, inside through hole 2.25mm, height 6, Wuerth electronics 9774060943 (https://katalog.we-online.de/em/datasheet/9774060943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774060943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H7mm_9774070943 +Mounting Hardware, inside through hole 2.25mm, height 7, Wuerth electronics 9774070943 (https://katalog.we-online.de/em/datasheet/9774070943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774070943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-2.25mm_H8mm_9774080943 +Mounting Hardware, inside through hole 2.25mm, height 8, Wuerth electronics 9774080943 (https://katalog.we-online.de/em/datasheet/9774080943.pdf), generated with kicad-footprint-generator +Mounting 2.25mm 9774080943 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H1.5mm_9774015960 +Mounting Hardware, inside through hole 3.3mm, height 1.5, Wuerth electronics 9774015960 (https://katalog.we-online.de/em/datasheet/9774015960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774015960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H1mm_9774010960 +Mounting Hardware, inside through hole 3.3mm, height 1, Wuerth electronics 9774010960 (https://katalog.we-online.de/em/datasheet/9774010960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774010960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H2.5mm_9774025960 +Mounting Hardware, inside through hole 3.3mm, height 2.5, Wuerth electronics 9774025960 (https://katalog.we-online.de/em/datasheet/9774025960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774025960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H2mm_9774020960 +Mounting Hardware, inside through hole 3.3mm, height 2, Wuerth electronics 9774020960 (https://katalog.we-online.de/em/datasheet/9774020960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774020960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H3mm_9774030960 +Mounting Hardware, inside through hole 3.3mm, height 3, Wuerth electronics 9774030960 (https://katalog.we-online.de/em/datasheet/9774030960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774030960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H4mm_9774040960 +Mounting Hardware, inside through hole 3.3mm, height 4, Wuerth electronics 9774040960 (https://katalog.we-online.de/em/datasheet/9774040960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774040960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H5mm_9774050960 +Mounting Hardware, inside through hole 3.3mm, height 5, Wuerth electronics 9774050960 (https://katalog.we-online.de/em/datasheet/9774050960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774050960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H6mm_9774060960 +Mounting Hardware, inside through hole 3.3mm, height 6, Wuerth electronics 9774060960 (https://katalog.we-online.de/em/datasheet/9774060960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774060960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H7mm_9774070960 +Mounting Hardware, inside through hole 3.3mm, height 7, Wuerth electronics 9774070960 (https://katalog.we-online.de/em/datasheet/9774070960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774070960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H8mm_9774080960 +Mounting Hardware, inside through hole 3.3mm, height 8, Wuerth electronics 9774080960 (https://katalog.we-online.de/em/datasheet/9774080960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774080960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H9mm_9774090960 +Mounting Hardware, inside through hole 3.3mm, height 9, Wuerth electronics 9774090960 (https://katalog.we-online.de/em/datasheet/9774090960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774090960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H10mm_9774100960 +Mounting Hardware, inside through hole 3.3mm, height 10, Wuerth electronics 9774100960 (https://katalog.we-online.de/em/datasheet/9774100960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774100960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H11mm_9774110960 +Mounting Hardware, inside through hole 3.3mm, height 11, Wuerth electronics 9774110960 (https://katalog.we-online.de/em/datasheet/9774110960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774110960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H12mm_9774120960 +Mounting Hardware, inside through hole 3.3mm, height 12, Wuerth electronics 9774120960 (https://katalog.we-online.de/em/datasheet/9774120960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774120960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H13mm_9774130960 +Mounting Hardware, inside through hole 3.3mm, height 13, Wuerth electronics 9774130960 (https://katalog.we-online.de/em/datasheet/9774130960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774130960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H14mm_9774140960 +Mounting Hardware, inside through hole 3.3mm, height 14, Wuerth electronics 9774140960 (https://katalog.we-online.de/em/datasheet/9774140960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774140960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-3.3mm_H15mm_9774150960 +Mounting Hardware, inside through hole 3.3mm, height 15, Wuerth electronics 9774150960 (https://katalog.we-online.de/em/datasheet/9774150960.pdf,), generated with kicad-footprint-generator +Mounting 3.3mm 9774150960 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H1mm_9774010982 +Mounting Hardware, inside through hole 4.5mm, height 1, Wuerth electronics 9774010982 (https://katalog.we-online.de/em/datasheet/9774010982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774010982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H2mm_9774020982 +Mounting Hardware, inside through hole 4.5mm, height 2, Wuerth electronics 9774020982 (https://katalog.we-online.de/em/datasheet/9774020982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774020982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H3mm_9774030982 +Mounting Hardware, inside through hole 4.5mm, height 3, Wuerth electronics 9774030982 (https://katalog.we-online.de/em/datasheet/9774030982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774030982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H4mm_9774040982 +Mounting Hardware, inside through hole 4.5mm, height 4, Wuerth electronics 9774040982 (https://katalog.we-online.de/em/datasheet/9774040982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774040982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H5mm_9774050982 +Mounting Hardware, inside through hole 4.5mm, height 5, Wuerth electronics 9774050982 (https://katalog.we-online.de/em/datasheet/9774050982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774050982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H6mm_9774060982 +Mounting Hardware, inside through hole 4.5mm, height 6, Wuerth electronics 9774060982 (https://katalog.we-online.de/em/datasheet/9774060982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774060982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H7mm_9774070982 +Mounting Hardware, inside through hole 4.5mm, height 7, Wuerth electronics 9774070982 (https://katalog.we-online.de/em/datasheet/9774070982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774070982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H8mm_9774080982 +Mounting Hardware, inside through hole 4.5mm, height 8, Wuerth electronics 9774080982 (https://katalog.we-online.de/em/datasheet/9774080982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774080982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H9mm_9774090982 +Mounting Hardware, inside through hole 4.5mm, height 9, Wuerth electronics 9774090982 (https://katalog.we-online.de/em/datasheet/9774090982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774090982 +0 +8 +1 +Mounting_Wuerth +Mounting_Wuerth_WA-SMST-4.5mm_H10mm_9774100982 +Mounting Hardware, inside through hole 4.5mm, height 10, Wuerth electronics 9774100982 (https://katalog.we-online.de/em/datasheet/9774100982.pdf), generated with kicad-footprint-generator +Mounting 4.5mm 9774100982 +0 +8 +1 +NetTie +NetTie-2_SMD_Pad0.5mm +Net tie, 2 pin, 0.5mm square SMD pads +net tie +0 +2 +2 +NetTie +NetTie-2_SMD_Pad2.0mm +Net tie, 2 pin, 2.0mm square SMD pads +net tie +0 +2 +2 +NetTie +NetTie-2_THT_Pad0.3mm +Net tie, 2 pin, 0.3mm round THT pads +net tie +0 +2 +2 +NetTie +NetTie-2_THT_Pad1.0mm +Net tie, 2 pin, 1.0mm round THT pads +net tie +0 +2 +2 +NetTie +NetTie-3_SMD_Pad0.5mm +Net tie, 3 pin, 0.5mm square SMD pads +net tie +0 +3 +3 +NetTie +NetTie-3_SMD_Pad2.0mm +Net tie, 3 pin, 2.0mm square SMD pads +net tie +0 +3 +3 +NetTie +NetTie-3_THT_Pad0.3mm +Net tie, 3 pin, 0.3mm round THT pads +net tie +0 +3 +3 +NetTie +NetTie-3_THT_Pad1.0mm +Net tie, 3 pin, 1.0mm round THT pads +net tie +0 +3 +3 +NetTie +NetTie-4_SMD_Pad0.5mm +Net tie, 4 pin, 0.5mm square SMD pads +net tie +0 +4 +4 +NetTie +NetTie-4_SMD_Pad2.0mm +Net tie, 4 pin, 2.0mm square SMD pads +net tie +0 +4 +4 +NetTie +NetTie-4_THT_Pad0.3mm +Net tie, 4 pin, 0.3mm round THT pads +net tie +0 +4 +4 +NetTie +NetTie-4_THT_Pad1.0mm +Net tie, 4 pin, 1.0mm round THT pads +net tie +0 +4 +4 +OptoDevice +ADNS-9800 +Laser Gaming Sensor ADNS-9800 +MOUSE MOUSE_SENSOR LASER_GAMING_SENSOR +0 +16 +16 +OptoDevice +AGILENT_HFBR-152x +Fiberoptic Transmitter TX, HFBR series (https://docs.broadcom.com/docs/AV02-3283EN) +Fiberoptic Transmitter +0 +6 +6 +OptoDevice +AGILENT_HFBR-252x +Fiberoptic Receiver RX, HFBR series (https://docs.broadcom.com/docs/AV02-3283EN) +Fiberoptic Transmitter +0 +6 +6 +OptoDevice +AMS_TSL2550_SMD +http://ams.com/eng/content/download/250130/975613/142977 +TSL2550 ambient light sensor +0 +4 +4 +OptoDevice +Broadcom_AFBR-16xxZ_Horizontal +Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN +Fiber Optic Transmitter and Receiver +0 +6 +6 +OptoDevice +Broadcom_AFBR-16xxZ_Tilted +Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN +Fiber Optic Transmitter and Receiver +0 +6 +6 +OptoDevice +Broadcom_AFBR-16xxZ_Vertical +Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN +Fiber Optic Transmitter and Receiver +0 +6 +6 +OptoDevice +Broadcom_APDS-9301 +ambient light sensor, i2c interface, 6-pin chipled package, https://docs.broadcom.com/docs/AV02-2315EN +ambient light sensor chipled +0 +6 +6 +OptoDevice +Broadcom_DFN-6_2x2mm_P0.65mm +Broadcom DFN, 6 Pin (https://docs.broadcom.com/docs/AV02-4755EN), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom DFN NoLead +0 +6 +6 +OptoDevice +Broadcom_LGA-8_2x2mm_P0.53mm +Broadcom LGA, 8 Pin (https://docs.broadcom.com/docs/AV02-4755EN), generated with kicad-footprint-generator ipc_noLead_generator.py +Broadcom LGA NoLead +0 +8 +8 +OptoDevice +Everlight_ITR1201SR10AR +package for Everlight ITR1201SR10AR, light-direction upwards, see https://www.everlight.com/file/ProductFile/ITR1201SR10AR-TR.pdf +reflective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307 +package for Everlight ITR8307 with PCB cutout, light-direction upwards, see http://www.everlight.com/file/ProductFile/ITR8307.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307F43 +package for Everlight ITR8307/F43, see https://everlighteurope.com/index.php?controller=attachment&id_attachment=5385 +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR8307_Reverse +package for Everlight ITR8307 with PCB cutout, light-direction downwards, see http://www.everlight.com/file/ProductFile/ITR8307.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Everlight_ITR9608-F +Fork-type photointerrupter (https://everlighteurope.com/index.php?controller=attachment&id_attachment=5389) +Photointerrupter infrared LED +0 +4 +4 +OptoDevice +Finder_34.81 +Relay SPST, Finder Type 34.81 (opto relays/coupler), vertical/standing form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf +Relay SPST Finder +0 +4 +4 +OptoDevice +Hamamatsu_C12880 +Hamamatsu spectrometer, see http://www.hamamatsu.com/resources/pdf/ssd/c12880ma_kacc1226e.pdf +opto spectrometer Hamamatsu +0 +10 +10 +OptoDevice +Hamamatsu_S13360-30CS +SiPM, 2pin +Hamamatsu SiPM +0 +2 +2 +OptoDevice +Kingbright_KPS-3227 +3.2mmx2.7mm, light sensor, https://www.kingbright.com/attachments/file/psearch/000/00/00/KPS-3227SP1C(Ver.16).pdf +KPS-3227 Ambient Light Photo Sensor +0 +4 +4 +OptoDevice +Kingbright_KPS-5130 +http://www.kingbright.com/attachments/file/psearch/000/00/00/KPS-5130PD7C(Ver.14).pdf +KPS-5130 photodiode RGB sensor +0 +4 +4 +OptoDevice +Kingbright_KRC011_Horizontal +Subminiature Reflective Optical Sensor, http://www.kingbright.com/attachments/file/psearch/000/00/00/KRC011(Ver.15).pdf +Subminiature Reflective Optical Sensor +0 +4 +4 +OptoDevice +Kingbright_KRC011_Vertical +Subminiature Reflective Optical Sensor, http://www.kingbright.com/attachments/file/psearch/000/00/00/KRC011(Ver.15).pdf +Subminiature Reflective Optical Sensor +0 +4 +4 +OptoDevice +Kodenshi_LG206D +http://kodenshi.co.jp/products/pdf/sensor/photointerrupter_ic/LG206D.pdf +Photointerrupter infrared LED with photo IC +0 +5 +5 +OptoDevice +Kodenshi_LG206L +http://kodenshi.co.jp/products/pdf/sensor/photointerrupter_ic/LG205L.pdf +Photointerrupter infrared LED with photo IC +0 +5 +5 +OptoDevice +Kodenshi_SG105 +package for Kodenshi SG-105 with PCB cutout, light-direction upwards, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Kodenshi_SG105F +package for Kodenshi SG-105F, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105F.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Kodenshi_SG105_Reverse +package for Kodenshi SG-105 with PCB cutout, light-direction downwards, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105.pdf +refective opto couple photo coupler +0 +4 +4 +OptoDevice +LaserDiode_TO3.3-D3.3-3 +Laser Diode, TO-3.3mm, 3pin +Laser Diode TO3.3 +0 +3 +3 +OptoDevice +LaserDiode_TO5-D9-3 +Laser Diode, TO5-like (D=9mm), 3pin +Laser Diode TO5-like +0 +3 +3 +OptoDevice +LaserDiode_TO18-D5.6-3 +Laser Diode, TO18-like (D=5.6mm), 3pin +Laser Diode TO18-like +0 +3 +3 +OptoDevice +LaserDiode_TO38ICut-3 +Laser Diode, TO-38-ICut, 3pin +Laser Diode TO38-ICut +0 +3 +3 +OptoDevice +LaserDiode_TO56-3 +Laser Diode, TO-56, 3pin +Laser Diode TO56 +0 +3 +3 +OptoDevice +Lightpipe_Bivar_RLP1-400-650 +1-way, 2.8mm lightpipe, 10mm lens output height, 17mm protrusion, https://www.bivar.com/parts_content/Datasheets/RLP1-XXX-XXX.pdf +planar light pipe 1 way 3mm +0 +0 +0 +OptoDevice +Lightpipe_Dialight_515-1064F +https://www.dialightsignalsandcomponents.com/515-optopipe-light-pipe-trilevel-2-5mm-rnd-flat-diff-lens-press-fit/#tab-resources +lightpipe triple tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_LPF-C012303S +https://www.lumex.com/spec/LPF-C012303S.pdf +lightpipe dual tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_LPF-C013301S +https://www.lumex.com/spec/LPF-C013301S.pdf +lightpipe triple tower right angle 3mm +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1275.x00x +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +spherical light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1276.1004 +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +spherical light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lightpipe_Mentor_1276.2004 +https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf +planar light pipe 4 way 3mm PLCC-2 PLCC-4 +0 +0 +0 +OptoDevice +Lite-On_LTR-303ALS-01 +ambient light sensor, i2c interface, 6-pin chipled package, http://optoelectronics.liteon.com/upload/download/DS86-2013-0004/LTR-303ALS-01_DS_V1.pdf +ambient light sensor chipled +0 +6 +6 +OptoDevice +Luna_NSL-32 +Optoisolator with LED and photoresistor +optoisolator +0 +4 +4 +OptoDevice +Maxim_OLGA-14_3.3x5.6mm_P0.8mm +https://pdfserv.maximintegrated.com/land_patterns/90-0602.PDF +OLGA-14 OESIP-14 +0 +14 +14 +OptoDevice +ONSemi_QSE15x +3 Lead Plastic Package +ONSemi QSE158 QSE159 +0 +3 +3 +OptoDevice +OnSemi_CASE100AQ +OnSemi CASE 100AQ for QRE1113, see https://www.onsemi.com/pub/Collateral/QRE1113-D.PDF +reflective opto couple photo coupler +0 +4 +4 +OptoDevice +OnSemi_CASE100CY +OnSemi CASE 100CY, light-direction upwards, see http://www.onsemi.com/pub/Collateral/QRE1113-D.PDF +refective opto couple photo coupler +0 +4 +4 +OptoDevice +Osram_BP104-SMD +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.2x2.2mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5989350/BP%20104%20FAS_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_BPW34S-SMD +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5488319/BPW%2034%20S_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_BPW82 +PhotoDiode, BPW82, RM2.54 +PhotoDiode BPW82 RM2.54 +0 +2 +2 +OptoDevice +Osram_DIL2_4.3x4.65mm_P5.08mm +PhotoDiode, plastic DIL, 4.3x4.65mmยฒ, RM5.08 +PhotoDiode plastic DIL RM5.08 +0 +2 +2 +OptoDevice +Osram_LPT80A +PhotoTransistor, sidelooker package, RM2.54 +PhotoTransistor sidelooker package RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH9x0x +package for Osram SFH9x0x series of reflective photo interrupters/couplers, see http://www.osram-os.com/Graphics/XPic6/00200860_0.pdf +reflective photo interrupter SMD +0 +6 +6 +OptoDevice +Osram_SFH205 +PhotoDiode, SFH205, RM2.54 +PhotoDiode SFH205 RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH225 +PhotoDiode, SFH225, RM2.54 +PhotoDiode SFH225 RM2.54 +0 +2 +2 +OptoDevice +Osram_SFH2201 +PhotoDiode, Clear Silicone, Osram TOPLED, 4x5.09mm, area: 2.85x2.85mm, Orientation mark at cathode, https://dammedia.osram.info/media/resource/hires/osram-dam-25688470/SFH%202201%20A01_EN.pdf +PhotoDiode silicone +0 +6 +2 +OptoDevice +Osram_SFH2430 +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5467144/SFH%202430_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_SFH2440 +PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5467146/SFH%202440_EN.pdf +PhotoDiode plastic SMD DIL +0 +6 +2 +OptoDevice +Osram_SMD-SmartDIL +PhotoDiode, plastic SMD SmatDIL +PhotoDiode plastic SMD SmatDIL +0 +3 +3 +OptoDevice +Panasonic_APV-AQY_SSOP-4_4.45x2.65mm_P1.27mm +https://www.panasonic-electric-works.com/cps/rde/xbcr/pew_eu_en/technical_information_photomos_en.pdf +SSOP4 APV21 AQY22 +0 +4 +4 +OptoDevice +PerkinElmer_VTL5C +Axial Vactrol (http://www.qsl.net/wa1ion/vactrol/vactrol.pdf) +vactrol +0 +4 +4 +OptoDevice +PerkinElmer_VTL5Cx2 +Axial Vactrol (http://www.qsl.net/wa1ion/vactrol/vactrol.pdf) +vactrol +0 +5 +5 +OptoDevice +R_LDR_4.9x4.2mm_P2.54mm_Vertical +Resistor, LDR 4.9x4.2mm +Resistor LDR4.9x4.2 +0 +2 +2 +OptoDevice +R_LDR_5.0x4.1mm_P3mm_Vertical +Resistor, LDR 5x4.1mm, see http://cdn-reichelt.de/documents/datenblatt/A500/A90xxxx%23PE.pdf +Resistor LDR5x4.1mm +0 +2 +2 +OptoDevice +R_LDR_5.1x4.3mm_P3.4mm_Vertical +Resistor, LDR 5.1x3.4mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR5.1x3.4mm +0 +2 +2 +OptoDevice +R_LDR_5.2x5.2mm_P3.5mm_Horizontal +Resistor, LDR 5.2x5.2, upright, see http://cdn-reichelt.de/documents/datenblatt/A500/M996011A.pdf +Resistor LDR5.2x5.2 +0 +2 +2 +OptoDevice +R_LDR_7x6mm_P5.1mm_Vertical +Resistor, LDR 7x6mm +Resistor LDR7x6mm +0 +2 +2 +OptoDevice +R_LDR_10x8.5mm_P7.6mm_Vertical +Resistor, LDR 10x8.5mm +Resistor LDR10.8.5mm +0 +2 +2 +OptoDevice +R_LDR_11x9.4mm_P8.2mm_Vertical +Resistor, LDR 11x9.4mm +Resistor LDR11x9.4mm +0 +2 +2 +OptoDevice +R_LDR_12x10.8mm_P9.0mm_Vertical +Resistor, LDR 12x10.8mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR12x10.8mm +0 +2 +2 +OptoDevice +R_LDR_D6.4mm_P3.4mm_Vertical +Resistor, LDR D=6.4mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDRD=6.4mm +0 +2 +2 +OptoDevice +R_LDR_D13.8mm_P9.0mm_Vertical +Resistor, diameter 13.8mm pitch 9mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR +0 +2 +2 +OptoDevice +R_LDR_D20mm_P17.5mm_Vertical +Resistor, LDR 20mm diameter, pin pitch 17.5mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf +Resistor LDR +0 +2 +2 +OptoDevice +ST_VL53L0X +https://www.st.com/resource/en/datasheet/vl53l1x.pdf +laser-ranging sensor +0 +12 +12 +OptoDevice +ST_VL53L1X +https://www.st.com/resource/en/datasheet/vl53l1x.pdf +laser-ranging sensor +0 +12 +12 +OptoDevice +Sharp_GP2Y0A41SK0F +http://www.sharp-world.com/products/device/lineup/data/pdf/datasheet/gp2y0a41sk_e.pdf +Distance Sensor Sharp +0 +2 +2 +OptoDevice +Sharp_IS471F +Sharp OPIC IS471F, see http://pdf.datasheetcatalog.com/datasheet/Sharp/mXvrzty.pdf +Sharp OPIC IS471F +0 +4 +4 +OptoDevice +Sharp_IS485 +Sharp OPIC, IS485, IS486, see http://microrato.ua.pt/main/Actividades/Estagios/Docs/IS485_6.pdf +Sharp OPIC IS485 IS486 +0 +3 +3 +OptoDevice +Siemens_SFH900 +package for Siemens SFH900 reflex photo interrupter/coupler/object detector, see https://www.batronix.com/pdf/sfh900.pdf +Siemens SFH900 reflex photo interrupter coupler object detector +0 +3 +3 +OptoDevice +Toshiba_TORX170_TORX173_TORX193_TORX194 +Fiberoptic Reciver, RX, Toshiba, Toslink, TORX170, TORX173, TORX193, TORX194 +Fiberoptic Reciver RX Toshiba Toslink TORX170 TORX173 TORX193 TORX194 +0 +6 +6 +OptoDevice +Toshiba_TOTX170_TOTX173_TOTX193_TOTX194 +Fiberoptic Reciver, RX, Toshiba, Toslink, TORX170, TORX173, TORX193, TORX194 +Fiberoptic Reciver RX Toshiba Toslink TORX170 TORX173 TORX193 TORX194 +0 +6 +6 +OptoDevice +Vishay_CAST-3Pin +IR Receiver Vishay TSOP-xxxx, CAST package, see https://www.vishay.com/docs/82493/tsop311.pdf +IRReceiverVishayTSOP-xxxx CAST +0 +3 +3 +OptoDevice +Vishay_CNY70 +package for Vishay CNY70 refective photo coupler/interrupter +Vishay CNY70 refective photo coupler +0 +4 +4 +OptoDevice +Vishay_MINICAST-3Pin +IR Receiver Vishay TSOP-xxxx, MINICAST package, see https://www.vishay.com/docs/82669/tsop32s40f.pdf +IR Receiver Vishay TSOP-xxxx MINICAST +0 +3 +3 +OptoDevice +Vishay_MINIMOLD-3Pin +IR Receiver Vishay TSOP-xxxx, MINIMOLD package, see https://www.vishay.com/docs/82742/tsop331.pdf +IR Receiver Vishay TSOP-xxxx MINIMOLD +0 +3 +3 +OptoDevice +Vishay_MOLD-3Pin +IR Receiver Vishay TSOP-xxxx, MOLD package, see https://www.vishay.com/docs/82669/tsop32s40f.pdf +IR Receiver Vishay TSOP-xxxx MOLD +0 +3 +3 +Oscillator +Oscillator_DIP-8 +Oscillator, DIP8,http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_DIP-8_LargePads +Oscillator, DIP8, Large Pads, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_DIP-14 +Oscillator, DIP14, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_DIP-14_LargePads +Oscillator, DIP14, Large Pads, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf +oscillator +0 +4 +4 +Oscillator +Oscillator_OCXO_Morion_MV267 +http://www.morion.com.ru/catalog_pdf/MV267.pdf +OCXO +0 +5 +5 +Oscillator +Oscillator_OCXO_Morion_MV317 +https://www.morion-us.com/catalog_pdf/mv317.pdf +OCXO +0 +5 +5 +Oscillator +Oscillator_SMD_Abracon_ABLNO +https://abracon.com/Precisiontiming/ABLNO.pdf +VCXO XO +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm +Miniature Crystal Clock Oscillator Abracon ASCO series, https://abracon.com/Oscillators/ASCO.pdf, 1.6x1.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASDMB-4Pin_2.5x2.0mm +Miniature Crystal Clock Oscillator Abracon ASDMB series, 2.5x2.0mm package, http://www.abracon.com/Oscillators/ASDMB.pdf +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm +Miniature Crystal Clock Oscillator Abracon ASE series, http://www.abracon.com/Oscillators/ASEseries.pdf, 3.2x2.5mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm_HandSoldering +Miniature Crystal Clock Oscillator Abracon ASE series, http://www.abracon.com/Oscillators/ASEseries.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASV-4Pin_7.0x5.1mm +Miniature Crystal Clock Oscillator Abracon ASV series, http://www.abracon.com/Oscillators/ASV.pdf, 7.0x5.1mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Abracon_ASV-4Pin_7.0x5.1mm_HandSoldering +Miniature Crystal Clock Oscillator Abracon ASV series, http://www.abracon.com/Oscillators/ASV.pdf, hand-soldering, 7.0x5.1mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Diodes_FN-4Pin_7.0x5.0mm +FN Series Crystal Clock Oscillator (XO) (https://www.diodes.com/assets/Datasheets/FN_3-3V.pdf) +Oscillator Crystal SMD SMT +0 +4 +4 +Oscillator +Oscillator_SMD_ECS_2520MV-xxx-xx-4Pin_2.5x2.0mm +Miniature Crystal Clock Oscillator ECS 2520MV series, https://www.ecsxtal.com/store/pdf/ECS-2520MV.pdf +Miniature Crystal Clock Oscillator ECS 2520MV series SMD SMT HCMOS +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO32-4Pin_3.2x2.5mm +Miniature Crystal Clock Oscillator EuroQuartz XO32 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO32.pdf, 3.2x2.5mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO32-4Pin_3.2x2.5mm_HandSoldering +Miniature Crystal Clock Oscillator EuroQuartz XO32 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO32.pdf, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm +Miniature Crystal Clock Oscillator EuroQuartz XO53 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO53.pdf, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm_HandSoldering +Miniature Crystal Clock Oscillator EuroQuartz XO53 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO53.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO91-4Pin_7.0x5.0mm +Miniature Crystal Clock Oscillator EuroQuartz XO91 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO91.pdf, 7.0x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_EuroQuartz_XO91-4Pin_7.0x5.0mm_HandSoldering +Miniature Crystal Clock Oscillator EuroQuartz XO91 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO91.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS1-6Pin_14.8x9.1mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S1-KHZ/LHZ, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 14.8x9.1mm^2 package +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_Fordahl_DFAS2-4Pin_7.3x5.1mm +Mminiature Crystal Clock Oscillator TXCO Fordahl DFA S2-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.3x5.1mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS2-4Pin_7.3x5.1mm_HandSoldering +Mminiature Crystal Clock Oscillator TXCO Fordahl DFA S2-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.3x5.1mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS3-4Pin_9.1x7.2mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S3-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 9.1x7.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS3-4Pin_9.1x7.2mm_HandSoldering +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S3-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 9.1x7.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS7-4Pin_19.9x12.9mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S7-K/L, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 19.9x12.9mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS7-4Pin_19.9x12.9mm_HandSoldering +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S7-K/L, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 19.9x12.9mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS11-4Pin_7.0x5.0mm +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S11-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.0x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS11-4Pin_7.0x5.0mm_HandSoldering +Miniature Crystal Clock Oscillator TXCO Fordahl DFA S11-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm +Ultraminiature Crystal Clock Oscillator TXCO Fordahl DFA S15-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm_HandSoldering +Ultraminiature Crystal Clock Oscillator TXCO Fordahl DFA S15-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Fox_FT5H_5.0x3.2mm +https://foxonline.com/wp-content/uploads/pdfs/T5HN_T5HV.pdf +Fox TXCO temperature compensated oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_IDT_JS6-6_5.0x3.2mm_P1.27mm +SMD Crystal Oscillator IDT https://www.idt.com/document/dst/xu-family-datasheet#page=15, 5.0x3.2mm +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_IDT_JU6-6_7.0x5.0mm_P2.54mm +SMD Crystal Oscillator IDT https://www.idt.com/document/dst/xu-family-datasheet#page=17, 7.0x5.0mm +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_IQD_IQXO70-4Pin_7.5x5.0mm +IQD Crystal Clock Oscillator IQXO-70, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.5x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_IQD_IQXO70-4Pin_7.5x5.0mm_HandSoldering +IQD Crystal Clock Oscillator IQXO-70, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.5x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_Kyocera_2520-6Pin_2.5x2.0mm +https://global.kyocera.com/prdct/electro/product/pdf/kt2520_e.pdf +2.5mm 2mm SMD +0 +6 +6 +Oscillator +Oscillator_SMD_Kyocera_KC2520Z-4Pin_2.5x2.0mm +https://global.kyocera.com/prdct/electro/product/pdf/clock_z_xz_e.pdf +2.5mm 2mm SMD +0 +4 +4 +Oscillator +Oscillator_SMD_OCXO_ConnorWinfield_OH300 +http://www.conwin.com/datasheets/cx/cx282.pdf +OCXO +0 +7 +7 +Oscillator +Oscillator_SMD_SI570_SI571_HandSoldering +SI570, SI571, Programmable oscillator, Standard +SI570 SI571 Programmable oscillator Standard +0 +8 +8 +Oscillator +Oscillator_SMD_SI570_SI571_Standard +SI570, SI571, Programmable oscillator, Standard +SI570 SI571 Programmable oscillator Standard +0 +8 +8 +Oscillator +Oscillator_SMD_SeikoEpson_SG210-4Pin_2.5x2.0mm +SMD Crystal Oscillator Seiko Epson SG-210 https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210SED, 2.5x2.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG210-4Pin_2.5x2.0mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-210 https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210SED, hand-soldering, 2.5x2.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG3030CM +SMD Crystal Oscillator Seiko Epson SG-3030CM package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CA-4Pin_7.0x5.0mm +SMD Crystal Oscillator Seiko Epson SG-8002CA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 7.0x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CA-4Pin_7.0x5.0mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002CA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 7.0x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CE-4Pin_3.2x2.5mm +SMD Crystal Oscillator Seiko Epson SG-8002CE https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 3.2x2.5mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002CE-4Pin_3.2x2.5mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002CE https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 3.2x2.5mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JA-4Pin_14.0x8.7mm +SMD Crystal Oscillator Seiko Epson SG-8002JA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 14.0x8.7mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JA-4Pin_14.0x8.7mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002JA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 14.0x8.7mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JC-4Pin_10.5x5.0mm +SMD Crystal Oscillator Seiko Epson SG-8002JC https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 10.5x5.0mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002JC-4Pin_10.5x5.0mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002JC https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 10.5x5.0mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002LB-4Pin_5.0x3.2mm +SMD Crystal Oscillator Seiko Epson SG-8002LB https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_SeikoEpson_SG8002LB-4Pin_5.0x3.2mm_HandSoldering +SMD Crystal Oscillator Seiko Epson SG-8002LB https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SMD_SiTime_SiT9121-6Pin_3.2x2.5mm +3.2x2.5mm, 1-220MHz High Performance Differential Oscillator SiTime SiT9121 https://www.sitime.com/datasheet/SiT9121 +SMD SMT crystal oscillator +0 +6 +6 +Oscillator +Oscillator_SMD_Silicon_Labs_LGA-6_2.5x3.2mm_P1.25mm +Silicon_Labs LGA, 6 Pin (https://www.silabs.com/documents/public/data-sheets/si512-13.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Silicon_Labs LGA NoLead +0 +6 +6 +Oscillator +Oscillator_SMD_TCXO_G158 +TCXO +TCXO +0 +4 +4 +Oscillator +Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm +Miniature Crystal Clock Oscillator TXC 7C series, http://www.txccorp.com/download/products/osc/7C_o.pdf, 5.0x3.2mm^2 package +SMD SMT crystal oscillator +0 +4 +4 +Oscillator +Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm_HandSoldering +Miniature Crystal Clock Oscillator TXC 7C series, http://www.txccorp.com/download/products/osc/7C_o.pdf, hand-soldering, 5.0x3.2mm^2 package +SMD SMT crystal oscillator hand-soldering +0 +4 +4 +Oscillator +Oscillator_SeikoEpson_SG-8002DB +14-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +Oscillator +Oscillator_SeikoEpson_SG-8002DC +8-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +Package_BGA +Analog_BGA-28_4.0x6.25mm_Layout4x7_P0.8mm_Ball0.45mm_Pad0.4 +Analog BGA-28 4.0mm x 6.25mm package, pitch 0.4mm pad, based on https://www.analog.com/media/en/technical-documentation/data-sheets/8063fa.pdf +BGA 28 0.8 +0 +28 +28 +Package_BGA +Analog_BGA-49_6.25x6.25mm_Layout7x7_P0.8mm_Ball0.5mm_Pad0.4mm +Analog BGA-49, 6.25x6.25mm, 49 Ball, 7x7 Layout, 0.8mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081600_0_bga49.pdf https://www.analog.com/media/en/technical-documentation/product-information/assembly-considerations-for-umodule-bga-lga-package.pdf +BGA 49 0.8 +0 +49 +49 +Package_BGA +BGA-9_1.6x1.6mm_Layout3x3_P0.5mm +BGA-9, http://www.ti.com/lit/ds/symlink/bq27421-g1.pdf +BGA-9 +0 +9 +9 +Package_BGA +BGA-16_1.92x1.92mm_Layout4x4_P0.5mm +BGA-16, http://www.st.com/content/ccc/resource/technical/document/datasheet/group2/bc/cd/62/9e/8f/30/47/69/CD00151267/files/CD00151267.pdf/jcr:content/translations/en.CD00151267.pdf +BGA-16 +0 +16 +16 +Package_BGA +BGA-25_6.35x6.35mm_Layout5x5_P1.27mm +BGA-25, http://cds.linear.com/docs/en/datasheet/4624fc.pdf +BGA-25 uModule +0 +25 +25 +Package_BGA +BGA-36_3.396x3.466mm_Layout6x6_P0.4mm_Ball0.25mm_Pad0.2mm_NSMD +Altera V36, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00486-00.pdf +Altera BGA-36 V36 VBGA +0 +36 +36 +Package_BGA +BGA-48_8.0x9.0mm_Layout6x8_P0.8mm +BGA-48 - pitch 0.8 mm +BGA-48 +0 +48 +48 +Package_BGA +BGA-64_9.0x9.0mm_Layout10x10_P0.8mm +BGA-64, 10x10 raster, 9x9mm package, pitch 0.8mm +BGA-64 +0 +64 +64 +Package_BGA +BGA-68_5.0x5.0mm_Layout9x9_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-68, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00344-01.pdf +Altera BGA-68 M68 MBGA +0 +68 +68 +Package_BGA +BGA-81_4.496x4.377mm_Layout9x9_P0.4mm_Ball0.25mm_Pad0.2mm_NSMD +Altera V81, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00478-01.pdf +Altera VBGA V81 BGA-81 +0 +81 +81 +Package_BGA +BGA-90_8.0x13.0mm_Layout2x3x15_P0.8mm +BGA-90, http://www.issi.com/WW/pdf/42-45S32800J.pdf +BGA-90 +0 +90 +90 +Package_BGA +BGA-96_9.0x13.0mm_Layout2x3x16_P0.8mm +BGA-96, http://www.mouser.com/ds/2/198/43-46TR16640B-81280BL-706483.pdf +BGA-96 +0 +96 +96 +Package_BGA +BGA-100_6.0x6.0mm_Layout11x11_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-100, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00345-01.pdf +Altera BGA-100 M100 MBGA +0 +100 +100 +Package_BGA +BGA-100_11.0x11.0mm_Layout10x10_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD +BGA-100, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00223-02.pdf +BGA-100 +0 +100 +100 +Package_BGA +BGA-121_9.0x9.0mm_Layout11x11_P0.8mm_Ball0.4mm_Pad0.35mm_NSMD +121-ball, 0.8mm BGA (based on http://www.latticesemi.com/view_document?document_id=213) +BGA 0.8mm 9mm 121 +0 +121 +121 +Package_BGA +BGA-121_12.0x12.0mm_Layout11x11_P1.0mm +BGA-121, http://cds.linear.com/docs/en/packaging/05081891_A_bga121.pdf +BGA-121 +0 +121 +121 +Package_BGA +BGA-132_12x18mm_Layout11x17_P1.0mm +BGA-132 11x17 12x18mm 1.0pitch +BGA-132 +0 +132 +132 +Package_BGA +BGA-144_7.0x7.0mm_Layout13x13_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-144, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00346-00.pdf +Altera BGA-144 M144 MBGA +0 +144 +144 +Package_BGA +BGA-144_13.0x13.0mm_Layout12x12_P1.0mm +BGA-144, http://www.topline.tv/drawings/pdf/BGA%201,0mm%20pitch/LBGA144T1.0-DC128.pdf +BGA-144 +0 +144 +144 +Package_BGA +BGA-152_14x18mm_Layout13x17_P0.5mm +BGA-152_14x18mm_Layout13x17_P0.5mm +VBGA-152 +0 +152 +152 +Package_BGA +BGA-153_8.0x8.0mm_Layout15x15_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-153, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00471-00.pdf +Altera BGA-153 M153 MBGA +0 +153 +153 +Package_BGA +BGA-169_11.0x11.0mm_Layout13x13_P0.8mm_Ball0.5mm_Pad0.4mm_NSMD +Altera U169, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00470-01.pdf +Altera UBGA U169 BGA-169 +0 +169 +169 +Package_BGA +BGA-200_10.0x14.5mm_Layout12x22_P0.80x0.65mm +BGA-200, 14.5x10.0mm, 200 Ball, 12x22 Layout, 0.8x0.65mm Pitch, http://www.issi.com/WW/pdf/43-46LQ32256A-AL.pdf +BGA 200 0.8x0.65 +0 +200 +200 +Package_BGA +BGA-256_11.0x11.0mm_Layout20x20_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD +Altera MBGA-256, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00348-01.pdf +Altera BGA-256 M256 MBGA +0 +256 +256 +Package_BGA +BGA-256_14.0x14.0mm_Layout16x16_P0.8mm_Ball0.45mm_Pad0.32mm_NSMD +BGA-256, dimensions: https://www.xilinx.com/support/documentation/package_specs/ft256.pdf, design rules: https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf +BGA-256 +0 +256 +256 +Package_BGA +BGA-256_17.0x17.0mm_Layout16x16_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD +BGA-256, dimensions: https://www.xilinx.com/support/documentation/package_specs/ft256.pdf, design rules: https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf +BGA-256 +0 +256 +256 +Package_BGA +BGA-324_15.0x15.0mm_Layout18x18_P0.8mm_Ball0.5mm_Pad0.4mm_NSMD +Altera U324, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00474-02.pdf +Altera UBGA U324 BGA-324 +0 +324 +324 +Package_BGA +BGA-324_15.0x15.0mm_Layout18x18_P0.8mm_Ball0.45mm_Pad0.4mm_NSMD +BGA-324, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, https://colognechip.com/docs/ds1001-gatemate1-datasheet-2022-05.pdf#page=92 +BGA 324 0.8 GateMate FPGA +0 +324 +324 +Package_BGA +BGA-324_19.0x19.0mm_Layout18x18_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD +BGA-324, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00233-03.pdf +BGA-324 +0 +324 +324 +Package_BGA +BGA-352_35.0x35.0mm_Layout26x26_P1.27mm +BGA-352, https://www.fujitsu.com/downloads/MICRO/fma/pdfmcu/b352p05.pdf +BGA-352 +0 +352 +352 +Package_BGA +BGA-400_21.0x21.0mm_Layout20x20_P1.0mm +BGA-400, https://www.xilinx.com/support/documentation/package_specs/fg400.pdf +BGA-400 +0 +400 +400 +Package_BGA +BGA-484_23.0x23.0mm_Layout22x22_P1.0mm +BGA-484, https://www.xilinx.com/support/documentation/package_specs/fg484.pdf +BGA-484 +0 +484 +484 +Package_BGA +BGA-624_21.0x21.0mm_Layout25x25_P0.8mm +BGA-624, 25x25 grid, 21x21mm package, pitch 0.8mm; https://www.nxp.com/docs/en/package-information/SOT1529-1.pdf +BGA 624 0.8 +0 +624 +624 +Package_BGA +BGA-625_21.0x21.0mm_Layout25x25_P0.8mm +BGA-625 +BGA-625 +0 +625 +625 +Package_BGA +BGA-672_27.0x27.0mm_Layout26x26_P1.0mm_Ball0.6mm_Pad0.5mm_NSMD +Altera BGA-672, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00472-00.pdf +Altera BGA-672 F672 FBGA +0 +672 +672 +Package_BGA +BGA-676_27.0x27.0mm_Layout26x26_P1.0mm_Ball0.6mm_Pad0.5mm_NSMD +XILINX BGA-676, https://www.xilinx.com/support/documentation/package_specs/fg676.pdf +XILINX BGA-676 FG676/FGG676 +0 +676 +676 +Package_BGA +BGA-1023_33.0x33.0mm_Layout32x32_P1.0mm +BGA-1023 +BGA-1023 +0 +1023 +1023 +Package_BGA +BGA-1156_35.0x35.0mm_Layout34x34_P1.0mm +BGA-1156 +BGA-1156 +0 +1156 +1156 +Package_BGA +BGA-1295_37.5x37.5mm_Layout36x36_P1.0mm +BGA-1295 +BGA-1295 +0 +1295 +1295 +Package_BGA +FB-BGA-484_23.0x23.0mm_Layout22x22_P1.0mm +Xilinx FB-484, https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf +FB-BGA-484 +0 +484 +484 +Package_BGA +FBGA-78_7.5x11mm_Layout2x3x13_P0.8mm +FBGA-78, https://www.skhynix.com/product/filedata/fileDownload.do?seq=7687 +FBGA-78 +0 +78 +78 +Package_BGA +Fujitsu_WLP-15_2.28x3.092mm_Layout3x5_P0.4mm +WLP-15, 3x5 raster, 2.28x3.092mm package, pitch 0.4mm; http://www.fujitsu.com/global/documents/products/devices/semiconductor/fram/lineup/MB85RS1MT-DS501-00022-7v0-E.pdf +BGA 8 0.4 +0 +8 +8 +Package_BGA +Infineon_LFBGA-292_17x17mm_Layout20x20_P0.8mm_Ball0.5mm_Pad0.35 +Infineon LFBGA-292, 0.35mm pad, 17.0x17.0mm, 292 Ball, 20x20 Layout, 0.8mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-LFBGA/PG-LFBGA-292-11/ +BGA 292 0.8 +0 +292 +292 +Package_BGA +LFBGA-100_10x10mm_Layout10x10_P0.8mm +LFBGA-100, 10x10 raster, 10x10mm package, pitch 0.8mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f103tb.pdf +BGA 100 0.8 +0 +100 +100 +Package_BGA +LFBGA-144_10x10mm_Layout12x12_P0.8mm +LFBGA-144, 12x12 raster, 10x10mm package, pitch 0.8mm; see section 6.1 of http://www.st.com/resource/en/datasheet/stm32f103ze.pdf +BGA 144 0.8 +0 +144 +144 +Package_BGA +LFBGA-169_16x12mm_Layout28x14_P0.5mm_Ball0.3_Pad0.3mm_NSMD +https://4donline.ihs.com/images/VipMasterIC/IC/SGST/SGSTS20279/SGSTS20279-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0 +eMMC Flash LFBGA169 +0 +169 +169 +Package_BGA +Lattice_caBGA-381_17.0x17.0mm_Layout20x20_P0.8mm_Ball0.4mm_Pad0.4mm_NSMD +Lattice caBGA-381 footprint for ECP5 FPGAs, based on http://www.latticesemi.com/view_document?document_id=213 +BGA 381 0.8 +0 +381 +381 +Package_BGA +Lattice_caBGA-381_17.0x17.0mm_Layout20x20_P0.8mm_Ball0.4mm_Pad0.6mm_SMD +Lattice caBGA-381 footprint for ECP5 FPGAs, based on http://www.latticesemi.com/view_document?document_id=213 +BGA 381 0.8 +0 +381 +381 +Package_BGA +Lattice_caBGA-756_27.0x27.0mm_Layout32x32_P0.8mm +Lattice caBGA-756, ECP5 FPGAs, 27.0x27.0mm, 756 Ball, 32x32 Layout, 0.8mm Pitch, http://www.latticesemi.com/view_document?document_id=213 +BGA 756 0.8 +0 +756 +756 +Package_BGA +Linear_BGA-133_15.0x15.0mm_Layout12x12_P1.27mm +Analog Devices (Linear Tech), 133-pin BGA uModule, 15.0x15.0x4.92mm, https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf +133 pin bga +0 +134 +134 +Package_BGA +MAPBGA_9x9mm_Layout17x17_P0.5mm +MAPBGA 9x9x1.11 PKG, 9.0x9.0mm, 272 Ball, 17x17 Layout, 0.5mm Pitch, https://www.nxp.com/docs/en/package-information/98ASA00869D.pdf#page=1 +BGA 272 0.5 +0 +272 +272 +Package_BGA +MAPBGA_14x14mm_Layout17x17_P0.8mm +MAPBGA 14x14x1.18 PKG, 14.0x14.0mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, https://www.nxp.com/docs/en/package-information/98ASA00855D.pdf#page=1 +BGA 289 0.8 +0 +289 +289 +Package_BGA +Maxim_WLP-9_1.595x1.415_Layout3x3_P0.4mm_Ball0.27mm_Pad0.25mm_NSMD +Maxim_WLP-9 W91C1+1 https://pdfserv.maximintegrated.com/package_dwgs/21-0459.PDF +Maxim_WLP-9 +0 +9 +9 +Package_BGA +Maxim_WLP-12 +Maxim_WLP-12 W121B2+1 http://pdfserv.maximintegrated.com/package_dwgs/21-0009.PDF +Maxim_WLP-12 +0 +12 +12 +Package_BGA +Microchip_TFBGA-196_11x11mm_Layout14x14_P0.75mm_SMD +TFBGA-196, 11.0x11.0mm, 196 Ball, 14x14 Layout, 0.75mm Pitch, http://ww1.microchip.com/downloads/en/DeviceDoc/SAMA5D2-Series-Data-Sheet-DS60001476C.pdf#page=2956 +BGA 196 0.75 +0 +196 +196 +Package_BGA +Micron_FBGA-78_7.5x10.6mm_Layout9x13_P0.8mm +FBGA-78, 10.6x7.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=24 +BGA 78 0.8 +0 +78 +78 +Package_BGA +Micron_FBGA-78_8x10.5mm_Layout9x13_P0.8mm +FBGA-78, 10.5x8.0mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=25 +BGA 78 0.8 +0 +78 +78 +Package_BGA +Micron_FBGA-78_9x10.5mm_Layout9x13_P0.8mm +FBGA-78, 10.5x9.0mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=23 +BGA 78 0.8 +0 +78 +78 +Package_BGA +Micron_FBGA-96_7.5x13.5mm_Layout9x16_P0.8mm +FBGA-96, 13.5x7.5mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=27 +BGA 96 0.8 +0 +96 +96 +Package_BGA +Micron_FBGA-96_8x14mm_Layout9x16_P0.8mm +FBGA-96, 14.0x8.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=28 +BGA 96 0.8 +0 +96 +96 +Package_BGA +Micron_FBGA-96_9x14mm_Layout9x16_P0.8mm +FBGA-96, 14.0x9.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=26 +BGA 96 0.8 +0 +96 +96 +Package_BGA +NXP_VFBGA-42_2.6x3mm_Layout6x7_P0.4mm_Ball0.25mm_Pad0.24mm +NXP VFBGA-42, 3.0x2.6mm, 42 Ball, 6x7 Layout, 0.4mm Pitch, https://www.nxp.com/docs/en/package-information/SOT1963-1.pdf +BGA 42 0.4 +0 +42 +42 +Package_BGA +ST_LFBGA-354_16x16mm_Layout19x19_P0.8mm +ST LFBGA-354, 16.0x16.0mm, 354 Ball, 19x19 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 354 0.8 +0 +354 +354 +Package_BGA +ST_LFBGA-448_18x18mm_Layout22x22_P0.8mm +ST LFBGA-448, 18.0x18.0mm, 448 Ball, 22x22 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 448 0.8 +0 +448 +448 +Package_BGA +ST_TFBGA-225_13x13mm_Layout15x15_P0.8mm +ST TFBGA-225, 13.0x13.0mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32h7b3ri.pdf +BGA 225 0.8 +0 +225 +225 +Package_BGA +ST_TFBGA-257_10x10mm_Layout19x19_P0.5mmP0.65mm +ST TFBGA-257, 10.0x10.0mm, 257 Ball, 19x19 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 257 0.5 +0 +257 +257 +Package_BGA +ST_TFBGA-361_12x12mm_Layout23x23_P0.5mmP0.65mm +ST TFBGA-361, 12.0x12.0mm, 361 Ball, 23x23 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf +BGA 361 0.5 +0 +361 +361 +Package_BGA +ST_UFBGA-73_5x5mm_Layout9x9_P0.5mm +ST UFBGA-73, 5.0x5.0mm, 73 Ball, 9x9 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32wl54jc.pdf +BGA 73 0.5 +0 +73 +73 +Package_BGA +ST_UFBGA-121_6x6mm_Layout11x11_P0.5mm +ST UFBGA-121, 6.0x6.0mm, 121 Ball, 11x11 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32g473pb.pdf +BGA 121 0.5 +0 +121 +121 +Package_BGA +ST_UFBGA-129_7x7mm_Layout13x13_P0.5mm +ST UFBGA-129, 7.0x7.0mm, 129 Ball, 13x13 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb55vc.pdf +BGA 129 0.5 +0 +129 +129 +Package_BGA +ST_uTFBGA-36_3.6x3.6mm_Layout6x6_P0.5mm +ST uTFBGA-36, 0.25mm pad, 3.6x3.6mm, 36 Ball, 6x6 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stulpi01a.pdf +BGA 36 0.5 +0 +36 +36 +Package_BGA +TFBGA-64_5x5mm_Layout8x8_P0.5mm +TFBGA-64, 8x8 raster, 5x5mm package, pitch 0.5mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f100v8.pdf +BGA 64 0.5 +0 +64 +64 +Package_BGA +TFBGA-100_8x8mm_Layout10x10_P0.8mm +TFBGA-100, 10x10 raster, 8x8mm package, pitch 0.8mm; see section 6.2 of http://www.st.com/resource/en/datasheet/stm32f746zg.pdf +BGA 100 0.8 +0 +100 +100 +Package_BGA +TFBGA-100_9.0x9.0mm_Layout10x10_P0.8mm +TFBGA-100, 10x10, 9x9mm package, pitch 0.8mm +TFBGA-100 +0 +100 +100 +Package_BGA +TFBGA-121_10x10mm_Layout11x11_P0.8mm +TFBGA-121, 11x11 raster, 10x10mm package, pitch 0.8mm; http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#p495 +BGA 121 0.8 +0 +121 +121 +Package_BGA +TFBGA-216_13x13mm_Layout15x15_P0.8mm +TFBGA-216, 15x15 raster, 13x13mm package, pitch 0.8mm; see section 6.8 of http://www.st.com/resource/en/datasheet/stm32f746zg.pdf +BGA 216 0.8 +0 +216 +216 +Package_BGA +TFBGA-265_14x14mm_Layout17x17_P0.8mm +TFBGA-265, 17x17 raster, 14x14mm package, pitch 0.8mm; see section 7.8 of http://www.st.com/resource/en/datasheet/DM00387108.pdf +BGA 265 0.8 +0 +265 +265 +Package_BGA +Texas_DSBGA-5_0.822x1.116mm_Layout2x1x2_P0.4mm +Texas Instruments, DSBGA, 0.822x1.116mm, 5 bump 2x1x2 array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/opa330.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YFF S-XBGA-N5 +0 +10 +5 +Package_BGA +Texas_DSBGA-6_0.9x1.4mm_Layout2x3_P0.5mm +Texas Instruments, DSBGA, 0.9x1.4mm, 6 bump 2x3 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/ts5a3159a.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N6 +0 +12 +6 +Package_BGA +Texas_DSBGA-6_0.95x1.488mm_Layout2x3_P0.4mm +Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, https://www.ti.com/lit/ml/mxbg419/mxbg419.pdf, https://www.ti.com/lit/ds/symlink/tmp117.pdf +BGA 6 0.4 +0 +6 +6 +Package_BGA +Texas_DSBGA-6_0.704x1.054mm_Layout2x3_P0.35mm +Texas Instruments, DSBGA-6, 0.704x1.054mm, NSMD, YKA pad definition, 0.704x1.054mm, 6 Ball, 2x3 Layout, 0.35mm Pitch, https://www.ti.com/lit/ml/mxbg383/mxbg383.pdf, https://www.ti.com/lit/ds/symlink/tps62800.pdf +BGA 6 0.35 +0 +6 +6 +Package_BGA +Texas_DSBGA-8_0.9x1.9mm_Layout2x4_P0.5mm +Texas Instruments, DSBGA, 0.9x1.9mm, 8 bump 2x4 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txb0102.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N8 +0 +16 +8 +Package_BGA +Texas_DSBGA-8_0.705x1.468mm_Layout2x4_P0.4mm +Texas Instruments, DSBGA, area grid, YBJ0008 pad definition, 1.468x0.705mm, 8 Ball, 2x4 Layout, 0.4mm Pitch, https://www.ti.com/lit/gpn/ina234 +BGA 8 0.4 +0 +8 +8 +Package_BGA +Texas_DSBGA-8_1.43x1.41mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, 1.43x1.41mm, 8 bump 3x3 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/lmc555.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZP R-XBGA-N8 +0 +16 +8 +Package_BGA +Texas_DSBGA-8_1.5195x1.5195mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, 1.5195x1.5195x0.600mm, 8 ball 3x3 area grid, YZR pad definition (http://www.ti.com/lit/ml/mxbg270/mxbg270.pdf) +BGA 8 0.5 +0 +8 +8 +Package_BGA +Texas_DSBGA-9_1.4715x1.4715mm_Layout3x3_P0.5mm +Texas Instruments, DSBGA, 1.4715x1.4715mm, 9 bump 3x3 array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/lm4990.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +Texas Instruments DSBGA BGA YZR0009 +0 +18 +9 +Package_BGA +Texas_DSBGA-10_1.36x1.86mm_Layout3x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZP, YZP0010, 1.86x1.36mm, 10 Ball, 3x4 Layout, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/ts3a24159.pdf +BGA 10 0.5 +0 +20 +10 +Package_BGA +Texas_DSBGA-12_1.36x1.86mm_Layout3x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZT, 1.86x1.36mm, 12 Ball, 3x4 Layout, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/txb0104.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf +BGA 12 0.5 R-XBGA-N12 +0 +24 +12 +Package_BGA +Texas_DSBGA-16_2.39x2.39mm_Layout4x4_P0.5mm +Texas Instruments, DSBGA, area grid, YZF, YZF0016, 2.39x2.39mm, 16 Ball, 4x4 Layout, 0.5mm Pitch, https://www.ti.com/lit/ds/symlink/dac80508.pdf +BGA 16 0.5 +0 +32 +16 +Package_BGA +Texas_DSBGA-28_1.9x3.0mm_Layout4x7_P0.4mm +Texas Instruments, DSBGA, 3.0x1.9x0.625mm, 28 ball 7x4 area grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/bq51050b.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +BGA 28 0.4 +0 +28 +28 +Package_BGA +Texas_DSBGA-49_3.33x3.488mm_Layout7x7_P0.4mm +Texas Instruments, DSBGA, 3.33x3.488x0.625mm, 49 ball 7x7 area grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/msp430f2234.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +texas dsbga 49 +0 +49 +49 +Package_BGA +Texas_DSBGA-64_3.415x3.535mm_Layout8x8_P0.4mm +Texas Instruments, DSBGA, 3.415x3.535x0.625mm, 64 ball 8x8 area grid, NSMD pad definition (http://www.ti.com/lit/ds/slas718g/slas718g.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) +texas dsbga 64 +0 +64 +64 +Package_BGA +Texas_MicroStar_Junior_BGA-12_2.0x2.5mm_Layout4x3_P0.5mm +Texas Instruments, BGA Microstar Junior, 2x2.5mm, 12 bump 4x3 grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txb0104.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf) +Texas_Junior_BGA-12 +0 +12 +12 +Package_BGA +Texas_MicroStar_Junior_BGA-80_5.0x5.0mm_Layout9x9_P0.5mm +Texas Instruments, BGA Microstar Junior, 5x5mm, 80 ball 9x9 grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/tlv320aic23b.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf) +Texas_Junior_BGA-80 +0 +80 +80 +Package_BGA +Texas_MicroStar_Junior_BGA-113_7.0x7.0mm_Layout12x12_P0.5mm +Texas Instruments, BGA Microstar Junior, 7x7mm, 113 ball 12x12 grid, NSMD pad definition (http://www.ti.com/lit/ml/mpbg674/mpbg674.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf) +Texas_Junior_BGA-113 +0 +113 +113 +Package_BGA +UCBGA-36_2.5x2.5mm_Layout6x6_P0.4mm +UCBGA-36, 6x6 raster, 2.5x2.5mm package, pitch 0.4mm; https://www.latticesemi.com/view_document?document_id=213 +BGA 36 0.4 +0 +36 +36 +Package_BGA +UCBGA-49_3x3mm_Layout7x7_P0.4mm +UCBGA-49, 7x7 raster, 3x3mm package, pitch 0.4mm; https://www.latticesemi.com/view_document?document_id=213 +BGA 49 0.4 +0 +49 +49 +Package_BGA +UCBGA-81_4x4mm_Layout9x9_P0.4mm +UCBGA-81, 9x9 raster, 4x4mm package, pitch 0.4mm; https://www.latticesemi.com/view_document?document_id=213 +BGA 81 0.4 +0 +81 +81 +Package_BGA +UFBGA-15_3.0x3.0mm_Layout4x4_P0.65mm +UFBGA-15, 4x4, 3x3mm package, pitch 0.65mm +UFBGA-15 +0 +15 +15 +Package_BGA +UFBGA-32_4.0x4.0mm_Layout6x6_P0.5mm +UFBGA-32, 6x6, 4x4mm package, pitch 0.5mm +UFBGA-32 +0 +32 +32 +Package_BGA +UFBGA-64_5x5mm_Layout8x8_P0.5mm +UFBGA-64, 8x8 raster, 5x5mm package, pitch 0.5mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f051t8.pdf +BGA 64 0.5 +0 +64 +64 +Package_BGA +UFBGA-100_7x7mm_Layout12x12_P0.5mm +UFBGA-100, 12x12 raster, 7x7mm package, pitch 0.5mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f103tb.pdf +BGA 100 0.5 +0 +100 +100 +Package_BGA +UFBGA-132_7x7mm_Layout12x12_P0.5mm +UFBGA-132, 12x12 raster, 7x7mm package, pitch 0.5mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32l152zc.pdf +BGA 132 0.5 +0 +132 +132 +Package_BGA +UFBGA-132_7x7mm_P0.5mm +UFBGA 132 Pins, 0.5mm Pitch, 0.3mm Ball, http://www.st.com/resource/en/datasheet/stm32l486qg.pdf +ufbga bga small-pitch +0 +132 +132 +Package_BGA +UFBGA-144_7x7mm_Layout12x12_P0.5mm +UFBGA-144, 12x12 raster, 7x7mm package, pitch 0.5mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f446ze.pdf +BGA 144 0.5 +0 +144 +144 +Package_BGA +UFBGA-144_10x10mm_Layout12x12_P0.8mm +UFBGA-144, 12x12 raster, 10x10mm package, pitch 0.8mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f446ze.pdf +BGA 144 0.8 +0 +144 +144 +Package_BGA +UFBGA-169_7x7mm_Layout13x13_P0.5mm +UFBGA-169, 13x13 raster, 7x7mm package, pitch 0.5mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32f429ng.pdf +BGA 169 0.5 +0 +169 +169 +Package_BGA +UFBGA-201_10x10mm_Layout15x15_P0.65mm +UFBGA-201, 15x15 raster, 10x10mm package, pitch 0.65mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32f207vg.pdf +BGA 201 0.65 +0 +201 +201 +Package_BGA +VFBGA-49_5.0x5.0mm_Layout7x7_P0.65mm +VFBGA-49, 7x7, 5x5mm package, pitch 0.65mm +VFBGA-49 +0 +49 +49 +Package_BGA +VFBGA-86_6x6mm_Layout10x10_P0.55mm_Ball0.25mm_Pad0.2mm +VFBGA-86, 6.0x6.0mm, 86 Ball, 10x10 Layout, 0.55mm Pitch, https://www.dialog-semiconductor.com/sites/default/files/da1469x_datasheet_3v1.pdf#page=740 +BGA 86 0.55 +0 +86 +86 +Package_BGA +VFBGA-100_7.0x7.0mm_Layout10x10_P0.65mm +VFBGA-100, 10x10, 7x7mm package, pitch 0.65mm +VFBGA-100 +0 +100 +100 +Package_BGA +WLP-4_0.73x0.73mm_Layout2x2_P0.35mm_Ball0.22mm_Pad0.2mm_NSMD +WLP-4, 2x2 raster, 0.73x0.73mm package, pitch 0.35mm; https://datasheets.maximintegrated.com/en/ds/MAX40200.pdf +BGA 4 0.35 +0 +4 +4 +Package_BGA +WLP-4_0.83x0.83mm_P0.4mm +WLP-4_0.83x0.83mm_P0.4mm https://pdfserv.maximintegrated.com/package_dwgs/21-100107.PDF, https://www.maximintegrated.com/en/app-notes/index.mvp/id/1891 +WLP-4 +0 +4 +4 +Package_BGA +WLP-4_0.86x0.86mm_P0.4mm +WLP-4_0.86x0.86mm_P0.4mm https://pdfserv.maximintegrated.com/package_dwgs/21-0612.PDF, https://www.maximintegrated.com/en/app-notes/index.mvp/id/1891 +WLP-4 +0 +4 +4 +Package_BGA +WLP-9_1.448x1.468mm_Layout3x3_P0.4mm_Ball0.27mm_Pad0.25mm +WLP-9, 1.448x1.468mm, 9 Ball, 3x3 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100168.PDF +BGA 9 0.4 +0 +9 +9 +Package_BGA +XBGA-121_10x10mm_Layout11x11_P0.8mm +XBGA-121, 11x11 raster, 10x10mm package, pitch 0.6mm; http://ww1.microchip.com/downloads/en/DeviceDoc/39969b.pdf +BGA 121 0.8 +0 +121 +121 +Package_BGA +XFBGA-36_3.5x3.5mm_Layout6x6_P0.5mm +XFBGA-36, https://www.nxp.com/docs/en/package-information/SOT1555-1.pdf +XFBGA-36 +0 +36 +36 +Package_BGA +XFBGA-64_5.0x5.0mm_Layout8x8_P0.5mm +XFBGA-64, https://www.nxp.com/docs/en/package-information/SOT1555-1.pdf +XFBGA-64 +0 +64 +64 +Package_BGA +XFBGA-121_8x8mm_Layout11x11_P0.65mm +XFBGA-121, https://www.nxp.com/docs/en/package-information/SOT1533-1.pdf +XFBGA-121 +0 +121 +121 +Package_BGA +Xilinx_CLG225 +Zynq-7000 BGA, 15x15 grid, 13x13mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=77, NSMD pad definition Appendix A +BGA 225 0.8 CLG225 +0 +225 +225 +Package_BGA +Xilinx_CLG400 +Zynq-7000 BGA, 20x20 grid, 17x17mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=78, NSMD pad definition Appendix A +BGA 400 0.8 CLG400 CL400 +0 +400 +400 +Package_BGA +Xilinx_CLG484_CLG485 +Zynq-7000 BGA, 22x22 grid, 19x19mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=79, NSMD pad definition Appendix A +BGA 484 0.8 CLG484 CL484 CLG485 CL485 +0 +484 +484 +Package_BGA +Xilinx_CPG236 +Artix-7 BGA, 19x19 grid, 10x10mm package, 0.5mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=266, NSMD pad definition Appendix A +BGA 238 0.5 CP236 CPG236 +0 +238 +238 +Package_BGA +Xilinx_CPG238 +Artix-7 BGA, 19x19 grid, 10x10mm package, 0.5mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=267, NSMD pad definition Appendix A +BGA 238 0.5 CPG238 +0 +238 +238 +Package_BGA +Xilinx_CPGA196 +Spartan-7 BGA, 14x14 grid, 8x8mm package, 0.5mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=260, NSMD pad definition Appendix A +BGA 196 0.5 CPGA196 +0 +196 +196 +Package_BGA +Xilinx_CSG324 +Artix-7 BGA, 18x18 grid, 15x15mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=268, NSMD pad definition Appendix A +BGA 324 0.8 CS324 CSG324 +0 +324 +324 +Package_BGA +Xilinx_CSG325 +Artix-7 BGA, 18x18 grid, 15x15mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=268, NSMD pad definition Appendix A +BGA 324 0.8 CS325 CSG235 +0 +324 +324 +Package_BGA +Xilinx_CSGA225 +Spartan-7 BGA, 15x15 grid, 13x13mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=262, NSMD pad definition Appendix A +BGA 225 0.8 CSGA225 +0 +225 +225 +Package_BGA +Xilinx_CSGA324 +Spartan-7 BGA, 18x18 grid, 15x15mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=263, NSMD pad definition Appendix A +BGA 324 0.8 CSGA324 +0 +324 +324 +Package_BGA +Xilinx_FBG484 +Artix-7, Kintex-7 and Zynq-7000 BGA, 22x22 grid, 23x23mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=271, ttps://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=281, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=82, NSMD pad definition Appendix A +BGA 484 1 FB484 FBG484 FBV484 +0 +484 +484 +Package_BGA +Xilinx_FBG676 +Artix-7, Kintex-7 and Zynq-7000 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=273, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=284, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=84, NSMD pad definition Appendix A +BGA 676 1 FB676 FBG676 FBV676 +0 +676 +676 +Package_BGA +Xilinx_FBG900 +Kintex-7 BGA, 30x30 grid, 31x31mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=289, NSMD pad definition Appendix A +BGA 900 1 FB900 FBG900 FBV900 +0 +900 +900 +Package_BGA +Xilinx_FFG676 +Kintex-7 and Zynq-7000 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=292, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=88, NSMD pad definition Appendix A +BGA 676 1 FF676 FFG676 FFV676 +0 +676 +676 +Package_BGA +Xilinx_FFG900_FFG901 +Kintex-7 and Zynq-7000 BGA, 30x30 grid, 31x31mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=294, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=90, NSMD pad definition Appendix A +BGA 900 1 FF900 FFG900 FFV900 FF901 FFG901 FFV901 +0 +900 +900 +Package_BGA +Xilinx_FFG1156 +Artix-7, Kintex-7 and Zynq-7000 BGA, 34x34 grid, 35x35mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=277, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=296, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=91, NSMD pad definition Appendix A +BGA 1156 1 FF1156 FFG1156 FFV1156 +0 +1156 +1156 +Package_BGA +Xilinx_FFG1157_FFG1158 +Virtex-7 BGA, 34x34 grid, 35x35mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=299, NSMD pad definition Appendix A +BGA 1156 1 FF1157 FFG1157 FFV1157 FF1158 FFG1158 FFV1158 +0 +1156 +1156 +Package_BGA +Xilinx_FFG1761 +Virtex-7 BGA, 42x42 grid, 42.5x42.5mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=300, NSMD pad definition Appendix A +BGA 1760 1 FF1761 FFG1761 +0 +1760 +1760 +Package_BGA +Xilinx_FFG1926_FFG1927_FFG1928_FFG1930 +Virtex-7 BGA, 44x44 grid, 45x45mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=303, NSMD pad definition Appendix A +BGA 1924 1 FF1926 FFG1926 FF1927 FFG1927 FFV1927 FF1928 FFG1928 FF1930 FFG1930 +0 +1924 +1924 +Package_BGA +Xilinx_FFV1761 +Virtex-7 BGA, 42x42 grid, 42.5x42.5mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=301, NSMD pad definition Appendix A +BGA 1760 1 FFV1761 +0 +1760 +1760 +Package_BGA +Xilinx_FGG484 +Artix-7 BGA, 22x22 grid, 23x23mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=275, NSMD pad definition Appendix A +BGA 484 1 FG484 FGG484 +0 +484 +484 +Package_BGA +Xilinx_FGG676 +Artix-7 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=276, NSMD pad definition Appendix A +BGA 676 1 FG676 FGG676 +0 +676 +676 +Package_BGA +Xilinx_FGGA484 +Spartan-7 BGA, 22x22 grid, 23x23mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=264, NSMD pad definition Appendix A +BGA 484 1 FGGA484 +0 +484 +484 +Package_BGA +Xilinx_FGGA676 +Spartan-7 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=265, NSMD pad definition Appendix A +BGA 676 1 FGGA676 +0 +676 +676 +Package_BGA +Xilinx_FHG1761 +Virtex-7 BGA, 42x42 grid, 45x45mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=302, NSMD pad definition Appendix A +BGA 1760 1 FH1761 FHG1761 +0 +1760 +1760 +Package_BGA +Xilinx_FLG1925_FLG1926_FLG1928_FLG1930 +Virtex-7 BGA, 44x44 grid, 45x45mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=304, NSMD pad definition Appendix A +BGA 1924 1 FL1925 FLG1925 FL1926 FLG1926 FL1928 FLG1928 FL1930 FLG1930 +0 +1924 +1924 +Package_BGA +Xilinx_FTG256 +Artix-7 BGA, 16x16 grid, 17x17mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=269, NSMD pad definition Appendix A +BGA 256 1 FT256 FTG256 +0 +256 +256 +Package_BGA +Xilinx_FTGB196 +Spartan-7 BGA, 14x14 grid, 15x15mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=261, NSMD pad definition Appendix A +BGA 196 1 FTGB196 +0 +196 +196 +Package_BGA +Xilinx_RB484 +Artix-7 and Zynq-7000 BGA, 22x22 grid, 23x23mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=278, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=92, NSMD pad definition Appendix A +BGA 484 1 RB484 +0 +484 +484 +Package_BGA +Xilinx_RB676 +Artix-7 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=280, NSMD pad definition Appendix A +BGA 676 1 RB676 +0 +676 +676 +Package_BGA +Xilinx_RF676 +Kintex-7 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=297, NSMD pad definition Appendix A +BGA 676 1 RF676 +0 +676 +676 +Package_BGA +Xilinx_RF900 +Kintex-7 and Zynq-7000 BGA, 30x30 grid, 31x31mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=298, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=94, NSMD pad definition Appendix A +BGA 900 1 RF900 +0 +900 +900 +Package_BGA +Xilinx_RF1156 +Zynq-7000 BGA, 34x34 grid, 35x35mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=95, NSMD pad definition Appendix A +BGA 1156 1 RF1156 +0 +1156 +1156 +Package_BGA +Xilinx_RF1157_RF1158 +Virtex-7 BGA, 34x34 grid, 35x35mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=305, NSMD pad definition Appendix A +BGA 1156 1 RF1157 RF1158 +0 +1156 +1156 +Package_BGA +Xilinx_RF1761 +Virtex-7 BGA, 42x42 grid, 42.5x42.5mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=306, NSMD pad definition Appendix A +BGA 1760 1 RF1761 +0 +1760 +1760 +Package_BGA +Xilinx_RF1930 +Virtex-7 BGA, 44x44 grid, 45x45mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=307, NSMD pad definition Appendix A +BGA 1924 1 RF1930 +0 +1924 +1924 +Package_BGA +Xilinx_RFG676 +Zynq-7000 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=93, NSMD pad definition Appendix A +BGA 676 1 RF676 RFG676 +0 +676 +676 +Package_BGA +Xilinx_RS484 +Artix-7 BGA, 22x22 grid, 19x19mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=279, NSMD pad definition Appendix A +BGA 484 0.8 RS484 +0 +484 +484 +Package_BGA +Xilinx_SBG484 +Artix-7 BGA, 22x22 grid, 19x19mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=270, NSMD pad definition Appendix A +BGA 484 0.8 SB484 SBG484 SBV484 +0 +484 +484 +Package_BGA +Xilinx_SBG485 +Zynq-7000 BGA, 22x22 grid, 19x19mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=80, NSMD pad definition Appendix A +BGA 484 0.8 SBG485 SBV485 +0 +484 +484 +Package_CSP +Analog_LFCSP-8-1EP_3x3mm_P0.5mm_EP1.53x1.85mm +LFCSP, exposed pad, Analog Devices (http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5542.pdf) +LFCSP 8 0.5 +0 +12 +5 +Package_CSP +Analog_LFCSP-UQ-10_1.3x1.6mm_P0.4mm +Analog LFCSP-UQ, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_10_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Analog LFCSP-UQ NoLead +0 +10 +10 +Package_CSP +LFCSP-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +LFCSP, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_6_3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +11 +7 +Package_CSP +LFCSP-8-1EP_3x2mm_P0.5mm_EP1.6x1.65mm +LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/57080735642908cp_8_4.pdf +LFCSP 8pin thermal pad 3x2mm Pitch 0.5mm +0 +9 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.6x2.34mm +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +13 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.6x2.34mm_ThermalVias +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +20 +9 +Package_CSP +LFCSP-8-1EP_3x3mm_P0.5mm_EP1.45x1.74mm +LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-8/CP_8_13.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +13 +9 +Package_CSP +LFCSP-8_2x2mm_P0.5mm +LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_8_6.pdf +LFCSP 8pin 2x2mm Pitch 0.5mm +0 +8 +8 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +26 +17 +Package_CSP +LFCSP-16-1EP_3x3mm_P0.5mm_EP1.854x1.854mm +16-Lead Lead Frame Chip Scale Package, 3x3mm, 0.5mm pitch, 1.854mm thermal pad (CP-16-22, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_22.pdf) +LFCSP 16 0.5 +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +LFCSP, 16 pin, 4x4mm, 2.1mm sq pad (http://www.analog.com/media/en/technical-documentation/data-sheets/ADG633.pdf) +LFCSP 16 0.65 +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +21 +17 +Package_CSP +LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm_ThermalVias +LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +31 +17 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +20-Lead Frame Chip Scale Package - 4x4x0.9 mm Body [LFCSP], (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_20_6.pdf) +LFCSP 0.5 +0 +25 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py +LFCSP DFN_QFN +0 +25 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py +LFCSP DFN_QFN +0 +35 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +25 +21 +Package_CSP +LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +35 +21 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +29 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm_ThermalVias +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +39 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +29 +25 +Package_CSP +LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +39 +25 +Package_CSP +LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm +LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +33 +29 +Package_CSP +LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm_ThermalVias +LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +43 +29 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +42 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +59 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/3416438741201015623cp_32_4.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +37 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/3416438741201015623cp_32_4.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +47 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm +LFCSP, 32 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7280.PDF#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +37 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias +LFCSP, 32 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7280.PDF#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +47 +33 +Package_CSP +LFCSP-32-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +32-Lead Frame Chip Scale Package LFCSP (5mm x 5mm); (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-32/CP_32_27.pdf +LFCSP 0.5 +0 +37 +33 +Package_CSP +LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm +LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +58 +49 +Package_CSP +LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias +LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +75 +49 +Package_CSP +LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm +LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +69 +65 +Package_CSP +LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm_ThermalVias +LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +86 +65 +Package_CSP +LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm +LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +82 +73 +Package_CSP +LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm_ThermalVias +LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP NoLead +0 +99 +73 +Package_CSP +LFCSP-72-1EP_10x10mm_P0.5mm_EP6.15x6.15mm +72-Lead Frame Chip Scale Package - 10x10x0.9 mm Body [LFCSP]; (see https://www.intersil.com/content/dam/Intersil/documents/l72_/l72.10x10c.pdf) +LFCSP 0.5 +0 +77 +73 +Package_CSP +LFCSP-VQ-24-1EP_4x4mm_P0.5mm_EP2.642x2.642mm +LFCSP VQ, 24 pin, exposed pad, 4x4mm body, pitch 0.5mm (http://www.analog.com/media/en/package-pcb-resources/package/56702234806764cp_24_3.pdf, http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5801.pdf) +LFCSP 0.5 +0 +29 +25 +Package_CSP +LFCSP-VQ-48-1EP_7x7mm_P0.5mm +LFCSP VQ, 48 pin, exposed pad, 7x7mm body (http://www.analog.com/media/en/technical-documentation/data-sheets/AD7951.pdf, http://www.analog.com/en/design-center/packaging-quality-symbols-footprints/symbols-and-footprints/AD7951.html) +LFCSP 48 +0 +49 +49 +Package_CSP +LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm +LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +15 +9 +Package_CSP +LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm_ThermalVias +LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +22 +9 +Package_CSP +LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm +LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +17 +11 +Package_CSP +LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm_ThermalVias +LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LFCSP-WD NoLead +0 +24 +11 +Package_CSP +Maxim_WLCSP-35_3.0x2.17mm_Layout7x5_P0.4mm_Ball0.27mm_Pad0.25mm +WLCSP-35, 2.168x2.998mm, 35 Ball, 7x5 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100489.PDF +CSP 35 0.4 +0 +35 +35 +Package_CSP +Nexperia_WLCSP-15_6-3-6_2.37x1.17mm_Layout6x3_P0.4mm +Nexperia wafer level chip-size package; 15 bumps (6-3-6), 2.37x1.17mm, 15 Ball, 6x3 Layout, 0.4mm Pitch, https://assets.nexperia.com/documents/data-sheet/PCMFXUSB3S_SER.pdf +CSP 15 0.4 +0 +15 +15 +Package_CSP +ST_WLCSP-18_1.86x2.14mm_P0.4mm_Stagger +ST WLCSP-18, ST Die ID 466, 1.86x2.14mm, 18 Ball, X-staggered 7x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g031y8.pdf +CSP 18 0.4 +0 +18 +18 +Package_CSP +ST_WLCSP-20_1.94x2.40mm_Layout4x5_P0.4mm +ST WLCSP-20, ST die ID 456, 1.94x2.4mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g051f8.pdf#page=102 +CSP 20 0.4 +0 +20 +20 +Package_CSP +ST_WLCSP-25_2.30x2.48mm_Layout5x5_P0.4mm +ST WLCSP-25, ST die ID 460, 2.3x2.48mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g071eb.pdf +CSP 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die425 +WLCSP-25, 5x5 raster, 2.097x2.493mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l031f6.pdf +BGA 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die444 +WLCSP-25, 5x5 raster, 2.423x2.325mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f031k6.pdf +BGA 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-25_Die457 +WLCSP-25, 5x5 raster, 2.133x2.070mm package, pitch 0.4mm; see section 7.3 of http://www.st.com/resource/en/datasheet/stm32l011k3.pdf +BGA 25 0.4 +0 +25 +25 +Package_CSP +ST_WLCSP-36_2.58x3.07mm_Layout6x6_P0.4mm +ST WLCSP-36, ST die ID 464, 2.58x3.07mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l412t8.pdf +CSP 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die417 +WLCSP-36, 6x6 raster, 2.61x2.88mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32l052t8.pdf +BGA 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die440 +WLCSP-36, 6x6 raster, 2.605x2.703mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f051t8.pdf +BGA 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die445 +WLCSP-36, 6x6 raster, 2.605x2.703mm package, pitch 0.4mm; see section 7.3 of http://www.st.com/resource/en/datasheet/stm32f042k6.pdf +BGA 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-36_Die458 +WLCSP-36, 6x6 raster, 2.553x2.579mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f410t8.pdf +BGA 36 0.4 +0 +36 +36 +Package_CSP +ST_WLCSP-49_3.15x3.13mm_Layout7x7_P0.4mm +ST WLCSP-49, ST die ID 468, 3.15x3.13mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g431c6.pdf +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_3.30x3.38mm_Layout7x7_P0.4mm_Offcenter +ST WLCSP-49, off-center ball grid, ST die ID 494, 3.3x3.38mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb15cc.pdf#page=119 +CSP 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die423 +WLCSP-49, 7x7 raster, 2.965x2.965mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f401vc.pdf +BGA 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die431 +WLCSP-49, 7x7 raster, 2.999x3.185mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f411vc.pdf +BGA 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die433 +WLCSP-49, 7x7 raster, 3.029x3.029mm package, pitch 0.4mm; see section 7.1.1 of http://www.st.com/resource/en/datasheet/stm32f401ce.pdf +BGA 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die435 +WLCSP-49, 7x7 raster, 3.141x3.127mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/DM00257211.pdf +BGA 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die438 +WLCSP-49, 7x7 raster, 3.89x3.74mm package, pitch 0.5mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f303r8.pdf +BGA 49 0.5 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die439 +WLCSP-49, 7x7 raster, 3.417x3.151mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f301r8.pdf +BGA 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die447 +WLCSP-49, 7x7 raster, 3.294x3.258mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l072kz.pdf +BGA 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-49_Die448 +WLCSP-49, 7x7 raster, 3.277x3.109mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f071v8.pdf +BGA 49 0.4 +0 +49 +49 +Package_CSP +ST_WLCSP-52_3.09x3.15mm_P0.4mm_Stagger +ST WLCSP-52, ST die ID 467, 3.09x3.15mm, 52 Ball, X-staggered 13x8 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g0b1ne.pdf#page=136 +CSP 52 0.4 +0 +52 +52 +Package_CSP +ST_WLCSP-63_Die427 +WLCSP-63, 7x9 raster, 3.228x4.164mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l151cc.pdf +BGA 63 0.4 +0 +63 +63 +Package_CSP +ST_WLCSP-64_3.56x3.52mm_Layout8x8_P0.4mm +ST WLCSP-64, ST die ID 479, 3.56x3.52mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g491re.pdf +CSP 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die414 +WLCSP-64, 8x8 raster, 4.466x4.395mm package, pitch 0.5mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f103ze.pdf +BGA 64 0.5 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die427 +WLCSP-64, 8x8 raster, 4.539x4.911mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152zc.pdf +BGA 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die435 +WLCSP-64, 8x8 raster, 3.141x3.127mm package, pitch 0.35mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00257211.pdf +BGA 64 0.35 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die436 +WLCSP-64, 8x8 raster, 4.539x4.911mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152zd.pdf +BGA 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die441 +WLCSP-64, 8x8 raster, 3.623x3.651mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/DM00213872.pdf +BGA 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die442 +WLCSP-64, 8x8 raster, 3.347x3.585mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f091vb.pdf +BGA 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-64_Die462 +WLCSP-64, 8x8 raster, 3.357x3.657mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00340475.pdf +BGA 64 0.4 +0 +64 +64 +Package_CSP +ST_WLCSP-66_Die411 +WLCSP-66, 9x9 raster, 3.639x3.971mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f207vg.pdf +BGA 66 0.4 +0 +66 +66 +Package_CSP +ST_WLCSP-66_Die432 +WLCSP-66, 8x9 raster, 3.767x4.229mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f378vc.pdf +BGA 66 0.4 +0 +66 +66 +Package_CSP +ST_WLCSP-72_Die415 +WLCSP-72, 9x9 raster, 4.4084x3.7594mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l476me.pdf +BGA 72 0.4 +0 +72 +72 +Package_CSP +ST_WLCSP-81_4.02x4.27mm_Layout9x9_P0.4mm +ST WLCSP-81, ST die ID 469, 4.02x4.27mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g483me.pdf +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_4.36x4.07mm_Layout9x9_P0.4mm +ST WLCSP-81, ST die ID 472, 4.36x4.07mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l562ce.pdf +CSP 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die415 +WLCSP-81, 9x9 raster, 4.4084x3.7594mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32l476me.pdf +BGA 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die421 +WLCSP-81, 9x9 raster, 3.693x3.815mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32f446ze.pdf +BGA 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-81_Die463 +WLCSP-81, 9x9 raster, 4.039x3.951mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/DM00282249.pdf +BGA 81 0.4 +0 +81 +81 +Package_CSP +ST_WLCSP-90_4.20x3.95mm_P0.4mm_Stagger +ST WLCSP-90, ST die ID 482, 4.2x3.95mm, 90 Ball, X-staggered 18x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u575og.pdf#page=306 +CSP 90 0.4 +0 +90 +90 +Package_CSP +ST_WLCSP-90_Die413 +WLCSP-90, 10x9 raster, 4.223x3.969mm package, pitch 0.4mm; see section 6.1 of http://www.st.com/resource/en/datasheet/stm32f405og.pdf +BGA 90 0.4 +0 +90 +90 +Package_CSP +ST_WLCSP-100_4.40x4.38mm_Layout10x10_P0.4mm_Offcenter +ST WLCSP-100, off-center ball grid, ST die ID 495, 4.4x4.38mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb55vc.pdf +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_4.437x4.456mm_Layout10x10_P0.4mm +ST WLCSP-100, ST die ID 471, 4.437x4.456mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l4p5ve.pdf +CSP 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die422 +WLCSP-100, 10x10 raster, 4.201x4.663mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f302vc.pdf +BGA 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die446 +WLCSP-100, 10x10 raster, 4.775x5.041mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f303zd.pdf +BGA 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die452 +WLCSP-100, 10x10 raster, 4.201x4.663mm package, pitch 0.4mm; see section 7.7 of http://www.st.com/resource/en/datasheet/DM00330506.pdf +BGA 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-100_Die461 +WLCSP-100, 10x10 raster, 4.618x4.142mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00284211.pdf +BGA 100 0.4 +0 +100 +100 +Package_CSP +ST_WLCSP-104_Die437 +WLCSP-104, 9x12 raster, 4.095x5.094mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152ze.pdf +BGA 104 0.4 +0 +104 +104 +Package_CSP +ST_WLCSP-115_3.73x4.15mm_P0.35mm_Stagger +ST WLCSP-115, ST die ID 483, 3.73x4.15mm, 115 Ball, Y-staggered 11x21 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h725vg.pdf +CSP 115 0.35 +0 +115 +115 +Package_CSP +ST_WLCSP-115_4.63x4.15mm_P0.4mm_Stagger +ST WLCSP-115, ST die ID 461, 4.63x4.15mm, 115 Ball, X-staggered 21x11 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l496wg.pdf +CSP 115 0.4 +0 +115 +115 +Package_CSP +ST_WLCSP-132_4.57x4.37mm_Layout12x11_P0.35mm +ST WLCSP-132, ST die ID 480, 4.57x4.37mm, 132 Ball, 12x11 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h7a3ai.pdf +CSP 132 0.35 +0 +132 +132 +Package_CSP +ST_WLCSP-143_Die419 +WLCSP-143, 11x13 raster, 4.521x5.547mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f429ng.pdf +BGA 143 0.4 +0 +143 +143 +Package_CSP +ST_WLCSP-143_Die449 +WLCSP-143, 11x13 raster, 4.539x5.849mm package, pitch 0.4mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f746zg.pdf +BGA 143 0.4 +0 +143 +143 +Package_CSP +ST_WLCSP-144_Die470 +WLCSP-144, 12x12 raster, 5.24x5.24mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/DM00366448.pdf +BGA 144 0.4 +0 +144 +144 +Package_CSP +ST_WLCSP-156_4.96x4.64mm_Layout13x12_P0.35mm +ST WLCSP-156, ST die ID 450, 4.96x4.64mm, 156 Ball, 13x12 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h747xi.pdf +CSP 156 0.35 +0 +156 +156 +Package_CSP +ST_WLCSP-168_Die434 +WLCSP-168, 12x14 raster, 4.891x5.692mm package, pitch 0.4mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f469ni.pdf +BGA 168 0.4 +0 +168 +168 +Package_CSP +ST_WLCSP-180_Die451 +WLCSP-180, 13x14 raster, 5.537x6.095mm package, pitch 0.4mm; see section 6.6 of http://www.st.com/resource/en/datasheet/DM00273119.pdf +BGA 180 0.4 +0 +180 +180 +Package_CSP +WLCSP-4-X1-WLB0909-4_0.89x0.89mm_P0.5mm +X1-WLB0909, 0.89x0.89mm, 4 Ball, 2x2 Layout, 0.5mm Pitch, https://www.diodes.com/assets/Datasheets/AP22913.pdf +CSP 4 0.5 +0 +4 +4 +Package_CSP +WLCSP-4_0.64x0.64mm_P0.35mm +WLCSP-4, 0.64x0.64mm, 4 Ball, 2x2 Layout, 0.35mm Pitch, https://www.onsemi.com/pdf/datasheet/ncp163-d.pdf#page=23 +CSP 4 0.35 +0 +4 +4 +Package_CSP +WLCSP-6_1.4x1.0mm_P0.4mm +6pin Pitch 0.4mm +6pin Pitch 0.4mm WLCSP +0 +6 +6 +Package_CSP +WLCSP-8_1.58x1.63x0.35mm_Layout3x5_P0.35x0.4mm_Ball0.25mm_Pad0.25mm_NSMD +WLCSP/XFBGA 8-pin package, staggered pins, http://www.adestotech.com/wp-content/uploads/DS-AT25DF041B_040.pdf +WLCSP WLCSP-8 XFBGA XFBGA-8 CSP BGA Chip-Scale Glass-Top +0 +8 +8 +Package_CSP +WLCSP-8_1.551x2.284mm_P0.5mm +WLCSP-8, 2.284x1.551mm, 8 Ball, 2x4 Layout, 0.5mm Pitch, https://www.adestotech.com/wp-content/uploads/AT25SL321_112.pdf#page=75 +CSP 8 0.5 +0 +8 +8 +Package_CSP +WLCSP-12_1.56x1.56mm_P0.4mm +WLCSP 12 1.56x1.56 https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMM150-DS001-01.pdf +BMM150 WLCSP +0 +12 +12 +Package_CSP +WLCSP-12_1.403x1.555mm_P0.4mm_Stagger +WLCSP-12, 6x4 raster staggered array, 1.403x1.555mm package, pitch 0.4mm; http://ww1.microchip.com/downloads/en/devicedoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=208 +CSP 12 0.2x0.346333 +0 +12 +12 +Package_CSP +WLCSP-16_1.409x1.409mm_P0.35mm +WLCSP-16, 1.409x1.409mm, 16 Ball, 4x4 Layout, 0.35mm Pitch, http://www.latticesemi.com/view_document?document_id=213 +CSP 16 0.35 +0 +16 +16 +Package_CSP +WLCSP-16_2.225x2.17mm_P0.5mm +WLCSP-16 2.225x2.17mm, 2.17x2.225mm, 16 Ball, 4x4 Layout, 0.5mm Pitch, https://ww1.microchip.com/downloads/en/DeviceDoc/16B_WLCSP_CS_C04-06036c.pdf +CSP 16 0.5 +0 +16 +16 +Package_CSP +WLCSP-16_4x4_B2.17x2.32mm_P0.5mm +WLCSP-16, http://www.nxp.com/documents/data_sheet/LPC1102_1104.pdf, http://www.nxp.com/assets/documents/data/en/application-notes/AN3846.pdf +WLCSP-16 NXP +0 +16 +16 +Package_CSP +WLCSP-20_1.934x2.434mm_Layout4x5_P0.4mm +WLCSP-20, 4x5 raster, 1.934x2.434mm package, pitch 0.4mm; see section 36.2.3 of http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf +BGA 20 0.4 +0 +20 +20 +Package_CSP +WLCSP-20_1.994x1.94mm_Layout4x5_P0.4mm +WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00539D.pdf +WLCSP-20 +0 +20 +20 +Package_CSP +WLCSP-20_1.994x1.609mm_Layout5x4_P0.4mm +WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00676D.pdf +WLCSP-20 +0 +20 +20 +Package_CSP +WLCSP-36_2.82x2.67mm_Layout6x6_P0.4mm +WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00949D.pdf +WLCSP-36 +0 +36 +36 +Package_CSP +WLCSP-36_2.374x2.459mm_Layout6x6_P0.35mm +WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00604D.pdf +WLCSP-36 +0 +36 +36 +Package_CSP +WLCSP-56_3.170x3.444mm_Layout7x8_P0.4mm +WLCSP-56, 7x8 raster, 3.170x3.444mm package, pitch 0.4mm; see section 48.2.4 of http://ww1.microchip.com/downloads/en/DeviceDoc/DS60001479B.pdf +BGA 56 0.4 +0 +56 +56 +Package_CSP +WLCSP-81_4.41x3.76mm_P0.4mm +WLCSP-81, 9x9, 0.4mm Pitch, http://www.st.com/content/ccc/resource/technical/document/technical_note/92/30/3c/a1/4c/bb/43/6f/DM00103228.pdf/files/DM00103228.pdf/jcr:content/translations/en.DM00103228.pdf +WLCSP ST +0 +81 +81 +Package_CSP +pSemi_CSP-16_1.64x2.04mm_P0.4mm +pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf) +psemi csp 16 +0 +16 +16 +Package_CSP +pSemi_CSP-16_1.64x2.04mm_P0.4mm_Pad0.18mm +pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf) +psemi csp 16 +0 +16 +16 +Package_DFN_QFN +AMS_QFN-4-1EP_2x2mm_P0.95mm_EP0.7x1.6mm +UFD Package, 4-Lead Plastic QFN (2mm x 2mm), http://ams.com/eng/content/download/950231/2267959/483138 +QFN 0.95 +0 +6 +5 +Package_DFN_QFN +AO_DFN-8-1EP_5.55x5.2mm_P1.27mm_EP4.12x4.6mm +DD Package; 8-Lead Plastic DFN (5.55mm x 5.2mm), Pin 5-8 connected to EP (http://www.aosmd.com/res/packaging_information/DFN5x6_8L_EP1_P.pdf) +dfn +0 +25 +5 +Package_DFN_QFN +Cypress_QFN-56-1EP_8x8mm_P0.5mm_EP6.22x6.22mm_ThermalVias +56-Lead Plastic Quad Flat, No Lead Package (ML) - 8x8x0.9 mm Body [QFN] (see datasheet at http://www.cypress.com/file/138911/download and app note at http://www.cypress.com/file/140006/download) +QFN 0.5 +0 +87 +57 +Package_DFN_QFN +DFN-6-1EP_1.2x1.2mm_P0.4mm_EP0.3x0.94mm_PullBack +DFN, 6 Pin (http://www.onsemi.com/pub/Collateral/NCP133-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x1.6mm_P0.5mm_EP1.15x1.3mm +DFN, 6 Pin (https://www.onsemi.com/pdf/datasheet/ncp349-d.pdf#page=12), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x1.8mm_P0.5mm_EP1.2x1.6mm +DFN, 6 Pin (https://www.diodes.com/assets/Package-Files/U-DFN2018-6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.5mm_EP0.6x1.37mm +DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081703_C_DC6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.5mm_EP0.61x1.42mm +DC6 Package; 6-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_6_05-08-1703.pdf) +DFN 0.5 +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +6-Lead Plastic Dual Flat, No Lead Package (MA) - 2x2x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.65 +0 +9 +7 +Package_DFN_QFN +DFN-6-1EP_3x2mm_P0.5mm_EP1.65x1.35mm +DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/(DCB6)%20DFN%2005-08-1715%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +7 +Package_DFN_QFN +DFN-6-1EP_3x3mm_P0.95mm_EP1.7x2.6mm +DFN6 3*3 MM, 0.95 PITCH; CASE 506AH-01 (see ON Semiconductor 506AH.PDF) +DFN 0.95 +0 +13 +7 +Package_DFN_QFN +DFN-6-1EP_3x3mm_P1mm_EP1.5x2.4mm +DFN, 6 Pin (https://www.silabs.com/documents/public/data-sheets/Si7020-A20.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +7 +Package_DFN_QFN +DFN-6_1.3x1.2mm_P0.4mm +6-Lead Plastic DFN (1.3mm x 1.2mm) +DFN 0.4 +0 +6 +6 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm +DFN, 8 Pin (https://www.qorvo.com/products/d/da001879), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.7x1.3mm +DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/NUF4401MN-D.PDF#page=6), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.6mm +DFN, 8 Pin (https://www.qorvo.com/products/d/da007268), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.3mm +DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/NB3N551-D.PDF#page=7), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.5mm +DFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8127-AVR-8-bit-Microcontroller-ATtiny4-ATtiny5-ATtiny9-ATtiny10_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm +DFN, 8 Pin (https://www.st.com/resource/en/datasheet/lm2903.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm +DFN8 2x2, 0.5P; CASE 506CN (see ON Semiconductor 506CN.PDF) +DFN 0.5 +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_2x2mm_P0.45mm_EP0.64x1.38mm +DC8 Package 8-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_8_05-08-1719.pdf) +DFN 0.45 +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_2x3mm_P0.5mm_EP0.56x2.15mm +DFN, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/2451fg.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +11 +9 +Package_DFN_QFN +DFN-8-1EP_2x3mm_P0.5mm_EP0.61x2.2mm +DDB Package; 8-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_8_05-08-1702.pdf) +DFN 0.5 +0 +12 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.5mm +8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body [UDFN] (see Atmel-8815-SEEPROM-AT24CS01-02-Datasheet.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.7x1.4mm +DFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_DFN_2x3x0_9_MC_C04-123C.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.36x1.46mm +8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body (http://ww1.microchip.com/downloads/en/DeviceDoc/20005010F.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.5mm_EP1.75x1.45mm +8-Lead Plastic Dual Flat, No Lead Package (MC) - 2x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x2mm_P0.45mm_EP1.66x1.36mm +DCB Package 8-Lead Plastic DFN (2mm x 3mm) (see Linear Technology DFN_8_05-08-1718.pdf) +DFN 0.45 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.65x2.38mm +DFN, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4320fb.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +10 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias +DFN, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4320fb.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +20 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.5mm_EP1.66x2.38mm +DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf) +DFN 0.5 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.65mm_EP1.7x2.05mm +DFN, 8 Pin (http://www.ixysic.com/home/pdfs.nsf/www/IX4426-27-28.pdf/$file/IX4426-27-28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_3x3mm_P0.65mm_EP1.55x2.4mm +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.65 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_4x4mm_P0.8mm_EP2.3x3.24mm +DFN, 8 Pin (https://www.st.com/resource/en/datasheet/ld1086.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_4x4mm_P0.8mm_EP2.5x3.6mm +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.8 +0 +15 +9 +Package_DFN_QFN +DFN-8-1EP_4x4mm_P0.8mm_EP2.39x2.21mm +8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF) +DFN 0.8 +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_6x5mm_P1.27mm_EP2x2mm +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download) +dfn +0 +13 +9 +Package_DFN_QFN +DFN-8-1EP_6x5mm_P1.27mm_EP4x4mm +DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download) +dfn +0 +25 +9 +Package_DFN_QFN +DFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P; No exposed pad - Ref http://pdfserv.maximintegrated.com/land_patterns/90-0349.PDF +DFN 0.5 +0 +8 +8 +Package_DFN_QFN +DFN-10-1EP_2.6x2.6mm_P0.5mm_EP1.3x2.2mm +DFN, 10 Pin (https://www.nxp.com/docs/en/data-sheet/PCF85063A.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_2.6x2.6mm_P0.5mm_EP1.3x2.2mm_ThermalVias +DFN, 10 Pin (https://www.nxp.com/docs/en/data-sheet/PCF85063A.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +22 +11 +Package_DFN_QFN +DFN-10-1EP_2x3mm_P0.5mm_EP0.64x2.4mm +DDB Package; 10-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_10_05-08-1722.pdf) +DFN 0.5 +0 +13 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.7x2.5mm +DFN, 10 Pin (https://www.monolithicpower.com/pub/media/document/MPQ2483_r1.05.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.55x2.48mm +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm +DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias +DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +22 +11 +Package_DFN_QFN +DFN-10-1EP_3x3mm_P0.5mm_EP1.75x2.7mm +10-Lead Plastic Dual Flat No-Lead Package, 3x3mm Body (see Atmel Appnote 8826) +DFN 0.5 +0 +15 +11 +Package_DFN_QFN +DFN-10_2x2mm_P0.4mm +10-Lead Plastic DFN (2mm x 2mm) 0.40mm pitch +DFN 10 0.4mm +0 +10 +10 +Package_DFN_QFN +DFN-12-1EP_2x3mm_P0.45mm_EP0.64x2.4mm +DDB Package; 12-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_12_05-08-1723.pdf) +DFN 0.45 +0 +15 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.5mm_EP1.6x2.5mm +DFN, 12 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MIC2207-2MHz-3A-PWM-Buck-Regulator-DS20006470A.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +17 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.5mm_EP1.6x2.5mm_ThermalVias +DFN, 12 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MIC2207-2MHz-3A-PWM-Buck-Regulator-DS20006470A.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +24 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.5mm_EP2.05x2.86mm +10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +17 +13 +Package_DFN_QFN +DFN-12-1EP_3x3mm_P0.45mm_EP1.66x2.38mm +DD Package; 12-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_12_05-08-1725.pdf) +DFN 0.45 +0 +17 +13 +Package_DFN_QFN +DFN-12-1EP_3x4mm_P0.5mm_EP1.7x3.3mm +DE/UE Package; 12-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_12_05-08-1695.pdf) +DFN 0.5 +0 +21 +13 +Package_DFN_QFN +DFN-12-1EP_4x4mm_P0.5mm_EP2.66x3.38mm +DF Package; 12-Lead Plastic DFN (4mm x 4mm) (see Linear Technology 05081733_A_DF12.pdf) +DFN 0.5 +0 +21 +13 +Package_DFN_QFN +DFN-12-1EP_4x4mm_P0.65mm_EP2.64x3.54mm +DFN12, 4x4, 0.65P; CASE 506CE (see ON Semiconductor 506CE.PDF) +DFN 0.65 +0 +21 +13 +Package_DFN_QFN +DFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm +DD Package; 14-Lead Plastic DFN (3mm x 3mm) (http://pdfserv.maximintegrated.com/land_patterns/90-0063.PDF) +DFN 0.40 +0 +19 +15 +Package_DFN_QFN +DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm +14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf) +VDFN DFN 0.65mm +0 +23 +15 +Package_DFN_QFN +DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm_ThermalVias +14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf) +VDFN DFN 0.65mm +0 +33 +15 +Package_DFN_QFN +DFN-14-1EP_3x4mm_P0.5mm_EP1.7x3.3mm +DE Package; 14-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_14_05-08-1708.pdf) +DFN 0.5 +0 +23 +15 +Package_DFN_QFN +DFN-14-1EP_4x4mm_P0.5mm_EP2.86x3.6mm +DFN14, 4x4, 0.5P; CASE 506CM (see ON Semiconductor 506CM.PDF) +DFN 0.5 +0 +23 +15 +Package_DFN_QFN +DFN-14_1.35x3.5mm_P0.5mm +DFN, 14 Pin (https://m.littelfuse.com/~/media/electronics/datasheets/tvs_diode_arrays/littelfuse_tvs_diode_array_sp3012_datasheet.pdf.pdf#page=7), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +14 +14 +Package_DFN_QFN +DFN-16-1EP_3x4mm_P0.45mm_EP1.7x3.3mm +DE Package; 16-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_16_05-08-1732.pdf) +DFN 0.45 +0 +25 +17 +Package_DFN_QFN +DFN-16-1EP_3x5mm_P0.5mm_EP1.66x4.4mm +DHC Package; 16-Lead Plastic DFN (5mm x 3mm) (see Linear Technology DFN_16_05-08-1706.pdf) +DFN 0.5 +0 +27 +17 +Package_DFN_QFN +DFN-16-1EP_4x5mm_P0.5mm_EP2.44x4.34mm +DHD Package; 16-Lead Plastic DFN (5mm x 4mm) (see Linear Technology 05081707_A_DHD16.pdf) +DFN 0.5 +0 +25 +17 +Package_DFN_QFN +DFN-16-1EP_5x5mm_P0.5mm_EP3.46x4mm +DH Package; 16-Lead Plastic DFN (5mm x 5mm) (see Linear Technology DFN_16_05-08-1709.pdf) +DFN 0.5 +0 +26 +17 +Package_DFN_QFN +DFN-18-1EP_3x5mm_P0.5mm_EP1.66x4.4mm +DHC Package; 18-Lead Plastic DFN (5mm x 3mm) (see Linear Technology 05081955_0_DHC18.pdf) +DFN 0.5 +0 +29 +19 +Package_DFN_QFN +DFN-18-1EP_4x5mm_P0.5mm_EP2.44x4.34mm +DHD Package; 18-Lead Plastic DFN (5mm x 4mm) (see Linear Technology DFN_18_05-08-1778.pdf) +DFN 0.5 +0 +27 +19 +Package_DFN_QFN +DFN-20-1EP_5x6mm_P0.5mm_EP3.24x4.24mm +DFN20, 6x5, 0.5P; CASE 505AB (see ON Semiconductor 505AB.PDF) +DFN 0.5 +0 +33 +21 +Package_DFN_QFN +DFN-22-1EP_5x6mm_P0.5mm_EP3.14x4.3mm +DFN22 6*5*0.9 MM, 0.5 P; CASE 506AF\xe2\x88\x9201 (see ON Semiconductor 506AF.PDF) +DFN 0.5 +0 +35 +23 +Package_DFN_QFN +DFN-24-1EP_4x7mm_P0.5mm_EP2.64x6.44mm +DKD Package; 24-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_24_05-08-1864.pdf) +DFN 0.5 +0 +35 +25 +Package_DFN_QFN +DFN-32-1EP_4x7mm_P0.4mm_EP2.64x6.44mm +DKD Package; 32-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_32_05-08-1734.pdf) +DFN 0.4 +0 +43 +33 +Package_DFN_QFN +DFN-44-1EP_5x8.9mm_P0.4mm_EP3.7x8.4mm +DFN44 8.9x5, 0.4P; CASE 506BU-01 (see ON Semiconductor 506BU.PDF) +DFN 0.4 +0 +63 +45 +Package_DFN_QFN +DFN-S-8-1EP_6x5mm_P1.27mm +8-Lead Plastic Dual Flat, No Lead Package (MF) - 6x5 mm Body [DFN-S] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 1.27 +0 +16 +9 +Package_DFN_QFN +Diodes_DFN1006-3 +DFN package size 1006 3 pins +DFN package size 1006 3 pins +0 +3 +3 +Package_DFN_QFN +Diodes_UDFN-10_1.0x2.5mm_P0.5mm +U-DFN2510-10 package used by Diodes Incorporated (https://www.diodes.com/assets/Package-Files/U-DFN2510-10-Type-CJ.pdf) +UDFN-10 U-DFN2510-10 Diodes +0 +10 +10 +Package_DFN_QFN +Diodes_UDFN2020-6_Type-F +U-DFN2020-6 (Type F) (https://www.diodes.com/assets/Package-Files/U-DFN2020-6-Type-F.pdf) +U-DFN2020-6 (Type F) +0 +8 +8 +Package_DFN_QFN +HVQFN-16-1EP_3x3mm_P0.5mm_EP1.5x1.5mm +HVQFN, 16 Pin (https://www.nxp.com/docs/en/package-information/SOT758-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +21 +17 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +34 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +29 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +39 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +34 +25 +Package_DFN_QFN +HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +39 +25 +Package_DFN_QFN +HVQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +HVQFN, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT617-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +42 +33 +Package_DFN_QFN +HVQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +HVQFN, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT617-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +59 +33 +Package_DFN_QFN +HVQFN-40-1EP_6x6mm_P0.5mm_EP4.1x4.1mm +HVQFN, 40 Pin (https://www.nxp.com/docs/en/package-information/SOT618-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +50 +41 +Package_DFN_QFN +HVQFN-40-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias +HVQFN, 40 Pin (https://www.nxp.com/docs/en/package-information/SOT618-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +HVQFN NoLead +0 +67 +41 +Package_DFN_QFN +Infineon_MLPQ-16-14-1EP_4x4mm_P0.5mm +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +mlpq 32 7x7mm +0 +19 +15 +Package_DFN_QFN +Infineon_MLPQ-40-32-1EP_7x7mm_P0.5mm +MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +mlpq 32 7x7mm +0 +76 +33 +Package_DFN_QFN +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_EP5.55x5.55mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793) +mlpq 32 7x7mm +0 +113 +49 +Package_DFN_QFN +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.15x5.15mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2052mpbf.pdf?fileId=5546d462533600a401535675d3b32788) +mlpq 32 7x7mm +0 +117 +49 +Package_DFN_QFN +Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.55x5.55mm +MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793) +mlpq 32 7x7mm +0 +117 +49 +Package_DFN_QFN +Infineon_PQFN-22-15-4EP_6x5mm_P0.65mm +PQFN 22 leads, 5x6mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4301.pdf?fileId=5546d462533600a4015355d5fc691819, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +pqfn 22 5x6mm +0 +56 +15 +Package_DFN_QFN +Infineon_PQFN-44-31-5EP_7x7mm_P0.5mm +PQFN 44 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4302.pdf?fileId=5546d462533600a4015355d602a9181d, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) +pqfn 44 7x7mm +0 +125 +27 +Package_DFN_QFN +Linear_DE14MA +14-Lead Plastic DFN, 4mm x 3mm (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081731_C_DE14MA.pdf) +DFN 0.5 +0 +14 +14 +Package_DFN_QFN +Linear_UGK52_QFN-46-52 +Linear UKG52(46) package, QFN-52-1EP variant (see http://cds.linear.com/docs/en/datasheet/3886fe.pdf) +QFN 0.5 +0 +62 +47 +Package_DFN_QFN +MLF-6-1EP_1.6x1.6mm_P0.5mm_EP0.5x1.26mm +MLF, 6 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5353.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +9 +7 +Package_DFN_QFN +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf) +DFN MLF 0.65 +0 +12 +9 +Package_DFN_QFN +MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm_ThermalVias +8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf) +DFN MLF 0.65 +0 +15 +9 +Package_DFN_QFN +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +25 +21 +Package_DFN_QFN +MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), generated with kicad-footprint-generator ipc_noLead_generator.py +MLF NoLead +0 +30 +21 +Package_DFN_QFN +MLPQ-16-1EP_4x4mm_P0.65mm_EP2.8x2.8mm +Micro Leadframe Package, 16 pin with exposed pad +MLPQ- 0.65 +0 +21 +17 +Package_DFN_QFN +Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm +Micrel MLF, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic23050.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Micrel MLF NoLead +0 +11 +9 +Package_DFN_QFN +Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm_ThermalVias +Micrel MLF, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic23050.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Micrel MLF NoLead +0 +16 +9 +Package_DFN_QFN +Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.8x1.3mm_ThermalVias +http://ww1.microchip.com/downloads/en/DeviceDoc/mic2290.pdf +mlf 8 2x2 mm +0 +14 +9 +Package_DFN_QFN +Microchip_8E-16 +16-Lead Quad Flat, No Lead Package (8E) - 4x4x0.9 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN Microchip 8E 16 +0 +20 +17 +Package_DFN_QFN +Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm +QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf) +QFN dual row +0 +49 +45 +Package_DFN_QFN +Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm_ThermalVias +QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf) +QFN dual row +0 +59 +45 +Package_DFN_QFN +Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm +QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf) +QFN dual row +0 +74 +65 +Package_DFN_QFN +Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm_ThermalVias +QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf) +QFN dual row +0 +91 +65 +Package_DFN_QFN +Microsemi_QFN-40-32-2EP_6x8mm_P0.5mm +40-Lead (32-Lead Populated) Plastic Quad Flat, No Lead Package - 6x8x0.9mm Body (https://www.microsemi.com/document-portal/doc_download/131677-pd70224-data-sheet) +QFN 0.5 +0 +92 +34 +Package_DFN_QFN +Mini-Circuits_DL805 +https://ww2.minicircuits.com/case_style/DL805.pdf +RF Switch +0 +11 +9 +Package_DFN_QFN +Mini-Circuits_FG873-4_3x3mm +Mini Circuits Case style FG (https://ww2.minicircuits.com/case_style/FG873.pdf) +FG873 +0 +4 +4 +Package_DFN_QFN +NXP_LQFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_16xMask0.45x0.45 +LQFN, 48 Pin (https://www.nxp.com/docs/en/package-information/98ASA00694D.pdf) +NXP LQFN NoLead +0 +65 +49 +Package_DFN_QFN +NXP_LQFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_16xMask0.45x0.45_ThermalVias +LQFN, 48 Pin (https://www.nxp.com/docs/en/package-information/98ASA00694D.pdf) +NXP LQFN NoLead +0 +75 +49 +Package_DFN_QFN +Nordic_AQFN-73-1EP_7x7mm_P0.5mm +http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52%2Fdita%2Fnrf52%2Fchips%2Fnrf52840.html +AQFN 7mm +0 +78 +74 +Package_DFN_QFN +OnSemi_DFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P (https://www.onsemi.com/pub/Collateral/511AT.PDF) +DFN 0.5 +0 +8 +8 +Package_DFN_QFN +OnSemi_SIP-38-6EP-9x7mm_P0.65mm_EP1.2x1.2mm +On Semiconductor, SIP-38, 9x7mm, (https://www.onsemi.com/pub/Collateral/AX-SIP-SFEU-D.PDF#page=19) +On Semiconductor SIP +0 +44 +44 +Package_DFN_QFN +OnSemi_UDFN-8_1.2x1.8mm_P0.4mm +8-Lead Plastic Dual Flat, No Lead Package, 1.2x1.8x1.55 mm Body [UDFN] (See http://www.onsemi.com/pub/Collateral/NLSV2T244-D.PDF) +dfn udfn dual flat +0 +8 +8 +Package_DFN_QFN +OnSemi_VCT-28_3.5x3.5mm_P0.4mm +OnSemi VCT, 28 Pin (http://www.onsemi.com/pub/Collateral/601AE.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +OnSemi VCT NoLead +0 +28 +28 +Package_DFN_QFN +OnSemi_XDFN-10_1.35x2.2mm_P0.4mm +10-Lead Plastic XDFN (1.35mm x 2.2mm) (see https://www.onsemi.com/pdf/datasheet/emi8132-d.pdf) +OnSemi XDFN-10 0.4 +0 +10 +10 +Package_DFN_QFN +OnSemi_XDFN4-1EP_1.0x1.0mm_EP0.52x0.52mm +XDFN4 footprint (as found on the https://www.onsemi.com/pub/Collateral/NCP115-D.PDF) +OnSemi XDFN4 +0 +5 +5 +Package_DFN_QFN +Panasonic_HQFN-16-1EP_4x4mm_P0.65mm_EP2.9x2.9mm +Panasonic HQFN-16, 4x4x0.85mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HQFN016-A-0404XZL_EN.pdf) +panasonic hqfn +0 +37 +17 +Package_DFN_QFN +Panasonic_HSON-8_8x8mm_P2.00mm +Panasonic HSON-8, 8x8x1.25mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HSON008-A-0808XXI_EN.pdf) +panasonic hson +0 +27 +9 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +QFN, 12 Pin (https://www.nxp.com/docs/en/data-sheet/MMZ09332B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +17 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +QFN, 12 Pin (https://www.nxp.com/docs/en/data-sheet/MMZ09332B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +32 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm +QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +17 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm_ThermalVias +QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +22 +13 +Package_DFN_QFN +QFN-12-1EP_3x3mm_P0.51mm_EP1.45x1.45mm +QFN, 12 Pin (https://ww2.minicircuits.com/case_style/DQ1225.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +17 +13 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm +QFN, 16 Pin (https://www.st.com/resource/en/datasheet/tsv521.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias +QFN, 16 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py +QFN DFN_QFN +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm +QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm_ThermalVias +QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +26 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm +QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias +QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +26 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias +QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +26 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm +QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias +QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm +QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm_ThermalVias +QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack +QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack_ThermalVias +QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias +QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm +QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm_ThermalVias +QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm +QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm_ThermalVias +QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm +QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm_ThermalVias +QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm +QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias +QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm_ThermalVias +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +32 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +30 +21 +Package_DFN_QFN +QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +27 +21 +Package_DFN_QFN +QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +40 +21 +Package_DFN_QFN +QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm_ThermalVias +QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +35 +21 +Package_DFN_QFN +QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm +QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm_ThermalVias +QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +34 +25 +Package_DFN_QFN +QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm +QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +25 +Package_DFN_QFN +QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm_ThermalVias +QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm +QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm_ThermalVias +QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm +QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias +QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm +QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.15x2.15mm +QFN, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.15x2.15mm_ThermalVias +QFN, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm +QFN, 24 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm_ThermalVias +QFN, 24 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +25 +Package_DFN_QFN +QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +44 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm_ThermalVias +QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +51 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm +QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm_ThermalVias +QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm +QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +34 +25 +Package_DFN_QFN +QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm_ThermalVias +QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +67 +25 +Package_DFN_QFN +QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +29 +Package_DFN_QFN +QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +53 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm +QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm_ThermalVias +QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm +QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm_ThermalVias +QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm +QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +35 +29 +Package_DFN_QFN +QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +48 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +55 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.75x3.75mm +QFN, 28 Pin (https://www.cmlmicro.com/wp-content/uploads/2017/10/CMX901_ds.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_5x5mm_P0.5mm_EP3.75x3.75mm_ThermalVias +QFN, 28 Pin (https://www.cmlmicro.com/wp-content/uploads/2017/10/CMX901_ds.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +29 +Package_DFN_QFN +QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +41 +29 +Package_DFN_QFN +QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm_ThermalVias +QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +62 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm +QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm_ThermalVias +QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +38 +29 +Package_DFN_QFN +QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm_ThermalVias +QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +29 +Package_DFN_QFN +QFN-28_4x4mm_P0.5mm +QFN, 28 Pin (http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +28 +28 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +47 +33 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm +QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_DFN_QFN +QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm_ThermalVias +QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm +QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias +QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm +QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm_ThermalVias +QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm +QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm_ThermalVias +QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm +QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm_ThermalVias +QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm +QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm_ThermalVias +QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm_ThermalVias +QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm +QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +33 +Package_DFN_QFN +QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm_ThermalVias +QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +33 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm +QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +46 +37 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm_ThermalVias +QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +56 +37 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm +QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +49 +37 +Package_DFN_QFN +QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm_ThermalVias +QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +56 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm +QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +46 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm_ThermalVias +QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +63 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm +QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +46 +37 +Package_DFN_QFN +QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias +QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +63 +37 +Package_DFN_QFN +QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +47 +39 +Package_DFN_QFN +QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm_ThermalVias +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +56 +39 +Package_DFN_QFN +QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +54 +39 +Package_DFN_QFN +QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm_ThermalVias +QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +63 +39 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +50 +41 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm_ThermalVias +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +67 +41 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm +QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +50 +41 +Package_DFN_QFN +QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias +QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +67 +41 +Package_DFN_QFN +QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +57 +41 +Package_DFN_QFN +QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias +QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +83 +41 +Package_DFN_QFN +QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm +QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +55 +43 +Package_DFN_QFN +QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm_ThermalVias +QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +76 +43 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +61 +45 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm_ThermalVias +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +87 +45 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +61 +45 +Package_DFN_QFN +QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +87 +45 +Package_DFN_QFN +QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +70 +45 +Package_DFN_QFN +QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm_ThermalVias +QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +45 +Package_DFN_QFN +QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm +44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN]; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf +QFN 0.65 +0 +49 +45 +Package_DFN_QFN +QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm_ThermalVias +44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN] with thermal vias; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf +QFN 0.65 +0 +55 +45 +Package_DFN_QFN +QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm_ThermalVias +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm +QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm_ThermalVias +QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm_ThermalVias +QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +75 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm +QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm_ThermalVias +QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm +QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +58 +49 +Package_DFN_QFN +QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm_ThermalVias +QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm +QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm_ThermalVias +QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm +QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm_ThermalVias +QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm +QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm_ThermalVias +QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +49 +Package_DFN_QFN +QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm +QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +49 +Package_DFN_QFN +QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm_ThermalVias +QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +49 +Package_DFN_QFN +QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm +QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +53 +Package_DFN_QFN +QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm_ThermalVias +QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +104 +53 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm +QFN, 56 Pin (https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#page=634), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +61 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm_ThermalVias +QFN, 56 Pin (https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#page=634), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +66 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP4x4mm +QFN, 56 Pin (https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf#page=41), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +66 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP4x4mm_ThermalVias +QFN, 56 Pin (https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf#page=41), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +71 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm +QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm_ThermalVias +QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm_ThermalVias +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm +QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias +QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias_TopTented +QFN, 56 Pin top tented version (manually modified). For information see: http://www.cypress.com/file/138911/download +QFN DFN_QFN +0 +115 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm +QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm_ThermalVias +QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.9x5.9mm +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001734B.pdf#page=50), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +73 +57 +Package_DFN_QFN +QFN-56-1EP_8x8mm_P0.5mm_EP5.9x5.9mm_ThermalVias +QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001734B.pdf#page=50), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +99 +57 +Package_DFN_QFN +QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.4x3.4mm +QFN, 64 Pin (www.intel.com/content/www/us/en/ethernet-controllers/i210-ethernet-controller-datasheet.html), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.4x3.4mm_ThermalVias +QFN, 64 Pin (www.intel.com/content/www/us/en/ethernet-controllers/i210-ethernet-controller-datasheet.html), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +79 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm +QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm_ThermalVias +QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +79 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm +QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +74 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm_ThermalVias +QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +91 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.2x5.2mm +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/Si5345-44-42-D-DataSheet.pdf#page=51), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.2x5.2mm_ThermalVias +QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/Si5345-44-42-D-DataSheet.pdf#page=51), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm_ThermalVias +QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +81 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm_ThermalVias +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +107 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +101 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +151 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias +QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.25x7.25mm +64-Lead Plastic Quad Flat No-Lead Package, 9x9mm Body (see Atmel Appnote 8826) +QFN 0.5 +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.35x7.35mm +64-Lead Plastic Quad Flat, No Lead Package (MR) - 9x9x0.9 mm Body [QFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN 0.5 +0 +90 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +101 +65 +Package_DFN_QFN +QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm_ThermalVias +QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +151 +65 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +85 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm_ThermalVias +QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP6.4x6.4mm +QFN, 68 Pin (https://www.st.com/resource/en/datasheet/stm32h725ze.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +85 +69 +Package_DFN_QFN +QFN-68-1EP_8x8mm_P0.4mm_EP6.4x6.4mm_ThermalVias +QFN, 68 Pin (https://www.st.com/resource/en/datasheet/stm32h725ze.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +69 +Package_DFN_QFN +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +82 +73 +Package_DFN_QFN +QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm_ThermalVias +QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +135 +73 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +86 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm_ThermalVias +QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +103 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP5.81x6.31mm +QFN, 76 Pin (https://ftdichip.com/wp-content/uploads/2020/07/DS_FT600Q-FT601Q-IC-Datasheet.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +78 +77 +Package_DFN_QFN +QFN-76-1EP_9x9mm_P0.4mm_EP5.81x6.31mm_ThermalVias +QFN, 76 Pin (https://ftdichip.com/wp-content/uploads/2020/07/DS_FT600Q-FT601Q-IC-Datasheet.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +103 +77 +Package_DFN_QFN +Qorvo_DFN-8-1EP_2x2mm_P0.5mm +DFN 8 2x2mm, 0.5mm http://www.qorvo.com/products/d/da000896 +DFN 0.5 Qorvo 2x2mm +0 +9 +9 +Package_DFN_QFN +ROHM_DFN0604-3 +DFN package size 0604 3 pins +DFN package size 0604 3 pins +0 +3 +3 +Package_DFN_QFN +ST_UFQFPN-20_3x3mm_P0.5mm +UFQFPN 20-lead, 3 x 3 mm, 0.5 mm pitch, ultra thin fine pitch quad flat package (http://www.st.com/resource/en/datasheet/stm8s003f3.pdf) +UFQFPN 0.5 +0 +20 +20 +Package_DFN_QFN +ST_UQFN-6L_1.5x1.7mm_Pitch0.5mm +ST UQFN 6 pin 0.5mm Pitch http://www.st.com/resource/en/datasheet/ecmf02-2amx6.pdf +UQFN DFN 0.5 ST +0 +6 +6 +Package_DFN_QFN +SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm +20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf +QFN 0.5 +0 +25 +21 +Package_DFN_QFN +SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias +20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads and thermal vias; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf +QFN 0.5 +0 +31 +21 +Package_DFN_QFN +TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm +TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +11 +7 +Package_DFN_QFN +TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm_ThermalVias +TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +18 +7 +Package_DFN_QFN +TDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm +TDFN, 8 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0168.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm +TDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/MCP6V66-Family-Data-Sheet-DS20006266A.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.4x1.4mm +TDFN, 8 Pin (http://ww1.microchip.com/downloads/en/devicedoc/20005514a.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm +8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf) +TDFN DFN 0.5mm +0 +12 +9 +Package_DFN_QFN +TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm_ThermalVias +8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf) +TDFN DFN 0.5mm +0 +17 +9 +Package_DFN_QFN +TDFN-8_1.4x1.6mm_P0.4mm +TDFN, 8 Pin (https://www.silabs.com/documents/public/data-sheets/si7210-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +8 +8 +Package_DFN_QFN +TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm +TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +13 +11 +Package_DFN_QFN +TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm_ThermalVias +TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +16 +11 +Package_DFN_QFN +TDFN-12_2x3mm_P0.5mm +TDFN, 12 Pads, No exposed, http://www.st.com/resource/en/datasheet/stm6600.pdf +DFN +0 +12 +12 +Package_DFN_QFN +TDFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm +TDFN, 14 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0137.PDF (T1433-2C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +19 +15 +Package_DFN_QFN +TDFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm_ThermalVias +TDFN, 14 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0137.PDF (T1433-2C)), generated with kicad-footprint-generator ipc_noLead_generator.py +TDFN NoLead +0 +26 +15 +Package_DFN_QFN +TQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +TQFN, 16 Pin (https://www.diodes.com/assets/Datasheets/PI6C5946002.pdf#page=12), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +26 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +26 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +21 +17 +Package_DFN_QFN +TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm_ThermalVias +TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +31 +17 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.9x2.9mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100172.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_4x4mm_P0.5mm_EP2.9x2.9mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100172.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +25 +21 +Package_DFN_QFN +TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias +TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +35 +21 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm +TQFN, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +29 +25 +Package_DFN_QFN +TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack_ThermalVias +TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +39 +25 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +33 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm_ThermalVias +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +38 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +33 +29 +Package_DFN_QFN +TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm_ThermalVias +TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +43 +29 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +42 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +47 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +37 +33 +Package_DFN_QFN +TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm_ThermalVias +TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +47 +33 +Package_DFN_QFN +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +45 +41 +Package_DFN_QFN +TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm_ThermalVias +TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +55 +41 +Package_DFN_QFN +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm +TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +58 +49 +Package_DFN_QFN +TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias +TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +TQFN NoLead +0 +75 +49 +Package_DFN_QFN +Texas_B3QFN-14-1EP_5x5.5mm_P0.65mm +Texas instruments QFN Package, datasheet: https://www.ti.com/lit/ds/symlink/tpsm53602.pdf +Texas instruments QFN +0 +15 +15 +Package_DFN_QFN +Texas_B3QFN-14-1EP_5x5.5mm_P0.65mm_ThermalVia +Texas instruments QFN Package, datasheet: https://www.ti.com/lit/ds/symlink/tpsm53602.pdf +Texas instruments QFN +0 +34 +15 +Package_DFN_QFN +Texas_DRB0008A +DFN-8, 3x3x1mm, http://www.ti.com/lit/ds/symlink/ucc24610.pdf +DRB0008A +0 +23 +9 +Package_DFN_QFN +Texas_MOF0009A +Texas Instruments, QFM MOF0009A, 6x8x2mm (http://www.ti.com/lit/ml/mpsi063a/mpsi063a.pdf) +ti qfm mof0009a +0 +24 +9 +Package_DFN_QFN +Texas_QFN-41_10x16mm +QFN, 41 Pin (http://www.ti.com/lit/ml/mpqf506/mpqf506.pdf) +QFN DFN_QFN +0 +65 +41 +Package_DFN_QFN +Texas_R-PUQFN-N10 +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=MPQF186&fileType=pdf +Texas_R-PUQFN-N10 +0 +10 +10 +Package_DFN_QFN +Texas_R-PUQFN-N12 +Texas_R-PUQFN-N12 http://www.ti.com/lit/ds/symlink/txb0104.pdf +Texas_R-PUQFN-N12 +0 +13 +12 +Package_DFN_QFN +Texas_R-PWQFN-N28_EP2.1x3.1mm +QFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +33 +29 +Package_DFN_QFN +Texas_R-PWQFN-N28_EP2.1x3.1mm_ThermalVias +QFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +43 +29 +Package_DFN_QFN +Texas_RGE0024C_EP2.1x2.1mm +Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas QFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGE0024C_EP2.1x2.1mm_ThermalVias +Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas QFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RGE0024H_EP2.7x2.7mm +Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas QFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGE0024H_EP2.7x2.7mm_ThermalVias +Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas QFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_RGV_S-PVQFN-N16_EP2.1x2.1mm +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RGV_S-PVQFN-N16_EP2.1x2.1mm_ThermalVias +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N16_EP2.05x2.55mm +QFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts5v330.pdf#page=28) +QFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N16_EP2.05x2.55mm_ThermalVias +QFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts5v330.pdf#page=28) +QFN NoLead +0 +27 +18 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40) +QFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm_ThermalVias +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40) +QFN NoLead +0 +36 +25 +Package_DFN_QFN +Texas_RNN0018A +Texas Instruments, VQFN-HR RNN0018A (http://www.ti.com/lit/ds/symlink/tps568215.pdf) +ti vqfn-hr rnn0018a +0 +26 +18 +Package_DFN_QFN +Texas_RUM0016A_EP2.6x2.6mm +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_RUM0016A_EP2.6x2.6mm_ThermalVias +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_RWH0032A +Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf) +ti rwh0032a +0 +71 +33 +Package_DFN_QFN +Texas_RWH0032A_ThermalVias +Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf) +ti rwh0032a +0 +94 +33 +Package_DFN_QFN +Texas_S-PDSO-N10_EP1.2x2mm +DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +15 +11 +Package_DFN_QFN +Texas_S-PDSO-N10_EP1.2x2mm_ThermalVias +DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +DFN NoLead +0 +22 +11 +Package_DFN_QFN +Texas_S-PVQFN-N14 +Texas_S-PVQFN-N14 http://www.ti.com/lit/ds/symlink/txb0104.pdf +Texas_S-PVQFN-N14_4.3x4.3_Pitch0.5mm_ThermalPad +0 +19 +15 +Package_DFN_QFN +Texas_S-PVQFN-N14_ThermalVias +Texas_S-PVQFN-N14_ThermalVias http://www.ti.com/lit/ds/symlink/txb0104.pdf +Texas_S-PVQFN-N14_ThermalVias +0 +24 +15 +Package_DFN_QFN +Texas_S-PVQFN-N16_EP2.7x2.7mm +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +26 +17 +Package_DFN_QFN +Texas_S-PVQFN-N16_EP2.7x2.7mm_ThermalVias +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_S-PVQFN-N20_EP2.4x2.4mm +QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_S-PVQFN-N20_EP2.4x2.4mm_ThermalVias +QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +35 +21 +Package_DFN_QFN +Texas_S-PVQFN-N20_EP2.7x2.7mm +QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_S-PVQFN-N20_EP2.7x2.7mm_ThermalVias +QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +35 +21 +Package_DFN_QFN +Texas_S-PVQFN-N20_EP3.15x3.15mm +QFN, 20 Pin (www.ti.com/lit/ds/symlink/tps7a7200.pdf#page=36), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +25 +21 +Package_DFN_QFN +Texas_S-PVQFN-N20_EP3.15x3.15mm_ThermalVias +QFN, 20 Pin (www.ti.com/lit/ds/symlink/tps7a7200.pdf#page=36), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +47 +21 +Package_DFN_QFN +Texas_S-PVQFN-N24_EP2.1x2.1mm +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5720.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_S-PVQFN-N24_EP2.1x2.1mm_ThermalVias +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5720.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_S-PVQFN-N32_EP3.45x3.45mm +QFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +42 +33 +Package_DFN_QFN +Texas_S-PVQFN-N32_EP3.45x3.45mm_ThermalVias +QFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +59 +33 +Package_DFN_QFN +Texas_S-PVQFN-N36_EP4.4x4.4mm +QFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +46 +37 +Package_DFN_QFN +Texas_S-PVQFN-N36_EP4.4x4.4mm_ThermalVias +QFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +79 +37 +Package_DFN_QFN +Texas_S-PVQFN-N40_EP2.9x2.9mm +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +45 +41 +Package_DFN_QFN +Texas_S-PVQFN-N40_EP2.9x2.9mm_ThermalVias +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +55 +41 +Package_DFN_QFN +Texas_S-PVQFN-N40_EP3.52x2.62mm +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=56 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +47 +41 +Package_DFN_QFN +Texas_S-PVQFN-N40_EP3.52x2.62mm_ThermalVias +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=56 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +60 +41 +Package_DFN_QFN +Texas_S-PVQFN-N40_EP4.6x4.6mm +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +50 +41 +Package_DFN_QFN +Texas_S-PVQFN-N40_EP4.6x4.6mm_ThermalVias +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +83 +41 +Package_DFN_QFN +Texas_S-PVQFN-N40_EP4.15x4.15mm +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=70 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +50 +41 +Package_DFN_QFN +Texas_S-PVQFN-N40_EP4.15x4.15mm_ThermalVias +QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=70 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +83 +41 +Package_DFN_QFN +Texas_S-PVQFN-N48_EP5.15x5.15mm +QFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=111), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +65 +49 +Package_DFN_QFN +Texas_S-PVQFN-N48_EP5.15x5.15mm_ThermalVias +QFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=111), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +111 +49 +Package_DFN_QFN +Texas_S-PVQFN-N64_EP4.25x4.25mm +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=120), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +69 +65 +Package_DFN_QFN +Texas_S-PVQFN-N64_EP4.25x4.25mm_ThermalVias +QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=120), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +127 +65 +Package_DFN_QFN +Texas_S-PWQFN-N16_EP2.1x2.1mm +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=31 MO-220 variation VGGC), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +21 +17 +Package_DFN_QFN +Texas_S-PWQFN-N16_EP2.1x2.1mm_ThermalVias +QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=31 MO-220 variation VGGC), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +31 +17 +Package_DFN_QFN +Texas_S-PWQFN-N20 +20-Pin Plastic Quad Flatpack No-Lead Package, Body 3.0x3.0x0.8mm, Texas Instruments (http://www.ti.com/lit/ds/symlink/tps22993.pdf) +QFN 0.4 +0 +24 +20 +Package_DFN_QFN +Texas_S-PWQFN-N24_EP2.7x2.7mm +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +29 +25 +Package_DFN_QFN +Texas_S-PWQFN-N24_EP2.7x2.7mm_ThermalVias +QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +39 +25 +Package_DFN_QFN +Texas_S-PWQFN-N32_EP2.8x2.8mm +QFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +37 +33 +Package_DFN_QFN +Texas_S-PWQFN-N32_EP2.8x2.8mm_ThermalVias +QFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py +QFN NoLead +0 +47 +33 +Package_DFN_QFN +Texas_S-PWQFN-N100_EP5.5x5.5mm +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf +MultiRow QFN +0 +114 +105 +Package_DFN_QFN +Texas_S-PWQFN-N100_EP5.5x5.5mm_ThermalVias +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf +MultiRow QFN +0 +131 +105 +Package_DFN_QFN +Texas_S-PX2QFN-14 +Texas QFN, 14 Pin (http://www.ti.com/lit/ds/symlink/tlv9004.pdf#page=64), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas QFN NoLead +0 +14 +14 +Package_DFN_QFN +Texas_VQFN-RHL-20 +http://www.ti.com/lit/ds/symlink/bq51050b.pdf +RHL0020A +0 +33 +21 +Package_DFN_QFN +Texas_VQFN-RHL-20_ThermalVias +http://www.ti.com/lit/ds/symlink/bq51050b.pdf +RHL0020A +0 +41 +21 +Package_DFN_QFN +Texas_VSON-HR-8_1.5x2mm_P0.5mm +Texas VSON-HR, 8 Pin (http://www.ti.com/lit/ds/symlink/tps62823.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas VSON-HR NoLead +0 +8 +8 +Package_DFN_QFN +Texas_WQFN-MR-100_3x3-DapStencil +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf +MultiRow QFN +0 +113 +105 +Package_DFN_QFN +Texas_WQFN-MR-100_ThermalVias_3x3-DapStencil +http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf +MultiRow QFN +0 +126 +105 +Package_DFN_QFN +Texas_X2QFN-12_1.6x1.6mm_P0.4mm +Texas X2QFN, 12 Pin (http://www.ti.com/lit/ml/mpqf391c/mpqf391c.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas X2QFN NoLead +0 +12 +12 +Package_DFN_QFN +UDFN-4-1EP_1x1mm_P0.65mm_EP0.48x0.48mm +UDFN-4_1x1mm_P0.65mm, http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550x-300mA-Single-Output-LDO-in-Small-Packages-DS20006006A.pdf +UDFN-4_1x1mm_P0.65mm +0 +5 +5 +Package_DFN_QFN +UDFN-9_1.0x3.8mm_P0.5mm +9-pin UDFN package, 1.0x3.8mm, (Ref: https://katalog.we-online.de/pbs/datasheet/824014881.pdf) +UDFN SMD +0 +9 +9 +Package_DFN_QFN +UDFN-10_1.35x2.6mm_P0.5mm +http://www.st.com/content/ccc/resource/technical/document/datasheet/f2/11/8a/ed/40/31/40/56/DM00088292.pdf/files/DM00088292.pdf/jcr:content/translations/en.DM00088292.pdf +UDFN 0.5 uQFN +0 +10 +10 +Package_DFN_QFN +UFQFPN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +UFQFPN, 32 Pin (https://www.st.com/resource/en/datasheet/stm32g071k8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UFQFPN NoLead +0 +37 +33 +Package_DFN_QFN +UFQFPN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +UFQFPN, 32 Pin (https://www.st.com/resource/en/datasheet/stm32g071k8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UFQFPN NoLead +0 +47 +33 +Package_DFN_QFN +UQFN-10_1.3x1.8mm_P0.4mm +UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 9)), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +10 +10 +Package_DFN_QFN +UQFN-10_1.4x1.8mm_P0.4mm +UQFN 10pin, https://www.onsemi.com/pub/Collateral/488AT.PDF +UQFN-10_1.4x1.8mm_P0.4mm +0 +10 +10 +Package_DFN_QFN +UQFN-10_1.6x2.1mm_P0.5mm +UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 12)), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +10 +10 +Package_DFN_QFN +UQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +16-Lead Ultra Thin Quad Flat, No Lead Package (UC) - 3x3x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN 0.5 +0 +21 +17 +Package_DFN_QFN +UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm +UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +21 +17 +Package_DFN_QFN +UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias +UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +31 +17 +Package_DFN_QFN +UQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm +16-Lead Ultra Thin Plastic Quad Flat, No Lead Package (JQ) - 4x4x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) +QFN 0.65 +0 +21 +17 +Package_DFN_QFN +UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +25 +21 +Package_DFN_QFN +UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm_ThermalVias +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +30 +21 +Package_DFN_QFN +UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +25 +21 +Package_DFN_QFN +UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias +UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +35 +21 +Package_DFN_QFN +UQFN-20_3x3mm_P0.4mm +UQFN, 20 Pin (https://resurgentsemi.com/wp-content/uploads/2018/09/MPR121_rev5-Resurgent.pdf?d453f8&d453f8), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +20 +20 +Package_DFN_QFN +UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm +UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +33 +29 +Package_DFN_QFN +UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm_ThermalVias +UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +43 +29 +Package_DFN_QFN +UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm +UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +50 +41 +Package_DFN_QFN +UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias +UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +67 +41 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm +UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +58 +49 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm_ThermalVias +UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +75 +49 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm +UQFN, 48 Pin (https://github.com/KiCad/kicad-symbols/pull/1189#issuecomment-449506354), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +53 +49 +Package_DFN_QFN +UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm_ThermalVias +UQFN, 48 Pin (https://github.com/KiCad/kicad-symbols/pull/1189#issuecomment-449506354), generated with kicad-footprint-generator ipc_noLead_generator.py +UQFN NoLead +0 +75 +49 +Package_DFN_QFN +VDFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.7mm +8-Lead Very Thin Dual Flatpack No-Lead (LZ) - 2x3x0.9 mm Body [VDFN] (see Microchip Packaging Specification 00000049BS.pdf) +DFN 0.5 +0 +11 +9 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.1x1.1mm +VQFN, 16 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/16L_VQFN-WFS_3x3mm_4MX_C04-00508a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +18 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.1x1.1mm_ThermalVias +VQFN, 16 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/16L_VQFN-WFS_3x3mm_4MX_C04-00508a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +23 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm +VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias +VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +21 +17 +Package_DFN_QFN +VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias +VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +26 +17 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +25 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +30 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +25 +21 +Package_DFN_QFN +VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm_ThermalVias +VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +30 +21 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +34 +25 +Package_DFN_QFN +VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +39 +25 +Package_DFN_QFN +VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm +VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +33 +29 +Package_DFN_QFN +VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias +VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +43 +29 +Package_DFN_QFN +VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm +VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +35 +29 +Package_DFN_QFN +VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm_ThermalVias +VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +48 +29 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias +VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm +VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias +VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.15x3.15mm +VQFN, 32 Pin (https://www.ti.com/lit/ds/slvs589d/slvs589d.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +37 +33 +Package_DFN_QFN +VQFN-32-1EP_5x5mm_P0.5mm_EP3.15x3.15mm_ThermalVias +VQFN, 32 Pin (https://www.ti.com/lit/ds/slvs589d/slvs589d.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +47 +33 +Package_DFN_QFN +VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm +VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +53 +47 +Package_DFN_QFN +VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm_ThermalVias +VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +66 +47 +Package_DFN_QFN +VQFN-48-1EP_6x6mm_P0.4mm_EP4.1x4.1mm +VQFN, 48 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/48L_VQFN_6x6mm_6LX_C04-00494a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +58 +49 +Package_DFN_QFN +VQFN-48-1EP_6x6mm_P0.4mm_EP4.1x4.1mm_ThermalVias +VQFN, 48 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/48L_VQFN_6x6mm_6LX_C04-00494a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +75 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc430f5137.pdf#page=128), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +58 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc430f5137.pdf#page=128), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +75 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +53 +49 +Package_DFN_QFN +VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias +VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +79 +49 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm +VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/PIC16LF19195-6-7-Data-Sheet-40001873D.pdf#page=718), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +74 +65 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias +VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/PIC16LF19195-6-7-Data-Sheet-40001873D.pdf#page=718), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +100 +65 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm +VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_QFN_9x9_MR_C04-00149e.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +74 +65 +Package_DFN_QFN +VQFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias +VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_QFN_9x9_MR_C04-00149e.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VQFN NoLead +0 +91 +65 +Package_DFN_QFN +WDFN-6-2EP_4.0x2.6mm_P0.65mm +WDFN, 6 pin, 4.0x2.6, 0.65P; Two exposed pads, (https://www.onsemi.com/pub/Collateral/511BZ.PDF) +DFN 0.65P dual flag +0 +8 +8 +Package_DFN_QFN +WDFN-8-1EP_2x2.2mm_P0.5mm_EP0.80x0.54 +https://www.onsemi.com/pub/Collateral/511BN.PDF +WDFN-8 1EP 2.2X2.0 0.5P +0 +9 +9 +Package_DFN_QFN +WDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20005474E.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MNY_C04-0129E-MNY.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_4x3mm_P0.65mm_EP2.4x1.8mm +WDFN, 8 Pin (https://www.onsemi.com/pub/Collateral/509AF.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8-1EP_4x3mm_P0.65mm_EP2.4x1.8mm_ThermalVias +WDFN, 8 Pin (https://www.onsemi.com/pub/Collateral/509AF.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +20 +9 +Package_DFN_QFN +WDFN-8-1EP_6x5mm_P1.27mm_EP3.4x4mm +WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_WDFN_5x6mm_MF_C04210B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +13 +9 +Package_DFN_QFN +WDFN-8_2x2mm_P0.5mm +DFN8 2x2, 0.5P; No exposed pad (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF) +DFN 0.5 +0 +8 +8 +Package_DFN_QFN +WDFN-10-1EP_3x3mm_P0.5mm_EP1.8x2.5mm +WDFN, 10 Pin (https://www.onsemi.com/pdf/datasheet/nis5420-d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +15 +11 +Package_DFN_QFN +WDFN-10-1EP_3x3mm_P0.5mm_EP1.8x2.5mm_ThermalVias +WDFN, 10 Pin (https://www.onsemi.com/pdf/datasheet/nis5420-d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +22 +11 +Package_DFN_QFN +WDFN-12-1EP_3x3mm_P0.45mm_EP1.7x2.5mm +WDFN, 12 Pin (https://www.diodes.com/assets/Datasheets/PAM2306.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WDFN NoLead +0 +17 +13 +Package_DFN_QFN +WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm +WQFN, 14 Pin (https://www.onsemi.com/pub/Collateral/FUSB302B-D.PDF#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +19 +15 +Package_DFN_QFN +WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm_ThermalVias +WQFN, 14 Pin (https://www.onsemi.com/pub/Collateral/FUSB302B-D.PDF#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +24 +15 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tpa6132a2.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tpa6132a2.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +26 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tlv9064.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias +WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tlv9064.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +26 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm +WQFN, 16 Pin (https://www.onsemi.com/pub/Collateral/FUSB307B-D.PDF#page=56), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias +WQFN, 16 Pin (https://www.onsemi.com/pub/Collateral/FUSB307B-D.PDF#page=56), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +26 +17 +Package_DFN_QFN +WQFN-16-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +21 +17 +Package_DFN_QFN +WQFN-16-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +31 +17 +Package_DFN_QFN +WQFN-20-1EP_2.5x4.5mm_P0.5mm_EP1x2.9mm +http://www.onsemi.com/pub/Collateral/510CD.PDF +WQFN-20 4.5mm 2.5mm 0.5mm +0 +24 +21 +Package_DFN_QFN +WQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm +WQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/ts3ds10224.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +25 +21 +Package_DFN_QFN +WQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias +WQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/ts3ds10224.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +30 +21 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/lm26480.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +29 +25 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/lm26480.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +39 +25 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/ts3a27518e.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +29 +25 +Package_DFN_QFN +WQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias +WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/ts3a27518e.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +39 +25 +Package_DFN_QFN +WQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm +QFN, 32-Leads, Body 5x5x0.8mm, Pitch 0.5mm, Thermal Pad 3.1x3.1mm; (see Texas Instruments LM25119 http://www.ti.com/lit/ds/symlink/lm25119.pdf) +WQFN 0.5 +0 +37 +33 +Package_DFN_QFN +WQFN-42-1EP_3.5x9mm_P0.5mm_EP2.05x7.55mm +WQFN, 42 Pin (http://www.ti.com/lit/ds/symlink/ts3l501e.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +57 +43 +Package_DFN_QFN +WQFN-42-1EP_3.5x9mm_P0.5mm_EP2.05x7.55mm_ThermalVias +WQFN, 42 Pin (http://www.ti.com/lit/ds/symlink/ts3l501e.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py +WQFN NoLead +0 +82 +43 +Package_DIP +DIP-4_W7.62mm +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_LongPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_SMDSocket_SmallPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_Socket +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +4 +4 +Package_DIP +DIP-4_W7.62mm_Socket_LongPads +4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +4 +4 +Package_DIP +DIP-4_W8.89mm_SMDSocket_LongPads +4-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +4 +4 +Package_DIP +DIP-4_W10.16mm +4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +4 +4 +Package_DIP +DIP-4_W10.16mm_LongPads +4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +4 +4 +Package_DIP +DIP-5-6_W7.62mm +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_LongPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_SMDSocket_SmallPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_Socket +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +5 +5 +Package_DIP +DIP-5-6_W7.62mm_Socket_LongPads +5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +5 +5 +Package_DIP +DIP-5-6_W8.89mm_SMDSocket_LongPads +5-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +5 +5 +Package_DIP +DIP-5-6_W10.16mm +5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +5 +5 +Package_DIP +DIP-5-6_W10.16mm_LongPads +5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +5 +5 +Package_DIP +DIP-6_W7.62mm +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_LongPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_SMDSocket_SmallPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_Socket +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +6 +6 +Package_DIP +DIP-6_W7.62mm_Socket_LongPads +6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +6 +6 +Package_DIP +DIP-6_W8.89mm_SMDSocket_LongPads +6-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +6 +6 +Package_DIP +DIP-6_W10.16mm +6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +6 +6 +Package_DIP +DIP-6_W10.16mm_LongPads +6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +6 +6 +Package_DIP +DIP-8-16_W7.62mm +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +DIP-8-16_W7.62mm_Socket +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +8 +8 +Package_DIP +DIP-8-16_W7.62mm_Socket_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +8 +8 +Package_DIP +DIP-8-N6_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 6 +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +DIP-8-N7_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 7 +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +DIP-8_W7.62mm +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_LongPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_SMDSocket_SmallPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_Socket +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +8 +8 +Package_DIP +DIP-8_W7.62mm_Socket_LongPads +8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +8 +8 +Package_DIP +DIP-8_W8.89mm_SMDSocket_LongPads +8-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +8 +8 +Package_DIP +DIP-8_W10.16mm +8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +8 +8 +Package_DIP +DIP-8_W10.16mm_LongPads +8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +8 +8 +Package_DIP +DIP-10_W7.62mm +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_LongPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_SMDSocket_SmallPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_Socket +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +10 +10 +Package_DIP +DIP-10_W7.62mm_Socket_LongPads +10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +10 +10 +Package_DIP +DIP-10_W8.89mm_SMDSocket_LongPads +10-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +10 +10 +Package_DIP +DIP-10_W10.16mm +10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +10 +10 +Package_DIP +DIP-10_W10.16mm_LongPads +10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +10 +10 +Package_DIP +DIP-12_W7.62mm +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_LongPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_SMDSocket_SmallPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_Socket +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +12 +12 +Package_DIP +DIP-12_W7.62mm_Socket_LongPads +12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +12 +12 +Package_DIP +DIP-12_W8.89mm_SMDSocket_LongPads +12-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +12 +12 +Package_DIP +DIP-12_W10.16mm +12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +12 +12 +Package_DIP +DIP-12_W10.16mm_LongPads +12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +12 +12 +Package_DIP +DIP-14_W7.62mm +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_LongPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_SMDSocket_SmallPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_Socket +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +14 +14 +Package_DIP +DIP-14_W7.62mm_Socket_LongPads +14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +14 +14 +Package_DIP +DIP-14_W8.89mm_SMDSocket_LongPads +14-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +14 +14 +Package_DIP +DIP-14_W10.16mm +14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +14 +14 +Package_DIP +DIP-14_W10.16mm_LongPads +14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +14 +14 +Package_DIP +DIP-16_W7.62mm +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_SMDSocket_SmallPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_Socket +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +16 +16 +Package_DIP +DIP-16_W7.62mm_Socket_LongPads +16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +16 +16 +Package_DIP +DIP-16_W8.89mm_SMDSocket_LongPads +16-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +16 +16 +Package_DIP +DIP-16_W10.16mm +16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +16 +16 +Package_DIP +DIP-16_W10.16mm_LongPads +16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +16 +16 +Package_DIP +DIP-18_W7.62mm +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_LongPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_SMDSocket_SmallPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_Socket +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +18 +18 +Package_DIP +DIP-18_W7.62mm_Socket_LongPads +18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +18 +18 +Package_DIP +DIP-18_W8.89mm_SMDSocket_LongPads +18-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +18 +18 +Package_DIP +DIP-20_W7.62mm +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_LongPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_SMDSocket_SmallPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_Socket +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +20 +20 +Package_DIP +DIP-20_W7.62mm_Socket_LongPads +20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +20 +20 +Package_DIP +DIP-20_W8.89mm_SMDSocket_LongPads +20-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +20 +20 +Package_DIP +DIP-22_W7.62mm +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_LongPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_SMDSocket_SmallPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_Socket +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +22 +22 +Package_DIP +DIP-22_W7.62mm_Socket_LongPads +22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +22 +22 +Package_DIP +DIP-22_W8.89mm_SMDSocket_LongPads +22-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +22 +22 +Package_DIP +DIP-22_W10.16mm +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_LongPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_SMDSocket_SmallPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_Socket +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket +0 +22 +22 +Package_DIP +DIP-22_W10.16mm_Socket_LongPads +22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads +0 +22 +22 +Package_DIP +DIP-22_W11.43mm_SMDSocket_LongPads +22-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads +0 +22 +22 +Package_DIP +DIP-24_W7.62mm +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_LongPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_Socket +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +24 +24 +Package_DIP +DIP-24_W7.62mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +24 +24 +Package_DIP +DIP-24_W8.89mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +24 +24 +Package_DIP +DIP-24_W10.16mm +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) +THT DIP DIL PDIP 2.54mm 10.16mm 400mil +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_LongPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_Socket +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket +0 +24 +24 +Package_DIP +DIP-24_W10.16mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads +0 +24 +24 +Package_DIP +DIP-24_W11.43mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads +0 +24 +24 +Package_DIP +DIP-24_W15.24mm +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_LongPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_SMDSocket_SmallPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_Socket +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +24 +24 +Package_DIP +DIP-24_W15.24mm_Socket_LongPads +24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +24 +24 +Package_DIP +DIP-24_W16.51mm_SMDSocket_LongPads +24-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +24 +24 +Package_DIP +DIP-28_W7.62mm +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_LongPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_SMDSocket_SmallPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_Socket +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket +0 +28 +28 +Package_DIP +DIP-28_W7.62mm_Socket_LongPads +28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads +0 +28 +28 +Package_DIP +DIP-28_W8.89mm_SMDSocket_LongPads +28-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads +0 +28 +28 +Package_DIP +DIP-28_W15.24mm +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_LongPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_SMDSocket_SmallPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_Socket +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +28 +28 +Package_DIP +DIP-28_W15.24mm_Socket_LongPads +28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +28 +28 +Package_DIP +DIP-28_W16.51mm_SMDSocket_LongPads +28-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +28 +28 +Package_DIP +DIP-32_W7.62mm +32-lead dip package, row spacing 7.62 mm (300 mils) +DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +32 +32 +Package_DIP +DIP-32_W15.24mm +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_LongPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_SMDSocket_SmallPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_Socket +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +32 +32 +Package_DIP +DIP-32_W15.24mm_Socket_LongPads +32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +32 +32 +Package_DIP +DIP-32_W16.51mm_SMDSocket_LongPads +32-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +32 +32 +Package_DIP +DIP-40_W15.24mm +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_LongPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_SMDSocket_SmallPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_Socket +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +40 +40 +Package_DIP +DIP-40_W15.24mm_Socket_LongPads +40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +40 +40 +Package_DIP +DIP-40_W16.51mm_SMDSocket_LongPads +40-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +40 +40 +Package_DIP +DIP-40_W25.4mm +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_LongPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_SMDSocket_SmallPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_Socket +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket +0 +40 +40 +Package_DIP +DIP-40_W25.4mm_Socket_LongPads +40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads +0 +40 +40 +Package_DIP +DIP-40_W26.67mm_SMDSocket_LongPads +40-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads +0 +40 +40 +Package_DIP +DIP-42_W15.24mm +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_LongPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_SMDSocket_SmallPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_Socket +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +42 +42 +Package_DIP +DIP-42_W15.24mm_Socket_LongPads +42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +42 +42 +Package_DIP +DIP-42_W16.51mm_SMDSocket_LongPads +42-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +42 +42 +Package_DIP +DIP-48_W15.24mm +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_LongPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_SMDSocket_SmallPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_Socket +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +48 +48 +Package_DIP +DIP-48_W15.24mm_Socket_LongPads +48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +48 +48 +Package_DIP +DIP-48_W16.51mm_SMDSocket_LongPads +48-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +48 +48 +Package_DIP +DIP-64_W15.24mm +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) +THT DIP DIL PDIP 2.54mm 15.24mm 600mil +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_LongPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_Socket +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket +0 +64 +64 +Package_DIP +DIP-64_W15.24mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads +0 +64 +64 +Package_DIP +DIP-64_W16.51mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads +0 +64 +64 +Package_DIP +DIP-64_W22.86mm +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils) +THT DIP DIL PDIP 2.54mm 22.86mm 900mil +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_LongPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), LongPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil LongPads +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil SMDSocket SmallPads +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_Socket +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket +THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket +0 +64 +64 +Package_DIP +DIP-64_W22.86mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket LongPads +0 +64 +64 +Package_DIP +DIP-64_W24.13mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 24.13 mm (950 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 24.13mm 950mil SMDSocket LongPads +0 +64 +64 +Package_DIP +DIP-64_W25.4mm +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_LongPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_SMDSocket_SmallPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_Socket +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket +0 +64 +64 +Package_DIP +DIP-64_W25.4mm_Socket_LongPads +64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads +THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads +0 +64 +64 +Package_DIP +DIP-64_W26.67mm_SMDSocket_LongPads +64-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads +THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads +0 +64 +64 +Package_DIP +Fairchild_LSOP-8 +8-Lead, 300\" Wide, Surface Mount Package (https://www.fairchildsemi.com/package-drawings/ML/MLSOP08A.pdf) +LSOP 2.54mm 300mil +0 +8 +8 +Package_DIP +PowerIntegrations_PDIP-8B +Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +7 +7 +Package_DIP +PowerIntegrations_PDIP-8C +Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +7 +7 +Package_DIP +PowerIntegrations_SDIP-10C +PowerIntegrations variant of 10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/tophx_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads +0 +9 +9 +Package_DIP +PowerIntegrations_SMD-8 +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +PowerIntegrations_SMD-8B +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +PowerIntegrations_SMD-8C +PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +7 +7 +Package_DIP +PowerIntegrations_eDIP-12B +Power Integrations eDIP-12B, see https://www.power.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil +0 +11 +11 +Package_DIP +SMDIP-4_W7.62mm +4-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +4 +4 +Package_DIP +SMDIP-4_W9.53mm +4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +4 +4 +Package_DIP +SMDIP-4_W9.53mm_Clearance8mm +4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +4 +4 +Package_DIP +SMDIP-4_W11.48mm +4-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +4 +4 +Package_DIP +SMDIP-6_W7.62mm +6-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +6 +6 +Package_DIP +SMDIP-6_W9.53mm +6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +6 +6 +Package_DIP +SMDIP-6_W9.53mm_Clearance8mm +6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +6 +6 +Package_DIP +SMDIP-6_W11.48mm +6-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +6 +6 +Package_DIP +SMDIP-8_W7.62mm +8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +8 +8 +Package_DIP +SMDIP-8_W9.53mm +8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +8 +8 +Package_DIP +SMDIP-8_W9.53mm_Clearance8mm +8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +8 +8 +Package_DIP +SMDIP-8_W11.48mm +8-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +8 +8 +Package_DIP +SMDIP-10_W7.62mm +10-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +10 +10 +Package_DIP +SMDIP-10_W9.53mm +10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +10 +10 +Package_DIP +SMDIP-10_W9.53mm_Clearance8mm +10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +10 +10 +Package_DIP +SMDIP-10_W11.48mm +10-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +10 +10 +Package_DIP +SMDIP-12_W7.62mm +12-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +12 +12 +Package_DIP +SMDIP-12_W9.53mm +12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +12 +12 +Package_DIP +SMDIP-12_W9.53mm_Clearance8mm +12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +12 +12 +Package_DIP +SMDIP-12_W11.48mm +12-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +12 +12 +Package_DIP +SMDIP-14_W7.62mm +14-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +14 +14 +Package_DIP +SMDIP-14_W9.53mm +14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +14 +14 +Package_DIP +SMDIP-14_W9.53mm_Clearance8mm +14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +14 +14 +Package_DIP +SMDIP-14_W11.48mm +14-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +14 +14 +Package_DIP +SMDIP-16_W7.62mm +16-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +16 +16 +Package_DIP +SMDIP-16_W9.53mm +16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +16 +16 +Package_DIP +SMDIP-16_W9.53mm_Clearance8mm +16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +16 +16 +Package_DIP +SMDIP-16_W11.48mm +16-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +16 +16 +Package_DIP +SMDIP-18_W7.62mm +18-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +18 +18 +Package_DIP +SMDIP-18_W9.53mm +18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +18 +18 +Package_DIP +SMDIP-18_W9.53mm_Clearance8mm +18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +18 +18 +Package_DIP +SMDIP-18_W11.48mm +18-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +18 +18 +Package_DIP +SMDIP-20_W7.62mm +20-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +20 +20 +Package_DIP +SMDIP-20_W9.53mm +20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +20 +20 +Package_DIP +SMDIP-20_W9.53mm_Clearance8mm +20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +20 +20 +Package_DIP +SMDIP-20_W11.48mm +20-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +20 +20 +Package_DIP +SMDIP-22_W7.62mm +22-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +22 +22 +Package_DIP +SMDIP-22_W9.53mm +22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +22 +22 +Package_DIP +SMDIP-22_W9.53mm_Clearance8mm +22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm +0 +22 +22 +Package_DIP +SMDIP-22_W11.48mm +22-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +22 +22 +Package_DIP +SMDIP-24_W7.62mm +24-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +24 +24 +Package_DIP +SMDIP-24_W9.53mm +24-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +24 +24 +Package_DIP +SMDIP-24_W11.48mm +24-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +24 +24 +Package_DIP +SMDIP-24_W15.24mm +24-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +24 +24 +Package_DIP +SMDIP-28_W15.24mm +28-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +28 +28 +Package_DIP +SMDIP-32_W7.62mm +32-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil +0 +32 +32 +Package_DIP +SMDIP-32_W9.53mm +32-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil +0 +32 +32 +Package_DIP +SMDIP-32_W11.48mm +32-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil +0 +32 +32 +Package_DIP +SMDIP-32_W15.24mm +32-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +32 +32 +Package_DIP +SMDIP-40_W15.24mm +40-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +40 +40 +Package_DIP +SMDIP-40_W25.24mm +40-lead surface-mounted (SMD) DIP package, row spacing 25.24 mm (993 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 25.24mm 993mil +0 +40 +40 +Package_DIP +SMDIP-42_W15.24mm +42-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +42 +42 +Package_DIP +SMDIP-48_W15.24mm +48-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +48 +48 +Package_DIP +SMDIP-64_W15.24mm +64-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) +SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil +0 +64 +64 +Package_DIP +Toshiba_11-7A9 +Toshiba 11-7A9 package, like 6-lead dip package with missing pin 5, row spacing 7.62 mm (300 mils), https://toshiba.semicon-storage.com/info/docget.jsp?did=1421&prodName=TLP3021(S) +Toshiba 11-7A9 DIL DIP PDIP 2.54mm 7.62mm 300mil +0 +5 +5 +Package_DIP +Vishay_HVM-DIP-3_W7.62mm +3-lead though-hole mounted high-volatge DIP package (based on standard DIP-4), row spacing 7.62 mm (300 mils), see https://www.vishay.com/docs/91361/hexdip.pdf +THT DIP DIL PDIP 2.54mm 7.62mm 300mil Vishay HVMDIP HEXDIP +0 +4 +3 +Package_DirectFET +DirectFET_L4 +DirectFET L4 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=41 +DirectFET L4 MOSFET Infineon +0 +11 +3 +Package_DirectFET +DirectFET_L6 +DirectFET L6 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=42 +DirectFET L6 MOSFET Infineon +0 +13 +3 +Package_DirectFET +DirectFET_L8 +DirectFET L8 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=43 +DirectFET L8 MOSFET Infineon +0 +15 +3 +Package_DirectFET +DirectFET_LA +DirectFET LA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=44 +DirectFET LA MOSFET Infineon +0 +15 +3 +Package_DirectFET +DirectFET_M2 +DirectFET M2 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=33 +DirectFET M2 MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_M4 +DirectFET M4 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=34 +DirectFET M4 MOSFET Infineon +0 +9 +3 +Package_DirectFET +DirectFET_MA +DirectFET MA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=35 +DirectFET MA MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_MB +DirectFET MB https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=36 +DirectFET MB MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_MC +DirectFET MC https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=37 +DirectFET MC MOSFET Infineon +0 +10 +3 +Package_DirectFET +DirectFET_MD +DirectFET MD https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=38 +DirectFET MD MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_ME +DirectFET ME https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=39 +DirectFET ME MOSFET Infineon +0 +10 +3 +Package_DirectFET +DirectFET_MF +DirectFET MF https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=40 +DirectFET MF MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_MN +DirectFET MN https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=30 +DirectFET MN MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MP +DirectFET MP https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=28 +DirectFET MP MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MQ +DirectFET MQ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=29 +DirectFET MQ MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MT +DirectFET MT https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=26 +DirectFET MT MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MU +DirectFET MU https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=32 +DirectFET MU MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MX +DirectFET MX https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=27 +DirectFET MX MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_MZ +DirectFET MZ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=31 +DirectFET MZ MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_S1 +DirectFET S1 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=20 +DirectFET S1 MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_S2 +DirectFET S2 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=21 +DirectFET S2 MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_S3C +DirectFET S3C https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=25 +DirectFET S3C MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_SA +DirectFET SA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=22 +DirectFET SA MOSFET Infineon +0 +8 +3 +Package_DirectFET +DirectFET_SB +DirectFET SB https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=23 +DirectFET SB MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_SC +DirectFET SC https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=24 +DirectFET SC MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_SH +DirectFET SH https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=19 +DirectFET SH MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_SJ +DirectFET SJ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=18 +DirectFET SJ MOSFET Infineon +0 +7 +3 +Package_DirectFET +DirectFET_SQ +DirectFET SQ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=17 +DirectFET SQ MOSFET Infineon +0 +6 +3 +Package_DirectFET +DirectFET_ST +DirectFET ST https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=16 +DirectFET ST MOSFET Infineon +0 +7 +3 +Package_LCC +PLCC-20 +PLCC, 20 pins, surface mount +plcc smt +0 +20 +20 +Package_LCC +PLCC-20_SMD-Socket +PLCC, 20 pins, surface mount +plcc smt +0 +20 +20 +Package_LCC +PLCC-20_THT-Socket +PLCC, 20 pins, through hole +plcc leaded +0 +20 +20 +Package_LCC +PLCC-28 +PLCC, 28 pins, surface mount +plcc smt +0 +28 +28 +Package_LCC +PLCC-28_SMD-Socket +PLCC, 28 pins, surface mount +plcc smt +0 +28 +28 +Package_LCC +PLCC-28_THT-Socket +PLCC, 28 pins, through hole +plcc leaded +0 +28 +28 +Package_LCC +PLCC-32_11.4x14.0mm_P1.27mm +PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +32 +32 +Package_LCC +PLCC-32_THT-Socket +PLCC, 32 pins, through hole, http://www.assmann-wsw.com/fileadmin/datasheets/ASS_0981_CO.pdf +plcc leaded +0 +32 +32 +Package_LCC +PLCC-44 +PLCC, 44 pins, surface mount +plcc smt +0 +44 +44 +Package_LCC +PLCC-44_16.6x16.6mm_P1.27mm +PLCC, 44 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +44 +44 +Package_LCC +PLCC-44_SMD-Socket +PLCC, 44 pins, surface mount +plcc smt +0 +44 +44 +Package_LCC +PLCC-44_THT-Socket +PLCC, 44 pins, through hole +plcc leaded +0 +44 +44 +Package_LCC +PLCC-52 +PLCC, 52 pins, surface mount +plcc smt +0 +52 +52 +Package_LCC +PLCC-52_SMD-Socket +PLCC, 52 pins, surface mount +plcc smt +0 +52 +52 +Package_LCC +PLCC-52_THT-Socket +PLCC, 52 pins, through hole +plcc leaded +0 +52 +52 +Package_LCC +PLCC-68 +PLCC, 68 pins, surface mount +plcc smt +0 +68 +68 +Package_LCC +PLCC-68_24.2x24.2mm_P1.27mm +PLCC, 68 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +68 +68 +Package_LCC +PLCC-68_SMD-Socket +PLCC, 68 pins, surface mount +plcc smt +0 +68 +68 +Package_LCC +PLCC-68_THT-Socket +PLCC, 68 pins, through hole +plcc leaded +0 +68 +68 +Package_LCC +PLCC-84 +PLCC, 84 pins, surface mount +plcc smt +0 +84 +84 +Package_LCC +PLCC-84_29.3x29.3mm_P1.27mm +PLCC, 84 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py +PLCC LCC +0 +84 +84 +Package_LCC +PLCC-84_SMD-Socket +PLCC, 84 pins, surface mount +plcc smt +0 +84 +84 +Package_LCC +PLCC-84_THT-Socket +PLCC, 84 pins, through hole +plcc leaded +0 +84 +84 +Package_LGA +AMS_LGA-10-1EP_2.7x4mm_P0.6mm +LGA-10, http://ams.com/eng/content/download/951091/2269479/471718 +lga land grid array +0 +13 +11 +Package_LGA +AMS_LGA-20_4.7x4.5mm_P0.65mm +http://ams.com/eng/content/download/1008631/2361759/498838 +AMS LGA +0 +20 +20 +Package_LGA +AMS_OLGA-8_2x3.1mm_P0.8mm +AMS OLGA, 8 Pin (https://ams.com/documents/20143/36005/AS7341_DS000504_3-00.pdf/#page=63) +AMS OLGA NoLead +0 +8 +8 +Package_LGA +Bosch_LGA-8_2.5x2.5mm_P0.65mm_ClockwisePinNumbering +LGA-8 +lga land grid array +0 +8 +8 +Package_LGA +Bosch_LGA-8_2x2.5mm_P0.65mm_ClockwisePinNumbering +LGA-8, https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMP280-DS001-18.pdf +lga land grid array +0 +8 +8 +Package_LGA +Bosch_LGA-8_3x3mm_P0.8mm_ClockwisePinNumbering +Bosch LGA, 8 Pin (https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME680-DS001-00.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py +Bosch LGA NoLead +0 +8 +8 +Package_LGA +Bosch_LGA-14_3x2.5mm_P0.5mm +LGA-14 Bosch https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMI160-DS000-07.pdf +lga land grid array +0 +14 +14 +Package_LGA +Kionix_LGA-12_2x2mm_P0.5mm_LayoutBorder2x4y +Kionix LGA, 12 Pin (http://kionixfs.kionix.com/en/document/TN008-PCB-Design-Guidelines-for-2x2-LGA-Sensors.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py +Kionix LGA NoLead +0 +12 +12 +Package_LGA +LGA-8_3x5mm_P1.25mm +LGA-8 +lga land grid array +0 +8 +8 +Package_LGA +LGA-12_2x2mm_P0.5mm +LGA12 +lga land grid array +0 +12 +12 +Package_LGA +LGA-14_2x2mm_P0.35mm_LayoutBorder3x4y +LGA, 14 Pin (http://www.st.com/resource/en/datasheet/lis2dh.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-14_3x2.5mm_P0.5mm_LayoutBorder3x4y +LGA, 14 Pin (https://www.st.com/resource/en/datasheet/lsm6ds3tr-c.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-14_3x5mm_P0.8mm_LayoutBorder1x6y +LGA, 14 Pin (http://www.st.com/resource/en/datasheet/lsm303dlhc.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +14 +14 +Package_LGA +LGA-16_3x3mm_P0.5mm +http://www.memsic.com/userfiles/files/DataSheets/Magnetic-Sensors-Datasheets/MMC5883MA-RevC.pdf +lga land grid array +0 +16 +16 +Package_LGA +LGA-16_3x3mm_P0.5mm_LayoutBorder3x5y +LGA, 16 Pin (http://www.st.com/resource/en/datasheet/lis331hh.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +16 +16 +Package_LGA +LGA-16_4x4mm_P0.65mm_LayoutBorder4x4y +LGA, 16 Pin (http://www.st.com/resource/en/datasheet/l3gd20.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +LGA NoLead +0 +16 +16 +Package_LGA +LGA-24L_3x3.5mm_P0.43mm +LGA 24L 3x3.5mm Pitch 0.43mm +LGA 24L 3x3.5mm Pitch 0.43mm +0 +24 +24 +Package_LGA +LGA-28_5.2x3.8mm_P0.5mm +LGA 28 5.2x3.8mm Pitch 0.5mm +LGA 28 5.2x3.8mm Pitch 0.5mm +0 +28 +28 +Package_LGA +Linear_LGA-133_15.0x15.0mm_Layout12x12_P1.27mm +Analog Devices (Linear Tech), 133-pin LGA uModule, 15.0x15.0x4.32mm, https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf +133 pin lga +0 +133 +133 +Package_LGA +NXP_LGA-8_3x5mm_P1.25mm_H1.1mm +NXP LGA, 8 Pin (https://www.nxp.com/docs/en/data-sheet/MPL3115A2.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py +NXP LGA NoLead +0 +8 +8 +Package_LGA +NXP_LGA-8_3x5mm_P1.25mm_H1.2mm +NXP LGA, 8 Pin (https://www.nxp.com/docs/en/data-sheet/MPL115A1.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py +NXP LGA NoLead +0 +8 +8 +Package_LGA +ST_HLGA-10_2.5x2.5mm_P0.6mm_LayoutBorder3x2y +ST HLGA, 10 Pin (https://www.st.com/resource/en/datasheet/lps25hb.pdf#page=46), generated with kicad-footprint-generator ipc_noLead_generator.py +ST HLGA NoLead +0 +10 +10 +Package_LGA +ST_HLGA-10_2x2mm_P0.5mm_LayoutBorder3x2y +ST HLGA, 10 Pin (https://www.st.com/resource/en/datasheet/lps22hh.pdf#page=55), generated with kicad-footprint-generator ipc_noLead_generator.py +ST HLGA NoLead +0 +10 +10 +Package_LGA +Texas_SIL0008D_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm +Texas SIL0008D MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82130.pdf#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +12 +9 +Package_LGA +Texas_SIL0008D_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm_ThermalVias +Texas SIL0008D MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82130.pdf#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +16 +9 +Package_LGA +Texas_SIL0010A_MicroSiP-10-1EP_3.8x3mm_P0.6mm_EP0.7x2.9mm +Texas SIL0010A MicroSiP, 10 Pin (http://www.ti.com/lit/ml/mpds579b/mpds579b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +14 +11 +Package_LGA +Texas_SIL0010A_MicroSiP-10-1EP_3.8x3mm_P0.6mm_EP0.7x2.9mm_ThermalVias +Texas SIL0010A MicroSiP, 10 Pin (http://www.ti.com/lit/ml/mpds579b/mpds579b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Texas MicroSiP NoLead +0 +18 +11 +Package_LGA +VLGA-4_2x2.5mm_P1.65mm +VLGA, 4 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/DSC60XX-Ultra-Small-Ultra-Low-Power-MEMS-Oscillator-DS20005625C.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +VLGA NoLead +0 +4 +4 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +154 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +171 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +161 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +187 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +165 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +196 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +175 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +218 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +194 +145 +Package_QFP +EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm_ThermalVias +EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +EQFP QFP +0 +259 +145 +Package_QFP +HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad +HTQFP-64 Pitch 0.5 +0 +69 +65 +Package_QFP +HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_Mask4.4x4.4mm_ThermalVias +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad +HTQFP-64 Pitch 0.5 +0 +135 +65 +Package_QFP +LQFP-32_5x5mm_P0.5mm +LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT401-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +32 +32 +Package_QFP +LQFP-32_7x7mm_P0.8mm +LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT358-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +32 +32 +Package_QFP +LQFP-36_7x7mm_P0.65mm +LQFP, 36 Pin (https://www.onsemi.com/pub/Collateral/561AV.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +36 +36 +Package_QFP +LQFP-44_10x10mm_P0.8mm +LQFP, 44 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ASS23225W.pdf?&fsrch=1), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +44 +44 +Package_QFP +LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm +LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +58 +49 +Package_QFP +LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm_ThermalVias +LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +75 +49 +Package_QFP +LQFP-48_7x7mm_P0.5mm +LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +48 +48 +Package_QFP +LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm +LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +62 +53 +Package_QFP +LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm_ThermalVias +LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +95 +53 +Package_QFP +LQFP-52_10x10mm_P0.65mm +LQFP, 52 Pin (https://www.nxp.com/docs/en/package-information/98ARL10526D.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +52 +52 +Package_QFP +LQFP-52_14x14mm_P1mm +LQFP, 52 Pin (http://www.holtek.com/documents/10179/116711/HT1632Cv170.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +52 +52 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +90 +65 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm_ThermalVias +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +107 +65 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm +LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +90 +65 +Package_QFP +LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm_ThermalVias +LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +127 +65 +Package_QFP +LQFP-64_7x7mm_P0.4mm +LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT414-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +64 +64 +Package_QFP +LQFP-64_10x10mm_P0.5mm +LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7606_7606-6_7606-4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +64 +64 +Package_QFP +LQFP-64_14x14mm_P0.8mm +LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT791-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +64 +64 +Package_QFP +LQFP-80_10x10mm_P0.4mm +LQFP, 80 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q80.10x10.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +80 +80 +Package_QFP +LQFP-80_12x12mm_P0.5mm +LQFP, 80 Pin (https://www.nxp.com/docs/en/package-information/SOT315-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +80 +80 +Package_QFP +LQFP-80_14x14mm_P0.65mm +LQFP, 80 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +80 +80 +Package_QFP +LQFP-100_14x14mm_P0.5mm +LQFP, 100 Pin (https://www.nxp.com/docs/en/package-information/SOT407-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +100 +100 +Package_QFP +LQFP-128_14x14mm_P0.4mm +LQFP, 128 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q128.14x14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +128 +128 +Package_QFP +LQFP-128_14x20mm_P0.5mm +LQFP, 128 Pin (https://www.nxp.com/docs/en/package-information/SOT425-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +128 +128 +Package_QFP +LQFP-144_20x20mm_P0.5mm +LQFP, 144 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=425), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +144 +144 +Package_QFP +LQFP-160_24x24mm_P0.5mm +LQFP, 160 Pin (https://www.nxp.com/docs/en/package-information/SOT435-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +160 +160 +Package_QFP +LQFP-176_20x20mm_P0.4mm +LQFP, 176 Pin (https://www.onsemi.com/pub/Collateral/566DB.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +176 +176 +Package_QFP +LQFP-176_24x24mm_P0.5mm +LQFP, 176 Pin (https://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=163), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +176 +176 +Package_QFP +LQFP-208_28x28mm_P0.5mm +LQFP, 208 Pin (https://www.nxp.com/docs/en/package-information/SOT459-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +208 +208 +Package_QFP +LQFP-216_24x24mm_P0.4mm +LQFP, 216 Pin (https://www.onsemi.com/pub/Collateral/561BE.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +LQFP QFP +0 +216 +216 +Package_QFP +MQFP-44_10x10mm_P0.8mm +MQFP, 44 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7722.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MQFP QFP +0 +44 +44 +Package_QFP +PQFP-32_5x5mm_P0.5mm +PQFP, 32 Pin (https://www.ti.com/lit/ds/symlink/ads127l01.pdf#page=87), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +32 +32 +Package_QFP +PQFP-44_10x10mm_P0.8mm +44-Lead Plastic Quad Flatpack - 10x10x2.5mm Body (http://www.onsemi.com/pub/Collateral/122BK.PDF) +PQFP 0.8 +0 +44 +44 +Package_QFP +PQFP-80_14x20mm_P0.8mm +PQFP80 14x20 / QIP80E CASE 122BS (see ON Semiconductor 122BS.PDF) +QFP 0.8 +0 +80 +80 +Package_QFP +PQFP-100_14x20mm_P0.65mm +PQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +100 +100 +Package_QFP +PQFP-112_20x20mm_P0.65mm +PQFP, 112 pins, 20mm sq body, 0.65mm pitch (http://cache.freescale.com/files/shared/doc/package_info/98ASS23330W.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) +PQFP 112 +0 +112 +112 +Package_QFP +PQFP-132_24x24mm_P0.635mm +PQFP, 132 pins, 24mm sq body, 0.635mm pitch (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) +PQFP 132 +0 +132 +132 +Package_QFP +PQFP-132_24x24mm_P0.635mm_i386 +PQFP, 132 pins, 24mm sq body, 0.635mm pitch, Intel 386EX (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) +PQFP 132 Intel 386EX +0 +132 +132 +Package_QFP +PQFP-144_28x28mm_P0.65mm +PQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +144 +144 +Package_QFP +PQFP-160_28x28mm_P0.65mm +PQFP, 160 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +160 +160 +Package_QFP +PQFP-208_28x28mm_P0.5mm +PQFP, 208 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +208 +208 +Package_QFP +PQFP-240_32.1x32.1mm_P0.5mm +PQFP, 240 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +PQFP QFP +0 +240 +240 +Package_QFP +PQFP-256_28x28mm_P0.4mm +PQFP256 28x28 / QFP256J CASE 122BX (see ON Semiconductor 122BX.PDF) +QFP 0.4 +0 +256 +256 +Package_QFP +TQFP-32_7x7mm_P0.8mm +32-Lead Plastic Thin Quad Flatpack (PT) - 7x7x1.0 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +32 +32 +Package_QFP +TQFP-44-1EP_10x10mm_P0.8mm_EP4.5x4.5mm +44-Lead Plastic Thin Quad Flatpack (MW) - 10x10x1.0 mm Body [TQFP] With 4.5x4.5 mm Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +54 +45 +Package_QFP +TQFP-44_10x10mm_P0.8mm +44-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1.0 mm Body [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +44 +44 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm +48-Lead Thin Quad Flatpack (PT) - 7x7x1.0 mm Body [TQFP] With Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.5 +0 +53 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +65 +49 +Package_QFP +TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm_ThermalVias +TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +91 +49 +Package_QFP +TQFP-48_7x7mm_P0.5mm +TQFP, 48 Pin (https://www.jedec.org/system/files/docs/MS-026D.pdf var ABC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +48 +48 +Package_QFP +TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm +TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), generated with kicad-footprint-generator ipc_qfp_generator.py +TQFP QFP +0 +78 +53 +Package_QFP +TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm_ThermalVias +TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), generated with kicad-footprint-generator ipc_qfp_generator.py +TQFP QFP +0 +79 +53 +Package_QFP +TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm +64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [TQFP] thermal pad +QFP 0.5 +0 +90 +65 +Package_QFP +TQFP-64_7x7mm_P0.4mm +TQFP64 7x7, 0.4P CASE 932BH (see ON Semiconductor 932BH.PDF) +QFP 0.4 +0 +64 +64 +Package_QFP +TQFP-64_10x10mm_P0.5mm +TQFP, 64 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +64 +64 +Package_QFP +TQFP-64_14x14mm_P0.8mm +64-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.8 +0 +64 +64 +Package_QFP +TQFP-80-1EP_14x14mm_P0.65mm_EP9.5x9.5mm +80-Lead Plastic Thin Quad Flatpack (PF) - 14x14mm body, 9.5mm sq thermal pad (http://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf) +QFP 0.65 +0 +85 +81 +Package_QFP +TQFP-80_12x12mm_P0.5mm +80-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.5 +0 +80 +80 +Package_QFP +TQFP-80_14x14mm_P0.65mm +80-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.65 +0 +80 +80 +Package_QFP +TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm +TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +117 +101 +Package_QFP +TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm_ThermalVias +TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +143 +101 +Package_QFP +TQFP-100_12x12mm_P0.4mm +100-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.4 +0 +100 +100 +Package_QFP +TQFP-100_14x14mm_P0.5mm +TQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +100 +100 +Package_QFP +TQFP-120_14x14mm_P0.4mm +TQFP120 14x14 / TQFP120 CASE 932AZ (see ON Semiconductor 932AZ.PDF) +QFP 0.4 +0 +120 +120 +Package_QFP +TQFP-128_14x14mm_P0.4mm +TQFP128 14x14 / TQFP128 CASE 932BB (see ON Semiconductor 932BB.PDF) +QFP 0.4 +0 +128 +128 +Package_QFP +TQFP-144_16x16mm_P0.4mm +144-Lead Plastic Thin Quad Flatpack (PH) - 16x16x1 mm Body, 2.00 mm Footprint [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) +QFP 0.4 +0 +144 +144 +Package_QFP +TQFP-144_20x20mm_P0.5mm +TQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +144 +144 +Package_QFP +TQFP-176_24x24mm_P0.5mm +TQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +TQFP QFP +0 +176 +176 +Package_QFP +VQFP-80_14x14mm_P0.65mm +VQFP, 80 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +80 +80 +Package_QFP +VQFP-100_14x14mm_P0.5mm +VQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +100 +100 +Package_QFP +VQFP-128_14x14mm_P0.4mm +VQFP, 128 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +128 +128 +Package_QFP +VQFP-176_20x20mm_P0.4mm +VQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py +VQFP QFP +0 +176 +176 +Package_SIP +PowerIntegrations_eSIP-7C +eSIP-7C Vertical Flat Package with Heatsink Tab, https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +Power Integrations E Package +0 +6 +6 +Package_SIP +PowerIntegrations_eSIP-7F +eSIP-7F Flat Package with Heatsink Tab https://ac-dc.power.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +Power Integrations L Package +0 +6 +6 +Package_SIP +SIP-8_19x3mm_P2.54mm +SIP 8-pin (http://www.njr.com/semicon/PDF/package/SIP8_E.pdf) +SIP8 +0 +8 +8 +Package_SIP +SIP-9_21.54x3mm_P2.54mm +SIP 9-pin () +SIP8 +0 +9 +9 +Package_SIP +SIP-9_22.3x3mm_P2.54mm +SIP 9-pin () +SIP8 +0 +9 +9 +Package_SIP +SIP3_11.6x8.5mm +RECOM,R78EXX,https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +SIP3 Regulator Module +0 +3 +3 +Package_SIP +SIP4_Sharp-SSR_P7.62mm_Angled +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +Package_SIP +SIP4_Sharp-SSR_P7.62mm_Angled_NoHole +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +Package_SIP +SIP4_Sharp-SSR_P7.62mm_Straight +SIP4 Footprint for SSR made by Sharp +Solid State relais SSR Sharp +0 +4 +4 +Package_SIP +SIP9_Housing +SIP9 +SIP9 +0 +9 +9 +Package_SIP +SIP9_Housing_BigPads +SIP9, large pads +SIP9 +0 +9 +9 +Package_SIP +SLA704XM +SIP SLA704XM (http://www.sumzi.com/upload/files/2007/07/2007073114282034189.PDF) +SIP +0 +18 +18 +Package_SIP +STK672-040-E +SIP-22 (http://www.onsemi.com/pub_link/Collateral/EN5227-D.PDF) +SIP-22 +0 +22 +22 +Package_SIP +STK672-080-E +SIP-15 (http://www.onsemi.com/pub_link/Collateral/EN6507-D.PDF) +SIP-15 +0 +15 +15 +Package_SIP +Sanyo_STK4xx-15_59.2x8.0mm_P2.54mm +Sanyo SIP-15, 59.2mm x 8.0mm bosy size, STK-433E STK-435E STK-436E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) +Sanyo SIP-15 +0 +15 +15 +Package_SIP +Sanyo_STK4xx-15_78.0x8.0mm_P2.54mm +Sanyo SIP-15, 78.0mm x 8.0mm bosy size, STK-437E STK-439E STK-441E STK-443E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) +Sanyo SIP-15 +0 +15 +15 +Package_SO +Diodes_PSOP-8 +8-Lead Plastic PSOP, Exposed Die Pad (see https://www.diodes.com/assets/Datasheets/AP2204.pdf) +SSOP 0.50 exposed pad +0 +12 +9 +Package_SO +Diodes_SO-8EP +8-Lead Plastic SO, Exposed Die Pad (see https://www.diodes.com/assets/Package-Files/SO-8EP.pdf) +SO exposed pad +0 +9 +9 +Package_SO +ETSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3x4.2mm +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body with Exposed Pad [eTSSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +27 +21 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.3x2.3mm +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l7980.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +13 +9 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.3x2.3mm_ThermalVias +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l7980.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +18 +9 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +13 +9 +Package_SO +HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm_ThermalVias +HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +20 +9 +Package_SO +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown +HSOP 11.0x15.9mm Pitch 1.27mm Slug Down (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +23 +21 +Package_SO +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown_ThermalVias +HSOP 11.0x15.9mm Pitch 1.27mm Slug Down Thermal Vias (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +45 +21 +Package_SO +HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugUp +HSOP 11.0x15.9mm Pitch 1.27mm Slug Up (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 1.27mm +0 +20 +20 +Package_SO +HSOP-32-1EP_7.5x11mm_P0.65mm_EP4.7x4.7mm +HSOP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT1746-3.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +37 +33 +Package_SO +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown +HSOP 11.0x15.9mm Pitch 0.65mm Slug Down (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +39 +37 +Package_SO +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown_ThermalVias +HSOP 11.0x15.9mm Pitch 0.65mm Slug Down Thermal Vias (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +61 +37 +Package_SO +HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugUp +HSOP 11.0x15.9mm Pitch 0.65mm Slug Up (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) +HSOP 11.0 x 15.9mm Pitch 0.65mm +0 +36 +36 +Package_SO +HSOP-54-1EP_7.5x17.9mm_P0.65mm_EP4.6x4.6mm +HSOP, 54 Pin (https://www.nxp.com/docs/en/package-information/98ASA10506D.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOP SO +0 +59 +55 +Package_SO +HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm +HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSOP SO +0 +13 +9 +Package_SO +HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm_ThermalVias +HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSOP SO +0 +20 +9 +Package_SO +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +20 +15 +Package_SO +HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm_ThermalVias +HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +36 +15 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf) +SSOP 0.65 +0 +29 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm +HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +20 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm_ThermalVias +HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +27 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3mm_ThermalVias +16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad with vias; (http://www.ti.com/lit/ds/symlink/drv8800.pdf) +SSOP 0.65 +0 +46 +17 +Package_SO +HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm +HTSSOP, 16 Pin (https://www.st.com/resource/en/datasheet/stp08cp05.pdf#page=20), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +21 +17 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.74x3.86mm +HTSSOP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4011fb.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +23 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.85x4mm +HTSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF U20E-1), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +23 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias +HTSSOP 0.65 +0 +29 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.4x3.7mm +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/bq24006.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +24 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +26 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +42 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias_HandSolder +HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +42 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm +HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +23 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm_ThermalVias +HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +42 +21 +Package_SO +HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_ThermalVias +20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias +HTSSOP 0.65 +0 +45 +21 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm +HTSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/stp16cp05.pdf#page=25), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +31 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x2.98mm +HTSSOP, 24 Pin (https://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +27 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x2.98mm_ThermalVias +HTSSOP, 24 Pin (https://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +49 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm +HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +28 +25 +Package_SO +HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm_ThermalVias +HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +47 +25 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm +HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +30 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm_ThermalVias +HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +41 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +39 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +40 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm_ThermalVias +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +55 +29 +Package_SO +HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_ThermalVias +HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad +TSSOP HTSSOP 0.65 thermal pad +0 +58 +29 +Package_SO +HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm +HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf) +SSOP 0.65 PowerPAD +0 +43 +33 +Package_SO +HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm_ThermalVias +HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf) +SSOP 0.65 PowerPAD +0 +83 +33 +Package_SO +HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm +HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=47&zoom=140,-67,15), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +46 +39 +Package_SO +HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm_ThermalVias +HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=47&zoom=140,-67,15), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +87 +39 +Package_SO +HTSSOP-44_6.1x14mm_P0.635mm_TopEP4.14x7.01mm +HTSSOP, 44 Pin (http://www.ti.com/lit/ds/symlink/tpa3251.pdf#page=38), generated with kicad-footprint-generator ipc_gullwing_generator.py +HTSSOP SO +0 +44 +44 +Package_SO +HTSSOP-56-1EP_6.1x14mm_P0.5mm_EP3.61x6.35mm +HTSSOP56: plastic thin shrink small outline package http://www.ti.com/lit/ds/symlink/drv8301.pdf +HTSSOP 0.5 +0 +72 +57 +Package_SO +HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.57x1.88mm +HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +15 +11 +Package_SO +HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.57x1.88mm_ThermalVias +HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HVSSOP SO +0 +20 +11 +Package_SO +Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm +Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +13 +9 +Package_SO +Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm_ThermalVias +Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), generated with kicad-footprint-generator ipc_gullwing_generator.py +Infineon PG-DSO SO +0 +23 +9 +Package_SO +Infineon_PG-DSO-8-43 +Infineon_PG-DSO-8-43 +DSO DSO-8 SOIC SOIC-8 +0 +12 +9 +Package_SO +Infineon_PG-DSO-12-9 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/) +PG-DSO +0 +23 +13 +Package_SO +Infineon_PG-DSO-12-9_ThermalVias +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/) +PG-DSO +0 +42 +13 +Package_SO +Infineon_PG-DSO-12-11 +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/) +PG-DSO +0 +23 +13 +Package_SO +Infineon_PG-DSO-12-11_ThermalVias +Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/) +PG-DSO +0 +42 +13 +Package_SO +Infineon_PG-DSO-20-30 +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/) +DSO-20 +0 +31 +21 +Package_SO +Infineon_PG-DSO-20-30_ThermalVias +Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/) +DSO-20 +0 +45 +21 +Package_SO +Infineon_PG-DSO-20-32 +Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-32/) +DSO-20 +0 +20 +20 +Package_SO +Infineon_PG-DSO-20-85 +Infineon SO package 20pin with exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-85/) +DSO-20 +0 +31 +21 +Package_SO +Infineon_PG-DSO-20-85_ThermalVias +Infineon SO package 20pin with exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-85/) +DSO-20 +0 +113 +21 +Package_SO +Infineon_PG-DSO-20-87 +Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-87/) +DSO-20 +0 +20 +20 +Package_SO +Infineon_PG-TSDSO-14-22 +Infineon_PG-TSDSO-14-22 +Infineon TSDSO 14-22 +0 +17 +15 +Package_SO +Linear_MSOP-12-16-1EP_3x4mm_P0.5mm +12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see http://cds.linear.com/docs/en/datasheet/3630fd.pdf) +SSOP 0.5 +0 +15 +13 +Package_SO +Linear_MSOP-12-16_3x4mm_P0.5mm +12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see https://www.analog.com/media/en/technical-documentation/data-sheets/3748fb.pdf) +SSOP 0.5 +0 +12 +12 +Package_SO +MFSOP6-4_4.4x3.6mm_P1.27mm +https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.4pin%20MFSOP6.html +MFSOP 4 pin SMD +0 +4 +4 +Package_SO +MFSOP6-5_4.4x3.6mm_P1.27mm +https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.5pin%20MFSOP6.html +MFSOP 4 pin SMD +0 +5 +5 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm +MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm_ThermalVias +MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm +MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm_ThermalVias +MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm +MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +13 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm_ThermalVias +MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +18 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm +MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +14 +9 +Package_SO +MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm_ThermalVias +MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +19 +9 +Package_SO +MSOP-8_3x3mm_P0.65mm +MSOP, 8 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +8 +8 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm +MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +15 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm_ThermalVias +MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +20 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm +MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +15 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm_ThermalVias +MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +20 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP2.2x3.1mm_Mask1.83x1.89mm +MSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/xtr111.pdf#page=27), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +16 +11 +Package_SO +MSOP-10-1EP_3x3mm_P0.5mm_EP2.2x3.1mm_Mask1.83x1.89mm_ThermalVias +MSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/xtr111.pdf#page=27), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +23 +11 +Package_SO +MSOP-10_3x3mm_P0.5mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +10 +10 +Package_SO +MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +17 +13 +Package_SO +MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm_ThermalVias +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +24 +13 +Package_SO +MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +19 +13 +Package_SO +MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +25 +13 +Package_SO +MSOP-12-16_3x4mm_P0.5mm +10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.5 +0 +12 +12 +Package_SO +MSOP-12_3x4mm_P0.65mm +MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/6957fb.pdf#page=36), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +12 +12 +Package_SO +MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm +MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +21 +17 +Package_SO +MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm_ThermalVias +MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +28 +17 +Package_SO +MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm +MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +21 +17 +Package_SO +MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias +MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +28 +17 +Package_SO +MSOP-16_3x4.039mm_P0.5mm +MSOP, 16 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081669_A_MS16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +16 +16 +Package_SO +MSOP-16_3x4mm_P0.5mm +MSOP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/436412f.pdf#page=22), generated with kicad-footprint-generator ipc_gullwing_generator.py +MSOP SO +0 +16 +16 +Package_SO +ONSemi_SO-8FL_488AA +ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A https://www.onsemi.com/pub/Collateral/488AA.PDF +ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A +0 +5 +5 +Package_SO +OnSemi_Micro8 +ON Semiconductor Micro8 (Case846A-02): https://www.onsemi.com/pub/Collateral/846A-02.PDF +micro8 +0 +8 +8 +Package_SO +PSOP-44_16.9x27.17mm_P1.27mm +PSOP44: plastic thin shrink small outline package; 44 leads; body width 16.90 mm +PSOP 1.27 +0 +44 +44 +Package_SO +PowerIntegrations_SO-8 +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://ac-dc.power.com/sites/default/files/product-docs/senzero_family_datasheet.pdf +SOIC 1.27 +0 +8 +8 +Package_SO +PowerIntegrations_SO-8B +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf +SOIC 1.27 +0 +7 +7 +Package_SO +PowerIntegrations_SO-8C +Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf +SOIC 1.27 +0 +7 +7 +Package_SO +PowerIntegrations_eSOP-12B +eSOP-12B SMT Flat Package with Heatsink Tab, see https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +Power Integrations K Package +0 +12 +12 +Package_SO +PowerPAK_SO-8_Dual +PowerPAK SO-8 Dual (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72600/72600.pdf) +PowerPAK SO-8 Dual +0 +10 +6 +Package_SO +PowerPAK_SO-8_Single +PowerPAK SO-8 Single (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72599/72599.pdf) +PowerPAK SO-8 Single +0 +9 +5 +Package_SO +QSOP-16_3.9x4.9mm_P0.635mm +16-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150" Body [QSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.635 +0 +16 +16 +Package_SO +QSOP-20_3.9x8.7mm_P0.635mm +20-Lead Plastic Shrink Small Outline Narrow Body (http://www.analog.com/media/en/technical-documentation/data-sheets/ADuM7640_7641_7642_7643.pdf) +QSOP 0.635 +0 +20 +20 +Package_SO +QSOP-24_3.9x8.7mm_P0.635mm +24-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150" Body [QSOP] (see Microchip Packaging Specification 00000049CH.pdf) +QSOP 0.635 +0 +24 +24 +Package_SO +SC-74-6_1.5x2.9mm_P0.95mm +SC-74, 6 Pin (https://www.nxp.com/docs/en/package-information/SOT457.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SC-74 SO +0 +6 +6 +Package_SO +SO-4_4.4x2.3mm_P1.27mm +4-Lead Plastic Small Outline (SO), see http://datasheet.octopart.com/OPIA403BTRE-Optek-datasheet-5328560.pdf +SO SOIC 1.27 +0 +4 +4 +Package_SO +SO-4_4.4x3.6mm_P2.54mm +4-Lead Plastic Small Outline (SO), see https://www.elpro.org/de/index.php?controller=attachment&id_attachment=339 +SO SOIC 2.54 +0 +4 +4 +Package_SO +SO-4_4.4x3.9mm_P2.54mm +SO, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=10047&prodName=TLP3123), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +4 +4 +Package_SO +SO-4_4.4x4.3mm_P2.54mm +4-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/docs/AV02-0173EN +SO SOIC 2.54 +0 +4 +4 +Package_SO +SO-4_7.6x3.6mm_P2.54mm +4-Lead Plastic Small Outline (SO) (http://www.everlight.com/file/ProductFile/201407061745083848.pdf) +SO SOIC 2.54 +0 +4 +4 +Package_SO +SO-5_4.4x3.6mm_P1.27mm +5-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SO SOIC 1.27 +0 +5 +5 +Package_SO +SO-6L_10x3.84mm_P1.27mm +6-pin plasic small outline 7,5mm long https://toshiba.semicon-storage.com/info/docget.jsp?did=53548&prodName=TLP2770 +SO-6L +0 +6 +6 +Package_SO +SO-6_4.4x3.6mm_P1.27mm +6-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SO SOIC 1.27 +0 +6 +6 +Package_SO +SO-8_3.9x4.9mm_P1.27mm +SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +8 +8 +Package_SO +SO-8_5.3x6.2mm_P1.27mm +SO, 8 Pin (https://www.ti.com/lit/ml/msop001a/msop001a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +8 +8 +Package_SO +SO-14_3.9x8.65mm_P1.27mm +SO, 14 Pin (https://www.st.com/resource/en/datasheet/l6491.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +14 +14 +Package_SO +SO-14_5.3x10.2mm_P1.27mm +SO, 14 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +14 +14 +Package_SO +SO-16_3.9x9.9mm_P1.27mm +SO, 16 Pin (https://www.nxp.com/docs/en/package-information/SOT109-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +16 +16 +Package_SO +SO-16_5.3x10.2mm_P1.27mm +SO, 16 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +16 +16 +Package_SO +SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm +SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +23 +21 +Package_SO +SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm_ThermalVias +SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +51 +21 +Package_SO +SO-20_5.3x12.6mm_P1.27mm +SO, 20 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +20 +20 +Package_SO +SO-20_12.8x7.5mm_P1.27mm +SO-20, 12.8x7.5mm, https://www.nxp.com/docs/en/data-sheet/SA605.pdf +S0-20 +0 +20 +20 +Package_SO +SO-24_5.3x15mm_P1.27mm +SO, 24 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SO SO +0 +24 +24 +Package_SO +SOIC-4_4.55x2.6mm_P1.27mm +SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12884&prodName=TLP291), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +4 +4 +Package_SO +SOIC-4_4.55x3.7mm_P2.54mm +SOIC, 6 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=11791&prodName=TLP185), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +4 +4 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm_ThermalVias +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm +SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm_ThermalVias +SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm_ThermalVias +SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm +SOIC, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP2303A/document_id/494#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm_ThermalVias +SOIC, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP2303A/document_id/494#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm +SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +14 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm_ThermalVias +SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +23 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm +SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +13 +9 +Package_SO +SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm_ThermalVias +SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +9 +Package_SO +SOIC-8-N7_3.9x4.9mm_P1.27mm +8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], pin 7 removed (Microchip Packaging Specification 00000049BS.pdf, http://www.onsemi.com/pub/Collateral/NCP1207B.PDF) +SOIC 1.27 +0 +7 +7 +Package_SO +SOIC-8W_5.3x5.3mm_P1.27mm +8-Lead Plastic Small Outline (SM) - 5.28 mm Body [SOIC] (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf) +SOIC 1.27 +0 +8 +8 +Package_SO +SOIC-8_3.9x4.9mm_P1.27mm +SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-8_5.23x5.23mm_P1.27mm +SOIC, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf#page=68), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-8_5.275x5.275mm_P1.27mm +SOIC, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20005045C.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-8_7.5x5.85mm_P1.27mm +SOIC, 8 Pin (http://www.ti.com/lit/ml/mpds382b/mpds382b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +8 +8 +Package_SO +SOIC-14-16_3.9x9.9mm_P1.27mm +SOIC, 16 Pin package with pin 2 and 13 removed for voltage clearance (UCC256301, https://www.ti.com/lit/ds/symlink/ucc256301.pdf) +SOIC SO +0 +14 +14 +Package_SO +SOIC-14W_7.5x9mm_P1.27mm +SOIC, 14 Pin (JEDEC MS-013AF, https://www.analog.com/media/en/package-pcb-resources/package/54614177245586rw_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +14 +14 +Package_SO +SOIC-14_3.9x8.7mm_P1.27mm +SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +14 +14 +Package_SO +SOIC-16W-12_7.5x10.3mm_P1.27mm +SOIC-16 With 12 Pin Placed - Wide, 7.50 mm Body [SOIC] (https://docs.broadcom.com/docs/AV02-0169EN) +SOIC 1.27 16 12 Wide +0 +12 +12 +Package_SO +SOIC-16W_5.3x10.2mm_P1.27mm +16-Lead Plastic Small Outline (SO) - Wide, 5.3 mm Body (http://www.ti.com/lit/ml/msop002a/msop002a.pdf) +SOIC 1.27 +0 +16 +16 +Package_SO +SOIC-16W_7.5x10.3mm_P1.27mm +SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16W_7.5x12.8mm_P1.27mm +SOIC, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ri_soic_ic/ri_16_1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16_3.9x9.9mm_P1.27mm +SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-16_4.55x10.3mm_P1.27mm +SOIC, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12858&prodName=TLP291-4), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +16 +16 +Package_SO +SOIC-18W_7.5x11.6mm_P1.27mm +SOIC, 18 Pin (JEDEC MS-013AB, https://www.analog.com/media/en/package-pcb-resources/package/33254132129439rw_18.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +18 +18 +Package_SO +SOIC-20W_7.5x12.8mm_P1.27mm +SOIC, 20 Pin (JEDEC MS-013AC, https://www.analog.com/media/en/package-pcb-resources/package/233848rw_20.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +20 +Package_SO +SOIC-20W_7.5x15.4mm_P1.27mm +SOIC, 20 Pin (JEDEC MS-013AD, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/RI_20_1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +20 +20 +Package_SO +SOIC-24W_7.5x15.4mm_P1.27mm +SOIC, 24 Pin (JEDEC MS-013AD, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/RW_24.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +24 +24 +Package_SO +SOIC-28W_7.5x17.9mm_P1.27mm +SOIC, 28 Pin (JEDEC MS-013AE, https://www.analog.com/media/en/package-pcb-resources/package/35833120341221rw_28.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +28 +28 +Package_SO +SOIC-28W_7.5x18.7mm_P1.27mm +SOIC, 28 Pin (https://www.akm.com/akm/en/file/datasheet/AK5394AVS.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOIC SO +0 +28 +28 +Package_SO +SOJ-36_10.16x23.49mm_P1.27mm +SOJ, 36 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOJ SO +0 +36 +36 +Package_SO +SOP-4_3.8x4.1mm_P2.54mm +SOP, 4 Pin (http://www.ixysic.com/home/pdfs.nsf/www/CPC1017N.pdf/$file/CPC1017N.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +4 +4 +Package_SO +SOP-4_4.4x2.6mm_P1.27mm +SOP, 4 Pin (http://www.vishay.com/docs/83510/tcmt1100.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +4 +4 +Package_SO +SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +13 +9 +Package_SO +SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm_ThermalVias +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +20 +9 +Package_SO +SOP-8_3.9x4.9mm_P1.27mm +SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=79), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_3.76x4.96mm_P1.27mm +SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX211.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_5.28x5.23mm_P1.27mm +SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=80), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-8_6.62x9.15mm_P2.54mm +SOP, 8 Pin (http://www.ti.com/lit/ds/symlink/iso1050.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +8 +8 +Package_SO +SOP-16_3.9x9.9mm_P1.27mm +SOP, 16 Pin (https://www.diodes.com/assets/Datasheets/PAM8403.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +16 +16 +Package_SO +SOP-16_4.4x10.4mm_P1.27mm +16-Lead Plastic Small Outline http://www.vishay.com/docs/49633/sg2098.pdf +SOP 1.27 +0 +16 +16 +Package_SO +SOP-16_4.55x10.3mm_P1.27mm +SOP, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12855&prodName=TLP290-4), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +16 +16 +Package_SO +SOP-18_7x12.5mm_P1.27mm +SOP, 18 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=30523), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +18 +18 +Package_SO +SOP-20_7.5x12.8mm_P1.27mm +SOP, 20 Pin (https://www.holtek.com/documents/10179/116723/sop20-300.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +20 +20 +Package_SO +SOP-24_7.5x15.4mm_P1.27mm +SOP, 24 Pin (http://www.issi.com/WW/pdf/31FL3218.pdf#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOP SO +0 +24 +24 +Package_SO +SSO-4_6.7x5.1mm_P2.54mm_Clearance8mm +4-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/84299/vor1142b4.pdf +SSO Stretched SO SOIC 2.54 +0 +4 +4 +Package_SO +SSO-6_6.8x4.6mm_P1.27mm_Clearance7mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC 1.27 +0 +6 +6 +Package_SO +SSO-6_6.8x4.6mm_P1.27mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC 1.27 +0 +6 +6 +Package_SO +SSO-7-8_6.4x9.78mm_P2.54mm +SSO, 7 Pin (https://b2b-api.panasonic.eu/file_stream/pids/fileversion/2787), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSO SO +0 +7 +7 +Package_SO +SSO-8_6.7x9.8mm_P2.54mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/83831/lh1533ab.pdf +SSO Stretched SO SOIC Pitch 2.54 +0 +8 +8 +Package_SO +SSO-8_6.8x5.9mm_P1.27mm_Clearance7mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSO-8_6.8x5.9mm_P1.27mm_Clearance8mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSO-8_9.6x6.3mm_P1.27mm_Clearance10.5mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSO-8_13.6x6.3mm_P1.27mm_Clearance14.2mm +8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true +SSO Stretched SO SOIC Pitch 1.27 +0 +8 +8 +Package_SO +SSOP-8_2.95x2.8mm_P0.65mm +SSOP-8 2.9 x2.8mm Pitch 0.65mm +SSOP-8 2.95x2.8mm Pitch 0.65mm +0 +8 +8 +Package_SO +SSOP-8_3.9x5.05mm_P1.27mm +SSOP, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +8 +8 +Package_SO +SSOP-8_3.95x5.21x3.27mm_P1.27mm +SSOP-8 3.95x5.21x3.27mm Pitch 1.27mm +SSOP-8 3.95x5.21x3.27mm 1.27mm +0 +8 +8 +Package_SO +SSOP-8_5.25x5.24mm_P1.27mm +SSOP, 8 Pin (http://www.fujitsu.com/ca/en/Images/MB85RS2MT-DS501-00023-1v0-E.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +8 +8 +Package_SO +SSOP-10_3.9x4.9mm_P1.00mm +10-Lead SSOP, 3.9 x 4.9mm body, 1.00mm pitch (http://www.st.com/resource/en/datasheet/viper01.pdf) +SSOP 3.9 4.9 1.00 +0 +10 +10 +Package_SO +SSOP-14_5.3x6.2mm_P0.65mm +SSOP14: plastic shrink small outline package; 14 leads; body width 5.3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot337-1_po.pdf) +SSOP 0.65 +0 +14 +14 +Package_SO +SSOP-16_3.9x4.9mm_P0.635mm +SSOP16: plastic shrink small outline package; 16 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot519-1_po.pdf) +SSOP 0.635 +0 +16 +16 +Package_SO +SSOP-16_4.4x5.2mm_P0.65mm +SSOP16: plastic shrink small outline package; 16 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot369-1_po.pdf) +SSOP 0.65 +0 +16 +16 +Package_SO +SSOP-16_5.3x6.2mm_P0.65mm +SSOP, 16 Pin (https://assets.nexperia.com/documents/data-sheet/74HC_HCT165.pdf#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +16 +16 +Package_SO +SSOP-18_4.4x6.5mm_P0.65mm +SSOP18: plastic shrink small outline package; 18 leads; body width 4.4 mm (http://toshiba.semicon-storage.com/info/docget.jsp?did=30523&prodName=TBD62783APG) +SSOP 0.65 +0 +18 +18 +Package_SO +SSOP-20_3.9x8.7mm_P0.635mm +SSOP20: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT231X.pdf) +SSOP 0.635 +0 +20 +20 +Package_SO +SSOP-20_4.4x6.5mm_P0.65mm +SSOP20: plastic shrink small outline package; 20 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot266-1_po.pdf) +SSOP 0.65 +0 +20 +20 +Package_SO +SSOP-20_5.3x7.2mm_P0.65mm +SSOP, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001800C.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +20 +20 +Package_SO +SSOP-24_3.9x8.7mm_P0.635mm +SSOP24: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot556-1_po.pdf) +SSOP 0.635 +0 +24 +24 +Package_SO +SSOP-24_5.3x8.2mm_P0.65mm +24-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +24 +24 +Package_SO +SSOP-28_3.9x9.9mm_P0.635mm +SSOP28: plastic shrink small outline package; 28 leads; body width 3.9 mm; lead pitch 0.635; (see http://cds.linear.com/docs/en/datasheet/38901fb.pdf) +SSOP 0.635 +0 +28 +28 +Package_SO +SSOP-28_5.3x10.2mm_P0.65mm +28-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf) +SSOP 0.65 +0 +28 +28 +Package_SO +SSOP-32_11.305x20.495mm_P1.27mm +SSOP, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +32 +32 +Package_SO +SSOP-44_5.3x12.8mm_P0.5mm +44-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (http://cds.linear.com/docs/en/datasheet/680313fa.pdf) +SSOP 0.5 +0 +44 +44 +Package_SO +SSOP-48_5.3x12.8mm_P0.5mm +SSOP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-ssop/05081887_A_G48.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +SSOP SO +0 +48 +48 +Package_SO +SSOP-48_7.5x15.9mm_P0.635mm +SSOP48: plastic shrink small outline package; 48 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot370-1_po.pdf) +SSOP 0.635 +0 +48 +48 +Package_SO +SSOP-56_7.5x18.5mm_P0.635mm +SSOP56: plastic shrink small outline package; 56 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot371-1_po.pdf) +SSOP 0.635 +0 +56 +56 +Package_SO +STC_SOP-16_3.9x9.9mm_P1.27mm +STC SOP, 16 Pin (https://www.stcmicro.com/datasheet/STC15F2K60S2-en.pdf#page=156), generated with kicad-footprint-generator ipc_gullwing_generator.py +STC SOP SO +0 +16 +16 +Package_SO +ST_MultiPowerSO-30 +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm (http://www.st.com/resource/en/datasheet/vnh2sp30-e.pdf) +MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm +0 +33 +33 +Package_SO +ST_PowerSSO-24_SlugDown +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +25 +25 +Package_SO +ST_PowerSSO-24_SlugDown_ThermalVias +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +38 +25 +Package_SO +ST_PowerSSO-24_SlugUp +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm +0 +24 +24 +Package_SO +ST_PowerSSO-36_SlugDown +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +37 +37 +Package_SO +ST_PowerSSO-36_SlugDown_ThermalVias +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +50 +37 +Package_SO +ST_PowerSSO-36_SlugUp +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) +ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm +0 +36 +36 +Package_SO +TI_SO-PowerPAD-8 +8-Lead Plastic PSOP, Exposed Die Pad (TI DDA0008B, see http://www.ti.com/lit/ds/symlink/lm3404.pdf) +SSOP 0.50 exposed pad +0 +12 +9 +Package_SO +TI_SO-PowerPAD-8_ThermalVias +8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mmยฒ body, exposed pad, thermal vias with large copper area, as proposed in http://www.ti.com/lit/ds/symlink/tps5430.pdf +HTSOP 1.27 +0 +19 +9 +Package_SO +TSOP-5_1.65x3.05mm_P0.95mm +TSOP-5 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf +Jedec MO-193C TSOP-5L +0 +5 +5 +Package_SO +TSOP-6_1.65x3.05mm_P0.95mm +TSOP-6 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf +Jedec MO-193C TSOP-6L +0 +6 +6 +Package_SO +TSOP-I-24_12.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_14.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_16.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-24_18.4x6mm_P0.5mm +TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +24 +24 +Package_SO +TSOP-I-28_11.8x8mm_P0.55mm +TSOP I, 28 pins, 18.8x8mm body, 0.55mm pitch, IPC-calculated pads (http://ww1.microchip.com/downloads/en/devicedoc/doc0807.pdf) +TSOP I 28 pins +0 +28 +28 +Package_SO +TSOP-I-32_11.8x8mm_P0.5mm +TSOP-I, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_12.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_14.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_16.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_18.4x8mm_P0.5mm +TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +32 +32 +Package_SO +TSOP-I-32_18.4x8mm_P0.5mm_Reverse +TSOP I, 32 pins, 18.4x8mm body (http://www.futurlec.com/Datasheet/Memory/628128.pdf), reverse mount +TSOP I 32 reverse +0 +32 +32 +Package_SO +TSOP-I-40_12.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_14.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_16.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-40_18.4x10mm_P0.5mm +TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +40 +40 +Package_SO +TSOP-I-48_12.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_14.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_16.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-48_18.4x12mm_P0.5mm +TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DD), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +48 +48 +Package_SO +TSOP-I-56_14.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-I-56_16.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-I-56_18.4x14mm_P0.5mm +TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EC), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-I SO +0 +56 +56 +Package_SO +TSOP-II-32_21.0x10.2mm_P1.27mm +32-lead plastic TSOP; Type II +TSOP-II 32 +0 +32 +32 +Package_SO +TSOP-II-44_10.16x18.41mm_P0.8mm +TSOP-II, 44 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOP-II SO +0 +44 +44 +Package_SO +TSOP-II-54_22.2x10.16mm_P0.8mm +54-lead TSOP typ II package +TSOPII TSOP2 +0 +54 +54 +Package_SO +TSSOP-4_4.4x5mm_P4mm +TSSOP, 4 Pin (https://www.onsemi.com/pub/Collateral/MDB8S-D.PDF#page=4), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +4 +4 +Package_SO +TSSOP-8_3x3mm_P0.65mm +TSSOP8: plastic thin shrink small outline package; 8 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot505-1_po.pdf) +SSOP 0.65 +0 +8 +8 +Package_SO +TSSOP-8_4.4x3mm_P0.65mm +TSSOP, 8 Pin (JEDEC MO-153 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +8 +8 +Package_SO +TSSOP-10_3x3mm_P0.5mm +TSSOP10: plastic thin shrink small outline package; 10 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot552-1_po.pdf) +SSOP 0.5 +0 +10 +10 +Package_SO +TSSOP-14-1EP_4.4x5mm_P0.65mm +14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf) +SSOP 0.65 exposed pad +0 +18 +15 +Package_SO +TSSOP-14_4.4x3.6mm_P0.4mm +TSSOP, 14 Pin (JEDEC MO-194 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +14 +14 +Package_SO +TSSOP-14_4.4x5mm_P0.65mm +TSSOP, 14 Pin (JEDEC MO-153 Var AB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +14 +14 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm +FE Package; 16-Lead Plastic TSSOP (4.4mm); Exposed Pad Variation BB; (see Linear Technology 1956f.pdf) +SSOP 0.65 +0 +24 +17 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm +TSSOP, 16 Pin (Allegro A4954 https://www.allegromicro.com/-/media/Files/Datasheets/A4954-Datasheet.ashx), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +21 +17 +Package_SO +TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm_ThermalVias +TSSOP, 16 Pin (Allegro A4954 https://www.allegromicro.com/-/media/Files/Datasheets/A4954-Datasheet.ashx), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +26 +17 +Package_SO +TSSOP-16_4.4x3.6mm_P0.4mm +TSSOP, 16 Pin (JEDEC MO-194 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +16 +16 +Package_SO +TSSOP-16_4.4x5mm_P0.65mm +TSSOP, 16 Pin (JEDEC MO-153 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +16 +16 +Package_SO +TSSOP-20_4.4x5mm_P0.4mm +TSSOP, 20 Pin (JEDEC MO-194 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-20_4.4x5mm_P0.5mm +TSSOP, 20 Pin (JEDEC MO-153 Var BA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-20_4.4x6.5mm_P0.65mm +TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +20 +20 +Package_SO +TSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm +TSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=37), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +31 +25 +Package_SO +TSSOP-24_4.4x5mm_P0.4mm +TSSOP, 24 Pin (JEDEC MO-153 Var CA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-24_4.4x6.5mm_P0.5mm +TSSOP, 24 Pin (JEDEC MO-153 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-24_4.4x7.8mm_P0.65mm +TSSOP, 24 Pin (JEDEC MO-153 Var AD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-24_6.1x7.8mm_P0.65mm +TSSOP, 24 Pin (JEDEC MO-153 Var DA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +24 +24 +Package_SO +TSSOP-28-1EP_4.4x9.7mm_P0.65mm +TSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; Exposed Pad Variation; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot361-1_po.pdf) +SSOP 0.65 +0 +36 +29 +Package_SO +TSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x6.7mm +TSSOP, 28 Pin (JEDEC MO-153 Var AET Pkg.Code U28E-4 https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +35 +29 +Package_SO +TSSOP-28_4.4x7.8mm_P0.5mm +TSSOP, 28 Pin (JEDEC MO-153 Var BC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_4.4x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var AE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_6.1x7.8mm_P0.5mm +TSSOP, 28 Pin (JEDEC MO-153 Var EA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_6.1x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var DB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-28_8x9.7mm_P0.65mm +TSSOP, 28 Pin (JEDEC MO-153 Var GA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +28 +28 +Package_SO +TSSOP-30_4.4x7.8mm_P0.5mm +TSSOP, 30 Pin (JEDEC MO-153 Var BC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +30 +30 +Package_SO +TSSOP-30_6.1x9.7mm_P0.65mm +TSSOP, 30 Pin (JEDEC MO-153 Var DB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +30 +30 +Package_SO +TSSOP-32_4.4x6.5mm_P0.4mm +TSSOP, 32 Pin (JEDEC MO-153 Var CB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-32_6.1x11mm_P0.65mm +TSSOP, 32 Pin (JEDEC MO-153 Var DC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-32_8x11mm_P0.65mm +TSSOP, 32 Pin (JEDEC MO-153 Var GB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +32 +32 +Package_SO +TSSOP-36_4.4x7.8mm_P0.4mm +TSSOP, 36 Pin (JEDEC MO-153 Var CC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_4.4x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x7.8mm_P0.4mm +TSSOP, 36 Pin (JEDEC MO-153 Var FA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var EB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_6.1x12.5mm_P0.65mm +TSSOP, 36 Pin (JEDEC MO-153 Var DD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_8x9.7mm_P0.5mm +TSSOP, 36 Pin (JEDEC MO-153 Var HA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-36_8x12.5mm_P0.65mm +TSSOP, 36 Pin (JEDEC MO-153 Var GC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +36 +36 +Package_SO +TSSOP-38_4.4x9.7mm_P0.5mm +TSSOP, 38 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +38 +38 +Package_SO +TSSOP-38_6.1x12.5mm_P0.65mm +TSSOP, 38 Pin (JEDEC MO-153 Var DD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +38 +38 +Package_SO +TSSOP-40_6.1x11mm_P0.5mm +TSSOP, 40 Pin (JEDEC MO-153 Var EC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_6.1x14mm_P0.65mm +TSSOP, 40 Pin (JEDEC MO-153 Var DE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_8x11mm_P0.5mm +TSSOP, 40 Pin (JEDEC MO-153 Var HB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-40_8x14mm_P0.65mm +TSSOP, 40 Pin (JEDEC MO-153 Var GD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +40 +40 +Package_SO +TSSOP-44_4.4x11.2mm_P0.5mm +TSSOP44: plastic thin shrink small outline package; 44 leads; body width 4.4 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot510-1_po.pdf) +SSOP 0.5 +0 +44 +44 +Package_SO +TSSOP-44_4.4x11mm_P0.5mm +TSSOP, 44 Pin (JEDEC MO-153 Var BE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +44 +44 +Package_SO +TSSOP-44_6.1x11mm_P0.5mm +TSSOP, 44 Pin (JEDEC MO-153 Var EC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +44 +44 +Package_SO +TSSOP-48_4.4x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var CD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_6.1x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var FB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_6.1x12.5mm_P0.5mm +TSSOP, 48 Pin (JEDEC MO-153 Var ED https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_8x9.7mm_P0.4mm +TSSOP, 48 Pin (JEDEC MO-153 Var JA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-48_8x12.5mm_P0.5mm +TSSOP, 48 Pin (JEDEC MO-153 Var HC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +48 +48 +Package_SO +TSSOP-50_4.4x12.5mm_P0.5mm +TSSOP, 50 Pin (JEDEC MO-153 Var BF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +50 +50 +Package_SO +TSSOP-52_6.1x11mm_P0.4mm +TSSOP, 52 Pin (JEDEC MO-153 Var FC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +52 +52 +Package_SO +TSSOP-52_8x11mm_P0.4mm +TSSOP, 52 Pin (JEDEC MO-153 Var JB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +52 +52 +Package_SO +TSSOP-56_4.4x11.3mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-194 Var AF https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_6.1x12.5mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-153 Var FD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_6.1x14mm_P0.5mm +TSSOP, 56 Pin (JEDEC MO-153 Var EE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_8x12.5mm_P0.4mm +TSSOP, 56 Pin (JEDEC MO-153 Var JC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-56_8x14mm_P0.5mm +TSSOP, 56 Pin (JEDEC MO-153 Var HD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +56 +56 +Package_SO +TSSOP-60_8x12.5mm_P0.4mm +TSSOP, 60 Pin (JEDEC MO-153 Var JC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +60 +60 +Package_SO +TSSOP-64_6.1x14mm_P0.4mm +TSSOP, 64 Pin (JEDEC MO-153 Var FE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-64_6.1x17mm_P0.5mm +TSSOP, 64 Pin (JEDEC MO-153 Var EF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-64_8x14mm_P0.4mm +TSSOP, 64 Pin (JEDEC MO-153 Var JD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +64 +64 +Package_SO +TSSOP-68_8x14mm_P0.4mm +TSSOP, 68 Pin (JEDEC MO-153 Var JD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +68 +68 +Package_SO +TSSOP-80_6.1x17mm_P0.4mm +TSSOP, 80 Pin (JEDEC MO-153 Var FF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +80 +80 +Package_SO +TSSOP-100_6.1x20.8mm_P0.4mm +TSSOP, 100 Pin (JEDEC MO-194 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSSOP SO +0 +100 +100 +Package_SO +Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm +Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf) +HSOP 1.27 +0 +11 +9 +Package_SO +Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm_ThermalVias +Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, thermal vias, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf) +HSOP 1.27 +0 +20 +9 +Package_SO +Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias +8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm body, exposed pad, thermal vias, http://www.ti.com/lit/ds/symlink/drv8870.pdf +HTSOP 1.27 +0 +18 +9 +Package_SO +Texas_PWP0020A +20-Pin Thermally Enhanced Thin Shrink Small-Outline Package, Body 4.4x6.5x1.1mm, Pad 3.0x4.2mm, Texas Instruments (see http://www.ti.com/lit/ds/symlink/lm5118.pdf) +PWP HTSSOP 0.65mm +0 +25 +21 +Package_SO +Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm +HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOIC SO +0 +16 +9 +Package_SO +Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias +HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +HSOIC SO +0 +23 +9 +Package_SO +Texas_R-PDSO-N5 +Plastic Small outline http://www.ti.com/lit/ml/mpds158c/mpds158c.pdf +SOT23 R-PDSO-N5 +0 +5 +5 +Package_SO +VSO-40_7.6x15.4mm_P0.762mm +VSO40: plastic very small outline package; 40 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot158-1_po.pdf) +SSOP 0.762 +0 +40 +40 +Package_SO +VSO-56_11.1x21.5mm_P0.75mm +VSO56: plastic very small outline package; 56 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot190-1_po.pdf) +SSOP 0.75 +0 +56 +56 +Package_SO +VSSOP-8_2.3x2mm_P0.5mm +VSSOP-8 2.3x2mm Pitch 0.5mm +VSSOP-8 2.3x2mm Pitch 0.5mm +0 +8 +8 +Package_SO +VSSOP-8_2.4x2.1mm_P0.5mm +http://www.ti.com/lit/ml/mpds050d/mpds050d.pdf +VSSOP DCU R-PDSO-G8 Pitch0.5mm +0 +8 +8 +Package_SO +VSSOP-8_3.0x3.0mm_P0.65mm +VSSOP-8 3.0 x 3.0, http://www.ti.com/lit/ds/symlink/lm75b.pdf +VSSOP-8 3.0 x 3.0 +0 +8 +8 +Package_SO +VSSOP-10_3x3mm_P0.5mm +VSSOP, 10 Pin (http://www.ti.com/lit/ds/symlink/ads1115.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +VSSOP SO +0 +10 +10 +Package_SO +Vishay_PowerPAK_1212-8_Dual +PowerPAK 1212-8 Dual (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72598/72598.pdf) +Vishay_PowerPAK_1212-8_Dual +0 +6 +6 +Package_SO +Vishay_PowerPAK_1212-8_Single +PowerPAK 1212-8 Single (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72597/72597.pdf) +Vishay PowerPAK 1212-8 Single +0 +5 +5 +Package_SO +Zetex_SM8 +Zetex, SMD, 8 pin package (http://datasheet.octopart.com/ZDT6758TA-Zetex-datasheet-68057.pdf) +Zetex SM8 +0 +8 +8 +Package_SON +Diodes_PowerDI3333-8 +Diodes Incorporated PowerDI3333-8, Plastic Dual Flat No Lead Package, 3.3x3.3x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8.pdf +PowerDI 0.65 +0 +13 +5 +Package_SON +Fairchild_DualPower33-6_3x3mm +Fairchild Power33 MOSFET package, 3x3mm (see https://www.fairchildsemi.com/datasheets/FD/FDMC8032L.pdf) +mosfet +0 +18 +6 +Package_SON +Fairchild_MicroPak-6_1.0x1.45mm_P0.5mm +Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm https://www.nxp.com/docs/en/application-note/AN10343.pdff +Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm +0 +6 +6 +Package_SON +Fairchild_MicroPak2-6_1.0x1.0mm_P0.35mm +Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm https://www.nxp.com/docs/en/application-note/AN10343.pdff +Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm +0 +6 +6 +Package_SON +HUSON-3-1EP_2x2mm_P1.3mm_EP1.1x1.6mm +HUSON, 3 Pin, SOT1061 (Ref: https://assets.nexperia.com/documents/data-sheet/PMEG2020CPA.pdf) +huson nolead SOT1061 +0 +4 +3 +Package_SON +HVSON-8-1EP_3x3mm_P0.65mm_EP1.6x2.4mm +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/TJA1051.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py +HVSON NoLead +0 +13 +9 +Package_SON +HVSON-8-1EP_4x4mm_P0.8mm_EP2.2x3.1mm +HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf (page 57)), generated with kicad-footprint-generator ipc_noLead_generator.py +HVSON NoLead +0 +13 +9 +Package_SON +Infineon_PG-LSON-8-1 +https://www.infineon.com/cms/en/product/packages/PG-LSON/PG-LSON-8-1/ +PG-LSON-8-1 +0 +17 +9 +Package_SON +Infineon_PG-TDSON-8_6.15x5.15mm +Infineon, PG-TDSON-8, 6.15x5.15x1mm, https://www.infineon.com/dgdl/Infineon-BSC520N15NS3_-DS-v02_02-en.pdf?fileId=db3a30432239cccd0122eee57d9b21a4 +Infineon OptiMOS +0 +21 +5 +Package_SON +Infineon_PG-TISON-8-2 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/ +tison +0 +23 +7 +Package_SON +Infineon_PG-TISON-8-3 +Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/ +tison +0 +23 +7 +Package_SON +Infineon_PG-TISON-8-4 +Infineon, PG-TISON-8-4, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-4/ +tison +0 +26 +8 +Package_SON +Infineon_PG-TISON-8-5 +Infineon, PG-TISON-8-5, 8x8x1.1mm, 1mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-5/ +tison +0 +34 +8 +Package_SON +NXP_XSON-16 +http://www.nxp.com/documents/outline_drawing/SOT1341-1.pdf +NXP XSON SOT-1341 +0 +16 +16 +Package_SON +ROHM_VML0806 +VML0806, Rohm (http://rohmfs.rohm.com/en/techdata_basic/transistor/soldering_condition/VML0806_Soldering_Condition.pdf, http://rohmfs.rohm.com/en/products/databook/package/spec/discrete/vml0806_tr-e.pdf) +ROHM VML0806 +0 +3 +3 +Package_SON +RTC_SMD_MicroCrystal_C3_2.5x3.7mm +MicroCrystal C3 2.5x3.7mm, https://www.microcrystal.com/fileadmin/Media/Products/RTC/Datasheet/RV-1805-C3.pdf +RTC C3 +0 +10 +10 +Package_SON +SON-8-1EP_3x2mm_P0.5mm_EP1.4x1.6mm +SON, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +SON NoLead +0 +13 +9 +Package_SON +Texas_DQK +Texas WSON-6 DQK, http://www.ti.com/lit/ds/symlink/csd16301q2.pdf +Texas WSON6 2x2mm +0 +10 +8 +Package_SON +Texas_DRC0010J +Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf +Texas VSON10 3x3mm +0 +17 +11 +Package_SON +Texas_DRC0010J_ThermalVias +Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf +Texas VSON10 3x3mm +0 +21 +11 +Package_SON +Texas_DSC0010J +3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 DSC0010J WSON +0 +33 +11 +Package_SON +Texas_DSC0010J_ThermalVias +3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 DSC0010J WSON +0 +39 +11 +Package_SON +Texas_PWSON-N6 +Plastic Small Outline No-Lead http://www.ti.com/lit/ml/mpds176e/mpds176e.pdf +Plastic Small Outline No-Lead +0 +7 +7 +Package_SON +Texas_R-PWSON-N12_EP0.4x2mm +http://www.ti.com/lit/ds/symlink/tpd6f003.pdf +WSON SMD +0 +16 +13 +Package_SON +Texas_S-PDSO-N12 +http://www.ti.com/lit/ds/symlink/bq27441-g1.pdf +SON thermal pads +0 +44 +13 +Package_SON +Texas_S-PVSON-N8 +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf +DFN 0.65 S-PVSON-N8 +0 +21 +9 +Package_SON +Texas_S-PVSON-N8_ThermalVias +8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf +DFN 0.65 S-PVSON-N8 +0 +27 +9 +Package_SON +Texas_S-PVSON-N10 +3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 S-PVSON-N10 DRC +0 +33 +11 +Package_SON +Texas_S-PVSON-N10_ThermalVias +3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf +0.5 S-PVSON-N10 DRC +0 +39 +11 +Package_SON +Texas_S-PWSON-N8_EP1.2x2mm +WSON, 8 Pin, TI DRG, (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +11 +9 +Package_SON +Texas_S-PWSON-N10 +3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf +0.5 S-PWSON-N10 DSC +0 +41 +11 +Package_SON +Texas_S-PWSON-N10_ThermalVias +3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf +0.5 S-PWSON-N10 DSC +0 +47 +11 +Package_SON +Texas_X2SON-4_1x1mm_P0.65mm +X2SON 5 pin 1x1mm package (Reference Datasheet: http://www.ti.com/lit/ds/sbvs193d/sbvs193d.pdf Reference part: TPS383x) [StepUp generated footprint] +X2SON +0 +13 +5 +Package_SON +USON-10_2.5x1.0mm_P0.5mm +USON-10 2.5x1.0mm_ Pitch 0.5mm http://www.ti.com/lit/ds/symlink/tpd4e02b04.pdf +USON-10 2.5x1.0mm Pitch 0.5mm +0 +10 +10 +Package_SON +USON-20_2x4mm_P0.4mm +USON-20 2x4mm Pitch 0.4mm http://www.ti.com/lit/ds/symlink/txb0108.pdf +USON-20 2x4mm Pitch 0.4mm +0 +20 +20 +Package_SON +VSON-8_3.3x3.3mm_P0.65mm_NexFET +8-Lead Plastic Dual Flat, No Lead Package (MF) - 3.3x3.3x1 mm Body [VSON] http://www.ti.com/lit/ds/symlink/csd87334q3d.pdf +VSON 0.65 +0 +13 +5 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm +VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +15 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias +VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py +VSON NoLead +0 +18 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm +0 +21 +11 +Package_SON +VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm_ThermalVias +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument +VSON 10 Thermal on 11 3x3mm Pitch 0.5mm +0 +27 +11 +Package_SON +VSONP-8-1EP_5x6_P1.27mm +SON, 8-Leads, Body 5x6x1mm, Pitch 1.27mm; (see Texas Instruments CSD18531Q5A http://www.ti.com/lit/ds/symlink/csd18531q5a.pdf) +VSONP 1.27 +0 +13 +3 +Package_SON +WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm +WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +9 +7 +Package_SON +WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm_ThermalVias +WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +12 +7 +Package_SON +WSON-6-1EP_3x3mm_P0.95mm +WSON6 3*3 MM, 0.95 PITCH; http://www.ti.com/lit/ds/symlink/lmr62421.pdf +WSON6 0.95 +0 +10 +7 +Package_SON +WSON-6_1.5x1.5mm_P0.5mm +WSON6, http://www.ti.com/lit/ds/symlink/tlv702.pdf +WSON6_1.5x1.5mm_P0.5mm +0 +6 +6 +Package_SON +WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf +WSON 8 1EP +0 +11 +9 +Package_SON +WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm_ThermalVias +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf +WSON 8 1EP ThermalVias +0 +14 +9 +Package_SON +WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack +WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack_ThermalVias +WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.2x2mm +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +11 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias +WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.6x2.0mm +8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf +WSON 8 1EP +0 +13 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina333.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +11 +9 +Package_SON +WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina333.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +18 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP1.98x3mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lm5017.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP1.98x3mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lm5017.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.2x3mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2987.pdf#page=26), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.2x3mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2987.pdf#page=26), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.6x3mm +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2951-n.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_4x4mm_P0.8mm_EP2.6x3mm_ThermalVias +WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2951-n.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +9 +Package_SON +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm +WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm +WSON, 8 Pin (http://ww1.microchip.com/downloads/en/AppNotes/S72030.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-8-1EP_8x6mm_P1.27mm_EP3.4x4.3mm +WSON, 8 Pin (https://datasheet.lcsc.com/lcsc/2204011730_GigaDevice-Semicon-Beijing-GD5F1GQ4UFYIGR_C2986324.pdf (page 44)), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +13 +9 +Package_SON +WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm +WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +15 +11 +Package_SON +WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm_ThermalVias +WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +22 +11 +Package_SON +WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm +WSON-10 package 2x3mm body, pitch 0.5mm, see http://www.ti.com/lit/ds/symlink/tps62177.pdf +WSON 0.5 +0 +14 +11 +Package_SON +WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm_ThermalVias +WSON-10 package 2x3mm body, pitch 0.5mm, thermal vias and counter-pad, see http://www.ti.com/lit/ds/symlink/tps62177.pdf +WSON 0.5 thermal vias +0 +17 +11 +Package_SON +WSON-10-1EP_4x3mm_P0.5mm_EP2.2x2mm +10-Lead Plastic WSON, 4x3mm Body, 0.5mm Pitch (http://www.ti.com/lit/ds/symlink/lm4990.pdf) +WSON 0.5 +0 +15 +11 +Package_SON +WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65 +WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf +WSON-12 +0 +15 +13 +Package_SON +WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65_ThermalVias +WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf +WSON-12 +0 +19 +13 +Package_SON +WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm +WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +17 +13 +Package_SON +WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm_ThermalVias +WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py +WSON NoLead +0 +27 +13 +Package_SON +WSON-14-1EP_4.0x4.0mm_P0.5mm_EP2.6x2.6mm +14-Lead Plastic Dual Flat, No Lead Package - 4.0x4.0x0.8 mm Body [WSON], http://www.ti.com/lit/ml/mpds421/mpds421.pdf +NHL014B +0 +19 +15 +Package_SON +WSON-16_3.3x1.35_P0.4mm +WSON-16 3.3 x 1.35mm Pitch 0.4mm http://www.chip.tomsk.ru/chip/chipdoc.nsf/Package/C67E729A4D6C883A4725793E004C8739!OpenDocument +WSON-16 3.3 x 1.35mm Pitch 0.4mm +0 +20 +17 +Package_SON +X2SON-8_1.4x1mm_P0.35mm +X2SON-8 1.4x1mm Pitch0.35mm http://www.ti.com/lit/ds/symlink/pca9306.pdf +X2SON-8 1.4x1mm Pitch0.35mm +0 +8 +8 +Package_SO_J-Lead +TSOC-6_3.76x3.94mm_P1.27mm +Maxim Integrated TSOC-6 D6+1,https://datasheets.maximintegrated.com/en/ds/DS2401.pdf, https://pdfserv.maximintegrated.com/land_patterns/90-0321.PDF +TSOC-6 +0 +6 +6 +Package_TO_SOT_SMD +ATPAK-2 +ATPAK SMD package, http://www.onsemi.com/pub/Collateral/ENA2192-D.PDF +ATPAK +0 +7 +3 +Package_TO_SOT_SMD +Analog_KS-4 +Analog Devices KS-4, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sc70ks/ks_4.pdf +Analog Devices KS-4 (like EIAJ SC-82) +0 +4 +4 +Package_TO_SOT_SMD +Diodes_SOT-553 +Diodes SOT-553, https://www.diodes.com/assets/Package-Files/SOT553.pdf +SOT-553 +0 +5 +5 +Package_TO_SOT_SMD +HVSOF5 +HVSOF5, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof5_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/sensor/hall/bu52001gul-e.pdf +HVSOF5 +0 +5 +5 +Package_TO_SOT_SMD +HVSOF6 +HVSOF6, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof6_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/audio_video/video_amplifier/bh76106hfv-e.pdf +HVSOF6 +0 +7 +7 +Package_TO_SOT_SMD +Infineon_PG-HDSOP-10-1 +Infineon PG-HDSOP-10-1 (DDPAK), 20.96x6.5x2.3mm, slug up (https://www.infineon.com/cms/en/product/packages/PG-HDSOP/PG-HDSOP-10-1/) +hdsop 10 ddpak +0 +10 +10 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-1 +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/) +mosfet hsof toll +0 +53 +3 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-1_ThermalVias +HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/) +mosfet hsof toll thermal vias +0 +96 +3 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2 +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/) +mosfet hsof toll +0 +12 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2_ThermalVias +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/) +mosfet hsof toll thermal vias +0 +97 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-2_ThermalVias2 +HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/, https://www.infineon.com/dgdl/Infineon-ApplicationNote_600V_CoolMOS_C7_Gold_TOLL-AN-v01_00-EN.pdf?fileId=5546d4625b10283a015b144a1af70df6) +mosfet hsof toll thermal vias +0 +159 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-3 +HSOF-8-3 power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-3/) +mosfet hsof +0 +25 +4 +Package_TO_SOT_SMD +Infineon_PG-HSOF-8-3_ThermalVias +HSOF-8-3 power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-3/) +mosfet hsof +0 +64 +4 +Package_TO_SOT_SMD +Infineon_PG-TO-220-7Lead_TabPin8 +Infineon PG-TO-220-7, Tab as Pin 8, see e.g. https://www.infineon.com/dgdl/Infineon-BTS50055-1TMC-DS-v01_00-EN.pdf?fileId=5546d4625a888733015aa9b0007235e9 +Infineon PG-TO-220-7 +0 +12 +8 +Package_TO_SOT_SMD +Infineon_PG-TSFP-3-1 +Infineon_PG-TSFP-3-1, https://www.infineon.com/dgdl/TSFP-3-1,-2-Package_Overview.pdf?fileId=db3a30431936bc4b0119539929863d46 +TSFP-3 +0 +3 +3 +Package_TO_SOT_SMD +LFPAK33 +LFPAK33 SOT-1210 https://assets.nexperia.com/documents/outline-drawing/SOT1210.pdf +LFPAK33 SOT-1210 +0 +17 +5 +Package_TO_SOT_SMD +LFPAK56 +LFPAK56 https://assets.nexperia.com/documents/outline-drawing/SOT669.pdf +LFPAK56 SOT-669 Power-SO8 +0 +18 +5 +Package_TO_SOT_SMD +Nexperia_CFP15_SOT-1289 +Nexperia CFP15 (SOT-1289), https://assets.nexperia.com/documents/outline-drawing/SOT1289.pdf +SOT-1289 CFP15 +0 +8 +3 +Package_TO_SOT_SMD +OnSemi_ECH8 +On Semiconductor ECH8, https://www.onsemi.com/pub/Collateral/318BF.PDF +ECH8 SOT28-FL SOT-28-FL +0 +8 +8 +Package_TO_SOT_SMD +PQFN_8x8 +Low Profile 8x8mm PQFN, Dual Cool 88, https://www.onsemi.com/pub/Collateral/FDMT80080DC-D.pdf +pqfn vdfn mosfet +0 +9 +3 +Package_TO_SOT_SMD +PowerMacro_M234_NoHole +TO-50-4 Power Macro Package Style M234 +TO-50-4 Power Macro Package Style M234 +0 +4 +4 +Package_TO_SOT_SMD +PowerMacro_M234_WithHole +TO-50-4 Power Macro Package Style M234 +TO-50-4 Power Macro Package Style M234 +0 +4 +4 +Package_TO_SOT_SMD +Rohm_HRP7 +Rohm HRP7 SMD package, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hrp7_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/motor/dc/bd621x-e.pdf +Rohm HRP7 SMD +0 +69 +7 +Package_TO_SOT_SMD +SC-59 +SC-59, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg +SC-59 +0 +3 +3 +Package_TO_SOT_SMD +SC-59_Handsoldering +SC-59, hand-soldering varaint, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg +SC-59 hand-soldering +0 +3 +3 +Package_TO_SOT_SMD +SC-70-8 +SC70-8 +SC70-8 +0 +8 +8 +Package_TO_SOT_SMD +SC-70-8_Handsoldering +SC70-8, Handsoldering +SC70-8 Handsoldering +0 +8 +8 +Package_TO_SOT_SMD +SC-82AA +SC-82AA +SC-82AA +0 +4 +4 +Package_TO_SOT_SMD +SC-82AA_Handsoldering +SC-82AA +SC-82AA +0 +4 +4 +Package_TO_SOT_SMD +SC-82AB +SC-82AB +SC-82AB +0 +4 +4 +Package_TO_SOT_SMD +SC-82AB_Handsoldering +SC-82AB +SC-82AB +0 +4 +4 +Package_TO_SOT_SMD +SOT-23 +SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +3 +3 +Package_TO_SOT_SMD +SOT-23-3 +SOT, 3 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178D.PDF inferred 3-pin variant), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +3 +3 +Package_TO_SOT_SMD +SOT-23-5 +SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +5 +5 +Package_TO_SOT_SMD +SOT-23-5_HandSoldering +5-pin SOT23 package +SOT-23-5 hand-soldering +0 +5 +5 +Package_TO_SOT_SMD +SOT-23-6 +SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +6 +6 +Package_TO_SOT_SMD +SOT-23-6_Handsoldering +6-pin SOT-23 package, Handsoldering +SOT-23-6 Handsoldering +0 +6 +6 +Package_TO_SOT_SMD +SOT-23-8 +SOT, 8 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +SOT TO_SOT_SMD +0 +8 +8 +Package_TO_SOT_SMD +SOT-23-8_Handsoldering +8-pin SOT-23 package, Handsoldering, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf +SOT-23-8 Handsoldering +0 +8 +8 +Package_TO_SOT_SMD +SOT-23W +SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3 +SOT-23W +0 +3 +3 +Package_TO_SOT_SMD +SOT-23W_Handsoldering +SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3 +SOT-23W for handsoldering +0 +3 +3 +Package_TO_SOT_SMD +SOT-23_Handsoldering +SOT-23, Handsoldering +SOT-23 +0 +3 +3 +Package_TO_SOT_SMD +SOT-89-3 +SOT-89-3, http://ww1.microchip.com/downloads/en/DeviceDoc/3L_SOT-89_MB_C04-029C.pdf +SOT-89-3 +0 +3 +3 +Package_TO_SOT_SMD +SOT-89-3_Handsoldering +SOT-89-3 Handsoldering +SOT-89-3 Handsoldering +0 +3 +3 +Package_TO_SOT_SMD +SOT-89-5 +SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf +SOT-89-5 +0 +5 +5 +Package_TO_SOT_SMD +SOT-89-5_Handsoldering +SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf +SOT-89-5 +0 +5 +5 +Package_TO_SOT_SMD +SOT-143 +SOT-143 https://www.nxp.com/docs/en/package-information/SOT143B.pdf +SOT-143 +0 +4 +4 +Package_TO_SOT_SMD +SOT-143R +SOT-143R, reverse pinning, https://www.nxp.com/docs/en/package-information/SOT143R.pdf +SOT-143R Reverse +0 +4 +4 +Package_TO_SOT_SMD +SOT-143R_Handsoldering +SOT-143R, reverse pinning, Handsoldering, https://www.nxp.com/docs/en/package-information/SOT143R.pdf +SOT-143 Reverse Handsoldering +0 +4 +4 +Package_TO_SOT_SMD +SOT-143_Handsoldering +SOT-143 Handsoldering https://www.nxp.com/docs/en/package-information/SOT143B.pdf +SOT-143 Handsoldering +0 +4 +4 +Package_TO_SOT_SMD +SOT-223 +module CMS SOT223 4 pins +CMS SOT +0 +4 +4 +Package_TO_SOT_SMD +SOT-223-3_TabPin2 +module CMS SOT223 4 pins +CMS SOT +0 +4 +3 +Package_TO_SOT_SMD +SOT-223-5 +module CMS SOT223 5 pins, http://ww1.microchip.com/downloads/en/DeviceDoc/51751a.pdf +CMS SOT +0 +5 +5 +Package_TO_SOT_SMD +SOT-223-6 +module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf +CMS SOT +0 +6 +6 +Package_TO_SOT_SMD +SOT-223-6_TabPin3 +module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf +CMS SOT +0 +6 +5 +Package_TO_SOT_SMD +SOT-223-8 +module CMS SOT223 8 pins, https://www.diodes.com/assets/Datasheets/ZXSBMR16PT8.pdf +CMS SOT +0 +8 +8 +Package_TO_SOT_SMD +SOT-323_SC-70 +SOT-323, SC-70 +SOT-323 SC-70 +0 +3 +3 +Package_TO_SOT_SMD +SOT-323_SC-70_Handsoldering +SOT-323, SC-70 Handsoldering +SOT-323 SC-70 Handsoldering +0 +3 +3 +Package_TO_SOT_SMD +SOT-343_SC-70-4 +SOT-343, SC-70-4 +SOT-343 SC-70-4 +0 +4 +4 +Package_TO_SOT_SMD +SOT-343_SC-70-4_Handsoldering +SOT-343, SC-70-4, Handsoldering +SOT-343 SC-70-4 Handsoldering +0 +4 +4 +Package_TO_SOT_SMD +SOT-353_SC-70-5 +SOT-353, SC-70-5 +SOT-353 SC-70-5 +0 +5 +5 +Package_TO_SOT_SMD +SOT-353_SC-70-5_Handsoldering +SOT-353, SC-70-5, Handsoldering +SOT-353 SC-70-5 Handsoldering +0 +5 +5 +Package_TO_SOT_SMD +SOT-363_SC-70-6 +SOT-363, SC-70-6 +SOT-363 SC-70-6 +0 +6 +6 +Package_TO_SOT_SMD +SOT-363_SC-70-6_Handsoldering +SOT-363, SC-70-6, Handsoldering +SOT-363 SC-70-6 Handsoldering +0 +6 +6 +Package_TO_SOT_SMD +SOT-383F +8-pin SOT-383F, http://www.mouser.com/ds/2/80/CPDVR085V0C-HF-RevB-10783.pdf +SOT-383F +0 +9 +9 +Package_TO_SOT_SMD +SOT-383FL +8-pin SOT-383FL package, http://www.onsemi.com/pub_link/Collateral/ENA2267-D.PDF +SOT-383FL +0 +8 +8 +Package_TO_SOT_SMD +SOT-416 +SOT-416, https://www.nxp.com/docs/en/package-information/SOT416.pdf +SOT-416 +0 +3 +3 +Package_TO_SOT_SMD +SOT-523 +SOT523, https://www.diodes.com/assets/Package-Files/SOT523.pdf +SOT-523 +0 +3 +3 +Package_TO_SOT_SMD +SOT-543 +SOT-543 4 lead surface package +SOT-543 SC-107A EMD4 +0 +4 +4 +Package_TO_SOT_SMD +SOT-553 +SOT553 +SOT-553 +0 +5 +5 +Package_TO_SOT_SMD +SOT-563 +SOT563 +SOT-563 +0 +6 +6 +Package_TO_SOT_SMD +SOT-665 +SOT665 +SOT-665 +0 +5 +5 +Package_TO_SOT_SMD +SOT-666 +SOT666 +SOT-666 +0 +6 +6 +Package_TO_SOT_SMD +SOT-723 +http://toshiba.semicon-storage.com/info/docget.jsp?did=5879&prodName=RN1104MFV +sot 723 +0 +3 +3 +Package_TO_SOT_SMD +SOT-883 +SOT-883, https://assets.nexperia.com/documents/outline-drawing/SOT883.pdf +SOT-883 +0 +3 +3 +Package_TO_SOT_SMD +SOT-886 +SOT-886 +SOT-886 +0 +6 +6 +Package_TO_SOT_SMD +SOT-963 +SOT 963 6 pins package 1x0.8mm pitch 0.35mm +SOT 963 6 pins package 1x0.8mm pitch 0.35mm +0 +6 +6 +Package_TO_SOT_SMD +SOT-1123 +SOT-1123 small outline transistor (see http://www.onsemi.com/pub/Collateral/NST3906F3-D.PDF) +SOT-1123 transistor +0 +3 +3 +Package_TO_SOT_SMD +SOT-1333-1 +SOT-1333-1 +SOT-1333-1 +0 +9 +9 +Package_TO_SOT_SMD +SOT-1334-1 +SOT-1334-1 +SOT-1334-1 +0 +14 +14 +Package_TO_SOT_SMD +SuperSOT-3 +3-pin SuperSOT package https://www.fairchildsemi.com/package-drawings/MA/MA03B.pdf +SuperSOT-3 SSOT-3 +0 +3 +3 +Package_TO_SOT_SMD +SuperSOT-6 +6-pin SuperSOT package http://www.mouser.com/ds/2/149/FMB5551-889214.pdf +SuperSOT-6 SSOT-6 +0 +6 +6 +Package_TO_SOT_SMD +SuperSOT-8 +8-pin SuperSOT package, http://www.icbank.com/icbank_data/semi_package/ssot8_dim.pdf +SuperSOT-8 SSOT-8 +0 +8 +8 +Package_TO_SOT_SMD +TDSON-8-1 +Power MOSFET package, TDSON-8-1, 5.15x5.9mm (https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/) +tdson +0 +14 +5 +Package_TO_SOT_SMD +TO-50-3_LongPad-NoHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_LongPad-WithHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_ShortPad-NoHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-3_ShortPad-WithHole_Housing +TO-50-3 Macro T Package Style M236 +TO-50-3 Macro T Package Style M236 +0 +3 +3 +Package_TO_SOT_SMD +TO-50-4_LongPad-NoHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_LongPad-WithHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_ShortPad-NoHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-50-4_ShortPad-WithHole_Housing +TO-50-4 Macro X Package Style M238 +TO-50-4 Macro X Package Style M238 +0 +4 +4 +Package_TO_SOT_SMD +TO-252-2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +7 +3 +Package_TO_SOT_SMD +TO-252-2_TabPin1 +TO-252-2, tab to pin 1 https://www.wolfspeed.com/media/downloads/87/CSD01060.pdf +TO-252-2 diode +0 +7 +2 +Package_TO_SOT_SMD +TO-252-3_TabPin2 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +8 +3 +Package_TO_SOT_SMD +TO-252-3_TabPin4 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ +DPAK TO-252 DPAK-3 TO-252-3 SOT-428 +0 +8 +4 +Package_TO_SOT_SMD +TO-252-4 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +9 +5 +Package_TO_SOT_SMD +TO-252-5_TabPin3 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +10 +5 +Package_TO_SOT_SMD +TO-252-5_TabPin6 +TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ +DPAK TO-252 DPAK-5 TO-252-5 +0 +10 +6 +Package_TO_SOT_SMD +TO-263-2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +7 +3 +Package_TO_SOT_SMD +TO-263-2_TabPin1 +TO-263 / D2PAK / DDPAK SMD package, tab to pin 1, https://www.wolfspeed.com/media/downloads/137/C3D06060G.pdf +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 diode +0 +7 +2 +Package_TO_SOT_SMD +TO-263-3_TabPin2 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +8 +3 +Package_TO_SOT_SMD +TO-263-3_TabPin4 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ +D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 +0 +8 +4 +Package_TO_SOT_SMD +TO-263-4 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +9 +5 +Package_TO_SOT_SMD +TO-263-5_TabPin3 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +10 +5 +Package_TO_SOT_SMD +TO-263-5_TabPin6 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ +D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 +0 +10 +6 +Package_TO_SOT_SMD +TO-263-6 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +11 +7 +Package_TO_SOT_SMD +TO-263-7_TabPin4 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +12 +7 +Package_TO_SOT_SMD +TO-263-7_TabPin8 +TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ +D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 +0 +12 +8 +Package_TO_SOT_SMD +TO-263-9_TabPin5 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +14 +9 +Package_TO_SOT_SMD +TO-263-9_TabPin10 +TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf +D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 +0 +14 +10 +Package_TO_SOT_SMD +TO-268-2 +TO-268/D3PAK SMD package, http://www.icbank.com/icbank_data/semi_package/to268aa_dim.pdf +D3PAK TO-268 D3PAK-3 TO-268-3 +0 +7 +3 +Package_TO_SOT_SMD +TO-269AA +SMD package TO-269AA (e.g. diode bridge), see http://www.vishay.com/docs/88854/padlayouts.pdf +TO-269AA MBS diode bridge +0 +4 +4 +Package_TO_SOT_SMD +TO-277A +Thermal enhanced ultra thin SMD package; 3 leads; body: 4.3x6.1x0.43mm, https://www.vishay.com/docs/95570/to-277asmpc.pdf +TO-277A SMPC +0 +12 +3 +Package_TO_SOT_SMD +TO-277B +TO-227B https://media.digikey.com/pdf/Data%20Sheets/Littelfuse%20PDFs/DST2050S.pdf +TO-277B +0 +9 +3 +Package_TO_SOT_SMD +TSOT-23 +3-pin TSOT23 package, http://www.analog.com.tw/pdf/All_In_One.pdf +TSOT-23 +0 +3 +3 +Package_TO_SOT_SMD +TSOT-23-5 +TSOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOT TO_SOT_SMD +0 +5 +5 +Package_TO_SOT_SMD +TSOT-23-5_HandSoldering +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf +TSOT-23-5 Hand-soldering +0 +5 +5 +Package_TO_SOT_SMD +TSOT-23-6 +TSOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOT TO_SOT_SMD +0 +6 +6 +Package_TO_SOT_SMD +TSOT-23-6_HandSoldering +6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf +TSOT-23-6 MK06A TSOT-6 Hand-soldering +0 +6 +6 +Package_TO_SOT_SMD +TSOT-23-8 +TSOT, 8 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py +TSOT TO_SOT_SMD +0 +8 +8 +Package_TO_SOT_SMD +TSOT-23-8_HandSoldering +8-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_8_05-08-1637.pdf +TSOT-23-8 Hand-soldering +0 +8 +8 +Package_TO_SOT_SMD +TSOT-23_HandSoldering +5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf +TSOT-23 Hand-soldering +0 +3 +3 +Package_TO_SOT_SMD +Texas_DRT-3 +Texas Instrument DRT-3 1x0.8mm Pitch 0.7mm http://www.ti.com/lit/ds/symlink/tpd2eusb30.pdf +DRT-3 1x0.8mm Pitch 0.7mm +0 +3 +3 +Package_TO_SOT_SMD +Texas_NDQ +Texas Instruments, NDQ, 5 pin (https://www.ti.com/lit/ml/mmsf022/mmsf022.pdf) +ti pfm dap +0 +6 +6 +Package_TO_SOT_SMD +Texas_NDW-7_TabPin4 +NDW0007A SMD package, http://www.ti.com/lit/ml/mmsf024/mmsf024.pdf +NDW NDW +0 +12 +7 +Package_TO_SOT_SMD +Texas_NDW-7_TabPin8 +NDW0007A SMD package, http://www.ti.com/lit/ml/mmsf024/mmsf024.pdf +NDW NDW +0 +12 +8 +Package_TO_SOT_SMD +Texas_NDY0011A +TO-PMOD-11 11-pin switching regulator package, http://www.ti.com/lit/ml/mmsf025/mmsf025.pdf +Texas TO-PMOD NDY00011A +0 +12 +12 +Package_TO_SOT_SMD +Texas_R-PDSO-G6 +R-PDSO-G6, http://www.ti.com/lit/ds/slis144b/slis144b.pdf +R-PDSO-G6 SC-70-6 +0 +6 +6 +Package_TO_SOT_SMD +VSOF5 +VSOF5 +VSOF5 +0 +5 +5 +Package_TO_SOT_SMD +Vishay_PowerPAK_SC70-6L_Dual +Vishay PowerPAK SC70 dual transistor package http://www.vishay.com/docs/70487/70487.pdf +powerpak sc70 sc-70 dual +0 +8 +6 +Package_TO_SOT_SMD +Vishay_PowerPAK_SC70-6L_Single +Vishay PowerPAK SC70 single transistor package http://www.vishay.com/docs/70486/70486.pdf +powerpak sc70 sc-70 +0 +6 +3 +Package_TO_SOT_THT +Analog_TO-46-4_ThermalShield +TO-46-4 with Valox case, based on https://www.analog.com/media/en/technical-documentation/data-sheets/199399fc.pdf +TO-46-4 LM399 +0 +4 +4 +Package_TO_SOT_THT +Fairchild_TO-220F-6L +Fairchild TO-220F-6L, http://www.mouser.com/ds/2/149/FSL136MRT-113334.pdf +Fairchild TO-220F-6L +0 +6 +6 +Package_TO_SOT_THT +Heraeus_TO-92-2 +TO-92 2-pin variant by Heraeus, drill 0.75mm (http://www.produktinfo.conrad.com/datenblaetter/175000-199999/181293-da-01-de-TO92_Temperatursensor_PT1000_32209225.pdf) +to-92 +0 +2 +2 +Package_TO_SOT_THT +NEC_Molded_7x4x9mm +Molded Japan Transistor Package 7x4x9mm^3, http://rtellason.com/transdata/2sb734.pdf +Japan transistor +0 +3 +3 +Package_TO_SOT_THT +PowerIntegrations_TO-220-7C +Non Isolated Modified TO-220 7pin Package, see http://www.farnell.com/datasheets/5793.pdf +Power Integration Y Package +0 +6 +6 +Package_TO_SOT_THT +SIPAK-1EP_Horizontal_TabDown +SIPAK, Horizontal, RM 2.286mm +SIPAK Horizontal RM 2.286mm +0 +4 +4 +Package_TO_SOT_THT +SIPAK_Vertical +SIPAK, Vertical, RM 2.286mm +SIPAK Vertical RM 2.286mm +0 +3 +3 +Package_TO_SOT_THT +SOD-70_P2.54mm +Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf [StepUp generated footprint] +Sod-70 +0 +2 +2 +Package_TO_SOT_THT +SOD-70_P5.08mm +Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf [StepUp generated footprint] +Sod-70 +0 +2 +2 +Package_TO_SOT_THT +SOT-227 +SOT-227 / SOT-227B / ISOTOP, M4 mounting screws (https://www.vishay.com/docs/95423/sot227g2.pdf, https://www.vishay.com/docs/95793/vs-fc420sa10.pdf) +sot 227 isotop +0 +8 +4 +Package_TO_SOT_THT +TO-3 +Transistor TO-3 +TR TO-3 TO3 TO-204 +0 +4 +3 +Package_TO_SOT_THT +TO-3P-3_Horizontal_TabDown +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3P-3_Horizontal_TabUp +TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html +TO-3P-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3P-3_Vertical +TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html +TO-3P-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3PB-3_Horizontal_TabDown +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3PB-3_Horizontal_TabUp +TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF +TO-3PB-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-3PB-3_Vertical +TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF +TO-3PB-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-5-2 +TO-5-2 +TO-5-2 +0 +2 +2 +Package_TO_SOT_THT +TO-5-2_Window +TO-5-2_Window, Window +TO-5-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-5-3 +TO-5-3 +TO-5-3 +0 +3 +3 +Package_TO_SOT_THT +TO-5-3_Window +TO-5-3_Window, Window +TO-5-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-5-4 +TO-5-4 +TO-5-4 +0 +4 +4 +Package_TO_SOT_THT +TO-5-4_Window +TO-5-4_Window, Window +TO-5-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-5-6 +TO-5-6 +TO-5-6 +0 +6 +6 +Package_TO_SOT_THT +TO-5-6_Window +TO-5-6_Window, Window +TO-5-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-5-8 +TO-5-8 +TO-5-8 +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_PD5.08 +TO-5-8_PD5.08 +TO-5-8_PD5.08 +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_PD5.08_Window +TO-5-8_PD5.08_Window, Window +TO-5-8_PD5.08_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-5-8_Window +TO-5-8_Window, Window +TO-5-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-5-10 +TO-5-10 +TO-5-10 +0 +10 +10 +Package_TO_SOT_THT +TO-5-10_Window +TO-5-10_Window, Window +TO-5-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-8-2 +TO-8-2 +TO-8-2 +0 +2 +2 +Package_TO_SOT_THT +TO-8-2_Window +TO-8-2_Window, Window +TO-8-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-8-3 +TO-8-3 +TO-8-3 +0 +3 +3 +Package_TO_SOT_THT +TO-8-3_Window +TO-8-3_Window, Window +TO-8-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-11-2 +TO-11-2 +TO-11-2 +0 +2 +2 +Package_TO_SOT_THT +TO-11-2_Window +TO-11-2_Window, Window +TO-11-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-11-3 +TO-11-3 +TO-11-3 +0 +3 +3 +Package_TO_SOT_THT +TO-11-3_Window +TO-11-3_Window, Window +TO-11-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-12-4 +TO-12-4 +TO-12-4 +0 +4 +4 +Package_TO_SOT_THT +TO-12-4_Window +TO-12-4_Window, Window +TO-12-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-17-4 +TO-17-4 +TO-17-4 +0 +4 +4 +Package_TO_SOT_THT +TO-17-4_Window +TO-17-4_Window, Window +TO-17-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-18-2 +TO-18-2 +TO-18-2 +0 +2 +2 +Package_TO_SOT_THT +TO-18-2_Lens +TO-18-2_Lens, Lens +TO-18-2_Lens Lens +0 +2 +2 +Package_TO_SOT_THT +TO-18-2_Window +TO-18-2_Window, Window +TO-18-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-18-3 +TO-18-3 +TO-18-3 +0 +3 +3 +Package_TO_SOT_THT +TO-18-3_Lens +TO-18-3_Lens, Lens +TO-18-3_Lens Lens +0 +3 +3 +Package_TO_SOT_THT +TO-18-3_Window +TO-18-3_Window, Window +TO-18-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-18-4 +TO-18-4 +TO-18-4 +0 +4 +4 +Package_TO_SOT_THT +TO-18-4_Lens +TO-18-4_Lens, Lens +TO-18-4_Lens Lens +0 +4 +4 +Package_TO_SOT_THT +TO-18-4_Window +TO-18-4_Window, Window +TO-18-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-33-4 +TO-33-4 +TO-33-4 +0 +4 +4 +Package_TO_SOT_THT +TO-33-4_Window +TO-33-4_Window, Window +TO-33-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-38-2 +TO-38-2 +TO-38-2 +0 +2 +2 +Package_TO_SOT_THT +TO-38-2_Window +TO-38-2_Window, Window +TO-38-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-38-3 +TO-38-3 +TO-38-3 +0 +3 +3 +Package_TO_SOT_THT +TO-38-3_Window +TO-38-3_Window, Window +TO-38-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-39-2 +TO-39-2 +TO-39-2 +0 +2 +2 +Package_TO_SOT_THT +TO-39-2_Window +TO-39-2_Window, Window +TO-39-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-39-3 +TO-39-3 +TO-39-3 +0 +3 +3 +Package_TO_SOT_THT +TO-39-3_Window +TO-39-3_Window, Window +TO-39-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-39-4 +TO-39-4 +TO-39-4 +0 +4 +4 +Package_TO_SOT_THT +TO-39-4_Window +TO-39-4_Window, Window +TO-39-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-39-6 +TO-39-6 +TO-39-6 +0 +6 +6 +Package_TO_SOT_THT +TO-39-6_Window +TO-39-6_Window, Window +TO-39-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-39-8 +TO-39-8 +TO-39-8 +0 +8 +8 +Package_TO_SOT_THT +TO-39-8_Window +TO-39-8_Window, Window +TO-39-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-39-10 +TO-39-10 +TO-39-10 +0 +10 +10 +Package_TO_SOT_THT +TO-39-10_Window +TO-39-10_Window, Window +TO-39-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-46-2 +TO-46-2 +TO-46-2 +0 +2 +2 +Package_TO_SOT_THT +TO-46-2_Pin2Center +TO-46-2, Pin2 at center of package, Thorlabs photodiodes +TO-46-2 Thorlabs +0 +2 +2 +Package_TO_SOT_THT +TO-46-2_Pin2Center_Window +TO-46-2, Pin2 at center of package, Thorlabs photodiodes +TO-46-2 Thorlabs +0 +2 +2 +Package_TO_SOT_THT +TO-46-2_Window +TO-46-2_Window, Window +TO-46-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-46-3 +TO-46-3 +TO-46-3 +0 +3 +3 +Package_TO_SOT_THT +TO-46-3_Pin2Center +TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf +TO-46-3 Thorlabs +0 +3 +3 +Package_TO_SOT_THT +TO-46-3_Pin2Center_Window +TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf +TO-46-3 Thorlabs +0 +3 +3 +Package_TO_SOT_THT +TO-46-3_Window +TO-46-3_Window, Window +TO-46-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-46-4 +TO-46-4 +TO-46-4 +0 +4 +4 +Package_TO_SOT_THT +TO-46-4_Window +TO-46-4_Window, Window +TO-46-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-52-2 +TO-52-2 +TO-52-2 +0 +2 +2 +Package_TO_SOT_THT +TO-52-2_Window +TO-52-2_Window, Window +TO-52-2_Window Window +0 +2 +2 +Package_TO_SOT_THT +TO-52-3 +TO-52-3 +TO-52-3 +0 +3 +3 +Package_TO_SOT_THT +TO-52-3_Window +TO-52-3_Window, Window +TO-52-3_Window Window +0 +3 +3 +Package_TO_SOT_THT +TO-72-4 +TO-72-4 +TO-72-4 +0 +4 +4 +Package_TO_SOT_THT +TO-72-4_Window +TO-72-4_Window, Window +TO-72-4_Window Window +0 +4 +4 +Package_TO_SOT_THT +TO-75-6 +TO-75-6 +TO-75-6 +0 +6 +6 +Package_TO_SOT_THT +TO-75-6_Window +TO-75-6_Window, Window +TO-75-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-78-6 +TO-78-6 +TO-78-6 +0 +6 +6 +Package_TO_SOT_THT +TO-78-6_Window +TO-78-6_Window, Window +TO-78-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-78-8 +TO-78-8 +TO-78-8 +0 +8 +8 +Package_TO_SOT_THT +TO-78-8_Window +TO-78-8_Window, Window +TO-78-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-78-10 +TO-78-10 +TO-78-10 +0 +10 +10 +Package_TO_SOT_THT +TO-78-10_Window +TO-78-10_Window, Window +TO-78-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-92 +TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92-2 +TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_Horizontal1 +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_Horizontal2 +2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_W4.0mm_Horizontal_FlatSideDown +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_W4.0mm_Horizontal_FlatSideUp +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92-2_Wide +TO-92 2-pin leads in-line, wide, drill 0.75mm +to-92 sc-43 sc-43a sot54 PA33 diode SOD70 +0 +2 +2 +Package_TO_SOT_THT +TO-92Flat +TO-92Flat package, often used for hall sensors, drill 0.75mm (see e.g. http://www.ti.com/lit/ds/symlink/drv5023.pdf) +to-92Flat hall sensor +0 +3 +3 +Package_TO_SOT_THT +TO-92L +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Molded Narrow transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_HandSolder +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm, hand-soldering variant with enlarged pads (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_Inline +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Inline Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_Inline_Wide +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Inline Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92L_Wide +TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) +TO-92L Molded Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92Mini-2 +TO-92Mini package, drill 0.6mm (https://media.digikey.com/pdf/Data%20Sheets/Infineon%20PDFs/KT,KTY.pdf) +to-92Mini transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92S +TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) +to-92S transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92S-2 +TO-92S package, 2-pin, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) +to-92S transistor +0 +2 +2 +Package_TO_SOT_THT +TO-92S_Wide +TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) +TO-92S_Wide transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_HandSolder +TO-92 leads molded, narrow, drill 0.75mm, handsoldering variant with enlarged pads (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Horizontal1 +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Horizontal2 +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline +TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_Horizontal1 +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_Horizontal2 +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_W4.0mm_Horizontal_FlatSideDown +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_W4.0mm_Horizontal_FlatSideUp +TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Inline_Wide +TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideDown +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideUp +TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-92_Wide +TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf) +to-92 sc-43 sc-43a sot54 PA33 transistor +0 +3 +3 +Package_TO_SOT_THT +TO-99-6 +TO-99-6 +TO-99-6 +0 +6 +6 +Package_TO_SOT_THT +TO-99-6_Window +TO-99-6_Window, Window +TO-99-6_Window Window +0 +6 +6 +Package_TO_SOT_THT +TO-99-8 +TO-99-8 +TO-99-8 +0 +8 +8 +Package_TO_SOT_THT +TO-99-8_Window +TO-99-8_Window, Window +TO-99-8_Window Window +0 +8 +8 +Package_TO_SOT_THT +TO-100-10 +TO-100-10 +TO-100-10 +0 +10 +10 +Package_TO_SOT_THT +TO-100-10_Window +TO-100-10_Window, Window +TO-100-10_Window Window +0 +10 +10 +Package_TO_SOT_THT +TO-126-2_Horizontal_TabDown +TO-126-2, Horizontal, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-126-2_Horizontal_TabUp +TO-126-2, Horizontal, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-126-2_Vertical +TO-126-2, Vertical, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-2 Vertical RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-126-3_Horizontal_TabDown +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-126-3_Horizontal_TabUp +TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-126-3_Vertical +TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf +TO-126-3 Vertical RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-218-2_Horizontal_TabDown +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +Package_TO_SOT_THT +TO-218-2_Horizontal_TabUp +TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-2 Horizontal RM 10.95mm SOT-93 +0 +2 +2 +Package_TO_SOT_THT +TO-218-2_Vertical +TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-2 Vertical RM 10.95mm SOT-93 +0 +2 +2 +Package_TO_SOT_THT +TO-218-3_Horizontal_TabDown +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +Package_TO_SOT_THT +TO-218-3_Horizontal_TabUp +TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-3 Horizontal RM 5.475mm SOT-93 +0 +3 +3 +Package_TO_SOT_THT +TO-218-3_Vertical +TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf +TO-218-3 Vertical RM 5.475mm SOT-93 +0 +3 +3 +Package_TO_SOT_THT +TO-220-2_Horizontal_TabDown +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220-2_Horizontal_TabUp +TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF +TO-220-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220-2_Vertical +TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF +TO-220-2 Vertical RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220-3_Horizontal_TabDown +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220-3_Horizontal_TabUp +TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220-3_Vertical +TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf +TO-220-3 Vertical RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220-4_Horizontal_TabDown +TO-220-4, Horizontal, RM 2.54mm +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_Horizontal_TabUp +TO-220-4, Horizontal, RM 2.54mm +TO-220-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerEven_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-2 +TO-220-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-2 +TO-220-4 Horizontal RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-4, Vertical, RM 2.54mm, staggered type-1 +TO-220-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_P5.08x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-4, Horizontal, RM 2.54mm, staggered type-1 +TO-220-4 Horizontal RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220-4_Vertical +TO-220-4, Vertical, RM 2.54mm +TO-220-4 Vertical RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220-5_Horizontal_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_Horizontal_TabUp +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.8mm_StaggerEven_Lead7.13mm_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_P3.4x3.8mm_StaggerOdd_Lead7.13mm_TabDown +TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf +TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220-5_Vertical +TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf +TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220-7_P2.54x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-2 +TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-2 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-1 +TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-2 +TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-2 +0 +7 +7 +Package_TO_SOT_THT +TO-220-7_P2.54x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-1 +TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220-8_Vertical +TO-220-8 (Multiwatt8), Vertical, 2.54mm Pitch (http://www.st.com/resource/en/datasheet/tda7264.pdf) +TO-220-9 Vertical 2.54mm Pitch Multiwatt 8 +0 +8 +8 +Package_TO_SOT_THT +TO-220-9_P1.94x3.7mm_StaggerEven_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-2 +TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-2 +0 +9 +9 +Package_TO_SOT_THT +TO-220-9_P1.94x3.7mm_StaggerOdd_Lead3.8mm_Vertical +TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-1 +TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-1 +0 +9 +9 +Package_TO_SOT_THT +TO-220-9_P1.94x3.8mm_StaggerEven_Lead5.85mm_TabDown +TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-2 +TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-2 +0 +9 +9 +Package_TO_SOT_THT +TO-220-9_P1.94x3.8mm_StaggerOdd_Lead5.85mm_TabDown +TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-1 +TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-1 +0 +9 +9 +Package_TO_SOT_THT +TO-220-11_P3.4x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Horizontal RM 1.7mm staggered type-2 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Horizontal RM 1.7mm staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x5.08mm_StaggerEven_Lead4.58mm_Vertical +TO-220-11, Vertical, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Vertical RM 1.7mm staggered type-2 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead4.85mm_Vertical +TO-220-11, Vertical, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf +TO-220-11 Vertical RM 1.7mm staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220-11_P3.4x5.08mm_StaggerOdd_Lead8.45mm_TabDown +TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.ti.com/lit/ds/symlink/lmd18200.pdf +TO-220-11 Horizontal RM 1.7mm staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerEven_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Vertical RM 1.27mm staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerEven_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Horizontal RM 1.27mm staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead4.58mm_Vertical +TO-220-15, Vertical, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Vertical RM 1.27mm staggered type-1 +0 +15 +15 +Package_TO_SOT_THT +TO-220-15_P2.54x2.54mm_StaggerOdd_Lead5.84mm_TabDown +TO-220-15, Horizontal, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf +TO-220-15 Horizontal RM 1.27mm staggered type-1 +0 +15 +15 +Package_TO_SOT_THT +TO-220F-2_Horizontal_TabDown +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220F-2_Horizontal_TabUp +TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf +TO-220F-2 Horizontal RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220F-2_Vertical +TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf +TO-220F-2 Vertical RM 5.08mm +0 +2 +2 +Package_TO_SOT_THT +TO-220F-3_Horizontal_TabDown +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220F-3_Horizontal_TabUp +TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf +TO-220F-3 Horizontal RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220F-3_Vertical +TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf +TO-220F-3 Vertical RM 2.54mm +0 +3 +3 +Package_TO_SOT_THT +TO-220F-4_Horizontal_TabDown +TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_Horizontal_TabUp +TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x2.05mm_StaggerEven_Lead1.85mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x2.05mm_StaggerOdd_Lead1.85mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-2 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_P5.08x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm staggered type-1 +0 +4 +4 +Package_TO_SOT_THT +TO-220F-4_Vertical +TO-220F-4, Vertical, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf +TO-220F-4 Vertical RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-220F-5_Horizontal_TabDown +TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5 +TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_Horizontal_TabUp +TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5 +TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x2.06mm_StaggerEven_Lead1.86mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x2.06mm_StaggerOdd_Lead1.86mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_P3.4x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-5_Vertical +TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5 +TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 +0 +5 +5 +Package_TO_SOT_THT +TO-220F-7_P2.54x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-7, Vertical, RM 1.27mm, staggered type-2 +TO-220F-7 Vertical RM 1.27mm staggered type-2 +0 +7 +7 +Package_TO_SOT_THT +TO-220F-7_P2.54x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-7, Vertical, RM 1.27mm, staggered type-1 +TO-220F-7 Vertical RM 1.27mm staggered type-1 +0 +7 +7 +Package_TO_SOT_THT +TO-220F-9_P1.8x3.7mm_StaggerEven_Lead3.5mm_Vertical +TO-220F-9, Vertical, RM 0.9mm, staggered type-2 +TO-220F-9 Vertical RM 0.9mm staggered type-2 +0 +9 +9 +Package_TO_SOT_THT +TO-220F-9_P1.8x3.7mm_StaggerOdd_Lead3.5mm_Vertical +TO-220F-9, Vertical, RM 0.9mm, staggered type-1 +TO-220F-9 Vertical RM 0.9mm staggered type-1 +0 +9 +9 +Package_TO_SOT_THT +TO-220F-11_P3.4x5.08mm_StaggerEven_Lead5.08mm_Vertical +TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-2, see http://www.ti.com/lit/ds/symlink/lm3886.pdf +TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-2 +0 +11 +11 +Package_TO_SOT_THT +TO-220F-11_P3.4x5.08mm_StaggerOdd_Lead5.08mm_Vertical +TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-1, see http://www.ti.com/lit/ds/symlink/lm3886.pdf +TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-1 +0 +11 +11 +Package_TO_SOT_THT +TO-220F-15_P2.54x5.08mm_StaggerEven_Lead5.08mm_Vertical +TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-2 +TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-2 +0 +15 +15 +Package_TO_SOT_THT +TO-220F-15_P2.54x5.08mm_StaggerOdd_Lead5.08mm_Vertical +TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-1 +TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-1 +0 +15 +15 +Package_TO_SOT_THT +TO-247-2_Horizontal_TabDown +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-247-2_Horizontal_TabUp +TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-247-2_Vertical +TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-2 Vertical RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-247-3_Horizontal_TabDown +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-247-3_Horizontal_TabUp +TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-247-3_Vertical +TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-247-4_Horizontal_TabDown +TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-247-4_Horizontal_TabUp +TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-4 Horizontal RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-247-4_Vertical +TO-247-4, Vertical, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html +TO-247-4 Vertical RM 2.54mm +0 +4 +4 +Package_TO_SOT_THT +TO-247-5_Horizontal_TabDown +TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf +TO-247-5 Horizontal RM 2.54mm +0 +5 +5 +Package_TO_SOT_THT +TO-247-5_Horizontal_TabUp +TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf +TO-247-5 Horizontal RM 2.54mm +0 +5 +5 +Package_TO_SOT_THT +TO-247-5_Vertical +TO-247-5, Vertical, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf +TO-247-5 Vertical RM 2.54mm +0 +5 +5 +Package_TO_SOT_THT +TO-251-2-1EP_Horizontal_TabDown +TO-251-2, Horizontal, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-2 Horizontal RM 4.58mm IPAK +0 +3 +3 +Package_TO_SOT_THT +TO-251-2_Vertical +TO-251-2, Vertical, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-2 Vertical RM 4.58mm IPAK +0 +2 +2 +Package_TO_SOT_THT +TO-251-3-1EP_Horizontal_TabDown +TO-251-3, Horizontal, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-3 Horizontal RM 2.29mm IPAK +0 +4 +4 +Package_TO_SOT_THT +TO-251-3_Vertical +TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf +TO-251-3 Vertical RM 2.29mm IPAK +0 +3 +3 +Package_TO_SOT_THT +TO-262-3-1EP_Horizontal_TabDown +TO-262-3, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF +TO-262-3 Horizontal RM 2.54mm IIPAK I2PAK +0 +4 +4 +Package_TO_SOT_THT +TO-262-3_Vertical +TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF +TO-262-3 Vertical RM 2.54mm IIPAK I2PAK +0 +3 +3 +Package_TO_SOT_THT +TO-262-5-1EP_Horizontal_TabDown +TO-262-5, Horizontal, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf +TO-262-5 Horizontal RM 1.7mm IIPAK I2PAK +0 +6 +6 +Package_TO_SOT_THT +TO-262-5_Vertical +TO-262-5, Vertical, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf +TO-262-5 Vertical RM 1.7mm IIPAK I2PAK +0 +5 +5 +Package_TO_SOT_THT +TO-264-2_Horizontal_TabDown +TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-264-2_Horizontal_TabUp +TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-2 Horizontal RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-264-2_Vertical +TO-264-2, Vertical, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-2 Vertical RM 10.9mm +0 +2 +2 +Package_TO_SOT_THT +TO-264-3_Horizontal_TabDown +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-264-3_Horizontal_TabUp +TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-3 Horizontal RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-264-3_Vertical +TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf +TO-264-3 Vertical RM 5.45mm +0 +3 +3 +Package_TO_SOT_THT +TO-264-5_Horizontal_TabDown +TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF +TO-264-5 Horizontal RM 3.81mm +0 +5 +5 +Package_TO_SOT_THT +TO-264-5_Horizontal_TabUp +TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF +TO-264-5 Horizontal RM 3.81mm +0 +5 +5 +Package_TO_SOT_THT +TO-264-5_Vertical +TO-264-5, Vertical, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF +TO-264-5 Vertical RM 3.81mm +0 +5 +5 +Potentiometer_SMD +Potentiometer_ACP_CA6-VSMD_Vertical +Potentiometer, vertical, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical ACP CA6-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA6-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer vertical hole ACP CA6-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA9-VSMD_Vertical +Potentiometer, vertical, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA9-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA14-VSMD_Vertical +Potentiometer, vertical, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_ACP_CA14-VSMD_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14-VSMD +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214G_Horizontal +Potentiometer, horizontal, Bourns 3214G, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214G +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214J_Horizontal +Potentiometer, horizontal, Bourns 3214J, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer horizontal Bourns 3214J +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214W_Vertical +Potentiometer, vertical, Bourns 3214W, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214W +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3214X_Vertical +Potentiometer, vertical, Bourns 3214X, https://www.bourns.com/docs/Product-Datasheets/3214.pdf +Potentiometer vertical Bourns 3214X +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224G_Horizontal +Potentiometer, horizontal, Bourns 3224G, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224G +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224J_Horizontal +Potentiometer, horizontal, Bourns 3224J, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer horizontal Bourns 3224J +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224W_Vertical +Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224W +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3224X_Vertical +Potentiometer, vertical, Bourns 3224X, https://www.bourns.com/docs/Product-Datasheets/3224.pdf +Potentiometer vertical Bourns 3224X +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3269P_Horizontal +Potentiometer, horizontal, Bourns 3269P, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269P +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3269W_Vertical +Potentiometer, vertical, Bourns 3269W, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer vertical Bourns 3269W +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3269X_Horizontal +Potentiometer, horizontal, Bourns 3269X, https://www.bourns.com/docs/Product-Datasheets/3269.pdf +Potentiometer horizontal Bourns 3269X +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314G_Vertical +Potentiometer, vertical, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314G +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314J_Vertical +Potentiometer, vertical, Bourns 3314J, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314J +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314R-1_Vertical_Hole +Potentiometer, vertical, shaft hole, Bourns 3314R-1, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical hole Bourns 3314R-1 +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314R-GM5_Vertical +Potentiometer, vertical, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer vertical Bourns 3314R-GM5 +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_3314S_Horizontal +Potentiometer, horizontal, Bourns 3314S, http://www.bourns.com/docs/Product-Datasheets/3314.pdf +Potentiometer horizontal Bourns 3314S +0 +3 +3 +Potentiometer_SMD +Potentiometer_Bourns_PRS11S_Vertical +Potentiometer, vertical, Bourns PRS11S, http://www.bourns.com/docs/Product-Datasheets/PRS11S.pdf +Potentiometer vertical Bourns PRS11S +0 +5 +5 +Potentiometer_SMD +Potentiometer_Bourns_TC33X_Vertical +Potentiometer, Bourns, TC33X, Vertical, https://www.bourns.com/pdfs/TC33.pdf +Potentiometer Bourns TC33X Vertical +0 +3 +3 +Potentiometer_SMD +Potentiometer_Vishay_TS53YJ_Vertical +Potentiometer, vertical, Vishay TS53YJ, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YJ +0 +3 +3 +Potentiometer_SMD +Potentiometer_Vishay_TS53YL_Vertical +Potentiometer, vertical, Vishay TS53YL, https://www.vishay.com/docs/51008/ts53.pdf +Potentiometer vertical Vishay TS53YL +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA6-H2,5_Horizontal +Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf +Potentiometer horizontal ACP CA6-H2,5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-H2,5_Horizontal +Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H2,5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-H3,8_Horizontal +Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H3,8 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-H5_Horizontal +Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer horizontal ACP CA9-H5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-V10_Vertical +Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical ACP CA9-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA9-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf +Potentiometer vertical hole ACP CA9-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14-H2,5_Horizontal +Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H2,5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14-H4_Horizontal +Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H4 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14-H5_Horizontal +Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer horizontal ACP CA14-H5 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14V-15_Vertical +Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical ACP CA14V-15 +0 +3 +3 +Potentiometer_THT +Potentiometer_ACP_CA14V-15_Vertical_Hole +Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf +Potentiometer vertical hole ACP CA14V-15 +0 +3 +3 +Potentiometer_THT +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +Potentiometer_THT +Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles +Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm single +0 +5 +3 +Potentiometer_THT +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +Potentiometer_THT +Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles +Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 +potentiometer vertical 9mm dual +0 +8 +6 +Potentiometer_THT +Potentiometer_Alps_RK09K_Single_Horizontal +111009J 1110AK4 11100DN 1110AAR 1110077 1110A0J 110AMJ 1110B26 D1110C1A Potentiometer, horizontal, Alps RK09K Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09k/rk09k.pdf +Potentiometer horizontal Alps RK09K Single Snapin +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09K_Single_Vertical +113004U 1130A6S 11300DR 1130A8G 1130081 1130A5R 1130AP5 1130AST D1130C3W D1130C1B D1130C3C D1130C2P Potentiometer, vertical, Alps RK09K Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09k/rk09k.pdf +Potentiometer vertical Alps RK09K RK09D Single Snapin +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09L_Double_Horizontal +122002H 122002L 12B0A4S 12B0A1V Potentiometer, horizontal, Alps RK09L Double, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer horizontal Alps RK09L Double +0 +8 +7 +Potentiometer_THT +Potentiometer_Alps_RK09L_Double_Vertical +1240015 1240019 12D0A1W 12D0A1T Potentiometer, vertical, Alps RK09L Double, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer vertical Alps RK09L Double +0 +8 +7 +Potentiometer_THT +Potentiometer_Alps_RK09L_Single_Horizontal +1120A5F 1120036 1120A0Z 112003S Potentiometer, horizontal, Alps RK09L Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer horizontal Alps RK09L Single +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09L_Single_Vertical + 1140A5L 114001E 1140A2U 114001T Potentiometer, vertical, Alps RK09L Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf +Potentiometer vertical Alps RK09L Single +0 +5 +4 +Potentiometer_THT +Potentiometer_Alps_RK09Y11_Single_Horizontal +Potentiometer, horizontal, Long Life, Alps RK09Y11 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09y11/rk09y11.pdf +Potentiometer horizontal Alps RK09Y11 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Alps_RK097_Dual_Horizontal +1210, Dual Pot, Horizontal, Alps RK097 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Alps_RK097_Dual_Horizontal_Switch +1221-5R1211, Dual Pot, Horizontal, Switch, Alps RK097 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Dual Switch +0 +8 +8 +Potentiometer_THT +Potentiometer_Alps_RK097_Single_Horizontal +1110, Single Pot, Horizontal, Alps RK097 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Alps_RK097_Single_Horizontal_Switch +1111-5R1211, Single Pot, Horizontal, Switch, Alps RK097 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf +Potentiometer horizontal Alps RK097 Single Switch +0 +5 +5 +Potentiometer_THT +Potentiometer_Alps_RK163_Dual_Horizontal +12101A2 1210AX9 12A0B85 12A0BKR Potentiometer, horizontal, Alps RK163 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk16/rk16.pdf +Potentiometer horizontal Alps RK163 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Alps_RK163_Single_Horizontal +1110U1Q 1110TNP 1110U2A 1110U0Q Potentiometer, horizontal, Alps RK163 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk16/rk16.pdf +Potentiometer horizontal Alps RK163 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3005_Horizontal +Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf +Potentiometer horizontal Bourns 3005 +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3006P_Horizontal +Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3006W_Horizontal +Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3006Y_Horizontal +Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf +Potentiometer horizontal Bourns 3006Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3009P_Horizontal +Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3009Y_Horizontal +Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf +Potentiometer horizontal Bourns 3009Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266P_Horizontal +Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266W_Vertical +Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266X_Horizontal +Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266Y_Vertical +Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer vertical Bourns 3266Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3266Z_Horizontal +Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf +Potentiometer horizontal Bourns 3266Z +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296P_Horizontal +Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296W_Vertical +Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296X_Horizontal +Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296Y_Vertical +Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf +Potentiometer vertical Bourns 3296Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3296Z_Horizontal +Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf +Potentiometer horizontal Bourns 3296Z +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299P_Horizontal +Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299W_Vertical +Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299X_Horizontal +Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299Y_Vertical +Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf +Potentiometer vertical Bourns 3299Y +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3299Z_Horizontal +Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf +Potentiometer horizontal Bourns 3299Z +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339H_Vertical +Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339H +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339P_Vertical +Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339P_Vertical_HandSoldering +Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer vertical Bourns 3339P hand-soldering +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339S_Horizontal +Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339S +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3339W_Horizontal +Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf +Potentiometer horizontal Bourns 3339W +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386C_Horizontal +Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386C +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386F_Vertical +Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386F +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386P_Vertical +Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf +Potentiometer vertical Bourns 3386P +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_3386X_Horizontal +Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf +Potentiometer horizontal Bourns 3386X +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_PTA1543_Single_Slide +Bourns single-gang slide potentiometer, 15.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 15.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA2043_Single_Slide +Bourns single-gang slide potentiometer, 20.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 20.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA3043_Single_Slide +Bourns single-gang slide potentiometer, 30.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 30.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA4543_Single_Slide +Bourns single-gang slide potentiometer, 45.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 45.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTA6043_Single_Slide +Bourns single-gang slide potentiometer, 60.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf +Bourns single-gang slide potentiometer 60.0mm +0 +7 +4 +Potentiometer_THT +Potentiometer_Bourns_PTV09A-1_Single_Vertical +Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer vertical Bourns PTV09A-1 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Bourns_PTV09A-2_Single_Horizontal +Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf +Potentiometer horizontal Bourns PTV09A-2 Single +0 +5 +3 +Potentiometer_THT +Potentiometer_Omeg_PC16BU_Horizontal +Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer horizontal Omeg PC16BU +0 +3 +3 +Potentiometer_THT +Potentiometer_Omeg_PC16BU_Vertical +Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm +Potentiometer vertical Omeg PC16BU +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PC-16_Dual_Horizontal +Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Piher_PC-16_Single_Horizontal +Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PC-16_Single_Vertical +Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer vertical Piher PC-16 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PC-16_Triple_Horizontal +Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf +Potentiometer horizontal Piher PC-16 Triple +0 +9 +9 +Potentiometer_THT +Potentiometer_Piher_PT-6-H_Horizontal +Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer horizontal Piher PT-6-H +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-6-V_Vertical +Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical Piher PT-6-V +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-6-V_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf +Potentiometer vertical hole Piher PT-6-V +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-H01_Horizontal +Potentiometer, horizontal, Piher PT-10-H01, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H01 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-H05_Horizontal +Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer horizontal Piher PT-10-H05 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-V05_Vertical +Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V05 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-V10_Vertical +Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical Piher PT-10-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-10-V10_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf +Potentiometer vertical hole Piher PT-10-V10 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H01_Horizontal +Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H01 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H05_Horizontal +Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H05 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H06_Horizontal +Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H06 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-H25_Horizontal +Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer horizontal Piher PT-15-H25 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V02_Vertical +Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V02 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V02_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V02 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V15_Vertical +Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical Piher PT-15-V15 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_PT-15-V15_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf +Potentiometer vertical hole Piher PT-15-V15 +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_T-16H_Double_Horizontal +Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Double +0 +6 +6 +Potentiometer_THT +Potentiometer_Piher_T-16H_Single_Horizontal +Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer horizontal Piher T-16H Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Piher_T-16L_Single_Vertical_Hole +Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf +Potentiometer vertical hole Piher T-16L Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Runtron_RM-063_Horizontal +Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf +Potentiometer Trimmer RM-063 +0 +3 +3 +Potentiometer_THT +Potentiometer_Runtron_RM-065_Vertical +Potentiometer, vertical, Trimmer, RM-065 https://components101.com/sites/default/files/component_datasheet/Preset%20Potentiometer%20%28Trimpot%29.pdf +Potentiometer Trimmer RM-065 +0 +3 +3 +Potentiometer_THT +Potentiometer_TT_P0915N +http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf +potentiometer vertical TT P0915N single +0 +5 +3 +Potentiometer_THT +Potentiometer_Vishay_43_Horizontal +Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf +Potentiometer horizontal Vishay 43 +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_148-149_Dual_Horizontal +Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Dual +0 +6 +6 +Potentiometer_THT +Potentiometer_Vishay_148-149_Single_Horizontal +Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148-149 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_148-149_Single_Vertical +Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer vertical Vishay 148-149 Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_148E-149E_Dual_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Dual +0 +10 +6 +Potentiometer_THT +Potentiometer_Vishay_148E-149E_Single_Horizontal +Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf +Potentiometer horizontal Vishay 148E-149E Single +0 +7 +3 +Potentiometer_THT +Potentiometer_Vishay_248BH-249BH_Single_Horizontal +Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248BH-249BH Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal +Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer horizontal Vishay 248GJ-249GJ Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_248GJ-249GJ_Single_Vertical +Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf +Potentiometer vertical Vishay 248GJ-249GJ Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T7-YA_Single_Vertical +Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf +Potentiometer vertical Vishay T7-YA Single +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T73XW_Horizontal +Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XW +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T73XX_Horizontal +Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer horizontal Vishay T73XX +0 +3 +3 +Potentiometer_THT +Potentiometer_Vishay_T73YP_Vertical +Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf +Potentiometer vertical Vishay T73YP +0 +3 +3 +RF +Skyworks_SKY13575_639LF +http://www.skyworksinc.com/uploads/documents/SKY13575_639LF_203270D.pdf +Skyworks +0 +19 +15 +RF +Skyworks_SKY65404-31 +http://www.skyworksinc.com/uploads/documents/SKY65404_31_201512K.pdf +Skyworks +0 +7 +7 +RF_Antenna +Abracon_APAES868R8060C16-T +Abracon RHCP ceramic patch antenna 854-882Mhz, 5dBi +APAES patch antenna +0 +1 +1 +RF_Antenna +Coilcraft_MA5532-AE_RFID +RFID Transponder Coil +antenna rfid coilcraft +0 +2 +2 +RF_Antenna +Johanson_2450AT18x100 +Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, -0.5dBi, https://www.johansontechnology.com/datasheets/2450AT18A100/2450AT18A100.pdf +antenna +0 +2 +2 +RF_Antenna +Johanson_2450AT43F0100 +Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, 1dBi, https://www.johansontechnology.com/datasheets/2450AT43F0100/2450AT43F0100.pdf +antenna +0 +2 +2 +RF_Antenna +Pulse_W3011 +Pulse RF Antenna, 4mm Clearance +antenna rf +0 +3 +2 +RF_Antenna +Texas_SWRA117D_2.4GHz_Left +http://www.ti.com/lit/an/swra117d/swra117d.pdf +PCB antenna +0 +2 +2 +RF_Antenna +Texas_SWRA117D_2.4GHz_Right +http://www.ti.com/lit/an/swra117d/swra117d.pdf +PCB antenna +0 +2 +2 +RF_Antenna +Texas_SWRA416_868MHz_915MHz +http://www.ti.com/lit/an/swra416/swra416.pdf +PCB antenna +0 +20 +1 +RF_Converter +Anaren_0805_2012Metric-6 +https://cdn.anaren.com/product-documents/Xinger/DirectionalCouplers/DC4759J5020AHF/DC4759J5020AHF_DataSheet(Rev_E).pdf +coupler rf +0 +6 +6 +RF_Converter +Balun_Johanson_1.6x0.8mm +6-pin 1.6x0.8 mm balun footprint +Johanson balun filter +0 +6 +6 +RF_Converter +Balun_Johanson_0896BM15A0001 +https://www.johansontechnology.com/datasheets/0896BM15A0001/0896BM15A0001.pdf +balun RF +0 +6 +6 +RF_Converter +Balun_Johanson_0900PC15J0013 +Johanson 0900PC15J0013 DFN, 10 Pin (https://www.johansontechnology.com/datasheets/0900PC15J0013/0900PC15J0013.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Johanson DFN NoLead +0 +10 +10 +RF_Converter +Balun_Johanson_5400BL15B050E +https://www.johansontechnology.com/datasheets/5400BL15B050/5400BL15B050.pdf +balun RF +0 +6 +6 +RF_Converter +RF_Attenuator_Susumu_PAT1220 +http://www.susumu-usa.com/pdf/Foot_Print_38.pdf, https://www.susumu.co.jp/common/pdf/n_catalog_partition16_en.pdf +2mm 1.2mm +0 +3 +3 +RF_GPS +Linx_RXM-GPS +GPS Module, Linx (https://linxtechnologies.com/wp/wp-content/uploads/rxm-gps-rm.pdf) +gps linx +0 +22 +22 +RF_GPS +Quectel_L70-R +Quectel L70-R, (https://www.quectel.com/product/gps-only-l70-r) +GPS Quectel L70-R +0 +18 +18 +RF_GPS +Quectel_L80-R +Quectel L80-R GPS Module, Patch on Top, https://www.quectel.com/UploadImage/Downlad/Quectel_L80-R_Hardware_Design_V1.2.pdf +quectel GPS GNSS +0 +12 +12 +RF_GPS +SIM28ML +https://simcom.ee/documents/SIM28ML/SIM28ML_Hardware%20Design_V1.01.pdf +SIM28ML GPS +0 +18 +18 +RF_GPS +Sierra_XA11X0 +QFN-24, Pitch 1.20 no EP, https://source.sierrawireless.com/resources/airprime/hardware_specs_user_guides/airprime_xm1100_product_technical_specification +QFN-24 P1.20 +0 +24 +24 +RF_GPS +Sierra_XM11X0 +QFN-20, Pitch 1.20 no EP, https://source.sierrawireless.com/resources/airprime/hardware_specs_user_guides/airprime_xm1100_product_technical_specification +QFN-20 P1.20 +0 +20 +20 +RF_GPS +ublox_LEA +ublox LEA 6/7/8, (https://www.u-blox.com/sites/default/files/LEA-M8S-M8T-FW3_HardwareIntegrationManual_%28UBX-15030060%29.pdf) +GPS ublox LEA 6/7/8 +0 +28 +28 +RF_GPS +ublox_MAX +ublox MAX 6/7/8, (https://www.u-blox.com/sites/default/files/MAX-8-M8-FW3_HardwareIntegrationManual_%28UBX-15030059%29.pdf) +GPS ublox MAX 6/7/8 +0 +18 +18 +RF_GPS +ublox_NEO +ublox NEO 6/7/8, (https://www.u-blox.com/sites/default/files/NEO-8Q-NEO-M8-FW3_HardwareIntegrationManual_%28UBX-15029985%29_0.pdf) +GPS ublox NEO 6/7/8 +0 +24 +24 +RF_GPS +ublox_SAM-M8Q +GPS Module, 15.5x15.5x6.3mm, https://www.u-blox.com/sites/default/files/SAM-M8Q_HardwareIntegrationManual_%28UBX-16018358%29.pdf +ublox SAM-M8Q +0 +100 +20 +RF_GPS +ublox_SAM-M8Q_HandSolder +GPS Module, 15.5x15.5x6.3mm, https://www.u-blox.com/sites/default/files/SAM-M8Q_HardwareIntegrationManual_%28UBX-16018358%29.pdf +ublox SAM-M8Q +0 +20 +20 +RF_GPS +ublox_ZED +ublox ZED-F9, https://www.u-blox.com/sites/default/files/ZED-F9P_DataSheet_%28UBX-17051259%29.pdf +GPS GNSS ublox ZED +0 +102 +55 +RF_GSM +Quectel_BC66 +GSM NB-IoT module, 15.8x17.7x2mm, https://www.quectel.com/UploadImage/Downlad/Quectel_BC66_Hardware_Design_V1.1.pdf +GSM NB-IoT Module BC66 M66 +0 +116 +58 +RF_GSM +Quectel_BC95 +GSM NB-IoT module, 19.9x23.6x2.2mm, https://www.quectel.com/UploadImage/Downlad/Quectel_BC95_Hardware_Design_V1.3.pdf +GSM NB-IoT module BC95 +0 +188 +94 +RF_GSM +Quectel_BG96 +Quectel BG96 Cellular GSM 2G Module https://www.quectel.com/download/quectel_bg96_hardware_design_v1-4 +Quectel BG96 Cellular GSM 2G Module +0 +204 +102 +RF_GSM +Quectel_M95 +Quad-Band GSM/GPRS module, 19.9x23.6x2.65mm, https://www.quectel.com/UploadImage/Downlad/M95_Hardware_Design_V1.3.pdf +GSM Module M95 +0 +84 +42 +RF_GSM +SIMCom_SIM800C +Quad-Band GSM/GPRS module, 17.6x15.7x2.3mm, http://simcom.ee/documents/SIM800C/SIM800C_Hardware_Design_V1.05.pdf +GSM Module SIM800C +0 +84 +42 +RF_GSM +SIMCom_SIM900 +Quad-Band GSM/GPRS module, 24x24x3mm, http://simcom.ee/documents/SIM900/SIM900_Hardware%20Design_V2.05.pdf +GSM Module SIM900 +0 +68 +68 +RF_GSM +Telit_xL865 +Telit xL865 familly footprint, http://www.telit.com/fileadmin/user_upload/products/Downloads/3G/Telit_UL865_Hardware_User_Guide_r8.pdf +xL865 gsm umts +0 +52 +48 +RF_GSM +ublox_SARA-G3_LGA-96 +ublox Sara GSM/HSPA modem, https://www.u-blox.com/sites/default/files/SARA-G3-U2_SysIntegrManual_%28UBX-13000995%29.pdf, pag.162 +ublox SARA-G3 SARA-U2 GSM HSPA +0 +192 +96 +RF_Mini-Circuits +Mini-Circuits_BK377 +Footprint for Mini-Circuits case BK377 (https://ww2.minicircuits.com/case_style/BK276.pdf) +Mini-circuits BK377 +0 +14 +14 +RF_Mini-Circuits +Mini-Circuits_BK377_LandPatternPL-005 +Footprint for Mini-Circuits case BK377 (https://ww2.minicircuits.com/case_style/BK276.pdf) according to land-pattern PL-005, including GND vias (https://ww2.minicircuits.com/pcb/98-pl005.pdf) +Mini-circuits VCXO JTOS PL-005 +0 +50 +14 +RF_Mini-Circuits +Mini-Circuits_CD541_H2.08mm +https://ww2.minicircuits.com/case_style/CD541.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_H2.84mm +https://ww2.minicircuits.com/case_style/CD542.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_LandPatternPL-052 +Footprint for Mini-Circuits case CD542 (https://ww2.minicircuits.com/case_style/CD542.pdf) using land-pattern PL-052, including GND-vias (https://ww2.minicircuits.com/pcb/98-pl052.pdf) +MiniCircuits PL-052 CD542 +0 +17 +6 +RF_Mini-Circuits +Mini-Circuits_CD542_LandPatternPL-094 +Footprint for mini circuit case CD542, Land pattern PL-094, pads 5 and 2 connected via insulated copper area below body, vias included (case drawing: https://ww2.minicircuits.com/case_style/CD542.pdf, land pattern drawing: https://ww2.minicircuits.com/pcb/98-pl094.pdf) +mini-circuits CD542 pl-094 +0 +18 +6 +RF_Mini-Circuits +Mini-Circuits_CD636_H4.11mm +https://ww2.minicircuits.com/case_style/CD636.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CD636_LandPatternPL-035 +Footprint for Mini-Circuits case CD636 (https://ww2.minicircuits.com/case_style/CD636.pdf) following land pattern PL-035, including GND-vias (https://ww2.minicircuits.com/pcb/98-pl035.pdf) +mini-circuits pl-035 CD636 +0 +13 +6 +RF_Mini-Circuits +Mini-Circuits_CD637_H5.23mm +https://ww2.minicircuits.com/case_style/CD637.pdf +RF Transformer +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_CK605 +Footprint for Mini-Circuits case CK605 (https://ww2.minicircuits.com/case_style/CK605.pdf) +Mini-Circuits CK605 +0 +16 +16 +RF_Mini-Circuits +Mini-Circuits_CK605_LandPatternPL-012 +Footprint for Mini-Circuits case CK605 (https://ww2.minicircuits.com/case_style/CK605.pdf) following land pattern PL-012, including GND vias (https://ww2.minicircuits.com/pcb/98-pl012.pdf) +Mini-Circuits PL-012 +0 +53 +16 +RF_Mini-Circuits +Mini-Circuits_DB1627 +Mini-Circuits top-hat case DB1627 (https://ww2.minicircuits.com/case_style/DB1627.pdf) +Mini-Circuits DB1627 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_GP731 +Footprint for Mini-Circuits case GP731 (https://ww2.minicircuits.com/case_style/GP731.pdf) +Mini-Circuits GP731 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_GP731_LandPatternPL-176 +Footprint for Mini-Circuits case GP731 (https://ww2.minicircuits.com/case_style/GP731.pdf) following land pattern PL-176, including GND vias (https://www.minicircuits.com/pcb/98-pl176.pdf) +mini-circuits PL-176 +0 +21 +8 +RF_Mini-Circuits +Mini-Circuits_GP1212 +Footprint for Mini-Circuits case GP1212 (https://ww2.minicircuits.com/case_style/GP731.pdf) +mini-circuits GP1212 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_GP1212_LandPatternPL-176 +Footprint for Mini-Circuits case GP1212 (https://ww2.minicircuits.com/case_style/GP731.pdf) following land pattern PL-176, including GND vias (https://www.minicircuits.com/pcb/98-pl176.pdf) +mini-circuits PL-176 +0 +21 +8 +RF_Mini-Circuits +Mini-Circuits_HF1139 +Footprint for Mini-Circuits case HF1139 (https://ww2.minicircuits.com/case_style/HF1139.pdf) +Mini-Circuits HF1139 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_HF1139_LandPatternPL-230 +Footprint for Mini-Circuits case HF1139 (https://ww2.minicircuits.com/case_style/HF1139.pdf) following land pattern PL-230, including GND vias (https://ww2.minicircuits.com/pcb/98-pl230.pdf) +Mini-Circuits PL-230 +0 +37 +8 +RF_Mini-Circuits +Mini-Circuits_HQ1157 +Footprint for Mini-Circuits case HQ1157 (https://www.minicircuits.com/case_style/HQ1157.pdf) +Mini-Circuits HQ1157 +0 +14 +14 +RF_Mini-Circuits +Mini-Circuits_HZ1198 +Footprint for Mini-Circuits case HZ1198 (https://ww2.minicircuits.com/case_style/HZ1198.pdf) +Mini-Circuits HZ1198 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_HZ1198_LandPatternPL-247 +Footprint for Mini-Circuits cas HZ1198 (https://ww2.minicircuits.com/case_style/HZ1198.pdf) following land pattern PL-247, including GND-vias (https://www.minicircuits.com/pcb/98-pl247.pdf) +Mini-Circuits PL-247 HZ1198 +0 +40 +6 +RF_Mini-Circuits +Mini-Circuits_MMM168 +Footprint for Mini-Circuits case MMM168 (https://ww2.minicircuits.com/case_style/MMM168.pdf) +Mini-Circuits MMM168 +0 +4 +4 +RF_Mini-Circuits +Mini-Circuits_MMM168_LandPatternPL-225 +Footprint for Mini-Circuits case MMM168, Land pattern PL-225, vias included, (case drawing: https://ww2.minicircuits.com/case_style/MMM168.pdf, land pattern drawing: https://ww2.minicircuits.com/pcb/98-pl225.pdf) +pl-225 +0 +10 +4 +RF_Mini-Circuits +Mini-Circuits_QQQ130_ClockwisePinNumbering +Footprint for Mini-Circuits case QQQ130 (https://ww2.minicircuits.com/case_style/QQQ130.pdf) +Mini-Circuits QQQ130 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_QQQ130_LandPattern_PL-236_ClockwisePinNumbering +Footprint for Mini-Circuits case QQQ130 (https://ww2.minicircuits.com/case_style/QQQ130.pdf) following land pattern PL-236, including GND vias (https://ww2.minicircuits.com/pcb/98-pl236.pdf) +Mini-Circuits PL-236 +0 +14 +6 +RF_Mini-Circuits +Mini-Circuits_TT1224_ClockwisePinNumbering +Footprint for Mini-Circuits case TT1224 (https://ww2.minicircuits.com/case_style/TT1224.pdf) following land-pattern PL-258, including GND-vias (https://www.minicircuits.com/pcb/98-pl258.pdf) +Mini-Circuits TT1224 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_TT1224_LandPatternPL-258_ClockwisePinNumbering +Footprint for Mini-Circuits case TT1224 (https://ww2.minicircuits.com/case_style/TT1224.pdf) following land-pattern PL-258, including GND-vias (https://www.minicircuits.com/pcb/98-pl258.pdf) +PL-258 Mini-Circuits +0 +26 +6 +RF_Mini-Circuits +Mini-Circuits_TTT167 +Footprint for Mini-Circuits case TTT167 (https://ww2.minicircuits.com/case_style/TTT167.pdf) +Mini-Circuits TTT167 +0 +6 +6 +RF_Mini-Circuits +Mini-Circuits_TTT167_LandPatternPL-079 +Footprint for Mini-Circuits case TTT167 (Mini-Circuits_TTT167_LandPatternPL-079) following land pattern PL-079, including GND vias (https://ww2.minicircuits.com/pcb/98-pl079.pdf) +Mini-Circuits PL-079 +0 +36 +6 +RF_Mini-Circuits +Mini-Circuits_YY161 +Footprint for Mini-Circuits case YY161 (https://ww2.minicircuits.com/case_style/YY161.pdf) +Mini-Circuits YY161 +0 +8 +8 +RF_Mini-Circuits +Mini-Circuits_YY161_LandPatternPL-049 +Footprint for Mini-Circuits case YY161 (https://ww2.minicircuits.com/case_style/YY161.pdf) using land-pattern PL-049, including GND-connections and vias (https://ww2.minicircuits.com/pcb/98-pl049.pdf) +mini-circuits pl-049 +0 +36 +8 +RF_Module +Ai-Thinker-Ra-01-LoRa +Ai Thinker Ra-01 LoRa +LoRa Ra-01 +0 +16 +16 +RF_Module +Atmel_ATSAMR21G18-MR210UA_NoRFPads +http://ww1.microchip.com/downloads/en/devicedoc/atmel-42475-atsamr21g18-mr210ua_datasheet.pdf +module wireless zigbee 802.15.4 flash crypto ATSAMR21G18 AT45DB041E TECC508A U.Fi +0 +42 +42 +RF_Module +BLE112-A +Class 4 Bluetooth Module with on-board antenna +Bluetooth Module +0 +30 +30 +RF_Module +BM78SPPS5xC2 +Bluetooth Dual-mode module with integral chip antenna (http://ww1.microchip.com/downloads/en/DeviceDoc/60001380C.pdf) +Bluetooth BR/EDR BLE +0 +33 +33 +RF_Module +CMWX1ZZABZ +https://wireless.murata.com/RFM/data/type_abz.pdf +iot lora sigfox +0 +57 +57 +RF_Module +CYBLE-21Pin-10x10mm +Cypress EZ-BLE PRoC Module (Bluetooth Smart) 21 Pin Module +Cypress BT Bluetooth +0 +21 +21 +RF_Module +DWM1000 +IEEE802.15.4-2011 UWB +UWB Module +0 +24 +24 +RF_Module +DecaWave_DWM1001 +https://www.decawave.com/sites/default/files/dwm1001_datasheet.pdf +UWB module +0 +34 +34 +RF_Module +Digi_XBee_SMT +http://www.digi.com/resources/documentation/digidocs/pdfs/90002126.pdf http://ftp1.digi.com/support/documentation/90001020_F.pdf +Digi XBee SMT RF +0 +37 +37 +RF_Module +E18-MS1-PCB +http://www.cdebyte.com/en/downpdf.aspx?id=122 +Zigbee +0 +24 +24 +RF_Module +E73-2G4M04S +http://www.cdebyte.com/en/downpdf.aspx?id=243 +BLE BLE5 nRF52832 +0 +44 +44 +RF_Module +ESP-07 +Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/a007ps01a2_esp-07_product_specification_v1.2.pdf +Wi-Fi Module +0 +16 +16 +RF_Module +ESP-12E +Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/aithinker_esp_12f_datasheet_en.pdf +Wi-Fi Module +0 +22 +22 +RF_Module +ESP-WROOM-02 +https://www.espressif.com/sites/default/files/documentation/0c-esp-wroom-02_datasheet_en.pdf +ESP WROOM-02 espressif esp8266ex +0 +19 +19 +RF_Module +ESP32-S2-MINI-1 +2.4 GHz Wi-Fi and Bluetooth combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf +2.4 GHz Wi-Fi Bluetooth external antenna espressif 20*15.4mm +0 +73 +65 +RF_Module +ESP32-S2-MINI-1U +2.4 GHz Wi-Fi and Bluetooth combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf +2.4 GHz Wi-Fi Bluetooth external antenna espressif 15.4*15.4mm +0 +73 +65 +RF_Module +ESP32-S2-WROVER +ESP32-S2-WROVER(-I) 2.4 GHz Wi-Fi https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf +ESP32-S2 ESP32 WIFI +0 +43 +43 +RF_Module +ESP32-S3-WROOM-1 +2.4 GHz Wi-Fi and Bluetooth module https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-1_wroom-1u_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module +0 +62 +41 +RF_Module +ESP32-S3-WROOM-1U +2.4 GHz Wi-Fi and Bluetooth module https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-1_wroom-1u_datasheet_en.pdf +2.4 GHz Wi-Fi and Bluetooth module +0 +62 +41 +RF_Module +ESP32-WROOM-32 +Single 2.4 GHz Wi-Fi and Bluetooth combo chip https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf +Single 2.4 GHz Wi-Fi and Bluetooth combo chip +0 +60 +39 +RF_Module +ESP32-WROOM-32U +Single 2.4 GHz Wi-Fi and Bluetooth combo chip with U.FL connector, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf +Single 2.4 GHz Wi-Fi and Bluetooth combo chip +0 +60 +39 +RF_Module +Garmin_M8-35_9.8x14.0mm_Layout6x6_P1.5mm +D52M ANT SoC Module https://www.thisisant.com/assets/resources/D00001687_D52_Module_Datasheet.v.2.3_(Garmin).pdf +RF SoC Radio ANT Bluetooth BLE D52 nRF52 Garmin Canada Dynastream Nordic +0 +35 +35 +RF_Module +HOPERF_RFM9XW_SMD +Low Power Long Range Transceiver Module SMD-16 (https://www.hoperf.com/data/upload/portal/20181127/5bfcbea20e9ef.pdf) +LoRa Low Power Long Range Transceiver Module +0 +16 +16 +RF_Module +HOPERF_RFM9XW_THT +Low Power Long Range Transceiver Module THT-16 (https://www.hoperf.com/data/upload/portal/20181127/5bfcbea20e9ef.pdf) +Low Power Long Range Transceiver Module LoRa +0 +16 +16 +RF_Module +HOPERF_RFM69HW +Radio, RF, Module, http://www.hoperf.com/upload/rf/RFM69HW-V1.3.pdf +Radio RF Module +0 +16 +16 +RF_Module +IQRF_TRx2DA_KON-SIM-01 +8 pin SIM connector for IQRF TR-x2DA(T) modules, http://iqrf.org/weben/downloads.php?id=104 +IQRF_KON-SIM-01 IQRF_TRx2DA +0 +10 +8 +RF_Module +IQRF_TRx2D_KON-SIM-01 +8 pin SIM connector for IQRF TR-x2D(C)(T) modules, http://iqrf.org/weben/downloads.php?id=104 +IQRF_KON-SIM-01 IQRF_TRx2D IQRF_TRx2DC +0 +10 +8 +RF_Module +Laird_BL652 +Bluetooth v4.2 + NFC module +Bluetooth BLE NFC +0 +39 +39 +RF_Module +MOD-nRF8001 +BLE module, https://www.olimex.com/Products/Modules/RF/MOD-nRF8001/ +BLE module +0 +11 +11 +RF_Module +Microchip_RN4871 +Microchip RN4871 footprint +RN4871 BLE +0 +16 +16 +RF_Module +Modtronix_inAir9 +Modtronix Wireless SX1276 LoRa Module (http://modtronix.com/img/prod/imod/inair9/inair_dimensions.gif) +Modtronix LoRa inAir inAir9 SX1276 RF 915MHz 868MHz Wireless +0 +14 +14 +RF_Module +MonoWireless_TWE-L-WX +https://www.mono-wireless.com/jp/products/TWE-LITE/MW-PDS-TWELITE-JP.pdf +TWE-L-WX +0 +32 +32 +RF_Module +Particle_P1 +https://docs.particle.io/datasheets/p1-datasheet/ +Particle P1 +0 +75 +75 +RF_Module +RAK811 +RAK811 LPWAN Module https://downloads.rakwireless.com/LoRa/RAK811/Hardware_Specification/RAK811_LoRa_Module_Datasheet_V1.4.pdf +LoRa LoRaWAN RAK811 +0 +34 +34 +RF_Module +RAK4200 +RAK4200 LPWAN Module https://downloads.rakwireless.com/LoRa/RAK4200/Hardware-Specification/RAK4200_Module_Specifications_V1.4.pdf +LoRa LoRaWAN RAK4200 +0 +20 +20 +RF_Module +RFDigital_RFD77101 +RFDigital RFD77101 Simblee +RFDigital RFD77101 Simblee +0 +45 +45 +RF_Module +RN42 +Class 2 Bluetooth Module with on-board antenna +Bluetooth Module +0 +36 +33 +RF_Module +RN42N +Class 2 Bluetooth Module without antenna +Bluetooth Module +0 +39 +36 +RF_Module +RN2483 +Low-Power Long Range LoRa Transceiver Module +rf module lora lorawan +0 +47 +47 +RF_Module +Raytac_MDBT50Q +Multiprotocol radio SoC module https://www.raytac.com/download/index.php?index_id=43 +wireless 2.4 GHz Bluetooth ble zigbee 802.15.4 thread nordic raytac nrf52840 nrf52833 +0 +61 +61 +RF_Module +ST_SPBTLE +Bluetooth Low Energy Module +ble module st bluetooth +0 +11 +11 +RF_Module +TD1205 +https://github.com/Telecom-Design/Documentation_TD_RF_Module/blob/master/TD1205%20Datasheet.pdf +SIGFOX Module +0 +9 +9 +RF_Module +TD1208 +https://github.com/Telecom-Design/Documentation_TD_RF_Module/blob/master/TD1208%20Datasheet.pdf +SIGFOX Module +0 +25 +25 +RF_Module +Taiyo-Yuden_EYSGJNZWY +Taiyo Yuden NRF51822 Module Bluetooth https://www.yuden.co.jp/wireless_module/document/datareport2/en/TY_BLE_EYSGJNZ_DataReport_V1_9_20180530E.pdf +Taiyo Yuden NRF51822 Module Bluetooth +0 +30 +28 +RF_Module +ZETA-433-SO_SMD +RF transceiver SMD style https://www.rfsolutions.co.uk/downloads/1456219226DS-ZETA.pdf +RF transceiver SMD style +0 +12 +12 +RF_Module +ZETA-433-SO_THT +RF transceiver THT style https://www.rfsolutions.co.uk/downloads/1456219226DS-ZETA.pdf +RF transceiver SMD style +0 +12 +12 +RF_Module +nRF24L01_Breakout +nRF24L01 breakout board +nRF24L01 adapter breakout +0 +8 +8 +RF_Shielding +Laird_Technologies_97-2002_25.40x25.40mm +Laird Technologies 97-2002 EZ PEEL Shielding Cabinet One Piece SMD 25.40x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +8 +1 +RF_Shielding +Laird_Technologies_97-2003_12.70x13.37mm +Laird Technologies 97-2003 EZ PEEL Shielding Cabinet One Piece SMD 12.70x13.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +8 +1 +RF_Shielding +Laird_Technologies_BMI-S-101_13.66x12.70mm +Laird Technologies BMI-S-101 Shielding Cabinet One Piece SMD 13.66x12.70mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-102_16.50x16.50mm +Laird Technologies BMI-S-102 Shielding Cabinet One Piece SMD 16.50x16.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-103_26.21x26.21mm +Laird Technologies BMI-S-103 Shielding Cabinet One Piece SMD 26.21x26.21mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +24 +1 +RF_Shielding +Laird_Technologies_BMI-S-104_32.00x32.00mm +Laird Technologies BMI-S-104 Shielding Cabinet One Piece SMD 32.00x32.00mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-105_38.10x25.40mm +Laird Technologies BMI-S-105 Shielding Cabinet One Piece SMD 38.10x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-106_36.83x33.68mm +Laird Technologies BMI-S-106 Shielding Cabinet One Piece SMD 36.83x33.68mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-107_44.37x44.37mm +Laird Technologies BMI-S-107 Shielding Cabinet One Piece SMD 44.37x44.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +36 +1 +RF_Shielding +Laird_Technologies_BMI-S-201-F_13.66x12.70mm +Laird Technologies BMI-S-201-F Shielding Cabinet Two Piece SMD 13.66x12.70mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-202-F_16.50x16.50mm +Laird Technologies BMI-S-202-F Shielding Cabinet Two Piece SMD 16.50x16.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +16 +1 +RF_Shielding +Laird_Technologies_BMI-S-203-F_26.21x26.21mm +Laird Technologies BMI-S-203-F Shielding Cabinet Two Piece SMD 26.21x26.21mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +24 +1 +RF_Shielding +Laird_Technologies_BMI-S-204-F_32.00x32.00mm +Laird Technologies BMI-S-204-F Shielding Cabinet Two Piece SMD 32.00x32.00mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-205-F_38.10x25.40mm +Laird Technologies BMI-S-205-F Shielding Cabinet Two Piece SMD 38.10x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-206-F_36.83x33.68mm +Laird Technologies BMI-S-206-F Shielding Cabinet Two Piece SMD 36.83x33.68mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +28 +1 +RF_Shielding +Laird_Technologies_BMI-S-207-F_44.37x44.37mm +Laird Technologies BMI-S-207-F Shielding Cabinet Two Piece SMD 44.37x44.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +36 +1 +RF_Shielding +Laird_Technologies_BMI-S-208-F_39.60x39.60mm +Laird Technologies BMI-S-208-F Shielding Cabinet Two Piece SMD 39.60x39.60mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +32 +1 +RF_Shielding +Laird_Technologies_BMI-S-209-F_29.36x18.50mm +Laird Technologies BMI-S-209-F Shielding Cabinet Two Piece SMD 29.36x18.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +20 +1 +RF_Shielding +Laird_Technologies_BMI-S-210-F_44.00x30.50mm +Laird Technologies BMI-S-210-F Shielding Cabinet Two Piece SMD 44.00x30.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) +Shielding Cabinet +0 +32 +1 +RF_Shielding +Laird_Technologies_BMI-S-230-F_50.8x38.1mm +Laird Technologies BMI-S-230-F Shielding Cabinet Two Piece SMD 50.8x38.1mm +Shielding Cabinet +0 +36 +1 +RF_Shielding +Wuerth_36103205_20x20mm +WE-SHC Shielding Cabinet SMD 20x20mm +Shielding Cabinet +0 +20 +1 +RF_Shielding +Wuerth_36103255_25x25mm +WE-SHC Shielding Cabinet SMD 25x25mm +Shielding Cabinet +0 +24 +1 +RF_Shielding +Wuerth_36103305_30x30mm +WE-SHC Shielding Cabinet SMD 30x30mm +Shielding Cabinet +0 +28 +1 +RF_Shielding +Wuerth_36103505_50x50mm +WE-SHC Shielding Cabinet SMD 50x50mm +Shielding Cabinet +0 +44 +1 +RF_Shielding +Wuerth_36103605_60x60mm +WE-SHC Shielding Cabinet SMD 60x60mm +Shielding Cabinet +0 +52 +1 +RF_Shielding +Wuerth_36503205_20x20mm +WE-SHC Shielding Cabinet THT 21x21mm +Shielding Cabinet +0 +16 +1 +RF_Shielding +Wuerth_36503255_25x25mm +WE-SHC Shielding Cabinet THT 26x26mm +Shielding Cabinet +0 +20 +1 +RF_Shielding +Wuerth_36503305_30x30mm +WE-SHC Shielding Cabinet THT 31x31mm +Shielding Cabinet +0 +24 +1 +RF_Shielding +Wuerth_36503505_50x50mm +WE-SHC Shielding Cabinet THT 51x51mm +Shielding Cabinet +0 +40 +1 +RF_Shielding +Wuerth_36503605_60x60mm +WE-SHC Shielding Cabinet THT 61x61mm +Shielding Cabinet +0 +48 +1 +RF_WiFi +USR-C322 +https://www.usriot.com/download/WIFI/USR-C322-Hardware-Manual_V1.2.01.pdf +WiFi IEEE802.11 b/g/n +0 +44 +44 +Relay_SMD +Relay_2P2T_10x6mm_TE_IMxxG +Signal Relay, 10x6mm, 2 Form C, Gull Wings, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7F108-98001%7FZ.1%7Fpdf%7FEnglish%7FENG_DS_108-98001_Z.1.pdf +TE IM-Series Relay DPDT Form C +0 +8 +8 +Relay_SMD +Relay_DPDT_AXICOM_IMSeries_JLeg +http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Specification+Or+Standard%7F108-98001%7FW5%7Fpdf%7FEnglish%7FENG_SS_108-98001_W5.pdf +AXICOM IM-Series Relay J JLeg +0 +8 +8 +Relay_SMD +Relay_DPDT_FRT5_SMD +IM Signal Relay DPDT FRT5 narrow footprint, SMD version of package +Relay DPDT IM-relay FRT5 +0 +10 +10 +Relay_SMD +Relay_DPDT_Kemet_EE2_NU +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double coil latching surface mount SMD +0 +8 +8 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUH +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double coil latching surface mount SMD +0 +8 +8 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUH_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD +0 +10 +10 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUX_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD +0 +10 +10 +Relay_SMD +Relay_DPDT_Kemet_EE2_NUX_NKX +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double coil latching surface mount SMD +0 +8 +8 +Relay_SMD +Relay_DPDT_Kemet_EE2_NU_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD +0 +10 +10 +Relay_SMD +Relay_DPDT_Omron_G6H-2F +package for Omron G6H-2F relais, see http://cdn-reichelt.de/documents/datenblatt/C300/G6H%23OMR.pdf +Omron G6H-2F relais +0 +10 +10 +Relay_SMD +Relay_DPDT_Omron_G6K-2F +Omron G6K-2F relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2F relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6K-2F-Y +Omron G6K-2F-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2F-Y relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6K-2G +Omron G6K-2G relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2G relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6K-2G-Y +Omron G6K-2G-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2G-Y relay +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6S-2F +Relay Omron G6S-2F, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6S-2F +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6S-2G +Relay Omron G6S-2G, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6S-2G +0 +8 +8 +Relay_SMD +Relay_DPDT_Omron_G6SK-2F +Relay Omron G6SK-2F, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6SK-2F +0 +10 +10 +Relay_SMD +Relay_DPDT_Omron_G6SK-2G +Relay Omron G6SK-2G, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6SK-2G +0 +10 +10 +Relay_SMD +Relay_Fujitsu_FTR-B3S +https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-b3.pdf +Fujitsh FTR B3S B3SA Relay J JLeg +0 +8 +8 +Relay_SMD +Relay_SPDT_AXICOM_HF3Series_50ohms_Pitch1.27mm +hiqsdr.com/images/3/3e/Axicom-HF3.pdf +AXICOM HF3-Series Relay Pitch 1.27mm 50ohms +0 +16 +16 +Relay_SMD +Relay_SPDT_AXICOM_HF3Series_75ohms_Pitch1.27mm +hiqsdr.com/images/3/3e/Axicom-HF3.pdf +AXICOM HF3-Series Relay Pitch 1.27mm 75ohm +0 +16 +16 +Relay_THT +Relay_1-Form-A_Schrack-RYII_RM5mm +Relay, 1-Form-A, Schrack-RYII, RM5mm, SPST-NO +Relay 1-Form-A Schrack-RYII RM5mm SPST-NO +0 +4 +4 +Relay_THT +Relay_1-Form-B_Schrack-RYII_RM5mm +Relay, 1-Form-B, Schrack-RYII, RM5mm, SPST-NC +Relay 1-Form-B Schrack-RYII RM5mm SPST-NC +0 +4 +4 +Relay_THT +Relay_1-Form-C_Schrack-RYII_RM3.2mm +Relay, 1-Form-C, Schrack-RYII, RM3.2mm, SPDT +Relay 1-Form-C Schrack-RYII RM3.2mm SPDT +0 +5 +5 +Relay_THT +Relay_1P1T_NO_10x24x18.8mm_Panasonic_ADW11xxxxW_THT +Panasonic Relay SPST 10mm 24mm, https://www.panasonic-electric-works.com/pew/es/downloads/ds_dw_hl_en.pdf +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_DPDT_AXICOM_IMSeries_Pitch3.2mm +AXICOM IM-Series Relays, DPDR, Pitch 3.2mm, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Specification+Or+Standard%7F108-98001%7FV%7Fpdf%7FEnglish%7FENG_SS_108-98001_V_IM_0614_v1.pdf%7F4-1462039-1 +AXICOM IM-Series Relay DPDR Pitch 3.2mm +0 +8 +8 +Relay_THT +Relay_DPDT_AXICOM_IMSeries_Pitch5.08mm +AXICOM IM-Series Relays, DPDR, Pitch 5.08 +AXICOM IM-Series Relay DPDR Pitch 5.08 +0 +8 +8 +Relay_THT +Relay_DPDT_FRT5 +IM Signal Relay DPDT FRT5 narrow footprint +Relay DPDT IM-relay FRT5 +0 +10 +10 +Relay_THT +Relay_DPDT_Finder_30.22 +Finder 32.21-x000 Relay, DPDT, https://gfinder.findernet.com/public/attachments/30/EN/S30EN.pdf +AXICOM IM-Series Relay SPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Finder_40.52 +Relay DPDT Finder 40.52, Pitch 5mm/7.5mm, https://www.finder-relais.net/de/finder-relais-serie-40.pdf +Relay DPDT Finder 40.52 Pitch 5mm +0 +8 +8 +Relay_THT +Relay_DPDT_Fujitsu_FTR-F1C +https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-f1.pdf +relay dpdt fujitsu tht +0 +8 +8 +Relay_THT +Relay_DPDT_Kemet_EC2 +Kemet signal relay, DPDT, non-latching, single coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT non single coil latching through hole THT +0 +8 +8 +Relay_THT +Relay_DPDT_Kemet_EC2_DoubleCoil +Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf +Kemet EC2 signal relay DPDT double dual coil latching through hole THT +0 +10 +10 +Relay_THT +Relay_DPDT_Omron_G2RL +Omron Relay DPDT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf +Omron Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G5V-2 +http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v2.pdf +Omron G5V-2 Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6H-2 +Omron relay G6H-2, see http://cdn-reichelt.de/documents/datenblatt/C300/G6H%23OMR.pdf +Omron relay G6H-2 +0 +10 +10 +Relay_THT +Relay_DPDT_Omron_G6K-2P +Omron G6K-2P relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2P relay +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6K-2P-Y +Omron G6K-2P-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf +Omron G6K-2P-Y relay +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6S-2 +Relay Omron G6S-2, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6S-2 +0 +8 +8 +Relay_THT +Relay_DPDT_Omron_G6SK-2 +Relay Omron G6SK-2, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf +Relay Omron G6SK-2 +0 +10 +10 +Relay_THT +Relay_DPDT_Panasonic_JW2 +Panasonic Relay DPDT, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok +Panasonic Relay DPDT +0 +8 +8 +Relay_THT +Relay_DPDT_Schrack-RT2-FormC-Dual-Coil_RM5mm +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FRT2_bistable%7F1116%7Fpdf%7FEnglish%7FENG_DS_RT2_bistable_1116.pdf%7F1-1415537-8 +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Relay +0 +9 +9 +Relay_THT +Relay_DPDT_Schrack-RT2-FormC_RM5mm +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN +Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Relay +0 +8 +8 +Relay_THT +Relay_DPST_Fujitsu_FTR-F1A +https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-f1.pdf +relay dpst fujitsu tht +0 +6 +6 +Relay_THT +Relay_DPST_Schrack-RT2-FormA_RM5mm +Relay DPST Schrack-RT2 RM5mm 16A 250V AC Form A http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN +Relay DPST Schrack-RT2 RM5mm 16A 250V AC Relay +0 +6 +6 +Relay_THT +Relay_SPDT_Finder_32.21-x000 +Finder 32.21-x000 Relay, SPDT, https://gfinder.findernet.com/assets/Series/355/S32EN.pdf +AXICOM IM-Series Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_34.51_Horizontal +Relay SPDT, Finder Type34.51, horizontal form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf +Relay SPDT Finder +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_34.51_Vertical +Relay SPDT, Finder Type34.51, vertical/standing form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf +Relay SPDT Finder +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_36.11 +FINDER 36.11, SPDT relay, 10A, https://gfinder.findernet.com/public/attachments/36/EN/S36EN.pdf +spdt relay +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.11 +Relay SPDT Finder 40.11, https://www.finder-relais.net/de/finder-relais-serie-40.pdf +Relay SPDT Finder 40.11 +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.31 +Relay DPDT Finder 40.31, Pitch 3.5mm/7.5mm, https://www.finder-relais.net/de/finder-relais-serie-40.pdf +Relay DPDT Finder 40.31 Pitch 3.5mm +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.41 +Relay DPDT Finder 40.41, Pitch 3.5mm/7.5mm, https://www.finder-relais.net/de/finder-relais-serie-40.pdf +Relay DPDT Finder 40.41 Pitch 3.5mm +0 +5 +5 +Relay_THT +Relay_SPDT_Finder_40.51 +Relay DPDT Finder 40.51, Pitch 5mm/7.5mm, https://www.finder-relais.net/de/finder-relais-serie-40.pdf +Relay DPDT Finder 40.51 Pitch 5mm +0 +5 +5 +Relay_THT +Relay_SPDT_HJR-4102 +IM Signal Relay SPDT HJR-4102 +Relay SPDT IM-relay HJR-4102 +0 +6 +6 +Relay_THT +Relay_SPDT_HsinDa_Y14 +http://www.hsinda.com.cn/en/ProductShow.asp?ID=208 +Relay Y14 +0 +6 +6 +Relay_THT +Relay_SPDT_Omron-G5LE-1 +Omron Relay SPDT, http://www.omron.com/ecb/products/pdf/en-g5le.pdf +Omron Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_Omron-G5Q-1 +Relay SPDT Omron Serie G5Q, http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5q.pdf +Relay SPDT Omron Serie G5Q +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G5V-1 +Relay Omron G5V-1, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v_1.pdf +Relay Omron G5V-1 +0 +6 +6 +Relay_THT +Relay_SPDT_Omron_G6E +Relay SPDT Omron Serie G6E +Relay SPDT Omron Serie G6E 1x um +0 +5 +5 +Relay_THT +Relay_SPDT_Omron_G6EK +Relay SPDT Omron Serie G6EK, see http://www.logosfoundation.org/instrum_gwr/pi/Omron_G6E_134P.pdf +Relay SPDT Omron Serie G6EK +0 +6 +6 +Relay_THT +Relay_SPDT_Panasonic_JW1_FormC +Panasonic Relay SPDT, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok +Panasonic Relay SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_PotterBrumfield_T9AP5D52_12V30A +Relay SPDT Potter&Brumfield T9AP5D52 12V 30A 1xUn Connector Fast ON Only Dummy for Space NO Pads +Relay SPDT Potter&Brumfield T9AP5D52 12V 30A 1xUm Connector Fast ON Flachsteckeranschluss Only Dummy for Space NO Pads +0 +0 +0 +Relay_THT +Relay_SPDT_RAYEX-L90 +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90 SPDT +0 +6 +6 +Relay_THT +Relay_SPDT_RAYEX-L90S +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90S SPDT +0 +5 +5 +Relay_THT +Relay_SPDT_SANYOU_SRD_Series_Form_C +relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf +relay Sanyu SRD form C +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RP-II-1-16A-FormC_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Relay +0 +8 +5 +Relay_THT +Relay_SPDT_Schrack-RP-II-1-FormC_RM3.5mm +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RP-II-1-FormC_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RT1-16A-FormC_RM5mm +Relay SPST Schrack-RT1 RM5mm 16A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM5mm 16A 250V AC Relay +0 +8 +5 +Relay_THT +Relay_SPDT_Schrack-RT1-FormC_RM3.5mm +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_Schrack-RT1-FormC_RM5mm +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Relay +0 +5 +5 +Relay_THT +Relay_SPDT_StandexMeder_SIL_Form1C +Standex-Meder SIL-relais, Form 1C, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf +Standex Meder SIL reed relais +0 +5 +5 +Relay_THT +Relay_SPST_Finder_32.21-x300 +Finder 32.21-x300 Relay, SPST, https://gfinder.findernet.com/assets/Series/355/S32EN.pdf +Finder 32.21-x300 Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_Omron-G5Q-1A +Relay SPST-NO Omron Serie G5Q, http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5q.pdf +Relay SPST-NO Omron Serie G5Q +0 +4 +4 +Relay_THT +Relay_SPST_Panasonic_JW1_FormA +Panasonic Relay SPST, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok +Panasonic Relay SPST +0 +4 +4 +Relay_THT +Relay_SPST_PotterBrumfield_T9AP1D52_12V30A +Relay SPST Potter&Brumfield T9AP1D52 12V 30A 1xEin Connector Fast ON Only Dummy for Space NO Pads +Relau SPST Potter&Brumfield T9AP1D52 12V 30A 1xEin Connector Fast ON Flachsteckeranschluss Only Dummy for Space NO Pads +0 +0 +0 +Relay_THT +Relay_SPST_RAYEX-L90A +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90A SPST NO +0 +5 +5 +Relay_THT +Relay_SPST_RAYEX-L90AS +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90AS SPST NO +0 +4 +4 +Relay_THT +Relay_SPST_RAYEX-L90B +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90B SPST NC +0 +5 +5 +Relay_THT +Relay_SPST_RAYEX-L90BS +https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf +Relay RAYEX L90BS SPST NC +0 +4 +4 +Relay_THT +Relay_SPST_SANYOU_SRD_Series_Form_A +relay Sanyou SRD series Form A http://www.sanyourelay.ca/public/products/pdf/SRD.pdf +relay Sanyu SRD form A +0 +4 +4 +Relay_THT +Relay_SPST_SANYOU_SRD_Series_Form_B +relay Sanyou SRD series Form B opener http://www.sanyourelay.ca/public/products/pdf/SRD.pdf +relay Sanyu SRD form B opener +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RP-II-1-16A-FormA_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Form A http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Relay +0 +6 +4 +Relay_THT +Relay_SPST_Schrack-RP-II-1-FormA_RM3.5mm +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Form A +Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RP-II-1-FormA_RM5mm +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Form A http://image.schrack.com/datenblaetter/h_rp810012-b.pdf +Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RP3SL-1coil_RM5mm +Relay SPST Schrack-RP3SL, 1-coil-version, RM5mm 16A 250V AC Form A http://www.alliedelec.com/m/d/543c6bed18bf23a83ae5238947033ee0.pdf +Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Relay +0 +6 +4 +Relay_THT +Relay_SPST_Schrack-RP3SL_RM5mm +Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Form A http://www.alliedelec.com/m/d/543c6bed18bf23a83ae5238947033ee0.pdf +Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Relay +0 +7 +5 +Relay_THT +Relay_SPST_Schrack-RT1-16A-FormA_RM5mm +Relay SPST Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN +Relay SPST Schrack-RT2 RM5mm 16A 250V AC Relay +0 +6 +4 +Relay_THT +Relay_SPST_Schrack-RT1-FormA_RM3.5mm +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Form A +Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_Schrack-RT1-FormA_RM5mm +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf +Relay SPST Schrack-RT1 RM5mm 8A 250V AC Relay +0 +4 +4 +Relay_THT +Relay_SPST_StandexMeder_MS_Form1AB +Standex-Meder MS SIL-relais, Form 1A/1B, see https://standexelectronics.com/de/produkte/ms-reed-relais/ +Standex Meder MS SIL reed relais +0 +4 +4 +Relay_THT +Relay_SPST_StandexMeder_SIL_Form1A +Standex-Meder SIL-relais, Form 1A, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf +Standex Meder SIL reed relais +0 +4 +4 +Relay_THT +Relay_SPST_StandexMeder_SIL_Form1B +Standex-Meder SIL-relais, Form 1B, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf +Standex Meder SIL reed relais +0 +4 +4 +Relay_THT +Relay_SPST_TE_PCH-1xxx2M +Miniature PCB Relay, PCH Series, 1 Form A (NO), SPST http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FPCH_series_relay_data_sheet_E%7F1215%7Fpdf%7FEnglish%7FENG_DS_PCH_series_relay_data_sheet_E_1215.pdf +Relay SPST NO +0 +4 +4 +Relay_THT +Relay_SPST_TE_PCN-1xxD3MHZ +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1461491%7FG2%7Fpdf%7FEnglish%7FENG_CD_1461491_G2.pdf%7F3-1461491-0 +SPST relay slim +0 +4 +4 +Relay_THT +Relay_Socket_DPDT_Finder_96.12 +https://gfinder.findernet.com/public/attachments/56/DE/S56DE.pdf +Relay socket DPDT Finder 96.12 56.32 +0 +8 +8 +Relay_THT +Relay_StandexMeder_DIP_HighProfile +package for Standex Meder DIP reed relay series, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_DIP.pdf +DIL DIP PDIP 2.54mm 7.62mm 300mil reed relay +0 +8 +8 +Relay_THT +Relay_StandexMeder_DIP_LowProfile +package for Standex Meder DIP reed relay series, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_DIP.pdf +DIL DIP PDIP 2.54mm 7.62mm 300mil reed relay +0 +8 +8 +Relay_THT +Relay_StandexMeder_UMS +Standex-Meder SIL-relais, UMS, see http://cdn-reichelt.de/documents/datenblatt/C300/UMS05_1A80_75L_DB.pdf +Standex Meder SIL reed relais +0 +4 +4 +Resistor_SMD +R_0201_0603Metric +Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +resistor +0 +4 +2 +Resistor_SMD +R_0201_0603Metric_Pad0.64x0.40mm_HandSolder +Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +4 +2 +Resistor_SMD +R_0402_1005Metric +Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0402_1005Metric_Pad0.72x0.64mm_HandSolder +Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0603_1608Metric +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0603_1608Metric_Pad0.98x0.95mm_HandSolder +Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0612_1632Metric +Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0612_1632Metric_Pad1.18x3.40mm_HandSolder +Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0805_2012Metric +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0805_2012Metric_Pad1.20x1.40mm_HandSolder +Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_0815_2038Metric +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_0815_2038Metric_Pad1.20x4.05mm_HandSolder +Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_01005_0402Metric +Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +resistor +0 +4 +2 +Resistor_SMD +R_01005_0402Metric_Pad0.57x0.30mm_HandSolder +Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +4 +2 +Resistor_SMD +R_1020_2550Metric +Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1020_2550Metric_Pad1.33x5.20mm_HandSolder +Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1206_3216Metric +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1206_3216Metric_Pad1.30x1.75mm_HandSolder +Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1210_3225Metric +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1210_3225Metric_Pad1.30x2.65mm_HandSolder +Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1218_3246Metric +Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1218_3246Metric_Pad1.22x4.75mm_HandSolder +Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_1812_4532Metric +Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_1812_4532Metric_Pad1.30x3.40mm_HandSolder +Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_2010_5025Metric +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_2010_5025Metric_Pad1.40x2.65mm_HandSolder +Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_2512_6332Metric +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_2512_6332Metric_Pad1.40x3.35mm_HandSolder +Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_2816_7142Metric +Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_2816_7142Metric_Pad3.20x4.45mm_HandSolder +Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_4020_10251Metric +Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), generated with kicad-footprint-generator +resistor +0 +2 +2 +Resistor_SMD +R_4020_10251Metric_Pad1.65x5.30mm_HandSolder +Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), generated with kicad-footprint-generator +resistor handsolder +0 +2 +2 +Resistor_SMD +R_Array_Concave_2x0603 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Concave_4x0402 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA04P (see cra04p.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Concave_4x0603 +Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_2x0402 +Chip Resistor Network, ROHM MNR02 (see mnr_g.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_2x0603 +Chip Resistor Network, ROHM MNR12 (see mnr_g.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_2x0606 +Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_2x1206 +Chip Resistor Network, ROHM MNR32 (see mnr_g.pdf) +resistor array +0 +4 +4 +Resistor_SMD +R_Array_Convex_4x0402 +Chip Resistor Network, ROHM MNR04 (see mnr_g.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_4x0603 +Chip Resistor Network, ROHM MNR14 (see mnr_g.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_4x0612 +Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_4x1206 +Chip Resistor Network, ROHM MNR34 (see mnr_g.pdf) +resistor array +0 +8 +8 +Resistor_SMD +R_Array_Convex_5x0603 +Chip Resistor Network, ROHM MNR15 (see mnr_g.pdf) +resistor array +0 +10 +10 +Resistor_SMD +R_Array_Convex_5x1206 +Chip Resistor Network, ROHM MNR35 (see mnr_g.pdf) +resistor array +0 +10 +10 +Resistor_SMD +R_Array_Convex_8x0602 +Chip Resistor Network, ROHM MNR18 (see mnr_g.pdf) +resistor array +0 +16 +16 +Resistor_SMD +R_Cat16-2 +SMT resistor net, Bourns CAT16 series, 2 way +SMT resistor net Bourns CAT16 series 2 way +0 +4 +4 +Resistor_SMD +R_Cat16-4 +SMT resistor net, Bourns CAT16 series, 4 way +SMT resistor net Bourns CAT16 series 4 way +0 +8 +8 +Resistor_SMD +R_Cat16-8 +SMT resistor net, Bourns CAT16 series, 8 way +SMT resistor net Bourns CAT16 series 8 way +0 +16 +16 +Resistor_SMD +R_MELF_MMB-0207 +Resistor, MELF, MMB-0207, http://www.vishay.com/docs/28713/melfprof.pdf +MELF Resistor +0 +2 +2 +Resistor_SMD +R_MicroMELF_MMU-0102 +Resistor, MicroMELF, MMU-0102, http://www.vishay.com/docs/28713/melfprof.pdf +MicroMELF Resistor +0 +2 +2 +Resistor_SMD +R_MiniMELF_MMA-0204 +Resistor, MiniMELF, MMA-0204, http://www.vishay.com/docs/28713/melfprof.pdf +MiniMELF Resistor +0 +2 +2 +Resistor_SMD +R_Shunt_Ohmite_LVK12 +4 contact shunt resistor +shunt resistor 4 contacts +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK20 +4 contacts shunt resistor, https://www.ohmite.com/assets/docs/res_lvk.pdf +4 contacts resistor smd +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK24 +4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf +4 contacts resistor smd +0 +4 +4 +Resistor_SMD +R_Shunt_Ohmite_LVK25 +4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf +4 contacts resistor smd +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSK2512_6332Metric_T1.19mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 1.19mm, 5 to 200 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) +resistor shunt WSK2512 +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSK2512_6332Metric_T2.21mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.21mm, 1 to 4.9 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) +resistor shunt WSK2512 +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSK2512_6332Metric_T2.66mm +Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.66mm, 0.5 to 0.99 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) +resistor shunt WSK2512 +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSKW0612 +https://www.vishay.com/docs/30332/wskw0612.pdf +4-Terminal SMD Shunt +0 +4 +4 +Resistor_SMD +R_Shunt_Vishay_WSR2_WSR3 +Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf +SMD Shunt Resistor +0 +2 +2 +Resistor_SMD +R_Shunt_Vishay_WSR2_WSR3_KelvinConnection +Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf +SMD Shunt Resistor +0 +4 +2 +Resistor_THT +R_Array_SIP4 +4-pin Resistor SIP pack +R +0 +4 +4 +Resistor_THT +R_Array_SIP5 +5-pin Resistor SIP pack +R +0 +5 +5 +Resistor_THT +R_Array_SIP6 +6-pin Resistor SIP pack +R +0 +6 +6 +Resistor_THT +R_Array_SIP7 +7-pin Resistor SIP pack +R +0 +7 +7 +Resistor_THT +R_Array_SIP8 +8-pin Resistor SIP pack +R +0 +8 +8 +Resistor_THT +R_Array_SIP9 +9-pin Resistor SIP pack +R +0 +9 +9 +Resistor_THT +R_Array_SIP10 +10-pin Resistor SIP pack +R +0 +10 +10 +Resistor_THT +R_Array_SIP11 +11-pin Resistor SIP pack +R +0 +11 +11 +Resistor_THT +R_Array_SIP12 +12-pin Resistor SIP pack +R +0 +12 +12 +Resistor_THT +R_Array_SIP13 +13-pin Resistor SIP pack +R +0 +13 +13 +Resistor_THT +R_Array_SIP14 +14-pin Resistor SIP pack +R +0 +14 +14 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=1.9mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 1.9mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=2.54mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 2.54mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P22.40mm +Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P25.40mm +Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W6.4mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W6.4mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W6.4mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W9.0mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L38.0mm_W9.0mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L50.0mm_W9.0mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L50.0mm_W9.0mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P66.04mm +Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P71.12mm +Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L75.0mm_W9.0mm_P81.28mm +Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Power_L75.0mm_W9.0mm_P86.36mm +Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm +0 +2 +2 +Resistor_THT +R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm +Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm +0 +4 +4 +Resistor_THT +R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm +0 +4 +4 +Resistor_THT +R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm +0 +2 +2 +Resistor_THT +R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm +0 +2 +2 +Resistor_THT +R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm +0 +2 +2 +Resistor_THT +R_Box_L8.4mm_W2.5mm_P5.08mm +Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf +Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm +0 +2 +2 +Resistor_THT +R_Box_L13.0mm_W4.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm +0 +2 +2 +Resistor_THT +R_Box_L14.0mm_W5.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm +0 +2 +2 +Resistor_THT +R_Box_L26.0mm_W5.0mm_P20.00mm +Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L7.0mm_W8.0mm_Px2.40mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.40*2.30mm^2, 7W, length*width=7*8mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.40*2.30mm^2 7W length 7mm width 8mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L9.0mm_W10.0mm_Px2.70mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.70*2.30mm^2, 17W, length*width=9*10mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.70*2.30mm^2 17W length 9mm width 10mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L11.0mm_W7.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L12.0mm_W8.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L13.0mm_W9.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm +0 +2 +2 +Resistor_THT +R_Radial_Power_L16.1mm_W9.0mm_P7.37mm +Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm +0 +2 +2 +Rotary_Encoder +RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm +Alps rotary encoder, EC12E... with switch, vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E... with switch, vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC11E_Vertical_H20mm +Alps rotary encoder, EC12E... without switch (pins are dummy), vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC11E_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E... without switch (pins are dummy), vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html +rotary encoder +0 +7 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm +Alps rotary encoder, EC12E... with switch, vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E... with switch, vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Alps_EC12E_Vertical_H20mm +Alps rotary encoder, EC12E..., vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Alps_EC12E_Vertical_H20mm_CircularMountingHoles +Alps rotary encoder, EC12E..., vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC09-2xxxF-Nxxxx +Bourns rotary encoder, PEC09, without switch, horizontal shaft, https://www.bourns.com/products/encoders/contacting-encoders/product/PEC09 +rotary encoder +0 +3 +3 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC09-2xxxF-Sxxxx +Bourns rotary encoder, PEC09, with switch, horizontal shaft, https://www.bourns.com/products/encoders/contacting-encoders/product/PEC09 +rotary encoder +0 +5 +5 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC12R-2xxxF-Nxxxx +Bourns rotary encoder, PEC12R, without switch, horizontal shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Horizontal_PEC12R-2xxxF-Sxxxx +Bourns rotary encoder, PEC12R, with switch, horizontal shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +7 +6 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEC12R-3xxxF-Nxxxx +Bourns rotary encoder, PEC12R, without switch, vertical shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +5 +4 +Rotary_Encoder +RotaryEncoder_Bourns_Vertical_PEC12R-3xxxF-Sxxxx +Bourns rotary encoder, PEC12R, with switch, vertical shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf +rotary encoder +0 +7 +6 +Sensor +Aosong_DHT11_5.5x12.0_P2.54mm +Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/DHT11.pdf +Temperature and humidity module +0 +4 +4 +Sensor +Avago_APDS-9960 +Digital Proximity, Ambient Light, RGB and Gesture Sensor (https://docs.broadcom.com/doc/AV02-4191EN) +DFN Sensor optical IR +0 +8 +8 +Sensor +LuminOX_LOX-O2 +SST LuminOX Luminescence-based O2 sensor, https://sstsensing.com/wp-content/uploads/2021/08/DS0030rev15_LuminOx.pdf +SST LuminOX O2 +0 +4 +4 +Sensor +MQ-6 +Gas Sensor, 6 pin, https://www.winsen-sensor.com/d/files/semiconductor/mq-6.pdf +gas sensor +0 +6 +6 +Sensor +SHT1x +SHT1x +SHT1x +0 +8 +8 +Sensor +Senseair_S8_Down +Sensair S8 Series CO2 sensor, 1kHz PWM output, Modbus, THT +co2 gas sensor pwm modbus +0 +9 +9 +Sensor +Senseair_S8_Up +Sensair S8 Series CO2 sensor, 1kHz PWM output, Modbus, THT +co2 gas sensor pwm modbus +0 +9 +9 +Sensor +Sensirion_SCD4x-1EP_10.1x10.1mm_P1.25mm_EP4.8x4.8mm +Sensirion SCD4x QFN, 20 Pin (https://sensirion.com/media/documents/C4B87CE6/627C2DCD/CD_DS_SCD40_SCD41_Datasheet_D1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py +Sensirion QFN NoLead +0 +25 +21 +Sensor +Winson_GM-402B_5x5mm_P1.27mm +Winson GM-402B, 8 Pin (https://www.winsen-sensor.com/d/files/me2/mems--gm-402b--manual-v1_1.pdf) +Winson +0 +8 +8 +Sensor_Audio +CUI_CMC-4013-SMT +Omnidirectional, -42dB, reflowable, electret condenser microphone https://www.cuidevices.com/product/resource/cmc-4013-smt-tr.pdf +Microphone CUI +0 +2 +2 +Sensor_Audio +Infineon_PG-LLGA-5-1 +Infineon_PG-LLGA-5-1 StepUp generated footprint, https://www.infineon.com/cms/en/product/packages/PG-LLGA/PG-LLGA-5-1/ +infineon mems microphone +0 +15 +5 +Sensor_Audio +Knowles_LGA-5_3.5x2.65mm +https://www.knowles.com/docs/default-source/model-downloads/sph0641lu4h-1-revb.pdf +MEMS Microphone LGA +0 +5 +5 +Sensor_Audio +ST_HLGA-6_3.76x4.72mm_P1.65mm +http://www.st.com/content/ccc/resource/technical/document/datasheet/group3/27/62/48/98/44/54/4d/36/DM00303211/files/DM00303211.pdf/jcr:content/translations/en.DM00303211.pdf +HLGA Sensor Audio +0 +6 +6 +Sensor_Current +AKM_CQ_7 +AKM Current Sensor, 7 pin, THT (http://www.akm.com/akm/en/file/datasheet/CQ-236B.pdf) +akm current sensor tht +0 +39 +7 +Sensor_Current +AKM_CQ_7S +AKM Current Sensor, 7 pin, SMD (http://www.akm.com/akm/en/file/datasheet/CQ-236B.pdf) +akm current sensor smd +0 +19 +7 +Sensor_Current +AKM_CQ_VSOP-24_5.6x7.9mm_P0.65mm +AKM VSOP-24 current sensor, 5.6x7.9mm body, 0.65mm pitch (http://www.akm.com/akm/en/file/datasheet/CQ-330J.pdf) +akm vsop 24 +0 +10 +10 +Sensor_Current +AKM_CZ_SSOP-10_6.5x8.1mm_P0.95mm +AKM CZ-381x current sensor, 6.5x8.1mm body, 0.95mm pitch (http://www.akm.com/akm/en/product/detail/0009/) +akm cz-381x 10 +0 +10 +10 +Sensor_Current +Allegro_CB_PFF +Allegro MicroSystems, CB-PFF Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) !PADS 4-5 DO NOT MATCH DATASHEET! +Allegro CB-PFF +0 +37 +5 +Sensor_Current +Allegro_CB_PSF +Allegro MicroSystems, CB-PSF Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) +Allegro CB-PSF +0 +5 +5 +Sensor_Current +Allegro_CB_PSS +Allegro MicroSystems, CB-PSS Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) +Allegro CB-PSS +0 +5 +5 +Sensor_Current +Allegro_PSOF-7_4.8x6.4mm_P1.60mm +Allegro Microsystems PSOF-7, 4.8x6.4mm Body, 1.60mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/ACS780-Datasheet.ashx) +Allegro PSOF-7 +0 +7 +7 +Sensor_Current +Allegro_QFN-12-10-1EP_3x3mm_P0.5mm +Allegro Microsystems 12-Lead (10-Lead Populated) Quad Flat Pack, 3x3mm Body, 0.5mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/ACS711-Datasheet.ashx) +Allegro QFN 0.5 +0 +14 +10 +Sensor_Current +Allegro_QSOP-24_3.9x8.7mm_P0.635mm +Allegro Microsystems 24-Lead Plastic Shrink Small Outline Narrow Body Body [QSOP] (http://www.allegromicro.com/~/media/Files/Datasheets/ACS726-Datasheet.ashx?la=en) +Allegro QSOP 0.635 +0 +24 +24 +Sensor_Current +Allegro_SIP-3 +Allegro Microsystems SIP-3, 1.27mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/A1369-Datasheet.ashx) +Allegro SIP-3 +0 +3 +3 +Sensor_Current +Allegro_SIP-4 +Allegro Microsystems SIP-4, 1.27mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/A1363-Datasheet.ashx) +Allegro SIP-4 +0 +4 +4 +Sensor_Current +Diodes_SIP-3_4.1x1.5mm_P1.27mm +Diodes SIP-3 Bulk Pack, 1.27mm Pitch (https://www.diodes.com/assets/Package-Files/SIP-3-Bulk-Pack.pdf) +Diodes SIP-3 Bulk Pack +0 +3 +3 +Sensor_Current +Diodes_SIP-3_4.1x1.5mm_P2.65mm +Diodes SIP-3 Ammo Pack, 2.65mm Pitch (https://www.diodes.com/assets/Package-Files/SIP-3-Ammo-Pack.pdf) +Diodes SIP-3 Ammo Pack +0 +3 +3 +Sensor_Current +Honeywell_CSLW +https://sensing.honeywell.com/honeywell-sensing-cslw-series-product-sheet-005861-1-en.pdf +Miniature Wired Open-Loop Current Sensor +0 +5 +5 +Sensor_Current +LEM_CKSR +LEM CKSR 6/15/25/50/75-NP Current Transducer, https://www.lem.com/sites/default/files/products_datasheets/cksr_75-np.pdf +current transducer LEM +0 +14 +14 +Sensor_Current +LEM_HO8-NP +LEM HO 8/15/25-NP Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-np-0000_series.pdf) +current transducer +0 +13 +13 +Sensor_Current +LEM_HO8-NSM +LEM HO 8/15/25-NSM Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-nsm-0000_series.pdf) +current transducer +0 +13 +13 +Sensor_Current +LEM_HO40-NP +LEM HO 40/60/120/150-NP Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-np_0100__1100_series.pdf) +current transducer +0 +13 +13 +Sensor_Current +LEM_HTFS +LEM HTFS x00-P current transducer (https://www.lem.com/sites/default/files/products_datasheets/htfs_200_800-p.pdf) +HTFS current transducer +0 +4 +4 +Sensor_Current +LEM_HX02-P +LEM HX02-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX03-P-SP2 +LEM HX03-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX04-P +LEM HX04-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX05-NP +LEM HX05-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) +hall current +0 +8 +8 +Sensor_Current +LEM_HX05-P-SP2 +LEM HX05-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX06-P +LEM HX06-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX10-NP +LEM HX10-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) +hall current +0 +8 +8 +Sensor_Current +LEM_HX10-P-SP2 +LEM HX10-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX15-NP +LEM HX15-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) +hall current +0 +8 +8 +Sensor_Current +LEM_HX15-P-SP2 +LEM HX15-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX20-P-SP2 +LEM HX20-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX25-P-SP2 +LEM HX25-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_HX50-P-SP2 +LEM HX50-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) +hall current +0 +6 +6 +Sensor_Current +LEM_LA25-P +LEM Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/la_25-p.pdf) +current transducer +0 +3 +3 +Sensor_Current +LEM_LTSR-NP +LEM current transducer LEM_LTSR-NP 5V supply voltage series https://www.lem.com/sites/default/files/products_datasheets/ltsr_6-np.pdf +Current transducer +0 +10 +10 +Sensor_Distance +ST_VL53L1x +VL53L1x distance sensor +VL53L1CXV0FY1 VL53L1x +0 +13 +12 +Sensor_Humidity +Sensirion_DFN-4-1EP_2x2mm_P1mm_EP0.7x1.6mm +DFN, 4 Pin (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/0_Datasheets/Humidity/Sensirion_Humidity_Sensors_SHTC3_Datasheet.pdf) +Sensirion DFN NoLead +0 +10 +5 +Sensor_Humidity +Sensirion_DFN-4_1.5x1.5mm_P0.8mm_SHT4x_NoCentralPad +Sensirion, SHT40, SHT41, SHT45, DFN, 4 Pin (https://sensirion.com/media/documents/33FD6951/624C4357/Datasheet_SHT4x.pdf) +DFN NoLead +0 +4 +4 +Sensor_Humidity +Sensirion_DFN-8-1EP_2.5x2.5mm_P0.5mm_EP1.1x1.7mm +Sensirion DFN-8 SHT3x-DIS (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Datasheets/Sensirion_Humidity_Sensors_SHT3x_Datasheet_digital.pdf) +sensirion dfn nolead +0 +10 +9 +Sensor_Motion +InvenSense_QFN-24_3x3mm_P0.4mm +24-Lead Plastic QFN (3mm x 3mm); Pitch 0.4mm; EP 1.7x1.54mm; for InvenSense motion sensors; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.4 +0 +24 +24 +Sensor_Motion +InvenSense_QFN-24_3x3mm_P0.4mm_NoMask +24-Lead Plastic QFN (3mm x 3mm); Pitch 0.4mm; EP 1.7x1.54mm; for InvenSense motion sensors; Mask removed below exposed pad; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.4 +0 +25 +24 +Sensor_Motion +InvenSense_QFN-24_4x4mm_P0.5mm +24-Lead Plastic QFN (4mm x 4mm); Pitch 0.5mm; EP 2.7x2.6mm; for InvenSense motion sensors; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.5 +0 +24 +24 +Sensor_Motion +InvenSense_QFN-24_4x4mm_P0.5mm_NoMask +24-Lead Plastic QFN (4mm x 4mm); Pitch 0.5mm; EP 2.7x2.6mm; for InvenSense motion sensors; Mask removed below exposed pad; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) +QFN 0.5 +0 +25 +24 +Sensor_Pressure +Freescale_98ARH99066A +https://www.nxp.com/docs/en/data-sheet/MPXH6250A.pdf +sensor pressure ssop 98ARH99066A +0 +8 +8 +Sensor_Pressure +Freescale_98ARH99089A +https://www.nxp.com/docs/en/data-sheet/MPXH6250A.pdf +sensor pressure ssop 98ARH99089A +0 +8 +8 +Sensor_Pressure +Honeywell_40PCxxxG1A +https://www.honeywellscportal.com/index.php?ci_id=138832 +pressure sensor automotive honeywell +0 +3 +3 +Sensor_Pressure +TE_MS5525DSO-DBxxxyS +Pressure Sensor, Dual-Barbed, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=MS5525DSO&DocType=DS&DocLang=English +Pressure DualBarbed +0 +14 +14 +Sensor_Pressure +TE_MS5837-xxBA +https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FMS5837-30BA%7FB1%7Fpdf%7FEnglish%7FENG_DS_MS5837-30BA_B1.pdf%7FCAT-BLPS0017 +MS5837 Ultra-small gel-filled pressure sensor with stainless steel cap +0 +4 +4 +Sensor_Voltage +LEM_LV25-P +LEM LV25-P Voltage transducer, https://www.lem.com/sites/default/files/products_datasheets/lv_25-p.pdf +LEM Hall Effect Voltage transducer +0 +5 +5 +Socket +3M_Textool_240-1288-00-0602J_2x20_P2.54mm +3M 40-pin zero insertion force socket, though-hole, row spacing 25.4 mm (1000 mils) +THT DIP DIL ZIF 25.4mm 1000mil Socket +0 +40 +40 +Socket +DIP_Socket-14_W4.3_W5.08_W7.62_W10.16_W10.9_3M_214-3339-00-0602J +3M 14-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +14 +14 +Socket +DIP_Socket-16_W4.3_W5.08_W7.62_W10.16_W10.9_3M_216-3340-00-0602J +3M 16-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +16 +16 +Socket +DIP_Socket-18_W4.3_W5.08_W7.62_W10.16_W10.9_3M_218-3341-00-0602J +3M 18-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +18 +18 +Socket +DIP_Socket-20_W4.3_W5.08_W7.62_W10.16_W10.9_3M_220-3342-00-0602J +3M 20-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +20 +20 +Socket +DIP_Socket-22_W6.9_W7.62_W10.16_W12.7_W13.5_3M_222-3343-00-0602J +3M 22-pin zero insertion force socket, through-hole, row spacing 10.16 mm (400 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 10.16mm 400mil Socket +0 +22 +22 +Socket +DIP_Socket-24_W4.3_W5.08_W7.62_W10.16_W10.9_3M_224-5248-00-0602J +3M 24-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 7.62mm 300mil Socket +0 +24 +24 +Socket +DIP_Socket-24_W11.9_W12.7_W15.24_W17.78_W18.5_3M_224-1275-00-0602J +3M 24-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +24 +24 +Socket +DIP_Socket-28_W6.9_W7.62_W10.16_W12.7_W13.5_3M_228-4817-00-0602J +3M 28-pin zero insertion force socket, through-hole, row spacing 10.16 mm (400 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 10.16mm 400mil Socket +0 +28 +28 +Socket +DIP_Socket-28_W11.9_W12.7_W15.24_W17.78_W18.5_3M_228-1277-00-0602J +3M 28-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +28 +28 +Socket +DIP_Socket-32_W11.9_W12.7_W15.24_W17.78_W18.5_3M_232-1285-00-0602J +3M 32-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +32 +32 +Socket +DIP_Socket-40_W11.9_W12.7_W15.24_W17.78_W18.5_3M_240-1280-00-0602J +3M 40-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +40 +40 +Socket +DIP_Socket-40_W22.1_W22.86_W25.4_W27.94_W28.7_3M_240-3639-00-0602J +3M 40-pin zero insertion force socket, through-hole, row spacing 25.4 mm (1000 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 25.4mm 1000mil Socket +0 +40 +40 +Socket +DIP_Socket-42_W11.9_W12.7_W15.24_W17.78_W18.5_3M_242-1281-00-0602J +3M 42-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf +THT DIP DIL ZIF 15.24mm 600mil Socket +0 +42 +42 +Socket +Wells_648-0482211SA01 +https://www.farnell.com/cad/316865.pdf?_ga=2.37208032.177107060.1530611323-249019997.1498114824 +48pin TSOP Socket +0 +48 +48 +Symbol +CE-Logo_8.5x6mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_11.2x8mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_16.8x12mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_28x20mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_42x30mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +CE-Logo_56.1x40mm_SilkScreen +CE marking +Logo CE certification +0 +0 +0 +Symbol +ESD-Logo_6.6x6mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_8.9x8mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_13.2x12mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_22x20mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_33x30mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +ESD-Logo_44.1x40mm_SilkScreen +Electrostatic discharge Logo +Logo ESD +0 +0 +0 +Symbol +FCC-Logo_7.3x6mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_9.6x8mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_14.6x12mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_24.2x20mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_36.3x30mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +FCC-Logo_48.3x40mm_SilkScreen +FCC marking +Logo FCC certification +0 +0 +0 +Symbol +KiCad-Logo2_5mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_5mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_6mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_6mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_8mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_8mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_12mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_12mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_20mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_20mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_30mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_30mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_40mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo2_40mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_5mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_5mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_6mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_6mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_8mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_8mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_12mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_12mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_20mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_20mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_30mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_30mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_40mm_Copper +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +KiCad-Logo_40mm_SilkScreen +KiCad Logo +Logo KiCad +0 +0 +0 +Symbol +OSHW-Logo2_7.3x6mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_7.3x6mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_9.8x8mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_9.8x8mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_14.6x12mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_14.6x12mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_24.3x20mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_24.3x20mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_36.5x30mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_36.5x30mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_48.7x40mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo2_48.7x40mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Logo_5.7x6mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_5.7x6mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_7.5x8mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_7.5x8mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_11.4x12mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_11.4x12mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_19x20mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_19x20mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_28.5x30mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_28.5x30mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_38.1x40mm_Copper +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Logo_38.1x40mm_SilkScreen +Open Source Hardware Logo +Logo OSHW +0 +0 +0 +Symbol +OSHW-Symbol_6.7x6mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_6.7x6mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_8.9x8mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_8.9x8mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_13.4x12mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_13.4x12mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_22.3x20mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_22.3x20mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_33.5x30mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_33.5x30mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_44.5x40mm_Copper +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +OSHW-Symbol_44.5x40mm_SilkScreen +Open Source Hardware Symbol +Logo Symbol OSHW +0 +0 +0 +Symbol +Polarity_Center_Negative_6mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_8mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_12mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_20mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_30mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Negative_40mm_SilkScreen +Polarity Logo, Center Negative +Logo Polarity Center Negative +0 +0 +0 +Symbol +Polarity_Center_Positive_6mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_8mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_12mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_20mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_30mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +Polarity_Center_Positive_40mm_SilkScreen +Polarity Logo, Center Positive +Logo Polarity Center Positive +0 +0 +0 +Symbol +RoHS-Logo_6mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_8mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_12mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_20mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_30mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +RoHS-Logo_40mm_SilkScreen +Restriction of Hazardous Substances Directive Logo +Logo RoHS +0 +0 +0 +Symbol +Symbol_Attention_CopperTop_Big +Symbol, Attention, Copper Top, Big, +Symbol, Attention, Copper Top, Big, +0 +0 +0 +Symbol +Symbol_Attention_CopperTop_Small +Symbol, Attention, Copper Top, Small, +Symbol, Attention, Copper Top, Small, +0 +0 +0 +Symbol +Symbol_Barrel_Polarity +Barrel connector polarity indicator +barrel polarity +0 +0 +0 +Symbol +Symbol_CC-Attribution_CopperTop_Big +Symbol, CC-Attribution, Copper Top, Big, +Symbol, CC-Attribution, Copper Top, Big, +0 +0 +0 +Symbol +Symbol_CC-Attribution_CopperTop_Small +Symbol, CC-Share Alike, Copper Top, Small, +Symbol, CC-Share Alike, Copper Top, Small, +0 +0 +0 +Symbol +Symbol_CC-Noncommercial_CopperTop_Big +Symbol, CC-Noncommercial, Copper Top, Big, +Symbol, CC-Noncommercial, Copper Top, Big, +0 +0 +0 +Symbol +Symbol_CC-Noncommercial_CopperTop_Small +Symbol, CC-Noncommercial Alike, Copper Top, Small, +Symbol, CC-Noncommercial Alike, Copper Top, Small, +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_CopperTop_Big +Symbol, CC-PublicDomain, Copper Top, Big, +Symbol, CC-PublicDomain, Copper Top, Big, +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_CopperTop_Small +Symbol, CC-Public Domain, Copper Top, Small, +Symbol, CC-Public Domain, Copper Top, Small, +0 +0 +0 +Symbol +Symbol_CC-PublicDomain_SilkScreenTop_Big +Symbol, CC-PublicDomain, SilkScreen Top, Big, +Symbol, CC-PublicDomain, SilkScreen Top, Big, +0 +0 +0 +Symbol +Symbol_CC-ShareAlike_CopperTop_Big +Symbol, CC-Share Alike, Copper Top, Big, +Symbol, CC-Share Alike, Copper Top, Big, +0 +0 +0 +Symbol +Symbol_CC-ShareAlike_CopperTop_Small +Symbol, CC-Share Alike, Copper Top, Small, +Symbol, CC-Share Alike, Copper Top, Small, +0 +0 +0 +Symbol +Symbol_CreativeCommonsPublicDomain_CopperTop_Small +Symbol, Creative Commons Public Domain, CopperTop, Small, +Symbol, Creative Commons Public Domain, CopperTop, Small, +0 +0 +0 +Symbol +Symbol_CreativeCommonsPublicDomain_SilkScreenTop_Small +Symbol, Creative Commons Public Domain, SilkScreenTop, Small, +Symbol, Creative Commons Public Domain, SilkScreen Top, Small, +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type1_Big +Symbol, Creative Commons, CopperTop, Type 1, Big, +Symbol, Creative Commons, CopperTop, Type 1, Big, +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type2_Big +Symbol, Creative Commons, CopperTop, Type 2, Big, +Symbol, Creative Commons, CopperTop, Type 2, Big, +0 +0 +0 +Symbol +Symbol_CreativeCommons_CopperTop_Type2_Small +Symbol, Creative Commons, CopperTop, Type 2, Small, +Symbol, Creative Commons, CopperTop, Type 2, Small, +0 +0 +0 +Symbol +Symbol_CreativeCommons_SilkScreenTop_Type2_Big +Symbol, Creative Commons, SilkScreen Top, Type 2, Big, +Symbol, Creative Commons, SilkScreen Top, Type 2, Big, +0 +0 +0 +Symbol +Symbol_Danger_CopperTop_Big +Symbol, Danger, CopperTop, Big, +Symbol, Danger, CopperTop, Big, +0 +0 +0 +Symbol +Symbol_Danger_CopperTop_Small +Symbol, Danger, Copper Top, Small, +Symbol, Danger, Copper Top, Small, +0 +0 +0 +Symbol +Symbol_ESD-Logo-Text_CopperTop + + +0 +0 +0 +Symbol +Symbol_ESD-Logo_CopperTop +ESD-Logo, similar JEDEC-14, without text, ohne Text, Copper Top, +ESD-Logo, similar JEDEC-14, without text, ohne Text, Copper Top, +0 +0 +0 +Symbol +Symbol_GNU-GPL_CopperTop_Big +Symbol, GNU-GPL, Copper Top, Big, +Symbol, GNU-GPL, Copper Top, Big, +0 +0 +0 +Symbol +Symbol_GNU-GPL_CopperTop_Small +Symbol, GNU-GPL, Copper Top, Small, +Symbol, GNU-GPL, Copper Top, Small, +0 +0 +0 +Symbol +Symbol_GNU-Logo_CopperTop +GNU-Logo, GNU-Head, GNU-Kopf, Copper Top, +GNU-Logo, GNU-Head, GNU-Kopf, Copper Top, +0 +0 +0 +Symbol +Symbol_GNU-Logo_SilkscreenTop +GNU-Logo, GNU-Head, GNU-Kopf, Silkscreen, +GNU-Logo, GNU-Head, GNU-Kopf, Silkscreen, +0 +0 +0 +Symbol +Symbol_HighVoltage_Type1_CopperTop_Big +Symbol, HighVoltage, Type1, Copper Top, Big, +Symbol, HighVoltage, Type1, Copper Top, Big, +0 +0 +0 +Symbol +Symbol_HighVoltage_Type2_CopperTop_Big +Symbol, HighVoltage, Type2, Copper Top, Big, +Symbol, HighVoltage, Type2, Copper Top, Big, +0 +0 +0 +Symbol +Symbol_HighVoltage_Type2_CopperTop_VerySmall +Symbol, High Voltage, Type 2, Copper Top, Very Small, +Symbol, High Voltage, Type 2, Copper Top, Very Small, +0 +0 +0 +Symbol +Symbol_Highvoltage_Type1_CopperTop_Small +Symbol, Highvoltage, Type 1, Copper Top, Small, +Symbol, Highvoltage, Type 1, Copper Top, Small, +0 +0 +0 +Symbol +Symbol_Highvoltage_Type2_CopperTop_Small +Symbol, Highvoltage, Type 2, Copper Top, Small, +Symbol, Highvoltage, Type 2, Copper Top, Small, +0 +0 +0 +Symbol +UKCA-Logo_6x6mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_8x8mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_12x12mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_20x20mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_30x30mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +UKCA-Logo_40x40mm_SilkScreen +UKCA marking +Logo UKCA marking +0 +0 +0 +Symbol +WEEE-Logo_4.2x6mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_5.6x8mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_8.4x12mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_14x20mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_21x30mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +Symbol +WEEE-Logo_28.1x40mm_SilkScreen +Waste Electrical and Electronic Equipment Directive +Logo WEEE +0 +0 +0 +TerminalBlock +TerminalBlock_Altech_AK300-2_P5.00mm +Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf +Altech AK300 terminal block pitch 5.0mm +0 +2 +2 +TerminalBlock +TerminalBlock_Altech_AK300-3_P5.00mm +Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf +Altech AK300 terminal block pitch 5.0mm +0 +3 +3 +TerminalBlock +TerminalBlock_Altech_AK300-4_P5.00mm +Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf +Altech AK300 terminal block pitch 5.0mm +0 +4 +4 +TerminalBlock +TerminalBlock_Wuerth_691311400102_P7.62mm +https://katalog.we-online.de/em/datasheet/6913114001xx.pdf +Wuerth WR-TBL Series 3114 terminal block pitch 7.62mm +0 +2 +2 +TerminalBlock +TerminalBlock_bornier-2_P5.08mm +simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2 +terminal block bornier2 +0 +2 +2 +TerminalBlock +TerminalBlock_bornier-3_P5.08mm +simple 3-pin terminal block, pitch 5.08mm, revamped version of bornier3 +terminal block bornier3 +0 +3 +3 +TerminalBlock +TerminalBlock_bornier-4_P5.08mm +simple 4-pin terminal block, pitch 5.08mm, revamped version of bornier4 +terminal block bornier4 +0 +4 +4 +TerminalBlock +TerminalBlock_bornier-5_P5.08mm +simple 5-pin terminal block, pitch 5.08mm, revamped version of bornier5 +terminal block bornier5 +0 +5 +5 +TerminalBlock +TerminalBlock_bornier-6_P5.08mm +simple 6pin terminal block, pitch 5.08mm, revamped version of bornier6 +terminal block bornier6 +0 +6 +6 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x02_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 19963, 2 pins, pitch 3.5mm, size 7.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19963.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19963 pitch 3.5mm size 7.7x7mm^2 drill 1.2mm pad 2.4mm +0 +2 +2 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x02_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10693, vertical (cable from top), 2 pins, pitch 3.5mm, size 8x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10693.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10693 vertical pitch 3.5mm size 8x8.3mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x03_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 20193, 3 pins, pitch 3.5mm, size 11.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20193.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20193 pitch 3.5mm size 11.2x7mm^2 drill 1.2mm pad 2.4mm +0 +3 +3 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x03_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10694, vertical (cable from top), 3 pins, pitch 3.5mm, size 11.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10694.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10694 vertical pitch 3.5mm size 11.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x04_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 20001, 4 pins, pitch 3.5mm, size 14.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20001.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20001 pitch 3.5mm size 14.7x7mm^2 drill 1.2mm pad 2.4mm +0 +4 +4 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x04_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10695, vertical (cable from top), 4 pins, pitch 3.5mm, size 15x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10695.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10695 vertical pitch 3.5mm size 15x8.3mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x05_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 20223, 5 pins, pitch 3.5mm, size 18.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20223.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 20223 pitch 3.5mm size 18.2x7mm^2 drill 1.2mm pad 2.4mm +0 +5 +5 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x05_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10696, vertical (cable from top), 5 pins, pitch 3.5mm, size 18.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10696.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10696 vertical pitch 3.5mm size 18.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x06_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 19964, 6 pins, pitch 3.5mm, size 21.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19964.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19964 pitch 3.5mm size 21.7x7mm^2 drill 1.2mm pad 2.4mm +0 +6 +6 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x06_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10697, vertical (cable from top), 6 pins, pitch 3.5mm, size 22x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10697.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10697 vertical pitch 3.5mm size 22x8.3mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x07_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10684, 7 pins, pitch 3.5mm, size 25.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10684.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10684 pitch 3.5mm size 25.2x7mm^2 drill 1.2mm pad 2.4mm +0 +7 +7 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x07_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10698, vertical (cable from top), 7 pins, pitch 3.5mm, size 25.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10698.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10698 vertical pitch 3.5mm size 25.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x08_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 19965, 8 pins, pitch 3.5mm, size 28.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19965.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 19965 pitch 3.5mm size 28.7x7mm^2 drill 1.2mm pad 2.4mm +0 +8 +8 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x08_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10699, vertical (cable from top), 8 pins, pitch 3.5mm, size 29x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10699.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10699 vertical pitch 3.5mm size 29x8.3mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x09_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10686, 9 pins, pitch 3.5mm, size 32.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10686.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10686 pitch 3.5mm size 32.2x7mm^2 drill 1.2mm pad 2.4mm +0 +9 +9 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x09_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10700, vertical (cable from top), 9 pins, pitch 3.5mm, size 32.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10700.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10700 vertical pitch 3.5mm size 32.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x10_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10687, 10 pins, pitch 3.5mm, size 35.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10687.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10687 pitch 3.5mm size 35.7x7mm^2 drill 1.2mm pad 2.4mm +0 +10 +10 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x10_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10701, vertical (cable from top), 10 pins, pitch 3.5mm, size 36x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10701.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10701 vertical pitch 3.5mm size 36x8.3mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x11_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10688, 11 pins, pitch 3.5mm, size 39.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10688.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10688 pitch 3.5mm size 39.2x7mm^2 drill 1.2mm pad 2.4mm +0 +11 +11 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x11_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10702, vertical (cable from top), 11 pins, pitch 3.5mm, size 39.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10702.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10702 vertical pitch 3.5mm size 39.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x12_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10689, 12 pins, pitch 3.5mm, size 42.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10689.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10689 pitch 3.5mm size 42.7x7mm^2 drill 1.2mm pad 2.4mm +0 +12 +12 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x12_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10703, vertical (cable from top), 12 pins, pitch 3.5mm, size 43x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10703.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10703 vertical pitch 3.5mm size 43x8.3mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x13_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10690, 13 pins, pitch 3.5mm, size 46.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10690.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10690 pitch 3.5mm size 46.2x7mm^2 drill 1.2mm pad 2.4mm +0 +13 +13 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x13_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10704, vertical (cable from top), 13 pins, pitch 3.5mm, size 46.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10704.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10704 vertical pitch 3.5mm size 46.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x14_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10691, 14 pins, pitch 3.5mm, size 49.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10691.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10691 pitch 3.5mm size 49.7x7mm^2 drill 1.2mm pad 2.4mm +0 +14 +14 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x14_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10705, vertical (cable from top), 14 pins, pitch 3.5mm, size 50x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10705.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10705 vertical pitch 3.5mm size 50x8.3mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x15_P3.50mm_Horizontal +Terminal Block 4Ucon ItemNo. 10692, 15 pins, pitch 3.5mm, size 53.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10692.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10692 pitch 3.5mm size 53.2x7mm^2 drill 1.2mm pad 2.4mm +0 +15 +15 +TerminalBlock_4Ucon +TerminalBlock_4Ucon_1x15_P3.50mm_Vertical +Terminal Block 4Ucon ItemNo. 10706, vertical (cable from top), 15 pins, pitch 3.5mm, size 53.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10706.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon +THT Terminal Block 4Ucon ItemNo. 10706 vertical pitch 3.5mm size 53.5x8.3mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Altech +Altech_AK300_1x02_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +2 +2 +TerminalBlock_Altech +Altech_AK300_1x03_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +3 +3 +TerminalBlock_Altech +Altech_AK300_1x04_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +4 +4 +TerminalBlock_Altech +Altech_AK300_1x05_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +5 +5 +TerminalBlock_Altech +Altech_AK300_1x06_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +6 +6 +TerminalBlock_Altech +Altech_AK300_1x07_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +7 +7 +TerminalBlock_Altech +Altech_AK300_1x08_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +8 +8 +TerminalBlock_Altech +Altech_AK300_1x09_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +9 +9 +TerminalBlock_Altech +Altech_AK300_1x10_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +10 +10 +TerminalBlock_Altech +Altech_AK300_1x11_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +11 +11 +TerminalBlock_Altech +Altech_AK300_1x12_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +12 +12 +TerminalBlock_Altech +Altech_AK300_1x13_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +13 +13 +TerminalBlock_Altech +Altech_AK300_1x14_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +14 +14 +TerminalBlock_Altech +Altech_AK300_1x15_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +15 +15 +TerminalBlock_Altech +Altech_AK300_1x16_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +16 +16 +TerminalBlock_Altech +Altech_AK300_1x17_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +17 +17 +TerminalBlock_Altech +Altech_AK300_1x18_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +18 +18 +TerminalBlock_Altech +Altech_AK300_1x19_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +19 +19 +TerminalBlock_Altech +Altech_AK300_1x20_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +20 +20 +TerminalBlock_Altech +Altech_AK300_1x21_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +21 +21 +TerminalBlock_Altech +Altech_AK300_1x22_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +22 +22 +TerminalBlock_Altech +Altech_AK300_1x23_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +23 +23 +TerminalBlock_Altech +Altech_AK300_1x24_P5.00mm_45-Degree +Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) +Altech AK300 serie connector +0 +24 +24 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-02_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +2 +2 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-03_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +3 +3 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-04_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +4 +4 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-05_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +5 +5 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-06_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +6 +6 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-07_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +7 +7 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-08_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +8 +8 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-09_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +9 +9 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-10_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +10 +10 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-11_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +11 +11 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-12_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +12 +12 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-13_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +13 +13 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-14_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +14 +14 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-15_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +15 +15 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-16_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +16 +16 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-17_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +17 +17 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-18_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +18 +18 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-19_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +19 +19 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-20_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +20 +20 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-21_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +21 +21 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-22_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +22 +22 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-23_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +23 +23 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-24_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +24 +24 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-25_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +25 +25 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-26_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +26 +26 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-27_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +27 +27 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-28_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +28 +28 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-29_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +29 +29 +TerminalBlock_Dinkle +TerminalBlock_Dinkle_DT-55-B01X-30_P10.00mm +Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX +Dinkle DT-55-B01X Terminal Block pitch 10.00mm +0 +30 +30 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360271_1x01_Horizontal_ScrewM3.0_Boxed +single screw terminal block Metz Connect 360271, block size 9x7.3mm^2, drill diamater 1.5mm, 1 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 134, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360271 size 9x7.3mm^2 drill 1.5mm pad 3mm +0 +1 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360272_1x01_Horizontal_ScrewM2.6 +single screw terminal block Metz Connect 360272, block size 4x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 131, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360272 size 4x4mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360273_1x01_Horizontal_ScrewM2.6_WireProtection +single screw terminal block Metz Connect 360273, block size 5x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 131, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360273 size 5x4mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360291_1x01_Horizontal_ScrewM3.0_Boxed +single screw terminal block Metz Connect 360291, block size 9x7.3mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360291 size 9x7.3mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360322_1x01_Horizontal_ScrewM3.0_WireProtection +single screw terminal block Metz Connect 360322, block size 6x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360322 size 6x4mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360381_1x01_Horizontal_ScrewM3.0 +single screw terminal block Metz Connect 360381, block size 5x5mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360381 size 5x5mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360410_1x01_Horizontal_ScrewM3.0 +single screw terminal block Metz Connect 360410, block size 5x5mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 132, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360410 size 5x5mm^2 drill 1.5mm pad 3mm +0 +2 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_360425_1x01_Horizontal_ScrewM4.0_Boxed +single screw terminal block Metz Connect 360425, block size 9x9mm^2, drill diamater 1.6mm, 4 pads, pad diameter 3.2mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 134, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT single screw terminal block Metz Connect 360425 size 9x9mm^2 drill 1.6mm pad 3.2mm +0 +4 +1 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05502HBWC_1x02_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05502HBWC, 2 pins, pitch 5mm, size 10x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05502HBWC pitch 5mm size 10x10.5mm^2 drill 1.4mm pad 2.8mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05503HBWC_1x03_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05503HBWC, 3 pins, pitch 5mm, size 15x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05503HBWC pitch 5mm size 15x10.5mm^2 drill 1.4mm pad 2.8mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05504HBWC_1x04_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05504HBWC, 4 pins, pitch 5mm, size 20x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05504HBWC pitch 5mm size 20x10.5mm^2 drill 1.4mm pad 2.8mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05505HBWC_1x05_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05505HBWC, 5 pins, pitch 5mm, size 25x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05505HBWC pitch 5mm size 25x10.5mm^2 drill 1.4mm pad 2.8mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type011_RT05506HBWC_1x06_P5.00mm_Horizontal +terminal block Metz Connect Type011_RT05506HBWC, 6 pins, pitch 5mm, size 30x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type011_RT05506HBWC pitch 5mm size 30x10.5mm^2 drill 1.4mm pad 2.8mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type055_RT01502HDWU_1x02_P5.00mm_Horizontal +terminal block Metz Connect Type055_RT01502HDWU, 2 pins, pitch 5mm, size 10x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01502HDWU pitch 5mm size 10x8mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type055_RT01503HDWU_1x03_P5.00mm_Horizontal +terminal block Metz Connect Type055_RT01503HDWU, 3 pins, pitch 5mm, size 15x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01503HDWU pitch 5mm size 15x8mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type055_RT01504HDWU_1x04_P5.00mm_Horizontal +terminal block Metz Connect Type055_RT01504HDWU, 4 pins, pitch 5mm, size 20x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type055_RT01504HDWU pitch 5mm size 20x8mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06302HBWC_1x02_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06302HBWC, 2 pins, pitch 3.5mm, size 7x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06302HBWC pitch 3.5mm size 7x6.5mm^2 drill 1.2mm pad 2.3mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06303HBWC_1x03_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06303HBWC, 3 pins, pitch 3.5mm, size 10.5x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06303HBWC pitch 3.5mm size 10.5x6.5mm^2 drill 1.2mm pad 2.3mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06304HBWC_1x04_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06304HBWC, 4 pins, pitch 3.5mm, size 14x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06304HBWC pitch 3.5mm size 14x6.5mm^2 drill 1.2mm pad 2.3mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06305HBWC_1x05_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06305HBWC, 5 pins, pitch 3.5mm, size 17.5x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06305HBWC pitch 3.5mm size 17.5x6.5mm^2 drill 1.2mm pad 2.3mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type059_RT06306HBWC_1x06_P3.50mm_Horizontal +terminal block Metz Connect Type059_RT06306HBWC, 6 pins, pitch 3.5mm, size 21x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type059_RT06306HBWC pitch 3.5mm size 21x6.5mm^2 drill 1.2mm pad 2.3mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01902HDWC_1x02_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01902HDWC, 2 pins, pitch 10mm, size 15.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01902HDWC pitch 10mm size 15.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01903HDWC_1x03_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01903HDWC, 3 pins, pitch 10mm, size 25.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01903HDWC pitch 10mm size 25.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01904HDWC_1x04_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01904HDWC, 4 pins, pitch 10mm, size 35.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01904HDWC pitch 10mm size 35.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type067_RT01905HDWC_1x05_P10.00mm_Horizontal +terminal block Metz Connect Type067_RT01905HDWC, 5 pins, pitch 10mm, size 45.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type067_RT01905HDWC pitch 10mm size 45.8x8.2mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type073_RT02602HBLU_1x02_P5.08mm_Horizontal +terminal block Metz Connect Type073_RT02602HBLU, 2 pins, pitch 5.08mm, size 10.2x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310731_RT026xxHBLU_OFF-022792U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type073_RT02602HBLU pitch 5.08mm size 10.2x11mm^2 drill 1.4mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type073_RT02603HBLU_1x03_P5.08mm_Horizontal +terminal block Metz Connect Type073_RT02603HBLU, 3 pins, pitch 5.08mm, size 15.2x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310731_RT026xxHBLU_OFF-022792U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type073_RT02603HBLU pitch 5.08mm size 15.2x11mm^2 drill 1.4mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03402HBLC_1x02_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03402HBLC, 2 pins, pitch 3.81mm, size 7.51x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03402HBLC pitch 3.81mm size 7.51x7.3mm^2 drill 0.7mm pad 1.4mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03403HBLC_1x03_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03403HBLC, 3 pins, pitch 3.81mm, size 11.3x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03403HBLC pitch 3.81mm size 11.3x7.3mm^2 drill 0.7mm pad 1.4mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03404HBLC_1x04_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03404HBLC, 4 pins, pitch 3.81mm, size 15.1x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03404HBLC pitch 3.81mm size 15.1x7.3mm^2 drill 0.7mm pad 1.4mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03405HBLC_1x05_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03405HBLC, 5 pins, pitch 3.81mm, size 18.9x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03405HBLC pitch 3.81mm size 18.9x7.3mm^2 drill 0.7mm pad 1.4mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type086_RT03406HBLC_1x06_P3.81mm_Horizontal +terminal block Metz Connect Type086_RT03406HBLC, 6 pins, pitch 3.81mm, size 22.8x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type086_RT03406HBLC pitch 3.81mm size 22.8x7.3mm^2 drill 0.7mm pad 1.4mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03502HBLU_1x02_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03502HBLU, 2 pins, pitch 5mm, size 10x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03502HBLU pitch 5mm size 10x8.3mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03503HBLU_1x03_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03503HBLU, 3 pins, pitch 5mm, size 15x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03503HBLU pitch 5mm size 15x8.3mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03504HBLU_1x04_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03504HBLU, 4 pins, pitch 5mm, size 20x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03504HBLU pitch 5mm size 20x8.3mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03505HBLU_1x05_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03505HBLU, 5 pins, pitch 5mm, size 25x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03505HBLU pitch 5mm size 25x8.3mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type094_RT03506HBLU_1x06_P5.00mm_Horizontal +terminal block Metz Connect Type094_RT03506HBLU, 6 pins, pitch 5mm, size 30x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type094_RT03506HBLU pitch 5mm size 30x8.3mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01602HBWC_1x02_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01602HBWC, 2 pins, pitch 5.08mm, size 10.2x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01602HBWC pitch 5.08mm size 10.2x8mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01603HBWC_1x03_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01603HBWC, 3 pins, pitch 5.08mm, size 15.2x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01603HBWC pitch 5.08mm size 15.2x8mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01604HBWC_1x04_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01604HBWC, 4 pins, pitch 5.08mm, size 20.3x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01604HBWC pitch 5.08mm size 20.3x8mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01605HBWC_1x05_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01605HBWC, 5 pins, pitch 5.08mm, size 25.4x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01605HBWC pitch 5.08mm size 25.4x8mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type101_RT01606HBWC_1x06_P5.08mm_Horizontal +terminal block Metz Connect Type101_RT01606HBWC, 6 pins, pitch 5.08mm, size 30.5x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type101_RT01606HBWC pitch 5.08mm size 30.5x8mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13702HBWC_1x02_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13702HBWC, 2 pins, pitch 7.5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13702HBWC pitch 7.5mm size 15x9mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13703HBWC_1x03_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13703HBWC, 3 pins, pitch 7.5mm, size 22.5x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13703HBWC pitch 7.5mm size 22.5x9mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13704HBWC_1x04_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13704HBWC, 4 pins, pitch 7.5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13704HBWC pitch 7.5mm size 30x9mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13705HBWC_1x05_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13705HBWC, 5 pins, pitch 7.5mm, size 37.5x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13705HBWC pitch 7.5mm size 37.5x9mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type171_RT13706HBWC_1x06_P7.50mm_Horizontal +terminal block Metz Connect Type171_RT13706HBWC, 6 pins, pitch 7.5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type171_RT13706HBWC pitch 7.5mm size 45x9mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02702HBLC_1x02_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02702HBLC, 2 pins, pitch 7.5mm, size 15x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02702HBLC pitch 7.5mm size 15x11mm^2 drill 1.4mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02703HBLC_1x03_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02703HBLC, 3 pins, pitch 7.5mm, size 22.5x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02703HBLC pitch 7.5mm size 22.5x11mm^2 drill 1.4mm pad 2.6mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02704HBLC_1x04_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02704HBLC, 4 pins, pitch 7.5mm, size 30x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02704HBLC pitch 7.5mm size 30x11mm^2 drill 1.4mm pad 2.6mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02705HBLC_1x05_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02705HBLC, 5 pins, pitch 7.5mm, size 37.5x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02705HBLC pitch 7.5mm size 37.5x11mm^2 drill 1.4mm pad 2.6mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type175_RT02706HBLC_1x06_P7.50mm_Horizontal +terminal block Metz Connect Type175_RT02706HBLC, 6 pins, pitch 7.5mm, size 45x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type175_RT02706HBLC pitch 7.5mm size 45x11mm^2 drill 1.4mm pad 2.6mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04502UBLC_1x02_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04502UBLC, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 10x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04502UBLC 45Degree pitch 5mm size 10x12.5mm^2 drill 1.4mm pad 2.7mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04503UBLC_1x03_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04503UBLC, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 15x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04503UBLC 45Degree pitch 5mm size 15x12.5mm^2 drill 1.4mm pad 2.7mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04504UBLC_1x04_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04504UBLC, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 20x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04504UBLC 45Degree pitch 5mm size 20x12.5mm^2 drill 1.4mm pad 2.7mm +0 +4 +4 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04505UBLC_1x05_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04505UBLC, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 25x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04505UBLC 45Degree pitch 5mm size 25x12.5mm^2 drill 1.4mm pad 2.7mm +0 +5 +5 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type205_RT04506UBLC_1x06_P5.00mm_45Degree +terminal block Metz Connect Type205_RT04506UBLC, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 30x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type205_RT04506UBLC 45Degree pitch 5mm size 30x12.5mm^2 drill 1.4mm pad 2.7mm +0 +6 +6 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type701_RT11L02HGLU_1x02_P6.35mm_Horizontal +terminal block Metz Connect Type701_RT11L02HGLU, 2 pins, pitch 6.35mm, size 12.7x12.5mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317011_RT11LxxHGLU_OFF-022798U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type701_RT11L02HGLU pitch 6.35mm size 12.7x12.5mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type701_RT11L03HGLU_1x03_P6.35mm_Horizontal +terminal block Metz Connect Type701_RT11L03HGLU, 3 pins, pitch 6.35mm, size 19x12.5mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317011_RT11LxxHGLU_OFF-022798U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type701_RT11L03HGLU pitch 6.35mm size 19x12.5mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type703_RT10N02HGLU_1x02_P9.52mm_Horizontal +terminal block Metz Connect Type703_RT10N02HGLU, 2 pins, pitch 9.52mm, size 19x12.5mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317031_RT10NxxHGLU_OFF-022897S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type703_RT10N02HGLU pitch 9.52mm size 19x12.5mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_MetzConnect +TerminalBlock_MetzConnect_Type703_RT10N03HGLU_1x03_P9.52mm_Horizontal +terminal block Metz Connect Type703_RT10N03HGLU, 3 pins, pitch 9.52mm, size 28.6x12.5mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317031_RT10NxxHGLU_OFF-022897S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect +THT terminal block Metz Connect Type703_RT10N03HGLU pitch 9.52mm size 28.6x12.5mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Philmore +TerminalBlock_Philmore_TB132_1x02_P5.00mm_Horizontal +Terminal Block Philmore , 2 pins, pitch 5mm, size 10x10.2mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.philmore-datak.com/mc/Page%20197.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Philmore +THT Terminal Block Philmore pitch 5mm size 10x10.2mm^2 drill 1.2mm pad 2.4mm +0 +2 +2 +TerminalBlock_Philmore +TerminalBlock_Philmore_TB133_1x03_P5.00mm_Horizontal +Terminal Block Philmore , 3 pins, pitch 5mm, size 15x10.2mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.philmore-datak.com/mc/Page%20197.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Philmore +THT Terminal Block Philmore pitch 5mm size 15x10.2mm^2 drill 1.2mm pad 2.4mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-2, 2 pins, pitch 5mm, size 10x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-3-5.08, 3 pins, pitch 5.08mm, size 15.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-3, 3 pins, pitch 5mm, size 15x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-3 pitch 5mm size 15x9.8mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-4-5.08_1x04_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-4-5.08, 4 pins, pitch 5.08mm, size 20.3x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-4-5.08 pitch 5.08mm size 20.3x9.8mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-4_1x04_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-4, 4 pins, pitch 5mm, size 20x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-4 pitch 5mm size 20x9.8mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-5-5.08_1x05_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-5-5.08, 5 pins, pitch 5.08mm, size 25.4x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-5-5.08 pitch 5.08mm size 25.4x9.8mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-5_1x05_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-5, 5 pins, pitch 5mm, size 25x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-5 pitch 5mm size 25x9.8mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-6-5.08_1x06_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-6-5.08, 6 pins, pitch 5.08mm, size 30.5x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-6-5.08 pitch 5.08mm size 30.5x9.8mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-6_1x06_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-6, 6 pins, pitch 5mm, size 30x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-6 pitch 5mm size 30x9.8mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-7-5.08_1x07_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-7-5.08, 7 pins, pitch 5.08mm, size 35.6x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-7-5.08 pitch 5.08mm size 35.6x9.8mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-7_1x07_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-7, 7 pins, pitch 5mm, size 35x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-7 pitch 5mm size 35x9.8mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-8-5.08_1x08_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-8-5.08, 8 pins, pitch 5.08mm, size 40.6x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-8-5.08 pitch 5.08mm size 40.6x9.8mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-8_1x08_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-8, 8 pins, pitch 5mm, size 40x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-8 pitch 5mm size 40x9.8mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-9-5.08_1x09_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-9-5.08, 9 pins, pitch 5.08mm, size 45.7x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-9-5.08 pitch 5.08mm size 45.7x9.8mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-9_1x09_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-9, 9 pins, pitch 5mm, size 45x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-9 pitch 5mm size 45x9.8mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-10-5.08_1x10_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-10-5.08, 10 pins, pitch 5.08mm, size 50.8x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-10-5.08 pitch 5.08mm size 50.8x9.8mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-10_1x10_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-10, 10 pins, pitch 5mm, size 50x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-10 pitch 5mm size 50x9.8mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-11-5.08_1x11_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-11-5.08, 11 pins, pitch 5.08mm, size 55.9x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-11-5.08 pitch 5.08mm size 55.9x9.8mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-11_1x11_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-11, 11 pins, pitch 5mm, size 55x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-11 pitch 5mm size 55x9.8mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-12-5.08_1x12_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-12-5.08, 12 pins, pitch 5.08mm, size 61x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-12-5.08 pitch 5.08mm size 61x9.8mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-12_1x12_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-12, 12 pins, pitch 5mm, size 60x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-12 pitch 5mm size 60x9.8mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-13-5.08_1x13_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-13-5.08, 13 pins, pitch 5.08mm, size 66x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-13-5.08 pitch 5.08mm size 66x9.8mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-13_1x13_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-13, 13 pins, pitch 5mm, size 65x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-13 pitch 5mm size 65x9.8mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-14-5.08_1x14_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-14-5.08, 14 pins, pitch 5.08mm, size 71.1x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-14-5.08 pitch 5.08mm size 71.1x9.8mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-14_1x14_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-14, 14 pins, pitch 5mm, size 70x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-14 pitch 5mm size 70x9.8mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-15-5.08_1x15_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-15-5.08, 15 pins, pitch 5.08mm, size 76.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-15-5.08 pitch 5.08mm size 76.2x9.8mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-15_1x15_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-15, 15 pins, pitch 5mm, size 75x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-15 pitch 5mm size 75x9.8mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-16-5.08_1x16_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-1,5-16-5.08, 16 pins, pitch 5.08mm, size 81.3x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-16-5.08 pitch 5.08mm size 81.3x9.8mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-1,5-16_1x16_P5.00mm_Horizontal +Terminal Block Phoenix MKDS-1,5-16, 16 pins, pitch 5mm, size 80x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-1,5-16 pitch 5mm size 80x9.8mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-2-5.08_1x02_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-2-5.08, 2 pins, pitch 5.08mm, size 10.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-2-5.08 pitch 5.08mm size 10.2x11.2mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-3-5.08_1x03_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-3-5.08, 3 pins, pitch 5.08mm, size 15.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-3-5.08 pitch 5.08mm size 15.2x11.2mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-4-5.08_1x04_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-4-5.08, 4 pins, pitch 5.08mm, size 20.3x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-4-5.08 pitch 5.08mm size 20.3x11.2mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-5-5.08_1x05_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-5-5.08, 5 pins, pitch 5.08mm, size 25.4x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-5-5.08 pitch 5.08mm size 25.4x11.2mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-6-5.08_1x06_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-6-5.08, 6 pins, pitch 5.08mm, size 30.5x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-6-5.08 pitch 5.08mm size 30.5x11.2mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-7-5.08_1x07_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-7-5.08, 7 pins, pitch 5.08mm, size 35.6x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-7-5.08 pitch 5.08mm size 35.6x11.2mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-8-5.08_1x08_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-8-5.08, 8 pins, pitch 5.08mm, size 40.6x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-8-5.08 pitch 5.08mm size 40.6x11.2mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-9-5.08_1x09_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-9-5.08, 9 pins, pitch 5.08mm, size 45.7x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-9-5.08 pitch 5.08mm size 45.7x11.2mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-10-5.08_1x10_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-10-5.08, 10 pins, pitch 5.08mm, size 50.8x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-10-5.08 pitch 5.08mm size 50.8x11.2mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-11-5.08_1x11_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-11-5.08, 11 pins, pitch 5.08mm, size 55.9x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-11-5.08 pitch 5.08mm size 55.9x11.2mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-12-5.08_1x12_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-12-5.08, 12 pins, pitch 5.08mm, size 61x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-12-5.08 pitch 5.08mm size 61x11.2mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-13-5.08_1x13_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-13-5.08, 13 pins, pitch 5.08mm, size 66x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-13-5.08 pitch 5.08mm size 66x11.2mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-14-5.08_1x14_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-14-5.08, 14 pins, pitch 5.08mm, size 71.1x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-14-5.08 pitch 5.08mm size 71.1x11.2mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-15-5.08_1x15_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-15-5.08, 15 pins, pitch 5.08mm, size 76.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-15-5.08 pitch 5.08mm size 76.2x11.2mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MKDS-3-16-5.08_1x16_P5.08mm_Horizontal +Terminal Block Phoenix MKDS-3-16-5.08, 16 pins, pitch 5.08mm, size 81.3x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MKDS-3-16-5.08 pitch 5.08mm size 81.3x11.2mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-2-2.54, 2 pins, pitch 2.54mm, size 5.54x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm^2 drill 1.1mm pad 2.2mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-3-2.54_1x03_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-3-2.54, 3 pins, pitch 2.54mm, size 8.08x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-3-2.54 pitch 2.54mm size 8.08x6.2mm^2 drill 1.1mm pad 2.2mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-4-2.54_1x04_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-4-2.54, 4 pins, pitch 2.54mm, size 10.6x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-4-2.54 pitch 2.54mm size 10.6x6.2mm^2 drill 1.1mm pad 2.2mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-5-2.54_1x05_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-5-2.54, 5 pins, pitch 2.54mm, size 13.2x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-5-2.54 pitch 2.54mm size 13.2x6.2mm^2 drill 1.1mm pad 2.2mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-6-2.54_1x06_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-6-2.54, 6 pins, pitch 2.54mm, size 15.7x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-6-2.54 pitch 2.54mm size 15.7x6.2mm^2 drill 1.1mm pad 2.2mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-7-2.54_1x07_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-7-2.54, 7 pins, pitch 2.54mm, size 18.2x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-7-2.54 pitch 2.54mm size 18.2x6.2mm^2 drill 1.1mm pad 2.2mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-8-2.54_1x08_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-8-2.54, 8 pins, pitch 2.54mm, size 20.8x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-8-2.54 pitch 2.54mm size 20.8x6.2mm^2 drill 1.1mm pad 2.2mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-9-2.54_1x09_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-9-2.54, 9 pins, pitch 2.54mm, size 23.3x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-9-2.54 pitch 2.54mm size 23.3x6.2mm^2 drill 1.1mm pad 2.2mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-10-2.54_1x10_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-10-2.54, 10 pins, pitch 2.54mm, size 25.9x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-10-2.54 pitch 2.54mm size 25.9x6.2mm^2 drill 1.1mm pad 2.2mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-11-2.54_1x11_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-11-2.54, 11 pins, pitch 2.54mm, size 28.4x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-11-2.54 pitch 2.54mm size 28.4x6.2mm^2 drill 1.1mm pad 2.2mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_MPT-0,5-12-2.54_1x12_P2.54mm_Horizontal +Terminal Block Phoenix MPT-0,5-12-2.54, 12 pins, pitch 2.54mm, size 30.9x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix MPT-0,5-12-2.54 pitch 2.54mm size 30.9x6.2mm^2 drill 1.1mm pad 2.2mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-2-3.5-H_1x02_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-2-3.5-H, 2 pins, pitch 3.5mm, size 7x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-2-3.5-H pitch 3.5mm size 7x7.6mm^2 drill 1.2mm pad 2.4mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-2-5.0-H_1x02_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-2-5.0-H, 2 pins, pitch 5mm, size 10x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-2-5.0-H pitch 5mm size 10x9mm^2 drill 1.3mm pad 2.6mm +0 +2 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-3-3.5-H_1x03_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-3-3.5-H, 3 pins, pitch 3.5mm, size 10.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-3-3.5-H pitch 3.5mm size 10.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-3-5.0-H_1x03_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-3-5.0-H, 3 pins, pitch 5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-3-5.0-H pitch 5mm size 15x9mm^2 drill 1.3mm pad 2.6mm +0 +3 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-4-3.5-H_1x04_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-4-3.5-H, 4 pins, pitch 3.5mm, size 14x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-4-3.5-H pitch 3.5mm size 14x7.6mm^2 drill 1.2mm pad 2.4mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-4-5.0-H_1x04_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-4-5.0-H, 4 pins, pitch 5mm, size 20x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-4-5.0-H pitch 5mm size 20x9mm^2 drill 1.3mm pad 2.6mm +0 +4 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-5-3.5-H_1x05_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-5-3.5-H, 5 pins, pitch 3.5mm, size 17.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-5-3.5-H pitch 3.5mm size 17.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-5-5.0-H_1x05_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-5-5.0-H, 5 pins, pitch 5mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-5-5.0-H pitch 5mm size 25x9mm^2 drill 1.3mm pad 2.6mm +0 +5 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-6-3.5-H_1x06_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-6-3.5-H, 6 pins, pitch 3.5mm, size 21x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-6-3.5-H pitch 3.5mm size 21x7.6mm^2 drill 1.2mm pad 2.4mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-6-5.0-H_1x06_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-6-5.0-H, 6 pins, pitch 5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-6-5.0-H pitch 5mm size 30x9mm^2 drill 1.3mm pad 2.6mm +0 +6 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-7-3.5-H_1x07_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-7-3.5-H, 7 pins, pitch 3.5mm, size 24.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-7-3.5-H pitch 3.5mm size 24.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-7-5.0-H_1x07_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-7-5.0-H, 7 pins, pitch 5mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-7-5.0-H pitch 5mm size 35x9mm^2 drill 1.3mm pad 2.6mm +0 +7 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-8-3.5-H_1x08_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-8-3.5-H, 8 pins, pitch 3.5mm, size 28x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-8-3.5-H pitch 3.5mm size 28x7.6mm^2 drill 1.2mm pad 2.4mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-8-5.0-H_1x08_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-8-5.0-H, 8 pins, pitch 5mm, size 40x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-8-5.0-H pitch 5mm size 40x9mm^2 drill 1.3mm pad 2.6mm +0 +8 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-9-3.5-H_1x09_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-9-3.5-H, 9 pins, pitch 3.5mm, size 31.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-9-3.5-H pitch 3.5mm size 31.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-9-5.0-H_1x09_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-9-5.0-H, 9 pins, pitch 5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-9-5.0-H pitch 5mm size 45x9mm^2 drill 1.3mm pad 2.6mm +0 +9 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-10-3.5-H_1x10_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-10-3.5-H, 10 pins, pitch 3.5mm, size 35x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-10-3.5-H pitch 3.5mm size 35x7.6mm^2 drill 1.2mm pad 2.4mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-10-5.0-H_1x10_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-10-5.0-H, 10 pins, pitch 5mm, size 50x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-10-5.0-H pitch 5mm size 50x9mm^2 drill 1.3mm pad 2.6mm +0 +10 +10 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-11-3.5-H_1x11_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-11-3.5-H, 11 pins, pitch 3.5mm, size 38.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-11-3.5-H pitch 3.5mm size 38.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-11-5.0-H_1x11_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-11-5.0-H, 11 pins, pitch 5mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-11-5.0-H pitch 5mm size 55x9mm^2 drill 1.3mm pad 2.6mm +0 +11 +11 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-12-3.5-H_1x12_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-12-3.5-H, 12 pins, pitch 3.5mm, size 42x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-12-3.5-H pitch 3.5mm size 42x7.6mm^2 drill 1.2mm pad 2.4mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-12-5.0-H_1x12_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-12-5.0-H, 12 pins, pitch 5mm, size 60x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-12-5.0-H pitch 5mm size 60x9mm^2 drill 1.3mm pad 2.6mm +0 +12 +12 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-13-3.5-H_1x13_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-13-3.5-H, 13 pins, pitch 3.5mm, size 45.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-13-3.5-H pitch 3.5mm size 45.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-13-5.0-H_1x13_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-13-5.0-H, 13 pins, pitch 5mm, size 65x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-13-5.0-H pitch 5mm size 65x9mm^2 drill 1.3mm pad 2.6mm +0 +13 +13 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-14-3.5-H_1x14_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-14-3.5-H, 14 pins, pitch 3.5mm, size 49x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-14-3.5-H pitch 3.5mm size 49x7.6mm^2 drill 1.2mm pad 2.4mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-14-5.0-H_1x14_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-14-5.0-H, 14 pins, pitch 5mm, size 70x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-14-5.0-H pitch 5mm size 70x9mm^2 drill 1.3mm pad 2.6mm +0 +14 +14 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-15-3.5-H_1x15_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-15-3.5-H, 15 pins, pitch 3.5mm, size 52.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-15-3.5-H pitch 3.5mm size 52.5x7.6mm^2 drill 1.2mm pad 2.4mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-15-5.0-H_1x15_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-15-5.0-H, 15 pins, pitch 5mm, size 75x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-15-5.0-H pitch 5mm size 75x9mm^2 drill 1.3mm pad 2.6mm +0 +15 +15 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-16-3.5-H_1x16_P3.50mm_Horizontal +Terminal Block Phoenix PT-1,5-16-3.5-H, 16 pins, pitch 3.5mm, size 56x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-16-3.5-H pitch 3.5mm size 56x7.6mm^2 drill 1.2mm pad 2.4mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PT-1,5-16-5.0-H_1x16_P5.00mm_Horizontal +Terminal Block Phoenix PT-1,5-16-5.0-H, 16 pins, pitch 5mm, size 80x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PT-1,5-16-5.0-H pitch 5mm size 80x9mm^2 drill 1.3mm pad 2.6mm +0 +16 +16 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-2,5-V-SMD_1x02-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 2 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814702/pdf +PhoenixContact PTSM0.5 2 2.5mm vertical SMD spring clamp terminal block connector +0 +4 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-2.5-H-THR_1x02_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-2-2.5-H-THR, 2 pins, pitch 2.5mm, size 7.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-2-2.5-H-THR pitch 2.5mm size 7.2x10mm^2 drill 1.2mm pad 3mm +0 +4 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-2.5-V-THR_1x02_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-2-2.5-V-THR, vertical (cable from top), 2 pins, pitch 2.5mm, size 5.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-2-2.5-V-THR vertical pitch 2.5mm size 5.5x5mm^2 drill 1.2mm pad 2mm +0 +4 +2 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-2-HV-2.5-SMD_1x02-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 2 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778696/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +4 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-2,5-V-SMD_1x03-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 3 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814715/pdf +PhoenixContact PTSM0.5 3 2.5mm vertical SMD spring clamp terminal block connector +0 +5 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-2.5-H-THR_1x03_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-3-2.5-H-THR, 3 pins, pitch 2.5mm, size 9.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-3-2.5-H-THR pitch 2.5mm size 9.7x10mm^2 drill 1.2mm pad 3mm +0 +6 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-2.5-V-THR_1x03_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-3-2.5-V-THR, vertical (cable from top), 3 pins, pitch 2.5mm, size 8x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-3-2.5-V-THR vertical pitch 2.5mm size 8x5mm^2 drill 1.2mm pad 2mm +0 +6 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-3-HV-2.5-SMD_1x03-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 3 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778706/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +5 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-2,5-V-SMD_1x04-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 4 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814728/pdf +PhoenixContact PTSM0.5 4 2.5mm vertical SMD spring clamp terminal block connector +0 +6 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-2.5-H-THR_1x04_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-4-2.5-H-THR, 4 pins, pitch 2.5mm, size 12.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-4-2.5-H-THR pitch 2.5mm size 12.2x10mm^2 drill 1.2mm pad 3mm +0 +8 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-2.5-V-THR_1x04_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-4-2.5-V-THR, vertical (cable from top), 4 pins, pitch 2.5mm, size 10.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-4-2.5-V-THR vertical pitch 2.5mm size 10.5x5mm^2 drill 1.2mm pad 2mm +0 +8 +4 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-4-HV-2.5-SMD_1x04-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 4 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778719/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +4 +3 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-2,5-V-SMD_1x05-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 5 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814731/pdf +PhoenixContact PTSM0.5 5 2.5mm vertical SMD spring clamp terminal block connector +0 +7 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-2.5-H-THR_1x05_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-5-2.5-H-THR, 5 pins, pitch 2.5mm, size 14.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-5-2.5-H-THR pitch 2.5mm size 14.7x10mm^2 drill 1.2mm pad 3mm +0 +10 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-2.5-V-THR_1x05_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-5-2.5-V-THR, vertical (cable from top), 5 pins, pitch 2.5mm, size 13x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-5-2.5-V-THR vertical pitch 2.5mm size 13x5mm^2 drill 1.2mm pad 2mm +0 +10 +5 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-5-HV-2.5-SMD_1x05-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 5 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778722/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +7 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-2,5-V-SMD_1x06-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 6 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814744/pdf +PhoenixContact PTSM0.5 6 2.5mm vertical SMD spring clamp terminal block connector +0 +8 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-2.5-H-THR_1x06_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-6-2.5-H-THR, 6 pins, pitch 2.5mm, size 17.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-6-2.5-H-THR pitch 2.5mm size 17.2x10mm^2 drill 1.2mm pad 3mm +0 +12 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-2.5-V-THR_1x06_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-6-2.5-V-THR, vertical (cable from top), 6 pins, pitch 2.5mm, size 15.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-6-2.5-V-THR vertical pitch 2.5mm size 15.5x5mm^2 drill 1.2mm pad 2mm +0 +12 +6 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-6-HV-2.5-SMD_1x06-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 6 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778735/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +8 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-2,5-V-SMD_1x07-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 7 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814757/pdf +PhoenixContact PTSM0.5 7 2.5mm vertical SMD spring clamp terminal block connector +0 +9 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-2.5-H-THR_1x07_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-7-2.5-H-THR, 7 pins, pitch 2.5mm, size 19.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-7-2.5-H-THR pitch 2.5mm size 19.7x10mm^2 drill 1.2mm pad 3mm +0 +14 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-2.5-V-THR_1x07_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-7-2.5-V-THR, vertical (cable from top), 7 pins, pitch 2.5mm, size 18x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-7-2.5-V-THR vertical pitch 2.5mm size 18x5mm^2 drill 1.2mm pad 2mm +0 +14 +7 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-7-HV-2.5-SMD_1x07-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 7 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778748/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +9 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-2,5-V-SMD_1x08-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 8 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814760/pdf +PhoenixContact PTSM0.5 8 2.5mm vertical SMD spring clamp terminal block connector +0 +10 +9 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-2.5-H-THR_1x08_P2.50mm_Horizontal +Terminal Block Phoenix PTSM-0,5-8-2.5-H-THR, 8 pins, pitch 2.5mm, size 22.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-8-2.5-H-THR pitch 2.5mm size 22.2x10mm^2 drill 1.2mm pad 3mm +0 +16 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-2.5-V-THR_1x08_P2.50mm_Vertical +Terminal Block Phoenix PTSM-0,5-8-2.5-V-THR, vertical (cable from top), 8 pins, pitch 2.5mm, size 20.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix +THT Terminal Block Phoenix PTSM-0,5-8-2.5-V-THR vertical pitch 2.5mm size 20.5x5mm^2 drill 1.2mm pad 2mm +0 +16 +8 +TerminalBlock_Phoenix +TerminalBlock_Phoenix_PTSM-0,5-8-HV-2.5-SMD_1x08-1MP_P2.50mm_Vertical +PhoenixContact PTSM0,5 8 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778751/pdf +2.5mm vertical SMD spring clamp terminal block connector +0 +10 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00001_1x02_P5.00mm_Horizontal +terminal block RND 205-00001, 2 pins, pitch 5mm, size 10x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00001 pitch 5mm size 10x9mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00002_1x03_P5.00mm_Horizontal +terminal block RND 205-00002, 3 pins, pitch 5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00002 pitch 5mm size 15x9mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00003_1x04_P5.00mm_Horizontal +terminal block RND 205-00003, 4 pins, pitch 5mm, size 20x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00003 pitch 5mm size 20x9mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00004_1x05_P5.00mm_Horizontal +terminal block RND 205-00004, 5 pins, pitch 5mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00004 pitch 5mm size 25x9mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00005_1x06_P5.00mm_Horizontal +terminal block RND 205-00005, 6 pins, pitch 5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00005 pitch 5mm size 30x9mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00006_1x07_P5.00mm_Horizontal +terminal block RND 205-00006, 7 pins, pitch 5mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00006 pitch 5mm size 35x9mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00007_1x08_P5.00mm_Horizontal +terminal block RND 205-00007, 8 pins, pitch 5mm, size 40x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00007 pitch 5mm size 40x9mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00008_1x09_P5.00mm_Horizontal +terminal block RND 205-00008, 9 pins, pitch 5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00008 pitch 5mm size 45x9mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00009_1x10_P5.00mm_Horizontal +terminal block RND 205-00009, 10 pins, pitch 5mm, size 50x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00009 pitch 5mm size 50x9mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00010_1x11_P5.00mm_Horizontal +terminal block RND 205-00010, 11 pins, pitch 5mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00010 pitch 5mm size 55x9mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00011_1x12_P5.00mm_Horizontal +terminal block RND 205-00011, 12 pins, pitch 5mm, size 60x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00011 pitch 5mm size 60x9mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00012_1x02_P5.00mm_Horizontal +terminal block RND 205-00012, 2 pins, pitch 5mm, size 10x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00012 pitch 5mm size 10x7.6mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00013_1x03_P5.00mm_Horizontal +terminal block RND 205-00013, 3 pins, pitch 5mm, size 15x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00013 pitch 5mm size 15x7.6mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00014_1x04_P5.00mm_Horizontal +terminal block RND 205-00014, 4 pins, pitch 5mm, size 20x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00014 pitch 5mm size 20x7.6mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00015_1x05_P5.00mm_Horizontal +terminal block RND 205-00015, 5 pins, pitch 5mm, size 25x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00015 pitch 5mm size 25x7.6mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00016_1x06_P5.00mm_Horizontal +terminal block RND 205-00016, 6 pins, pitch 5mm, size 30x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00016 pitch 5mm size 30x7.6mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00017_1x07_P5.00mm_Horizontal +terminal block RND 205-00017, 7 pins, pitch 5mm, size 35x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00017 pitch 5mm size 35x7.6mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00018_1x08_P5.00mm_Horizontal +terminal block RND 205-00018, 8 pins, pitch 5mm, size 40x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00018 pitch 5mm size 40x7.6mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00019_1x09_P5.00mm_Horizontal +terminal block RND 205-00019, 9 pins, pitch 5mm, size 45x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00019 pitch 5mm size 45x7.6mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00020_1x10_P5.00mm_Horizontal +terminal block RND 205-00020, 10 pins, pitch 5mm, size 50x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00020 pitch 5mm size 50x7.6mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00021_1x11_P5.00mm_Horizontal +terminal block RND 205-00021, 11 pins, pitch 5mm, size 55x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00021 pitch 5mm size 55x7.6mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00022_1x12_P5.00mm_Horizontal +terminal block RND 205-00022, 12 pins, pitch 5mm, size 60x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00022 pitch 5mm size 60x7.6mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00023_1x02_P10.00mm_Horizontal +terminal block RND 205-00023, 2 pins, pitch 10mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00023 pitch 10mm size 15x9mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00024_1x03_P10.00mm_Horizontal +terminal block RND 205-00024, 3 pins, pitch 10mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00024 pitch 10mm size 25x9mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00025_1x04_P10.00mm_Horizontal +terminal block RND 205-00025, 4 pins, pitch 10mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00025 pitch 10mm size 35x9mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00026_1x05_P10.00mm_Horizontal +terminal block RND 205-00026, 5 pins, pitch 10mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00026 pitch 10mm size 45x9mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00027_1x06_P10.00mm_Horizontal +terminal block RND 205-00027, 6 pins, pitch 10mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00027 pitch 10mm size 55x9mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00028_1x07_P10.00mm_Horizontal +terminal block RND 205-00028, 7 pins, pitch 10mm, size 65x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00028 pitch 10mm size 65x9mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00029_1x08_P10.00mm_Horizontal +terminal block RND 205-00029, 8 pins, pitch 10mm, size 75x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00029 pitch 10mm size 75x9mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00030_1x09_P10.00mm_Horizontal +terminal block RND 205-00030, 9 pins, pitch 10mm, size 85x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00030 pitch 10mm size 85x9mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00031_1x10_P10.00mm_Horizontal +terminal block RND 205-00031, 10 pins, pitch 10mm, size 95x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00031 pitch 10mm size 95x9mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00032_1x11_P10.00mm_Horizontal +terminal block RND 205-00032, 11 pins, pitch 10mm, size 105x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00032 pitch 10mm size 105x9mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00033_1x12_P10.00mm_Horizontal +terminal block RND 205-00033, 12 pins, pitch 10mm, size 115x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00033 pitch 10mm size 115x9mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00045_1x02_P5.00mm_Horizontal +terminal block RND 205-00045, 2 pins, pitch 5mm, size 10x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00045 pitch 5mm size 10x8.1mm^2 drill 1.1mm pad 2.1mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00046_1x03_P5.00mm_Horizontal +terminal block RND 205-00046, 3 pins, pitch 5mm, size 15x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00046 pitch 5mm size 15x8.1mm^2 drill 1.1mm pad 2.1mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00047_1x04_P5.00mm_Horizontal +terminal block RND 205-00047, 4 pins, pitch 5mm, size 20x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00047 pitch 5mm size 20x8.1mm^2 drill 1.1mm pad 2.1mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00048_1x05_P5.00mm_Horizontal +terminal block RND 205-00048, 5 pins, pitch 5mm, size 25x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00048 pitch 5mm size 25x8.1mm^2 drill 1.1mm pad 2.1mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00049_1x06_P5.00mm_Horizontal +terminal block RND 205-00049, 6 pins, pitch 5mm, size 30x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00049 pitch 5mm size 30x8.1mm^2 drill 1.1mm pad 2.1mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00050_1x07_P5.00mm_Horizontal +terminal block RND 205-00050, 7 pins, pitch 5mm, size 35x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00050 pitch 5mm size 35x8.1mm^2 drill 1.1mm pad 2.1mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00051_1x08_P5.00mm_Horizontal +terminal block RND 205-00051, 8 pins, pitch 5mm, size 40x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00051 pitch 5mm size 40x8.1mm^2 drill 1.1mm pad 2.1mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00052_1x09_P5.00mm_Horizontal +terminal block RND 205-00052, 9 pins, pitch 5mm, size 45x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00052 pitch 5mm size 45x8.1mm^2 drill 1.1mm pad 2.1mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00053_1x10_P5.00mm_Horizontal +terminal block RND 205-00053, 10 pins, pitch 5mm, size 50x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00053 pitch 5mm size 50x8.1mm^2 drill 1.1mm pad 2.1mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00054_1x11_P5.00mm_Horizontal +terminal block RND 205-00054, 11 pins, pitch 5mm, size 55x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00054 pitch 5mm size 55x8.1mm^2 drill 1.1mm pad 2.1mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00055_1x12_P5.00mm_Horizontal +terminal block RND 205-00055, 12 pins, pitch 5mm, size 60x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00055 pitch 5mm size 60x8.1mm^2 drill 1.1mm pad 2.1mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00056_1x02_P5.00mm_45Degree +terminal block RND 205-00056, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 10x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00056 45Degree pitch 5mm size 10x12.6mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00057_1x03_P5.00mm_45Degree +terminal block RND 205-00057, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 15x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00057 45Degree pitch 5mm size 15x12.6mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00058_1x04_P5.00mm_45Degree +terminal block RND 205-00058, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 20x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00058 45Degree pitch 5mm size 20x12.6mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00059_1x05_P5.00mm_45Degree +terminal block RND 205-00059, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 25x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00059 45Degree pitch 5mm size 25x12.6mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00060_1x06_P5.00mm_45Degree +terminal block RND 205-00060, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 30x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00060 45Degree pitch 5mm size 30x12.6mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00061_1x07_P5.00mm_45Degree +terminal block RND 205-00061, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 35x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00061 45Degree pitch 5mm size 35x12.6mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00062_1x08_P5.00mm_45Degree +terminal block RND 205-00062, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 40x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00062 45Degree pitch 5mm size 40x12.6mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00063_1x09_P5.00mm_45Degree +terminal block RND 205-00063, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 45x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00063 45Degree pitch 5mm size 45x12.6mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00064_1x10_P5.00mm_45Degree +terminal block RND 205-00064, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 50x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00064 45Degree pitch 5mm size 50x12.6mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00065_1x11_P5.00mm_45Degree +terminal block RND 205-00065, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 55x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00065 45Degree pitch 5mm size 55x12.6mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00066_1x12_P5.00mm_45Degree +terminal block RND 205-00066, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 60x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00066 45Degree pitch 5mm size 60x12.6mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00067_1x02_P7.50mm_Horizontal +terminal block RND 205-00067, 2 pins, pitch 7.5mm, size 15x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00067 pitch 7.5mm size 15x10.3mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00068_1x03_P7.50mm_Horizontal +terminal block RND 205-00068, 3 pins, pitch 7.5mm, size 22.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00068 pitch 7.5mm size 22.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00069_1x04_P7.50mm_Horizontal +terminal block RND 205-00069, 4 pins, pitch 7.5mm, size 30x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00069 pitch 7.5mm size 30x10.3mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00070_1x05_P7.50mm_Horizontal +terminal block RND 205-00070, 5 pins, pitch 7.5mm, size 37.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00070 pitch 7.5mm size 37.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00071_1x06_P7.50mm_Horizontal +terminal block RND 205-00071, 6 pins, pitch 7.5mm, size 45x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00071 pitch 7.5mm size 45x10.3mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00072_1x07_P7.50mm_Horizontal +terminal block RND 205-00072, 7 pins, pitch 7.5mm, size 52.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00072 pitch 7.5mm size 52.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00073_1x08_P7.50mm_Horizontal +terminal block RND 205-00073, 8 pins, pitch 7.5mm, size 60x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00073 pitch 7.5mm size 60x10.3mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00074_1x09_P7.50mm_Horizontal +terminal block RND 205-00074, 9 pins, pitch 7.5mm, size 67.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00074 pitch 7.5mm size 67.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00075_1x10_P7.50mm_Horizontal +terminal block RND 205-00075, 10 pins, pitch 7.5mm, size 75x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00075 pitch 7.5mm size 75x10.3mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00076_1x11_P7.50mm_Horizontal +terminal block RND 205-00076, 11 pins, pitch 7.5mm, size 82.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00076 pitch 7.5mm size 82.5x10.3mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00077_1x12_P7.50mm_Horizontal +terminal block RND 205-00077, 12 pins, pitch 7.5mm, size 90x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00077 pitch 7.5mm size 90x10.3mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00078_1x02_P10.00mm_Horizontal +terminal block RND 205-00078, 2 pins, pitch 10mm, size 15x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00078 pitch 10mm size 15x10.3mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00079_1x03_P10.00mm_Horizontal +terminal block RND 205-00079, 3 pins, pitch 10mm, size 25x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00079 pitch 10mm size 25x10.3mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00080_1x04_P10.00mm_Horizontal +terminal block RND 205-00080, 4 pins, pitch 10mm, size 35x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00080 pitch 10mm size 35x10.3mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00081_1x05_P10.00mm_Horizontal +terminal block RND 205-00081, 5 pins, pitch 10mm, size 45x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00081 pitch 10mm size 45x10.3mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00082_1x06_P10.00mm_Horizontal +terminal block RND 205-00082, 6 pins, pitch 10mm, size 55x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00082 pitch 10mm size 55x10.3mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00083_1x07_P10.00mm_Horizontal +terminal block RND 205-00083, 7 pins, pitch 10mm, size 65x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00083 pitch 10mm size 65x10.3mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00084_1x08_P10.00mm_Horizontal +terminal block RND 205-00084, 8 pins, pitch 10mm, size 75x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00084 pitch 10mm size 75x10.3mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00085_1x09_P10.00mm_Horizontal +terminal block RND 205-00085, 9 pins, pitch 10mm, size 85x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00085 pitch 10mm size 85x10.3mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00086_1x10_P10.00mm_Horizontal +terminal block RND 205-00086, 10 pins, pitch 10mm, size 95x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00086 pitch 10mm size 95x10.3mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00087_1x11_P10.00mm_Horizontal +terminal block RND 205-00087, 11 pins, pitch 10mm, size 105x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00087 pitch 10mm size 105x10.3mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00088_1x12_P10.00mm_Horizontal +terminal block RND 205-00088, 12 pins, pitch 10mm, size 115x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00088 pitch 10mm size 115x10.3mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00232_1x02_P5.08mm_Horizontal +terminal block RND 205-00232, 2 pins, pitch 5.08mm, size 10.2x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00232 pitch 5.08mm size 10.2x8.45mm^2 drill 1.1mm pad 2.1mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00233_1x03_P5.08mm_Horizontal +terminal block RND 205-00233, 3 pins, pitch 5.08mm, size 15.2x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00233 pitch 5.08mm size 15.2x8.45mm^2 drill 1.1mm pad 2.1mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00234_1x04_P5.08mm_Horizontal +terminal block RND 205-00234, 4 pins, pitch 5.08mm, size 20.3x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00234 pitch 5.08mm size 20.3x8.45mm^2 drill 1.1mm pad 2.1mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00235_1x05_P5.08mm_Horizontal +terminal block RND 205-00235, 5 pins, pitch 5.08mm, size 25.4x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00235 pitch 5.08mm size 25.4x8.45mm^2 drill 1.1mm pad 2.1mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00236_1x06_P5.08mm_Horizontal +terminal block RND 205-00236, 6 pins, pitch 5.08mm, size 30.5x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00236 pitch 5.08mm size 30.5x8.45mm^2 drill 1.1mm pad 2.1mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00237_1x07_P5.08mm_Horizontal +terminal block RND 205-00237, 7 pins, pitch 5.08mm, size 35.6x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00237 pitch 5.08mm size 35.6x8.45mm^2 drill 1.1mm pad 2.1mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00238_1x08_P5.08mm_Horizontal +terminal block RND 205-00238, 8 pins, pitch 5.08mm, size 40.6x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00238 pitch 5.08mm size 40.6x8.45mm^2 drill 1.1mm pad 2.1mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00239_1x09_P5.08mm_Horizontal +terminal block RND 205-00239, 9 pins, pitch 5.08mm, size 45.7x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00239 pitch 5.08mm size 45.7x8.45mm^2 drill 1.1mm pad 2.1mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00240_1x10_P5.08mm_Horizontal +terminal block RND 205-00240, 10 pins, pitch 5.08mm, size 50.8x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00240 pitch 5.08mm size 50.8x8.45mm^2 drill 1.1mm pad 2.1mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00241_1x02_P10.16mm_Horizontal +terminal block RND 205-00241, 2 pins, pitch 10.2mm, size 15.2x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00241 pitch 10.2mm size 15.2x8.3mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00242_1x03_P10.16mm_Horizontal +terminal block RND 205-00242, 3 pins, pitch 10.2mm, size 25.4x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00242 pitch 10.2mm size 25.4x8.3mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00243_1x04_P10.16mm_Horizontal +terminal block RND 205-00243, 4 pins, pitch 10.2mm, size 35.6x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00243 pitch 10.2mm size 35.6x8.3mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00244_1x05_P10.16mm_Horizontal +terminal block RND 205-00244, 5 pins, pitch 10.2mm, size 45.7x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00244 pitch 10.2mm size 45.7x8.3mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00245_1x06_P10.16mm_Horizontal +terminal block RND 205-00245, 6 pins, pitch 10.2mm, size 55.9x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00245 pitch 10.2mm size 55.9x8.3mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00246_1x07_P10.16mm_Horizontal +terminal block RND 205-00246, 7 pins, pitch 10.2mm, size 66x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00246 pitch 10.2mm size 66x8.3mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00247_1x08_P10.16mm_Horizontal +terminal block RND 205-00247, 8 pins, pitch 10.2mm, size 76.2x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00247 pitch 10.2mm size 76.2x8.3mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00248_1x09_P10.16mm_Horizontal +terminal block RND 205-00248, 9 pins, pitch 10.2mm, size 86.4x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00248 pitch 10.2mm size 86.4x8.3mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00249_1x10_P10.16mm_Horizontal +terminal block RND 205-00249, 10 pins, pitch 10.2mm, size 96.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00249 pitch 10.2mm size 96.5x8.3mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00250_1x11_P10.16mm_Horizontal +terminal block RND 205-00250, 11 pins, pitch 10.2mm, size 107x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00250 pitch 10.2mm size 107x8.3mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00251_1x12_P10.16mm_Horizontal +terminal block RND 205-00251, 12 pins, pitch 10.2mm, size 117x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00251 pitch 10.2mm size 117x8.3mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00276_1x02_P5.00mm_Vertical +terminal block RND 205-00078, vertical (cable from top), 2 pins, pitch 5mm, size 10x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00078 vertical pitch 5mm size 10x10mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00277_1x03_P5.00mm_Vertical +terminal block RND 205-00079, vertical (cable from top), 3 pins, pitch 5mm, size 15x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00079 vertical pitch 5mm size 15x10mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00278_1x04_P5.00mm_Vertical +terminal block RND 205-00080, vertical (cable from top), 4 pins, pitch 5mm, size 20x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00080 vertical pitch 5mm size 20x10mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00279_1x05_P5.00mm_Vertical +terminal block RND 205-00081, vertical (cable from top), 5 pins, pitch 5mm, size 25x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00081 vertical pitch 5mm size 25x10mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00280_1x06_P5.00mm_Vertical +terminal block RND 205-00082, vertical (cable from top), 6 pins, pitch 5mm, size 30x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00082 vertical pitch 5mm size 30x10mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00281_1x07_P5.00mm_Vertical +terminal block RND 205-00083, vertical (cable from top), 7 pins, pitch 5mm, size 35x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00083 vertical pitch 5mm size 35x10mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00282_1x08_P5.00mm_Vertical +terminal block RND 205-00084, vertical (cable from top), 8 pins, pitch 5mm, size 40x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00084 vertical pitch 5mm size 40x10mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00283_1x09_P5.00mm_Vertical +terminal block RND 205-00085, vertical (cable from top), 9 pins, pitch 5mm, size 45x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00085 vertical pitch 5mm size 45x10mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00284_1x10_P5.00mm_Vertical +terminal block RND 205-00086, vertical (cable from top), 10 pins, pitch 5mm, size 50x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00086 vertical pitch 5mm size 50x10mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00285_1x11_P5.00mm_Vertical +terminal block RND 205-00087, vertical (cable from top), 11 pins, pitch 5mm, size 55x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00087 vertical pitch 5mm size 55x10mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00286_1x12_P5.00mm_Vertical +terminal block RND 205-00088, vertical (cable from top), 12 pins, pitch 5mm, size 60x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00088 vertical pitch 5mm size 60x10mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00287_1x02_P5.08mm_Horizontal +terminal block RND 205-00287, 2 pins, pitch 5.08mm, size 10.2x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00287 pitch 5.08mm size 10.2x10.6mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00288_1x03_P5.08mm_Horizontal +terminal block RND 205-00288, 3 pins, pitch 5.08mm, size 15.2x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00288 pitch 5.08mm size 15.2x10.6mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00289_1x04_P5.08mm_Horizontal +terminal block RND 205-00289, 4 pins, pitch 5.08mm, size 20.3x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00289 pitch 5.08mm size 20.3x10.6mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00290_1x05_P5.08mm_Horizontal +terminal block RND 205-00290, 5 pins, pitch 5.08mm, size 25.4x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00290 pitch 5.08mm size 25.4x10.6mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00291_1x06_P5.08mm_Horizontal +terminal block RND 205-00291, 6 pins, pitch 5.08mm, size 30.5x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00291 pitch 5.08mm size 30.5x10.6mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00292_1x07_P5.08mm_Horizontal +terminal block RND 205-00292, 7 pins, pitch 5.08mm, size 35.6x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00292 pitch 5.08mm size 35.6x10.6mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00293_1x08_P5.08mm_Horizontal +terminal block RND 205-00293, 8 pins, pitch 5.08mm, size 40.6x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00293 pitch 5.08mm size 40.6x10.6mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00294_1x09_P5.08mm_Horizontal +terminal block RND 205-00294, 9 pins, pitch 5.08mm, size 45.7x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00294 pitch 5.08mm size 45.7x10.6mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00295_1x10_P5.08mm_Horizontal +terminal block RND 205-00295, 10 pins, pitch 5.08mm, size 50.8x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00295 pitch 5.08mm size 50.8x10.6mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00296_1x11_P5.08mm_Horizontal +terminal block RND 205-00296, 11 pins, pitch 5.08mm, size 55.9x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00296 pitch 5.08mm size 55.9x10.6mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00297_1x12_P5.08mm_Horizontal +terminal block RND 205-00297, 12 pins, pitch 5.08mm, size 61x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00297 pitch 5.08mm size 61x10.6mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_RND +TerminalBlock_RND_205-00298_1x02_P10.00mm_Horizontal +terminal block RND 205-00298, 2 pins, pitch 10mm, size 15x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00298 pitch 10mm size 15x8.1mm^2 drill 1.3mm pad 2.5mm +0 +2 +2 +TerminalBlock_RND +TerminalBlock_RND_205-00299_1x03_P10.00mm_Horizontal +terminal block RND 205-00299, 3 pins, pitch 10mm, size 25x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00299 pitch 10mm size 25x8.1mm^2 drill 1.3mm pad 2.5mm +0 +3 +3 +TerminalBlock_RND +TerminalBlock_RND_205-00300_1x04_P10.00mm_Horizontal +terminal block RND 205-00300, 4 pins, pitch 10mm, size 35x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00300 pitch 10mm size 35x8.1mm^2 drill 1.3mm pad 2.5mm +0 +4 +4 +TerminalBlock_RND +TerminalBlock_RND_205-00301_1x05_P10.00mm_Horizontal +terminal block RND 205-00301, 5 pins, pitch 10mm, size 45x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00301 pitch 10mm size 45x8.1mm^2 drill 1.3mm pad 2.5mm +0 +5 +5 +TerminalBlock_RND +TerminalBlock_RND_205-00302_1x06_P10.00mm_Horizontal +terminal block RND 205-00302, 6 pins, pitch 10mm, size 55x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00302 pitch 10mm size 55x8.1mm^2 drill 1.3mm pad 2.5mm +0 +6 +6 +TerminalBlock_RND +TerminalBlock_RND_205-00303_1x07_P10.00mm_Horizontal +terminal block RND 205-00303, 7 pins, pitch 10mm, size 65x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00303 pitch 10mm size 65x8.1mm^2 drill 1.3mm pad 2.5mm +0 +7 +7 +TerminalBlock_RND +TerminalBlock_RND_205-00304_1x08_P10.00mm_Horizontal +terminal block RND 205-00304, 8 pins, pitch 10mm, size 75x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00304 pitch 10mm size 75x8.1mm^2 drill 1.3mm pad 2.5mm +0 +8 +8 +TerminalBlock_RND +TerminalBlock_RND_205-00305_1x09_P10.00mm_Horizontal +terminal block RND 205-00305, 9 pins, pitch 10mm, size 85x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00305 pitch 10mm size 85x8.1mm^2 drill 1.3mm pad 2.5mm +0 +9 +9 +TerminalBlock_RND +TerminalBlock_RND_205-00306_1x10_P10.00mm_Horizontal +terminal block RND 205-00306, 10 pins, pitch 10mm, size 95x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00306 pitch 10mm size 95x8.1mm^2 drill 1.3mm pad 2.5mm +0 +10 +10 +TerminalBlock_RND +TerminalBlock_RND_205-00307_1x11_P10.00mm_Horizontal +terminal block RND 205-00307, 11 pins, pitch 10mm, size 105x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00307 pitch 10mm size 105x8.1mm^2 drill 1.3mm pad 2.5mm +0 +11 +11 +TerminalBlock_RND +TerminalBlock_RND_205-00308_1x12_P10.00mm_Horizontal +terminal block RND 205-00308, 12 pins, pitch 10mm, size 115x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND +THT terminal block RND 205-00308 pitch 10mm size 115x8.1mm^2 drill 1.3mm pad 2.5mm +0 +12 +12 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_1-282834-0_1x10_P2.54mm_Horizontal +Terminal Block TE 1-282834-0, 10 pins, pitch 2.54mm, size 25.86x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-0 pitch 2.54mm size 25.86x6.5mm^2 drill 1.1mm pad 2.1mm +0 +10 +10 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_1-282834-1_1x11_P2.54mm_Horizontal +Terminal Block TE 1-282834-1, 11 pins, pitch 2.54mm, size 28.4x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-1 pitch 2.54mm size 28.4x6.5mm^2 drill 1.1mm pad 2.1mm +0 +11 +11 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_1-282834-2_1x12_P2.54mm_Horizontal +Terminal Block TE 1-282834-2, 12 pins, pitch 2.54mm, size 30.94x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 1-282834-2 pitch 2.54mm size 30.94x6.5mm^2 drill 1.1mm pad 2.1mm +0 +12 +12 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-2_1x02_P2.54mm_Horizontal +Terminal Block TE 282834-2, 2 pins, pitch 2.54mm, size 5.54x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-2 pitch 2.54mm size 5.54x6.5mm^2 drill 1.1mm pad 2.1mm +0 +2 +2 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal +Terminal Block TE 282834-3, 3 pins, pitch 2.54mm, size 8.08x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-3 pitch 2.54mm size 8.08x6.5mm^2 drill 1.1mm pad 2.1mm +0 +3 +3 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-4_1x04_P2.54mm_Horizontal +Terminal Block TE 282834-4, 4 pins, pitch 2.54mm, size 10.620000000000001x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-4 pitch 2.54mm size 10.620000000000001x6.5mm^2 drill 1.1mm pad 2.1mm +0 +4 +4 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-5_1x05_P2.54mm_Horizontal +Terminal Block TE 282834-5, 5 pins, pitch 2.54mm, size 13.16x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-5 pitch 2.54mm size 13.16x6.5mm^2 drill 1.1mm pad 2.1mm +0 +5 +5 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-6_1x06_P2.54mm_Horizontal +Terminal Block TE 282834-6, 6 pins, pitch 2.54mm, size 15.7x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-6 pitch 2.54mm size 15.7x6.5mm^2 drill 1.1mm pad 2.1mm +0 +6 +6 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-7_1x07_P2.54mm_Horizontal +Terminal Block TE 282834-7, 7 pins, pitch 2.54mm, size 18.240000000000002x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-7 pitch 2.54mm size 18.240000000000002x6.5mm^2 drill 1.1mm pad 2.1mm +0 +7 +7 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-8_1x08_P2.54mm_Horizontal +Terminal Block TE 282834-8, 8 pins, pitch 2.54mm, size 20.78x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-8 pitch 2.54mm size 20.78x6.5mm^2 drill 1.1mm pad 2.1mm +0 +8 +8 +TerminalBlock_TE-Connectivity +TerminalBlock_TE_282834-9_1x09_P2.54mm_Horizontal +Terminal Block TE 282834-9, 9 pins, pitch 2.54mm, size 23.32x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity +THT Terminal Block TE 282834-9 pitch 2.54mm size 23.32x6.5mm^2 drill 1.1mm pad 2.1mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-101_1x01_P5.00mm_45Degree +Terminal Block WAGO 236-101, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 7.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-101 45Degree pitch 5mm size 7.3x14mm^2 drill 1.15mm pad 3mm +0 +1 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-102_1x02_P5.00mm_45Degree +Terminal Block WAGO 236-102, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-102 45Degree pitch 5mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-103_1x03_P5.00mm_45Degree +Terminal Block WAGO 236-103, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-103 45Degree pitch 5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +3 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-104_1x04_P5.00mm_45Degree +Terminal Block WAGO 236-104, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-104 45Degree pitch 5mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-105_1x05_P5.00mm_45Degree +Terminal Block WAGO 236-105, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 27.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-105 45Degree pitch 5mm size 27.3x14mm^2 drill 1.15mm pad 3mm +0 +5 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-106_1x06_P5.00mm_45Degree +Terminal Block WAGO 236-106, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-106 45Degree pitch 5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-107_1x07_P5.00mm_45Degree +Terminal Block WAGO 236-107, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 37.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-107 45Degree pitch 5mm size 37.3x14mm^2 drill 1.15mm pad 3mm +0 +7 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-108_1x08_P5.00mm_45Degree +Terminal Block WAGO 236-108, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-108 45Degree pitch 5mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-109_1x09_P5.00mm_45Degree +Terminal Block WAGO 236-109, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-109 45Degree pitch 5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-112_1x12_P5.00mm_45Degree +Terminal Block WAGO 236-112, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-112 45Degree pitch 5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-114_1x14_P5.00mm_45Degree +Terminal Block WAGO 236-114, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 72.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-114 45Degree pitch 5mm size 72.3x14mm^2 drill 1.15mm pad 3mm +0 +14 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-116_1x16_P5.00mm_45Degree +Terminal Block WAGO 236-116, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-116 45Degree pitch 5mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-124_1x24_P5.00mm_45Degree +Terminal Block WAGO 236-124, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-124 45Degree pitch 5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +24 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-136_1x36_P5.00mm_45Degree +Terminal Block WAGO 236-136, 45Degree (cable under 45degree), 36 pins, pitch 5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-136 45Degree pitch 5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +36 +36 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-148_1x48_P5.00mm_45Degree +Terminal Block WAGO 236-148, 45Degree (cable under 45degree), 48 pins, pitch 5mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-148 45Degree pitch 5mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +48 +48 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-201_1x01_P7.50mm_45Degree +Terminal Block WAGO 236-201, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 9.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-201 45Degree pitch 7.5mm size 9.8x14mm^2 drill 1.15mm pad 3mm +0 +1 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-202_1x02_P7.50mm_45Degree +Terminal Block WAGO 236-202, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-202 45Degree pitch 7.5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-203_1x03_P7.50mm_45Degree +Terminal Block WAGO 236-203, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 24.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-203 45Degree pitch 7.5mm size 24.8x14mm^2 drill 1.15mm pad 3mm +0 +3 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-204_1x04_P7.50mm_45Degree +Terminal Block WAGO 236-204, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-204 45Degree pitch 7.5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-205_1x05_P7.50mm_45Degree +Terminal Block WAGO 236-205, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 39.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-205 45Degree pitch 7.5mm size 39.8x14mm^2 drill 1.15mm pad 3mm +0 +5 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-206_1x06_P7.50mm_45Degree +Terminal Block WAGO 236-206, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-206 45Degree pitch 7.5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-207_1x07_P7.50mm_45Degree +Terminal Block WAGO 236-207, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 54.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-207 45Degree pitch 7.5mm size 54.8x14mm^2 drill 1.15mm pad 3mm +0 +7 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-208_1x08_P7.50mm_45Degree +Terminal Block WAGO 236-208, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-208 45Degree pitch 7.5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-209_1x09_P7.50mm_45Degree +Terminal Block WAGO 236-209, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 69.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-209 45Degree pitch 7.5mm size 69.8x14mm^2 drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-212_1x12_P7.50mm_45Degree +Terminal Block WAGO 236-212, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-212 45Degree pitch 7.5mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-216_1x16_P7.50mm_45Degree +Terminal Block WAGO 236-216, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-216 45Degree pitch 7.5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +16 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-224_1x24_P7.50mm_45Degree +Terminal Block WAGO 236-224, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-224 45Degree pitch 7.5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +24 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-301_1x01_P10.00mm_45Degree +Terminal Block WAGO 236-301, 45Degree (cable under 45degree), 1 pins, pitch 10mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-301 45Degree pitch 10mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +1 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-302_1x02_P10.00mm_45Degree +Terminal Block WAGO 236-302, 45Degree (cable under 45degree), 2 pins, pitch 10mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-302 45Degree pitch 10mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-303_1x03_P10.00mm_45Degree +Terminal Block WAGO 236-303, 45Degree (cable under 45degree), 3 pins, pitch 10mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-303 45Degree pitch 10mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +3 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-304_1x04_P10.00mm_45Degree +Terminal Block WAGO 236-304, 45Degree (cable under 45degree), 4 pins, pitch 10mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-304 45Degree pitch 10mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-305_1x05_P10.00mm_45Degree +Terminal Block WAGO 236-305, 45Degree (cable under 45degree), 5 pins, pitch 10mm, size 52.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-305 45Degree pitch 10mm size 52.3x14mm^2 drill 1.15mm pad 3mm +0 +5 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-306_1x06_P10.00mm_45Degree +Terminal Block WAGO 236-306, 45Degree (cable under 45degree), 6 pins, pitch 10mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-306 45Degree pitch 10mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-308_1x08_P10.00mm_45Degree +Terminal Block WAGO 236-308, 45Degree (cable under 45degree), 8 pins, pitch 10mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-308 45Degree pitch 10mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-309_1x09_P10.00mm_45Degree +Terminal Block WAGO 236-309, 45Degree (cable under 45degree), 9 pins, pitch 10mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-309 45Degree pitch 10mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +9 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-312_1x12_P10.00mm_45Degree +Terminal Block WAGO 236-312, 45Degree (cable under 45degree), 12 pins, pitch 10mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-312 45Degree pitch 10mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +12 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-316_1x16_P10.00mm_45Degree +Terminal Block WAGO 236-316, 45Degree (cable under 45degree), 16 pins, pitch 10mm, size 162x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-316 45Degree pitch 10mm size 162x14mm^2 drill 1.15mm pad 3mm +0 +16 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-324_1x24_P10.00mm_45Degree +Terminal Block WAGO 236-324, 45Degree (cable under 45degree), 24 pins, pitch 10mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-324 45Degree pitch 10mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +24 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-401_1x01_P5.00mm_45Degree +Terminal Block WAGO 236-401, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 7.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-401 45Degree pitch 5mm size 7.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-402_1x02_P5.00mm_45Degree +Terminal Block WAGO 236-402, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-402 45Degree pitch 5mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-403_1x03_P5.00mm_45Degree +Terminal Block WAGO 236-403, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-403 45Degree pitch 5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-404_1x04_P5.00mm_45Degree +Terminal Block WAGO 236-404, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-404 45Degree pitch 5mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-405_1x05_P5.00mm_45Degree +Terminal Block WAGO 236-405, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 27.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-405 45Degree pitch 5mm size 27.3x14mm^2 drill 1.15mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-406_1x06_P5.00mm_45Degree +Terminal Block WAGO 236-406, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-406 45Degree pitch 5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-407_1x07_P5.00mm_45Degree +Terminal Block WAGO 236-407, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 37.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-407 45Degree pitch 5mm size 37.3x14mm^2 drill 1.15mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-408_1x08_P5.00mm_45Degree +Terminal Block WAGO 236-408, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-408 45Degree pitch 5mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-409_1x09_P5.00mm_45Degree +Terminal Block WAGO 236-409, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-409 45Degree pitch 5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-412_1x12_P5.00mm_45Degree +Terminal Block WAGO 236-412, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-412 45Degree pitch 5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-414_1x14_P5.00mm_45Degree +Terminal Block WAGO 236-414, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 72.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-414 45Degree pitch 5mm size 72.3x14mm^2 drill 1.15mm pad 3mm +0 +28 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-416_1x16_P5.00mm_45Degree +Terminal Block WAGO 236-416, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-416 45Degree pitch 5mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-424_1x24_P5.00mm_45Degree +Terminal Block WAGO 236-424, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-424 45Degree pitch 5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-436_1x36_P5.00mm_45Degree +Terminal Block WAGO 236-436, 45Degree (cable under 45degree), 36 pins, pitch 5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-436 45Degree pitch 5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +72 +36 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-448_1x48_P5.00mm_45Degree +Terminal Block WAGO 236-448, 45Degree (cable under 45degree), 48 pins, pitch 5mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-448 45Degree pitch 5mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +96 +48 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-501_1x01_P7.50mm_45Degree +Terminal Block WAGO 236-501, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 9.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-501 45Degree pitch 7.5mm size 9.8x14mm^2 drill 1.15mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-502_1x02_P7.50mm_45Degree +Terminal Block WAGO 236-502, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-502 45Degree pitch 7.5mm size 17.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-503_1x03_P7.50mm_45Degree +Terminal Block WAGO 236-503, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 24.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-503 45Degree pitch 7.5mm size 24.8x14mm^2 drill 1.15mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-504_1x04_P7.50mm_45Degree +Terminal Block WAGO 236-504, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-504 45Degree pitch 7.5mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-505_1x05_P7.50mm_45Degree +Terminal Block WAGO 236-505, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 39.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-505 45Degree pitch 7.5mm size 39.8x14mm^2 drill 1.15mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-506_1x06_P7.50mm_45Degree +Terminal Block WAGO 236-506, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-506 45Degree pitch 7.5mm size 47.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-507_1x07_P7.50mm_45Degree +Terminal Block WAGO 236-507, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 54.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-507 45Degree pitch 7.5mm size 54.8x14mm^2 drill 1.15mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-508_1x08_P7.50mm_45Degree +Terminal Block WAGO 236-508, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-508 45Degree pitch 7.5mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-509_1x09_P7.50mm_45Degree +Terminal Block WAGO 236-509, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 69.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-509 45Degree pitch 7.5mm size 69.8x14mm^2 drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-512_1x12_P7.50mm_45Degree +Terminal Block WAGO 236-512, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-512 45Degree pitch 7.5mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-516_1x16_P7.50mm_45Degree +Terminal Block WAGO 236-516, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-516 45Degree pitch 7.5mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-524_1x24_P7.50mm_45Degree +Terminal Block WAGO 236-524, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-524 45Degree pitch 7.5mm size 182x14mm^2 drill 1.15mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-601_1x01_P10.00mm_45Degree +Terminal Block WAGO 236-601, 45Degree (cable under 45degree), 1 pins, pitch 10mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-601 45Degree pitch 10mm size 12.3x14mm^2 drill 1.15mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-602_1x02_P10.00mm_45Degree +Terminal Block WAGO 236-602, 45Degree (cable under 45degree), 2 pins, pitch 10mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-602 45Degree pitch 10mm size 22.3x14mm^2 drill 1.15mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-603_1x03_P10.00mm_45Degree +Terminal Block WAGO 236-603, 45Degree (cable under 45degree), 3 pins, pitch 10mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-603 45Degree pitch 10mm size 32.3x14mm^2 drill 1.15mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-604_1x04_P10.00mm_45Degree +Terminal Block WAGO 236-604, 45Degree (cable under 45degree), 4 pins, pitch 10mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-604 45Degree pitch 10mm size 42.3x14mm^2 drill 1.15mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-605_1x05_P10.00mm_45Degree +Terminal Block WAGO 236-605, 45Degree (cable under 45degree), 5 pins, pitch 10mm, size 52.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-605 45Degree pitch 10mm size 52.3x14mm^2 drill 1.15mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-606_1x06_P10.00mm_45Degree +Terminal Block WAGO 236-606, 45Degree (cable under 45degree), 6 pins, pitch 10mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-606 45Degree pitch 10mm size 62.3x14mm^2 drill 1.15mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-608_1x08_P10.00mm_45Degree +Terminal Block WAGO 236-608, 45Degree (cable under 45degree), 8 pins, pitch 10mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-608 45Degree pitch 10mm size 82.3x14mm^2 drill 1.15mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-609_1x09_P10.00mm_45Degree +Terminal Block WAGO 236-609, 45Degree (cable under 45degree), 9 pins, pitch 10mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-609 45Degree pitch 10mm size 92.3x14mm^2 drill 1.15mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-612_1x12_P10.00mm_45Degree +Terminal Block WAGO 236-612, 45Degree (cable under 45degree), 12 pins, pitch 10mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-612 45Degree pitch 10mm size 122x14mm^2 drill 1.15mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-616_1x16_P10.00mm_45Degree +Terminal Block WAGO 236-616, 45Degree (cable under 45degree), 16 pins, pitch 10mm, size 162x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-616 45Degree pitch 10mm size 162x14mm^2 drill 1.15mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_236-624_1x24_P10.00mm_45Degree +Terminal Block WAGO 236-624, 45Degree (cable under 45degree), 24 pins, pitch 10mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 236-624 45Degree pitch 10mm size 242x14mm^2 drill 1.15mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-101_1x01_P5.00mm_45Degree +Terminal Block WAGO 804-101, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 6.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-101 45Degree pitch 5mm size 6.5x15mm^2 drill 1.2mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-102_1x02_P5.00mm_45Degree +Terminal Block WAGO 804-102, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 11.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-102 45Degree pitch 5mm size 11.5x15mm^2 drill 1.2mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-103_1x03_P5.00mm_45Degree +Terminal Block WAGO 804-103, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 16.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-103 45Degree pitch 5mm size 16.5x15mm^2 drill 1.2mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-104_1x04_P5.00mm_45Degree +Terminal Block WAGO 804-104, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 21.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-104 45Degree pitch 5mm size 21.5x15mm^2 drill 1.2mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-105_1x05_P5.00mm_45Degree +Terminal Block WAGO 804-105, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 26.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-105 45Degree pitch 5mm size 26.5x15mm^2 drill 1.2mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-106_1x06_P5.00mm_45Degree +Terminal Block WAGO 804-106, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 31.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-106 45Degree pitch 5mm size 31.5x15mm^2 drill 1.2mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-107_1x07_P5.00mm_45Degree +Terminal Block WAGO 804-107, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 36.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-107 45Degree pitch 5mm size 36.5x15mm^2 drill 1.2mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-108_1x08_P5.00mm_45Degree +Terminal Block WAGO 804-108, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 41.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-108 45Degree pitch 5mm size 41.5x15mm^2 drill 1.2mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-109_1x09_P5.00mm_45Degree +Terminal Block WAGO 804-109, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 46.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-109 45Degree pitch 5mm size 46.5x15mm^2 drill 1.2mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-110_1x10_P5.00mm_45Degree +Terminal Block WAGO 804-110, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 51.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-110 45Degree pitch 5mm size 51.5x15mm^2 drill 1.2mm pad 3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-111_1x11_P5.00mm_45Degree +Terminal Block WAGO 804-111, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 56.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-111 45Degree pitch 5mm size 56.5x15mm^2 drill 1.2mm pad 3mm +0 +22 +11 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-112_1x12_P5.00mm_45Degree +Terminal Block WAGO 804-112, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 61.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-112 45Degree pitch 5mm size 61.5x15mm^2 drill 1.2mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-113_1x13_P5.00mm_45Degree +Terminal Block WAGO 804-113, 45Degree (cable under 45degree), 13 pins, pitch 5mm, size 66.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-113 45Degree pitch 5mm size 66.5x15mm^2 drill 1.2mm pad 3mm +0 +26 +13 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-114_1x14_P5.00mm_45Degree +Terminal Block WAGO 804-114, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 71.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-114 45Degree pitch 5mm size 71.5x15mm^2 drill 1.2mm pad 3mm +0 +28 +14 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-115_1x15_P5.00mm_45Degree +Terminal Block WAGO 804-115, 45Degree (cable under 45degree), 15 pins, pitch 5mm, size 76.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-115 45Degree pitch 5mm size 76.5x15mm^2 drill 1.2mm pad 3mm +0 +30 +15 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-116_1x16_P5.00mm_45Degree +Terminal Block WAGO 804-116, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 81.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-116 45Degree pitch 5mm size 81.5x15mm^2 drill 1.2mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-124_1x24_P5.00mm_45Degree +Terminal Block WAGO 804-124, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-124 45Degree pitch 5mm size 122x15mm^2 drill 1.2mm pad 3mm +0 +48 +24 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-301_1x01_P7.50mm_45Degree +Terminal Block WAGO 804-301, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 6.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-301 45Degree pitch 7.5mm size 6.5x15mm^2 drill 1.2mm pad 3mm +0 +2 +1 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-302_1x02_P7.50mm_45Degree +Terminal Block WAGO 804-302, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 14x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-302 45Degree pitch 7.5mm size 14x15mm^2 drill 1.2mm pad 3mm +0 +4 +2 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-303_1x03_P7.50mm_45Degree +Terminal Block WAGO 804-303, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 21.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-303 45Degree pitch 7.5mm size 21.5x15mm^2 drill 1.2mm pad 3mm +0 +6 +3 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-304_1x04_P7.50mm_45Degree +Terminal Block WAGO 804-304, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 29x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-304 45Degree pitch 7.5mm size 29x15mm^2 drill 1.2mm pad 3mm +0 +8 +4 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-305_1x05_P7.50mm_45Degree +Terminal Block WAGO 804-305, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 36.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-305 45Degree pitch 7.5mm size 36.5x15mm^2 drill 1.2mm pad 3mm +0 +10 +5 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-306_1x06_P7.50mm_45Degree +Terminal Block WAGO 804-306, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 44x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-306 45Degree pitch 7.5mm size 44x15mm^2 drill 1.2mm pad 3mm +0 +12 +6 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-307_1x07_P7.50mm_45Degree +Terminal Block WAGO 804-307, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 51.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-307 45Degree pitch 7.5mm size 51.5x15mm^2 drill 1.2mm pad 3mm +0 +14 +7 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-308_1x08_P7.50mm_45Degree +Terminal Block WAGO 804-308, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 59x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-308 45Degree pitch 7.5mm size 59x15mm^2 drill 1.2mm pad 3mm +0 +16 +8 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-309_1x09_P7.50mm_45Degree +Terminal Block WAGO 804-309, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 66.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-309 45Degree pitch 7.5mm size 66.5x15mm^2 drill 1.2mm pad 3mm +0 +18 +9 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-310_1x10_P7.50mm_45Degree +Terminal Block WAGO 804-310, 45Degree (cable under 45degree), 10 pins, pitch 7.5mm, size 74x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-310 45Degree pitch 7.5mm size 74x15mm^2 drill 1.2mm pad 3mm +0 +20 +10 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-311_1x11_P7.50mm_45Degree +Terminal Block WAGO 804-311, 45Degree (cable under 45degree), 11 pins, pitch 7.5mm, size 81.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-311 45Degree pitch 7.5mm size 81.5x15mm^2 drill 1.2mm pad 3mm +0 +22 +11 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-312_1x12_P7.50mm_45Degree +Terminal Block WAGO 804-312, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 89x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-312 45Degree pitch 7.5mm size 89x15mm^2 drill 1.2mm pad 3mm +0 +24 +12 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-316_1x16_P7.50mm_45Degree +Terminal Block WAGO 804-316, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 119x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-316 45Degree pitch 7.5mm size 119x15mm^2 drill 1.2mm pad 3mm +0 +32 +16 +TerminalBlock_WAGO +TerminalBlock_WAGO_804-324_1x24_P7.50mm_45Degree +Terminal Block WAGO 804-324, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 179x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO +THT Terminal Block WAGO 804-324 45Degree pitch 7.5mm size 179x15mm^2 drill 1.2mm pad 3mm +0 +48 +24 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650073_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650073.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650074_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650074.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650094_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650094.pdf) +screw terminal thread redcube thr power connector +0 +16 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650173_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650173.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650174_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650174.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650194_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650194.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74650195_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650195.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRBU_74655095_THR +REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74655095.pdf) +screw terminal thread redcube thr power connector +0 +16 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651173_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651173.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651174_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651174.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651175_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651175.pdf) +screw terminal thread redcube thr power connector +0 +8 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651194_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651194.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TerminalBlock_Wuerth +Wuerth_REDCUBE-THR_WP-THRSH_74651195_THR +REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651195.pdf) +screw terminal thread redcube thr power connector +0 +18 +1 +TestPoint +TestPoint_2Pads_Pitch2.54mm_Drill0.8mm +Test point with 2 pins, pitch 2.54mm, drill diameter 0.8mm +CONN DEV +0 +2 +2 +TestPoint +TestPoint_2Pads_Pitch5.08mm_Drill1.3mm +Test point with 2 pads, pitch 5.08mm, hole diameter 1.3mm, wire diameter 1.0mm +CONN DEV +0 +2 +2 +TestPoint +TestPoint_Bridge_Pitch2.0mm_Drill0.7mm +wire loop as test point, pitch 2.0mm, hole diameter 0.7mm, wire diameter 0.5mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch2.54mm_Drill0.7mm +wire loop as test point, pitch 2.0mm, hole diameter 0.7mm, wire diameter 0.5mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch2.54mm_Drill1.0mm +wire loop as test point, pitch 2.54mm, hole diameter 1.0mm, wire diameter 0.8mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch2.54mm_Drill1.3mm +wire loop as test point, pitch 2.54mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch3.81mm_Drill1.3mm +wire loop as test point, pitch 3.81mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch5.08mm_Drill0.7mm +wire loop as test point, pitch 5.08mm, hole diameter 0.7mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch5.08mm_Drill1.3mm +wire loop as test point, pitch 5.08mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch6.35mm_Drill1.3mm +wire loop as test point, pitch 6.35mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Bridge_Pitch7.62mm_Drill1.3mm +wire loop as test point, pitch 7.62mm, hole diameter 1.3mm, wire diameter 1.0mm +test point wire loop +0 +2 +1 +TestPoint +TestPoint_Keystone_5000-5004_Miniature +Keystone Miniature THM Test Point 5000-5004, http://www.keyelco.com/product-pdf.cfm?p=1309 +Through Hole Mount Test Points +0 +1 +1 +TestPoint +TestPoint_Keystone_5005-5009_Compact +Keystone Miniature THM Test Point 5005-5009, http://www.keyelco.com/product-pdf.cfm?p=1314 +Through Hole Mount Test Points +0 +1 +1 +TestPoint +TestPoint_Keystone_5010-5014_Multipurpose +Keystone Miniature THM Test Point 5010-5014, http://www.keyelco.com/product-pdf.cfm?p=1319 +Through Hole Mount Test Points +0 +1 +1 +TestPoint +TestPoint_Keystone_5015_Micro-Minature +SMT Test Point- Micro Miniature 5015, http://www.keyelco.com/product-pdf.cfm?p=1353 +Test Point +0 +1 +1 +TestPoint +TestPoint_Keystone_5019_Minature +SMT Test Point- Micro Miniature 5019, http://www.keyelco.com/product-pdf.cfm?p=1357 +Test Point +0 +1 +1 +TestPoint +TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded +wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.50mm_Drill1.0mm +wire loop as test point, loop diameter 2.5mm, hole diameter 1.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.50mm_Drill1.0mm_LowProfile +low profile wire loop as test point, loop diameter 2.5mm, hole diameter 1.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.50mm_Drill1.85mm +wire loop as test point, loop diameter 2.5mm, hole diameter 1.85mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.54mm_Drill1.5mm_Beaded +wire loop with bead as test point, loop diameter2.548mm, hole diameter 1.5mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.60mm_Drill0.9mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 0.9mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.60mm_Drill1.4mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 1.4mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D2.60mm_Drill1.6mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 1.6mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.50mm_Drill0.9mm_Beaded +wire loop with bead as test point, loop diameter2.6mm, hole diameter 0.9mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.50mm_Drill1.4mm_Beaded +wire loop with bead as test point, loop diameter 3.5mm, hole diameter 1.4mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.80mm_Drill2.0mm +wire loop as test point, loop diameter 3.8mm, hole diameter 2.0mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.80mm_Drill2.5mm +wire loop as test point, loop diameter 3.8mm, hole diameter 2.5mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Loop_D3.80mm_Drill2.8mm +wire loop as test point, loop diameter 3.8mm, hole diameter 2.8mm +test point wire loop bead +0 +1 +1 +TestPoint +TestPoint_Pad_1.0x1.0mm +SMD rectangular pad as test Point, square 1.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_1.5x1.5mm +SMD rectangular pad as test Point, square 1.5mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_2.0x2.0mm +SMD rectangular pad as test Point, square 2.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_2.5x2.5mm +SMD rectangular pad as test Point, square 2.5mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_3.0x3.0mm +SMD rectangular pad as test Point, square 3.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_4.0x4.0mm +SMD rectangular pad as test Point, square 4.0mm side length +test point SMD pad rectangle square +0 +1 +1 +TestPoint +TestPoint_Pad_D1.0mm +SMD pad as test Point, diameter 1.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D1.5mm +SMD pad as test Point, diameter 1.5mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D2.0mm +SMD pad as test Point, diameter 2.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D2.5mm +SMD pad as test Point, diameter 2.5mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D3.0mm +SMD pad as test Point, diameter 3.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Pad_D4.0mm +SMD pad as test Point, diameter 4.0mm +test point SMD pad +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D2.0mm +Plated Hole as test Point, diameter 2.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D3.0mm +Plated Hole as test Point, diameter 3.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D4.0mm +Plated Hole as test Point, diameter 4.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_Plated_Hole_D5.0mm +Plated Hole as test Point, diameter 5.0mm +test point plated hole +0 +1 +1 +TestPoint +TestPoint_THTPad_1.0x1.0mm_Drill0.5mm +THT rectangular pad as test Point, square 1.0mm side length, hole diameter 0.5mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_1.5x1.5mm_Drill0.7mm +THT rectangular pad as test Point, square 1.5mm side length, hole diameter 0.7mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_2.0x2.0mm_Drill1.0mm +THT rectangular pad as test Point, square 2.0mm_Drill1.0mm side length, hole diameter 1.0mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_2.5x2.5mm_Drill1.2mm +THT rectangular pad as test Point, square 2.5mm side length, hole diameter 1.2mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_3.0x3.0mm_Drill1.5mm +THT rectangular pad as test Point, square 3.0mm side length, hole diameter 1.5mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_4.0x4.0mm_Drill2.0mm +THT rectangular pad as test Point, square 4.0mm side length, hole diameter 2.0mm +test point THT pad rectangle square +0 +1 +1 +TestPoint +TestPoint_THTPad_D1.0mm_Drill0.5mm +THT pad as test Point, diameter 1.0mm, hole diameter 0.5mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D1.5mm_Drill0.7mm +THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D2.0mm_Drill1.0mm +THT pad as test Point, diameter 2.0mm, hole diameter 1.0mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D2.5mm_Drill1.2mm +THT pad as test Point, diameter 2.5mm, hole diameter 1.2mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D3.0mm_Drill1.5mm +THT pad as test Point, diameter 3.0mm, hole diameter 1.5mm +test point THT pad +0 +1 +1 +TestPoint +TestPoint_THTPad_D4.0mm_Drill2.0mm +THT pad as test Point, diameter 4.0mm, hole diameter 2.0mm +test point THT pad +0 +1 +1 +Transformer_SMD +Pulse_P0926NL +SMT Gate Drive Transformer, 1:1:1, 8.0x6.3x5.3mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa0926nl +0 +6 +6 +Transformer_SMD +Pulse_PA1323NL +SMT Gate Drive Transformer, 1:1, 9.5x7.1x5.3mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa1323nl +0 +6 +6 +Transformer_SMD +Pulse_PA2001NL +SMT Gate Drive Transformer, 1:1, 8.6x6.7x2.5mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2001nl pe-68386nl +0 +4 +4 +Transformer_SMD +Pulse_PA2002NL-PA2008NL-PA2009NL +SMT Gate Drive Transformer, 1:1:1 or 2:1:1 or 2.5:1:1 or 1:1, 9.0x8.6x7.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2002nl pa2008nl pa2009nl p0544nl pa0184nl pa0297nl pa0510nl +0 +6 +6 +Transformer_SMD +Pulse_PA2004NL +SMT Gate Drive Transformer, 1:1:1, 8.6x6.7x3.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2004nl pa0264nl +0 +6 +6 +Transformer_SMD +Pulse_PA2005NL +SMT Gate Drive Transformer, 1:1:1, 11.8x8.8x4.0mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2005nl pa0173nl +0 +6 +6 +Transformer_SMD +Pulse_PA2006NL +SMT Gate Drive Transformer, 1:1, 11.8x8.8x4.0mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2006nl pa0186nl +0 +4 +4 +Transformer_SMD +Pulse_PA2007NL +SMT Gate Drive Transformer, 1:1, 9.0x8.6x7.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) +pulse pa2007nl +0 +4 +4 +Transformer_SMD +Pulse_PA2777NL +SMT Gate Drive Transformer, 1:1, 7.1x6.1x5.5mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa2777nl +0 +8 +8 +Transformer_SMD +Pulse_PA3493NL +SMT Gate Drive Transformer, 1.25:1, 10.9x9.7x2.7mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) +pulse pa3493nl +0 +4 +4 +Transformer_SMD +Transformer_Coilcraft_CST1 +Current sense transformer, SMD, 8.0x8.13x5.3mm (https://www.coilcraft.com/pdfs/cst.pdf) +Transformer current sense SMD +0 +8 +8 +Transformer_SMD +Transformer_Coilcraft_CST2 +Current sense transformer, SMD, 8.0x8.13x5.3mm (https://www.coilcraft.com/pdfs/cst.pdf) +Transformer current sense SMD +0 +8 +8 +Transformer_SMD +Transformer_Coilcraft_CST2010 +Current sense transformer, SMD, 14.55x19.91x10.50mm (https://www.coilcraft.com/pdfs/cst2010.pdf) +Transformer current sense SMD +0 +12 +12 +Transformer_SMD +Transformer_CurrentSense_8.4x7.2mm +Transformer current sense SMD 8.4x7.2mm +Transformer current sense SMD +0 +8 +8 +Transformer_SMD +Transformer_Ethernet_Bel_S558-5999-T7-F +Ethernet Transformer, Bel S558-5999-T7-F, https://www.belfuse.com/resources/ICMs/lan-/S558-5999-T7-F.pdf +Ethernet Transformer +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Bourns_PT61017PEL +https://www.bourns.com/docs/Product-Datasheets/PT61017PEL.pdf +Transformer Ethernet Single Center-Tap +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Bourns_PT61020EL +10/100/1000 Base-T Transformer Module, PT61020EL (https://www.bourns.com/pdfs/PT61020.pdf) +Gigabit PoE Ethernet Transformer Single +0 +24 +24 +Transformer_SMD +Transformer_Ethernet_HALO_TG111-MSC13 +Transformer Ethernet SMD, https://www.haloelectronics.com/pdf/discrete-genesus.pdf +Transformer Ethernet SMD +0 +24 +24 +Transformer_SMD +Transformer_Ethernet_Halo_N2_SO-16_7.11x12.7mm +Halo N2 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Halo SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Halo_N5_SO-16_7.11x12.7mm +Halo N5 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Halo SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Halo_N6_SO-16_7.11x14.73mm +Halo N6 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +Halo SO Transformer_SMD +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_Wuerth_749013011A +Ethernet Transformer, Wuerth 749013011A, https://www.we-online.com/katalog/datasheet/749013011A.pdf +Ethernet Transformer +0 +16 +16 +Transformer_SMD +Transformer_Ethernet_YDS_30F-51NL_SO-24_7.1x15.1mm +YDS 30F-51NL SO, 24 Pin (https://datasheet.lcsc.com/lcsc/1811051610_Shanghai-YDS-Tech-30F-51NL_C123168.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py +YDS SO Transformer_SMD +0 +24 +24 +Transformer_SMD +Transformer_MACOM_SM-22 +https://cdn.macom.com/datasheets/ETC1-1-13.pdf +RF Transformer +0 +5 +5 +Transformer_SMD +Transformer_Murata_78250JC +Murata 78250JC https://www.murata-ps.com/datasheet?/data/magnetics/kmp_78250j.pdf +Murata transformer +0 +6 +6 +Transformer_SMD +Transformer_NF_ETAL_P2781 +NF-Transformer, ETAL, P2781, SMD, +NF-Transformer ETAL P2781 SMD +0 +8 +7 +Transformer_SMD +Transformer_NF_ETAL_P2781_HandSoldering +NF-Transformer, ETAL, P2781, SMD, Handsoldering +NF-Transformer ETAL P2781 SMD Handsoldering +0 +8 +7 +Transformer_SMD +Transformer_NF_ETAL_P3000 +NF-Reansformer, ETAL, P3000, SMD, +NF-Reansformer ETAL P3000 SMD +0 +15 +13 +Transformer_SMD +Transformer_NF_ETAL_P3000_HandSoldering +NF-Reansformer, ETAL, P3000, SMD, Handsoldering, +NF-Reansformer ETAL P3000 SMD Handsoldering +0 +15 +13 +Transformer_SMD +Transformer_NF_ETAL_P3181 +NF-Transformer, ETAL, P3181, SMD, +NF-Transformer ETAL P3181 SMD +0 +7 +6 +Transformer_SMD +Transformer_NF_ETAL_P3181_HandSoldering +NF-Transformer, ETAL, P3181, SMD, Hand Soldering, +NF-Transformer ETAL P3181 SMD Hand Soldering +0 +7 +6 +Transformer_SMD +Transformer_NF_ETAL_P3188 +NF-Transformer, ETAL, P3188, SMD, +NF-Transformer ETAL P3188 SMD +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3188_HandSoldering +NF-Transformer, ETAL, P3188, SMD, Handsoldering, +NF-Transformer ETAL P3188 SMD Handsoldering +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3191 +NF-Transformer, ETAL, P3191, SMD, +NF-Transformer ETAL P3191 SMD +0 +8 +6 +Transformer_SMD +Transformer_NF_ETAL_P3191_HandSoldering +NF-Transformer, ETAL, P3191, SMD, Handsoldering, +NF-Transformer ETAL P3191 SMD Handsoldering +0 +8 +6 +Transformer_SMD +Transformer_Pulse_H1100NL +For H1100NL, H1101NL, H1102NL, H1121NL, H1183NL, H1199NL, HX1188NL, HX1198NL and H1302NL. https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/H1102NL/doc_part/H1102NL.pdf +H1100NL H1101NL H1102NL H1121NL H1183NL H1199NL HX1188NL HX1198NL H1302N +0 +16 +16 +Transformer_SMD +Transformer_Wuerth_750315371 +Power Transformer, horizontal core with bobbin, 6 pin, 2.54mm pitch, 11.24mm row spacing, 12.6x8.3x4.1mm +transformer flyback +0 +6 +6 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D9.0mm_Amidon-T30 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 9mm, Amidon T30, +Autotransformer Toroid horizontal laying 1 Tap Diameter 9mm Amidon T30 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D10.5mm_Amidon-T37 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 10,5mm, Amidon T37, +Autotransformer Toroid horizontal laying 1 Tap Diameter 10 5mm Amidon T37 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D12.5mm_Amidon-T44 +Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 12,5mm, Amidon T44, +Autotransformer Toroid horizontal laying 1 Tap Diameter 12 5mm Amidon T44 +0 +3 +3 +Transformer_THT +Autotransformer_Toroid_1Tap_Horizontal_D14.0mm_Amidon-T50 +Choke, Inductance, Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 14mm, Amidon T50, +Choke Inductance Autotransformer Toroid horizontal laying 1 Tap Diameter 14mm Amidon T50 +0 +3 +3 +Transformer_THT +Autotransformer_ZS1052-AC +Ignition coil for xenon flash, http://www.excelitas.com/downloads/ZS1052ACH.pdf +ignition coil autotransformer +0 +3 +3 +Transformer_THT +Transformer_37x44 +transformer 37x44mmยฒ +transformer 37x44mmยฒ +0 +12 +4 +Transformer_THT +Transformer_Breve_TEZ-22x24 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +7 +7 +Transformer_THT +Transformer_Breve_TEZ-28x33 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-35x42 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-38x45 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +9 +9 +Transformer_THT +Transformer_Breve_TEZ-44x52 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +10 +10 +Transformer_THT +Transformer_Breve_TEZ-47x57 +http://www.breve.pl/pdf/ANG/TEZ_ang.pdf +TEZ PCB Transformer +0 +13 +13 +Transformer_THT +Transformer_CHK_EI30-2VA_1xSec +Trafo, Printtrafo, CHK, EI30, 2VA, 1x Sec,http://www.eratransformers.com/downloads/030-7585.0.pdf +Trafo Printtrafo CHK EI30 2VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI30-2VA_2xSec +Trafo, Printtrafo, CHK, EI30, 2VA, 2x Sec, +Trafo Printtrafo CHK EI30 2VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI30-2VA_Neutral +Trafo, Printtrafo, CHK, EI30, 2VA, neutral, +Trafo Printtrafo CHK EI30 2VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_1xSec +Trafo, Printtrafo, CHK, EI38, 3VA, 1x Sec, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI38 3VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_2xSec +Trafo, Printtrafo, CHK, EI38, 3VA, 2x Sec, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI38 3VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI38-3VA_Neutral +Trafo, Printtrafo, CHK, EI38, 3VA, neutral, http://www.eratransformers.com/product-detail/20 +Trafo Printtrafo CHK EI42 3VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_1xSec +Trafo, Printtrafo, CHK, EI42, 5VA, 1x Sec, +Trafo Printtrafo CHK EI42 5VA 1x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_2xSec +Trafo, Printtrafo, CHK, EI42, 5VA, 2x Sec, +Trafo Printtrafo CHK EI42 5VA 2x Sec +0 +10 +10 +Transformer_THT +Transformer_CHK_EI42-5VA_Neutral +Trafo, Printtrafo, CHK, EI42, 5VA, neutral, +Trafo Printtrafo CHK EI42 5VA neutral +0 +10 +10 +Transformer_THT +Transformer_CHK_EI48-8VA_1xSec +Trafo, Printtrafo, CHK, EI48, 8VA, 1x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA 1x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-8VA_2xSec +Trafo, Printtrafo, CHK, EI48, 8VA, 2x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA 2x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-8VA_Neutral +Trafo, Printtrafo, CHK, EI48, 8VA, neutral, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 8VA neutral +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_1xSec +Trafo, Printtrafo, CHK, EI48, 10VA, 1x Sec, +Trafo Printtrafo CHK EI48 10VA 1x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_2xSec +Trafo, Printtrafo, CHK, EI48, 10VA, 2x Sec, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 10VA 2x Sec +0 +12 +12 +Transformer_THT +Transformer_CHK_EI48-10VA_Neutral +Trafo, Printtrafo, CHK, EI48, 10VA, neutral, http://www.eratransformers.com/product-detail/18 +Trafo Printtrafo CHK EI48 10VA neutral +0 +12 +12 +Transformer_THT +Transformer_CHK_EI54-12VA_1xSec +Trafo, Printtrafo, CHK, EI54, 12VA, 1x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA 1x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-12VA_2xSec +Trafo, Printtrafo, CHK, EI54, 12VA, 2x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA 2x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-12VA_Neutral +Trafo, Printtrafo, CHK, EI54, 12VA, neutral,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 12VA neutral +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_1xSec +Trafo, Printtrafo, CHK, EI54, 16VA, 1x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA 1x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_2xSec +Trafo, Printtrafo, CHK, EI54, 16VA, 2x Sec,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA 2x Sec +0 +14 +14 +Transformer_THT +Transformer_CHK_EI54-16VA_Neutral +Trafo, Printtrafo, CHK, EI54, 16VA, neutral,http://www.eratransformers.com/product-detail/19 +Trafo Printtrafo CHK EI54 16VA neutral +0 +14 +14 +Transformer_THT +Transformer_CHK_UI30-4VA_Flat +Trafo, Flattrafo, CHK, UI30, 4VA, +Trafo Flattrafo CHK UI30 4VA +0 +16 +16 +Transformer_THT +Transformer_CHK_UI39-10VA_Flat +Trafo, Flattrafo, CHK, UI39, 10VA, +Trafo Flattrafo CHK UI39 10VA +0 +20 +20 +Transformer_THT +Transformer_Coilcraft_Q4434-B_Rhombus-T1311 +Transformator, Transformer, Flyback, Coilcraft Q4434-B, Rgombus T1311, +Transformator Transformer Flyback Coilcraft Q4434-B Rgombus T1311 +0 +8 +8 +Transformer_THT +Transformer_EPCOS_B66359A1013T_Horizontal +Transformer, Transformator, ETD29, 13 Pin, Horizontal, EPCOS-B66359A1013T, +Transformer Transformator ETD29 13 Pin Horizontal EPCOS-B66359A1013T +0 +13 +13 +Transformer_THT +Transformer_EPCOS_B66359J1014T_Vertical +Transformer, Transformator, ETD29, 14 Pin, Vertical, EPCOS-B66359J1014T, +Transformer Transformator ETD29 14 Pin Vertical EPCOS-B66359J1014T +0 +14 +14 +Transformer_THT +Transformer_Microphone_Lundahl_LL1538 +AUDIO TRAFO LUNDAHL, https://www.lundahltransformers.com/wp-content/uploads/datasheets/1538_8xl.pdf +AUDIO TRAFO LUNDAHL +0 +7 +7 +Transformer_THT +Transformer_Microphone_Lundahl_LL1587 +AUDIO TRAFO LUNDAHL, https://www.lundahltransformers.com/wp-content/uploads/datasheets/1587.pdf +AUDIO TRAFO LUNDAHL +0 +7 +7 +Transformer_THT +Transformer_Myrra_74040_Horizontal +Transformer, Transformator, ETD29, 13 Pin, Horizontal, Myrra-74040, +Transformer Transformator ETD29 13 Pin Horizontal Myrra-74040 +0 +13 +13 +Transformer_THT +Transformer_Myrra_EF20_7408x +EF20 flyback transformer,http://myrra.com/wp-content/uploads/2017/09/Datasheet-74087-74088-74089-rev-A.pdf +transformer flyback SMPS +0 +9 +9 +Transformer_THT +Transformer_NF_ETAL_1-1_P1200 +NF-Transformer, 1:1, ETAL P1200,http://www.etalgroup.com/sites/default/files/products/P1200_April_2005.pdf +NF-Transformer 1to1 ETAL P1200 +0 +4 +4 +Transformer_THT +Transformer_NF_ETAL_P1165 +NF-Transformer, ETAL, P1165,http://www.etalgroup.com/sites/default/files/products/P1165_February_2006.pdf +NF-Transformer ETAL P1165 +0 +4 +4 +Transformer_THT +Transformer_NF_ETAL_P3324 +NF-Transformer, ETAL P3324,http://www.etalgroup.com/sites/default/files/products/P3324_April_2005.pdf +NF-Transformer ETAL P3324 +0 +4 +4 +Transformer_THT +Transformer_NF_ETAL_P3356 +NF-Transformer, ETAL P3356, http://www.etalgroup.com/sites/default/files/products/P3356_December_2005.pdf +NF-Transformer ETAL P3356 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D9.0mm_Amidon-T30 +Transformer, Toroid, horizontal, laying, Diameter 9mm, Amidon, T30, +Transformer Toroid horizontal laying Diameter 9mm Amidon T30 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D10.5mm_Amidon-T37 +Transformer, Toroid, horizontal, laying, Diameter 10,5mm, Amidon T37, +Transformer Toroid horizontal laying Diameter 10 5mm Amidon T37 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D12.5mm_Amidon-T44 +Transformer, Toroid, horizontal, laying, Diameter 12,5mm, Amidon T44, +Transformer Toroid horizontal laying Diameter 12 5mm Amidon T44 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D14.0mm_Amidon-T50 +Transformer, Toroid, horizontal, laying, Diameter 14mm, Amidon T50, +Transformer Toroid horizontal laying Diameter 14mm Amidon T50 +0 +4 +4 +Transformer_THT +Transformer_Toroid_Horizontal_D18.0mm +Transformer, Toroid, tapped, horizontal, laying, Diameter 18mm, +Transformer Toroid tapped horizontal laying Diameter 18mm +0 +5 +4 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D9.0mm_Amidon-T30 +Transformer, Toroid, tapped, horizontal, laying, Diameter 9mm, Amidon, T30, +Transformer Toroid tapped horizontal laying Diameter 9mm Amidon T30 +0 +6 +6 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D10.5mm_Amidon-T37 +Transformer, Toroid, tapped, horizontal, laying, Diameter 10,5mm, Amidon, T37, +Transformer Toroid tapped horizontal laying Diameter 10 5mm Amidon T37 +0 +6 +6 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D12.5mm_Amidon-T44 +Transformer, Toroid, tapped, horizontal, laying, Diameter 12,5mm, Amidon, T44, +Transformer Toroid tapped horizontal laying Diameter 12 5mm Amidon T44 +0 +6 +6 +Transformer_THT +Transformer_Toroid_Tapped_Horizontal_D14.0mm_Amidon-T50 +Transformer, Toroid, tapped, horizontal, laying, Diameter 14mm, Amidon T50, +Transformer Toroid tapped horizontal laying Diameter 14mm Amidon T50 +0 +6 +6 +Transformer_THT +Transformer_Wuerth_750343373 +Transformer, horizontal core with bobbin, 10 pin, 3.81mm pitch, 15.24mm row spacing, 22x23x17.53mm (https://katalog.we-online.com/ctm/datasheet/750343373.pdf) +transformer flyback +0 +10 +10 +Transformer_THT +Transformer_Wuerth_760871131 +Transformer, horizontal core with bobbin, 14 pin, 2.49 mm pitch, 20 mm row spacing, 25x22.2x16mm https://www.we-online.com/catalog/datasheet/760871131.pdf +transformer flyback +0 +14 +14 +Transistor_Power_Module +Infineon_AG-ECONO2 +28-lead TH, EconoPACK 2, same as Littelfuse_Package_H_XN2MM, https://www.infineon.com/dgdl/Infineon-FS75R07N2E4-DS-v02_00-en_de.pdf?fileId=db3a30432f5008fe012f52f916333979 +igbt diode module +0 +28 +28 +Transistor_Power_Module +Infineon_EasyPIM-1B +35-lead TH, EasyPIM 1B, https://www.infineon.com/dgdl/Infineon-FP10R06W1E3-DS-v02_01-en_de.pdf?fileId=db3a304412b407950112b43312285a63 +brifge rectifier igbt diode module +0 +23 +23 +Transistor_Power_Module +Infineon_EasyPIM-2B +35-lead TH, EasyPIM 2B, same as ST_ACEPACK-2-CIB, https://www.infineon.com/dgdl/Infineon-FP50R06W2E3-DS-v02_02-EN.pdf?fileId=db3a30431b3e89eb011b455c99987d24 +brifge rectifier igbt diode module +0 +35 +23 +Transistor_Power_Module +Littelfuse_Package_H_XBN2MM +24-lead TH, Package H, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1215h_xbn2mm_datasheet.pdf.pdf +brifge rectifier igbt diode module +0 +24 +24 +Transistor_Power_Module +Littelfuse_Package_H_XN2MM +28-lead TH, Package H, same as Infineon_AG-ECONO2, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1225h_xn2mm_datasheet.pdf.pdf +igbt diode module +0 +28 +28 +Transistor_Power_Module +Littelfuse_Package_W_XBN2MM +24-lead TH, Package W, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1250w_xbn2mm_datasheet.pdf.pdf +brifge rectifier igbt diode module +0 +35 +24 +Transistor_Power_Module +Littelfuse_Package_W_XN2MM +35-lead TH, Package W, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1275w_xn2mm_datasheet.pdf.pdf +igbt diode module +0 +35 +35 +Transistor_Power_Module +ST_ACEPACK-2-CIB +35-lead TH, ACEPACK 2 CIB, same as Infineon_EasyPIM-2B, https://www.st.com/resource/en/datasheet/a2c25s12m3.pdf +brifge rectifier igbt diode module +0 +35 +23 +Transistor_Power_Module +ST_ACEPACK-2-CIB_PressFIT +35-lead TH, ACEPACK 2 CIB, PressFIT, https://www.st.com/resource/en/datasheet/a2c50s65m2-f.pdf +brifge rectifier igbt diode module +0 +35 +23 +Transistor_Power_Module +ST_SDIP-25L +25-lead TH, SDIP-25L, https://www.st.com/resource/en/datasheet/stgips20k60.pdf +igbt diode module +0 +25 +25 +Valve +Valve_ECC-83-1 +Valve ECC-83-1 round pins +Valve ECC-83-1 round pins +0 +9 +9 +Valve +Valve_ECC-83-2 +Valve ECC-83-2 flat pins +Valve ECC-83-2 flat pins +0 +10 +9 +Valve +Valve_EURO +Valve Euro +Valve Euro +0 +7 +5 +Valve +Valve_Glimm +Valve Glimm +Valve Glimm +0 +2 +2 +Valve +Valve_Mini_G +Valve mini G +Valve mini G +0 +9 +7 +Valve +Valve_Mini_P +Valve mini P +Valve mini P +0 +7 +7 +Valve +Valve_Mini_Pentode_Linear +Mini-Pentode, 5-pin, e.g. JAN6418 +Valve Mini-Pentode 5-pin JAN6418 +0 +5 +5 +Valve +Valve_Noval_G +Valve NOVAL G +Valve NOVAL G +0 +11 +9 +Valve +Valve_Noval_P +Valve NOVAL P +Valve NOVAL P +0 +9 +9 +Valve +Valve_Octal +8-pin round valve +valve +0 +9 +8 +Varistor +RV_Disc_D7mm_W3.4mm_P5mm +Varistor, diameter 7mm, width 3.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.5mm_P5mm +Varistor, diameter 7mm, width 3.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.6mm_P5mm +Varistor, diameter 7mm, width 3.6mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.7mm_P5mm +Varistor, diameter 7mm, width 3.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.8mm_P5mm +Varistor, diameter 7mm, width 3.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W3.9mm_P5mm +Varistor, diameter 7mm, width 3.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.2mm_P5mm +Varistor, diameter 7mm, width 4.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.3mm_P5mm +Varistor, diameter 7mm, width 4.3mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.5mm_P5mm +Varistor, diameter 7mm, width 4.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.8mm_P5mm +Varistor, diameter 7mm, width 4.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4.9mm_P5mm +Varistor, diameter 7mm, width 4.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W4mm_P5mm +Varistor, diameter 7mm, width 4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.1mm_P5mm +Varistor, diameter 7mm, width 5.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.4mm_P5mm +Varistor, diameter 7mm, width 5.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.5mm_P5mm +Varistor, diameter 7mm, width 5.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D7mm_W5.7mm_P5mm +Varistor, diameter 7mm, width 5.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.3mm_P5mm +Varistor, diameter 9mm, width 3.3mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.4mm_P5mm +Varistor, diameter 9mm, width 3.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.5mm_P5mm +Varistor, diameter 9mm, width 3.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.6mm_P5mm +Varistor, diameter 9mm, width 3.6mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.7mm_P5mm +Varistor, diameter 9mm, width 3.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.8mm_P5mm +Varistor, diameter 9mm, width 3.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W3.9mm_P5mm +Varistor, diameter 9mm, width 3.9mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.1mm_P5mm +Varistor, diameter 9mm, width 4.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.2mm_P5mm +Varistor, diameter 9mm, width 4.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.4mm_P5mm +Varistor, diameter 9mm, width 4.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.5mm_P5mm +Varistor, diameter 9mm, width 4.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4.8mm_P5mm +Varistor, diameter 9mm, width 4.8mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W4mm_P5mm +Varistor, diameter 9mm, width 4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.2mm_P5mm +Varistor, diameter 9mm, width 5.2mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.4mm_P5mm +Varistor, diameter 9mm, width 5.4mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.5mm_P5mm +Varistor, diameter 9mm, width 5.5mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W5.7mm_P5mm +Varistor, diameter 9mm, width 5.7mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D9mm_W6.1mm_P5mm +Varistor, diameter 9mm, width 6.1mm, pitch 5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W3.9mm_P7.5mm +Varistor, diameter 12mm, width 3.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.2mm_P7.5mm +Varistor, diameter 12mm, width 4.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.3mm_P7.5mm +Varistor, diameter 12mm, width 4.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.4mm_P7.5mm +Varistor, diameter 12mm, width 4.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.5mm_P7.5mm +Varistor, diameter 12mm, width 4.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.6mm_P7.5mm +Varistor, diameter 12mm, width 4.6mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.7mm_P7.5mm +Varistor, diameter 12mm, width 4.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4.8mm_P7.5mm +Varistor, diameter 12mm, width 4.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W4mm_P7.5mm +Varistor, diameter 12mm, width 4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.1mm_P7.5mm +Varistor, diameter 12mm, width 5.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.4mm_P7.5mm +Varistor, diameter 12mm, width 5.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5.8mm_P7.5mm +Varistor, diameter 12mm, width 5.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W5mm_P7.5mm +Varistor, diameter 12mm, width 5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.1mm_P7.5mm +Varistor, diameter 12mm, width 6.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.2mm_P7.5mm +Varistor, diameter 12mm, width 6.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.3mm_P7.5mm +Varistor, diameter 12mm, width 6.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W6.7mm_P7.5mm +Varistor, diameter 12mm, width 6.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.1mm_P7.5mm +Varistor, diameter 12mm, width 7.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.5mm_P7.5mm +Varistor, diameter 12mm, width 7.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D12mm_W7.9mm_P7.5mm +Varistor, diameter 12mm, width 7.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W3.9mm_P7.5mm +Varistor, diameter 15.5mm, width 3.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.2mm_P7.5mm +Varistor, diameter 15.5mm, width 4.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.3mm_P7.5mm +Varistor, diameter 15.5mm, width 4.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.4mm_P7.5mm +Varistor, diameter 15.5mm, width 4.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.5mm_P7.5mm +Varistor, diameter 15.5mm, width 4.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.6mm_P7.5mm +Varistor, diameter 15.5mm, width 4.6mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.7mm_P7.5mm +Varistor, diameter 15.5mm, width 4.7mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.8mm_P7.5mm +Varistor, diameter 15.5mm, width 4.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4.9mm_P7.5mm +Varistor, diameter 15.5mm, width 4.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W4mm_P7.5mm +Varistor, diameter 15.5mm, width 4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.2mm_P7.5mm +Varistor, diameter 15.5mm, width 5.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.4mm_P7.5mm +Varistor, diameter 15.5mm, width 5.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5.9mm_P7.5mm +Varistor, diameter 15.5mm, width 5.9mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W5mm_P7.5mm +Varistor, diameter 15.5mm, width 5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.1mm_P7.5mm +Varistor, diameter 15.5mm, width 6.1mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.3mm_P7.5mm +Varistor, diameter 15.5mm, width 6.3mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.4mm_P7.5mm +Varistor, diameter 15.5mm, width 6.4mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W6.8mm_P7.5mm +Varistor, diameter 15.5mm, width 6.8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W7.2mm_P7.5mm +Varistor, diameter 15.5mm, width 7.2mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W7.5mm_P7.5mm +Varistor, diameter 15.5mm, width 7.5mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W8mm_P7.5mm +Varistor, diameter 15.5mm, width 8mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D15.5mm_W11mm_P7.5mm +Varistor, diameter 15.5mm, width 11mm, pitch 7.5mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D16.5mm_W6.7mm_P7.5mm +Varistor, diameter 16.5mm, width 6.7mm, pitch 5mm, https://katalog.we-online.de/pbs/datasheet/820542711.pdf +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.3mm_P10mm +Varistor, diameter 21.5mm, width 4.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.4mm_P10mm +Varistor, diameter 21.5mm, width 4.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.5mm_P10mm +Varistor, diameter 21.5mm, width 4.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.6mm_P10mm +Varistor, diameter 21.5mm, width 4.6mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.7mm_P10mm +Varistor, diameter 21.5mm, width 4.7mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.8mm_P10mm +Varistor, diameter 21.5mm, width 4.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W4.9mm_P10mm +Varistor, diameter 21.5mm, width 4.9mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.1mm_P10mm +Varistor, diameter 21.5mm, width 5.1mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.3mm_P10mm +Varistor, diameter 21.5mm, width 5.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.4mm_P10mm +Varistor, diameter 21.5mm, width 5.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.6mm_P10mm +Varistor, diameter 21.5mm, width 5.6mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5.8mm_P10mm +Varistor, diameter 21.5mm, width 5.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W5mm_P10mm +Varistor, diameter 21.5mm, width 5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.1mm_P7.5mm +varistor +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.3mm_P10mm +Varistor, diameter 21.5mm, width 6.3mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.5mm_P10mm +Varistor, diameter 21.5mm, width 6.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.7mm_P10mm +Varistor, diameter 21.5mm, width 6.7mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W6.8mm_P10mm +Varistor, diameter 21.5mm, width 6.8mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.1mm_P10mm +Varistor, diameter 21.5mm, width 7.1mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.5mm_P10mm +Varistor, diameter 21.5mm, width 7.5mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W7.9mm_P10mm +Varistor, diameter 21.5mm, width 7.9mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W8.4mm_P10mm +Varistor, diameter 21.5mm, width 8.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Disc_D21.5mm_W11.4mm_P10mm +Varistor, diameter 21.5mm, width 11.4mm, pitch 10mm +varistor SIOV +0 +2 +2 +Varistor +RV_Rect_V25S440P_L26.5mm_W8.2mm_P12.7mm +Varistor, V25S440P, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=b410c42c-51d1-460e-b1d9-d105d93c9679&filename=littelfuse-varistor-ultramov25s-datasheet +varistor +0 +2 +2 diff --git a/library/SubcircuitLibrary/74HCT164/74HCT164.cir b/library/SubcircuitLibrary/74HCT164/74HCT164.cir new file mode 100644 index 000000000..17c112ae5 --- /dev/null +++ b/library/SubcircuitLibrary/74HCT164/74HCT164.cir @@ -0,0 +1,23 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ unconnected-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ unconnected-_U1-Pad14_ PORT +U4 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U4-Pad3_ d_and +U6 Net-_U4-Pad3_ Net-_U10-Pad2_ unconnected-_U6-Pad3_ Net-_U10-Pad4_ Net-_U6-Pad5_ unconnected-_U6-Pad6_ d_dff +U5 Net-_U3-Pad2_ Net-_U10-Pad4_ d_inverter +U3 Net-_U1-Pad9_ Net-_U3-Pad2_ d_inverter +U2 Net-_U1-Pad8_ Net-_U10-Pad2_ d_inverter +U8 Net-_U6-Pad5_ Net-_U10-Pad2_ unconnected-_U8-Pad3_ Net-_U10-Pad4_ Net-_U10-Pad1_ unconnected-_U8-Pad6_ d_dff +U9 Net-_U10-Pad1_ Net-_U1-Pad4_ d_buffer +U7 Net-_U6-Pad5_ Net-_U1-Pad3_ d_buffer +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ unconnected-_U10-Pad3_ Net-_U10-Pad4_ Net-_U10-Pad5_ unconnected-_U10-Pad6_ d_dff +U12 Net-_U10-Pad5_ Net-_U10-Pad2_ unconnected-_U12-Pad3_ Net-_U10-Pad4_ Net-_U12-Pad5_ unconnected-_U12-Pad6_ d_dff +U11 Net-_U10-Pad5_ Net-_U1-Pad5_ d_buffer +U18 Net-_U16-Pad5_ Net-_U10-Pad2_ unconnected-_U18-Pad3_ Net-_U10-Pad4_ Net-_U18-Pad5_ unconnected-_U18-Pad6_ d_dff +U19 Net-_U18-Pad5_ Net-_U1-Pad12_ d_buffer +U17 Net-_U16-Pad5_ Net-_U1-Pad11_ d_buffer +U21 Net-_U20-Pad5_ Net-_U1-Pad13_ d_buffer +U20 Net-_U18-Pad5_ Net-_U10-Pad2_ unconnected-_U20-Pad3_ Net-_U10-Pad4_ Net-_U20-Pad5_ unconnected-_U20-Pad6_ d_dff +U13 Net-_U12-Pad5_ Net-_U1-Pad6_ d_buffer +U15 Net-_U14-Pad5_ Net-_U1-Pad10_ d_buffer +U16 Net-_U14-Pad5_ Net-_U10-Pad2_ unconnected-_U16-Pad3_ Net-_U10-Pad4_ Net-_U16-Pad5_ unconnected-_U16-Pad6_ d_dff +U14 Net-_U12-Pad5_ Net-_U10-Pad2_ unconnected-_U14-Pad3_ Net-_U10-Pad4_ Net-_U14-Pad5_ unconnected-_U14-Pad6_ d_dff +.end diff --git a/library/SubcircuitLibrary/74HCT164/74HCT164.cir.out b/library/SubcircuitLibrary/74HCT164/74HCT164.cir.out new file mode 100644 index 000000000..8094b3858 --- /dev/null +++ b/library/SubcircuitLibrary/74HCT164/74HCT164.cir.out @@ -0,0 +1,92 @@ +.title kicad schematic + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ unconnected-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ unconnected-_u1-pad14_ port +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u6 net-_u4-pad3_ net-_u10-pad2_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u6-pad5_ unconnected-_u6-pad6_ d_dff +* u5 net-_u3-pad2_ net-_u10-pad4_ d_inverter +* u3 net-_u1-pad9_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad8_ net-_u10-pad2_ d_inverter +* u8 net-_u6-pad5_ net-_u10-pad2_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u10-pad1_ unconnected-_u8-pad6_ d_dff +* u9 net-_u10-pad1_ net-_u1-pad4_ d_buffer +* u7 net-_u6-pad5_ net-_u1-pad3_ d_buffer +* u10 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ d_dff +* u12 net-_u10-pad5_ net-_u10-pad2_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ d_dff +* u11 net-_u10-pad5_ net-_u1-pad5_ d_buffer +* u18 net-_u16-pad5_ net-_u10-pad2_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ d_dff +* u19 net-_u18-pad5_ net-_u1-pad12_ d_buffer +* u17 net-_u16-pad5_ net-_u1-pad11_ d_buffer +* u21 net-_u20-pad5_ net-_u1-pad13_ d_buffer +* u20 net-_u18-pad5_ net-_u10-pad2_ unconnected-_u20-pad3_ net-_u10-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ d_dff +* u13 net-_u12-pad5_ net-_u1-pad6_ d_buffer +* u15 net-_u14-pad5_ net-_u1-pad10_ d_buffer +* u16 net-_u14-pad5_ net-_u10-pad2_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ d_dff +* u14 net-_u12-pad5_ net-_u10-pad2_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_dff +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a2 net-_u4-pad3_ net-_u10-pad2_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u6-pad5_ unconnected-_u6-pad6_ u6 +a3 net-_u3-pad2_ net-_u10-pad4_ u5 +a4 net-_u1-pad9_ net-_u3-pad2_ u3 +a5 net-_u1-pad8_ net-_u10-pad2_ u2 +a6 net-_u6-pad5_ net-_u10-pad2_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u10-pad1_ unconnected-_u8-pad6_ u8 +a7 net-_u10-pad1_ net-_u1-pad4_ u9 +a8 net-_u6-pad5_ net-_u1-pad3_ u7 +a9 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ u10 +a10 net-_u10-pad5_ net-_u10-pad2_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ u12 +a11 net-_u10-pad5_ net-_u1-pad5_ u11 +a12 net-_u16-pad5_ net-_u10-pad2_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ u18 +a13 net-_u18-pad5_ net-_u1-pad12_ u19 +a14 net-_u16-pad5_ net-_u1-pad11_ u17 +a15 net-_u20-pad5_ net-_u1-pad13_ u21 +a16 net-_u18-pad5_ net-_u10-pad2_ unconnected-_u20-pad3_ net-_u10-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ u20 +a17 net-_u12-pad5_ net-_u1-pad6_ u13 +a18 net-_u14-pad5_ net-_u1-pad10_ u15 +a19 net-_u14-pad5_ net-_u10-pad2_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ u16 +a20 net-_u12-pad5_ net-_u10-pad2_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u6 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u8 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u10 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u12 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u11 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u18 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u19 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u17 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u21 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u20 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u13 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u15 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u16 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u14 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/74HCT164/74HCT164.kicad_sch b/library/SubcircuitLibrary/74HCT164/74HCT164.kicad_sch new file mode 100644 index 000000000..734fc5779 --- /dev/null +++ b/library/SubcircuitLibrary/74HCT164/74HCT164.kicad_sch @@ -0,0 +1,1799 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 9f901c7c-051f-42f1-8f9e-fc7a119a69d4) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 73.66 107.95) (diameter 0) (color 0 0 0 0) + (uuid 015b2083-e88d-4ba3-824c-f39abdcd6997) + ) + (junction (at 256.54 107.95) (diameter 0) (color 0 0 0 0) + (uuid 0f1522e3-2afe-403c-bf9e-880ec0084541) + ) + (junction (at 163.83 24.13) (diameter 0) (color 0 0 0 0) + (uuid 1cc8e979-d9a5-4b74-bb29-3e80813c91d9) + ) + (junction (at 24.13 93.98) (diameter 0) (color 0 0 0 0) + (uuid 21196113-580b-4115-b650-b58ae311d933) + ) + (junction (at 128.27 24.13) (diameter 0) (color 0 0 0 0) + (uuid 2194a12c-11a8-4b6d-b480-512b1dd812b0) + ) + (junction (at 110.49 107.95) (diameter 0) (color 0 0 0 0) + (uuid 26d2d242-658f-45e6-9e36-04701ea97865) + ) + (junction (at 132.08 93.98) (diameter 0) (color 0 0 0 0) + (uuid 2a522fa9-f74d-4797-a249-6b491b16ce06) + ) + (junction (at 242.57 93.98) (diameter 0) (color 0 0 0 0) + (uuid 3ff666b6-ef76-4d81-9f7c-88b58347ca17) + ) + (junction (at 200.66 24.13) (diameter 0) (color 0 0 0 0) + (uuid 434edfd1-c908-44ee-9172-80621fd9d2c6) + ) + (junction (at 38.1 107.95) (diameter 0) (color 0 0 0 0) + (uuid 5cf2fec8-e58d-450e-9637-34b02fe71c93) + ) + (junction (at 182.88 107.95) (diameter 0) (color 0 0 0 0) + (uuid 649eb588-31ab-49ad-8c42-3c57086960a7) + ) + (junction (at 168.91 93.98) (diameter 0) (color 0 0 0 0) + (uuid 676a76cd-d713-494e-a14a-059a296495a5) + ) + (junction (at 204.47 93.98) (diameter 0) (color 0 0 0 0) + (uuid 71d9421f-08f4-4a54-b1db-76962c7bf835) + ) + (junction (at 218.44 107.95) (diameter 0) (color 0 0 0 0) + (uuid 7eaadb35-1d82-4549-904c-dd0c2583b8e5) + ) + (junction (at 59.69 93.98) (diameter 0) (color 0 0 0 0) + (uuid 8df45778-cbd3-4f08-8d91-a56152ed303d) + ) + (junction (at 91.44 24.13) (diameter 0) (color 0 0 0 0) + (uuid 8f81fa6d-ea0a-4421-851e-88d62bc2a5a9) + ) + (junction (at 146.05 107.95) (diameter 0) (color 0 0 0 0) + (uuid 9f3bb36d-ab36-4791-b7e8-5adcdef544b5) + ) + (junction (at 274.32 24.13) (diameter 0) (color 0 0 0 0) + (uuid ab01f694-8b00-4487-ace4-3432d52851f3) + ) + (junction (at 55.88 24.13) (diameter 0) (color 0 0 0 0) + (uuid be30eb57-2b66-48d3-81d0-0ccc4225de4f) + ) + (junction (at 237.49 24.13) (diameter 0) (color 0 0 0 0) + (uuid c8145c66-25e7-4228-b6b5-10903ec02277) + ) + (junction (at 96.52 93.98) (diameter 0) (color 0 0 0 0) + (uuid ce40a524-53cb-4861-a06c-b765618dc6e3) + ) + + (no_connect (at 38.1 16.51) (uuid 06befccf-a551-457e-b3c1-3b75861cc4ea)) + (no_connect (at 124.46 40.64) (uuid 0c1c73f6-652b-4676-9f6b-7a828eac0b2b)) + (no_connect (at 52.07 40.64) (uuid 0d31f676-d490-4c90-a1a9-d210ab503293)) + (no_connect (at 110.49 16.51) (uuid 161f4280-9120-4537-ba7f-e138b073e399)) + (no_connect (at 294.64 16.51) (uuid 17ad7eb5-ddab-45da-afea-3a4865c74af7)) + (no_connect (at 182.88 16.51) (uuid 20dd1575-3af7-4eef-b5b4-6d02e4024c39)) + (no_connect (at 196.85 40.64) (uuid 3611f18d-6777-4113-a2e0-87e4652d16a5)) + (no_connect (at 87.63 40.64) (uuid 50150797-0960-430f-a4b4-1cc93f9446bb)) + (no_connect (at 147.32 173.99) (uuid 5aa8f39c-4ab5-4fd9-a317-1bb81dfae271)) + (no_connect (at 73.66 16.51) (uuid 63ca14ea-392f-443f-8c43-f13bdc36349c)) + (no_connect (at 160.02 40.64) (uuid 6e59c5fa-5e1e-4ad3-ab06-961179392c4f)) + (no_connect (at 232.41 40.64) (uuid 720978cb-3fa4-4057-aba0-2d12a04bdc3b)) + (no_connect (at 308.61 40.64) (uuid 9e177786-7cca-4904-a427-34e47e64ab36)) + (no_connect (at 146.05 16.51) (uuid 9ec12a7d-8e27-4f56-a184-cba76ef81b78)) + (no_connect (at 256.54 16.51) (uuid d304be96-d781-431a-84dc-a82efb61232d)) + (no_connect (at 218.44 16.51) (uuid e995cf05-d935-4771-869e-85b88c3f14c9)) + (no_connect (at 270.51 40.64) (uuid f060381b-332a-49f6-a329-5c8e71fd9dbd)) + (no_connect (at 147.32 167.64) (uuid f1f33fa5-3d8f-4903-81fb-c484bceeb310)) + + (wire (pts (xy 146.05 107.95) (xy 182.88 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0607f966-1f7a-4555-94a8-8b41f24fae3d) + ) + (wire (pts (xy 110.49 107.95) (xy 146.05 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06ad6fe0-ca3f-40d3-a2ee-fd3454168ab9) + ) + (wire (pts (xy 55.88 24.13) (xy 55.88 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15ed8ce3-6a4e-4891-972e-5ebc28d6224c) + ) + (wire (pts (xy 242.57 93.98) (xy 242.57 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17cfee70-ad3b-4caa-bd5b-cfa2274d3f17) + ) + (wire (pts (xy 24.13 93.98) (xy 24.13 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bf5481a-1e43-4c09-bdba-56bc76123cfb) + ) + (wire (pts (xy 160.02 24.13) (xy 163.83 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ed01e4c-c3ea-433d-8c97-d6391e6c91ea) + ) + (wire (pts (xy 168.91 93.98) (xy 168.91 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20188bd4-1a64-4da1-b107-2722a506662c) + ) + (wire (pts (xy 24.13 93.98) (xy 59.69 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 252b763f-84f8-475e-aae8-541c4c66f2b5) + ) + (wire (pts (xy 232.41 24.13) (xy 237.49 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 286f3e9a-4215-4d3c-8629-0360e49b7198) + ) + (wire (pts (xy 55.88 24.13) (xy 59.69 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b62d406-08eb-4e74-8ec7-5826fb44d1b1) + ) + (wire (pts (xy 270.51 24.13) (xy 274.32 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31121cfa-81c0-4d2b-9a15-210226dad5da) + ) + (wire (pts (xy 200.66 24.13) (xy 200.66 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36fe09b8-2a7a-4a85-ab98-34a6bde250e3) + ) + (wire (pts (xy 128.27 24.13) (xy 132.08 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37c2a7c3-cf2a-4d0b-ac3c-55c91647548f) + ) + (wire (pts (xy 87.63 24.13) (xy 91.44 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38aa8773-8c64-4c5f-b9b5-fe9d79a76a7a) + ) + (wire (pts (xy 237.49 24.13) (xy 242.57 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3aedabbe-45d2-438a-b982-c0cc1a5059a5) + ) + (wire (pts (xy 147.32 167.64) (xy 157.48 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42c441e6-07f6-476e-896a-40136b1a8261) + ) + (wire (pts (xy 124.46 24.13) (xy 128.27 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46397a9d-a8cf-427f-8a70-f8aaba8feca7) + ) + (wire (pts (xy 38.1 48.26) (xy 38.1 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4aacf9c5-8115-42ad-b3d8-a0b5d0847078) + ) + (wire (pts (xy 163.83 24.13) (xy 168.91 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4acc17d4-573b-4721-987d-6e905714bf4e) + ) + (wire (pts (xy 218.44 48.26) (xy 218.44 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56bb25b9-0e67-49d0-80c2-bbb1408cfed0) + ) + (wire (pts (xy 73.66 107.95) (xy 110.49 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e9d4b24-4067-421d-9199-fe08c45ffaf2) + ) + (wire (pts (xy 294.64 107.95) (xy 294.64 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60605eab-d501-4afb-a96d-22e6644322e1) + ) + (wire (pts (xy 182.88 107.95) (xy 218.44 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67373d09-4f95-4c49-a5f3-5c2e9a4e1f4a) + ) + (wire (pts (xy 110.49 48.26) (xy 110.49 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67d2bdd7-2672-4eba-a74a-12cd13abd064) + ) + (wire (pts (xy 132.08 93.98) (xy 132.08 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f02cbf0-5c16-4730-862b-cebfe771ef78) + ) + (wire (pts (xy 73.66 48.26) (xy 73.66 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ed17cf8-02f2-4889-abf9-42ec4e4cb6b2) + ) + (wire (pts (xy 163.83 24.13) (xy 163.83 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 827ec9d1-4981-46a2-90a0-961da80256af) + ) + (wire (pts (xy 204.47 93.98) (xy 204.47 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84df340d-9c53-416e-aeae-0fba686130e3) + ) + (wire (pts (xy 38.1 107.95) (xy 73.66 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93b8d020-dd6d-4467-8073-f510fce48295) + ) + (wire (pts (xy 147.32 173.99) (xy 157.48 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a4b2d48-86d9-4ea8-8b7f-b061e2b1cab0) + ) + (wire (pts (xy 96.52 93.98) (xy 96.52 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a447a6e2-966b-408c-8724-5d9878c113eb) + ) + (wire (pts (xy 274.32 24.13) (xy 280.67 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a67242a1-755e-45da-bb0d-17e7e2f42b4d) + ) + (wire (pts (xy 20.32 24.13) (xy 24.13 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b074fb2e-c50a-4691-a718-15404ab331f3) + ) + (wire (pts (xy 59.69 93.98) (xy 96.52 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4a2fa18-538f-4c8d-a3c9-8845eaad02f4) + ) + (wire (pts (xy 132.08 93.98) (xy 168.91 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4a80e55-e563-4a7e-b6db-6392fa85d366) + ) + (wire (pts (xy 146.05 48.26) (xy 146.05 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7a915d1-bc3a-417c-a26a-491d19f4ff87) + ) + (wire (pts (xy 168.91 93.98) (xy 204.47 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bcb91c40-bd39-4ffb-80d9-3e4d8c844342) + ) + (wire (pts (xy 308.61 24.13) (xy 317.5 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid beca4c96-f630-4364-9fa5-f0a9782409dc) + ) + (wire (pts (xy 91.44 24.13) (xy 96.52 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3fa295f-30af-45b5-9275-6b1f8e54ef4d) + ) + (wire (pts (xy 237.49 24.13) (xy 237.49 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5004cd3-b6dc-46b6-a656-9117413bc52a) + ) + (wire (pts (xy 91.44 24.13) (xy 91.44 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c52710d5-8278-4725-83a9-4a15cc119f09) + ) + (wire (pts (xy 182.88 48.26) (xy 182.88 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce8eabde-456d-4bf8-9d9a-8f364711271d) + ) + (wire (pts (xy 11.43 93.98) (xy 24.13 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0eaa54b-addf-4d13-a0d0-f67c110c6e13) + ) + (wire (pts (xy 128.27 24.13) (xy 128.27 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1a3b86a-4ba7-4c23-af93-20ab444589c0) + ) + (wire (pts (xy 274.32 24.13) (xy 274.32 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d453659c-540e-4c40-88e6-6b678f057d13) + ) + (wire (pts (xy 317.5 24.13) (xy 317.5 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d76ddbf8-afc9-443f-9ac2-a31326024e59) + ) + (wire (pts (xy 204.47 93.98) (xy 242.57 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd294ed5-e44b-4ee3-a440-24537ea5cddd) + ) + (wire (pts (xy 256.54 107.95) (xy 294.64 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dfa57e63-39de-4d4f-a2c1-39fff84de6b0) + ) + (wire (pts (xy 256.54 48.26) (xy 256.54 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e093c0c3-f10d-4971-a897-306792e28d99) + ) + (wire (pts (xy 59.69 93.98) (xy 59.69 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0b6cf6a-a5ce-4825-ac49-e9e3815a7110) + ) + (wire (pts (xy 200.66 24.13) (xy 204.47 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb1f56d4-eda7-4075-9c47-cc52a51858c3) + ) + (wire (pts (xy 96.52 93.98) (xy 132.08 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb27575f-12f0-426e-8bd1-16aac2fb1d58) + ) + (wire (pts (xy 196.85 24.13) (xy 200.66 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebaf8cb6-75a0-430a-b290-9ea0af32809b) + ) + (wire (pts (xy 242.57 93.98) (xy 280.67 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f14fa976-3263-4370-ad26-0176c7e0476a) + ) + (wire (pts (xy 218.44 107.95) (xy 256.54 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3ac71ad-9c33-41a0-a214-7b417df36218) + ) + (wire (pts (xy 280.67 93.98) (xy 280.67 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f77af8d5-9050-47b2-89ac-742c93ad29f0) + ) + (wire (pts (xy 52.07 24.13) (xy 55.88 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb48eaa4-85c3-4f29-9b01-8ae2e11d7540) + ) + (wire (pts (xy 26.67 107.95) (xy 38.1 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb9f90a9-e412-4089-b750-2a9344ea92d3) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 91.44 156.21 90) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 014c2543-8f28-44ff-9a01-8b2807c1990a) + (property "Reference" "U1" (id 0) (at 93.98 154.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 93.98 157.48 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 91.44 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 91.44 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b68af695-8b8a-4db6-8de1-ffdbbb016858)) + (pin "2" (uuid 79bcfe24-2f6b-418d-9bf0-3f87b8872a19)) + (pin "3" (uuid ccc19943-fdbf-4cbf-980f-d8e55aa26a15)) + (pin "4" (uuid 58ee3230-8361-4bf8-b0aa-0f7968bd79c7)) + (pin "5" (uuid 828f2408-d0b9-4dc9-9d51-a898b31f085b)) + (pin "6" (uuid e73aedee-18aa-447e-bf3c-b893e399d138)) + (pin "7" (uuid db67b29e-12ea-4b51-ab1b-5ba621e31ad9)) + (pin "8" (uuid ce3b6b27-2c76-440c-a331-b600213f4943)) + (pin "9" (uuid 145ce5d3-4cd6-4b1b-bcd6-5a9a1e86836d)) + (pin "10" (uuid 961e8c71-68e7-4a0b-85cc-24eda8e36c9b)) + (pin "11" (uuid 16fa47b0-148f-4a3e-8e70-08720a054c19)) + (pin "12" (uuid 3194c221-589a-4b38-8c94-87e209dd606e)) + (pin "13" (uuid 2c18f18d-8349-41d7-ac1a-03aa093bec4e)) + (pin "14" (uuid 52ba9d2d-26cc-4f0b-9657-0ec242b02960)) + (pin "15" (uuid c00e3390-ddfc-4ee6-bedd-0039d67f7fd6)) + (pin "16" (uuid b6495397-b1c7-4df7-829d-93b030ff441d)) + (pin "17" (uuid 833fad13-60b6-4ae3-af2a-9e6b9b96b42a)) + (pin "18" (uuid c873f128-6cd8-46fc-8555-37d93ffc2d8f)) + (pin "19" (uuid de97c63d-3b49-4a69-85bb-7438d2a1cc17)) + (pin "20" (uuid 10695fbd-b453-4802-b792-7ed73a29c6d4)) + (pin "21" (uuid c7e4fe31-c845-4af1-b9ff-77330498014c)) + (pin "22" (uuid 49a26e6c-16f0-45c5-8362-78347ef764ec)) + (pin "23" (uuid b511ee3b-fefb-4479-bc8c-27f76e236d10)) + (pin "24" (uuid 3d1d2914-6a22-49e2-8240-38f5776ddf72)) + (pin "25" (uuid 05d7b0de-7457-4951-9592-b7b623342359)) + (pin "26" (uuid 34c9f189-52d4-4cee-baa6-457e4eaa1ddf)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 274.32 156.21 90) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 015dd462-c1ef-4722-8e03-7dd22ddf82ae) + (property "Reference" "U1" (id 0) (at 276.86 154.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 276.86 157.48 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 274.32 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 274.32 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59a4d030-23ed-4e63-8ec1-26b45aed3ff9)) + (pin "2" (uuid ef7e0c9a-f205-4d36-964d-d9122abc0962)) + (pin "3" (uuid 1766bf93-477e-43a4-b0a1-d5d12c1afdfa)) + (pin "4" (uuid f9eb3d22-6186-49ac-977b-2f84e826ac52)) + (pin "5" (uuid 898125d4-a285-4cd3-9458-aea81114fbea)) + (pin "6" (uuid f9e585ee-8b56-42a8-86c1-6edbf9874c88)) + (pin "7" (uuid 86bba634-9519-4d9b-ba99-15c7251be22f)) + (pin "8" (uuid 8ff4da1f-f4b5-4414-8de0-af512f7ad264)) + (pin "9" (uuid 0bbb3581-7e75-4f4e-ba69-a8fe11515756)) + (pin "10" (uuid cb8fdfb1-c3ff-43fe-b7ee-4791b06ab5a7)) + (pin "11" (uuid 959f2acd-d7e9-43b1-b51b-bc139c90b85a)) + (pin "12" (uuid c9dc155b-a51d-4dc8-89ec-480965f49218)) + (pin "13" (uuid 2a67599d-d770-48a2-afde-6cda7906d493)) + (pin "14" (uuid a7298868-4cd8-4c9d-b197-67a83d4d7879)) + (pin "15" (uuid ec075fcc-6050-417b-912a-7fde9e4ca27d)) + (pin "16" (uuid dec3ee32-13eb-4775-8074-8b0e7c7b3dfb)) + (pin "17" (uuid cb7c46a3-2d56-43e5-9fe4-85904f286b5c)) + (pin "18" (uuid e6dfb213-db1d-49d4-947b-315256a3a0d1)) + (pin "19" (uuid 6d320618-efdc-42ab-aa32-aa0c34523c53)) + (pin "20" (uuid d86ef9c4-7a2d-46c2-84bb-320c36bce786)) + (pin "21" (uuid 608d9c0c-7388-4a81-be5b-2a41fffc8c45)) + (pin "22" (uuid 9667cdcf-ee77-49aa-897c-ed7e92e27b7c)) + (pin "23" (uuid bc679b4d-05be-46cd-bdc5-f2b05f06e82f)) + (pin "24" (uuid bae29251-434e-4262-8dce-9527e40d7d4e)) + (pin "25" (uuid 9978f634-2e5e-4409-b36a-8d7c12108e20)) + (pin "26" (uuid b23605e4-3a8e-4d96-8e16-3470210b497d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 237.49 156.21 90) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 070ea2f2-d9e0-4d76-b846-c1e9b389ddfa) + (property "Reference" "U1" (id 0) (at 240.03 154.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 240.03 157.48 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 237.49 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 237.49 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 72231562-1428-49cc-8a8e-128e65bf4c68)) + (pin "2" (uuid 8409ab28-9598-4ab0-bacf-171ca7d77bb6)) + (pin "3" (uuid ee80342a-1e2b-4358-82e7-28e8a3bf84e9)) + (pin "4" (uuid 28ce5c76-a8b5-4030-a836-dedda2437677)) + (pin "5" (uuid 08cf57b9-3b8f-4395-a277-c6767fa1e106)) + (pin "6" (uuid a523be26-a419-452b-8aef-f364c75d1819)) + (pin "7" (uuid db9b31ce-9c73-4d3d-9eb1-059267843be9)) + (pin "8" (uuid b053b6d6-6d25-47e2-b8cc-c6776edfa655)) + (pin "9" (uuid 4fe59e69-1f10-498f-b410-639123459cfc)) + (pin "10" (uuid c9aec1fc-cfe3-44ee-872d-c22ab1941d79)) + (pin "11" (uuid 55efa475-c178-488e-a7cb-617efe810454)) + (pin "12" (uuid 8cf0b90b-cfbd-4d83-9c81-b9fbb969bb45)) + (pin "13" (uuid 23345d5e-d930-43d9-b6be-ccd92a238454)) + (pin "14" (uuid c50bde59-85d6-4c85-adb7-0a0e109723bd)) + (pin "15" (uuid 4be2a2c0-a481-4426-9998-896c58181a8d)) + (pin "16" (uuid 78e6353c-f3ef-4830-a03b-42088cd2f507)) + (pin "17" (uuid 2cf1fd18-612f-485d-9533-ffeeb3bd5815)) + (pin "18" (uuid cd3a576a-9619-4656-bfb8-e583630dd4f2)) + (pin "19" (uuid 08cf60b1-0bff-4d93-8766-83515408dd7d)) + (pin "20" (uuid 8f7ab6e5-8562-4528-8cb8-c494f45f029f)) + (pin "21" (uuid 446bb57a-805e-4c7b-bb75-a86575f4369a)) + (pin "22" (uuid 25f42e22-b820-4d7a-ac56-528d20bc4d7b)) + (pin "23" (uuid b693cc28-3d3f-4e04-b877-c771f715eabe)) + (pin "24" (uuid f4bdefd4-58a1-4224-bc19-27e5ef2121c1)) + (pin "25" (uuid e987ea27-d166-4423-a065-02af0166a283)) + (pin "26" (uuid 502e6d92-3277-4f6c-bec8-9f087d1ee23a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 163.83 173.99 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 07eb6726-bcc6-43f1-990a-e6479894b2b7) + (property "Reference" "U1" (id 0) (at 167.64 173.355 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 167.64 175.895 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 163.83 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 163.83 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 27528477-74a3-4224-b332-68dc86eaef2f)) + (pin "2" (uuid 6328f64f-dba6-4093-9171-653b0da7b57f)) + (pin "3" (uuid 75ee83b2-66e5-4255-9e42-232a579e32c9)) + (pin "4" (uuid 5a112cac-caa3-4da1-a5fa-79a78c4dc532)) + (pin "5" (uuid 2f280ba2-9729-4b1e-a324-189b7f592abc)) + (pin "6" (uuid 1b9d5b74-acef-40b9-8fd5-606e4ba974b7)) + (pin "7" (uuid a63c0392-7df2-4cd9-b058-c6651b8f9771)) + (pin "8" (uuid ae814e43-40ec-47b5-a678-a9899068d1fd)) + (pin "9" (uuid e0383315-6a35-4aa9-89cc-04dcaba33157)) + (pin "10" (uuid a29b8ea7-33ff-4164-a8da-4542b6f405da)) + (pin "11" (uuid 0377528a-c30c-4019-8d3b-736dbb8468f7)) + (pin "12" (uuid c0878c66-db7b-4075-a760-58fb53f3987a)) + (pin "13" (uuid cf7383ac-7ebd-4edd-9cce-6b3b3bcdb7af)) + (pin "14" (uuid a745ac6d-5f05-4e1f-8e34-4f04ad2b4cf2)) + (pin "15" (uuid 87de9636-9065-4099-9616-44d66a02f920)) + (pin "16" (uuid 2876b468-f962-4109-a531-82bde0d00e92)) + (pin "17" (uuid e8563985-2f3f-49fc-b1e6-a2f322b8ceef)) + (pin "18" (uuid 074c0d86-361d-47ac-99c7-a3c89ee790e3)) + (pin "19" (uuid eee7dafc-725b-4e1a-a2cc-11a15dbd0c7c)) + (pin "20" (uuid c9f34578-b398-490e-b41e-2e3e1d3efb4d)) + (pin "21" (uuid e3eec348-3630-4e3e-aa38-7434acc8a448)) + (pin "22" (uuid 207c342a-3dbb-44d7-84a3-c65972e0936d)) + (pin "23" (uuid 4e63705d-ccf9-4281-a1bc-7248b501af28)) + (pin "24" (uuid 84d6823d-b0fa-417b-a387-beff2947fa03)) + (pin "25" (uuid 6c459c0e-e4f1-4348-94f3-10f0f4c5ba76)) + (pin "26" (uuid 733c2d81-9664-4b3b-823c-fab10469c2eb)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 38.1 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0872af5b-638b-4634-a732-c8dce870df97) + (property "Reference" "U6" (id 0) (at 40.1194 16.51 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 40.1194 20.32 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 38.1 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cf01c079-9b7b-46b4-8fd6-4ec0a18c5861)) + (pin "2" (uuid b12f2fc6-5697-445b-8f11-bc8175ee3a2a)) + (pin "3" (uuid c0de3cdb-6edf-4233-b55e-982ddf236da2)) + (pin "4" (uuid 12275331-89f9-406d-8caa-4e2a7763fbd8)) + (pin "5" (uuid 478e4c77-9907-4e45-9f9a-a1079e78afb6)) + (pin "6" (uuid 9e7dd714-77c3-4deb-857e-c3ac829e1ecd)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 317.5 133.35 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0f87a5a5-21a5-4bbc-824b-0dbb44d6343f) + (property "Reference" "U21" (id 0) (at 323.85 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 323.85 137.795 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 317.5 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 317.5 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2e8e8b88-beff-467f-be84-edce72268f5b)) + (pin "2" (uuid 52c922ca-6e28-4f4b-82ad-3111495b2bf1)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 163.83 133.35 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 101ccd53-2f85-46a9-8bea-6056adfca0c1) + (property "Reference" "U13" (id 0) (at 170.18 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 170.18 137.795 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 163.83 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 163.83 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6d61e47c-9c6f-4980-baf8-5d82a5c6abb8)) + (pin "2" (uuid 6ebe20b1-80b0-4acd-867b-76e8e7aae22d)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 128.27 133.35 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1de44f55-d96c-4245-8b3d-daf9bd8d1dce) + (property "Reference" "U11" (id 0) (at 134.62 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 134.62 137.795 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 128.27 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 23c5c179-8c80-4c5b-bfce-c8f7507de0de)) + (pin "2" (uuid bd8742c1-6d43-490f-87e7-e4edb902bcb2)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 73.66 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 23eef703-60ae-46f6-b3f8-7d64ecf84616) + (property "Reference" "U8" (id 0) (at 75.6794 16.51 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 75.6794 20.32 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 73.66 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 73.66 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2d52e2d0-b5cc-4a67-9ffc-e4f076650c6f)) + (pin "2" (uuid dce04ce1-2a00-4d77-8540-12a7a64e5a99)) + (pin "3" (uuid 38a09f73-7b60-4043-afc9-bdf259c7b78b)) + (pin "4" (uuid 2844cd11-4601-45a5-b671-398e0d6db401)) + (pin "5" (uuid 0ee9da25-db21-4aaa-8465-3fd8470b8038)) + (pin "6" (uuid 3281cdef-0759-42fb-8e88-792487b4e777)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 91.44 133.35 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 317f765d-2789-4834-9ca7-f49d2eb4058e) + (property "Reference" "U9" (id 0) (at 97.79 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 97.79 137.795 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 91.44 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 91.44 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 50f5489b-baaf-4be9-82d6-afe48b8250d8)) + (pin "2" (uuid c3d9ecd1-74e0-400d-a65a-578c151af3da)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 274.32 133.35 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 52ec6f1a-8805-4685-8f5c-00d887bc4112) + (property "Reference" "U19" (id 0) (at 280.67 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 280.67 137.795 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 274.32 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 274.32 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76f913dd-3f55-4901-b6b2-b5c6b92f75a4)) + (pin "2" (uuid 651b992d-be1d-4bcd-93c7-a28c11e7d7df)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -8.89 22.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 54c911d0-b29c-4fdd-8887-1a4a28a2fdb8) + (property "Reference" "U1" (id 0) (at -8.255 17.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -8.255 20.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -8.89 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -8.89 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5243bfb3-7a56-4925-ab8b-cc3661802509)) + (pin "2" (uuid 652cb520-7cb1-41f9-b22e-bf6eae04fc01)) + (pin "3" (uuid c35daae9-c957-4b25-97b7-7fc4212251cc)) + (pin "4" (uuid 58aa0f73-cfce-44a7-9bb7-2607258f6527)) + (pin "5" (uuid 42a66bdb-3aff-4d20-ab33-a00c39796e61)) + (pin "6" (uuid cf317b73-7250-44f3-a650-57ee07044166)) + (pin "7" (uuid 4aabd5bb-a44a-4947-8843-1dd1171e6091)) + (pin "8" (uuid 3c5eebbd-74b3-426f-8899-c805b855368e)) + (pin "9" (uuid babcdaa3-155f-4e73-aee1-0a998a2a9c9e)) + (pin "10" (uuid 5102059e-a830-4d93-a758-b6fc93e91bc4)) + (pin "11" (uuid 779b7dac-260e-4b32-bdeb-f7329729bbab)) + (pin "12" (uuid 32cf4c16-6f6c-404b-9689-8d1b23b65f14)) + (pin "13" (uuid 076a61ae-5048-4d7d-9b45-163dd8df8753)) + (pin "14" (uuid 7f9e416c-40c3-4f13-98ef-5ac7187ffe87)) + (pin "15" (uuid 48dee467-a9cb-48aa-beba-8f3552bb94a4)) + (pin "16" (uuid 8df2c9bd-5762-4570-becc-5fccd94840f8)) + (pin "17" (uuid b13bc1a1-d946-48c0-a67b-45a3d5f222d1)) + (pin "18" (uuid bebc373e-5ac3-4d44-a53b-a4f950eacea3)) + (pin "19" (uuid d663fd09-03b1-4650-abc1-fc8f16f04a6b)) + (pin "20" (uuid 9ac520d6-1378-4b6b-af18-399f807a76bb)) + (pin "21" (uuid e3f4a7db-274b-44bc-a6f7-3dc6010c2a30)) + (pin "22" (uuid c95cc442-adff-465d-a2bb-90af7574fea4)) + (pin "23" (uuid 9522baaf-5fe3-4bf1-8593-72df9894252f)) + (pin "24" (uuid bf1e34a5-06bd-477c-9469-9aed7c836ced)) + (pin "25" (uuid d67eb3d3-a1d8-47d4-8733-3c1c9543b52b)) + (pin "26" (uuid 2ab72300-d9b6-4a40-b18e-7bb3cf759a46)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 8.89 25.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 56e897c8-7be3-489f-92f8-dd530551a64a) + (property "Reference" "U4" (id 0) (at 8.89 16.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 8.89 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 8.89 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 8.89 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ff5ba8b6-6fb3-4c26-b97f-5ff9d559fe5c)) + (pin "2" (uuid 7c61e34d-7ab3-4772-8964-31562217f2f7)) + (pin "3" (uuid f33f2a6e-9ea0-4e92-8289-aa2d52daae1c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 200.66 156.21 90) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ba00f1b-d395-4525-aaa6-956d05f2bc99) + (property "Reference" "U1" (id 0) (at 203.2 154.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 203.2 157.48 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 200.66 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c1d24a91-478c-4c96-91d4-d68551f827c5)) + (pin "2" (uuid 10fd125d-b308-4b91-b570-8a74136d2660)) + (pin "3" (uuid 9656de92-3890-4155-ab1b-23e403f8c309)) + (pin "4" (uuid e0beb9bf-a62e-44be-8bc1-77d9ef05aee9)) + (pin "5" (uuid 5d7b5420-dc84-4ea2-b8f5-b647a72d4265)) + (pin "6" (uuid 74a4552b-40e3-4102-8497-564649d76a48)) + (pin "7" (uuid edc01fa5-035e-4665-832a-066490fa6d50)) + (pin "8" (uuid 884227b3-3a61-4123-8a59-de583aee7fa3)) + (pin "9" (uuid 79cfaad0-697d-4b81-928e-72cabcfe4b06)) + (pin "10" (uuid 30437167-024c-46e5-92ba-4e4c19550916)) + (pin "11" (uuid 92b5d791-38c6-4372-b3db-101154629345)) + (pin "12" (uuid 422bd856-d5fa-4ae4-a54f-a60f3efe3884)) + (pin "13" (uuid 4d9624f3-2336-4834-a29c-5096f8b8bbb9)) + (pin "14" (uuid 1f5c89ed-c527-49d6-be60-19858663b1b3)) + (pin "15" (uuid c59c7095-71e7-44f1-817f-b33afa45ef8b)) + (pin "16" (uuid ba5d28cd-66cb-43e9-b2ee-eefbaa05ab7a)) + (pin "17" (uuid 5f9ed46d-4a11-4ca0-8001-9b9b7a8732c8)) + (pin "18" (uuid b82acd5c-8b08-43a7-ae7b-e26900a88cba)) + (pin "19" (uuid e32a4c22-bb6e-4149-b4f5-d24e70c0db1c)) + (pin "20" (uuid fded80fc-8643-462e-b1af-9b0e76c645fc)) + (pin "21" (uuid b8f76dd1-d2dc-4f5b-9446-ba5395c13981)) + (pin "22" (uuid db1442c6-cc3f-4981-aa23-9b380d5a143b)) + (pin "23" (uuid a470075d-24a5-401a-a80d-01b0d8c7b93e)) + (pin "24" (uuid bc19744a-8b3c-4a6d-ba6e-1834122e007c)) + (pin "25" (uuid aebd6694-7205-4ccc-bdb6-afb19e45311c)) + (pin "26" (uuid d4bc2b86-a080-4f57-a689-1e1cb3b6377d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 163.83 167.64 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5e1bcdc0-4742-4187-8046-6af1cd206483) + (property "Reference" "U1" (id 0) (at 167.64 167.005 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 167.64 169.545 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 163.83 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 163.83 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c0c4231-e57d-423a-b9d8-edd7207b773c)) + (pin "2" (uuid 49b4ee36-ea68-46bf-96ae-3a519724879c)) + (pin "3" (uuid 93b571db-cf4d-41dc-9aa3-38b9301d91e3)) + (pin "4" (uuid c5b259ee-8aca-49a8-bf68-7e333d1a994a)) + (pin "5" (uuid c6dd46bd-85e0-4124-adb6-425bb189a0e1)) + (pin "6" (uuid ee5ee8bb-8946-4aa3-8d0e-34f75d8b89cf)) + (pin "7" (uuid f7c48475-341f-4a73-bc65-ca46469e724b)) + (pin "8" (uuid a88fed0c-de58-4ded-82b8-a498d0bd9506)) + (pin "9" (uuid f2f196d1-5c68-4369-9080-bcfaf4e0ed8f)) + (pin "10" (uuid ba103450-158f-48ee-a0c9-57bd2098154a)) + (pin "11" (uuid a5b2b149-c410-4ddd-b563-b7578afc3f86)) + (pin "12" (uuid 5590b14d-4839-4e45-aa82-74d5ac8df093)) + (pin "13" (uuid 704db3fa-3095-4775-9ec6-fc7dfc26868a)) + (pin "14" (uuid ca0e6399-29bc-43e7-8fdc-c18b86cace53)) + (pin "15" (uuid 4b3936dd-7996-4c3b-b580-296715fe3c83)) + (pin "16" (uuid b3bb881f-7f57-4b95-917e-c212c1d0a9e9)) + (pin "17" (uuid 6cf24560-04fd-4d5c-9432-ebbbc2e40a2b)) + (pin "18" (uuid 515ea5e8-c5df-445e-aad5-0ae6c326384d)) + (pin "19" (uuid 4b9dc1ff-5b40-4373-99b5-d337021ba1f3)) + (pin "20" (uuid db54d901-f513-4616-8329-d8df82c0a589)) + (pin "21" (uuid f64f587f-a01f-4ce9-856c-ee649b4957a3)) + (pin "22" (uuid 614b7c39-f996-4177-a75a-17ba2a0f1372)) + (pin "23" (uuid c04258e0-9b28-457e-9414-202c2d64f5c3)) + (pin "24" (uuid 157a6d53-6566-4fd1-a551-9021433dceb6)) + (pin "25" (uuid 5c1cfed8-e689-48ca-b933-8779acebfd25)) + (pin "26" (uuid 3a324942-445c-480b-8ae1-dc58a49e6761)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 146.05 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6df233b1-a951-49e0-8707-2e9d946d4470) + (property "Reference" "U12" (id 0) (at 148.0694 16.51 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 148.0694 20.32 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 146.05 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 146.05 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b023b68-22aa-4525-8e7d-be17471391ef)) + (pin "2" (uuid 83704d6f-9a5c-458d-bba4-3b19897dc482)) + (pin "3" (uuid 821478bd-c4be-4101-837d-c67213052bff)) + (pin "4" (uuid 6d308def-2464-4895-baa9-e0977245916f)) + (pin "5" (uuid febf667a-162e-4021-89f0-80ca388137dd)) + (pin "6" (uuid 9eb57094-b631-49da-b67f-ba26dc5202e5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -8.89 25.4 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73f829bc-3abc-48aa-9d17-0336225f08e7) + (property "Reference" "U1" (id 0) (at -8.255 20.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -8.255 22.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -8.89 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -8.89 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a361c96-6751-4690-8cfe-13485291b21b)) + (pin "2" (uuid a3de2131-4686-47d3-8584-6f3fbd456f7f)) + (pin "3" (uuid 2c810a27-2342-4726-a643-0aa383bc7a92)) + (pin "4" (uuid 93ffd8b4-a341-4ce0-86c1-fa18ebfc3e7d)) + (pin "5" (uuid 967f74e2-76bd-407d-848e-39e1b49f2fcf)) + (pin "6" (uuid abc2edd9-c1bb-4dd4-8ace-2731c25027f1)) + (pin "7" (uuid 0432ca8d-ae01-41e6-bd27-9c0ebbf8f775)) + (pin "8" (uuid ee058754-1883-401c-a843-b18143703126)) + (pin "9" (uuid 592c8cdf-02a9-4c27-a690-cf0eb48ee35b)) + (pin "10" (uuid a66027d8-780f-4c59-8997-43a656a446f6)) + (pin "11" (uuid fc705300-faba-4241-bf75-a2dda612d5fb)) + (pin "12" (uuid 80fce7a6-00fb-4de3-9dea-aad33a2a8d25)) + (pin "13" (uuid d0e363bb-de8d-45e7-80ec-7bca2f4b58c9)) + (pin "14" (uuid 138f5d14-5c3b-4476-b6b2-b40e7a6884ba)) + (pin "15" (uuid ff82a0d0-4145-4e1a-95f8-30b4f647e9d8)) + (pin "16" (uuid 089138fc-3b65-4a31-86c1-badefb8f5774)) + (pin "17" (uuid 30cd3423-c449-4dd7-b7f7-78540671ada6)) + (pin "18" (uuid 69f65793-5db6-4003-80ab-6a55e84fc43a)) + (pin "19" (uuid 7028f07e-45dc-4da4-aec6-c063667345aa)) + (pin "20" (uuid 8be89318-098b-4b02-9d76-57310a468e5b)) + (pin "21" (uuid 35e0dc47-edc0-40bc-a77d-07b74271110a)) + (pin "22" (uuid 0c4decc6-2ebf-480f-a777-5ac77849b7dc)) + (pin "23" (uuid 1f432f43-f3ad-4da9-8ed8-f9f88f3471a7)) + (pin "24" (uuid a093eb70-0885-4b8a-aa52-b5a8e609f2cf)) + (pin "25" (uuid 8da55e03-c90b-44aa-b0bb-1248cd0d5983)) + (pin "26" (uuid ff4533e7-8cd2-4d32-9f5a-e8b38d8074b6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -10.16 93.98 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7aa07346-77d9-495b-b5e7-d0f7da4bb804) + (property "Reference" "U1" (id 0) (at -9.525 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -9.525 91.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -10.16 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -10.16 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a2186b9-572e-4638-bfa0-3c7fbadc8b42)) + (pin "2" (uuid 1fd7a4d0-e7d6-4ce8-9768-d83b9b66a46d)) + (pin "3" (uuid 5af92b3b-9d35-4579-ba62-b90a2a86bb00)) + (pin "4" (uuid eeb40629-1bd0-4ffd-b370-8cddaff62fd5)) + (pin "5" (uuid c2359dde-dba5-42df-bfbe-5984cec651d5)) + (pin "6" (uuid 0ab0db59-50dd-4db8-a38c-c2cea249f422)) + (pin "7" (uuid cb643740-f7a2-4d49-ba95-f7fc02b999f0)) + (pin "8" (uuid a5a8ae83-bcd4-40fe-8c7a-73bf0d5409e7)) + (pin "9" (uuid dd2f2110-ea21-4da7-90ac-11affe5e5fe8)) + (pin "10" (uuid 57628c5a-4aa4-46be-903d-a78009fd904d)) + (pin "11" (uuid c3660fc6-33f9-480c-9af2-6964c6f085b5)) + (pin "12" (uuid 66e046da-e871-4512-8e73-3cf1324dea49)) + (pin "13" (uuid 1cbc10b0-5f35-4681-b290-480d3f9dc5d6)) + (pin "14" (uuid b54a5d1e-fafb-4e9f-98c3-0bd1d9617ded)) + (pin "15" (uuid 808af584-aafe-4740-bfbb-5f170af573b6)) + (pin "16" (uuid 9e6d1c7d-c061-4194-a8bc-f9cce9de7a37)) + (pin "17" (uuid 901e14bc-42a1-450e-a395-f5ae79094806)) + (pin "18" (uuid 0b912634-a3f8-463b-bd20-a563910ae6ae)) + (pin "19" (uuid 3a70bcda-c77b-4f1e-b055-1a09f588bead)) + (pin "20" (uuid a274d52c-0886-485e-88ea-0310b4c9c50f)) + (pin "21" (uuid a88bf0e6-afc3-4179-be16-56ccde24a358)) + (pin "22" (uuid 1021861e-bcad-472a-8d2e-97bd1eb7af38)) + (pin "23" (uuid e5b35665-0cf8-4e21-8bf1-51065130a304)) + (pin "24" (uuid cb3b21d7-10fd-42a3-a7ba-af826d2bdb7a)) + (pin "25" (uuid a4aa470c-3c14-4e52-967a-6f337192aff5)) + (pin "26" (uuid 93f8b5fb-167a-48df-941c-e6e47f37413b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 163.83 156.21 90) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7d2c2712-c50e-4bb2-8088-2fc8fe25df5e) + (property "Reference" "U1" (id 0) (at 166.37 154.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 166.37 157.48 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 163.83 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 163.83 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b812f49-a7ec-46d5-82ed-5c3b1ea933cb)) + (pin "2" (uuid 8bfe92b9-c7cd-49aa-852b-82838ceb6cdb)) + (pin "3" (uuid 77372f6f-e964-4100-86aa-34cdb08255db)) + (pin "4" (uuid e408eba7-c9e1-4b3c-9d59-5c3cb62c02ad)) + (pin "5" (uuid ca83d0b7-ab4a-47f6-93a7-12f9408df74f)) + (pin "6" (uuid 4653f470-70ce-46bf-a409-05105c5aa303)) + (pin "7" (uuid 6bcbbb7d-1f0f-45c3-b66e-98984edc13e7)) + (pin "8" (uuid aff7c403-834c-4188-86bd-d60b1d63d5ce)) + (pin "9" (uuid 95770cd0-90f2-4327-a086-649438de67f4)) + (pin "10" (uuid 7188ce2c-52b3-4254-b556-91a1a5830041)) + (pin "11" (uuid d83457b0-e3ab-41f5-ab4b-8f5418224caa)) + (pin "12" (uuid ad824268-7863-4dc7-8f7c-ab027e248a6c)) + (pin "13" (uuid 4e781615-bdf5-4a2e-b92e-77d307ff5bc9)) + (pin "14" (uuid 411ef9f2-c54b-45ec-9782-a18a8a2d1c45)) + (pin "15" (uuid 7a169232-27f0-41a3-aa54-ba81dedec580)) + (pin "16" (uuid 52d87319-b475-4d5c-91c8-4daf71cfa829)) + (pin "17" (uuid 841fb1c6-241b-44c6-b21c-fee3b12cb601)) + (pin "18" (uuid 8e2b0338-8db3-4416-9f6f-c54d74f55787)) + (pin "19" (uuid fdb6c72c-b08f-460d-8156-a7a239503fa5)) + (pin "20" (uuid 2ae2a8de-247e-491c-b190-f7040f2882a4)) + (pin "21" (uuid 02e53909-6b95-4856-b7dd-dc30831995c5)) + (pin "22" (uuid 90848248-b457-40f4-ab7b-8a3f24ca30b5)) + (pin "23" (uuid bb3fd9d7-c73e-4d87-ba86-8a895a033596)) + (pin "24" (uuid 2a2d9388-6c29-4c5b-9c96-2b7086906aaa)) + (pin "25" (uuid 0d8fa82c-7b12-4a7e-b6e7-0ed991c8b163)) + (pin "26" (uuid 1179fe06-b3f3-44b8-90bd-9975a58b3aef)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 200.66 133.35 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 89dcac9a-6357-4265-aba2-d95f7b26d0b1) + (property "Reference" "U15" (id 0) (at 207.01 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 207.01 137.795 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 200.66 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2e04113b-6251-423f-b83f-71065d53c517)) + (pin "2" (uuid 8580ee26-c775-40b1-ae91-186c892d1874)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -10.16 107.95 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 89ff0551-b185-4c11-b70a-4576cbb7c2e6) + (property "Reference" "U1" (id 0) (at -9.525 102.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -9.525 105.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -10.16 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -10.16 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a2566104-cc8e-4c3d-93cc-483b41610204)) + (pin "2" (uuid 681c71f8-2c8f-4556-a399-d803927f5126)) + (pin "3" (uuid 5621846b-ab22-4c40-a22e-aecbd38367e6)) + (pin "4" (uuid 5a23d87f-0f98-45cb-b1e6-b121127ddd87)) + (pin "5" (uuid 4f11d8fd-b62d-4469-9bd5-370a408068ca)) + (pin "6" (uuid 51d419fd-2054-4ecd-ba6d-95ead3b72df1)) + (pin "7" (uuid 2cdb8eb6-75ac-483e-a6b6-d6e016704203)) + (pin "8" (uuid 12e18f1b-25f5-4506-b191-9c953b482993)) + (pin "9" (uuid 52d7836c-1097-4b0f-80b6-90c42c3ce421)) + (pin "10" (uuid 5b07cfac-3789-440b-b3e3-d974806574df)) + (pin "11" (uuid 52228e35-a26d-44e9-ba17-12d490f13940)) + (pin "12" (uuid eabcec46-71d1-44d5-bc07-29f49753b088)) + (pin "13" (uuid d6bd87b3-401e-4eb6-8132-51525f308db9)) + (pin "14" (uuid 57bd4e4a-8119-405e-96df-5573d6b03f51)) + (pin "15" (uuid 423731fa-f4ab-4ca6-8f98-2d4c241eff27)) + (pin "16" (uuid faf6a277-3378-45af-bf62-aecd8a9a09c2)) + (pin "17" (uuid c2285430-5769-40e3-8942-3c360735aa26)) + (pin "18" (uuid e7e676bc-677b-4a6b-9ae4-5bfd83a841ca)) + (pin "19" (uuid bea07c0d-1b28-4ac6-93d7-26c684f28b73)) + (pin "20" (uuid d9ed47e4-0757-4933-8010-467013558ddd)) + (pin "21" (uuid 0eb323d4-0266-4e30-9d07-d13ee27891ff)) + (pin "22" (uuid 89242fbf-46d8-4293-874f-1395f23141a1)) + (pin "23" (uuid d344aac4-bfcf-43c4-9dc6-3350ce828b3f)) + (pin "24" (uuid ebf63428-1dcc-44d8-b7f4-8a7df2f55c7b)) + (pin "25" (uuid 0cb6b9f2-cd8f-4833-8a39-35cdbe3f02ff)) + (pin "26" (uuid fd118cde-e0f0-43df-8dc5-425f414c3a72)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 19.05 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93186e46-9c82-4902-9ece-a29611b5d14a) + (property "Reference" "U5" (id 0) (at 19.05 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 19.05 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 20.32 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 20.32 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e07ac37-83b6-43ac-9204-21c719f85477)) + (pin "2" (uuid 3368257c-90b3-467d-a54d-8db315813c5d)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 55.88 133.35 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 948176e8-0eea-4f62-a0d5-dc70c73009ac) + (property "Reference" "U7" (id 0) (at 62.23 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 62.23 137.795 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 55.88 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 55.88 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a6da639d-cb2e-4c34-917f-898668e6dd10)) + (pin "2" (uuid 67a8d2ca-8c0f-4059-b710-aa608cfbffaf)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 110.49 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 98cb497b-7296-4bb4-8604-b3be57b7108c) + (property "Reference" "U10" (id 0) (at 112.5094 16.51 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 112.5094 20.32 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 110.49 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 171515b2-8138-4ad2-8b24-1b171a9d105f)) + (pin "2" (uuid 5408d069-1338-4d8f-8298-0be143bac2ba)) + (pin "3" (uuid 99d866c3-69e2-4350-b93c-eaccd799c806)) + (pin "4" (uuid 4917fda7-950a-43ff-b56e-534edad3ce59)) + (pin "5" (uuid eef5e424-c9f7-4dfc-a872-6b0d3318a11e)) + (pin "6" (uuid 9b072122-2b5a-4067-b4c8-6aa6f306ea59)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 218.44 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a98ec63a-0521-4659-b282-c60556ef968a) + (property "Reference" "U16" (id 0) (at 220.4594 16.51 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 220.4594 20.32 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 218.44 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 218.44 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e4910fb1-6781-4521-aa13-f3034ada2d33)) + (pin "2" (uuid f47a4b7e-c2c5-4ee5-bc82-9e646e8802ed)) + (pin "3" (uuid 647a006a-1d5e-4812-9082-ecd794769ae8)) + (pin "4" (uuid 2b25baec-2601-4efb-8528-d144b9381613)) + (pin "5" (uuid 650a84cb-ea94-4141-91ee-6df95d947c5d)) + (pin "6" (uuid 46ba9804-b8fe-4897-9aab-119f190d41f6)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 182.88 33.02 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid c5d28cc5-313c-4ebf-b921-81055fb6635d) + (property "Reference" "U14" (id 0) (at 182.3594 12.7 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 182.3594 16.51 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 182.88 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 606c22bb-cc1f-402f-aff9-865a577e0451)) + (pin "2" (uuid 5b29e3fc-1fab-4f98-9193-125fc49c3699)) + (pin "3" (uuid 9c7a5655-30e6-458a-9450-d25e60bba9c2)) + (pin "4" (uuid 59e655b8-4b8c-402d-aa16-0fc242f70a69)) + (pin "5" (uuid 07d62f43-9ae4-45c4-85bf-c4efc465b22a)) + (pin "6" (uuid 419e070a-9feb-4f43-9a2c-9ebe40371af9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 55.88 156.21 90) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c84f52f2-bd7f-417c-9ca5-e9856d4e7774) + (property "Reference" "U1" (id 0) (at 58.42 154.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 58.42 157.48 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 55.88 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 55.88 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3b733b8b-b987-4c2c-80d0-c237bf63c378)) + (pin "2" (uuid 29968e22-3f7e-4ed3-855f-d6f1647a5f12)) + (pin "3" (uuid d8a78fb8-ae0a-4250-b29a-05235aa7ffd1)) + (pin "4" (uuid d07e7b9e-95f8-416c-8a95-605991c4970e)) + (pin "5" (uuid d4f22152-da19-4a05-a317-ca3e9c7fee13)) + (pin "6" (uuid 4704d22a-8737-48f8-b456-d14a6aaf8424)) + (pin "7" (uuid e2e39fee-e771-4bcc-93a3-c2aa815e35e9)) + (pin "8" (uuid 721b0907-fc17-468c-90fb-c51b2cb4fcb1)) + (pin "9" (uuid c06523ff-1c13-4165-b5cc-d0ab1108b179)) + (pin "10" (uuid 0a75847e-3732-479c-abfe-3bf423f10f38)) + (pin "11" (uuid 121ca5a5-fc25-42c0-9caa-f467decd27fe)) + (pin "12" (uuid f394437a-479b-474c-a1c5-4affe39cde27)) + (pin "13" (uuid 0e1eb92b-1c74-457f-9142-5e8efca28c01)) + (pin "14" (uuid 7ac55408-ee75-43f2-a6d7-9783d406648e)) + (pin "15" (uuid 8b8e0111-0da5-46c7-b8e6-bf1e341b81cf)) + (pin "16" (uuid 80b09f2f-e183-4821-a551-747e8ab07cc7)) + (pin "17" (uuid ad0997fd-ac22-457e-bcb4-33a098297922)) + (pin "18" (uuid ac5e8fa7-6af0-4e4d-a222-e46cb3597792)) + (pin "19" (uuid b47775b5-a67a-4a6a-af73-baf29c73557b)) + (pin "20" (uuid ccc091c7-d1a3-4044-9e7c-9275b33e1dec)) + (pin "21" (uuid 4af50d7c-91d6-4fde-8c8d-240266d550f8)) + (pin "22" (uuid 689d7bbb-e4e1-4333-9351-4b6697825bcc)) + (pin "23" (uuid 5d711232-42e7-4e9b-ae8c-3a69c4996871)) + (pin "24" (uuid 554e0938-c4da-4ef9-8107-1879619d0d12)) + (pin "25" (uuid e0a36769-208b-402e-ad2e-1ff982053489)) + (pin "26" (uuid 7d20205f-0bb5-4173-9560-1f3056f31b2c)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 256.54 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c895240b-6a49-4dab-9050-918562a3f4dd) + (property "Reference" "U18" (id 0) (at 258.5594 16.51 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 258.5594 20.32 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 256.54 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 256.54 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ea67e11c-c488-43e6-9810-c06967751101)) + (pin "2" (uuid 5e4b18cb-4fd0-4212-a56d-59fa37eb94a1)) + (pin "3" (uuid a4dd8b58-528f-4a61-b64d-9ca996185a14)) + (pin "4" (uuid 035d2ce9-0511-4539-b90f-90534a3d4d85)) + (pin "5" (uuid ef1d7902-faa6-4dc1-921d-904ad6157222)) + (pin "6" (uuid d64e8fd7-c625-4658-ba5f-e4dd5315c920)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 294.64 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid deb9e814-a322-4c08-8df3-f3dcab2d12d4) + (property "Reference" "U20" (id 0) (at 296.6594 16.51 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 296.6594 20.32 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 294.64 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid baad95f0-3ea4-474e-a0ac-fd19b1f8380a)) + (pin "2" (uuid 34d13728-3189-483f-b2ad-e10b87fb218c)) + (pin "3" (uuid 3a7d3c95-0f46-4f05-827b-173191579ee2)) + (pin "4" (uuid 0bf41904-88a0-4f1b-8e53-4f7c5b556666)) + (pin "5" (uuid 93df843f-06d6-41bf-8c09-2116be1f5dba)) + (pin "6" (uuid 8a94ff05-60e1-41e7-b689-f2561da4eb05)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 3.81 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid df914bc3-c903-4f9c-9027-05610c4cdea7) + (property "Reference" "U3" (id 0) (at 3.81 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 3.81 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 5.08 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 5.08 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6d69aa2f-b708-4509-b729-1f1dca2b9dda)) + (pin "2" (uuid 9170b99d-a7af-4991-bece-bd5c188ddb6b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 317.5 156.21 90) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e30d52fc-2bb5-4032-8e91-349973cb2e99) + (property "Reference" "U1" (id 0) (at 320.04 154.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 320.04 157.48 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 317.5 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 317.5 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 854f4707-9b42-4ecd-8b7c-66f3dece5cfd)) + (pin "2" (uuid 33e51ecf-d10f-45b2-af8c-cacab5edd090)) + (pin "3" (uuid 78408c48-0c07-4683-b7c7-04408689a835)) + (pin "4" (uuid bf22d659-46ce-4f7e-8891-5c99350ffece)) + (pin "5" (uuid ba3502d4-c4e3-4e1d-a1c2-820f9881c96f)) + (pin "6" (uuid 477318b8-2f04-404e-86ef-debd45761078)) + (pin "7" (uuid 12a963fc-888c-4a27-8908-3b2f1c2422b2)) + (pin "8" (uuid cd5b341f-3e6e-4568-a707-a3e2eedddbfd)) + (pin "9" (uuid 1553cef0-0f44-4635-836c-d13d9c0dff5a)) + (pin "10" (uuid 271226da-af13-4a71-89b9-cfbc11eb91a8)) + (pin "11" (uuid dc790d61-3dea-497c-be45-3f1ccd01d8c5)) + (pin "12" (uuid d7a48a67-02d9-4dbd-bfea-c93d32ad5340)) + (pin "13" (uuid 9c274c5e-0148-4003-be63-8be012759800)) + (pin "14" (uuid 046afb80-bced-49a0-82f2-d994f11998de)) + (pin "15" (uuid 3fa01cd9-3066-450c-89ae-ef0aab007ebc)) + (pin "16" (uuid a6f9095a-6f40-4fae-ac4b-61aba3cdba4a)) + (pin "17" (uuid f75089ad-6307-44b2-91a0-b585df9916ef)) + (pin "18" (uuid 6253db34-ad3f-4cbd-9441-982890040b70)) + (pin "19" (uuid 1790df22-5044-475f-920d-ede97b25b70f)) + (pin "20" (uuid 9de50bb6-1783-43ef-b1aa-640a21955abc)) + (pin "21" (uuid 5abe4392-c8f2-4bdb-8999-20267d7acd92)) + (pin "22" (uuid 1fee3006-ce63-4df9-b82b-a34fa396724e)) + (pin "23" (uuid 98217c1a-deb8-49df-b6da-9f6d9524170d)) + (pin "24" (uuid 3b8db88e-8310-459e-ae1a-c59a36247d97)) + (pin "25" (uuid e148856c-201e-4776-9dae-3da35a5167d1)) + (pin "26" (uuid c00bf647-f825-4522-8148-8aa3ed672a70)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 128.27 156.21 90) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e678facb-37a1-490d-8272-714b1799cc4e) + (property "Reference" "U1" (id 0) (at 130.81 154.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 130.81 157.48 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 128.27 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 267dd1b7-a60e-42fc-9e76-f6212e84c8b6)) + (pin "2" (uuid 8e9f77d3-0e3d-4406-9ada-1743765d3ef5)) + (pin "3" (uuid c585a21f-1da7-4596-a291-20dca591992a)) + (pin "4" (uuid 46aa67a6-8b86-421c-8f6a-7dce4c7584b0)) + (pin "5" (uuid 57e7f138-8e0b-4fef-93ed-aa9a44ebe905)) + (pin "6" (uuid badd893c-b1de-43f7-ae2b-ad2c0f7aec93)) + (pin "7" (uuid 7851b176-747c-45f6-8162-7da518191dd5)) + (pin "8" (uuid 4bd19db8-32be-4df1-b383-09bccf6814df)) + (pin "9" (uuid 1e48f1c0-ab1e-475f-b604-922f2db9f9c3)) + (pin "10" (uuid b26278d2-0683-4954-8f89-026894d55e34)) + (pin "11" (uuid b0882223-a6c3-4c13-9e05-feaf040dc382)) + (pin "12" (uuid 6519a7b9-2cfc-4254-9670-e1bab2aa347e)) + (pin "13" (uuid 2a48919e-7b53-4c36-8404-a7bd6f76bda6)) + (pin "14" (uuid 989a54e3-942d-4bab-90ac-930774cb7cca)) + (pin "15" (uuid bc78d0c0-ac9e-4af3-bcd0-3ca1b1a4dda1)) + (pin "16" (uuid ecbbfc39-76df-49a6-8688-9e0fbf4a04c6)) + (pin "17" (uuid 2197162a-d32d-42c3-86db-8cc4a08f4296)) + (pin "18" (uuid 2516f29f-8fe8-407b-b16d-91fcd7a0750e)) + (pin "19" (uuid dc3a1744-28d2-48d0-bbaa-12cc14d9a2fc)) + (pin "20" (uuid 9cf2bdcc-6552-483a-b592-3b14b7b3132d)) + (pin "21" (uuid ea2d8d49-65bd-4f46-9579-b5ddc3428428)) + (pin "22" (uuid 0b63fb1a-c738-4554-85c9-2f313ec79579)) + (pin "23" (uuid 5e868a0a-9810-49b1-af49-4e49349bfaea)) + (pin "24" (uuid d6462e4d-5068-4361-8971-bdd7c69da0d3)) + (pin "25" (uuid 97fad671-68ed-4545-94fb-89214591714f)) + (pin "26" (uuid 3abd3b62-a0b9-4d38-9ff7-4f9e4db913e0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 3.81 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eac33a15-54c0-4025-aa12-a87699d8110e) + (property "Reference" "U2" (id 0) (at 3.81 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 3.81 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 5.08 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 5.08 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a5ec537a-77c2-4213-a486-b34f2206a909)) + (pin "2" (uuid c197e0c8-0840-4212-806b-156e339b03e8)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 237.49 133.35 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f33f017c-f395-49b7-9ea8-8e4835e1cfe8) + (property "Reference" "U17" (id 0) (at 243.84 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 243.84 137.795 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 237.49 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 237.49 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a5cd300-1fe1-4d86-9585-c2976fda855f)) + (pin "2" (uuid 2eb85c50-d445-46bc-9449-77ce2e98e7fa)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/54c911d0-b29c-4fdd-8887-1a4a28a2fdb8" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/73f829bc-3abc-48aa-9d17-0336225f08e7" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/c84f52f2-bd7f-417c-9ca5-e9856d4e7774" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/014c2543-8f28-44ff-9a01-8b2807c1990a" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/e678facb-37a1-490d-8272-714b1799cc4e" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/7d2c2712-c50e-4bb2-8088-2fc8fe25df5e" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/5e1bcdc0-4742-4187-8046-6af1cd206483" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/7aa07346-77d9-495b-b5e7-d0f7da4bb804" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/89ff0551-b185-4c11-b70a-4576cbb7c2e6" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/5ba00f1b-d395-4525-aaa6-956d05f2bc99" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/070ea2f2-d9e0-4d76-b846-c1e9b389ddfa" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/015dd462-c1ef-4722-8e03-7dd22ddf82ae" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/e30d52fc-2bb5-4032-8e91-349973cb2e99" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/07eb6726-bcc6-43f1-990a-e6479894b2b7" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/eac33a15-54c0-4025-aa12-a87699d8110e" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/df914bc3-c903-4f9c-9027-05610c4cdea7" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/56e897c8-7be3-489f-92f8-dd530551a64a" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/93186e46-9c82-4902-9ece-a29611b5d14a" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0872af5b-638b-4634-a732-c8dce870df97" + (reference "U6") (unit 1) (value "d_dff") (footprint "") + ) + (path "/948176e8-0eea-4f62-a0d5-dc70c73009ac" + (reference "U7") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/23eef703-60ae-46f6-b3f8-7d64ecf84616" + (reference "U8") (unit 1) (value "d_dff") (footprint "") + ) + (path "/317f765d-2789-4834-9ca7-f49d2eb4058e" + (reference "U9") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/98cb497b-7296-4bb4-8604-b3be57b7108c" + (reference "U10") (unit 1) (value "d_dff") (footprint "") + ) + (path "/1de44f55-d96c-4245-8b3d-daf9bd8d1dce" + (reference "U11") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/6df233b1-a951-49e0-8707-2e9d946d4470" + (reference "U12") (unit 1) (value "d_dff") (footprint "") + ) + (path "/101ccd53-2f85-46a9-8bea-6056adfca0c1" + (reference "U13") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/c5d28cc5-313c-4ebf-b921-81055fb6635d" + (reference "U14") (unit 1) (value "d_dff") (footprint "") + ) + (path "/89dcac9a-6357-4265-aba2-d95f7b26d0b1" + (reference "U15") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/a98ec63a-0521-4659-b282-c60556ef968a" + (reference "U16") (unit 1) (value "d_dff") (footprint "") + ) + (path "/f33f017c-f395-49b7-9ea8-8e4835e1cfe8" + (reference "U17") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/c895240b-6a49-4dab-9050-918562a3f4dd" + (reference "U18") (unit 1) (value "d_dff") (footprint "") + ) + (path "/52ec6f1a-8805-4685-8f5c-00d887bc4112" + (reference "U19") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/deb9e814-a322-4c08-8df3-f3dcab2d12d4" + (reference "U20") (unit 1) (value "d_dff") (footprint "") + ) + (path "/0f87a5a5-21a5-4bbc-824b-0dbb44d6343f" + (reference "U21") (unit 1) (value "d_buffer") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/74HCT164/74HCT164.sub b/library/SubcircuitLibrary/74HCT164/74HCT164.sub new file mode 100644 index 000000000..6c52fc8f2 --- /dev/null +++ b/library/SubcircuitLibrary/74HCT164/74HCT164.sub @@ -0,0 +1,86 @@ +* Subcircuit 74HCT164 +.subckt 74HCT164 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ unconnected-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ unconnected-_u1-pad14_ +.title kicad schematic +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u6 net-_u4-pad3_ net-_u10-pad2_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u6-pad5_ unconnected-_u6-pad6_ d_dff +* u5 net-_u3-pad2_ net-_u10-pad4_ d_inverter +* u3 net-_u1-pad9_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad8_ net-_u10-pad2_ d_inverter +* u8 net-_u6-pad5_ net-_u10-pad2_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u10-pad1_ unconnected-_u8-pad6_ d_dff +* u9 net-_u10-pad1_ net-_u1-pad4_ d_buffer +* u7 net-_u6-pad5_ net-_u1-pad3_ d_buffer +* u10 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ d_dff +* u12 net-_u10-pad5_ net-_u10-pad2_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ d_dff +* u11 net-_u10-pad5_ net-_u1-pad5_ d_buffer +* u18 net-_u16-pad5_ net-_u10-pad2_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ d_dff +* u19 net-_u18-pad5_ net-_u1-pad12_ d_buffer +* u17 net-_u16-pad5_ net-_u1-pad11_ d_buffer +* u21 net-_u20-pad5_ net-_u1-pad13_ d_buffer +* u20 net-_u18-pad5_ net-_u10-pad2_ unconnected-_u20-pad3_ net-_u10-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ d_dff +* u13 net-_u12-pad5_ net-_u1-pad6_ d_buffer +* u15 net-_u14-pad5_ net-_u1-pad10_ d_buffer +* u16 net-_u14-pad5_ net-_u10-pad2_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ d_dff +* u14 net-_u12-pad5_ net-_u10-pad2_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_dff +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a2 net-_u4-pad3_ net-_u10-pad2_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u6-pad5_ unconnected-_u6-pad6_ u6 +a3 net-_u3-pad2_ net-_u10-pad4_ u5 +a4 net-_u1-pad9_ net-_u3-pad2_ u3 +a5 net-_u1-pad8_ net-_u10-pad2_ u2 +a6 net-_u6-pad5_ net-_u10-pad2_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u10-pad1_ unconnected-_u8-pad6_ u8 +a7 net-_u10-pad1_ net-_u1-pad4_ u9 +a8 net-_u6-pad5_ net-_u1-pad3_ u7 +a9 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ u10 +a10 net-_u10-pad5_ net-_u10-pad2_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ u12 +a11 net-_u10-pad5_ net-_u1-pad5_ u11 +a12 net-_u16-pad5_ net-_u10-pad2_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ u18 +a13 net-_u18-pad5_ net-_u1-pad12_ u19 +a14 net-_u16-pad5_ net-_u1-pad11_ u17 +a15 net-_u20-pad5_ net-_u1-pad13_ u21 +a16 net-_u18-pad5_ net-_u10-pad2_ unconnected-_u20-pad3_ net-_u10-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ u20 +a17 net-_u12-pad5_ net-_u1-pad6_ u13 +a18 net-_u14-pad5_ net-_u1-pad10_ u15 +a19 net-_u14-pad5_ net-_u10-pad2_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ u16 +a20 net-_u12-pad5_ net-_u10-pad2_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u6 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u8 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u10 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u12 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u11 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u18 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u19 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u17 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u21 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u20 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u13 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u15 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u16 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u14 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Control Statements + +.ends 74HCT164 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74HCT164/74HCT164_Previous_Values.xml b/library/SubcircuitLibrary/74HCT164/74HCT164_Previous_Values.xml new file mode 100644 index 000000000..11dd2c7d7 --- /dev/null +++ b/library/SubcircuitLibrary/74HCT164/74HCT164_Previous_Values.xml @@ -0,0 +1 @@ +d_bufferd_bufferd_bufferd_bufferd_dffd_dffd_dffd_dffd_andd_dffd_inverterd_inverterd_inverterd_bufferd_bufferd_dffd_dffd_dffd_bufferd_buffertruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/74HCT164/_autosave-74HCT164.sch b/library/SubcircuitLibrary/74HCT164/_autosave-74HCT164.sch new file mode 100644 index 000000000..32036cb06 --- /dev/null +++ b/library/SubcircuitLibrary/74HCT164/_autosave-74HCT164.sch @@ -0,0 +1,550 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 950 3700 +Connection ~ 1500 4250 +Connection ~ 2200 950 +Connection ~ 2350 3700 +Connection ~ 2900 4250 +Connection ~ 3600 950 +Connection ~ 3800 3700 +Connection ~ 4350 4250 +Connection ~ 5050 950 +Connection ~ 5200 3700 +Connection ~ 5750 4250 +Connection ~ 6450 950 +Connection ~ 6650 3700 +Connection ~ 7200 4250 +Connection ~ 7900 950 +Connection ~ 8050 3700 +Connection ~ 8600 4250 +Connection ~ 9350 950 +Connection ~ 9550 3700 +Connection ~ 10100 4250 +Connection ~ 10800 950 +NoConn ~ 1500 650 +NoConn ~ 2050 1600 +NoConn ~ 2900 650 +NoConn ~ 3450 1600 +NoConn ~ 4350 650 +NoConn ~ 4900 1600 +NoConn ~ 5750 650 +NoConn ~ 5800 6600 +NoConn ~ 5800 6850 +NoConn ~ 6300 1600 +NoConn ~ 7200 650 +NoConn ~ 7750 1600 +NoConn ~ 8600 650 +NoConn ~ 9150 1600 +NoConn ~ 10100 650 +NoConn ~ 10650 1600 +NoConn ~ 11600 650 +NoConn ~ 12150 1600 +Wire Wire Line + 450 3700 950 3700 +Wire Wire Line + 800 950 950 950 +Wire Wire Line + 950 3700 950 1600 +Wire Wire Line + 950 3700 2350 3700 +Wire Wire Line + 1050 4250 1500 4250 +Wire Wire Line + 1500 1900 1500 4250 +Wire Wire Line + 1500 4250 2900 4250 +Wire Wire Line + 2050 950 2200 950 +Wire Wire Line + 2200 950 2200 4750 +Wire Wire Line + 2200 950 2350 950 +Wire Wire Line + 2350 3700 2350 1600 +Wire Wire Line + 2350 3700 3800 3700 +Wire Wire Line + 2900 1900 2900 4250 +Wire Wire Line + 2900 4250 4350 4250 +Wire Wire Line + 3450 950 3600 950 +Wire Wire Line + 3600 950 3600 4750 +Wire Wire Line + 3600 950 3800 950 +Wire Wire Line + 3800 3700 3800 1600 +Wire Wire Line + 3800 3700 5200 3700 +Wire Wire Line + 4350 1900 4350 4250 +Wire Wire Line + 4350 4250 5750 4250 +Wire Wire Line + 4900 950 5050 950 +Wire Wire Line + 5050 950 5050 4750 +Wire Wire Line + 5050 950 5200 950 +Wire Wire Line + 5200 3700 5200 1600 +Wire Wire Line + 5200 3700 6650 3700 +Wire Wire Line + 5750 1900 5750 4250 +Wire Wire Line + 5750 4250 7200 4250 +Wire Wire Line + 5800 6600 6200 6600 +Wire Wire Line + 5800 6850 6200 6850 +Wire Wire Line + 6300 950 6450 950 +Wire Wire Line + 6450 950 6450 4750 +Wire Wire Line + 6450 950 6650 950 +Wire Wire Line + 6650 3700 6650 1600 +Wire Wire Line + 6650 3700 8050 3700 +Wire Wire Line + 7200 1900 7200 4250 +Wire Wire Line + 7200 4250 8600 4250 +Wire Wire Line + 7750 950 7900 950 +Wire Wire Line + 7900 950 7900 4750 +Wire Wire Line + 7900 950 8050 950 +Wire Wire Line + 8050 3700 8050 1600 +Wire Wire Line + 8050 3700 9550 3700 +Wire Wire Line + 8600 1900 8600 4250 +Wire Wire Line + 8600 4250 10100 4250 +Wire Wire Line + 9150 950 9350 950 +Wire Wire Line + 9350 950 9350 4750 +Wire Wire Line + 9350 950 9550 950 +Wire Wire Line + 9550 3700 9550 1600 +Wire Wire Line + 9550 3700 11050 3700 +Wire Wire Line + 10100 1900 10100 4250 +Wire Wire Line + 10100 4250 11600 4250 +Wire Wire Line + 10650 950 10800 950 +Wire Wire Line + 10800 950 10800 4750 +Wire Wire Line + 10800 950 11050 950 +Wire Wire Line + 11050 3700 11050 1600 +Wire Wire Line + 11600 4250 11600 1900 +Wire Wire Line + 12150 950 12500 950 +Wire Wire Line + 12500 950 12500 4750 +$Comp +L eSim_Miscellaneous:PORT U1 +U 8 1 00000000 +P -400 3700 +F 0 "U1" H -375 3900 30 0000 C CNN +F 1 "PORT" H -375 3800 30 0000 C CNN +F 2 "" H -400 3700 60 0000 C CNN +F 3 "" H -400 3700 60 0000 C CNN + 8 -400 3700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 9 1 00000000 +P -400 4250 +F 0 "U1" H -375 4450 30 0000 C CNN +F 1 "PORT" H -375 4350 30 0000 C CNN +F 2 "" H -400 4250 60 0000 C CNN +F 3 "" H -400 4250 60 0000 C CNN + 9 -400 4250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 1 1 00000000 +P -350 900 +F 0 "U1" H -325 1100 30 0000 C CNN +F 1 "PORT" H -325 1000 30 0000 C CNN +F 2 "" H -350 900 60 0000 C CNN +F 3 "" H -350 900 60 0000 C CNN + 1 -350 900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 2 1 00000000 +P -350 1000 +F 0 "U1" H -325 1200 30 0000 C CNN +F 1 "PORT" H -325 1100 30 0000 C CNN +F 2 "" H -350 1000 60 0000 C CNN +F 3 "" H -350 1000 60 0000 C CNN + 2 -350 1000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 3 1 00000000 +P 2200 6150 +F 0 "U1" V 2250 6050 30 0000 R CNN +F 1 "PORT" V 2150 6050 30 0000 R CNN +F 2 "" H 2200 6150 60 0000 C CNN +F 3 "" H 2200 6150 60 0000 C CNN + 3 2200 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 4 1 00000000 +P 3600 6150 +F 0 "U1" V 3650 6050 30 0000 R CNN +F 1 "PORT" V 3550 6050 30 0000 R CNN +F 2 "" H 3600 6150 60 0000 C CNN +F 3 "" H 3600 6150 60 0000 C CNN + 4 3600 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 5 1 00000000 +P 5050 6150 +F 0 "U1" V 5100 6050 30 0000 R CNN +F 1 "PORT" V 5000 6050 30 0000 R CNN +F 2 "" H 5050 6150 60 0000 C CNN +F 3 "" H 5050 6150 60 0000 C CNN + 5 5050 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 6 1 00000000 +P 6450 6150 +F 0 "U1" V 6500 6050 30 0000 R CNN +F 1 "PORT" V 6400 6050 30 0000 R CNN +F 2 "" H 6450 6150 60 0000 C CNN +F 3 "" H 6450 6150 60 0000 C CNN + 6 6450 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 7 1 00000000 +P 6450 6600 +F 0 "U1" H 6300 6575 30 0000 R CNN +F 1 "PORT" H 6300 6675 30 0000 R CNN +F 2 "" H 6450 6600 60 0000 C CNN +F 3 "" H 6450 6600 60 0000 C CNN + 7 6450 6600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 14 1 00000000 +P 6450 6850 +F 0 "U1" H 6300 6825 30 0000 R CNN +F 1 "PORT" H 6300 6925 30 0000 R CNN +F 2 "" H 6450 6850 60 0000 C CNN +F 3 "" H 6450 6850 60 0000 C CNN + 14 6450 6850 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 10 1 00000000 +P 7900 6150 +F 0 "U1" V 7950 6050 30 0000 R CNN +F 1 "PORT" V 7850 6050 30 0000 R CNN +F 2 "" H 7900 6150 60 0000 C CNN +F 3 "" H 7900 6150 60 0000 C CNN + 10 7900 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 11 1 00000000 +P 9350 6150 +F 0 "U1" V 9400 6050 30 0000 R CNN +F 1 "PORT" V 9300 6050 30 0000 R CNN +F 2 "" H 9350 6150 60 0000 C CNN +F 3 "" H 9350 6150 60 0000 C CNN + 11 9350 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 12 1 00000000 +P 10800 6150 +F 0 "U1" V 10850 6050 30 0000 R CNN +F 1 "PORT" V 10750 6050 30 0000 R CNN +F 2 "" H 10800 6150 60 0000 C CNN +F 3 "" H 10800 6150 60 0000 C CNN + 12 10800 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 13 1 00000000 +P 12500 6150 +F 0 "U1" V 12550 6050 30 0000 R CNN +F 1 "PORT" V 12450 6050 30 0000 R CNN +F 2 "" H 12500 6150 60 0000 C CNN +F 3 "" H 12500 6150 60 0000 C CNN + 13 12500 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Digital:d_inverter U2 +U 1 1 00000000 +P 150 3700 +F 0 "U2" H 150 3950 60 0000 C CNN +F 1 "d_inverter" H 150 3800 60 0000 C CNN +F 2 "" H 200 3650 60 0000 C CNN +F 3 "" H 200 3650 60 0000 C CNN + 1 150 3700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U3 +U 1 1 00000000 +P 150 4250 +F 0 "U3" H 150 4500 60 0000 C CNN +F 1 "d_inverter" H 150 4350 60 0000 C CNN +F 2 "" H 200 4200 60 0000 C CNN +F 3 "" H 200 4200 60 0000 C CNN + 1 150 4250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U5 +U 1 1 00000000 +P 750 4250 +F 0 "U5" H 750 4500 60 0000 C CNN +F 1 "d_inverter" H 750 4350 60 0000 C CNN +F 2 "" H 800 4200 60 0000 C CNN +F 3 "" H 800 4200 60 0000 C CNN + 1 750 4250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U4 +U 1 1 00000000 +P 350 1000 +F 0 "U4" H 350 1350 60 0000 C CNN +F 1 "d_and" H 350 1200 60 0000 C CNN +F 2 "" H 350 1000 60 0000 C CNN +F 3 "" H 350 1000 60 0000 C CNN + 1 350 1000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U7 +U 1 1 00000000 +P 2200 5250 +F 0 "U7" V 2225 5500 60 0000 L CNN +F 1 "d_buffer" V 2375 5500 60 0000 L CNN +F 2 "" H 2200 5250 60 0000 C CNN +F 3 "" H 2200 5250 60 0000 C CNN + 1 2200 5250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U9 +U 1 1 00000000 +P 3600 5250 +F 0 "U9" V 3625 5500 60 0000 L CNN +F 1 "d_buffer" V 3775 5500 60 0000 L CNN +F 2 "" H 3600 5250 60 0000 C CNN +F 3 "" H 3600 5250 60 0000 C CNN + 1 3600 5250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U11 +U 1 1 00000000 +P 5050 5250 +F 0 "U11" V 5075 5500 60 0000 L CNN +F 1 "d_buffer" V 5225 5500 60 0000 L CNN +F 2 "" H 5050 5250 60 0000 C CNN +F 3 "" H 5050 5250 60 0000 C CNN + 1 5050 5250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U13 +U 1 1 00000000 +P 6450 5250 +F 0 "U13" V 6475 5500 60 0000 L CNN +F 1 "d_buffer" V 6625 5500 60 0000 L CNN +F 2 "" H 6450 5250 60 0000 C CNN +F 3 "" H 6450 5250 60 0000 C CNN + 1 6450 5250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U15 +U 1 1 00000000 +P 7900 5250 +F 0 "U15" V 7925 5500 60 0000 L CNN +F 1 "d_buffer" V 8075 5500 60 0000 L CNN +F 2 "" H 7900 5250 60 0000 C CNN +F 3 "" H 7900 5250 60 0000 C CNN + 1 7900 5250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U17 +U 1 1 00000000 +P 9350 5250 +F 0 "U17" V 9375 5500 60 0000 L CNN +F 1 "d_buffer" V 9525 5500 60 0000 L CNN +F 2 "" H 9350 5250 60 0000 C CNN +F 3 "" H 9350 5250 60 0000 C CNN + 1 9350 5250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U19 +U 1 1 00000000 +P 10800 5250 +F 0 "U19" V 10825 5500 60 0000 L CNN +F 1 "d_buffer" V 10975 5500 60 0000 L CNN +F 2 "" H 10800 5250 60 0000 C CNN +F 3 "" H 10800 5250 60 0000 C CNN + 1 10800 5250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U21 +U 1 1 00000000 +P 12500 5250 +F 0 "U21" V 12525 5500 60 0000 L CNN +F 1 "d_buffer" V 12675 5500 60 0000 L CNN +F 2 "" H 12500 5250 60 0000 C CNN +F 3 "" H 12500 5250 60 0000 C CNN + 1 12500 5250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_dff U6 +U 1 1 00000000 +P 1500 1300 +F 0 "U6" H 1580 1950 60 0000 L CNN +F 1 "d_dff" H 1580 1800 60 0000 L CNN +F 2 "" H 1500 1300 60 0000 C CNN +F 3 "" H 1500 1300 60 0000 C CNN + 1 1500 1300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U8 +U 1 1 00000000 +P 2900 1300 +F 0 "U8" H 2980 1950 60 0000 L CNN +F 1 "d_dff" H 2980 1800 60 0000 L CNN +F 2 "" H 2900 1300 60 0000 C CNN +F 3 "" H 2900 1300 60 0000 C CNN + 1 2900 1300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U10 +U 1 1 00000000 +P 4350 1300 +F 0 "U10" H 4430 1950 60 0000 L CNN +F 1 "d_dff" H 4430 1800 60 0000 L CNN +F 2 "" H 4350 1300 60 0000 C CNN +F 3 "" H 4350 1300 60 0000 C CNN + 1 4350 1300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U12 +U 1 1 00000000 +P 5750 1300 +F 0 "U12" H 5830 1950 60 0000 L CNN +F 1 "d_dff" H 5830 1800 60 0000 L CNN +F 2 "" H 5750 1300 60 0000 C CNN +F 3 "" H 5750 1300 60 0000 C CNN + 1 5750 1300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U14 +U 1 1 00000000 +P 7200 1300 +F 0 "U14" H 7180 2100 60 0000 L CNN +F 1 "d_dff" H 7180 1950 60 0000 L CNN +F 2 "" H 7200 1300 60 0000 C CNN +F 3 "" H 7200 1300 60 0000 C CNN + 1 7200 1300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U16 +U 1 1 00000000 +P 8600 1300 +F 0 "U16" H 8680 1950 60 0000 L CNN +F 1 "d_dff" H 8680 1800 60 0000 L CNN +F 2 "" H 8600 1300 60 0000 C CNN +F 3 "" H 8600 1300 60 0000 C CNN + 1 8600 1300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U18 +U 1 1 00000000 +P 10100 1300 +F 0 "U18" H 10180 1950 60 0000 L CNN +F 1 "d_dff" H 10180 1800 60 0000 L CNN +F 2 "" H 10100 1300 60 0000 C CNN +F 3 "" H 10100 1300 60 0000 C CNN + 1 10100 1300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U20 +U 1 1 00000000 +P 11600 1300 +F 0 "U20" H 11680 1950 60 0000 L CNN +F 1 "d_dff" H 11680 1800 60 0000 L CNN +F 2 "" H 11600 1300 60 0000 C CNN +F 3 "" H 11600 1300 60 0000 C CNN + 1 11600 1300 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/74HCT164/analysis b/library/SubcircuitLibrary/74HCT164/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/74HCT164/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74HCT93/74HCT93.cir b/library/SubcircuitLibrary/74HCT93/74HCT93.cir new file mode 100644 index 000000000..4b9f5fc6e --- /dev/null +++ b/library/SubcircuitLibrary/74HCT93/74HCT93.cir @@ -0,0 +1,19 @@ +.title KiCad schematic +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ d_inverter +U7 Net-_U7-Pad1_ Net-_U12-Pad4_ d_inverter +U11 Net-_U11-Pad1_ Net-_U1-Pad8_ d_buffer +U9 Net-_U4-Pad2_ Net-_U5-Pad2_ Net-_U7-Pad1_ d_nand +U8 Net-_U12-Pad1_ Net-_U6-Pad2_ unconnected-_U8-Pad3_ Net-_U12-Pad4_ Net-_U11-Pad1_ unconnected-_U8-Pad6_ d_tff +U14 Net-_U12-Pad1_ Net-_U12-Pad5_ unconnected-_U14-Pad3_ Net-_U12-Pad4_ Net-_U14-Pad5_ unconnected-_U14-Pad6_ d_tff +U16 Net-_U12-Pad1_ Net-_U14-Pad5_ unconnected-_U16-Pad3_ Net-_U12-Pad4_ Net-_U16-Pad5_ unconnected-_U16-Pad6_ d_tff +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ unconnected-_U1-Pad4_ Net-_U12-Pad1_ unconnected-_U1-Pad6_ unconnected-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ unconnected-_U1-Pad12_ Net-_U1-Pad13_ unconnected-_U1-Pad14_ PORT +U15 Net-_U14-Pad5_ Net-_U1-Pad10_ d_buffer +U17 Net-_U16-Pad5_ Net-_U1-Pad11_ d_buffer +U12 Net-_U12-Pad1_ Net-_U10-Pad2_ unconnected-_U12-Pad3_ Net-_U12-Pad4_ Net-_U12-Pad5_ unconnected-_U12-Pad6_ d_tff +U13 Net-_U12-Pad5_ Net-_U1-Pad9_ d_buffer +U5 Net-_U1-Pad3_ Net-_U5-Pad2_ d_buffer +U4 Net-_U1-Pad2_ Net-_U4-Pad2_ d_buffer +U6 Net-_U2-Pad2_ Net-_U6-Pad2_ d_inverter +U3 Net-_U1-Pad1_ Net-_U10-Pad1_ d_buffer +U2 Net-_U1-Pad13_ Net-_U2-Pad2_ d_buffer +.end diff --git a/library/SubcircuitLibrary/74HCT93/74HCT93.cir.out b/library/SubcircuitLibrary/74HCT93/74HCT93.cir.out new file mode 100644 index 000000000..85e57e68e --- /dev/null +++ b/library/SubcircuitLibrary/74HCT93/74HCT93.cir.out @@ -0,0 +1,76 @@ +.title kicad schematic + +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u7 net-_u7-pad1_ net-_u12-pad4_ d_inverter +* u11 net-_u11-pad1_ net-_u1-pad8_ d_buffer +* u9 net-_u4-pad2_ net-_u5-pad2_ net-_u7-pad1_ d_nand +* u8 net-_u12-pad1_ net-_u6-pad2_ unconnected-_u8-pad3_ net-_u12-pad4_ net-_u11-pad1_ unconnected-_u8-pad6_ d_tff +* u14 net-_u12-pad1_ net-_u12-pad5_ unconnected-_u14-pad3_ net-_u12-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_tff +* u16 net-_u12-pad1_ net-_u14-pad5_ unconnected-_u16-pad3_ net-_u12-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ d_tff +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ unconnected-_u1-pad4_ net-_u12-pad1_ unconnected-_u1-pad6_ unconnected-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ unconnected-_u1-pad12_ net-_u1-pad13_ unconnected-_u1-pad14_ port +* u15 net-_u14-pad5_ net-_u1-pad10_ d_buffer +* u17 net-_u16-pad5_ net-_u1-pad11_ d_buffer +* u12 net-_u12-pad1_ net-_u10-pad2_ unconnected-_u12-pad3_ net-_u12-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ d_tff +* u13 net-_u12-pad5_ net-_u1-pad9_ d_buffer +* u5 net-_u1-pad3_ net-_u5-pad2_ d_buffer +* u4 net-_u1-pad2_ net-_u4-pad2_ d_buffer +* u6 net-_u2-pad2_ net-_u6-pad2_ d_inverter +* u3 net-_u1-pad1_ net-_u10-pad1_ d_buffer +* u2 net-_u1-pad13_ net-_u2-pad2_ d_buffer +a1 net-_u10-pad1_ net-_u10-pad2_ u10 +a2 net-_u7-pad1_ net-_u12-pad4_ u7 +a3 net-_u11-pad1_ net-_u1-pad8_ u11 +a4 [net-_u4-pad2_ net-_u5-pad2_ ] net-_u7-pad1_ u9 +a5 net-_u12-pad1_ net-_u6-pad2_ unconnected-_u8-pad3_ net-_u12-pad4_ net-_u11-pad1_ unconnected-_u8-pad6_ u8 +a6 net-_u12-pad1_ net-_u12-pad5_ unconnected-_u14-pad3_ net-_u12-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a7 net-_u12-pad1_ net-_u14-pad5_ unconnected-_u16-pad3_ net-_u12-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ u16 +a8 net-_u14-pad5_ net-_u1-pad10_ u15 +a9 net-_u16-pad5_ net-_u1-pad11_ u17 +a10 net-_u12-pad1_ net-_u10-pad2_ unconnected-_u12-pad3_ net-_u12-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ u12 +a11 net-_u12-pad5_ net-_u1-pad9_ u13 +a12 net-_u1-pad3_ net-_u5-pad2_ u5 +a13 net-_u1-pad2_ net-_u4-pad2_ u4 +a14 net-_u2-pad2_ net-_u6-pad2_ u6 +a15 net-_u1-pad1_ net-_u10-pad1_ u3 +a16 net-_u1-pad13_ net-_u2-pad2_ u2 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u11 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u9 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u8 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u14 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u16 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u15 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u17 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u12 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u13 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u2 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/74HCT93/74HCT93.kicad_sch b/library/SubcircuitLibrary/74HCT93/74HCT93.kicad_sch new file mode 100644 index 000000000..a7397417a --- /dev/null +++ b/library/SubcircuitLibrary/74HCT93/74HCT93.kicad_sch @@ -0,0 +1,1635 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 3e159b8b-7034-4544-86bd-6438331d1099) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nand" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nand_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nand_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_tff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_tff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_tff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "T" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Out" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Nout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 115.57 85.09) (diameter 0) (color 0 0 0 0) + (uuid 09b947b4-681c-4a92-9b33-ab8e9aea46d1) + ) + (junction (at 101.6 39.37) (diameter 0) (color 0 0 0 0) + (uuid 1ead8134-aa02-4e3f-884d-e790941166b4) + ) + (junction (at 142.24 39.37) (diameter 0) (color 0 0 0 0) + (uuid 8545497b-ccd1-4a98-90ec-677658d8ad3c) + ) + (junction (at 195.58 85.09) (diameter 0) (color 0 0 0 0) + (uuid a4b1ff89-2a5f-4c18-b92d-1d60c0f7620b) + ) + (junction (at 217.17 66.04) (diameter 0) (color 0 0 0 0) + (uuid aa0ce58e-68d9-4018-8cfe-4673ca060393) + ) + (junction (at 181.61 39.37) (diameter 0) (color 0 0 0 0) + (uuid be6625e9-c8b5-4b41-81f4-c9b66a2ee678) + ) + (junction (at 177.8 66.04) (diameter 0) (color 0 0 0 0) + (uuid c5fc002a-13ef-4ff0-ab4d-fc188a954e8c) + ) + (junction (at 156.21 85.09) (diameter 0) (color 0 0 0 0) + (uuid f8523f29-9e68-4e46-9f8c-d82bfa4f3ef5) + ) + + (no_connect (at 156.21 41.91) (uuid 056c48fe-b06e-4e5c-8354-e0f0968c7bd5)) + (no_connect (at 195.58 41.91) (uuid 10312b13-35b3-4482-86dc-38cc3872ff7a)) + (no_connect (at 115.57 41.91) (uuid 2d78f12f-516f-49dd-8f38-cb88a3fe8829)) + (no_connect (at 209.55 66.04) (uuid 433a9260-1a17-427f-b1f0-c28befa02bac)) + (no_connect (at 21.59 125.73) (uuid 4b2c1645-0a4d-46be-aef2-b2f35f73664f)) + (no_connect (at 21.59 106.68) (uuid 525fc8f2-c529-458b-873e-0ebc46e4b6c1)) + (no_connect (at 21.59 93.98) (uuid 71f0c579-14c0-4af9-b371-81b8b001bf00)) + (no_connect (at 236.22 41.91) (uuid 84f67d21-9f9f-4b88-8bde-6cc1342d1240)) + (no_connect (at 250.19 66.04) (uuid 8abba687-fbf9-4728-a0c4-45de383032dd)) + (no_connect (at 170.18 66.04) (uuid ca7ad022-2198-49fd-8c8b-08748736d14e)) + (no_connect (at 129.54 66.04) (uuid d83cd6f3-a41f-4d3a-a4d8-32294bfca63b)) + (no_connect (at 21.59 113.03) (uuid efff4d40-3740-4cd5-8fe1-90ca3122ebfc)) + (no_connect (at 21.59 119.38) (uuid f510f6de-fd83-4df2-8673-9f0315945493)) + + (wire (pts (xy 45.72 39.37) (xy 101.6 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04e2785b-6e89-436d-9125-3a5609d0f62a) + ) + (wire (pts (xy 52.07 66.04) (xy 49.53 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1403ea34-3604-4828-af78-4146c224f62b) + ) + (wire (pts (xy 181.61 39.37) (xy 222.25 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14c4088f-32b1-4325-a0a3-9b84d81932a7) + ) + (wire (pts (xy 52.07 113.03) (xy 55.88 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20d8adac-b3a0-4528-9707-0ee7dbfca1be) + ) + (wire (pts (xy 177.8 66.04) (xy 177.8 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f179057-56de-4b2b-b98d-0064a39c6bfd) + ) + (wire (pts (xy 93.98 66.04) (xy 101.6 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 312f0065-ff04-4ecc-9f1c-afa079c0d10b) + ) + (wire (pts (xy 236.22 85.09) (xy 236.22 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31aa7e41-a5eb-4935-91f0-63b8edae0cff) + ) + (wire (pts (xy 250.19 49.53) (xy 257.81 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 32821a54-812e-4ace-a979-7ccdd8ffffd2) + ) + (wire (pts (xy 257.81 120.65) (xy 257.81 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34a1cfcb-1c66-4156-b637-d60c8543033f) + ) + (wire (pts (xy 170.18 49.53) (xy 177.8 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a92c413-d653-4910-a528-0d7044c4cd4a) + ) + (wire (pts (xy 209.55 49.53) (xy 217.17 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b7f5729-ac66-4401-b0c5-cd6681a095dd) + ) + (wire (pts (xy 257.81 49.53) (xy 257.81 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 407b7fc3-d462-4ec9-8127-df53c77fc1c9) + ) + (wire (pts (xy 111.76 113.03) (xy 111.76 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49e44bfa-e598-4541-955b-af00a0fada01) + ) + (wire (pts (xy 195.58 85.09) (xy 236.22 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52463446-cbf0-494a-9e4a-fc4cc80c8478) + ) + (wire (pts (xy 177.8 49.53) (xy 177.8 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5aa66bea-e3ad-478b-923e-6df283c8030a) + ) + (wire (pts (xy 81.28 66.04) (xy 78.74 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ab9b7ad-fcb3-498f-9b25-2a16d764f379) + ) + (wire (pts (xy 111.76 123.19) (xy 114.3 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ac442fc-7cd4-4f44-a074-7f8038a2d7c6) + ) + (wire (pts (xy 111.76 118.11) (xy 114.3 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e06f1eb-7887-4a37-bf7d-ac6750279d6b) + ) + (wire (pts (xy 115.57 73.66) (xy 115.57 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6296790e-1287-42d1-a649-e8b68c567ef8) + ) + (wire (pts (xy 114.3 121.92) (xy 114.3 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67fc2e6c-83e1-4802-926c-f5b59a350f11) + ) + (wire (pts (xy 138.43 102.87) (xy 102.87 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bb9021b-e817-401a-9dc5-8b5c9640a8aa) + ) + (wire (pts (xy 135.89 92.71) (xy 137.16 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ed60cbc-0394-487b-9e82-137705b21fbb) + ) + (wire (pts (xy 140.97 118.11) (xy 140.97 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6fb3b412-ee58-4cb0-949f-d8357ed7ecc0) + ) + (wire (pts (xy 137.16 92.71) (xy 137.16 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 767f2c36-32fe-465c-970c-11e162c8c6a2) + ) + (wire (pts (xy 101.6 39.37) (xy 101.6 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b06f679-dbbd-49a2-b3f5-7079633084f7) + ) + (wire (pts (xy 177.8 66.04) (xy 181.61 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82f4aa65-15df-4a99-8465-cd713d8212d4) + ) + (wire (pts (xy 114.3 118.11) (xy 114.3 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86f25c40-429b-4e74-be6c-4acb5cc9f549) + ) + (wire (pts (xy 85.09 92.71) (xy 120.65 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96210d8e-0a6f-49fc-914b-16937ea4ecf7) + ) + (wire (pts (xy 111.76 132.08) (xy 111.76 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97a62e92-0a61-4bc2-95c4-76090071e2f7) + ) + (wire (pts (xy 140.97 49.53) (xy 140.97 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97b231e0-aaa2-4872-b445-66359f9c2f8c) + ) + (wire (pts (xy 142.24 39.37) (xy 181.61 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 998d6fa6-7d04-4c9f-a351-4a04ca8a397e) + ) + (wire (pts (xy 85.09 113.03) (xy 111.76 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bc70f9f-185e-43dd-adc4-edbe9544eac9) + ) + (wire (pts (xy 55.88 132.08) (xy 52.07 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d338384-bb6e-4822-803a-2e719aeb412e) + ) + (wire (pts (xy 115.57 85.09) (xy 156.21 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f6e0448-a2e8-4d19-b833-b56ce453f2c0) + ) + (wire (pts (xy 137.16 120.65) (xy 138.43 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a320ef03-5e9c-4ac2-83ec-931bd2bd391b) + ) + (wire (pts (xy 102.87 85.09) (xy 115.57 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a98d6dc0-f136-4aa4-9a72-8c52bd79226f) + ) + (wire (pts (xy 129.54 49.53) (xy 140.97 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad4982db-6c95-4b2b-9ca2-1768e9df0209) + ) + (wire (pts (xy 217.17 120.65) (xy 217.17 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aef28d59-d22d-4c7b-8dbd-ebce906c4ac6) + ) + (wire (pts (xy 156.21 73.66) (xy 156.21 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5ddfd98-2b2f-4adc-81f8-2b11ac6fa3db) + ) + (wire (pts (xy 177.8 120.65) (xy 177.8 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9f65e20-63ff-438d-b9cc-ef20b2ddcbaf) + ) + (wire (pts (xy 195.58 73.66) (xy 195.58 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc7b2098-eec3-4eb4-ac9c-4ed56808cd79) + ) + (wire (pts (xy 50.8 92.71) (xy 55.88 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c27b4597-157b-43a4-871a-c4f7e187c7d3) + ) + (wire (pts (xy 181.61 39.37) (xy 181.61 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4181c18-ca49-4e75-bfd9-e5250596369a) + ) + (wire (pts (xy 156.21 85.09) (xy 195.58 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6c65614-9ca6-444c-b64d-0764b79365b1) + ) + (wire (pts (xy 217.17 66.04) (xy 217.17 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce61a98a-81a0-475a-ac70-3106203ea83c) + ) + (wire (pts (xy 217.17 66.04) (xy 222.25 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf435576-8e61-4c33-b57d-9674efc5810a) + ) + (wire (pts (xy 138.43 120.65) (xy 138.43 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4b348d8-6e5b-4247-a47c-806f1edebe3f) + ) + (wire (pts (xy 222.25 49.53) (xy 222.25 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4eb1482-74b1-4ac6-9c66-6adc7a791888) + ) + (wire (pts (xy 142.24 39.37) (xy 142.24 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dda65b75-47af-4b03-8c3b-2343ab656725) + ) + (wire (pts (xy 217.17 49.53) (xy 217.17 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0de3944-1b16-4556-9be9-e58c4cfee42f) + ) + (wire (pts (xy 137.16 66.04) (xy 142.24 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1667972-e530-4630-b401-0be0fb67cadf) + ) + (wire (pts (xy 101.6 39.37) (xy 142.24 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e44d09cc-bb47-4305-9d50-ab466277932c) + ) + (wire (pts (xy 85.09 132.08) (xy 111.76 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4bc00d2-5c07-44bb-9678-27cdbc65d9f7) + ) + (wire (pts (xy 102.87 100.33) (xy 102.87 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc2557e1-2de5-4810-849d-6b2d95e3bfed) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 15.24 119.38 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 091c2811-3d5e-410b-b5c2-e5bdc992afbc) + (property "Reference" "U1" (id 0) (at 15.875 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 15.875 116.84 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 15.24 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 15.24 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e96e66b2-8d9d-42fa-bafc-b3db4c2d0edb)) + (pin "2" (uuid a7056983-99eb-473c-85b7-5ad57a36d1ce)) + (pin "3" (uuid 8f433e8f-6486-4cca-ae4b-8ee62d4f5dee)) + (pin "4" (uuid aaae9990-7a41-4a09-ba81-4c9f2d8de25e)) + (pin "5" (uuid 89f842b3-d8e1-44f4-ac6f-47dc01f52a19)) + (pin "6" (uuid 4a37c5d2-11ca-417d-83f1-aad3406ee9fc)) + (pin "7" (uuid bba45249-4aca-4321-bda8-87023e381c3a)) + (pin "8" (uuid 2f283922-0a4e-447d-a199-4e4e8a41dae9)) + (pin "9" (uuid ac5b0625-576b-48b7-967d-85531686e41c)) + (pin "10" (uuid 4fd02fb7-b5ed-40d4-8bee-ce512f7c16bb)) + (pin "11" (uuid 1d9e5bd0-21d3-409b-8290-fe79ef0ee40f)) + (pin "12" (uuid 482de6e5-04d5-4d7e-8efa-441d6e71c2cc)) + (pin "13" (uuid 02060dfd-e08f-47fa-8305-22110f1d1c35)) + (pin "14" (uuid c9c3a522-7bb5-498a-ae94-669078522167)) + (pin "15" (uuid 83892fa8-16a0-4e2d-9f81-8366b092605f)) + (pin "16" (uuid 7061981e-a4b0-40aa-87eb-ce2ecf77ecfc)) + (pin "17" (uuid e49d6b1f-bc96-426b-b756-bb341caff039)) + (pin "18" (uuid bfa65498-3dc4-44dd-bd9d-6432ac0dec00)) + (pin "19" (uuid a9f9574d-a376-4aa0-acde-e7bf019d42c7)) + (pin "20" (uuid 451b7bc5-6b64-4497-8552-96d63906512a)) + (pin "21" (uuid 8277c302-54ab-455e-acf0-3910ee96fcd6)) + (pin "22" (uuid 1516ad16-7b26-4ef7-a906-b7e8c318fb44)) + (pin "23" (uuid a2c54092-a3ac-4e09-9b89-e9d94b61693c)) + (pin "24" (uuid d5cfb877-9d3a-4055-995e-5f8661ddea85)) + (pin "25" (uuid 8de4b2bb-1cc3-44e5-aac3-4fd0cac57626)) + (pin "26" (uuid 87297ad3-e12d-471e-868b-e6cb00d853d9)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 125.73 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 19f61437-64e9-4d2d-afd1-04963aa862ef) + (property "Reference" "U9" (id 0) (at 125.73 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 125.73 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9ac852ed-b47c-41cb-a8e1-cb57076f4402)) + (pin "2" (uuid 74e61c94-8d35-4dff-85bf-00866b7bb4c9)) + (pin "3" (uuid 0c2d4e91-326a-4279-b36a-de31894eb8b9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 44.45 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b362f7f-1c79-423a-8008-03053fc82717) + (property "Reference" "U1" (id 0) (at 45.085 87.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 45.085 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 44.45 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 44.45 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cb551033-4d26-40e0-9512-661cb1de6c6b)) + (pin "2" (uuid 34470ad1-6172-47b4-8c33-7e381de2bdd8)) + (pin "3" (uuid 39ef94b7-cef5-4e02-867f-c56787170883)) + (pin "4" (uuid 6de81eb5-5523-4650-862e-58b524fbe4d9)) + (pin "5" (uuid c5ab96c9-2768-4fb7-9941-b3a64f6838f1)) + (pin "6" (uuid a8fef407-cd89-4cd4-872f-c2a295810ea4)) + (pin "7" (uuid 0e57493d-2960-42d6-a976-6a89c0b6e972)) + (pin "8" (uuid a9b22250-8d50-4b7a-a4ae-7e397b057d6c)) + (pin "9" (uuid 96fb3466-22e2-4275-8980-0bc7f43baae8)) + (pin "10" (uuid dd16fb19-edf5-4265-b183-1347f18011ba)) + (pin "11" (uuid 9a02b5af-9844-438d-b6d6-9cd7a40a53eb)) + (pin "12" (uuid 39486821-9b6d-4414-abf1-aaf9f39e2cd9)) + (pin "13" (uuid afff134b-f6b3-4fc8-b79e-ca35cb1a1271)) + (pin "14" (uuid 491f12ea-de26-4c80-8172-0b08008a9a00)) + (pin "15" (uuid ecb3909e-8cfd-498c-9ce5-231c93cb39e1)) + (pin "16" (uuid 9e5ab53c-9b5a-40e2-93e6-cd5694b15149)) + (pin "17" (uuid 38f09a51-4f7b-486c-a934-c39648cd6800)) + (pin "18" (uuid a68acc20-bcff-4712-a49e-69efed956c00)) + (pin "19" (uuid ee13c390-3b27-4217-948d-7f22498d0c6c)) + (pin "20" (uuid 5349867b-daa2-448e-bbb6-094ae25fb25f)) + (pin "21" (uuid 82ed9f38-48fc-452a-a39f-ffa8ec30d537)) + (pin "22" (uuid 03351429-a013-4146-84ab-5933c7ab7bf1)) + (pin "23" (uuid fdf068c9-2e30-4b2c-bb1c-8b47bf906c96)) + (pin "24" (uuid 08f927fa-e54e-449f-9a01-9c4fcb4e5499)) + (pin "25" (uuid 16ae3813-0577-4754-b928-b9a686ea98b8)) + (pin "26" (uuid 5c777332-7a17-4e0a-9999-648003994cdd)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 102.87 92.71 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1cceb59c-e12f-4181-96d7-49c6a4b6a952) + (property "Reference" "U7" (id 0) (at 105.41 91.44 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 95.25 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 104.14 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 104.14 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0afd7ff6-4662-41ef-9109-bade7b9194c9)) + (pin "2" (uuid b8cac4a9-0d94-435a-b104-41d24dde121b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 140.97 128.27 90) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 239df214-4dee-4882-87f9-47eddbcaf9e1) + (property "Reference" "U1" (id 0) (at 143.51 127 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 143.51 129.54 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 140.97 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f45df452-74b2-4408-839c-2191d48773bb)) + (pin "2" (uuid 3df06be7-d321-4a8d-917a-c516cc9ec9cb)) + (pin "3" (uuid 08e739ba-55c5-44bb-bdc2-b0d333f03028)) + (pin "4" (uuid 2ffbbce0-b829-4ade-b7fa-be2f7167e4a5)) + (pin "5" (uuid 194b435a-b80b-45ec-a430-2fa508aa338f)) + (pin "6" (uuid 856b0ca5-59eb-4f55-b9cd-914e1c3e691e)) + (pin "7" (uuid 873aaa9f-1fbc-4cf5-958c-13e836155c86)) + (pin "8" (uuid 9a3eb863-ca1c-410c-b45d-0122c7d965c3)) + (pin "9" (uuid 6972561c-2799-4e3d-bd4d-7b80a5d5fd71)) + (pin "10" (uuid 4b1674c7-d07c-44ac-a686-365cb32d7357)) + (pin "11" (uuid 90f3dc0c-45df-4f98-adc7-32318476ac6a)) + (pin "12" (uuid f1be65ed-41a1-4350-8700-44788d45ee26)) + (pin "13" (uuid 27f067ef-77b0-4dd2-904c-91d0c925b653)) + (pin "14" (uuid 09e57726-bf5b-4b28-a410-57509cffe77e)) + (pin "15" (uuid d4679f4e-0582-43f7-a146-b383a75c8d7d)) + (pin "16" (uuid 468aca63-eb37-44b6-a386-e29483f74c8b)) + (pin "17" (uuid af2f6568-1ccb-49d4-9830-33fbdcbff660)) + (pin "18" (uuid 01cebec3-5073-4241-b216-be533b6c8e4b)) + (pin "19" (uuid 51285407-1d13-4b77-8b5f-fda81df90207)) + (pin "20" (uuid e346fe52-2df1-4408-a303-b8a42e1541f7)) + (pin "21" (uuid 7ee55bb7-40d0-43a6-b278-8845affa883e)) + (pin "22" (uuid 209f8f7a-da98-4562-a4eb-1e0f8759518a)) + (pin "23" (uuid fb171b10-445f-425e-804f-0d8c64db24f3)) + (pin "24" (uuid 82784a03-93d7-462a-9b2f-727477c58c57)) + (pin "25" (uuid fac93402-745b-4833-9453-a1dbc5bbd4ea)) + (pin "26" (uuid daa4691f-0ae1-4bc5-b752-76eff83e0186)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 177.8 104.14 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2809a41a-fd29-446e-b331-2288d9e96f2a) + (property "Reference" "U13" (id 0) (at 184.15 104.775 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 184.15 108.585 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 177.8 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 177.8 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 932345e1-91a0-4360-bd02-f314263bf5e4)) + (pin "2" (uuid 31b64247-441e-4afa-a2aa-0055b78b3397)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 15.24 93.98 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3341389d-e39a-4ce5-a574-fa5de6e52bee) + (property "Reference" "U1" (id 0) (at 15.875 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 15.875 91.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 15.24 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 15.24 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e1910d12-79a5-4bab-940a-861a0bb8ef65)) + (pin "2" (uuid 0937bf85-1d1e-4927-843b-cdd7aa79214d)) + (pin "3" (uuid 9f742584-3f2a-4dc2-9370-aa4bf3cb424c)) + (pin "4" (uuid c7afdabd-8d40-4144-87d7-491c67d2a808)) + (pin "5" (uuid fb4be1f0-84f5-490f-aa91-3dbe079b5cdc)) + (pin "6" (uuid fba6f42b-f904-45a8-98e8-2067715e4917)) + (pin "7" (uuid b42468d0-4852-4b15-ba8d-6cd0685997ed)) + (pin "8" (uuid f7733820-1016-4119-a7a0-17a7a7b293c3)) + (pin "9" (uuid 03a1d84b-0b4f-42f3-8f7e-eb74ca919c14)) + (pin "10" (uuid bb77ba0e-0aca-4ed7-9898-6db8ec3147cb)) + (pin "11" (uuid 7816b937-17fe-4b3a-9ec2-682f39c986f7)) + (pin "12" (uuid 117f03af-943d-4019-a27e-9adade5a2bf1)) + (pin "13" (uuid e692785c-b19c-4730-a132-f916b9e8c44f)) + (pin "14" (uuid ea862486-cb41-4bd0-9daf-845630d8f35a)) + (pin "15" (uuid 6baf97b6-6810-4cc4-856f-9b2f6643337c)) + (pin "16" (uuid 7b551515-9421-469d-8908-3276d68a459d)) + (pin "17" (uuid 5d202016-9f5c-464d-8ce9-39efcc99ebb5)) + (pin "18" (uuid 90cbf504-0257-43f8-8494-b72895c67ae5)) + (pin "19" (uuid a05aa3cc-31ec-482d-906b-1a817ce086df)) + (pin "20" (uuid 4b71ca18-f938-470d-810d-4c0668810e07)) + (pin "21" (uuid 35431f5b-a63f-4de1-a7b1-25b8dfdc6345)) + (pin "22" (uuid 21f99442-a9d1-4136-b2fc-28d9bf022c09)) + (pin "23" (uuid 7274126c-0a94-4d0e-b25d-6a177510b411)) + (pin "24" (uuid 2a8ad61d-8a35-4371-b7f2-f1e20ea997dd)) + (pin "25" (uuid 2f06e73d-1b03-43ed-811e-f27b582a3e2f)) + (pin "26" (uuid fd3c4738-b5e4-4960-9472-76550c06c2a3)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 115.57 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 33a97709-0758-46d8-bf96-dfb99762cbb2) + (property "Reference" "U8" (id 0) (at 117.5894 41.91 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 117.5894 45.72 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 115.57 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 115.57 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e04eca50-22e8-4909-96c5-f12e34f3ec70)) + (pin "2" (uuid 15a2172a-f85b-48f3-82d5-9b2cd2c4f859)) + (pin "3" (uuid c071bd4e-2eca-4a9b-9129-bd313d09eb73)) + (pin "4" (uuid 5dbc9d18-0bf4-4309-b7b4-edfee91c7d2f)) + (pin "5" (uuid 2c9147ad-2401-486b-9b12-7f7639f9a31f)) + (pin "6" (uuid fa023cb4-795f-4dc8-93fa-1aeaf70a882c)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 156.21 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45988941-8fb4-41e1-8d72-9f1efd47cb81) + (property "Reference" "U12" (id 0) (at 158.2294 41.91 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 158.2294 45.72 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 156.21 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c4c5563d-758f-48eb-bc43-1dea627265ae)) + (pin "2" (uuid 0197a5a0-3e0a-4cfb-ae85-9e0d84054e61)) + (pin "3" (uuid ac312ffb-cebb-42b9-85a4-34a96916a38c)) + (pin "4" (uuid e499daf7-23d4-48c9-ba35-266c9744bd4e)) + (pin "5" (uuid f17aa577-14f3-4fc3-a7c1-9fde0b59cace)) + (pin "6" (uuid 6b55b8fc-555f-4fde-9a23-129226992659)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 236.22 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53bb39d0-6f3e-457b-8c0e-5597078f269e) + (property "Reference" "U16" (id 0) (at 238.2394 41.91 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 238.2394 45.72 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 236.22 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 236.22 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f8de14e2-5f88-4b3c-8b0f-3ff7b54501d0)) + (pin "2" (uuid dda2256b-845b-4b33-998d-48ce39c13b56)) + (pin "3" (uuid fdee3872-2375-4d49-b714-4ac1dacd5cb8)) + (pin "4" (uuid d8185bff-66e5-4f67-86b9-1a8bfe4c4a54)) + (pin "5" (uuid b7a2fd7a-7adc-4694-84dd-9d5cc26fc7c8)) + (pin "6" (uuid affbf926-65b1-4145-b73c-01ed86166694)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 64.77 66.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d7c71fc-2877-47dd-a35b-a19e19415851) + (property "Reference" "U2" (id 0) (at 66.675 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 66.675 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 64.77 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 64.77 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e60dc67-e4f1-42c1-9533-b075c71d06de)) + (pin "2" (uuid f8490fcd-b2f8-46dd-b97a-5788a47a089e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 15.24 106.68 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 61175f3c-76b6-45f9-9227-40556205af88) + (property "Reference" "U1" (id 0) (at 15.875 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 15.875 104.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 15.24 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 15.24 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a2e5d166-8195-41c1-8c7c-3e5c9727530b)) + (pin "2" (uuid fa7aa0ac-7c13-4618-bd8c-62506d347054)) + (pin "3" (uuid 7c4fa5bd-e499-47c9-8def-611d2a5f31a3)) + (pin "4" (uuid a0eb6d86-0854-4a70-a0ee-9bad3cbe0240)) + (pin "5" (uuid d922514a-7fdb-43ee-a3ce-eec466e7525e)) + (pin "6" (uuid cf24fffb-2cb8-47ae-a9aa-1918f301989b)) + (pin "7" (uuid 8c834ddc-f7ab-45de-9737-1d4df0a3fbf4)) + (pin "8" (uuid e57cbec3-8a20-4cbf-898f-5b330469142a)) + (pin "9" (uuid 1606aa0e-c518-4a5c-abfb-70695d5febac)) + (pin "10" (uuid 90a10f07-7db2-45cc-9eec-c66226d653df)) + (pin "11" (uuid 7dd8319d-da32-41d8-93c0-a9a35d0b15f3)) + (pin "12" (uuid 4df02d44-ca91-4da4-898b-d5acbb65e337)) + (pin "13" (uuid 94ee9e19-d27c-45dd-b207-38311cd78158)) + (pin "14" (uuid 800f5f4b-65bf-4131-8f44-cc0664972cc5)) + (pin "15" (uuid 25289fc8-8ec3-4713-87aa-bff515c3f461)) + (pin "16" (uuid 70ee448d-4e20-433f-a15c-3a0d71883810)) + (pin "17" (uuid 66e946b7-7816-411f-93f7-de44e31b5c4b)) + (pin "18" (uuid 4202b1d9-3e87-4914-9e80-232405c23b55)) + (pin "19" (uuid 580e8a4e-dba3-4115-b5b7-a93e8d551899)) + (pin "20" (uuid e892996a-45a6-47a1-8aaa-f43b8bd14576)) + (pin "21" (uuid e1a79022-9af2-4337-a6e5-f702c33dd2da)) + (pin "22" (uuid bcb2845b-46cb-44cd-b1ad-1df9914ef0e7)) + (pin "23" (uuid b84d313d-1bfc-4d95-9200-1d719c06469a)) + (pin "24" (uuid c18ebf2c-6188-49fe-adf9-7f16bc7761d2)) + (pin "25" (uuid dfa9cf7b-5728-4782-b698-4070fcccc75a)) + (pin "26" (uuid 2c064da3-e8d5-423d-9c7e-ee185058ee44)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 68.58 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 657a7212-32a4-49ad-8312-6597fb25b4f5) + (property "Reference" "U3" (id 0) (at 70.485 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 70.485 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 68.58 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 68.58 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e878033-fe4e-4559-a684-092690459ab0)) + (pin "2" (uuid eec4bdf0-672a-4baa-9b01-360fed641c28)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 257.81 104.14 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 6c2fe749-dc68-4e08-9689-bc94e6514dfc) + (property "Reference" "U17" (id 0) (at 264.16 104.775 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 264.16 108.585 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 257.81 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 257.81 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 630c1940-5379-40cf-a792-bdd551718de1)) + (pin "2" (uuid f490cf9d-4bc4-462f-938c-92dd3e1b1b87)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 257.81 129.54 90) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 75283c8d-2854-46a1-8780-909f06e31f92) + (property "Reference" "U1" (id 0) (at 260.35 128.27 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 260.35 130.81 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 257.81 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 257.81 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid af5fece0-9579-4e27-8b1d-96906e58651d)) + (pin "2" (uuid 979819d5-978a-4b16-9dc6-b3bd2591c4b5)) + (pin "3" (uuid b6d7afbc-2bf9-4bd5-89cf-83ad7a259a49)) + (pin "4" (uuid 767c11ee-28af-4c0a-a339-c6669cda7a73)) + (pin "5" (uuid 4c52b0a4-5852-45e9-a203-cb466376506b)) + (pin "6" (uuid 358b8f4b-87dc-4e97-93e9-eccea73301d3)) + (pin "7" (uuid f9908bdc-ffa3-484e-a816-0ae24a113254)) + (pin "8" (uuid 0fddb6e8-21a7-4e5e-8c3c-929a70ec4bde)) + (pin "9" (uuid ed4003e8-7298-4839-819b-94e4df8b6913)) + (pin "10" (uuid ed31d031-85e7-4644-8140-7bdd4e8a9daa)) + (pin "11" (uuid 78e40fbf-0601-447c-9638-7742a08a8a39)) + (pin "12" (uuid c667e988-4a8e-4512-b311-f1881481fe6f)) + (pin "13" (uuid 75201bb7-dfc9-4387-9fba-1d7f766bcfa2)) + (pin "14" (uuid dd57d4e4-4a72-4d64-8b58-959570aa739e)) + (pin "15" (uuid e1fb6d35-fc27-4188-913e-66e2841d2925)) + (pin "16" (uuid 63cc0abe-5652-4c39-8ddc-efc4733c754c)) + (pin "17" (uuid a932d25e-9e99-46c6-be8d-b027d749994c)) + (pin "18" (uuid 7ca1bf4b-df4e-4d20-8fd4-5d79da6c6975)) + (pin "19" (uuid 577c84a5-4548-4590-a6ee-678bb27c4458)) + (pin "20" (uuid 078e6588-427e-42b0-a4a6-ed7d7590d0a7)) + (pin "21" (uuid 734c3261-6e86-40b9-9610-b0007088450d)) + (pin "22" (uuid 93c110f4-26bd-4ca5-96a0-9d9d8b7a0851)) + (pin "23" (uuid 79e260e8-5efb-4b45-9b08-53995271523a)) + (pin "24" (uuid 4f6de72a-bf8d-4a3b-8e29-e36d4fb0d9f7)) + (pin "25" (uuid c47ba9dd-0630-4dc5-b0d8-198c69ea2bfb)) + (pin "26" (uuid 262706f8-3a43-497f-a003-8b4d9b67b366)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 217.17 129.54 90) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7c7149cd-2b7b-42a5-a3c2-e4c9219d5ee1) + (property "Reference" "U1" (id 0) (at 219.71 128.27 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 219.71 130.81 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 217.17 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ed151a8d-8e4d-4058-823c-29af5991fa86)) + (pin "2" (uuid c6efb0a6-06fa-407a-99c1-ab2a55fd19a9)) + (pin "3" (uuid 21408af6-71ea-49bf-8ce1-33f0eb3cbd5c)) + (pin "4" (uuid 25546892-1803-4c3c-8a2e-b602055365b9)) + (pin "5" (uuid d63ef413-61e3-41dc-af7d-32e55cb4ebfa)) + (pin "6" (uuid e3f7877a-169a-413a-809d-3f8f36daa448)) + (pin "7" (uuid fd83e93e-3bb5-4132-ac9b-8dfc2dda9f27)) + (pin "8" (uuid d9ab3c78-8a9c-4623-a287-69dbe7d29e5c)) + (pin "9" (uuid 9a70e3a4-936a-408c-b5b5-37a30985f0ff)) + (pin "10" (uuid f28a9e83-e145-4bd1-845a-18d549006914)) + (pin "11" (uuid 7515fc21-cf91-48e8-951c-b7984e03513c)) + (pin "12" (uuid a034561a-3b23-4fe5-9b06-d5ef08073bc1)) + (pin "13" (uuid 06c3d038-60ec-4404-b2e4-ceaf9b031058)) + (pin "14" (uuid 6c1ff1fc-c9e9-4910-9701-43c32d3dccb0)) + (pin "15" (uuid 5f3e9ef8-5faf-49ed-8759-b6c601515927)) + (pin "16" (uuid fd63ccf9-9985-4b61-8d05-b86f7c7ec5f3)) + (pin "17" (uuid 237a7520-8070-4ad8-bbaa-842e40cc483f)) + (pin "18" (uuid 3b981f60-9f00-461f-b5cd-4eb5ad7a55e6)) + (pin "19" (uuid 6c255c1d-a571-455f-9636-b853ff6868c9)) + (pin "20" (uuid eac82e45-c3f7-4430-8f87-3bdd10707c00)) + (pin "21" (uuid 7b5bb4ce-8d4e-4e56-94c9-a6d3d3db88bd)) + (pin "22" (uuid 9e391eec-0127-4942-8b02-54104785ab1a)) + (pin "23" (uuid 9fcf8386-9b26-401c-984f-e93b3f384e80)) + (pin "24" (uuid 9372d0ca-4b13-4453-ba40-3b2ed1caa135)) + (pin "25" (uuid e511b28c-8b83-47db-9df5-fb0a064082c1)) + (pin "26" (uuid f94b17f0-177e-4b56-b911-c75799dc2155)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 45.72 113.03 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7eb5ab53-0446-4b42-b47d-a79a5a1a0b8e) + (property "Reference" "U1" (id 0) (at 46.355 107.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 46.355 110.49 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 45.72 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 45.72 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e4f0d4d3-db34-4686-9d71-cf980298aa85)) + (pin "2" (uuid 1a15996f-caf5-4a52-b2c6-1e770f7e4d89)) + (pin "3" (uuid f9300992-915d-406f-b040-3460429e1e20)) + (pin "4" (uuid 9c85469c-144b-4bb3-8754-43b3c495de34)) + (pin "5" (uuid 560205af-37b8-426a-b9f8-f64356af61da)) + (pin "6" (uuid e88e71e0-5c73-441c-8990-c9512b483c39)) + (pin "7" (uuid 0a6fb4dd-bffb-4995-9335-ce6cf4bf54e8)) + (pin "8" (uuid fa8b5a04-82a8-4d5b-ae9f-a047584c83a2)) + (pin "9" (uuid c50bf0e9-3a82-4530-b2ef-0a1e2ab93c10)) + (pin "10" (uuid 3c59513e-92f7-4fca-b835-4821964113b7)) + (pin "11" (uuid 0b767bc6-8ae8-481d-b33f-341b6a1cfc0c)) + (pin "12" (uuid b09d94f2-286e-4a31-bb4d-9ef8f9854d07)) + (pin "13" (uuid bee042bd-60e2-466a-ae19-3641ffaf2520)) + (pin "14" (uuid 35d20e77-e532-488e-ab18-ffbb58f9d290)) + (pin "15" (uuid 3aceb51f-40b5-4404-93ad-7a72a6dc2987)) + (pin "16" (uuid d4e412fd-ad2d-4470-bbad-6bac581a991c)) + (pin "17" (uuid 814317b6-80ce-414d-8b2d-62a2a9e9fe79)) + (pin "18" (uuid 9d18f3f3-9210-45cb-af0c-1a44f4943b95)) + (pin "19" (uuid dba8e08b-f7eb-4d90-86db-489a2f63fb70)) + (pin "20" (uuid 552865b4-bfff-4932-b14b-7bf23a32a613)) + (pin "21" (uuid 166c7ec7-44ec-4623-a2cf-e71c2caa169a)) + (pin "22" (uuid 0b037c1b-8875-4870-b5c7-fd8d99f84edd)) + (pin "23" (uuid fda843cd-2bc2-4df0-abb2-e423aaf76cac)) + (pin "24" (uuid 286dfe05-1c3a-41a0-8b89-2ca9acb5c548)) + (pin "25" (uuid 7a524a76-c4cc-45bf-bfea-0e7f83c87144)) + (pin "26" (uuid 0c20519c-e3ca-471b-8d4e-2a8a6242e47f)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 68.58 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8514d760-8845-4b6a-8a4a-ac1a70136efe) + (property "Reference" "U4" (id 0) (at 70.485 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 70.485 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 68.58 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 68.58 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aa0c2968-0a53-4ce2-95a7-f79576de967e)) + (pin "2" (uuid 65fe2bb8-d3d2-4035-aea6-0e2d75969395)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 217.17 104.14 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8c4d3420-c6e2-4443-8cf9-e3a417177520) + (property "Reference" "U15" (id 0) (at 223.52 104.775 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 223.52 108.585 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 217.17 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b4e0fd96-07be-43a4-9490-580e4f3b7964)) + (pin "2" (uuid 070bcaa2-f868-4c3b-a7ec-ff4003842e6a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 15.24 113.03 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8eaa9d42-78ed-44ca-aac4-627cd8a05911) + (property "Reference" "U1" (id 0) (at 15.875 107.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 15.875 110.49 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 15.24 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 15.24 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3282cba2-1425-4556-bbbd-58848b860a58)) + (pin "2" (uuid 0fc09ee7-6360-46e7-b5ea-c9b608be01a4)) + (pin "3" (uuid ed04a1cc-3c29-49b0-b4e5-3099099bc0bc)) + (pin "4" (uuid 4bbe8c99-b1f5-4149-b475-c0449aa7d069)) + (pin "5" (uuid c6b4cc12-1589-4f81-8601-73a72d269f25)) + (pin "6" (uuid e0af86c2-6562-4a8c-b36d-077beb6568a9)) + (pin "7" (uuid cef166b3-1c6e-4b16-b8ad-149f41212e24)) + (pin "8" (uuid 74457821-8128-4551-98a4-67f1c89f045f)) + (pin "9" (uuid 53055092-9431-4201-b470-e06344da2d05)) + (pin "10" (uuid cb4c588f-926a-460b-9484-fbecb8ecaeab)) + (pin "11" (uuid 63365c11-a846-4579-8cdc-a916f60a2eb8)) + (pin "12" (uuid b179ede2-f6b9-469c-a1be-3a4cf984b1ea)) + (pin "13" (uuid 5dd077c8-ecbd-4683-8aa7-4b3828185e0f)) + (pin "14" (uuid 312452c6-0b45-495c-b449-1369e1c1a2c7)) + (pin "15" (uuid f1a679e0-fc0f-47ca-94e5-cfc8b35edfb9)) + (pin "16" (uuid e892ed5e-737c-4865-8bc1-9ff151da0184)) + (pin "17" (uuid 535268b9-8be4-41d4-9796-0fe669c75bc0)) + (pin "18" (uuid a71e79f1-41a9-4238-a8be-e9f1ec7d404a)) + (pin "19" (uuid e281f958-6b91-4d14-892d-c1d199522acc)) + (pin "20" (uuid b8afbf7d-2f0a-4c18-9e80-3a8bd66b42a6)) + (pin "21" (uuid 913aa0d8-f79d-4fbb-b25c-083db9c52fc3)) + (pin "22" (uuid aa1b264e-816f-46df-9cee-72e867f29c71)) + (pin "23" (uuid 73a05c93-9a70-463e-927d-3c65c4e61294)) + (pin "24" (uuid 8e123f3f-264d-487a-81be-9b103b9340b5)) + (pin "25" (uuid 16c2f0bc-765c-4264-bb90-f20bae98222b)) + (pin "26" (uuid c708acf0-4f6b-4963-8c60-76ec5646154d)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 195.58 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93012495-06bb-449d-9e76-1835bd3ff69b) + (property "Reference" "U14" (id 0) (at 197.5994 41.91 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 197.5994 45.72 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 195.58 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 195.58 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 769ece5d-527e-4307-8970-6e7193dab91b)) + (pin "2" (uuid dd5a4102-3b11-464a-b3e0-9d8b17e16326)) + (pin "3" (uuid b883e015-17a1-4054-9b94-9da672472c32)) + (pin "4" (uuid d52af12c-7886-4913-afe4-05d6cf92d689)) + (pin "5" (uuid 311c5161-11b7-4acf-93f4-8a662b22ec99)) + (pin "6" (uuid e3b7c52c-f455-4f4d-803b-9419d8165fe3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 39.37 39.37 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 989dcbab-bb09-44fc-87ae-6f7c3159b20a) + (property "Reference" "U1" (id 0) (at 40.005 34.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 40.005 36.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 39.37 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 39.37 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 407cc130-a6e9-425d-8c00-470e3839465b)) + (pin "2" (uuid a5f78ddf-0507-48f5-a390-094cfcf4f33d)) + (pin "3" (uuid a2550a26-84fc-47cf-8f6b-c2d43c28a9e9)) + (pin "4" (uuid fff17ed6-f4e9-4b28-a97b-ae3d804f282e)) + (pin "5" (uuid 9db6629e-9e39-4c74-8a96-916d3fdfab6c)) + (pin "6" (uuid 7ffe9f53-d2df-4bea-a2d1-6ff1ef81ac99)) + (pin "7" (uuid 4cd48ba8-916c-48fd-a7f4-b86ffbdfb142)) + (pin "8" (uuid 85be0f91-b812-47c7-8ce6-1b7f1ed2bbc1)) + (pin "9" (uuid 75ed1692-9dbe-4979-b395-e007bccf385e)) + (pin "10" (uuid 0a86d7cc-63ad-49b9-8979-800dea27bb47)) + (pin "11" (uuid 62b20e73-2c20-4165-bbc4-e31fffc8d01d)) + (pin "12" (uuid 3a37d436-b4b7-4f5a-bd75-993a333d190e)) + (pin "13" (uuid 92da58bf-4a35-4662-ab58-570128091291)) + (pin "14" (uuid 7a5631ba-e868-4854-98ef-1294cc32f6d4)) + (pin "15" (uuid 15f24b08-710d-4323-b518-028c8a086496)) + (pin "16" (uuid 40c5036f-102d-4470-8b34-81b101b57e4b)) + (pin "17" (uuid f7036fa1-1fa8-4247-88da-46e1c7764a50)) + (pin "18" (uuid 0306fa01-3a5f-4065-8a64-b8f19a016a01)) + (pin "19" (uuid 621d16d2-b8d1-4152-b555-105fa8e5970d)) + (pin "20" (uuid f919862d-7532-4ea2-aea2-7feafbc5c41f)) + (pin "21" (uuid 4b4ec21b-fc45-41e4-9f9e-c48fc163610b)) + (pin "22" (uuid 36bbb45f-5986-406d-9224-888365574da1)) + (pin "23" (uuid 9ad0351b-150a-4ae1-9342-68c22d5fba8a)) + (pin "24" (uuid 759e9407-abd0-4b0b-b9c5-0808a25b7f63)) + (pin "25" (uuid 13fcc740-9607-46a2-b39b-69e3f02371fe)) + (pin "26" (uuid 8cbe88cc-f75b-4e94-a4c8-364d14835134)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 140.97 101.6 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 9bac6523-aa3c-49a2-b3f1-6f7f91e72cb8) + (property "Reference" "U11" (id 0) (at 147.32 102.235 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 147.32 106.045 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 140.97 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4514c97d-0bfb-40b2-9776-3c17c469fae3)) + (pin "2" (uuid 52a77642-eff1-4ef9-9de1-11c9ebd68ad2)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 86.36 66.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b31b9379-46f7-4f44-84c3-a0cd2a211e4c) + (property "Reference" "U6" (id 0) (at 86.36 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 86.36 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be0461d7-a9e9-4c5b-bb4d-b2ce0c2992fc)) + (pin "2" (uuid 2186540b-d706-4c7e-8f90-76cb394ccb43)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 177.8 130.81 90) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cd1bc6eb-0d2a-4932-8236-7d9f1be606c4) + (property "Reference" "U1" (id 0) (at 180.34 129.54 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 180.34 132.08 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 177.8 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 177.8 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 153c9c56-eb46-40ef-9fd0-54b6977bd06e)) + (pin "2" (uuid 0cd0d33b-f701-40e3-a18c-01406e8fb645)) + (pin "3" (uuid 082a8cc6-b91b-420d-b6b2-84af1c11bf43)) + (pin "4" (uuid 8660455e-6b53-4dc5-bd37-1bbfcf5595d6)) + (pin "5" (uuid 25be0694-0d6f-4e15-b088-63aa2a542989)) + (pin "6" (uuid a7346aec-bc54-4b53-a8c6-37a948c6d638)) + (pin "7" (uuid 8e74218b-56eb-4a7c-a222-74703cb0f279)) + (pin "8" (uuid bf225002-54fa-4cff-89a0-97f6b76abcb6)) + (pin "9" (uuid 6dd7f3ef-25e4-40ad-a861-5d2ada7f288e)) + (pin "10" (uuid 188c26b2-3c4b-48b6-ab33-529db80990aa)) + (pin "11" (uuid b282bc80-5192-42ad-a43e-5e3a564743ed)) + (pin "12" (uuid a15ab737-9553-40df-bc13-a05ec2949764)) + (pin "13" (uuid 3eb12b9a-0abe-44dd-97de-146e133685ad)) + (pin "14" (uuid 811f60d6-d71b-489d-8dbf-c88218b086d0)) + (pin "15" (uuid 796b0fb0-b8a1-47fe-8914-4ca215f2d782)) + (pin "16" (uuid 21912fd3-af7e-4753-8982-897012c9a843)) + (pin "17" (uuid c14ea375-1451-4c91-b7ff-8a1209ca7282)) + (pin "18" (uuid aeb414d7-807e-4fd8-a82c-80d5cc5bd404)) + (pin "19" (uuid 0b70499f-5800-46a6-b4af-633af11237aa)) + (pin "20" (uuid db21f89a-2354-47d9-a473-b1dc1f184b24)) + (pin "21" (uuid dd73e269-49cb-4b20-ad29-32f30424fbd6)) + (pin "22" (uuid 801be5e9-dd47-4125-83b4-b7f53ef77551)) + (pin "23" (uuid 99b44291-fcb3-4cdb-9bfd-b73e8eb36569)) + (pin "24" (uuid b1f38456-a001-45e5-99b1-9ffff2185218)) + (pin "25" (uuid 31fcf39e-3236-4124-b59c-2931937abff6)) + (pin "26" (uuid efbf2b65-fea8-4fae-bffd-1f3127ca075a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 45.72 132.08 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d0809f0a-bcd0-4cfd-a95c-96a80202ec36) + (property "Reference" "U1" (id 0) (at 46.355 127 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 46.355 129.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 45.72 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 45.72 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cfb52bcc-3ff4-431b-86d3-e903b8083b46)) + (pin "2" (uuid a8b256ef-c8c3-42d9-8885-d24791b195cc)) + (pin "3" (uuid 0a1c8ff8-e122-46b2-ab81-9b8fd0abe78a)) + (pin "4" (uuid 4f9e0ce2-fd8d-46f4-935d-783e3426689b)) + (pin "5" (uuid 34876eff-59ff-48cb-ab63-9360deb8e7e1)) + (pin "6" (uuid bfdd2f6c-7037-4c3a-a16e-8104082a9c1d)) + (pin "7" (uuid c5ac1d11-c422-4985-9425-af07e8242e2d)) + (pin "8" (uuid 7ade0e9e-01ea-47f1-8398-09441ad22146)) + (pin "9" (uuid 63e5aa65-2495-46d1-b43f-991cc97d957c)) + (pin "10" (uuid a2d6a58e-14ee-45f1-b47b-b663fece4314)) + (pin "11" (uuid 4f5b5d09-5b28-44d6-bbca-6481a1db45ab)) + (pin "12" (uuid ee77ad85-4d8a-46bc-b425-46084be29f7e)) + (pin "13" (uuid 1995e5b8-40a3-4a52-b4fb-798572eeb985)) + (pin "14" (uuid 45763eee-e3c4-4415-848b-e55aa274b2af)) + (pin "15" (uuid a7b9e96d-6efa-49bd-b513-8ba527660171)) + (pin "16" (uuid f236a8f1-b70e-431b-9f8c-1e7b2b0ed414)) + (pin "17" (uuid b7ba8a06-312e-4566-aaa6-6c5e78f436c4)) + (pin "18" (uuid d0de049e-1234-4d80-967a-8c8526125024)) + (pin "19" (uuid 32fc980f-127f-4fc4-bfef-c820d96ccea3)) + (pin "20" (uuid 2f6fe22a-dc77-4d30-99aa-b637d56be14b)) + (pin "21" (uuid a83c5c80-4f7c-463d-9a4d-9117bd8631aa)) + (pin "22" (uuid 0d71d568-e29b-4285-88b0-f58c42c60d1d)) + (pin "23" (uuid 878c8f56-ca8a-43ba-b5e9-152766dc47e3)) + (pin "24" (uuid 797a7f1a-055b-47a5-bb77-77c39480b2ed)) + (pin "25" (uuid a13ee2c6-28bc-409e-adca-50599a42db77)) + (pin "26" (uuid 273d9458-e0a6-429d-be02-bdd06f831d70)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 128.27 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d4473b05-91e0-4a2f-8830-de387ab513c1) + (property "Reference" "U10" (id 0) (at 128.27 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 128.27 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 129.54 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 129.54 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7de3b23-b575-4045-9528-d50a6073b68b)) + (pin "2" (uuid 96d3e8af-6c9e-4181-ad64-1a040b3f3982)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 15.24 125.73 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid daa04b49-e9b3-4f06-b8da-efdfe9bc84e3) + (property "Reference" "U1" (id 0) (at 15.875 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 15.875 123.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 15.24 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 15.24 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 98ea56f8-7d6d-4228-9fe6-57902cfcb8bf)) + (pin "2" (uuid caa41293-f566-4b5a-86e9-119899618c64)) + (pin "3" (uuid 46ec2f7d-c303-444b-bb11-392ca891e083)) + (pin "4" (uuid 94433dcd-ffe4-4452-a050-1ce76239a11d)) + (pin "5" (uuid 664485ec-3597-4439-a317-ff84b730fe55)) + (pin "6" (uuid f462751d-871d-4153-a3cc-53684070ec55)) + (pin "7" (uuid e72ceea8-ff88-4cf4-9196-e029e9453952)) + (pin "8" (uuid 40d62b81-4371-44d6-8453-a4539bf335cf)) + (pin "9" (uuid e84c7452-e580-407b-93d3-597c7fde73f1)) + (pin "10" (uuid 44e5d593-1b1f-4b62-b308-d2d806908ec2)) + (pin "11" (uuid 58aee599-860c-41ab-b841-01291477f127)) + (pin "12" (uuid b848f140-c607-464c-95f0-7dca1ca6b7ae)) + (pin "13" (uuid 27c182ce-b6ee-4926-adf3-b82c0fedba33)) + (pin "14" (uuid 1543de66-43c5-41df-87b0-a14151b9b2f5)) + (pin "15" (uuid 8dd1f9b6-bb81-4fae-b7eb-0c0ea4eeca52)) + (pin "16" (uuid c24316f5-87e0-4599-8d02-80d1d8ea0d81)) + (pin "17" (uuid b464cb3c-b6ed-415d-b291-6564d6a07ef4)) + (pin "18" (uuid c9f46c5e-e4f6-4665-9900-f3205f45fcd1)) + (pin "19" (uuid 9b90876f-1664-4794-a2c3-c5822e2be2fb)) + (pin "20" (uuid e9839b61-2037-4f8c-b51e-fa5ffb42e018)) + (pin "21" (uuid e7c68a23-3fb2-4a11-a1e8-f5c2a29a1f5a)) + (pin "22" (uuid 8dc0b898-af03-4820-a4a8-ffe3ded6313b)) + (pin "23" (uuid d16f3ae3-5729-45b3-b0a5-9f5037822c4a)) + (pin "24" (uuid d4584343-3477-4cf2-8e05-201c160d7e2b)) + (pin "25" (uuid 2ecce513-f842-42b9-bf61-7a911c5b7733)) + (pin "26" (uuid 8073e625-b28b-4bfd-b72e-c68310d51457)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 43.18 66.04 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eb1b4f66-da59-451c-b616-ca28a280b444) + (property "Reference" "U1" (id 0) (at 43.815 60.96 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 43.815 63.5 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 43.18 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 43.18 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c03211d2-4157-48d7-a4f3-2ef049142a26)) + (pin "2" (uuid 980f6b53-1fa1-40a7-b15e-0a29e4dfcf47)) + (pin "3" (uuid 01f8bcdb-8370-470f-a144-798ea20368e9)) + (pin "4" (uuid cf748f93-f766-4909-a19a-6b16753787b5)) + (pin "5" (uuid c6785142-2aa6-4954-aae8-22a63a428ab3)) + (pin "6" (uuid 253a06de-c243-4644-8b07-7da0ef27ca03)) + (pin "7" (uuid ac329244-8001-4f71-8cea-b72006525795)) + (pin "8" (uuid 2121162b-8172-442c-ba35-aff82790a234)) + (pin "9" (uuid c83b2163-67d3-4913-9e78-f0005c3d3c1a)) + (pin "10" (uuid d5107598-88ca-4d47-82e1-7e57b11b9222)) + (pin "11" (uuid 580893dd-1b7c-4cd5-a4f2-e50f6891130c)) + (pin "12" (uuid 4cf75434-a072-434b-99df-1e1ee25efa5d)) + (pin "13" (uuid c8a39419-81be-46d2-9dd9-e42cff574392)) + (pin "14" (uuid ba1d6426-5abd-4fdb-8fdb-21f96a82fcd1)) + (pin "15" (uuid ebb37c1d-20b9-45f5-b50a-fb88add68f62)) + (pin "16" (uuid fcdc2915-1720-482a-ade6-a87eca2d8377)) + (pin "17" (uuid 7c3f3941-43a0-42cd-ac0e-72a5c7f28a50)) + (pin "18" (uuid cc90f5b3-1f5d-4331-b5ff-c8306ee7e5a4)) + (pin "19" (uuid 29bbbb99-f7ed-4178-a355-63cb09470467)) + (pin "20" (uuid 755d79e0-14fa-444f-9efc-401338795a4d)) + (pin "21" (uuid dbde0831-aa42-4038-bed8-3f2b9eb1b75d)) + (pin "22" (uuid 51e2d1ff-df88-4ad5-acb3-8c215eac2a7e)) + (pin "23" (uuid 87ef1d54-cdf2-4f95-8ff2-434cf5fd30b8)) + (pin "24" (uuid cfb230ba-5a48-440a-90e3-90de9cf73bc6)) + (pin "25" (uuid c3016036-6903-4785-9e05-178819977e69)) + (pin "26" (uuid ac515d7a-9893-4b88-b3a9-64b63fdc826f)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 68.58 132.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fc0f9993-7ad1-4e2a-afab-ed372e01e5e4) + (property "Reference" "U5" (id 0) (at 70.485 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 70.485 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 68.58 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 68.58 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 230b1e61-b729-4beb-b68b-4a43408ddd43)) + (pin "2" (uuid 54a1985d-f8a5-4a20-b3e3-c040cf573930)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/1b362f7f-1c79-423a-8008-03053fc82717" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/7eb5ab53-0446-4b42-b47d-a79a5a1a0b8e" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/d0809f0a-bcd0-4cfd-a95c-96a80202ec36" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/3341389d-e39a-4ce5-a574-fa5de6e52bee" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/989dcbab-bb09-44fc-87ae-6f7c3159b20a" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/61175f3c-76b6-45f9-9227-40556205af88" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/8eaa9d42-78ed-44ca-aac4-627cd8a05911" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/239df214-4dee-4882-87f9-47eddbcaf9e1" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/cd1bc6eb-0d2a-4932-8236-7d9f1be606c4" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/7c7149cd-2b7b-42a5-a3c2-e4c9219d5ee1" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/75283c8d-2854-46a1-8780-909f06e31f92" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/091c2811-3d5e-410b-b5c2-e5bdc992afbc" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/eb1b4f66-da59-451c-b616-ca28a280b444" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/daa04b49-e9b3-4f06-b8da-efdfe9bc84e3" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/5d7c71fc-2877-47dd-a35b-a19e19415851" + (reference "U2") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/657a7212-32a4-49ad-8312-6597fb25b4f5" + (reference "U3") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/8514d760-8845-4b6a-8a4a-ac1a70136efe" + (reference "U4") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/fc0f9993-7ad1-4e2a-afab-ed372e01e5e4" + (reference "U5") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/b31b9379-46f7-4f44-84c3-a0cd2a211e4c" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1cceb59c-e12f-4181-96d7-49c6a4b6a952" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/33a97709-0758-46d8-bf96-dfb99762cbb2" + (reference "U8") (unit 1) (value "d_tff") (footprint "") + ) + (path "/19f61437-64e9-4d2d-afd1-04963aa862ef" + (reference "U9") (unit 1) (value "d_nand") (footprint "") + ) + (path "/d4473b05-91e0-4a2f-8830-de387ab513c1" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9bac6523-aa3c-49a2-b3f1-6f7f91e72cb8" + (reference "U11") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/45988941-8fb4-41e1-8d72-9f1efd47cb81" + (reference "U12") (unit 1) (value "d_tff") (footprint "") + ) + (path "/2809a41a-fd29-446e-b331-2288d9e96f2a" + (reference "U13") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/93012495-06bb-449d-9e76-1835bd3ff69b" + (reference "U14") (unit 1) (value "d_tff") (footprint "") + ) + (path "/8c4d3420-c6e2-4443-8cf9-e3a417177520" + (reference "U15") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/53bb39d0-6f3e-457b-8c0e-5597078f269e" + (reference "U16") (unit 1) (value "d_tff") (footprint "") + ) + (path "/6c2fe749-dc68-4e08-9689-bc94e6514dfc" + (reference "U17") (unit 1) (value "d_buffer") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/74HCT93/74HCT93.sub b/library/SubcircuitLibrary/74HCT93/74HCT93.sub new file mode 100644 index 000000000..987302ba9 --- /dev/null +++ b/library/SubcircuitLibrary/74HCT93/74HCT93.sub @@ -0,0 +1,70 @@ +* Subcircuit 74HCT93 +.subckt 74HCT93 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ unconnected-_u1-pad4_ net-_u12-pad1_ unconnected-_u1-pad6_ unconnected-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ unconnected-_u1-pad12_ net-_u1-pad13_ unconnected-_u1-pad14_ +.title kicad schematic +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u7 net-_u7-pad1_ net-_u12-pad4_ d_inverter +* u11 net-_u11-pad1_ net-_u1-pad8_ d_buffer +* u9 net-_u4-pad2_ net-_u5-pad2_ net-_u7-pad1_ d_nand +* u8 net-_u12-pad1_ net-_u6-pad2_ unconnected-_u8-pad3_ net-_u12-pad4_ net-_u11-pad1_ unconnected-_u8-pad6_ d_tff +* u14 net-_u12-pad1_ net-_u12-pad5_ unconnected-_u14-pad3_ net-_u12-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_tff +* u16 net-_u12-pad1_ net-_u14-pad5_ unconnected-_u16-pad3_ net-_u12-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ d_tff +* u15 net-_u14-pad5_ net-_u1-pad10_ d_buffer +* u17 net-_u16-pad5_ net-_u1-pad11_ d_buffer +* u12 net-_u12-pad1_ net-_u10-pad2_ unconnected-_u12-pad3_ net-_u12-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ d_tff +* u13 net-_u12-pad5_ net-_u1-pad9_ d_buffer +* u5 net-_u1-pad3_ net-_u5-pad2_ d_buffer +* u4 net-_u1-pad2_ net-_u4-pad2_ d_buffer +* u6 net-_u2-pad2_ net-_u6-pad2_ d_inverter +* u3 net-_u1-pad1_ net-_u10-pad1_ d_buffer +* u2 net-_u1-pad13_ net-_u2-pad2_ d_buffer +a1 net-_u10-pad1_ net-_u10-pad2_ u10 +a2 net-_u7-pad1_ net-_u12-pad4_ u7 +a3 net-_u11-pad1_ net-_u1-pad8_ u11 +a4 [net-_u4-pad2_ net-_u5-pad2_ ] net-_u7-pad1_ u9 +a5 net-_u12-pad1_ net-_u6-pad2_ unconnected-_u8-pad3_ net-_u12-pad4_ net-_u11-pad1_ unconnected-_u8-pad6_ u8 +a6 net-_u12-pad1_ net-_u12-pad5_ unconnected-_u14-pad3_ net-_u12-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a7 net-_u12-pad1_ net-_u14-pad5_ unconnected-_u16-pad3_ net-_u12-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ u16 +a8 net-_u14-pad5_ net-_u1-pad10_ u15 +a9 net-_u16-pad5_ net-_u1-pad11_ u17 +a10 net-_u12-pad1_ net-_u10-pad2_ unconnected-_u12-pad3_ net-_u12-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ u12 +a11 net-_u12-pad5_ net-_u1-pad9_ u13 +a12 net-_u1-pad3_ net-_u5-pad2_ u5 +a13 net-_u1-pad2_ net-_u4-pad2_ u4 +a14 net-_u2-pad2_ net-_u6-pad2_ u6 +a15 net-_u1-pad1_ net-_u10-pad1_ u3 +a16 net-_u1-pad13_ net-_u2-pad2_ u2 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u11 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u9 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u8 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u14 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u16 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u15 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u17 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u12 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u13 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u2 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends 74HCT93 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74HCT93/74HCT93_Previous_Values.xml b/library/SubcircuitLibrary/74HCT93/74HCT93_Previous_Values.xml new file mode 100644 index 000000000..3de7b92f2 --- /dev/null +++ b/library/SubcircuitLibrary/74HCT93/74HCT93_Previous_Values.xml @@ -0,0 +1 @@ +d_tffd_inverterd_inverterd_bufferd_nandd_tffd_tffd_bufferd_bufferd_tffd_bufferd_bufferd_bufferd_inverterd_bufferd_buffertruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/74HCT93/analysis b/library/SubcircuitLibrary/74HCT93/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/74HCT93/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74LS123_sub/74LS123_sub.cir b/library/SubcircuitLibrary/74LS123_sub/74LS123_sub.cir new file mode 100644 index 000000000..b61c4078b --- /dev/null +++ b/library/SubcircuitLibrary/74LS123_sub/74LS123_sub.cir @@ -0,0 +1,8 @@ +.title KiCad schematic +U4 Net-_U2-Pad2_ Net-_U1-Pad2_ Net-_U4-Pad3_ d_and +U5 Net-_U4-Pad3_ Net-_U3-Pad2_ Net-_U1-Pad5_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ PORT +U2 Net-_U1-Pad1_ Net-_U2-Pad2_ d_inverter +U3 Net-_U1-Pad3_ Net-_U3-Pad2_ d_inverter +U6 Net-_U1-Pad5_ Net-_U1-Pad4_ d_inverter +.end diff --git a/library/SubcircuitLibrary/74LS123_sub/74LS123_sub.kicad_sch b/library/SubcircuitLibrary/74LS123_sub/74LS123_sub.kicad_sch new file mode 100644 index 000000000..9def3dc12 --- /dev/null +++ b/library/SubcircuitLibrary/74LS123_sub/74LS123_sub.kicad_sch @@ -0,0 +1,711 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid ead5f056-3ea6-4d42-ab4c-de470220aeb3) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 173.99 101.6) (diameter 0) (color 0 0 0 0) + (uuid 3b3122cc-5fd2-4a03-85b0-b43a735a6314) + ) + + (wire (pts (xy 116.84 91.44) (xy 124.46 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02faf62b-aa9e-4454-bc1f-31bc07efca5c) + ) + (wire (pts (xy 147.32 86.36) (xy 147.32 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d67314f-01f1-4816-b390-24013d6213bf) + ) + (wire (pts (xy 149.86 96.52) (xy 149.86 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 229ebf9f-fd66-41be-8943-d04302674011) + ) + (wire (pts (xy 180.34 97.79) (xy 177.8 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22cb20a1-fdd3-4562-ab50-729201425502) + ) + (wire (pts (xy 173.99 115.57) (xy 175.26 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b158437-cfac-42a4-bb8f-079887eb3251) + ) + (wire (pts (xy 173.99 97.79) (xy 173.99 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c7f9cb1-1e47-4819-92f4-531a5cf5deef) + ) + (wire (pts (xy 116.84 86.36) (xy 123.19 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4dcacc75-ce9f-4cd9-b3a2-293339b9dc13) + ) + (wire (pts (xy 138.43 86.36) (xy 147.32 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 760c2f0d-72e5-405f-b176-0f22b2f4f9cb) + ) + (wire (pts (xy 151.13 93.98) (xy 151.13 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c093489-d8a1-462c-be20-9a5b2a389778) + ) + (wire (pts (xy 170.18 93.98) (xy 151.13 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e451512-b42b-4274-9050-e1e7f39b1432) + ) + (wire (pts (xy 116.84 88.9) (xy 147.32 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1bc8c3c-f439-4e82-bd63-6e5e29e5d610) + ) + (wire (pts (xy 177.8 101.6) (xy 173.99 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abc699cf-ccb1-4192-91cd-b1eb377b0c13) + ) + (wire (pts (xy 124.46 91.44) (xy 124.46 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4e1d710-2d39-477c-b7ad-62b211ea4507) + ) + (wire (pts (xy 139.7 96.52) (xy 149.86 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bae340df-7e07-482f-a5f3-21c344c3ca90) + ) + (wire (pts (xy 149.86 99.06) (xy 151.13 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9b8d8e5-eafa-4df1-b762-115f1d2ad360) + ) + (wire (pts (xy 147.32 88.9) (xy 147.32 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e10d9e2d-9485-4b91-9b98-b9d2fd04463a) + ) + (wire (pts (xy 177.8 97.79) (xy 177.8 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2f45ee5-4cdb-4350-8665-fe1daacfe952) + ) + (wire (pts (xy 195.58 97.79) (xy 201.93 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2f9ad5e-62a9-49b7-8452-385c88cdaafb) + ) + (wire (pts (xy 170.18 86.36) (xy 170.18 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4a8721e-9f36-447b-93a0-bdc2c71dd705) + ) + (wire (pts (xy 173.99 101.6) (xy 173.99 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f832d497-90de-4354-9f36-5921e7535df3) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 115.57 180) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04341780-5984-4ac5-9223-7f89cad1915e) + (property "Reference" "U1" (id 0) (at 185.42 114.935 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 185.42 117.475 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 181.61 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 298c2cb9-7d74-479d-bd6a-84eb45986ee7)) + (pin "2" (uuid 9d05dbec-2565-42fc-ba55-650daa5de598)) + (pin "3" (uuid a1bbbd30-0ace-462f-bcaa-f1012bb18a84)) + (pin "4" (uuid c7195347-0dbf-4873-beb8-a5067775296a)) + (pin "5" (uuid f6f69b45-b0b4-47f7-9ec3-085ddc2ec992)) + (pin "6" (uuid e761b9f6-3e38-4df7-a823-3f898874b451)) + (pin "7" (uuid 7f5e5b87-d049-458b-9f06-87886046b792)) + (pin "8" (uuid 452db92f-f69a-41c5-98ed-91d2f9aa3830)) + (pin "9" (uuid 5825615f-d129-4c02-8ce7-d2274c5974a7)) + (pin "10" (uuid 7fe11e82-6e4c-460e-81af-2f036422f5a3)) + (pin "11" (uuid 66b3bcec-0867-4236-8baa-a5538c04152b)) + (pin "12" (uuid ba7b518a-9b58-41e9-8668-75f4991ab643)) + (pin "13" (uuid 6cf91de1-0004-46ad-8989-3e5bfb5e5028)) + (pin "14" (uuid afc557a8-40fc-4ecd-9fca-28e3c446b803)) + (pin "15" (uuid d416458e-2cd5-4314-a238-c188123a0e80)) + (pin "16" (uuid 58111e0b-e594-4acf-80f2-edfb7f903652)) + (pin "17" (uuid 292efdb3-936d-487e-9bce-981839bd2c97)) + (pin "18" (uuid c6293b2d-a645-45ed-ba50-db2e61a3833a)) + (pin "19" (uuid 1bd34085-2fa4-4347-868c-59dbebe6505b)) + (pin "20" (uuid c89a865d-899b-4cd6-b0a3-43099f7afbb9)) + (pin "21" (uuid 0fcf54bc-7d9c-4a0a-94f0-fa15236efc8e)) + (pin "22" (uuid 56438785-fcbe-4661-8bee-d9be53aef273)) + (pin "23" (uuid d423a67d-4951-4656-a7bb-e2cfb9e48369)) + (pin "24" (uuid 385d9954-fd3a-434c-a22a-c86ddd3c0803)) + (pin "25" (uuid d20475c6-b9c2-4817-a6cf-87db6b6800b1)) + (pin "26" (uuid a77bb656-57e0-4977-a479-3fd78da75f97)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 132.08 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 126607cd-d89f-45f7-bff5-614f1b84683e) + (property "Reference" "U3" (id 0) (at 132.08 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 132.08 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 133.35 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 77060d7b-eac8-4275-b952-d2482589dba0)) + (pin "2" (uuid fc5faa3a-b56d-4b41-a163-495494c3ec01)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15f82f89-6025-4c63-a005-9a6ff04fcd62) + (property "Reference" "U1" (id 0) (at 111.125 81.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2c1ba404-d4fe-461c-a7d9-366d1c461246)) + (pin "2" (uuid 969c37dc-a21e-4c34-8cd0-3dcdccdbcbed)) + (pin "3" (uuid 57384298-b19d-4df0-97a0-b6dad0683333)) + (pin "4" (uuid f40b720d-a6e2-44bb-8dda-c95aacc18b87)) + (pin "5" (uuid b89d87e4-14cb-4090-91d7-d2e191372203)) + (pin "6" (uuid 45ee62c6-fda6-4fc1-8b91-9ca4e741910c)) + (pin "7" (uuid e399d1dd-e6e2-4e7f-9d88-51f30826254b)) + (pin "8" (uuid e785f89a-362a-4ff4-9a67-2da69dea65a8)) + (pin "9" (uuid 918f987d-a3bd-48b7-8c42-7a7e387ff4a4)) + (pin "10" (uuid 63854a2e-11e9-45dd-9640-2906d59e4e43)) + (pin "11" (uuid a8a4c4ad-5031-4f08-abfb-e086b2d92624)) + (pin "12" (uuid d8cd53af-7e8a-4a92-8f94-fcc683ba0268)) + (pin "13" (uuid feaf8655-9e9c-41ba-a9c8-48b6f2d5a3b2)) + (pin "14" (uuid a0386e61-f838-4c4b-9b8a-6ee129634fba)) + (pin "15" (uuid a5c33fa0-5922-4df0-b047-664b5e8a4b07)) + (pin "16" (uuid 6b29bbef-a203-4986-adb4-558c064ab271)) + (pin "17" (uuid 14668141-b831-4bee-a43b-4d337f5ef8f0)) + (pin "18" (uuid 00fe6974-bf5a-4331-9d04-e855adcad1a0)) + (pin "19" (uuid b8a78f31-cf17-4f4a-ab9e-4e659948ff61)) + (pin "20" (uuid f9774f00-032a-413d-9fec-ca2d975828f8)) + (pin "21" (uuid e045b11f-9c9f-4bcc-a290-b63a0bb7addb)) + (pin "22" (uuid 1354a17c-dfef-41cf-8edd-5e60239eb3ea)) + (pin "23" (uuid 7efbc634-ad5f-43a3-a227-4739ac6eacf2)) + (pin "24" (uuid 80ebe11b-499d-410e-a418-82299f44dd17)) + (pin "25" (uuid c271cad1-dd61-4420-af57-b14ff0082ce9)) + (pin "26" (uuid 5a892294-6de9-4c9f-bf58-a70852d7be98)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 158.75 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9b1a0466-dcb2-4284-af39-5f60e90e45be) + (property "Reference" "U4" (id 0) (at 158.75 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 158.75 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 158.75 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 158.75 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e455bbf-6291-4667-977a-71d4c5203f27)) + (pin "2" (uuid 343c9e3e-1d3f-4b41-928b-5ec3869a7c15)) + (pin "3" (uuid c6447ad8-1ec6-4a33-8b54-f63ea6691084)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 91.44 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b86f6977-91c8-450f-a66f-e0d1832e2064) + (property "Reference" "U1" (id 0) (at 111.125 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 846af5ab-e234-44ae-aa76-6a37033238ea)) + (pin "2" (uuid 18b4154d-2c4a-46eb-8f12-d08de66ea353)) + (pin "3" (uuid e58d6985-b318-4f82-8be3-5faf2bfefc50)) + (pin "4" (uuid d3ed365f-a554-4706-aaf9-6938fbab0b69)) + (pin "5" (uuid c2f2a9d3-e6a3-4dd6-b7e6-6465ed50aa4b)) + (pin "6" (uuid 71e0af81-d41a-492d-96f3-f7ca553aada1)) + (pin "7" (uuid d086acb5-6e35-4567-8434-9a5d2e81ed57)) + (pin "8" (uuid d9818ab5-50c7-4707-a974-4ec7a0714b9a)) + (pin "9" (uuid b4f9722e-87e9-48e4-8f35-110f1189550e)) + (pin "10" (uuid e18bdb19-5feb-48af-9739-93303f427dde)) + (pin "11" (uuid b029a081-3fdd-4f67-971e-8446aef51e05)) + (pin "12" (uuid cd9e3b28-7e4f-438c-b40c-d5c3e45e6b4a)) + (pin "13" (uuid 139a0ec7-5867-4d7f-a671-ddec740e1dc7)) + (pin "14" (uuid 0261474e-6862-4a99-a0f1-22ee04f3b70e)) + (pin "15" (uuid 3bcc8f76-b911-401b-9cab-6dc2531a85c9)) + (pin "16" (uuid 06557918-807d-4b0e-977f-47dda7aa4b05)) + (pin "17" (uuid 7a2fb858-24d5-44a8-bd6a-7b8795aac162)) + (pin "18" (uuid 809c56ba-4a8e-428e-995d-6e535188afc1)) + (pin "19" (uuid d7192f93-ace3-4e3a-9f73-ca28883fe852)) + (pin "20" (uuid dfc8c568-37a8-450f-9c69-1b894a2d6abf)) + (pin "21" (uuid 5b6724a2-35ae-4fca-94e3-f248cd53ec6e)) + (pin "22" (uuid 83405bd6-c2b3-4536-951d-22ae9cdab552)) + (pin "23" (uuid eaaeb4cc-bd9a-4312-ad4a-2c931da93ef0)) + (pin "24" (uuid 0962f47e-21b1-4215-8afd-56c54e55c173)) + (pin "25" (uuid 9b9a040d-705f-4a61-b76b-7b4f23c88a65)) + (pin "26" (uuid cfb4d597-8a68-4385-a9f7-4c0dc4edd113)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 88.9 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c0020230-5425-45cf-ac06-07ff4098dc46) + (property "Reference" "U1" (id 0) (at 111.125 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bdbf2a36-473f-47fb-9a25-3ea519d6a649)) + (pin "2" (uuid aabc2d79-5cb9-4227-96af-0a891da352dc)) + (pin "3" (uuid d3d8e7b9-0abf-43a0-910d-a724e5ea2c4a)) + (pin "4" (uuid 1ea54926-47c3-4fed-9203-8cf69730b26c)) + (pin "5" (uuid 8c3dc8af-1f53-4adc-b367-eaf138b53ac9)) + (pin "6" (uuid b89b588c-f6ca-4ef9-aca4-50c17af3d4cb)) + (pin "7" (uuid c390be3f-b3d9-47d0-8f84-20061f4e48e0)) + (pin "8" (uuid f2681f2e-b934-4e28-a622-ef2930cf68f1)) + (pin "9" (uuid 2580a9b0-9477-407c-b558-d03ebf9eb47a)) + (pin "10" (uuid bf638243-f551-4f5a-bc2f-4972b3b7d546)) + (pin "11" (uuid cc48b4c6-5970-4507-90b3-cf905b681d72)) + (pin "12" (uuid 66aeac95-5a6a-4b84-9707-a8c4efbca816)) + (pin "13" (uuid fb828338-8084-4f3a-8ab4-5a5d7e46ebe0)) + (pin "14" (uuid b261b53c-771e-4aff-b176-c2a7ea71c962)) + (pin "15" (uuid a7a54d77-5224-40ed-8ab4-e967955685c2)) + (pin "16" (uuid ae72e329-9da1-40d0-b971-104ad2c6a056)) + (pin "17" (uuid feade8fb-9388-4d89-be77-4735e2920066)) + (pin "18" (uuid 0aa583bc-ce0d-4c61-827e-93c711b23019)) + (pin "19" (uuid c3a8d2b5-16ee-4c99-8146-8874965d573d)) + (pin "20" (uuid 24840756-c286-4f43-87c3-bfd2ba2e7e9e)) + (pin "21" (uuid b71e7be0-534f-45bf-8b8a-cb0a5aba5975)) + (pin "22" (uuid 1974baa7-0290-4d49-802a-e8111081cad7)) + (pin "23" (uuid 9fe6d9ca-116f-467d-8e23-5c4fa97e6f51)) + (pin "24" (uuid ee989e03-2341-4cb7-9f47-58730cd54785)) + (pin "25" (uuid 9702f411-b082-411b-86f3-a123ddcbf23f)) + (pin "26" (uuid 26cd5e0c-70b0-44e0-9f11-509ba3615ac1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 208.28 97.79 180) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d1d8caf0-97e9-4d2a-ac09-8be4bd24a589) + (property "Reference" "U1" (id 0) (at 212.09 97.155 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 212.09 99.695 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 208.28 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 208.28 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cd12aaed-b921-4a8f-8e39-d62ed5dde0ce)) + (pin "2" (uuid 1707e226-cce6-4d5a-b337-32e8e04713b7)) + (pin "3" (uuid 1d4d7345-d7a4-454d-8473-769d7ab60eb6)) + (pin "4" (uuid 4aa1cd9c-e838-4fb7-9f30-385529001e91)) + (pin "5" (uuid dd5869d8-75d3-4a7b-9bde-9224749dea6a)) + (pin "6" (uuid 8ef7d7c8-36ae-4190-ad68-c20cd2eae64d)) + (pin "7" (uuid 9cedbac4-f593-4bbf-b568-640ffd7a287e)) + (pin "8" (uuid a4b039b4-6719-4638-a344-2838d39aefe7)) + (pin "9" (uuid 53ec590a-447c-4eb8-a9ac-518a2a7dda78)) + (pin "10" (uuid 78d82867-0954-47d2-9e56-64274e2dd4eb)) + (pin "11" (uuid f293f2c2-7e73-4694-a6d6-1cb04996e757)) + (pin "12" (uuid df66cb14-74d1-4166-a2ab-6c219fbe5f6d)) + (pin "13" (uuid 072501da-aaf0-4c6f-968b-86b36c288e3d)) + (pin "14" (uuid 2505d928-540b-4b73-8ed5-bdbc80b9dd61)) + (pin "15" (uuid 09006230-7a8b-436b-a4a1-eac02778cea7)) + (pin "16" (uuid 85dca99d-93de-4973-baca-ddff5cc2f985)) + (pin "17" (uuid e973b96e-baa5-4666-b85a-0b6dacc80f4d)) + (pin "18" (uuid 5174cdcd-5104-47f8-bf93-059a62d79f2e)) + (pin "19" (uuid d0c46c9d-4784-4d35-8f1f-b57f83916994)) + (pin "20" (uuid ca927945-8f7e-4ea7-84dc-abb25b42af46)) + (pin "21" (uuid cd9f6179-39e7-4603-8365-351ca0d613d4)) + (pin "22" (uuid 918253c2-de66-4e9a-8c2e-db09041841ef)) + (pin "23" (uuid 5523c7cd-3454-4d6d-969b-a635ddffc512)) + (pin "24" (uuid 56d5526e-e596-4182-b444-d28e6948732a)) + (pin "25" (uuid 9bbcb188-5611-4a10-9ee2-c2aa13fd808c)) + (pin "26" (uuid bad5f425-f2b0-4a36-b020-9010ee9bfc0c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 187.96 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ebdb718b-df28-406a-a722-eac357ccf053) + (property "Reference" "U6" (id 0) (at 187.96 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 187.96 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 189.23 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2f9681b4-f441-4924-9e49-90ff35435b18)) + (pin "2" (uuid d461017a-e96a-404d-92bc-4d78be244f9c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 162.56 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f07f3dc0-f57e-4a3c-8aba-41e18d933bec) + (property "Reference" "U5" (id 0) (at 162.56 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 162.56 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ecf35de-0123-4c99-80c9-e4c731d0eb1c)) + (pin "2" (uuid 980ce2e6-6730-40d0-af6e-fd949641e8b6)) + (pin "3" (uuid bf471fdc-eb96-428e-940a-7f6bb7dfe0fc)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 130.81 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fa8be4b5-31c2-4ce6-9172-158250ce2e06) + (property "Reference" "U2" (id 0) (at 130.81 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 130.81 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 132.08 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 132.08 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 031ccf46-9855-4b0e-8e48-e82261d8a9f1)) + (pin "2" (uuid 436ae809-e671-4bb1-afc8-caf537171a14)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/15f82f89-6025-4c63-a005-9a6ff04fcd62" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/c0020230-5425-45cf-ac06-07ff4098dc46" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/b86f6977-91c8-450f-a66f-e0d1832e2064" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/d1d8caf0-97e9-4d2a-ac09-8be4bd24a589" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/04341780-5984-4ac5-9223-7f89cad1915e" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/fa8be4b5-31c2-4ce6-9172-158250ce2e06" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/126607cd-d89f-45f7-bff5-614f1b84683e" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9b1a0466-dcb2-4284-af39-5f60e90e45be" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/f07f3dc0-f57e-4a3c-8aba-41e18d933bec" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/ebdb718b-df28-406a-a722-eac357ccf053" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/74LS123_sub/74LS123_sub.proj b/library/SubcircuitLibrary/74LS123_sub/74LS123_sub.proj new file mode 100644 index 000000000..501013fc4 --- /dev/null +++ b/library/SubcircuitLibrary/74LS123_sub/74LS123_sub.proj @@ -0,0 +1 @@ +schematicFile 74LS123_sub.kicad_sch diff --git a/library/SubcircuitLibrary/74LS123_sub/74LS123_test.cir b/library/SubcircuitLibrary/74LS123_sub/74LS123_test.cir new file mode 100644 index 000000000..aa9e3d829 --- /dev/null +++ b/library/SubcircuitLibrary/74LS123_sub/74LS123_test.cir @@ -0,0 +1,12 @@ +.title KiCad schematic +v4 Net-_U1-Pad4_ GND pulse +v3 Net-_U1-Pad3_ GND pulse +v2 Net-_U1-Pad2_ GND pulse +v1 Net-_U1-Pad1_ GND pulse +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ unconnected-_U1-Pad8_ adc_bridge_4 +X1 Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U2-Pad1_ Net-_U3-Pad1_ 74LS123 +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ dac_bridge_1 +U4 Net-_U2-Pad2_ plot_v1 +U3 Net-_U3-Pad1_ Net-_U3-Pad2_ dac_bridge_1 +U5 Net-_U3-Pad2_ plot_v1 +.end diff --git a/library/SubcircuitLibrary/74LS123_sub/74LS123_test.kicad_sch b/library/SubcircuitLibrary/74LS123_sub/74LS123_test.kicad_sch new file mode 100644 index 000000000..7128bb2eb --- /dev/null +++ b/library/SubcircuitLibrary/74LS123_sub/74LS123_test.kicad_sch @@ -0,0 +1,656 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid d5aae60a-b017-4a78-a0ab-0a6eb4cf4a44) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:74LS123" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at -10.16 3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "74LS123" (id 1) (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at -10.16 1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at -10.16 1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "74LS123_0_1" + (rectangle (start -5.08 8.89) (end 6.35 -6.35) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "74LS123_1_1" + (pin input line (at -5.08 7.62 180) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -5.08 2.54 180) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -5.08 -1.27 180) (length 2.54) + (name "CLR" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 7.62 0) (length 2.54) + (name "Q" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 2.54 0) (length 2.54) + (name "QBAR" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 31.75 82.55) (diameter 0) (color 0 0 0 0) + (uuid 1c25ba30-07bc-46d2-9e77-69e166b99f52) + ) + (junction (at 36.83 109.22) (diameter 0) (color 0 0 0 0) + (uuid 3b003df4-3c43-4160-9704-9b0260c413c5) + ) + (junction (at 48.26 129.54) (diameter 0) (color 0 0 0 0) + (uuid 4a337899-395b-4078-8275-59e834a1fc93) + ) + + (wire (pts (xy 107.95 62.23) (xy 107.95 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 067855c5-825a-4fb9-a8aa-8eefa72fec2e) + ) + (wire (pts (xy 36.83 129.54) (xy 48.26 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06bf8a82-07a5-4dc1-9e0e-8f29c5d62c41) + ) + (wire (pts (xy 36.83 109.22) (xy 36.83 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15442922-de9e-4bf5-ace7-19783766ddac) + ) + (wire (pts (xy 48.26 76.2) (xy 60.96 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2338a920-837b-469a-b96c-e0421fd1d5cd) + ) + (wire (pts (xy 95.25 59.69) (xy 100.33 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2752f790-b6e9-4158-a2b0-5d6f59c19784) + ) + (wire (pts (xy 100.33 63.5) (xy 107.95 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a777eb6-4071-4f3e-8818-9cc22d3983e0) + ) + (wire (pts (xy 63.5 62.23) (xy 67.31 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fb249bf-6c53-4856-8fa1-a51680beea14) + ) + (wire (pts (xy 31.75 72.39) (xy 31.75 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33d0b3ea-5d37-46df-97fd-6b913ad8d0dd) + ) + (wire (pts (xy 100.33 59.69) (xy 100.33 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35e707a6-80c5-44a5-bf91-48aa84da77f8) + ) + (wire (pts (xy 119.38 53.34) (xy 132.08 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c731182-0d06-480a-b1e8-2faf1028c0b3) + ) + (wire (pts (xy 48.26 49.53) (xy 62.23 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5296492a-5b20-40a9-bcfe-65686e148891) + ) + (wire (pts (xy 48.26 127) (xy 48.26 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 571508fe-9d53-4567-93b2-c920a4110b3b) + ) + (wire (pts (xy 107.95 54.61) (xy 107.95 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58250548-1432-4db0-be34-e2a1dfc222a8) + ) + (wire (pts (xy 95.25 54.61) (xy 107.95 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5849ee53-2670-475a-ad0f-f1b8fa05706b) + ) + (wire (pts (xy 48.26 72.39) (xy 31.75 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b64793e-4fa7-4037-bec2-4a17ea4e489d) + ) + (wire (pts (xy 36.83 99.06) (xy 36.83 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71e0a271-35d4-4b3f-bb29-2db9b1f17128) + ) + (wire (pts (xy 48.26 45.72) (xy 26.67 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73f56b31-b536-47fd-bb6a-739eaadbd6fb) + ) + (wire (pts (xy 107.95 57.15) (xy 107.95 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74b55321-2984-4e28-978f-2b6ca7c3894c) + ) + (wire (pts (xy 48.26 99.06) (xy 36.83 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f5dcbd6-81f9-44bc-b9af-1efd7029c2bd) + ) + (wire (pts (xy 26.67 82.55) (xy 31.75 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80b9d8ad-fd14-49ec-a91e-b5a0328a5b5a) + ) + (wire (pts (xy 62.23 49.53) (xy 62.23 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86da8665-c23a-4b24-8c79-667587c7abb6) + ) + (wire (pts (xy 31.75 82.55) (xy 31.75 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89a35652-fd72-4c37-b08e-8c422a39217b) + ) + (wire (pts (xy 121.92 58.42) (xy 121.92 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b154490-5b62-42f0-b648-8029e605d696) + ) + (wire (pts (xy 63.5 104.14) (xy 63.5 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95365f85-a550-450e-9358-0b5f8819fa67) + ) + (wire (pts (xy 121.92 68.58) (xy 133.35 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a77812b2-f0d1-4650-98dc-59cdb293f228) + ) + (wire (pts (xy 95.25 57.15) (xy 107.95 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b05a6348-0ca1-4e5d-8b9c-cf0d99bbbf07) + ) + (wire (pts (xy 48.26 22.86) (xy 67.31 22.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b91a9920-9070-4d3c-86e7-c266e9093e0e) + ) + (wire (pts (xy 62.23 57.15) (xy 67.31 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9a6109e-8460-4e9c-9372-9f9588166ae0) + ) + (wire (pts (xy 31.75 109.22) (xy 36.83 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce2e46e5-d10f-45f5-b1ed-78ca99964260) + ) + (wire (pts (xy 60.96 76.2) (xy 60.96 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1b08d21-470e-4e19-a50f-96a7e78dc6a4) + ) + (wire (pts (xy 67.31 22.86) (xy 67.31 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3b0d892-9b00-4548-8c5e-f340c287c20f) + ) + (wire (pts (xy 26.67 45.72) (xy 26.67 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e932c3e1-0e38-4254-9f48-f13486d2f075) + ) + (wire (pts (xy 60.96 59.69) (xy 67.31 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebc7e2c6-d24b-4ce1-9944-906c781f322f) + ) + (wire (pts (xy 48.26 129.54) (xy 48.26 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebf374da-94bb-4fb0-997d-a592ef0ac786) + ) + (wire (pts (xy 48.26 104.14) (xy 63.5 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fca8ad55-4e88-4706-bba6-6bbd04ae292f) + ) + (wire (pts (xy 119.38 58.42) (xy 121.92 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fcd46b60-6c6f-4751-956c-0ca197ae677f) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 48.26 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 163079bf-3752-4876-8f37-051edb9e22e7) + (property "Reference" "v3" (id 0) (at 53.34 84.455 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 53.34 88.265 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 53.34 92.075 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 48.26 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7d3846d8-43fc-4a3f-b65c-6c1224af2c05)) + (pin "2" (uuid 791b59af-c7c3-4e58-80ca-8ba67dff02bd)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 162.56 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 27042ca1-96ef-4dc8-9544-08ee582294ce) + (property "Reference" "U5" (id 0) (at 166.37 59.69 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 166.37 63.5 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 162.56 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid ad11f146-6b18-4bcf-afd7-b73b9743d069)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 81.28 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 37956358-fde8-47c6-9998-793f878b2262) + (property "Reference" "U1" (id 0) (at 81.28 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 81.28 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 031373cd-7cf4-4e59-95d9-ca80804caf47)) + (pin "2" (uuid 8a64a9eb-1c01-495c-9e3d-10646a14fe7c)) + (pin "3" (uuid 869c0da3-3189-4a56-9b13-4e150a29efa7)) + (pin "4" (uuid 9cca9e93-d099-427f-8676-42b8999e6128)) + (pin "5" (uuid ffb549b4-0287-450f-8e1e-fcccf4530f70)) + (pin "6" (uuid 6674628b-866c-47b1-a8ef-b8715e7a2b8b)) + (pin "7" (uuid 818f755e-43ae-4c84-b8d7-b41db551db50)) + (pin "8" (uuid 7ef02a01-0e53-4544-9d12-3e04acb852c1)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 48.26 115.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3e09a8ac-9020-4a83-9107-050c54ddc937) + (property "Reference" "v4" (id 0) (at 53.34 112.395 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 53.34 116.205 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 53.34 120.015 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 48.26 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b4dcecb-89c5-41fc-af89-6809a936bc3c)) + (pin "2" (uuid 67e4bed2-997b-454d-884a-a0f119189e89)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 161.29 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6877530a-a004-4f0d-94d2-f025c7ead021) + (property "Reference" "U4" (id 0) (at 165.1 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 165.1 48.26 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 161.29 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 161.29 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid f8855e31-e549-42b9-b3c4-215157ad2a72)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 48.26 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8ae54ea0-2abf-44fd-babc-76da8feee55a) + (property "Reference" "#PWR0101" (id 0) (at 48.26 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 48.26 138.43 0)) + (property "Footprint" "" (id 2) (at 48.26 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 48.26 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid db6ea7b3-3c2c-40a4-9ee5-72c6629c78a2)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 48.26 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b762e939-9a42-406e-93f1-1e1c7680b8ac) + (property "Reference" "v2" (id 0) (at 53.34 57.785 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 53.34 61.595 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 53.34 65.405 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 48.26 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bf73b7bb-f890-4d96-bc2e-d288b155e456)) + (pin "2" (uuid 9594d21f-ad78-46d0-922e-3308c8449e09)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 48.26 34.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb192995-6092-4b6e-84a6-28156f059890) + (property "Reference" "v1" (id 0) (at 53.34 31.115 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 53.34 34.925 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 53.34 38.735 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 48.26 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a005bc9-2faf-4bc7-9ebb-aea4b64b9e46)) + (pin "2" (uuid 42d9eec2-e3d1-4e66-990b-53fd826d1279)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 148.59 69.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c7cacf1d-1fea-44fc-b64a-8bc00d0a70f2) + (property "Reference" "U3" (id 0) (at 147.955 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 147.955 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 148.59 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 148.59 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1433e920-e14d-4fdc-b594-b1be7f4c10f4)) + (pin "2" (uuid ee46be30-4b5a-462b-ab17-0298d686f28d)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 147.32 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cb3cc1f2-a529-4f59-972f-77c466869802) + (property "Reference" "U2" (id 0) (at 146.685 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 146.685 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 147.32 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 147.32 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ba913dd-bd31-4522-9955-4c07fcb4fbf6)) + (pin "2" (uuid b3f1678e-db66-4345-8b39-aca1ad2af52e)) + ) + + (symbol (lib_id "eSim_Subckt:74LS123") (at 113.03 60.96 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid d0eb9cfa-7f25-4073-9a86-226555d84d31) + (property "Reference" "X1" (id 0) (at 113.03 55.88 0)) + (property "Value" "74LS123" (id 1) (at 113.03 58.42 0)) + (property "Footprint" "" (id 2) (at 102.87 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 102.87 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 411272c8-49a6-4092-b23c-b76f371232b5)) + (pin "2" (uuid 1b362986-294a-45e8-b554-af88a62045d0)) + (pin "3" (uuid 85fdca50-0d12-475a-9ee7-620bec19e14c)) + (pin "4" (uuid 30abec2e-1bb0-4a61-bfb4-4a5c44ea75b5)) + (pin "5" (uuid 63a52645-0473-4b9e-a0fc-c46a46247b61)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/8ae54ea0-2abf-44fd-babc-76da8feee55a" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/37956358-fde8-47c6-9998-793f878b2262" + (reference "U1") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/cb3cc1f2-a529-4f59-972f-77c466869802" + (reference "U2") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/c7cacf1d-1fea-44fc-b64a-8bc00d0a70f2" + (reference "U3") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/6877530a-a004-4f0d-94d2-f025c7ead021" + (reference "U4") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/27042ca1-96ef-4dc8-9544-08ee582294ce" + (reference "U5") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/d0eb9cfa-7f25-4073-9a86-226555d84d31" + (reference "X1") (unit 1) (value "74LS123") (footprint "") + ) + (path "/bb192995-6092-4b6e-84a6-28156f059890" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/b762e939-9a42-406e-93f1-1e1c7680b8ac" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/163079bf-3752-4876-8f37-051edb9e22e7" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/3e09a8ac-9020-4a83-9107-050c54ddc937" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/74LS123_sub/74LS123_test.proj b/library/SubcircuitLibrary/74LS123_sub/74LS123_test.proj new file mode 100644 index 000000000..40df6de15 --- /dev/null +++ b/library/SubcircuitLibrary/74LS123_sub/74LS123_test.proj @@ -0,0 +1 @@ +schematicFile 74LS123_test.kicad_sch diff --git a/library/SubcircuitLibrary/74LS125_sub/74LS125_sub.cir b/library/SubcircuitLibrary/74LS125_sub/74LS125_sub.cir new file mode 100644 index 000000000..f615930c6 --- /dev/null +++ b/library/SubcircuitLibrary/74LS125_sub/74LS125_sub.cir @@ -0,0 +1,11 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ PORT +U3 Net-_U1-Pad6_ Net-_U3-Pad2_ d_inverter +U7 Net-_U1-Pad5_ Net-_U3-Pad2_ Net-_U1-Pad11_ d_and +U5 Net-_U1-Pad8_ Net-_U5-Pad2_ d_inverter +U9 Net-_U1-Pad7_ Net-_U5-Pad2_ Net-_U1-Pad12_ d_and +U4 Net-_U1-Pad4_ Net-_U4-Pad2_ d_inverter +U2 Net-_U1-Pad2_ Net-_U2-Pad2_ d_inverter +U6 Net-_U1-Pad1_ Net-_U2-Pad2_ Net-_U1-Pad9_ d_and +U8 Net-_U1-Pad3_ Net-_U4-Pad2_ Net-_U1-Pad10_ d_and +.end diff --git a/library/SubcircuitLibrary/74LS125_sub/74LS125_sub.kicad_sch b/library/SubcircuitLibrary/74LS125_sub/74LS125_sub.kicad_sch new file mode 100644 index 000000000..87240d52f --- /dev/null +++ b/library/SubcircuitLibrary/74LS125_sub/74LS125_sub.kicad_sch @@ -0,0 +1,1106 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 534ec729-61d1-4ee6-9da3-b18202c12986) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (wire (pts (xy 119.38 128.27) (xy 140.97 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 045c26c3-76e8-4ab9-9398-38c4fdd87f91) + ) + (wire (pts (xy 140.97 43.18) (xy 156.21 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16889a70-ddec-4171-a66c-b98f93ec4285) + ) + (wire (pts (xy 140.97 36.83) (xy 140.97 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ce4b288-db0a-4392-8550-ab70ee56c1c6) + ) + (wire (pts (xy 142.24 161.29) (xy 157.48 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30269d4b-59da-49cf-a643-ecabdde7f857) + ) + (wire (pts (xy 157.48 78.74) (xy 157.48 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 344ed292-cc5a-42fc-b5fe-f4847c6fc489) + ) + (wire (pts (xy 156.21 43.18) (xy 156.21 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fb96b6a-ec9a-47c1-907d-09e23ed8dff6) + ) + (wire (pts (xy 142.24 78.74) (xy 157.48 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49e28341-388c-453c-bd44-3c43a5febc38) + ) + (wire (pts (xy 115.57 34.29) (xy 140.97 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f042557-97a0-436e-b9fd-4f1ec0a00bb4) + ) + (wire (pts (xy 142.24 154.94) (xy 142.24 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55cb5926-2416-4d69-9f28-e19332f0a9e8) + ) + (wire (pts (xy 142.24 72.39) (xy 142.24 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60f40935-3fcf-4b9d-b98b-d6538b36c45a) + ) + (wire (pts (xy 163.83 35.56) (xy 181.61 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7500e583-9aae-47aa-8dce-2c6e65c17746) + ) + (wire (pts (xy 116.84 52.07) (xy 140.97 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77567513-2c68-4f45-bb1f-671fa33e0198) + ) + (wire (pts (xy 118.11 69.85) (xy 142.24 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86cac2a6-ab15-4036-a5aa-b7d716266139) + ) + (wire (pts (xy 115.57 170.18) (xy 142.24 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87749541-344d-4d20-b948-01df9a7e64fe) + ) + (wire (pts (xy 118.11 152.4) (xy 142.24 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b401e93d-7ce6-4051-bc3c-6e663666ba9e) + ) + (wire (pts (xy 165.1 71.12) (xy 179.07 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bff433b7-e596-42f6-a8c4-216d7f079c6a) + ) + (wire (pts (xy 165.1 153.67) (xy 181.61 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c18bdb7a-3cdb-4ae3-931e-09ba11179586) + ) + (wire (pts (xy 123.19 110.49) (xy 140.97 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6630f1a-e573-45d7-9b63-6f161f22dfcf) + ) + (wire (pts (xy 140.97 113.03) (xy 140.97 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d975980b-61c8-4e1b-a9c7-4a63852e2283) + ) + (wire (pts (xy 140.97 119.38) (xy 156.21 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7ed6264-aec5-47b3-bdc7-9934b0ceec0b) + ) + (wire (pts (xy 157.48 161.29) (xy 157.48 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee717d6e-963d-400f-b3f4-99017d3fad13) + ) + (wire (pts (xy 156.21 119.38) (xy 156.21 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa618be6-426e-455e-9d1a-d2406b504105) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 110.49 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e141c42-a7d1-4bdc-92b5-35e0ed826e0c) + (property "Reference" "U1" (id 0) (at 117.475 105.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 117.475 107.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 116.84 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 874a08d0-1df6-4d6f-8705-8a8f662855f0)) + (pin "2" (uuid 37986b9c-8f01-48dc-882d-c940d0ac3ea2)) + (pin "3" (uuid 5150de65-fb3c-459d-9ccb-946c65476ff8)) + (pin "4" (uuid 6460686b-fde5-4146-aa2e-392174f89707)) + (pin "5" (uuid a90545dc-9387-4a20-b5a0-1f21a0f46703)) + (pin "6" (uuid e6873a15-d4a5-4092-b529-559b409f0e6a)) + (pin "7" (uuid 0163c2b0-b0a3-4fb9-a1cf-f74e9f940e08)) + (pin "8" (uuid 4e15a017-8234-4452-8ac2-8083dcf49f0c)) + (pin "9" (uuid b9f1a406-7fed-43ac-a088-a58c25319990)) + (pin "10" (uuid e3432680-bc29-4998-b6d8-7ce2dabd39fb)) + (pin "11" (uuid 9297ab8e-d8bd-4d4a-96f1-76c6b5fdf2e7)) + (pin "12" (uuid dc0d873e-192f-468d-b017-e5f3d94588f9)) + (pin "13" (uuid 2171cd8b-e588-4e0c-8be3-1258715101ba)) + (pin "14" (uuid 8e9bf4f5-e31a-46d2-819d-289798f256f5)) + (pin "15" (uuid d5928436-f42f-47d3-9891-ab1f3ed8b4a5)) + (pin "16" (uuid e9412b90-3238-4b01-bd4e-88f82fff31b2)) + (pin "17" (uuid 59d752a2-3309-4432-8911-e82e6d312fc8)) + (pin "18" (uuid 4ea0c4dd-dc6f-45ea-98f3-c57c6a03b44b)) + (pin "19" (uuid 312d85b0-e279-426c-987b-80cd8768b60e)) + (pin "20" (uuid 3e84f757-468e-4e1d-8e5b-94a7f3c7a625)) + (pin "21" (uuid cc2a9097-cde7-434b-acc9-0e41e34d2566)) + (pin "22" (uuid d878b2e8-eba7-4d06-82c0-c1b9180bac4a)) + (pin "23" (uuid 8a59024d-6299-4348-943b-4def1371e464)) + (pin "24" (uuid abbe56a6-af4c-4c12-bda8-c48aa0bc4b12)) + (pin "25" (uuid b93d93d3-2dbb-4216-b615-fc699b91b758)) + (pin "26" (uuid 2429de4c-1479-4788-ac8f-63f1326e18f7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 110.49 52.07 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 20c6dd1a-0d73-4402-bf34-905dac1b69bd) + (property "Reference" "U1" (id 0) (at 111.125 46.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 111.125 49.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 110.49 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 780c03b7-38fc-42db-affc-e180d1afb9b5)) + (pin "2" (uuid 8cdd1187-463e-4287-8897-52eced84bac9)) + (pin "3" (uuid 4252a320-464c-4ba9-af9e-dec2d2a4d49c)) + (pin "4" (uuid d9bcc170-6842-46ec-9aa9-64d6dd2b1dbc)) + (pin "5" (uuid e96abf5d-e19a-4acd-9eb6-c22c14bed6df)) + (pin "6" (uuid 8cb9d234-67e0-4192-97f7-19d3c9c4bc2f)) + (pin "7" (uuid e91450c0-0964-48ce-840c-561be757aa46)) + (pin "8" (uuid cb6b11bb-185b-4c74-9916-4093ffaf386d)) + (pin "9" (uuid eaf0889d-a148-4d49-b026-81f54258fe0d)) + (pin "10" (uuid 46ecff3f-b125-41da-a74f-6d6a6cb47c19)) + (pin "11" (uuid 07380d45-2351-4826-81f9-069e523d76b4)) + (pin "12" (uuid ee212942-95a9-4a7c-a87a-ee20881f5396)) + (pin "13" (uuid 98fb06d5-a838-443c-a026-cb45ac30c62c)) + (pin "14" (uuid 1a8f8657-d44a-4a5e-b799-1dc671ab1019)) + (pin "15" (uuid 6fdd2f65-58fe-49cd-a0c6-3714f56ed20a)) + (pin "16" (uuid ab699b22-9a61-4bb5-995b-5dbfc2a4a71a)) + (pin "17" (uuid 01863634-5f1d-4b47-8af5-b4eee50ee354)) + (pin "18" (uuid 7f43f4ca-1eb0-431a-9a21-c052c531916f)) + (pin "19" (uuid 6642db92-fb46-4582-961d-436043a05b63)) + (pin "20" (uuid 81b36496-59bb-4ce9-a4c2-d9b203d8b790)) + (pin "21" (uuid 28825984-b9f6-4c4a-8bea-84792ea583d6)) + (pin "22" (uuid 5f53673c-d680-4447-90ad-5cccbb7fc809)) + (pin "23" (uuid bae26f0d-1c43-49b0-a9f9-7a17bbe5c0f0)) + (pin "24" (uuid eb6de368-149c-4bdc-9981-3f47c9707771)) + (pin "25" (uuid b6392ab1-981c-4957-a7e7-6de3f9443dc5)) + (pin "26" (uuid 938c58e4-aed8-49a3-a1ad-7840d8e0d44a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 149.86 170.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 292439b2-36a0-4b1a-80be-31c1f21ea58b) + (property "Reference" "U5" (id 0) (at 149.86 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 149.86 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 151.13 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 151.13 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bc649403-96b8-4cfd-9ca3-38069a804533)) + (pin "2" (uuid ddcd3911-237e-4fa0-a814-3d8db42bb5e9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 111.76 69.85 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 29729632-709e-4b81-a859-304e5d6bbd3d) + (property "Reference" "U1" (id 0) (at 112.395 64.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 112.395 67.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 111.76 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 111.76 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7251078-7cb7-4dee-86fc-84cfd8a0f93e)) + (pin "2" (uuid 4e032e34-adf7-431c-bfe3-3e4d81ba5b22)) + (pin "3" (uuid 29114d3d-1c4c-4cb8-a4b3-b13a4606dd38)) + (pin "4" (uuid c358bdbd-6197-4823-8048-7a507d931bf2)) + (pin "5" (uuid 4ec0124e-f178-4dab-b230-367b84a9f007)) + (pin "6" (uuid a20cccd0-f0ca-4dd5-9ea6-23f4ce5ff27d)) + (pin "7" (uuid c6470002-eaeb-4201-bcef-eef4f7a590ed)) + (pin "8" (uuid 593b7730-c793-4ed0-b1a7-95a88a394a90)) + (pin "9" (uuid 5d322286-5ece-4e26-81b6-a803d618d822)) + (pin "10" (uuid 751d85a3-3bae-4af0-81ce-597df0621c49)) + (pin "11" (uuid c3a34509-8a54-4143-aa0b-332cb3d996f4)) + (pin "12" (uuid fceb3b83-68f8-466f-999d-0e2816b457e2)) + (pin "13" (uuid 0fb2c8d3-423d-48fd-b483-9e0c1ed15a13)) + (pin "14" (uuid c09d8b19-b438-4334-a8ad-1f51740af955)) + (pin "15" (uuid 477fb572-4bb4-4cff-9353-9267b97d87de)) + (pin "16" (uuid ec5abe8e-b019-487c-84c4-7289653d44c7)) + (pin "17" (uuid fb236f11-d23e-4ffb-a73e-14feafc650ce)) + (pin "18" (uuid 774a65ab-c1b6-4015-a90b-ca91666247a5)) + (pin "19" (uuid d2a47aa8-690b-45ae-96f2-57d6a3df72b9)) + (pin "20" (uuid 0bba1560-5149-4d1f-91ef-ccffcc0eaaa5)) + (pin "21" (uuid 61f81f7e-af62-4d72-af96-462c76684d7a)) + (pin "22" (uuid e504c4c1-c444-49c6-b999-c2810d8cad6c)) + (pin "23" (uuid e8710974-5b58-4b2f-8b07-43a9762ae443)) + (pin "24" (uuid f9a764d8-61eb-4d4b-af68-a9bc01c3ff04)) + (pin "25" (uuid 7d80679e-aaf4-494a-bcf1-ca7a5a18aba6)) + (pin "26" (uuid f782e824-fff4-4b44-9c22-b14a799c8c10)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 152.4 36.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3328326a-63ad-4efb-892d-919d70396179) + (property "Reference" "U6" (id 0) (at 152.4 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 152.4 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 152.4 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 152.4 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b3e16f4a-0787-4f24-b44b-6f25f1b56410)) + (pin "2" (uuid c83ad7f2-37fb-4084-84c0-861057f8fb92)) + (pin "3" (uuid 845f204d-370c-4752-894a-b4760ad494ed)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 185.42 71.12 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 379a8cd7-1267-4b9b-a04a-92c7a9d53c13) + (property "Reference" "U1" (id 0) (at 189.23 70.485 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 189.23 73.025 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 185.42 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 185.42 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1d5dd866-be78-4282-b9dc-296a948983be)) + (pin "2" (uuid 915e04fa-5f8a-402a-97e2-c9583b284c8f)) + (pin "3" (uuid e93f2a34-73a3-449a-8dac-903e6d76738f)) + (pin "4" (uuid 9e3a5fae-4b2a-4c36-ad10-a85de8443c64)) + (pin "5" (uuid 54ccbcab-8496-4250-a0f8-91d3c2c47f4c)) + (pin "6" (uuid 4e46c02b-c72c-4b80-bd08-86c7083d44be)) + (pin "7" (uuid 67ff9ba3-c9e1-4e23-b35b-5ebc8ff047cf)) + (pin "8" (uuid d97cb7e4-9c0e-4011-bda2-d4742d735482)) + (pin "9" (uuid d2e984e0-f552-42de-b5d0-f7f09699f3c2)) + (pin "10" (uuid e52a94eb-8b58-4aa3-8e08-04028776a941)) + (pin "11" (uuid 5b875d07-6f41-4d5b-a385-f308f852d059)) + (pin "12" (uuid e4354dd8-b1e4-4d2f-853e-0f8c1aad049b)) + (pin "13" (uuid f3ab85ea-7194-4589-b5d8-0a518942d45e)) + (pin "14" (uuid 3fa92ef9-bbe3-403b-9bd2-813cad83bb69)) + (pin "15" (uuid 7dca3dba-f87f-4984-a9be-1c24893bd0ab)) + (pin "16" (uuid 17dbfc94-1a91-4a11-8ad8-7a76d419c762)) + (pin "17" (uuid b09043a4-9ebd-4062-8a08-97aaf4de7795)) + (pin "18" (uuid 3282408a-3225-4828-8e61-17cd38e7b114)) + (pin "19" (uuid 3e747fbf-bd3b-4eec-9838-dfae46f5674d)) + (pin "20" (uuid 9a770a49-a67f-40bb-8681-1d0f03942ba9)) + (pin "21" (uuid 06ee0939-09e0-4f0d-958b-1bce9e8a12bf)) + (pin "22" (uuid 969b91b4-a842-4321-aead-9a31c8a43fb6)) + (pin "23" (uuid 5e01118a-55f9-462f-b17e-aaa5d24285dd)) + (pin "24" (uuid eac2735a-fa51-499e-8670-13dc714b6c71)) + (pin "25" (uuid add037ef-1048-4fd4-ad1e-62f9a7a51907)) + (pin "26" (uuid e2e61b46-a43d-47e0-ac9f-25d1a94ecc4c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 187.96 153.67 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 47a71472-d32e-43f6-adbe-683b8df78f60) + (property "Reference" "U1" (id 0) (at 191.77 153.035 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 191.77 155.575 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 187.96 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34b758f3-75c1-4892-b2ed-8a8f52ee10fa)) + (pin "2" (uuid 54196733-76da-4731-a987-b35a5b296508)) + (pin "3" (uuid 2d9413c4-9481-40d1-a7e2-188200031bc7)) + (pin "4" (uuid 265a1d11-b3e3-4eb6-8f14-b79c03efe337)) + (pin "5" (uuid 0cb83d19-d536-4720-97f9-21b15993da91)) + (pin "6" (uuid 3b8a925e-8307-4a76-be47-44118e82ba27)) + (pin "7" (uuid 10b8f563-ea49-4b49-9967-f71efdee3e38)) + (pin "8" (uuid ee670722-3c8f-4422-a467-874f3f6eb71e)) + (pin "9" (uuid 76226c79-d4f4-4e05-837f-057c888e736c)) + (pin "10" (uuid 554bd46a-29d6-4f84-a2a6-650df0fa2901)) + (pin "11" (uuid 62b594c2-e5b3-466e-81f9-32016935e28c)) + (pin "12" (uuid 1a5aa0c6-403b-4781-92ae-af4f267405a8)) + (pin "13" (uuid b4496dca-3231-467c-a916-9337d297bd57)) + (pin "14" (uuid 493956e2-3df7-4ab7-b83e-84a7da38a480)) + (pin "15" (uuid 93d3c3a1-d151-478c-a712-8daaab64129c)) + (pin "16" (uuid 2bab68f9-6c53-49b5-b1c9-0eb2f7ad5a14)) + (pin "17" (uuid cea10d5b-2b4b-4a8c-9d93-ab2089e2898f)) + (pin "18" (uuid e63374d7-8ad7-466c-86dd-96710d5f4d54)) + (pin "19" (uuid bbaa79d9-a37f-4f3f-b4f7-acb4bb3526cb)) + (pin "20" (uuid 1fda17bf-0bf5-4758-b273-daee503e5ac8)) + (pin "21" (uuid 12e51995-254d-4887-926a-f7617bbc77be)) + (pin "22" (uuid 1dd1a9e0-2b5b-45bf-b05e-76785b1e89ae)) + (pin "23" (uuid b33b4854-01da-455e-a4b4-06e51172636c)) + (pin "24" (uuid a4daaa86-0845-40d0-aef2-752e8e843968)) + (pin "25" (uuid 8e86bb4e-696b-44d0-adaf-4c21dfec1e73)) + (pin "26" (uuid e7145d8f-e16d-434a-a495-aaaa9b0ebc68)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 153.67 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4bc1be51-b108-432f-9d6f-4197681eb46a) + (property "Reference" "U9" (id 0) (at 153.67 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 153.67 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 153.67 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5eac628a-84b9-49a5-860a-0d365174f942)) + (pin "2" (uuid 5bc7c65b-f43d-4d37-a8c9-a6af52bfcbd8)) + (pin "3" (uuid bc3f1c92-cbd4-4175-825a-b981b7f480c0)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 153.67 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 64049bfd-d443-43f5-af00-7ba78e6e14f7) + (property "Reference" "U8" (id 0) (at 153.67 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 153.67 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 153.67 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f704e91-986d-488e-9534-8db6326a9e15)) + (pin "2" (uuid f17128be-6246-4c75-8f77-dba7160fff5c)) + (pin "3" (uuid a0c10e19-9de0-442d-8aa8-0855beec0847)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 87.63 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f09f182-a9a2-43b5-b774-886b136634d2) + (property "Reference" "U1" (id 0) (at 136.525 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 136.525 85.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 135.89 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a0312cce-5fbe-406a-a05e-af208e6ee1c5)) + (pin "2" (uuid e2bf28ef-218c-4760-b76a-0f0fc2c095c2)) + (pin "3" (uuid 7a8d726d-84f3-4da1-8425-fa3e314acd17)) + (pin "4" (uuid 06b5313b-4563-4b30-80c4-248fe8314d94)) + (pin "5" (uuid b11ac78a-2a56-44fa-bef9-c30b698c67fe)) + (pin "6" (uuid 73b8b571-a30b-40b9-807b-30ea4794d03e)) + (pin "7" (uuid 169aea9a-b523-4ecb-84c1-060f2425465f)) + (pin "8" (uuid 5dbadf6d-6f9e-42e2-9d6b-7cf4bce2872f)) + (pin "9" (uuid a0714aec-bd51-4a9d-8547-e4d7c608edc8)) + (pin "10" (uuid 353b9b42-af31-4bce-99f1-82a42f2b9a84)) + (pin "11" (uuid d7eff653-651f-43c6-bb32-ae9ec447f5aa)) + (pin "12" (uuid a6140679-d8e6-44c6-96bd-f17134e6672d)) + (pin "13" (uuid dcde8dc0-390a-4955-9b40-42784384c2af)) + (pin "14" (uuid e45ec83a-4353-46a6-acbb-6835db0b1707)) + (pin "15" (uuid 9cef6b8c-1469-4e6b-a251-ec2f0f83f08e)) + (pin "16" (uuid eab5db7a-37d3-48cf-bfbc-0bb33423eb85)) + (pin "17" (uuid ab2bdedc-6f3b-4b5c-8bfa-1e69bfc9047d)) + (pin "18" (uuid 43af6011-3445-456d-a5de-d099c8f33e23)) + (pin "19" (uuid 97b13d24-4dd9-478d-b4b8-5e254af3c285)) + (pin "20" (uuid 1a1cdcbc-b7db-459a-9bb7-0e9090633db6)) + (pin "21" (uuid 6b09d621-4adb-4d14-a5f5-8a4690d49482)) + (pin "22" (uuid 84d262e9-7e4a-48bd-839c-7ad71cd9cc74)) + (pin "23" (uuid cdf76064-bd74-4c49-8efc-13a94d9371d3)) + (pin "24" (uuid 568e4b65-0284-4d56-aa51-b96262f55826)) + (pin "25" (uuid 77ebd6bc-8ba7-47f4-bf80-9cd2a82d7da8)) + (pin "26" (uuid b576382b-7298-4ae8-a2b3-8b4b9e061985)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 109.22 170.18 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 944fd8f9-96e0-4521-babd-1bd9c668a9ef) + (property "Reference" "U1" (id 0) (at 109.855 165.1 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 109.855 167.64 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 109.22 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d06947d6-87d5-498e-8192-7e7e1304d1d3)) + (pin "2" (uuid 0c8b0bad-14e1-4281-bfbf-2aa9f9dbf486)) + (pin "3" (uuid 24606ff5-64c1-4907-8023-4bf6efe8d440)) + (pin "4" (uuid 8e7382c5-730f-4040-ab5a-c06fd3bca6ce)) + (pin "5" (uuid eaf5b5dc-9f83-4a18-830d-c67e1f3e53f8)) + (pin "6" (uuid a4f6192b-a83d-41cf-b756-d46218d40cf0)) + (pin "7" (uuid 5789a1a1-8fac-4215-97c7-131adb007987)) + (pin "8" (uuid 301e1878-7275-4bcf-b610-5ddb7cae3a12)) + (pin "9" (uuid eafd0c54-6c46-4102-90a7-1cf004d9b163)) + (pin "10" (uuid 32680885-e455-4113-b9b4-fc6bdcc2da94)) + (pin "11" (uuid 24b6e781-a204-4a8f-859e-3697922371c9)) + (pin "12" (uuid a8cdf4d5-1983-455d-967a-6c57b0795243)) + (pin "13" (uuid adadcf3a-34d3-41aa-9fa7-d3f32b48d325)) + (pin "14" (uuid 7f108a38-ea4b-4fe6-8fcd-ecddfe08a639)) + (pin "15" (uuid 475d9c55-f27d-4cfe-9a88-b73f3c0f8f37)) + (pin "16" (uuid bca4e1a9-e61d-4d15-bb32-c8e28ff0e8be)) + (pin "17" (uuid 8e9d6beb-80f2-46dd-9678-35ceb6e4602f)) + (pin "18" (uuid 9436f4cb-0971-4135-b96d-e29f9f0f97dd)) + (pin "19" (uuid 8cf819c6-f2f3-41ef-8630-741d950b8e34)) + (pin "20" (uuid d1be48c6-c63d-4318-b179-031ca1024ec9)) + (pin "21" (uuid 1aea4daf-12b4-4b4a-8279-5d37dfcf8506)) + (pin "22" (uuid e04e0177-e7bb-4263-aa4a-f4468eb77660)) + (pin "23" (uuid 2b289d91-c03a-4b99-adeb-d73912852f80)) + (pin "24" (uuid cdf2fb85-5e23-44ba-886f-ee02c4999623)) + (pin "25" (uuid 13b2e251-2d31-4b67-bd5b-3afeaa805464)) + (pin "26" (uuid 034c36dd-1306-44c8-b5ad-d7b0aaa04afd)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 109.22 34.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 96bfebf1-3650-48e4-acf0-fb74b7b26535) + (property "Reference" "U1" (id 0) (at 109.855 29.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 109.855 31.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 109.22 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58fbebc1-993d-479e-a1be-1f2e089c6fb9)) + (pin "2" (uuid 31ca8881-a17a-4ccf-b1f8-8264b759f011)) + (pin "3" (uuid d722a8ef-4539-4e98-94fe-97f2a74076b5)) + (pin "4" (uuid 0677e192-9be2-408e-b268-f0a1365c3f9c)) + (pin "5" (uuid d5d17192-3621-492d-aada-d62da2c3a512)) + (pin "6" (uuid 90493ba8-a65d-4f9b-838a-fef53eb04d1d)) + (pin "7" (uuid 3431e045-abf5-48a6-b166-5389af27986b)) + (pin "8" (uuid a7023a35-6120-437c-a65c-d752a9f99d97)) + (pin "9" (uuid 94d42b13-4088-4f78-9f70-2feb26738392)) + (pin "10" (uuid f2bcd12a-3701-4ea3-953b-7895c30eea7d)) + (pin "11" (uuid 0c237b99-2b2a-40f4-aa03-8f87c42373d5)) + (pin "12" (uuid d8987302-4b85-43ad-8c1b-d3bce585131d)) + (pin "13" (uuid 6ef7e7b3-e108-4d82-9903-afe9359cd6dc)) + (pin "14" (uuid f7e41f6f-884b-4959-b374-ed82a973648f)) + (pin "15" (uuid 55e02751-af66-4ea0-a45e-51d93e91cbd2)) + (pin "16" (uuid fb46b842-0896-4d23-bf4a-9d2e124c2f0f)) + (pin "17" (uuid 5b3fa711-0d9b-44eb-bcfa-2c6b6a32376d)) + (pin "18" (uuid 7adfb1f0-2e4f-42f7-94d5-0944480ed0ca)) + (pin "19" (uuid a25d62b2-186f-4363-8916-d7522b301013)) + (pin "20" (uuid 766aa47c-3ef2-4353-a1c3-a25304b44e7d)) + (pin "21" (uuid f8e7411e-5665-4a36-92d9-be0986b6397f)) + (pin "22" (uuid 044574c7-74d2-41d6-b2cf-87889c72697c)) + (pin "23" (uuid b0f6ee3f-faeb-4613-b8f7-442658bfa1d9)) + (pin "24" (uuid 18093bf9-077a-4a9f-abff-83532c2867a0)) + (pin "25" (uuid 48b45c1a-5368-4c1c-b746-072f74dd181b)) + (pin "26" (uuid ff57dec8-7068-4306-9b36-926fa6370d27)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 148.59 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a629676-0d01-4bee-ae97-bbabf45a0576) + (property "Reference" "U3" (id 0) (at 148.59 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 148.59 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 11970fd7-1071-4989-bc5f-f2c3e0ff5bc5)) + (pin "2" (uuid e77a6799-324f-4ac2-b629-691ec554e6ce)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 148.59 52.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9fb3e06b-f60b-4a9b-b7fd-9153a2670c4a) + (property "Reference" "U2" (id 0) (at 148.59 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 148.59 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cdb75171-3d1e-4ce5-a8d5-da08354c8fe5)) + (pin "2" (uuid 1b3c1381-d6ba-455d-97ea-fab3796d7df6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 170.18 111.76 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a9cd028f-43a4-420f-bda6-2b5ebe37c8f4) + (property "Reference" "U1" (id 0) (at 173.99 111.125 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 173.99 113.665 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 170.18 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3eb483ec-9869-47c4-992c-568195d72cf5)) + (pin "2" (uuid 167bec66-b417-4c13-bb36-3ede2284f0e8)) + (pin "3" (uuid 0dd19d56-df39-4b27-ace2-96c0fb4d8156)) + (pin "4" (uuid b4d0393c-9ad9-49b0-a51f-f4ba5e1f8b9b)) + (pin "5" (uuid 9af3ad97-ac27-4aff-95bf-fc24db09249d)) + (pin "6" (uuid 07dc7dd0-5f6f-4920-bec1-50f3ceeebc2c)) + (pin "7" (uuid 5a9ef1a6-3f14-40b0-a58c-cb3ec15bf5cc)) + (pin "8" (uuid 3750271a-a22e-4ce8-b3e8-5994cbaa0591)) + (pin "9" (uuid 7146fdce-77ee-4e91-a87b-c21f0f272e54)) + (pin "10" (uuid d5ffd9ef-2f82-46f3-96a3-41c2ae8d7657)) + (pin "11" (uuid cc290c50-02a8-4f9e-8a90-c8912eb51491)) + (pin "12" (uuid 383c1f97-85e7-4c6a-856f-51b95262f09f)) + (pin "13" (uuid 2dd84dcf-215c-4406-911b-9be775f6df0c)) + (pin "14" (uuid bf0d8d7e-a3a0-4741-907f-b670c0730da3)) + (pin "15" (uuid 12cf9252-ac8d-48f9-b9e9-0ef4d70822c8)) + (pin "16" (uuid d731902a-778a-4be6-a019-906606888b4a)) + (pin "17" (uuid ac7c91ee-f48c-420b-a078-e3d0f17e460b)) + (pin "18" (uuid c82f1d3c-af47-4133-9216-2269698ce4be)) + (pin "19" (uuid 714dd595-98f4-4108-9d4e-2556c19b7691)) + (pin "20" (uuid a71931d7-9f09-4d7c-92a3-fcff0c99f251)) + (pin "21" (uuid d1ca6327-b3ed-4e39-8aee-40a30f85531d)) + (pin "22" (uuid 68283b88-ed81-4dd7-9fd2-1b359f64f487)) + (pin "23" (uuid 76de86f0-e926-4c28-bf52-e197b89668f1)) + (pin "24" (uuid 5cc09b6f-b8dd-4b89-a3cd-d1f3cd77f0bd)) + (pin "25" (uuid eb5e97fa-ab4a-4d8f-be14-ba79d4d67ac2)) + (pin "26" (uuid 91ffd064-ed1b-48c4-9456-5cbf91ff2561)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 187.96 35.56 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b4038a09-d9a9-46b0-9362-307f20654ce0) + (property "Reference" "U1" (id 0) (at 191.77 34.925 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 191.77 37.465 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 187.96 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 57811fc8-72ef-4fec-b58c-f2d59597055a)) + (pin "2" (uuid fdb66f67-59b1-4ae8-8e77-40f7928f1ee2)) + (pin "3" (uuid ddef41f5-45a7-48d9-99d2-85232dc74685)) + (pin "4" (uuid 971219bd-6d31-455a-818a-ec9d186bbeb5)) + (pin "5" (uuid 0376886f-5cfa-487b-96b2-2533de3ee492)) + (pin "6" (uuid b7824e09-3760-4e95-b08a-e5fa61218a17)) + (pin "7" (uuid 74eada2c-4063-40f7-bebe-d88d03c367fb)) + (pin "8" (uuid b77d59b8-9b18-4226-a036-33e56a49c141)) + (pin "9" (uuid 0ced58b3-46bb-4ed2-bb8e-c4e5f719e78c)) + (pin "10" (uuid 58108e14-957c-4409-a3fa-e218bfccfc79)) + (pin "11" (uuid e608964c-2899-49fd-903d-3741d80da30c)) + (pin "12" (uuid a57cd58d-7554-48d7-906a-0c195132c10b)) + (pin "13" (uuid 71cfed08-6f0f-4de2-a86e-5590d894c084)) + (pin "14" (uuid 1b513bad-a762-438d-9dc7-343999d3c6df)) + (pin "15" (uuid e2f61547-ea94-4d72-9e86-5f077d5c28b2)) + (pin "16" (uuid fbdff469-d423-4ec5-8f67-0eee121ab582)) + (pin "17" (uuid 32d5c0c3-8922-4f37-aef6-4b299116b014)) + (pin "18" (uuid 504d7add-8e31-4a65-8983-a52df3a523e8)) + (pin "19" (uuid 5bb7b926-a345-4352-a617-1016b9572f86)) + (pin "20" (uuid 20fbd4d3-c98c-4a96-99f6-c2b56f64c783)) + (pin "21" (uuid 795ef206-2dcf-4281-b3f2-90fef4927e1b)) + (pin "22" (uuid 43d40aab-0b53-4fd8-a87e-88c972d06bf1)) + (pin "23" (uuid ac838935-d640-48b3-ab72-b1587656c499)) + (pin "24" (uuid ece34bc5-ccc3-4cdf-8369-17dbe1a72e8e)) + (pin "25" (uuid c08ff581-a6d1-4308-934f-75ec388055db)) + (pin "26" (uuid 4a13d167-98e1-4956-973e-c880e5e77bf0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 111.76 152.4 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b66cd060-82e7-4b48-adc5-376525be6303) + (property "Reference" "U1" (id 0) (at 112.395 147.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 112.395 149.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 111.76 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 111.76 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7736eaee-2007-43da-a942-0dc1746512ab)) + (pin "2" (uuid 02867606-18a4-471d-9d25-697be022b5b2)) + (pin "3" (uuid 20808611-dde5-47a7-b406-f6239cc42958)) + (pin "4" (uuid d291b65b-fab4-4fa8-84fd-025bb8d3cbec)) + (pin "5" (uuid c2bbfb36-299d-48b1-acb2-f0415b73121a)) + (pin "6" (uuid 9e118aa8-dcef-440e-8144-85bf0e2eb923)) + (pin "7" (uuid c96e3a0e-f5cc-46ef-99df-5f93c223896b)) + (pin "8" (uuid 900034d3-5ce4-4f2b-8584-6083c073a42f)) + (pin "9" (uuid a07944e0-9287-4923-ab82-2a9492a8e3e8)) + (pin "10" (uuid 0a5ced75-f9a3-466e-b262-790ad9461fd3)) + (pin "11" (uuid 77177fab-ab43-42a1-b3c5-58bc3b4afe71)) + (pin "12" (uuid d4c501f0-3d0e-40de-a896-7dad9899b844)) + (pin "13" (uuid cd4351ba-0bc4-4101-bf15-98f6681a638d)) + (pin "14" (uuid 8bc5b114-bbcb-4383-aec2-789f2beda857)) + (pin "15" (uuid 2449a026-a4c1-4cf8-b150-dc1764f5e450)) + (pin "16" (uuid 03017939-d31a-4264-9e8c-6f93bedc08a2)) + (pin "17" (uuid 6eb4304f-8ff7-44d9-87b1-5c7ef810ecba)) + (pin "18" (uuid 0968e117-6235-4f99-bfdc-5a37682219c4)) + (pin "19" (uuid 91119f90-0dec-4750-82e5-30013f94df36)) + (pin "20" (uuid 25b8d121-faec-465f-b84c-d5114c11a1a4)) + (pin "21" (uuid d91a66e0-b53e-4a5a-9289-675f0493ddda)) + (pin "22" (uuid 1a4ed80b-761c-4392-bc06-8a2399b7e053)) + (pin "23" (uuid 435ee062-3763-430b-88b1-7e0614c2ff41)) + (pin "24" (uuid 3d38a170-39e2-4706-bbf6-270886fe04da)) + (pin "25" (uuid 980461c3-4e13-4cd0-85d6-7a4cfe342cad)) + (pin "26" (uuid b245666c-b162-480e-a6b2-43816ddb08fd)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 113.03 128.27 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d5d87198-9136-4012-95e6-73994decfb31) + (property "Reference" "U1" (id 0) (at 113.665 123.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 113.665 125.73 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 113.03 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 113.03 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 694567c5-f033-465c-bd4b-520b885640b6)) + (pin "2" (uuid 8552a65c-823b-4ea8-85d1-ad3bd966bd33)) + (pin "3" (uuid 6f8c5767-dfa4-469d-a59a-8a708a2abad3)) + (pin "4" (uuid 416fe0d3-f4d1-43fe-9a63-80d8db826f3f)) + (pin "5" (uuid b6b28efc-d0fd-4dce-85c8-f046452c6af8)) + (pin "6" (uuid 7297a009-e33a-4c35-82ed-25366028deac)) + (pin "7" (uuid a143ad16-560f-421d-b6a1-3fd197844503)) + (pin "8" (uuid 7cf2289f-fc79-4972-9a18-51f93e8e627b)) + (pin "9" (uuid f07a7c01-a9bf-45fe-bd38-6c6d732b4cf9)) + (pin "10" (uuid 0c062b0d-ba50-47d5-849c-c96906fc580a)) + (pin "11" (uuid eda343d4-e426-4624-ae37-8f68e9f3cf41)) + (pin "12" (uuid 81f079b5-1458-4fd5-8441-923eb043870d)) + (pin "13" (uuid 53493b87-437c-422c-85c5-41271a7049fe)) + (pin "14" (uuid 9f01561b-190e-48ff-bf40-5332eb5b6f30)) + (pin "15" (uuid ecc1ecbf-1408-4472-a62f-33c087241246)) + (pin "16" (uuid 140ed39d-6686-419d-b73d-2bfc5c83131d)) + (pin "17" (uuid 6e43c1cb-815c-4820-85f4-d513da084f65)) + (pin "18" (uuid ba31e30a-60b3-411b-8ab2-c0b9300c26ee)) + (pin "19" (uuid 5defb1b9-f506-492d-a9af-05c7f8fe621b)) + (pin "20" (uuid ec877336-97ef-433d-a532-790ca4487135)) + (pin "21" (uuid 1e7f7b3b-4df2-4420-9588-9f3302e0bc02)) + (pin "22" (uuid 78f003e9-d02c-465d-89b8-bfb3975a2ff4)) + (pin "23" (uuid d41ffc1e-dd36-4c23-a3bd-c9f58255a6a6)) + (pin "24" (uuid 7ffc20d4-138c-400c-baf1-af2085a51ea5)) + (pin "25" (uuid 27b6e781-413d-4286-b03d-6178a40ac3fd)) + (pin "26" (uuid 0c6bbe61-8f0c-42f5-adf7-854d167be2c5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 149.86 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ebe409d2-d63d-4d34-863b-788119f9a1cc) + (property "Reference" "U4" (id 0) (at 149.86 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 149.86 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 151.13 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 151.13 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d6dce897-0293-436f-b10d-bcf9859b2757)) + (pin "2" (uuid 73e81475-4a07-482b-a771-5219f62e3e24)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 152.4 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed2ecada-e29f-47ce-aaaf-9e2a2f00a6a4) + (property "Reference" "U7" (id 0) (at 152.4 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 152.4 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 152.4 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 152.4 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 99934f89-e27c-4fb1-883b-00b560c21915)) + (pin "2" (uuid 2b4da7b8-39ec-49b8-9555-7b9df6ea7260)) + (pin "3" (uuid a7d7f115-efbc-4ab1-8482-e4fa4a8175f3)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/96bfebf1-3650-48e4-acf0-fb74b7b26535" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/20c6dd1a-0d73-4402-bf34-905dac1b69bd" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/29729632-709e-4b81-a859-304e5d6bbd3d" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/8f09f182-a9a2-43b5-b774-886b136634d2" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/0e141c42-a7d1-4bdc-92b5-35e0ed826e0c" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/d5d87198-9136-4012-95e6-73994decfb31" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/b66cd060-82e7-4b48-adc5-376525be6303" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/944fd8f9-96e0-4521-babd-1bd9c668a9ef" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/b4038a09-d9a9-46b0-9362-307f20654ce0" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/379a8cd7-1267-4b9b-a04a-92c7a9d53c13" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/a9cd028f-43a4-420f-bda6-2b5ebe37c8f4" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/47a71472-d32e-43f6-adbe-683b8df78f60" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/9fb3e06b-f60b-4a9b-b7fd-9153a2670c4a" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9a629676-0d01-4bee-ae97-bbabf45a0576" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ebe409d2-d63d-4d34-863b-788119f9a1cc" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/292439b2-36a0-4b1a-80be-31c1f21ea58b" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3328326a-63ad-4efb-892d-919d70396179" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/ed2ecada-e29f-47ce-aaaf-9e2a2f00a6a4" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/64049bfd-d443-43f5-af00-7ba78e6e14f7" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/4bc1be51-b108-432f-9d6f-4197681eb46a" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/74LS125_sub/74LS125_sub.proj b/library/SubcircuitLibrary/74LS125_sub/74LS125_sub.proj new file mode 100644 index 000000000..20977a928 --- /dev/null +++ b/library/SubcircuitLibrary/74LS125_sub/74LS125_sub.proj @@ -0,0 +1 @@ +schematicFile 74LS125_sub.kicad_sch diff --git a/library/SubcircuitLibrary/74LS125_sub/74LS125_test.cir b/library/SubcircuitLibrary/74LS125_sub/74LS125_test.cir new file mode 100644 index 000000000..59470fe75 --- /dev/null +++ b/library/SubcircuitLibrary/74LS125_sub/74LS125_test.cir @@ -0,0 +1,16 @@ +.title KiCad schematic +U3 Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U2-Pad5_ Net-_U2-Pad6_ Net-_U2-Pad7_ Net-_U2-Pad8_ Net-_U3-Pad9_ Net-_U3-Pad10_ Net-_U3-Pad11_ Net-_U3-Pad12_ 74LS125 +U7 Net-_U4-Pad7_ plot_v1 +U8 Net-_U4-Pad8_ plot_v1 +U5 Net-_U4-Pad5_ plot_v1 +U6 Net-_U4-Pad6_ plot_v1 +U4 Net-_U3-Pad9_ Net-_U3-Pad10_ Net-_U3-Pad11_ Net-_U3-Pad12_ Net-_U4-Pad5_ Net-_U4-Pad6_ Net-_U4-Pad7_ Net-_U4-Pad8_ dac_bridge_4 +v4 Net-_U1-Pad4_ GND pulse +v6 unconnected-_v6-Pad1_ GND pulse +v5 Net-_U2-Pad1_ GND pulse +v3 Net-_U1-Pad3_ GND pulse +v2 Net-_U1-Pad2_ GND pulse +v1 Net-_U1-Pad1_ GND pulse +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ adc_bridge_4 +U2 Net-_U2-Pad1_ Net-_U2-Pad1_ Net-_U2-Pad1_ Net-_U2-Pad1_ Net-_U2-Pad5_ Net-_U2-Pad6_ Net-_U2-Pad7_ Net-_U2-Pad8_ adc_bridge_4 +.end diff --git a/library/SubcircuitLibrary/74LS125_sub/74LS125_test.kicad_sch b/library/SubcircuitLibrary/74LS125_sub/74LS125_test.kicad_sch new file mode 100644 index 000000000..4debfaea5 --- /dev/null +++ b/library/SubcircuitLibrary/74LS125_sub/74LS125_test.kicad_sch @@ -0,0 +1,1032 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid d995f52c-1c7c-444d-b2f8-1e126c4683d6) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:74LS125" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "74LS125" (id 1) (at 0 3.81 90) + (effects (font (size 1 1))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "74LS125_0_1" + (rectangle (start -6.35 12.7) (end 7.62 -11.43) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "74LS125_1_1" + (pin input line (at -8.89 10.16 0) (length 2.54) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 6.35 0) (length 2.54) + (name "Y2" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 2.54 0) (length 2.54) + (name "Y3" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 -2.54 0) (length 2.54) + (name "Y4" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 7.62 0) (length 2.54) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 5.08 0) (length 2.54) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 2.54 0) (length 2.54) + (name "A4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 0 0) (length 2.54) + (name "OE1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -2.54 0) (length 2.54) + (name "OE2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -5.08 0) (length 2.54) + (name "OE3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -7.62 0) (length 2.54) + (name "OE4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 10.16 0) (length 2.54) + (name "Y1" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 101.6 179.07) (diameter 0) (color 0 0 0 0) + (uuid 1a4c417f-d07d-44d1-b612-1ddd5c0dd78f) + ) + (junction (at 111.76 191.77) (diameter 0) (color 0 0 0 0) + (uuid 2fdec153-b6f8-481d-aab9-f0e793b5150f) + ) + (junction (at 127 81.28) (diameter 0) (color 0 0 0 0) + (uuid 57aa3e7e-bfc2-4370-8088-06c6b29708d7) + ) + (junction (at 127 78.74) (diameter 0) (color 0 0 0 0) + (uuid 72ddb380-4951-4ec9-bf77-6252bdce3517) + ) + (junction (at 127 76.2) (diameter 0) (color 0 0 0 0) + (uuid 7e810d09-fe1b-4337-b699-3342456f033e) + ) + (junction (at 97.79 143.51) (diameter 0) (color 0 0 0 0) + (uuid ac952f72-3af3-4b38-9613-4b4167171871) + ) + (junction (at 93.98 115.57) (diameter 0) (color 0 0 0 0) + (uuid eb86ea63-bc74-414b-91e6-8ad1fa3e2bb5) + ) + (junction (at 88.9 87.63) (diameter 0) (color 0 0 0 0) + (uuid f2531ef5-e095-424f-993d-5e2b9c76bcd9) + ) + + (wire (pts (xy 199.39 53.34) (xy 199.39 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03e01440-95fe-418e-af7f-6138459f3079) + ) + (wire (pts (xy 111.76 194.31) (xy 111.76 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 060a93ae-5527-4c0b-b4fd-9752601c35ea) + ) + (wire (pts (xy 93.98 110.49) (xy 93.98 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07534afd-c202-48af-9337-7501efd13a7f) + ) + (wire (pts (xy 105.41 50.8) (xy 83.82 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 089e1c47-08a7-460e-b2ff-f8f46982562c) + ) + (wire (pts (xy 184.15 52.07) (xy 184.15 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e1011e2-6d0b-4baa-ad6f-194a42d33278) + ) + (wire (pts (xy 161.29 67.31) (xy 167.64 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e64d0d1-4c5a-4000-a83c-e0bbdfe6c341) + ) + (wire (pts (xy 107.95 142.24) (xy 127 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13964f23-31af-423b-9b21-5f8e3e559bcc) + ) + (wire (pts (xy 83.82 87.63) (xy 88.9 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19e1ba9a-a46e-4059-a8fe-7995af5f07cb) + ) + (wire (pts (xy 118.11 191.77) (xy 118.11 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a0fd479-6413-463d-a22c-8c359d1ba184) + ) + (wire (pts (xy 107.95 191.77) (xy 111.76 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20276406-cf9f-44b7-99b4-615bf92b0f35) + ) + (wire (pts (xy 127 73.66) (xy 130.81 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20c6b6a7-74b1-4c17-ab45-306589d51d73) + ) + (wire (pts (xy 105.41 110.49) (xy 93.98 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 220aa0be-8bba-49a8-9b9f-62ba1d09a36a) + ) + (wire (pts (xy 227.33 59.69) (xy 238.76 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b92637b-320c-48dd-9df3-48a494405cee) + ) + (wire (pts (xy 184.15 62.23) (xy 199.39 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bf36f76-46be-4d81-96de-9afae850e76d) + ) + (wire (pts (xy 106.68 114.3) (xy 125.73 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e60c768-7c28-4aaa-86ed-3e7b3a013020) + ) + (wire (pts (xy 105.41 80.01) (xy 88.9 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f7ab342-b15a-41a6-be9a-2ad98828ff29) + ) + (wire (pts (xy 105.41 27.94) (xy 128.27 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f84870f-db54-44e6-9233-4bedf964b5d3) + ) + (wire (pts (xy 161.29 78.74) (xy 161.29 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4400a824-a4c8-4169-b4cf-dafe62cce817) + ) + (wire (pts (xy 93.98 115.57) (xy 93.98 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4668f97c-ab9b-4567-b3e7-d5a156bb7954) + ) + (wire (pts (xy 158.75 59.69) (xy 158.75 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48231c1d-2905-4921-a7cd-7a231cd7dffa) + ) + (wire (pts (xy 238.76 59.69) (xy 238.76 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a21f822-ddbc-4dad-8412-5d388872d0b8) + ) + (wire (pts (xy 158.75 76.2) (xy 160.02 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ac1cc1e-131f-4e69-8798-eb95017cd1a7) + ) + (wire (pts (xy 105.41 57.15) (xy 121.92 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fd5c619-0c13-4032-8efd-f78b68c8803a) + ) + (wire (pts (xy 125.73 52.07) (xy 128.27 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 528aad27-84a5-4d39-a5c0-2164c007b3f0) + ) + (wire (pts (xy 160.02 76.2) (xy 160.02 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53f9b799-388a-4c61-8612-a26bd5415d71) + ) + (wire (pts (xy 123.19 87.63) (xy 123.19 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54c0eee9-2e56-4df3-ba0e-ae04e1663430) + ) + (wire (pts (xy 158.75 73.66) (xy 158.75 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 589fda9b-5a32-473c-bfb9-0006b4eb0b55) + ) + (wire (pts (xy 156.21 49.53) (xy 165.1 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5953eae4-96e8-4632-961c-1eba8a43626b) + ) + (wire (pts (xy 158.75 81.28) (xy 165.1 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64bfc3d2-b38e-41c0-a4b3-b64cefca6590) + ) + (wire (pts (xy 127 78.74) (xy 130.81 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67f122e7-d223-4423-8fd6-023cce1fa9bf) + ) + (wire (pts (xy 121.92 46.99) (xy 128.27 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6806ce5b-64be-4178-bf9b-c737167ea48a) + ) + (wire (pts (xy 88.9 115.57) (xy 93.98 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69655f67-2935-46ed-80fe-38052681db13) + ) + (wire (pts (xy 127 81.28) (xy 127 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6abf0ce2-0fd6-4ea4-b4c7-91196f4d58e4) + ) + (wire (pts (xy 97.79 137.16) (xy 97.79 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ac03fe0-0d16-45d8-ba15-a57c43d6f6b3) + ) + (wire (pts (xy 107.95 165.1) (xy 101.6 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b3a3efe-f40f-46c5-8902-d018d17a9ab9) + ) + (wire (pts (xy 184.15 53.34) (xy 199.39 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bd8aaaa-0343-4922-ad21-332031d3fb6d) + ) + (wire (pts (xy 127 81.28) (xy 130.81 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6cd7fa70-c39c-4ff9-9446-5bb9d451c084) + ) + (wire (pts (xy 125.73 114.3) (xy 125.73 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d9a7d52-1e96-4184-8aa6-8298d0bec818) + ) + (wire (pts (xy 165.1 57.15) (xy 167.64 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72413966-3aee-41ed-8fa2-0aae0979a480) + ) + (wire (pts (xy 166.37 54.61) (xy 167.64 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72dbea14-504d-4500-b931-462810ade556) + ) + (wire (pts (xy 195.58 57.15) (xy 184.15 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7563da1f-6f05-4a2d-9ae6-d33bb7f907b6) + ) + (wire (pts (xy 184.15 57.15) (xy 184.15 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7899e3bd-9799-4f6a-8594-5769fa97a7e8) + ) + (wire (pts (xy 156.21 46.99) (xy 166.37 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7add7acd-91d4-4740-a367-fc614ba54bc2) + ) + (wire (pts (xy 237.49 62.23) (xy 237.49 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82e35d36-77f9-4179-b6f7-af167bfe6f94) + ) + (wire (pts (xy 156.21 44.45) (xy 167.64 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 876c3b7f-0d8c-4618-8754-abe57271e0f9) + ) + (wire (pts (xy 88.9 80.01) (xy 88.9 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c159da0-608b-446f-b10e-48c971a9970c) + ) + (wire (pts (xy 238.76 62.23) (xy 241.3 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e3ba54a-e083-4486-9d5c-93f5096cb1ea) + ) + (wire (pts (xy 127 76.2) (xy 127 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8eeb8166-6bc5-430f-a1b5-368d41fb356b) + ) + (wire (pts (xy 123.19 49.53) (xy 128.27 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 958bb174-6d52-46a5-b534-44df6f21078c) + ) + (wire (pts (xy 158.75 78.74) (xy 161.29 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9daed69c-6e1d-4d4f-9702-82ff702de56f) + ) + (wire (pts (xy 184.15 59.69) (xy 184.15 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e3f4fd2-abb1-4d97-8615-7d54ef1c389f) + ) + (wire (pts (xy 227.33 57.15) (xy 233.68 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a40ea5ed-ccb4-4d3a-80f2-e0e6dca2cc35) + ) + (wire (pts (xy 227.33 64.77) (xy 236.22 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b229c324-ae85-46ba-9e6d-443250fa72db) + ) + (wire (pts (xy 121.92 57.15) (xy 121.92 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6a5b998-1f72-4441-8e1c-8d79b418bee8) + ) + (wire (pts (xy 97.79 143.51) (xy 97.79 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b80355fc-67b7-478b-9c37-555c9b3b1bb6) + ) + (wire (pts (xy 233.68 57.15) (xy 233.68 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid baf9d70b-e7a3-4c25-8173-9e69820f03cb) + ) + (wire (pts (xy 93.98 143.51) (xy 97.79 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bafe0a74-cff3-4b9b-8251-9256b95996ac) + ) + (wire (pts (xy 105.41 87.63) (xy 123.19 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb7f5cf3-9160-42a2-a5f3-38560dcfa68e) + ) + (wire (pts (xy 97.79 179.07) (xy 101.6 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdbfe424-14d0-4b9d-9a86-78efc878aae5) + ) + (wire (pts (xy 167.64 44.45) (xy 167.64 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdeff7ab-b884-4ab9-a725-6b55b78c5ed1) + ) + (wire (pts (xy 160.02 64.77) (xy 167.64 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3e0c79e-b2ef-4088-b331-1c74ed2bb277) + ) + (wire (pts (xy 101.6 194.31) (xy 111.76 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c64010ae-7d89-4f42-9fdc-147ff1b38832) + ) + (wire (pts (xy 128.27 27.94) (xy 128.27 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8325214-55aa-4574-8b79-cb723f43c6f4) + ) + (wire (pts (xy 184.15 64.77) (xy 199.39 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cde4d6cf-bd40-4641-b57b-0b359981fcd2) + ) + (wire (pts (xy 101.6 179.07) (xy 101.6 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d10faf92-1947-4b3b-9aae-42e5ed7d24b1) + ) + (wire (pts (xy 127 142.24) (xy 127 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4517d83-9b88-4ed2-aa9b-96ef7c4b93e3) + ) + (wire (pts (xy 101.6 165.1) (xy 101.6 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4e631bb-5605-491c-93dc-981a4ed29397) + ) + (wire (pts (xy 236.22 64.77) (xy 236.22 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc23fd2b-b79a-4688-a60a-b14177496219) + ) + (wire (pts (xy 88.9 87.63) (xy 88.9 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ddfb7f33-1d6a-48e5-a687-f6a33844003c) + ) + (wire (pts (xy 106.68 137.16) (xy 97.79 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de341346-0fc3-45ee-910b-0eb2c97e37ed) + ) + (wire (pts (xy 158.75 59.69) (xy 167.64 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de83877e-c809-4af4-909f-39ec1574d104) + ) + (wire (pts (xy 166.37 46.99) (xy 166.37 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de9dd5d5-9f39-41ae-81da-8947fd2214ef) + ) + (wire (pts (xy 158.75 62.23) (xy 167.64 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3d83531-828e-4d93-b898-89ebd4ccfc2b) + ) + (wire (pts (xy 127 78.74) (xy 127 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3f8703d-3939-467f-b242-ca3b702ec81b) + ) + (wire (pts (xy 195.58 59.69) (xy 195.58 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9829f99-7cbd-4411-8acb-0613dc8db101) + ) + (wire (pts (xy 127 76.2) (xy 130.81 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb61e12f-0f21-4e2d-8304-5418290690b2) + ) + (wire (pts (xy 83.82 50.8) (xy 83.82 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec0724b8-4656-45c7-87a8-9c8fed8e8820) + ) + (wire (pts (xy 165.1 69.85) (xy 167.64 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecf202fa-7c1d-4a5e-a9f8-161c95de5608) + ) + (wire (pts (xy 227.33 62.23) (xy 237.49 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid effb1ded-376c-40b4-b861-a68e449fb5bf) + ) + (wire (pts (xy 199.39 59.69) (xy 195.58 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f315d850-0f1a-45fe-a215-43c5ab315c76) + ) + (wire (pts (xy 111.76 191.77) (xy 118.11 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5f176d2-0f72-4524-b00e-38cf187db34d) + ) + (wire (pts (xy 236.22 82.55) (xy 246.38 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5f2e9ff-fd5b-4b26-a8ef-9ce9ae74656c) + ) + (wire (pts (xy 165.1 49.53) (xy 165.1 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6bb6328-7694-4d35-a970-3cf2e97733fd) + ) + (wire (pts (xy 158.75 52.07) (xy 156.21 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f709178a-7d26-4793-973a-189574bb26df) + ) + (wire (pts (xy 165.1 81.28) (xy 165.1 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb5019c3-0389-4bcd-9872-1f63b053cc26) + ) + (wire (pts (xy 237.49 73.66) (xy 242.57 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd1e3aeb-b05b-4eff-a885-de4661f7bb57) + ) + + (symbol (lib_id "eSim_Subckt:74LS125") (at 176.53 62.23 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 07f322fc-83f1-4bc8-b9e1-702bd0466f6e) + (property "Reference" "U3" (id 0) (at 175.26 59.69 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "74LS125" (id 1) (at 176.53 62.23 0) + (effects (font (size 1 1)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 176.53 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 176.53 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 02d8c293-4417-4c31-bffe-e7f028bb4703)) + (pin "10" (uuid ef396c31-c028-4e64-8954-c7d2fa0335eb)) + (pin "11" (uuid 7ae74d73-cbd5-4d35-ad27-9a2ca32a2786)) + (pin "12" (uuid 124c5c83-5ba7-41d9-b13f-2828a90c2ddb)) + (pin "2" (uuid 3181f8d3-84ae-4b17-ba64-5f83547c719b)) + (pin "3" (uuid be4923d1-4c18-4562-b391-f8d55442d77c)) + (pin "4" (uuid 96ea1fbe-6891-4119-a914-678a4e6ffc97)) + (pin "5" (uuid 09f18f74-0591-403a-9ef0-7333ba889f65)) + (pin "6" (uuid d6aa6700-5ed5-463f-8016-a4245aeee110)) + (pin "7" (uuid 0b538671-bf06-4933-9d58-fefaaee7f96c)) + (pin "8" (uuid 25b21e3e-a45b-4a81-bc97-372c1b3bfa8c)) + (pin "9" (uuid 6c43f922-aaef-4af2-8634-ace411204b5c)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 241.3 67.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1cd33f80-b755-494b-9f85-0e0552a33c76) + (property "Reference" "U6" (id 0) (at 245.11 53.34 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 245.11 57.15 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 241.3 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 923e24c5-82d3-4a17-bdab-5ea153b69c52)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_4") (at 213.36 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2a575ba3-937c-45be-ba6d-b349c10c29da) + (property "Reference" "U4" (id 0) (at 213.36 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_4" (id 1) (at 213.36 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4c79c1f7-43a0-4160-abeb-2b8482d4c776)) + (pin "2" (uuid 59835c19-a060-46bc-b27a-97e9b139e1f9)) + (pin "3" (uuid 420110e8-0d3c-4237-8d93-b6980cb8a18b)) + (pin "4" (uuid 1a276791-90ae-49d0-9d7c-f4c5fec64993)) + (pin "5" (uuid d15c04f5-dbb3-4327-80f5-e2fee0acd966)) + (pin "6" (uuid 261bf078-06da-4e49-8807-d9d9622c89f6)) + (pin "7" (uuid ffdb870a-2b8f-42ab-a7a4-2bd8974d1b0a)) + (pin "8" (uuid 62ab2a54-3c78-461d-9407-d390f1bb0d10)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 107.95 180.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3e180232-21a4-4d04-b120-6c4ef5d29310) + (property "Reference" "v6" (id 0) (at 113.03 177.165 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 113.03 180.975 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 113.03 184.785 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 107.95 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid abd19120-5cef-4e0e-9f6a-c4102b251be4)) + (pin "2" (uuid 3cd41b17-d812-413a-b849-16b341cf7f71)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 106.68 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6c73cb64-2834-438f-bbbb-f2b763063a48) + (property "Reference" "v4" (id 0) (at 111.76 122.555 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 111.76 126.365 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 111.76 130.175 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 106.68 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 95796927-2285-432e-bbc1-8e1f5fb8e830)) + (pin "2" (uuid 7286b65b-faf6-4d3b-bf94-dbed5bce599a)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 105.41 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8aafc96a-ebc0-4288-af10-c6b88f787ead) + (property "Reference" "v1" (id 0) (at 110.49 36.195 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 110.49 40.005 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 110.49 43.815 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 105.41 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 82bc7688-7ccb-4d24-b6ec-e5f1f8396ff1)) + (pin "2" (uuid a85d010f-b1b0-498d-ad7f-3a92be47cfa0)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 142.24 49.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a07fa815-358c-4b2a-9f23-bcaa24bd65d7) + (property "Reference" "U1" (id 0) (at 142.24 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 142.24 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 142.24 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bb1a4419-9ea3-4528-b61a-25816de3e354)) + (pin "2" (uuid c968e7c7-6436-42ed-92f2-555e69dc7e98)) + (pin "3" (uuid c162f9c9-0850-4358-8c6d-9345b1bdde70)) + (pin "4" (uuid 9a1c6e31-3cbd-48b9-8719-5f4b71846cb0)) + (pin "5" (uuid c72b78b0-3eab-4389-9e70-7b658d0d76b3)) + (pin "6" (uuid eac2db94-c278-4d3a-a80a-033e3733ec47)) + (pin "7" (uuid 8c10313d-82f1-4c86-b927-0eb8b3ba6fa6)) + (pin "8" (uuid 23d21ab0-cad9-44ce-9e1e-ca6e9bbf0a5e)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 107.95 153.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a6cdaa06-2fd2-481c-99c2-4678495a0fc2) + (property "Reference" "v5" (id 0) (at 113.03 150.495 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 113.03 154.305 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 113.03 158.115 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 107.95 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d95879b-e9ff-4a76-ac38-6eb577afdf12)) + (pin "2" (uuid dc7b6e3b-2305-48b9-b9a1-40ea5a204352)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 105.41 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b1c645f8-6669-4e82-8b35-32a17f5963e9) + (property "Reference" "v2" (id 0) (at 110.49 65.405 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 110.49 69.215 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 110.49 73.025 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 105.41 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 54559e36-194f-4b65-925b-e20814570ff0)) + (pin "2" (uuid 089baa0e-6eb1-426f-be24-7a14f8f61fc4)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 242.57 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c1385971-2a91-49f0-b4ad-391e65ba3b00) + (property "Reference" "U7" (id 0) (at 246.38 64.77 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 246.38 68.58 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 242.57 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 242.57 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 0429582a-5f94-4c23-8abd-1cc8bbc4bdbf)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 246.38 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c6ed8823-fac1-4d58-b1ce-3b289f0e9a2b) + (property "Reference" "U8" (id 0) (at 250.19 73.66 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 250.19 77.47 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 246.38 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 246.38 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 2fb0adda-7c2a-4c8f-88eb-bb67cc994bbb)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 144.78 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da88c820-f468-45bc-9bc0-cec5b7d09156) + (property "Reference" "U2" (id 0) (at 144.78 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 144.78 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 144.78 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 44ce16de-ac0a-4828-9932-97a1d4fbdd9f)) + (pin "2" (uuid 5a6346c2-783c-43ea-871a-f5fa4fb6a78e)) + (pin "3" (uuid c04ac7bb-cc12-456b-9c3e-dbae603a7d65)) + (pin "4" (uuid 5d6b971b-1b27-4aba-ac8c-f9aca813c611)) + (pin "5" (uuid 931a4f8f-abc1-4f20-8a42-5dc133e57389)) + (pin "6" (uuid a7d9a8c6-1e49-4c40-85f3-f50ca96dac08)) + (pin "7" (uuid 57c7687d-be70-4cd3-b915-304cee4c06f2)) + (pin "8" (uuid 89e280de-e91d-4bf3-ba02-74058a56cd06)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 233.68 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2917f5e-ec8b-4853-9a7d-d7da6b0084e1) + (property "Reference" "U5" (id 0) (at 237.49 45.72 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 237.49 49.53 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 233.68 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 233.68 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid d4925c0f-d0e7-4bfc-9d40-71b9194d0820)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 105.41 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f3cecca4-6263-4a58-bbe0-9bc91a20f132) + (property "Reference" "v3" (id 0) (at 110.49 95.885 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 110.49 99.695 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 110.49 103.505 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 105.41 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 605f371b-6646-44c3-b293-b0c8f34daa8e)) + (pin "2" (uuid f89435e9-51b4-414a-bf99-1e7b7ab38e48)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 118.11 193.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb6079ea-0c6e-46d1-835c-9c9c60c264f4) + (property "Reference" "#PWR0101" (id 0) (at 118.11 199.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 118.11 198.12 0)) + (property "Footprint" "" (id 2) (at 118.11 193.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 118.11 193.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7246443a-874e-4081-9f70-2c0de5168a18)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/fb6079ea-0c6e-46d1-835c-9c9c60c264f4" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/a07fa815-358c-4b2a-9f23-bcaa24bd65d7" + (reference "U1") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/da88c820-f468-45bc-9bc0-cec5b7d09156" + (reference "U2") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/07f322fc-83f1-4bc8-b9e1-702bd0466f6e" + (reference "U3") (unit 1) (value "74LS125") (footprint "") + ) + (path "/2a575ba3-937c-45be-ba6d-b349c10c29da" + (reference "U4") (unit 1) (value "dac_bridge_4") (footprint "") + ) + (path "/e2917f5e-ec8b-4853-9a7d-d7da6b0084e1" + (reference "U5") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/1cd33f80-b755-494b-9f85-0e0552a33c76" + (reference "U6") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/c1385971-2a91-49f0-b4ad-391e65ba3b00" + (reference "U7") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/c6ed8823-fac1-4d58-b1ce-3b289f0e9a2b" + (reference "U8") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/8aafc96a-ebc0-4288-af10-c6b88f787ead" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/b1c645f8-6669-4e82-8b35-32a17f5963e9" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/f3cecca4-6263-4a58-bbe0-9bc91a20f132" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/6c73cb64-2834-438f-bbbb-f2b763063a48" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/a6cdaa06-2fd2-481c-99c2-4678495a0fc2" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/3e180232-21a4-4d04-b120-6c4ef5d29310" + (reference "v6") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/74LS125_sub/74LS125_test.proj b/library/SubcircuitLibrary/74LS125_sub/74LS125_test.proj new file mode 100644 index 000000000..0c05cfb50 --- /dev/null +++ b/library/SubcircuitLibrary/74LS125_sub/74LS125_test.proj @@ -0,0 +1 @@ +schematicFile 74LS125_test.kicad_sch diff --git a/library/SubcircuitLibrary/74LS161_sub/74LS161_sub.cir b/library/SubcircuitLibrary/74LS161_sub/74LS161_sub.cir new file mode 100644 index 000000000..9c7f4dcb2 --- /dev/null +++ b/library/SubcircuitLibrary/74LS161_sub/74LS161_sub.cir @@ -0,0 +1,20 @@ +.title KiCad schematic +U7 Net-_U1-Pad1_ Net-_U3-Pad1_ Net-_U7-Pad3_ d_and +U9 Net-_U7-Pad3_ Net-_U13-Pad1_ d_inverter +U10 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U10-Pad3_ d_and +U12 Net-_U10-Pad3_ Net-_U1-Pad3_ Net-_U12-Pad3_ d_and +U13 Net-_U13-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad6_ d_or +U8 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U11-Pad1_ d_and +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_and +U3 Net-_U3-Pad1_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad6_ Net-_U1-Pad2_ unconnected-_U3-Pad6_ d_dff +U4 Net-_U18-Pad3_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad6_ Net-_U1-Pad4_ unconnected-_U4-Pad6_ d_dff +U5 Net-_U11-Pad2_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad6_ Net-_U1-Pad3_ unconnected-_U5-Pad6_ d_dff +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ PORT +U2 Net-_U2-Pad1_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad6_ Net-_U1-Pad1_ unconnected-_U2-Pad6_ d_dff +U6 Net-_U1-Pad1_ Net-_U2-Pad1_ d_inverter +U15 Net-_U14-Pad2_ Net-_U1-Pad3_ Net-_U11-Pad2_ d_or +U14 Net-_U11-Pad3_ Net-_U14-Pad2_ d_inverter +U17 Net-_U16-Pad3_ Net-_U17-Pad2_ d_inverter +U16 Net-_U12-Pad3_ Net-_U1-Pad4_ Net-_U16-Pad3_ d_and +U18 Net-_U17-Pad2_ Net-_U1-Pad4_ Net-_U18-Pad3_ d_or +.end diff --git a/library/SubcircuitLibrary/74LS161_sub/74LS161_sub.kicad_sch b/library/SubcircuitLibrary/74LS161_sub/74LS161_sub.kicad_sch new file mode 100644 index 000000000..70955ce3c --- /dev/null +++ b/library/SubcircuitLibrary/74LS161_sub/74LS161_sub.kicad_sch @@ -0,0 +1,1666 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid e0ae46cd-118e-42ee-ac98-800924931ab2) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 223.52 200.66) (diameter 0) (color 0 0 0 0) + (uuid 081f28a0-50c0-458b-818a-2c8d791f12e3) + ) + (junction (at 254 149.86) (diameter 0) (color 0 0 0 0) + (uuid 0aeb7c4f-380e-4cef-bccc-abc9248fa763) + ) + (junction (at 215.9 149.86) (diameter 0) (color 0 0 0 0) + (uuid 0c29ed39-16e3-4717-abbe-64b83689ea03) + ) + (junction (at 177.8 116.84) (diameter 0) (color 0 0 0 0) + (uuid 0e27f905-93bb-4598-8ddf-fdc8cdb6705c) + ) + (junction (at 132.08 95.25) (diameter 0) (color 0 0 0 0) + (uuid 1c4e1a4c-8bea-4480-b123-cbc01deb89e5) + ) + (junction (at 146.05 95.25) (diameter 0) (color 0 0 0 0) + (uuid 1e42f5d5-4b9c-4da8-8a3d-63b122c56f36) + ) + (junction (at 213.36 106.68) (diameter 0) (color 0 0 0 0) + (uuid 290f8322-4dee-4ad4-8f9b-e7b8774c0dad) + ) + (junction (at 130.81 95.25) (diameter 0) (color 0 0 0 0) + (uuid 39c048d5-fc6d-43ce-bd2d-44f76f55947e) + ) + (junction (at 219.71 200.66) (diameter 0) (color 0 0 0 0) + (uuid 3cefd791-aa1d-48dc-b3dc-464c30bb35b8) + ) + (junction (at 215.9 189.23) (diameter 0) (color 0 0 0 0) + (uuid 48bb3b34-786d-4813-b9f1-1647c2c85571) + ) + (junction (at 215.9 248.92) (diameter 0) (color 0 0 0 0) + (uuid 53056d8e-222d-4e49-9d9e-58084abdca76) + ) + (junction (at 177.8 105.41) (diameter 0) (color 0 0 0 0) + (uuid 6089401b-f337-4d28-8500-55a2561704d9) + ) + (junction (at 212.09 102.87) (diameter 0) (color 0 0 0 0) + (uuid 64686b2e-def9-4776-96f0-9f303563b085) + ) + (junction (at 177.8 120.65) (diameter 0) (color 0 0 0 0) + (uuid 6c7dfc91-2a0a-49bc-b374-a71ac99eddc1) + ) + (junction (at 212.09 105.41) (diameter 0) (color 0 0 0 0) + (uuid 6ccf31db-7050-4ada-ad60-f9aa1b9d10c3) + ) + (junction (at 128.27 95.25) (diameter 0) (color 0 0 0 0) + (uuid 87b95456-b7a8-4b9d-9713-4fa95b6ac68c) + ) + (junction (at 229.87 248.92) (diameter 0) (color 0 0 0 0) + (uuid 9145c500-a895-4039-910e-62e12b3dcb59) + ) + (junction (at 134.62 95.25) (diameter 0) (color 0 0 0 0) + (uuid 98239089-4e9c-40dd-a79d-4b4b96e16cbe) + ) + (junction (at 129.54 95.25) (diameter 0) (color 0 0 0 0) + (uuid b92b657b-9218-46b9-bd36-4e40de21de0c) + ) + (junction (at 218.44 149.86) (diameter 0) (color 0 0 0 0) + (uuid d6203c9e-c2d4-40b2-94a7-475891bb5cb8) + ) + (junction (at 140.97 95.25) (diameter 0) (color 0 0 0 0) + (uuid e1e0c2bf-be80-4135-b8b8-b9832d2b1b52) + ) + (junction (at 149.86 95.25) (diameter 0) (color 0 0 0 0) + (uuid eded1507-6f02-4435-ad61-a09277860e87) + ) + (junction (at 214.63 102.87) (diameter 0) (color 0 0 0 0) + (uuid fbe32c27-d9e4-431d-a859-89b03563f89f) + ) + + (wire (pts (xy 128.27 127) (xy 128.27 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01ca38c5-0251-452d-8ebe-22e22b5e8890) + ) + (wire (pts (xy 179.07 179.07) (xy 179.07 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01edf9ef-320a-4e3a-813b-03068180edd8) + ) + (wire (pts (xy 381 193.04) (xy 215.9 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03c0205b-bd04-40e0-9f41-b62ed0423279) + ) + (wire (pts (xy 243.84 226.06) (xy 436.88 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08098e63-268a-44a3-8f5b-c71238623dd5) + ) + (wire (pts (xy 180.34 248.92) (xy 186.69 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0946151a-b1e1-4a75-9367-f39d10aac39c) + ) + (wire (pts (xy 299.72 116.84) (xy 269.24 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0aa4aa24-aa4f-4bb4-8e60-f6e682ea04b9) + ) + (wire (pts (xy 358.14 200.66) (xy 358.14 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ac6b0e4-610d-49e2-b81e-aa74bbd49b2e) + ) + (wire (pts (xy 269.24 116.84) (xy 269.24 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f763224-184a-424a-8da4-b99fae783f29) + ) + (wire (pts (xy 447.04 118.11) (xy 455.93 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10defc97-09df-45d7-95dc-efbe3143eb4f) + ) + (wire (pts (xy 455.93 120.65) (xy 455.93 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 122715cf-5904-4e49-af92-a66809cd343d) + ) + (wire (pts (xy 173.99 116.84) (xy 177.8 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 146e6aad-68b0-4d97-9591-f64c2c23b93c) + ) + (wire (pts (xy 254 78.74) (xy 254 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14e372f3-1a2a-45a5-b334-cf18a8c5cb27) + ) + (wire (pts (xy 134.62 224.79) (xy 134.62 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1506a92d-7a52-47a0-a1af-80c5d61df256) + ) + (wire (pts (xy 262.89 93.98) (xy 255.27 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1734f57a-b7c2-4d72-9b7c-af6f6c735d66) + ) + (wire (pts (xy 219.71 128.27) (xy 247.65 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17cf8fb5-5895-4603-982e-d4bdf7c5b661) + ) + (wire (pts (xy 180.34 276.86) (xy 180.34 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ae009c1-d320-4e2e-8721-e8c99801e782) + ) + (wire (pts (xy 201.93 224.79) (xy 134.62 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1eb70081-4ee4-4cd3-92ee-86686854c694) + ) + (wire (pts (xy 412.75 118.11) (xy 431.8 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f3adea8-2d6e-442e-8639-df125554cc4b) + ) + (wire (pts (xy 288.29 80.01) (xy 288.29 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ff7f52d-572e-4c2d-94e7-36bf70aafbfe) + ) + (wire (pts (xy 289.56 118.11) (xy 289.56 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 210fc309-b9bf-4e53-ac21-20ee23cc4fd5) + ) + (wire (pts (xy 316.23 95.25) (xy 331.47 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 220fb847-088d-48d1-89e1-29d8002b3010) + ) + (wire (pts (xy 186.69 265.43) (xy 173.99 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27780272-58fe-41ad-baa0-4dec7cc032a4) + ) + (wire (pts (xy 185.42 166.37) (xy 177.8 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2890283b-4150-4890-817c-2f80d20416c2) + ) + (wire (pts (xy 287.02 77.47) (xy 303.53 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28a8006b-9725-4f72-85cf-31dc2b794cf6) + ) + (wire (pts (xy 351.79 116.84) (xy 389.89 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ab3e1ce-6b4e-4a7f-b1af-0a38b323efff) + ) + (wire (pts (xy 175.26 105.41) (xy 177.8 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bfacf01-51c2-45e4-bc5d-2be983f7cb89) + ) + (wire (pts (xy 129.54 95.25) (xy 128.27 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e21203e-b13b-4f75-a27c-af35196d08f4) + ) + (wire (pts (xy 214.63 123.19) (xy 250.19 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 300740d1-7f78-4a7e-91cc-54caf593630b) + ) + (wire (pts (xy 177.8 166.37) (xy 177.8 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 310f45a6-7435-4f97-888f-b482d422b3a3) + ) + (wire (pts (xy 130.81 173.99) (xy 130.81 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 32893fa6-d203-4eb2-a0af-f2c1c5766ee1) + ) + (wire (pts (xy 328.93 118.11) (xy 289.56 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 331a13f4-ef18-4ee5-8d04-e87c9889edd4) + ) + (wire (pts (xy 266.7 149.86) (xy 266.7 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 331f01d4-1965-4ebb-9178-b73e2ba72396) + ) + (wire (pts (xy 351.79 78.74) (xy 358.14 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33b835b8-c45b-405e-aa2e-0019271d8b13) + ) + (wire (pts (xy 215.9 189.23) (xy 187.96 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 365c3845-888b-4aae-b2ef-a9c4ad79e37b) + ) + (wire (pts (xy 215.9 193.04) (xy 215.9 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a9f89c8-3a40-44ec-b07d-0c0a53014ee0) + ) + (wire (pts (xy 289.56 201.93) (xy 223.52 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cb7d0ad-2898-4219-be84-d4157c89d4e6) + ) + (wire (pts (xy 199.39 173.99) (xy 130.81 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f5cb3cc-7d28-4809-b7b0-7c980b3570c1) + ) + (wire (pts (xy 213.36 106.68) (xy 212.09 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f7156af-8a82-49a1-ad9f-330ce43a9bbb) + ) + (wire (pts (xy 285.75 95.25) (xy 300.99 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40714f8e-319d-46a9-8197-de2882fddd56) + ) + (wire (pts (xy 401.32 151.13) (xy 401.32 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41596f09-1195-4c4f-8aad-9489b853962e) + ) + (wire (pts (xy 215.9 248.92) (xy 229.87 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44214017-9f94-4acc-8cc7-84cb95e07ce7) + ) + (wire (pts (xy 229.87 248.92) (xy 389.89 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44377e0e-ebda-4769-af39-e54a3a42bc1f) + ) + (wire (pts (xy 215.9 248.92) (xy 214.63 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47503e4b-b03a-4a32-b188-1409aa5b6763) + ) + (wire (pts (xy 129.54 142.24) (xy 179.07 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e3486bf-aa37-41a9-9a1a-1e34a3b2ec61) + ) + (wire (pts (xy 137.16 93.98) (xy 140.97 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ee1c6bf-9a34-4792-9e0c-805ffef13b3a) + ) + (wire (pts (xy 177.8 116.84) (xy 177.8 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 500a80f6-cdc0-4e3b-8af0-ec7bafc780bd) + ) + (wire (pts (xy 478.79 151.13) (xy 401.32 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52839628-ff12-42d9-8608-775a61d050fd) + ) + (wire (pts (xy 213.36 149.86) (xy 215.9 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53e30251-06e7-42cc-aef6-097880d65e5b) + ) + (wire (pts (xy 218.44 152.4) (xy 218.44 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53f1fa25-6f43-4286-a7bb-516508028156) + ) + (wire (pts (xy 255.27 93.98) (xy 255.27 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55fdcad4-cf43-4718-9cda-228c7b6652b3) + ) + (wire (pts (xy 389.89 119.38) (xy 389.89 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57728847-8492-4936-a3c4-3a5a2a7f8c9b) + ) + (wire (pts (xy 140.97 93.98) (xy 140.97 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 581424e8-5251-436c-add2-b17498658145) + ) + (wire (pts (xy 299.72 114.3) (xy 213.36 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59191058-e89f-43fb-afa7-54c5f13e2a3d) + ) + (wire (pts (xy 214.63 123.19) (xy 214.63 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 591af652-cc4e-436a-bd44-d86973e77c55) + ) + (wire (pts (xy 229.87 130.81) (xy 229.87 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b4a5485-0720-4fb3-810c-04655eb00f26) + ) + (wire (pts (xy 173.99 265.43) (xy 173.99 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61384294-22d5-4492-b090-c47d1d9c1f47) + ) + (wire (pts (xy 200.66 241.3) (xy 137.16 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6191d01c-cd2a-4d79-8f64-8318219f6aa2) + ) + (wire (pts (xy 247.65 208.28) (xy 435.61 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62ec99a3-09d0-4e23-9802-4e02c6f73243) + ) + (wire (pts (xy 175.26 217.17) (xy 175.26 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62ede24a-8389-402c-9b64-3fc5b0a376f2) + ) + (wire (pts (xy 231.14 102.87) (xy 231.14 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6363a423-2369-4493-b58a-7acd3cde2918) + ) + (wire (pts (xy 248.92 125.73) (xy 248.92 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6806a79d-e1a7-4344-b671-393a41fff359) + ) + (wire (pts (xy 185.42 138.43) (xy 185.42 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 683a9d4b-9abc-4e77-bfa2-d9f4c254796d) + ) + (wire (pts (xy 212.09 105.41) (xy 212.09 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68fea1f3-749a-49d6-9dfd-d9958fbd8a3e) + ) + (wire (pts (xy 134.62 95.25) (xy 140.97 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 696fd493-3f3a-4ded-a3c6-8e6e408e9b41) + ) + (wire (pts (xy 199.39 133.35) (xy 149.86 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b1c8066-d232-4202-ac03-20eba56a0a72) + ) + (wire (pts (xy 381 80.01) (xy 381 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b680807-dfd2-4c96-9428-bc9594bc5a1b) + ) + (wire (pts (xy 129.54 95.25) (xy 130.81 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bb76c22-f348-46d3-9b28-a0c6263c5fb2) + ) + (wire (pts (xy 212.09 105.41) (xy 212.09 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6fc6e73b-57ef-4146-909d-a2704e10aa8d) + ) + (wire (pts (xy 264.16 78.74) (xy 254 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6fd256b6-666e-4a55-8c5f-4aa65e0bcb04) + ) + (wire (pts (xy 130.81 95.25) (xy 132.08 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7027eb83-5a82-4747-afa8-e2b7eacc0e02) + ) + (wire (pts (xy 149.86 95.25) (xy 195.58 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7715f61b-439a-4910-921a-d627376dffd5) + ) + (wire (pts (xy 269.24 152.4) (xy 218.44 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 781e7a6b-19f7-4450-b9a9-2d7f684dd2dd) + ) + (wire (pts (xy 200.66 273.05) (xy 146.05 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b25bcef-f350-4d81-9837-7fb8f7339af1) + ) + (wire (pts (xy 250.19 167.64) (xy 434.34 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fc2ddcb-5946-4976-b1ba-7e3b460371a9) + ) + (wire (pts (xy 247.65 128.27) (xy 247.65 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 814595ca-3628-42a2-86e0-05f1b1a0972c) + ) + (wire (pts (xy 219.71 200.66) (xy 223.52 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 844149a3-647d-4bd2-9772-fc9ed6236844) + ) + (wire (pts (xy 212.09 102.87) (xy 214.63 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85c2da94-6aa4-4eee-a813-f978de6cff74) + ) + (wire (pts (xy 201.93 193.04) (xy 132.08 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 860f000c-50dd-4211-a8ca-aec97c1c8fc1) + ) + (wire (pts (xy 238.76 76.2) (xy 238.76 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8760de31-88dd-4c07-8139-110f22acd321) + ) + (wire (pts (xy 129.54 142.24) (xy 129.54 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89c1ffcc-94a9-428f-b07b-6c5693eae90c) + ) + (wire (pts (xy 248.92 187.96) (xy 435.61 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ecb0785-5942-43ed-a227-88217cec4b3d) + ) + (wire (pts (xy 132.08 193.04) (xy 132.08 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90952084-edef-4c0a-915e-b424319b27b7) + ) + (wire (pts (xy 243.84 130.81) (xy 243.84 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 927f0d46-a076-4671-b578-274e810f1a18) + ) + (wire (pts (xy 195.58 127) (xy 128.27 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 930b992f-50e2-4667-bfee-ddbc0fb9c158) + ) + (wire (pts (xy 326.39 78.74) (xy 336.55 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9354e475-a4fa-4478-85c5-6dca08dbc581) + ) + (wire (pts (xy 354.33 96.52) (xy 354.33 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 936a9c60-f52d-4b8c-97be-9d1283d02b86) + ) + (wire (pts (xy 199.39 142.24) (xy 199.39 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93c1b01a-c878-4608-95ec-c0e38ab9d0cc) + ) + (wire (pts (xy 223.52 200.66) (xy 358.14 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9665e063-b935-4bf2-a33c-8b5452076be2) + ) + (wire (pts (xy 215.9 125.73) (xy 215.9 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96eb29fa-39bc-40c8-a978-6fad0c2c1664) + ) + (wire (pts (xy 187.96 217.17) (xy 175.26 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99364e93-45f1-434b-a3c4-86ccdfcb9ed2) + ) + (wire (pts (xy 181.61 105.41) (xy 181.61 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ad898f0-034d-4316-b73b-427aea6baf89) + ) + (wire (pts (xy 392.43 250.19) (xy 215.9 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9da68871-d2ab-478f-b20d-00891f76f09b) + ) + (wire (pts (xy 401.32 276.86) (xy 180.34 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a00eebc4-3508-4c22-a528-b45ac7d0e9a5) + ) + (wire (pts (xy 392.43 124.46) (xy 392.43 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a12cd60a-62d5-4502-9e6d-ff652f91c951) + ) + (wire (pts (xy 231.14 86.36) (xy 181.61 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a14b1c89-4f44-462c-83b8-ad8435670842) + ) + (wire (pts (xy 303.53 80.01) (xy 288.29 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a16a577f-1cc6-4649-a5f7-d126e054fbac) + ) + (wire (pts (xy 137.16 241.3) (xy 137.16 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4f41a2e-3c36-4c41-9f92-f0f6b4e73bde) + ) + (wire (pts (xy 140.97 95.25) (xy 146.05 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab1ef481-4ba2-4a23-baac-e1b75f168cb6) + ) + (wire (pts (xy 455.93 124.46) (xy 392.43 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af71d599-e0e5-457d-acb0-b483c2c77cb9) + ) + (wire (pts (xy 213.36 114.3) (xy 213.36 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b101ecf2-5f9a-4b2a-8756-7abfa92fa3ba) + ) + (wire (pts (xy 209.55 102.87) (xy 212.09 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b654b1f6-9b35-49e3-a87b-767b186b7e5e) + ) + (wire (pts (xy 254 149.86) (xy 266.7 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b68a1c4c-6c70-407a-9b90-93a453bb188f) + ) + (wire (pts (xy 128.27 95.25) (xy 119.38 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6b77d24-8091-4d10-9f92-bddcb369f3de) + ) + (wire (pts (xy 146.05 95.25) (xy 149.86 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8ce1fa5-5794-467f-8fbb-c39cc2ba6410) + ) + (wire (pts (xy 262.89 96.52) (xy 262.89 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9b731e5-c0e4-4621-8754-8489e6671324) + ) + (wire (pts (xy 264.16 76.2) (xy 238.76 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbc272b0-7cec-42f1-9b29-abe0edf051ba) + ) + (wire (pts (xy 175.26 120.65) (xy 177.8 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bff609db-11b4-424e-a3c1-b8b1ac6a553e) + ) + (wire (pts (xy 187.96 189.23) (xy 187.96 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c07131b1-cfcd-4f80-b366-20ac238e9fa7) + ) + (wire (pts (xy 214.63 102.87) (xy 215.9 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6d6f787-c61c-4d60-852c-14592c4dc6ed) + ) + (wire (pts (xy 132.08 95.25) (xy 134.62 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c77a9922-6f6f-4930-bce0-5ffa915e5c7c) + ) + (wire (pts (xy 146.05 273.05) (xy 146.05 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca2c3f3d-68f4-4d5e-b67e-56a4917aa184) + ) + (wire (pts (xy 215.9 125.73) (xy 248.92 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc882cea-aa3b-44a5-9ae2-a26e40d184d1) + ) + (wire (pts (xy 478.79 119.38) (xy 478.79 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfde9b2d-8fab-4969-ac5c-79e985eef774) + ) + (wire (pts (xy 354.33 179.07) (xy 179.07 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1e7f135-a546-4103-9462-a4852392245e) + ) + (wire (pts (xy 185.42 138.43) (xy 262.89 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d909d423-67f5-44e3-903a-6dbe160c868c) + ) + (wire (pts (xy 243.84 130.81) (xy 229.87 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc8ba0e5-851a-4ac0-91d3-b28303850bcc) + ) + (wire (pts (xy 149.86 133.35) (xy 149.86 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd167582-213b-494d-8577-80d645496814) + ) + (wire (pts (xy 250.19 123.19) (xy 250.19 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd4e49ea-a81a-4f77-b8f7-eaf2c8713461) + ) + (wire (pts (xy 322.58 115.57) (xy 328.93 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de94e72e-2d01-4dd7-966b-79914c46338e) + ) + (wire (pts (xy 238.76 106.68) (xy 213.36 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid deaf119d-a52b-4c33-86cc-b963ca4d0a33) + ) + (wire (pts (xy 181.61 86.36) (xy 181.61 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1976268-eb3b-4f35-b307-37301fcd244f) + ) + (wire (pts (xy 215.9 149.86) (xy 218.44 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e28d4e80-53a9-4f7a-9450-27bce9ad4746) + ) + (wire (pts (xy 119.38 95.25) (xy 119.38 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e59e1e91-fe83-4cae-8b7a-55f2ba95cea8) + ) + (wire (pts (xy 215.9 250.19) (xy 215.9 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e83944b6-a830-4ca6-abd3-60a15620124b) + ) + (wire (pts (xy 177.8 105.41) (xy 181.61 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea8c280b-dff3-4899-b456-e9000336f94f) + ) + (wire (pts (xy 218.44 149.86) (xy 254 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecb28e7a-48c1-4d5f-af34-23a3e0756fbf) + ) + (wire (pts (xy 288.29 189.23) (xy 215.9 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee0aff6d-a47b-4d29-afc1-9b9668fe3ab4) + ) + (wire (pts (xy 219.71 128.27) (xy 219.71 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa56ad4a-af50-4071-980e-3906a40f32eb) + ) + (wire (pts (xy 215.9 200.66) (xy 219.71 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa85b7ef-834e-4d7b-bf14-8483425a255d) + ) + (wire (pts (xy 255.27 105.41) (xy 212.09 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb6ec152-83dd-4e5a-a022-8d776a14e2da) + ) + (wire (pts (xy 266.7 97.79) (xy 331.47 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc198967-ac08-4a19-9149-e1096a6e9889) + ) + (wire (pts (xy 177.8 120.65) (xy 177.8 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fcd86174-4f76-4233-a6ee-4d134aa77d66) + ) + (wire (pts (xy 223.52 201.93) (xy 223.52 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff7dabd4-d19d-4d26-8b80-65453967a61c) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 199.39 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 14bc5a5b-3251-4435-8d39-5740cee2a5f8) + (property "Reference" "U3" (id 0) (at 201.4094 142.24 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 201.4094 146.05 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 199.39 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 199.39 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 41703bd3-1157-405a-9745-3eb0adfafab2)) + (pin "2" (uuid 9e1bcffd-35c2-4cfe-afd7-9687e358725f)) + (pin "3" (uuid 1936cc4e-c69e-43d9-a5a8-b6155a78787c)) + (pin "4" (uuid 2be1c7df-c963-4334-9058-a7a8000d0ce4)) + (pin "5" (uuid e534e769-de17-4db9-9b1e-38f421d99478)) + (pin "6" (uuid fb6cf392-3773-4fcd-85ad-8d976488fb27)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 443.23 226.06 180) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1fc91e82-bdf1-463b-9663-ca81882c8db6) + (property "Reference" "U1" (id 0) (at 447.04 225.425 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 447.04 227.965 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 443.23 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 443.23 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 99813480-594a-4e93-94f6-44a764efc855)) + (pin "2" (uuid cb904315-ad4b-4216-afc2-29139b91e41b)) + (pin "3" (uuid e2c8e78d-bcb5-472f-9e85-38cf4f2bd371)) + (pin "4" (uuid c1b16905-e9c5-4e09-8230-ea07de3a0822)) + (pin "5" (uuid cf46f0cc-7626-419c-b2b3-348b95ee2701)) + (pin "6" (uuid ce244bdd-181e-49fd-893d-1d466b30240e)) + (pin "7" (uuid 4ed346cc-e6a6-4bd0-8426-4d618fac40b1)) + (pin "8" (uuid 7e354b9b-3736-4cbe-9328-78f682cdac55)) + (pin "9" (uuid 2180146c-9901-4eeb-8dc7-0e4627a25f9b)) + (pin "10" (uuid 2d7734a4-77dc-4b04-a343-58c019f5a310)) + (pin "11" (uuid b4240806-0e55-4f61-8e48-545206a0f817)) + (pin "12" (uuid acff3057-c659-48a8-b05e-da47b14b706a)) + (pin "13" (uuid 02c98ca2-96d2-4982-82e4-325ff69ad163)) + (pin "14" (uuid 9ab5ac37-4d56-4e3a-bfdd-13b0a63201ba)) + (pin "15" (uuid 8f51242f-8202-444f-85d2-8e2e03a9791b)) + (pin "16" (uuid 053ce855-684f-4330-970b-a6946d28dd3e)) + (pin "17" (uuid ca032622-a09a-48c0-a9c9-6d1ff355f434)) + (pin "18" (uuid e8349692-8ca7-4fbc-b5ad-7598f98eadb7)) + (pin "19" (uuid 19a149d3-3ec7-4cfe-9aaf-dfa1bb5399b7)) + (pin "20" (uuid 940cf0f6-7f8b-42db-9146-b9587540f468)) + (pin "21" (uuid c08180ba-e6ad-4cd7-91c1-31207bc33e0c)) + (pin "22" (uuid 9eefc2ad-e098-4853-a205-91eb2305a907)) + (pin "23" (uuid 32b7c50f-c4b2-475d-9d7a-9fd942c16312)) + (pin "24" (uuid cee1432f-2c24-4506-97a0-e4139fa9408b)) + (pin "25" (uuid bf4dd2d4-dee7-4659-89f0-709958aecf56)) + (pin "26" (uuid da67d0b9-53e4-4d8b-80f9-231db2b097a4)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 369.57 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2ab78984-906d-48e8-9465-466732178c31) + (property "Reference" "U15" (id 0) (at 369.57 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 369.57 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 369.57 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 369.57 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 501e8ae2-3d4a-4b32-adc1-8e9a34d397ed)) + (pin "2" (uuid 56bc4c32-bf06-4ff8-8211-d8a56f15341e)) + (pin "3" (uuid cdc66c05-f81e-4a23-a3a4-f86666c18e98)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 342.9 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 467adadd-1408-4075-b2b6-a63de5042592) + (property "Reference" "U13" (id 0) (at 342.9 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 342.9 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 342.9 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 342.9 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 742e84cb-eee3-4e36-8bbb-e411fea36c1b)) + (pin "2" (uuid 0c7b9fbe-5f3f-4777-a4c7-273d2bd82b9e)) + (pin "3" (uuid 7a11d701-dd84-4b2f-9160-1f459668ae35)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 168.91 105.41 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48b2192f-bd4a-4ec0-9a88-98a6034282af) + (property "Reference" "U1" (id 0) (at 169.545 100.33 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 169.545 102.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 168.91 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d64987b4-bea1-4ed3-8aef-3dfda9c76941)) + (pin "2" (uuid 2fb43419-01f6-4e1a-8172-36897f27b9e0)) + (pin "3" (uuid e1276fc7-d02c-4269-9c58-8bfa64f3f67c)) + (pin "4" (uuid 7db88800-978d-4e1a-af24-52e3580b901d)) + (pin "5" (uuid 949228f8-c98d-4f22-b65c-e8ec41369968)) + (pin "6" (uuid 7a1d4b2b-dc62-4329-8363-cc6fbf0f731f)) + (pin "7" (uuid ddcb0c92-1ae7-41a4-8407-e24f38093d02)) + (pin "8" (uuid bb3648cc-5c52-4b3f-88ff-8e8e534b81f1)) + (pin "9" (uuid 33ed8d27-3a82-4218-8154-93e790706a61)) + (pin "10" (uuid 371c15b7-36df-4905-8e4a-d1d111a99602)) + (pin "11" (uuid fba25049-528a-4014-ba95-d05929c305e5)) + (pin "12" (uuid 2f0c0692-d7d0-4628-bf69-7ea564e7e7d2)) + (pin "13" (uuid a1bf0c4a-cbaa-4e92-9155-ec49ee75dbab)) + (pin "14" (uuid 0ba2e977-5dfb-4cd8-96a2-2df8c02897cb)) + (pin "15" (uuid bb47de77-bae1-4457-ac4f-5e2ab41c0d6d)) + (pin "16" (uuid e3bcc8ba-56d2-41b8-bdd0-898ee2e42e74)) + (pin "17" (uuid b1195ec0-2f3a-4c24-a5a1-738ea95d2295)) + (pin "18" (uuid 39a781df-8ff2-4283-a1cd-3bfe17a68c83)) + (pin "19" (uuid 6ce74aa5-9551-4655-a574-732a32f8e5e1)) + (pin "20" (uuid 6285b4b0-b0aa-48a3-bd02-60e5cda18d1f)) + (pin "21" (uuid f572c9e0-9ce2-4e9e-a949-3841253dbc40)) + (pin "22" (uuid 8a87b357-3a03-4f4a-ab34-705cea28b3d7)) + (pin "23" (uuid 6b513799-91bd-4eee-b98c-8a8d0540c3e0)) + (pin "24" (uuid bd990d24-e43f-4464-8781-868cb03e211b)) + (pin "25" (uuid d015a7aa-9cf9-4db0-875c-9cba890b1b8b)) + (pin "26" (uuid d69cee6e-038d-43df-8042-3d43c7621d6e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 308.61 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e902060-bce8-49bb-ab1a-283f98a9940f) + (property "Reference" "U9" (id 0) (at 308.61 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 308.61 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 309.88 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 309.88 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 50370cef-329c-4e21-9642-4e76b0b228b9)) + (pin "2" (uuid 0d20a221-1de9-45cc-ad07-2822d32dbf28)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 223.52 102.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 55dcc201-c19a-450f-82cd-501731f1860f) + (property "Reference" "U6" (id 0) (at 223.52 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 223.52 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 224.79 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 224.79 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7161b27a-44ad-4a20-8f9a-d4bfc9cfa240)) + (pin "2" (uuid 032e038b-4d20-4764-8bcd-60c02cb0a174)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 275.59 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7925735e-540c-4404-80a5-0852aeee7c0d) + (property "Reference" "U8" (id 0) (at 275.59 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 275.59 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 275.59 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 275.59 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ab247bf-4cab-4c9c-9985-ff072effd78f)) + (pin "2" (uuid 8beb7008-b39c-4316-a613-aa60701f3f72)) + (pin "3" (uuid cdc82c24-da8f-4c01-88dd-91835e3db85b)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 200.66 257.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 84d40d1d-ae22-4a55-ab14-a3f545ce5ed9) + (property "Reference" "U4" (id 0) (at 202.6794 241.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 202.6794 245.11 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 200.66 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3211a9e1-fbc1-4160-8a87-6bd2be0d35d2)) + (pin "2" (uuid 583bc1f7-ac6c-4ab6-9927-886a0d024ad6)) + (pin "3" (uuid 5b14a40b-6c21-4f10-aca1-96c75052e9db)) + (pin "4" (uuid 0fef21f3-7c15-4831-aa50-870440183213)) + (pin "5" (uuid 1a47da4a-79e5-4790-8675-a3d98c318273)) + (pin "6" (uuid bf837483-7d63-44ab-bc05-5d71dc3d4067)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 440.69 167.64 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b59873a-0641-4cb0-aa1f-dc94521745f1) + (property "Reference" "U1" (id 0) (at 444.5 167.005 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 444.5 169.545 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 440.69 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 440.69 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 578d243f-5c42-44ad-8ae5-d9d8103026ec)) + (pin "2" (uuid ead83e77-fc59-4394-b00a-be2a12bb5e01)) + (pin "3" (uuid 09264a58-5b6a-4329-bb0e-341eafcf205f)) + (pin "4" (uuid 3b636aad-9f3d-4b0c-9d10-47697bd1b31c)) + (pin "5" (uuid 0f2e6baf-05d4-483a-b682-fb40fe180861)) + (pin "6" (uuid 1f7d527a-e2aa-4f17-8ec8-78524a0b4e2f)) + (pin "7" (uuid 0f583e84-6c3e-4568-8b53-dd7aaf5e443a)) + (pin "8" (uuid 956b8147-93a6-4c5a-98ed-1e15c77ce5ee)) + (pin "9" (uuid 65a763a5-b54b-4bba-8e7b-ca32a4a208fd)) + (pin "10" (uuid e21c8999-6409-42ce-9fbc-813d0831e78e)) + (pin "11" (uuid afc9775a-aad7-43f2-9d36-9993220c3ad7)) + (pin "12" (uuid 0ea4a40b-36a6-4f1d-89fa-b0f1c3149ab3)) + (pin "13" (uuid cc8dbccd-d05d-44fe-afe0-8788f05b4a21)) + (pin "14" (uuid f6030dab-e324-45fe-8888-ecc65a6b2645)) + (pin "15" (uuid c07708f4-854f-4414-b133-45bc472e91b8)) + (pin "16" (uuid 6e964cf2-17b0-4c87-9056-261b8708dcff)) + (pin "17" (uuid 274b3c1e-23bf-4ef7-9637-53bc98691849)) + (pin "18" (uuid c111a570-13b9-4a08-8ed9-724e04c308bc)) + (pin "19" (uuid 45b97672-610f-48c0-bfa6-cb238da68db8)) + (pin "20" (uuid cd9aba88-3ac9-4630-aaf5-d4cf9f88cfce)) + (pin "21" (uuid 20e039e4-32b0-429d-82c8-a752e86beb15)) + (pin "22" (uuid adc50af4-9828-4e17-b4a3-e514ce455d75)) + (pin "23" (uuid 7acef7b5-4dae-481b-b961-c18ed1388777)) + (pin "24" (uuid 9a630df4-1bcc-46ef-bdf4-46827adea198)) + (pin "25" (uuid 3251a5d6-1228-476e-8ffd-4ccdd1a59885)) + (pin "26" (uuid 5ccfc069-3a07-46b2-a788-4180c3669e45)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 314.96 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5c4a907-f0cd-42c3-ba35-5c324826181a) + (property "Reference" "U11" (id 0) (at 314.96 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 314.96 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 314.96 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 314.96 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5ea8d4cf-8346-4437-82e6-0c3a393608b3)) + (pin "2" (uuid 0218ff93-2369-4187-bbe6-39285399c784)) + (pin "3" (uuid 49bd589b-1e94-4044-8b12-85121511358d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 113.03 91.44 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a60461e5-7abe-4f81-a47a-7d9ab9ef5767) + (property "Reference" "U1" (id 0) (at 113.665 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 113.665 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 113.03 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 113.03 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 44bd33d5-fbfc-4cad-8c2d-2aa6d144d39d)) + (pin "2" (uuid 7201b3de-b324-4dcc-9c51-487890a85e5f)) + (pin "3" (uuid 487a9c72-99ad-4958-a64a-9aadc092e004)) + (pin "4" (uuid 31f9486b-123c-4eba-90e9-ff5148b11f74)) + (pin "5" (uuid 0bb8704c-e90f-4014-8c4b-c63b13fb6351)) + (pin "6" (uuid f94453fb-5cb0-4415-9ec0-c40f39d3c023)) + (pin "7" (uuid 1a93edd8-1f4e-4471-9755-950896cb8620)) + (pin "8" (uuid 671d41cf-81c9-4a3e-98b6-af06950682d4)) + (pin "9" (uuid ca30d11b-dad3-48c2-9242-a523fac02b0c)) + (pin "10" (uuid 26a5c1c5-94f4-49c8-a94c-e6b14fb20c6d)) + (pin "11" (uuid 69a758c1-eb64-4bc5-b464-c57400998368)) + (pin "12" (uuid a691afb3-aeae-451f-8e4c-44c54b40275c)) + (pin "13" (uuid 67c0b2fc-a9ef-43e1-afba-6ce2ea683d5f)) + (pin "14" (uuid d610727f-5a0b-44f3-b409-06dba7c06349)) + (pin "15" (uuid d093dd3e-9190-4c41-8ea7-841771c17b76)) + (pin "16" (uuid a4fed6cd-9ac6-4ab7-8cb4-2ce59b47f0c1)) + (pin "17" (uuid eb8e8b86-3d16-43a1-968f-08e89698276f)) + (pin "18" (uuid 2f5a3778-bfc2-4435-9bf2-891854ff5c5c)) + (pin "19" (uuid 401a2bfd-6a7a-4eb3-ae6a-e50137b61f67)) + (pin "20" (uuid 2f7a7c16-5a6f-4a85-be8f-2624bdf6ecf2)) + (pin "21" (uuid 8b9987f6-a2cd-4819-ab11-550255b8ca0e)) + (pin "22" (uuid 8687698d-66d8-4fd1-9169-4099494c646e)) + (pin "23" (uuid 50e3730a-5d02-4275-9218-e5d99618081e)) + (pin "24" (uuid b5cf5cae-569e-4b6b-be5e-22409dbdc971)) + (pin "25" (uuid 81a26084-e257-4f63-b8cc-0b18694aa8ce)) + (pin "26" (uuid 45422f4e-0728-4fba-9957-59a96871b260)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 439.42 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b8a73082-8016-43c9-84b1-682484e72046) + (property "Reference" "U17" (id 0) (at 439.42 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 439.42 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 440.69 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 440.69 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cfa64f7f-a7d4-4b50-9451-dab3750ed077)) + (pin "2" (uuid 75445d5b-7f3f-4e4f-be60-3450fba1f03f)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 201.93 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bdc65fb7-cc38-4a5f-83fb-aead1a927e36) + (property "Reference" "U5" (id 0) (at 203.9494 193.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 203.9494 196.85 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 201.93 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 201.93 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 66c38a47-42c1-4bfb-a129-6be594ed02ea)) + (pin "2" (uuid 65c5158a-ea17-419c-bbe3-12db59658f77)) + (pin "3" (uuid 4671d67c-e03c-47a6-ad5b-8f71a27cbe7d)) + (pin "4" (uuid 9c7fdff5-5b84-4640-b0af-ecf53da862a8)) + (pin "5" (uuid 1467a64a-7b6f-46fc-8c6e-d8f3956226a0)) + (pin "6" (uuid 872ee0c4-be47-4274-b481-504cc1b22975)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 274.32 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c806f85d-7271-465b-93f4-ff2f071faf2b) + (property "Reference" "U7" (id 0) (at 274.32 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 274.32 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 274.32 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 274.32 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 191f0dfe-79ad-46f2-903e-2d3f33bce794)) + (pin "2" (uuid 76c27471-539c-41f1-a651-884fe8ea3f8a)) + (pin "3" (uuid fc6e6fff-57a5-4e4a-82a5-e19b6103dd20)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 195.58 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ccc78545-f0c6-4d02-aaf1-872abe346e91) + (property "Reference" "U2" (id 0) (at 197.5994 95.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 197.5994 99.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 195.58 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 195.58 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d50b6fe8-6449-4808-ad0f-14c17cb863d4)) + (pin "2" (uuid 1d45e6b2-4b2d-41f4-b961-6f9573abc23e)) + (pin "3" (uuid b60e4be3-9821-45f3-8f9b-3985421d9873)) + (pin "4" (uuid bd524f8b-2ab3-4d3b-9cb7-eb05455cc678)) + (pin "5" (uuid 95a88bc8-54fe-435d-98dd-2f560eb7cc93)) + (pin "6" (uuid 737a2352-ca6f-48f0-9ab3-13aecb765e31)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 311.15 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d396ffec-74dd-482b-8eee-dd1ce597ed94) + (property "Reference" "U10" (id 0) (at 311.15 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 311.15 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 311.15 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 311.15 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7c492323-bb1b-408b-a093-87fa0524d33d)) + (pin "2" (uuid a65d5186-c4ff-48e9-b948-71bce6b61142)) + (pin "3" (uuid 2cee89ea-9d97-40d1-8e04-a3e564ad39dc)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 467.36 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da13874d-a38b-4b75-b054-20dd46aac093) + (property "Reference" "U18" (id 0) (at 467.36 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 467.36 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 467.36 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 467.36 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 26d481a2-da65-422d-86d9-dd229761605b)) + (pin "2" (uuid af818816-0478-468c-bf84-ca619817554f)) + (pin "3" (uuid edba17af-4e3a-47bc-b675-01b9d11c67cb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 441.96 187.96 180) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e02e0ca3-0664-42cf-9b00-ff419de72093) + (property "Reference" "U1" (id 0) (at 445.77 187.325 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 445.77 189.865 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 441.96 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 441.96 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e5ce638c-31ef-4587-8a23-c193910afbe4)) + (pin "2" (uuid a4d0ea53-ae83-442b-8bcf-d24a11be9e6c)) + (pin "3" (uuid 35611832-d31c-4a0e-8a82-afac5db5e600)) + (pin "4" (uuid 826b189f-78f6-4d49-9d47-c08e962f6106)) + (pin "5" (uuid ccde3774-8274-4ae0-8062-78ee50673c60)) + (pin "6" (uuid b38cb463-816f-4aaf-8a11-1902f655bd48)) + (pin "7" (uuid 41bd83b1-03cf-4b16-8812-f5f129d0e0b2)) + (pin "8" (uuid 9d5c3a4e-f4d2-447f-883d-8ddb589e71f5)) + (pin "9" (uuid b0245765-cf75-4d85-9259-71d2ce9aa298)) + (pin "10" (uuid cf7c121f-6cbf-4923-8e7e-f5e309f272ab)) + (pin "11" (uuid 226ffacc-95f2-4c00-baa8-85384667a085)) + (pin "12" (uuid f994570f-34fb-4e59-b546-685f57ed889a)) + (pin "13" (uuid bfb34a2f-20dd-4f61-b4c9-4f2e25075cd9)) + (pin "14" (uuid e4f308f7-61c8-4d6e-84e6-8cfe380bd04f)) + (pin "15" (uuid 501909fc-4bc4-46d6-a706-879f774679d5)) + (pin "16" (uuid 13159392-fe06-4477-9a33-c39dc26e794a)) + (pin "17" (uuid 01045929-8761-44ea-8950-4e00f30866a0)) + (pin "18" (uuid b289a0f7-e037-4eee-9876-278fdc0535e8)) + (pin "19" (uuid 8f251d07-5bd0-45d6-a5ee-5af7e9120bf7)) + (pin "20" (uuid 025aae5f-5e8f-4421-8088-83020318ace8)) + (pin "21" (uuid 365a369f-cf61-4b53-89a0-359be0008e74)) + (pin "22" (uuid 8107697d-da0e-4025-a6ef-4ee5df35e3e6)) + (pin "23" (uuid 3d788caa-fbd3-4b13-b8ef-618e1e17dbdc)) + (pin "24" (uuid 3be948e2-0b87-4ca3-a273-ed24c071798d)) + (pin "25" (uuid 0e38f47a-5ebf-48cd-b11c-4df6b6f9efa1)) + (pin "26" (uuid fb7987df-b70f-4a26-a581-5ed587176373)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 401.32 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2869c4d-1880-4f3f-b3e3-d0b695163f20) + (property "Reference" "U16" (id 0) (at 401.32 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 401.32 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 44633430-2f8f-47c3-8a9e-c35dee08a3fb)) + (pin "2" (uuid a64c4646-d13f-43a1-a804-6410de9cdfae)) + (pin "3" (uuid e7dd4ad6-1388-4734-8481-7624793b23a8)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 344.17 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed62a9f2-c608-4a0b-91fe-0f157a5df21d) + (property "Reference" "U14" (id 0) (at 344.17 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 344.17 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 345.44 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 345.44 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17fb8925-fce9-422c-8b4f-1fe9fc9cc00c)) + (pin "2" (uuid 4b84a8c3-ba87-47e2-9ef9-8531b0fe485c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 441.96 208.28 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f828ddd9-5053-450c-ab84-5ac9d4da26bc) + (property "Reference" "U1" (id 0) (at 445.77 207.645 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 445.77 210.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 441.96 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 441.96 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e889fbe-7b05-422b-bbae-563d62f2480f)) + (pin "2" (uuid 61301796-49f8-4557-8184-ea9b34da808f)) + (pin "3" (uuid e15fdbed-9792-43f4-bab8-567aad5b0bf6)) + (pin "4" (uuid b950d390-6335-4c30-8de5-c24c8d88edb3)) + (pin "5" (uuid c6214b24-92b7-4ff1-b051-d570c3e39dd8)) + (pin "6" (uuid 1ee77775-82e7-4ada-ac17-cbb9d0dc7c65)) + (pin "7" (uuid a0fed65b-46f3-4eae-886e-72b104d116bb)) + (pin "8" (uuid 266db331-e115-4973-86cf-d7cd145a9c3c)) + (pin "9" (uuid 55479cd5-851a-4e6e-89df-65aebdfde4a0)) + (pin "10" (uuid 881a00c8-7336-43d4-b470-677d56d01e07)) + (pin "11" (uuid c7184af7-d1aa-4c73-baf4-394c1bbd73d3)) + (pin "12" (uuid dd2e01e2-eea2-4ff8-b2bf-522d6c0a620d)) + (pin "13" (uuid 19e9f759-584a-4967-9120-033f9cae6e29)) + (pin "14" (uuid 5db1f254-a702-48ad-9cf5-01e18ec389e1)) + (pin "15" (uuid 03d6d889-66bc-40fb-9c80-bb7d8db461e7)) + (pin "16" (uuid db1270be-a402-4ab5-992b-55f1c5422aff)) + (pin "17" (uuid bc7f6dbb-e90e-41e5-bd34-ec4587ae6407)) + (pin "18" (uuid cf460ea0-c778-458d-9c09-1674406d3aaa)) + (pin "19" (uuid 912c22ad-265d-48dd-9628-cbb20f2f717d)) + (pin "20" (uuid e9150b5b-0e80-448b-b7de-d1c79b777eff)) + (pin "21" (uuid 28897eb3-5852-4c2b-8285-685c0125c8ee)) + (pin "22" (uuid 434967fe-b7d4-4cd1-b9a7-a87d09f08a7c)) + (pin "23" (uuid 201a8880-31a5-4ad5-bdc4-fccf4ba329cd)) + (pin "24" (uuid 4c2c93e5-cd3c-4162-96a0-4403eb6af0c2)) + (pin "25" (uuid 5d352231-60cc-4067-a3a9-8a7c8ec08840)) + (pin "26" (uuid 242f6a15-21b8-4673-99ce-67684945550d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 340.36 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fa2fdf66-b9b1-48b4-925b-028aad8b7a80) + (property "Reference" "U12" (id 0) (at 340.36 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 340.36 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 340.36 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 340.36 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ce3fb80-216d-4acb-a0ef-5a03d5c445ed)) + (pin "2" (uuid 2147944a-7506-4aaf-a774-45bc9f3c8852)) + (pin "3" (uuid 3d5ad15d-bce1-4ae9-aec4-a4b02eeaabcc)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/8b59873a-0641-4cb0-aa1f-dc94521745f1" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/e02e0ca3-0664-42cf-9b00-ff419de72093" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/f828ddd9-5053-450c-ab84-5ac9d4da26bc" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/1fc91e82-bdf1-463b-9663-ca81882c8db6" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/48b2192f-bd4a-4ec0-9a88-98a6034282af" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/a60461e5-7abe-4f81-a47a-7d9ab9ef5767" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/ccc78545-f0c6-4d02-aaf1-872abe346e91" + (reference "U2") (unit 1) (value "d_dff") (footprint "") + ) + (path "/14bc5a5b-3251-4435-8d39-5740cee2a5f8" + (reference "U3") (unit 1) (value "d_dff") (footprint "") + ) + (path "/84d40d1d-ae22-4a55-ab14-a3f545ce5ed9" + (reference "U4") (unit 1) (value "d_dff") (footprint "") + ) + (path "/bdc65fb7-cc38-4a5f-83fb-aead1a927e36" + (reference "U5") (unit 1) (value "d_dff") (footprint "") + ) + (path "/55dcc201-c19a-450f-82cd-501731f1860f" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c806f85d-7271-465b-93f4-ff2f071faf2b" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/7925735e-540c-4404-80a5-0852aeee7c0d" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/4e902060-bce8-49bb-ab1a-283f98a9940f" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d396ffec-74dd-482b-8eee-dd1ce597ed94" + (reference "U10") (unit 1) (value "d_and") (footprint "") + ) + (path "/a5c4a907-f0cd-42c3-ba35-5c324826181a" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/fa2fdf66-b9b1-48b4-925b-028aad8b7a80" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/467adadd-1408-4075-b2b6-a63de5042592" + (reference "U13") (unit 1) (value "d_or") (footprint "") + ) + (path "/ed62a9f2-c608-4a0b-91fe-0f157a5df21d" + (reference "U14") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2ab78984-906d-48e8-9465-466732178c31" + (reference "U15") (unit 1) (value "d_or") (footprint "") + ) + (path "/e2869c4d-1880-4f3f-b3e3-d0b695163f20" + (reference "U16") (unit 1) (value "d_and") (footprint "") + ) + (path "/b8a73082-8016-43c9-84b1-682484e72046" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/da13874d-a38b-4b75-b054-20dd46aac093" + (reference "U18") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/74LS161_sub/74LS161_sub.proj b/library/SubcircuitLibrary/74LS161_sub/74LS161_sub.proj new file mode 100644 index 000000000..49493c3f5 --- /dev/null +++ b/library/SubcircuitLibrary/74LS161_sub/74LS161_sub.proj @@ -0,0 +1 @@ +schematicFile 74LS161_sub.kicad_sch diff --git a/library/SubcircuitLibrary/74LS161_sub/74LS161_test.cir b/library/SubcircuitLibrary/74LS161_sub/74LS161_test.cir new file mode 100644 index 000000000..93d53c8cd --- /dev/null +++ b/library/SubcircuitLibrary/74LS161_sub/74LS161_test.cir @@ -0,0 +1,11 @@ +.title KiCad schematic +U3 Net-_U2-Pad5_ plot_v1 +U4 Net-_U2-Pad6_ plot_v1 +v2 Net-_U1-Pad2_ GND pulse +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ adc_bridge_2 +v1 Net-_U1-Pad1_ GND pulse +X1 Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U2-Pad3_ Net-_U2-Pad4_ 74LS161 +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U2-Pad3_ Net-_U2-Pad4_ Net-_U2-Pad5_ Net-_U2-Pad6_ Net-_U2-Pad7_ Net-_U2-Pad8_ dac_bridge_4 +U5 Net-_U2-Pad7_ plot_v1 +U6 Net-_U2-Pad8_ plot_v1 +.end diff --git a/library/SubcircuitLibrary/74LS161_sub/74LS161_test.kicad_sch b/library/SubcircuitLibrary/74LS161_sub/74LS161_test.kicad_sch new file mode 100644 index 000000000..91f8d3f46 --- /dev/null +++ b/library/SubcircuitLibrary/74LS161_sub/74LS161_test.kicad_sch @@ -0,0 +1,617 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 8a99c8b7-f2d1-4f80-8770-3dfac05143f8) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_2" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_2" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_2_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_2_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -1.27 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -1.27 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:74LS161" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at -12.7 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "74LS161" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at -12.7 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at -12.7 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "74LS161_0_1" + (rectangle (start -6.35 7.62) (end 8.89 -13.97) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "74LS161_1_1" + (pin input line (at -6.35 3.81 180) (length 2.54) + (name "CLK" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -5.08 180) (length 2.54) + (name "CLR" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 5.08 0) (length 2.54) + (name "Qa" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 1.27 0) (length 2.54) + (name "Qb" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 -2.54 0) (length 2.54) + (name "Qc" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 -6.35 0) (length 2.54) + (name "Qd" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 81.28 74.93) (diameter 0) (color 0 0 0 0) + (uuid 5c413c93-57c7-47d8-845d-7580e859e68c) + ) + + (wire (pts (xy 186.69 68.58) (xy 193.04 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0137e6e8-5fe0-4b72-aca9-9181cf9688af) + ) + (wire (pts (xy 74.93 74.93) (xy 81.28 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 045c8cec-631a-4224-a0be-dffb027d50d6) + ) + (wire (pts (xy 81.28 46.99) (xy 74.93 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 105b6dbd-d2f8-4ed5-bd27-20a4d17a505d) + ) + (wire (pts (xy 90.17 50.8) (xy 90.17 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1443ed5e-a6a4-4012-a631-7018d361b340) + ) + (wire (pts (xy 81.28 24.13) (xy 90.17 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16b26dd3-b3d7-4b50-8477-3df418fce178) + ) + (wire (pts (xy 146.05 49.53) (xy 153.67 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17e0be3e-a891-48ae-9463-4075781e6fd6) + ) + (wire (pts (xy 119.38 48.26) (xy 130.81 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35bdaef0-303f-4e14-bf7e-f508f6574bf2) + ) + (wire (pts (xy 153.67 49.53) (xy 153.67 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36c99216-85f2-4ef9-9ee0-a154ab5f6e4f) + ) + (wire (pts (xy 119.38 46.99) (xy 119.38 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3df784c1-051e-484b-9e84-6014128b5683) + ) + (wire (pts (xy 153.67 38.1) (xy 153.67 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45f29d1d-e05c-4f00-8d3d-287ceb79ecfd) + ) + (wire (pts (xy 146.05 45.72) (xy 153.67 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7342a566-43cc-44a0-bd4f-1619ccdf1d29) + ) + (wire (pts (xy 187.96 43.18) (xy 187.96 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79c5bccd-9a6f-4aea-83e5-9c3d28b9e088) + ) + (wire (pts (xy 189.23 40.64) (xy 189.23 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d5bf761-30c2-4d4a-9222-b0a771fe9e7c) + ) + (wire (pts (xy 81.28 73.66) (xy 81.28 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e5ace65-e912-46e1-a58f-0c5d8bb3c49f) + ) + (wire (pts (xy 146.05 41.91) (xy 153.67 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ff97d28-22fc-4b4d-b412-c299e20b91c1) + ) + (wire (pts (xy 153.67 41.91) (xy 153.67 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 850cfdda-2282-4c06-ac6a-ef406d2aa443) + ) + (wire (pts (xy 181.61 48.26) (xy 181.61 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7bf20ec-8906-4e79-9b9f-68dd2c26c63c) + ) + (wire (pts (xy 90.17 24.13) (xy 90.17 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad4e43b6-cccc-4350-974c-b335c702cfe9) + ) + (wire (pts (xy 187.96 53.34) (xy 191.77 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ade6c7a6-d7ff-4699-83aa-00368d3a5c37) + ) + (wire (pts (xy 186.69 45.72) (xy 186.69 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b800263a-6b97-464f-9274-b14ef4ebadab) + ) + (wire (pts (xy 146.05 38.1) (xy 153.67 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b89c1ebc-b0eb-4f3e-bb61-2870179a39f9) + ) + (wire (pts (xy 81.28 74.93) (xy 81.28 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbed2e4a-6983-4437-901e-4e3152353899) + ) + (wire (pts (xy 181.61 40.64) (xy 189.23 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9c34772-7d92-4e5d-b32d-eb0632574070) + ) + (wire (pts (xy 119.38 44.45) (xy 130.81 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dee366c2-5113-4ba8-b000-2d67debdea54) + ) + (wire (pts (xy 81.28 50.8) (xy 90.17 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e03b3c65-28ff-4e93-b0f8-76ddc4a6e7f1) + ) + (wire (pts (xy 181.61 43.18) (xy 187.96 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0cab7b0-e693-4cb4-96d8-a5c515544bd7) + ) + (wire (pts (xy 74.93 46.99) (xy 74.93 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2471547-4e67-46cc-8472-543501dcf076) + ) + (wire (pts (xy 181.61 81.28) (xy 198.12 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e802064a-efd2-4889-b4c5-e3510bb77062) + ) + (wire (pts (xy 181.61 45.72) (xy 186.69 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0306708-4f55-4898-9433-16b2420ec923) + ) + (wire (pts (xy 130.81 44.45) (xy 130.81 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1cd2b27-1e4c-4d8f-93b3-9e96500f501f) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_2") (at 105.41 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2fc55294-e509-46da-9765-b232f7ae5283) + (property "Reference" "U1" (id 0) (at 104.775 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_2" (id 1) (at 104.775 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 105.41 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 105.41 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ac106d77-147c-4057-9130-1d51e7f9cbf3)) + (pin "2" (uuid e2f5a91b-e787-49d3-adb4-d0903b13c4ca)) + (pin "3" (uuid 0b1b8219-76fd-4a4e-886c-ff0a206f2d0f)) + (pin "4" (uuid a5a305c9-b252-4d9c-9719-828f5b4cba46)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 198.12 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 66aa1a77-ed5f-4bca-85eb-7b6463bb754b) + (property "Reference" "U6" (id 0) (at 201.93 72.39 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 201.93 76.2 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 198.12 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid dd460c14-238e-4ac4-a07a-c5bdaffcc65f)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 189.23 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8076487a-33fc-488a-aebe-4a256436b713) + (property "Reference" "U3" (id 0) (at 193.04 30.48 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 193.04 34.29 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 189.23 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 01c9bf45-5554-4f93-8352-f8a6b77df464)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 193.04 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8c9cf2e6-abcd-4fea-bcf9-051cc6bb1725) + (property "Reference" "U5" (id 0) (at 196.85 59.69 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 196.85 63.5 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 193.04 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 193.04 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid ce321976-2ea4-4f36-a771-1890bb7b791e)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 81.28 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 999ff9cd-04f1-4eca-ab23-3ec190ae7f0a) + (property "Reference" "v1" (id 0) (at 86.36 32.385 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 86.36 36.195 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 86.36 40.005 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 81.28 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0386bdeb-4d35-4bb7-b054-0e9ce00173a5)) + (pin "2" (uuid 3137a77e-cf03-4c1b-b082-950ac50030d5)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 191.77 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ae6c4be1-aec3-4750-bbfb-8d2534d136ac) + (property "Reference" "U4" (id 0) (at 195.58 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 195.58 48.26 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 191.77 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 191.77 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 22e47022-2493-4704-bfaa-d9f474e991d0)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 81.28 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c554ac0a-afb5-4d06-884d-a43636baec5e) + (property "Reference" "#PWR0101" (id 0) (at 81.28 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 81.28 81.28 0)) + (property "Footprint" "" (id 2) (at 81.28 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 81.28 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b6fe76f2-d7e6-44db-bfc6-ed85eb013d67)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_4") (at 167.64 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c7b1b521-cf95-4f71-8364-a5dd48a2702f) + (property "Reference" "U2" (id 0) (at 167.64 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_4" (id 1) (at 167.64 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9f538ddb-72e8-41d8-aed5-03bdd9a314d4)) + (pin "2" (uuid ec56d21d-02f5-4c79-807f-eb18db866dff)) + (pin "3" (uuid ea027bca-811d-41d8-a051-a909b8ed5ff0)) + (pin "4" (uuid 92a1e1b3-4a96-44d8-9dde-3e0474aabe5f)) + (pin "5" (uuid 02fb01af-0fce-4c50-b7ee-0a2810766b6a)) + (pin "6" (uuid 5471690b-4f8e-44ea-8b6f-b2cacf5b0401)) + (pin "7" (uuid 625be5ca-5265-4391-af17-43c04f41d332)) + (pin "8" (uuid 37fead51-be2d-4c9e-99b5-08ff03d57eec)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 81.28 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ef023444-8c4a-4be9-b7e7-7a20b4c75f38) + (property "Reference" "v2" (id 0) (at 86.36 59.055 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 86.36 62.865 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 86.36 66.675 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 81.28 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 584d8265-3745-4f46-bc74-3954ae334280)) + (pin "2" (uuid d510258f-99c2-40a8-b61e-7a630b83bc5d)) + ) + + (symbol (lib_id "eSim_Subckt:74LS161") (at 137.16 43.18 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f797745f-e37c-4a3b-9eb6-33e35a1d56d1) + (property "Reference" "X1" (id 0) (at 137.16 43.18 0)) + (property "Value" "74LS161" (id 1) (at 137.16 45.72 0)) + (property "Footprint" "" (id 2) (at 124.46 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 124.46 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid efd421f1-481c-4d85-a7ad-a952b405452f)) + (pin "2" (uuid 0d5bdb87-71cb-47c9-8c20-0b551f14876e)) + (pin "3" (uuid 9c85dbc3-bb69-4648-bb13-fc7a1bcb071e)) + (pin "4" (uuid d5828a45-ae90-462d-813a-3a7e75f3ef9a)) + (pin "5" (uuid 6c8b81ec-7ae2-4e51-b5b1-1906e6a4f810)) + (pin "6" (uuid 73ff5b55-33ae-49a6-9d03-bec97303d155)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/c554ac0a-afb5-4d06-884d-a43636baec5e" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/2fc55294-e509-46da-9765-b232f7ae5283" + (reference "U1") (unit 1) (value "adc_bridge_2") (footprint "") + ) + (path "/c7b1b521-cf95-4f71-8364-a5dd48a2702f" + (reference "U2") (unit 1) (value "dac_bridge_4") (footprint "") + ) + (path "/8076487a-33fc-488a-aebe-4a256436b713" + (reference "U3") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/ae6c4be1-aec3-4750-bbfb-8d2534d136ac" + (reference "U4") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/8c9cf2e6-abcd-4fea-bcf9-051cc6bb1725" + (reference "U5") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/66aa1a77-ed5f-4bca-85eb-7b6463bb754b" + (reference "U6") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/f797745f-e37c-4a3b-9eb6-33e35a1d56d1" + (reference "X1") (unit 1) (value "74LS161") (footprint "") + ) + (path "/999ff9cd-04f1-4eca-ab23-3ec190ae7f0a" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/ef023444-8c4a-4be9-b7e7-7a20b4c75f38" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/74LS161_sub/74LS161_test.proj b/library/SubcircuitLibrary/74LS161_sub/74LS161_test.proj new file mode 100644 index 000000000..9806eeb9e --- /dev/null +++ b/library/SubcircuitLibrary/74LS161_sub/74LS161_test.proj @@ -0,0 +1 @@ +schematicFile 74LS161_test.kicad_sch diff --git a/library/SubcircuitLibrary/74LS165_sub/74LS165_sub.cir b/library/SubcircuitLibrary/74LS165_sub/74LS165_sub.cir new file mode 100644 index 000000000..9d3408152 --- /dev/null +++ b/library/SubcircuitLibrary/74LS165_sub/74LS165_sub.cir @@ -0,0 +1,27 @@ +.title KiCad schematic +U5 Net-_U1-Pad4_ Net-_U1-Pad8_ Net-_U17-Pad1_ d_and +U6 Net-_U1-Pad5_ Net-_U1-Pad8_ Net-_U16-Pad1_ d_and +U2 Net-_U1-Pad1_ Net-_U1-Pad8_ Net-_U10-Pad1_ d_and +U3 Net-_U1-Pad2_ Net-_U1-Pad8_ Net-_U14-Pad1_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ PORT +U4 Net-_U1-Pad3_ Net-_U1-Pad8_ Net-_U15-Pad1_ d_and +U20 Net-_U17-Pad3_ Net-_U1-Pad9_ unconnected-_U20-Pad3_ unconnected-_U20-Pad4_ Net-_U16-Pad2_ unconnected-_U20-Pad6_ d_dff +U19 Net-_U15-Pad3_ Net-_U1-Pad9_ unconnected-_U19-Pad3_ unconnected-_U19-Pad4_ Net-_U17-Pad2_ unconnected-_U19-Pad6_ d_dff +U22 Net-_U12-Pad3_ Net-_U1-Pad9_ unconnected-_U22-Pad3_ unconnected-_U22-Pad4_ Net-_U13-Pad2_ unconnected-_U22-Pad6_ d_dff +U21 Net-_U1-Pad9_ Net-_U1-Pad9_ unconnected-_U21-Pad3_ unconnected-_U21-Pad4_ Net-_U12-Pad2_ unconnected-_U21-Pad6_ d_dff +U24 Net-_U11-Pad3_ Net-_U1-Pad9_ unconnected-_U24-Pad3_ unconnected-_U24-Pad4_ Net-_U1-Pad11_ unconnected-_U24-Pad6_ d_dff +U23 Net-_U13-Pad3_ Net-_U1-Pad9_ unconnected-_U23-Pad3_ unconnected-_U23-Pad4_ Net-_U11-Pad2_ unconnected-_U23-Pad6_ d_dff +U25 Net-_U1-Pad11_ Net-_U1-Pad12_ d_inverter +U10 Net-_U10-Pad1_ Net-_U1-Pad9_ unconnected-_U10-Pad3_ unconnected-_U10-Pad4_ Net-_U10-Pad5_ unconnected-_U10-Pad6_ d_dff +U18 Net-_U14-Pad3_ Net-_U1-Pad9_ unconnected-_U18-Pad3_ unconnected-_U18-Pad4_ Net-_U15-Pad2_ unconnected-_U18-Pad6_ d_dff +U15 Net-_U15-Pad1_ Net-_U15-Pad2_ Net-_U15-Pad3_ d_or +U14 Net-_U14-Pad1_ Net-_U10-Pad5_ Net-_U14-Pad3_ d_or +U16 Net-_U16-Pad1_ Net-_U16-Pad2_ Net-_U1-Pad9_ d_or +U17 Net-_U17-Pad1_ Net-_U17-Pad2_ Net-_U17-Pad3_ d_or +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U12-Pad3_ d_or +U9 Net-_U1-Pad10_ Net-_U1-Pad8_ Net-_U11-Pad1_ d_and +U7 Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_U12-Pad1_ d_and +U8 Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U13-Pad1_ d_and +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_or +U13 Net-_U13-Pad1_ Net-_U13-Pad2_ Net-_U13-Pad3_ d_or +.end diff --git a/library/SubcircuitLibrary/74LS165_sub/74LS165_sub.kicad_sch b/library/SubcircuitLibrary/74LS165_sub/74LS165_sub.kicad_sch new file mode 100644 index 000000000..5ca944d5b --- /dev/null +++ b/library/SubcircuitLibrary/74LS165_sub/74LS165_sub.kicad_sch @@ -0,0 +1,2180 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid ffb50d94-61e4-415d-933a-95157a5e5231) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 113.03 73.66) (diameter 0) (color 0 0 0 0) + (uuid 093ad503-0a31-4e09-853d-ebc6235f8c56) + ) + (junction (at 242.57 63.5) (diameter 0) (color 0 0 0 0) + (uuid 3f70a051-b0a4-47ee-bccc-f269b438a52d) + ) + (junction (at 82.55 99.06) (diameter 0) (color 0 0 0 0) + (uuid 4bcc01de-a6d8-4a08-ac87-84b70b64ac82) + ) + (junction (at 176.53 68.58) (diameter 0) (color 0 0 0 0) + (uuid 6a642f32-1b14-4cce-a350-b891bc4e5260) + ) + (junction (at 281.94 77.47) (diameter 0) (color 0 0 0 0) + (uuid 7091d36d-12db-4f0d-b283-fc392d45678c) + ) + (junction (at 207.01 72.39) (diameter 0) (color 0 0 0 0) + (uuid 7a62009c-96ee-4a3d-9790-72eb43760c53) + ) + (junction (at 219.71 73.66) (diameter 0) (color 0 0 0 0) + (uuid 7ca7c0f8-e725-48d8-a3a9-0e476fe12f37) + ) + (junction (at 80.01 135.89) (diameter 0) (color 0 0 0 0) + (uuid 9a921fb8-4859-460e-ad8e-272181f274cc) + ) + (junction (at 82.55 111.76) (diameter 0) (color 0 0 0 0) + (uuid b88a79ba-80f6-4584-9233-b7b344a2d7f5) + ) + (junction (at 81.28 110.49) (diameter 0) (color 0 0 0 0) + (uuid ba41e3be-f2e4-492f-afd6-e5acba332f33) + ) + (junction (at 295.91 77.47) (diameter 0) (color 0 0 0 0) + (uuid ba87c7cc-755d-450f-a7c8-92ddbe0a449c) + ) + (junction (at 81.28 107.95) (diameter 0) (color 0 0 0 0) + (uuid c340ae4e-2d99-4ba0-a2a0-02d3dafe2b25) + ) + (junction (at 82.55 76.2) (diameter 0) (color 0 0 0 0) + (uuid c3493aed-0a89-4cea-a58f-1703a0f651f0) + ) + (junction (at 427.99 46.99) (diameter 0) (color 0 0 0 0) + (uuid c44d86a4-e3fc-4efd-9274-6da71deedef3) + ) + (junction (at 82.55 87.63) (diameter 0) (color 0 0 0 0) + (uuid d27380f3-aec0-4019-bb64-0c498c099fba) + ) + (junction (at 71.12 151.13) (diameter 0) (color 0 0 0 0) + (uuid dd2b1303-177d-4744-b487-d38ed53f1c10) + ) + (junction (at 144.78 72.39) (diameter 0) (color 0 0 0 0) + (uuid f7c5a7ae-6fc1-4eac-ae2d-7ebc76bfb5aa) + ) + + (wire (pts (xy 140.97 46.99) (xy 142.24 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00544162-e198-4944-93a7-098e570ed933) + ) + (wire (pts (xy 281.94 77.47) (xy 281.94 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 031f45ac-eefb-4e4d-a292-7d13ff2f9317) + ) + (wire (pts (xy 207.01 46.99) (xy 207.01 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03236143-0968-458e-9662-cc49bdd8fd14) + ) + (wire (pts (xy 317.5 175.26) (xy 119.38 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05d2a9e8-8b8c-4071-ae6d-12bd6068dd54) + ) + (wire (pts (xy 83.82 73.66) (xy 77.47 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06031ea5-3e87-487e-8ebe-8b6fd2581998) + ) + (wire (pts (xy 80.01 107.95) (xy 80.01 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07308916-e643-4a0d-89d1-e1f730c97bdc) + ) + (wire (pts (xy 238.76 46.99) (xy 238.76 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07a32f3f-bffc-4620-9a16-1ece1963cf93) + ) + (wire (pts (xy 105.41 46.99) (xy 105.41 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09c2b48c-dca4-4efd-a731-b3e8e8a2ad3c) + ) + (wire (pts (xy 364.49 48.26) (xy 370.84 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e5b754c-7b3d-4f10-9f0b-36e3a191dcb4) + ) + (wire (pts (xy 120.65 90.17) (xy 120.65 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1015f5d1-a095-49d6-b283-b1c9f333f17c) + ) + (wire (pts (xy 176.53 63.5) (xy 176.53 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 128d2732-a178-47b0-9c9d-d90827bb0ca7) + ) + (wire (pts (xy 143.51 86.36) (xy 143.51 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12b8c8b1-fc6d-40fe-914a-ac93908ce710) + ) + (wire (pts (xy 78.74 110.49) (xy 81.28 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 134fb96e-bd80-446c-aa30-dd77b6a31cd6) + ) + (wire (pts (xy 175.26 46.99) (xy 176.53 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18460fdc-e6cc-4540-8d79-caa016ec110a) + ) + (wire (pts (xy 144.78 63.5) (xy 144.78 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 190d24b4-8409-4f14-8ffb-f2d90dff4b80) + ) + (wire (pts (xy 82.55 99.06) (xy 85.09 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 191e3347-dc24-44a8-80b3-ffc16e430478) + ) + (wire (pts (xy 281.94 80.01) (xy 219.71 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a5867a6-6dfe-4948-b4f6-76bb2b1f7e1f) + ) + (wire (pts (xy 383.54 190.5) (xy 383.54 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a59351c-6bf5-48b9-ba7f-037c3c4d7d02) + ) + (wire (pts (xy 116.84 144.78) (xy 119.38 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e0c49f1-a5d1-4f56-b202-3f0e06220393) + ) + (wire (pts (xy 219.71 80.01) (xy 219.71 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ed8ae9a-9a93-462e-b0dc-791e82451c5b) + ) + (wire (pts (xy 86.36 135.89) (xy 80.01 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2019812e-0468-4c4c-bb39-e311b531b8a8) + ) + (wire (pts (xy 115.57 134.62) (xy 115.57 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21e3771b-df92-415f-83d4-27166862904a) + ) + (wire (pts (xy 109.22 74.93) (xy 109.22 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 270c269d-a866-46dd-80f5-c930a598cc90) + ) + (wire (pts (xy 295.91 82.55) (xy 295.91 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27928460-bfc4-4d50-987d-8c8c34ee0630) + ) + (wire (pts (xy 276.86 46.99) (xy 281.94 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27e3e2a9-17f7-49a5-8970-f2cb000a1233) + ) + (wire (pts (xy 80.01 135.89) (xy 78.74 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27f914e6-a244-4585-b6c7-4034a3a0b35e) + ) + (wire (pts (xy 209.55 72.39) (xy 207.01 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a715321-fedb-4d86-add3-327ecf131ac4) + ) + (wire (pts (xy 106.68 74.93) (xy 109.22 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b2d40b9-bf6a-42a0-9ae6-c7e0019a9219) + ) + (wire (pts (xy 209.55 63.5) (xy 209.55 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d2209e8-56d6-4a86-afbc-2a9025fea6bf) + ) + (wire (pts (xy 332.74 167.64) (xy 142.24 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e370252-4609-4389-9643-54a6baa16e80) + ) + (wire (pts (xy 209.55 48.26) (xy 209.55 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e871d76-faed-40f8-800b-a5732659b84f) + ) + (wire (pts (xy 120.65 119.38) (xy 120.65 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2eacad75-8745-4479-8ab3-a7c6221dd1c8) + ) + (wire (pts (xy 173.99 46.99) (xy 173.99 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3227ba81-327c-4df7-9aa9-a6c11e01d1b7) + ) + (wire (pts (xy 398.78 46.99) (xy 383.54 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33ead268-a6ae-416e-ad81-c593b3107d59) + ) + (wire (pts (xy 80.01 81.28) (xy 80.01 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3474bfec-cd4f-4e65-b3ff-2ff5c5908c26) + ) + (wire (pts (xy 440.69 90.17) (xy 427.99 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3593562f-c90d-4a6a-85d8-ad9dbae5e011) + ) + (wire (pts (xy 110.49 86.36) (xy 110.49 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35ee0fa5-8d09-4280-99ca-1352d5de7266) + ) + (wire (pts (xy 82.55 64.77) (xy 82.55 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35f66e68-3832-4d47-bc8f-a10f278bc651) + ) + (wire (pts (xy 78.74 83.82) (xy 78.74 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 364d93b9-d1ee-4223-b9da-48f74a72593a) + ) + (wire (pts (xy 76.2 81.28) (xy 80.01 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36f45176-587f-4788-bd00-e6b802f17ec7) + ) + (wire (pts (xy 180.34 68.58) (xy 176.53 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38953f35-b4bc-4b2b-9b00-057d00799f4b) + ) + (wire (pts (xy 295.91 77.47) (xy 281.94 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d75d41a-0fae-4612-9f59-ece616e2783f) + ) + (wire (pts (xy 110.49 96.52) (xy 120.65 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dd11d56-7cbe-491b-8a87-9dcdb0ae965d) + ) + (wire (pts (xy 82.55 76.2) (xy 82.55 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ddb6b94-dc62-4ecc-8636-8059ba99f3ca) + ) + (wire (pts (xy 427.99 46.99) (xy 448.31 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fe4b002-c5fc-44e7-a6a6-155612c4a3f1) + ) + (wire (pts (xy 76.2 78.74) (xy 83.82 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 408c6a13-7f78-408f-96a7-72dfe4594770) + ) + (wire (pts (xy 219.71 73.66) (xy 240.03 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 409f912a-b9fc-4a80-8054-7712dc38d0d3) + ) + (wire (pts (xy 148.59 107.95) (xy 148.59 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42b216cb-ce71-45a9-bff3-bd8db2271e31) + ) + (wire (pts (xy 113.03 73.66) (xy 113.03 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 456520c8-bf64-4dd2-a85d-75fd4c310e34) + ) + (wire (pts (xy 82.55 107.95) (xy 81.28 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47fde1a4-effc-4f35-b5aa-917c75cbbbc7) + ) + (wire (pts (xy 106.68 86.36) (xy 110.49 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ee2989b-dccb-4b03-9ba0-fe830805e099) + ) + (wire (pts (xy 107.95 110.49) (xy 107.95 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 515c11c1-42a8-4d64-adaa-5e2f26425f99) + ) + (wire (pts (xy 242.57 46.99) (xy 242.57 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 524f1aaf-45ee-43ac-ac86-b859a4e10761) + ) + (wire (pts (xy 332.74 48.26) (xy 336.55 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5839b72c-2e30-4baa-9c07-897236a86667) + ) + (wire (pts (xy 201.93 111.76) (xy 201.93 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58e4b983-4500-403f-bd77-c7bb3888e593) + ) + (wire (pts (xy 80.01 116.84) (xy 69.85 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ccbad49-72d1-41b4-b124-f4f2d6f8678c) + ) + (wire (pts (xy 281.94 63.5) (xy 281.94 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d4083c9-86e9-40ad-8c6e-67167d77590c) + ) + (wire (pts (xy 176.53 72.39) (xy 144.78 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60148743-6163-4c36-bda4-38bd14d54933) + ) + (wire (pts (xy 81.28 107.95) (xy 80.01 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60fb44c1-9bc6-4d5b-bdba-85f6bafb8498) + ) + (wire (pts (xy 107.95 97.79) (xy 115.57 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 623ba881-4bd9-454a-962d-10289f6f379d) + ) + (wire (pts (xy 76.2 83.82) (xy 78.74 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62f1cb50-1073-440b-8674-43ebd78b73f0) + ) + (wire (pts (xy 115.57 166.37) (xy 119.38 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63474de4-c78e-4932-9984-1258f3870925) + ) + (wire (pts (xy 86.36 86.36) (xy 86.36 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 657f2b36-8e8a-48bb-bfb6-fa018c2dcddc) + ) + (wire (pts (xy 207.01 72.39) (xy 207.01 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65ed0ac0-4e0b-4264-a035-a22ae4fde6d4) + ) + (wire (pts (xy 81.28 111.76) (xy 81.28 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6910caef-370b-43aa-a58d-ff175d9817c4) + ) + (wire (pts (xy 139.7 93.98) (xy 139.7 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b33b819-42f4-4e4f-b1d1-4ab162aec16f) + ) + (wire (pts (xy 115.57 97.79) (xy 115.57 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d98c2ab-7371-4d75-8873-afdf87510215) + ) + (wire (pts (xy 152.4 111.76) (xy 201.93 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71522812-9997-455c-8174-48d90608b242) + ) + (wire (pts (xy 148.59 114.3) (xy 129.54 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 719d197d-f19e-41e7-8d3f-d10c1a18e776) + ) + (wire (pts (xy 120.65 127) (xy 120.65 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 727725ba-049f-47aa-9f9e-bf09f3533ebb) + ) + (wire (pts (xy 427.99 90.17) (xy 427.99 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 734f623e-dffe-4b06-b158-c1080b3562ef) + ) + (wire (pts (xy 76.2 62.23) (xy 82.55 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76bbeb60-63da-4b30-9b68-e78646017748) + ) + (wire (pts (xy 204.47 46.99) (xy 207.01 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 772feaf6-4a07-4972-a6bc-126f4403f693) + ) + (wire (pts (xy 175.26 97.79) (xy 175.26 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 796dbeb0-92ab-472b-a9ed-5d23f90680d1) + ) + (wire (pts (xy 82.55 87.63) (xy 83.82 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a61f0cf-f91b-4d28-9e87-20fe97433b18) + ) + (wire (pts (xy 109.22 85.09) (xy 120.65 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bfb51e5-3fd8-4ff0-abfb-198aa4c46825) + ) + (wire (pts (xy 142.24 90.17) (xy 120.65 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e915275-9325-4c40-bc26-5e28e94c4f4c) + ) + (wire (pts (xy 82.55 99.06) (xy 82.55 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 811e68a3-1ba1-44a6-8215-47f5c55341ff) + ) + (wire (pts (xy 119.38 175.26) (xy 119.38 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86dde807-a760-4d95-915f-fc698a09021e) + ) + (wire (pts (xy 139.7 101.6) (xy 120.65 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86ee93a7-a238-4720-b16d-165d0a313f92) + ) + (wire (pts (xy 82.55 111.76) (xy 81.28 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8743cc34-e630-4db7-8cc7-7fa1f80ec217) + ) + (wire (pts (xy 77.47 88.9) (xy 77.47 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 877c0cff-02da-465a-9736-d52352a280ae) + ) + (wire (pts (xy 78.74 102.87) (xy 85.09 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a62c806-4aef-4741-b755-c0669c84a2c6) + ) + (wire (pts (xy 177.8 69.85) (xy 177.8 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fd51edd-3ff5-4e2b-bdda-cc1b80c663bc) + ) + (wire (pts (xy 273.05 151.13) (xy 119.38 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 914ce8f3-ce79-4df8-a6e5-7d839c790e6d) + ) + (wire (pts (xy 332.74 48.26) (xy 332.74 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92b4084f-2d04-411d-b740-1a2cf7386b00) + ) + (wire (pts (xy 120.65 101.6) (xy 120.65 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92bfd745-d702-498e-b437-a745b005e0d5) + ) + (wire (pts (xy 143.51 125.73) (xy 242.57 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95b6e0f8-5cec-4c2f-9541-716e6ddaa80a) + ) + (wire (pts (xy 71.12 151.13) (xy 113.03 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a490d18-a217-453e-81e7-3c41ffd83d5d) + ) + (wire (pts (xy 180.34 72.39) (xy 207.01 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b233ecd-5b2f-4f91-951b-0e53694c9fdc) + ) + (wire (pts (xy 81.28 110.49) (xy 81.28 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d9d3c7c-10f7-4754-9f4a-b96758625a92) + ) + (wire (pts (xy 109.22 146.05) (xy 109.22 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ee235f2-b618-4f8c-84ae-6fad2c018fd0) + ) + (wire (pts (xy 80.01 96.52) (xy 85.09 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fd838c2-3e17-40ce-a3a6-0c350ba86d2e) + ) + (wire (pts (xy 142.24 46.99) (xy 142.24 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a30138db-4fab-4a94-b5af-7476b23bc0b7) + ) + (wire (pts (xy 109.22 134.62) (xy 115.57 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a34e5854-5d9b-4162-acb8-dbf69bf05de1) + ) + (wire (pts (xy 201.93 48.26) (xy 209.55 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a538b55a-3e15-4bf6-b8e6-450919a556f4) + ) + (wire (pts (xy 143.51 46.99) (xy 144.78 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a60db7ea-c411-4ada-90f8-91800c234a4f) + ) + (wire (pts (xy 69.85 151.13) (xy 71.12 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6c58792-4df2-43ed-8769-5c6d1b0a0ef3) + ) + (wire (pts (xy 82.55 76.2) (xy 83.82 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a72334ea-3024-4bfc-a23f-d59de68da715) + ) + (wire (pts (xy 144.78 72.39) (xy 144.78 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a79994c5-aba5-445e-9492-f520ec302d43) + ) + (wire (pts (xy 76.2 88.9) (xy 77.47 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa887cdd-078e-4587-8378-6d071cfaac98) + ) + (wire (pts (xy 83.82 78.74) (xy 83.82 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab068c48-246a-456b-9680-edaa001c4138) + ) + (wire (pts (xy 336.55 64.77) (xy 336.55 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac6403b5-9e51-4846-943b-5fb209267904) + ) + (wire (pts (xy 119.38 151.13) (xy 119.38 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae3973e5-3795-4af2-90c0-5666463dc2f8) + ) + (wire (pts (xy 76.2 144.78) (xy 86.36 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae81e9af-e4bc-496d-8d37-310e5e15e77b) + ) + (wire (pts (xy 398.78 63.5) (xy 398.78 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0837c44-8710-4b3d-97a7-d51bfc2ffaaf) + ) + (wire (pts (xy 142.24 146.05) (xy 276.86 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3326b6f-b063-4d46-97bd-bc9a70509ea5) + ) + (wire (pts (xy 86.36 124.46) (xy 82.55 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b523cee8-7bc1-415c-ab24-9b8fc11920dc) + ) + (wire (pts (xy 317.5 46.99) (xy 317.5 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5e9292f-5a94-4a52-b75f-234b140762a3) + ) + (wire (pts (xy 77.47 133.35) (xy 86.36 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b606675d-4abd-46a1-8915-f5f74975fe5c) + ) + (wire (pts (xy 80.01 147.32) (xy 80.01 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b712a819-f1cc-415b-a01b-aaca75421d6e) + ) + (wire (pts (xy 177.8 107.95) (xy 148.59 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b75cf2d5-2e39-4425-898c-06c99cdf4421) + ) + (wire (pts (xy 85.09 111.76) (xy 82.55 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7b55b8f-b108-4bb9-aec5-95fb9715c71e) + ) + (wire (pts (xy 172.72 46.99) (xy 173.99 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bcb4a76d-877a-4207-8a94-0a689b9b4160) + ) + (wire (pts (xy 143.51 97.79) (xy 175.26 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bda30215-f889-4757-94e8-08a0994ee354) + ) + (wire (pts (xy 270.51 46.99) (xy 273.05 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be999fb0-64f1-4b2b-95ea-09e4e8b03b3f) + ) + (wire (pts (xy 116.84 123.19) (xy 116.84 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf29b5cf-50a7-4178-9b71-46cfd8219723) + ) + (wire (pts (xy 113.03 63.5) (xy 113.03 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf451552-299f-42b3-8cee-6ee684383ada) + ) + (wire (pts (xy 448.31 46.99) (xy 448.31 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0240e21-3fd4-4801-b8f1-f35f6fa4fe70) + ) + (wire (pts (xy 77.47 73.66) (xy 77.47 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0a599a5-2ff0-40ea-b6d3-c49c968c7866) + ) + (wire (pts (xy 238.76 129.54) (xy 120.65 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0b258cc-d353-4ac7-9d84-beb4120446fd) + ) + (wire (pts (xy 77.47 76.2) (xy 76.2 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c489e1fc-f4d9-41d2-b204-3ac1dccc7918) + ) + (wire (pts (xy 109.22 189.23) (xy 118.11 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4c9f4b0-da87-4dd7-9c2b-c0f6935a31f9) + ) + (wire (pts (xy 336.55 77.47) (xy 295.91 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c58286ac-2a18-44c3-bf90-9eefaffb3cae) + ) + (wire (pts (xy 207.01 69.85) (xy 177.8 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c62915ec-8de0-417f-849f-1e0c61f94bce) + ) + (wire (pts (xy 76.2 86.36) (xy 86.36 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbab5932-3427-4c32-ad68-58bf955c9ad5) + ) + (wire (pts (xy 398.78 82.55) (xy 295.91 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd217d45-3f1c-447c-b2f0-ef08df46aabd) + ) + (wire (pts (xy 129.54 114.3) (xy 129.54 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2099a83-3771-4c45-8708-e0c94c74e91c) + ) + (wire (pts (xy 82.55 87.63) (xy 82.55 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d23dc99f-7991-4ee0-81f0-3dd665ed7a4c) + ) + (wire (pts (xy 242.57 63.5) (xy 240.03 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d65b2ab0-627a-4379-ae70-3ce74074fd72) + ) + (wire (pts (xy 82.55 124.46) (xy 82.55 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6d94e5b-dc2a-47cf-9b43-07fe37f32ab8) + ) + (wire (pts (xy 207.01 73.66) (xy 219.71 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9addd91-b406-4640-b548-49918108b511) + ) + (wire (pts (xy 144.78 73.66) (xy 113.03 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da171f33-5282-4fb7-881e-0d899a0bde14) + ) + (wire (pts (xy 273.05 46.99) (xy 273.05 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc0c4a47-f33a-41ba-ab4c-27040146061c) + ) + (wire (pts (xy 113.03 46.99) (xy 105.41 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ddb3fc6a-eae7-437f-8edd-06b2c7873416) + ) + (wire (pts (xy 242.57 63.5) (xy 242.57 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ddb9a0d7-1dfb-4233-bcef-095aac1ab83e) + ) + (wire (pts (xy 176.53 68.58) (xy 176.53 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0b9a950-440e-4014-a126-dc4fc5513950) + ) + (wire (pts (xy 370.84 48.26) (xy 370.84 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3516c70-4d91-4caa-b6cc-50c9b32476a2) + ) + (wire (pts (xy 115.57 110.49) (xy 129.54 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e546f667-f769-4612-91d8-b35ce27d2351) + ) + (wire (pts (xy 109.22 123.19) (xy 116.84 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e72b085c-e8cd-4655-9d21-10c34e8bd84b) + ) + (wire (pts (xy 107.95 119.38) (xy 120.65 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8cf1afb-f955-4570-8e63-6359ffa4fe3c) + ) + (wire (pts (xy 118.11 196.85) (xy 118.11 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e95fe26d-e5fd-4445-a51c-6cb5e05bf655) + ) + (wire (pts (xy 276.86 146.05) (xy 276.86 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea370b8d-e6c4-4f47-8853-24f2d34464f2) + ) + (wire (pts (xy 173.99 93.98) (xy 139.7 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ead84b37-7e34-45dc-a38b-f7c51fbeddee) + ) + (wire (pts (xy 426.72 46.99) (xy 427.99 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed1e97be-087e-4ad3-9a93-d0fe9d2a1fcc) + ) + (wire (pts (xy 85.09 102.87) (xy 85.09 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eeacd5cc-4b64-4542-a17a-d91d76e947ac) + ) + (wire (pts (xy 86.36 147.32) (xy 80.01 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f251b57c-c763-4418-9cd7-805f6137f27e) + ) + (wire (pts (xy 309.88 46.99) (xy 317.5 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4af5b4e-cfb9-41ff-aa37-b5039262b6c0) + ) + (wire (pts (xy 370.84 196.85) (xy 118.11 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5ee8a88-3a51-4050-9c6e-973e1fb16835) + ) + (wire (pts (xy 78.74 135.89) (xy 78.74 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbfd2aa8-972d-4e48-93cf-2a639a4628db) + ) + (wire (pts (xy 237.49 46.99) (xy 238.76 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc15e033-bcb3-49db-baf7-073aab01a7aa) + ) + (wire (pts (xy 180.34 72.39) (xy 180.34 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc790f77-0ea8-4578-a43c-64ee03464717) + ) + (wire (pts (xy 140.97 190.5) (xy 383.54 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe0795fc-c34c-4265-9320-abd20ab4eac7) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 95.25 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04879ec7-4ef7-4242-8d7b-f2b39e34fbd8) + (property "Reference" "U4" (id 0) (at 95.25 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 95.25 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 95.25 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 95.25 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3eae80c2-7246-4e3b-a42f-1263d83af2e5)) + (pin "2" (uuid 4c4d4eea-4e31-4352-b9d5-958317fdb378)) + (pin "3" (uuid 7bef0155-ef26-4e2f-820a-ca88b4f777ca)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 158.75 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e4272ba-5862-4ee7-9ccf-80064a907984) + (property "Reference" "U18" (id 0) (at 160.7694 39.37 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 160.7694 43.18 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 158.75 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 158.75 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 56956711-7c49-472b-92a0-5e1ff3ca2400)) + (pin "2" (uuid f41f264a-f61a-4903-9bf9-7958755e504a)) + (pin "3" (uuid 0cbb16e8-4f62-425c-9f9f-ac4f798e0db0)) + (pin "4" (uuid 9e2684bf-76be-4723-95ff-0b410a7371e1)) + (pin "5" (uuid 49801ea6-7b23-4edb-a09a-446657be30f6)) + (pin "6" (uuid 48e1c1ad-8a18-41f7-9be4-73e8454bbc08)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 223.52 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 138603fa-4bfe-4cda-a8f5-7949936082a4) + (property "Reference" "U20" (id 0) (at 225.5394 39.37 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 225.5394 43.18 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 223.52 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 223.52 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 54967d95-64d1-49d8-8bea-52621c368144)) + (pin "2" (uuid 5d259a78-68c9-469b-b8ea-47462d709629)) + (pin "3" (uuid 9623956d-209f-4cca-9979-ae6f8657dbb2)) + (pin "4" (uuid 60d44bba-4db9-4c31-be86-2ed427a5d176)) + (pin "5" (uuid c0497ab5-d163-48fd-abde-db079a5d0afa)) + (pin "6" (uuid ce107ffc-b6e6-434f-a990-b2360df0f929)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 69.85 76.2 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13b995f6-a574-4fe2-98d2-8750426efc20) + (property "Reference" "U1" (id 0) (at 70.485 71.12 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 70.485 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 69.85 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92580ab1-4dba-478d-9d6d-0f4ffbba4ceb)) + (pin "2" (uuid 9edc9f5e-b9b5-4b13-9429-7d9b5c51c6d4)) + (pin "3" (uuid a29dc551-c5c5-497a-9b49-f5f95efe754f)) + (pin "4" (uuid 05c54829-6424-4216-9c11-5c29ff59acc1)) + (pin "5" (uuid 4cc5a471-1faa-44e2-90c7-59800ba047b6)) + (pin "6" (uuid 7d0a09a0-8920-4a0c-ac97-a81d4136e5d6)) + (pin "7" (uuid ad22a7c6-96fc-47ce-8c69-262ed4b9d01f)) + (pin "8" (uuid 203ec4e5-b08f-430d-8017-7894404aa9f4)) + (pin "9" (uuid c0cc175d-bd8a-45a0-a796-3a94a7f3a2d7)) + (pin "10" (uuid bf9b6485-1ac3-438f-aa0a-763f4b8aacb7)) + (pin "11" (uuid ffecd35a-d65f-4e77-ba61-a8ff7bc97b99)) + (pin "12" (uuid 334bbf05-ca88-4d6c-a6af-25e5fbe95e76)) + (pin "13" (uuid 3a6b6d6f-dd71-4caa-a566-cca3c142ed1f)) + (pin "14" (uuid 5983e8ea-5fc2-4b32-9f16-b4bccc50bedb)) + (pin "15" (uuid 6f2da2cb-134a-4354-b779-14d5411a246e)) + (pin "16" (uuid a859e1b2-6e8d-414a-9bc7-4dbf038156c4)) + (pin "17" (uuid d075b2e2-70d5-426b-95fa-b491e216a0d9)) + (pin "18" (uuid 9a7c702d-9d5e-40f8-9019-864013bb40c6)) + (pin "19" (uuid 55890187-9477-45f6-9278-b7bcc8796d87)) + (pin "20" (uuid 33278bb3-28be-4858-a5dd-a7b6c5b89719)) + (pin "21" (uuid 5815afae-9bb9-4ee4-8645-9530867d6aa1)) + (pin "22" (uuid 30cdee03-e9ef-4073-8109-c8b5c145e216)) + (pin "23" (uuid 7dff18b0-8476-4797-915a-cdf7533fd1db)) + (pin "24" (uuid 83f698ea-431b-458a-a3fd-8fb4ca92b7c9)) + (pin "25" (uuid 8970e352-4245-46fc-95f8-2262a5768583)) + (pin "26" (uuid 74f6bc1c-1de2-4074-a132-fd68226e2eaf)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 132.08 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 160f7046-6c20-4d05-bc41-2055d6af73a9) + (property "Reference" "U14" (id 0) (at 132.08 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 132.08 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 132.08 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 132.08 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b86c3cec-50cc-40fa-98b2-b4fabc69f112)) + (pin "2" (uuid 73568773-0fb6-45cc-85a8-38aa632f0308)) + (pin "3" (uuid 6797f536-c20d-4d5f-b0a4-f91557fb1f5d)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 132.08 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 172989ae-f5ee-426d-bf3f-a9ce9361c835) + (property "Reference" "U16" (id 0) (at 132.08 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 132.08 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 132.08 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 132.08 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cbe4bcc6-331f-4e32-b6e0-f5a83a8b2647)) + (pin "2" (uuid 3e4e99cd-be90-406b-bc27-8ee697384a10)) + (pin "3" (uuid ca662bcb-2868-4c39-bda5-f16afed24ade)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 140.97 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1c6791a2-dcad-4e28-a0de-a80689a542ae) + (property "Reference" "U17" (id 0) (at 140.97 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 140.97 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 140.97 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6cde849c-1d5b-443d-9a37-28e7cc59ba9b)) + (pin "2" (uuid 147a2831-57f4-4890-bddb-2325eac0b867)) + (pin "3" (uuid d55e19b2-d1a7-48e7-abb6-a5f00b981026)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 69.85 81.28 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1cf4ad45-d7e7-4fa5-a7c4-e196b91ac3f8) + (property "Reference" "U1" (id 0) (at 70.485 76.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 70.485 78.74 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 69.85 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6332ac0a-05d6-44d2-9e9f-cd2404ed2c9d)) + (pin "2" (uuid af5a3fe0-c0b3-4b8e-8ce5-f94f42fd672c)) + (pin "3" (uuid 0e70a7d9-e8cb-40cf-9ce9-73e5535d0fef)) + (pin "4" (uuid d3368c1c-d024-4a8c-8be0-9a8584d8f764)) + (pin "5" (uuid 22cb4383-bbe0-4fec-ad8a-09444f198070)) + (pin "6" (uuid 2410fad1-8771-41ec-a809-4471ae074ab5)) + (pin "7" (uuid 32299011-7a25-42be-91d9-f5e737da74a9)) + (pin "8" (uuid 0d89acf3-bd65-4f6f-84aa-40fa63f8b13c)) + (pin "9" (uuid 72da6404-6ebf-4ab1-aa53-8cc33c08f151)) + (pin "10" (uuid 22b5121e-d17b-4c55-81ae-26fb890a22d5)) + (pin "11" (uuid b0e0dae1-451e-4c6f-9a37-eea378c10164)) + (pin "12" (uuid b8db0d3e-7d3a-4b47-85fb-9a8c6c96be33)) + (pin "13" (uuid 7f98e748-e063-4bdc-b48a-083b01249c8d)) + (pin "14" (uuid bf1d78c7-2e52-414e-a725-b410298453ac)) + (pin "15" (uuid 4e6a18fd-5d5f-4344-a463-5a3eb602a787)) + (pin "16" (uuid fc80940d-6488-42b2-bca9-9d99171f926a)) + (pin "17" (uuid b7c0cb1f-9295-428b-8291-c319755dcf35)) + (pin "18" (uuid 623139a6-bfe8-44a9-b976-231e06b7b7d5)) + (pin "19" (uuid 54efda69-fba9-472c-8589-896cd07fc4dc)) + (pin "20" (uuid 8f7c826a-e1df-41f7-9580-9a3646a4a5ea)) + (pin "21" (uuid 7182d541-d5ab-41d8-924b-d10bf32bd775)) + (pin "22" (uuid 01b5b021-ff92-4e9e-be40-da537d5bc0dc)) + (pin "23" (uuid ef72d87e-1ec2-438b-97d7-787b34784cda)) + (pin "24" (uuid bdaedf9c-0868-485b-b26f-f6c23305cc60)) + (pin "25" (uuid 67fd88db-6a50-421b-879d-9af81a8bab3e)) + (pin "26" (uuid 822b5d2b-6e5d-4e94-a262-5b8f43b048e4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 95.25 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 25d87ae2-c276-46af-ae1d-365ead365a22) + (property "Reference" "U3" (id 0) (at 95.25 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 95.25 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 95.25 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 95.25 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b143c267-091f-429d-a42e-a3fc22de257d)) + (pin "2" (uuid 6655de18-016c-4ec6-bb23-874d557d06db)) + (pin "3" (uuid 2a30d00c-f269-4915-8a46-33b0d2439ba5)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 295.91 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 29015ce5-0acd-4acb-88dc-a5113fec124c) + (property "Reference" "U22" (id 0) (at 297.9294 39.37 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 297.9294 43.18 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 295.91 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 295.91 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c38825f4-28a6-4753-ad66-fbe1409b6042)) + (pin "2" (uuid fcf54e1d-b737-4530-aa22-01e753f52dcd)) + (pin "3" (uuid 3cbe76db-6022-46fc-975e-5baf32814615)) + (pin "4" (uuid 164f377e-329a-4d38-8269-b08b3ebea797)) + (pin "5" (uuid d76fef27-df9c-4179-88d5-dc604dd747a5)) + (pin "6" (uuid a0fa8ae3-4550-410e-8370-c1547dd697b3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 69.85 83.82 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 345b3510-1a49-4857-970a-c6ba2415eea1) + (property "Reference" "U1" (id 0) (at 70.485 78.74 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 70.485 81.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 69.85 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7d060824-1b09-47c4-90fd-b31c64464e54)) + (pin "2" (uuid 21547a3c-c762-4d16-a839-8c45cb06f07d)) + (pin "3" (uuid 073bb217-6052-4f41-8e02-21c3fb2973f8)) + (pin "4" (uuid f25d4607-cd4f-4e3c-ad17-abadee78791d)) + (pin "5" (uuid 36156e50-8fb1-4311-86ba-7d4979baff3b)) + (pin "6" (uuid bc4a31f3-8bd6-4ea1-a8db-fbc6127f68e0)) + (pin "7" (uuid c98db0e7-99b1-4689-bab4-eada42801bc2)) + (pin "8" (uuid 8c8ed5c5-fee4-4e6e-99c8-a88a8990e42c)) + (pin "9" (uuid 42cdc598-bf67-408e-97c2-7da1b0b24046)) + (pin "10" (uuid daab6056-b489-4500-b6bd-657344ca54ef)) + (pin "11" (uuid 8c882248-db7f-4180-804c-9ae5a498df60)) + (pin "12" (uuid b5b2b2d0-9753-4f28-9b05-c9e857c7790d)) + (pin "13" (uuid 2306b1ca-f4c4-4386-a1fb-0d7d6341f801)) + (pin "14" (uuid d9eaced8-e1fd-489a-807a-902bac141e28)) + (pin "15" (uuid 2aa843a2-8bf9-426c-b708-3888fa04dee9)) + (pin "16" (uuid 708c44ea-e926-48c4-a01e-5af5988b3039)) + (pin "17" (uuid fb86c34e-ea11-4ef0-ba4a-a0e92e2905ea)) + (pin "18" (uuid ea3274a3-37b1-4dc5-a0b1-d9c3a228b39a)) + (pin "19" (uuid 554ab2ab-ab66-411a-82c9-83ba6336d1b5)) + (pin "20" (uuid 8cad558d-95da-4a9c-8f1a-a05f9bfcc050)) + (pin "21" (uuid f824da80-701a-47ca-b105-e76d378debb2)) + (pin "22" (uuid 464ee0f9-4677-4988-af36-214ae861e729)) + (pin "23" (uuid c24d3078-cabb-46f9-95f1-a44ee9ea4827)) + (pin "24" (uuid c3903e18-0807-4a09-b4b2-fe23230a88c0)) + (pin "25" (uuid d8e07a68-2448-4d3a-9850-f3485b0a6168)) + (pin "26" (uuid 896c76c7-f63a-44cc-81a8-7191d018528a)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 190.5 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 35d21165-bdd1-4f5c-bc0e-c521ddce4840) + (property "Reference" "U19" (id 0) (at 192.5194 39.37 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 192.5194 43.18 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 190.5 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 190.5 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d41376a6-c345-4ae0-9bf3-ae66a3509ca3)) + (pin "2" (uuid 9aaa6ba0-6c86-4f2b-af00-2a4049e78866)) + (pin "3" (uuid fb7d1768-f089-4ef9-ab17-5c6809275348)) + (pin "4" (uuid 0c2aa36b-d13f-42f8-b65b-6c2504f5c92f)) + (pin "5" (uuid d6e47378-89c3-44eb-80bb-3a8cd64d67ad)) + (pin "6" (uuid 47b1738c-575c-472c-8603-e8c10333c00d)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 127 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 437b4d70-9c30-436d-b159-6cb750cbe588) + (property "Reference" "U10" (id 0) (at 129.0194 39.37 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 129.0194 43.18 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 127 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 127 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6cae422e-c3df-4fad-b35e-50bc1bb499c1)) + (pin "2" (uuid 041d116c-5439-4b05-b2e9-1a59727619b9)) + (pin "3" (uuid 803bb664-f0c6-49a9-b1e6-4b509db69258)) + (pin "4" (uuid e4376b7c-923f-468a-ac1b-0a4df773c40b)) + (pin "5" (uuid d5e4daf0-0a58-452f-95f2-dccdca7b5086)) + (pin "6" (uuid a8fd32cd-35c6-4129-9933-cd3cb52a58d3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 63.5 116.84 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4be951fb-0f24-42c3-94ab-a471c4c293ef) + (property "Reference" "U1" (id 0) (at 64.135 111.76 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 64.135 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 63.5 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 08db3fed-ccec-41a3-9575-e399384aac0d)) + (pin "2" (uuid 639cc86a-0d1b-4b2c-9885-37b12a7608da)) + (pin "3" (uuid 886e4174-4833-4376-8492-67cf6edef538)) + (pin "4" (uuid 0df046a7-1101-4da0-9d6b-a767c1d953a7)) + (pin "5" (uuid 0d3801f6-2d9c-49ec-b281-c91f05be1dd2)) + (pin "6" (uuid 7a3e8284-1053-4aae-9dd0-8ccb8b2978e0)) + (pin "7" (uuid c7217ee2-97bf-4368-81ec-50aeeaf22c56)) + (pin "8" (uuid 37c5feb4-d2e7-4daa-8123-3501118c612a)) + (pin "9" (uuid 382ad1b6-4465-46b9-8ffc-d180b93bcd7a)) + (pin "10" (uuid b3427c58-211e-499e-b829-80c3c64ccb2e)) + (pin "11" (uuid 9019d78b-7f53-409a-a74e-0152f9771bbc)) + (pin "12" (uuid c7b3fe61-b1b7-4084-b7ae-c097e2d0e2c8)) + (pin "13" (uuid 60cf0037-4c24-47ea-bdea-bc5902280f13)) + (pin "14" (uuid b1fc623a-9ee2-48f8-8ae3-9637ab06c9b7)) + (pin "15" (uuid 8a9a16a0-32a6-40a7-99ba-61cfaf9c9de6)) + (pin "16" (uuid 74a65b1e-2f5c-4468-8ff2-c75dc21eb2ac)) + (pin "17" (uuid e6950b79-9763-4259-adf8-4133974680c9)) + (pin "18" (uuid 4b5404fc-c5f3-4b5e-a74c-a91aa86fdae0)) + (pin "19" (uuid c9b9f8e0-04fd-42e1-8b34-578421e479dc)) + (pin "20" (uuid 44748f99-33ad-46b0-8586-ed5940ed0267)) + (pin "21" (uuid 8938842b-a82a-4095-9071-1679751ce055)) + (pin "22" (uuid caf24282-6d24-411a-9c12-4dedf0db1093)) + (pin "23" (uuid d7d1ba30-e827-402a-aa17-888892eb76e4)) + (pin "24" (uuid 167a86b4-8eec-464d-b11b-c0f766adef5a)) + (pin "25" (uuid 878b49d2-f9f1-4798-8ce7-18a28d9f7ce5)) + (pin "26" (uuid c23e3348-c44b-4cda-8384-5d2fb3c794d5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 448.31 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5499a85f-17e8-4bf1-b907-add72a35648f) + (property "Reference" "U25" (id 0) (at 448.31 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 448.31 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 449.58 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 449.58 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6644c546-c71c-45cc-8302-4714481a851d)) + (pin "2" (uuid d7e543f4-44a2-4363-b68d-d3e2a1afacc0)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 96.52 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 601bc1cf-d15f-472a-8123-a530c452f6e0) + (property "Reference" "U5" (id 0) (at 96.52 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 96.52 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 96.52 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 96.52 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6ba2ebad-0e84-42f9-985e-94de84be1100)) + (pin "2" (uuid 653229d8-3737-4ff1-b3fb-5afa4e0134c5)) + (pin "3" (uuid 878cb1cf-ca89-4187-a395-8e7f3c3210b8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 64.77 151.13 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 63a1eabe-f40a-45db-a9cc-72282507d68e) + (property "Reference" "U1" (id 0) (at 65.405 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 65.405 148.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 64.77 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 64.77 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid de18b1a8-07f5-4ad5-b622-13217e7d3cef)) + (pin "2" (uuid 21ea1b78-9f7b-42dc-b117-273bfe5790ab)) + (pin "3" (uuid 64a36986-6b72-45c0-ad65-23b80648a70f)) + (pin "4" (uuid c8895231-bd87-48c2-8853-6d30e151619b)) + (pin "5" (uuid 53808052-aed8-410b-b83b-5facbf8575aa)) + (pin "6" (uuid c064d790-62c4-4821-a70c-18caef5a9e3a)) + (pin "7" (uuid 0e37c9b0-40da-4735-9a9c-0a137c05eed7)) + (pin "8" (uuid 075086b0-0fdf-4bd9-a0a1-213af5a138d9)) + (pin "9" (uuid 2de22d2f-4136-4b6c-8740-332196fd29ce)) + (pin "10" (uuid 2e08b1aa-daed-443e-b7a0-6ed4298c06d7)) + (pin "11" (uuid 92d4d408-da05-4700-bb5d-c7df2a7a598b)) + (pin "12" (uuid 315e4124-8f5e-4432-ac81-555dd3a2822c)) + (pin "13" (uuid 8f85ce55-c679-4a71-95ef-ba408dd24a64)) + (pin "14" (uuid 2e8384fc-d992-44e4-ae60-7751585a7617)) + (pin "15" (uuid cde788f5-ba40-474c-811c-f1518ffc7dcb)) + (pin "16" (uuid 70d81aeb-f01b-4e8e-8d83-3c2824a70d5d)) + (pin "17" (uuid a05e005c-a7d2-4675-a7ea-90bf0860b24e)) + (pin "18" (uuid b40ba5a4-2473-4e93-b9fc-f99e3464b884)) + (pin "19" (uuid 1cfc9601-3e33-416b-98d5-5ac676adac35)) + (pin "20" (uuid 9c4d0735-768a-463b-a988-892489128a90)) + (pin "21" (uuid 4636f6e9-1211-4638-af88-c7390eb4d0c3)) + (pin "22" (uuid 54da4c5f-6570-4662-a92d-639e0ac13c48)) + (pin "23" (uuid fde2333b-fa63-412d-8405-41919041d710)) + (pin "24" (uuid 85588c6c-7145-41a6-a1aa-aa1385a0f8e8)) + (pin "25" (uuid b149a883-10ef-48f0-aa3d-1c0ef48f23ff)) + (pin "26" (uuid 45ced9ce-0ddc-40fe-b388-f69e9d9ec032)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 256.54 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6743a81a-f267-49fa-853d-913cfa4fbf8a) + (property "Reference" "U21" (id 0) (at 258.5594 39.37 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 258.5594 43.18 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 256.54 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 256.54 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2e0a9347-1499-44c7-b334-f6e59c56fc92)) + (pin "2" (uuid df233393-f461-4f4c-89d5-f28118325a01)) + (pin "3" (uuid 037dd840-509f-4b1f-bb86-d3047497046f)) + (pin "4" (uuid d0117d44-aec4-40c6-a966-ad6376c2a447)) + (pin "5" (uuid f522946b-a29c-4bf6-bad2-17a0d3959733)) + (pin "6" (uuid 6fb1e157-219b-47f4-81d1-7a24a1a679db)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 454.66 55.88 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 75b1e046-53cb-4245-a8e3-d11f5b3c8ea8) + (property "Reference" "U1" (id 0) (at 458.47 55.245 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 458.47 57.785 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 454.66 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 454.66 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid afe52f84-71cb-4d5b-b94b-2fff8d8c2793)) + (pin "2" (uuid 777d92fe-e192-4da9-9e66-b998595d3382)) + (pin "3" (uuid 02490e9c-2c40-4df1-9e82-2a14d80179d0)) + (pin "4" (uuid 68ef6db1-c46f-4eb3-bd3f-48f075fc6c88)) + (pin "5" (uuid 1a812615-6542-4b8a-bb37-68b03ffab55b)) + (pin "6" (uuid b8dc29f4-c24b-449a-aaa9-f3c2c9371e37)) + (pin "7" (uuid 9f1cb6a2-c1df-4cfa-bae9-0de376cced1b)) + (pin "8" (uuid 434d4c5c-9fcd-4119-97ba-126912768d6f)) + (pin "9" (uuid cdf63b74-9e5a-4597-a20e-42c5e8938e36)) + (pin "10" (uuid 308393ea-f3f5-4f5a-bb61-8f450bf2ec12)) + (pin "11" (uuid 663902a0-8b01-44cb-bed1-a924a67f0e71)) + (pin "12" (uuid e7253f6e-e790-4785-bc6d-e8bebad9074f)) + (pin "13" (uuid 9384d2e3-b149-49af-a00d-d07642dafd06)) + (pin "14" (uuid 22024631-e145-426d-a2fd-84d4912ee28f)) + (pin "15" (uuid 9fd9df21-bbec-4522-b31c-882673099cd4)) + (pin "16" (uuid a4bf6e8c-5ad1-4f85-8e5f-3e73fac40e1a)) + (pin "17" (uuid 2e59c122-144b-4110-80e7-211a9769fe95)) + (pin "18" (uuid ab32e9b4-826a-4792-aae0-9ce1216f24e6)) + (pin "19" (uuid 5d76254b-44e9-4f36-bc6a-c43d8d87306e)) + (pin "20" (uuid ba21ac42-8f71-4e09-a008-36d561efa3f3)) + (pin "21" (uuid 83f3aad8-50ca-46ea-9f06-d2b6216046fc)) + (pin "22" (uuid b5ab2069-a882-4ffd-8713-4d0aadaa0255)) + (pin "23" (uuid 3d06598b-3e9f-4305-b362-2ef3f9ddb906)) + (pin "24" (uuid 331b7f05-86af-4e42-8a8c-43db25e5b365)) + (pin "25" (uuid 50f1efe0-4926-480c-aa23-5d288d3a9029)) + (pin "26" (uuid aff7a99d-e95a-4fcd-be0c-c3a21b68e62f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 462.28 90.17 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8eeed972-d025-446f-8bca-7f7d51b4fe66) + (property "Reference" "U1" (id 0) (at 466.09 89.535 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 466.09 92.075 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 462.28 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 462.28 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d3068eeb-5eaf-4077-8cc4-b3138adc9b8f)) + (pin "2" (uuid 134ea7b2-40ee-4537-b680-1a6812efd0f5)) + (pin "3" (uuid 547925fc-4c8e-417c-8c75-52d5626421ed)) + (pin "4" (uuid 35cdcef1-a084-416a-a7c2-087bcdb583b6)) + (pin "5" (uuid 57128f92-c1f2-4c13-9e9f-79ba5765c18b)) + (pin "6" (uuid 917ada6f-ff69-4ae1-bfb7-e420b6f8a55c)) + (pin "7" (uuid b41945db-a9e8-4af4-a471-6361d348d46f)) + (pin "8" (uuid 1384563c-e0a9-49b1-b2b0-58b23d2e0109)) + (pin "9" (uuid 112a5c7b-a65c-415e-995f-64ce853f7883)) + (pin "10" (uuid 0fd5b89f-733c-474f-b0a3-a68320df4cf0)) + (pin "11" (uuid 564c1688-eb07-43fb-8d00-01c3fccaa1ec)) + (pin "12" (uuid ba2ce09e-6d21-4013-b8a7-9db28a7db35c)) + (pin "13" (uuid 41f369c2-19ab-4644-b775-b0394e71a90c)) + (pin "14" (uuid 4e92a58e-3c44-4d78-ada1-955cc0b86c81)) + (pin "15" (uuid 1939b72c-6f6f-456a-aaf2-7382e27f030f)) + (pin "16" (uuid f11cb9ca-5481-417d-abbe-3ab4a6890966)) + (pin "17" (uuid 487046fd-6d51-4109-ab9e-65f36800dbb3)) + (pin "18" (uuid 0b9556f1-4d18-4138-bc29-feca74b86247)) + (pin "19" (uuid 4ed7e476-2ef8-4a5e-884f-6b3e2f7f1f92)) + (pin "20" (uuid 7a174296-f906-45f3-93a6-c648e003dec2)) + (pin "21" (uuid 3a0cb342-8657-4d6f-b2c7-bcd5983217c6)) + (pin "22" (uuid 0dbbd77e-599f-45ae-a403-a27af2c939c4)) + (pin "23" (uuid f07c6ec4-427a-41c9-9b52-f58f0d43386f)) + (pin "24" (uuid a338f462-1a89-4db0-8789-e62ed717a53d)) + (pin "25" (uuid f15f4bb4-30f2-4289-aa0c-3bf790f4f85a)) + (pin "26" (uuid 104e9213-12cd-4795-90ba-db7c9c21d2d8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 69.85 78.74 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8ff96fa4-cf05-487f-ab80-8cf07e33c7a7) + (property "Reference" "U1" (id 0) (at 70.485 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 70.485 76.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 69.85 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a282e48d-9601-4164-95cc-489bf4dc61b0)) + (pin "2" (uuid 1cc28392-0961-4f61-b577-89be8aa14b8b)) + (pin "3" (uuid b7ed2e5a-0bfd-4018-90e7-85c0e541e369)) + (pin "4" (uuid cde49ecb-fca8-49fb-b498-378ada2833b9)) + (pin "5" (uuid 8c4165c9-646c-40f3-84fa-e2e3623b8c9a)) + (pin "6" (uuid 35430602-4cf0-4dfa-afad-a939228dfcee)) + (pin "7" (uuid 08362580-5131-4cb7-b7b3-e427da93df82)) + (pin "8" (uuid 86c40eca-ba4f-4a1c-a4ba-e70d2c4905fb)) + (pin "9" (uuid 53680e76-8023-49eb-a035-3124ab2bb8d1)) + (pin "10" (uuid 777316a9-a5bf-4648-8644-c43cb8545d8a)) + (pin "11" (uuid 6500db45-2f79-4de2-a4db-76032cb37a1f)) + (pin "12" (uuid 17ec5356-261c-489b-97be-6b2907f1d2a8)) + (pin "13" (uuid f58380eb-cac8-4298-bba2-9797ea958dc2)) + (pin "14" (uuid ee0eff17-2a4f-40ea-8ca0-3a63fbb349a2)) + (pin "15" (uuid b8ff2319-a11c-4b55-a84d-a89fce87045c)) + (pin "16" (uuid d99334b8-76f4-435c-a92a-87ca4b982076)) + (pin "17" (uuid 0a7e1de1-ca9f-4deb-95a3-aaf56742dd5b)) + (pin "18" (uuid 773e19a8-1ec2-4c3f-a1aa-5901ac02798e)) + (pin "19" (uuid 7c91c885-bb68-457a-a740-4e4e4f655543)) + (pin "20" (uuid 1259b68e-37de-4abc-b110-61fb1030fc3d)) + (pin "21" (uuid 831856aa-30fc-464d-8908-bc1944467e9e)) + (pin "22" (uuid da45990e-a0bd-45bb-bde2-5d3192037a60)) + (pin "23" (uuid 56ce4054-d68d-4076-b0c6-0f9c401ca810)) + (pin "24" (uuid 12c908f7-4472-4179-bbe4-78b36ebf07d2)) + (pin "25" (uuid e5e9a4b9-c76c-462a-a1ac-91d699058883)) + (pin "26" (uuid bde650c2-8934-4dad-b7a1-036cf957fa2c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 93.98 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9242db34-73c3-4dbd-80cc-dfc4f737051b) + (property "Reference" "U2" (id 0) (at 93.98 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 93.98 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 93.98 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 93.98 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f67aefc6-d3e2-4fb4-a66b-51d8fe600795)) + (pin "2" (uuid 24a778f6-c12f-4c4c-9a34-d2deca543a47)) + (pin "3" (uuid 6390be68-c83e-4a1e-b49f-178fda57cd48)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 97.79 124.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a77757f-d67f-404f-baae-21252757d15b) + (property "Reference" "U7" (id 0) (at 97.79 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 97.79 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 97.79 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ed425cfa-3683-4633-a6d2-0e0285b42594)) + (pin "2" (uuid 33acc233-e1c3-4583-bd5f-587c96557021)) + (pin "3" (uuid d65f6d08-a5a1-4d89-be25-854a91ebf941)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 132.08 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a49cdb51-310b-4234-8259-75af9ef1a968) + (property "Reference" "U15" (id 0) (at 132.08 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 132.08 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 132.08 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 132.08 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 18bd1672-6159-4b23-96e0-b19c83f46a0a)) + (pin "2" (uuid bf2c1a89-5b2c-49fc-9855-91de887f0b26)) + (pin "3" (uuid c5f5942a-8906-47b1-92c2-f0a8b33facb5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 69.85 88.9 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a81b2afb-61c4-47a1-9b4f-cd185b4daedc) + (property "Reference" "U1" (id 0) (at 70.485 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 70.485 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 69.85 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2113cb8f-6c5b-4859-95f1-66c863258e64)) + (pin "2" (uuid 54e9dd02-e10b-4b3c-9738-c830b48587cf)) + (pin "3" (uuid 8fdf3ba9-9490-44a1-bd69-3805ed7ef500)) + (pin "4" (uuid f6063efd-a83d-4ab2-aadc-830212950b2f)) + (pin "5" (uuid 97101a49-6673-43fa-907a-46fcb4a9cac1)) + (pin "6" (uuid 7f5418c5-d4cf-407c-a2d3-6bac53d43108)) + (pin "7" (uuid a9f6d27b-3380-44a5-bd4a-d1b350a19556)) + (pin "8" (uuid b83a3254-615c-46a4-835c-94dc77dc4e88)) + (pin "9" (uuid a8af539c-d388-47c3-a69b-8b41f56224e2)) + (pin "10" (uuid 9715a57f-a15c-4271-bee0-0ffde3127144)) + (pin "11" (uuid fa6ce0de-a086-42b6-924a-3258ea794fc8)) + (pin "12" (uuid 77bee4ea-1a26-4d65-b703-8e16b9429d17)) + (pin "13" (uuid 2f71a2e8-0e4d-4db4-bdb5-885c0f564908)) + (pin "14" (uuid c7518fb0-bdff-408c-9513-5663480bd124)) + (pin "15" (uuid d5ac54fc-145e-4282-9b73-af63dc5b1b1b)) + (pin "16" (uuid 871da185-9346-4d94-b8d1-c2ec40da9997)) + (pin "17" (uuid 7ebbc918-e49c-4ea0-96bd-7837719773f0)) + (pin "18" (uuid ab7c5c78-13fd-4a76-b234-0bd2ec809ff0)) + (pin "19" (uuid efbafd30-157f-4e40-8a75-bc4073e1b820)) + (pin "20" (uuid cdbed1bc-ff0f-47d0-906e-d73000f58baf)) + (pin "21" (uuid 9f663eee-3543-4e5c-b804-2164c6586c8b)) + (pin "22" (uuid 2de2a182-9b3b-4001-8993-1c7ce30ada4a)) + (pin "23" (uuid d62539ac-9c92-4ba9-a687-571bd65a65d4)) + (pin "24" (uuid e010e6a7-d1d1-4483-b9f1-bd2c1c5b06b5)) + (pin "25" (uuid 0f10e52b-874c-45b2-b2ba-33f5b322abd1)) + (pin "26" (uuid 1e6ce4c9-c5d9-4d0c-a1b3-07e65ff0b09b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 69.85 144.78 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d7d57ca5-3e99-4e20-bbe9-bba7682824d4) + (property "Reference" "U1" (id 0) (at 70.485 139.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 70.485 142.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 69.85 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e2afb131-8877-4cc1-96fb-159c0590f6f1)) + (pin "2" (uuid ed373ce9-3ffc-4ece-9a80-a1a447447e6f)) + (pin "3" (uuid 73e229ce-d842-4e9e-82f6-15d35d5f3bf7)) + (pin "4" (uuid 18018143-ad21-41e8-8a93-1f87a5c858dd)) + (pin "5" (uuid 4a9264cb-b5de-401d-9346-d556bfa26982)) + (pin "6" (uuid 2840b629-52c1-41d6-a6aa-a0d5720263fe)) + (pin "7" (uuid 794f230a-bc97-4cf7-869c-db2220df24dd)) + (pin "8" (uuid dea026de-018d-44cd-a69c-f486d176dd31)) + (pin "9" (uuid 730712aa-3f6f-4b73-b6d9-25c6fc853be4)) + (pin "10" (uuid 693d84c3-0b14-456f-bbc7-ec193d9d3691)) + (pin "11" (uuid 9f29899f-7e4a-45c3-a081-78576fc1adb4)) + (pin "12" (uuid 3b62c235-6b59-4d8a-a538-781ac74d5447)) + (pin "13" (uuid 9d7dac31-10ed-4f66-8008-e34e93829288)) + (pin "14" (uuid bd3fcd0d-bea2-4b3f-ab7e-3f387acc4955)) + (pin "15" (uuid 05bb78e3-86dd-4a28-afcc-3f349b6ca581)) + (pin "16" (uuid 62df6b08-aa7d-4ffe-9d02-c48b6b6b3993)) + (pin "17" (uuid 022a1b5e-b53d-4d78-91ff-3b82b2c786ee)) + (pin "18" (uuid af98381b-70f2-4159-89a4-5db8c3fd666f)) + (pin "19" (uuid e91dd038-f3b7-4729-86e8-dabe262895e9)) + (pin "20" (uuid 8c704fdc-fdc8-4656-b758-e3cd66dfe01b)) + (pin "21" (uuid 045fab29-5699-409a-8703-881c41ab3e93)) + (pin "22" (uuid 683ea25f-b327-4e1b-88fb-80cebcadc1ee)) + (pin "23" (uuid b1d8a5f9-11c7-4c7e-ab0d-4d4615b79c54)) + (pin "24" (uuid d0c2228a-2ede-47a7-886c-3e84c458a91b)) + (pin "25" (uuid 94d2759d-685a-4d09-9722-8d5bdf34500b)) + (pin "26" (uuid 54363779-1467-4ee7-acc5-7f8d853c29de)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 130.81 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d91739c5-53ff-4f21-b2e8-a36fec9eff68) + (property "Reference" "U13" (id 0) (at 130.81 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 130.81 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 130.81 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 130.81 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 81ff94b1-c7ec-4045-83f1-a3242d78f276)) + (pin "2" (uuid 19d96685-8c46-4b9d-a7bf-c7ac4851ae75)) + (pin "3" (uuid b9f03892-a1bb-45ac-b4de-0273ebe535c6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 69.85 86.36 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e0f6f92f-3443-4e1a-9169-a5827dae1873) + (property "Reference" "U1" (id 0) (at 70.485 81.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 70.485 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 69.85 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e689429-25b0-4617-b6f4-3272e340d016)) + (pin "2" (uuid 9a8d14cb-125e-4274-989e-5d8cd2aa31ea)) + (pin "3" (uuid 5a59bb59-a8fe-47d3-b61f-ed640288be17)) + (pin "4" (uuid 10e2f197-df78-4675-849e-976b25a4d080)) + (pin "5" (uuid 0d058b08-2503-4dd0-8ec7-ad4cc6b09982)) + (pin "6" (uuid be0b78d7-a172-4480-a335-934b4c3d63d0)) + (pin "7" (uuid 78be8f62-6deb-4bd0-b122-a04552f015c2)) + (pin "8" (uuid 25128054-eceb-4fac-b683-909016dd2a79)) + (pin "9" (uuid 8d2329a7-478e-4e61-8eaf-aa4af4dd5b49)) + (pin "10" (uuid d0dacf0e-c55f-4b45-b832-0747d76d10da)) + (pin "11" (uuid 2b22e422-f081-430c-86d9-b7bd800d6f10)) + (pin "12" (uuid 2f193d96-9e22-43ca-bb4b-69de9f3a08c3)) + (pin "13" (uuid a8ec4897-4ebe-46c5-b0fb-f27a93596846)) + (pin "14" (uuid 97f7fc86-cde6-495a-b194-946b853dea2e)) + (pin "15" (uuid 5cfd8752-a8ee-4040-952b-26b2380b89dd)) + (pin "16" (uuid 9683fa76-e2ab-489a-bb1b-8832a57fc9dd)) + (pin "17" (uuid 02e43310-af1e-4d86-8e75-323c88abf292)) + (pin "18" (uuid c71da385-cfd5-4b23-b3e2-892da5fd81ae)) + (pin "19" (uuid 8b314e44-9855-4040-bc4f-d337803cad52)) + (pin "20" (uuid aef77f90-76ba-408a-936b-8110a4d8c51c)) + (pin "21" (uuid ae98a531-a3be-4497-874e-54da941d2f03)) + (pin "22" (uuid 155176e4-a3eb-414d-b24e-5618a4eb0570)) + (pin "23" (uuid 32962183-0a75-4eb4-85f5-27af6ae7f92c)) + (pin "24" (uuid dfaf4789-a65b-4000-91eb-2d913520e6d9)) + (pin "25" (uuid 45a8d1ed-5540-4113-bfa9-14d449d8b397)) + (pin "26" (uuid c9ae8e30-e1db-4eb0-bdc6-3707f63c4d9a)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 412.75 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2e32ca2-19c1-4e28-a927-2008ee7e931b) + (property "Reference" "U24" (id 0) (at 414.7694 39.37 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 414.7694 43.18 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 412.75 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 412.75 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c7e44621-7037-49f7-b4b5-1bdcd0e378d0)) + (pin "2" (uuid 75c41208-e0d0-483c-b854-6dcf670ab91f)) + (pin "3" (uuid 6166e33a-ecfc-4e33-a096-80edc8965eab)) + (pin "4" (uuid c99e626d-0b56-4f26-9ea1-b2c23c1e65b3)) + (pin "5" (uuid 9081209a-ca6f-482c-8689-09cbb1f1b70b)) + (pin "6" (uuid ac16b7e1-6219-4644-bccb-3e4e3869a699)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 96.52 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e366730f-1e61-40a0-8462-b06ec86dcbcc) + (property "Reference" "U6" (id 0) (at 96.52 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 96.52 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 96.52 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 96.52 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d781cbd3-8332-4667-afb5-098a1d0574af)) + (pin "2" (uuid 966e53d8-ed7d-4e8d-a3b7-41819be1957d)) + (pin "3" (uuid 7adb5f9d-dc5d-40c1-b073-11bb3ff6700d)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 130.81 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5545083-6f0a-4021-83ad-684dbc06189c) + (property "Reference" "U12" (id 0) (at 130.81 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 130.81 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 130.81 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 130.81 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f82a6d72-ffc6-400f-837c-ab694f8e87a9)) + (pin "2" (uuid f71c292a-c12d-40d2-a9aa-263db5d0575b)) + (pin "3" (uuid bcd7911f-cee2-48ac-b5b0-fd02960d6638)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 350.52 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea3a1e12-da16-4338-9f51-0b411eb8cb21) + (property "Reference" "U23" (id 0) (at 352.5394 40.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 352.5394 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 350.52 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 350.52 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b13110a4-da57-4ecd-a59e-382d9718cb54)) + (pin "2" (uuid 2c22a706-d51f-4f09-90d7-d80be57c7ceb)) + (pin "3" (uuid 00c018dd-9ebf-4628-8db0-5009cd1ea5b8)) + (pin "4" (uuid dfa0d716-9006-43e3-b98d-5fa4d0326e2c)) + (pin "5" (uuid cadf9473-40a8-47ca-97d9-627ac70f1bdb)) + (pin "6" (uuid 694704f3-52f6-4bc7-8018-3f0eed4551bb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 97.79 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ecb577c2-1c1a-4140-8fe6-1ef5eb721962) + (property "Reference" "U9" (id 0) (at 97.79 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 97.79 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 97.79 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 035b87ab-c044-4edf-a9a9-95a443b618d8)) + (pin "2" (uuid 2e6e4ccd-7046-4ff0-a95f-d2e48368c801)) + (pin "3" (uuid 244c7322-1480-46a6-8fa5-6d6e79610352)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 97.79 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f52205c2-6256-4d10-bc3e-6c1fff5806a9) + (property "Reference" "U8" (id 0) (at 97.79 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 97.79 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 97.79 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ba48c008-c855-4cc4-86fc-f380614e6c2e)) + (pin "2" (uuid 21d78cde-fb76-4416-bce2-d9111b55650f)) + (pin "3" (uuid 55644875-e682-48cf-bed9-4b741ca5638d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 69.85 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f69c298e-619c-474b-989b-4592d4a3fdce) + (property "Reference" "U1" (id 0) (at 70.485 57.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 70.485 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 69.85 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 07c94ece-5718-4233-bc64-7eb66a34eab7)) + (pin "2" (uuid e6fae9f1-fb93-432b-90d4-f7ce518ad8cb)) + (pin "3" (uuid 913bd488-d567-4ae0-b48f-40c107382a1f)) + (pin "4" (uuid dcc266fa-50c3-4911-bf67-77fd62a4b8ee)) + (pin "5" (uuid e5f4775c-5c4b-4da4-aa21-a9e3097cdc64)) + (pin "6" (uuid 87d0c672-bb8c-4a94-984d-d122ce50029f)) + (pin "7" (uuid daeb380e-2370-48ad-a4e0-309838ccb2b5)) + (pin "8" (uuid 9196fd4d-5dab-439a-9804-67209746a748)) + (pin "9" (uuid b791f1b1-d3b8-468a-a09f-53525b8b2661)) + (pin "10" (uuid ee37f9e0-3c52-462d-a78f-43f7a93dab7c)) + (pin "11" (uuid a7be53d8-ea3e-4f97-889c-3ee5c275d28e)) + (pin "12" (uuid eaa4fb26-3cb0-4c1e-aa8d-2fa631a74a15)) + (pin "13" (uuid 2a99b894-b2c8-4412-af37-dd96beca333b)) + (pin "14" (uuid 4b46d934-a0a0-4f7c-84fa-7acdb0c3c3da)) + (pin "15" (uuid df389f43-2f37-4f03-aa04-468ac5791474)) + (pin "16" (uuid 2405ed65-b6f4-4426-b043-f46303d6ae89)) + (pin "17" (uuid d7c7e075-bb3f-4782-89ab-0999c68f4e26)) + (pin "18" (uuid 9bd354d0-8e7a-466a-be9e-56ab897cddf9)) + (pin "19" (uuid e63cdfb6-bb7a-4006-9779-e5077167df4c)) + (pin "20" (uuid d62254ef-4064-4693-9867-b6ce3c364034)) + (pin "21" (uuid 702639cf-dbd6-4b4e-94ae-f07a81424cf5)) + (pin "22" (uuid 236f18ea-0ae4-4d7b-976c-cd08dfe00908)) + (pin "23" (uuid 79d17ee0-c564-4e4b-b827-5fab08629d04)) + (pin "24" (uuid 7dedb137-1c0d-408e-93ef-239fae4363fd)) + (pin "25" (uuid b455ed19-d5ef-491b-8d05-18ab91c7ae65)) + (pin "26" (uuid 84db6d0a-372e-4caf-9bfb-f33cd410ba7c)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 129.54 191.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9a1c431-a765-47a4-84aa-ad1e735d5f5a) + (property "Reference" "U11" (id 0) (at 129.54 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 129.54 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 129.54 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 129.54 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4da00367-a101-402a-9139-3fc036e2c8e0)) + (pin "2" (uuid 97e76cd8-99c5-4a82-8e89-278d2bcb95b5)) + (pin "3" (uuid 1ac23f59-aad0-4962-8826-aa37e19e9501)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/f69c298e-619c-474b-989b-4592d4a3fdce" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/13b995f6-a574-4fe2-98d2-8750426efc20" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/8ff96fa4-cf05-487f-ab80-8cf07e33c7a7" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/1cf4ad45-d7e7-4fa5-a7c4-e196b91ac3f8" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/345b3510-1a49-4857-970a-c6ba2415eea1" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/e0f6f92f-3443-4e1a-9169-a5827dae1873" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/a81b2afb-61c4-47a1-9b4f-cd185b4daedc" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/4be951fb-0f24-42c3-94ab-a471c4c293ef" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/63a1eabe-f40a-45db-a9cc-72282507d68e" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/d7d57ca5-3e99-4e20-bbe9-bba7682824d4" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/75b1e046-53cb-4245-a8e3-d11f5b3c8ea8" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/8eeed972-d025-446f-8bca-7f7d51b4fe66" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/9242db34-73c3-4dbd-80cc-dfc4f737051b" + (reference "U2") (unit 1) (value "d_and") (footprint "") + ) + (path "/25d87ae2-c276-46af-ae1d-365ead365a22" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/04879ec7-4ef7-4242-8d7b-f2b39e34fbd8" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/601bc1cf-d15f-472a-8123-a530c452f6e0" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/e366730f-1e61-40a0-8462-b06ec86dcbcc" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/9a77757f-d67f-404f-baae-21252757d15b" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/f52205c2-6256-4d10-bc3e-6c1fff5806a9" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/ecb577c2-1c1a-4140-8fe6-1ef5eb721962" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/437b4d70-9c30-436d-b159-6cb750cbe588" + (reference "U10") (unit 1) (value "d_dff") (footprint "") + ) + (path "/f9a1c431-a765-47a4-84aa-ad1e735d5f5a" + (reference "U11") (unit 1) (value "d_or") (footprint "") + ) + (path "/e5545083-6f0a-4021-83ad-684dbc06189c" + (reference "U12") (unit 1) (value "d_or") (footprint "") + ) + (path "/d91739c5-53ff-4f21-b2e8-a36fec9eff68" + (reference "U13") (unit 1) (value "d_or") (footprint "") + ) + (path "/160f7046-6c20-4d05-bc41-2055d6af73a9" + (reference "U14") (unit 1) (value "d_or") (footprint "") + ) + (path "/a49cdb51-310b-4234-8259-75af9ef1a968" + (reference "U15") (unit 1) (value "d_or") (footprint "") + ) + (path "/172989ae-f5ee-426d-bf3f-a9ce9361c835" + (reference "U16") (unit 1) (value "d_or") (footprint "") + ) + (path "/1c6791a2-dcad-4e28-a0de-a80689a542ae" + (reference "U17") (unit 1) (value "d_or") (footprint "") + ) + (path "/0e4272ba-5862-4ee7-9ccf-80064a907984" + (reference "U18") (unit 1) (value "d_dff") (footprint "") + ) + (path "/35d21165-bdd1-4f5c-bc0e-c521ddce4840" + (reference "U19") (unit 1) (value "d_dff") (footprint "") + ) + (path "/138603fa-4bfe-4cda-a8f5-7949936082a4" + (reference "U20") (unit 1) (value "d_dff") (footprint "") + ) + (path "/6743a81a-f267-49fa-853d-913cfa4fbf8a" + (reference "U21") (unit 1) (value "d_dff") (footprint "") + ) + (path "/29015ce5-0acd-4acb-88dc-a5113fec124c" + (reference "U22") (unit 1) (value "d_dff") (footprint "") + ) + (path "/ea3a1e12-da16-4338-9f51-0b411eb8cb21" + (reference "U23") (unit 1) (value "d_dff") (footprint "") + ) + (path "/e2e32ca2-19c1-4e28-a927-2008ee7e931b" + (reference "U24") (unit 1) (value "d_dff") (footprint "") + ) + (path "/5499a85f-17e8-4bf1-b907-add72a35648f" + (reference "U25") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/74LS165_sub/74LS165_sub.proj b/library/SubcircuitLibrary/74LS165_sub/74LS165_sub.proj new file mode 100644 index 000000000..694a71877 --- /dev/null +++ b/library/SubcircuitLibrary/74LS165_sub/74LS165_sub.proj @@ -0,0 +1 @@ +schematicFile 74LS165_sub.kicad_sch diff --git a/library/SubcircuitLibrary/74LS165_sub/74LS165_test.cir b/library/SubcircuitLibrary/74LS165_sub/74LS165_test.cir new file mode 100644 index 000000000..c65bf85fa --- /dev/null +++ b/library/SubcircuitLibrary/74LS165_sub/74LS165_test.cir @@ -0,0 +1,33 @@ +.title 74LS165 Testbench + +.include C:\eSim_Kaviya\LS165_sub\LS165_sub.cir + +v1 n_clk GND DC 0 pulse(0 5 0 1e-9 1e-9 0.00005 0.0001) +v2 n_shld GND DC 0 pulse(0 5 0 1e-9 1e-9 0.004 0.008) +v3 n_zero GND DC 0 +v4 n_high GND DC 5 + +.model adcm adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1e-9 fall_delay=1e-9) +.model dacm dac_bridge(out_low=0 out_high=5 out_undef=2.5 t_rise=1e-9 t_fall=1e-9) + +a_adc1 [n_clk n_shld n_zero n_zero] [dCLK dSHLD dlow dlow2] adcm +a_adc2 [n_high n_high n_high n_high] [dA dB dC dD] adcm +a_adc3 [n_high n_high n_high n_zero] [dE dF dG dH] adcm + +XSUB dA dB dC dD dE dF dG dH dCLK dSHLD dlow dQH dQHbar LS165 + +a_dac1 [dQH] [n_qh] dacm +a_dac2 [dQHbar] [n_qhbar] dacm + +r1 n_qh GND 1k +r2 n_qhbar GND 1k + +.options trtol=1 evmax=10000 +.tran 0.00001 0.008 + +.control +run +plot v(n_clk)+10 v(n_shld)+5 v(n_qh) v(n_qhbar) +.endc + +.end \ No newline at end of file diff --git a/library/SubcircuitLibrary/74LS165_sub/74LS165_test.kicad_sch b/library/SubcircuitLibrary/74LS165_sub/74LS165_test.kicad_sch new file mode 100644 index 000000000..9107ba792 --- /dev/null +++ b/library/SubcircuitLibrary/74LS165_sub/74LS165_test.kicad_sch @@ -0,0 +1,898 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid a496326d-7d7f-4aa6-b54e-95b9bb3d94b6) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:74LS165" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "74LS165" (id 1) (at 2.54 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "74LS165_0_1" + (rectangle (start -6.35 12.7) (end 7.62 -15.24) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "74LS165_1_1" + (pin input line (at -6.35 11.43 0) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -11.43 0) (length 2.54) + (name "SHLD" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -13.97 0) (length 2.54) + (name "SER" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 10.16 0) (length 2.54) + (name "QH" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 6.35 0) (length 2.54) + (name "QHbar" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 8.89 0) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 6.35 0) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 3.81 0) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 1.27 0) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -1.27 0) (length 2.54) + (name "F" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -3.81 0) (length 2.54) + (name "G" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -6.35 0) (length 2.54) + (name "H" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -8.89 0) (length 2.54) + (name "CLK" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 53.34 52.07) (diameter 0) (color 0 0 0 0) + (uuid 17bb791d-dfba-49a5-8549-1fcf15934de8) + ) + (junction (at 53.34 73.66) (diameter 0) (color 0 0 0 0) + (uuid 6c45d3eb-1de8-4fc8-9b92-8beaa94471e4) + ) + (junction (at 53.34 54.61) (diameter 0) (color 0 0 0 0) + (uuid 8a9429eb-c70f-433b-b6e3-4681ff0a59d2) + ) + (junction (at 53.34 49.53) (diameter 0) (color 0 0 0 0) + (uuid 922d348e-2feb-4978-8cd1-14a94d866d3e) + ) + (junction (at 40.64 105.41) (diameter 0) (color 0 0 0 0) + (uuid 9fc08814-08ed-4f27-8b1a-49dd2238cf91) + ) + (junction (at 53.34 76.2) (diameter 0) (color 0 0 0 0) + (uuid a2157ea9-9b0b-4681-ab01-2b8ea85430b9) + ) + (junction (at 53.34 34.29) (diameter 0) (color 0 0 0 0) + (uuid ac83f9e2-c1cf-4496-b316-306d3a4ae2d6) + ) + (junction (at 33.02 100.33) (diameter 0) (color 0 0 0 0) + (uuid ae031b5a-dbc5-4d0e-b662-a240cac4005e) + ) + (junction (at 53.34 57.15) (diameter 0) (color 0 0 0 0) + (uuid d12e32fa-a7d7-4022-a38f-70e7e8cfa9a1) + ) + (junction (at 50.8 77.47) (diameter 0) (color 0 0 0 0) + (uuid d466c612-df41-41ef-aca1-60373ae4cd84) + ) + (junction (at 52.07 77.47) (diameter 0) (color 0 0 0 0) + (uuid e15a0a96-e36a-406a-a00e-c9be707d7114) + ) + + (wire (pts (xy 87.63 29.21) (xy 87.63 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03467492-3ccb-4552-9b38-12e252fadcc0) + ) + (wire (pts (xy 52.07 49.53) (xy 52.07 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04d6681d-429a-42ab-a704-aac813d0ebf9) + ) + (wire (pts (xy 52.07 77.47) (xy 53.34 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04f45261-fef2-4b19-b18a-8d6220f8639a) + ) + (wire (pts (xy 85.09 26.67) (xy 88.9 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a86697c-fe51-40d3-962f-65afdd1f3526) + ) + (wire (pts (xy 93.98 73.66) (xy 93.98 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b05c250-7a21-4ad9-b367-1dbdb3d85528) + ) + (wire (pts (xy 129.54 33.02) (xy 129.54 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e4ebe22-4fde-489b-a603-a90c03e132a9) + ) + (wire (pts (xy 52.07 29.21) (xy 57.15 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ec2a221-74c9-4959-978b-01d7540dbb03) + ) + (wire (pts (xy 40.64 100.33) (xy 40.64 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1138ce38-55d5-4a9e-a467-666124874fc9) + ) + (wire (pts (xy 90.17 26.67) (xy 99.06 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12aaa05e-9ec9-42ac-bdd5-161d49f82987) + ) + (wire (pts (xy 86.36 49.53) (xy 86.36 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15f82001-2a79-4fed-8765-1e76176d2a8c) + ) + (wire (pts (xy 40.64 49.53) (xy 52.07 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17126bff-a4ad-4c23-9f64-f4b84b275f40) + ) + (wire (pts (xy 96.52 39.37) (xy 99.06 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 174dd139-8986-49da-9813-58b57a877b72) + ) + (wire (pts (xy 85.09 57.15) (xy 92.71 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18153dee-379f-4f7f-b57b-48265620f18b) + ) + (wire (pts (xy 95.25 36.83) (xy 99.06 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19b56668-9d5d-444c-9ef6-e6a8c17d3639) + ) + (wire (pts (xy 52.07 78.74) (xy 52.07 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f48ec62-c802-44d0-8953-d946a128e47e) + ) + (wire (pts (xy 53.34 49.53) (xy 57.15 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2281176b-eadd-4f76-a185-2215392adfe7) + ) + (wire (pts (xy 92.71 31.75) (xy 99.06 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23d5fbc0-717d-4230-9789-a23c263f43e9) + ) + (wire (pts (xy 85.09 52.07) (xy 90.17 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ae0de80-752c-4648-a7b5-ccbf2dc05f0e) + ) + (wire (pts (xy 88.9 44.45) (xy 99.06 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 300bb17d-3f54-49f7-99cd-53567c8b9ea6) + ) + (wire (pts (xy 97.79 41.91) (xy 99.06 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3035d89c-844c-4b35-8267-0ffbbaddcfb5) + ) + (wire (pts (xy 33.02 100.33) (xy 33.02 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31e9e80e-441a-47d3-b36f-c1fa7d06a6e8) + ) + (wire (pts (xy 53.34 76.2) (xy 57.15 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d9a52c2-ac8c-4a6a-93d5-64c7df52858a) + ) + (wire (pts (xy 40.64 105.41) (xy 40.64 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e278b31-2e9a-47e1-a79f-1e9cce3fd7fb) + ) + (wire (pts (xy 91.44 54.61) (xy 91.44 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4417aab4-a4ee-4753-9741-eb8c8c83a905) + ) + (wire (pts (xy 93.98 34.29) (xy 99.06 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49ce509e-7013-45cc-8bda-bb834058a501) + ) + (wire (pts (xy 85.09 76.2) (xy 95.25 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51f79e7d-7630-49cc-a261-b1b6005a5c67) + ) + (wire (pts (xy 85.09 54.61) (xy 91.44 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52c327d7-3e74-4619-bbe6-20f407c127a5) + ) + (wire (pts (xy 92.71 57.15) (xy 92.71 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b1658db-0d72-47cf-a2e0-48890d90f491) + ) + (wire (pts (xy 53.34 52.07) (xy 57.15 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 643a1778-77af-4292-8af6-c741d5d0187e) + ) + (wire (pts (xy 85.09 49.53) (xy 86.36 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65709e39-982a-4019-9d6d-cbd34fe61f2f) + ) + (wire (pts (xy 85.09 29.21) (xy 87.63 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a54b650-1e2b-41e7-a3c9-af609e48f18d) + ) + (wire (pts (xy 50.8 77.47) (xy 52.07 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6cac0e5e-fef2-4b8e-982f-a355d6986293) + ) + (wire (pts (xy 53.34 34.29) (xy 53.34 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6eb9e999-ce64-440a-b93a-f0ebcc3329ec) + ) + (wire (pts (xy 85.09 73.66) (xy 93.98 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 744e8918-36b7-4d73-84fe-127183e687ec) + ) + (wire (pts (xy 113.03 25.4) (xy 128.27 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76040c4c-49c1-463c-8b6b-9071a7ce49e3) + ) + (wire (pts (xy 50.8 81.28) (xy 50.8 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 798533d5-a124-44fa-81ef-8524f54815bf) + ) + (wire (pts (xy 113.03 29.21) (xy 113.03 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bd092e1-a9ad-4b00-a606-a44d87381d90) + ) + (wire (pts (xy 40.64 20.32) (xy 57.15 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8292a253-e0b4-4725-ab02-c8b3747ac104) + ) + (wire (pts (xy 53.34 73.66) (xy 57.15 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86bb8816-8f32-4f67-aa73-d9dce55c6bcf) + ) + (wire (pts (xy 33.02 105.41) (xy 40.64 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87be3a1e-74bb-4124-a466-35ffdebd1275) + ) + (wire (pts (xy 85.09 78.74) (xy 96.52 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89d7c7a0-c5a2-42f5-8035-46566cee38a2) + ) + (wire (pts (xy 57.15 78.74) (xy 52.07 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e75d3e0-0ca6-4e84-9bea-b753145e4be4) + ) + (wire (pts (xy 86.36 24.13) (xy 99.06 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 902f915e-236c-4ea6-b54c-3ef3255b5bd0) + ) + (wire (pts (xy 53.34 54.61) (xy 53.34 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99e7c3bb-68ad-46ef-99e2-da83413efaf2) + ) + (wire (pts (xy 40.64 72.39) (xy 33.02 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a7db8c2-fa6d-4d78-80ff-8c0d8d8bed55) + ) + (wire (pts (xy 53.34 52.07) (xy 53.34 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0c5528b-21e9-4868-a115-423f39ddc79b) + ) + (wire (pts (xy 40.64 77.47) (xy 50.8 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a500f96a-dd78-48dc-9239-b930d623fb3f) + ) + (wire (pts (xy 90.17 52.07) (xy 90.17 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a831a731-7e68-4ad8-b7fc-a7ef4e0a05f6) + ) + (wire (pts (xy 88.9 26.67) (xy 88.9 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9e6ec3d-fb37-46d4-9fa8-92fbbb5100ad) + ) + (wire (pts (xy 53.34 31.75) (xy 57.15 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aab3ebcc-848d-4474-a598-9a7d294d139d) + ) + (wire (pts (xy 53.34 57.15) (xy 53.34 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acc0d29d-5a8a-461f-9656-eb0b5847f591) + ) + (wire (pts (xy 53.34 73.66) (xy 53.34 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid adb985ce-db92-4c91-a972-32790630cc42) + ) + (wire (pts (xy 57.15 20.32) (xy 57.15 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6342cb9-de8b-4dce-b766-ce4991fae33f) + ) + (wire (pts (xy 95.25 76.2) (xy 95.25 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba335e12-70af-476c-b240-7fc21b98c45d) + ) + (wire (pts (xy 113.03 33.02) (xy 129.54 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bad4c202-bcfe-42ed-846b-e6607ed22fb7) + ) + (wire (pts (xy 53.34 77.47) (xy 53.34 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb22ee5e-632d-4426-b9a2-f788fd4331d1) + ) + (wire (pts (xy 29.21 43.18) (xy 29.21 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfda31d5-c753-488d-bd1b-deae539974be) + ) + (wire (pts (xy 53.34 57.15) (xy 57.15 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c581c368-3010-4430-8689-1ae2fd5cba94) + ) + (wire (pts (xy 53.34 76.2) (xy 53.34 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9c80345-6490-430a-95c3-fe587c622b17) + ) + (wire (pts (xy 33.02 72.39) (xy 33.02 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb1ef68d-0883-42a9-a0f2-b52a177b5047) + ) + (wire (pts (xy 57.15 81.28) (xy 50.8 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdfbb277-28d8-46d2-932e-123bacc60eb6) + ) + (wire (pts (xy 91.44 29.21) (xy 99.06 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d44349b2-8198-4eaf-8fba-ca5b3c8beaa0) + ) + (wire (pts (xy 96.52 78.74) (xy 96.52 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dfd812ae-0c6e-4543-a6d1-7f6b0d5bfecb) + ) + (wire (pts (xy 53.34 54.61) (xy 57.15 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2856d8b-2698-4d72-a813-faf24619c29d) + ) + (wire (pts (xy 53.34 49.53) (xy 53.34 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5b53b9a-659b-4cc9-ba7c-482d459ea6b6) + ) + (wire (pts (xy 87.63 46.99) (xy 99.06 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5f171b9-4f70-47cc-94e3-7fb4eb74c09e) + ) + (wire (pts (xy 40.64 43.18) (xy 29.21 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e73a7738-1839-4d59-bbca-d7dd733a37ad) + ) + (wire (pts (xy 53.34 34.29) (xy 57.15 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea59bda6-fe2d-484c-a449-2aa85cc2a8c2) + ) + (wire (pts (xy 29.21 100.33) (xy 33.02 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f028fc9a-d12f-4210-8d70-eed71ea48413) + ) + (wire (pts (xy 85.09 81.28) (xy 97.79 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1f49ea8-7e0b-480f-9e22-9ceead3046e1) + ) + (wire (pts (xy 97.79 81.28) (xy 97.79 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc30e250-ff1e-406e-a03c-a32867dbddd9) + ) + + (symbol (lib_id "eSim_Subckt:74LS165") (at 105.41 35.56 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 2159e5d1-62c6-44f0-acbc-8f0bbf003f46) + (property "Reference" "U4" (id 0) (at 104.14 33.02 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "74LS165" (id 1) (at 104.14 35.56 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 105.41 35.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 105.41 35.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9c048ddd-aa5d-4d57-a560-b0af5ac2dc40)) + (pin "10" (uuid 71e3e3c0-d398-4613-a89b-8a7bf6e6e485)) + (pin "11" (uuid ef46fb90-588f-493c-8a20-e9e110048f2f)) + (pin "12" (uuid aabad585-ca48-42c3-84df-d2ca323ea225)) + (pin "13" (uuid 7fd577d2-f4ef-40b8-86d3-e317d07f359a)) + (pin "2" (uuid 23ad93e3-8e4f-4970-9cce-9a9f69c79919)) + (pin "3" (uuid 28f11e9b-3565-4e14-a335-13a8aa334f7e)) + (pin "4" (uuid 75733104-1934-4e0b-b8ad-64cb3016a0c1)) + (pin "5" (uuid 0053fe38-2e00-4718-936e-b3663c91a9e1)) + (pin "6" (uuid c085b0da-bb12-4f52-9ebf-fd118397daff)) + (pin "7" (uuid 6d5bb3fd-5d64-46bc-a351-a14a84bcbc38)) + (pin "8" (uuid 3fab12b5-7c00-4c8e-96e6-9599953fcc91)) + (pin "9" (uuid 5115bd6b-5835-4fcc-bfb5-49744d94b022)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 71.12 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 368ca756-1e44-41b8-b359-1ab01c1b1104) + (property "Reference" "U3" (id 0) (at 71.12 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 71.12 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 40c554b3-35e2-4fd8-9875-098fe72c2b6a)) + (pin "2" (uuid 8136474a-5bd5-4547-8322-fef92e45a136)) + (pin "3" (uuid 661f2302-2525-46ca-8041-7af47c504773)) + (pin "4" (uuid 18fd0032-6ea2-4ee6-b422-55be0dfc397b)) + (pin "5" (uuid 13f5abb5-5eee-49ef-9d28-95f2f595e6c2)) + (pin "6" (uuid 67e93f0b-6f28-4edb-a678-ce344cc1df4e)) + (pin "7" (uuid b8652537-c6e3-42cb-98f3-a29bc7964105)) + (pin "8" (uuid 8f2f9855-39c8-4269-b58d-8257810ce3dc)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 71.12 31.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48c4b2af-5813-4497-a97b-ecf28473dd65) + (property "Reference" "U1" (id 0) (at 71.12 17.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 71.12 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cf0fec84-1b68-44fc-b3fd-9d80b7f80982)) + (pin "2" (uuid d1162375-0f60-4e7a-8bba-501e3d9b5f6b)) + (pin "3" (uuid d017d364-23ef-4fe3-9bd3-bdf83b606a04)) + (pin "4" (uuid 80769bfd-89a9-437d-a186-b12735414ea2)) + (pin "5" (uuid adf6b81c-2088-4bbb-95c6-dd3489ad6d46)) + (pin "6" (uuid 19a26935-0cc5-4284-8a5d-f4b67a946972)) + (pin "7" (uuid 6c7083ad-f05d-496f-bd18-d68c65f0f509)) + (pin "8" (uuid 40432f53-25d1-4a12-86cc-9d83d9ca702c)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 40.64 31.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 520a3506-3e10-4288-b0b2-4109ba3d0326) + (property "Reference" "v1" (id 0) (at 45.72 28.575 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 45.72 32.385 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 45.72 36.195 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 40.64 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e2db793-77e2-4b14-9db4-dee80e8e0fe6)) + (pin "2" (uuid 12849a6b-5942-48f8-a60e-e4848c61f1eb)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 144.78 40.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a0efb07-6641-4c9b-ab04-3b9d47e10d49) + (property "Reference" "U6" (id 0) (at 144.145 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 144.145 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 144.78 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c88d3106-8d0f-42da-a65d-671851859d77)) + (pin "2" (uuid ed402f91-6596-4d21-a136-103ece430616)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 143.51 26.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 850fac30-aed4-4e97-8546-4de90d9df649) + (property "Reference" "U5" (id 0) (at 142.875 16.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 142.875 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 143.51 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a288fcd5-9a12-48cf-aff9-8a7a2c5a3d92)) + (pin "2" (uuid fd2746dc-8d0e-4ffd-a07d-612cbd37af1d)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 157.48 30.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a253966c-e818-48d9-8926-d9889e154661) + (property "Reference" "U7" (id 0) (at 161.29 16.51 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 161.29 20.32 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 157.48 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 157.48 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 6f62342d-a613-4a7a-add2-e25e5ae157f5)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 40.64 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bf31852b-d3d3-489a-aab8-e2e30a1e9843) + (property "Reference" "v3" (id 0) (at 45.72 85.725 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 45.72 89.535 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 45.72 93.345 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 40.64 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 905bf9bd-4a9c-4052-9819-124f2319c289)) + (pin "2" (uuid 5bce91d7-46b2-4b57-80cf-ba8c13152422)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 158.75 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cff92726-58c1-4ea6-a323-37979c261c9e) + (property "Reference" "U8" (id 0) (at 162.56 30.48 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 162.56 34.29 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 158.75 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 158.75 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid e8a6468d-badf-4ddb-b49a-4806483aa062)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 40.64 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f148a808-bf74-4479-8b07-c8955d8cc479) + (property "Reference" "v2" (id 0) (at 45.72 57.785 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 45.72 61.595 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 45.72 65.405 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 40.64 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 77165337-407d-4e24-842e-c73cd85a9f7c)) + (pin "2" (uuid b6a0e228-69e3-4b23-aaf3-34ff84ed7d1b)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 40.64 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f687c8f5-4ad5-4985-9ab1-cbee2fbbced5) + (property "Reference" "#PWR0101" (id 0) (at 40.64 114.3 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 40.64 113.03 0)) + (property "Footprint" "" (id 2) (at 40.64 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f753fbf1-5d70-4639-8f42-35454d2b9dc6)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 71.12 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f75bbbeb-c537-4d54-8888-aa9129165cac) + (property "Reference" "U2" (id 0) (at 71.12 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 71.12 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 319b6cb7-01e5-4c57-ae4e-3afbfbd2b03c)) + (pin "2" (uuid 080d6b9f-1fee-4c62-a5f4-3465ed703b25)) + (pin "3" (uuid b7b46191-8ee3-4317-9b0f-b3e4be5defae)) + (pin "4" (uuid 652f37c8-12a6-484c-a230-ef69f620c35a)) + (pin "5" (uuid c1759e5f-6b7e-4c0c-9ec3-0c323b5bdc55)) + (pin "6" (uuid d2595ec9-2eb6-4afc-8501-8fe515e851eb)) + (pin "7" (uuid 62de75c1-baca-49a8-9e4d-f31d0c670ae6)) + (pin "8" (uuid 11cab1d3-4f4d-4e3a-a96b-e82ec0fdcf24)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/f687c8f5-4ad5-4985-9ab1-cbee2fbbced5" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/48c4b2af-5813-4497-a97b-ecf28473dd65" + (reference "U1") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/f75bbbeb-c537-4d54-8888-aa9129165cac" + (reference "U2") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/368ca756-1e44-41b8-b359-1ab01c1b1104" + (reference "U3") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/2159e5d1-62c6-44f0-acbc-8f0bbf003f46" + (reference "U4") (unit 1) (value "74LS165") (footprint "") + ) + (path "/850fac30-aed4-4e97-8546-4de90d9df649" + (reference "U5") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/7a0efb07-6641-4c9b-ab04-3b9d47e10d49" + (reference "U6") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/a253966c-e818-48d9-8926-d9889e154661" + (reference "U7") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/cff92726-58c1-4ea6-a323-37979c261c9e" + (reference "U8") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/520a3506-3e10-4288-b0b2-4109ba3d0326" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/f148a808-bf74-4479-8b07-c8955d8cc479" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/bf31852b-d3d3-489a-aab8-e2e30a1e9843" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/74LS165_sub/74LS165_test.proj b/library/SubcircuitLibrary/74LS165_sub/74LS165_test.proj new file mode 100644 index 000000000..e2581b8cc --- /dev/null +++ b/library/SubcircuitLibrary/74LS165_sub/74LS165_test.proj @@ -0,0 +1 @@ +schematicFile 74LS165_test.kicad_sch diff --git a/library/SubcircuitLibrary/74LS240/LS240_subckt.cir b/library/SubcircuitLibrary/74LS240/LS240_subckt.cir new file mode 100644 index 000000000..ee0df4262 --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/LS240_subckt.cir @@ -0,0 +1,27 @@ +.title KiCad schematic +U16 OE2 Net-_U16-Pad2_ d_inverter +U15 OE2 Net-_U15-Pad2_ d_inverter +U1 OE1 A1 A2 A3 A4 Y1 Y2 Y3 Y4 A5 A6 A7 A8 Y5 Y6 Y7 Y8 OE2 PORT +U17 OE2 Net-_U17-Pad2_ d_inverter +U5 OE1 Net-_U5-Pad2_ d_inverter +U11 Net-_U11-Pad1_ Y2 d_inverter +U4 OE1 Net-_U4-Pad2_ d_inverter +U9 Net-_U5-Pad2_ A4 Net-_U13-Pad1_ d_and +U13 Net-_U13-Pad1_ Y4 d_inverter +U8 Net-_U4-Pad2_ A3 Net-_U12-Pad1_ d_and +U12 Net-_U12-Pad1_ Y3 d_inverter +U2 OE1 Net-_U2-Pad2_ d_inverter +U3 OE1 Net-_U3-Pad2_ d_inverter +U7 Net-_U3-Pad2_ A2 Net-_U11-Pad1_ d_and +U6 Net-_U2-Pad2_ A1 Net-_U10-Pad1_ d_and +U10 Net-_U10-Pad1_ Y1 d_inverter +U25 Net-_U21-Pad3_ Y7 d_inverter +U21 Net-_U17-Pad2_ A7 Net-_U21-Pad3_ d_and +U26 Net-_U22-Pad3_ Y8 d_inverter +U22 Net-_U18-Pad2_ A8 Net-_U22-Pad3_ d_and +U18 OE2 Net-_U18-Pad2_ d_inverter +U24 Net-_U20-Pad3_ Y6 d_inverter +U20 Net-_U16-Pad2_ A6 Net-_U20-Pad3_ d_and +U23 Net-_U19-Pad3_ Y5 d_inverter +U19 Net-_U15-Pad2_ A5 Net-_U19-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/74LS240/LS240_subckt.cir.out b/library/SubcircuitLibrary/74LS240/LS240_subckt.cir.out new file mode 100644 index 000000000..7bd987fcf --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/LS240_subckt.cir.out @@ -0,0 +1,108 @@ +.title kicad schematic + +* u16 oe2 net-_u16-pad2_ d_inverter +* u15 oe2 net-_u15-pad2_ d_inverter +* u1 oe1 a1 a2 a3 a4 y1 y2 y3 y4 a5 a6 a7 a8 y5 y6 y7 y8 oe2 port +* u17 oe2 net-_u17-pad2_ d_inverter +* u5 oe1 net-_u5-pad2_ d_inverter +* u11 net-_u11-pad1_ y2 d_inverter +* u4 oe1 net-_u4-pad2_ d_inverter +* u9 net-_u5-pad2_ a4 net-_u13-pad1_ d_and +* u13 net-_u13-pad1_ y4 d_inverter +* u8 net-_u4-pad2_ a3 net-_u12-pad1_ d_and +* u12 net-_u12-pad1_ y3 d_inverter +* u2 oe1 net-_u2-pad2_ d_inverter +* u3 oe1 net-_u3-pad2_ d_inverter +* u7 net-_u3-pad2_ a2 net-_u11-pad1_ d_and +* u6 net-_u2-pad2_ a1 net-_u10-pad1_ d_and +* u10 net-_u10-pad1_ y1 d_inverter +* u25 net-_u21-pad3_ y7 d_inverter +* u21 net-_u17-pad2_ a7 net-_u21-pad3_ d_and +* u26 net-_u22-pad3_ y8 d_inverter +* u22 net-_u18-pad2_ a8 net-_u22-pad3_ d_and +* u18 oe2 net-_u18-pad2_ d_inverter +* u24 net-_u20-pad3_ y6 d_inverter +* u20 net-_u16-pad2_ a6 net-_u20-pad3_ d_and +* u23 net-_u19-pad3_ y5 d_inverter +* u19 net-_u15-pad2_ a5 net-_u19-pad3_ d_and +a1 oe2 net-_u16-pad2_ u16 +a2 oe2 net-_u15-pad2_ u15 +a3 oe2 net-_u17-pad2_ u17 +a4 oe1 net-_u5-pad2_ u5 +a5 net-_u11-pad1_ y2 u11 +a6 oe1 net-_u4-pad2_ u4 +a7 [net-_u5-pad2_ a4 ] net-_u13-pad1_ u9 +a8 net-_u13-pad1_ y4 u13 +a9 [net-_u4-pad2_ a3 ] net-_u12-pad1_ u8 +a10 net-_u12-pad1_ y3 u12 +a11 oe1 net-_u2-pad2_ u2 +a12 oe1 net-_u3-pad2_ u3 +a13 [net-_u3-pad2_ a2 ] net-_u11-pad1_ u7 +a14 [net-_u2-pad2_ a1 ] net-_u10-pad1_ u6 +a15 net-_u10-pad1_ y1 u10 +a16 net-_u21-pad3_ y7 u25 +a17 [net-_u17-pad2_ a7 ] net-_u21-pad3_ u21 +a18 net-_u22-pad3_ y8 u26 +a19 [net-_u18-pad2_ a8 ] net-_u22-pad3_ u22 +a20 oe2 net-_u18-pad2_ u18 +a21 net-_u20-pad3_ y6 u24 +a22 [net-_u16-pad2_ a6 ] net-_u20-pad3_ u20 +a23 net-_u19-pad3_ y5 u23 +a24 [net-_u15-pad2_ a5 ] net-_u19-pad3_ u19 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u26 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/74LS240/LS240_subckt.kicad_sch b/library/SubcircuitLibrary/74LS240/LS240_subckt.kicad_sch new file mode 100644 index 000000000..16e5613cb --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/LS240_subckt.kicad_sch @@ -0,0 +1,2016 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid f50268af-ffff-408d-9e73-1a8807df2ec8) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 83.82 80.01) (diameter 0) (color 0 0 0 0) + (uuid 631d9fad-8f87-4e11-9e87-0d6b6eac1f52) + ) + (junction (at 250.19 80.01) (diameter 0) (color 0 0 0 0) + (uuid 6ea2c88d-6227-4734-a618-a22ff880a4a6) + ) + (junction (at 146.05 96.52) (diameter 0) (color 0 0 0 0) + (uuid 7e00a408-4d60-4229-92a9-4870827de497) + ) + (junction (at 146.05 177.8) (diameter 0) (color 0 0 0 0) + (uuid 945d7351-a828-4487-92c8-043f259aab41) + ) + (junction (at 250.19 36.83) (diameter 0) (color 0 0 0 0) + (uuid b2e96bf3-b51b-4cb9-9e23-cac8002b2c5b) + ) + (junction (at 83.82 120.65) (diameter 0) (color 0 0 0 0) + (uuid e1cb6cc9-9bc8-461a-9b24-87c7bf1a74dc) + ) + (junction (at 83.82 36.83) (diameter 0) (color 0 0 0 0) + (uuid e2dbf39e-ff94-4df3-bdad-81c3bc295a58) + ) + (junction (at 250.19 120.65) (diameter 0) (color 0 0 0 0) + (uuid eacdf381-a3b7-4a7a-a547-b4ed701778b1) + ) + (junction (at 146.05 53.34) (diameter 0) (color 0 0 0 0) + (uuid ef948a6a-0122-4ad6-aa38-0fb28cc1b8ab) + ) + + (wire (pts (xy 160.02 80.01) (xy 165.1 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0aed2989-ae2d-4b04-84e9-595debce5844) + ) + (wire (pts (xy 160.02 120.65) (xy 165.1 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e6ed8e9-fc86-4bec-add6-867e3788bf58) + ) + (wire (pts (xy 165.1 36.83) (xy 165.1 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 133e4310-c67c-4c5c-b2d2-e90915c9db96) + ) + (wire (pts (xy 300.99 96.52) (xy 321.31 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1402ba2e-1492-4c71-a570-235e2df28e96) + ) + (wire (pts (xy 144.78 137.16) (xy 165.1 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1618afec-6103-4392-874b-2f5a0e8d1c98) + ) + (wire (pts (xy 300.99 137.16) (xy 321.31 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17a0cf15-4528-4edb-91ff-38942d3762e8) + ) + (wire (pts (xy 321.31 53.34) (xy 321.31 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1abae67c-2c8d-453a-a9f3-034ca613c917) + ) + (wire (pts (xy 144.78 177.8) (xy 146.05 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c691e4d-52d9-45bc-8a16-d2c340bb5fd4) + ) + (wire (pts (xy 83.82 80.01) (xy 144.78 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cd327b7-eff5-40df-8421-5a55155730dd) + ) + (wire (pts (xy 321.31 177.8) (xy 321.31 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2299fe5c-6e3f-4a74-a624-e938c823d129) + ) + (wire (pts (xy 165.1 53.34) (xy 165.1 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24bb9617-1a23-4330-8251-2e5143e9c475) + ) + (wire (pts (xy 321.31 161.29) (xy 321.31 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28337c7d-8323-4fdc-8e60-5f40a4193916) + ) + (wire (pts (xy 321.31 137.16) (xy 321.31 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35a8ac1c-c015-4078-aa75-ee02f3ce6f9c) + ) + (wire (pts (xy 250.19 80.01) (xy 250.19 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38ffaec5-2fc7-4cc5-9a71-65d357e261a6) + ) + (wire (pts (xy 316.23 120.65) (xy 321.31 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 447cf57b-6875-468d-b85f-0a2d200c3644) + ) + (wire (pts (xy 160.02 161.29) (xy 165.1 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46635071-8adb-484e-9f59-419fb2118bb8) + ) + (wire (pts (xy 165.1 120.65) (xy 165.1 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49ff1a3a-c32e-45d2-90a6-a64c2191dc43) + ) + (wire (pts (xy 165.1 80.01) (xy 165.1 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b53416e-d5ea-49ac-8d88-32be26e9c2d6) + ) + (wire (pts (xy 83.82 161.29) (xy 144.78 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e504737-f4ab-4f6f-85df-b21d6f7ec49d) + ) + (wire (pts (xy 146.05 53.34) (xy 165.1 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5246e40c-eca5-46ed-b013-bff99acf71d1) + ) + (wire (pts (xy 300.99 36.83) (xy 250.19 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6148272e-8a4f-4ddf-84cd-3e9e753bd23c) + ) + (wire (pts (xy 144.78 53.34) (xy 146.05 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61d6f7f9-3b02-43e8-844f-08d085fc1018) + ) + (wire (pts (xy 321.31 80.01) (xy 321.31 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62d554cb-ca8d-4ca8-a707-0158faceb2be) + ) + (wire (pts (xy 160.02 36.83) (xy 165.1 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bce0174-e849-4107-819a-b27fe9de6d9b) + ) + (wire (pts (xy 316.23 80.01) (xy 321.31 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e8b22d8-3201-46bb-b03a-94aa9ced7758) + ) + (wire (pts (xy 165.1 161.29) (xy 165.1 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74c5da3f-fd41-4544-92b3-a82b0b4008f7) + ) + (wire (pts (xy 248.92 36.83) (xy 248.92 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86fe85a3-456f-4424-a00b-8b25929af70e) + ) + (wire (pts (xy 146.05 177.8) (xy 165.1 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 871ed882-726f-4066-8233-216952b76ae1) + ) + (wire (pts (xy 250.19 80.01) (xy 300.99 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89f2ade0-ff24-40cf-8a4b-686756636104) + ) + (wire (pts (xy 316.23 161.29) (xy 321.31 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e669542-aefa-48df-b7a7-dc6f89cb25b0) + ) + (wire (pts (xy 76.2 36.83) (xy 83.82 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90a61cd3-fed8-4a0c-8c16-7be379539ae8) + ) + (wire (pts (xy 165.1 96.52) (xy 165.1 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 921013af-d8ee-4a3d-a5c4-7cb4803ba0d2) + ) + (wire (pts (xy 83.82 80.01) (xy 83.82 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92b66b51-29a5-43b0-9903-4e3576b6f20e) + ) + (wire (pts (xy 321.31 120.65) (xy 321.31 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94b301f7-c08a-4636-a003-f8836c51e10e) + ) + (wire (pts (xy 321.31 96.52) (xy 321.31 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 982ce743-63d5-4980-94c1-9bf964ea5396) + ) + (wire (pts (xy 83.82 36.83) (xy 144.78 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a193a70c-3ef0-4fc8-8bb2-e816d4d9d7e4) + ) + (wire (pts (xy 250.19 120.65) (xy 250.19 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa5c4022-28fb-4602-afde-80a26d259fd9) + ) + (wire (pts (xy 250.19 161.29) (xy 300.99 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b325c093-84c0-48ff-bb55-b6bc8eb79406) + ) + (wire (pts (xy 165.1 177.8) (xy 165.1 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8ddb879-2696-4c09-8300-05622988ebe4) + ) + (wire (pts (xy 83.82 36.83) (xy 83.82 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba9c20dd-db71-4c89-ab2d-91f3c2676afe) + ) + (wire (pts (xy 144.78 96.52) (xy 146.05 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid baf45bbe-484c-442f-bfc0-a3a42033942d) + ) + (wire (pts (xy 300.99 53.34) (xy 321.31 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c527442d-fbef-4d92-ba34-6cab9fc753af) + ) + (wire (pts (xy 146.05 96.52) (xy 165.1 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c55fba87-539c-44d8-b0e3-e82f1f624c37) + ) + (wire (pts (xy 250.19 36.83) (xy 248.92 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d68ab33b-f2a9-424e-a344-aba636fe6aeb) + ) + (wire (pts (xy 316.23 36.83) (xy 321.31 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de5c5fc9-7cf5-4656-b9f3-1d749f952f6c) + ) + (wire (pts (xy 165.1 137.16) (xy 165.1 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df66d10b-e8a1-4b84-b240-ebbbc2ea0d8b) + ) + (wire (pts (xy 83.82 120.65) (xy 83.82 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e72feed3-207e-4e0a-8b0f-1673ff760135) + ) + (wire (pts (xy 321.31 36.83) (xy 321.31 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e93e2e03-99ff-420a-a6a1-b7963669423f) + ) + (wire (pts (xy 250.19 36.83) (xy 250.19 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb89954d-2d5b-4a51-8c03-bd883eb57aea) + ) + (wire (pts (xy 201.93 44.45) (xy 203.2 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1d2b635-249c-40e0-afd5-61e3bf53d64f) + ) + (wire (pts (xy 300.99 177.8) (xy 321.31 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5cf7aae-f9ee-4ad2-a3fe-45fa1704713c) + ) + (wire (pts (xy 83.82 120.65) (xy 144.78 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5fedd22-5030-45a7-9b25-2d2f82db3f92) + ) + (wire (pts (xy 250.19 120.65) (xy 300.99 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7fab1b4-73a0-4813-a91b-d3de4fb2916f) + ) + + (global_label "Y4" (shape output) (at 203.2 168.91 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 00ca0a60-c99a-4b4c-9e87-fbf0a4fd7d87) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.1206 164.1988 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 152.4 96.52 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0154748e-7dac-4cf6-abc3-3275d3a7b065) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 91.8088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "OE2" (shape input) (at 261.62 36.83 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 06b388ae-7c75-4683-979a-f163ef6f0689) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 261.5406 30.7279 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape input) (at 156.21 177.8 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 11c6e813-bf4b-4f15-8a05-6d5258390801) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 156.1306 173.0888 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A6" (shape input) (at 312.42 96.52 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 141b1c06-8905-4d86-8b59-4f942f84fff1) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 312.3406 91.8088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y3" (shape output) (at 203.2 128.27 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 22befadf-eca4-4445-9488-416b5c0fac57) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.1206 123.5588 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A7" (shape input) (at 314.96 137.16 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2a91dc11-6786-4559-bad2-51fd889b1d37) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 314.8806 132.4488 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A5" (shape input) (at 308.61 53.34 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 3c93c37b-c56a-41fe-afb4-d08b13cfe70f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 308.5306 48.6288 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y8" (shape output) (at 359.41 168.91 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 46187568-8c0b-4128-9434-cc7cc6841793) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 359.3306 164.1988 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A3" (shape input) (at 152.4 137.16 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 508ec681-222b-4967-ada5-bee85cebf07c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 132.4488 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "OE1" (shape input) (at 95.25 36.83 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 58cc85be-98d5-4a11-a89a-2eb60b43fead) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 95.1706 30.7279 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 151.13 53.34 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b452ca4d-da1e-48ea-b44e-b3d97810fb9e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.0506 48.6288 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A8" (shape input) (at 311.15 177.8 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid bcdc38b9-d53b-4144-9c68-f30a62d7250f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 311.0706 173.0888 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y5" (shape output) (at 359.41 44.45 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d63e7e23-253c-486b-81b2-0af158f946e2) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 359.3306 39.7388 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y7" (shape output) (at 359.41 128.27 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid da37ee66-24ca-4731-bedc-1d24e69f84c1) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 359.3306 123.5588 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y6" (shape output) (at 359.41 87.63 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid dbfcaabe-296e-43f8-b3d4-5f7015b329a8) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 359.3306 82.9188 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y1" (shape output) (at 201.93 44.45 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e41f260b-bf82-401b-8930-1faedce4f914) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 201.8506 39.7388 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y2" (shape output) (at 203.2 87.63 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f68d3af0-c3c8-4091-8460-20b03c4b8cc9) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.1206 82.9188 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 152.4 161.29 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0415eda0-b250-4433-aec4-cf466d25371f) + (property "Reference" "U5" (id 0) (at 152.4 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 152.4 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 153.67 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f77ca66-ea44-4b4f-9d85-cfacb62cf6f1)) + (pin "2" (uuid 487b6bcd-0814-4a06-945b-4e06239d5c6d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 139.7 96.52 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 068622ce-85f9-491f-80b2-e31ee5478881) + (property "Reference" "U1" (id 0) (at 140.335 91.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 140.335 93.98 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 139.7 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 864f87c9-56ab-4109-98f5-6d702ad0a2a4)) + (pin "2" (uuid db9d7de0-f064-4689-b83f-d5ea9cea110c)) + (pin "3" (uuid 83f901c9-76af-43a3-bc34-83f1bf330bab)) + (pin "4" (uuid 688f8095-802d-4dcc-a9ff-7a62c8982607)) + (pin "5" (uuid d3b49541-d1ef-418a-91b9-2039b913bd58)) + (pin "6" (uuid 8f1da492-abfc-41b6-bde3-6592b406bb71)) + (pin "7" (uuid f2a7ae65-13cd-4b6e-8adc-1bb5ebf8c93a)) + (pin "8" (uuid ba3d725b-f6dc-4962-bc58-42541fe82267)) + (pin "9" (uuid 46d121e5-22ab-4248-9ba2-a5cc8458c16b)) + (pin "10" (uuid 0776b722-932c-4bfa-9f4b-d7dc08fea076)) + (pin "11" (uuid f76662e2-531c-4898-bb39-e7c54a7436d4)) + (pin "12" (uuid 917ed576-3ee3-4d36-9a2b-a4cb7368d0d6)) + (pin "13" (uuid 9e1d4f2e-a29c-43b3-8238-81a71c2b7f07)) + (pin "14" (uuid ed77c6ff-1737-43b8-9a15-2017ed1450ff)) + (pin "15" (uuid ac6f3645-3234-4d8f-8173-7f1a52c888c2)) + (pin "16" (uuid b65b5d30-1885-494f-8b34-e7c9a4c5ed09)) + (pin "17" (uuid 1122563d-c125-4d2f-b5a9-c1cbac72ddb5)) + (pin "18" (uuid fd9e124b-ef06-4c44-a3fc-c1c2e55daa76)) + (pin "19" (uuid e193298a-dcf9-4624-ad08-111bb3675e81)) + (pin "20" (uuid fa0e5d9d-837e-48b6-af56-d80ae42a3a88)) + (pin "21" (uuid 96d20181-cb9d-4561-8b14-b4a9757648bd)) + (pin "22" (uuid a081bb5a-c638-4068-a997-9a99e49020d3)) + (pin "23" (uuid d84e34ef-78e7-4d06-abb6-628b993c2dda)) + (pin "24" (uuid e295e830-f99e-4f0b-adfa-707d505b598a)) + (pin "25" (uuid f964c2dc-0551-4676-8577-378aa9b085c6)) + (pin "26" (uuid 2cea32a4-649d-4609-abd5-594fbb5c4992)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 351.79 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0974954d-c5a5-4d33-a818-cdbfc5f7cf14) + (property "Reference" "U23" (id 0) (at 351.79 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 351.79 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 353.06 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 353.06 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17cc26e2-8806-4152-9aa8-bb311315eb2b)) + (pin "2" (uuid f091f4ac-11ae-4a74-b8af-c190ff28dfa3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 176.53 129.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 09bd7625-f323-4b49-ab9b-610794d1c14f) + (property "Reference" "U8" (id 0) (at 176.53 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 176.53 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 176.53 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 176.53 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 67686bcb-64b3-4b25-9773-3797c245c148)) + (pin "2" (uuid 8f9d69ac-0ae4-4802-a526-834aa99bdfd9)) + (pin "3" (uuid 0e65de46-490f-43d0-ad3e-d202cdd87173)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 139.7 53.34 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0fd602fb-9df3-4101-bc87-ed551412f0e2) + (property "Reference" "U1" (id 0) (at 140.335 48.26 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 140.335 50.8 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 139.7 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53a79b4d-ace3-4525-af91-4754e95224e4)) + (pin "2" (uuid ad81847d-e3cb-4764-bd32-0aff062b702a)) + (pin "3" (uuid 15957eb5-0af9-40bf-a80a-a2b688d8111a)) + (pin "4" (uuid b7f7ad4e-da16-44b9-9b80-1780fd7386c2)) + (pin "5" (uuid caf6ec82-6a1a-4441-8c0b-706382cbda48)) + (pin "6" (uuid 8d578ca7-0117-46e0-9867-9a08bee17113)) + (pin "7" (uuid 9582e380-0dd2-461a-b6df-5f49f4f531f7)) + (pin "8" (uuid f8f99d38-0736-4f88-8781-82841ed6331d)) + (pin "9" (uuid 06b8fe8b-d8e2-4102-9680-6230f82e640e)) + (pin "10" (uuid d6a2398d-375d-429a-8239-9438c0c92152)) + (pin "11" (uuid ff45cf68-ca17-46aa-96c3-596c72ce588c)) + (pin "12" (uuid 99570177-ef5c-4798-967b-4e5391c5ab2f)) + (pin "13" (uuid bba66795-efbb-4157-811b-68cea8efc6d2)) + (pin "14" (uuid 8724db68-5fc4-429a-96b7-03ad05ff6352)) + (pin "15" (uuid 2fb52e7a-f7d1-4a72-abaf-421ec537cc31)) + (pin "16" (uuid 1d122d61-ef5f-4d9a-aa02-4442a449e34d)) + (pin "17" (uuid d4bdc6ff-ca8f-410c-8b1c-660c06a238d6)) + (pin "18" (uuid 65410a8d-1e0c-48ef-b5e3-83134935b40c)) + (pin "19" (uuid 82624a89-d57c-4c00-a7b3-3f3b0167cf12)) + (pin "20" (uuid a06a3e70-98c4-4a7d-94fa-92c7e1261611)) + (pin "21" (uuid 3aa8e6cc-bc15-4594-aea6-428b0c9ba6ef)) + (pin "22" (uuid e4d48490-8c49-4879-b9a5-e4ae37922090)) + (pin "23" (uuid 25235756-131e-4207-b6fe-54d978deaf14)) + (pin "24" (uuid a4cb6969-014c-4a93-89fe-a7566f7c27dd)) + (pin "25" (uuid 574e889d-fa4d-40d8-9b40-a05b99deec61)) + (pin "26" (uuid 21794f30-2073-4cd3-ba66-df3a5ca45e2d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 308.61 120.65 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 10a19120-44d8-4846-b586-520442b666a7) + (property "Reference" "U17" (id 0) (at 308.61 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 308.61 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 309.88 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 309.88 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 01873982-50f8-4e9e-811f-3ffb3971abc4)) + (pin "2" (uuid d90de255-bb54-455e-bfd7-c9dd84d9c9ca)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 365.76 87.63 180) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1a580be5-c7e0-42a5-abb9-ae5db8cf7f1f) + (property "Reference" "U1" (id 0) (at 369.57 86.995 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 369.57 89.535 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 365.76 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 365.76 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 996b416a-d6b7-485d-a945-e40c179ebfa9)) + (pin "2" (uuid 8d9903d3-532f-4e2c-ada9-5d1192618c80)) + (pin "3" (uuid 52c4d9df-8e60-4739-bb93-ed56551d08ba)) + (pin "4" (uuid eb6750e9-a033-4e76-bd0c-cf6d170a66c2)) + (pin "5" (uuid 58c5de43-1f2c-435d-aada-4be39fd640ed)) + (pin "6" (uuid af19b305-196f-45f3-b816-5fbe5cd4eee7)) + (pin "7" (uuid e76a2235-0e62-472d-a9ba-ff5018793388)) + (pin "8" (uuid dce6fe3c-e876-4f97-9062-cf022f149187)) + (pin "9" (uuid 1a17071e-4423-417c-bc82-5283bb0dc4e6)) + (pin "10" (uuid 24e5f3d4-629a-4fbb-b5b6-ef9d36ae6999)) + (pin "11" (uuid 7809a878-c219-488d-a173-c5d90e160ac3)) + (pin "12" (uuid 8b1efdd9-9da8-4d90-b0bb-c592b6a82090)) + (pin "13" (uuid d57b3c42-368c-4691-adc6-e1b1dc81d468)) + (pin "14" (uuid a19a2a13-5b44-4c1f-a308-74a0d0f4f7cf)) + (pin "15" (uuid bf30f4b3-9832-44bb-9e10-baf8ff8b5232)) + (pin "16" (uuid f01d91f3-0622-4a39-8306-f9985c3f6e5e)) + (pin "17" (uuid dbbe6563-4c23-4f2c-8202-86c35540ca7f)) + (pin "18" (uuid 00ec6b83-3516-40a6-8838-428ce71078b7)) + (pin "19" (uuid 20212b8c-79dc-46c7-9cbe-97077c3c2bac)) + (pin "20" (uuid 9b08cc9f-5869-439b-8869-9ac22e409d78)) + (pin "21" (uuid 81ffb98d-41a1-4af9-8c05-86a8034ba6ca)) + (pin "22" (uuid ae677641-e475-4d83-94f9-e28d163abcea)) + (pin "23" (uuid dc182de0-d5bc-4c6e-ba2d-d8cb2c66df10)) + (pin "24" (uuid baef4c73-fead-415e-a5d4-fb1e29230122)) + (pin "25" (uuid 7d4cb6da-363a-4336-8f08-ce057627dbfc)) + (pin "26" (uuid 433354bd-8374-4e41-a88b-2ce3d0d47baf)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 294.64 96.52 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 262437c4-cf1d-4f9b-9fd0-2748bb4d639a) + (property "Reference" "U1" (id 0) (at 295.275 91.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 295.275 93.98 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 294.64 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c039a292-d624-4dda-93ce-13457b499952)) + (pin "2" (uuid 1d77b966-3fd4-4298-aa9c-28a7db42b598)) + (pin "3" (uuid c8e69cba-cd78-43d1-a9fc-d0ce1d62c7c7)) + (pin "4" (uuid c258917a-6577-47f6-8648-1df08ce37576)) + (pin "5" (uuid a43658be-5e18-4bb3-9ec2-e3ae8facc569)) + (pin "6" (uuid e80f086f-b6ad-4078-99a9-8ddbfbaf887b)) + (pin "7" (uuid 38c39da0-1cbf-4b1c-a377-d4bb0a8f3688)) + (pin "8" (uuid 904e08fa-5d2b-4d28-a058-76e9b8932b74)) + (pin "9" (uuid e61b78b1-77b6-4c2b-b31f-29a0d68a4f62)) + (pin "10" (uuid 135fe84d-da3e-4c41-995b-d10fe6c0ebf8)) + (pin "11" (uuid 7f2cf82a-15bd-41f3-b954-243c2cc6c45d)) + (pin "12" (uuid fc96824f-56b4-478d-a52c-f7d624e9d7b3)) + (pin "13" (uuid c3b1fca1-f30a-4710-92b3-d15ca53e74da)) + (pin "14" (uuid 86da8f44-043e-4dd5-ab06-58fc7a74855c)) + (pin "15" (uuid 5cead1b9-a50e-4404-aae2-d9d1139760f9)) + (pin "16" (uuid 081895ce-5681-49dd-a4ef-2b997f2f8fef)) + (pin "17" (uuid 017a31ee-2112-4b9a-8169-c47fc840385f)) + (pin "18" (uuid ec81b3d7-28c4-473d-9430-af87130d1483)) + (pin "19" (uuid 46bb4fe0-77e4-4ff0-bb27-089ea0f67e9f)) + (pin "20" (uuid abc29569-2d88-471e-a283-6dea186d7592)) + (pin "21" (uuid f6409672-9b14-47ee-91d9-b8e2dfe51ada)) + (pin "22" (uuid a2175179-c5a9-4ea2-83bf-b70801e3bf83)) + (pin "23" (uuid 9434ad32-4072-47b3-8060-35bbe658f4d4)) + (pin "24" (uuid cdd8059d-3e79-4d19-89c5-5b41bee64121)) + (pin "25" (uuid 39d59f54-f333-402d-96f1-e584729ae33b)) + (pin "26" (uuid ac7eabec-844c-41a7-9f43-3a082f84a7d2)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 351.79 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 43e66dab-4803-45d9-8568-1526c107e681) + (property "Reference" "U24" (id 0) (at 351.79 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 351.79 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 353.06 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 353.06 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0c1dbc24-a12f-4ea4-9110-75fe2b386ab1)) + (pin "2" (uuid 8a2d387c-9a4e-4b97-b23a-452108f16152)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 365.76 168.91 180) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 46c65110-2721-4d07-8dcb-d875bd108dca) + (property "Reference" "U1" (id 0) (at 369.57 168.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 369.57 170.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 365.76 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 365.76 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8cfee2ff-02e3-4161-af24-d9c092653e92)) + (pin "2" (uuid bb4a94cd-5992-4745-b5ea-59d76b02706b)) + (pin "3" (uuid b868b526-dcfb-4daa-a344-e63f78bfb638)) + (pin "4" (uuid e3932086-6ca1-4a6c-8752-0e955f958274)) + (pin "5" (uuid 172ca7b4-528f-4729-bc01-c4607ceecba0)) + (pin "6" (uuid c609ab3c-d41d-4acb-91fc-3963038798db)) + (pin "7" (uuid 50271f4d-75cb-49f8-ae16-12ba194a0aea)) + (pin "8" (uuid 81ae4b30-60ba-46b1-a62b-67c849554516)) + (pin "9" (uuid a8d43bd3-fb3f-4933-a0f2-e24f9ef4bd3d)) + (pin "10" (uuid 99a2737a-59a8-4fa7-b3de-1c2075f9e1ab)) + (pin "11" (uuid ead087ad-fbe7-4751-85e6-298725007898)) + (pin "12" (uuid 5a7328c0-adea-446b-8426-2d1c91fc1673)) + (pin "13" (uuid 5744d034-5313-46a9-81f7-472533942ae3)) + (pin "14" (uuid 445e1397-baab-4362-bb4b-1fa5c444be4b)) + (pin "15" (uuid 31a17685-d940-4c4a-8257-07820ba1a093)) + (pin "16" (uuid 38c36c2f-7303-4025-a8c8-44004e2335ca)) + (pin "17" (uuid ac1986d7-d169-4d50-86ff-efc5e1551aad)) + (pin "18" (uuid 369bfdd1-9200-4b0a-ba7a-f693ec2cfdb8)) + (pin "19" (uuid 64e40356-7694-4632-a2cc-541d9b2db781)) + (pin "20" (uuid 7117aae6-10a0-466b-a74b-8a85a7497268)) + (pin "21" (uuid f3e6e054-313a-409d-9496-5ac90b81d7a3)) + (pin "22" (uuid c0f2d315-a3b1-4d1c-9dbe-fc48101f1e60)) + (pin "23" (uuid 585f4b7f-a285-4120-bd6b-6d221f6e45b6)) + (pin "24" (uuid 3b0cbec6-c405-4af6-b968-530c28d38868)) + (pin "25" (uuid 217dab5a-add6-4358-a13f-816bbdc893d3)) + (pin "26" (uuid 7ecd89c0-d128-46e5-b232-1b9f5c66dec2)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 332.74 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5080c537-c200-4cf8-90b4-7250099abd02) + (property "Reference" "U20" (id 0) (at 332.74 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 332.74 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 332.74 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 332.74 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3feb48c3-3c7b-436e-8da6-ad79ebad7016)) + (pin "2" (uuid ccaf3bfb-1048-4965-9dbc-91aa00c45208)) + (pin "3" (uuid b243e7d8-a880-474e-ad77-5abae3caa62f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 176.53 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5490004c-e108-40bc-b3e9-94969dd538ed) + (property "Reference" "U6" (id 0) (at 176.53 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 176.53 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 176.53 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 176.53 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1e4db607-7348-45b2-ab07-2ac741eb0975)) + (pin "2" (uuid 8269b6ed-1669-492f-9301-abae7d78a7f3)) + (pin "3" (uuid bf64632e-68ba-4ec4-8aa5-9300c3c8b3a2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 208.28 44.45 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5764161c-7983-4198-85ca-5d19b611ee82) + (property "Reference" "U1" (id 0) (at 212.09 43.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 212.09 46.355 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 208.28 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 208.28 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0c6f4361-aba9-436c-86c3-759f4b0ff37e)) + (pin "2" (uuid 1b04d48f-5ba8-426c-9b5b-d30413d8b648)) + (pin "3" (uuid 37166bb8-6949-416a-b16c-9a2fddd13162)) + (pin "4" (uuid e43d5fba-e872-4ff3-91d3-1e9f4fa14715)) + (pin "5" (uuid 22d827cc-24ea-4721-a3d9-f50b8cde90c8)) + (pin "6" (uuid 337bf5bd-16c5-46e5-a0fd-dde3d9c49673)) + (pin "7" (uuid df14fb41-8a1e-4169-9c29-b4cfb9fa23e4)) + (pin "8" (uuid c42d9fcb-34d5-459c-967c-6ab00346283f)) + (pin "9" (uuid c4ce0465-21e0-430a-8c2e-92c108011ed8)) + (pin "10" (uuid ac8b829b-6519-4d56-aa2a-43ef9582a34d)) + (pin "11" (uuid d77b1fff-327c-4181-901b-ccba892e7c91)) + (pin "12" (uuid b5608f8c-61f8-43aa-a55c-12f988f99905)) + (pin "13" (uuid e86ca9bf-994d-4db6-8110-cfaf8f84df3b)) + (pin "14" (uuid 459123db-36cf-438e-b9f7-96fc9a094da3)) + (pin "15" (uuid e342ba16-0286-4083-bdbf-5455ef87f7be)) + (pin "16" (uuid 3d68b4e1-dee2-44ad-b526-e59debbd0733)) + (pin "17" (uuid a656dac8-9551-4593-8398-5dc4fb0a99a7)) + (pin "18" (uuid b636c707-1703-4a40-b3cf-2dd2f72838b5)) + (pin "19" (uuid f1075bea-a9ed-4dec-89d8-b809dda70d08)) + (pin "20" (uuid 678f84b5-8f29-456e-be35-1ebfd808157c)) + (pin "21" (uuid 21da4461-348d-41f1-a7d5-b275a289eeec)) + (pin "22" (uuid f37260ed-c6ac-4a0d-9732-d6371ae3e491)) + (pin "23" (uuid 911bef37-1819-447d-8cdd-a84d04165419)) + (pin "24" (uuid 4006fb40-50d9-410e-8ac1-4fb1c9a2d2ee)) + (pin "25" (uuid c68dc454-bfa1-406e-b0ae-608ce980cb31)) + (pin "26" (uuid ce30be11-bd96-4072-bc0d-ec74675d8652)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 195.58 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e556485-617f-4c72-ae14-414da2f1e890) + (property "Reference" "U11" (id 0) (at 195.58 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 195.58 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 196.85 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c7ab6290-e9eb-44e7-b1b2-0b302391b374)) + (pin "2" (uuid f179e037-cdf2-4d78-914a-9afc174a8ffa)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 351.79 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6fd4ffd0-a13b-4280-bdbf-3a0394f8a0ab) + (property "Reference" "U25" (id 0) (at 351.79 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 351.79 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 353.06 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 353.06 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 24b7d62b-d54d-436d-952e-03e68bc5a1f7)) + (pin "2" (uuid dde148af-e25d-42d2-958e-e8ae88671177)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 176.53 170.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 756c3652-3284-4ac2-9717-d114c791303d) + (property "Reference" "U9" (id 0) (at 176.53 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 176.53 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 176.53 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 176.53 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ef7516f-7448-4643-8f7d-77f079bf3234)) + (pin "2" (uuid 605255e7-eebd-47b9-9955-c0ec1fcd819d)) + (pin "3" (uuid faa2befa-55e5-40b8-8fbe-2b81956aca85)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 294.64 137.16 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8565be52-0b57-40f1-aafe-5934accea51c) + (property "Reference" "U1" (id 0) (at 295.275 132.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 295.275 134.62 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 294.64 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0a880a31-c1b1-4a1a-80a0-fbea562160a8)) + (pin "2" (uuid 5d609d27-b935-4ae0-8add-b16d5d93674f)) + (pin "3" (uuid b3533fc0-40d8-4be1-94c1-2fb761550218)) + (pin "4" (uuid 13913e6b-67dd-4cee-9ae9-b7ad27e7b0fd)) + (pin "5" (uuid 02f8025d-4fcb-47c3-883c-c626a0be41c6)) + (pin "6" (uuid 8f7f68fc-d16d-4d89-b791-5e9ebe50fe54)) + (pin "7" (uuid b4dff14d-4c87-4914-8fef-4d0488693641)) + (pin "8" (uuid 1e5367ca-12d6-4fb6-894d-dba7e012b946)) + (pin "9" (uuid bf79f515-edef-42fb-9b06-b31eea91dbfd)) + (pin "10" (uuid a14b9f32-5609-4f54-a4f3-37819b3bf7b8)) + (pin "11" (uuid 03f65c9e-067d-4550-bcbd-1a56bc5ce2ee)) + (pin "12" (uuid b33f0979-2261-4acb-8766-8985109d0763)) + (pin "13" (uuid ba29ee85-6969-45a0-8298-1929f626d066)) + (pin "14" (uuid 0d4824d8-80e5-46ab-8c65-03ad6808201a)) + (pin "15" (uuid 04af2352-a8f9-4a2b-a934-cccfdd7b9c2b)) + (pin "16" (uuid 8d372d60-2ed9-4591-adc0-38cdb08bb55a)) + (pin "17" (uuid f738e464-4189-4533-b4a4-40bb4648a8ea)) + (pin "18" (uuid f31c56b0-acbd-486c-b078-0f7e6ac7bfa4)) + (pin "19" (uuid 865d3211-5f88-4b8d-87fb-ba705922567a)) + (pin "20" (uuid 391f79c7-50b9-41d5-b484-f7444ed0bdfb)) + (pin "21" (uuid 2e1c94e0-74bc-4252-971c-76cac21870e9)) + (pin "22" (uuid b354b345-c595-4028-b5f2-9344fbfcd361)) + (pin "23" (uuid 33f9f8f8-6d82-4cf1-a5a2-6b949a8f5c43)) + (pin "24" (uuid 94292e85-3839-4c0d-927c-0ec6ed03a602)) + (pin "25" (uuid bb621be2-22ff-49a5-a8f3-f78b902551b9)) + (pin "26" (uuid 12f65881-4e2e-4b25-b0b7-35f105639c58)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 195.58 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a162929-9385-4fa0-9e37-bd0c5eeba12d) + (property "Reference" "U13" (id 0) (at 195.58 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 195.58 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 196.85 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b3b04c4c-6145-4d68-8067-1161216066d0)) + (pin "2" (uuid 40bb8dca-1f4c-4615-82fe-8690f8478666)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 308.61 80.01 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 9d21d6ca-acb3-4a80-835a-899320c1fb1c) + (property "Reference" "U16" (id 0) (at 308.61 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 308.61 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 309.88 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 309.88 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 27296f09-4620-4556-897e-2678e6c6e073)) + (pin "2" (uuid b5afd137-9a14-4d5a-bc9b-f0d84e9fc781)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 351.79 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e110602-d36e-4c10-9acf-fbd00a87a730) + (property "Reference" "U26" (id 0) (at 351.79 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 351.79 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 353.06 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 353.06 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 409a37f7-f567-461a-a8c2-eb83640a963d)) + (pin "2" (uuid a5877e0f-e38e-43fa-9392-b99ee5072334)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 152.4 80.01 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 9ef273bc-08e6-409c-a6fa-80ed8ce575ee) + (property "Reference" "U3" (id 0) (at 152.4 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 152.4 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 153.67 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c6e8b41d-4b7d-4c2e-ad10-89fd02758ccc)) + (pin "2" (uuid 89592aea-b9cf-4d30-8a6c-1196c875a366)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 87.63 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1ea7823-c84c-40d0-bcd9-f291614477fa) + (property "Reference" "U1" (id 0) (at 213.36 86.995 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 213.36 89.535 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 209.55 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34a15a87-50dc-4110-9f72-23d2630aae73)) + (pin "2" (uuid 9b4d3691-cdfe-437d-8661-d417849a529d)) + (pin "3" (uuid 9cf83566-0037-4ac4-b10a-7f1bf7101f83)) + (pin "4" (uuid fa254a4e-209b-4677-8db9-0bc844d2bede)) + (pin "5" (uuid 77b97a0a-d54a-4aec-9d41-4e8913738091)) + (pin "6" (uuid b305a86b-5045-4969-9aa6-8a82bc3be59f)) + (pin "7" (uuid e72aacb5-609c-4677-87ae-6fc3ec9e2b5b)) + (pin "8" (uuid adb1bf7c-b580-43af-a0f7-25658ea7de9a)) + (pin "9" (uuid 481218ff-58be-4862-bb90-6804a35f913c)) + (pin "10" (uuid e73cd5de-4c54-40d1-afd3-b2eb3a6f4d10)) + (pin "11" (uuid c57bf4b3-40d0-44fa-a4b9-b9fbe52ad2c3)) + (pin "12" (uuid a7fef31e-528b-46ea-a5fa-82f229d0d854)) + (pin "13" (uuid 81ee5191-7779-4d72-b071-fcfee7c31b70)) + (pin "14" (uuid fadd191e-4119-4236-a7d5-f7d7f504c8a7)) + (pin "15" (uuid f7fbfaeb-b54c-4f21-a530-bc4932e7bb7c)) + (pin "16" (uuid 705f0857-f8e0-43f9-9877-80dfb3564b56)) + (pin "17" (uuid e3631af2-3843-427e-ba25-5c2aa9f95c90)) + (pin "18" (uuid 7ff235fe-3e8b-47c5-8514-2cf06d02e5f6)) + (pin "19" (uuid 8881d0d8-459f-4d22-b02d-b6ded8d6fcaa)) + (pin "20" (uuid 63862c22-cecf-4857-889e-b1f34e951532)) + (pin "21" (uuid 9eecf9a7-93f0-41ae-a5f1-77f82e6a4f1a)) + (pin "22" (uuid 4d852684-ae07-4825-9944-aa939af2775b)) + (pin "23" (uuid 55b49f81-a9e5-4873-b23d-68aafe5406cd)) + (pin "24" (uuid 7541c5ba-085c-4685-bcd8-24d5561ff120)) + (pin "25" (uuid 8c3b4637-a9f1-4b7b-bd0f-8c4c29d66207)) + (pin "26" (uuid aad97e1c-97a1-4875-9d65-f3867b06e6a9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 138.43 137.16 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aa5a4e40-aa36-4a4e-80e8-19d4060e41cb) + (property "Reference" "U1" (id 0) (at 139.065 132.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 139.065 134.62 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 138.43 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 138.43 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a1b52339-eb9d-4632-883f-3c53be6f52b9)) + (pin "2" (uuid 76cbaf38-9c2a-4a48-8530-3098e6ecddfa)) + (pin "3" (uuid 5f42c2da-f81c-46b9-ae5b-081465501936)) + (pin "4" (uuid b436a2ae-8063-4375-9ab1-e256f0ae1fa4)) + (pin "5" (uuid 19ef414e-6d7e-4b5e-a571-bdadcc753d09)) + (pin "6" (uuid a2b755a2-ab46-4a6e-8f66-60aa5a67d709)) + (pin "7" (uuid 06171100-9b53-4be8-93d3-3b3b83819587)) + (pin "8" (uuid d79401b4-8676-41cb-bf15-aa66953621f9)) + (pin "9" (uuid af97ea03-23fd-48fb-b161-af21344756c9)) + (pin "10" (uuid 05456440-2b50-4ed4-b55b-9065e5b6f374)) + (pin "11" (uuid d5ddc1ee-3df3-4cb8-8ef6-3dc7aa366a43)) + (pin "12" (uuid bb967549-f4d4-4bf5-858c-3a9448994edf)) + (pin "13" (uuid 00bb988e-7713-4911-8dfe-8c87f16e2f4a)) + (pin "14" (uuid c8e4a22f-1474-4b08-8334-4a6170e63de4)) + (pin "15" (uuid c50935ee-5136-4cea-b77f-4e1b65da1730)) + (pin "16" (uuid a9945d15-4f4a-43e2-9e96-b5434b81477c)) + (pin "17" (uuid d82e4c48-4ebf-4e4c-8bf3-886442181f6e)) + (pin "18" (uuid 8901d732-9164-4406-b3b5-1e6f5ea75bad)) + (pin "19" (uuid f5ded240-6029-4de2-829b-c7a33442be5b)) + (pin "20" (uuid b6bad8bb-d559-4c34-941e-012745dec8e3)) + (pin "21" (uuid 80cdf058-6166-4252-bce7-0e2017b26c7f)) + (pin "22" (uuid 802e37d9-e954-4ff6-9773-f087aa35a9b9)) + (pin "23" (uuid be006da2-21a5-4356-a303-78bd292e0a9b)) + (pin "24" (uuid 399862d3-e2ee-4e40-9789-7472270b614f)) + (pin "25" (uuid b7ce1008-ae57-4b7f-8ad5-068f904d220a)) + (pin "26" (uuid ead08233-6178-4a3e-a867-8e80150640f5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 308.61 161.29 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid aaaaafb7-1247-4714-9d5d-68cd4db5902b) + (property "Reference" "U18" (id 0) (at 308.61 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 308.61 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 309.88 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 309.88 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 41295703-d54e-49f0-87bb-912e09e3eaf0)) + (pin "2" (uuid ba008c0b-1856-4826-be99-a4bdaa6b8bb2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 365.76 44.45 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ae127905-4a0f-4785-b1c5-39b4b6846b92) + (property "Reference" "U1" (id 0) (at 369.57 43.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 369.57 46.355 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 365.76 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 365.76 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d20245f2-56e6-415e-8e31-8cbeaffc9d14)) + (pin "2" (uuid d224d64f-ae98-4fcc-850a-1ed114760180)) + (pin "3" (uuid 52d7be09-9095-4a6a-8e58-482fbbdaea6e)) + (pin "4" (uuid b846e408-b2f8-412d-9962-0a2a75939bdd)) + (pin "5" (uuid 61524e3b-4775-4019-88a1-d94a7757c891)) + (pin "6" (uuid b1115659-c272-42d7-b27c-913397fd1069)) + (pin "7" (uuid be04d5e7-af18-41c7-96cd-631b397f1608)) + (pin "8" (uuid 67502aa2-c861-47b2-aba2-5a08417160c8)) + (pin "9" (uuid 56577c55-7ed0-4729-b86c-786aea67bad4)) + (pin "10" (uuid e5a3ae38-8a8d-4369-b223-c206fa775175)) + (pin "11" (uuid 06057433-df8b-4bf1-a478-9bb4da61b714)) + (pin "12" (uuid dd7ea22d-cb21-4d03-8bd2-ca3af62b3bbc)) + (pin "13" (uuid f9811115-5dd3-45e5-b531-12ada879e767)) + (pin "14" (uuid 34a185b9-ad83-4ec2-8763-e1accd85a81b)) + (pin "15" (uuid 0689db2e-326f-4a77-8738-8862405aa4ce)) + (pin "16" (uuid f6d7175e-bf07-4beb-a067-61a0c2c10817)) + (pin "17" (uuid fc092500-db26-46c6-b30d-c15d8e59cf2c)) + (pin "18" (uuid 73649dfb-67f6-48c5-b580-b3e7cf04c7a1)) + (pin "19" (uuid f74896ba-1f49-45c8-b9ab-7558409bc440)) + (pin "20" (uuid b9d2dbd1-a88b-4fae-bae2-ef2017e60b88)) + (pin "21" (uuid 014bd17d-f222-4c51-b26b-1ec2cc75780f)) + (pin "22" (uuid d7e7638e-868a-4e15-b5fc-97ec40a7fdfa)) + (pin "23" (uuid 4c259ad0-ca2a-4db8-8c58-4410f08bb8ce)) + (pin "24" (uuid 939a3b6c-43ef-4530-a4ee-7c4ab64fdab4)) + (pin "25" (uuid 7e32b01e-fafa-4172-96d1-392ca17598fb)) + (pin "26" (uuid 397579cf-7d32-4936-86ca-74ce82923a3d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 332.74 170.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b45b8a72-abc8-4cd1-aeb7-8d92302de30f) + (property "Reference" "U22" (id 0) (at 332.74 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 332.74 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 332.74 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 332.74 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 858d620c-7038-4202-8f54-5f0096d4b9a0)) + (pin "2" (uuid 498b5f8a-6056-4180-8235-9ef6a4480c77)) + (pin "3" (uuid 6984cd8c-53f0-405b-bc2e-165bc090533a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 308.61 36.83 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid bd7fdb8b-0839-430f-8399-337a5ed57578) + (property "Reference" "U15" (id 0) (at 308.61 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 308.61 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 309.88 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 309.88 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 67e8b86b-30ea-478d-b118-1381ec463f5a)) + (pin "2" (uuid a8532dca-a7c6-4950-99c6-4160eec46550)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 195.58 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c3562ad9-031d-4f9e-9bb8-26a7e79f0b6e) + (property "Reference" "U12" (id 0) (at 195.58 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 195.58 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 196.85 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d4da2f24-edef-4b54-94a1-e690c4671b75)) + (pin "2" (uuid b97fe5e6-df05-4505-afa8-4b1f19ccc81e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 139.7 177.8 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8793768-3d4e-441b-921b-e461ab2fd57d) + (property "Reference" "U1" (id 0) (at 140.335 172.72 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 140.335 175.26 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 139.7 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6db96e2a-8336-4f34-b14b-7b1ecbe8fdd6)) + (pin "2" (uuid afc49e30-24f5-4c31-be2d-185eea2b5164)) + (pin "3" (uuid c71bdd86-e179-4194-bdfb-406f3977938a)) + (pin "4" (uuid 941b36fd-f266-49a4-b771-52f3ecc0d2cc)) + (pin "5" (uuid 99cb81a5-2e5d-4608-a4cf-3e29d8b59786)) + (pin "6" (uuid 067a3580-2d46-4430-be8f-d1b2199a4213)) + (pin "7" (uuid 2a40b329-8187-4f8c-9227-32c7d7e97f6c)) + (pin "8" (uuid 00fc8204-22ad-4691-bea9-9f5960531333)) + (pin "9" (uuid 54769a02-00a6-496e-9075-b5adb435686a)) + (pin "10" (uuid 217d3ff4-564e-4bf2-bd01-20cdb65e6705)) + (pin "11" (uuid 90489409-1e99-4f10-bc46-73b10be62170)) + (pin "12" (uuid 35e0c854-c755-426f-b432-c4683fdc2ba1)) + (pin "13" (uuid 26d0b905-cca1-45bc-bfcf-c4a54b80a5e8)) + (pin "14" (uuid 87e88880-512b-4c46-a3df-57e2350bc2ee)) + (pin "15" (uuid 5fa7c888-f615-422b-b7d2-4fec99383f54)) + (pin "16" (uuid 26b7faf7-061e-4ab9-8098-507a44b04a11)) + (pin "17" (uuid 134a89a9-8d9e-4b76-8fd8-d2a961dbe0e9)) + (pin "18" (uuid 07db97e3-a843-4cc8-9127-7e90da8a0bd1)) + (pin "19" (uuid 98f5fa91-a0ca-44ea-b339-33c11bc9063c)) + (pin "20" (uuid f130c974-91b4-4db8-9fe0-8abdf93082c8)) + (pin "21" (uuid fc45c8de-b545-434d-90a9-42918ace0d5b)) + (pin "22" (uuid 96943927-042d-46fb-a6cf-d2a42b019e74)) + (pin "23" (uuid 08b0c445-319b-4991-afad-bd5044a78749)) + (pin "24" (uuid 8d480ef3-3148-4585-9719-3add49c57a78)) + (pin "25" (uuid 62e9a4e5-abe6-4868-a153-9d302b7279c5)) + (pin "26" (uuid b42bd96f-5f95-4928-ba14-79d7f104d0bc)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 365.76 128.27 180) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c97a9aba-c81a-417c-9f4d-b6cb44535258) + (property "Reference" "U1" (id 0) (at 369.57 127.635 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 369.57 130.175 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 365.76 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 365.76 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b4642fba-52b9-4613-b912-70cc5e37dd7d)) + (pin "2" (uuid 025ca77a-2a9a-4d7b-9f73-aafcad470d0f)) + (pin "3" (uuid 2842ccca-a2c1-4ac4-a57e-8445691d0a94)) + (pin "4" (uuid 4fb79c9e-5b0d-4571-9bee-841f54545ad3)) + (pin "5" (uuid 4789d817-3173-4dff-95a5-0c2af23c5c81)) + (pin "6" (uuid 673df012-241f-491e-8b18-449bb5c3c0f6)) + (pin "7" (uuid e7402c2f-bf80-402b-b452-d6896a446f76)) + (pin "8" (uuid e18d150b-6698-4c89-bed8-fe381205afa1)) + (pin "9" (uuid 0be8c128-c3da-4a5e-a239-466ff049a726)) + (pin "10" (uuid 9d43ff8d-886e-4fc6-86db-90f2fd6f50e4)) + (pin "11" (uuid ac207242-295f-4939-8e1f-4317c0a482ae)) + (pin "12" (uuid c1a367bf-eaec-4ace-847c-30081f577e95)) + (pin "13" (uuid fff503d5-83d1-47f0-b407-17dd94280557)) + (pin "14" (uuid e5f56b4a-21b4-4214-957f-21983ef82b13)) + (pin "15" (uuid 62b1cca1-3bf8-439c-80fd-ee7ab141fd7d)) + (pin "16" (uuid bf1e53ff-0cc6-4174-87e1-27ffa1f9860c)) + (pin "17" (uuid b8b0b8a8-f754-47a2-b118-cfc15c1c0197)) + (pin "18" (uuid f16de11e-7b28-435b-9d6f-7557dcb1135e)) + (pin "19" (uuid 0bf2712b-d5c7-4b9c-a815-752cb4c2938b)) + (pin "20" (uuid f92d994c-82e2-4737-a009-2b32d19d9365)) + (pin "21" (uuid 5d725364-efa5-41ee-bcb0-f2784184f81f)) + (pin "22" (uuid 6dd14bab-fa00-497f-b435-f92fef9077af)) + (pin "23" (uuid 65ecf8d8-29a0-4e40-bfb2-f727858678c0)) + (pin "24" (uuid 922d405c-44f3-4213-81d8-e5c7bd7807d1)) + (pin "25" (uuid 649ccc2c-3628-485d-8031-b2fc11b8e4ce)) + (pin "26" (uuid 6f248198-49c5-447f-8917-cf95a32fbeeb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 332.74 129.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cca88f58-bef8-4f07-8d4f-ecf6a70cfd2c) + (property "Reference" "U21" (id 0) (at 332.74 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 332.74 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 332.74 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 332.74 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fd3c370c-e59e-46bb-b65c-5efd02713699)) + (pin "2" (uuid 978e14ab-bd47-4d98-954f-e7ece325ebf0)) + (pin "3" (uuid ca649658-fdbd-46d7-9fd3-d9d2336345c8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 176.53 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cd02ae5b-de4a-4a47-9fb4-dc65c8970c6b) + (property "Reference" "U7" (id 0) (at 176.53 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 176.53 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 176.53 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 176.53 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 70fd7c59-f436-4843-a95c-223ff20bc465)) + (pin "2" (uuid fb4dbc2b-1406-4394-93e9-f3a4fcacfd29)) + (pin "3" (uuid f4bd4b73-1c3a-41b9-bd74-292e09548775)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 294.64 177.8 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ced7670d-38b0-4bb3-864c-6ce1bea9c0b1) + (property "Reference" "U1" (id 0) (at 295.275 172.72 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 295.275 175.26 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 294.64 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2067e250-ad91-4aae-9fbd-9033ce94e137)) + (pin "2" (uuid d5305193-7d00-4272-abbb-d4961b77a8c1)) + (pin "3" (uuid 14f09580-fa7b-47d3-9699-57b94840b8ec)) + (pin "4" (uuid 627ad296-785d-4f97-ab7f-9cfb5176ab73)) + (pin "5" (uuid 69b21085-3450-40a6-a151-ca7ee021477d)) + (pin "6" (uuid 444dc837-1e49-4cbc-84b1-22ddd57b9729)) + (pin "7" (uuid a5c10229-92f0-4754-9588-877438af0519)) + (pin "8" (uuid 9cce5c35-0b98-4191-a8a5-ea9a603a86cf)) + (pin "9" (uuid cb420913-5b06-448b-8390-ddb19ca51810)) + (pin "10" (uuid 8d8d697b-6520-43a7-8a5a-37ad55d89e04)) + (pin "11" (uuid 26f9eca3-5201-4083-abe1-6ae5a992d705)) + (pin "12" (uuid a401b4f2-ab72-4ce0-a054-2343251cf894)) + (pin "13" (uuid 75a9cee2-bace-4078-9200-b4ef6fcb2925)) + (pin "14" (uuid 3dc05fdf-fd30-433a-86dc-b3f6568a24c5)) + (pin "15" (uuid f9b0a032-2d6b-4fac-864a-86ec66f95c56)) + (pin "16" (uuid 0975d822-d251-4dbe-93fe-aa9b28791080)) + (pin "17" (uuid 1f8e9a39-9ab4-433b-b663-87b394bdcaa1)) + (pin "18" (uuid 8f6e0606-b87d-483b-9837-dbe255201881)) + (pin "19" (uuid 0e42ca75-5cea-4a1a-89a0-8dc888974bf2)) + (pin "20" (uuid cdad5bf4-f0ab-4d73-b061-39948e275d7c)) + (pin "21" (uuid 1ae4564b-4035-4d2d-bf0b-0095e085f751)) + (pin "22" (uuid 2fe4cf21-b5d4-4924-ae07-571b217e23bd)) + (pin "23" (uuid 4d0db319-a335-4417-8e3f-92abdc130f21)) + (pin "24" (uuid e7cd5291-b6f9-4f5e-bdd3-74527b9027df)) + (pin "25" (uuid fb3f4fa0-f8c3-4065-80a2-4f1fed268271)) + (pin "26" (uuid c2b236c8-bcbe-47f5-8549-eb4cf390bb60)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 242.57 35.56 0) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3b1b43f-ce9f-42a8-90fd-109302f2768b) + (property "Reference" "U1" (id 0) (at 243.205 30.48 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 243.205 33.02 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 242.57 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 242.57 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e624b1de-5d21-4352-86e0-3f71981e110c)) + (pin "2" (uuid fa8aff37-ffe7-42b2-a3b7-2537a663b487)) + (pin "3" (uuid 14a6ba1d-a726-4c0f-a1b2-656065e5b9b4)) + (pin "4" (uuid 5c16800d-4c10-4ae1-9298-e6078d6202ff)) + (pin "5" (uuid e58eefe5-3480-495f-8d50-7a86444c84d0)) + (pin "6" (uuid 9ae9ed48-bb7d-44bb-af61-13cf00255004)) + (pin "7" (uuid cf1491a8-5d90-4821-831c-0159b54c3f3a)) + (pin "8" (uuid 53d98906-a5c1-4900-b432-fd259b8dc3c7)) + (pin "9" (uuid 2d44f3bf-d6f6-4543-8d47-754524950be0)) + (pin "10" (uuid a48821fb-9ca8-4f79-9e22-4e81388c2a83)) + (pin "11" (uuid 8586179d-89bd-42b9-a9f9-4e6f1306bbed)) + (pin "12" (uuid 69a3b1b0-1ec9-422f-bab7-be4a3413b4ac)) + (pin "13" (uuid 3453e104-ec00-413f-9e72-71afff691416)) + (pin "14" (uuid 88f62b2a-d0de-42f2-8e35-566625bd9ecd)) + (pin "15" (uuid 49f2a287-f773-4a19-9085-e32f9eacfffe)) + (pin "16" (uuid f68fdfdb-a53c-40bc-89c0-da610eec1f9b)) + (pin "17" (uuid c4e427d1-d9a2-4dda-bb10-ca6012da0e91)) + (pin "18" (uuid b39a194f-d9ee-407f-9f13-7cdce60c8a16)) + (pin "19" (uuid a9bf0e91-a84e-4a76-bf26-f727e18dd071)) + (pin "20" (uuid 52073073-33d3-4edf-9d51-049e483f8846)) + (pin "21" (uuid 47c8aa5f-2be5-4cc8-aeb7-9eadd2e6055a)) + (pin "22" (uuid 5fd7d3d0-5e8f-4e37-bdfc-512437b14238)) + (pin "23" (uuid 2f3276ed-302b-4ffa-8bd6-a9366007c987)) + (pin "24" (uuid 7ee70ce3-3923-4f4e-b668-b95563803018)) + (pin "25" (uuid fd437f0d-0e5a-48c3-be05-2bfc05f69cf1)) + (pin "26" (uuid 994ef7d9-3996-4a95-ab7c-e5c1933ff6ab)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 128.27 180) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d8efecc7-eb8b-44b8-9a7d-fdfa5e045e7c) + (property "Reference" "U1" (id 0) (at 213.36 127.635 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 213.36 130.175 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 209.55 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 842af7da-02a1-4060-a837-886abff941e9)) + (pin "2" (uuid 54bda274-e41b-43a1-81b8-b0d451f7ec78)) + (pin "3" (uuid f548a9a5-50e9-449f-b2c0-41e1c0c90a35)) + (pin "4" (uuid 32c66ec4-24fe-4c4c-939d-49ceac08727d)) + (pin "5" (uuid 5faaeb0a-b9a5-4b9b-a18a-edd38e459cb4)) + (pin "6" (uuid 77ec16d9-63ed-4902-b15a-1161bd3bbe8c)) + (pin "7" (uuid 5ade2ae1-7d6a-4d51-933f-d7a771c76033)) + (pin "8" (uuid 4fb8b78f-04e2-4158-b7eb-394756369aff)) + (pin "9" (uuid da02e1f1-c4a7-4186-8f0c-a2d9e6c548fe)) + (pin "10" (uuid 7257ab3b-8acc-4231-89fc-26627e541ee6)) + (pin "11" (uuid 8e3f3dd8-8334-4137-88cd-47ba565395bf)) + (pin "12" (uuid 7fa7fa37-63ca-4448-98bd-60f5ba76a3e6)) + (pin "13" (uuid 8d3649ec-08dd-4135-8b66-2c2d98ca0014)) + (pin "14" (uuid 16f6798d-ac30-4863-a6e4-74f62c909730)) + (pin "15" (uuid d9c5be26-0bfd-4b02-8506-2164187334d7)) + (pin "16" (uuid a2235587-6945-452d-95b3-bb94b6fea86a)) + (pin "17" (uuid 7174ab0b-9f4d-4e2c-aa35-4d9dff08af75)) + (pin "18" (uuid 639ec5b6-b3b7-488c-9653-9f1b9507f557)) + (pin "19" (uuid f397cb9d-a3d8-4c70-8ecf-1797adf43615)) + (pin "20" (uuid 83f4a21d-ecf4-49fd-a85e-41c13a91b0ea)) + (pin "21" (uuid 547e1601-0fde-44cd-ba62-47c807f2d93f)) + (pin "22" (uuid 07e21c4f-efc2-4f29-8f56-7fe98145faac)) + (pin "23" (uuid 1d412163-504c-4119-9bb5-65cd6d0fed76)) + (pin "24" (uuid 4ab22db5-6a5f-4f31-9d61-e19fc6cfcee2)) + (pin "25" (uuid b0b47e05-6204-4322-b7e2-e56ecaa47716)) + (pin "26" (uuid 9e4f7b51-6b3b-46a3-83a5-b57c569354f1)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 332.74 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e09541d7-d741-4b3a-8d96-7f4fdc7aef2c) + (property "Reference" "U19" (id 0) (at 332.74 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 332.74 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 332.74 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 332.74 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7cb52e49-d29c-4eb2-9fdd-7783d09a90c8)) + (pin "2" (uuid fdf9bdc4-cf31-4514-809f-12e0f7485607)) + (pin "3" (uuid b6dec664-c71a-4d22-b3fc-336e048bf6d1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 152.4 36.83 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid e9ed53bb-0362-4b5a-8e4a-c98524fa56ba) + (property "Reference" "U2" (id 0) (at 152.4 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 152.4 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 153.67 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0707f9fe-1fbf-40a8-9424-0cf1cfb647af)) + (pin "2" (uuid bc5efc05-82f2-47b4-a5ea-c1207f69e0db)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 294.64 53.34 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eb6db7b6-e967-4694-ad24-8430f4d677ae) + (property "Reference" "U1" (id 0) (at 295.275 48.26 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 295.275 50.8 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 294.64 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fc7a585-8fe0-4fa3-b957-48dc68f5bca9)) + (pin "2" (uuid 73ed8b60-52f4-4d27-a49c-0602221a7860)) + (pin "3" (uuid 1eea8caf-18f0-445e-b350-072bcc17297c)) + (pin "4" (uuid 8fb059a0-867c-43f6-9af1-284fd70d40db)) + (pin "5" (uuid f28396bc-16b6-40b4-8afb-edf2dd1329a5)) + (pin "6" (uuid 958db5f1-0b8f-47cd-83f8-0f0c61cdb1c9)) + (pin "7" (uuid c858d61d-8a28-43e0-861a-117ee12213bf)) + (pin "8" (uuid d58a4303-13d2-452f-b539-7e009ac8312d)) + (pin "9" (uuid cd0ec6f9-180b-4474-97f5-e3bb2f9bb571)) + (pin "10" (uuid be77ce12-f53c-41dc-92e6-34fae13f4738)) + (pin "11" (uuid 2b1d7ce3-1fcc-4ae6-bc7a-02b1dbfcff5b)) + (pin "12" (uuid 21d6bae1-3c25-4cab-bc79-1e42d6e7f402)) + (pin "13" (uuid 66e6cf55-2c71-402f-bb74-b45566125caa)) + (pin "14" (uuid 34170b18-3a8a-48b5-97ba-e469b9b8a195)) + (pin "15" (uuid f2f0d7be-d4a7-4ab1-890d-8a2f9588ff52)) + (pin "16" (uuid f84ce0e5-6802-491f-9508-16201cba5286)) + (pin "17" (uuid 120678b8-a909-4e54-b7d9-45d94f37755f)) + (pin "18" (uuid b774bb71-3276-42fa-b30f-6a23465c03d3)) + (pin "19" (uuid b69c4eab-e38c-41ec-b683-962f1ff4fa4e)) + (pin "20" (uuid cedbb89c-784f-4ef0-90ae-b1b553aa8968)) + (pin "21" (uuid 62a6a05e-8eb2-42f3-bd67-8617b9c9fe5e)) + (pin "22" (uuid ebb96301-de1b-404d-979e-9d5bc9b77b0b)) + (pin "23" (uuid 8b351545-eeb2-401a-9b02-e4bad7305c66)) + (pin "24" (uuid b496407f-6cc8-4066-b863-fdfca9582b3c)) + (pin "25" (uuid 356e7cae-b233-41ce-ac88-454fb0e28796)) + (pin "26" (uuid 9a97c662-1ee4-479b-9ef7-520552795c3a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 69.85 36.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f1f3474e-2ebb-4bbd-9928-2f85079e5f80) + (property "Reference" "U1" (id 0) (at 70.485 31.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 70.485 34.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 69.85 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c8521613-81dd-4601-924a-2264bee342c2)) + (pin "2" (uuid a8880f40-2e4e-44e5-a08c-b61f22eb357d)) + (pin "3" (uuid c425ccc1-1483-4393-b31b-ff360202f297)) + (pin "4" (uuid cf020c21-6bcc-4f1d-87a8-b0b9557cf234)) + (pin "5" (uuid 3519d221-19a7-41a0-8841-525502afee57)) + (pin "6" (uuid ff59cfc8-5b16-41c4-8744-a6dcc3d9835d)) + (pin "7" (uuid e75e93e3-f4f6-4bf0-9d9f-60bbbc6da958)) + (pin "8" (uuid 0126d628-2c56-40e1-a383-3d828b30390d)) + (pin "9" (uuid c194be0f-e5b1-4772-8d9c-a46162418513)) + (pin "10" (uuid b58c4492-9642-4c9d-824b-a77e4fb75ee7)) + (pin "11" (uuid 08b7afb9-4823-4056-9fcc-a5a436319ae8)) + (pin "12" (uuid 974bddca-037e-4aa4-9be3-cf7ef8ab74f3)) + (pin "13" (uuid 58765932-8d98-46d5-9685-b0b4e9ed95ae)) + (pin "14" (uuid 31ea79ed-5ef2-4a66-b889-c919cd838e5c)) + (pin "15" (uuid 3fee157c-f8db-48d6-9d66-30cd43c2ab2b)) + (pin "16" (uuid ee1c4365-8397-41f9-a199-f37038419b9e)) + (pin "17" (uuid 75e6dbea-05c2-49f4-9670-db3de8a84511)) + (pin "18" (uuid 97a1c7ee-65c0-433c-8586-d5a3e0befac5)) + (pin "19" (uuid c9042c57-6694-41cd-b1ae-8800ef7738fd)) + (pin "20" (uuid 02f25168-72e8-4ca1-b277-4c1a36a31bc9)) + (pin "21" (uuid 403eb798-becc-4447-9fa2-0b9a6c7ab0c9)) + (pin "22" (uuid c9c64272-bb00-4a3f-aa4b-a0c6b3b34d5a)) + (pin "23" (uuid 446d9190-1a71-4f47-b76f-5df0ba341862)) + (pin "24" (uuid c832f959-2997-4148-959c-b5d411098d33)) + (pin "25" (uuid d9df983e-5127-45b2-b658-336953e81c08)) + (pin "26" (uuid 86f174e1-7f72-4c79-bcd5-3fd6c4c81126)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 168.91 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f2d0291e-c3f5-41db-9014-53db65a2a422) + (property "Reference" "U1" (id 0) (at 213.36 168.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 213.36 170.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 209.55 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4e569837-f9d2-4926-9873-ad90e566f483)) + (pin "2" (uuid 17a974a6-2496-49aa-84f9-602644400df2)) + (pin "3" (uuid 4c95ec20-ed95-46e0-97db-7f45a6fb37e9)) + (pin "4" (uuid 1d86b0ca-df3a-4c63-9368-e0a698fece0d)) + (pin "5" (uuid 287648b3-90d7-4751-b641-88b90f948563)) + (pin "6" (uuid bbb5e4ce-7557-4dfe-b9d3-f21923a2308f)) + (pin "7" (uuid c4e85b96-70f4-4507-8b13-caff04472a19)) + (pin "8" (uuid 1a35e981-941b-459d-a338-ccf85a8c2890)) + (pin "9" (uuid ed72fb87-69be-463f-8123-b12ab8ec1b99)) + (pin "10" (uuid 562d75ac-270a-415c-a522-6942aabaeeb1)) + (pin "11" (uuid c5637615-9cf7-4955-99f6-d7addf52bf1c)) + (pin "12" (uuid 2d490611-e95f-4026-a7d1-17b7cd77f861)) + (pin "13" (uuid 39a9fbbf-724d-4523-844b-5f8f8957e78d)) + (pin "14" (uuid 1a984e7e-cd02-4494-855c-7ab09f9a9928)) + (pin "15" (uuid dadb5d73-46b6-4c4f-bdbd-600284a4e208)) + (pin "16" (uuid d968568c-4658-4a38-b31e-b38f836c5143)) + (pin "17" (uuid 4a359441-5452-44af-92fb-e44f13cc161d)) + (pin "18" (uuid 8d02f0be-5637-4384-ac98-334e89f33a44)) + (pin "19" (uuid 6beff936-9d4c-4f63-be6a-7c5653636234)) + (pin "20" (uuid 476fcf1c-fe1c-4fe0-95d0-f170ddcd3675)) + (pin "21" (uuid 6bbb5477-9ddb-4b34-82b8-8a7fe53c8eb9)) + (pin "22" (uuid ec2d1e59-4518-4d04-a434-3d2dd1f7adf5)) + (pin "23" (uuid c2006521-5931-4191-879d-68a9efa7fe9f)) + (pin "24" (uuid c5e0f6fe-33c5-46c2-946a-0ff537febc45)) + (pin "25" (uuid 9051365e-ff56-405e-b0cf-72f9de103488)) + (pin "26" (uuid e9b3a6eb-3f99-45c8-9856-0e222ca35e13)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 152.4 120.65 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f389ce90-c14a-41d8-99a6-d2cb441e19ba) + (property "Reference" "U4" (id 0) (at 152.4 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 152.4 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 153.67 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 28d2bd53-26c7-48c1-9879-486d1253d501)) + (pin "2" (uuid 86395f0e-11f4-42d8-9e0a-058a503254ad)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 195.58 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f43517af-93a4-49ef-9e34-0ac63efc5ce2) + (property "Reference" "U10" (id 0) (at 195.58 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 195.58 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 196.85 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 495ce674-8191-475e-a17f-252dd406b902)) + (pin "2" (uuid 9b9d5084-84b3-433e-80e6-80eb61f1da92)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/f1f3474e-2ebb-4bbd-9928-2f85079e5f80" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/0fd602fb-9df3-4101-bc87-ed551412f0e2" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/068622ce-85f9-491f-80b2-e31ee5478881" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/aa5a4e40-aa36-4a4e-80e8-19d4060e41cb" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/c8793768-3d4e-441b-921b-e461ab2fd57d" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/5764161c-7983-4198-85ca-5d19b611ee82" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/a1ea7823-c84c-40d0-bcd9-f291614477fa" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/d8efecc7-eb8b-44b8-9a7d-fdfa5e045e7c" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/f2d0291e-c3f5-41db-9014-53db65a2a422" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/eb6db7b6-e967-4694-ad24-8430f4d677ae" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/262437c4-cf1d-4f9b-9fd0-2748bb4d639a" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/8565be52-0b57-40f1-aafe-5934accea51c" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/ced7670d-38b0-4bb3-864c-6ce1bea9c0b1" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/ae127905-4a0f-4785-b1c5-39b4b6846b92" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/1a580be5-c7e0-42a5-abb9-ae5db8cf7f1f" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/c97a9aba-c81a-417c-9f4d-b6cb44535258" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/46c65110-2721-4d07-8dcb-d875bd108dca" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/d3b1b43f-ce9f-42a8-90fd-109302f2768b" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/e9ed53bb-0362-4b5a-8e4a-c98524fa56ba" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9ef273bc-08e6-409c-a6fa-80ed8ce575ee" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f389ce90-c14a-41d8-99a6-d2cb441e19ba" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0415eda0-b250-4433-aec4-cf466d25371f" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5490004c-e108-40bc-b3e9-94969dd538ed" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/cd02ae5b-de4a-4a47-9fb4-dc65c8970c6b" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/09bd7625-f323-4b49-ab9b-610794d1c14f" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/756c3652-3284-4ac2-9717-d114c791303d" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/f43517af-93a4-49ef-9e34-0ac63efc5ce2" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/6e556485-617f-4c72-ae14-414da2f1e890" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c3562ad9-031d-4f9e-9bb8-26a7e79f0b6e" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9a162929-9385-4fa0-9e37-bd0c5eeba12d" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bd7fdb8b-0839-430f-8399-337a5ed57578" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9d21d6ca-acb3-4a80-835a-899320c1fb1c" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/10a19120-44d8-4846-b586-520442b666a7" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/aaaaafb7-1247-4714-9d5d-68cd4db5902b" + (reference "U18") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e09541d7-d741-4b3a-8d96-7f4fdc7aef2c" + (reference "U19") (unit 1) (value "d_and") (footprint "") + ) + (path "/5080c537-c200-4cf8-90b4-7250099abd02" + (reference "U20") (unit 1) (value "d_and") (footprint "") + ) + (path "/cca88f58-bef8-4f07-8d4f-ecf6a70cfd2c" + (reference "U21") (unit 1) (value "d_and") (footprint "") + ) + (path "/b45b8a72-abc8-4cd1-aeb7-8d92302de30f" + (reference "U22") (unit 1) (value "d_and") (footprint "") + ) + (path "/0974954d-c5a5-4d33-a818-cdbfc5f7cf14" + (reference "U23") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/43e66dab-4803-45d9-8568-1526c107e681" + (reference "U24") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/6fd4ffd0-a13b-4280-bdbf-3a0394f8a0ab" + (reference "U25") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9e110602-d36e-4c10-9acf-fbd00a87a730" + (reference "U26") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/74LS240/LS240_subckt.proj b/library/SubcircuitLibrary/74LS240/LS240_subckt.proj new file mode 100644 index 000000000..6d216d160 --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/LS240_subckt.proj @@ -0,0 +1 @@ +schematicFile LS240_subckt.kicad_sch diff --git a/library/SubcircuitLibrary/74LS240/LS240_subckt.sub b/library/SubcircuitLibrary/74LS240/LS240_subckt.sub new file mode 100644 index 000000000..0cc5c80cd --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/LS240_subckt.sub @@ -0,0 +1,102 @@ +* Subcircuit LS240_subckt +.subckt LS240_subckt oe1 a1 a2 a3 a4 y1 y2 y3 y4 a5 a6 a7 a8 y5 y6 y7 y8 oe2 +.title kicad schematic +* u16 oe2 net-_u16-pad2_ d_inverter +* u15 oe2 net-_u15-pad2_ d_inverter +* u17 oe2 net-_u17-pad2_ d_inverter +* u5 oe1 net-_u5-pad2_ d_inverter +* u11 net-_u11-pad1_ y2 d_inverter +* u4 oe1 net-_u4-pad2_ d_inverter +* u9 net-_u5-pad2_ a4 net-_u13-pad1_ d_and +* u13 net-_u13-pad1_ y4 d_inverter +* u8 net-_u4-pad2_ a3 net-_u12-pad1_ d_and +* u12 net-_u12-pad1_ y3 d_inverter +* u2 oe1 net-_u2-pad2_ d_inverter +* u3 oe1 net-_u3-pad2_ d_inverter +* u7 net-_u3-pad2_ a2 net-_u11-pad1_ d_and +* u6 net-_u2-pad2_ a1 net-_u10-pad1_ d_and +* u10 net-_u10-pad1_ y1 d_inverter +* u25 net-_u21-pad3_ y7 d_inverter +* u21 net-_u17-pad2_ a7 net-_u21-pad3_ d_and +* u26 net-_u22-pad3_ y8 d_inverter +* u22 net-_u18-pad2_ a8 net-_u22-pad3_ d_and +* u18 oe2 net-_u18-pad2_ d_inverter +* u24 net-_u20-pad3_ y6 d_inverter +* u20 net-_u16-pad2_ a6 net-_u20-pad3_ d_and +* u23 net-_u19-pad3_ y5 d_inverter +* u19 net-_u15-pad2_ a5 net-_u19-pad3_ d_and +a1 oe2 net-_u16-pad2_ u16 +a2 oe2 net-_u15-pad2_ u15 +a3 oe2 net-_u17-pad2_ u17 +a4 oe1 net-_u5-pad2_ u5 +a5 net-_u11-pad1_ y2 u11 +a6 oe1 net-_u4-pad2_ u4 +a7 [net-_u5-pad2_ a4 ] net-_u13-pad1_ u9 +a8 net-_u13-pad1_ y4 u13 +a9 [net-_u4-pad2_ a3 ] net-_u12-pad1_ u8 +a10 net-_u12-pad1_ y3 u12 +a11 oe1 net-_u2-pad2_ u2 +a12 oe1 net-_u3-pad2_ u3 +a13 [net-_u3-pad2_ a2 ] net-_u11-pad1_ u7 +a14 [net-_u2-pad2_ a1 ] net-_u10-pad1_ u6 +a15 net-_u10-pad1_ y1 u10 +a16 net-_u21-pad3_ y7 u25 +a17 [net-_u17-pad2_ a7 ] net-_u21-pad3_ u21 +a18 net-_u22-pad3_ y8 u26 +a19 [net-_u18-pad2_ a8 ] net-_u22-pad3_ u22 +a20 oe2 net-_u18-pad2_ u18 +a21 net-_u20-pad3_ y6 u24 +a22 [net-_u16-pad2_ a6 ] net-_u20-pad3_ u20 +a23 net-_u19-pad3_ y5 u23 +a24 [net-_u15-pad2_ a5 ] net-_u19-pad3_ u19 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u26 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends LS240_subckt \ No newline at end of file diff --git a/library/SubcircuitLibrary/74LS240/Test_LS240.cir b/library/SubcircuitLibrary/74LS240/Test_LS240.cir new file mode 100644 index 000000000..09731af52 --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/Test_LS240.cir @@ -0,0 +1,31 @@ +.title KiCad schematic +v10 A5 GND pulse +v5 A4 GND pulse +U9 A5 Net-_U9-Pad2_ adc_bridge_1 +U4 A6 Net-_U4-Pad2_ adc_bridge_1 +U3 A4 Net-_U3-Pad2_ adc_bridge_1 +v8 A8 GND pulse +v6 A6 GND pulse +v7 A7 GND pulse +U5 A7 Net-_U5-Pad2_ adc_bridge_1 +U6 A8 Net-_U6-Pad2_ adc_bridge_1 +X1 Net-_U10-Pad2_ Net-_U8-Pad2_ Net-_U1-Pad2_ Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U13-Pad1_ Net-_U14-Pad1_ Net-_U15-Pad1_ Net-_U11-Pad1_ Net-_U9-Pad2_ Net-_U4-Pad2_ Net-_U5-Pad2_ Net-_U6-Pad2_ Net-_U12-Pad1_ Net-_U16-Pad1_ Net-_U17-Pad1_ Net-_U18-Pad1_ Net-_U7-Pad2_ LS240 +v1 OE2 GND pulse +v2 OE1 GND pulse +v4 A3 GND pulse +v3 A2 GND pulse +v9 A1 GND pulse +U8 A1 Net-_U8-Pad2_ adc_bridge_1 +U10 OE1 Net-_U10-Pad2_ adc_bridge_1 +U7 OE2 Net-_U7-Pad2_ adc_bridge_1 +U2 A3 Net-_U2-Pad2_ adc_bridge_1 +U1 A2 Net-_U1-Pad2_ adc_bridge_1 +U18 Net-_U18-Pad1_ Y8 dac_bridge_1 +U17 Net-_U17-Pad1_ Y7 dac_bridge_1 +U16 Net-_U16-Pad1_ Y6 dac_bridge_1 +U12 Net-_U12-Pad1_ Y5 dac_bridge_1 +U15 Net-_U15-Pad1_ Y3 dac_bridge_1 +U11 Net-_U11-Pad1_ Y4 dac_bridge_1 +U13 Net-_U13-Pad1_ Y1 dac_bridge_1 +U14 Net-_U14-Pad1_ Y2 dac_bridge_1 +.end diff --git a/library/SubcircuitLibrary/74LS240/Test_LS240.cir.out b/library/SubcircuitLibrary/74LS240/Test_LS240.cir.out new file mode 100644 index 000000000..3e8cc01df --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/Test_LS240.cir.out @@ -0,0 +1,95 @@ +.title kicad schematic + +.include LS240_subckt.sub +v10 a5 gnd pulse(0 5 0 1n 1n 10m 20m) +v5 a4 gnd pulse(0 5 0 1n 1n 10m 20m) +* u9 a5 net-_u9-pad2_ adc_bridge_1 +* u4 a6 net-_u4-pad2_ adc_bridge_1 +* u3 a4 net-_u3-pad2_ adc_bridge_1 +v8 a8 gnd pulse(0 5 0 1n 1n 10m 20m) +v6 a6 gnd pulse(0 5 0 1n 1n 10m 20m) +v7 a7 gnd pulse(0 5 0 1n 1n 10m 20m) +* u5 a7 net-_u5-pad2_ adc_bridge_1 +* u6 a8 net-_u6-pad2_ adc_bridge_1 +x1 net-_u10-pad2_ net-_u8-pad2_ net-_u1-pad2_ net-_u2-pad2_ net-_u3-pad2_ net-_u13-pad1_ net-_u14-pad1_ net-_u15-pad1_ net-_u11-pad1_ net-_u9-pad2_ net-_u4-pad2_ net-_u5-pad2_ net-_u6-pad2_ net-_u12-pad1_ net-_u16-pad1_ net-_u17-pad1_ net-_u18-pad1_ net-_u7-pad2_ LS240_subckt +v1 oe2 gnd pulse(0 5 0 1n 1n 40m 80m) +v2 oe1 gnd pulse(0 5 0 1n 1n 40m 80m) +v4 a3 gnd pulse(0 5 0 1n 1n 10m 20m) +v3 a2 gnd pulse(0 5 0 1n 1n 10m 20m) +v9 a1 gnd pulse(0 5 0 1n 1n 10m 20m) +* u8 a1 net-_u8-pad2_ adc_bridge_1 +* u10 oe1 net-_u10-pad2_ adc_bridge_1 +* u7 oe2 net-_u7-pad2_ adc_bridge_1 +* u2 a3 net-_u2-pad2_ adc_bridge_1 +* u1 a2 net-_u1-pad2_ adc_bridge_1 +* u18 net-_u18-pad1_ y8 dac_bridge_1 +* u17 net-_u17-pad1_ y7 dac_bridge_1 +* u16 net-_u16-pad1_ y6 dac_bridge_1 +* u12 net-_u12-pad1_ y5 dac_bridge_1 +* u15 net-_u15-pad1_ y3 dac_bridge_1 +* u11 net-_u11-pad1_ y4 dac_bridge_1 +* u13 net-_u13-pad1_ y1 dac_bridge_1 +* u14 net-_u14-pad1_ y2 dac_bridge_1 +a1 [a5 ] [net-_u9-pad2_ ] u9 +a2 [a6 ] [net-_u4-pad2_ ] u4 +a3 [a4 ] [net-_u3-pad2_ ] u3 +a4 [a7 ] [net-_u5-pad2_ ] u5 +a5 [a8 ] [net-_u6-pad2_ ] u6 +a6 [a1 ] [net-_u8-pad2_ ] u8 +a7 [oe1 ] [net-_u10-pad2_ ] u10 +a8 [oe2 ] [net-_u7-pad2_ ] u7 +a9 [a3 ] [net-_u2-pad2_ ] u2 +a10 [a2 ] [net-_u1-pad2_ ] u1 +a11 [net-_u18-pad1_ ] [y8 ] u18 +a12 [net-_u17-pad1_ ] [y7 ] u17 +a13 [net-_u16-pad1_ ] [y6 ] u16 +a14 [net-_u12-pad1_ ] [y5 ] u12 +a15 [net-_u15-pad1_ ] [y3 ] u15 +a16 [net-_u11-pad1_ ] [y4 ] u11 +a17 [net-_u13-pad1_ ] [y1 ] u13 +a18 [net-_u14-pad1_ ] [y2 ] u14 +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u9 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u6 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u10 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u7 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u18 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u17 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u16 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u12 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u15 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u11 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u13 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u14 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0.1e-03 160e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/74LS240/Test_LS240.kicad_sch b/library/SubcircuitLibrary/74LS240/Test_LS240.kicad_sch new file mode 100644 index 000000000..1118aef46 --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/Test_LS240.kicad_sch @@ -0,0 +1,1486 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid e1450bc1-5e9a-400b-85d3-680721e293fa) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:LS240" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -10.16 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "LS240" (id 1) (at 0 -12.7 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "LS240_0_1" + (rectangle (start -7.62 -1.27) (end 7.62 -22.86) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "LS240_1_1" + (pin input line (at -2.54 1.27 270) (length 2.54) + (name "OE1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -13.97 0) (length 2.54) + (name "A5" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -16.51 0) (length 2.54) + (name "A6" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -19.05 0) (length 2.54) + (name "A7" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -21.59 0) (length 2.54) + (name "A8" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -13.97 180) (length 2.54) + (name "Y5" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -16.51 180) (length 2.54) + (name "Y6" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -19.05 180) (length 2.54) + (name "Y7" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -21.59 180) (length 2.54) + (name "Y8" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 3.81 1.27 270) (length 2.54) + (name "OE2" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -3.81 0) (length 2.54) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -6.35 0) (length 2.54) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -8.89 0) (length 2.54) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -11.43 0) (length 2.54) + (name "A4" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -3.81 180) (length 2.54) + (name "Y1" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -6.35 180) (length 2.54) + (name "Y2" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -8.89 180) (length 2.54) + (name "Y3" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -11.43 180) (length 2.54) + (name "Y4" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (wire (pts (xy 289.56 181.61) (xy 245.11 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07d32afa-5d32-44c2-91d3-c08ddca77b8a) + ) + (wire (pts (xy 289.56 166.37) (xy 289.56 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 083316a8-d4a2-474f-8377-99c3fc161263) + ) + (wire (pts (xy 227.33 168.91) (xy 227.33 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a572ade-5ec0-49c1-a79a-c36695a02995) + ) + (wire (pts (xy 387.35 125.73) (xy 406.4 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a4c710a-39c7-4c31-a5da-b264c395c95e) + ) + (wire (pts (xy 313.69 146.05) (xy 358.14 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d658892-a8eb-44a9-a43e-a560e14903b4) + ) + (wire (pts (xy 309.88 166.37) (xy 309.88 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25c8cdbd-37c0-4661-acb5-50b14d61b8b5) + ) + (wire (pts (xy 289.56 184.15) (xy 251.46 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 266a740f-34a7-499a-95be-f0f9d1a8f030) + ) + (wire (pts (xy 387.35 146.05) (xy 406.4 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2993273c-18b6-4e1c-8e63-566e9b1b0139) + ) + (wire (pts (xy 358.14 171.45) (xy 358.14 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 299ff7f7-184c-4a6d-a2a3-cfabdf8e4178) + ) + (wire (pts (xy 227.33 255.27) (xy 240.03 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 305edcc3-863d-4692-a31c-0df7b023a65d) + ) + (wire (pts (xy 289.56 179.07) (xy 240.03 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34c4cc52-2ec4-4cb8-a586-194ac2035898) + ) + (wire (pts (xy 356.87 173.99) (xy 356.87 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3778c3b9-2daa-45d8-b3a5-30ea9c8ffc51) + ) + (wire (pts (xy 245.11 280.67) (xy 227.33 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f7ae50f-965a-46d7-8516-ef0548cb52b3) + ) + (wire (pts (xy 309.88 176.53) (xy 350.52 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c7e639b-bdae-46ec-bdd3-a6b9b4abddc7) + ) + (wire (pts (xy 228.6 128.27) (xy 289.56 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ec6a7cd-e593-4c0d-8365-30b9b13af3b2) + ) + (wire (pts (xy 313.69 168.91) (xy 313.69 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ed21a56-74fd-444f-8154-7448bce170a0) + ) + (wire (pts (xy 350.52 176.53) (xy 350.52 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54ccdd3c-60ee-4164-b302-5b276be20436) + ) + (wire (pts (xy 245.11 181.61) (xy 245.11 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 610765ec-fff6-4a98-a120-c5c07ba5a084) + ) + (wire (pts (xy 198.12 154.94) (xy 177.8 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68d98d37-f07a-4c04-8bae-212c90b207dd) + ) + (wire (pts (xy 332.74 276.86) (xy 358.14 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bc19768-6371-4889-b596-4f85bb5cf2fc) + ) + (wire (pts (xy 234.95 176.53) (xy 234.95 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7174e09b-1656-41a3-b252-8223bcaeb928) + ) + (wire (pts (xy 138.43 102.87) (xy 199.39 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75a51870-1c85-40ea-8c69-3e3cad8452dd) + ) + (wire (pts (xy 198.12 203.2) (xy 177.8 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7efda1ab-ccd8-4627-8a9a-460e97db5856) + ) + (wire (pts (xy 231.14 203.2) (xy 227.33 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f32e464-5910-43b5-b2f2-9a190dc84687) + ) + (wire (pts (xy 309.88 125.73) (xy 358.14 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80299c22-e64d-442d-ab55-fcdcb6a26de4) + ) + (wire (pts (xy 386.08 193.04) (xy 405.13 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 805c3d35-71bb-451a-8952-f8ac3db55a48) + ) + (wire (pts (xy 289.56 173.99) (xy 231.14 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84b2b7bb-7d36-4091-b8b4-28cbee76e396) + ) + (wire (pts (xy 198.12 255.27) (xy 177.8 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8656f0d9-16e6-4ed8-8e30-b09ab53b5561) + ) + (wire (pts (xy 309.88 184.15) (xy 332.74 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86ac863e-596c-426c-bd31-aafe67fc8b7c) + ) + (wire (pts (xy 387.35 276.86) (xy 406.4 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87bc2615-bb5f-4a5e-b8a3-6ed85baa5b3a) + ) + (wire (pts (xy 344.17 233.68) (xy 358.14 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a3329d8-ba69-4729-8091-824fdf7f9c87) + ) + (wire (pts (xy 332.74 184.15) (xy 332.74 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d8fc70e-4a49-4765-a468-7988064108fa) + ) + (wire (pts (xy 387.35 170.18) (xy 406.4 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dabfe75-6b2e-4a5b-bdbc-29c0931ba5ab) + ) + (wire (pts (xy 199.39 128.27) (xy 179.07 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 912f5d9f-441d-422a-860c-1d082919f1bb) + ) + (wire (pts (xy 344.17 179.07) (xy 344.17 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94d12574-b04b-4490-968e-e715c34ef940) + ) + (wire (pts (xy 309.88 171.45) (xy 358.14 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 950ca106-10c8-4981-a4dd-163fca34b435) + ) + (wire (pts (xy 297.18 161.29) (xy 297.18 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9683d6c9-5706-4bf0-a95f-1cc7a4a3e96d) + ) + (wire (pts (xy 199.39 228.6) (xy 179.07 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96938a66-78c5-4036-a67f-967737f33fec) + ) + (wire (pts (xy 289.56 176.53) (xy 234.95 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e0c8e78-f85c-414c-882a-c994bb859ae5) + ) + (wire (pts (xy 387.35 233.68) (xy 406.4 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e201abc-31e1-4c7c-84e0-f14458981fd3) + ) + (wire (pts (xy 289.56 168.91) (xy 227.33 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af91af2b-571f-4aec-bf80-04a5b0613666) + ) + (wire (pts (xy 387.35 256.54) (xy 406.4 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0fb6158-d89c-40f7-a9b0-cd5f4a1c3da6) + ) + (wire (pts (xy 350.52 213.36) (xy 356.87 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbb5682b-027f-4792-9595-3c785542a66b) + ) + (wire (pts (xy 339.09 256.54) (xy 358.14 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be71f9ae-4739-4318-bdb9-0eab5ae2b9cb) + ) + (wire (pts (xy 309.88 181.61) (xy 339.09 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c12967d9-5788-44c5-8f36-6e3eb855bb18) + ) + (wire (pts (xy 240.03 179.07) (xy 240.03 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8ba560a-45fd-4b10-be34-0b36d1edff98) + ) + (wire (pts (xy 303.53 102.87) (xy 228.6 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca6f0760-7253-4635-b766-fedc40637ea7) + ) + (wire (pts (xy 198.12 311.15) (xy 177.8 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2944235-8ffd-44b5-b382-3b410f680672) + ) + (wire (pts (xy 251.46 311.15) (xy 227.33 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4fc2628-b24e-4d5e-807c-13e83aeb5d3a) + ) + (wire (pts (xy 139.7 78.74) (xy 200.66 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d595563c-fc98-49dd-9e51-3fc82b892f9f) + ) + (wire (pts (xy 309.88 173.99) (xy 356.87 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9c4975d-9a64-45f3-9539-a8644915c199) + ) + (wire (pts (xy 198.12 179.07) (xy 177.8 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da764bcf-888f-41fa-a0dd-e580191a5367) + ) + (wire (pts (xy 234.95 228.6) (xy 228.6 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dba8c3f6-556e-4a3b-b1e8-c033e173bd58) + ) + (wire (pts (xy 198.12 280.67) (xy 177.8 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3deb21f-86bb-4f35-a711-306d254cf0f9) + ) + (wire (pts (xy 227.33 171.45) (xy 227.33 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e54a53ff-3a58-454e-9dc3-7d4754b1cdce) + ) + (wire (pts (xy 251.46 184.15) (xy 251.46 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec8926f4-126b-47d6-9e12-2c00a09cb981) + ) + (wire (pts (xy 231.14 173.99) (xy 231.14 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed02a616-2ccd-4b0c-9095-4437613bd6dc) + ) + (wire (pts (xy 289.56 171.45) (xy 227.33 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0b5c13f-08ef-46b7-b367-d68834708de1) + ) + (wire (pts (xy 297.18 78.74) (xy 229.87 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1746de0-2058-4099-950a-1209cf573d2d) + ) + (wire (pts (xy 339.09 181.61) (xy 339.09 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5cf83e5-91f7-46cd-af83-7aaef8a7f3cc) + ) + (wire (pts (xy 309.88 179.07) (xy 344.17 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5eb62f3-8620-49ba-97a2-1f66dfa50df3) + ) + (wire (pts (xy 303.53 161.29) (xy 303.53 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f60655e5-f58c-41ee-b16d-ccc6c33b021a) + ) + (wire (pts (xy 309.88 168.91) (xy 313.69 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe23e2e1-e71b-4c79-a4bd-3aaae8ee2b04) + ) + (wire (pts (xy 386.08 213.36) (xy 405.13 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffc2472d-f774-443a-bc1d-f696fb0168fc) + ) + + (global_label "Y6" (shape output) (at 406.4 233.68 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 12444c56-1f13-4d5d-bd3f-b38a65ddaf65) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 411.1112 233.6006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y1" (shape output) (at 406.4 125.73 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 156a60b1-4add-4d5c-9a3e-78880614a7d6) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 411.1112 125.6506 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A6" (shape input) (at 185.42 255.27 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2fd99acc-612d-4ddf-a17c-1f9df4fc8da8) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 185.3406 250.5588 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "OE2" (shape input) (at 143.51 102.87 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 33b3fd78-021c-4599-84c8-4584d131103a) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 143.4306 96.7679 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y7" (shape output) (at 406.4 256.54 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 406aab4e-cc4b-4726-83a9-8883e41667fc) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 411.1112 256.4606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y2" (shape output) (at 406.4 146.05 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6759e49e-ef45-43dc-aee2-14854b3782ad) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 411.1112 145.9706 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A8" (shape input) (at 186.69 311.15 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 686cc33e-a17f-4337-9904-bbef340b49bd) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 186.6106 306.4388 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y4" (shape output) (at 405.13 193.04 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6eb2f9c0-9480-4268-af16-c9f35f3bb009) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 409.8412 192.9606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "OE1" (shape input) (at 144.78 78.74 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7742fd9f-015e-4bd9-864b-55d4b16df27d) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 144.7006 72.6379 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y5" (shape output) (at 405.13 213.36 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 774f107f-f854-4d6f-8051-3d9a1b034056) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 409.8412 213.2806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A7" (shape input) (at 186.69 280.67 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 9c77b66d-6f8d-41bc-9c14-369432b89dc8) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 186.6106 275.9588 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 184.15 154.94 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 9e08ed26-8376-460c-815b-9bc33df69682) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 184.0706 150.2288 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A3" (shape input) (at 187.96 179.07 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b0014437-1606-4ca0-a784-0fb6e2028208) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 187.8806 174.3588 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y3" (shape output) (at 406.4 170.18 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d1ef0f2d-e96c-4c62-97b9-b5d262c39348) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 411.1112 170.1006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A5" (shape input) (at 186.69 228.6 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d99a9325-7e73-48d6-92b5-9f619fdf45cf) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 186.6106 223.8888 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 185.42 128.27 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid dfa1f755-59e0-4fd1-8238-52343056cc4f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 185.3406 123.5588 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y8" (shape output) (at 406.4 276.86 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ef84e57a-371f-4c06-a951-d881494cc7e6) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 411.1112 276.7806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape input) (at 186.69 203.2 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f2674a26-900b-4f0a-aa7e-fbc5bcc2a155) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 186.6106 198.4888 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Subckt:LS240") (at 299.72 162.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 01c7644c-138a-4f22-a672-fd4b0fd9de68) + (property "Reference" "X1" (id 0) (at 299.72 187.96 0)) + (property "Value" "LS240" (id 1) (at 299.72 190.5 0)) + (property "Footprint" "" (id 2) (at 299.72 162.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 299.72 162.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 299b9478-9907-46c3-8b71-7e8a62196e30)) + (pin "10" (uuid 7557ffe3-8383-49f7-98d8-0ad3c6922e48)) + (pin "11" (uuid 8d253eb8-9773-4f4d-90eb-5a79a636478f)) + (pin "12" (uuid 6ddcefa1-9b97-4d4e-ba52-c59ddc68cac7)) + (pin "13" (uuid 766b97b8-3f87-4bfb-8dec-228fa825641e)) + (pin "14" (uuid 81514c95-8f48-400c-a43e-53493f3af5e4)) + (pin "15" (uuid f3459608-27fd-4b8d-bf64-169c123f5c42)) + (pin "16" (uuid f7e86812-0294-4ba7-ac92-8ecffd9b1161)) + (pin "17" (uuid 9b1bfc2a-a859-4a69-a3dc-4e6d44ea9053)) + (pin "18" (uuid 73aba5c1-e42c-4312-84c2-a5ea32ad3701)) + (pin "2" (uuid 05e80c4e-a8be-411d-b22e-627bebf56567)) + (pin "3" (uuid 6f12217e-402e-4fef-b4a5-d8ca2650dba5)) + (pin "4" (uuid 7a26c9d1-262d-4311-8f62-4eac8489cdf4)) + (pin "5" (uuid 23dc6f64-67f5-4d0b-89eb-e929f6511e73)) + (pin "6" (uuid 66d4398f-d492-4666-8896-5b739b1c527a)) + (pin "7" (uuid b05130ba-5c3b-41d7-8d73-d0bec7ba3c1f)) + (pin "8" (uuid 3a303181-9840-4604-b3a1-3f57774935ee)) + (pin "9" (uuid 68a0d37f-47d2-44a4-85f4-30d1bc2b2c37)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 373.38 257.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 039f9687-9905-44b6-a727-1b1a19674b2c) + (property "Reference" "U17" (id 0) (at 372.745 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 372.745 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 373.38 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 373.38 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6d408166-c3c6-4d02-a219-b7e5a99f0aff)) + (pin "2" (uuid 09de51ab-d249-4373-9221-4cfa7e258f04)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 213.36 204.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06bf0bd1-fab9-4232-a7c0-72b8b5cce61a) + (property "Reference" "U3" (id 0) (at 212.725 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 212.725 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 111dc9fb-93d8-4d1d-8211-f167b51ccfe2)) + (pin "2" (uuid 1604cb47-fdfb-42fe-834f-2aa0131a1033)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 166.37 179.07 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0d593d1b-48ba-4393-a958-92504cbad1e4) + (property "Reference" "v4" (id 0) (at 166.37 167.64 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 166.37 170.18 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 166.37 173.99 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7a4749f1-60c7-497b-8c10-496d0af3c979)) + (pin "2" (uuid 0c8f0ec6-e378-4009-8e00-1bd11700df06)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 167.64 128.27 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 19474b1f-2744-4b72-8795-944511e53db1) + (property "Reference" "v9" (id 0) (at 167.64 116.84 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 167.64 119.38 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 167.64 123.19 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c20371c6-2e9b-4afc-8886-6a64a1dc854a)) + (pin "2" (uuid 141b80f4-2dc6-488f-8468-20710eb34dd5)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 154.94 280.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b4cf1ed-436b-4cfd-9e88-52949c5132f1) + (property "Reference" "#PWR0104" (id 0) (at 154.94 287.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 154.94 285.75 0)) + (property "Footprint" "" (id 2) (at 154.94 280.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 154.94 280.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c25fe368-f3b6-453b-b925-ddde111ddbb6)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 166.37 311.15 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 21b2f002-06c6-4cb4-9c0b-bef5b8adbbe3) + (property "Reference" "v8" (id 0) (at 166.37 299.72 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 166.37 302.26 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 166.37 306.07 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid faf6a735-d440-403c-8807-bb40504b2714)) + (pin "2" (uuid 984e91e4-abcc-4180-a864-cd50804f4994)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 167.64 228.6 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 22bcc034-b379-4e28-8d3c-c87fee8342da) + (property "Reference" "v10" (id 0) (at 167.64 217.17 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 167.64 219.71 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 167.64 223.52 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ebdeea60-9349-4214-a7f5-949a0bd42513)) + (pin "2" (uuid 3ac99da2-0390-4950-ba8c-2bfaec1de17a)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 213.36 256.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2603bbed-1d9a-4db2-8954-adc3d256d337) + (property "Reference" "U4" (id 0) (at 212.725 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 212.725 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 256.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 256.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 083b9077-b494-420a-8ad9-8662754a3565)) + (pin "2" (uuid e850f9e6-5a1b-4bbc-9920-3657eba0d61f)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 373.38 234.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26eef653-72b1-47da-9d26-556163cdbad4) + (property "Reference" "U16" (id 0) (at 372.745 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 372.745 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 373.38 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 373.38 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 983e85ae-2653-4ce6-a9d9-583f46688781)) + (pin "2" (uuid 058327fc-3a31-48f0-a2a7-b0c86721f253)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 213.36 281.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2b342e16-1b10-4954-92e4-ae3ec0482ee9) + (property "Reference" "U5" (id 0) (at 212.725 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 212.725 275.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f8be9c5f-8f12-4205-987a-591da82c0564)) + (pin "2" (uuid 78742e82-8b13-4d7b-9e34-b095ff65c7b5)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 154.94 179.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e0890c8-b1a8-4ca9-8add-d0819b801dc0) + (property "Reference" "#PWR0107" (id 0) (at 154.94 185.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 154.94 184.15 0)) + (property "Footprint" "" (id 2) (at 154.94 179.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 154.94 179.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7e083083-d799-41b8-bdcb-9a683f9f7af0)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 215.9 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 300dfb04-136c-4452-86f9-11e336558251) + (property "Reference" "U10" (id 0) (at 215.265 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 215.265 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 215.9 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 215.9 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 637dcc95-5393-4a3e-b6d4-311a3ff7b77e)) + (pin "2" (uuid 0a17a255-5928-4f38-96c7-447feb2c1f3d)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 214.63 104.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3036334d-15ae-498d-9a91-045b66aaa66e) + (property "Reference" "U7" (id 0) (at 213.995 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 213.995 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 214.63 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 256b2050-fcff-43de-a390-b94cc49a6999)) + (pin "2" (uuid 48623ad8-36c1-431a-852f-1b8ec7b69656)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 166.37 203.2 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 4ab1f2dc-c630-4a99-a8d0-fd20fa731a27) + (property "Reference" "v5" (id 0) (at 166.37 191.77 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 166.37 194.31 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 166.37 198.12 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3fe3ced8-ae84-4794-9c5e-a2b3e7669aab)) + (pin "2" (uuid 4026b29e-1c7e-4255-8810-885916b98296)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 116.84 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d67e549-4f69-4a22-af30-e8f68c4a4704) + (property "Reference" "#PWR0108" (id 0) (at 116.84 85.09 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 116.84 83.82 0)) + (property "Footprint" "" (id 2) (at 116.84 78.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 116.84 78.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9ad84f9c-b753-4caf-a7fd-c3c5e771e24f)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 156.21 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 75b17b5a-a4ae-447c-8781-160674fc01f3) + (property "Reference" "#PWR0110" (id 0) (at 156.21 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 156.21 133.35 0)) + (property "Footprint" "" (id 2) (at 156.21 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 156.21 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d106b5b5-82d9-4155-8204-d26166eaba19)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 213.36 156.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 763726b4-28e9-4a8a-b2fd-dd50d04ef63f) + (property "Reference" "U1" (id 0) (at 212.725 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 212.725 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a0d24915-2e45-4248-9246-08c7f6ce7a62)) + (pin "2" (uuid 0894de9b-3dc2-447c-b985-ff7429c9a542)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 214.63 129.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7b43dd55-abfa-492e-969a-dad7951d388e) + (property "Reference" "U8" (id 0) (at 213.995 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 213.995 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 214.63 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 93920441-b796-4820-bb79-b9600beab1f7)) + (pin "2" (uuid a35ce710-aa0e-47c4-a6da-c3108e589999)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 373.38 171.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b39c29a-f1b6-4aac-b2aa-7c5460af5da1) + (property "Reference" "U15" (id 0) (at 372.745 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 372.745 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 373.38 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 373.38 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ceb90b2e-dfa0-4d7e-8d67-6ca1a5b1c683)) + (pin "2" (uuid 9537ac3b-8457-4294-9450-5b39a21e9b5e)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 154.94 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f13fa9e-e4d3-4715-9cd1-4dfe5c31e3c6) + (property "Reference" "#PWR0106" (id 0) (at 154.94 161.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 154.94 160.02 0)) + (property "Footprint" "" (id 2) (at 154.94 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 154.94 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 21b6bf1f-147c-4e71-b30a-f323af016ee4)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 154.94 203.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9035cd55-b6d6-4695-837c-b4c217bf958f) + (property "Reference" "#PWR0102" (id 0) (at 154.94 209.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 154.94 208.28 0)) + (property "Footprint" "" (id 2) (at 154.94 203.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 154.94 203.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7488db58-4cf2-4903-a8c8-cfd30a9f2480)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 154.94 311.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 95ab7c7b-6bf0-4e01-a348-55052fe9eff8) + (property "Reference" "#PWR0103" (id 0) (at 154.94 317.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 154.94 316.23 0)) + (property "Footprint" "" (id 2) (at 154.94 311.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 154.94 311.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 633555ff-268a-44a5-b874-a2f85cf7be9f)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 372.11 194.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a078058-8b0d-4139-ae07-49a9198de0a4) + (property "Reference" "U11" (id 0) (at 371.475 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 371.475 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 372.11 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 372.11 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f37a769a-b5ed-4594-9820-9d1ee59dd5b6)) + (pin "2" (uuid 0219d66a-36de-4381-954c-c6affb80ebe8)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 128.27 78.74 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a175e28e-408c-4819-9f35-42a14f06c550) + (property "Reference" "v2" (id 0) (at 128.27 66.04 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 128.27 69.85 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 128.27 73.66 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 224d4598-6148-42c7-b735-5bf77f7e02a7)) + (pin "2" (uuid 69028f8e-b47f-4c63-a969-3ab109df6024)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 373.38 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7d52f6c-14c1-425c-a8dd-2a02bd4ce180) + (property "Reference" "U14" (id 0) (at 372.745 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 372.745 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 373.38 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 373.38 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cc077796-f8f9-4ccc-ac97-9a314dd1258e)) + (pin "2" (uuid dbd0a348-9e6d-4b3b-8e89-17a6bc8c83b1)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 166.37 255.27 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid a87a64d1-8614-4052-b7a5-7bcbe1db51b2) + (property "Reference" "v6" (id 0) (at 166.37 243.84 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 166.37 246.38 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 166.37 250.19 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c5021097-fcb6-48f1-81ea-c1e0523856c8)) + (pin "2" (uuid 4e3d9ea2-59d5-47c6-9e0d-aac710af0a61)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 156.21 228.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b13e8083-d8e8-4d46-b6a3-080bf980b9e7) + (property "Reference" "#PWR0101" (id 0) (at 156.21 234.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 156.21 233.68 0)) + (property "Footprint" "" (id 2) (at 156.21 228.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 156.21 228.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d6b122a9-3431-4862-9c89-c8e81f1b4dca)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 213.36 180.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc43f597-0872-47f8-8c28-321b1d4fcc32) + (property "Reference" "U2" (id 0) (at 212.725 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 212.725 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ed94e28-06fb-4418-9ef7-b18cb0072165)) + (pin "2" (uuid e8117ede-1d9f-4032-afad-d8dffd6278da)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 166.37 154.94 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid d4c0d2a9-5a0d-4bcb-8bb8-8e521e60de96) + (property "Reference" "v3" (id 0) (at 166.37 143.51 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 166.37 146.05 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 166.37 149.86 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 81ba3a03-5302-4aa0-a490-7905235bab05)) + (pin "2" (uuid 75b7715a-8416-4f58-b1e9-4403d88b5c15)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 214.63 229.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db6799c9-2b04-4999-9e74-20f26a9b40e9) + (property "Reference" "U9" (id 0) (at 213.995 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 213.995 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 214.63 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c844127a-7ce2-42af-91d5-f3dfdf97406c)) + (pin "2" (uuid 98977952-7ab6-4333-ac29-06ba94778856)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 154.94 255.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e629d74a-00d7-4538-b312-a840956a0ca1) + (property "Reference" "#PWR0105" (id 0) (at 154.94 261.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 154.94 260.35 0)) + (property "Footprint" "" (id 2) (at 154.94 255.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 154.94 255.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 14e55992-90e8-4df5-a7c7-1baf876148a3)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 127 102.87 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e667f2b3-11f6-4f17-bce0-852c58cf34a5) + (property "Reference" "v1" (id 0) (at 127 90.17 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 127 93.98 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 127 97.79 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 127 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7c9f7524-0ad0-436e-8597-3cca0861d496)) + (pin "2" (uuid 6499a36d-c9cc-4f00-8295-c5a6fb6af366)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 373.38 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ebe0bc9b-9588-4727-8c01-336176581582) + (property "Reference" "U13" (id 0) (at 372.745 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 372.745 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 373.38 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 373.38 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e5a4603-b20c-44d5-8806-a983a38dae3a)) + (pin "2" (uuid f111d068-33f9-4182-b0aa-e633a92993a0)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 115.57 102.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid edd67e37-1e64-4d6f-b295-3d2ce046d03d) + (property "Reference" "#PWR0109" (id 0) (at 115.57 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 115.57 107.95 0)) + (property "Footprint" "" (id 2) (at 115.57 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 115.57 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8b3800bf-2893-43a9-bd48-96e498fe3e4b)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 372.11 214.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f2b122d8-8714-40ec-b9e8-066a39290f15) + (property "Reference" "U12" (id 0) (at 371.475 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 371.475 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 372.11 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 372.11 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 55f67b71-ed53-4ba0-959c-f2474b24668a)) + (pin "2" (uuid a6fd99de-a0c9-4166-8dcb-f693d74aafd0)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 213.36 312.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f3492f3d-9d2e-4d49-85d7-49d2511a20ee) + (property "Reference" "U6" (id 0) (at 212.725 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 212.725 306.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 312.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 312.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a45bf0e7-3c99-44b7-b751-381403c2d433)) + (pin "2" (uuid ae9251f0-a5c0-4e38-8142-d94fedacb96c)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 166.37 280.67 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid f85951dc-a7ff-4c28-af4d-84f4e966d5a5) + (property "Reference" "v7" (id 0) (at 166.37 269.24 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 166.37 271.78 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 166.37 275.59 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e5ad1f7-d929-440b-8980-0d5332ca1f90)) + (pin "2" (uuid 12aee1a9-27f3-4c90-9ef0-e53552c294c3)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 373.38 278.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9b01bcf-5c8b-4704-8e41-46517606bbd9) + (property "Reference" "U18" (id 0) (at 372.745 267.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 372.745 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 373.38 278.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 373.38 278.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 78327bba-e708-4370-9b25-8bdeff35714a)) + (pin "2" (uuid e2de47fa-c4cb-44b2-8b55-7f2d57d791a4)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/b13e8083-d8e8-4d46-b6a3-080bf980b9e7" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/9035cd55-b6d6-4695-837c-b4c217bf958f" + (reference "#PWR0102") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/95ab7c7b-6bf0-4e01-a348-55052fe9eff8" + (reference "#PWR0103") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/1b4cf1ed-436b-4cfd-9e88-52949c5132f1" + (reference "#PWR0104") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/e629d74a-00d7-4538-b312-a840956a0ca1" + (reference "#PWR0105") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/8f13fa9e-e4d3-4715-9cd1-4dfe5c31e3c6" + (reference "#PWR0106") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/2e0890c8-b1a8-4ca9-8add-d0819b801dc0" + (reference "#PWR0107") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/5d67e549-4f69-4a22-af30-e8f68c4a4704" + (reference "#PWR0108") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/edd67e37-1e64-4d6f-b295-3d2ce046d03d" + (reference "#PWR0109") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/75b17b5a-a4ae-447c-8781-160674fc01f3" + (reference "#PWR0110") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/763726b4-28e9-4a8a-b2fd-dd50d04ef63f" + (reference "U1") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/bc43f597-0872-47f8-8c28-321b1d4fcc32" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/06bf0bd1-fab9-4232-a7c0-72b8b5cce61a" + (reference "U3") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/2603bbed-1d9a-4db2-8954-adc3d256d337" + (reference "U4") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/2b342e16-1b10-4954-92e4-ae3ec0482ee9" + (reference "U5") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/f3492f3d-9d2e-4d49-85d7-49d2511a20ee" + (reference "U6") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/3036334d-15ae-498d-9a91-045b66aaa66e" + (reference "U7") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/7b43dd55-abfa-492e-969a-dad7951d388e" + (reference "U8") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/db6799c9-2b04-4999-9e74-20f26a9b40e9" + (reference "U9") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/300dfb04-136c-4452-86f9-11e336558251" + (reference "U10") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/9a078058-8b0d-4139-ae07-49a9198de0a4" + (reference "U11") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/f2b122d8-8714-40ec-b9e8-066a39290f15" + (reference "U12") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/ebe0bc9b-9588-4727-8c01-336176581582" + (reference "U13") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/a7d52f6c-14c1-425c-a8dd-2a02bd4ce180" + (reference "U14") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/8b39c29a-f1b6-4aac-b2aa-7c5460af5da1" + (reference "U15") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/26eef653-72b1-47da-9d26-556163cdbad4" + (reference "U16") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/039f9687-9905-44b6-a727-1b1a19674b2c" + (reference "U17") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/f9b01bcf-5c8b-4704-8e41-46517606bbd9" + (reference "U18") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/01c7644c-138a-4f22-a672-fd4b0fd9de68" + (reference "X1") (unit 1) (value "LS240") (footprint "") + ) + (path "/e667f2b3-11f6-4f17-bce0-852c58cf34a5" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/a175e28e-408c-4819-9f35-42a14f06c550" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/d4c0d2a9-5a0d-4bcb-8bb8-8e521e60de96" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/0d593d1b-48ba-4393-a958-92504cbad1e4" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/4ab1f2dc-c630-4a99-a8d0-fd20fa731a27" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/a87a64d1-8614-4052-b7a5-7bcbe1db51b2" + (reference "v6") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/f85951dc-a7ff-4c28-af4d-84f4e966d5a5" + (reference "v7") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/21b2f002-06c6-4cb4-9c0b-bef5b8adbbe3" + (reference "v8") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/19474b1f-2744-4b72-8795-944511e53db1" + (reference "v9") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/22bcc034-b379-4e28-8d3c-c87fee8342da" + (reference "v10") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/74LS240/Test_LS240.proj b/library/SubcircuitLibrary/74LS240/Test_LS240.proj new file mode 100644 index 000000000..aa0fe333d --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/Test_LS240.proj @@ -0,0 +1 @@ +schematicFile Test_LS240.kicad_sch diff --git a/library/SubcircuitLibrary/74LS240/Test_LS240_Previous_Values.xml b/library/SubcircuitLibrary/74LS240/Test_LS240_Previous_Values.xml new file mode 100644 index 000000000..829715120 --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/Test_LS240_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0.1160secmsmspulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n40m80mpulse0501n1n40m80mpulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n10m20madc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgedac_bridgedac_bridgedac_bridgedac_bridgedac_bridgedac_bridgedac_bridgedac_bridgeE:\apps\ESIM\FOSSEE\eSim\library\SubcircuitLibrary\LS240_subckt \ No newline at end of file diff --git a/library/SubcircuitLibrary/74LS240/analysis b/library/SubcircuitLibrary/74LS240/analysis new file mode 100644 index 000000000..08e2c1525 --- /dev/null +++ b/library/SubcircuitLibrary/74LS240/analysis @@ -0,0 +1 @@ +.tran 0.1e-03 160e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74S182/3_and-cache.lib b/library/SubcircuitLibrary/74S182/3_and-cache.lib new file mode 100644 index 000000000..af0586415 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/3_and-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/74S182/3_and.cir b/library/SubcircuitLibrary/74S182/3_and.cir new file mode 100644 index 000000000..ba296cf01 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/3_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\3_and\3_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/26/19 18:42:57 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad4_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT + +.end diff --git a/library/SubcircuitLibrary/74S182/3_and.cir.out b/library/SubcircuitLibrary/74S182/3_and.cir.out new file mode 100644 index 000000000..d7cf79a07 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/3_and.cir.out @@ -0,0 +1,20 @@ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/74S182/3_and.pro b/library/SubcircuitLibrary/74S182/3_and.pro new file mode 100644 index 000000000..00597a5ad --- /dev/null +++ b/library/SubcircuitLibrary/74S182/3_and.pro @@ -0,0 +1,43 @@ +update=05/31/19 15:26:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=eSim_Analog +LibName2=eSim_Devices +LibName3=eSim_Digital +LibName4=eSim_Hybrid +LibName5=eSim_Miscellaneous +LibName6=eSim_Plot +LibName7=eSim_Power +LibName8=eSim_User +LibName9=eSim_Sources +LibName10=eSim_Subckt diff --git a/library/SubcircuitLibrary/74S182/3_and.sch b/library/SubcircuitLibrary/74S182/3_and.sch new file mode 100644 index 000000000..d6ac89f95 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/3_and.sch @@ -0,0 +1,130 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:3_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U2 +U 1 1 5C9A24D8 +P 4250 2700 +F 0 "U2" H 4250 2700 60 0000 C CNN +F 1 "d_and" H 4300 2800 60 0000 C CNN +F 2 "" H 4250 2700 60 0000 C CNN +F 3 "" H 4250 2700 60 0000 C CNN + 1 4250 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 5C9A2538 +P 5150 2900 +F 0 "U3" H 5150 2900 60 0000 C CNN +F 1 "d_and" H 5200 3000 60 0000 C CNN +F 2 "" H 5150 2900 60 0000 C CNN +F 3 "" H 5150 2900 60 0000 C CNN + 1 5150 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 5C9A259A +P 3050 2600 +F 0 "U1" H 3100 2700 30 0000 C CNN +F 1 "PORT" H 3050 2600 30 0000 C CNN +F 2 "" H 3050 2600 60 0000 C CNN +F 3 "" H 3050 2600 60 0000 C CNN + 1 3050 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A25D9 +P 3050 2800 +F 0 "U1" H 3100 2900 30 0000 C CNN +F 1 "PORT" H 3050 2800 30 0000 C CNN +F 2 "" H 3050 2800 60 0000 C CNN +F 3 "" H 3050 2800 60 0000 C CNN + 2 3050 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A260A +P 3050 3100 +F 0 "U1" H 3100 3200 30 0000 C CNN +F 1 "PORT" H 3050 3100 30 0000 C CNN +F 2 "" H 3050 3100 60 0000 C CNN +F 3 "" H 3050 3100 60 0000 C CNN + 3 3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2637 +P 6900 2850 +F 0 "U1" H 6950 2950 30 0000 C CNN +F 1 "PORT" H 6900 2850 30 0000 C CNN +F 2 "" H 6900 2850 60 0000 C CNN +F 3 "" H 6900 2850 60 0000 C CNN + 4 6900 2850 + -1 0 0 1 +$EndComp +Wire Wire Line + 4700 2650 4700 2800 +Wire Wire Line + 5600 2850 6650 2850 +Wire Wire Line + 3800 2600 3300 2600 +Wire Wire Line + 3800 2700 3300 2700 +Wire Wire Line + 3300 2700 3300 2800 +Wire Wire Line + 3300 3100 4700 3100 +Wire Wire Line + 4700 3100 4700 2900 +Text Notes 3500 2600 0 60 ~ 12 +in1 +Text Notes 3450 2800 0 60 ~ 12 +in2\n +Text Notes 3500 3100 0 60 ~ 12 +in3 +Text Notes 6100 2850 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/74S182/3_and.sub b/library/SubcircuitLibrary/74S182/3_and.sub new file mode 100644 index 000000000..3d9120bb6 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/3_and.sub @@ -0,0 +1,14 @@ +* Subcircuit 3_and +.subckt 3_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/74S182/3_and_Previous_Values.xml b/library/SubcircuitLibrary/74S182/3_and_Previous_Values.xml new file mode 100644 index 000000000..abc5faaae --- /dev/null +++ b/library/SubcircuitLibrary/74S182/3_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/74S182/4_OR-cache.lib b/library/SubcircuitLibrary/74S182/4_OR-cache.lib new file mode 100644 index 000000000..155f5e601 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_OR-cache.lib @@ -0,0 +1,63 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_or +# +DEF d_or U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_or" 0 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/74S182/4_OR.cir b/library/SubcircuitLibrary/74S182/4_OR.cir new file mode 100644 index 000000000..b338b7b5f --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_OR.cir @@ -0,0 +1,14 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\4_OR\4_OR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/28/19 22:47:12 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_or +U3 Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U3-Pad3_ d_or +U4 Net-_U2-Pad3_ Net-_U3-Pad3_ Net-_U1-Pad5_ d_or +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ PORT + +.end diff --git a/library/SubcircuitLibrary/74S182/4_OR.cir.out b/library/SubcircuitLibrary/74S182/4_OR.cir.out new file mode 100644 index 000000000..adb6b01be --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_OR.cir.out @@ -0,0 +1,24 @@ +* c:\users\malli\esim\src\subcircuitlibrary\4_or\4_or.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_or +* u3 net-_u1-pad3_ net-_u1-pad4_ net-_u3-pad3_ d_or +* u4 net-_u2-pad3_ net-_u3-pad3_ net-_u1-pad5_ d_or +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a3 [net-_u2-pad3_ net-_u3-pad3_ ] net-_u1-pad5_ u4 +* Schematic Name: d_or, NgSpice Name: d_or +.model u2 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u3 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u4 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/74S182/4_OR.pro b/library/SubcircuitLibrary/74S182/4_OR.pro new file mode 100644 index 000000000..881563ebd --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_OR.pro @@ -0,0 +1,44 @@ +update=06/01/19 12:36:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=power +LibName2=eSim_Analog +LibName3=eSim_Devices +LibName4=eSim_Digital +LibName5=eSim_Hybrid +LibName6=eSim_Miscellaneous +LibName7=eSim_Plot +LibName8=eSim_Power +LibName9=eSim_User +LibName10=eSim_Sources +LibName11=eSim_Subckt diff --git a/library/SubcircuitLibrary/74S182/4_OR.sch b/library/SubcircuitLibrary/74S182/4_OR.sch new file mode 100644 index 000000000..118968656 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_OR.sch @@ -0,0 +1,150 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_or U2 +U 1 1 5C9D00E1 +P 4300 2950 +F 0 "U2" H 4300 2950 60 0000 C CNN +F 1 "d_or" H 4300 3050 60 0000 C CNN +F 2 "" H 4300 2950 60 0000 C CNN +F 3 "" H 4300 2950 60 0000 C CNN + 1 4300 2950 + 1 0 0 -1 +$EndComp +$Comp +L d_or U3 +U 1 1 5C9D011F +P 4300 3350 +F 0 "U3" H 4300 3350 60 0000 C CNN +F 1 "d_or" H 4300 3450 60 0000 C CNN +F 2 "" H 4300 3350 60 0000 C CNN +F 3 "" H 4300 3350 60 0000 C CNN + 1 4300 3350 + 1 0 0 -1 +$EndComp +$Comp +L d_or U4 +U 1 1 5C9D0141 +P 5250 3150 +F 0 "U4" H 5250 3150 60 0000 C CNN +F 1 "d_or" H 5250 3250 60 0000 C CNN +F 2 "" H 5250 3150 60 0000 C CNN +F 3 "" H 5250 3150 60 0000 C CNN + 1 5250 3150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4800 3050 4800 2900 +Wire Wire Line + 4800 2900 4750 2900 +Wire Wire Line + 4800 3150 4800 3300 +Wire Wire Line + 4800 3300 4750 3300 +Wire Wire Line + 3350 2850 3850 2850 +Wire Wire Line + 3850 2950 3600 2950 +Wire Wire Line + 3850 3250 3350 3250 +Wire Wire Line + 3600 2950 3600 3000 +Wire Wire Line + 3600 3000 3350 3000 +Wire Wire Line + 3850 3350 3850 3400 +Wire Wire Line + 3850 3400 3350 3400 +Wire Wire Line + 5700 3100 6200 3100 +$Comp +L PORT U1 +U 1 1 5C9D01F4 +P 3100 2850 +F 0 "U1" H 3150 2950 30 0000 C CNN +F 1 "PORT" H 3100 2850 30 0000 C CNN +F 2 "" H 3100 2850 60 0000 C CNN +F 3 "" H 3100 2850 60 0000 C CNN + 1 3100 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9D022F +P 3100 3000 +F 0 "U1" H 3150 3100 30 0000 C CNN +F 1 "PORT" H 3100 3000 30 0000 C CNN +F 2 "" H 3100 3000 60 0000 C CNN +F 3 "" H 3100 3000 60 0000 C CNN + 2 3100 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9D0271 +P 3100 3250 +F 0 "U1" H 3150 3350 30 0000 C CNN +F 1 "PORT" H 3100 3250 30 0000 C CNN +F 2 "" H 3100 3250 60 0000 C CNN +F 3 "" H 3100 3250 60 0000 C CNN + 3 3100 3250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9D0299 +P 3100 3400 +F 0 "U1" H 3150 3500 30 0000 C CNN +F 1 "PORT" H 3100 3400 30 0000 C CNN +F 2 "" H 3100 3400 60 0000 C CNN +F 3 "" H 3100 3400 60 0000 C CNN + 4 3100 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 5C9D02C2 +P 6450 3100 +F 0 "U1" H 6500 3200 30 0000 C CNN +F 1 "PORT" H 6450 3100 30 0000 C CNN +F 2 "" H 6450 3100 60 0000 C CNN +F 3 "" H 6450 3100 60 0000 C CNN + 5 6450 3100 + -1 0 0 1 +$EndComp +Text Notes 3450 2850 0 60 ~ 12 +in1 +Text Notes 3450 3000 0 60 ~ 12 +in2 +Text Notes 3450 3250 0 60 ~ 12 +in3 +Text Notes 3450 3400 0 60 ~ 12 +in4 +Text Notes 5800 3100 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/74S182/4_OR.sub b/library/SubcircuitLibrary/74S182/4_OR.sub new file mode 100644 index 000000000..d1fd3a241 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_OR.sub @@ -0,0 +1,18 @@ +* Subcircuit 4_OR +.subckt 4_OR net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ +* c:\users\malli\esim\src\subcircuitlibrary\4_or\4_or.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_or +* u3 net-_u1-pad3_ net-_u1-pad4_ net-_u3-pad3_ d_or +* u4 net-_u2-pad3_ net-_u3-pad3_ net-_u1-pad5_ d_or +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a3 [net-_u2-pad3_ net-_u3-pad3_ ] net-_u1-pad5_ u4 +* Schematic Name: d_or, NgSpice Name: d_or +.model u2 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u3 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u4 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 4_OR \ No newline at end of file diff --git a/library/SubcircuitLibrary/74S182/4_OR_Previous_Values.xml b/library/SubcircuitLibrary/74S182/4_OR_Previous_Values.xml new file mode 100644 index 000000000..0683d9eb6 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_OR_Previous_Values.xml @@ -0,0 +1 @@ +d_ord_ord_ortruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/74S182/4_and-cache.lib b/library/SubcircuitLibrary/74S182/4_and-cache.lib new file mode 100644 index 000000000..60f1a83d4 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_and-cache.lib @@ -0,0 +1,79 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and-RESCUE-4_and +# +DEF 3_and-RESCUE-4_and X 0 40 Y Y 1 F N +F0 "X" 900 300 60 H V C CNN +F1 "3_and-RESCUE-4_and" 950 500 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 950 400 158 716 -716 0 1 0 N 1000 550 1000 250 +P 2 0 1 0 650 550 1000 550 N +P 3 0 1 0 650 550 650 250 1000 250 N +X in1 1 450 500 200 R 50 50 1 1 I +X in2 2 450 400 200 R 50 50 1 1 I +X in3 3 450 300 200 R 50 50 1 1 I +X out 4 1300 400 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/74S182/4_and-rescue.lib b/library/SubcircuitLibrary/74S182/4_and-rescue.lib new file mode 100644 index 000000000..e38330518 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_and-rescue.lib @@ -0,0 +1,22 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and-RESCUE-4_and +# +DEF 3_and-RESCUE-4_and X 0 40 Y Y 1 F N +F0 "X" 900 300 60 H V C CNN +F1 "3_and-RESCUE-4_and" 950 500 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 950 400 158 716 -716 0 1 0 N 1000 550 1000 250 +P 2 0 1 0 650 550 1000 550 N +P 3 0 1 0 650 550 650 250 1000 250 N +X in1 1 450 500 200 R 50 50 1 1 I +X in2 2 450 400 200 R 50 50 1 1 I +X in3 3 450 300 200 R 50 50 1 1 I +X out 4 1300 400 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/74S182/4_and.cir b/library/SubcircuitLibrary/74S182/4_and.cir new file mode 100644 index 000000000..fdf2e1074 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\4_and\4_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/01/19 13:09:58 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U2-Pad1_ 3_and +U2 Net-_U2-Pad1_ Net-_U1-Pad4_ Net-_U1-Pad5_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ PORT + +.end diff --git a/library/SubcircuitLibrary/74S182/4_and.cir.out b/library/SubcircuitLibrary/74S182/4_and.cir.out new file mode 100644 index 000000000..f40e5bc62 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_and.cir.out @@ -0,0 +1,18 @@ +* c:\users\malli\esim\src\subcircuitlibrary\4_and\4_and.cir + +.include 3_and.sub +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u2-pad1_ 3_and +* u2 net-_u2-pad1_ net-_u1-pad4_ net-_u1-pad5_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ port +a1 [net-_u2-pad1_ net-_u1-pad4_ ] net-_u1-pad5_ u2 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/74S182/4_and.pro b/library/SubcircuitLibrary/74S182/4_and.pro new file mode 100644 index 000000000..b13a0a825 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_and.pro @@ -0,0 +1,57 @@ +update=Wed Mar 18 19:54:24 2020 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=4_and-rescue +LibName2=texas +LibName3=intel +LibName4=audio +LibName5=interface +LibName6=digital-audio +LibName7=philips +LibName8=display +LibName9=cypress +LibName10=siliconi +LibName11=opto +LibName12=atmel +LibName13=contrib +LibName14=valves +LibName15=eSim_Analog +LibName16=eSim_Devices +LibName17=eSim_Digital +LibName18=eSim_Hybrid +LibName19=eSim_Miscellaneous +LibName20=eSim_Plot +LibName21=eSim_Power +LibName22=eSim_Sources +LibName23=eSim_Subckt +LibName24=eSim_User diff --git a/library/SubcircuitLibrary/74S182/4_and.sch b/library/SubcircuitLibrary/74S182/4_and.sch new file mode 100644 index 000000000..f5e8febdc --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_and.sch @@ -0,0 +1,151 @@ +EESchema Schematic File Version 2 +LIBS:4_and-rescue +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:4_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 3_and-RESCUE-4_and X1 +U 1 1 5C9A2915 +P 3700 3500 +F 0 "X1" H 4600 3800 60 0000 C CNN +F 1 "3_and" H 4650 4000 60 0000 C CNN +F 2 "" H 3700 3500 60 0000 C CNN +F 3 "" H 3700 3500 60 0000 C CNN + 1 3700 3500 + 1 0 0 -1 +$EndComp +$Comp +L d_and U2 +U 1 1 5C9A2940 +P 5450 3400 +F 0 "U2" H 5450 3400 60 0000 C CNN +F 1 "d_and" H 5500 3500 60 0000 C CNN +F 2 "" H 5450 3400 60 0000 C CNN +F 3 "" H 5450 3400 60 0000 C CNN + 1 5450 3400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5000 3100 5000 3300 +Wire Wire Line + 4150 3000 4150 2700 +Wire Wire Line + 4150 2700 3200 2700 +Wire Wire Line + 4150 3100 4000 3100 +Wire Wire Line + 4000 3100 4000 3000 +Wire Wire Line + 4000 3000 3200 3000 +Wire Wire Line + 4150 3200 4150 3300 +Wire Wire Line + 4150 3300 3250 3300 +Wire Wire Line + 5000 3400 5000 3550 +Wire Wire Line + 5000 3550 3250 3550 +Wire Wire Line + 5900 3350 6500 3350 +$Comp +L PORT U1 +U 1 1 5C9A29B1 +P 2950 2700 +F 0 "U1" H 3000 2800 30 0000 C CNN +F 1 "PORT" H 2950 2700 30 0000 C CNN +F 2 "" H 2950 2700 60 0000 C CNN +F 3 "" H 2950 2700 60 0000 C CNN + 1 2950 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A29E9 +P 2950 3000 +F 0 "U1" H 3000 3100 30 0000 C CNN +F 1 "PORT" H 2950 3000 30 0000 C CNN +F 2 "" H 2950 3000 60 0000 C CNN +F 3 "" H 2950 3000 60 0000 C CNN + 2 2950 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A2A0D +P 3000 3300 +F 0 "U1" H 3050 3400 30 0000 C CNN +F 1 "PORT" H 3000 3300 30 0000 C CNN +F 2 "" H 3000 3300 60 0000 C CNN +F 3 "" H 3000 3300 60 0000 C CNN + 3 3000 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2A3C +P 3000 3550 +F 0 "U1" H 3050 3650 30 0000 C CNN +F 1 "PORT" H 3000 3550 30 0000 C CNN +F 2 "" H 3000 3550 60 0000 C CNN +F 3 "" H 3000 3550 60 0000 C CNN + 4 3000 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 5C9A2A68 +P 6750 3350 +F 0 "U1" H 6800 3450 30 0000 C CNN +F 1 "PORT" H 6750 3350 30 0000 C CNN +F 2 "" H 6750 3350 60 0000 C CNN +F 3 "" H 6750 3350 60 0000 C CNN + 5 6750 3350 + -1 0 0 1 +$EndComp +Text Notes 3450 2650 0 60 ~ 12 +in1 +Text Notes 3450 2950 0 60 ~ 12 +in2 +Text Notes 3500 3300 0 60 ~ 12 +in3 +Text Notes 3500 3550 0 60 ~ 12 +in4 +Text Notes 6150 3350 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/74S182/4_and.sub b/library/SubcircuitLibrary/74S182/4_and.sub new file mode 100644 index 000000000..8663f37e6 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_and.sub @@ -0,0 +1,12 @@ +* Subcircuit 4_and +.subckt 4_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ +* c:\users\malli\esim\src\subcircuitlibrary\4_and\4_and.cir +.include 3_and.sub +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u2-pad1_ 3_and +* u2 net-_u2-pad1_ net-_u1-pad4_ net-_u1-pad5_ d_and +a1 [net-_u2-pad1_ net-_u1-pad4_ ] net-_u1-pad5_ u2 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 4_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/74S182/4_and_Previous_Values.xml b/library/SubcircuitLibrary/74S182/4_and_Previous_Values.xml new file mode 100644 index 000000000..f2ba0130e --- /dev/null +++ b/library/SubcircuitLibrary/74S182/4_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andC:\Users\malli\eSim\src\SubcircuitLibrary\3_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/74S182/74S182-cache.lib b/library/SubcircuitLibrary/74S182/74S182-cache.lib new file mode 100644 index 000000000..644604439 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/74S182-cache.lib @@ -0,0 +1,171 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and +# +DEF 3_and X 0 40 Y Y 1 F N +F0 "X" 100 -50 60 H V C CNN +F1 "3_and" 150 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 150 50 158 716 -716 0 1 0 N 200 200 200 -100 +P 2 0 1 0 -150 200 200 200 N +P 3 0 1 0 -150 200 -150 -100 200 -100 N +X in1 1 -350 150 200 R 50 50 1 1 I +X in2 2 -350 50 200 R 50 50 1 1 I +X in3 3 -350 -50 200 R 50 50 1 1 I +X out 4 500 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 4_OR +# +DEF 4_OR X 0 40 Y Y 1 F N +F0 "X" 150 -100 60 H V C CNN +F1 "4_OR" 150 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -800 0 650 226 -226 0 1 0 N -200 250 -200 -250 +A -73 134 444 -599 -176 0 1 0 N 150 -250 350 0 +A -30 -99 393 627 146 0 1 0 N 150 250 350 0 +P 2 0 1 0 -200 -250 150 -250 N +P 2 0 1 0 -200 250 150 250 N +X in1 1 -350 150 200 R 50 50 1 1 I +X in2 2 -350 50 200 R 50 50 1 1 I +X in3 3 -350 -50 200 R 50 50 1 1 I +X in4 4 -350 -150 200 R 50 50 1 1 I +X out 5 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 4_and +# +DEF 4_and X 0 40 Y Y 1 F N +F0 "X" 50 -50 60 H V C CNN +F1 "4_and" 100 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 100 0 206 760 -760 0 1 0 N 150 200 150 -200 +P 2 0 1 0 -200 200 150 200 N +P 4 0 1 0 -200 200 -200 -200 50 -200 150 -200 N +X in1 1 -400 150 200 R 50 50 1 1 I +X in2 2 -400 50 200 R 50 50 1 1 I +X in3 3 -400 -50 200 R 50 50 1 1 I +X in4 4 -400 -150 200 R 50 50 1 1 I +X out 5 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_nor +# +DEF d_nor U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nor" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_or +# +DEF d_or U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_or" 0 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/74S182/74S182.cir b/library/SubcircuitLibrary/74S182/74S182.cir new file mode 100644 index 000000000..10f35aab7 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/74S182.cir @@ -0,0 +1,33 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\74S182\74S182.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/22/25 09:40:55 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 P3_bar P2_bar P1_bar P0_bar Net-_U1-Pad7_ 4_OR +X4 G3_bar G2_bar G1_bar G0_bar Net-_X10-Pad1_ 4_and +X5 P1_bar G3_bar G2_bar G1_bar Net-_X10-Pad2_ 4_and +X6 P2_bar G3_bar G2_bar Net-_X10-Pad3_ 3_and +U2 P3_bar G3_bar Net-_U2-Pad3_ d_and +X7 G2_bar G1_bar G0_bar Net-_U20-Pad2_ Net-_X11-Pad1_ 4_and +X8 P0_bar G2_bar G1_bar G0_bar Net-_X11-Pad2_ 4_and +X9 P1_bar G2_bar G1_bar Net-_X11-Pad3_ 3_and +U3 P2_bar G2_bar Net-_U3-Pad3_ d_and +X2 G1_bar G0_bar Net-_U20-Pad2_ Net-_U8-Pad1_ 3_and +X3 P0_bar G1_bar G0_bar Net-_U8-Pad2_ 3_and +U4 P1_bar G1_bar Net-_U10-Pad2_ d_and +U5 G0_bar Net-_U20-Pad2_ Net-_U5-Pad3_ d_and +U6 P0_bar G0_bar Net-_U6-Pad3_ d_and +X10 Net-_X10-Pad1_ Net-_X10-Pad2_ Net-_X10-Pad3_ Net-_U2-Pad3_ Net-_U1-Pad10_ 4_OR +U7 Net-_U5-Pad3_ Net-_U6-Pad3_ Net-_U1-Pad12_ d_nor +X11 Net-_X11-Pad1_ Net-_X11-Pad2_ Net-_X11-Pad3_ Net-_U3-Pad3_ Net-_U9-Pad1_ 4_OR +U8 Net-_U8-Pad1_ Net-_U8-Pad2_ Net-_U10-Pad1_ d_or +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_or +U9 Net-_U9-Pad1_ Net-_U1-Pad9_ d_inverter +U11 Net-_U10-Pad3_ Net-_U1-Pad11_ d_inverter +U20 Cn Net-_U20-Pad2_ d_inverter +U1 G1_bar P1_bar G0_bar P0_bar G3_bar P3_bar Net-_U1-Pad7_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Cn G2_bar P2_bar PORT + +.end diff --git a/library/SubcircuitLibrary/74S182/74S182.cir.out b/library/SubcircuitLibrary/74S182/74S182.cir.out new file mode 100644 index 000000000..160f3f6fa --- /dev/null +++ b/library/SubcircuitLibrary/74S182/74S182.cir.out @@ -0,0 +1,70 @@ +* c:\fossee\esim\library\subcircuitlibrary\74s182\74s182.cir + +.include 4_OR.sub +.include 4_and.sub +.include 3_and.sub +x1 p3_bar p2_bar p1_bar p0_bar net-_u1-pad7_ 4_OR +x4 g3_bar g2_bar g1_bar g0_bar net-_x10-pad1_ 4_and +x5 p1_bar g3_bar g2_bar g1_bar net-_x10-pad2_ 4_and +x6 p2_bar g3_bar g2_bar net-_x10-pad3_ 3_and +* u2 p3_bar g3_bar net-_u2-pad3_ d_and +x7 g2_bar g1_bar g0_bar net-_u20-pad2_ net-_x11-pad1_ 4_and +x8 p0_bar g2_bar g1_bar g0_bar net-_x11-pad2_ 4_and +x9 p1_bar g2_bar g1_bar net-_x11-pad3_ 3_and +* u3 p2_bar g2_bar net-_u3-pad3_ d_and +x2 g1_bar g0_bar net-_u20-pad2_ net-_u8-pad1_ 3_and +x3 p0_bar g1_bar g0_bar net-_u8-pad2_ 3_and +* u4 p1_bar g1_bar net-_u10-pad2_ d_and +* u5 g0_bar net-_u20-pad2_ net-_u5-pad3_ d_and +* u6 p0_bar g0_bar net-_u6-pad3_ d_and +x10 net-_x10-pad1_ net-_x10-pad2_ net-_x10-pad3_ net-_u2-pad3_ net-_u1-pad10_ 4_OR +* u7 net-_u5-pad3_ net-_u6-pad3_ net-_u1-pad12_ d_nor +x11 net-_x11-pad1_ net-_x11-pad2_ net-_x11-pad3_ net-_u3-pad3_ net-_u9-pad1_ 4_OR +* u8 net-_u8-pad1_ net-_u8-pad2_ net-_u10-pad1_ d_or +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_or +* u9 net-_u9-pad1_ net-_u1-pad9_ d_inverter +* u11 net-_u10-pad3_ net-_u1-pad11_ d_inverter +* u20 cn net-_u20-pad2_ d_inverter +* u1 g1_bar p1_bar g0_bar p0_bar g3_bar p3_bar net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ cn g2_bar p2_bar port +a1 [p3_bar g3_bar ] net-_u2-pad3_ u2 +a2 [p2_bar g2_bar ] net-_u3-pad3_ u3 +a3 [p1_bar g1_bar ] net-_u10-pad2_ u4 +a4 [g0_bar net-_u20-pad2_ ] net-_u5-pad3_ u5 +a5 [p0_bar g0_bar ] net-_u6-pad3_ u6 +a6 [net-_u5-pad3_ net-_u6-pad3_ ] net-_u1-pad12_ u7 +a7 [net-_u8-pad1_ net-_u8-pad2_ ] net-_u10-pad1_ u8 +a8 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a9 net-_u9-pad1_ net-_u1-pad9_ u9 +a10 net-_u10-pad3_ net-_u1-pad11_ u11 +a11 cn net-_u20-pad2_ u20 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u7 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u8 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u10 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 250e-03 10e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/74S182/74S182.pro b/library/SubcircuitLibrary/74S182/74S182.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/74S182/74S182.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/74S182/74S182.sch b/library/SubcircuitLibrary/74S182/74S182.sch new file mode 100644 index 000000000..bc2b9796e --- /dev/null +++ b/library/SubcircuitLibrary/74S182/74S182.sch @@ -0,0 +1,733 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:74S182-cache +EELAYER 25 0 +EELAYER END +$Descr A3 16535 11693 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 4_OR X1 +U 1 1 685147D5 +P 4450 1200 +F 0 "X1" H 4600 1100 60 0000 C CNN +F 1 "4_OR" H 4600 1300 60 0000 C CNN +F 2 "" H 4450 1200 60 0000 C CNN +F 3 "" H 4450 1200 60 0000 C CNN + 1 4450 1200 + 1 0 0 -1 +$EndComp +$Comp +L 4_and X4 +U 1 1 6851483A +P 4500 2350 +F 0 "X4" H 4550 2300 60 0000 C CNN +F 1 "4_and" H 4600 2450 60 0000 C CNN +F 2 "" H 4500 2350 60 0000 C CNN +F 3 "" H 4500 2350 60 0000 C CNN + 1 4500 2350 + 1 0 0 -1 +$EndComp +$Comp +L 4_and X5 +U 1 1 68514869 +P 4500 2850 +F 0 "X5" H 4550 2800 60 0000 C CNN +F 1 "4_and" H 4600 2950 60 0000 C CNN +F 2 "" H 4500 2850 60 0000 C CNN +F 3 "" H 4500 2850 60 0000 C CNN + 1 4500 2850 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X6 +U 1 1 6851489F +P 4500 3350 +F 0 "X6" H 4600 3300 60 0000 C CNN +F 1 "3_and" H 4650 3500 60 0000 C CNN +F 2 "" H 4500 3350 60 0000 C CNN +F 3 "" H 4500 3350 60 0000 C CNN + 1 4500 3350 + 1 0 0 -1 +$EndComp +$Comp +L d_and U2 +U 1 1 685148D0 +P 4550 3750 +F 0 "U2" H 4550 3750 60 0000 C CNN +F 1 "d_and" H 4600 3850 60 0000 C CNN +F 2 "" H 4550 3750 60 0000 C CNN +F 3 "" H 4550 3750 60 0000 C CNN + 1 4550 3750 + 1 0 0 -1 +$EndComp +$Comp +L 4_and X7 +U 1 1 68514AF5 +P 4500 4700 +F 0 "X7" H 4550 4650 60 0000 C CNN +F 1 "4_and" H 4600 4800 60 0000 C CNN +F 2 "" H 4500 4700 60 0000 C CNN +F 3 "" H 4500 4700 60 0000 C CNN + 1 4500 4700 + 1 0 0 -1 +$EndComp +$Comp +L 4_and X8 +U 1 1 68514AFB +P 4500 5200 +F 0 "X8" H 4550 5150 60 0000 C CNN +F 1 "4_and" H 4600 5300 60 0000 C CNN +F 2 "" H 4500 5200 60 0000 C CNN +F 3 "" H 4500 5200 60 0000 C CNN + 1 4500 5200 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X9 +U 1 1 68514B01 +P 4500 5700 +F 0 "X9" H 4600 5650 60 0000 C CNN +F 1 "3_and" H 4650 5850 60 0000 C CNN +F 2 "" H 4500 5700 60 0000 C CNN +F 3 "" H 4500 5700 60 0000 C CNN + 1 4500 5700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 68514B07 +P 4550 6100 +F 0 "U3" H 4550 6100 60 0000 C CNN +F 1 "d_and" H 4600 6200 60 0000 C CNN +F 2 "" H 4550 6100 60 0000 C CNN +F 3 "" H 4550 6100 60 0000 C CNN + 1 4550 6100 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X2 +U 1 1 68514BBA +P 4450 7100 +F 0 "X2" H 4550 7050 60 0000 C CNN +F 1 "3_and" H 4600 7250 60 0000 C CNN +F 2 "" H 4450 7100 60 0000 C CNN +F 3 "" H 4450 7100 60 0000 C CNN + 1 4450 7100 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X3 +U 1 1 68514C43 +P 4450 7600 +F 0 "X3" H 4550 7550 60 0000 C CNN +F 1 "3_and" H 4600 7750 60 0000 C CNN +F 2 "" H 4450 7600 60 0000 C CNN +F 3 "" H 4450 7600 60 0000 C CNN + 1 4450 7600 + 1 0 0 -1 +$EndComp +$Comp +L d_and U4 +U 1 1 68514C86 +P 4550 8050 +F 0 "U4" H 4550 8050 60 0000 C CNN +F 1 "d_and" H 4600 8150 60 0000 C CNN +F 2 "" H 4550 8050 60 0000 C CNN +F 3 "" H 4550 8050 60 0000 C CNN + 1 4550 8050 + 1 0 0 -1 +$EndComp +$Comp +L d_and U5 +U 1 1 68514D0F +P 4550 8900 +F 0 "U5" H 4550 8900 60 0000 C CNN +F 1 "d_and" H 4600 9000 60 0000 C CNN +F 2 "" H 4550 8900 60 0000 C CNN +F 3 "" H 4550 8900 60 0000 C CNN + 1 4550 8900 + 1 0 0 -1 +$EndComp +$Comp +L d_and U6 +U 1 1 68514D9A +P 4550 9300 +F 0 "U6" H 4550 9300 60 0000 C CNN +F 1 "d_and" H 4600 9400 60 0000 C CNN +F 2 "" H 4550 9300 60 0000 C CNN +F 3 "" H 4550 9300 60 0000 C CNN + 1 4550 9300 + 1 0 0 -1 +$EndComp +$Comp +L 4_OR X10 +U 1 1 68514E70 +P 6400 3000 +F 0 "X10" H 6550 2900 60 0000 C CNN +F 1 "4_OR" H 6550 3100 60 0000 C CNN +F 2 "" H 6400 3000 60 0000 C CNN +F 3 "" H 6400 3000 60 0000 C CNN + 1 6400 3000 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U7 +U 1 1 68515194 +P 6400 9000 +F 0 "U7" H 6400 9000 60 0000 C CNN +F 1 "d_nor" H 6450 9100 60 0000 C CNN +F 2 "" H 6400 9000 60 0000 C CNN +F 3 "" H 6400 9000 60 0000 C CNN + 1 6400 9000 + 1 0 0 -1 +$EndComp +$Comp +L 4_OR X11 +U 1 1 68515632 +P 6400 5200 +F 0 "X11" H 6550 5100 60 0000 C CNN +F 1 "4_OR" H 6550 5300 60 0000 C CNN +F 2 "" H 6400 5200 60 0000 C CNN +F 3 "" H 6400 5200 60 0000 C CNN + 1 6400 5200 + 1 0 0 -1 +$EndComp +$Comp +L d_or U8 +U 1 1 685156A8 +P 6650 7300 +F 0 "U8" H 6650 7300 60 0000 C CNN +F 1 "d_or" H 6650 7400 60 0000 C CNN +F 2 "" H 6650 7300 60 0000 C CNN +F 3 "" H 6650 7300 60 0000 C CNN + 1 6650 7300 + 1 0 0 -1 +$EndComp +$Comp +L d_or U10 +U 1 1 685156FD +P 7750 7700 +F 0 "U10" H 7750 7700 60 0000 C CNN +F 1 "d_or" H 7750 7800 60 0000 C CNN +F 2 "" H 7750 7700 60 0000 C CNN +F 3 "" H 7750 7700 60 0000 C CNN + 1 7750 7700 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U9 +U 1 1 6851575A +P 7550 5200 +F 0 "U9" H 7550 5100 60 0000 C CNN +F 1 "d_inverter" H 7550 5350 60 0000 C CNN +F 2 "" H 7600 5150 60 0000 C CNN +F 3 "" H 7600 5150 60 0000 C CNN + 1 7550 5200 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U11 +U 1 1 6851589D +P 9100 7650 +F 0 "U11" H 9100 7550 60 0000 C CNN +F 1 "d_inverter" H 9100 7800 60 0000 C CNN +F 2 "" H 9150 7600 60 0000 C CNN +F 3 "" H 9150 7600 60 0000 C CNN + 1 9100 7650 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U20 +U 1 1 6851594F +P 3050 9800 +F 0 "U20" H 3050 9700 60 0000 C CNN +F 1 "d_inverter" H 3050 9950 60 0000 C CNN +F 2 "" H 3100 9750 60 0000 C CNN +F 3 "" H 3100 9750 60 0000 C CNN + 1 3050 9800 + 1 0 0 -1 +$EndComp +Text GLabel 2250 9800 0 60 Input ~ 0 +Cn +Text GLabel 2250 9200 0 60 Input ~ 0 +P0_bar +Text GLabel 2250 9450 0 60 Input ~ 0 +G0_bar +Text GLabel 2300 8150 0 60 Input ~ 0 +G1_bar +Text GLabel 2300 7950 0 60 Input ~ 0 +P1_bar +Text GLabel 2350 6250 0 60 Input ~ 0 +G2_bar +Text GLabel 2350 6000 0 60 Input ~ 0 +P2_bar +Text GLabel 2450 4050 0 60 Input ~ 0 +G3_bar +Wire Wire Line + 2250 9800 2750 9800 +Wire Wire Line + 3950 9800 3350 9800 +Wire Wire Line + 3950 4850 3950 9800 +Wire Wire Line + 3950 8900 4100 8900 +Wire Wire Line + 2250 9450 4050 9450 +Wire Wire Line + 4050 9450 4050 9300 +Wire Wire Line + 4050 9300 4100 9300 +Wire Wire Line + 2250 9200 4100 9200 +Wire Wire Line + 4100 8800 3850 8800 +Wire Wire Line + 3850 2500 3850 9450 +Connection ~ 3850 9450 +Wire Wire Line + 2300 8150 4050 8150 +Wire Wire Line + 4050 8150 4050 8050 +Wire Wire Line + 4050 8050 4100 8050 +Wire Wire Line + 2300 7950 4100 7950 +Wire Wire Line + 4100 7650 3850 7650 +Connection ~ 3850 8800 +Wire Wire Line + 4100 7550 3750 7550 +Wire Wire Line + 3750 2400 3750 8150 +Connection ~ 3750 8150 +Wire Wire Line + 4100 7450 3650 7450 +Wire Wire Line + 3650 7450 3650 9200 +Connection ~ 3650 9200 +Wire Wire Line + 3950 7150 4100 7150 +Connection ~ 3950 8900 +Wire Wire Line + 4100 7050 3850 7050 +Connection ~ 3850 7650 +Wire Wire Line + 4100 6950 3750 6950 +Connection ~ 3750 7550 +Wire Wire Line + 2350 6250 4000 6250 +Wire Wire Line + 4000 6250 4000 6100 +Wire Wire Line + 4000 6100 4100 6100 +Wire Wire Line + 2350 6000 4100 6000 +Wire Wire Line + 4150 5750 3750 5750 +Connection ~ 3750 6950 +Wire Wire Line + 4150 5650 3650 5650 +Wire Wire Line + 3650 2300 3650 6250 +Connection ~ 3650 6250 +Wire Wire Line + 4150 5550 3500 5550 +Wire Wire Line + 3500 1250 3500 7950 +Connection ~ 3500 7950 +Wire Wire Line + 4100 5350 3850 5350 +Connection ~ 3850 7050 +Wire Wire Line + 4100 5250 3750 5250 +Connection ~ 3750 5750 +Wire Wire Line + 4100 5150 3650 5150 +Connection ~ 3650 5650 +Wire Wire Line + 4100 5050 3400 5050 +Wire Wire Line + 3400 1350 3400 9200 +Connection ~ 3400 9200 +Wire Wire Line + 3950 4850 4100 4850 +Connection ~ 3950 7150 +Wire Wire Line + 3850 4750 4100 4750 +Connection ~ 3850 5350 +Wire Wire Line + 4100 4650 3750 4650 +Connection ~ 3750 5250 +Wire Wire Line + 4100 4550 3650 4550 +Connection ~ 3650 5150 +Wire Wire Line + 2450 4050 4000 4050 +Wire Wire Line + 4000 4050 4000 3750 +Wire Wire Line + 4000 3750 4100 3750 +Wire Wire Line + 3650 3400 4150 3400 +Connection ~ 3650 4550 +Wire Wire Line + 4150 3300 3200 3300 +Wire Wire Line + 3200 2200 3200 4050 +Connection ~ 3200 4050 +Wire Wire Line + 4150 3200 3100 3200 +Wire Wire Line + 3100 1150 3100 6000 +Connection ~ 3100 6000 +Wire Wire Line + 3750 3000 4100 3000 +Connection ~ 3750 4650 +Wire Wire Line + 4100 2900 3650 2900 +Connection ~ 3650 3400 +Wire Wire Line + 4100 2800 3200 2800 +Connection ~ 3200 3300 +Wire Wire Line + 3500 2700 4100 2700 +Connection ~ 3500 5550 +Wire Wire Line + 4100 2500 3850 2500 +Connection ~ 3850 4750 +Wire Wire Line + 4100 2400 3750 2400 +Connection ~ 3750 3000 +Wire Wire Line + 4100 2300 3650 2300 +Connection ~ 3650 2900 +Wire Wire Line + 4100 2200 3200 2200 +Connection ~ 3200 2800 +Wire Wire Line + 3400 1350 4100 1350 +Connection ~ 3400 5050 +Wire Wire Line + 3500 1250 4100 1250 +Connection ~ 3500 2700 +Wire Wire Line + 3100 1150 4100 1150 +Connection ~ 3100 3200 +Wire Wire Line + 4100 1050 3000 1050 +Wire Wire Line + 3000 1050 3000 3650 +Connection ~ 3000 3650 +Wire Wire Line + 5000 8850 5900 8850 +Wire Wire Line + 5900 8850 5900 8900 +Wire Wire Line + 5900 8900 5950 8900 +Wire Wire Line + 5000 9250 5000 9000 +Wire Wire Line + 5000 9000 5950 9000 +Wire Wire Line + 4950 7050 6200 7050 +Wire Wire Line + 6200 7050 6200 7200 +Wire Wire Line + 4950 7550 6200 7550 +Wire Wire Line + 6200 7550 6200 7300 +Wire Wire Line + 5000 8000 7300 8000 +Wire Wire Line + 7300 8000 7300 7700 +Wire Wire Line + 7100 7250 7300 7250 +Wire Wire Line + 7300 7250 7300 7600 +Wire Wire Line + 8200 7650 8800 7650 +Wire Wire Line + 5000 4700 6050 4700 +Wire Wire Line + 6050 4700 6050 5050 +Wire Wire Line + 5000 5200 5000 5150 +Wire Wire Line + 5000 5150 6050 5150 +Wire Wire Line + 5000 5650 5050 5650 +Wire Wire Line + 5050 5650 5050 5250 +Wire Wire Line + 5050 5250 6050 5250 +Wire Wire Line + 5000 6050 5150 6050 +Wire Wire Line + 5150 6050 5150 5350 +Wire Wire Line + 5150 5350 6050 5350 +Wire Wire Line + 6950 5200 7250 5200 +Wire Wire Line + 5000 3700 6050 3700 +Wire Wire Line + 6050 3700 6050 3150 +Wire Wire Line + 5000 3300 5950 3300 +Wire Wire Line + 5950 3300 5950 3050 +Wire Wire Line + 5950 3050 6050 3050 +Wire Wire Line + 5000 2850 5000 2950 +Wire Wire Line + 5000 2950 6050 2950 +Wire Wire Line + 5000 2350 6050 2350 +Wire Wire Line + 6050 2350 6050 2850 +$Comp +L PORT U1 +U 1 1 6851A559 +P 2600 8500 +F 0 "U1" H 2650 8600 30 0000 C CNN +F 1 "PORT" H 2600 8500 30 0000 C CNN +F 2 "" H 2600 8500 60 0000 C CNN +F 3 "" H 2600 8500 60 0000 C CNN + 1 2600 8500 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 2 1 6851A8EA +P 2600 7550 +F 0 "U1" H 2650 7650 30 0000 C CNN +F 1 "PORT" H 2600 7550 30 0000 C CNN +F 2 "" H 2600 7550 60 0000 C CNN +F 3 "" H 2600 7550 60 0000 C CNN + 2 2600 7550 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 3 1 6851A9AF +P 3000 8900 +F 0 "U1" H 3050 9000 30 0000 C CNN +F 1 "PORT" H 3000 8900 30 0000 C CNN +F 2 "" H 3000 8900 60 0000 C CNN +F 3 "" H 3000 8900 60 0000 C CNN + 3 3000 8900 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 4 1 6851AA0C +P 2700 8900 +F 0 "U1" H 2750 9000 30 0000 C CNN +F 1 "PORT" H 2700 8900 30 0000 C CNN +F 2 "" H 2700 8900 60 0000 C CNN +F 3 "" H 2700 8900 60 0000 C CNN + 4 2700 8900 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 5 1 6851AAB3 +P 2750 4450 +F 0 "U1" H 2800 4550 30 0000 C CNN +F 1 "PORT" H 2750 4450 30 0000 C CNN +F 2 "" H 2750 4450 60 0000 C CNN +F 3 "" H 2750 4450 60 0000 C CNN + 5 2750 4450 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 6 1 6851AC68 +P 2750 3300 +F 0 "U1" H 2800 3400 30 0000 C CNN +F 1 "PORT" H 2750 3300 30 0000 C CNN +F 2 "" H 2750 3300 60 0000 C CNN +F 3 "" H 2750 3300 60 0000 C CNN + 6 2750 3300 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 7 1 6851ADB1 +P 5950 1200 +F 0 "U1" H 6000 1300 30 0000 C CNN +F 1 "PORT" H 5950 1200 30 0000 C CNN +F 2 "" H 5950 1200 60 0000 C CNN +F 3 "" H 5950 1200 60 0000 C CNN + 7 5950 1200 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 9 1 6851AEAF +P 8650 5200 +F 0 "U1" H 8700 5300 30 0000 C CNN +F 1 "PORT" H 8650 5200 30 0000 C CNN +F 2 "" H 8650 5200 60 0000 C CNN +F 3 "" H 8650 5200 60 0000 C CNN + 9 8650 5200 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 10 1 6851B080 +P 8100 3000 +F 0 "U1" H 8150 3100 30 0000 C CNN +F 1 "PORT" H 8100 3000 30 0000 C CNN +F 2 "" H 8100 3000 60 0000 C CNN +F 3 "" H 8100 3000 60 0000 C CNN + 10 8100 3000 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 11 1 6851B267 +P 10450 7650 +F 0 "U1" H 10500 7750 30 0000 C CNN +F 1 "PORT" H 10450 7650 30 0000 C CNN +F 2 "" H 10450 7650 60 0000 C CNN +F 3 "" H 10450 7650 60 0000 C CNN + 11 10450 7650 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 12 1 6851B415 +P 7750 8950 +F 0 "U1" H 7800 9050 30 0000 C CNN +F 1 "PORT" H 7750 8950 30 0000 C CNN +F 2 "" H 7750 8950 60 0000 C CNN +F 3 "" H 7750 8950 60 0000 C CNN + 12 7750 8950 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 13 1 6851B85C +P 2550 10250 +F 0 "U1" H 2600 10350 30 0000 C CNN +F 1 "PORT" H 2550 10250 30 0000 C CNN +F 2 "" H 2550 10250 60 0000 C CNN +F 3 "" H 2550 10250 60 0000 C CNN + 13 2550 10250 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 14 1 6851C350 +P 2750 6650 +F 0 "U1" H 2800 6750 30 0000 C CNN +F 1 "PORT" H 2750 6650 30 0000 C CNN +F 2 "" H 2750 6650 60 0000 C CNN +F 3 "" H 2750 6650 60 0000 C CNN + 14 2750 6650 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 15 1 6851C41F +P 2700 5600 +F 0 "U1" H 2750 5700 30 0000 C CNN +F 1 "PORT" H 2700 5600 30 0000 C CNN +F 2 "" H 2700 5600 60 0000 C CNN +F 3 "" H 2700 5600 60 0000 C CNN + 15 2700 5600 + 0 1 1 0 +$EndComp +Wire Wire Line + 5000 1200 5700 1200 +Wire Wire Line + 6950 3000 7850 3000 +Wire Wire Line + 2750 3550 2750 3650 +Connection ~ 2750 3650 +Wire Wire Line + 2750 4200 2750 4050 +Connection ~ 2750 4050 +Wire Wire Line + 2700 5850 2700 6000 +Connection ~ 2700 6000 +Wire Wire Line + 2750 6400 2750 6250 +Connection ~ 2750 6250 +Wire Wire Line + 7850 5200 8400 5200 +Wire Wire Line + 2600 7800 2600 7950 +Connection ~ 2600 7950 +Wire Wire Line + 2600 8250 2600 8150 +Connection ~ 2600 8150 +Wire Wire Line + 2700 9150 2700 9200 +Connection ~ 2700 9200 +Wire Wire Line + 3000 9150 3000 9450 +Connection ~ 3000 9450 +Wire Wire Line + 2550 10000 2550 9800 +Connection ~ 2550 9800 +Wire Wire Line + 10200 7650 9400 7650 +Wire Wire Line + 6850 8950 7500 8950 +Wire Wire Line + 2450 3650 4100 3650 +Text GLabel 2450 3650 0 60 Input ~ 0 +P3_bar +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/74S182/74S182.sub b/library/SubcircuitLibrary/74S182/74S182.sub new file mode 100644 index 000000000..d82544930 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/74S182.sub @@ -0,0 +1,64 @@ +* Subcircuit 74S182 +.subckt 74S182 g1_bar p1_bar g0_bar p0_bar g3_bar p3_bar net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ cn g2_bar p2_bar +* c:\fossee\esim\library\subcircuitlibrary\74s182\74s182.cir +.include 4_OR.sub +.include 4_and.sub +.include 3_and.sub +x1 p3_bar p2_bar p1_bar p0_bar net-_u1-pad7_ 4_OR +x4 g3_bar g2_bar g1_bar g0_bar net-_x10-pad1_ 4_and +x5 p1_bar g3_bar g2_bar g1_bar net-_x10-pad2_ 4_and +x6 p2_bar g3_bar g2_bar net-_x10-pad3_ 3_and +* u2 p3_bar g3_bar net-_u2-pad3_ d_and +x7 g2_bar g1_bar g0_bar net-_u20-pad2_ net-_x11-pad1_ 4_and +x8 p0_bar g2_bar g1_bar g0_bar net-_x11-pad2_ 4_and +x9 p1_bar g2_bar g1_bar net-_x11-pad3_ 3_and +* u3 p2_bar g2_bar net-_u3-pad3_ d_and +x2 g1_bar g0_bar net-_u20-pad2_ net-_u8-pad1_ 3_and +x3 p0_bar g1_bar g0_bar net-_u8-pad2_ 3_and +* u4 p1_bar g1_bar net-_u10-pad2_ d_and +* u5 g0_bar net-_u20-pad2_ net-_u5-pad3_ d_and +* u6 p0_bar g0_bar net-_u6-pad3_ d_and +x10 net-_x10-pad1_ net-_x10-pad2_ net-_x10-pad3_ net-_u2-pad3_ net-_u1-pad10_ 4_OR +* u7 net-_u5-pad3_ net-_u6-pad3_ net-_u1-pad12_ d_nor +x11 net-_x11-pad1_ net-_x11-pad2_ net-_x11-pad3_ net-_u3-pad3_ net-_u9-pad1_ 4_OR +* u8 net-_u8-pad1_ net-_u8-pad2_ net-_u10-pad1_ d_or +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_or +* u9 net-_u9-pad1_ net-_u1-pad9_ d_inverter +* u11 net-_u10-pad3_ net-_u1-pad11_ d_inverter +* u20 cn net-_u20-pad2_ d_inverter +a1 [p3_bar g3_bar ] net-_u2-pad3_ u2 +a2 [p2_bar g2_bar ] net-_u3-pad3_ u3 +a3 [p1_bar g1_bar ] net-_u10-pad2_ u4 +a4 [g0_bar net-_u20-pad2_ ] net-_u5-pad3_ u5 +a5 [p0_bar g0_bar ] net-_u6-pad3_ u6 +a6 [net-_u5-pad3_ net-_u6-pad3_ ] net-_u1-pad12_ u7 +a7 [net-_u8-pad1_ net-_u8-pad2_ ] net-_u10-pad1_ u8 +a8 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a9 net-_u9-pad1_ net-_u1-pad9_ u9 +a10 net-_u10-pad3_ net-_u1-pad11_ u11 +a11 cn net-_u20-pad2_ u20 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u7 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u8 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u10 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends 74S182 \ No newline at end of file diff --git a/library/SubcircuitLibrary/74S182/74S182_Previous_Values.xml b/library/SubcircuitLibrary/74S182/74S182_Previous_Values.xml new file mode 100644 index 000000000..724f2c757 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/74S182_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andd_andd_andd_andd_nord_ord_ord_inverterd_inverterd_inverterC:\FOSSEE\eSim\library\SubcircuitLibrary\4_ORC:\FOSSEE\eSim\library\SubcircuitLibrary\4_andC:\FOSSEE\eSim\library\SubcircuitLibrary\4_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\4_andC:\FOSSEE\eSim\library\SubcircuitLibrary\4_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\4_ORC:\FOSSEE\eSim\library\SubcircuitLibrary\4_ORtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes025010secmsms \ No newline at end of file diff --git a/library/SubcircuitLibrary/74S182/analysis b/library/SubcircuitLibrary/74S182/analysis new file mode 100644 index 000000000..6bbeaba60 --- /dev/null +++ b/library/SubcircuitLibrary/74S182/analysis @@ -0,0 +1 @@ +.tran 250e-03 10e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/AM2902/AM2902.cir b/library/SubcircuitLibrary/AM2902/AM2902.cir new file mode 100644 index 000000000..e693d42f9 --- /dev/null +++ b/library/SubcircuitLibrary/AM2902/AM2902.cir @@ -0,0 +1,30 @@ +.title KiCad schematic +U12 /G2 Net-_U12-Pad2_ Net-_U12-Pad3_ d_or +U10 Net-_U10-Pad1_ /P0 Net-_U10-Pad3_ d_and +U24 /G0 Net-_U19-Pad3_ Net-_U24-Pad3_ d_or +U25 Net-_U23-Pad3_ Net-_U20-Pad3_ Net-_U25-Pad3_ d_or +U23 Net-_U12-Pad3_ Net-_U23-Pad2_ Net-_U23-Pad3_ d_or +U19 /P0 /CN Net-_U19-Pad3_ d_and +U20 Net-_U10-Pad3_ /CN Net-_U20-Pad3_ d_and +U21 /G1 Net-_U11-Pad3_ Net-_U21-Pad3_ d_or +U26 Net-_U21-Pad3_ Net-_U17-Pad3_ Net-_U26-Pad3_ d_or +U3 /CN /G0 /G1 /G2 /G3 /P0 /P1 /P2 /P3 Net-_U24-Pad3_ Net-_U26-Pad3_ Net-_U25-Pad3_ Net-_U28-Pad3_ Net-_U22-Pad3_ Net-_U27-Pad3_ PORT +U17 Net-_U13-Pad3_ /CN Net-_U17-Pad3_ d_and +U18 Net-_U14-Pad3_ /CN Net-_U18-Pad3_ d_and +U27 Net-_U2-Pad3_ Net-_U13-Pad3_ Net-_U27-Pad3_ d_and +U28 Net-_U22-Pad3_ Net-_U18-Pad3_ Net-_U28-Pad3_ d_or +U9 Net-_U10-Pad1_ /G0 Net-_U23-Pad2_ d_and +U1 /P3 /G2 Net-_U1-Pad3_ d_and +U2 /P3 /P2 Net-_U2-Pad3_ d_and +U4 /P2 /G1 Net-_U12-Pad2_ d_and +U7 /G3 Net-_U1-Pad3_ Net-_U16-Pad1_ d_or +U5 /P2 /P1 Net-_U10-Pad1_ d_and +U11 /P1 /G0 Net-_U11-Pad3_ d_and +U13 /P1 /P0 Net-_U13-Pad3_ d_and +U14 Net-_U14-Pad1_ /P0 Net-_U14-Pad3_ d_and +U16 Net-_U16-Pad1_ Net-_U16-Pad2_ Net-_U16-Pad3_ d_or +U15 Net-_U14-Pad1_ /G0 Net-_U15-Pad3_ d_and +U8 Net-_U2-Pad3_ /P1 Net-_U14-Pad1_ d_and +U6 Net-_U2-Pad3_ /G1 Net-_U16-Pad2_ d_and +U22 Net-_U16-Pad3_ Net-_U15-Pad3_ Net-_U22-Pad3_ d_or +.end diff --git a/library/SubcircuitLibrary/AM2902/AM2902.cir.out b/library/SubcircuitLibrary/AM2902/AM2902.cir.out new file mode 100644 index 000000000..013cf2ea5 --- /dev/null +++ b/library/SubcircuitLibrary/AM2902/AM2902.cir.out @@ -0,0 +1,120 @@ +.title kicad schematic + +* u12 /g2 net-_u12-pad2_ net-_u12-pad3_ d_or +* u10 net-_u10-pad1_ /p0 net-_u10-pad3_ d_and +* u24 /g0 net-_u19-pad3_ net-_u24-pad3_ d_or +* u25 net-_u23-pad3_ net-_u20-pad3_ net-_u25-pad3_ d_or +* u23 net-_u12-pad3_ net-_u23-pad2_ net-_u23-pad3_ d_or +* u19 /p0 /cn net-_u19-pad3_ d_and +* u20 net-_u10-pad3_ /cn net-_u20-pad3_ d_and +* u21 /g1 net-_u11-pad3_ net-_u21-pad3_ d_or +* u26 net-_u21-pad3_ net-_u17-pad3_ net-_u26-pad3_ d_or +* u3 /cn /g0 /g1 /g2 /g3 /p0 /p1 /p2 /p3 net-_u24-pad3_ net-_u26-pad3_ net-_u25-pad3_ net-_u28-pad3_ net-_u22-pad3_ net-_u27-pad3_ port +* u17 net-_u13-pad3_ /cn net-_u17-pad3_ d_and +* u18 net-_u14-pad3_ /cn net-_u18-pad3_ d_and +* u27 net-_u2-pad3_ net-_u13-pad3_ net-_u27-pad3_ d_and +* u28 net-_u22-pad3_ net-_u18-pad3_ net-_u28-pad3_ d_or +* u9 net-_u10-pad1_ /g0 net-_u23-pad2_ d_and +* u1 /p3 /g2 net-_u1-pad3_ d_and +* u2 /p3 /p2 net-_u2-pad3_ d_and +* u4 /p2 /g1 net-_u12-pad2_ d_and +* u7 /g3 net-_u1-pad3_ net-_u16-pad1_ d_or +* u5 /p2 /p1 net-_u10-pad1_ d_and +* u11 /p1 /g0 net-_u11-pad3_ d_and +* u13 /p1 /p0 net-_u13-pad3_ d_and +* u14 net-_u14-pad1_ /p0 net-_u14-pad3_ d_and +* u16 net-_u16-pad1_ net-_u16-pad2_ net-_u16-pad3_ d_or +* u15 net-_u14-pad1_ /g0 net-_u15-pad3_ d_and +* u8 net-_u2-pad3_ /p1 net-_u14-pad1_ d_and +* u6 net-_u2-pad3_ /g1 net-_u16-pad2_ d_and +* u22 net-_u16-pad3_ net-_u15-pad3_ net-_u22-pad3_ d_or +a1 [/g2 net-_u12-pad2_ ] net-_u12-pad3_ u12 +a2 [net-_u10-pad1_ /p0 ] net-_u10-pad3_ u10 +a3 [/g0 net-_u19-pad3_ ] net-_u24-pad3_ u24 +a4 [net-_u23-pad3_ net-_u20-pad3_ ] net-_u25-pad3_ u25 +a5 [net-_u12-pad3_ net-_u23-pad2_ ] net-_u23-pad3_ u23 +a6 [/p0 /cn ] net-_u19-pad3_ u19 +a7 [net-_u10-pad3_ /cn ] net-_u20-pad3_ u20 +a8 [/g1 net-_u11-pad3_ ] net-_u21-pad3_ u21 +a9 [net-_u21-pad3_ net-_u17-pad3_ ] net-_u26-pad3_ u26 +a10 [net-_u13-pad3_ /cn ] net-_u17-pad3_ u17 +a11 [net-_u14-pad3_ /cn ] net-_u18-pad3_ u18 +a12 [net-_u2-pad3_ net-_u13-pad3_ ] net-_u27-pad3_ u27 +a13 [net-_u22-pad3_ net-_u18-pad3_ ] net-_u28-pad3_ u28 +a14 [net-_u10-pad1_ /g0 ] net-_u23-pad2_ u9 +a15 [/p3 /g2 ] net-_u1-pad3_ u1 +a16 [/p3 /p2 ] net-_u2-pad3_ u2 +a17 [/p2 /g1 ] net-_u12-pad2_ u4 +a18 [/g3 net-_u1-pad3_ ] net-_u16-pad1_ u7 +a19 [/p2 /p1 ] net-_u10-pad1_ u5 +a20 [/p1 /g0 ] net-_u11-pad3_ u11 +a21 [/p1 /p0 ] net-_u13-pad3_ u13 +a22 [net-_u14-pad1_ /p0 ] net-_u14-pad3_ u14 +a23 [net-_u16-pad1_ net-_u16-pad2_ ] net-_u16-pad3_ u16 +a24 [net-_u14-pad1_ /g0 ] net-_u15-pad3_ u15 +a25 [net-_u2-pad3_ /p1 ] net-_u14-pad1_ u8 +a26 [net-_u2-pad3_ /g1 ] net-_u16-pad2_ u6 +a27 [net-_u16-pad3_ net-_u15-pad3_ ] net-_u22-pad3_ u22 +* Schematic Name: d_or, Ngspice Name: d_or +.model u12 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u24 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u25 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u21 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u26 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u28 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u1 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u7 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u16 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u22 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/AM2902/AM2902.kicad_sch b/library/SubcircuitLibrary/AM2902/AM2902.kicad_sch new file mode 100644 index 000000000..929891a81 --- /dev/null +++ b/library/SubcircuitLibrary/AM2902/AM2902.kicad_sch @@ -0,0 +1,2326 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid a9bdf1f5-2264-4a27-bd83-7ff405e38d61) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 86.36 265.43) (diameter 0) (color 0 0 0 0) + (uuid 2d487b1f-6a6a-48e5-bbde-bf8a1e79de63) + ) + (junction (at 200.66 191.77) (diameter 0) (color 0 0 0 0) + (uuid 2e651a92-be92-4a6b-b5bf-3a435f8c388e) + ) + (junction (at 129.54 151.13) (diameter 0) (color 0 0 0 0) + (uuid 30bb2f4a-b2c5-464e-9160-3e012c6802d2) + ) + (junction (at 86.36 250.19) (diameter 0) (color 0 0 0 0) + (uuid 4f08998b-7488-4e27-9990-9998e4c38ab8) + ) + (junction (at 147.32 266.7) (diameter 0) (color 0 0 0 0) + (uuid 660bd3e3-d4ea-497c-9bd4-7bcd65d218ec) + ) + (junction (at 238.76 223.52) (diameter 0) (color 0 0 0 0) + (uuid ace81143-0b75-4875-859f-d9ccab8a7711) + ) + + (wire (pts (xy 99.06 207.01) (xy 101.6 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0008adde-ff20-425d-8bb9-7b2a0bd0326b) + ) + (wire (pts (xy 153.67 232.41) (xy 156.21 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00476449-6977-4b8d-b949-c3e356dcf943) + ) + (wire (pts (xy 124.46 243.84) (xy 142.24 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00b6b9d6-276c-48d3-ab9d-c263ef880a66) + ) + (wire (pts (xy 233.68 111.76) (xy 256.54 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01ec65fe-0d45-420c-831b-cf2966b25c06) + ) + (wire (pts (xy 207.01 165.1) (xy 210.82 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03692787-b663-4f9d-a0b2-394c5652ee60) + ) + (wire (pts (xy 151.13 189.23) (xy 153.67 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03ffb4d3-45e5-4a75-9480-233f534b5627) + ) + (wire (pts (xy 55.88 248.92) (xy 58.42 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05ba3934-0406-435f-b168-9194237f9311) + ) + (wire (pts (xy 100.33 267.97) (xy 102.87 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09344861-6c34-44c4-913a-c1b5b1194490) + ) + (wire (pts (xy 288.29 142.24) (xy 306.07 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a2f0cb6-0d31-44f5-84aa-5b1d4b82a221) + ) + (wire (pts (xy 238.76 223.52) (xy 238.76 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a4132fb-34bf-4a2c-a72b-9385be5200b5) + ) + (wire (pts (xy 86.36 265.43) (xy 102.87 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bfe0487-57b5-4663-833e-84ff857e96ae) + ) + (wire (pts (xy 257.81 177.8) (xy 237.49 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c20f952-cd2d-45c8-a167-dfb154905125) + ) + (wire (pts (xy 184.15 231.14) (xy 184.15 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d1c3f4a-336f-4800-9c16-6005b88fa7d0) + ) + (wire (pts (xy 297.18 166.37) (xy 309.88 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e570cda-2ef3-44f4-882b-6edafab73dae) + ) + (wire (pts (xy 250.19 204.47) (xy 250.19 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10aca3a1-4bb9-4c46-9277-0aba92673a01) + ) + (wire (pts (xy 176.53 190.5) (xy 194.31 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1157e22d-5dcb-4fca-b8c1-2462f9a073ea) + ) + (wire (pts (xy 196.85 250.19) (xy 196.85 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 116b5efe-e151-4cd3-a43d-9569db72d1ed) + ) + (wire (pts (xy 55.88 251.46) (xy 58.42 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1504747e-6910-41e1-bc90-6e31235f7092) + ) + (wire (pts (xy 99.06 226.06) (xy 102.87 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15054b0d-9f2e-4e8b-958d-48725d445840) + ) + (wire (pts (xy 237.49 177.8) (xy 237.49 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15367126-29e0-4d9e-bab2-95a1092de12d) + ) + (wire (pts (xy 234.95 130.81) (xy 261.62 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 178201a7-d33d-4d21-adf7-ebe3cea36d3f) + ) + (wire (pts (xy 106.68 96.52) (xy 110.49 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a98c697-80db-4c41-b6ed-9dbfb9b133c8) + ) + (wire (pts (xy 180.34 132.08) (xy 180.34 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1baa9c87-2273-41fc-99da-cc34b1086b73) + ) + (wire (pts (xy 181.61 148.59) (xy 210.82 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d494629-fd29-4692-96a6-74dbf697152a) + ) + (wire (pts (xy 198.12 224.79) (xy 198.12 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2094c0f7-911e-4f31-9191-926434beb438) + ) + (wire (pts (xy 256.54 111.76) (xy 256.54 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2098605f-20b5-4273-b13e-e1d770130b65) + ) + (wire (pts (xy 256.54 184.15) (xy 265.43 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22cb1b0d-607f-464b-9afb-c8af5fbe3f27) + ) + (wire (pts (xy 147.32 229.87) (xy 147.32 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2432ba10-cb75-45ef-ba3b-57164880cb8f) + ) + (wire (pts (xy 106.68 91.44) (xy 110.49 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2534fbbb-65c4-4aa8-a081-dde2688cfab3) + ) + (wire (pts (xy 97.79 184.15) (xy 100.33 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25ecb173-cb17-48f9-bd1d-04124be2e6d6) + ) + (wire (pts (xy 294.64 163.83) (xy 309.88 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2634af95-140b-4d9b-8602-6e19cdea9a38) + ) + (wire (pts (xy 106.68 93.98) (xy 110.49 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27329df1-1f57-457c-8a57-539727f26ce4) + ) + (wire (pts (xy 198.12 224.79) (xy 210.82 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2840d22b-7eba-47e4-9359-1c0bb0687c59) + ) + (wire (pts (xy 176.53 152.4) (xy 181.61 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 291dc0b2-277b-4cfc-b2f1-c19a37a68ccc) + ) + (wire (pts (xy 200.66 213.36) (xy 200.66 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a84d22f-38c5-47d7-bfc8-b19c953ca89b) + ) + (wire (pts (xy 293.37 168.91) (xy 309.88 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2baa4540-89c9-4e21-b444-0ebca5fac4d9) + ) + (wire (pts (xy 80.01 227.33) (xy 99.06 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ffd7524-54e4-45b9-8b5b-1c0ae8378b7d) + ) + (wire (pts (xy 99.06 204.47) (xy 101.6 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30b8a90a-5400-43a2-9a51-8f8ee098b7eb) + ) + (wire (pts (xy 149.86 130.81) (xy 152.4 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36329efa-402d-4842-a62d-2d9c4581eaab) + ) + (wire (pts (xy 294.64 208.28) (xy 294.64 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a0a6117-a710-428e-ae18-c7dc3ec278ff) + ) + (wire (pts (xy 207.01 186.69) (xy 209.55 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dba6348-9323-40cd-8668-af2864a21890) + ) + (wire (pts (xy 194.31 190.5) (xy 194.31 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3eafe17a-37fb-4c88-9e27-d6fc2700c219) + ) + (wire (pts (xy 143.51 224.79) (xy 143.51 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f7892b1-a273-4e5e-a08d-d30c6180fbd3) + ) + (wire (pts (xy 86.36 242.57) (xy 86.36 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40718d66-fe12-48bc-b8a8-b04ca01648a7) + ) + (wire (pts (xy 233.68 149.86) (xy 238.76 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40eca7bf-6a2a-4b24-8075-2093b36fce25) + ) + (wire (pts (xy 232.41 204.47) (xy 250.19 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41b66e94-023f-41a9-8ff3-c0f76e3d8ee8) + ) + (wire (pts (xy 106.68 88.9) (xy 110.49 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4206ee84-9c37-44dd-b08a-b227044ebfe7) + ) + (wire (pts (xy 194.31 167.64) (xy 210.82 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42bb67b4-7ac4-4cd0-89ac-ceda2bb919d2) + ) + (wire (pts (xy 177.8 171.45) (xy 182.88 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 431f195d-708d-4588-93dc-da3d25450db2) + ) + (wire (pts (xy 129.54 151.13) (xy 129.54 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47b9ec69-17cd-4f04-8a15-5ff9e2f5bd8b) + ) + (wire (pts (xy 106.68 101.6) (xy 110.49 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4aa59741-e44f-4821-9546-46132e4cc4bc) + ) + (wire (pts (xy 152.4 214.63) (xy 154.94 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ee7eef8-3bb0-4deb-b472-40d4a88ce4dd) + ) + (wire (pts (xy 180.34 250.19) (xy 196.85 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5016c1c0-d690-45e0-97cb-aa20585cd22b) + ) + (wire (pts (xy 151.13 153.67) (xy 153.67 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5263e37f-7114-4085-9c2b-897020a0e056) + ) + (wire (pts (xy 238.76 223.52) (xy 297.18 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54fad0b8-ff24-4a56-9ee8-b8aad8efbeb2) + ) + (wire (pts (xy 293.37 165.1) (xy 293.37 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57665c43-b1df-412b-b8ec-b2604a28ca31) + ) + (wire (pts (xy 238.76 143.51) (xy 238.76 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57a6f6fb-8016-49ad-8583-a945ec2c95b6) + ) + (wire (pts (xy 142.24 251.46) (xy 157.48 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57f1e0b7-0bf0-4c56-b0fb-4552ab6ea891) + ) + (wire (pts (xy 179.07 269.24) (xy 198.12 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5848f5d5-7b07-4b1c-8960-ad255c15718b) + ) + (wire (pts (xy 179.07 231.14) (xy 184.15 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ad56ce0-6179-4434-9bd6-67e11d21407d) + ) + (wire (pts (xy 175.26 129.54) (xy 180.34 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b3dd19a-0374-4c1f-be73-2a931eb2d8a0) + ) + (wire (pts (xy 261.62 130.81) (xy 261.62 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f2ef0fe-0cff-44cd-8b1f-5cb515960301) + ) + (wire (pts (xy 309.88 118.11) (xy 309.88 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 612b45ac-0a77-4918-8418-02a2f6b8b602) + ) + (wire (pts (xy 86.36 275.59) (xy 256.54 275.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 641f2f99-ca96-4ffa-ab3c-f586a93ebe66) + ) + (wire (pts (xy 232.41 185.42) (xy 237.49 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6668efbd-3f0d-40ec-9d9d-8362d5489bf5) + ) + (wire (pts (xy 81.28 250.19) (xy 86.36 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 669fde70-8bdb-4f85-8900-d9851be9a7bc) + ) + (wire (pts (xy 288.29 165.1) (xy 293.37 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66f68f09-3944-441e-9937-a96b53747871) + ) + (wire (pts (xy 182.88 129.54) (xy 212.09 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69cdd6cc-be3b-4f67-9f28-9d4eb196a13e) + ) + (wire (pts (xy 86.36 242.57) (xy 101.6 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69e31043-cc7a-4153-8d6d-e85429432d68) + ) + (wire (pts (xy 97.79 181.61) (xy 100.33 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a1b7bff-6d78-4b39-930e-ca767620d32b) + ) + (wire (pts (xy 147.32 229.87) (xy 156.21 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a2a410e-cf32-4065-bc97-73a835f574c7) + ) + (wire (pts (xy 257.81 166.37) (xy 257.81 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a4f39c0-7ed5-492a-9066-3ec150254c76) + ) + (wire (pts (xy 123.19 182.88) (xy 128.27 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d9f02e3-301b-440e-8600-e534e2ef29ee) + ) + (wire (pts (xy 153.67 266.7) (xy 153.67 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71cf0ed6-709a-457f-83e0-70eebf13baa8) + ) + (wire (pts (xy 151.13 191.77) (xy 153.67 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 739c35eb-9d3b-471d-8df8-9382631178b7) + ) + (wire (pts (xy 297.18 223.52) (xy 297.18 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74c9ec7d-cba7-4a3e-9f1b-8dbfe18e92a7) + ) + (wire (pts (xy 151.13 170.18) (xy 154.94 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 750d275f-2db0-40ff-91dd-8ebbb6199bab) + ) + (wire (pts (xy 177.8 213.36) (xy 200.66 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79c06b10-dd8a-4164-86f6-3565fa8d629f) + ) + (wire (pts (xy 129.54 151.13) (xy 153.67 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a7627a8-930b-4041-8619-93f83e1400c6) + ) + (wire (pts (xy 86.36 250.19) (xy 86.36 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80773205-5662-4e84-a275-dcc7b2fe9145) + ) + (wire (pts (xy 129.54 128.27) (xy 152.4 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83e36252-5415-42c8-829b-efc012517fd1) + ) + (wire (pts (xy 106.68 104.14) (xy 110.49 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84fe71e9-b1f8-4949-97c8-d8c5646fd763) + ) + (wire (pts (xy 153.67 267.97) (xy 156.21 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c4c49c1-5e64-4d38-9374-d8e604ccf5fa) + ) + (wire (pts (xy 54.61 228.6) (xy 57.15 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d83d53d-1af4-4a06-913a-7d62b5b1dddd) + ) + (wire (pts (xy 200.66 184.15) (xy 209.55 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ddbe699-0390-4008-bfbc-733d69f6b5fd) + ) + (wire (pts (xy 233.68 223.52) (xy 238.76 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f11da24-1884-42e9-96a4-7d70c020abab) + ) + (wire (pts (xy 128.27 172.72) (xy 128.27 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f25ac83-d843-4711-ab9a-a3275fa1cc3e) + ) + (wire (pts (xy 125.73 266.7) (xy 147.32 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 938efcc3-a866-464a-9f9a-37c1d2107af8) + ) + (wire (pts (xy 256.54 163.83) (xy 265.43 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 999ebfd1-6f3a-43c1-a823-93fa574840a3) + ) + (wire (pts (xy 106.68 106.68) (xy 110.49 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b663dcf-8e84-40c7-9356-5df2d33bb076) + ) + (wire (pts (xy 152.4 212.09) (xy 154.94 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c98639f-691f-4deb-a139-0eb4f7f9ff1d) + ) + (wire (pts (xy 288.29 118.11) (xy 309.88 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d4fc836-e20d-40ab-96bf-b33e303eb69a) + ) + (wire (pts (xy 106.68 120.65) (xy 111.76 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f1022c4-4fe3-4cb2-945d-cce3b05ccaa4) + ) + (wire (pts (xy 256.54 275.59) (xy 256.54 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3257ee7-5da5-4b28-9d76-de5a96273e12) + ) + (wire (pts (xy 200.66 191.77) (xy 200.66 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3440d28-0f69-43e8-8fa7-f8164866c0cb) + ) + (wire (pts (xy 184.15 203.2) (xy 209.55 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a92de363-4551-4aa3-8921-6cfa75abd199) + ) + (wire (pts (xy 293.37 185.42) (xy 293.37 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b029a8da-361f-48d8-852d-fa8f041e6ad4) + ) + (wire (pts (xy 233.68 166.37) (xy 256.54 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4f877eb-4f9c-438a-850b-46fe2c0b36c7) + ) + (wire (pts (xy 238.76 207.01) (xy 266.7 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9bbb077-a2e9-4537-8bcc-184414604f12) + ) + (wire (pts (xy 182.88 171.45) (xy 182.88 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbcf4094-c7ba-41f1-89c7-774bccfb6401) + ) + (wire (pts (xy 261.62 140.97) (xy 265.43 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bcf0701b-f859-47ed-aa5b-769cf1945579) + ) + (wire (pts (xy 99.06 223.52) (xy 102.87 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c125d9c8-f8c4-4221-8f9d-05ba3fc3f50e) + ) + (wire (pts (xy 153.67 270.51) (xy 156.21 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3106cd7-13f3-4c75-9857-dd2e6512811d) + ) + (wire (pts (xy 147.32 266.7) (xy 153.67 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c536887e-749f-407e-9d9d-1d7d078bf609) + ) + (wire (pts (xy 181.61 148.59) (xy 181.61 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7e359dc-93a5-4121-a8b8-6e299a879f82) + ) + (wire (pts (xy 99.06 245.11) (xy 101.6 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9e77a0e-a94d-4e83-8091-da7ed8ffdecd) + ) + (wire (pts (xy 288.29 185.42) (xy 293.37 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca93485d-4de5-46a6-b185-6e9c135280ed) + ) + (wire (pts (xy 306.07 161.29) (xy 309.88 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb01486e-8457-40bf-b2f7-b94f69ec66a7) + ) + (wire (pts (xy 293.37 158.75) (xy 309.88 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd0e3c4b-012d-485f-92a3-6598204d5947) + ) + (wire (pts (xy 125.73 224.79) (xy 143.51 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce4ec746-436c-4945-a6a6-952f6a90918d) + ) + (wire (pts (xy 250.19 209.55) (xy 266.7 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf6889c8-c41c-45a3-9d9c-d10dcb13941a) + ) + (wire (pts (xy 208.28 151.13) (xy 210.82 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d48ffde4-a9fb-4516-9943-263c9c0fb7dd) + ) + (wire (pts (xy 238.76 143.51) (xy 265.43 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5421d7e-76a9-4c92-9f20-8bcc73939f7e) + ) + (wire (pts (xy 306.07 142.24) (xy 306.07 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d56c8ebc-ad66-4b1a-ace0-33a53101c457) + ) + (wire (pts (xy 180.34 132.08) (xy 212.09 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d80fa926-eed6-4f08-b592-7a97e6bdd2e7) + ) + (wire (pts (xy 261.62 116.84) (xy 265.43 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d81f4c32-c936-433e-9fc9-c1f0ac27847d) + ) + (wire (pts (xy 256.54 166.37) (xy 256.54 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid daeef241-54a6-4863-8673-af4d20361775) + ) + (wire (pts (xy 262.89 191.77) (xy 262.89 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dba6073f-fa03-45b6-887f-029a2cdb86ea) + ) + (wire (pts (xy 86.36 265.43) (xy 86.36 275.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd8fb918-3428-48bf-a7ac-cdb79f13256d) + ) + (wire (pts (xy 262.89 186.69) (xy 265.43 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dfccd1b5-63cf-40c7-8c96-86a0cd2f92f5) + ) + (wire (pts (xy 207.01 205.74) (xy 209.55 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3d85c16-d251-4d49-bc44-142339b6d12d) + ) + (wire (pts (xy 196.85 222.25) (xy 210.82 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4cc43ea-26c5-48b6-a9c6-46d3ecf35bad) + ) + (wire (pts (xy 289.56 208.28) (xy 294.64 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6010dd5-70b7-4bd7-9a2f-990fdf12869d) + ) + (wire (pts (xy 54.61 226.06) (xy 57.15 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e66b4333-b4d6-47da-9769-1ada2660833f) + ) + (wire (pts (xy 142.24 243.84) (xy 142.24 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7af7a1d-95d6-4f08-a01b-8943037aa20f) + ) + (wire (pts (xy 128.27 172.72) (xy 154.94 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7cbb63c-a76c-4182-af5c-1fb8a4486dd7) + ) + (wire (pts (xy 257.81 166.37) (xy 265.43 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e83986cb-3823-4930-b028-3b37f709a33e) + ) + (wire (pts (xy 143.51 248.92) (xy 157.48 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb00ee31-fd49-494b-9324-b2d0e971b266) + ) + (wire (pts (xy 99.06 227.33) (xy 99.06 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb17a79b-6c37-4afe-86f5-fd6c129aa1a6) + ) + (wire (pts (xy 106.68 99.06) (xy 110.49 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f341a7bb-4907-4629-b617-a80b31a379cf) + ) + (wire (pts (xy 256.54 119.38) (xy 265.43 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4ebcc3e-1f3c-49d4-b1a8-de4bd0277337) + ) + (wire (pts (xy 129.54 128.27) (xy 129.54 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f693c810-0217-47be-97eb-ceef1bc6fd19) + ) + (wire (pts (xy 208.28 110.49) (xy 210.82 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f75b3b4f-c3a9-498d-98bb-00dc9e200dce) + ) + (wire (pts (xy 208.28 113.03) (xy 210.82 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7e38fa5-c61b-4f8d-8543-f492a302d021) + ) + (wire (pts (xy 200.66 191.77) (xy 262.89 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid faaab65c-973c-4587-94ab-99044025455e) + ) + (wire (pts (xy 124.46 205.74) (xy 129.54 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb49525d-43d8-4563-8aec-07e7e0a82fc2) + ) + + (label "P0" (at 154.94 232.41 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 054f6e89-949b-4a35-bfb8-01ea0b23813d) + ) + (label "G2" (at 55.88 228.6 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 10523d80-3883-41c7-b946-43cc6d61803a) + ) + (label "P0" (at 209.55 110.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1a4b6d7e-d79c-46db-96c9-356b05e56b5d) + ) + (label "G0" (at 151.13 130.81 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1be43099-07a9-4963-99fb-162ad3e6a774) + ) + (label "G2" (at 109.22 96.52 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1cc81457-18f0-446f-9e16-7af66d7b8af4) + ) + (label "CN" (at 209.55 113.03 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 228bba29-eec3-477b-ac04-ae1fc1e7056f) + ) + (label "G1" (at 209.55 165.1 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 266f1de6-01d3-440e-a5c0-8bd123b6a7ce) + ) + (label "G0" (at 264.16 116.84 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2b4d92ce-49cd-4bf6-8f78-1f8988ec7e2b) + ) + (label "P0" (at 109.22 101.6 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2c148db8-4b7c-4710-ba0c-1fc0363933e1) + ) + (label "P2" (at 100.33 204.47 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2e38ee44-4d3d-4a5d-87f9-bd3541e78d28) + ) + (label "CN" (at 208.28 186.69 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 37e44b6f-acb7-4208-9cba-f2fde29657b0) + ) + (label "CN" (at 208.28 205.74 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3c9636fb-010a-44cd-a4f7-087a1cf42801) + ) + (label "G0" (at 109.22 91.44 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 40cae0d0-e466-42e1-bba4-25f73b3fe4ba) + ) + (label "P0" (at 153.67 214.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 426b9fac-9840-4613-b867-7b4e9d4b21d9) + ) + (label "G1" (at 109.22 93.98 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4723b226-706c-412d-9a48-b7840eec8f73) + ) + (label "P3" (at 57.15 248.92 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5130ce74-1ea0-49f7-b372-417f96c44639) + ) + (label "G3" (at 109.22 99.06 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 56d51b6d-9af2-413a-b1f8-86aea3d43445) + ) + (label "P1" (at 152.4 189.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5a75ee5b-59e8-44e6-a283-49bc5f487681) + ) + (label "P1" (at 109.22 104.14 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6890faf8-1e3d-41fc-b7e2-65d68bfc5ca2) + ) + (label "G3" (at 100.33 223.52 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 89e88cbe-b48b-4ca3-8966-059843c1305c) + ) + (label "G2" (at 153.67 170.18 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 915c6311-5fda-4f18-b1b6-8fc21b8d59a4) + ) + (label "P2" (at 109.22 106.68 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 92186150-5629-4387-aedc-d56a58ef5f43) + ) + (label "P2" (at 99.06 181.61 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9566f7ff-5d9c-4ed5-8f81-1a8de2a2b2c6) + ) + (label "P3" (at 110.49 120.65 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a76b3848-5faf-4a6b-bd87-9f9465447668) + ) + (label "G1" (at 99.06 184.15 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b44a6f63-ffd4-4543-a29e-274442612233) + ) + (label "P1" (at 153.67 212.09 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b4d9ac8c-60dc-4b82-b81a-62ad475d4785) + ) + (label "P3" (at 55.88 226.06 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bac575fa-fbf8-4762-9eb6-84d72d7b6ba8) + ) + (label "CN" (at 209.5295 151.13 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bd1439a5-b48d-4ef9-a70c-9ee331b5719e) + ) + (label "CN" (at 109.22 88.9 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c2b4f370-caf7-4f3e-8d7c-35638985c960) + ) + (label "G1" (at 100.33 245.11 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c7bb1fe4-a1de-40e8-90fe-c48f8c237e94) + ) + (label "G0" (at 154.94 270.51 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e0398f8c-7030-45a1-9e4e-4a380c058e5a) + ) + (label "P0" (at 152.4 153.67 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e0c984e6-814c-4a79-904f-26970ee878b0) + ) + (label "P2" (at 57.15 251.46 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e6a2e3c4-6581-42c4-9818-584794cc2b6a) + ) + (label "P1" (at 101.6 267.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f3271e3b-1f3a-466f-9357-21b1f171f28f) + ) + (label "G0" (at 152.4 191.77 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f70ae7b7-8e4d-4386-910d-8f99d5f527f3) + ) + (label "P1" (at 100.33 207.01 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fe025a5c-ae65-4402-a041-cc4ae738a180) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 96.52 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1ad8a9d9-c8fd-4d0d-99ca-4b74b95ec730) + (property "Reference" "U3" (id 0) (at 100.965 91.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 93.98 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 85b1e0dc-4b88-4038-943a-3349cce93a87)) + (pin "2" (uuid c8b0fef4-0be3-432c-8d73-7f8a5349e0f3)) + (pin "3" (uuid 745a6804-38d2-4faa-a974-0bfe25141cec)) + (pin "4" (uuid 863642c3-72c9-41a7-aa2b-fcd1afcb4802)) + (pin "5" (uuid 488d4890-d8e9-43b1-977e-b080f1d85237)) + (pin "6" (uuid 78f92edd-8629-470e-97ba-24a6a8b87c40)) + (pin "7" (uuid 1422b91b-a595-40d3-a58e-70c2ac2cf6fd)) + (pin "8" (uuid 7217bcfa-862c-4405-bef1-28dfc13ef679)) + (pin "9" (uuid b901aeff-6397-4949-8a9f-e04fe7b76cad)) + (pin "10" (uuid c70b4be4-3c14-4b4b-b079-9fe4545509a6)) + (pin "11" (uuid 7d220927-e7d5-4f65-91d0-fd8436e3acc6)) + (pin "12" (uuid 4fdb08e2-a1e9-4d29-ae77-f8ab01100101)) + (pin "13" (uuid 961fa326-0fd6-4106-b6a7-5c343844ea37)) + (pin "14" (uuid 6813d5bd-e743-4541-a2ed-a0873b373353)) + (pin "15" (uuid 3d2fa1c2-c21d-448b-99ce-3a569892dba7)) + (pin "16" (uuid b04b3a43-02b5-4cdd-85d3-17b1de70e140)) + (pin "17" (uuid 37188834-cb81-4399-b192-56c89c786ab0)) + (pin "18" (uuid 8125f767-aa75-4d60-9381-96ce6b224edf)) + (pin "19" (uuid 1287b9aa-f29a-411b-8573-84d571f18351)) + (pin "20" (uuid f7c8c1de-c9bf-484d-be19-bd62ce27e600)) + (pin "21" (uuid 45a12e0f-c9e0-44a2-b897-a34a84812a21)) + (pin "22" (uuid aaf46dac-f222-4fd7-86e4-fb614ba55746)) + (pin "23" (uuid 3a1abab9-9a22-4e50-afb3-e99c1188c445)) + (pin "24" (uuid abb9d75b-3820-4905-a38f-afb93645b1d8)) + (pin "25" (uuid 767b6dc2-bb8c-4475-977f-88ddaa7ddf91)) + (pin "26" (uuid f324c601-c5c7-4df3-bcb1-594ad34bbe0d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 106.68 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 21317712-9c18-451b-b899-63715c18e551) + (property "Reference" "U3" (id 0) (at 100.965 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 104.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 27eec2ba-1786-4454-bb83-b0becc2361a3)) + (pin "2" (uuid de4af425-45e1-45f1-9621-1b8233109a50)) + (pin "3" (uuid 7ca63dd5-05f1-4549-b807-ee7545eb08fc)) + (pin "4" (uuid a8981e69-9345-4995-abd5-13a6772f70ce)) + (pin "5" (uuid d013ed64-5d99-44a2-b144-32cff7ca150b)) + (pin "6" (uuid bd62c5f9-63a4-4e4b-86bd-634b3e3e58d3)) + (pin "7" (uuid 8bce5126-b62b-4a89-9a48-981e7f940a80)) + (pin "8" (uuid 679cefda-8b4b-46ab-8e29-a91171b3ce33)) + (pin "9" (uuid 8d5c6a15-e919-4d42-94db-dde92dc826b1)) + (pin "10" (uuid a62ad1d1-6cf2-4745-a53c-851e0fb689d6)) + (pin "11" (uuid 10d7001a-feaa-4073-aeb4-16ee6d78d031)) + (pin "12" (uuid a6dfe63b-cc1c-4517-bc0a-78a0ef466236)) + (pin "13" (uuid eb6cc59f-29bb-453e-a3ff-d7f231b3263b)) + (pin "14" (uuid 469cf214-41d3-4e4c-be37-1cf938382f79)) + (pin "15" (uuid ddb58112-43cc-41e4-b1aa-63e198b02e72)) + (pin "16" (uuid 8b4c93ce-48ec-4a1c-9eba-93869b99f4d3)) + (pin "17" (uuid e9bf6171-93a3-4d3b-b0bb-77fe105d8a33)) + (pin "18" (uuid 644550d5-4b0b-4887-8aa3-aa5b5b20d912)) + (pin "19" (uuid 01a7fc54-1669-4255-ae28-27ea141d6a99)) + (pin "20" (uuid cf0f5b07-7ea9-429a-a7d3-61690ebfddb2)) + (pin "21" (uuid fbb2bf93-004b-4134-bc75-0155072e0224)) + (pin "22" (uuid 802c24f2-f9d6-4743-9ed6-df9733183d1b)) + (pin "23" (uuid 242f0f84-63ac-4dba-a5aa-c51ab42f64ce)) + (pin "24" (uuid 9ee58afc-6bcc-4c6d-8cb3-340c9a00b639)) + (pin "25" (uuid ef62c039-f9b3-45c3-8c69-0f58c6932b4a)) + (pin "26" (uuid a52f4ea9-ca54-471e-b917-e72730e2dc40)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 167.64 270.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45ff0986-2777-4d19-8645-489065e416ec) + (property "Reference" "U15" (id 0) (at 167.64 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 167.64 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c0c5d513-f226-47c7-beb8-0d447d0cf084)) + (pin "2" (uuid 9c360c0a-eb51-4f0c-9bcd-a9cb79fe8fed)) + (pin "3" (uuid ace8b336-ccf3-4ebf-8996-0d312635c727)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 316.23 163.83 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4649b8fa-dc63-4390-b8b2-90035b1366a0) + (property "Reference" "U3" (id 0) (at 320.04 163.195 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 320.04 165.735 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 316.23 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 316.23 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 889ec637-c002-41b7-9efa-1c9a712b1b67)) + (pin "2" (uuid 39c44cd6-6383-4fe7-b15c-f34c401556d2)) + (pin "3" (uuid 6f3e1231-162b-4fb0-82df-ed28054272fe)) + (pin "4" (uuid 23bece83-24d0-4c33-a07b-aa35adbaf962)) + (pin "5" (uuid 3b5e9ee3-ee49-4151-ab09-a65a5a0cb88b)) + (pin "6" (uuid e7cef670-a0de-4659-9e9a-a1d1f5e1535e)) + (pin "7" (uuid 1ac724b9-b478-45f2-aab8-8a775f1a3ea6)) + (pin "8" (uuid b5410da7-4a62-4cfa-9943-51836db29a43)) + (pin "9" (uuid 5f1ce268-6bb1-4467-8e7d-30489bff5116)) + (pin "10" (uuid 1349ecf9-c559-4f17-9798-cdd11bb114f5)) + (pin "11" (uuid ef305894-a98d-447a-a7c0-4788d6767f2e)) + (pin "12" (uuid b9308f50-f718-4594-a8b7-6b242350a22c)) + (pin "13" (uuid d0edc20d-7eac-44ed-9a59-53969c704a13)) + (pin "14" (uuid eefd3872-9d1e-424a-af18-a8d0442f0122)) + (pin "15" (uuid 613bc62a-0293-4bd9-a0ab-ac443338415f)) + (pin "16" (uuid 071e6db8-0560-40da-b9fb-4240a73deb9a)) + (pin "17" (uuid 8eae8701-1bb5-4d75-8768-1eadc559327b)) + (pin "18" (uuid 11385f95-1b4b-4525-b9e7-bddc5d2412ad)) + (pin "19" (uuid 9847c851-de25-4616-af64-89ad1b64dbe3)) + (pin "20" (uuid c199fb11-13fa-496e-943b-bc8d0e564f22)) + (pin "21" (uuid 7b25a0bf-f5e1-44d1-a76b-12cadfa4270f)) + (pin "22" (uuid f0783190-316b-48ad-ad29-dee67c484225)) + (pin "23" (uuid d444ffbd-7bba-4378-b5ad-949863b2d711)) + (pin "24" (uuid 36a2ad19-3b39-47e5-af88-bd2777421084)) + (pin "25" (uuid 8b0254be-c4a3-480f-857c-7bff25e86040)) + (pin "26" (uuid 69a6b731-418c-497f-855d-b074959b2d8b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 113.03 245.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 464ebed0-8484-413f-9cec-36930bffc937) + (property "Reference" "U6" (id 0) (at 113.03 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 113.03 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 113.03 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 113.03 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b9681986-1d97-4ea4-b175-4ce774b9bf8e)) + (pin "2" (uuid fd55e201-784c-496c-860a-b8d7b5582ad7)) + (pin "3" (uuid 946a5657-94f0-4693-91af-00f534b5b95b)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 114.3 226.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 466f8f7e-2f35-4d84-8acf-fc341911b562) + (property "Reference" "U7" (id 0) (at 114.3 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 114.3 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 114.3 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 114.3 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bc840713-dbfe-4f7a-8b42-5904c63ebeb3)) + (pin "2" (uuid 74839753-7cb9-4305-b8c5-71d3bc635484)) + (pin "3" (uuid 667aad29-39d6-4cbf-b2e7-e3157d4546c9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 316.23 161.29 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 480bf331-3869-4650-8c16-becf8c6833c7) + (property "Reference" "U3" (id 0) (at 320.04 160.655 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 320.04 163.195 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 316.23 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 316.23 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b6eb51a1-3353-4fbc-a982-6c3160387933)) + (pin "2" (uuid 63162227-26e4-4a85-8af5-75b48450b9ce)) + (pin "3" (uuid d46aa6ff-6154-4e5a-ab30-9e5c7dfeb63d)) + (pin "4" (uuid e1a422da-7e2c-47b8-b438-94db41eb968f)) + (pin "5" (uuid 6cf99800-2e2f-4036-bc0e-a92bbfa9c516)) + (pin "6" (uuid d3c66e46-7eac-4ae1-8ae6-ab2e8839f6d9)) + (pin "7" (uuid f9fcbc98-ad67-459a-8d38-20d42ee37355)) + (pin "8" (uuid 2bef5d87-1a42-40aa-88a5-e67f6a8340b8)) + (pin "9" (uuid 3ccb77bf-e718-457f-b16b-9242dd6372ab)) + (pin "10" (uuid 3c6476bf-602a-4b5d-b485-3c4529f6abaa)) + (pin "11" (uuid 694ca531-3a39-4c54-a73c-390a72935848)) + (pin "12" (uuid 21107b08-7c94-43ef-9a0e-1031f7bfde6c)) + (pin "13" (uuid 4e19634c-b428-48c9-9ab0-ba72ea8f1978)) + (pin "14" (uuid 049d7f42-61f2-4534-94a6-73afadafa7b5)) + (pin "15" (uuid a28557c2-6ae9-46a5-b934-9934bffbdee1)) + (pin "16" (uuid e4e71401-2ffb-4c4a-9a75-49f33d793359)) + (pin "17" (uuid 5618a675-66b1-4676-a060-d9329e4c2c30)) + (pin "18" (uuid 3db7809f-c508-40ad-9e33-e50cf3edd301)) + (pin "19" (uuid 5a1dffc4-2765-480c-8f00-07a094b1f113)) + (pin "20" (uuid 50b053c1-6b50-4d24-98eb-44e79949055d)) + (pin "21" (uuid c1643628-dad9-4b0f-bc6f-49461473607f)) + (pin "22" (uuid e94d82fa-f5e5-41d9-befa-9c6581e7cc71)) + (pin "23" (uuid 0a31fdff-7a57-432d-829d-a3d65db3e977)) + (pin "24" (uuid b4fbddb6-0daa-4aa0-929b-9e5c550d4294)) + (pin "25" (uuid 9034971b-085a-40cc-bf1d-1ddafbb5ca80)) + (pin "26" (uuid 69247da7-f653-4a06-b2eb-821ee6e76ccc)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 276.86 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4aa99a88-ac19-43f3-951e-e6fc5d3f1e80) + (property "Reference" "U24" (id 0) (at 276.86 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 276.86 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 276.86 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 276.86 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45883992-bfee-4205-acd4-d87ccbbed963)) + (pin "2" (uuid 10d4a3cd-f1b3-4568-a8cf-1689c7220fe2)) + (pin "3" (uuid 46cf5182-c26b-4bca-bb92-46e4da693a12)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 93.98 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4f1edc7a-591d-4691-9ba4-b8a185f31bec) + (property "Reference" "U3" (id 0) (at 100.965 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 91.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8e52953c-204b-4ead-97df-ffe28353fd54)) + (pin "2" (uuid 12e27570-3236-4f00-bd77-70166e81ac35)) + (pin "3" (uuid bdd0fc91-850a-4dfe-bd72-2f7d8fb1339d)) + (pin "4" (uuid fd30e2da-c19e-421b-8475-b7ece226cb46)) + (pin "5" (uuid 186f0d9c-7cd1-4204-bb8a-05f700e552b9)) + (pin "6" (uuid f85dc94f-dda9-4c9c-9d54-beb1b8cf9441)) + (pin "7" (uuid e1a2dd41-736e-4589-a241-4c739efb572d)) + (pin "8" (uuid 9944f708-dd83-486f-bd41-0d0929a95bc2)) + (pin "9" (uuid cf127d16-e121-4f9c-9b90-24fe70ef2a2c)) + (pin "10" (uuid 1867cebf-7e7d-45e6-9d78-a8415013c41e)) + (pin "11" (uuid fe599873-3a44-4da2-8fbb-5513949fa1c0)) + (pin "12" (uuid e202ff08-390d-46a9-b70a-b33beb00e254)) + (pin "13" (uuid 546f6ff9-a123-4311-a7cf-45d5cd4504d1)) + (pin "14" (uuid 869c46d1-abfa-47c4-9ea1-026779d8603f)) + (pin "15" (uuid 8809b24a-33c8-4a79-9670-1b673c69c75d)) + (pin "16" (uuid 20b0bb31-550b-4ec2-932e-1defc5f7855d)) + (pin "17" (uuid 4d0feb8e-33e5-4806-b712-d9368c371821)) + (pin "18" (uuid b4075b55-58ea-478d-8c55-a2aa3aa0dace)) + (pin "19" (uuid e667803f-523c-4fa8-a274-fc2e4ddab628)) + (pin "20" (uuid eaf816fc-622a-4e7e-bf64-0998d676f91d)) + (pin "21" (uuid f3012dc7-fbad-4ed6-8d82-20a21194d065)) + (pin "22" (uuid 1bc791ae-1a9e-4f1b-af9f-205c443cde2e)) + (pin "23" (uuid 18c9b1c5-7f06-4c3f-bc2a-1bfb5eafd18d)) + (pin "24" (uuid aca705e8-7bf2-4499-9de7-b8abdc03ee77)) + (pin "25" (uuid f60e5192-2417-47ad-9b5f-42826e522725)) + (pin "26" (uuid b013fe05-7c68-4eb0-888e-c63fedc07718)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 113.03 207.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 50101f39-51e8-4671-b78e-275cab237278) + (property "Reference" "U5" (id 0) (at 113.03 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 113.03 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 113.03 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 113.03 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c60b51ad-c2f6-4d1c-a5ea-dbc1240b4cdc)) + (pin "2" (uuid 6e6aaf67-7bd9-49a2-a9b4-ad63e8ef8826)) + (pin "3" (uuid d8637e7a-71e6-4181-a2aa-9bd1478de046)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 114.3 267.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5075acad-3188-4f0b-b450-45fe9b20d10e) + (property "Reference" "U8" (id 0) (at 114.3 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 114.3 262.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 114.3 267.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 114.3 267.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 94ce99ee-f3f8-4734-bf93-bec6e974a4bc)) + (pin "2" (uuid 2ff6cade-4db3-4389-8868-9a2377cd660c)) + (pin "3" (uuid e3eb5c87-affb-475e-a965-ecd1b289beb9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 68.58 228.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 52c404e1-3a12-4572-b0c8-ca14c29bc8fb) + (property "Reference" "U1" (id 0) (at 68.58 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 68.58 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 68.58 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 68.58 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d37c5d8e-bfec-41c1-8c78-61eb8766cc88)) + (pin "2" (uuid 71be3594-90e6-472b-bb92-647e0cf1312e)) + (pin "3" (uuid 857189aa-e446-486c-830e-c8aaded24365)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 99.06 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5b308a2b-7c10-49ab-baec-70db9aa30208) + (property "Reference" "U3" (id 0) (at 100.965 93.98 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 96.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid df212cf3-f672-4c90-92e6-bf5bf379d827)) + (pin "2" (uuid 6768085e-3377-4c59-bcd7-7c42b542884d)) + (pin "3" (uuid a6509bf5-72ce-41a5-ac7d-6bfef83ca070)) + (pin "4" (uuid 2fcc5d3d-0042-48e9-9f6c-17bf5667405e)) + (pin "5" (uuid 5f2c3ac9-4894-4eca-9801-c1aefb739a3d)) + (pin "6" (uuid d36f7cae-9eda-4118-8025-613c5b70f5a7)) + (pin "7" (uuid 8abf97ad-98a0-4c1d-b6b3-1c98e78f5853)) + (pin "8" (uuid ceb0b85c-ea60-4f0f-a0cb-9b201fe72822)) + (pin "9" (uuid 504b694a-aaf8-447c-885c-fd5bf2b0a37f)) + (pin "10" (uuid 604fa3a5-e1d6-4ded-b7cb-0d630bc2eb2c)) + (pin "11" (uuid 35c55280-565a-459d-bec0-f13b4f929715)) + (pin "12" (uuid 61b0bb03-1750-4b72-bb92-6bf43a29000b)) + (pin "13" (uuid 37cc58bf-600c-4598-a5a8-e0ea939cd3ac)) + (pin "14" (uuid 29bbb1a7-4dc9-4c1f-8aa3-28487bfa489a)) + (pin "15" (uuid 7981a0a2-2bce-46b5-a823-ef71c0ce8dac)) + (pin "16" (uuid 5884bee1-97fb-4079-8358-50e1b3a2b2b1)) + (pin "17" (uuid 95e359f2-a467-4f11-a205-10c51c185a44)) + (pin "18" (uuid 5847dc3d-9934-40bc-be44-ec8781279677)) + (pin "19" (uuid 5212af53-7444-41b5-93e4-80cd7e306c47)) + (pin "20" (uuid 0383e705-052d-4250-b9c1-bfdb8548d627)) + (pin "21" (uuid e20dbd6e-4010-4a94-8d3a-aa209d753eca)) + (pin "22" (uuid cfa5be98-4ceb-4b4c-bad7-4560a786d9cf)) + (pin "23" (uuid a1149aa8-9c63-4701-8aba-11a4f8204c47)) + (pin "24" (uuid 4eba2842-7971-4b4f-8332-9a851fc87f08)) + (pin "25" (uuid 0cad6d8f-a473-4523-969f-4611498ec35b)) + (pin "26" (uuid 9d66dc7f-8b14-482d-9321-2a043cd1c51c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 104.14 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 609d65f2-5904-48cc-a761-3abc65f05f85) + (property "Reference" "U3" (id 0) (at 100.965 99.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 52f36116-38d7-4b29-93a7-2ee2d2a042cf)) + (pin "2" (uuid 27d204f1-f68b-45ac-b89f-ec0b04609cdb)) + (pin "3" (uuid 7887dcc8-275c-499b-bce9-3445a0b1c574)) + (pin "4" (uuid 5d457c09-7fa2-4ed6-9c0d-841d9eb6d77f)) + (pin "5" (uuid eaa3b19d-2ea4-46a0-8238-a450724db162)) + (pin "6" (uuid 7f56d1de-f507-42fd-ab53-dc4c8b23bbdd)) + (pin "7" (uuid d2579be1-34e5-4ab9-831a-0ea327cc6b0b)) + (pin "8" (uuid bbdac62c-6fd6-4b05-af24-0d6328c8352a)) + (pin "9" (uuid 126f6049-b33b-4e3c-8d8e-cf68bdd14e98)) + (pin "10" (uuid 276e3b9d-4dfa-4aae-8e8b-52ab1571a761)) + (pin "11" (uuid e8102ec7-5d41-46fa-b004-821c3c6639d3)) + (pin "12" (uuid e395996e-bbd6-413f-802b-953562481fed)) + (pin "13" (uuid 795840ca-9d05-4654-8b06-348fd72efc9d)) + (pin "14" (uuid 81093355-56fa-4078-928d-aad02e376504)) + (pin "15" (uuid 439e89a1-4c7a-4179-8220-e9856296bb06)) + (pin "16" (uuid 6c264588-3898-4691-adf0-d1e57a3504df)) + (pin "17" (uuid e62e7dcc-3df7-4545-aa8a-b8b12ae051f2)) + (pin "18" (uuid aa8f7a87-f7c9-4281-acda-196dc9160b7a)) + (pin "19" (uuid e06687f0-0102-4dfd-932a-0320f5ec7e93)) + (pin "20" (uuid 780d1750-708c-454d-9bed-a8dfe253aace)) + (pin "21" (uuid e40dfb5a-8243-46db-861d-d810cdb8db25)) + (pin "22" (uuid 2479940d-6828-461e-b171-2c62e16fe304)) + (pin "23" (uuid 4631ee46-5439-4aa9-9f5c-4f5ee318be71)) + (pin "24" (uuid f09c97f8-7a67-4df0-84ba-f0d6599f7c26)) + (pin "25" (uuid b444e938-7a22-4d64-83f3-9f9de4d79cac)) + (pin "26" (uuid 3407b6db-16c1-41ff-b624-fa9f2deaa370)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 101.6 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6288505c-b279-4a34-9f3d-c148bc097127) + (property "Reference" "U3" (id 0) (at 100.965 96.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 99.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ebd77558-8c59-4d6c-924d-333b17d4d974)) + (pin "2" (uuid 2d4552bf-3736-4ed9-82b8-9f882ee582a1)) + (pin "3" (uuid c89c8e52-7080-4b17-abf8-a600e5373470)) + (pin "4" (uuid b5c24e07-32e9-4a41-8a36-3d8dd76f4feb)) + (pin "5" (uuid 252d7036-d4e6-49be-af5d-92fdf9cb2458)) + (pin "6" (uuid 9a838e96-4338-46a6-bcab-9c89eca7aac0)) + (pin "7" (uuid 7c4c06fc-2376-465d-abc6-2e3fa95daca9)) + (pin "8" (uuid 8d6dffbf-97e4-4253-99b9-ed34f73af01a)) + (pin "9" (uuid b90f4a3e-6c4a-4f67-b7c7-0e17baf8d967)) + (pin "10" (uuid ada976ff-8435-416c-914f-e9d00824322d)) + (pin "11" (uuid b9152c5b-bc51-41f3-97e7-e863c37e96d2)) + (pin "12" (uuid 23c85027-b6db-4ec2-bfa6-ef79253f7745)) + (pin "13" (uuid 3379d7a9-d040-4729-9f1b-ecfd1d8d4224)) + (pin "14" (uuid 100322aa-fed7-4dfd-be3a-892c1e954335)) + (pin "15" (uuid 8b3d7da5-6949-4390-be6c-5804d1ff3845)) + (pin "16" (uuid c71e1d1a-d9c4-4ca4-a741-cfe231c361a9)) + (pin "17" (uuid f2008f5c-be1a-4e19-874d-a33577caf2b3)) + (pin "18" (uuid f1b1d29f-c4b8-411a-abb6-daa4dcd30609)) + (pin "19" (uuid e79e0f5e-9da6-4dc6-a5b9-6812226086ef)) + (pin "20" (uuid da41f623-1fc8-48a8-88ff-8a9c2efd8d06)) + (pin "21" (uuid f534d504-82c0-41c2-9f16-2a5736ac7031)) + (pin "22" (uuid 96624db6-d2b5-4b83-8b84-04e6fe50a33c)) + (pin "23" (uuid 7c46ff56-3453-43be-9f1f-ad92f3518c70)) + (pin "24" (uuid d8981b8a-f115-4cc2-a677-db1313f4eb90)) + (pin "25" (uuid da0e394b-8313-4188-8872-f601b30015b2)) + (pin "26" (uuid f73935b6-e293-45f8-b484-a44b317a05cd)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 166.37 172.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 721c0600-73b1-49a0-ba49-e27256f7b5af) + (property "Reference" "U12" (id 0) (at 166.37 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 166.37 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 166.37 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b60a4698-9458-4e87-b426-8c7905611cb3)) + (pin "2" (uuid b60af7a2-f369-42ec-85ae-faef88862bb5)) + (pin "3" (uuid d2e60e28-6c19-4658-b973-33605711479d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 220.98 205.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 72541769-7d4a-44cd-9f42-1d1957d32975) + (property "Reference" "U18" (id 0) (at 220.98 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 220.98 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 220.98 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b4d2009-8831-4f6b-837d-45e35b32bef8)) + (pin "2" (uuid 3d4bcd09-d5b0-4599-a784-0e4a46af9eae)) + (pin "3" (uuid e7c7e11a-6155-472f-af5c-9422ebd59837)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 165.1 191.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73d3b64f-c1e0-4161-91b9-34ed2d9e14cb) + (property "Reference" "U11" (id 0) (at 165.1 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 165.1 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 165.1 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 165.1 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 28559d80-57e5-45af-af12-df87df0d88c7)) + (pin "2" (uuid ad9b2add-fe41-440e-a327-c64c53c4b0aa)) + (pin "3" (uuid da00e248-05b5-4600-82cf-117bdd896237)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 111.76 184.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 77f14b1f-c749-4953-b9e9-02b54f3889e9) + (property "Reference" "U4" (id 0) (at 111.76 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 111.76 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 111.76 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 111.76 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4bca4aa8-ec1f-4490-88fa-daf41bc83fcc)) + (pin "2" (uuid edd5a138-ea8d-4c02-a8fc-b9860c60b9d2)) + (pin "3" (uuid 2c2436cf-bd90-4347-be34-f0650bccbbc5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7936e1a9-e034-4ebf-b5e2-1b1cf8452efe) + (property "Reference" "U3" (id 0) (at 100.965 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d1c05a67-0451-404e-b929-ae5623e8ffe9)) + (pin "2" (uuid 92659773-93d0-4705-a6cc-3d3ba09c3b51)) + (pin "3" (uuid 7727ddaf-c725-42bc-a36c-563f6ec916e1)) + (pin "4" (uuid b268d3fb-6f33-4216-b2a8-8430059bdce5)) + (pin "5" (uuid d946b325-739a-4f2f-82bd-0dc38c8afc0e)) + (pin "6" (uuid f38aceb5-d6bf-441e-a28b-5a9f0a5d5438)) + (pin "7" (uuid cb8d087e-fdee-461a-a219-9022d50536fb)) + (pin "8" (uuid d67c4e13-3913-4f59-a990-bc3cc0b58f4e)) + (pin "9" (uuid 75933e2f-43be-49a2-b5dd-ef47afbf383a)) + (pin "10" (uuid 2d9648da-d5fb-4fab-b361-3f56cb2131ba)) + (pin "11" (uuid fc3196ba-2477-454a-a1aa-1ebb52c012d1)) + (pin "12" (uuid 49b8a01a-fc5e-402d-bc14-03710bea86cd)) + (pin "13" (uuid 7ee93c66-cce8-4d2f-9615-c03bfc6aa78d)) + (pin "14" (uuid 3253a0ca-f27f-4323-8fbb-a827fcc23127)) + (pin "15" (uuid 03e93cbc-4d05-49cf-8c88-fd6c024ee10a)) + (pin "16" (uuid 8148feb3-c934-4dcb-8a0a-b4b12c331aba)) + (pin "17" (uuid ef3f28db-e496-42d0-b242-97d52a009bf4)) + (pin "18" (uuid 3010f915-0d4f-4312-89ca-17d032d485a5)) + (pin "19" (uuid 39204130-54e3-4fa2-b9b2-4ed2749df5a6)) + (pin "20" (uuid afb50260-8505-40e3-a64b-ee1cea5cb126)) + (pin "21" (uuid c81d60b0-9305-4d44-b244-1217650f28d1)) + (pin "22" (uuid 869aefd5-077e-4cb1-a6aa-b32605af4179)) + (pin "23" (uuid 651b7681-86ca-4652-83b1-5552cf6b37b0)) + (pin "24" (uuid 16607331-ef3d-4612-b4a7-0e654d205ecc)) + (pin "25" (uuid 05054d28-bef7-4da6-912f-6282720f75da)) + (pin "26" (uuid 0aa0a77a-4998-4114-a12c-e4a99d53456b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 120.65 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8021cede-899e-4ce1-b443-c9dc3d6a108d) + (property "Reference" "U3" (id 0) (at 100.965 115.57 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34b346f2-225e-40df-bd4f-fe463a8118f5)) + (pin "2" (uuid a02cdf53-e11b-40f9-a528-2bd476e09c0d)) + (pin "3" (uuid 22befeeb-0635-46af-89e8-b60c8faa63d3)) + (pin "4" (uuid 81a12f1f-c1de-4d1c-910c-660607e1cc01)) + (pin "5" (uuid d1e85b3d-1112-4f39-b5a8-ff1730d951b7)) + (pin "6" (uuid 6d16bdf3-6662-4ffe-8d5d-b5aa3ec2c724)) + (pin "7" (uuid 6df23316-f9d7-4998-bb96-cf769e6d075b)) + (pin "8" (uuid 3175790b-ea69-4d01-9b11-965c0cc8c1a5)) + (pin "9" (uuid d050bf9b-723e-4c53-ba61-aa6281db384d)) + (pin "10" (uuid 12044a17-c743-4cfa-b7f3-958e0af89902)) + (pin "11" (uuid 52449ac6-ef65-4ba7-9188-7527eb96b5e3)) + (pin "12" (uuid 2aab4264-5906-4bec-8008-6df6cafd225d)) + (pin "13" (uuid 9480ff8e-38ab-4e73-8981-72f1f06d3e69)) + (pin "14" (uuid f8de7964-c4fa-49d0-8483-3c6796cad847)) + (pin "15" (uuid 23e46723-6b67-4b7b-a4d5-045d5923016b)) + (pin "16" (uuid fcfc2beb-878b-4926-9b52-aca731c15a39)) + (pin "17" (uuid 542e061d-2a68-4187-b9cd-c58862a3bce3)) + (pin "18" (uuid 3ec36242-ca9d-4229-99fe-ada327017d3e)) + (pin "19" (uuid f0d82d2f-79ab-43fb-a8de-af926ae94cb6)) + (pin "20" (uuid 2d82431f-aa19-42cb-a16e-ecf3369bed12)) + (pin "21" (uuid bd05049c-ecb0-4ba9-8584-73b162612414)) + (pin "22" (uuid 4e742686-5653-4f08-ac90-ff7ecf17aa35)) + (pin "23" (uuid 1df224c7-cbac-4155-b449-99af56a49b04)) + (pin "24" (uuid eaf36de9-79b3-4702-966d-70f3fa950e14)) + (pin "25" (uuid 7f3af8ab-9ca7-4a7b-8fcf-4f9b486868aa)) + (pin "26" (uuid 12999fc4-accb-45e0-8bd7-fc109bfebd95)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 223.52 132.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8c3ef830-8743-440b-9a3e-ec9c33328ada) + (property "Reference" "U23" (id 0) (at 223.52 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 223.52 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 223.52 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 223.52 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87ac5a39-d413-4880-89fe-f0a6a9646efd)) + (pin "2" (uuid 5cf8942a-ead6-4eb2-9275-cc6559001863)) + (pin "3" (uuid 7e8f636d-6707-42ee-91df-d056922381aa)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 222.25 167.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8fc9fa58-47bf-420e-be8a-ad16dac54e01) + (property "Reference" "U21" (id 0) (at 222.25 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 222.25 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 222.25 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 222.25 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1b2436e4-6f6e-4e63-bc51-c6d184daa3c8)) + (pin "2" (uuid 33011669-1cb3-48cd-a461-eacd57a590c7)) + (pin "3" (uuid f8b3393a-e1f2-4d07-bbc7-c6653521ab9b)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 168.91 251.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9b46cab4-48a5-4952-973c-d3de157cebcc) + (property "Reference" "U16" (id 0) (at 168.91 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 168.91 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 168.91 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 66c3965a-669e-4d3f-abbe-2b2bf3af9dcf)) + (pin "2" (uuid 894de44a-1e32-4275-9b32-5802b9ef3298)) + (pin "3" (uuid ddfd74bb-b32e-4212-aa8b-46f6d6af4582)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 163.83 130.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a2b51b4d-8271-493b-b7cd-74205a313f9a) + (property "Reference" "U9" (id 0) (at 163.83 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 163.83 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 163.83 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 163.83 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e6d9865c-5dda-4fb8-b765-968e0fb9d104)) + (pin "2" (uuid ea8122d8-d8a7-439d-a442-37b906729f46)) + (pin "3" (uuid 670a58b0-1036-4dfd-b1f0-9e29a926e0c2)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 222.25 224.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a862d9b2-0372-4dd3-bfcc-363ee61f4ef5) + (property "Reference" "U22" (id 0) (at 222.25 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 222.25 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 222.25 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 222.25 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc16b6ab-b1d5-4850-ab53-4bc89e453572)) + (pin "2" (uuid c323bea6-abb5-4c33-b98b-e615ebbc67e0)) + (pin "3" (uuid 0a1f957a-fa9c-45fe-83a7-4c329c203158)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 167.64 232.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b41e419d-4c41-45b8-bcd3-bfea0837e391) + (property "Reference" "U14" (id 0) (at 167.64 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 167.64 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 05791f81-7d19-4a7f-8498-47f90878a51b)) + (pin "2" (uuid 2b90e4f6-20b3-4756-b9b9-f2ca9f5fc66c)) + (pin "3" (uuid 24680f84-f7c5-4340-88d9-7e0acccb2d8a)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 278.13 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b69ff821-9844-4213-87a1-e61388b3c1a2) + (property "Reference" "U28" (id 0) (at 278.13 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 278.13 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 278.13 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3831f140-3082-4a4a-8af2-c8ee9285e833)) + (pin "2" (uuid 580b5de0-e9cf-4c3b-9fd6-a32ee5e465cf)) + (pin "3" (uuid cf7efb25-897d-46b3-bdfb-c2ff4006e1a7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 91.44 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc45f774-51b5-445f-af17-ce56e44c7a53) + (property "Reference" "U3" (id 0) (at 100.965 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 730d167e-55e6-40cd-b827-8d2ba26d8a40)) + (pin "2" (uuid d3d12188-5efa-43c4-b762-93153cca379d)) + (pin "3" (uuid 2f3b2afa-81b6-4244-a8c6-2a8e6593a9bc)) + (pin "4" (uuid 7621393d-4797-48de-8ece-2c9d5b2c80bb)) + (pin "5" (uuid aebc1a29-ac48-42c1-9830-badc8c5092be)) + (pin "6" (uuid a9e36ac9-d259-4413-a932-bf2935fc2ee9)) + (pin "7" (uuid f405b7c8-7bdd-4f75-aec5-d1b6f45c91b7)) + (pin "8" (uuid 117a5416-bcae-41d3-87b8-e8aa2d628d4a)) + (pin "9" (uuid eecaeab2-f95a-49ea-b86a-9e82220275ff)) + (pin "10" (uuid 582f7d51-b2c0-4165-8dce-6ad4acd1476a)) + (pin "11" (uuid fb8b7f83-751d-4e43-8c69-98eb188db4af)) + (pin "12" (uuid 26e11c42-a3b3-46c5-8c64-190668f0ec8c)) + (pin "13" (uuid 9f4478d5-ee3d-41b8-b472-2f3f26419df8)) + (pin "14" (uuid 4e9bc6dd-8c29-4aec-bd3a-cb029b0e07e7)) + (pin "15" (uuid f8893d87-9ae8-4705-b821-e242afccb44c)) + (pin "16" (uuid d512e39b-411e-4cf8-b623-d679fb755fb2)) + (pin "17" (uuid 49505191-45be-49c0-8cd6-c22b49996f6d)) + (pin "18" (uuid b6d48f0d-0e69-4f9a-952f-7964e2734453)) + (pin "19" (uuid aad7e38c-d836-4540-ab77-6e2e74b2a36a)) + (pin "20" (uuid 666a0c3c-70a4-4a5d-9adb-bc254229bdcf)) + (pin "21" (uuid 89f2482f-77e0-4e25-94ab-5f55fb050037)) + (pin "22" (uuid 05020825-0bf2-4dfe-a6d1-37278cbc76fe)) + (pin "23" (uuid a92a6592-f4dd-4ee0-b740-3529e33a7ed1)) + (pin "24" (uuid cc2a2995-9931-465a-83a6-aa9f183af1e4)) + (pin "25" (uuid 50b3ef1d-cd57-4287-a9a0-8706a0d86f9a)) + (pin "26" (uuid a4945257-c14e-458c-977b-05d56f3e42e5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 222.25 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c4693149-3d68-4daa-a8d6-89633b35bcd2) + (property "Reference" "U19" (id 0) (at 222.25 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 222.25 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 222.25 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 222.25 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 85dfa971-b163-4bae-9d89-fc27d2156ebf)) + (pin "2" (uuid 02642a46-14df-4731-b908-819beb11d467)) + (pin "3" (uuid 120d6117-bdf6-404b-b37e-97921dc4975a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 316.23 168.91 180) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c5353e6a-7f21-46d6-9b9e-c1ea8861353f) + (property "Reference" "U3" (id 0) (at 320.04 168.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 320.04 170.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 316.23 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 316.23 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2e63448-49ad-4133-8276-47544f69a3c6)) + (pin "2" (uuid 7179fe77-7bf9-4dbe-84ad-151f8e68a2b4)) + (pin "3" (uuid 1cb8e6a9-be13-4f66-b003-9678e060459d)) + (pin "4" (uuid 00bd5bc2-5ee5-4c64-91cc-c882695d0a6e)) + (pin "5" (uuid a074982b-cf97-49e2-ac4c-998b6daef298)) + (pin "6" (uuid 01144d0b-0e7e-4e84-9e35-be950d253bd4)) + (pin "7" (uuid e20b601e-e692-4f49-80c4-36720845a02b)) + (pin "8" (uuid b20531da-ee13-4437-9789-899ebc418f87)) + (pin "9" (uuid 1b44b826-ccea-4563-b255-a622970913c1)) + (pin "10" (uuid 34968a24-f461-4b15-9dbe-ca72232a0a62)) + (pin "11" (uuid 5ae5eadd-0e96-4e84-9c98-7a18da8ae0d0)) + (pin "12" (uuid 6021b5da-9bf5-4ca3-9217-52ba98c9aac2)) + (pin "13" (uuid 46b53119-4a03-4eff-a160-fafdd51a127e)) + (pin "14" (uuid 3749c75d-c760-4328-9a2f-f8a9f6e1699e)) + (pin "15" (uuid 4dd00bf8-3cdd-407f-a5de-cc896de36fe8)) + (pin "16" (uuid abed4b0f-d10e-4487-8143-05af1fd055e9)) + (pin "17" (uuid b5f0827d-30a8-4a09-afc6-7ce7c588db96)) + (pin "18" (uuid fb43798f-a3a2-4adb-b82d-f1715f4ad7fe)) + (pin "19" (uuid 8a83dc64-dcb0-41fb-8319-d5e31a800396)) + (pin "20" (uuid 10933da1-8734-4fa2-b35e-f512aaae1aac)) + (pin "21" (uuid ea4ab4c0-a65d-482f-892e-d5706a41feac)) + (pin "22" (uuid dc130bd0-1abe-4230-9e4f-edb1eba1d8c5)) + (pin "23" (uuid 2a55c8b5-2218-4fe3-b46b-3f9bc7c1a72a)) + (pin "24" (uuid 6662668b-1bfb-4710-a2a3-8fa0456d1543)) + (pin "25" (uuid 36d52b40-9dc1-45f3-840b-c38b60d17ce9)) + (pin "26" (uuid 4e68e6ca-c8a8-4ab6-942e-b6e1eae369c7)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 165.1 153.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cb19bf5e-73b6-48ee-b1f4-ee2d8d07a92f) + (property "Reference" "U10" (id 0) (at 165.1 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 165.1 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 165.1 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 165.1 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0a3faad4-f9f8-47ca-81c4-469495bd07fc)) + (pin "2" (uuid 21c4e945-acea-463b-9b62-3a307fa045fa)) + (pin "3" (uuid b1dc6b8b-0545-4863-8cef-047b05c75451)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 316.23 158.75 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc42eb35-3962-40cd-9508-5daf5215c36d) + (property "Reference" "U3" (id 0) (at 320.04 158.115 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 320.04 160.655 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 316.23 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 316.23 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e662c978-9f07-49f8-b2bf-bbbefe77168b)) + (pin "2" (uuid e7e2d133-328d-4fa8-9433-101f60afb970)) + (pin "3" (uuid 90a9e33e-639e-41b7-a624-3e07688e60c8)) + (pin "4" (uuid bcee4dcd-b48d-46c4-a48a-4f591b3f505c)) + (pin "5" (uuid 5622b990-607d-4ca2-bf93-be6e7ce931db)) + (pin "6" (uuid a440045c-b334-44d8-854e-77cbe6dd42c1)) + (pin "7" (uuid c5093d37-c1c7-42d4-bd17-4e4c06264d26)) + (pin "8" (uuid a50ed0b6-ac5b-4ed1-956e-6e24637baff0)) + (pin "9" (uuid 179de86f-0be4-4166-9749-5891b9f59393)) + (pin "10" (uuid fc3f866c-0a71-45c1-9fde-a72edca1cf7d)) + (pin "11" (uuid ac7c7707-dc2c-470d-a9b9-e4914f491113)) + (pin "12" (uuid 3cf62ebf-173e-4a0e-8476-71e76c2ea615)) + (pin "13" (uuid c32cb523-ce99-4b6e-8f2e-dac33ad9aa82)) + (pin "14" (uuid 93f93af0-c5e3-4c98-ba03-e4299b4ca031)) + (pin "15" (uuid e28920f1-1ae1-4f88-8e6b-5e312ca38103)) + (pin "16" (uuid 48e61c59-2154-43ad-b870-2576ada72d78)) + (pin "17" (uuid 7df9c134-a53a-47e2-a724-0c38f880f03e)) + (pin "18" (uuid d01e7103-4ca3-4795-9f3e-fdda88f8ac59)) + (pin "19" (uuid ba279887-ebc2-465d-b7d2-40dedc54dd1a)) + (pin "20" (uuid 5052073c-59c6-43e1-8c77-2cbc4e191a9f)) + (pin "21" (uuid bb678e23-6f08-40aa-a8dd-24bf0b7d7e15)) + (pin "22" (uuid affbcf0c-44b3-4953-94fd-8ddd8dcda6ec)) + (pin "23" (uuid 2326bfc0-c565-425f-baf7-1e608823c872)) + (pin "24" (uuid 52b13158-8278-4605-aaf3-ec45ea2d5aa2)) + (pin "25" (uuid 8e81b971-adb1-458d-81ca-d7c03ef90578)) + (pin "26" (uuid 5b81985e-3e98-47c0-ba5e-dd4694d0ac3a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 69.85 251.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d629a434-a7f7-4611-ac0e-ca50362ff0cb) + (property "Reference" "U2" (id 0) (at 69.85 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 69.85 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 69.85 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cc1424b4-4193-4498-a72c-67f90577ab9e)) + (pin "2" (uuid efc0e0dc-42e6-456b-b2ca-915eef002ef8)) + (pin "3" (uuid 443d15de-b0c7-4548-aa3f-19c050264463)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 316.23 166.37 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid df14346a-61d9-44ad-bad2-4652f1eb3ef9) + (property "Reference" "U3" (id 0) (at 320.04 165.735 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 320.04 168.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 316.23 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 316.23 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b5293280-049d-4990-9011-9fe48aad100c)) + (pin "2" (uuid 231077fb-c394-4a2d-a509-50f9c91dd1df)) + (pin "3" (uuid 43cb7501-f2f6-4d54-afc1-afd454c62921)) + (pin "4" (uuid cf0f01ba-fc6a-4d23-b9eb-df4caad6334d)) + (pin "5" (uuid f1602d8d-0786-4b24-8b88-6a1cd7d4af04)) + (pin "6" (uuid f48af01d-2cbf-43b0-9ac7-4124460cfed5)) + (pin "7" (uuid 627434c3-4237-40d0-8a33-7a64d12f8c17)) + (pin "8" (uuid b99a3786-7791-481f-a8f6-0838cdd43124)) + (pin "9" (uuid aeb30325-a95b-4e93-ac3f-a96c0813e234)) + (pin "10" (uuid ac59c5c1-4bee-4887-9c67-69957df369aa)) + (pin "11" (uuid a15e5d81-a36d-4363-92fd-a37226fe548b)) + (pin "12" (uuid 8bdbc6b0-fdf2-471a-a983-425331b28f28)) + (pin "13" (uuid 87195d98-1673-4123-8080-508ccdbdd2a9)) + (pin "14" (uuid 4a1b746b-a38b-4569-a9d4-59cbf8881ba8)) + (pin "15" (uuid 057c6e77-6345-4145-bcf0-1fd5076c063a)) + (pin "16" (uuid afbfcdba-e0a3-4aba-9f52-27c31255cf91)) + (pin "17" (uuid 3cce2114-7bb5-40a5-9fb2-8955682db756)) + (pin "18" (uuid b1af2c20-43c8-4299-912e-5c29485b2d3d)) + (pin "19" (uuid 0ed1072b-b3b7-4aa1-b341-48725d81c911)) + (pin "20" (uuid 22805f8d-1504-42d9-8f4d-f21124350cb3)) + (pin "21" (uuid c3f5ffff-891b-474a-b8a5-8940b5dcbc6c)) + (pin "22" (uuid f7a960b3-39af-4828-96fe-b1dba0802186)) + (pin "23" (uuid 3d588dc9-aea1-47c9-9ba0-4772708d8930)) + (pin "24" (uuid 40fc3f95-e6cc-4f86-8d14-0ec69522b2ae)) + (pin "25" (uuid eb0fe897-07f1-4552-89dc-3f26199fc57b)) + (pin "26" (uuid 725ffb71-d85e-4b73-b50d-3d4584785d26)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 222.25 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid df5ba600-a6c5-47d6-a390-d88424375901) + (property "Reference" "U20" (id 0) (at 222.25 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 222.25 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 222.25 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 222.25 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45bfab6b-02ef-48fe-8c72-bf2eb98db60f)) + (pin "2" (uuid 1c87da73-a4a9-4a17-ac07-70cae100a031)) + (pin "3" (uuid b306b456-72d9-4952-bad0-b713bd803cf0)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 276.86 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e175a092-1c26-4bc2-8d4c-f894a69b6a0c) + (property "Reference" "U27" (id 0) (at 276.86 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 276.86 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 276.86 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 276.86 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid af258201-458c-4a7f-96db-70aed42f00e3)) + (pin "2" (uuid 9653786a-704a-4bb4-b1af-14fc32eb0d4c)) + (pin "3" (uuid 5d218ebe-993e-4fa0-a0e2-51e3df3a2fdc)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 166.37 214.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9b07f71-d67c-4aa5-9951-cdbf9004c866) + (property "Reference" "U13" (id 0) (at 166.37 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 166.37 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 166.37 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2939e257-048b-43dc-bb76-909ee7c4e9c4)) + (pin "2" (uuid 6a29dd5b-7d95-469b-9b98-4d2eda49dced)) + (pin "3" (uuid 211e7446-c264-4f46-9bb4-025825e3503d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 220.98 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ef03dbfc-d418-4bfe-9176-e9c16a11df7e) + (property "Reference" "U17" (id 0) (at 220.98 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 220.98 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 220.98 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 89823ded-6fbd-4d1b-9d69-fdbf7d1a521a)) + (pin "2" (uuid 652b1cd7-8b20-494f-adca-9a6d772d6745)) + (pin "3" (uuid 678e93b6-de1c-42a5-88a5-b449c09f351d)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 276.86 143.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ef79bad4-bd95-4a6d-a322-0e603caca298) + (property "Reference" "U25" (id 0) (at 276.86 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 276.86 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 276.86 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 276.86 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 44cf6918-4cfa-4c16-a652-3b3bf5d3e46b)) + (pin "2" (uuid 6d3059b4-5c58-4ecf-a7ee-8a40b305a38f)) + (pin "3" (uuid 5fac548c-1b20-4d7a-b48c-0dd637a91fe7)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 276.86 166.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f004ac42-0814-42ca-aa5e-c49c279b65aa) + (property "Reference" "U26" (id 0) (at 276.86 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 276.86 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 276.86 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 276.86 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 800678da-78c5-4929-8124-728c6606abe9)) + (pin "2" (uuid a34b8724-43a9-4d7e-859c-28cae92f22a4)) + (pin "3" (uuid 14d542b0-b6c6-4787-a760-2cf1e039d87c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 316.23 156.21 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f08153c1-85b3-4d12-b0bd-744e0b96787e) + (property "Reference" "U3" (id 0) (at 320.04 155.575 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 320.04 158.115 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 316.23 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 316.23 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ebd4d955-51d8-4adb-a5ee-2203f8d81989)) + (pin "2" (uuid da908e0d-0b33-4ad1-9dd8-a9610ff6303d)) + (pin "3" (uuid 29a8962a-3233-4534-a4fb-e15ae3cd7b2c)) + (pin "4" (uuid d8135d33-11a2-4979-9918-6a75db2a9101)) + (pin "5" (uuid bf61f7f3-e83a-4c4a-9e8e-c36d1dfe1263)) + (pin "6" (uuid 01427196-39e1-4da2-8d4c-c4f2c6f24b26)) + (pin "7" (uuid a707a310-172a-439c-b81c-84b2eeadd500)) + (pin "8" (uuid 71193202-9fb5-4b8e-a63d-84d7b7b02cc1)) + (pin "9" (uuid c6f35ab6-e9e6-451d-8c7d-b1f301bef31b)) + (pin "10" (uuid 7347f20f-b37e-4cee-af06-988fc401ffc2)) + (pin "11" (uuid 7100ec05-35a3-45d9-8d01-682066e17896)) + (pin "12" (uuid 88ccd90f-3ab6-4faf-8961-e4eadc76023a)) + (pin "13" (uuid 82b37e3e-3cbd-4458-9179-3435b6d32a98)) + (pin "14" (uuid ab1c8082-8cd8-4e61-90c6-9945e217e824)) + (pin "15" (uuid 996cdb7c-6f33-43d5-b421-383e9db03dc3)) + (pin "16" (uuid 81d077f7-88dc-4e5c-86e6-b9f95ba96785)) + (pin "17" (uuid f0f38a17-682d-4e30-a1ef-4c0321ef3691)) + (pin "18" (uuid 1c9cf225-20b0-4a6a-a196-f82f0faeef1a)) + (pin "19" (uuid bac496e7-f2c8-46e1-9fc4-f835f564935b)) + (pin "20" (uuid 4ea35b60-f340-43a0-9c0e-61a499a530c7)) + (pin "21" (uuid 477463ab-4a90-4b20-b664-3228a836221f)) + (pin "22" (uuid d80ac7c8-7ef0-403e-9dd9-a53a4aca616a)) + (pin "23" (uuid 808a3114-dcf3-41cb-a388-46aaa539b03b)) + (pin "24" (uuid 19727021-c351-4d34-beac-bc8ba2e3ec63)) + (pin "25" (uuid e192694c-4cd1-41ed-bd3d-1f067473f638)) + (pin "26" (uuid eb1d97eb-b9aa-4e08-8cbe-5af361684a2c)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/52c404e1-3a12-4572-b0c8-ca14c29bc8fb" + (reference "U1") (unit 1) (value "d_and") (footprint "") + ) + (path "/d629a434-a7f7-4611-ac0e-ca50362ff0cb" + (reference "U2") (unit 1) (value "d_and") (footprint "") + ) + (path "/7936e1a9-e034-4ebf-b5e2-1b1cf8452efe" + (reference "U3") (unit 1) (value "PORT") (footprint "") + ) + (path "/bc45f774-51b5-445f-af17-ce56e44c7a53" + (reference "U3") (unit 2) (value "PORT") (footprint "") + ) + (path "/4f1edc7a-591d-4691-9ba4-b8a185f31bec" + (reference "U3") (unit 3) (value "PORT") (footprint "") + ) + (path "/1ad8a9d9-c8fd-4d0d-99ca-4b74b95ec730" + (reference "U3") (unit 4) (value "PORT") (footprint "") + ) + (path "/5b308a2b-7c10-49ab-baec-70db9aa30208" + (reference "U3") (unit 5) (value "PORT") (footprint "") + ) + (path "/6288505c-b279-4a34-9f3d-c148bc097127" + (reference "U3") (unit 6) (value "PORT") (footprint "") + ) + (path "/609d65f2-5904-48cc-a761-3abc65f05f85" + (reference "U3") (unit 7) (value "PORT") (footprint "") + ) + (path "/21317712-9c18-451b-b899-63715c18e551" + (reference "U3") (unit 8) (value "PORT") (footprint "") + ) + (path "/8021cede-899e-4ce1-b443-c9dc3d6a108d" + (reference "U3") (unit 9) (value "PORT") (footprint "") + ) + (path "/f08153c1-85b3-4d12-b0bd-744e0b96787e" + (reference "U3") (unit 10) (value "PORT") (footprint "") + ) + (path "/cc42eb35-3962-40cd-9508-5daf5215c36d" + (reference "U3") (unit 11) (value "PORT") (footprint "") + ) + (path "/480bf331-3869-4650-8c16-becf8c6833c7" + (reference "U3") (unit 12) (value "PORT") (footprint "") + ) + (path "/4649b8fa-dc63-4390-b8b2-90035b1366a0" + (reference "U3") (unit 13) (value "PORT") (footprint "") + ) + (path "/df14346a-61d9-44ad-bad2-4652f1eb3ef9" + (reference "U3") (unit 14) (value "PORT") (footprint "") + ) + (path "/c5353e6a-7f21-46d6-9b9e-c1ea8861353f" + (reference "U3") (unit 15) (value "PORT") (footprint "") + ) + (path "/77f14b1f-c749-4953-b9e9-02b54f3889e9" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/50101f39-51e8-4671-b78e-275cab237278" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/464ebed0-8484-413f-9cec-36930bffc937" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/466f8f7e-2f35-4d84-8acf-fc341911b562" + (reference "U7") (unit 1) (value "d_or") (footprint "") + ) + (path "/5075acad-3188-4f0b-b450-45fe9b20d10e" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/a2b51b4d-8271-493b-b7cd-74205a313f9a" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/cb19bf5e-73b6-48ee-b1f4-ee2d8d07a92f" + (reference "U10") (unit 1) (value "d_and") (footprint "") + ) + (path "/73d3b64f-c1e0-4161-91b9-34ed2d9e14cb" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/721c0600-73b1-49a0-ba49-e27256f7b5af" + (reference "U12") (unit 1) (value "d_or") (footprint "") + ) + (path "/e9b07f71-d67c-4aa5-9951-cdbf9004c866" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + (path "/b41e419d-4c41-45b8-bcd3-bfea0837e391" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/45ff0986-2777-4d19-8645-489065e416ec" + (reference "U15") (unit 1) (value "d_and") (footprint "") + ) + (path "/9b46cab4-48a5-4952-973c-d3de157cebcc" + (reference "U16") (unit 1) (value "d_or") (footprint "") + ) + (path "/ef03dbfc-d418-4bfe-9176-e9c16a11df7e" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/72541769-7d4a-44cd-9f42-1d1957d32975" + (reference "U18") (unit 1) (value "d_and") (footprint "") + ) + (path "/c4693149-3d68-4daa-a8d6-89633b35bcd2" + (reference "U19") (unit 1) (value "d_and") (footprint "") + ) + (path "/df5ba600-a6c5-47d6-a390-d88424375901" + (reference "U20") (unit 1) (value "d_and") (footprint "") + ) + (path "/8fc9fa58-47bf-420e-be8a-ad16dac54e01" + (reference "U21") (unit 1) (value "d_or") (footprint "") + ) + (path "/a862d9b2-0372-4dd3-bfcc-363ee61f4ef5" + (reference "U22") (unit 1) (value "d_or") (footprint "") + ) + (path "/8c3ef830-8743-440b-9a3e-ec9c33328ada" + (reference "U23") (unit 1) (value "d_or") (footprint "") + ) + (path "/4aa99a88-ac19-43f3-951e-e6fc5d3f1e80" + (reference "U24") (unit 1) (value "d_or") (footprint "") + ) + (path "/ef79bad4-bd95-4a6d-a322-0e603caca298" + (reference "U25") (unit 1) (value "d_or") (footprint "") + ) + (path "/f004ac42-0814-42ca-aa5e-c49c279b65aa" + (reference "U26") (unit 1) (value "d_or") (footprint "") + ) + (path "/e175a092-1c26-4bc2-8d4c-f894a69b6a0c" + (reference "U27") (unit 1) (value "d_and") (footprint "") + ) + (path "/b69ff821-9844-4213-87a1-e61388b3c1a2" + (reference "U28") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/AM2902/AM2902.sub b/library/SubcircuitLibrary/AM2902/AM2902.sub new file mode 100644 index 000000000..12a064717 --- /dev/null +++ b/library/SubcircuitLibrary/AM2902/AM2902.sub @@ -0,0 +1,114 @@ +* Subcircuit AM2902 +.subckt AM2902 /cn /g0 /g1 /g2 /g3 /p0 /p1 /p2 /p3 net-_u24-pad3_ net-_u26-pad3_ net-_u25-pad3_ net-_u28-pad3_ net-_u22-pad3_ net-_u27-pad3_ +.title kicad schematic +* u12 /g2 net-_u12-pad2_ net-_u12-pad3_ d_or +* u10 net-_u10-pad1_ /p0 net-_u10-pad3_ d_and +* u24 /g0 net-_u19-pad3_ net-_u24-pad3_ d_or +* u25 net-_u23-pad3_ net-_u20-pad3_ net-_u25-pad3_ d_or +* u23 net-_u12-pad3_ net-_u23-pad2_ net-_u23-pad3_ d_or +* u19 /p0 /cn net-_u19-pad3_ d_and +* u20 net-_u10-pad3_ /cn net-_u20-pad3_ d_and +* u21 /g1 net-_u11-pad3_ net-_u21-pad3_ d_or +* u26 net-_u21-pad3_ net-_u17-pad3_ net-_u26-pad3_ d_or +* u17 net-_u13-pad3_ /cn net-_u17-pad3_ d_and +* u18 net-_u14-pad3_ /cn net-_u18-pad3_ d_and +* u27 net-_u2-pad3_ net-_u13-pad3_ net-_u27-pad3_ d_and +* u28 net-_u22-pad3_ net-_u18-pad3_ net-_u28-pad3_ d_or +* u9 net-_u10-pad1_ /g0 net-_u23-pad2_ d_and +* u1 /p3 /g2 net-_u1-pad3_ d_and +* u2 /p3 /p2 net-_u2-pad3_ d_and +* u4 /p2 /g1 net-_u12-pad2_ d_and +* u7 /g3 net-_u1-pad3_ net-_u16-pad1_ d_or +* u5 /p2 /p1 net-_u10-pad1_ d_and +* u11 /p1 /g0 net-_u11-pad3_ d_and +* u13 /p1 /p0 net-_u13-pad3_ d_and +* u14 net-_u14-pad1_ /p0 net-_u14-pad3_ d_and +* u16 net-_u16-pad1_ net-_u16-pad2_ net-_u16-pad3_ d_or +* u15 net-_u14-pad1_ /g0 net-_u15-pad3_ d_and +* u8 net-_u2-pad3_ /p1 net-_u14-pad1_ d_and +* u6 net-_u2-pad3_ /g1 net-_u16-pad2_ d_and +* u22 net-_u16-pad3_ net-_u15-pad3_ net-_u22-pad3_ d_or +a1 [/g2 net-_u12-pad2_ ] net-_u12-pad3_ u12 +a2 [net-_u10-pad1_ /p0 ] net-_u10-pad3_ u10 +a3 [/g0 net-_u19-pad3_ ] net-_u24-pad3_ u24 +a4 [net-_u23-pad3_ net-_u20-pad3_ ] net-_u25-pad3_ u25 +a5 [net-_u12-pad3_ net-_u23-pad2_ ] net-_u23-pad3_ u23 +a6 [/p0 /cn ] net-_u19-pad3_ u19 +a7 [net-_u10-pad3_ /cn ] net-_u20-pad3_ u20 +a8 [/g1 net-_u11-pad3_ ] net-_u21-pad3_ u21 +a9 [net-_u21-pad3_ net-_u17-pad3_ ] net-_u26-pad3_ u26 +a10 [net-_u13-pad3_ /cn ] net-_u17-pad3_ u17 +a11 [net-_u14-pad3_ /cn ] net-_u18-pad3_ u18 +a12 [net-_u2-pad3_ net-_u13-pad3_ ] net-_u27-pad3_ u27 +a13 [net-_u22-pad3_ net-_u18-pad3_ ] net-_u28-pad3_ u28 +a14 [net-_u10-pad1_ /g0 ] net-_u23-pad2_ u9 +a15 [/p3 /g2 ] net-_u1-pad3_ u1 +a16 [/p3 /p2 ] net-_u2-pad3_ u2 +a17 [/p2 /g1 ] net-_u12-pad2_ u4 +a18 [/g3 net-_u1-pad3_ ] net-_u16-pad1_ u7 +a19 [/p2 /p1 ] net-_u10-pad1_ u5 +a20 [/p1 /g0 ] net-_u11-pad3_ u11 +a21 [/p1 /p0 ] net-_u13-pad3_ u13 +a22 [net-_u14-pad1_ /p0 ] net-_u14-pad3_ u14 +a23 [net-_u16-pad1_ net-_u16-pad2_ ] net-_u16-pad3_ u16 +a24 [net-_u14-pad1_ /g0 ] net-_u15-pad3_ u15 +a25 [net-_u2-pad3_ /p1 ] net-_u14-pad1_ u8 +a26 [net-_u2-pad3_ /g1 ] net-_u16-pad2_ u6 +a27 [net-_u16-pad3_ net-_u15-pad3_ ] net-_u22-pad3_ u22 +* Schematic Name: d_or, Ngspice Name: d_or +.model u12 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u24 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u25 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u21 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u26 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u28 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u1 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u7 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u16 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u22 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends AM2902 \ No newline at end of file diff --git a/library/SubcircuitLibrary/AM2902/AM2902_Previous_Values.xml b/library/SubcircuitLibrary/AM2902/AM2902_Previous_Values.xml new file mode 100644 index 000000000..0e90013ac --- /dev/null +++ b/library/SubcircuitLibrary/AM2902/AM2902_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_ord_andd_ord_ord_ord_andd_andd_ord_ord_andd_andd_andd_ord_andd_andd_andd_andd_ord_andd_andd_andd_andd_ord_andd_andd_andd_or \ No newline at end of file diff --git a/library/SubcircuitLibrary/AM2902/analysis b/library/SubcircuitLibrary/AM2902/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/AM2902/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4002/CD4002.cir b/library/SubcircuitLibrary/CD4002/CD4002.cir new file mode 100644 index 000000000..9188c3490 --- /dev/null +++ b/library/SubcircuitLibrary/CD4002/CD4002.cir @@ -0,0 +1,21 @@ +.title KiCad schematic +M8 Net-_M12-Pad2_ Net-_M8-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ mosfet_n +M9 Net-_M10-Pad1_ Net-_M8-Pad2_ Net-_M12-Pad2_ Net-_M10-Pad1_ mosfet_p +U1 Net-_M1-Pad2_ Net-_M3-Pad2_ Net-_M5-Pad2_ Net-_M8-Pad2_ Net-_M17-Pad1_ Net-_M10-Pad1_ Net-_M1-Pad3_ unconnected-_U1-Pad8_ PORT +M14 Net-_M10-Pad3_ Net-_M1-Pad1_ Net-_M14-Pad3_ Net-_M1-Pad3_ mosfet_n +M13 Net-_M13-Pad1_ Net-_M12-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ mosfet_n +M15 Net-_M14-Pad3_ Net-_M10-Pad2_ Net-_M15-Pad3_ Net-_M1-Pad3_ mosfet_n +M16 Net-_M15-Pad3_ Net-_M11-Pad2_ Net-_M13-Pad1_ Net-_M1-Pad3_ mosfet_n +M17 Net-_M17-Pad1_ Net-_M10-Pad3_ Net-_M1-Pad3_ Net-_M1-Pad3_ mosfet_n +M18 Net-_M10-Pad1_ Net-_M10-Pad3_ Net-_M17-Pad1_ Net-_M10-Pad1_ mosfet_p +M12 Net-_M10-Pad1_ Net-_M12-Pad2_ Net-_M10-Pad3_ Net-_M10-Pad1_ mosfet_p +M11 Net-_M10-Pad1_ Net-_M11-Pad2_ Net-_M10-Pad3_ Net-_M10-Pad1_ mosfet_p +M10 Net-_M10-Pad1_ Net-_M10-Pad2_ Net-_M10-Pad3_ Net-_M10-Pad1_ mosfet_p +M7 Net-_M10-Pad1_ Net-_M1-Pad1_ Net-_M10-Pad3_ Net-_M10-Pad1_ mosfet_p +M4 Net-_M10-Pad1_ Net-_M3-Pad2_ Net-_M10-Pad2_ Net-_M10-Pad1_ mosfet_p +M5 Net-_M11-Pad2_ Net-_M5-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ mosfet_n +M6 Net-_M10-Pad1_ Net-_M5-Pad2_ Net-_M11-Pad2_ Net-_M10-Pad1_ mosfet_p +M3 Net-_M10-Pad2_ Net-_M3-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ mosfet_n +M1 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ mosfet_n +M2 Net-_M10-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad1_ Net-_M10-Pad1_ mosfet_p +.end diff --git a/library/SubcircuitLibrary/CD4002/CD4002.cir.out b/library/SubcircuitLibrary/CD4002/CD4002.cir.out new file mode 100644 index 000000000..93d3c8b40 --- /dev/null +++ b/library/SubcircuitLibrary/CD4002/CD4002.cir.out @@ -0,0 +1,32 @@ +.title kicad schematic + +.include PMOS-5um.lib +.include NMOS-5um.lib +m8 net-_m12-pad2_ net-_m8-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m9 net-_m10-pad1_ net-_m8-pad2_ net-_m12-pad2_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +* u1 net-_m1-pad2_ net-_m3-pad2_ net-_m5-pad2_ net-_m8-pad2_ net-_m17-pad1_ net-_m10-pad1_ net-_m1-pad3_ unconnected-_u1-pad8_ port +m14 net-_m10-pad3_ net-_m1-pad1_ net-_m14-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m13 net-_m13-pad1_ net-_m12-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m15 net-_m14-pad3_ net-_m10-pad2_ net-_m15-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m16 net-_m15-pad3_ net-_m11-pad2_ net-_m13-pad1_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m17 net-_m17-pad1_ net-_m10-pad3_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m18 net-_m10-pad1_ net-_m10-pad3_ net-_m17-pad1_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m12 net-_m10-pad1_ net-_m12-pad2_ net-_m10-pad3_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m11 net-_m10-pad1_ net-_m11-pad2_ net-_m10-pad3_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m10 net-_m10-pad1_ net-_m10-pad2_ net-_m10-pad3_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m7 net-_m10-pad1_ net-_m1-pad1_ net-_m10-pad3_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m4 net-_m10-pad1_ net-_m3-pad2_ net-_m10-pad2_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m5 net-_m11-pad2_ net-_m5-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m6 net-_m10-pad1_ net-_m5-pad2_ net-_m11-pad2_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m3 net-_m10-pad2_ net-_m3-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m2 net-_m10-pad1_ net-_m1-pad2_ net-_m1-pad1_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +.tran 10e-06 25e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4002/CD4002.kicad_sch b/library/SubcircuitLibrary/CD4002/CD4002.kicad_sch new file mode 100644 index 000000000..6490f44a3 --- /dev/null +++ b/library/SubcircuitLibrary/CD4002/CD4002.kicad_sch @@ -0,0 +1,2099 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 5994e9af-7da8-45cb-a6f5-b2c1bbf43e4c) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Devices:mosfet_n" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "M" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "mosfet_n" (id 1) (at 2.54 -1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 7.62 -7.62 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 2.54 -5.08 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "mosfet_n_0_1" + (polyline + (pts + (xy 3.302 -7.366) + (xy 3.302 -6.35) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -6.858) + (xy 5.08 -6.858) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -5.588) + (xy 3.302 -4.572) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -5.08) + (xy 5.08 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.81) + (xy 3.302 -2.794) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.302) + (xy 5.08 -3.302) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -7.62) + (xy 5.08 -6.858) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -3.302) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.794 -6.985) + (xy 2.794 -3.175) + (xy 2.794 -3.175) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -5.08) + (xy 7.62 -5.08) + (xy 7.62 -6.35) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 -5.08) + (xy 4.572 -5.461) + (xy 4.572 -4.699) + (xy 3.556 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 3.81 -5.08) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "mosfet_n_1_1" + (pin passive line (at 5.08 0 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 -5.08 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -10.16 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -8.89 90) (length 2.4892) + (name "B" (effects (font (size 1.1938 1.1938)))) + (number "4" (effects (font (size 1.1938 1.1938)))) + ) + ) + ) + (symbol "eSim_Devices:mosfet_p" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "M" (id 0) (at -1.27 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "mosfet_p" (id 1) (at 1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 6.35 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 1.27 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "mosfet_p_0_1" + (polyline + (pts + (xy 2.032 -1.778) + (xy 3.81 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 -1.27) + (xy 2.032 -2.286) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 0) + (xy 3.81 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 0.508) + (xy 2.032 -0.508) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 1.778) + (xy 3.81 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 2.286) + (xy 2.032 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.778) + (xy 3.81 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 2.54) + (xy 3.81 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.524 1.905) + (xy 1.524 -1.905) + (xy 1.524 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 0) + (xy 6.35 0) + (xy 6.35 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 0) + (xy 2.54 -0.381) + (xy 2.54 0.381) + (xy 3.556 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 2.54 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "mosfet_p_1_1" + (pin passive line (at 3.81 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -3.81 0 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 6.35 -3.81 90) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 186.69 52.07) (diameter 0) (color 0 0 0 0) + (uuid 05643438-689a-415d-88a8-06ae93e6b976) + ) + (junction (at 161.29 29.21) (diameter 0) (color 0 0 0 0) + (uuid 0b0c0eef-10a6-4d76-b919-9d36b1c4f718) + ) + (junction (at 124.46 81.28) (diameter 0) (color 0 0 0 0) + (uuid 1143a35b-e475-424d-b5fe-1b82f7eb9a9a) + ) + (junction (at 158.75 172.72) (diameter 0) (color 0 0 0 0) + (uuid 16dc78f1-5f35-4545-914f-ce0ac59b61ce) + ) + (junction (at 120.65 146.05) (diameter 0) (color 0 0 0 0) + (uuid 1d0e36a6-d63f-4033-b46c-b9e6bf53d828) + ) + (junction (at 147.32 137.16) (diameter 0) (color 0 0 0 0) + (uuid 24039ae6-5c49-4df1-a935-c02353aff5ee) + ) + (junction (at 133.35 154.94) (diameter 0) (color 0 0 0 0) + (uuid 2c6cc3f4-dc3a-47ec-9e3b-f22b2656e2a1) + ) + (junction (at 133.35 31.75) (diameter 0) (color 0 0 0 0) + (uuid 40afaa5e-e42e-458e-93b2-d9f0ceb1bcb7) + ) + (junction (at 54.61 77.47) (diameter 0) (color 0 0 0 0) + (uuid 4422b68c-de6c-4d63-b921-4c7eccdc7201) + ) + (junction (at 82.55 100.33) (diameter 0) (color 0 0 0 0) + (uuid 44be2c30-5fd3-4642-b4d3-82cbb0d9b941) + ) + (junction (at 161.29 52.07) (diameter 0) (color 0 0 0 0) + (uuid 45cd2041-16c4-4258-90bd-c173d766ff69) + ) + (junction (at 95.25 101.6) (diameter 0) (color 0 0 0 0) + (uuid 4ad9c982-9ade-4f45-b0e9-0d37914b7340) + ) + (junction (at 207.01 52.07) (diameter 0) (color 0 0 0 0) + (uuid 4bcbb30d-73cc-4ad8-86f0-e19039b4f191) + ) + (junction (at 194.31 154.94) (diameter 0) (color 0 0 0 0) + (uuid 4d258721-5b77-4ef0-bb86-df8575c24524) + ) + (junction (at 66.04 58.42) (diameter 0) (color 0 0 0 0) + (uuid 52876121-b776-4bb9-ace0-8306180ab72b) + ) + (junction (at 124.46 29.21) (diameter 0) (color 0 0 0 0) + (uuid 5615395a-8fa3-4f9f-a1d1-5c845b3ecd16) + ) + (junction (at 186.69 29.21) (diameter 0) (color 0 0 0 0) + (uuid 572a9bb2-5968-4646-8cab-38ad4941448d) + ) + (junction (at 217.17 170.18) (diameter 0) (color 0 0 0 0) + (uuid 5bb3fd48-cf64-4a7d-844c-028ce53e0795) + ) + (junction (at 217.17 163.83) (diameter 0) (color 0 0 0 0) + (uuid 5e4533cb-e13d-409f-96c2-55d947c4c8b5) + ) + (junction (at 124.46 109.22) (diameter 0) (color 0 0 0 0) + (uuid 66c7ed14-af5b-461f-98d0-a301aee0b8f1) + ) + (junction (at 95.25 120.65) (diameter 0) (color 0 0 0 0) + (uuid 70605048-49ad-44e3-9b0a-3bf088e0cdd3) + ) + (junction (at 255.27 78.74) (diameter 0) (color 0 0 0 0) + (uuid 71475b63-c722-4db3-b206-bdfaf908970c) + ) + (junction (at 207.01 31.75) (diameter 0) (color 0 0 0 0) + (uuid 714f0b2d-52cc-4764-8355-ce8123b8c635) + ) + (junction (at 120.65 172.72) (diameter 0) (color 0 0 0 0) + (uuid 72a1ae4f-d0f3-4382-ad00-89a266abc08e) + ) + (junction (at 243.84 60.96) (diameter 0) (color 0 0 0 0) + (uuid 7d3cd7ec-e570-46b3-98f5-0274d0e552b5) + ) + (junction (at 173.99 127) (diameter 0) (color 0 0 0 0) + (uuid 872a0fb4-066d-4210-88e5-905ede0d4e26) + ) + (junction (at 186.69 31.75) (diameter 0) (color 0 0 0 0) + (uuid 89a41e10-5c17-474a-8214-55dc917bcff2) + ) + (junction (at 255.27 43.18) (diameter 0) (color 0 0 0 0) + (uuid 8cdbf462-a632-446f-a546-cedf191a7679) + ) + (junction (at 95.25 172.72) (diameter 0) (color 0 0 0 0) + (uuid 8faf4888-e182-4ae9-9517-c7d23a64129e) + ) + (junction (at 217.17 172.72) (diameter 0) (color 0 0 0 0) + (uuid 978dc3ba-297a-4fcf-8c89-75e4818cc759) + ) + (junction (at 147.32 154.94) (diameter 0) (color 0 0 0 0) + (uuid 9fd63dd9-0898-497b-b337-3f016ae02ae7) + ) + (junction (at 66.04 95.25) (diameter 0) (color 0 0 0 0) + (uuid a6a02501-2dc9-451f-affc-b1279396b5ae) + ) + (junction (at 106.68 125.73) (diameter 0) (color 0 0 0 0) + (uuid a74e5d4f-16a3-435f-b4c9-42325a422cf8) + ) + (junction (at 120.65 127) (diameter 0) (color 0 0 0 0) + (uuid a86d251e-b655-4dbc-9009-7ce20cfe1361) + ) + (junction (at 66.04 77.47) (diameter 0) (color 0 0 0 0) + (uuid af6d0a12-00d9-4d01-a9dd-65060200b164) + ) + (junction (at 147.32 172.72) (diameter 0) (color 0 0 0 0) + (uuid b0a87be2-1f66-43e0-bf8a-dbdb2006d112) + ) + (junction (at 147.32 101.6) (diameter 0) (color 0 0 0 0) + (uuid b6877cac-11dc-42d3-afb5-5ae366bc69b9) + ) + (junction (at 255.27 60.96) (diameter 0) (color 0 0 0 0) + (uuid bddb2e1e-3092-4809-8da9-9f506311e492) + ) + (junction (at 116.84 77.47) (diameter 0) (color 0 0 0 0) + (uuid bf55a84c-4517-40cd-8e76-77f46149c5c5) + ) + (junction (at 217.17 168.91) (diameter 0) (color 0 0 0 0) + (uuid d09de999-3291-45f3-a0b9-149d5be509ac) + ) + (junction (at 217.17 166.37) (diameter 0) (color 0 0 0 0) + (uuid e0a1cadf-f193-4a7b-bfe7-36c22097a18e) + ) + (junction (at 95.25 83.82) (diameter 0) (color 0 0 0 0) + (uuid e3a66195-d12b-462d-b6db-b95def36cd06) + ) + (junction (at 207.01 29.21) (diameter 0) (color 0 0 0 0) + (uuid e61da1cc-eb8c-47fe-ba12-178983adf292) + ) + (junction (at 147.32 170.18) (diameter 0) (color 0 0 0 0) + (uuid ec57c237-9c97-4a9c-926d-dde5f6674f32) + ) + (junction (at 161.29 31.75) (diameter 0) (color 0 0 0 0) + (uuid f24f3c66-0b7a-49c6-8432-a893c77c0cfd) + ) + (junction (at 207.01 60.96) (diameter 0) (color 0 0 0 0) + (uuid f707c967-72a6-4896-a79d-b04a7883c8f6) + ) + (junction (at 133.35 29.21) (diameter 0) (color 0 0 0 0) + (uuid f8307b24-5c76-483e-b7f8-16cbee58fe6b) + ) + (junction (at 171.45 29.21) (diameter 0) (color 0 0 0 0) + (uuid f9e6e7d7-fbe1-4fc4-b493-acf8afb7c102) + ) + (junction (at 120.65 111.76) (diameter 0) (color 0 0 0 0) + (uuid fab8c805-9d9b-4b3c-b016-e008cfb80a86) + ) + + (no_connect (at 279.4 105.41) (uuid 6a4b7279-9f16-4c06-afe7-40d735f5fa31)) + + (wire (pts (xy 186.69 29.21) (xy 207.01 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 024fbdc8-b0fd-48b7-8035-f7f1dbf8ea7e) + ) + (wire (pts (xy 147.32 172.72) (xy 120.65 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05758d5f-bfed-4f6a-a441-908b6954ab2c) + ) + (wire (pts (xy 207.01 67.31) (xy 218.44 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06e4b65a-b13f-41cc-a0ed-87853000a24c) + ) + (wire (pts (xy 133.35 154.94) (xy 133.35 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 074cadbe-1ce8-4551-975d-383b174fc24b) + ) + (wire (pts (xy 120.65 111.76) (xy 120.65 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08eda130-c1ca-43dd-b1af-4992da132519) + ) + (wire (pts (xy 102.87 83.82) (xy 95.25 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08fa2aff-cd63-4438-a584-dc185a726524) + ) + (wire (pts (xy 123.19 146.05) (xy 120.65 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b623afd-a376-485f-87fa-ca1306234703) + ) + (wire (pts (xy 113.03 118.11) (xy 106.68 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e77e663-e51b-4ce4-9a1b-33bb657488f5) + ) + (wire (pts (xy 255.27 29.21) (xy 255.27 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f019baa-9660-4ce3-882e-2bd8de72ac94) + ) + (wire (pts (xy 77.47 58.42) (xy 66.04 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fb62aef-375d-4230-910b-bc8efaac8112) + ) + (wire (pts (xy 123.19 121.92) (xy 127 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fdcde82-4fb6-4d61-9152-8e96fac4f7b5) + ) + (wire (pts (xy 152.4 137.16) (xy 147.32 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1291d170-ad18-4349-927c-75ec5cea47a8) + ) + (wire (pts (xy 125.73 38.1) (xy 116.84 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12dd4389-e7c7-4da1-a440-bc75e417169d) + ) + (wire (pts (xy 220.98 81.28) (xy 228.6 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 133cb877-628d-464f-aa5b-3ff28dc417b2) + ) + (wire (pts (xy 220.98 168.91) (xy 217.17 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 139ea4ec-3b3f-497c-bb30-abd0fb0948d7) + ) + (wire (pts (xy 260.35 55.88) (xy 260.35 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1463f5c3-2283-4d66-bf7e-8feaad7f1326) + ) + (wire (pts (xy 97.79 95.25) (xy 102.87 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ab24b84-483a-47c4-9412-5c07fab091e6) + ) + (wire (pts (xy 161.29 29.21) (xy 161.29 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b8f4101-4dae-4a41-993f-a2cd2ae43f41) + ) + (wire (pts (xy 66.04 73.66) (xy 66.04 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bc09346-3153-4e6d-858b-d65973216817) + ) + (wire (pts (xy 106.68 118.11) (xy 106.68 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c1fba07-ef74-4396-8296-e8f77947fcbe) + ) + (wire (pts (xy 66.04 63.5) (xy 66.04 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cc9293b-48e5-4661-8c3a-d75692650f33) + ) + (wire (pts (xy 255.27 60.96) (xy 276.86 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2093425e-8b7b-4616-9ae4-0faddfe150bd) + ) + (wire (pts (xy 147.32 168.91) (xy 147.32 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2597fbf5-9901-4022-919e-930a130c72a5) + ) + (wire (pts (xy 120.65 172.72) (xy 95.25 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 262e3d27-6c6c-4342-a67b-ec935e0ab027) + ) + (wire (pts (xy 220.98 130.81) (xy 220.98 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26acaa11-f2d1-4573-9ece-5b6a4ac61bea) + ) + (wire (pts (xy 27.94 125.73) (xy 106.68 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28a92a5d-3fa3-45ad-9644-482f587211ba) + ) + (wire (pts (xy 95.25 101.6) (xy 147.32 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e593e80-2b25-4fba-a14a-8d41efad2eb8) + ) + (wire (pts (xy 217.17 163.83) (xy 217.17 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f3107fe-d6cc-4103-91f7-0f417398b813) + ) + (wire (pts (xy 257.81 55.88) (xy 260.35 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f455baf-5b88-4036-9f8d-1614f658a33a) + ) + (wire (pts (xy 26.67 100.33) (xy 82.55 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fca1f73-c1dd-412a-970a-afaad1d74acb) + ) + (wire (pts (xy 82.55 91.44) (xy 82.55 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3006dd79-4931-42a1-ae80-7325ba3590d5) + ) + (wire (pts (xy 147.32 170.18) (xy 147.32 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30725fc4-d4e2-44de-8ec3-9f73c5493c1d) + ) + (wire (pts (xy 179.07 38.1) (xy 173.99 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 32846103-0620-4758-9c09-53660ccb2bf3) + ) + (wire (pts (xy 218.44 82.55) (xy 218.44 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33e5445c-1817-4006-bc3c-3f6c6e45c78f) + ) + (wire (pts (xy 173.99 127) (xy 210.82 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36c953a5-827a-450a-a0e2-12a1ff395420) + ) + (wire (pts (xy 158.75 184.15) (xy 163.83 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37582f4b-abc6-468a-b254-f21ed8c0bbed) + ) + (wire (pts (xy 133.35 29.21) (xy 161.29 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ac4f703-2775-4e3a-9b31-ad87ccaef0a1) + ) + (wire (pts (xy 133.35 31.75) (xy 133.35 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3af5ff19-cfa5-4c5a-8717-d14ccf978416) + ) + (wire (pts (xy 247.65 52.07) (xy 243.84 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bed43f0-fed9-4669-8c16-712e6c431504) + ) + (wire (pts (xy 161.29 52.07) (xy 186.69 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bf68ade-663f-4549-9be1-c3233b8ea436) + ) + (wire (pts (xy 220.98 116.84) (xy 223.52 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e4e6825-9990-42cd-8854-76c6dd800d8c) + ) + (wire (pts (xy 213.36 41.91) (xy 213.36 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f480a58-f738-4144-aa13-037938c8df9b) + ) + (wire (pts (xy 82.55 100.33) (xy 82.55 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40b42317-f5f8-473e-a5b1-fcde963135ea) + ) + (wire (pts (xy 66.04 29.21) (xy 124.46 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40c80605-7500-4c62-ad5c-8953c32d8507) + ) + (wire (pts (xy 133.35 163.83) (xy 139.7 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42ef5128-acc8-4fd9-9ec1-6ece87154450) + ) + (wire (pts (xy 191.77 31.75) (xy 186.69 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44c760f0-dd49-4280-9640-06039d7f2f2d) + ) + (wire (pts (xy 29.21 154.94) (xy 133.35 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a4b5d40-e4f7-4e7d-958e-3b2c36747811) + ) + (wire (pts (xy 106.68 125.73) (xy 106.68 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b9774a0-79db-47e4-93ab-b68d315399c8) + ) + (wire (pts (xy 255.27 172.72) (xy 217.17 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f7a03e6-26e5-4bc3-b5e7-733412db47fa) + ) + (wire (pts (xy 217.17 163.83) (xy 228.6 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fcef261-156b-457f-aa29-6ac4ebde16a3) + ) + (wire (pts (xy 106.68 135.89) (xy 113.03 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5171c5b9-d432-44b1-b7d4-a2409919234a) + ) + (wire (pts (xy 123.19 139.7) (xy 123.19 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54ad55a7-55aa-47c9-91a1-d43ea414bd96) + ) + (wire (pts (xy 95.25 86.36) (xy 95.25 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56a50dba-a745-4278-9cf5-40ca5986f273) + ) + (wire (pts (xy 194.31 38.1) (xy 194.31 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5789931c-e64c-43b2-a8a9-570d72de7d63) + ) + (wire (pts (xy 77.47 72.39) (xy 77.47 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5811dbbb-e555-4714-ae85-f36ef7b93024) + ) + (wire (pts (xy 124.46 29.21) (xy 133.35 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 591cb0fb-69a4-4a6d-b40a-ebbec8cccebf) + ) + (wire (pts (xy 186.69 52.07) (xy 207.01 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5af727f7-e0ad-407f-941f-987962ef952c) + ) + (wire (pts (xy 218.44 149.86) (xy 217.17 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5be4f36f-682e-4536-a065-63921e9e8618) + ) + (wire (pts (xy 133.35 52.07) (xy 161.29 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ed94d5f-91c8-4302-a705-a706a177635f) + ) + (wire (pts (xy 147.32 137.16) (xy 147.32 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f8aed3a-f820-4072-9cec-32ab9c59b6fb) + ) + (wire (pts (xy 220.98 105.41) (xy 220.98 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60e4e44d-50d9-4741-8b4e-fbedbc8d3e28) + ) + (wire (pts (xy 127 111.76) (xy 120.65 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 610210d8-2048-4564-9132-3b42bc6bd8f8) + ) + (wire (pts (xy 124.46 109.22) (xy 147.32 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61990f02-1dbc-4303-914d-34eb7dfcca86) + ) + (wire (pts (xy 124.46 81.28) (xy 124.46 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6337d22c-175c-4480-a3b0-9d5e4cd7640e) + ) + (wire (pts (xy 228.6 81.28) (xy 228.6 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 686f4aca-513b-4a1b-968e-39a1a722a2b9) + ) + (wire (pts (xy 223.52 170.18) (xy 217.17 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 689f2436-b8a2-46fe-a261-75b7331ba8f6) + ) + (wire (pts (xy 31.75 77.47) (xy 54.61 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68cdc922-6e7c-454c-8ee3-914dcc4a3a83) + ) + (wire (pts (xy 139.7 146.05) (xy 133.35 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69fbca82-41cb-4a90-a860-23a5299c0b3c) + ) + (wire (pts (xy 116.84 38.1) (xy 116.84 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a6231b1-14f5-4e61-93bc-ea51109f643e) + ) + (wire (pts (xy 219.71 166.37) (xy 217.17 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bd92fdb-f863-4462-b29c-3fe362686ecc) + ) + (wire (pts (xy 54.61 68.58) (xy 54.61 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e87003b-ef8c-44da-8192-4c95dc8b01cb) + ) + (wire (pts (xy 135.89 41.91) (xy 138.43 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70b26a96-a695-4834-b725-6c18e67ea246) + ) + (wire (pts (xy 217.17 160.02) (xy 217.17 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 731be41f-7975-4d40-a275-01699317ab1d) + ) + (wire (pts (xy 186.69 29.21) (xy 186.69 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77b1e717-24b4-4998-b124-e47bcf0aa014) + ) + (wire (pts (xy 95.25 81.28) (xy 124.46 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77e60248-fdbf-4502-a2b3-80ba215da8dc) + ) + (wire (pts (xy 171.45 29.21) (xy 186.69 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78f94941-92cd-4420-ad13-a4c149126446) + ) + (wire (pts (xy 120.65 127) (xy 120.65 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d9b98ff-aa71-4811-9f8b-7114e409d966) + ) + (wire (pts (xy 68.58 90.17) (xy 68.58 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e065405-2480-43fb-838c-1c800702ec97) + ) + (wire (pts (xy 54.61 77.47) (xy 54.61 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e112c32-d207-41a9-8549-dda361dda4bc) + ) + (wire (pts (xy 163.83 44.45) (xy 166.37 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e45cf97-2cd4-46cd-9bec-54d611bf37a8) + ) + (wire (pts (xy 120.65 109.22) (xy 120.65 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e72032e-b8b5-4b17-8e19-37a451411c65) + ) + (wire (pts (xy 257.81 78.74) (xy 255.27 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f3f6750-6154-4603-a33f-a4dd169cd7a0) + ) + (wire (pts (xy 161.29 29.21) (xy 171.45 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8049bfca-ca7c-40f7-82f1-535274a0ddf3) + ) + (wire (pts (xy 138.43 31.75) (xy 133.35 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80cf85e1-5ebd-4096-8701-c8302a64c646) + ) + (wire (pts (xy 166.37 31.75) (xy 161.29 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81ab7087-7e0b-455e-8afd-ad680fc8d842) + ) + (wire (pts (xy 138.43 41.91) (xy 138.43 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 834727dd-0048-4963-a5df-9964e6187b13) + ) + (wire (pts (xy 124.46 29.21) (xy 124.46 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 834a9710-d4a8-44ab-aaf2-79926de2e30b) + ) + (wire (pts (xy 217.17 168.91) (xy 217.17 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84cc4248-ffac-4c9c-95d6-443c07642846) + ) + (wire (pts (xy 147.32 172.72) (xy 158.75 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 873ac0e1-73fe-48c8-a1e1-5118225c80ac) + ) + (wire (pts (xy 102.87 95.25) (xy 102.87 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88ec47cc-aadf-4233-acd0-131c8eef66be) + ) + (wire (pts (xy 213.36 31.75) (xy 207.01 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ac1beb4-ee58-4bad-a7d6-76ed0a4bb29c) + ) + (wire (pts (xy 87.63 91.44) (xy 82.55 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bf2846e-b1e1-4ce1-8409-07bd655c61be) + ) + (wire (pts (xy 219.71 158.75) (xy 219.71 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d2dc7cd-7266-4c1a-8bbb-88bbbae275dc) + ) + (wire (pts (xy 161.29 31.75) (xy 161.29 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d8e000b-5039-4da0-a3f2-6f23932600ed) + ) + (wire (pts (xy 149.86 170.18) (xy 147.32 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ee35486-0263-4f42-8371-9669a110ef52) + ) + (wire (pts (xy 95.25 83.82) (xy 95.25 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f3e7c57-a741-40f8-803a-f075a0b5267a) + ) + (wire (pts (xy 243.84 69.85) (xy 247.65 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fca3353-1e63-477c-923e-541b3dc6a44e) + ) + (wire (pts (xy 147.32 151.13) (xy 147.32 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fd3138e-eb2b-4c2b-9361-5a2e9e86fc0b) + ) + (wire (pts (xy 207.01 31.75) (xy 207.01 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90578544-b01b-42cc-a9f3-6b72f9afc159) + ) + (wire (pts (xy 255.27 43.18) (xy 255.27 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 938dc93e-aa51-430e-a1dd-55c4f431ac10) + ) + (wire (pts (xy 194.31 38.1) (xy 199.39 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96dfbd2e-73e1-4fe8-92b2-b5af81dc8b69) + ) + (wire (pts (xy 68.58 72.39) (xy 77.47 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9905391e-3ad9-420a-87c0-d6cc104f7b10) + ) + (wire (pts (xy 191.77 41.91) (xy 191.77 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c4120cd-cbdb-4c69-bceb-78c99dc86c5c) + ) + (wire (pts (xy 163.83 41.91) (xy 163.83 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cc2ef35-8dc2-4935-ba8c-673c65231e4c) + ) + (wire (pts (xy 260.35 43.18) (xy 255.27 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e01d618-243c-4fdd-8d0f-01141263d2df) + ) + (wire (pts (xy 218.44 67.31) (xy 218.44 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0cbe84b-123b-456a-a918-15afb7715547) + ) + (wire (pts (xy 243.84 60.96) (xy 243.84 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a18e29d7-bc65-4a52-a3fa-c94e6e0e1eeb) + ) + (wire (pts (xy 66.04 172.72) (xy 66.04 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2dabb4b-63a6-4a23-86f0-5284d9663ecb) + ) + (wire (pts (xy 255.27 78.74) (xy 255.27 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a79ccbd9-e788-4c6e-a680-a2b036cf1f1c) + ) + (wire (pts (xy 120.65 109.22) (xy 124.46 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a92e2489-3b54-4a6a-a825-5fe72e7319e4) + ) + (wire (pts (xy 66.04 58.42) (xy 66.04 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab25420a-9857-44be-9146-87fad227ccf6) + ) + (wire (pts (xy 66.04 77.47) (xy 116.84 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae381586-688d-43c9-99b0-4d46faa04954) + ) + (wire (pts (xy 189.23 41.91) (xy 191.77 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aebcf044-3710-446d-816c-73401fe3f9af) + ) + (wire (pts (xy 255.27 60.96) (xy 255.27 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b27c0dcd-520a-4993-82d2-f09b53c8fdc5) + ) + (wire (pts (xy 149.86 167.64) (xy 149.86 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b577699d-3db3-4b35-950f-239edaba8e27) + ) + (wire (pts (xy 158.75 172.72) (xy 217.17 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5ca2f10-93dd-4111-9136-a82e892d2144) + ) + (wire (pts (xy 218.44 106.68) (xy 218.44 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b722b7c0-4892-4509-b272-5601b1349c9b) + ) + (wire (pts (xy 120.65 146.05) (xy 120.65 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b839bdc3-f505-419b-a767-2e7faabd2f2c) + ) + (wire (pts (xy 133.35 43.18) (xy 133.35 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9119980-0bff-45ad-8e98-9747e584ca42) + ) + (wire (pts (xy 194.31 154.94) (xy 209.55 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b97b35e0-55b6-459f-bbb9-2a82d0449455) + ) + (wire (pts (xy 257.81 73.66) (xy 257.81 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba3253a9-9a43-4b9e-a261-28ec04fe57d2) + ) + (wire (pts (xy 66.04 95.25) (xy 66.04 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bacee837-ba8b-424c-b95f-8abbca76d5c9) + ) + (wire (pts (xy 95.25 172.72) (xy 66.04 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd43172d-daea-48fa-80d7-c39211592fe2) + ) + (wire (pts (xy 207.01 60.96) (xy 207.01 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid beb69232-b8b2-4ce0-bdad-f8b0e49d8078) + ) + (wire (pts (xy 149.86 149.86) (xy 152.4 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfc24d65-5069-4578-a0b2-c48d60b2d346) + ) + (wire (pts (xy 255.27 74.93) (xy 255.27 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bff48bae-8366-4906-adca-f647c98e3b01) + ) + (wire (pts (xy 95.25 114.3) (xy 95.25 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c013804d-2302-4ee2-809b-1310ad332297) + ) + (wire (pts (xy 95.25 101.6) (xy 95.25 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1f2fa70-3b8f-46e1-bc70-0d9cea275129) + ) + (wire (pts (xy 133.35 146.05) (xy 133.35 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c23ac24c-1bc4-4af0-9ab3-adf5f9644fd8) + ) + (wire (pts (xy 120.65 127) (xy 173.99 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c276fa50-8c4e-471b-8827-2717676cbc88) + ) + (wire (pts (xy 82.55 109.22) (xy 87.63 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3f4ad71-d56d-4cfc-8644-523a48baaf5d) + ) + (wire (pts (xy 223.52 116.84) (xy 223.52 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c86039b5-8ec5-4832-b320-ec21d627974b) + ) + (wire (pts (xy 153.67 38.1) (xy 147.32 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c91bc776-5238-4262-afb5-2a0542694bde) + ) + (wire (pts (xy 207.01 43.18) (xy 207.01 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c99efa8a-6b85-41ce-a96e-7acb0bc069eb) + ) + (wire (pts (xy 97.79 120.65) (xy 95.25 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9a4f733-b90a-4060-9f9d-64c12f917365) + ) + (wire (pts (xy 207.01 29.21) (xy 255.27 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9cf4e8d-7d32-4a1c-a1c4-8d076e745019) + ) + (wire (pts (xy 147.32 38.1) (xy 147.32 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca5d5e8a-0835-47c3-b145-1a48ce6e7e76) + ) + (wire (pts (xy 217.17 170.18) (xy 217.17 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd116a58-b6c5-46e8-a0f6-740b5959d7d3) + ) + (wire (pts (xy 120.65 123.19) (xy 120.65 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd18e7bd-c244-4a9b-b7c1-4bb0af019db3) + ) + (wire (pts (xy 120.65 140.97) (xy 120.65 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdb21f26-1770-4c45-8f97-889782671f15) + ) + (wire (pts (xy 147.32 154.94) (xy 194.31 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d012f399-20ee-4cfe-a1d2-87e74a804659) + ) + (wire (pts (xy 147.32 109.22) (xy 147.32 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1ddb0ec-df86-403b-82b7-8a07b1b91563) + ) + (wire (pts (xy 255.27 57.15) (xy 255.27 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d252d733-059b-411e-ab24-45cab6b8d0f8) + ) + (wire (pts (xy 95.25 96.52) (xy 95.25 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d29e96d3-eaf9-4b28-bda0-c971b64ed916) + ) + (wire (pts (xy 171.45 29.21) (xy 171.45 13.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d315dac7-5e4e-45c2-bbc0-647389fbee22) + ) + (wire (pts (xy 54.61 86.36) (xy 58.42 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d36efde7-4d0b-4159-99ab-a8fe096f3e96) + ) + (wire (pts (xy 209.55 41.91) (xy 213.36 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4ba7b03-f6a0-46ff-b9d5-99db190b8596) + ) + (wire (pts (xy 68.58 95.25) (xy 66.04 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db9de82b-bad0-49dd-b424-1f5bf53fe906) + ) + (wire (pts (xy 161.29 43.18) (xy 161.29 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dce94a5f-4a0d-4fa3-b402-b8c63942cf4e) + ) + (wire (pts (xy 58.42 68.58) (xy 54.61 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e00b57e3-eea2-4c21-9809-924a3511c3b7) + ) + (wire (pts (xy 218.44 132.08) (xy 218.44 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e186bd7d-9cb2-4dd7-bb13-36f98798bc8c) + ) + (wire (pts (xy 173.99 38.1) (xy 173.99 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2eaf162-de79-446d-aa8c-4fbdaeb621b0) + ) + (wire (pts (xy 207.01 29.21) (xy 207.01 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3f4dd56-85a0-41c2-b313-999dc9dcbb80) + ) + (wire (pts (xy 127 121.92) (xy 127 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e52b6cfc-ac90-43a6-9b96-dc9d4f9f6841) + ) + (wire (pts (xy 207.01 60.96) (xy 243.84 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e53d265d-20b4-461f-89c2-2a43b05a74c1) + ) + (wire (pts (xy 243.84 52.07) (xy 243.84 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e57ba620-3016-4a2f-9ba3-31fb5d8883cd) + ) + (wire (pts (xy 186.69 43.18) (xy 186.69 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6ad6ff3-6a79-433b-9601-88fd003316e4) + ) + (wire (pts (xy 166.37 44.45) (xy 166.37 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8cbc5f8-d8f3-4cf3-b7b9-b6a2eefc1b25) + ) + (wire (pts (xy 171.45 13.97) (xy 186.69 13.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb0b4cde-181d-472d-a6aa-ad8c729e5870) + ) + (wire (pts (xy 186.69 31.75) (xy 186.69 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec2bf8df-2cf2-4f3c-b195-1e88ad0649dc) + ) + (wire (pts (xy 152.4 149.86) (xy 152.4 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ece9d2bb-a587-4875-b8f2-2aa505842620) + ) + (wire (pts (xy 66.04 77.47) (xy 66.04 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef3aa37e-6198-4bb8-98fa-7d0c00e7cc4d) + ) + (wire (pts (xy 271.78 105.41) (xy 279.4 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef8bfe2c-e62b-4a16-b926-e10fcedfc55e) + ) + (wire (pts (xy 217.17 166.37) (xy 217.17 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0c9fba1-2e03-48d9-890f-10e1b346ce71) + ) + (wire (pts (xy 147.32 101.6) (xy 210.82 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f332b427-b432-4404-97a6-f5cd243100d1) + ) + (wire (pts (xy 158.75 172.72) (xy 158.75 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3384261-a840-4aea-809f-616f2a6dd39f) + ) + (wire (pts (xy 116.84 77.47) (xy 210.82 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f60885df-27ae-4d83-8640-41512a5eebfa) + ) + (wire (pts (xy 133.35 29.21) (xy 133.35 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9eee393-9dd0-41e1-8920-6b7c5bb8db4d) + ) + (wire (pts (xy 97.79 113.03) (xy 97.79 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa761089-a5a5-45a5-b563-934458bb4030) + ) + (wire (pts (xy 147.32 154.94) (xy 147.32 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fac59d20-a4af-481a-9124-143935f9a2e7) + ) + (wire (pts (xy 95.25 120.65) (xy 95.25 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd408d78-aca8-4a22-9cde-38513d4e8206) + ) + (wire (pts (xy 207.01 52.07) (xy 207.01 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff159221-d905-412c-ab58-a6fb3e1ad4b0) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 20.32 100.33 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0338be10-35a9-4ad7-b6f8-6b2f9ba3c3d7) + (property "Reference" "U1" (id 0) (at 20.955 95.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 20.955 97.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 20.32 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 20.32 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c34f3f75-7dda-4bff-ab80-2cbc21082009)) + (pin "2" (uuid 75ced60a-1720-4280-aec3-afe0f1dc37ac)) + (pin "3" (uuid 2af85bed-f936-410c-bfda-2e15d68a7d76)) + (pin "4" (uuid 7a7cbc6f-b42b-4cf8-b86e-2a6d13002821)) + (pin "5" (uuid b049a667-0c11-44f3-9f4e-9c788a7686fc)) + (pin "6" (uuid 35fa5fc6-7c9e-442e-8b4a-df20d2650bc0)) + (pin "7" (uuid 4ef46460-f524-40e8-8d1e-f85916d3ba8e)) + (pin "8" (uuid dbf33d65-dc42-487c-839b-b5541674c27d)) + (pin "9" (uuid 59afad15-bb97-4adf-ba86-167b2f2b7811)) + (pin "10" (uuid 95deae5b-ff7c-4f61-9d97-5e1393eca6c3)) + (pin "11" (uuid 610708c3-9686-48bc-9083-907c1e36ac49)) + (pin "12" (uuid 81f942c3-ae77-4b66-88d7-2ebf7cb2a200)) + (pin "13" (uuid c5ce43cf-7bfa-4e2f-b1c2-1a4d8e3e150e)) + (pin "14" (uuid d7b17f64-c682-4680-b748-566178470c9b)) + (pin "15" (uuid f269e4b0-1ea1-4d4c-aabd-6c73f0ea125f)) + (pin "16" (uuid ecaa5727-89be-4654-b63a-2756caf0847e)) + (pin "17" (uuid 77822e63-d634-4435-813e-f64810f99cf8)) + (pin "18" (uuid 4a827708-4a7b-4acd-b496-dfb6c5cc92ba)) + (pin "19" (uuid defa5bc0-675d-4438-8dc0-37243cafdd1c)) + (pin "20" (uuid 60142a41-e691-4e48-bbcc-3733a0f78156)) + (pin "21" (uuid 064ce79d-c31b-4189-b322-78b0d3171ab3)) + (pin "22" (uuid 46b0239e-3286-493b-ad40-7bd25bf8475e)) + (pin "23" (uuid 96c48402-b393-4d45-b8bb-94c6965940fe)) + (pin "24" (uuid b317eda4-a766-4f80-a73b-1dcc25bed29c)) + (pin "25" (uuid c5c2b08b-c4a4-435a-95ed-4f8c59d78a8d)) + (pin "26" (uuid f4e1f634-d496-4cb0-900c-f7a7705f455f)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_n") (at 90.17 104.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04dc0b78-7072-443f-a309-586d92945e7c) + (property "Reference" "M3" (id 0) (at 99.06 107.9499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_n" (id 1) (at 99.06 110.4899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 97.79 111.76 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 92.71 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 719b9904-cc24-44f5-a25e-034b731d2e3a)) + (pin "2" (uuid f055c3e1-3b57-4fea-87c7-6433217da93c)) + (pin "3" (uuid 226a3d17-4106-4438-8900-b72396397f90)) + (pin "4" (uuid 9f48618b-c5c6-488a-b405-4d74cff67088)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 25.4 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06f124c7-c7a6-419b-a6d5-e8c897ffc8e8) + (property "Reference" "U1" (id 0) (at 26.035 72.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 26.035 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 25.4 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 25.4 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b690dfbf-860f-4989-bdf3-1b6559b4014f)) + (pin "2" (uuid 75388a7a-ba87-47a3-980b-0f37390ef219)) + (pin "3" (uuid 4a0a4025-695b-43ea-949c-e6b6560426dd)) + (pin "4" (uuid c045cdb3-a2bf-4aa7-bfb5-d5ff36408167)) + (pin "5" (uuid c205f0c3-aa74-453c-8d00-7758901d9cdd)) + (pin "6" (uuid 02046513-9ed8-4d4b-8dc6-c0bfa1420494)) + (pin "7" (uuid d71426d0-3ee9-4013-8b36-ab50b03fd05e)) + (pin "8" (uuid 317e13aa-5013-488d-942a-6b2bf3587c16)) + (pin "9" (uuid 7c0a6b92-3cdf-4dc9-85d2-c75f2e20c4ed)) + (pin "10" (uuid f6917a8b-6ea2-45cb-8366-37ae897ace8e)) + (pin "11" (uuid 698238d5-dc26-44a9-84e3-7ca72670a5be)) + (pin "12" (uuid 7f7178fa-1416-4da7-a661-ef02ca1d5faa)) + (pin "13" (uuid 1bb30378-f896-43a2-a530-b395191044c8)) + (pin "14" (uuid 2365ed48-5016-4b07-96ca-68e6e92ec5c9)) + (pin "15" (uuid 50637684-d7cb-4a26-ac31-27e610dc43a4)) + (pin "16" (uuid e42e6bb6-aec7-4b79-a06a-2df8544501c2)) + (pin "17" (uuid aa0725bf-da8a-4d5b-a4f7-63f410f2843d)) + (pin "18" (uuid bc872628-8a49-41a2-afc8-05719924ca70)) + (pin "19" (uuid d2ac502b-e0f4-4ecc-9704-8493a3cae0a5)) + (pin "20" (uuid 7a988ac2-2388-4ede-b66d-a932505ad1a1)) + (pin "21" (uuid 9545d438-0fb1-44b5-a08f-42ab4d2aa5b5)) + (pin "22" (uuid 7a01f5dd-346e-4b85-aec9-3200e9ef0174)) + (pin "23" (uuid 7574618a-964c-4791-b649-16be8cd0e364)) + (pin "24" (uuid 21e8a5c0-c9ad-47f6-9e4d-b902a2166777)) + (pin "25" (uuid e4b02bf4-b825-4fa2-b819-f800066bfdfd)) + (pin "26" (uuid 0b085f62-3f36-4a6d-9f92-b18c3dc48f2f)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_n") (at 115.57 130.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 08533bbb-1bb2-455e-91df-aea38af9f2bf) + (property "Reference" "M5" (id 0) (at 124.46 134.6199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_n" (id 1) (at 124.46 137.1599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 123.19 138.43 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 118.11 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 94ee6bc7-d53e-4775-bc92-d13bddc92d4e)) + (pin "2" (uuid 61499023-296e-4023-829d-de3a4459ef0d)) + (pin "3" (uuid fb379339-ee5a-46be-8abc-89341f91292e)) + (pin "4" (uuid 1d7bc844-753a-4ea0-81bf-47103698e4af)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_p") (at 62.23 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0b13a655-6e5f-47b1-a0b7-559300261027) + (property "Reference" "M2" (id 0) (at 69.85 67.3099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_p" (id 1) (at 69.85 69.8499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 68.58 66.04 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 63.5 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53f85618-8711-474a-a01b-850b37bd1d17)) + (pin "2" (uuid f739aa89-ee50-4cd2-be40-b97e218a7798)) + (pin "3" (uuid 9c10c294-fb43-4ad6-a061-27c674dae4e0)) + (pin "4" (uuid 50909a89-300a-42d9-bfb3-1f4fe023ec50)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_p") (at 182.88 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3370d187-4a96-445f-af24-653540204f74) + (property "Reference" "M11" (id 0) (at 190.5 36.8299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_p" (id 1) (at 190.5 39.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 189.23 35.56 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 184.15 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 65738175-98fd-4451-b137-28346573cad1)) + (pin "2" (uuid b0174381-1e4f-4f2f-b155-9df79de43a22)) + (pin "3" (uuid b44cbf7b-b777-4068-b5ac-e80d43f3b607)) + (pin "4" (uuid ce09dafe-b77e-4a4f-9617-105230b16c67)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_p") (at 157.48 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 39ba2e5d-aebf-42d7-8fa4-ae72e1867fa4) + (property "Reference" "M10" (id 0) (at 165.1 36.8299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_p" (id 1) (at 165.1 39.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 163.83 35.56 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 158.75 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid da3dbc01-da0c-4d68-922b-e961c8028129)) + (pin "2" (uuid 4d7bd655-d978-4bce-8670-5e86cd506f9e)) + (pin "3" (uuid d668c129-22e2-4280-865d-c418263f3911)) + (pin "4" (uuid 1b0a14a4-662c-4f44-bc88-29efe673c9ca)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 170.18 184.15 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3d317b30-a1a3-47bb-a392-53231736a28f) + (property "Reference" "U1" (id 0) (at 173.99 183.515 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 173.99 186.055 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 170.18 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 830100cd-c2cb-4930-bc47-d30ca74fd73d)) + (pin "2" (uuid 4844a472-b324-4bcc-94b6-10cb614ad605)) + (pin "3" (uuid e354ee0d-0aac-4cfc-b4ce-6c7f88382231)) + (pin "4" (uuid 523c1716-95ea-4fef-b5b7-15b8fb8cbd00)) + (pin "5" (uuid 87777bb5-abfd-437e-909f-6242bcfd0b48)) + (pin "6" (uuid 139bbe55-5599-4eef-a7f1-b5f72982888c)) + (pin "7" (uuid 758da3fb-e0d9-44b0-836d-ae3149fc66b8)) + (pin "8" (uuid 188d50da-e591-4f87-b9f7-d8c02301a2bf)) + (pin "9" (uuid 871dea52-aaa7-4292-aa41-71c1107b65a3)) + (pin "10" (uuid aa6734b9-06e1-40a2-8c56-1dc5ca3e1c24)) + (pin "11" (uuid ff307908-25c3-4b1d-bed1-f52524190e93)) + (pin "12" (uuid 3d911297-6489-48f2-baca-b460eb8ef4ba)) + (pin "13" (uuid edaaf4bd-8346-4500-b032-a47f00dfc274)) + (pin "14" (uuid ab98e6ba-d145-4f43-a12b-5fe7d25f23e7)) + (pin "15" (uuid 511d1e93-dba8-49a4-abbf-06a15db7727f)) + (pin "16" (uuid 784e3cfc-e297-4d56-9825-f344a0b566f6)) + (pin "17" (uuid 0810b12a-e2f5-4b5e-9b69-393ad304a889)) + (pin "18" (uuid 51084de0-a37c-4f1f-ae3f-d418cd49263d)) + (pin "19" (uuid ee898590-1c9a-4b0d-97aa-c867e541cd01)) + (pin "20" (uuid 0a6c1821-a105-40e5-bcfe-7b33bdbc4289)) + (pin "21" (uuid 250a3e3f-3743-4b52-8784-9f7187ef127b)) + (pin "22" (uuid 4cde70d6-fb31-4bcf-ad7a-21787904d989)) + (pin "23" (uuid 4e9df032-8bdc-41e7-b527-ab50fd586034)) + (pin "24" (uuid 918d2bc5-5766-4ef3-9e59-035de08088cd)) + (pin "25" (uuid 6d53d9ef-bcdb-4b51-bb7a-7f5f09a067eb)) + (pin "26" (uuid 1ac92d18-8bce-4381-b3d2-b6266def2d0d)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_p") (at 91.44 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 46581bfb-54a0-445d-88db-844366f8f81b) + (property "Reference" "M4" (id 0) (at 99.06 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_p" (id 1) (at 99.06 92.7099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 97.79 88.9 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 92.71 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ef7bfa28-f446-478d-97c2-babea9f9da7e)) + (pin "2" (uuid ebf3026b-0981-48c6-a370-486295f6e275)) + (pin "3" (uuid d71f21bb-75db-49e7-b785-66d3345c6326)) + (pin "4" (uuid 4ae295a0-bdeb-4437-b3f8-eb4014dc0376)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 283.21 60.96 180) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b3fbb16-bfd8-4458-9518-f4c290fc4474) + (property "Reference" "U1" (id 0) (at 287.02 60.325 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 287.02 62.865 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 283.21 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 283.21 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0add3052-d0f1-4327-8e9e-15600a183c0c)) + (pin "2" (uuid 3f241447-d1ec-4c4d-ba0c-2f27801e838d)) + (pin "3" (uuid 6ec9efef-f6b9-46d4-98fc-3ab502c6a797)) + (pin "4" (uuid 3c3e1a29-9ea9-4b9d-82b2-da7e6bc17461)) + (pin "5" (uuid e0108ec2-b32d-41c6-ab24-1940799b555e)) + (pin "6" (uuid ffce2219-fc51-45e0-be65-61763a92fe96)) + (pin "7" (uuid a5919970-3886-4d7b-84e6-cb016c90cdc5)) + (pin "8" (uuid 6940041d-68b5-4d77-a05c-ed0b8b9f77d1)) + (pin "9" (uuid 18ae152d-c0a3-45bc-81f4-5a158827b3c1)) + (pin "10" (uuid db82f083-9616-479a-89b9-cb3a1f152995)) + (pin "11" (uuid 79a6e048-82fb-4550-bba2-1c956e74bf86)) + (pin "12" (uuid fcaf05fe-6326-46c5-99a6-4d693f42b5a5)) + (pin "13" (uuid d8a276fc-cf86-4f4d-ae6d-92844ee055bc)) + (pin "14" (uuid 706fdf13-f6b0-42de-a8cb-c675b6819ada)) + (pin "15" (uuid e4d7f0bd-48f3-4abe-b431-9ff662592fda)) + (pin "16" (uuid 89d069d2-0472-4f6b-804b-8e133f9d06c2)) + (pin "17" (uuid c6bd0371-53ec-464b-8dc0-89e493a646a1)) + (pin "18" (uuid 81264f88-46c2-47aa-bb43-ab62b9598824)) + (pin "19" (uuid ec4261ec-fdaa-4ca3-8336-a5853125b590)) + (pin "20" (uuid 4d4f54ce-7ced-4be6-8f2c-f18883e75e29)) + (pin "21" (uuid 0dc71924-16a5-4d4a-a26b-1d7f0387ecef)) + (pin "22" (uuid 63d8761b-c7f7-4937-882e-4f9c3bc98e28)) + (pin "23" (uuid 9a4a42bd-adbc-4d16-a54b-a04a213c3afe)) + (pin "24" (uuid f00739b4-0ab7-4717-a0f9-7a0107d8b87e)) + (pin "25" (uuid 0fe99fa2-949e-4ee6-87a1-640c28f7db3d)) + (pin "26" (uuid df5bce8d-48c8-4a9d-b622-acbffb28b4b7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 265.43 105.41 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 62e6700b-e49f-44a9-9ced-e6efc348edd7) + (property "Reference" "U1" (id 0) (at 266.065 100.33 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 266.065 102.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 265.43 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 265.43 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1e0f7338-f0fc-437c-a78d-4ecd8600cd3a)) + (pin "2" (uuid 42264349-8f68-4ab6-91d0-1dc7289cb28b)) + (pin "3" (uuid 7f4efb30-2cd9-4b83-847b-b73e94a1a6f4)) + (pin "4" (uuid c7228044-0c8d-41d7-915f-cf0c405e9114)) + (pin "5" (uuid 3590ba3c-d908-462c-a4ce-b75b1cc31f09)) + (pin "6" (uuid b5efb848-20c5-4d08-aa01-b380ad145e6d)) + (pin "7" (uuid 95993e72-9dcf-4d7a-8993-77753e98710b)) + (pin "8" (uuid 9ca822bf-974e-4bee-a5eb-eab88fc66ff8)) + (pin "9" (uuid 803047ad-2698-4c74-9873-7fa475721823)) + (pin "10" (uuid 92c3cf80-b9b9-457b-9d97-d40b80ee08a3)) + (pin "11" (uuid 41f1a10f-7773-4337-8bdf-041fa5bd09e2)) + (pin "12" (uuid a4eb54d4-2f71-470e-815f-cc476e5c5aff)) + (pin "13" (uuid 99161e76-ee98-49ae-ba52-c4ad31e9a35a)) + (pin "14" (uuid b0c1fff9-b0fe-4faa-9c1f-02d9670c7025)) + (pin "15" (uuid d8a27d2e-d84c-44fb-ba90-55237552112d)) + (pin "16" (uuid 5fc2ed02-07aa-41f9-a72a-267be9afec09)) + (pin "17" (uuid 0d2cc738-e2c8-4633-944e-0632189b7dc8)) + (pin "18" (uuid 782cd1b3-0319-44a3-9d35-8c4f96996b02)) + (pin "19" (uuid 5a2fbfb9-cad9-4fd2-8925-4e33b9d91f92)) + (pin "20" (uuid 153d3f9a-558d-435b-a1f3-f7853b97470b)) + (pin "21" (uuid df49b7b7-f08c-4a12-a075-556f04a4ae0b)) + (pin "22" (uuid 702c537c-7c2b-47d1-bef8-1bfcce22f6d9)) + (pin "23" (uuid 080c93dd-8728-42b8-8f31-92edb08663bd)) + (pin "24" (uuid 3e999fde-4b84-4cb2-8563-565c67ff1b3b)) + (pin "25" (uuid 798cc3f3-152f-4c53-8394-a311c05000b4)) + (pin "26" (uuid 4e9b33ac-d6df-462b-aaf6-9b7300e4828f)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_p") (at 251.46 52.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 691feead-9186-4c6a-bd09-0e2b462ecf81) + (property "Reference" "M18" (id 0) (at 259.08 50.7999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_p" (id 1) (at 259.08 53.3399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 257.81 49.53 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 252.73 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76e02ca5-10bc-4beb-bd2e-4059389684b9)) + (pin "2" (uuid c64b9154-52e5-451d-abb1-ffc42cfb9807)) + (pin "3" (uuid e94d7bbc-bf99-45f3-9622-9e40c056694c)) + (pin "4" (uuid c1681198-4f24-41a3-9f37-99caae01545d)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_p") (at 203.2 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73fa661f-b65b-464c-81da-df611e233162) + (property "Reference" "M12" (id 0) (at 210.82 36.8299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_p" (id 1) (at 210.82 39.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 209.55 35.56 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 204.47 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d7884c9-574d-48f5-a97c-81a021371059)) + (pin "2" (uuid 27009d66-03df-4883-9225-573e4c987c5b)) + (pin "3" (uuid 67134f8c-2bf3-413b-b48a-1f30ef0387f5)) + (pin "4" (uuid 61fdec3c-0a32-433a-b5c7-3d28f2af6fa0)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_n") (at 60.96 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 753cf087-5eb4-4c21-8f7f-d95798cf561c) + (property "Reference" "M1" (id 0) (at 69.85 85.0899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_n" (id 1) (at 69.85 87.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 68.58 88.9 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 63.5 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d71bad72-c4fe-4203-920e-eb1f27dd8013)) + (pin "2" (uuid 77923505-9326-455c-bade-0ac03d95b2a6)) + (pin "3" (uuid 928f7870-7cb8-48e1-9bb7-36aa33ad5a50)) + (pin "4" (uuid 44d7a6e5-a3a8-4cd2-a184-9d40f96e4fe1)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_n") (at 142.24 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7b19ea32-e8d3-4cd0-8068-236cb4fe54ef) + (property "Reference" "M8" (id 0) (at 151.13 162.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_n" (id 1) (at 151.13 165.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 149.86 166.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 144.78 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34804968-4d27-4b9d-a979-c6552200da62)) + (pin "2" (uuid 55651784-cf81-48d6-b8aa-c832f78e57b1)) + (pin "3" (uuid c585a585-43dc-4de9-ae12-cdffe5b32025)) + (pin "4" (uuid 136a9457-aded-445d-9c99-d04c4d0ad62e)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_p") (at 129.54 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8094ff9c-3c32-4486-a40c-07d5c222262b) + (property "Reference" "M7" (id 0) (at 137.16 36.8299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_p" (id 1) (at 137.16 39.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 135.89 35.56 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 130.81 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5313e7bb-76a9-4cb1-8d6e-6c6ccf51764e)) + (pin "2" (uuid bd8cdcce-5967-4b98-80da-ef8667dd33bb)) + (pin "3" (uuid bd0a2990-4174-4a03-ba91-63cd92c69301)) + (pin "4" (uuid c082fea2-ffe3-4e0c-aed4-537339c297a9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 21.59 125.73 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a2290806-673f-4759-baa5-3f234463a22d) + (property "Reference" "U1" (id 0) (at 22.225 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 22.225 123.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 21.59 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 21.59 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 359c7b74-e3e3-42a2-a4d9-2baefbfdf4b7)) + (pin "2" (uuid 9fd718d6-dcd6-4b4a-b1ef-74638182ca8b)) + (pin "3" (uuid 8d1dcf75-902f-4ea0-8d9a-9384b7c46461)) + (pin "4" (uuid 4f29ede5-134a-431e-a269-40e557121758)) + (pin "5" (uuid beaf70ac-fdeb-469c-be34-829a9a778cb0)) + (pin "6" (uuid 030280ce-be48-4e44-bcb8-f8e8a1b36c1d)) + (pin "7" (uuid d5259b83-883a-4946-9ecc-20ea097868f7)) + (pin "8" (uuid f627607b-2f2d-4c0a-b919-e9d74bf3ec65)) + (pin "9" (uuid 07d0e544-5738-4eda-97f7-1f60552e17ad)) + (pin "10" (uuid dc797303-1ff7-4545-8101-1d1c019d2438)) + (pin "11" (uuid 0d877de3-3420-48ad-8123-a612a0c5cd1c)) + (pin "12" (uuid 873a670a-5e73-4223-bd19-2c5d227dfed6)) + (pin "13" (uuid a620bebf-f48b-450b-bc51-682ed46cb95f)) + (pin "14" (uuid 9940c24c-e3fb-4edf-851b-1cbaaef6e041)) + (pin "15" (uuid 817447f1-b0cb-495f-ae98-736751df3ed3)) + (pin "16" (uuid b3f10468-2bf2-4ca5-98df-c8dcd6da9c6e)) + (pin "17" (uuid e21b97c5-b2f9-478e-a44d-e9bc3cfb370d)) + (pin "18" (uuid c1dfd9d3-ff02-4c89-aa00-89b773efe9c4)) + (pin "19" (uuid 435efcf4-432b-4591-b974-920d00e9db8b)) + (pin "20" (uuid d033d423-3129-4ab7-8fb1-63ac405cbbd3)) + (pin "21" (uuid b5ff5ac7-062e-46f3-bc46-02137035f95c)) + (pin "22" (uuid a2da9fb6-e4af-4a85-a938-23485f077f1e)) + (pin "23" (uuid ca62cc0b-8e10-41d5-ba9b-454b1d75cd7f)) + (pin "24" (uuid fabc8eab-f204-4037-b983-1cce8c74cc4b)) + (pin "25" (uuid cdf4b394-633f-47f8-b443-a12e6c0c956b)) + (pin "26" (uuid b8f9e326-7f4a-4b99-a778-7a42072160a0)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_p") (at 116.84 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a2665c56-c84f-41e5-b47e-ab749b88c42b) + (property "Reference" "M6" (id 0) (at 124.46 116.8399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_p" (id 1) (at 124.46 119.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 123.19 115.57 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 118.11 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 265152de-e345-4a9d-ac9f-b6fddd30d5f4)) + (pin "2" (uuid 924770c9-b292-4ccb-9e73-a743bd8fc313)) + (pin "3" (uuid 8e311178-4b76-4854-828b-01904d465fe7)) + (pin "4" (uuid f8a6480d-e5b7-4344-bc95-21fb03639826)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_n") (at 213.36 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b74e5ec2-84cf-49fd-95be-46ca67d601e4) + (property "Reference" "M15" (id 0) (at 222.25 100.3299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_n" (id 1) (at 222.25 102.8699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 220.98 104.14 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 215.9 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d427909f-530c-4cd8-862c-385cf4b03718)) + (pin "2" (uuid 1c004bc6-3740-47e3-8125-575ee5ca1861)) + (pin "3" (uuid 67f63db5-d358-4c0b-ad65-ee78ee7276a5)) + (pin "4" (uuid 82d36897-2518-4d7a-b86c-557df2af4f4b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 22.86 154.94 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid baeba3f5-419e-4d7a-927f-5f7cbff903b8) + (property "Reference" "U1" (id 0) (at 23.495 149.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 23.495 152.4 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 22.86 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 22.86 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5e127fd4-959a-4ca6-98da-d04ec0eeeef0)) + (pin "2" (uuid d15ac5c4-a021-4671-a278-011743d4583f)) + (pin "3" (uuid 12536726-d9c3-4ffb-af8c-89d5e81997c5)) + (pin "4" (uuid d69368cd-41e3-48c2-86f5-25bead61dd6b)) + (pin "5" (uuid 16395f3a-9525-4082-b38f-40420654be56)) + (pin "6" (uuid 603922d7-bb57-4f26-9d14-9cbb5cdd88a0)) + (pin "7" (uuid 2e594dd7-b991-4a33-a68a-a1aad5ace3f3)) + (pin "8" (uuid b28e9016-36a5-456b-b2fe-021ff75518c2)) + (pin "9" (uuid 3f8af62f-cf0d-4cfa-bfd2-afe143f9fb74)) + (pin "10" (uuid 5ea6f8c2-062f-42d0-87b1-f97e3b7c63ac)) + (pin "11" (uuid 2a51db61-7ce3-4fc0-8ca5-d6bcf50d85f5)) + (pin "12" (uuid 9b92cb4f-6bc8-4a84-a602-dfbbc70381b5)) + (pin "13" (uuid 9ac5bbd3-d769-4b77-ae1e-b3cd07305cfd)) + (pin "14" (uuid cbab05fb-6901-4bae-8335-e0ec736de355)) + (pin "15" (uuid 7f5cc7da-7c9d-49d5-a07c-d2965a4db228)) + (pin "16" (uuid 83dd5f51-2e27-43c8-85c7-9cd004179a43)) + (pin "17" (uuid 9ab8ba83-3b61-4e94-9559-226712daa125)) + (pin "18" (uuid be7d72ec-e073-4803-a54f-ee03e0b8d5dd)) + (pin "19" (uuid f3960ba9-e8ed-4a7b-9ef7-49ad5b229ef9)) + (pin "20" (uuid f3f57248-d04b-4221-b2b1-30b2fdd71111)) + (pin "21" (uuid de3d7f00-7470-4585-8dc7-adb59027d1a2)) + (pin "22" (uuid 1c2a1f11-f964-4458-9c8b-bf32c7a0ac2e)) + (pin "23" (uuid b0147bb3-401b-459c-8ecc-967d21f46d94)) + (pin "24" (uuid dd29e117-ed56-4e90-90c8-0c92cc3bc9c1)) + (pin "25" (uuid 17b09ada-307f-4648-b8ce-5d24bc5adca5)) + (pin "26" (uuid 0d90df99-07bb-48c3-a9ed-dc43e1e70f1d)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_p") (at 143.51 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c4f4aa88-4ec4-4ab3-bb8a-1caba658762d) + (property "Reference" "M9" (id 0) (at 151.13 144.7799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_p" (id 1) (at 151.13 147.3199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 149.86 143.51 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 144.78 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7cb48a65-f66e-4928-b1f2-1de3bc1f7e8c)) + (pin "2" (uuid c08bec24-b65f-439b-8efe-4a9b55f60f63)) + (pin "3" (uuid fb834872-4727-406e-95c3-de74bb86724a)) + (pin "4" (uuid 6dda5056-780c-456e-b76b-5b2ac3a83780)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_n") (at 213.36 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c7b789a7-61b0-4c8b-85d3-aa589d8b3c8d) + (property "Reference" "M16" (id 0) (at 222.25 125.7299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_n" (id 1) (at 222.25 128.2699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 220.98 129.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 215.9 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6cc0903b-1598-4a94-a56d-d9a4b9abeb01)) + (pin "2" (uuid ed406d8c-0c28-4ee0-b64b-288ddaacd07a)) + (pin "3" (uuid 67f71f3f-8580-4fbf-adba-912d7ab8fce9)) + (pin "4" (uuid 7ceb3b36-f5df-4fac-b16c-75655e1328b4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 193.04 13.97 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9896426-1cab-4a1d-b154-19debd1f1ba1) + (property "Reference" "U1" (id 0) (at 196.85 13.335 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 196.85 15.875 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 193.04 13.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 193.04 13.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be9a4131-ff07-45c0-be1a-ac3cee4d1fc5)) + (pin "2" (uuid bbb2d142-f540-41e2-8d5d-efd8809f4d1f)) + (pin "3" (uuid 922bae19-9351-4a93-978b-85326541fb88)) + (pin "4" (uuid aeffe38e-e15b-483c-9dce-4b4697e8a308)) + (pin "5" (uuid c3ce3cbc-5580-4ca2-adc7-db013e6ee3da)) + (pin "6" (uuid 77c29185-da4d-4450-ab7e-802739ff8259)) + (pin "7" (uuid 380e3eb9-968c-43bd-85f3-26d619132d3a)) + (pin "8" (uuid 675a865a-f2ac-4b31-90ad-4673f16a3cf5)) + (pin "9" (uuid 7be0be17-46c9-4415-9cfc-2e5a51f862ae)) + (pin "10" (uuid 1a8ebaee-5e52-4305-bd72-968688614b4a)) + (pin "11" (uuid 227f961a-4655-43ce-8837-1470a059af87)) + (pin "12" (uuid fad229ea-917c-48d9-97f5-a2498248b03a)) + (pin "13" (uuid b1c4029e-3cb2-4876-bcd0-c8939292a0f3)) + (pin "14" (uuid 4c430c18-6ed4-4ac2-b02d-1a066589cb30)) + (pin "15" (uuid 7f4ef92c-ed68-4029-a0f9-a5fdc2cb5a3d)) + (pin "16" (uuid 2cff4e76-666f-4000-8afb-5c5c4915bbad)) + (pin "17" (uuid df883c56-80dc-461b-bd57-f8c66463a701)) + (pin "18" (uuid 213ce94f-12b5-476d-90ee-9eb133196895)) + (pin "19" (uuid 9804c4d9-a3e5-4a11-b9d6-6169b65a0881)) + (pin "20" (uuid 373dbb50-ebf1-41ae-b6b3-18bc1d11c5aa)) + (pin "21" (uuid 08869534-3646-499b-810d-7cad2c28bc2e)) + (pin "22" (uuid 021c8f13-fa1b-4507-91a7-a891b30708c5)) + (pin "23" (uuid 452affef-4e95-4d79-a3b6-21e9e76e55a4)) + (pin "24" (uuid 040d44ad-9ffb-48c0-a36c-bca0abf95258)) + (pin "25" (uuid 28b46243-d18d-4c9b-ab9d-3e465682304a)) + (pin "26" (uuid b350d602-06cc-44ce-8eb1-c8a13ec5fbc8)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_n") (at 212.09 149.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea67d1fc-5f75-4955-bca3-b22dfc3d5508) + (property "Reference" "M13" (id 0) (at 220.98 153.6699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_n" (id 1) (at 220.98 156.2099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 219.71 157.48 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 214.63 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 29c53ac3-139e-4234-93da-a3de34982fef)) + (pin "2" (uuid d0f52e1e-afab-41be-88ea-be051d8b8018)) + (pin "3" (uuid 265f3752-f7ea-492f-b76e-27c7105ede6b)) + (pin "4" (uuid d9a1c53b-434e-4d9f-ac4d-dd5c5a861637)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_n") (at 213.36 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed516c64-cfe9-4c5c-83ad-344d5ed594ff) + (property "Reference" "M14" (id 0) (at 222.25 76.1999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_n" (id 1) (at 222.25 78.7399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 220.98 80.01 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 215.9 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 33c477db-8144-47ec-b2c3-c43168686588)) + (pin "2" (uuid 24cf3028-c3d1-4e45-942f-46ece116835f)) + (pin "3" (uuid cf44cbd9-a5b9-4a37-b189-a8c9fba46ba2)) + (pin "4" (uuid 4933e980-835d-4c1b-86a7-dbe645bfe5a4)) + ) + + (symbol (lib_id "eSim_Devices:mosfet_n") (at 250.19 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f4c40291-1bc5-4b44-954a-9e3fc42471c9) + (property "Reference" "M17" (id 0) (at 259.08 68.5799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "mosfet_n" (id 1) (at 259.08 71.1199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 257.81 72.39 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 252.73 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid adb7796c-9af4-426e-9cc0-f0e98c0831e6)) + (pin "2" (uuid 3c7dfcca-f70b-4702-82d7-4632ef037b11)) + (pin "3" (uuid b76d7172-ffc5-4198-9413-b034317a80d7)) + (pin "4" (uuid a8f91db3-8da7-4a53-8bf8-eae77e8d79ca)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/753cf087-5eb4-4c21-8f7f-d95798cf561c" + (reference "M1") (unit 1) (value "mosfet_n") (footprint "") + ) + (path "/0b13a655-6e5f-47b1-a0b7-559300261027" + (reference "M2") (unit 1) (value "mosfet_p") (footprint "") + ) + (path "/04dc0b78-7072-443f-a309-586d92945e7c" + (reference "M3") (unit 1) (value "mosfet_n") (footprint "") + ) + (path "/46581bfb-54a0-445d-88db-844366f8f81b" + (reference "M4") (unit 1) (value "mosfet_p") (footprint "") + ) + (path "/08533bbb-1bb2-455e-91df-aea38af9f2bf" + (reference "M5") (unit 1) (value "mosfet_n") (footprint "") + ) + (path "/a2665c56-c84f-41e5-b47e-ab749b88c42b" + (reference "M6") (unit 1) (value "mosfet_p") (footprint "") + ) + (path "/8094ff9c-3c32-4486-a40c-07d5c222262b" + (reference "M7") (unit 1) (value "mosfet_p") (footprint "") + ) + (path "/7b19ea32-e8d3-4cd0-8068-236cb4fe54ef" + (reference "M8") (unit 1) (value "mosfet_n") (footprint "") + ) + (path "/c4f4aa88-4ec4-4ab3-bb8a-1caba658762d" + (reference "M9") (unit 1) (value "mosfet_p") (footprint "") + ) + (path "/39ba2e5d-aebf-42d7-8fa4-ae72e1867fa4" + (reference "M10") (unit 1) (value "mosfet_p") (footprint "") + ) + (path "/3370d187-4a96-445f-af24-653540204f74" + (reference "M11") (unit 1) (value "mosfet_p") (footprint "") + ) + (path "/73fa661f-b65b-464c-81da-df611e233162" + (reference "M12") (unit 1) (value "mosfet_p") (footprint "") + ) + (path "/ea67d1fc-5f75-4955-bca3-b22dfc3d5508" + (reference "M13") (unit 1) (value "mosfet_n") (footprint "") + ) + (path "/ed516c64-cfe9-4c5c-83ad-344d5ed594ff" + (reference "M14") (unit 1) (value "mosfet_n") (footprint "") + ) + (path "/b74e5ec2-84cf-49fd-95be-46ca67d601e4" + (reference "M15") (unit 1) (value "mosfet_n") (footprint "") + ) + (path "/c7b789a7-61b0-4c8b-85d3-aa589d8b3c8d" + (reference "M16") (unit 1) (value "mosfet_n") (footprint "") + ) + (path "/f4c40291-1bc5-4b44-954a-9e3fc42471c9" + (reference "M17") (unit 1) (value "mosfet_n") (footprint "") + ) + (path "/691feead-9186-4c6a-bd09-0e2b462ecf81" + (reference "M18") (unit 1) (value "mosfet_p") (footprint "") + ) + (path "/06f124c7-c7a6-419b-a6d5-e8c897ffc8e8" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/0338be10-35a9-4ad7-b6f8-6b2f9ba3c3d7" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/a2290806-673f-4759-baa5-3f234463a22d" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/baeba3f5-419e-4d7a-927f-5f7cbff903b8" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/4b3fbb16-bfd8-4458-9518-f4c290fc4474" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/e9896426-1cab-4a1d-b154-19debd1f1ba1" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/3d317b30-a1a3-47bb-a392-53231736a28f" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/62e6700b-e49f-44a9-9ced-e6efc348edd7" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4002/CD4002.sub b/library/SubcircuitLibrary/CD4002/CD4002.sub new file mode 100644 index 000000000..d0c5c8284 --- /dev/null +++ b/library/SubcircuitLibrary/CD4002/CD4002.sub @@ -0,0 +1,26 @@ +* Subcircuit CD4002 +.subckt CD4002 net-_m1-pad2_ net-_m3-pad2_ net-_m5-pad2_ net-_m8-pad2_ net-_m17-pad1_ net-_m10-pad1_ net-_m1-pad3_ unconnected-_u1-pad8_ +.title kicad schematic +.include PMOS-5um.lib +.include NMOS-5um.lib +m8 net-_m12-pad2_ net-_m8-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m9 net-_m10-pad1_ net-_m8-pad2_ net-_m12-pad2_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m14 net-_m10-pad3_ net-_m1-pad1_ net-_m14-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m13 net-_m13-pad1_ net-_m12-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m15 net-_m14-pad3_ net-_m10-pad2_ net-_m15-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m16 net-_m15-pad3_ net-_m11-pad2_ net-_m13-pad1_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m17 net-_m17-pad1_ net-_m10-pad3_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m18 net-_m10-pad1_ net-_m10-pad3_ net-_m17-pad1_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m12 net-_m10-pad1_ net-_m12-pad2_ net-_m10-pad3_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m11 net-_m10-pad1_ net-_m11-pad2_ net-_m10-pad3_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m10 net-_m10-pad1_ net-_m10-pad2_ net-_m10-pad3_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m7 net-_m10-pad1_ net-_m1-pad1_ net-_m10-pad3_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m4 net-_m10-pad1_ net-_m3-pad2_ net-_m10-pad2_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m5 net-_m11-pad2_ net-_m5-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m6 net-_m10-pad1_ net-_m5-pad2_ net-_m11-pad2_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +m3 net-_m10-pad2_ net-_m3-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m2 net-_m10-pad1_ net-_m1-pad2_ net-_m1-pad1_ net-_m10-pad1_ mos_p W=100u L=100u M=1 +* Control Statements + +.ends CD4002 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4002/CD4002_Previous_Values.xml b/library/SubcircuitLibrary/CD4002/CD4002_Previous_Values.xml new file mode 100644 index 000000000..55627578e --- /dev/null +++ b/library/SubcircuitLibrary/CD4002/CD4002_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\Templates\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\Templates\PMOS-5um.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes01025secusms \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4002/NMOS-5um.lib b/library/SubcircuitLibrary/CD4002/NMOS-5um.lib new file mode 100644 index 000000000..a237e1fe3 --- /dev/null +++ b/library/SubcircuitLibrary/CD4002/NMOS-5um.lib @@ -0,0 +1,5 @@ +* 5um technology + +.model mos_n NMOS( Cgso=0.4n Tox=85n Vto=1 phi=0.7 ++ Level=1 ++ Mj=.5 UO=750 Cgdo=0.4n Gamma=1.4 LAMBDA=0.01 LD=0.7u JS=1u CJ=0.4m CJSW=0.8n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/CD4002/PMOS-5um.lib b/library/SubcircuitLibrary/CD4002/PMOS-5um.lib new file mode 100644 index 000000000..9c3ed9760 --- /dev/null +++ b/library/SubcircuitLibrary/CD4002/PMOS-5um.lib @@ -0,0 +1,5 @@ +*5um technology + +.model mos_p PMOS( Cgso=0.4n Tox=85n Vto=-1 phi=0.65 ++ Level=1 ++ Mj=.5 UO=250 Cgdo=0.4n Gamma=0.65 LAMBDA=0.03 LD=0.6u JS=1u CJ=0.18m CJSW=0.6n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/CD4002/analysis b/library/SubcircuitLibrary/CD4002/analysis new file mode 100644 index 000000000..1c9b3cb49 --- /dev/null +++ b/library/SubcircuitLibrary/CD4002/analysis @@ -0,0 +1 @@ +.tran 10e-06 25e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4030/CD4030-cache.lib b/library/SubcircuitLibrary/CD4030/CD4030-cache.lib new file mode 100644 index 000000000..6c512720e --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/CD4030-cache.lib @@ -0,0 +1,100 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_MOS_N +# +DEF eSim_MOS_N M 0 0 Y N 1 F N +F0 "M" 0 -150 50 H V R CNN +F1 "eSim_MOS_N" 100 -50 50 H V R CNN +F2 "" 300 -300 29 H V C CNN +F3 "" 100 -200 60 H V C CNN +ALIAS mosfet_n +DRAW +C 150 -200 111 0 1 10 N +P 2 0 1 10 130 -290 130 -250 N +P 2 0 1 0 130 -270 200 -270 N +P 2 0 1 10 130 -220 130 -180 N +P 2 0 1 0 130 -200 200 -200 N +P 2 0 1 10 130 -150 130 -110 N +P 2 0 1 0 130 -130 200 -130 N +P 2 0 1 0 200 -300 200 -270 N +P 2 0 1 0 200 -130 200 -100 N +P 3 0 1 10 110 -275 110 -125 110 -125 N +P 3 0 1 0 200 -200 300 -200 300 -250 N +P 4 0 1 0 140 -200 180 -215 180 -185 140 -200 F +X D 1 200 0 100 D 50 50 1 1 P +X G 2 -100 -200 210 R 50 50 1 1 P +X S 3 200 -400 100 U 50 50 1 1 P +X B 4 300 -350 98 U 47 47 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_P +# +DEF eSim_MOS_P M 0 0 Y N 1 F N +F0 "M" -50 50 50 H V R CNN +F1 "eSim_MOS_P" 50 150 50 H V R CNN +F2 "" 250 100 29 H V C CNN +F3 "" 50 0 60 H V C CNN +ALIAS mosfet_p +DRAW +C 100 0 111 0 1 10 N +P 2 0 1 0 80 -70 150 -70 N +P 2 0 1 10 80 -50 80 -90 N +P 2 0 1 0 80 0 150 0 N +P 2 0 1 10 80 20 80 -20 N +P 2 0 1 0 80 70 150 70 N +P 2 0 1 10 80 90 80 50 N +P 2 0 1 0 150 -70 150 -100 N +P 2 0 1 0 150 100 150 70 N +P 3 0 1 10 60 75 60 -75 60 -75 N +P 3 0 1 0 150 0 250 0 250 -50 N +P 4 0 1 0 140 0 100 -15 100 15 140 0 F +X D 1 150 200 100 D 50 50 1 1 P +X G 2 -150 0 210 R 50 50 1 1 P +X S 3 150 -200 100 U 50 50 1 1 P +X B 4 250 -150 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4030/CD4030.cir b/library/SubcircuitLibrary/CD4030/CD4030.cir new file mode 100644 index 000000000..59d9f0115 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/CD4030.cir @@ -0,0 +1,55 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\CD4030\CD4030.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/29/25 12:06:45 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +M3 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M6 Net-_M1-Pad1_ Net-_M2-Pad2_ Net-_M10-Pad2_ Net-_M11-Pad3_ eSim_MOS_P +M8 Net-_M8-Pad1_ Net-_M2-Pad1_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M11 Net-_M10-Pad1_ Net-_M10-Pad2_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M9 Net-_M8-Pad1_ Net-_M1-Pad1_ Net-_M10-Pad2_ Net-_M11-Pad3_ eSim_MOS_P +M7 Net-_M10-Pad2_ Net-_M1-Pad1_ Net-_M2-Pad1_ Net-_M1-Pad3_ eSim_MOS_N +M10 Net-_M10-Pad1_ Net-_M10-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M1 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M5 Net-_M1-Pad1_ Net-_M2-Pad1_ Net-_M10-Pad2_ Net-_M1-Pad3_ eSim_MOS_N +M4 Net-_M2-Pad1_ Net-_M2-Pad2_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M2 Net-_M2-Pad1_ Net-_M2-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M14 Net-_M12-Pad1_ Net-_M12-Pad2_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M17 Net-_M12-Pad1_ Net-_M13-Pad2_ Net-_M16-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M19 Net-_M19-Pad1_ Net-_M13-Pad1_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M22 Net-_M21-Pad1_ Net-_M16-Pad3_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M20 Net-_M19-Pad1_ Net-_M12-Pad1_ Net-_M16-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M21 Net-_M21-Pad1_ Net-_M16-Pad3_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M12 Net-_M12-Pad1_ Net-_M12-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M16 Net-_M12-Pad1_ Net-_M13-Pad1_ Net-_M16-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M15 Net-_M13-Pad1_ Net-_M13-Pad2_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M13 Net-_M13-Pad1_ Net-_M13-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M25 Net-_M23-Pad1_ Net-_M23-Pad2_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M28 Net-_M23-Pad1_ Net-_M24-Pad2_ Net-_M27-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M30 Net-_M30-Pad1_ Net-_M24-Pad1_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M33 Net-_M32-Pad1_ Net-_M27-Pad3_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M31 Net-_M30-Pad1_ Net-_M23-Pad1_ Net-_M27-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M29 Net-_M27-Pad3_ Net-_M23-Pad1_ Net-_M24-Pad1_ Net-_M1-Pad3_ eSim_MOS_N +M32 Net-_M32-Pad1_ Net-_M27-Pad3_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M23 Net-_M23-Pad1_ Net-_M23-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M27 Net-_M23-Pad1_ Net-_M24-Pad1_ Net-_M27-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M26 Net-_M24-Pad1_ Net-_M24-Pad2_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M24 Net-_M24-Pad1_ Net-_M24-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M36 Net-_M34-Pad1_ Net-_M34-Pad2_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M39 Net-_M34-Pad1_ Net-_M35-Pad2_ Net-_M38-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M41 Net-_M41-Pad1_ Net-_M35-Pad1_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M44 Net-_M43-Pad1_ Net-_M38-Pad3_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M42 Net-_M41-Pad1_ Net-_M34-Pad1_ Net-_M38-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M40 Net-_M38-Pad3_ Net-_M34-Pad1_ Net-_M35-Pad1_ Net-_M1-Pad3_ eSim_MOS_N +M43 Net-_M43-Pad1_ Net-_M38-Pad3_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M34 Net-_M34-Pad1_ Net-_M34-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M38 Net-_M34-Pad1_ Net-_M35-Pad1_ Net-_M38-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M37 Net-_M35-Pad1_ Net-_M35-Pad2_ Net-_M11-Pad3_ Net-_M11-Pad3_ eSim_MOS_P +M35 Net-_M35-Pad1_ Net-_M35-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +U1 Net-_M2-Pad2_ Net-_M1-Pad2_ Net-_M10-Pad1_ Net-_M21-Pad1_ Net-_M12-Pad2_ Net-_M13-Pad2_ Net-_M1-Pad3_ Net-_M24-Pad2_ Net-_M23-Pad2_ Net-_M32-Pad1_ Net-_M43-Pad1_ Net-_M34-Pad2_ Net-_M35-Pad2_ Net-_M11-Pad3_ PORT +M18 Net-_M16-Pad3_ Net-_M12-Pad1_ Net-_M13-Pad1_ Net-_M1-Pad3_ eSim_MOS_N + +.end diff --git a/library/SubcircuitLibrary/CD4030/CD4030.cir.out b/library/SubcircuitLibrary/CD4030/CD4030.cir.out new file mode 100644 index 000000000..aa0777a60 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/CD4030.cir.out @@ -0,0 +1,58 @@ +* c:\fossee\esim\library\subcircuitlibrary\cd4030\cd4030.cir + +.include PMOS-5um.lib +.include NMOS-5um.lib +m3 net-_m1-pad1_ net-_m1-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m6 net-_m1-pad1_ net-_m2-pad2_ net-_m10-pad2_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m8 net-_m8-pad1_ net-_m2-pad1_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m11 net-_m10-pad1_ net-_m10-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m9 net-_m8-pad1_ net-_m1-pad1_ net-_m10-pad2_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m7 net-_m10-pad2_ net-_m1-pad1_ net-_m2-pad1_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m10 net-_m10-pad1_ net-_m10-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m5 net-_m1-pad1_ net-_m2-pad1_ net-_m10-pad2_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m4 net-_m2-pad1_ net-_m2-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m2 net-_m2-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m14 net-_m12-pad1_ net-_m12-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m17 net-_m12-pad1_ net-_m13-pad2_ net-_m16-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m19 net-_m19-pad1_ net-_m13-pad1_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m22 net-_m21-pad1_ net-_m16-pad3_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m20 net-_m19-pad1_ net-_m12-pad1_ net-_m16-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m21 net-_m21-pad1_ net-_m16-pad3_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m12 net-_m12-pad1_ net-_m12-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m16 net-_m12-pad1_ net-_m13-pad1_ net-_m16-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m15 net-_m13-pad1_ net-_m13-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m13 net-_m13-pad1_ net-_m13-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m25 net-_m23-pad1_ net-_m23-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m28 net-_m23-pad1_ net-_m24-pad2_ net-_m27-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m30 net-_m30-pad1_ net-_m24-pad1_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m33 net-_m32-pad1_ net-_m27-pad3_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m31 net-_m30-pad1_ net-_m23-pad1_ net-_m27-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m29 net-_m27-pad3_ net-_m23-pad1_ net-_m24-pad1_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m32 net-_m32-pad1_ net-_m27-pad3_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m23 net-_m23-pad1_ net-_m23-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m27 net-_m23-pad1_ net-_m24-pad1_ net-_m27-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m26 net-_m24-pad1_ net-_m24-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m24 net-_m24-pad1_ net-_m24-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m36 net-_m34-pad1_ net-_m34-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m39 net-_m34-pad1_ net-_m35-pad2_ net-_m38-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m41 net-_m41-pad1_ net-_m35-pad1_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m44 net-_m43-pad1_ net-_m38-pad3_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m42 net-_m41-pad1_ net-_m34-pad1_ net-_m38-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m40 net-_m38-pad3_ net-_m34-pad1_ net-_m35-pad1_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m43 net-_m43-pad1_ net-_m38-pad3_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m34 net-_m34-pad1_ net-_m34-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m38 net-_m34-pad1_ net-_m35-pad1_ net-_m38-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m37 net-_m35-pad1_ net-_m35-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m35 net-_m35-pad1_ net-_m35-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +* u1 net-_m2-pad2_ net-_m1-pad2_ net-_m10-pad1_ net-_m21-pad1_ net-_m12-pad2_ net-_m13-pad2_ net-_m1-pad3_ net-_m24-pad2_ net-_m23-pad2_ net-_m32-pad1_ net-_m43-pad1_ net-_m34-pad2_ net-_m35-pad2_ net-_m11-pad3_ port +m18 net-_m16-pad3_ net-_m12-pad1_ net-_m13-pad1_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4030/CD4030.pro b/library/SubcircuitLibrary/CD4030/CD4030.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/CD4030.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4030/CD4030.proj b/library/SubcircuitLibrary/CD4030/CD4030.proj new file mode 100644 index 000000000..9d102c1a3 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/CD4030.proj @@ -0,0 +1 @@ +schematicFile CD4030.sch diff --git a/library/SubcircuitLibrary/CD4030/CD4030.sch b/library/SubcircuitLibrary/CD4030/CD4030.sch new file mode 100644 index 000000000..308f59cce --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/CD4030.sch @@ -0,0 +1,1381 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:CD4030-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_MOS_P M3 +U 1 1 6836E298 +P -8100 750 +F 0 "M3" H -8150 800 50 0000 R CNN +F 1 "eSim_MOS_P" H -8050 900 50 0000 R CNN +F 2 "" H -7850 850 29 0000 C CNN +F 3 "" H -8050 750 60 0000 C CNN + 1 -8100 750 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M6 +U 1 1 6836E2E0 +P -6200 1700 +F 0 "M6" H -6250 1750 50 0000 R CNN +F 1 "eSim_MOS_P" H -6150 1850 50 0000 R CNN +F 2 "" H -5950 1800 29 0000 C CNN +F 3 "" H -6150 1700 60 0000 C CNN + 1 -6200 1700 + -1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M8 +U 1 1 6836E2FA +P -5350 700 +F 0 "M8" H -5400 750 50 0000 R CNN +F 1 "eSim_MOS_P" H -5300 850 50 0000 R CNN +F 2 "" H -5100 800 29 0000 C CNN +F 3 "" H -5300 700 60 0000 C CNN + 1 -5350 700 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M11 +U 1 1 6836E319 +P -4400 1150 +F 0 "M11" H -4450 1200 50 0000 R CNN +F 1 "eSim_MOS_P" H -4350 1300 50 0000 R CNN +F 2 "" H -4150 1250 29 0000 C CNN +F 3 "" H -4350 1150 60 0000 C CNN + 1 -4400 1150 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M9 +U 1 1 6836E345 +P -5350 1350 +F 0 "M9" H -5400 1400 50 0000 R CNN +F 1 "eSim_MOS_P" H -5300 1500 50 0000 R CNN +F 2 "" H -5100 1450 29 0000 C CNN +F 3 "" H -5300 1350 60 0000 C CNN + 1 -5350 1350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M7 +U 1 1 6836E367 +P -5400 1750 +F 0 "M7" H -5400 1600 50 0000 R CNN +F 1 "eSim_MOS_N" H -5300 1700 50 0000 R CNN +F 2 "" H -5100 1450 29 0000 C CNN +F 3 "" H -5300 1550 60 0000 C CNN + 1 -5400 1750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M10 +U 1 1 6836E3A0 +P -4450 1650 +F 0 "M10" H -4450 1500 50 0000 R CNN +F 1 "eSim_MOS_N" H -4350 1600 50 0000 R CNN +F 2 "" H -4150 1350 29 0000 C CNN +F 3 "" H -4350 1450 60 0000 C CNN + 1 -4450 1650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M1 +U 1 1 6836E3CB +P -8150 1200 +F 0 "M1" H -8150 1050 50 0000 R CNN +F 1 "eSim_MOS_N" H -8050 1150 50 0000 R CNN +F 2 "" H -7850 900 29 0000 C CNN +F 3 "" H -8050 1000 60 0000 C CNN + 1 -8150 1200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M5 +U 1 1 6836E3FD +P -7000 1500 +F 0 "M5" H -7000 1350 50 0000 R CNN +F 1 "eSim_MOS_N" H -6900 1450 50 0000 R CNN +F 2 "" H -6700 1200 29 0000 C CNN +F 3 "" H -6900 1300 60 0000 C CNN + 1 -7000 1500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M4 +U 1 1 6836EAA8 +P -8100 2700 +F 0 "M4" H -8150 2750 50 0000 R CNN +F 1 "eSim_MOS_P" H -8050 2850 50 0000 R CNN +F 2 "" H -7850 2800 29 0000 C CNN +F 3 "" H -8050 2700 60 0000 C CNN + 1 -8100 2700 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_N M2 +U 1 1 6836EAAE +P -8150 3150 +F 0 "M2" H -8150 3000 50 0000 R CNN +F 1 "eSim_MOS_N" H -8050 3100 50 0000 R CNN +F 2 "" H -7850 2850 29 0000 C CNN +F 3 "" H -8050 2950 60 0000 C CNN + 1 -8150 3150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M14 +U 1 1 68374D4A +P -3000 700 +F 0 "M14" H -3050 750 50 0000 R CNN +F 1 "eSim_MOS_P" H -2950 850 50 0000 R CNN +F 2 "" H -2750 800 29 0000 C CNN +F 3 "" H -2950 700 60 0000 C CNN + 1 -3000 700 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M17 +U 1 1 68374D50 +P -1100 1650 +F 0 "M17" H -1150 1700 50 0000 R CNN +F 1 "eSim_MOS_P" H -1050 1800 50 0000 R CNN +F 2 "" H -850 1750 29 0000 C CNN +F 3 "" H -1050 1650 60 0000 C CNN + 1 -1100 1650 + -1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M19 +U 1 1 68374D56 +P -100 650 +F 0 "M19" H -150 700 50 0000 R CNN +F 1 "eSim_MOS_P" H -50 800 50 0000 R CNN +F 2 "" H 150 750 29 0000 C CNN +F 3 "" H -50 650 60 0000 C CNN + 1 -100 650 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M22 +U 1 1 68374D5C +P 700 1100 +F 0 "M22" H 650 1150 50 0000 R CNN +F 1 "eSim_MOS_P" H 750 1250 50 0000 R CNN +F 2 "" H 950 1200 29 0000 C CNN +F 3 "" H 750 1100 60 0000 C CNN + 1 700 1100 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M20 +U 1 1 68374D62 +P -50 1300 +F 0 "M20" H -100 1350 50 0000 R CNN +F 1 "eSim_MOS_P" H 0 1450 50 0000 R CNN +F 2 "" H 200 1400 29 0000 C CNN +F 3 "" H 0 1300 60 0000 C CNN + 1 -50 1300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M21 +U 1 1 68374D6E +P 650 1600 +F 0 "M21" H 650 1450 50 0000 R CNN +F 1 "eSim_MOS_N" H 750 1550 50 0000 R CNN +F 2 "" H 950 1300 29 0000 C CNN +F 3 "" H 750 1400 60 0000 C CNN + 1 650 1600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M12 +U 1 1 68374D74 +P -3050 1150 +F 0 "M12" H -3050 1000 50 0000 R CNN +F 1 "eSim_MOS_N" H -2950 1100 50 0000 R CNN +F 2 "" H -2750 850 29 0000 C CNN +F 3 "" H -2950 950 60 0000 C CNN + 1 -3050 1150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M16 +U 1 1 68374D7A +P -1900 1450 +F 0 "M16" H -1900 1300 50 0000 R CNN +F 1 "eSim_MOS_N" H -1800 1400 50 0000 R CNN +F 2 "" H -1600 1150 29 0000 C CNN +F 3 "" H -1800 1250 60 0000 C CNN + 1 -1900 1450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M15 +U 1 1 68374D8C +P -3000 2650 +F 0 "M15" H -3050 2700 50 0000 R CNN +F 1 "eSim_MOS_P" H -2950 2800 50 0000 R CNN +F 2 "" H -2750 2750 29 0000 C CNN +F 3 "" H -2950 2650 60 0000 C CNN + 1 -3000 2650 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_N M13 +U 1 1 68374D92 +P -3050 3100 +F 0 "M13" H -3050 2950 50 0000 R CNN +F 1 "eSim_MOS_N" H -2950 3050 50 0000 R CNN +F 2 "" H -2750 2800 29 0000 C CNN +F 3 "" H -2950 2900 60 0000 C CNN + 1 -3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M25 +U 1 1 68378186 +P 2450 750 +F 0 "M25" H 2400 800 50 0000 R CNN +F 1 "eSim_MOS_P" H 2500 900 50 0000 R CNN +F 2 "" H 2700 850 29 0000 C CNN +F 3 "" H 2500 750 60 0000 C CNN + 1 2450 750 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M28 +U 1 1 6837818C +P 4350 1700 +F 0 "M28" H 4300 1750 50 0000 R CNN +F 1 "eSim_MOS_P" H 4400 1850 50 0000 R CNN +F 2 "" H 4600 1800 29 0000 C CNN +F 3 "" H 4400 1700 60 0000 C CNN + 1 4350 1700 + -1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M30 +U 1 1 68378192 +P 5200 700 +F 0 "M30" H 5150 750 50 0000 R CNN +F 1 "eSim_MOS_P" H 5250 850 50 0000 R CNN +F 2 "" H 5450 800 29 0000 C CNN +F 3 "" H 5250 700 60 0000 C CNN + 1 5200 700 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M33 +U 1 1 68378198 +P 6150 1150 +F 0 "M33" H 6100 1200 50 0000 R CNN +F 1 "eSim_MOS_P" H 6200 1300 50 0000 R CNN +F 2 "" H 6400 1250 29 0000 C CNN +F 3 "" H 6200 1150 60 0000 C CNN + 1 6150 1150 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M31 +U 1 1 6837819E +P 5200 1350 +F 0 "M31" H 5150 1400 50 0000 R CNN +F 1 "eSim_MOS_P" H 5250 1500 50 0000 R CNN +F 2 "" H 5450 1450 29 0000 C CNN +F 3 "" H 5250 1350 60 0000 C CNN + 1 5200 1350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M29 +U 1 1 683781A4 +P 5150 1750 +F 0 "M29" H 5150 1600 50 0000 R CNN +F 1 "eSim_MOS_N" H 5250 1700 50 0000 R CNN +F 2 "" H 5450 1450 29 0000 C CNN +F 3 "" H 5250 1550 60 0000 C CNN + 1 5150 1750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M32 +U 1 1 683781AA +P 6100 1650 +F 0 "M32" H 6100 1500 50 0000 R CNN +F 1 "eSim_MOS_N" H 6200 1600 50 0000 R CNN +F 2 "" H 6400 1350 29 0000 C CNN +F 3 "" H 6200 1450 60 0000 C CNN + 1 6100 1650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M23 +U 1 1 683781B0 +P 2400 1200 +F 0 "M23" H 2400 1050 50 0000 R CNN +F 1 "eSim_MOS_N" H 2500 1150 50 0000 R CNN +F 2 "" H 2700 900 29 0000 C CNN +F 3 "" H 2500 1000 60 0000 C CNN + 1 2400 1200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M27 +U 1 1 683781B6 +P 3550 1500 +F 0 "M27" H 3550 1350 50 0000 R CNN +F 1 "eSim_MOS_N" H 3650 1450 50 0000 R CNN +F 2 "" H 3850 1200 29 0000 C CNN +F 3 "" H 3650 1300 60 0000 C CNN + 1 3550 1500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M26 +U 1 1 683781C8 +P 2450 2700 +F 0 "M26" H 2400 2750 50 0000 R CNN +F 1 "eSim_MOS_P" H 2500 2850 50 0000 R CNN +F 2 "" H 2700 2800 29 0000 C CNN +F 3 "" H 2500 2700 60 0000 C CNN + 1 2450 2700 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_N M24 +U 1 1 683781CE +P 2400 3150 +F 0 "M24" H 2400 3000 50 0000 R CNN +F 1 "eSim_MOS_N" H 2500 3100 50 0000 R CNN +F 2 "" H 2700 2850 29 0000 C CNN +F 3 "" H 2500 2950 60 0000 C CNN + 1 2400 3150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M36 +U 1 1 68389404 +P 7700 700 +F 0 "M36" H 7650 750 50 0000 R CNN +F 1 "eSim_MOS_P" H 7750 850 50 0000 R CNN +F 2 "" H 7950 800 29 0000 C CNN +F 3 "" H 7750 700 60 0000 C CNN + 1 7700 700 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M39 +U 1 1 6838940A +P 9600 1650 +F 0 "M39" H 9550 1700 50 0000 R CNN +F 1 "eSim_MOS_P" H 9650 1800 50 0000 R CNN +F 2 "" H 9850 1750 29 0000 C CNN +F 3 "" H 9650 1650 60 0000 C CNN + 1 9600 1650 + -1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M41 +U 1 1 68389410 +P 10450 650 +F 0 "M41" H 10400 700 50 0000 R CNN +F 1 "eSim_MOS_P" H 10500 800 50 0000 R CNN +F 2 "" H 10700 750 29 0000 C CNN +F 3 "" H 10500 650 60 0000 C CNN + 1 10450 650 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M44 +U 1 1 68389416 +P 11400 1100 +F 0 "M44" H 11350 1150 50 0000 R CNN +F 1 "eSim_MOS_P" H 11450 1250 50 0000 R CNN +F 2 "" H 11650 1200 29 0000 C CNN +F 3 "" H 11450 1100 60 0000 C CNN + 1 11400 1100 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_P M42 +U 1 1 6838941C +P 10450 1300 +F 0 "M42" H 10400 1350 50 0000 R CNN +F 1 "eSim_MOS_P" H 10500 1450 50 0000 R CNN +F 2 "" H 10700 1400 29 0000 C CNN +F 3 "" H 10500 1300 60 0000 C CNN + 1 10450 1300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M40 +U 1 1 68389422 +P 10400 1700 +F 0 "M40" H 10400 1550 50 0000 R CNN +F 1 "eSim_MOS_N" H 10500 1650 50 0000 R CNN +F 2 "" H 10700 1400 29 0000 C CNN +F 3 "" H 10500 1500 60 0000 C CNN + 1 10400 1700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M43 +U 1 1 68389428 +P 11350 1600 +F 0 "M43" H 11350 1450 50 0000 R CNN +F 1 "eSim_MOS_N" H 11450 1550 50 0000 R CNN +F 2 "" H 11650 1300 29 0000 C CNN +F 3 "" H 11450 1400 60 0000 C CNN + 1 11350 1600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M34 +U 1 1 6838942E +P 7650 1150 +F 0 "M34" H 7650 1000 50 0000 R CNN +F 1 "eSim_MOS_N" H 7750 1100 50 0000 R CNN +F 2 "" H 7950 850 29 0000 C CNN +F 3 "" H 7750 950 60 0000 C CNN + 1 7650 1150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M38 +U 1 1 68389434 +P 8800 1450 +F 0 "M38" H 8800 1300 50 0000 R CNN +F 1 "eSim_MOS_N" H 8900 1400 50 0000 R CNN +F 2 "" H 9100 1150 29 0000 C CNN +F 3 "" H 8900 1250 60 0000 C CNN + 1 8800 1450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M37 +U 1 1 68389446 +P 7700 2650 +F 0 "M37" H 7650 2700 50 0000 R CNN +F 1 "eSim_MOS_P" H 7750 2800 50 0000 R CNN +F 2 "" H 7950 2750 29 0000 C CNN +F 3 "" H 7750 2650 60 0000 C CNN + 1 7700 2650 + 1 0 0 1 +$EndComp +$Comp +L eSim_MOS_N M35 +U 1 1 6838944C +P 7650 3100 +F 0 "M35" H 7650 2950 50 0000 R CNN +F 1 "eSim_MOS_N" H 7750 3050 50 0000 R CNN +F 2 "" H 7950 2800 29 0000 C CNN +F 3 "" H 7750 2900 60 0000 C CNN + 1 7650 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 6839C484 +P -8950 1100 +F 0 "U1" H -8900 1200 30 0000 C CNN +F 1 "PORT" H -8950 1100 30 0000 C CNN +F 2 "" H -8950 1100 60 0000 C CNN +F 3 "" H -8950 1100 60 0000 C CNN + 2 -8950 1100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 6839D631 +P -9100 3050 +F 0 "U1" H -9050 3150 30 0000 C CNN +F 1 "PORT" H -9100 3050 30 0000 C CNN +F 2 "" H -9100 3050 60 0000 C CNN +F 3 "" H -9100 3050 60 0000 C CNN + 1 -9100 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 6839EB6F +P -3700 1000 +F 0 "U1" H -3650 1100 30 0000 C CNN +F 1 "PORT" H -3700 1000 30 0000 C CNN +F 2 "" H -3700 1000 60 0000 C CNN +F 3 "" H -3700 1000 60 0000 C CNN + 5 -3700 1000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 683A27F1 +P -3750 3000 +F 0 "U1" H -3700 3100 30 0000 C CNN +F 1 "PORT" H -3750 3000 30 0000 C CNN +F 2 "" H -3750 3000 60 0000 C CNN +F 3 "" H -3750 3000 60 0000 C CNN + 6 -3750 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 683A552B +P -8450 4000 +F 0 "U1" H -8400 4100 30 0000 C CNN +F 1 "PORT" H -8450 4000 30 0000 C CNN +F 2 "" H -8450 4000 60 0000 C CNN +F 3 "" H -8450 4000 60 0000 C CNN + 7 -8450 4000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 683B72DB +P 1450 3050 +F 0 "U1" H 1500 3150 30 0000 C CNN +F 1 "PORT" H 1450 3050 30 0000 C CNN +F 2 "" H 1450 3050 60 0000 C CNN +F 3 "" H 1450 3050 60 0000 C CNN + 8 1450 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 683B90D4 +P 1600 1100 +F 0 "U1" H 1650 1200 30 0000 C CNN +F 1 "PORT" H 1600 1100 30 0000 C CNN +F 2 "" H 1600 1100 60 0000 C CNN +F 3 "" H 1600 1100 60 0000 C CNN + 9 1600 1100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 683BA364 +P 6800 1450 +F 0 "U1" H 6850 1550 30 0000 C CNN +F 1 "PORT" H 6800 1450 30 0000 C CNN +F 2 "" H 6800 1450 60 0000 C CNN +F 3 "" H 6800 1450 60 0000 C CNN + 10 6800 1450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 683BB3CC +P 12000 1450 +F 0 "U1" H 12050 1550 30 0000 C CNN +F 1 "PORT" H 12000 1450 30 0000 C CNN +F 2 "" H 12000 1450 60 0000 C CNN +F 3 "" H 12000 1450 60 0000 C CNN + 11 12000 1450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 683BCBE1 +P -7800 -350 +F 0 "U1" H -7750 -250 30 0000 C CNN +F 1 "PORT" H -7800 -350 30 0000 C CNN +F 2 "" H -7800 -350 60 0000 C CNN +F 3 "" H -7800 -350 60 0000 C CNN + 14 -7800 -350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 683BDE13 +P 6850 2950 +F 0 "U1" H 6900 3050 30 0000 C CNN +F 1 "PORT" H 6850 2950 30 0000 C CNN +F 2 "" H 6850 2950 60 0000 C CNN +F 3 "" H 6850 2950 60 0000 C CNN + 13 6850 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 683BF62B +P 6900 1050 +F 0 "U1" H 6950 1150 30 0000 C CNN +F 1 "PORT" H 6900 1050 30 0000 C CNN +F 2 "" H 6900 1050 60 0000 C CNN +F 3 "" H 6900 1050 60 0000 C CNN + 12 6900 1050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 683E5A89 +P -3850 1500 +F 0 "U1" H -3800 1600 30 0000 C CNN +F 1 "PORT" H -3850 1500 30 0000 C CNN +F 2 "" H -3850 1500 60 0000 C CNN +F 3 "" H -3850 1500 60 0000 C CNN + 3 -3850 1500 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 683E70F9 +P 1300 1450 +F 0 "U1" H 1350 1550 30 0000 C CNN +F 1 "PORT" H 1300 1450 30 0000 C CNN +F 2 "" H 1300 1450 60 0000 C CNN +F 3 "" H 1300 1450 60 0000 C CNN + 4 1300 1450 + -1 0 0 -1 +$EndComp +Wire Wire Line + -7950 550 -7850 550 +Wire Wire Line + -7850 550 -7850 600 +Wire Wire Line + -7950 950 -7950 1200 +Connection ~ -7900 550 +Wire Wire Line + -7950 1600 -7850 1600 +Wire Wire Line + -7850 1600 -7850 1550 +Wire Wire Line + -7900 1600 -7900 1700 +Connection ~ -7900 1600 +Wire Wire Line + -8250 750 -8250 1400 +Wire Wire Line + -7950 2500 -7850 2500 +Wire Wire Line + -7850 2500 -7850 2550 +Wire Wire Line + -7950 2900 -7950 3150 +Connection ~ -7900 2500 +Wire Wire Line + -7950 3550 -7850 3550 +Wire Wire Line + -7850 3550 -7850 3500 +Wire Wire Line + -8250 2700 -8250 3350 +Wire Wire Line + -6800 1500 -6350 1500 +Wire Wire Line + -6800 1900 -6350 1900 +Wire Wire Line + -6700 1850 -6700 3850 +Wire Wire Line + -6450 1850 -6450 350 +Wire Wire Line + -6600 1500 -6600 1050 +Wire Wire Line + -7950 1050 -5950 1050 +Connection ~ -7950 1050 +Connection ~ -6600 1500 +Wire Wire Line + -7950 3050 -5200 3050 +Wire Wire Line + -7100 3050 -7100 1700 +Connection ~ -7950 3050 +Wire Wire Line + -5200 500 -5000 500 +Wire Wire Line + -5100 500 -5100 550 +Wire Wire Line + -6450 350 -7900 350 +Connection ~ -7900 350 +Wire Wire Line + -5150 500 -5150 100 +Wire Wire Line + -7900 100 -2800 100 +Connection ~ -7900 100 +Connection ~ -5150 500 +Wire Wire Line + -5500 700 -5850 700 +Wire Wire Line + -5850 700 -5850 3050 +Connection ~ -7100 3050 +Wire Wire Line + -5200 900 -5200 1150 +Connection ~ -7900 3550 +Wire Wire Line + -2800 3850 -7900 3850 +Connection ~ -7900 3850 +Wire Wire Line + -5200 1550 -5200 1750 +Wire Wire Line + -5500 1350 -5500 1950 +Wire Wire Line + -5500 1650 -5950 1650 +Wire Wire Line + -5950 1650 -5950 1050 +Connection ~ -6600 1050 +Connection ~ -5500 1650 +Wire Wire Line + -5100 3850 -5100 2100 +Connection ~ -6700 3850 +Wire Wire Line + -5200 3050 -5200 2150 +Connection ~ -5850 3050 +Wire Wire Line + -4250 950 -4150 950 +Wire Wire Line + -4150 950 -4150 1000 +Wire Wire Line + -4200 100 -4200 950 +Connection ~ -4200 950 +Connection ~ -5150 100 +Wire Wire Line + -4550 1150 -4550 1850 +Wire Wire Line + -5200 1650 -4550 1650 +Wire Wire Line + -4550 1650 -4550 1550 +Connection ~ -4550 1550 +Connection ~ -5200 1650 +Wire Wire Line + -4250 2050 -4150 2050 +Wire Wire Line + -4150 2050 -4150 2000 +Wire Wire Line + -4200 3850 -4200 2050 +Connection ~ -4200 2050 +Connection ~ -5100 3850 +Wire Wire Line + -4250 1350 -4250 1650 +Wire Wire Line + -2850 500 -2750 500 +Wire Wire Line + -2750 500 -2750 550 +Wire Wire Line + -2850 900 -2850 1150 +Connection ~ -2800 500 +Wire Wire Line + -2850 1550 -2750 1550 +Wire Wire Line + -2750 1550 -2750 1500 +Wire Wire Line + -2800 1550 -2800 1800 +Connection ~ -2800 1550 +Wire Wire Line + -3150 700 -3150 1350 +Wire Wire Line + -2850 2450 -2750 2450 +Wire Wire Line + -2750 2450 -2750 2500 +Wire Wire Line + -2850 2850 -2850 3100 +Connection ~ -2800 2450 +Wire Wire Line + -2850 3500 -2750 3500 +Wire Wire Line + -2750 3500 -2750 3450 +Wire Wire Line + -3150 2650 -3150 3300 +Wire Wire Line + -1700 1450 -1250 1450 +Wire Wire Line + -1700 1850 -1250 1850 +Wire Wire Line + -1600 1800 -1600 3800 +Wire Wire Line + -1500 1450 -1500 1000 +Wire Wire Line + -2850 1000 -850 1000 +Connection ~ -2850 1000 +Connection ~ -1500 1450 +Wire Wire Line + -2850 3000 50 3000 +Wire Wire Line + -2000 3000 -2000 1650 +Connection ~ -2850 3000 +Wire Wire Line + -1350 300 -2800 300 +Connection ~ -2800 300 +Wire Wire Line + -2800 50 2650 50 +Wire Wire Line + -750 650 -250 650 +Wire Wire Line + -750 3000 -750 650 +Connection ~ -2000 3000 +Wire Wire Line + -100 850 -100 1100 +Connection ~ -2800 3500 +Wire Wire Line + -2800 3800 2650 3800 +Connection ~ -2800 3800 +Wire Wire Line + -100 1500 -100 1700 +Wire Wire Line + -400 1300 -400 1900 +Wire Wire Line + -400 1600 -850 1600 +Wire Wire Line + -850 1600 -850 1000 +Connection ~ -1500 1000 +Connection ~ -400 1600 +Wire Wire Line + 0 3800 0 2050 +Connection ~ -1600 3800 +Wire Wire Line + 850 900 950 900 +Wire Wire Line + 950 900 950 950 +Wire Wire Line + 900 50 900 900 +Connection ~ 900 900 +Wire Wire Line + 550 1100 550 1800 +Wire Wire Line + -100 1600 550 1600 +Wire Wire Line + 550 1600 550 1500 +Connection ~ 550 1500 +Connection ~ -100 1600 +Wire Wire Line + 850 2000 950 2000 +Wire Wire Line + 950 2000 950 1950 +Wire Wire Line + 900 3800 900 2000 +Connection ~ 900 2000 +Connection ~ 0 3800 +Wire Wire Line + 850 1300 850 1600 +Wire Wire Line + 2600 550 2700 550 +Wire Wire Line + 2700 550 2700 600 +Wire Wire Line + 2600 950 2600 1200 +Connection ~ 2650 550 +Wire Wire Line + 2600 1600 2700 1600 +Wire Wire Line + 2700 1600 2700 1550 +Wire Wire Line + 2650 1600 2650 1700 +Connection ~ 2650 1600 +Wire Wire Line + 2300 750 2300 1400 +Wire Wire Line + 2600 2500 2700 2500 +Wire Wire Line + 2700 2500 2700 2550 +Wire Wire Line + 2600 2900 2600 3150 +Connection ~ 2650 2500 +Wire Wire Line + 2600 3550 2700 3550 +Wire Wire Line + 2700 3550 2700 3500 +Wire Wire Line + 2300 2700 2300 3350 +Wire Wire Line + 3750 1500 4200 1500 +Wire Wire Line + 3750 1900 4200 1900 +Wire Wire Line + 3850 1850 3850 3850 +Wire Wire Line + 4100 1850 4100 350 +Wire Wire Line + 3950 1500 3950 1050 +Wire Wire Line + 2600 1050 4600 1050 +Connection ~ 2600 1050 +Connection ~ 3950 1500 +Wire Wire Line + 2600 3050 5350 3050 +Wire Wire Line + 3450 3050 3450 1700 +Connection ~ 2600 3050 +Wire Wire Line + 5350 500 5650 500 +Wire Wire Line + 5450 500 5450 550 +Wire Wire Line + 4100 350 2650 350 +Connection ~ 2650 350 +Wire Wire Line + 5400 100 5400 500 +Wire Wire Line + 2650 100 7900 100 +Connection ~ 5400 500 +Wire Wire Line + 5050 700 4700 700 +Wire Wire Line + 4700 700 4700 3050 +Connection ~ 3450 3050 +Wire Wire Line + 5350 900 5350 1150 +Connection ~ 2650 3550 +Wire Wire Line + 7900 3850 2650 3850 +Wire Wire Line + 5350 1550 5350 1750 +Wire Wire Line + 5050 1350 5050 1950 +Wire Wire Line + 5050 1650 4600 1650 +Wire Wire Line + 4600 1650 4600 1050 +Connection ~ 3950 1050 +Connection ~ 5050 1650 +Wire Wire Line + 5450 3850 5450 2100 +Connection ~ 3850 3850 +Wire Wire Line + 5350 3050 5350 2150 +Connection ~ 4700 3050 +Wire Wire Line + 6300 950 6400 950 +Wire Wire Line + 6400 950 6400 1000 +Wire Wire Line + 6350 100 6350 950 +Connection ~ 6350 950 +Connection ~ 5400 100 +Wire Wire Line + 6000 1150 6000 1850 +Wire Wire Line + 5350 1650 6000 1650 +Wire Wire Line + 6000 1650 6000 1550 +Connection ~ 6000 1550 +Connection ~ 5350 1650 +Wire Wire Line + 6300 2050 6400 2050 +Wire Wire Line + 6400 2050 6400 2000 +Wire Wire Line + 6350 3850 6350 2050 +Connection ~ 6350 2050 +Connection ~ 5450 3850 +Wire Wire Line + 6300 1350 6300 1650 +Wire Wire Line + -2800 2450 -2800 2000 +Wire Wire Line + -2800 2000 -2400 2000 +Wire Wire Line + -2400 2000 -2400 50 +Connection ~ -2400 50 +Wire Wire Line + 7850 500 7950 500 +Wire Wire Line + 7950 500 7950 550 +Wire Wire Line + 7850 900 7850 1150 +Connection ~ 7900 500 +Wire Wire Line + 7850 1550 7950 1550 +Wire Wire Line + 7950 1550 7950 1500 +Wire Wire Line + 7900 1550 7900 1650 +Connection ~ 7900 1550 +Wire Wire Line + 7550 700 7550 1350 +Wire Wire Line + 7850 2450 7950 2450 +Wire Wire Line + 7950 2450 7950 2500 +Wire Wire Line + 7850 2850 7850 3100 +Connection ~ 7900 2450 +Wire Wire Line + 7850 3500 7950 3500 +Wire Wire Line + 7950 3500 7950 3450 +Wire Wire Line + 7550 2650 7550 3300 +Wire Wire Line + 9000 1450 9450 1450 +Wire Wire Line + 9000 1850 9450 1850 +Wire Wire Line + 9100 1800 9100 3800 +Wire Wire Line + 9350 1800 9350 300 +Wire Wire Line + 9200 1450 9200 1000 +Wire Wire Line + 7850 1000 9850 1000 +Connection ~ 7850 1000 +Connection ~ 9200 1450 +Wire Wire Line + 7850 3000 10600 3000 +Wire Wire Line + 8700 3000 8700 1650 +Connection ~ 7850 3000 +Wire Wire Line + 10600 450 10850 450 +Wire Wire Line + 10700 450 10700 500 +Wire Wire Line + 9350 300 7900 300 +Connection ~ 7900 300 +Wire Wire Line + 10650 50 10650 450 +Wire Wire Line + 7900 50 11600 50 +Connection ~ 10650 450 +Wire Wire Line + 10300 650 9950 650 +Wire Wire Line + 9950 650 9950 3000 +Connection ~ 8700 3000 +Wire Wire Line + 10600 850 10600 1100 +Connection ~ 7900 3500 +Wire Wire Line + 7900 3800 11600 3800 +Connection ~ 7900 3800 +Wire Wire Line + 10600 1500 10600 1700 +Wire Wire Line + 10300 1300 10300 1900 +Wire Wire Line + 10300 1600 9850 1600 +Wire Wire Line + 9850 1600 9850 1000 +Connection ~ 9200 1000 +Connection ~ 10300 1600 +Wire Wire Line + 10700 3800 10700 2050 +Connection ~ 9100 3800 +Wire Wire Line + 10600 3000 10600 2100 +Connection ~ 9950 3000 +Wire Wire Line + 11550 900 11650 900 +Wire Wire Line + 11650 900 11650 950 +Wire Wire Line + 11600 50 11600 900 +Connection ~ 11600 900 +Connection ~ 10650 50 +Wire Wire Line + 11250 1100 11250 1800 +Wire Wire Line + 10600 1600 11250 1600 +Wire Wire Line + 11250 1600 11250 1500 +Connection ~ 11250 1500 +Connection ~ 10600 1600 +Wire Wire Line + 11550 2000 11650 2000 +Wire Wire Line + 11650 2000 11650 1950 +Wire Wire Line + 11600 3800 11600 2000 +Connection ~ 11600 2000 +Connection ~ 10700 3800 +Wire Wire Line + 11550 1300 11550 1600 +Wire Wire Line + 2650 50 2650 100 +Connection ~ 900 50 +Wire Wire Line + 7900 100 7900 50 +Connection ~ 6350 100 +Connection ~ 6350 3850 +Wire Wire Line + 2650 3850 2650 3550 +Connection ~ 900 3800 +Wire Wire Line + -2800 3500 -2800 3850 +Connection ~ -4200 3850 +Wire Wire Line + 2650 2500 2650 2100 +Wire Wire Line + 2650 2100 3100 2100 +Wire Wire Line + 3100 2100 3100 100 +Connection ~ 3100 100 +Wire Wire Line + 7900 2450 7900 1950 +Wire Wire Line + 7900 1950 8200 1950 +Wire Wire Line + 8200 1950 8200 50 +Connection ~ 8200 50 +Wire Wire Line + -2800 100 -2800 50 +Connection ~ -4200 100 +Connection ~ -8250 1100 +Connection ~ -8250 3050 +Wire Wire Line + -4250 1500 -4100 1500 +Connection ~ -4250 1500 +Wire Wire Line + -8850 3050 -8250 3050 +Wire Wire Line + -3450 1000 -3150 1000 +Connection ~ -3150 1000 +Wire Wire Line + -3500 3000 -3150 3000 +Connection ~ -3150 3000 +Wire Wire Line + -6050 1700 -6050 2050 +Wire Wire Line + -6050 2050 -8500 2050 +Wire Wire Line + -8500 2050 -8500 3050 +Connection ~ -8500 3050 +Wire Wire Line + -950 1650 -950 2150 +Wire Wire Line + -950 2150 -3300 2150 +Wire Wire Line + -3300 2150 -3300 3000 +Connection ~ -3300 3000 +Wire Wire Line + 4500 1700 4500 2350 +Wire Wire Line + 4500 2350 2000 2350 +Wire Wire Line + 2000 2350 2000 3050 +Wire Wire Line + 1700 3050 2300 3050 +Connection ~ 2300 3050 +Wire Wire Line + 9750 1650 9750 2150 +Wire Wire Line + 9750 2150 7350 2150 +Wire Wire Line + 7350 2150 7350 2950 +Wire Wire Line + 7100 2950 7550 2950 +Connection ~ 7550 2950 +Wire Wire Line + 850 1450 1050 1450 +Connection ~ 850 1450 +Connection ~ 2000 3050 +Wire Wire Line + 1850 1100 2300 1100 +Connection ~ 2300 1100 +Wire Wire Line + 6300 1450 6550 1450 +Connection ~ 6300 1450 +Wire Wire Line + 11550 1450 11750 1450 +Connection ~ 11550 1450 +Wire Wire Line + 7150 1050 7550 1050 +Connection ~ 7550 1050 +Connection ~ 7350 2950 +Connection ~ 2650 3800 +Wire Wire Line + 7900 3500 7900 3850 +Wire Wire Line + -8050 50 -7900 50 +Connection ~ -7900 50 +Wire Wire Line + -8200 4000 -7900 4000 +Connection ~ -7900 4000 +Wire Wire Line + -5100 1500 -5000 1500 +Wire Wire Line + -5000 1500 -5000 500 +Connection ~ -5100 500 +Wire Wire Line + -2800 150 -2800 500 +Wire Wire Line + -2800 150 -2650 150 +Wire Wire Line + -2650 150 -2650 50 +Connection ~ -2650 50 +Wire Wire Line + 5450 1500 5650 1500 +Wire Wire Line + 5650 1500 5650 500 +Connection ~ 5450 500 +Wire Wire Line + 10700 1450 10850 1450 +Wire Wire Line + 10850 1450 10850 450 +Connection ~ 10700 450 +Wire Wire Line + 2650 200 2650 550 +Wire Wire Line + 2650 200 2800 200 +Wire Wire Line + 2800 200 2800 100 +Connection ~ 2800 100 +Wire Wire Line + 7900 200 7900 500 +Wire Wire Line + 7900 200 8000 200 +Wire Wire Line + 8000 200 8000 50 +Connection ~ 8000 50 +Wire Wire Line + -1350 300 -1350 1800 +Wire Wire Line + -400 1300 -200 1300 +Wire Wire Line + -100 1500 100 1500 +Wire Wire Line + -100 1100 100 1100 +Wire Wire Line + 50 450 200 450 +Wire Wire Line + 150 50 150 500 +Wire Wire Line + 200 450 200 1450 +Connection ~ 150 450 +Wire Wire Line + -400 1900 -250 1900 +Wire Wire Line + -250 1900 -250 1950 +$Comp +L eSim_MOS_N M18 +U 1 1 68374D68 +P -150 1750 +F 0 "M18" H -150 1600 50 0000 R CNN +F 1 "eSim_MOS_N" H -50 1700 50 0000 R CNN +F 2 "" H 150 1450 29 0000 C CNN +F 3 "" H -50 1550 60 0000 C CNN + 1 -150 1750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 50 3000 50 2150 +Connection ~ -750 3000 +Wire Wire Line + 150 2100 150 3800 +Wire Wire Line + 150 3800 100 3800 +Connection ~ 100 3800 +Wire Wire Line + -100 1700 50 1700 +Wire Wire Line + 50 1700 50 1750 +Wire Wire Line + -100 850 50 850 +Wire Wire Line + -7900 2500 -7900 2200 +Wire Wire Line + -7900 2200 -7450 2200 +Wire Wire Line + -7450 2200 -7450 100 +Connection ~ -7450 100 +Wire Wire Line + 150 50 200 50 +Connection ~ 200 50 +Wire Wire Line + -7900 50 -7900 550 +Wire Wire Line + -7900 4000 -7900 3550 +Wire Wire Line + -8700 1100 -8250 1100 +Wire Wire Line + -8050 -350 -8050 50 +Wire Wire Line + -2800 1800 -4000 1800 +Wire Wire Line + -4000 1800 -4000 3850 +Connection ~ -4000 3850 +Wire Wire Line + -7900 1700 -7650 1700 +Wire Wire Line + -7650 1700 -7650 3850 +Connection ~ -7650 3850 +Wire Wire Line + 2650 1700 3050 1700 +Wire Wire Line + 3050 1700 3050 3850 +Connection ~ 3050 3850 +Wire Wire Line + 7900 1650 8100 1650 +Wire Wire Line + 8100 1650 8100 3800 +Connection ~ 8100 3800 +Wire Wire Line + 9250 1850 9250 3400 +Connection ~ 9250 1850 +Wire Wire Line + 9250 3400 10950 3400 +Wire Wire Line + 10950 3400 10950 1600 +Connection ~ 10950 1600 +Wire Wire Line + 3950 1900 3950 3600 +Wire Wire Line + 3950 3600 5650 3600 +Wire Wire Line + 5650 3600 5650 1650 +Connection ~ 5650 1650 +Connection ~ 3950 1900 +Wire Wire Line + -1500 1850 -1500 2850 +Wire Wire Line + -1500 2850 250 2850 +Wire Wire Line + 250 2850 250 1600 +Connection ~ 250 1600 +Connection ~ -1500 1850 +Wire Wire Line + -6550 1900 -6550 2650 +Wire Wire Line + -6550 2650 -4900 2650 +Wire Wire Line + -4900 2650 -4900 1650 +Connection ~ -4900 1650 +Connection ~ -6550 1900 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4030/CD4030.sub b/library/SubcircuitLibrary/CD4030/CD4030.sub new file mode 100644 index 000000000..6db18def6 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/CD4030.sub @@ -0,0 +1,52 @@ +* Subcircuit CD4030 +.subckt CD4030 net-_m2-pad2_ net-_m1-pad2_ net-_m10-pad1_ net-_m21-pad1_ net-_m12-pad2_ net-_m13-pad2_ net-_m1-pad3_ net-_m24-pad2_ net-_m23-pad2_ net-_m32-pad1_ net-_m43-pad1_ net-_m34-pad2_ net-_m35-pad2_ net-_m11-pad3_ +* c:\fossee\esim\library\subcircuitlibrary\cd4030\cd4030.cir +.include PMOS-5um.lib +.include NMOS-5um.lib +m3 net-_m1-pad1_ net-_m1-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m6 net-_m1-pad1_ net-_m2-pad2_ net-_m10-pad2_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m8 net-_m8-pad1_ net-_m2-pad1_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m11 net-_m10-pad1_ net-_m10-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m9 net-_m8-pad1_ net-_m1-pad1_ net-_m10-pad2_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m7 net-_m10-pad2_ net-_m1-pad1_ net-_m2-pad1_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m10 net-_m10-pad1_ net-_m10-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m5 net-_m1-pad1_ net-_m2-pad1_ net-_m10-pad2_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m4 net-_m2-pad1_ net-_m2-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m2 net-_m2-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m14 net-_m12-pad1_ net-_m12-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m17 net-_m12-pad1_ net-_m13-pad2_ net-_m16-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m19 net-_m19-pad1_ net-_m13-pad1_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m22 net-_m21-pad1_ net-_m16-pad3_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m20 net-_m19-pad1_ net-_m12-pad1_ net-_m16-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m21 net-_m21-pad1_ net-_m16-pad3_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m12 net-_m12-pad1_ net-_m12-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m16 net-_m12-pad1_ net-_m13-pad1_ net-_m16-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m15 net-_m13-pad1_ net-_m13-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m13 net-_m13-pad1_ net-_m13-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m25 net-_m23-pad1_ net-_m23-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m28 net-_m23-pad1_ net-_m24-pad2_ net-_m27-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m30 net-_m30-pad1_ net-_m24-pad1_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m33 net-_m32-pad1_ net-_m27-pad3_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m31 net-_m30-pad1_ net-_m23-pad1_ net-_m27-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m29 net-_m27-pad3_ net-_m23-pad1_ net-_m24-pad1_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m32 net-_m32-pad1_ net-_m27-pad3_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m23 net-_m23-pad1_ net-_m23-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m27 net-_m23-pad1_ net-_m24-pad1_ net-_m27-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m26 net-_m24-pad1_ net-_m24-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m24 net-_m24-pad1_ net-_m24-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m36 net-_m34-pad1_ net-_m34-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m39 net-_m34-pad1_ net-_m35-pad2_ net-_m38-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m41 net-_m41-pad1_ net-_m35-pad1_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m44 net-_m43-pad1_ net-_m38-pad3_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m42 net-_m41-pad1_ net-_m34-pad1_ net-_m38-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m40 net-_m38-pad3_ net-_m34-pad1_ net-_m35-pad1_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m43 net-_m43-pad1_ net-_m38-pad3_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m34 net-_m34-pad1_ net-_m34-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m38 net-_m34-pad1_ net-_m35-pad1_ net-_m38-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m37 net-_m35-pad1_ net-_m35-pad2_ net-_m11-pad3_ net-_m11-pad3_ mos_p W=100u L=100u M=1 +m35 net-_m35-pad1_ net-_m35-pad2_ net-_m1-pad3_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +m18 net-_m16-pad3_ net-_m12-pad1_ net-_m13-pad1_ net-_m1-pad3_ mos_n W=100u L=100u M=1 +* Control Statements + +.ends CD4030 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4030/CD4030_Previous_Values.xml b/library/SubcircuitLibrary/CD4030/CD4030_Previous_Values.xml new file mode 100644 index 000000000..275563399 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/CD4030_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4030/NMOS-5um.lib b/library/SubcircuitLibrary/CD4030/NMOS-5um.lib new file mode 100644 index 000000000..a237e1fe3 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/NMOS-5um.lib @@ -0,0 +1,5 @@ +* 5um technology + +.model mos_n NMOS( Cgso=0.4n Tox=85n Vto=1 phi=0.7 ++ Level=1 ++ Mj=.5 UO=750 Cgdo=0.4n Gamma=1.4 LAMBDA=0.01 LD=0.7u JS=1u CJ=0.4m CJSW=0.8n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/CD4030/PMOS-5um.lib b/library/SubcircuitLibrary/CD4030/PMOS-5um.lib new file mode 100644 index 000000000..9c3ed9760 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/PMOS-5um.lib @@ -0,0 +1,5 @@ +*5um technology + +.model mos_p PMOS( Cgso=0.4n Tox=85n Vto=-1 phi=0.65 ++ Level=1 ++ Mj=.5 UO=250 Cgdo=0.4n Gamma=0.65 LAMBDA=0.03 LD=0.6u JS=1u CJ=0.18m CJSW=0.6n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/CD4030/analysis b/library/SubcircuitLibrary/CD4030/analysis new file mode 100644 index 000000000..6783e70d4 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/analysis @@ -0,0 +1 @@ +.tran 10e-06 10e-03 0e-03 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4030/xor_test-cache.lib b/library/SubcircuitLibrary/CD4030/xor_test-cache.lib new file mode 100644 index 000000000..3366a5975 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/xor_test-cache.lib @@ -0,0 +1,96 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CD4030 +# +DEF CD4030 X 0 40 Y Y 1 F N +F0 "X" 0 -650 60 H V C CNN +F1 "CD4030" 0 350 60 H V C CNN +F2 "" 0 350 60 H I C CNN +F3 "" 0 350 60 H I C CNN +DRAW +S -250 250 250 -550 0 1 0 N +X A 1 -450 150 200 R 50 50 1 1 I +X B 2 -450 50 200 R 50 50 1 1 I +X J 3 -450 -50 200 R 50 50 1 1 O +X K 4 -450 -150 200 R 50 50 1 1 O +X C 5 -450 -250 200 R 50 50 1 1 I +X D 6 -450 -350 200 R 50 50 1 1 I +X VSS 7 -450 -450 200 R 50 50 1 1 I +X E 8 450 -450 200 L 50 50 1 1 I +X F 9 450 -350 200 L 50 50 1 1 I +X L 10 450 -250 200 L 50 50 1 1 O +X M 11 450 -150 200 L 50 50 1 1 O +X G 12 450 -50 200 L 50 50 1 1 I +X H 13 450 50 200 L 50 50 1 1 I +X VDD 14 450 150 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# DC +# +DEF DC v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "DC" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 w +X - 2 0 -450 300 U 50 50 1 1 w +ENDDRAW +ENDDEF +# +# eSim_GND +# +DEF eSim_GND #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -250 50 H I C CNN +F1 "eSim_GND" 0 -150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N +X GND 1 0 0 0 D 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# plot_v1 +# +DEF plot_v1 U 0 40 Y Y 1 F N +F0 "U" 0 500 60 H V C CNN +F1 "plot_v1" 200 350 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 0 500 100 0 1 0 N +X ~ ~ 0 200 200 U 50 50 1 1 I +ENDDRAW +ENDDEF +# +# pulse +# +DEF pulse v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "pulse" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -25 -450 501 928 871 0 1 0 N -50 50 0 50 +A 25 400 451 -931 -868 0 1 0 N 0 -50 50 -50 +A 75 600 551 -926 -873 0 1 0 N 50 50 100 50 +A 350 0 403 -1728 1728 0 1 0 N -50 -50 -50 50 +A 450 0 453 1736 -1736 0 1 0 N 0 50 0 -50 +A 600 0 552 -1748 1748 0 1 0 N 50 -50 50 50 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 P +X - 2 0 -450 300 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4030/xor_test.cir b/library/SubcircuitLibrary/CD4030/xor_test.cir new file mode 100644 index 000000000..3bff35fc3 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/xor_test.cir @@ -0,0 +1,17 @@ +* C:\Users\pavithra\eSim-Workspace\xor_test\xor_test.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/29/25 12:14:05 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +v1 A GND pulse +v2 B GND pulse +U4 J plot_v1 +v9 Net-_X1-Pad14_ GND DC +U1 A plot_v1 +U2 B plot_v1 +X1 A B J ? ? ? GND ? ? ? ? ? ? Net-_X1-Pad14_ CD4030 + +.end diff --git a/library/SubcircuitLibrary/CD4030/xor_test.cir.out b/library/SubcircuitLibrary/CD4030/xor_test.cir.out new file mode 100644 index 000000000..252d284e1 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/xor_test.cir.out @@ -0,0 +1,20 @@ +* c:\users\pavithra\esim-workspace\xor_test\xor_test.cir + +.include CD4030.sub +v1 a gnd pulse(0 5 2m 0.1n 0.1n 1m 2m) +v2 b gnd pulse(0 5 4m 0.1n 0.1n 2m 4m) +* u4 j plot_v1 +v9 net-_x1-pad14_ gnd dc 5 +* u1 a plot_v1 +* u2 b plot_v1 +x1 a b j ? ? ? gnd ? ? ? ? ? ? net-_x1-pad14_ CD4030 +.tran 10e-06 10e-03 0e-03 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(j)+6v(a)+12v(b) +.endc +.end diff --git a/library/SubcircuitLibrary/CD4030/xor_test.pro b/library/SubcircuitLibrary/CD4030/xor_test.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/xor_test.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4030/xor_test.proj b/library/SubcircuitLibrary/CD4030/xor_test.proj new file mode 100644 index 000000000..6ff11795c --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/xor_test.proj @@ -0,0 +1 @@ +schematicFile xor_test.sch diff --git a/library/SubcircuitLibrary/CD4030/xor_test.sch b/library/SubcircuitLibrary/CD4030/xor_test.sch new file mode 100644 index 000000000..63b84e400 --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/xor_test.sch @@ -0,0 +1,248 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:xor_test-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L pulse v1 +U 1 1 683745BA +P 2100 3850 +F 0 "v1" H 1900 3950 60 0000 C CNN +F 1 "pulse" H 1900 3800 60 0000 C CNN +F 2 "R1" H 1800 3850 60 0000 C CNN +F 3 "" H 2100 3850 60 0000 C CNN + 1 2100 3850 + 1 0 0 -1 +$EndComp +$Comp +L pulse v2 +U 1 1 68374A0F +P 2400 4050 +F 0 "v2" H 2200 4150 60 0000 C CNN +F 1 "pulse" H 2200 4000 60 0000 C CNN +F 2 "R1" H 2100 4050 60 0000 C CNN +F 3 "" H 2400 4050 60 0000 C CNN + 1 2400 4050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR01 +U 1 1 68374AF4 +P 2100 4550 +F 0 "#PWR01" H 2100 4300 50 0001 C CNN +F 1 "eSim_GND" H 2100 4400 50 0000 C CNN +F 2 "" H 2100 4550 50 0001 C CNN +F 3 "" H 2100 4550 50 0001 C CNN + 1 2100 4550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR02 +U 1 1 68374B3B +P 2400 4650 +F 0 "#PWR02" H 2400 4400 50 0001 C CNN +F 1 "eSim_GND" H 2400 4500 50 0000 C CNN +F 2 "" H 2400 4650 50 0001 C CNN +F 3 "" H 2400 4650 50 0001 C CNN + 1 2400 4650 + 1 0 0 -1 +$EndComp +$Comp +L plot_v1 U4 +U 1 1 68377A71 +P 5050 5550 +F 0 "U4" H 5050 6050 60 0000 C CNN +F 1 "plot_v1" H 5250 5900 60 0000 C CNN +F 2 "" H 5050 5550 60 0000 C CNN +F 3 "" H 5050 5550 60 0000 C CNN + 1 5050 5550 + 1 0 0 -1 +$EndComp +Text GLabel 4850 5500 0 60 Input ~ 0 +J +$Comp +L eSim_GND #PWR03 +U 1 1 68375687 +P 5000 3750 +F 0 "#PWR03" H 5000 3500 50 0001 C CNN +F 1 "eSim_GND" H 5000 3600 50 0000 C CNN +F 2 "" H 5000 3750 50 0001 C CNN +F 3 "" H 5000 3750 50 0001 C CNN + 1 5000 3750 + 1 0 0 -1 +$EndComp +$Comp +L DC v9 +U 1 1 683757DD +P 6150 2650 +F 0 "v9" H 5950 2750 60 0000 C CNN +F 1 "DC" H 5950 2600 60 0000 C CNN +F 2 "R1" H 5850 2650 60 0000 C CNN +F 3 "" H 6150 2650 60 0000 C CNN + 1 6150 2650 + 1 0 0 1 +$EndComp +$Comp +L eSim_GND #PWR04 +U 1 1 683758F0 +P 6300 2200 +F 0 "#PWR04" H 6300 1950 50 0001 C CNN +F 1 "eSim_GND" H 6300 2050 50 0000 C CNN +F 2 "" H 6300 2200 50 0001 C CNN +F 3 "" H 6300 2200 50 0001 C CNN + 1 6300 2200 + 1 0 0 -1 +$EndComp +NoConn ~ 6000 3200 +NoConn ~ 6000 3300 +NoConn ~ 6000 3400 +NoConn ~ 6000 3500 +NoConn ~ 6000 3600 +NoConn ~ 6000 3700 +NoConn ~ 5100 3600 +NoConn ~ 5100 3500 +NoConn ~ 5100 3400 +$Comp +L plot_v1 U1 +U 1 1 683808AA +P 3000 3300 +F 0 "U1" H 3000 3800 60 0000 C CNN +F 1 "plot_v1" H 3200 3650 60 0000 C CNN +F 2 "" H 3000 3300 60 0000 C CNN +F 3 "" H 3000 3300 60 0000 C CNN + 1 3000 3300 + 1 0 0 -1 +$EndComp +$Comp +L plot_v1 U2 +U 1 1 6838092D +P 3050 3950 +F 0 "U2" H 3050 4450 60 0000 C CNN +F 1 "plot_v1" H 3250 4300 60 0000 C CNN +F 2 "" H 3050 3950 60 0000 C CNN +F 3 "" H 3050 3950 60 0000 C CNN + 1 3050 3950 + 1 0 0 -1 +$EndComp +Text GLabel 2700 3150 0 60 Input ~ 0 +A +Wire Wire Line + 2100 3400 2100 3250 +Wire Wire Line + 2100 3250 4400 3250 +Wire Wire Line + 2400 3600 2400 3350 +Wire Wire Line + 2400 3350 4450 3350 +Wire Wire Line + 2100 4300 2100 4550 +Wire Wire Line + 2400 4500 2400 4650 +Wire Wire Line + 4700 3300 4700 5350 +Wire Wire Line + 4700 5350 5050 5350 +Wire Wire Line + 4850 5500 4900 5500 +Wire Wire Line + 4900 5500 4900 5350 +Connection ~ 4900 5350 +Wire Wire Line + 6000 3100 6150 3100 +Wire Wire Line + 6150 2200 6300 2200 +Wire Wire Line + 4400 3250 4400 3100 +Wire Wire Line + 4400 3100 5100 3100 +Wire Wire Line + 4450 3350 4450 3200 +Wire Wire Line + 4450 3200 5100 3200 +Wire Wire Line + 5000 3750 5000 3700 +Wire Wire Line + 5000 3700 5100 3700 +Wire Wire Line + 4700 3300 5100 3300 +Wire Wire Line + 3000 3100 3000 3250 +Connection ~ 3000 3250 +Wire Wire Line + 3050 3750 3550 3750 +Wire Wire Line + 3550 3750 3550 3350 +Connection ~ 3550 3350 +Wire Wire Line + 2700 3150 3000 3150 +Connection ~ 3000 3150 +Text GLabel 3200 3950 0 60 Input ~ 0 +B +Wire Wire Line + 3200 3950 3350 3950 +Wire Wire Line + 3350 3950 3350 3750 +Connection ~ 3350 3750 +$Comp +L CD4030 X1 +U 1 1 68380AFF +P 5550 3250 +F 0 "X1" H 5550 2600 60 0000 C CNN +F 1 "CD4030" H 5550 3600 60 0000 C CNN +F 2 "" H 5550 3600 60 0001 C CNN +F 3 "" H 5550 3600 60 0001 C CNN + 1 5550 3250 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4030/xor_test_Previous_Values.xml b/library/SubcircuitLibrary/CD4030/xor_test_Previous_Values.xml new file mode 100644 index 000000000..2a955c48a --- /dev/null +++ b/library/SubcircuitLibrary/CD4030/xor_test_Previous_Values.xml @@ -0,0 +1 @@ +pulse052m0.1n0.1n1m2mpulse054m0.1n0.1n2m4mpulse052m0.1n0.1n1m2mpulse052m0.1n0.1n1m2mpulse052m0.1n0.1n1m2mpulse052m0.1n0.1n1m2mpulse052m0.1n0.1n1m2mpulse052m0.1n0.1n1m2mdc5adc_bridgeadc_bridgedac_bridgedac_bridgeC:\FOSSEE\eSim\library\SubcircuitLibrary\CD4030truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes01010msusms \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4042A/CD4042A.cir b/library/SubcircuitLibrary/CD4042A/CD4042A.cir new file mode 100644 index 000000000..da82e3d21 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042A/CD4042A.cir @@ -0,0 +1,12 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ unconnected-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ unconnected-_U1-Pad16_ PORT +U3 Net-_U1-Pad5_ Net-_U3-Pad2_ d_inverter +U2 Net-_U1-Pad6_ Net-_U2-Pad2_ d_inverter +U8 Net-_U1-Pad5_ Net-_U2-Pad2_ Net-_U10-Pad1_ d_and +U9 Net-_U3-Pad2_ Net-_U1-Pad6_ Net-_U10-Pad2_ d_and +U5 Net-_U1-Pad7_ Net-_U10-Pad3_ unconnected-_U5-Pad3_ unconnected-_U5-Pad4_ Net-_U1-Pad10_ Net-_U1-Pad9_ d_dff +U4 Net-_U1-Pad4_ Net-_U10-Pad3_ unconnected-_U4-Pad3_ unconnected-_U4-Pad4_ Net-_U1-Pad2_ Net-_U1-Pad3_ d_dff +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_or +U6 Net-_U1-Pad13_ Net-_U10-Pad3_ unconnected-_U6-Pad3_ unconnected-_U6-Pad4_ Net-_U1-Pad11_ Net-_U1-Pad12_ d_dff +U7 Net-_U1-Pad14_ Net-_U10-Pad3_ unconnected-_U7-Pad3_ unconnected-_U7-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad15_ d_dff +.end diff --git a/library/SubcircuitLibrary/CD4042A/CD4042A.cir.out b/library/SubcircuitLibrary/CD4042A/CD4042A.cir.out new file mode 100644 index 000000000..49ae0a309 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042A/CD4042A.cir.out @@ -0,0 +1,48 @@ +.title kicad schematic + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ unconnected-_u1-pad16_ port +* u3 net-_u1-pad5_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad6_ net-_u2-pad2_ d_inverter +* u8 net-_u1-pad5_ net-_u2-pad2_ net-_u10-pad1_ d_and +* u9 net-_u3-pad2_ net-_u1-pad6_ net-_u10-pad2_ d_and +* u5 net-_u1-pad7_ net-_u10-pad3_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u1-pad10_ net-_u1-pad9_ d_dff +* u4 net-_u1-pad4_ net-_u10-pad3_ unconnected-_u4-pad3_ unconnected-_u4-pad4_ net-_u1-pad2_ net-_u1-pad3_ d_dff +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_or +* u6 net-_u1-pad13_ net-_u10-pad3_ unconnected-_u6-pad3_ unconnected-_u6-pad4_ net-_u1-pad11_ net-_u1-pad12_ d_dff +* u7 net-_u1-pad14_ net-_u10-pad3_ unconnected-_u7-pad3_ unconnected-_u7-pad4_ net-_u1-pad1_ net-_u1-pad15_ d_dff +a1 net-_u1-pad5_ net-_u3-pad2_ u3 +a2 net-_u1-pad6_ net-_u2-pad2_ u2 +a3 [net-_u1-pad5_ net-_u2-pad2_ ] net-_u10-pad1_ u8 +a4 [net-_u3-pad2_ net-_u1-pad6_ ] net-_u10-pad2_ u9 +a5 net-_u1-pad7_ net-_u10-pad3_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u1-pad10_ net-_u1-pad9_ u5 +a6 net-_u1-pad4_ net-_u10-pad3_ unconnected-_u4-pad3_ unconnected-_u4-pad4_ net-_u1-pad2_ net-_u1-pad3_ u4 +a7 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a8 net-_u1-pad13_ net-_u10-pad3_ unconnected-_u6-pad3_ unconnected-_u6-pad4_ net-_u1-pad11_ net-_u1-pad12_ u6 +a9 net-_u1-pad14_ net-_u10-pad3_ unconnected-_u7-pad3_ unconnected-_u7-pad4_ net-_u1-pad1_ net-_u1-pad15_ u7 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u5 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u4 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u10 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u6 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u7 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4042A/CD4042A.kicad_sch b/library/SubcircuitLibrary/CD4042A/CD4042A.kicad_sch new file mode 100644 index 000000000..73582344f --- /dev/null +++ b/library/SubcircuitLibrary/CD4042A/CD4042A.kicad_sch @@ -0,0 +1,1517 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 8c3a893e-9ecd-447a-a677-4a4a91746ec9) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 254 255.27) (diameter 0) (color 0 0 0 0) + (uuid 20913c9d-99e5-4480-b054-ff1eba12fe78) + ) + (junction (at 234.95 320.04) (diameter 0) (color 0 0 0 0) + (uuid 3da54882-9394-4be6-8e97-5ea1e27d1e39) + ) + (junction (at 254 210.82) (diameter 0) (color 0 0 0 0) + (uuid 475d243a-b9ca-4453-b426-dc13a2f43315) + ) + (junction (at 241.3 307.34) (diameter 0) (color 0 0 0 0) + (uuid a10089e5-cd3d-480f-8f1c-34e661ecfcad) + ) + (junction (at 254 166.37) (diameter 0) (color 0 0 0 0) + (uuid c9fbb60b-eb1b-40e5-86e1-eef6e0eab706) + ) + + (no_connect (at 279.4 262.89) (uuid 090cc2de-5c4c-46e1-a294-f0032fbe5298)) + (no_connect (at 279.4 96.52) (uuid 1582923e-c64f-4707-8975-3589c7a3846e)) + (no_connect (at 279.4 231.14) (uuid 1745bd78-4537-4227-be07-cbe8df416362)) + (no_connect (at 279.4 142.24) (uuid 205a1459-8e7d-4d6b-92b1-e1c4f56d64cd)) + (no_connect (at 279.4 218.44) (uuid 712be61a-7a30-4d5b-bad7-637c3f3bba48)) + (no_connect (at 279.4 128.27) (uuid 8da4660b-bf1f-4c8a-873e-5f6e4abad8ed)) + (no_connect (at 212.09 85.09) (uuid 91e4d02b-d161-4088-9c35-b90367bf54d3)) + (no_connect (at 212.09 77.47) (uuid 9246f981-6167-4603-8586-c87ec5e71670)) + (no_connect (at 279.4 186.69) (uuid d6284b61-abdf-44ac-8122-031cc9abfcf4)) + (no_connect (at 279.4 173.99) (uuid e7e67e28-e426-4ceb-b690-2c86cc4fa402)) + + (wire (pts (xy 290.83 312.42) (xy 290.83 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 167abedc-317e-42ee-863b-eb860d7d1737) + ) + (wire (pts (xy 254 210.82) (xy 254 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25e45080-5d5e-4c11-bbc2-a1da1000d60a) + ) + (wire (pts (xy 254 120.65) (xy 265.43 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e1823c6-0573-49c1-b284-bae2b346da95) + ) + (wire (pts (xy 215.9 194.31) (xy 265.43 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f0f12f7-0584-482a-a6e8-01f54131fc4f) + ) + (wire (pts (xy 241.3 317.5) (xy 241.3 307.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3421d033-ca83-4064-a57a-0f30954f9e1b) + ) + (wire (pts (xy 293.37 255.27) (xy 330.2 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 398bacfa-87b4-4ede-b7c6-1029789f1919) + ) + (wire (pts (xy 254 166.37) (xy 254 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b9b4d8c-454d-4184-b2d7-6d71a52baf5d) + ) + (wire (pts (xy 254 255.27) (xy 254 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dfe9ce0-91d4-4f28-8047-c84f6ece5bea) + ) + (wire (pts (xy 293.37 194.31) (xy 330.2 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45022598-c2c3-40f3-8423-1000c6eee64e) + ) + (wire (pts (xy 293.37 166.37) (xy 330.2 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55c98bee-53bb-484a-9f08-497729a8466b) + ) + (wire (pts (xy 254 210.82) (xy 265.43 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 606610f8-86e1-4991-b982-5256a3e81685) + ) + (wire (pts (xy 245.11 317.5) (xy 241.3 317.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66b06020-098b-404c-b647-86084e8d582c) + ) + (wire (pts (xy 293.37 104.14) (xy 330.2 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f19c4e8-eb36-432e-902c-56b8e9128fbb) + ) + (wire (pts (xy 199.39 307.34) (xy 241.3 307.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7856bf92-5f79-4ee0-968a-b533ef8b203c) + ) + (wire (pts (xy 290.83 314.96) (xy 290.83 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 791b8f08-6c31-4804-ae38-0174da8a8829) + ) + (wire (pts (xy 297.18 314.96) (xy 290.83 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ae83cc9-5243-4046-9f0d-3ab1118775f8) + ) + (wire (pts (xy 293.37 149.86) (xy 330.2 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 823486d5-c1fa-4aa2-aab3-0e6ea414f7db) + ) + (wire (pts (xy 234.95 320.04) (xy 267.97 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8935e641-cda6-4f67-9b2f-754d6da3d0aa) + ) + (wire (pts (xy 234.95 309.88) (xy 234.95 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b5198ef-2b08-42a0-a8d3-1d530faf70ed) + ) + (wire (pts (xy 245.11 309.88) (xy 234.95 309.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ef992b8-682c-441f-a612-bd31cdebad35) + ) + (wire (pts (xy 293.37 120.65) (xy 330.2 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3534cde-bc4d-42c6-8f53-f2d5b049732e) + ) + (wire (pts (xy 330.2 313.69) (xy 330.2 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3d34cc1-ab30-4834-97a9-0c8093bc48fd) + ) + (wire (pts (xy 215.9 238.76) (xy 265.43 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a49aded5-4352-4363-b61f-5c9b0374a357) + ) + (wire (pts (xy 330.2 294.64) (xy 254 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aec9eb6a-390a-437d-875e-da9796fbbb06) + ) + (wire (pts (xy 241.3 307.34) (xy 267.97 307.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b455a884-67c4-4713-94c5-42897f2085ed) + ) + (wire (pts (xy 293.37 238.76) (xy 330.2 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb65b29b-344a-409a-81a8-ff0ac8ba5a09) + ) + (wire (pts (xy 254 166.37) (xy 265.43 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc1486ab-f68f-4d00-bc89-bc19fa0d02a3) + ) + (wire (pts (xy 199.39 320.04) (xy 234.95 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bca9ead5-7b05-4bf9-8467-7fbe676f1e62) + ) + (wire (pts (xy 293.37 210.82) (xy 330.2 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be066d19-375a-402f-b758-323e7fded81e) + ) + (wire (pts (xy 260.35 317.5) (xy 267.97 317.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c284f00a-4ba6-4bc5-b495-f56529753475) + ) + (wire (pts (xy 215.9 104.14) (xy 265.43 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbc62eb6-6711-4d50-863a-c892c0deaa5c) + ) + (wire (pts (xy 320.04 313.69) (xy 330.2 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d90274ff-a65a-4c15-a785-0c12dda3edb8) + ) + (wire (pts (xy 254 120.65) (xy 254 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4230a11-8610-4271-9b99-bedd2714287b) + ) + (wire (pts (xy 215.9 149.86) (xy 265.43 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e736431f-47b4-4ce6-8c5d-3675cec8388c) + ) + (wire (pts (xy 260.35 309.88) (xy 267.97 309.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8b702d1-99d1-48c8-829e-b15b013206a2) + ) + (wire (pts (xy 297.18 312.42) (xy 290.83 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3153db2-3752-4f16-b427-9f2e9290988a) + ) + (wire (pts (xy 254 255.27) (xy 265.43 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa31203f-9142-4a66-9dc5-a6a951950ea1) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 279.4 309.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 018263f3-ff39-4e0c-a984-55f89eaecf01) + (property "Reference" "U8" (id 0) (at 279.4 300.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 279.4 304.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 279.4 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 85865e6d-feb5-439d-985b-972eeac37b82)) + (pin "2" (uuid 04f69cdb-113a-411e-9609-14b1dc55cefb)) + (pin "3" (uuid 324c92a2-a179-4a4f-8dfe-6ac152ef1459)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 336.55 166.37 0) (mirror y) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06edb5ce-5a24-49da-acc1-921abab600b6) + (property "Reference" "U1" (id 0) (at 340.36 165.735 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 340.36 168.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 336.55 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 336.55 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9c6368e5-02fc-4729-9ff9-b8a19f37caa0)) + (pin "2" (uuid d382b58a-35ff-4a78-bcf2-43f814e1e5ab)) + (pin "3" (uuid 011702c3-359b-4e48-9f04-249a1f5aac00)) + (pin "4" (uuid e8edb364-3c5f-43f2-9e33-3c0405dc8cff)) + (pin "5" (uuid 34403895-9f3e-4efc-91c6-bb2110a88290)) + (pin "6" (uuid d7fecec0-46a2-4697-bc20-49e906706db5)) + (pin "7" (uuid 6f0e1d6c-568e-4270-99eb-8ed98e916a65)) + (pin "8" (uuid 16eb2e75-bf8c-4ab9-8216-9f18dbc093bc)) + (pin "9" (uuid 3ef5b958-bd8c-4ff2-81bc-dc9fccac915e)) + (pin "10" (uuid c9427d02-6897-4702-bdf1-5a68156cbcb1)) + (pin "11" (uuid 389d0855-eb58-454f-a0bb-862832409d97)) + (pin "12" (uuid 16c065fb-4b10-42a9-ba30-1dbec7a4fa4a)) + (pin "13" (uuid c8936a31-18f9-4697-9d97-dfee74ea6763)) + (pin "14" (uuid e071475f-1fee-40d0-837a-8b11a36a0349)) + (pin "15" (uuid 1ad81588-1c3e-4b7a-a315-db15d1c2ec3c)) + (pin "16" (uuid e2d5312d-de52-47a6-bc9d-5932cb6fb5e3)) + (pin "17" (uuid bd1b416d-fc95-4f4b-aeb7-c6183afe377e)) + (pin "18" (uuid 1d351032-96a6-4e87-9109-7bff567a5f69)) + (pin "19" (uuid 82c70364-c409-45e4-b19a-e852b8189dae)) + (pin "20" (uuid 04785eea-9f34-4883-8552-f6b99bbabf25)) + (pin "21" (uuid e5c5170d-7be9-4db2-8b67-b9056b24b78b)) + (pin "22" (uuid acdf2854-6bfe-4af6-9063-29c3e5f6aea9)) + (pin "23" (uuid e2e2de39-8266-4d43-b351-fe907b428695)) + (pin "24" (uuid b0a00846-d364-4c0c-b140-dd7bf43c28b6)) + (pin "25" (uuid 34258ce2-1640-4146-bc1d-bb7523b24f10)) + (pin "26" (uuid 23db6b55-a740-4ae2-9532-1dbcc327c31c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 205.74 77.47 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0dc1c98f-b520-422e-a2d9-3f42357ce472) + (property "Reference" "U1" (id 0) (at 206.375 72.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 206.375 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 205.74 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a5ad0cc2-6441-4a3c-8566-6426c7edd68e)) + (pin "2" (uuid 4137be43-1a43-4ef8-b069-6e5c7547e50e)) + (pin "3" (uuid 628a9dd1-c9fc-4534-ab57-76aef56c7303)) + (pin "4" (uuid c7c06e87-5d5c-454e-a64b-9f19a2df346f)) + (pin "5" (uuid 0f0a092c-2db3-44a0-8353-24caefaa0c3b)) + (pin "6" (uuid da509479-6341-46c0-9070-177d5a5864ee)) + (pin "7" (uuid 9aabf52e-aa09-45ba-95d6-8c041376d463)) + (pin "8" (uuid 510f343e-9e38-4e9f-b7dc-ab2ce70cd512)) + (pin "9" (uuid 6d794c9a-6b4f-4d49-872a-75bdda35a1a1)) + (pin "10" (uuid d6a9b5de-c86d-44e0-86da-de91b56181fd)) + (pin "11" (uuid 823774cb-ea03-4e70-98ae-0c4454ea70ea)) + (pin "12" (uuid d68b6779-5528-4239-8dbd-94134c5df550)) + (pin "13" (uuid b25d1b5d-abda-4855-90b5-e4af84ab0249)) + (pin "14" (uuid 8108da6d-4104-4b2c-8939-8a0b7b661527)) + (pin "15" (uuid f4e9d438-16c8-45e9-90a6-6fe8b5f0faf9)) + (pin "16" (uuid 053dba40-a073-4486-8283-9256a2eb1760)) + (pin "17" (uuid 9f335bf3-6ee3-44e8-aed5-f8f24a12fb09)) + (pin "18" (uuid 2c67ec2b-d128-436f-81fb-ef436212404e)) + (pin "19" (uuid 7c253eaf-b98d-4ef5-9096-7e80dfad01ef)) + (pin "20" (uuid 5cfdbc14-367b-4285-80a0-0cb66b42d3c4)) + (pin "21" (uuid 8d3b02c0-1ebf-47ae-82ce-c1fa8f50600e)) + (pin "22" (uuid 957378df-3cec-41b2-a6f5-3ea04a0e34e8)) + (pin "23" (uuid a53577cb-f67a-45d2-8df7-da5776578892)) + (pin "24" (uuid c5f2ced9-08de-4692-aa01-63396986b9a2)) + (pin "25" (uuid 266ff5f3-ae47-47b7-951b-4c687b625bfd)) + (pin "26" (uuid be1c782e-b95e-47c3-964e-c9fecca57ae0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 336.55 120.65 0) (mirror y) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15bc00d6-943d-4b32-9c86-143083bf5129) + (property "Reference" "U1" (id 0) (at 340.36 120.015 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 340.36 122.555 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 336.55 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 336.55 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4160afad-0902-4917-a815-af8d4bff66a3)) + (pin "2" (uuid 5ec169c1-6602-4b1d-827e-93b41bc59cd8)) + (pin "3" (uuid 997dcc2f-0fdc-4e78-93fc-dc35b58d3bcf)) + (pin "4" (uuid a5a6099e-cf3f-4262-ba6d-23010399735c)) + (pin "5" (uuid 46b6e4e9-455a-4bb3-bde7-3bc1c53c7b61)) + (pin "6" (uuid 72918616-47d4-45ec-aa2c-f50ca9ead1a4)) + (pin "7" (uuid a0374325-07d8-4195-b010-9b55224c6ad7)) + (pin "8" (uuid cd94cd48-fe51-43e4-bccb-d813b2002ec4)) + (pin "9" (uuid 7e5fd8eb-bd93-4595-9593-95da00403963)) + (pin "10" (uuid ba50746e-c1b7-4a6f-b41a-7548e8216bb3)) + (pin "11" (uuid b8ac5d2f-fb3e-414f-981f-23b8cc223c23)) + (pin "12" (uuid cd285fa3-bf32-444d-8328-36f0f2f64857)) + (pin "13" (uuid 204d78f3-87d5-4315-bf61-170c0f76c92a)) + (pin "14" (uuid e8db026b-48a1-4915-aa72-1026345f8161)) + (pin "15" (uuid 12c0cc9d-3e3f-4af9-b2e3-3fd6511cd9c5)) + (pin "16" (uuid d18d1460-ae57-4af3-9883-15931a72e122)) + (pin "17" (uuid 64447e6e-08d1-4817-971a-138c182acaec)) + (pin "18" (uuid 5de74a9e-e4a5-460d-a870-aab5d48c099f)) + (pin "19" (uuid 6eb9656b-257a-4763-992c-764e67db07f3)) + (pin "20" (uuid 25996ee7-a7d4-42e2-92fb-605b4419f32a)) + (pin "21" (uuid 11bad685-0a28-4d0d-8c66-58074577b471)) + (pin "22" (uuid 31045783-b464-41a0-8b98-fb911ed108ce)) + (pin "23" (uuid c5fe7ff6-8c84-4676-86fd-e2f255801065)) + (pin "24" (uuid a84af28c-4de0-45d3-afd1-7332bfee36ac)) + (pin "25" (uuid f1bbb74d-10ca-4d2e-91eb-1531bcccab2b)) + (pin "26" (uuid 83f1209b-ac4b-4d2b-91a3-3a99c02bd2f7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 252.73 317.5 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 228c845c-c258-439b-a327-96be7d8aaedf) + (property "Reference" "U3" (id 0) (at 252.73 312.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 252.73 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 254 318.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 318.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8554d18a-dcb9-41ce-b97f-9f30797040a0)) + (pin "2" (uuid e5412e4a-0407-47ad-82b6-4aa882d1dcd1)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 279.4 247.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2cbf84e5-dc49-4bb2-9dbf-c90d53997e4b) + (property "Reference" "U7" (id 0) (at 281.4194 231.14 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 281.4194 234.95 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 279.4 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5b554c29-2153-4a39-b534-fa5f8e3fc8bb)) + (pin "2" (uuid 7176f243-12cc-4016-a15f-f1862fb64c04)) + (pin "3" (uuid 4fec159f-b09f-422d-b543-ceb44b0b26fd)) + (pin "4" (uuid fa27d522-5acc-41bf-a934-fdd866282f5f)) + (pin "5" (uuid 543a24cc-313b-4d42-90b7-ee6f825e0f21)) + (pin "6" (uuid 8d484e53-1f7e-4be7-ad30-b5683cdb901c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 336.55 210.82 0) (mirror y) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 314f31a1-3d43-40a4-be26-512d5796a74c) + (property "Reference" "U1" (id 0) (at 340.36 210.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 340.36 212.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 336.55 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 336.55 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cdf806ce-43df-4714-88b6-620a62102023)) + (pin "2" (uuid dea36bf2-62eb-4a1e-8b9c-a1b16a68db7c)) + (pin "3" (uuid d85adf5c-1a03-4621-b65e-33ac8af0c9e7)) + (pin "4" (uuid a8036811-1b7e-4d9d-a312-76864bd417f3)) + (pin "5" (uuid c9809066-9aaf-464f-8b77-743f40347cbc)) + (pin "6" (uuid c1beef3d-b57c-4c5b-9b61-2c541e0b20ba)) + (pin "7" (uuid 67399c62-f8e7-4f68-b612-4b88e19da964)) + (pin "8" (uuid 6cfa6c85-3195-4fed-8f35-cc9b3b08cbdf)) + (pin "9" (uuid 96fc39fc-5b94-4867-bfd4-57886dd1df6f)) + (pin "10" (uuid 1f392776-873e-4485-842d-580c7a461c0f)) + (pin "11" (uuid d8df72c6-88b8-471d-bf35-8c5079c5bd2e)) + (pin "12" (uuid c3e34a50-8e22-4e49-9644-7c493e0be22e)) + (pin "13" (uuid ad64ec0b-a157-4827-a453-5c4a9f59f3d7)) + (pin "14" (uuid caa8ba75-b249-4662-8621-c2467a5edec0)) + (pin "15" (uuid e0399ce1-aa02-4756-83cd-7ebde618bc45)) + (pin "16" (uuid 29170ca5-f34a-42c7-b059-6b26e5155b7b)) + (pin "17" (uuid 761d4ca7-c23a-400e-8bea-10eb931c9fb5)) + (pin "18" (uuid c62775a1-0ef9-4ae7-8d6e-8fc5d201113f)) + (pin "19" (uuid b1b967f6-8205-42d6-88fc-9109d0372534)) + (pin "20" (uuid d6e37d05-1eba-464e-aeed-84b7fcd3d83e)) + (pin "21" (uuid 8dfd7366-1e8f-41ce-a5c1-b8478ca5aa6b)) + (pin "22" (uuid 92e669ff-be07-408c-9f7c-f6a7a6ae451c)) + (pin "23" (uuid 8cfe302e-ad42-4810-86f3-1d8f2f822609)) + (pin "24" (uuid f8ee11ba-3b06-4ac2-a005-1dea71d28008)) + (pin "25" (uuid be38e68f-7a22-46d5-8876-ba721612fe2d)) + (pin "26" (uuid 85bd4285-21c4-40d1-bebb-094fbe5f6c95)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 336.55 149.86 0) (mirror y) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4d3c422c-fc11-420c-bd5c-ac5c71cac4e2) + (property "Reference" "U1" (id 0) (at 340.36 149.225 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 340.36 151.765 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 336.55 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 336.55 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c01846e7-6f91-4581-970f-9994790def00)) + (pin "2" (uuid 449ec469-6f58-4112-9eec-3a3afd17fe2b)) + (pin "3" (uuid aaafa11d-cebe-44fb-9989-cc703a5acfec)) + (pin "4" (uuid e82c0631-e4f4-4aeb-b28a-e3dc039871d0)) + (pin "5" (uuid f540771b-54d2-4521-bdf3-4086586d639b)) + (pin "6" (uuid f0ad8a87-4def-47c2-8424-e6aa1614d0ea)) + (pin "7" (uuid 9776f136-c128-4cb8-9bf7-ff724eee21f9)) + (pin "8" (uuid cb33896a-7bf3-47c2-9f8b-dfc1fda3b65e)) + (pin "9" (uuid a74537be-9299-45ae-8ff5-709d843afbb1)) + (pin "10" (uuid 1d3ae134-56fc-4b95-81c6-9d1146bf358e)) + (pin "11" (uuid 9cc4ac7a-c363-4361-9baa-2a8070c8d61c)) + (pin "12" (uuid ad659541-bdfa-411f-96ee-7f3d9694a4d9)) + (pin "13" (uuid 00618eb9-8756-481c-9559-7ae4a4797a9c)) + (pin "14" (uuid 898c03a4-ec64-4fa2-a79e-642cb713863d)) + (pin "15" (uuid 893c9b96-4b64-4d7a-8124-5978c1a78a53)) + (pin "16" (uuid 370472c6-d369-46bf-8868-ca840b9eb3ef)) + (pin "17" (uuid 355a6cc6-3099-4590-9311-d060f4d52d98)) + (pin "18" (uuid ac3b13ae-600f-461d-85c0-b5915d3d2249)) + (pin "19" (uuid 9ac9d93f-c922-4147-80ba-df36464a7252)) + (pin "20" (uuid 4678b8c8-5e71-4774-882a-4d0774172d57)) + (pin "21" (uuid 810ab770-dad4-4147-aaf9-8d4a0a8eb145)) + (pin "22" (uuid 91cacf9f-c7ec-440c-b9e4-4adcb0517080)) + (pin "23" (uuid 113e6278-bb13-4c2d-aa3d-400da3b302d6)) + (pin "24" (uuid e103b8b5-90f7-42eb-8de7-cecc189a64c6)) + (pin "25" (uuid d64ec08f-41d3-4ff1-ab30-1de7081c5e56)) + (pin "26" (uuid 46697a54-e7eb-4d91-9ef9-8f6c65ada3ea)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 104.14 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5710f874-684a-4b66-9f06-7550c3210688) + (property "Reference" "U1" (id 0) (at 210.185 99.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 210.185 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 209.55 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 20ed8351-73fa-44f3-ba6b-cd538e568f01)) + (pin "2" (uuid 70c667e0-04cc-437f-a411-001aead87352)) + (pin "3" (uuid 4e7046c8-4e50-40de-9a2d-cbdd8ce9640b)) + (pin "4" (uuid 8701fe07-9748-4f66-9d73-f39f2e90fd1c)) + (pin "5" (uuid abfd5cb5-95bd-4099-985b-d0cc59da0ac6)) + (pin "6" (uuid f41f656d-9110-4106-8a89-f2b07f33725f)) + (pin "7" (uuid 9b380afd-eece-4389-8198-0fdd4ccbb33d)) + (pin "8" (uuid b531120a-7aaf-4255-812a-2517c7c2af27)) + (pin "9" (uuid 4da979f7-65d9-4197-adae-9ae5172b431b)) + (pin "10" (uuid 29552923-2794-450c-b0c4-cce949d1ca6a)) + (pin "11" (uuid 21468bcf-0631-4629-a861-7f187a56108d)) + (pin "12" (uuid 3cf3874b-c6bc-4aeb-b6d5-cf981090d107)) + (pin "13" (uuid 0e447c31-8d07-4da2-96f4-392b1e43f4fa)) + (pin "14" (uuid 43cdee4d-9589-4a68-a091-d1931058915a)) + (pin "15" (uuid 9349e6cc-9a37-45a9-800c-03dc548a24c8)) + (pin "16" (uuid 6a3d4552-0d3e-4a66-aca4-cbc2d7f30142)) + (pin "17" (uuid 0ca04d35-cfa1-4382-9ab0-eb74092c487e)) + (pin "18" (uuid 29485c3f-408a-414c-a45d-c6ba636b5211)) + (pin "19" (uuid 9a783f3c-f55f-4edf-bc50-4169aa9adaf6)) + (pin "20" (uuid d8f76e5e-e20b-4763-92f9-6a4d507a593a)) + (pin "21" (uuid 9c48c0af-1ad5-43f6-ae05-8df29ff93257)) + (pin "22" (uuid 6abf4cb7-382e-4cc3-a3cc-8205be245d35)) + (pin "23" (uuid 317fff42-e9ca-4079-add4-657e36251ed9)) + (pin "24" (uuid dc46fc01-d781-4afa-98ed-d47f6851aaac)) + (pin "25" (uuid cd746b2c-ab0f-418c-8b79-4f6d7abfa853)) + (pin "26" (uuid 43375f22-a610-41f2-8aa0-3db9a9cc76b0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 149.86 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 601e1338-0747-459f-944e-1b886c1557cf) + (property "Reference" "U1" (id 0) (at 210.185 144.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 210.185 147.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 209.55 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ece4c186-bc2c-4055-bd07-d6d8a481d095)) + (pin "2" (uuid 55e93182-6920-4e54-996b-2bb2072bd9be)) + (pin "3" (uuid 10ee22c1-b8d1-4175-b754-c98a0fb6b64e)) + (pin "4" (uuid 82d47618-ab85-4075-a7dc-46403357003f)) + (pin "5" (uuid 9f78a31d-cd99-4958-95b6-433689ed8ca7)) + (pin "6" (uuid a10dc8d7-0958-43ba-9e3d-4a47eb99ecab)) + (pin "7" (uuid 573d2f27-545b-4303-b58f-0bff55a09059)) + (pin "8" (uuid 7656b507-1ad0-4bd1-bca5-76cb837b9be3)) + (pin "9" (uuid eebdd421-1459-4226-9993-97d90506d32c)) + (pin "10" (uuid e7a03e49-3975-4ff5-b860-f2de6c1b3bb7)) + (pin "11" (uuid 4aab9372-adb1-4e60-a9f6-4d004a5742ee)) + (pin "12" (uuid 8ac08318-71e5-4421-848e-9e088428934a)) + (pin "13" (uuid dfa14039-1625-48fc-ad39-a710c9f84825)) + (pin "14" (uuid 82108740-6313-40e6-adf1-ce86d165cd83)) + (pin "15" (uuid 65e4ebfe-c69c-455c-ae3e-e1baccc8aab4)) + (pin "16" (uuid 06527c6e-66ab-42c2-88f1-1e00f57c2c1b)) + (pin "17" (uuid abda4f9f-a073-41b1-9895-94cce4469a48)) + (pin "18" (uuid 057bed78-703a-4829-a937-c9bf6cc53929)) + (pin "19" (uuid 7d07ed8c-e1f1-4712-91a8-fd4d6404636c)) + (pin "20" (uuid 5481132c-25cb-45d1-8512-cc17456bfa09)) + (pin "21" (uuid 69253c1d-5772-4f04-b020-85f7b4decc7d)) + (pin "22" (uuid 298bc779-4a88-4da4-a4d5-f81039a4d16a)) + (pin "23" (uuid 00ffb8f8-7b73-4278-b9f0-5f6041b4aa7b)) + (pin "24" (uuid 94158b8f-7e1d-4cb3-8891-98cf508c8acf)) + (pin "25" (uuid 6de357d1-d2a6-4f2d-b5d4-06a274b5d17a)) + (pin "26" (uuid 9cab488b-99a4-41a3-8c7b-76ddebd09228)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 279.4 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7699303c-2c63-49a0-a61c-fb51fcaa5c8c) + (property "Reference" "U4" (id 0) (at 281.4194 96.52 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 281.4194 100.33 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 279.4 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 03c1982f-d45c-4d05-a419-3e9bda82d205)) + (pin "2" (uuid a4cdd3ee-bbf4-4602-a99c-deb3cca870b5)) + (pin "3" (uuid de529c2d-c3e3-464d-abcc-22928b348030)) + (pin "4" (uuid 10ff883c-8d65-47ee-9bc7-b5beecbb0813)) + (pin "5" (uuid b5a1a682-ee79-4289-b63d-8858443d3c03)) + (pin "6" (uuid ee22de93-52d7-4227-9bbe-6b6c5caad108)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 336.55 104.14 0) (mirror y) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ee30adb-2e05-4015-8e76-24223dcf02fd) + (property "Reference" "U1" (id 0) (at 340.36 103.505 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 340.36 106.045 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 336.55 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 336.55 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bdbfe15f-2c9d-4f1e-83e2-f04316201222)) + (pin "2" (uuid 1b839014-f09f-4bd2-b2a2-4b16c660dd5c)) + (pin "3" (uuid a6dd9e68-f28c-4527-ad18-eb823a600709)) + (pin "4" (uuid 41059299-8811-4062-b1d0-156d5515fade)) + (pin "5" (uuid e20776bf-6771-49a0-887c-875892bb88e0)) + (pin "6" (uuid 14fe03ef-be85-44b5-a7a5-baaa1d7fd565)) + (pin "7" (uuid a0984e6f-6806-4ad5-83e2-5efd09596533)) + (pin "8" (uuid 58269e4e-2f0e-486b-b720-d80795783d1d)) + (pin "9" (uuid 12338be4-ec32-4676-be3b-a2eb6da6bce0)) + (pin "10" (uuid 445dffd2-8984-459e-bf08-53ef3f57ea41)) + (pin "11" (uuid 07137000-c442-49b7-bf4d-c5635bf1e87c)) + (pin "12" (uuid acfcd0de-345f-49a8-836c-05b9f5798d74)) + (pin "13" (uuid 46e97d67-79e5-4ea1-91a9-2641d772c79c)) + (pin "14" (uuid 9f9e5add-1ea2-460f-8cce-e5e8385eb7be)) + (pin "15" (uuid 2cb93392-c687-442c-8bb7-4361536621f0)) + (pin "16" (uuid c1f9c85b-fc56-4f76-a607-b115c4430545)) + (pin "17" (uuid 0245b7b0-3f83-41f0-86bb-616ef2ebd883)) + (pin "18" (uuid 13f1e606-edeb-457c-bd9e-e54f912d6553)) + (pin "19" (uuid 94e31b16-32fd-4049-9436-3079a8764df9)) + (pin "20" (uuid dda1e5aa-2b50-4d58-a35d-ba7e2587e930)) + (pin "21" (uuid 033992ef-0e33-4cdc-b2a7-d039ff68f311)) + (pin "22" (uuid d6ff22bf-e446-4aaa-8658-86563067eafb)) + (pin "23" (uuid 8dc186ff-bb0a-46e3-98b0-da94c838be26)) + (pin "24" (uuid 396d14de-4bc9-4500-a18e-474884722f8b)) + (pin "25" (uuid 341922a2-e644-4d19-8cb1-03642f3c6d97)) + (pin "26" (uuid 3a785d53-baf9-442f-bd72-089eda25959a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 336.55 255.27 0) (mirror y) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 81f62e27-7d5c-4944-932a-116746c766f3) + (property "Reference" "U1" (id 0) (at 340.36 254.635 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 340.36 257.175 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 336.55 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 336.55 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 08548230-01ce-42db-b0d3-3adee33e5381)) + (pin "2" (uuid 7184d60b-84af-44e6-8cfc-7793b839003c)) + (pin "3" (uuid 117b674d-47a7-4ddb-b634-b9e3085b1308)) + (pin "4" (uuid c8259ce6-28e6-4c94-9be9-6a453eb5ab78)) + (pin "5" (uuid 6283a54e-da23-4be4-995d-13ded22ae5d5)) + (pin "6" (uuid 872e6fae-73bc-4cf1-b892-76d9b428a5ff)) + (pin "7" (uuid d4dd7235-740e-45f2-9e79-dc9e543d66ac)) + (pin "8" (uuid 1350cc84-d852-4494-bc1f-e919d227f89c)) + (pin "9" (uuid 1f95b09f-979c-46ec-b650-5593ed438f5d)) + (pin "10" (uuid a1285136-c69c-45be-a886-37e7a289e136)) + (pin "11" (uuid 5c6dd5e7-5313-415c-94e6-551330f495b1)) + (pin "12" (uuid 2f7c2ebd-5c47-4cce-a27e-f0daba2914e0)) + (pin "13" (uuid 7bf8e7d7-c7c6-4e20-93da-096e003bb1db)) + (pin "14" (uuid 02f3460b-37f8-4c78-bec2-4ec120d6f121)) + (pin "15" (uuid c6e9e4f8-6d07-4b14-97d3-8542c2f21188)) + (pin "16" (uuid ed09df70-1f5e-473e-899c-0b656d15998e)) + (pin "17" (uuid 0d3c38bd-fdd4-49db-b844-0d77a511524f)) + (pin "18" (uuid 813e2cc1-cab7-4134-aa6f-51b14b1f9ac1)) + (pin "19" (uuid 1b5ed819-93bb-4678-9764-0d95bf59c6fc)) + (pin "20" (uuid 7ce3add8-0174-44ff-88d9-1c7431a23701)) + (pin "21" (uuid 4dc7241e-7fb0-49c2-b652-de7b5bb72ff7)) + (pin "22" (uuid 71fe203d-3f8c-4ab9-8953-e3f3e75e5244)) + (pin "23" (uuid c9bbddc9-153b-4526-9ce5-55d98dede429)) + (pin "24" (uuid 8f1ef9f0-45ab-46a8-9822-f0bad427d6fc)) + (pin "25" (uuid 18c8035f-a97d-44d6-a30a-c6da75523d80)) + (pin "26" (uuid 77217dd0-e2ec-4038-ba9f-3954baf70e4d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 252.73 309.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 85276ef3-e7a0-4fbe-ac9b-dcb03e6e1e05) + (property "Reference" "U2" (id 0) (at 252.73 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 252.73 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 254 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dcf33a0c-c4da-4ce6-9d9e-a47296aeb97a)) + (pin "2" (uuid ffb49343-0ef3-485d-8dc5-41de16de337d)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 308.61 314.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8d3e68a4-862b-4149-8796-e3560077c482) + (property "Reference" "U10" (id 0) (at 308.61 306.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 308.61 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 308.61 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 308.61 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1315ad77-8638-489d-b1b0-9ff8f1ea353b)) + (pin "2" (uuid 36cc7946-ff8c-4aa8-a808-1c631c6b2664)) + (pin "3" (uuid 8fea9ddb-9dec-4bc1-b5c6-7bf603c9d1bb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 238.76 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8febfa54-ee82-40b0-9b44-28b7ccc20c41) + (property "Reference" "U1" (id 0) (at 210.185 233.68 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 210.185 236.22 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 209.55 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid deeb832e-bb7a-4c27-a2a0-fef15d3a0e97)) + (pin "2" (uuid 1f9d4b22-074a-473f-ad99-a0e10e3ef2c1)) + (pin "3" (uuid d6515878-7216-455b-be0c-6077cbd41e0c)) + (pin "4" (uuid 283180e6-b516-41ad-be5d-9698e056211d)) + (pin "5" (uuid 7d413c78-290c-49c4-a01c-c8251a840304)) + (pin "6" (uuid 0fb811df-8036-4b46-a8ae-71ee874f5615)) + (pin "7" (uuid c2a3ae8a-e0da-4ff9-9e58-cda15cfd9ae1)) + (pin "8" (uuid b745a70c-327f-4422-aab8-d79def47e56b)) + (pin "9" (uuid a6c8d93a-e704-4667-bba7-6af69f8020b8)) + (pin "10" (uuid 8976b9ff-ac60-4c4a-aa1c-9b8d187aa74c)) + (pin "11" (uuid f9c7603b-aaed-4593-ae26-7e26c9e74db0)) + (pin "12" (uuid 99b663c6-92aa-4c34-b925-43b6fbf4f1e5)) + (pin "13" (uuid fb88d1e6-82f1-449d-95e0-ff3a00ce6869)) + (pin "14" (uuid 910eebad-3220-49ae-9f03-58f76b415567)) + (pin "15" (uuid 31990d01-176e-4f8a-ae64-a2162258bfaf)) + (pin "16" (uuid 72401e4d-9d62-444f-8b7e-fc4f16e2dda2)) + (pin "17" (uuid 54b28de9-bb44-4655-9ea3-c4256e299853)) + (pin "18" (uuid 711f0c84-fcfa-4932-a1e5-b62203dea94c)) + (pin "19" (uuid b59003c1-d143-48ac-ae3d-1823f31cc5a8)) + (pin "20" (uuid 72160d18-0e2b-499f-adc6-ec9f72e82500)) + (pin "21" (uuid 7ac8ab93-8930-42aa-8962-fb5873e827ec)) + (pin "22" (uuid 8fc8a252-bf48-4084-a5db-80ddfa36e74b)) + (pin "23" (uuid de1c9ea0-3d39-4e49-941b-5c6e50491de2)) + (pin "24" (uuid 4f2c3fa3-fb14-4129-95c8-965436f9a6b3)) + (pin "25" (uuid 8ad2c45e-d8f6-44b7-8673-895127e4d622)) + (pin "26" (uuid e08c23db-f95e-40d8-8a72-b394690eced4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 193.04 307.34 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5d39bfb-d894-4184-bfad-626b9a57b8ec) + (property "Reference" "U1" (id 0) (at 193.675 302.26 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 193.675 304.8 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 193.04 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 193.04 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 083457ec-9680-4e40-a71d-268085efa6f4)) + (pin "2" (uuid 95c1dcdc-a2fc-403c-9b41-da0bb837e50d)) + (pin "3" (uuid ba73d06b-9e5a-4303-8fda-9a499f0026da)) + (pin "4" (uuid 33cc13f8-7537-476b-9771-ad77aaca0bb1)) + (pin "5" (uuid e2cdcf5c-5884-40d8-8670-44ca41a0c7c5)) + (pin "6" (uuid f2ee5546-8b9d-4c94-94b7-91878b6acdaa)) + (pin "7" (uuid 030ba2a8-2880-4086-8182-a6b429ebc3be)) + (pin "8" (uuid 8f45ec80-2442-4ca2-b37a-4dbd6c4b683e)) + (pin "9" (uuid 595220c8-3e7b-4309-90b0-86236a8c3f10)) + (pin "10" (uuid 6929f9c7-7c27-49b4-bdaf-9bfe5a257a05)) + (pin "11" (uuid 6d8f81d2-3efe-411f-88f8-2c1424946f5c)) + (pin "12" (uuid 2692e828-9b54-43af-8517-66fcd6145acb)) + (pin "13" (uuid 78f3fe89-79fc-4124-b601-b4735a99fe2a)) + (pin "14" (uuid 21e4e2ed-f35d-47b3-bea4-58902348c334)) + (pin "15" (uuid 62fde872-2a65-4b48-89da-2b378ade8417)) + (pin "16" (uuid 8e97e882-f43b-4ee3-a3f5-04af2dc294aa)) + (pin "17" (uuid bf17cf92-3c8a-4253-8d99-bf111525572f)) + (pin "18" (uuid 053dca35-7971-4d3a-bfbd-a4626cb3c685)) + (pin "19" (uuid d158a4d9-94d7-4588-8fce-94a7c2a3299a)) + (pin "20" (uuid bc226212-b406-4741-9b34-f38a6ec99586)) + (pin "21" (uuid aad12961-10c7-4baf-8490-c8e0a697844b)) + (pin "22" (uuid d5007184-3568-430f-b76f-76b16a47f4d7)) + (pin "23" (uuid d913426a-62d7-4a6f-b38c-920941b6682c)) + (pin "24" (uuid a3ec634a-25fd-472d-8009-3ef982987736)) + (pin "25" (uuid b6111743-7cef-44ed-ad90-c2abd3c7f9e0)) + (pin "26" (uuid b1e8a900-1756-4765-a10f-9828f10b814c)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 279.4 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b404273e-9326-4516-b975-487e15cce65e) + (property "Reference" "U5" (id 0) (at 281.4194 142.24 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 281.4194 146.05 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 279.4 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c5669640-a061-4651-b946-cc676ffea08b)) + (pin "2" (uuid e2dc4d5c-b69b-4cda-bd42-1e3edb5e4912)) + (pin "3" (uuid 9efd1fe6-09d4-4acc-b35b-371dd42b7597)) + (pin "4" (uuid 9cf0c095-5071-4fbf-a3c4-a72bc218b42b)) + (pin "5" (uuid 9b10060b-ea0d-4c87-afaf-e5f0dfbcf21c)) + (pin "6" (uuid dbdeb7db-b038-4f87-9a6f-c054019942ce)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 336.55 238.76 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d5bc0234-d109-4a45-aac3-42f71cc93a0d) + (property "Reference" "U1" (id 0) (at 340.36 238.125 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 340.36 240.665 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 336.55 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 336.55 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53a1df88-be5a-4cb5-99d3-63ef0cda23ca)) + (pin "2" (uuid 83a5a473-bfd1-4a4e-93f3-ff8d0ed2513b)) + (pin "3" (uuid 3a99e157-ba28-4405-9fa7-2d369315b082)) + (pin "4" (uuid 1bdcdf4d-b503-4e21-b28e-bab5c6bc8f65)) + (pin "5" (uuid f738ee1c-ab6b-4495-9ad9-d4e3eb095a03)) + (pin "6" (uuid 386090af-9150-4f94-ba8f-7ddbab57cad8)) + (pin "7" (uuid b413be47-d1ff-4e9a-9720-a29f6f76a74d)) + (pin "8" (uuid b96da35f-2a1e-4bda-a362-0f6680d77022)) + (pin "9" (uuid b4182bf2-6a34-4e55-9352-2eb985e1e5b9)) + (pin "10" (uuid dbed0e87-22c6-4111-92b8-b2146f6f1e12)) + (pin "11" (uuid dcb6e890-30f5-44b3-9d27-00c9c0de0adb)) + (pin "12" (uuid 6fa17be8-e918-4dc0-99bc-b6b3ae79fe5e)) + (pin "13" (uuid 08aefcb4-2f70-4811-afa4-ae3097bfb8f8)) + (pin "14" (uuid f12a1b85-88da-4aaf-99e7-97703bb1b5fa)) + (pin "15" (uuid 8fc00591-cf31-43c1-9766-e53b25c42ee9)) + (pin "16" (uuid e48362b9-07a2-4290-a5c0-ac76e669c1c0)) + (pin "17" (uuid b908f5ef-a38c-4f0d-a792-3be62208b553)) + (pin "18" (uuid 13e0213d-05b4-451f-a206-2c275a29daa8)) + (pin "19" (uuid bcfa91b4-9e6a-43a0-a5ea-233029cc6d91)) + (pin "20" (uuid cc8f6c73-76bd-42a5-8aa0-3f806eb96752)) + (pin "21" (uuid 3a6adc77-f9f6-4a36-a3e3-a7853c6ed491)) + (pin "22" (uuid 2f5e66d7-a90d-4cb8-ab9d-d3e6e00f6977)) + (pin "23" (uuid e8f329d1-b569-4b2e-869d-609d9adae3d5)) + (pin "24" (uuid f4ef6b3b-d5f4-4c0e-a099-daf27bb0abe0)) + (pin "25" (uuid 9741617a-d9da-45e3-b342-16e493553a0e)) + (pin "26" (uuid 092c0b5d-8201-47ca-b2dc-55afb6e57a7e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 336.55 194.31 0) (mirror y) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e01f7e33-7056-4b6e-9bcf-0cecf147c51d) + (property "Reference" "U1" (id 0) (at 340.36 193.675 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 340.36 196.215 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 336.55 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 336.55 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e6a6f7f-f084-47d5-a718-65c79de55499)) + (pin "2" (uuid a6d4eaed-6e85-4f67-8971-37e121913cd1)) + (pin "3" (uuid 591ac592-ff13-45af-b920-a2351d90cdc8)) + (pin "4" (uuid 1a012e2f-4ae3-46bb-b8f8-436ae87859a8)) + (pin "5" (uuid c8e1369d-e0d8-433a-92eb-05fb22bf28fb)) + (pin "6" (uuid b629b70c-e8e2-454b-96af-b0bbb5a8f814)) + (pin "7" (uuid a2a85f44-65ff-406c-a43b-8b9a6b5435c9)) + (pin "8" (uuid 60811282-a116-4df9-865d-a572215905d2)) + (pin "9" (uuid d9e5e149-f483-4e37-b7d1-b65188967b0b)) + (pin "10" (uuid 5ef30f58-fdec-4c50-9a58-d1826b5edc47)) + (pin "11" (uuid 36d1116b-72a3-4ecc-986a-33adac22521b)) + (pin "12" (uuid f8302f62-ab01-413f-b771-758944b12903)) + (pin "13" (uuid e6db64e0-9c88-48f3-b248-77dce66ad7e8)) + (pin "14" (uuid 4a6876f3-617e-46f6-84f8-90c3ea8f98b8)) + (pin "15" (uuid 49d6fd70-d536-4fd3-a219-5f50a340b3cc)) + (pin "16" (uuid 619f5b36-f74a-49b5-bc5e-73a68475427d)) + (pin "17" (uuid 2b933918-e9d8-440c-a798-c5eb4facb238)) + (pin "18" (uuid 53ec4050-cafd-444d-a724-d44ffad13f76)) + (pin "19" (uuid b914e1f4-c008-496e-b32b-18a49c021ade)) + (pin "20" (uuid 3eb8ec40-c4d2-46d0-b745-f89e4ae88b70)) + (pin "21" (uuid c5c6829f-89e9-43e9-924a-817f3e81a2bc)) + (pin "22" (uuid 24ffb453-53c9-4c56-9bcc-c4318ec5cbc1)) + (pin "23" (uuid c0f7024f-c5ab-4e44-9030-1b6503b923b4)) + (pin "24" (uuid 238ca6c6-f3c5-4ba5-a2bc-4725bbdb8db5)) + (pin "25" (uuid a895e1e1-9b2b-47cb-8636-0056e3ffe597)) + (pin "26" (uuid a424ca96-ce62-44b8-a143-c4a48ac0d2a9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 279.4 320.04 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid e21e8d72-68aa-4a37-b3d9-5d458f30c973) + (property "Reference" "U9" (id 0) (at 279.4 312.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 279.4 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 279.4 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7730210d-808d-4736-a9e0-6e823ca35563)) + (pin "2" (uuid fa514a4f-71be-4af0-afec-9a9e0a37bc84)) + (pin "3" (uuid 74ac870e-aff1-4403-9f89-0a4a2697149f)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 279.4 203.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2a1c898-05d9-4619-8a7b-d9091e0b3f98) + (property "Reference" "U6" (id 0) (at 281.4194 186.69 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 281.4194 190.5 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 279.4 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ca71904c-2964-41b2-a06a-63fd0b192d6e)) + (pin "2" (uuid 042de030-3b2b-454e-97ad-073a2979ea78)) + (pin "3" (uuid 80082106-4d27-4c89-a392-7af0c57e23fa)) + (pin "4" (uuid 404549f8-a81a-4d9e-ba02-667bbb5c3f62)) + (pin "5" (uuid a33b18e3-20ef-462a-baf0-e27cdc68a3d9)) + (pin "6" (uuid e2061710-340f-452a-848e-76cc22478616)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 194.31 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f91fd190-de22-4363-92c6-510fb01ce36c) + (property "Reference" "U1" (id 0) (at 210.185 189.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 210.185 191.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 209.55 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 536e86c9-566c-4431-9f35-be7b89457f46)) + (pin "2" (uuid 71740bcc-205d-415b-a976-1c1f1cdbbf56)) + (pin "3" (uuid f55a8747-284c-4eed-b876-d2df0e2e1944)) + (pin "4" (uuid 3ef13a94-91a9-4155-a68d-fa632599c609)) + (pin "5" (uuid 7546d5dc-9563-4c03-88ed-1640c4405449)) + (pin "6" (uuid ec9460f3-b109-41e1-8b48-1b593aef55e8)) + (pin "7" (uuid 093b82d5-a182-4099-b6a8-f61c80b7346d)) + (pin "8" (uuid d32a8bd4-d5ed-4f28-a436-1a38a96276da)) + (pin "9" (uuid 979f0670-d6ad-4038-9717-a967c321f2c7)) + (pin "10" (uuid 4e157f75-3c58-4627-b0ce-3b3925bdd869)) + (pin "11" (uuid 774c00c5-d7da-42b6-b332-48313e49206b)) + (pin "12" (uuid 21731634-e5d2-4086-b7e8-975751eaecd0)) + (pin "13" (uuid b29cbd10-08a4-4761-ac10-477aa8bbffd2)) + (pin "14" (uuid 8834d739-4fae-4810-a97b-921320f8051a)) + (pin "15" (uuid 5a57b213-c5c7-4a83-8c38-f107c6cc508d)) + (pin "16" (uuid cedd3172-59f5-466a-bf17-8ab9efb00bee)) + (pin "17" (uuid daca1af7-6a91-4c79-a82f-6e87de66c49a)) + (pin "18" (uuid d36c8a73-2d18-4d30-91bd-e8f5a486f276)) + (pin "19" (uuid 5308f7ad-3f0a-4e00-a75e-16982c4dccf1)) + (pin "20" (uuid cc8297a7-1d8f-47d4-8d94-59f9fba3801a)) + (pin "21" (uuid d2f1a4d3-c51d-4b99-bca5-ef4b2a119862)) + (pin "22" (uuid 7109c8f8-14db-47d5-a668-1e05fcbd78bb)) + (pin "23" (uuid 4eb220c7-ec13-425f-9880-c4a77af52e49)) + (pin "24" (uuid 784d8c4f-4c0d-4df6-b837-dcb3b6298968)) + (pin "25" (uuid 65ccb106-81e0-4f73-9c37-43291fde0c45)) + (pin "26" (uuid a6f5fb55-3d82-4910-b92b-aa6ab912f563)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 193.04 320.04 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fa3e083d-8a39-43e2-87eb-991ae2e45283) + (property "Reference" "U1" (id 0) (at 193.675 314.96 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 193.675 317.5 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 193.04 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 193.04 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f61fc62-0f7e-4ac3-b869-3ad83b31ab09)) + (pin "2" (uuid 860b4a5c-63d8-4f60-9e76-c0648d231695)) + (pin "3" (uuid 94a9f37a-fdd8-4ca8-905a-c36ff03fded8)) + (pin "4" (uuid 16d96849-922f-4471-a104-cb7e593d4dbd)) + (pin "5" (uuid 5f426e37-5b4b-432d-9138-b01acdedffcd)) + (pin "6" (uuid ea0efc40-509b-4352-bdd9-cda844abb98e)) + (pin "7" (uuid 68e7067a-3b13-4a7e-ae00-7ed75c05466f)) + (pin "8" (uuid d120ff57-7af6-47c0-bc74-f204adb73758)) + (pin "9" (uuid a161f3b6-5ec6-42a4-b8c6-6c27eaf03492)) + (pin "10" (uuid f6014724-ba55-4f65-a956-b40b8487ff26)) + (pin "11" (uuid e37d5262-98ac-4e0f-8342-9eb579bfb5f5)) + (pin "12" (uuid 7b12bd1a-28d2-41b9-b65e-beef7d53cb56)) + (pin "13" (uuid c5299743-9eef-478e-9d87-583d0102f810)) + (pin "14" (uuid b83ba85b-7c5b-45d0-b887-16e2cf4b88c9)) + (pin "15" (uuid 5f320381-c7b0-471f-be8a-e7ba76560ba5)) + (pin "16" (uuid 6ed68c1d-3ec3-4f26-9b33-8e28fcc3bdcd)) + (pin "17" (uuid 13779b35-de87-442a-a435-788f5e9b4022)) + (pin "18" (uuid 60a9c004-1894-45aa-b8fc-8d89ea5dd3ed)) + (pin "19" (uuid a3559a60-34ec-4cb3-8462-b74a540852e9)) + (pin "20" (uuid 2eb36482-9939-4417-b095-31c70c9c929b)) + (pin "21" (uuid b232d99d-a736-42c0-b917-587a205a6412)) + (pin "22" (uuid 1c955768-5f06-4dd1-8966-2f2e7343fe77)) + (pin "23" (uuid ee8c7c13-0d2f-43e0-b66e-c8fa5b088dae)) + (pin "24" (uuid 983503cf-1ac6-4a38-b9fe-334f28096bd7)) + (pin "25" (uuid 74a6a6f5-2f15-48e3-9e83-245ab1f881e1)) + (pin "26" (uuid e296c219-8e59-4376-8c19-ffbba14a904a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 205.74 85.09 0) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fec0f93a-8c49-4906-bf70-3c82ef28e2f8) + (property "Reference" "U1" (id 0) (at 206.375 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 206.375 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 205.74 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b25e4db-a627-42d0-a33f-8e4bcced093a)) + (pin "2" (uuid 0cf097e6-37d0-4ed5-bbb4-c1cf59566f1b)) + (pin "3" (uuid 248232b0-c05f-4bdc-a873-b58515dc2bdd)) + (pin "4" (uuid efe54fc3-15f6-487d-b83a-f3c8aa08f62b)) + (pin "5" (uuid c884278c-9464-44b7-b03f-c64013753ecd)) + (pin "6" (uuid 5eb39789-1082-4ab3-97ae-6e3484c540de)) + (pin "7" (uuid b33e9a04-2047-44d7-ba19-24c28ac457c8)) + (pin "8" (uuid 67b2de05-33f1-47c1-affa-fc33c3808b83)) + (pin "9" (uuid 33a4ab47-132e-4b96-9e8d-7e5789a3f458)) + (pin "10" (uuid 1aedebeb-a4ca-4342-bf50-60c1d9b4c548)) + (pin "11" (uuid 74f11a15-eb9c-42c9-9261-1664d4614dad)) + (pin "12" (uuid 66484491-0d8b-445c-b3f5-e107be30d4e3)) + (pin "13" (uuid 99d2a91c-a3d8-4e1b-8aaf-74233c788aaa)) + (pin "14" (uuid cb41fae8-c1d5-4918-b3e4-3ad3461e31b7)) + (pin "15" (uuid 1a2eb52a-33cb-48d9-935b-3c2d980fd8e8)) + (pin "16" (uuid 614d005f-5374-402e-a12d-2fcacaa22e18)) + (pin "17" (uuid 86f64f80-b22f-4297-815a-1ecebef2e141)) + (pin "18" (uuid f7865614-a153-43df-8307-d25f5bd658d1)) + (pin "19" (uuid c24f372d-c624-430b-9e1f-5176f9a98e00)) + (pin "20" (uuid 1df26abb-d294-4ab1-a5be-3b46aded08b7)) + (pin "21" (uuid d42987a9-d12b-4a90-9198-e6e94ebe9885)) + (pin "22" (uuid 02ce32ea-67a9-4d8a-bc89-83fc1cfa1a7e)) + (pin "23" (uuid a72df7f1-4669-48b9-b616-c9831afd9643)) + (pin "24" (uuid 4a7f1824-b190-4962-bed7-c3a072a5a056)) + (pin "25" (uuid 419a4d9d-4d18-4012-9af5-efa394705aa2)) + (pin "26" (uuid 5aaa019d-674a-448c-ae34-f2c8598b22be)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/d5bc0234-d109-4a45-aac3-42f71cc93a0d" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/7ee30adb-2e05-4015-8e76-24223dcf02fd" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/15bc00d6-943d-4b32-9c86-143083bf5129" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/5710f874-684a-4b66-9f06-7550c3210688" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/a5d39bfb-d894-4184-bfad-626b9a57b8ec" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/fa3e083d-8a39-43e2-87eb-991ae2e45283" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/601e1338-0747-459f-944e-1b886c1557cf" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/0dc1c98f-b520-422e-a2d9-3f42357ce472" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/06edb5ce-5a24-49da-acc1-921abab600b6" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/4d3c422c-fc11-420c-bd5c-ac5c71cac4e2" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/e01f7e33-7056-4b6e-9bcf-0cecf147c51d" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/314f31a1-3d43-40a4-be26-512d5796a74c" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/f91fd190-de22-4363-92c6-510fb01ce36c" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/8febfa54-ee82-40b0-9b44-28b7ccc20c41" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/81f62e27-7d5c-4944-932a-116746c766f3" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/fec0f93a-8c49-4906-bf70-3c82ef28e2f8" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/85276ef3-e7a0-4fbe-ac9b-dcb03e6e1e05" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/228c845c-c258-439b-a327-96be7d8aaedf" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7699303c-2c63-49a0-a61c-fb51fcaa5c8c" + (reference "U4") (unit 1) (value "d_dff") (footprint "") + ) + (path "/b404273e-9326-4516-b975-487e15cce65e" + (reference "U5") (unit 1) (value "d_dff") (footprint "") + ) + (path "/e2a1c898-05d9-4619-8a7b-d9091e0b3f98" + (reference "U6") (unit 1) (value "d_dff") (footprint "") + ) + (path "/2cbf84e5-dc49-4bb2-9dbf-c90d53997e4b" + (reference "U7") (unit 1) (value "d_dff") (footprint "") + ) + (path "/018263f3-ff39-4e0c-a984-55f89eaecf01" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/e21e8d72-68aa-4a37-b3d9-5d458f30c973" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/8d3e68a4-862b-4149-8796-e3560077c482" + (reference "U10") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4042A/CD4042A.sub b/library/SubcircuitLibrary/CD4042A/CD4042A.sub new file mode 100644 index 000000000..d2516a1d4 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042A/CD4042A.sub @@ -0,0 +1,42 @@ +* Subcircuit CD4042A +.subckt CD4042A net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ unconnected-_u1-pad16_ +.title kicad schematic +* u3 net-_u1-pad5_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad6_ net-_u2-pad2_ d_inverter +* u8 net-_u1-pad5_ net-_u2-pad2_ net-_u10-pad1_ d_and +* u9 net-_u3-pad2_ net-_u1-pad6_ net-_u10-pad2_ d_and +* u5 net-_u1-pad7_ net-_u10-pad3_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u1-pad10_ net-_u1-pad9_ d_dff +* u4 net-_u1-pad4_ net-_u10-pad3_ unconnected-_u4-pad3_ unconnected-_u4-pad4_ net-_u1-pad2_ net-_u1-pad3_ d_dff +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_or +* u6 net-_u1-pad13_ net-_u10-pad3_ unconnected-_u6-pad3_ unconnected-_u6-pad4_ net-_u1-pad11_ net-_u1-pad12_ d_dff +* u7 net-_u1-pad14_ net-_u10-pad3_ unconnected-_u7-pad3_ unconnected-_u7-pad4_ net-_u1-pad1_ net-_u1-pad15_ d_dff +a1 net-_u1-pad5_ net-_u3-pad2_ u3 +a2 net-_u1-pad6_ net-_u2-pad2_ u2 +a3 [net-_u1-pad5_ net-_u2-pad2_ ] net-_u10-pad1_ u8 +a4 [net-_u3-pad2_ net-_u1-pad6_ ] net-_u10-pad2_ u9 +a5 net-_u1-pad7_ net-_u10-pad3_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u1-pad10_ net-_u1-pad9_ u5 +a6 net-_u1-pad4_ net-_u10-pad3_ unconnected-_u4-pad3_ unconnected-_u4-pad4_ net-_u1-pad2_ net-_u1-pad3_ u4 +a7 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a8 net-_u1-pad13_ net-_u10-pad3_ unconnected-_u6-pad3_ unconnected-_u6-pad4_ net-_u1-pad11_ net-_u1-pad12_ u6 +a9 net-_u1-pad14_ net-_u10-pad3_ unconnected-_u7-pad3_ unconnected-_u7-pad4_ net-_u1-pad1_ net-_u1-pad15_ u7 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u5 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u4 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u10 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u6 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u7 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Control Statements + +.ends CD4042A \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4042A/CD4042A_Previous_Values.xml b/library/SubcircuitLibrary/CD4042A/CD4042A_Previous_Values.xml new file mode 100644 index 000000000..0071a207e --- /dev/null +++ b/library/SubcircuitLibrary/CD4042A/CD4042A_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_inverterd_andd_andd_dffd_dffd_ord_dffd_dfftruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4042A/_autosave-CD4042A.sch b/library/SubcircuitLibrary/CD4042A/_autosave-CD4042A.sch new file mode 100644 index 000000000..dee87d198 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042A/_autosave-CD4042A.sch @@ -0,0 +1,385 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A2 23386 16535 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 9250 12600 +Connection ~ 9500 12100 +Connection ~ 10000 6550 +Connection ~ 10000 8300 +Connection ~ 10000 10050 +NoConn ~ 8350 3050 +NoConn ~ 8350 3350 +NoConn ~ 11000 3800 +NoConn ~ 11000 5050 +NoConn ~ 11000 5600 +NoConn ~ 11000 6850 +NoConn ~ 11000 7350 +NoConn ~ 11000 8600 +NoConn ~ 11000 9100 +NoConn ~ 11000 10350 +Wire Wire Line + 7850 12100 9500 12100 +Wire Wire Line + 7850 12600 9250 12600 +Wire Wire Line + 8500 4100 10450 4100 +Wire Wire Line + 8500 5900 10450 5900 +Wire Wire Line + 8500 7650 10450 7650 +Wire Wire Line + 8500 9400 10450 9400 +Wire Wire Line + 9250 12200 9250 12600 +Wire Wire Line + 9250 12600 10550 12600 +Wire Wire Line + 9500 12100 10550 12100 +Wire Wire Line + 9500 12500 9500 12100 +Wire Wire Line + 9650 12200 9250 12200 +Wire Wire Line + 9650 12500 9500 12500 +Wire Wire Line + 10000 4750 10000 6550 +Wire Wire Line + 10000 4750 10450 4750 +Wire Wire Line + 10000 6550 10000 8300 +Wire Wire Line + 10000 6550 10450 6550 +Wire Wire Line + 10000 8300 10000 10050 +Wire Wire Line + 10000 8300 10450 8300 +Wire Wire Line + 10000 10050 10000 11600 +Wire Wire Line + 10000 10050 10450 10050 +Wire Wire Line + 10250 12200 10550 12200 +Wire Wire Line + 10250 12500 10550 12500 +Wire Wire Line + 11450 12300 11450 12150 +Wire Wire Line + 11450 12400 11450 12550 +Wire Wire Line + 11550 4100 13000 4100 +Wire Wire Line + 11550 4750 13000 4750 +Wire Wire Line + 11550 5900 13000 5900 +Wire Wire Line + 11550 6550 13000 6550 +Wire Wire Line + 11550 7650 13000 7650 +Wire Wire Line + 11550 8300 13000 8300 +Wire Wire Line + 11550 9400 13000 9400 +Wire Wire Line + 11550 10050 13000 10050 +Wire Wire Line + 11700 12300 11450 12300 +Wire Wire Line + 11700 12400 11450 12400 +Wire Wire Line + 12600 12350 13000 12350 +Wire Wire Line + 13000 11600 10000 11600 +Wire Wire Line + 13000 12350 13000 11600 +$Comp +L eSim_Miscellaneous:PORT U? +U 5 1 00000000 +P 7600 12100 +F 0 "U?" H 7625 12300 30 0000 C CNN +F 1 "PORT" H 7625 12200 30 0000 C CNN +F 2 "" H 7600 12100 60 0000 C CNN +F 3 "" H 7600 12100 60 0000 C CNN + 5 7600 12100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 6 1 00000000 +P 7600 12600 +F 0 "U?" H 7625 12800 30 0000 C CNN +F 1 "PORT" H 7625 12700 30 0000 C CNN +F 2 "" H 7600 12600 60 0000 C CNN +F 3 "" H 7600 12600 60 0000 C CNN + 6 7600 12600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 8 1 00000000 +P 8100 3050 +F 0 "U?" H 8125 3250 30 0000 C CNN +F 1 "PORT" H 8125 3150 30 0000 C CNN +F 2 "" H 8100 3050 60 0000 C CNN +F 3 "" H 8100 3050 60 0000 C CNN + 8 8100 3050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 16 1 00000000 +P 8100 3350 +F 0 "U?" H 8125 3550 30 0000 C CNN +F 1 "PORT" H 8125 3450 30 0000 C CNN +F 2 "" H 8100 3350 60 0000 C CNN +F 3 "" H 8100 3350 60 0000 C CNN + 16 8100 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 4 1 00000000 +P 8250 4100 +F 0 "U?" H 8275 4300 30 0000 C CNN +F 1 "PORT" H 8275 4200 30 0000 C CNN +F 2 "" H 8250 4100 60 0000 C CNN +F 3 "" H 8250 4100 60 0000 C CNN + 4 8250 4100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 7 1 00000000 +P 8250 5900 +F 0 "U?" H 8275 6100 30 0000 C CNN +F 1 "PORT" H 8275 6000 30 0000 C CNN +F 2 "" H 8250 5900 60 0000 C CNN +F 3 "" H 8250 5900 60 0000 C CNN + 7 8250 5900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 13 1 00000000 +P 8250 7650 +F 0 "U?" H 8275 7850 30 0000 C CNN +F 1 "PORT" H 8275 7750 30 0000 C CNN +F 2 "" H 8250 7650 60 0000 C CNN +F 3 "" H 8250 7650 60 0000 C CNN + 13 8250 7650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 14 1 00000000 +P 8250 9400 +F 0 "U?" H 8275 9600 30 0000 C CNN +F 1 "PORT" H 8275 9500 30 0000 C CNN +F 2 "" H 8250 9400 60 0000 C CNN +F 3 "" H 8250 9400 60 0000 C CNN + 14 8250 9400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 2 1 00000000 +P 13250 4100 +F 0 "U?" H 13100 4125 30 0000 R CNN +F 1 "PORT" H 13100 4025 30 0000 R CNN +F 2 "" H 13250 4100 60 0000 C CNN +F 3 "" H 13250 4100 60 0000 C CNN + 2 13250 4100 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 3 1 00000000 +P 13250 4750 +F 0 "U?" H 13100 4775 30 0000 R CNN +F 1 "PORT" H 13100 4675 30 0000 R CNN +F 2 "" H 13250 4750 60 0000 C CNN +F 3 "" H 13250 4750 60 0000 C CNN + 3 13250 4750 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 10 1 00000000 +P 13250 5900 +F 0 "U?" H 13100 5925 30 0000 R CNN +F 1 "PORT" H 13100 5825 30 0000 R CNN +F 2 "" H 13250 5900 60 0000 C CNN +F 3 "" H 13250 5900 60 0000 C CNN + 10 13250 5900 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 9 1 00000000 +P 13250 6550 +F 0 "U?" H 13100 6575 30 0000 R CNN +F 1 "PORT" H 13100 6475 30 0000 R CNN +F 2 "" H 13250 6550 60 0000 C CNN +F 3 "" H 13250 6550 60 0000 C CNN + 9 13250 6550 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 11 1 00000000 +P 13250 7650 +F 0 "U?" H 13100 7675 30 0000 R CNN +F 1 "PORT" H 13100 7575 30 0000 R CNN +F 2 "" H 13250 7650 60 0000 C CNN +F 3 "" H 13250 7650 60 0000 C CNN + 11 13250 7650 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 12 1 00000000 +P 13250 8300 +F 0 "U?" H 13100 8325 30 0000 R CNN +F 1 "PORT" H 13100 8225 30 0000 R CNN +F 2 "" H 13250 8300 60 0000 C CNN +F 3 "" H 13250 8300 60 0000 C CNN + 12 13250 8300 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 13250 9400 +F 0 "U?" H 13100 9425 30 0000 R CNN +F 1 "PORT" H 13100 9325 30 0000 R CNN +F 2 "" H 13250 9400 60 0000 C CNN +F 3 "" H 13250 9400 60 0000 C CNN + 1 13250 9400 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 15 1 00000000 +P 13250 10050 +F 0 "U?" H 13100 10075 30 0000 R CNN +F 1 "PORT" H 13100 9975 30 0000 R CNN +F 2 "" H 13250 10050 60 0000 C CNN +F 3 "" H 13250 10050 60 0000 C CNN + 15 13250 10050 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 9950 12200 +F 0 "U?" H 9950 12450 60 0000 C CNN +F 1 "d_inverter" H 9950 12300 60 0000 C CNN +F 2 "" H 10000 12150 60 0000 C CNN +F 3 "" H 10000 12150 60 0000 C CNN + 1 9950 12200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 9950 12500 +F 0 "U?" H 9950 12700 60 0000 C CNN +F 1 "d_inverter" H 9950 12600 60 0000 C CNN +F 2 "" H 10000 12450 60 0000 C CNN +F 3 "" H 10000 12450 60 0000 C CNN + 1 9950 12500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 11000 12200 +F 0 "U?" H 11000 12550 60 0000 C CNN +F 1 "d_and" H 11000 12400 60 0000 C CNN +F 2 "" H 11000 12200 60 0000 C CNN +F 3 "" H 11000 12200 60 0000 C CNN + 1 11000 12200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 11000 12600 +F 0 "U?" H 11000 12900 60 0000 C CNN +F 1 "d_and" H 11000 12800 60 0000 C CNN +F 2 "" H 11000 12600 60 0000 C CNN +F 3 "" H 11000 12600 60 0000 C CNN + 1 11000 12600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_or U? +U 1 1 00000000 +P 12150 12400 +F 0 "U?" H 12150 12750 60 0000 C CNN +F 1 "d_or" H 12150 12600 60 0000 C CNN +F 2 "" H 12150 12400 60 0000 C CNN +F 3 "" H 12150 12400 60 0000 C CNN + 1 12150 12400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U? +U 1 1 00000000 +P 11000 4450 +F 0 "U?" H 11080 5100 60 0000 L CNN +F 1 "d_dff" H 11080 4950 60 0000 L CNN +F 2 "" H 11000 4450 60 0000 C CNN +F 3 "" H 11000 4450 60 0000 C CNN + 1 11000 4450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U? +U 1 1 00000000 +P 11000 6250 +F 0 "U?" H 11080 6900 60 0000 L CNN +F 1 "d_dff" H 11080 6750 60 0000 L CNN +F 2 "" H 11000 6250 60 0000 C CNN +F 3 "" H 11000 6250 60 0000 C CNN + 1 11000 6250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U? +U 1 1 00000000 +P 11000 8000 +F 0 "U?" H 11080 8650 60 0000 L CNN +F 1 "d_dff" H 11080 8500 60 0000 L CNN +F 2 "" H 11000 8000 60 0000 C CNN +F 3 "" H 11000 8000 60 0000 C CNN + 1 11000 8000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U? +U 1 1 00000000 +P 11000 9750 +F 0 "U?" H 11080 10400 60 0000 L CNN +F 1 "d_dff" H 11080 10250 60 0000 L CNN +F 2 "" H 11000 9750 60 0000 C CNN +F 3 "" H 11000 9750 60 0000 C CNN + 1 11000 9750 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042A/analysis b/library/SubcircuitLibrary/CD4042A/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042A/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4042B/CD4042B-cache.lib b/library/SubcircuitLibrary/CD4042B/CD4042B-cache.lib new file mode 100644 index 000000000..4d2471e33 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CD4042B-cache.lib @@ -0,0 +1,100 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# Quad_D_FF +# +DEF Quad_D_FF X 0 40 Y Y 1 F N +F0 "X" 0 -100 60 H V C CNN +F1 "Quad_D_FF" 0 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -450 450 450 -450 0 1 0 N +X D1 1 -650 250 200 R 50 50 1 1 I +X En 2 -650 150 200 R 50 50 1 1 I +X D2 3 -650 0 200 R 50 50 1 1 I +X D3 4 -650 -150 200 R 50 50 1 1 I +X D4 5 -650 -250 200 R 50 50 1 1 I +X Gnd 6 -650 -350 200 R 50 50 1 1 I +X Vdd 7 -650 350 200 R 50 50 1 1 I +X out1 8 650 400 200 L 50 50 1 1 O +X out2 9 650 300 200 L 50 50 1 1 O +X out3 10 650 200 200 L 50 50 1 1 O +X out4 11 650 100 200 L 50 50 1 1 O +X out1Bar 12 650 -100 200 L 50 50 1 1 O +X out2Bar 13 650 -200 200 L 50 50 1 1 O +X out3Bar 14 650 -300 200 L 50 50 1 1 O +X out4Bar 15 650 -400 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# TG_D_Latch_ctrl +# +DEF TG_D_Latch_ctrl X 0 40 Y Y 1 F N +F0 "X" 0 -100 60 H V C CNN +F1 "TG_D_Latch_ctrl" -50 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -400 300 700 -350 0 1 0 N +X clock 1 -600 200 200 R 50 50 1 1 I +X polarity 2 -600 -250 200 R 50 50 1 1 I +X Vdd 3 100 500 200 D 50 50 1 1 I +X Gnd 4 100 -550 200 U 50 50 1 1 I +X clock_out 5 900 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4042B/CD4042B.bak b/library/SubcircuitLibrary/CD4042B/CD4042B.bak new file mode 100644 index 000000000..aee1a4a64 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CD4042B.bak @@ -0,0 +1,310 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:CD4042B-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 6858406E +P 8500 2650 +F 0 "scmode1" H 8500 2800 98 0000 C CNB +F 1 "SKY130mode" H 8500 2550 118 0000 C CNB +F 2 "" H 8500 2800 60 0001 C CNN +F 3 "" H 8500 2800 60 0001 C CNN + 1 8500 2650 + 1 0 0 -1 +$EndComp +$Comp +L Quad_D_FF X2 +U 1 1 685A4DC5 +P 5850 3150 +F 0 "X2" H 5850 3050 60 0000 C CNN +F 1 "Quad_D_FF" H 5850 3150 60 0000 C CNN +F 2 "" H 5850 3150 60 0001 C CNN +F 3 "" H 5850 3150 60 0001 C CNN + 1 5850 3150 + 1 0 0 -1 +$EndComp +$Comp +L TG_D_Latch_ctrl X1 +U 1 1 685A4EBA +P 3800 3000 +F 0 "X1" H 3800 2900 60 0000 C CNN +F 1 "TG_D_Latch_ctrl" H 3750 3000 60 0000 C CNN +F 2 "" H 3800 3000 60 0001 C CNN +F 3 "" H 3800 3000 60 0001 C CNN + 1 3800 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685A4FC2 +P 4700 2900 +F 0 "U1" H 4750 3000 30 0000 C CNN +F 1 "PORT" H 4700 2900 30 0000 C CNN +F 2 "" H 4700 2900 60 0000 C CNN +F 3 "" H 4700 2900 60 0000 C CNN + 3 4700 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685A5045 +P 4700 3150 +F 0 "U1" H 4750 3250 30 0000 C CNN +F 1 "PORT" H 4700 3150 30 0000 C CNN +F 2 "" H 4700 3150 60 0000 C CNN +F 3 "" H 4700 3150 60 0000 C CNN + 4 4700 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685A5126 +P 4700 3300 +F 0 "U1" H 4750 3400 30 0000 C CNN +F 1 "PORT" H 4700 3300 30 0000 C CNN +F 2 "" H 4700 3300 60 0000 C CNN +F 3 "" H 4700 3300 60 0000 C CNN + 5 4700 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685A52B7 +P 4700 3400 +F 0 "U1" H 4750 3500 30 0000 C CNN +F 1 "PORT" H 4700 3400 30 0000 C CNN +F 2 "" H 4700 3400 60 0000 C CNN +F 3 "" H 4700 3400 60 0000 C CNN + 6 4700 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685A5304 +P 2850 2800 +F 0 "U1" H 2900 2900 30 0000 C CNN +F 1 "PORT" H 2850 2800 30 0000 C CNN +F 2 "" H 2850 2800 60 0000 C CNN +F 3 "" H 2850 2800 60 0000 C CNN + 1 2850 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685A5355 +P 2850 3250 +F 0 "U1" H 2900 3350 30 0000 C CNN +F 1 "PORT" H 2850 3250 30 0000 C CNN +F 2 "" H 2850 3250 60 0000 C CNN +F 3 "" H 2850 3250 60 0000 C CNN + 2 2850 3250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 685A53C8 +P 6850 2750 +F 0 "U1" H 6900 2850 30 0000 C CNN +F 1 "PORT" H 6850 2750 30 0000 C CNN +F 2 "" H 6850 2750 60 0000 C CNN +F 3 "" H 6850 2750 60 0000 C CNN + 9 6850 2750 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 685A5409 +P 6850 2850 +F 0 "U1" H 6900 2950 30 0000 C CNN +F 1 "PORT" H 6850 2850 30 0000 C CNN +F 2 "" H 6850 2850 60 0000 C CNN +F 3 "" H 6850 2850 60 0000 C CNN + 10 6850 2850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 685A5480 +P 6850 2950 +F 0 "U1" H 6900 3050 30 0000 C CNN +F 1 "PORT" H 6850 2950 30 0000 C CNN +F 2 "" H 6850 2950 60 0000 C CNN +F 3 "" H 6850 2950 60 0000 C CNN + 11 6850 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 685A54E5 +P 6850 3050 +F 0 "U1" H 6900 3150 30 0000 C CNN +F 1 "PORT" H 6850 3050 30 0000 C CNN +F 2 "" H 6850 3050 60 0000 C CNN +F 3 "" H 6850 3050 60 0000 C CNN + 12 6850 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 685A5546 +P 6850 3250 +F 0 "U1" H 6900 3350 30 0000 C CNN +F 1 "PORT" H 6850 3250 30 0000 C CNN +F 2 "" H 6850 3250 60 0000 C CNN +F 3 "" H 6850 3250 60 0000 C CNN + 13 6850 3250 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 685A55BB +P 6850 3350 +F 0 "U1" H 6900 3450 30 0000 C CNN +F 1 "PORT" H 6850 3350 30 0000 C CNN +F 2 "" H 6850 3350 60 0000 C CNN +F 3 "" H 6850 3350 60 0000 C CNN + 14 6850 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 685A5620 +P 6850 3450 +F 0 "U1" H 6900 3550 30 0000 C CNN +F 1 "PORT" H 6850 3450 30 0000 C CNN +F 2 "" H 6850 3450 60 0000 C CNN +F 3 "" H 6850 3450 60 0000 C CNN + 15 6850 3450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 685A569F +P 6850 3550 +F 0 "U1" H 6900 3650 30 0000 C CNN +F 1 "PORT" H 6850 3550 30 0000 C CNN +F 2 "" H 6850 3550 60 0000 C CNN +F 3 "" H 6850 3550 60 0000 C CNN + 16 6850 3550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 685A5732 +P 5500 2650 +F 0 "U1" H 5550 2750 30 0000 C CNN +F 1 "PORT" H 5500 2650 30 0000 C CNN +F 2 "" H 5500 2650 60 0000 C CNN +F 3 "" H 5500 2650 60 0000 C CNN + 7 5500 2650 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 685A57C3 +P 5500 3650 +F 0 "U1" H 5550 3750 30 0000 C CNN +F 1 "PORT" H 5500 3650 30 0000 C CNN +F 2 "" H 5500 3650 60 0000 C CNN +F 3 "" H 5500 3650 60 0000 C CNN + 8 5500 3650 + -1 0 0 -1 +$EndComp +Wire Wire Line + 3900 2500 5200 2500 +Wire Wire Line + 5200 2500 5200 2800 +Wire Wire Line + 5250 2650 5200 2650 +Connection ~ 5200 2650 +Wire Wire Line + 3900 3550 5250 3550 +Wire Wire Line + 5200 3550 5200 3500 +Wire Wire Line + 5250 3550 5250 3650 +Connection ~ 5200 3550 +Wire Wire Line + 3100 3250 3200 3250 +Wire Wire Line + 3100 2800 3200 2800 +Wire Wire Line + 4700 3000 5200 3000 +Wire Wire Line + 4950 2900 5200 2900 +Wire Wire Line + 4950 3150 5200 3150 +Wire Wire Line + 4950 3300 5200 3300 +Wire Wire Line + 4950 3400 5200 3400 +Wire Wire Line + 6500 2750 6600 2750 +Wire Wire Line + 6500 2850 6600 2850 +Wire Wire Line + 6500 2950 6600 2950 +Wire Wire Line + 6500 3050 6600 3050 +Wire Wire Line + 6500 3250 6600 3250 +Wire Wire Line + 6500 3350 6600 3350 +Wire Wire Line + 6500 3450 6600 3450 +Wire Wire Line + 6500 3550 6600 3550 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/CD4042B.cir b/library/SubcircuitLibrary/CD4042B/CD4042B.cir new file mode 100644 index 000000000..bba6d2c0e --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CD4042B.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CD4042B/CD4042B.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Tue Jun 24 12:19:45 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +scmode1 SKY130mode +X2 Net-_U1-Pad3_ Net-_X1-Pad5_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_U1-Pad7_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Quad_D_FF +X1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_X1-Pad5_ TG_D_Latch_ctrl +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ PORT + +.end diff --git a/library/SubcircuitLibrary/CD4042B/CD4042B.cir.out b/library/SubcircuitLibrary/CD4042B/CD4042B.cir.out new file mode 100644 index 000000000..bfffe2325 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CD4042B.cir.out @@ -0,0 +1,19 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cd4042b/cd4042b.cir + +.include Quad_D_FF.sub +.include TG_D_Latch_ctrl.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* s c m o d e +x2 net-_u1-pad3_ net-_x1-pad5_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ Quad_D_FF +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad8_ net-_x1-pad5_ TG_D_Latch_ctrl +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4042B/CD4042B.pro b/library/SubcircuitLibrary/CD4042B/CD4042B.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CD4042B.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4042B/CD4042B.sch b/library/SubcircuitLibrary/CD4042B/CD4042B.sch new file mode 100644 index 000000000..5caabd205 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CD4042B.sch @@ -0,0 +1,310 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:CD4042B-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 6858406E +P 4550 4100 +F 0 "scmode1" H 4550 4250 98 0000 C CNB +F 1 "SKY130mode" H 4550 4000 118 0000 C CNB +F 2 "" H 4550 4250 60 0001 C CNN +F 3 "" H 4550 4250 60 0001 C CNN + 1 4550 4100 + 1 0 0 -1 +$EndComp +$Comp +L Quad_D_FF X2 +U 1 1 685A4DC5 +P 5850 3150 +F 0 "X2" H 5850 3050 60 0000 C CNN +F 1 "Quad_D_FF" H 5850 3150 60 0000 C CNN +F 2 "" H 5850 3150 60 0001 C CNN +F 3 "" H 5850 3150 60 0001 C CNN + 1 5850 3150 + 1 0 0 -1 +$EndComp +$Comp +L TG_D_Latch_ctrl X1 +U 1 1 685A4EBA +P 3800 3000 +F 0 "X1" H 3800 2900 60 0000 C CNN +F 1 "TG_D_Latch_ctrl" H 3750 3000 60 0000 C CNN +F 2 "" H 3800 3000 60 0001 C CNN +F 3 "" H 3800 3000 60 0001 C CNN + 1 3800 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685A4FC2 +P 4700 2900 +F 0 "U1" H 4750 3000 30 0000 C CNN +F 1 "PORT" H 4700 2900 30 0000 C CNN +F 2 "" H 4700 2900 60 0000 C CNN +F 3 "" H 4700 2900 60 0000 C CNN + 3 4700 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685A5045 +P 4700 3150 +F 0 "U1" H 4750 3250 30 0000 C CNN +F 1 "PORT" H 4700 3150 30 0000 C CNN +F 2 "" H 4700 3150 60 0000 C CNN +F 3 "" H 4700 3150 60 0000 C CNN + 4 4700 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685A5126 +P 4700 3300 +F 0 "U1" H 4750 3400 30 0000 C CNN +F 1 "PORT" H 4700 3300 30 0000 C CNN +F 2 "" H 4700 3300 60 0000 C CNN +F 3 "" H 4700 3300 60 0000 C CNN + 5 4700 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685A52B7 +P 4700 3400 +F 0 "U1" H 4750 3500 30 0000 C CNN +F 1 "PORT" H 4700 3400 30 0000 C CNN +F 2 "" H 4700 3400 60 0000 C CNN +F 3 "" H 4700 3400 60 0000 C CNN + 6 4700 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685A5304 +P 2850 2800 +F 0 "U1" H 2900 2900 30 0000 C CNN +F 1 "PORT" H 2850 2800 30 0000 C CNN +F 2 "" H 2850 2800 60 0000 C CNN +F 3 "" H 2850 2800 60 0000 C CNN + 1 2850 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685A5355 +P 2850 3250 +F 0 "U1" H 2900 3350 30 0000 C CNN +F 1 "PORT" H 2850 3250 30 0000 C CNN +F 2 "" H 2850 3250 60 0000 C CNN +F 3 "" H 2850 3250 60 0000 C CNN + 2 2850 3250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 685A53C8 +P 6850 2750 +F 0 "U1" H 6900 2850 30 0000 C CNN +F 1 "PORT" H 6850 2750 30 0000 C CNN +F 2 "" H 6850 2750 60 0000 C CNN +F 3 "" H 6850 2750 60 0000 C CNN + 9 6850 2750 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 685A5409 +P 6850 2850 +F 0 "U1" H 6900 2950 30 0000 C CNN +F 1 "PORT" H 6850 2850 30 0000 C CNN +F 2 "" H 6850 2850 60 0000 C CNN +F 3 "" H 6850 2850 60 0000 C CNN + 10 6850 2850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 685A5480 +P 6850 2950 +F 0 "U1" H 6900 3050 30 0000 C CNN +F 1 "PORT" H 6850 2950 30 0000 C CNN +F 2 "" H 6850 2950 60 0000 C CNN +F 3 "" H 6850 2950 60 0000 C CNN + 11 6850 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 685A54E5 +P 6850 3050 +F 0 "U1" H 6900 3150 30 0000 C CNN +F 1 "PORT" H 6850 3050 30 0000 C CNN +F 2 "" H 6850 3050 60 0000 C CNN +F 3 "" H 6850 3050 60 0000 C CNN + 12 6850 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 685A5546 +P 6850 3250 +F 0 "U1" H 6900 3350 30 0000 C CNN +F 1 "PORT" H 6850 3250 30 0000 C CNN +F 2 "" H 6850 3250 60 0000 C CNN +F 3 "" H 6850 3250 60 0000 C CNN + 13 6850 3250 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 685A55BB +P 6850 3350 +F 0 "U1" H 6900 3450 30 0000 C CNN +F 1 "PORT" H 6850 3350 30 0000 C CNN +F 2 "" H 6850 3350 60 0000 C CNN +F 3 "" H 6850 3350 60 0000 C CNN + 14 6850 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 685A5620 +P 6850 3450 +F 0 "U1" H 6900 3550 30 0000 C CNN +F 1 "PORT" H 6850 3450 30 0000 C CNN +F 2 "" H 6850 3450 60 0000 C CNN +F 3 "" H 6850 3450 60 0000 C CNN + 15 6850 3450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 685A569F +P 6850 3550 +F 0 "U1" H 6900 3650 30 0000 C CNN +F 1 "PORT" H 6850 3550 30 0000 C CNN +F 2 "" H 6850 3550 60 0000 C CNN +F 3 "" H 6850 3550 60 0000 C CNN + 16 6850 3550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 685A5732 +P 5500 2650 +F 0 "U1" H 5550 2750 30 0000 C CNN +F 1 "PORT" H 5500 2650 30 0000 C CNN +F 2 "" H 5500 2650 60 0000 C CNN +F 3 "" H 5500 2650 60 0000 C CNN + 7 5500 2650 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 685A57C3 +P 5500 3650 +F 0 "U1" H 5550 3750 30 0000 C CNN +F 1 "PORT" H 5500 3650 30 0000 C CNN +F 2 "" H 5500 3650 60 0000 C CNN +F 3 "" H 5500 3650 60 0000 C CNN + 8 5500 3650 + -1 0 0 -1 +$EndComp +Wire Wire Line + 3900 2500 5200 2500 +Wire Wire Line + 5200 2500 5200 2800 +Wire Wire Line + 5250 2650 5200 2650 +Connection ~ 5200 2650 +Wire Wire Line + 3900 3550 5250 3550 +Wire Wire Line + 5200 3550 5200 3500 +Wire Wire Line + 5250 3550 5250 3650 +Connection ~ 5200 3550 +Wire Wire Line + 3100 3250 3200 3250 +Wire Wire Line + 3100 2800 3200 2800 +Wire Wire Line + 4700 3000 5200 3000 +Wire Wire Line + 4950 2900 5200 2900 +Wire Wire Line + 4950 3150 5200 3150 +Wire Wire Line + 4950 3300 5200 3300 +Wire Wire Line + 4950 3400 5200 3400 +Wire Wire Line + 6500 2750 6600 2750 +Wire Wire Line + 6500 2850 6600 2850 +Wire Wire Line + 6500 2950 6600 2950 +Wire Wire Line + 6500 3050 6600 3050 +Wire Wire Line + 6500 3250 6600 3250 +Wire Wire Line + 6500 3350 6600 3350 +Wire Wire Line + 6500 3450 6600 3450 +Wire Wire Line + 6500 3550 6600 3550 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/CD4042B.sub b/library/SubcircuitLibrary/CD4042B/CD4042B.sub new file mode 100644 index 000000000..122ce9940 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CD4042B.sub @@ -0,0 +1,13 @@ +* Subcircuit CD4042B +.subckt CD4042B net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cd4042b/cd4042b.cir +.include Quad_D_FF.sub +.include TG_D_Latch_ctrl.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* s c m o d e +x2 net-_u1-pad3_ net-_x1-pad5_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ Quad_D_FF +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad8_ net-_x1-pad5_ TG_D_Latch_ctrl +* Control Statements + +.ends CD4042B diff --git a/library/SubcircuitLibrary/CD4042B/CD4042B_Previous_Values.xml b/library/SubcircuitLibrary/CD4042B/CD4042B_Previous_Values.xml new file mode 100644 index 000000000..cb3fbc0d4 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CD4042B_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Quad_D_FF/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/TG_D_Latch_ctrltruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4042B/CMOS_INVTR-cache.lib b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.cir b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.cir new file mode 100644 index 000000000..d2199ddbb --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/CMOS_INVTR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Fri Jun 13 08:49:20 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.cir.out b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.cir.out new file mode 100644 index 000000000..dec1c5fa5 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir + + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.pro b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.sch b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.sch new file mode 100644 index 000000000..aa7a7ee81 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.sch @@ -0,0 +1,161 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 684B982F +P 5350 2950 +F 0 "SC1" H 5400 3250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5650 3037 50 0000 R CNN +F 2 "" H 5350 1450 50 0001 C CNN +F 3 "" H 5350 2950 50 0001 C CNN + 1 5350 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684B9856 +P 5350 3800 +F 0 "SC2" H 5400 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5650 3887 50 0000 R CNN +F 2 "" H 5350 2300 50 0001 C CNN +F 3 "" H 5350 3800 50 0001 C CNN + 1 5350 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684B98AD +P 4550 3300 +F 0 "U1" H 4600 3400 30 0000 C CNN +F 1 "PORT" H 4550 3300 30 0000 C CNN +F 2 "" H 4550 3300 60 0000 C CNN +F 3 "" H 4550 3300 60 0000 C CNN + 1 4550 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B98D8 +P 6300 3350 +F 0 "U1" H 6350 3450 30 0000 C CNN +F 1 "PORT" H 6300 3350 30 0000 C CNN +F 2 "" H 6300 3350 60 0000 C CNN +F 3 "" H 6300 3350 60 0000 C CNN + 4 6300 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B9935 +P 5300 4350 +F 0 "U1" H 5350 4450 30 0000 C CNN +F 1 "PORT" H 5300 4350 30 0000 C CNN +F 2 "" H 5300 4350 60 0000 C CNN +F 3 "" H 5300 4350 60 0000 C CNN + 3 5300 4350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684B999A +P 5300 2350 +F 0 "U1" H 5350 2450 30 0000 C CNN +F 1 "PORT" H 5300 2350 30 0000 C CNN +F 2 "" H 5300 2350 60 0000 C CNN +F 3 "" H 5300 2350 60 0000 C CNN + 2 5300 2350 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B99CD +P 7950 3000 +F 0 "scmode1" H 7950 3150 98 0000 C CNB +F 1 "SKY130mode" H 7950 2900 118 0000 C CNB +F 2 "" H 7950 3150 60 0001 C CNN +F 3 "" H 7950 3150 60 0001 C CNN + 1 7950 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5550 2650 5550 2350 +Wire Wire Line + 5450 2950 5600 2950 +Wire Wire Line + 5600 2950 5600 2550 +Wire Wire Line + 5600 2550 5550 2550 +Connection ~ 5550 2550 +Wire Wire Line + 5550 3250 5550 3500 +Wire Wire Line + 6050 3350 5550 3350 +Connection ~ 5550 3350 +Wire Wire Line + 5050 2950 5050 3800 +Wire Wire Line + 4800 3300 5050 3300 +Connection ~ 5050 3300 +Wire Wire Line + 5450 3800 5600 3800 +Wire Wire Line + 5600 3800 5600 4150 +Wire Wire Line + 5600 4150 5550 4150 +Wire Wire Line + 5550 4100 5550 4350 +Connection ~ 5550 4150 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.sub b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.sub new file mode 100644 index 000000000..8283bca86 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR.sub @@ -0,0 +1,11 @@ +* Subcircuit CMOS_INVTR +.subckt CMOS_INVTR net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends CMOS_INVTR diff --git a/library/SubcircuitLibrary/CD4042B/CMOS_INVTR_Previous_Values.xml b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR_Previous_Values.xml new file mode 100644 index 000000000..d17c4f93e --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/CMOS_INVTR_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3, l=0.15w=1, l=0.15 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4042B/D_FF-cache.lib b/library/SubcircuitLibrary/CD4042B/D_FF-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/D_FF-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4042B/D_FF.bak b/library/SubcircuitLibrary/CD4042B/D_FF.bak new file mode 100644 index 000000000..61b02ff48 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/D_FF.bak @@ -0,0 +1,246 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode? +U 1 1 685A3E76 +P 9400 3200 +F 0 "scmode?" H 9400 3350 98 0000 C CNB +F 1 "SKY130mode" H 9400 3100 118 0000 C CNB +F 2 "" H 9400 3350 60 0001 C CNN +F 3 "" H 9400 3350 60 0001 C CNN + 1 9400 3200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC? +U 1 1 685A3EBD +P 4000 3300 +F 0 "SC?" H 4050 3600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4300 3387 50 0000 R CNN +F 2 "" H 4000 1800 50 0001 C CNN +F 3 "" H 4000 3300 50 0001 C CNN + 1 4000 3300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3EFC +P 4000 4100 +F 0 "SC?" H 4050 4400 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4187 50 0000 R CNN +F 2 "" H 4000 2600 50 0001 C CNN +F 3 "" H 4000 4100 50 0001 C CNN + 1 4000 4100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3F47 +P 4000 4900 +F 0 "SC?" H 4050 5200 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4987 50 0000 R CNN +F 2 "" H 4000 3400 50 0001 C CNN +F 3 "" H 4000 4900 50 0001 C CNN + 1 4000 4900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC? +U 1 1 685A3F7A +P 4950 3700 +F 0 "SC?" H 5000 4000 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5250 3787 50 0000 R CNN +F 2 "" H 4950 2200 50 0001 C CNN +F 3 "" H 4950 3700 50 0001 C CNN + 1 4950 3700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3FCF +P 4950 4500 +F 0 "SC?" H 5000 4800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5250 4587 50 0000 R CNN +F 2 "" H 4950 3000 50 0001 C CNN +F 3 "" H 4950 4500 50 0001 C CNN + 1 4950 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 1 1 685A401A +P 3250 3550 +F 0 "U?" H 3300 3650 30 0000 C CNN +F 1 "PORT" H 3250 3550 30 0000 C CNN +F 2 "" H 3250 3550 60 0000 C CNN +F 3 "" H 3250 3550 60 0000 C CNN + 1 3250 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 2 1 685A40FF +P 3250 4100 +F 0 "U?" H 3300 4200 30 0000 C CNN +F 1 "PORT" H 3250 4100 30 0000 C CNN +F 2 "" H 3250 4100 60 0000 C CNN +F 3 "" H 3250 4100 60 0000 C CNN + 2 3250 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 3 1 685A4132 +P 3950 2750 +F 0 "U?" H 4000 2850 30 0000 C CNN +F 1 "PORT" H 3950 2750 30 0000 C CNN +F 2 "" H 3950 2750 60 0000 C CNN +F 3 "" H 3950 2750 60 0000 C CNN + 3 3950 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 4 1 685A41B1 +P 3950 5350 +F 0 "U?" H 4000 5450 30 0000 C CNN +F 1 "PORT" H 3950 5350 30 0000 C CNN +F 2 "" H 3950 5350 60 0000 C CNN +F 3 "" H 3950 5350 60 0000 C CNN + 4 3950 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 5 1 685A4206 +P 5700 4100 +F 0 "U?" H 5750 4200 30 0000 C CNN +F 1 "PORT" H 5700 4100 30 0000 C CNN +F 2 "" H 5700 4100 60 0000 C CNN +F 3 "" H 5700 4100 60 0000 C CNN + 5 5700 4100 + -1 0 0 1 +$EndComp +Wire Wire Line + 4200 3600 4200 3800 +Wire Wire Line + 3700 3300 3600 3300 +Wire Wire Line + 3600 3300 3600 4900 +Wire Wire Line + 3600 4900 3700 4900 +Wire Wire Line + 3500 3550 3600 3550 +Connection ~ 3600 3550 +Wire Wire Line + 3500 4100 3700 4100 +Wire Wire Line + 4200 2750 4200 3000 +Wire Wire Line + 4650 3700 4200 3700 +Connection ~ 4200 3700 +Wire Wire Line + 4200 4400 4200 4600 +Wire Wire Line + 4650 4500 4200 4500 +Connection ~ 4200 4500 +Wire Wire Line + 5150 4000 5150 4200 +Wire Wire Line + 5450 4100 5150 4100 +Connection ~ 5150 4100 +Wire Wire Line + 4200 5200 4200 5350 +Wire Wire Line + 4100 4900 4250 4900 +Wire Wire Line + 4250 4900 4250 5250 +Wire Wire Line + 4200 5250 5150 5250 +Connection ~ 4200 5250 +Wire Wire Line + 5150 5250 5150 4800 +Connection ~ 4250 5250 +Wire Wire Line + 5050 4500 5200 4500 +Wire Wire Line + 5200 4500 5200 4850 +Wire Wire Line + 5200 4850 5150 4850 +Connection ~ 5150 4850 +Wire Wire Line + 4100 4100 4250 4100 +Wire Wire Line + 4250 4100 4250 4500 +Connection ~ 4250 4500 +Wire Wire Line + 4100 3300 4250 3300 +Wire Wire Line + 4250 3300 4250 2950 +Wire Wire Line + 4200 2950 5150 2950 +Connection ~ 4200 2950 +Wire Wire Line + 5150 2950 5150 3400 +Connection ~ 4250 2950 +Wire Wire Line + 5050 3700 5200 3700 +Wire Wire Line + 5200 3700 5200 3350 +Wire Wire Line + 5200 3350 5150 3350 +Connection ~ 5150 3350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/D_FF.cir b/library/SubcircuitLibrary/CD4042B/D_FF.cir new file mode 100644 index 000000000..63d882276 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/D_FF.cir @@ -0,0 +1,17 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_FF/D_FF.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Tue Jun 24 11:33:09 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +scmode1 SKY130mode +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +SC3 Net-_SC2-Pad3_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC4-Pad1_ Net-_SC1-Pad1_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC5 Net-_SC4-Pad1_ Net-_SC2-Pad3_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC3-Pad3_ Net-_SC4-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/CD4042B/D_FF.cir.out b/library/SubcircuitLibrary/CD4042B/D_FF.cir.out new file mode 100644 index 000000000..ea0830808 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/D_FF.cir.out @@ -0,0 +1,20 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/d_ff/d_ff.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* s c m o d e +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc3 net-_sc2-pad3_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc4-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc4-pad1_ net-_sc2-pad3_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad3_ net-_sc4-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4042B/D_FF.pro b/library/SubcircuitLibrary/CD4042B/D_FF.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/D_FF.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4042B/D_FF.sch b/library/SubcircuitLibrary/CD4042B/D_FF.sch new file mode 100644 index 000000000..722069493 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/D_FF.sch @@ -0,0 +1,246 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 685A3E76 +P 9400 3200 +F 0 "scmode1" H 9400 3350 98 0000 C CNB +F 1 "SKY130mode" H 9400 3100 118 0000 C CNB +F 2 "" H 9400 3350 60 0001 C CNN +F 3 "" H 9400 3350 60 0001 C CNN + 1 9400 3200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 685A3EBD +P 4000 3300 +F 0 "SC1" H 4050 3600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4300 3387 50 0000 R CNN +F 2 "" H 4000 1800 50 0001 C CNN +F 3 "" H 4000 3300 50 0001 C CNN + 1 4000 3300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 685A3EFC +P 4000 4100 +F 0 "SC2" H 4050 4400 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4187 50 0000 R CNN +F 2 "" H 4000 2600 50 0001 C CNN +F 3 "" H 4000 4100 50 0001 C CNN + 1 4000 4100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 685A3F47 +P 4000 4900 +F 0 "SC3" H 4050 5200 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4987 50 0000 R CNN +F 2 "" H 4000 3400 50 0001 C CNN +F 3 "" H 4000 4900 50 0001 C CNN + 1 4000 4900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 685A3F7A +P 4950 3700 +F 0 "SC4" H 5000 4000 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5250 3787 50 0000 R CNN +F 2 "" H 4950 2200 50 0001 C CNN +F 3 "" H 4950 3700 50 0001 C CNN + 1 4950 3700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 685A3FCF +P 4950 4500 +F 0 "SC5" H 5000 4800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5250 4587 50 0000 R CNN +F 2 "" H 4950 3000 50 0001 C CNN +F 3 "" H 4950 4500 50 0001 C CNN + 1 4950 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685A401A +P 3250 3550 +F 0 "U1" H 3300 3650 30 0000 C CNN +F 1 "PORT" H 3250 3550 30 0000 C CNN +F 2 "" H 3250 3550 60 0000 C CNN +F 3 "" H 3250 3550 60 0000 C CNN + 1 3250 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685A40FF +P 3250 4100 +F 0 "U1" H 3300 4200 30 0000 C CNN +F 1 "PORT" H 3250 4100 30 0000 C CNN +F 2 "" H 3250 4100 60 0000 C CNN +F 3 "" H 3250 4100 60 0000 C CNN + 2 3250 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685A4132 +P 3950 2750 +F 0 "U1" H 4000 2850 30 0000 C CNN +F 1 "PORT" H 3950 2750 30 0000 C CNN +F 2 "" H 3950 2750 60 0000 C CNN +F 3 "" H 3950 2750 60 0000 C CNN + 3 3950 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685A41B1 +P 3950 5350 +F 0 "U1" H 4000 5450 30 0000 C CNN +F 1 "PORT" H 3950 5350 30 0000 C CNN +F 2 "" H 3950 5350 60 0000 C CNN +F 3 "" H 3950 5350 60 0000 C CNN + 4 3950 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685A4206 +P 5700 4100 +F 0 "U1" H 5750 4200 30 0000 C CNN +F 1 "PORT" H 5700 4100 30 0000 C CNN +F 2 "" H 5700 4100 60 0000 C CNN +F 3 "" H 5700 4100 60 0000 C CNN + 5 5700 4100 + -1 0 0 1 +$EndComp +Wire Wire Line + 4200 3600 4200 3800 +Wire Wire Line + 3700 3300 3600 3300 +Wire Wire Line + 3600 3300 3600 4900 +Wire Wire Line + 3600 4900 3700 4900 +Wire Wire Line + 3500 3550 3600 3550 +Connection ~ 3600 3550 +Wire Wire Line + 3500 4100 3700 4100 +Wire Wire Line + 4200 2750 4200 3000 +Wire Wire Line + 4650 3700 4200 3700 +Connection ~ 4200 3700 +Wire Wire Line + 4200 4400 4200 4600 +Wire Wire Line + 4650 4500 4200 4500 +Connection ~ 4200 4500 +Wire Wire Line + 5150 4000 5150 4200 +Wire Wire Line + 5450 4100 5150 4100 +Connection ~ 5150 4100 +Wire Wire Line + 4200 5200 4200 5350 +Wire Wire Line + 4100 4900 4250 4900 +Wire Wire Line + 4250 4900 4250 5250 +Wire Wire Line + 4200 5250 5150 5250 +Connection ~ 4200 5250 +Wire Wire Line + 5150 5250 5150 4800 +Connection ~ 4250 5250 +Wire Wire Line + 5050 4500 5200 4500 +Wire Wire Line + 5200 4500 5200 4850 +Wire Wire Line + 5200 4850 5150 4850 +Connection ~ 5150 4850 +Wire Wire Line + 4100 4100 4250 4100 +Wire Wire Line + 4250 4100 4250 4500 +Connection ~ 4250 4500 +Wire Wire Line + 4100 3300 4250 3300 +Wire Wire Line + 4250 3300 4250 2950 +Wire Wire Line + 4200 2950 5150 2950 +Connection ~ 4200 2950 +Wire Wire Line + 5150 2950 5150 3400 +Connection ~ 4250 2950 +Wire Wire Line + 5050 3700 5200 3700 +Wire Wire Line + 5200 3700 5200 3350 +Wire Wire Line + 5200 3350 5150 3350 +Connection ~ 5150 3350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/D_FF.sub b/library/SubcircuitLibrary/CD4042B/D_FF.sub new file mode 100644 index 000000000..80c6b5838 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/D_FF.sub @@ -0,0 +1,15 @@ +* Subcircuit D_FF +.subckt D_FF net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad3_ net-_sc4-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/d_ff/d_ff.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* s c m o d e +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc3 net-_sc2-pad3_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc4-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc4-pad1_ net-_sc2-pad3_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* Control Statements + +.ends D_FF diff --git a/library/SubcircuitLibrary/CD4042B/D_FF_Previous_Values.xml b/library/SubcircuitLibrary/CD4042B/D_FF_Previous_Values.xml new file mode 100644 index 000000000..47ed32dc1 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/D_FF_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=1 l=0.15 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4042B/Quad_D_FF-cache.lib b/library/SubcircuitLibrary/CD4042B/Quad_D_FF-cache.lib new file mode 100644 index 000000000..551ed8796 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/Quad_D_FF-cache.lib @@ -0,0 +1,91 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 100 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 550 0 50 0 1 0 N +P 2 0 1 0 -450 250 500 0 N +P 3 0 1 0 -450 250 -450 -250 500 0 N +X IN 1 -650 0 200 R 50 50 1 1 I +X VDD 2 -650 150 200 R 50 50 1 1 I +X GND 3 -650 -150 200 R 50 50 1 1 I +X OUT 4 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# D_FF +# +DEF D_FF X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "D_FF" -150 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -250 250 250 -250 0 1 0 N +X D 1 -450 150 200 R 50 50 1 1 I +X En 2 -450 -150 200 R 50 50 1 1 I +X Vdd 3 0 450 200 D 50 50 1 1 I +X Gnd 4 0 -450 200 U 50 50 1 1 I +X Out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4042B/Quad_D_FF.bak b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.bak new file mode 100644 index 000000000..2cc300534 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.bak @@ -0,0 +1,426 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L D_FF X1 +U 1 1 685A4330 +P 5000 2000 +F 0 "X1" H 5000 2000 60 0000 C CNN +F 1 "D_FF" H 4850 2000 60 0000 C CNN +F 2 "" H 5000 2000 60 0001 C CNN +F 3 "" H 5000 2000 60 0001 C CNN + 1 5000 2000 + 1 0 0 -1 +$EndComp +$Comp +L D_FF X2 +U 1 1 685A43B2 +P 5000 3100 +F 0 "X2" H 5000 3100 60 0000 C CNN +F 1 "D_FF" H 4850 3100 60 0000 C CNN +F 2 "" H 5000 3100 60 0001 C CNN +F 3 "" H 5000 3100 60 0001 C CNN + 1 5000 3100 + 1 0 0 -1 +$EndComp +$Comp +L D_FF X3 +U 1 1 685A442D +P 5000 4150 +F 0 "X3" H 5000 4150 60 0000 C CNN +F 1 "D_FF" H 4850 4150 60 0000 C CNN +F 2 "" H 5000 4150 60 0001 C CNN +F 3 "" H 5000 4150 60 0001 C CNN + 1 5000 4150 + 1 0 0 -1 +$EndComp +$Comp +L D_FF X4 +U 1 1 685A44A2 +P 5000 5250 +F 0 "X4" H 5000 5250 60 0000 C CNN +F 1 "D_FF" H 4850 5250 60 0000 C CNN +F 2 "" H 5000 5250 60 0001 C CNN +F 3 "" H 5000 5250 60 0001 C CNN + 1 5000 5250 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X5 +U 1 1 685A4627 +P 6250 2550 +F 0 "X5" H 6250 2550 60 0000 C CNN +F 1 "CMOS_INVTR" H 6350 2300 60 0000 C CNN +F 2 "" H 6250 2550 60 0001 C CNN +F 3 "" H 6250 2550 60 0001 C CNN + 1 6250 2550 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X6 +U 1 1 685A4674 +P 6250 3650 +F 0 "X6" H 6250 3650 60 0000 C CNN +F 1 "CMOS_INVTR" H 6350 3400 60 0000 C CNN +F 2 "" H 6250 3650 60 0001 C CNN +F 3 "" H 6250 3650 60 0001 C CNN + 1 6250 3650 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X7 +U 1 1 685A4791 +P 6250 4700 +F 0 "X7" H 6250 4700 60 0000 C CNN +F 1 "CMOS_INVTR" H 6350 4450 60 0000 C CNN +F 2 "" H 6250 4700 60 0001 C CNN +F 3 "" H 6250 4700 60 0001 C CNN + 1 6250 4700 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X8 +U 1 1 685A47E6 +P 6250 5800 +F 0 "X8" H 6250 5800 60 0000 C CNN +F 1 "CMOS_INVTR" H 6350 5550 60 0000 C CNN +F 2 "" H 6250 5800 60 0001 C CNN +F 3 "" H 6250 5800 60 0001 C CNN + 1 6250 5800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685A4895 +P 3850 1850 +F 0 "U1" H 3900 1950 30 0000 C CNN +F 1 "PORT" H 3850 1850 30 0000 C CNN +F 2 "" H 3850 1850 60 0000 C CNN +F 3 "" H 3850 1850 60 0000 C CNN + 1 3850 1850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685A492A +P 3850 2950 +F 0 "U1" H 3900 3050 30 0000 C CNN +F 1 "PORT" H 3850 2950 30 0000 C CNN +F 2 "" H 3850 2950 60 0000 C CNN +F 3 "" H 3850 2950 60 0000 C CNN + 3 3850 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685A4A37 +P 3850 4000 +F 0 "U1" H 3900 4100 30 0000 C CNN +F 1 "PORT" H 3850 4000 30 0000 C CNN +F 2 "" H 3850 4000 60 0000 C CNN +F 3 "" H 3850 4000 60 0000 C CNN + 4 3850 4000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685A4B10 +P 3850 5100 +F 0 "U1" H 3900 5200 30 0000 C CNN +F 1 "PORT" H 3850 5100 30 0000 C CNN +F 2 "" H 3850 5100 60 0000 C CNN +F 3 "" H 3850 5100 60 0000 C CNN + 5 3850 5100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 685A4BE5 +P 6050 2000 +F 0 "U1" H 6100 2100 30 0000 C CNN +F 1 "PORT" H 6050 2000 30 0000 C CNN +F 2 "" H 6050 2000 60 0000 C CNN +F 3 "" H 6050 2000 60 0000 C CNN + 8 6050 2000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 685A4CBA +P 7350 2550 +F 0 "U1" H 7400 2650 30 0000 C CNN +F 1 "PORT" H 7350 2550 30 0000 C CNN +F 2 "" H 7350 2550 60 0000 C CNN +F 3 "" H 7350 2550 60 0000 C CNN + 12 7350 2550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 685A4D33 +P 6050 3100 +F 0 "U1" H 6100 3200 30 0000 C CNN +F 1 "PORT" H 6050 3100 30 0000 C CNN +F 2 "" H 6050 3100 60 0000 C CNN +F 3 "" H 6050 3100 60 0000 C CNN + 9 6050 3100 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 685A4DBE +P 7400 3650 +F 0 "U1" H 7450 3750 30 0000 C CNN +F 1 "PORT" H 7400 3650 30 0000 C CNN +F 2 "" H 7400 3650 60 0000 C CNN +F 3 "" H 7400 3650 60 0000 C CNN + 13 7400 3650 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 685A4EC7 +P 6050 4150 +F 0 "U1" H 6100 4250 30 0000 C CNN +F 1 "PORT" H 6050 4150 30 0000 C CNN +F 2 "" H 6050 4150 60 0000 C CNN +F 3 "" H 6050 4150 60 0000 C CNN + 10 6050 4150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 685A4F44 +P 7400 4700 +F 0 "U1" H 7450 4800 30 0000 C CNN +F 1 "PORT" H 7400 4700 30 0000 C CNN +F 2 "" H 7400 4700 60 0000 C CNN +F 3 "" H 7400 4700 60 0000 C CNN + 14 7400 4700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 685A5115 +P 6050 5250 +F 0 "U1" H 6100 5350 30 0000 C CNN +F 1 "PORT" H 6050 5250 30 0000 C CNN +F 2 "" H 6050 5250 60 0000 C CNN +F 3 "" H 6050 5250 60 0000 C CNN + 11 6050 5250 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 685A52B2 +P 7400 5800 +F 0 "U1" H 7450 5900 30 0000 C CNN +F 1 "PORT" H 7400 5800 30 0000 C CNN +F 2 "" H 7400 5800 60 0000 C CNN +F 3 "" H 7400 5800 60 0000 C CNN + 15 7400 5800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 685A53F3 +P 4750 1350 +F 0 "U1" H 4800 1450 30 0000 C CNN +F 1 "PORT" H 4750 1350 30 0000 C CNN +F 2 "" H 4750 1350 60 0000 C CNN +F 3 "" H 4750 1350 60 0000 C CNN + 7 4750 1350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685A5583 +P 4700 5950 +F 0 "U1" H 4750 6050 30 0000 C CNN +F 1 "PORT" H 4700 5950 30 0000 C CNN +F 2 "" H 4700 5950 60 0000 C CNN +F 3 "" H 4700 5950 60 0000 C CNN + 6 4700 5950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5000 1350 5000 1550 +Wire Wire Line + 5000 1500 5200 1500 +Wire Wire Line + 5200 1500 5200 5650 +Wire Wire Line + 5200 5650 5600 5650 +Wire Wire Line + 5000 4800 5200 4800 +Connection ~ 5200 4800 +Wire Wire Line + 5600 4550 5200 4550 +Connection ~ 5200 4550 +Wire Wire Line + 5000 3700 5200 3700 +Connection ~ 5200 3700 +Wire Wire Line + 5600 3500 5200 3500 +Connection ~ 5200 3500 +Wire Wire Line + 5000 2650 5200 2650 +Connection ~ 5200 2650 +Wire Wire Line + 5600 2400 5200 2400 +Connection ~ 5200 2400 +Connection ~ 5000 1500 +Wire Wire Line + 4950 5950 5600 5950 +Wire Wire Line + 5150 5950 5150 2450 +Wire Wire Line + 5150 2450 5000 2450 +Wire Wire Line + 5600 2700 5150 2700 +Connection ~ 5150 2700 +Wire Wire Line + 5000 3550 5150 3550 +Connection ~ 5150 3550 +Wire Wire Line + 5600 3800 5150 3800 +Connection ~ 5150 3800 +Wire Wire Line + 5000 4600 5150 4600 +Connection ~ 5150 4600 +Wire Wire Line + 5600 4850 5150 4850 +Connection ~ 5150 4850 +Wire Wire Line + 5000 5700 5150 5700 +Connection ~ 5150 5700 +Connection ~ 5150 5950 +Wire Wire Line + 5450 5250 5450 5800 +Wire Wire Line + 5450 5800 5600 5800 +Wire Wire Line + 5800 5250 5800 5350 +Wire Wire Line + 5800 5350 5450 5350 +Connection ~ 5450 5350 +Wire Wire Line + 5450 4150 5450 4700 +Wire Wire Line + 5450 4700 5600 4700 +Wire Wire Line + 5800 4150 5800 4250 +Wire Wire Line + 5800 4250 5450 4250 +Connection ~ 5450 4250 +Wire Wire Line + 5450 3100 5450 3650 +Wire Wire Line + 5450 3650 5600 3650 +Wire Wire Line + 5800 3100 5800 3200 +Wire Wire Line + 5800 3200 5450 3200 +Connection ~ 5450 3200 +Wire Wire Line + 5450 2000 5450 2550 +Wire Wire Line + 5450 2550 5600 2550 +Wire Wire Line + 5800 2000 5800 2100 +Wire Wire Line + 5800 2100 5450 2100 +Connection ~ 5450 2100 +Wire Wire Line + 7050 2550 7100 2550 +Wire Wire Line + 7050 3650 7150 3650 +Wire Wire Line + 7050 4700 7150 4700 +Wire Wire Line + 7050 5800 7150 5800 +Wire Wire Line + 4100 5100 4550 5100 +Wire Wire Line + 4100 4000 4550 4000 +Wire Wire Line + 4100 2950 4550 2950 +Wire Wire Line + 4100 1850 4550 1850 +Wire Wire Line + 4100 2150 4550 2150 +Wire Wire Line + 4350 2150 4350 5400 +Wire Wire Line + 4350 5400 4550 5400 +Wire Wire Line + 4550 4300 4350 4300 +Connection ~ 4350 4300 +Wire Wire Line + 4550 3250 4350 3250 +Connection ~ 4350 3250 +Connection ~ 4350 2150 +$Comp +L PORT U1 +U 2 1 685A7447 +P 3850 2150 +F 0 "U1" H 3900 2250 30 0000 C CNN +F 1 "PORT" H 3850 2150 30 0000 C CNN +F 2 "" H 3850 2150 60 0000 C CNN +F 3 "" H 3850 2150 60 0000 C CNN + 2 3850 2150 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/Quad_D_FF.cir b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.cir new file mode 100644 index 000000000..37c80e10b --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.cir @@ -0,0 +1,20 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Quad_D_FF/Quad_D_FF.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Tue Jun 24 11:58:14 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_U1-Pad8_ D_FF +X2 Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_U1-Pad9_ D_FF +X3 Net-_U1-Pad4_ Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_U1-Pad10_ D_FF +X4 Net-_U1-Pad5_ Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_U1-Pad11_ D_FF +X5 Net-_U1-Pad8_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_U1-Pad12_ CMOS_INVTR +X6 Net-_U1-Pad9_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_U1-Pad13_ CMOS_INVTR +X7 Net-_U1-Pad10_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_U1-Pad14_ CMOS_INVTR +X8 Net-_U1-Pad11_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_U1-Pad15_ CMOS_INVTR +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/CD4042B/Quad_D_FF.cir.out b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.cir.out new file mode 100644 index 000000000..1a896a200 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.cir.out @@ -0,0 +1,25 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/quad_d_ff/quad_d_ff.cir + +.include D_FF.sub +.include CMOS_INVTR.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad8_ D_FF +x2 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad9_ D_FF +x3 net-_u1-pad4_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad10_ D_FF +x4 net-_u1-pad5_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad11_ D_FF +x5 net-_u1-pad8_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad12_ CMOS_INVTR +x6 net-_u1-pad9_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad13_ CMOS_INVTR +x7 net-_u1-pad10_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad14_ CMOS_INVTR +x8 net-_u1-pad11_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad15_ CMOS_INVTR +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4042B/Quad_D_FF.pro b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4042B/Quad_D_FF.sch b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.sch new file mode 100644 index 000000000..b11037c25 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.sch @@ -0,0 +1,437 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L D_FF X1 +U 1 1 685A4330 +P 5000 2000 +F 0 "X1" H 5000 2000 60 0000 C CNN +F 1 "D_FF" H 4850 2000 60 0000 C CNN +F 2 "" H 5000 2000 60 0001 C CNN +F 3 "" H 5000 2000 60 0001 C CNN + 1 5000 2000 + 1 0 0 -1 +$EndComp +$Comp +L D_FF X2 +U 1 1 685A43B2 +P 5000 3100 +F 0 "X2" H 5000 3100 60 0000 C CNN +F 1 "D_FF" H 4850 3100 60 0000 C CNN +F 2 "" H 5000 3100 60 0001 C CNN +F 3 "" H 5000 3100 60 0001 C CNN + 1 5000 3100 + 1 0 0 -1 +$EndComp +$Comp +L D_FF X3 +U 1 1 685A442D +P 5000 4150 +F 0 "X3" H 5000 4150 60 0000 C CNN +F 1 "D_FF" H 4850 4150 60 0000 C CNN +F 2 "" H 5000 4150 60 0001 C CNN +F 3 "" H 5000 4150 60 0001 C CNN + 1 5000 4150 + 1 0 0 -1 +$EndComp +$Comp +L D_FF X4 +U 1 1 685A44A2 +P 5000 5250 +F 0 "X4" H 5000 5250 60 0000 C CNN +F 1 "D_FF" H 4850 5250 60 0000 C CNN +F 2 "" H 5000 5250 60 0001 C CNN +F 3 "" H 5000 5250 60 0001 C CNN + 1 5000 5250 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X5 +U 1 1 685A4627 +P 6250 2550 +F 0 "X5" H 6250 2550 60 0000 C CNN +F 1 "CMOS_INVTR" H 6350 2300 60 0000 C CNN +F 2 "" H 6250 2550 60 0001 C CNN +F 3 "" H 6250 2550 60 0001 C CNN + 1 6250 2550 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X6 +U 1 1 685A4674 +P 6250 3650 +F 0 "X6" H 6250 3650 60 0000 C CNN +F 1 "CMOS_INVTR" H 6350 3400 60 0000 C CNN +F 2 "" H 6250 3650 60 0001 C CNN +F 3 "" H 6250 3650 60 0001 C CNN + 1 6250 3650 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X7 +U 1 1 685A4791 +P 6250 4700 +F 0 "X7" H 6250 4700 60 0000 C CNN +F 1 "CMOS_INVTR" H 6350 4450 60 0000 C CNN +F 2 "" H 6250 4700 60 0001 C CNN +F 3 "" H 6250 4700 60 0001 C CNN + 1 6250 4700 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X8 +U 1 1 685A47E6 +P 6250 5800 +F 0 "X8" H 6250 5800 60 0000 C CNN +F 1 "CMOS_INVTR" H 6350 5550 60 0000 C CNN +F 2 "" H 6250 5800 60 0001 C CNN +F 3 "" H 6250 5800 60 0001 C CNN + 1 6250 5800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685A4895 +P 3850 1850 +F 0 "U1" H 3900 1950 30 0000 C CNN +F 1 "PORT" H 3850 1850 30 0000 C CNN +F 2 "" H 3850 1850 60 0000 C CNN +F 3 "" H 3850 1850 60 0000 C CNN + 1 3850 1850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685A492A +P 3850 2950 +F 0 "U1" H 3900 3050 30 0000 C CNN +F 1 "PORT" H 3850 2950 30 0000 C CNN +F 2 "" H 3850 2950 60 0000 C CNN +F 3 "" H 3850 2950 60 0000 C CNN + 3 3850 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685A4A37 +P 3850 4000 +F 0 "U1" H 3900 4100 30 0000 C CNN +F 1 "PORT" H 3850 4000 30 0000 C CNN +F 2 "" H 3850 4000 60 0000 C CNN +F 3 "" H 3850 4000 60 0000 C CNN + 4 3850 4000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685A4B10 +P 3850 5100 +F 0 "U1" H 3900 5200 30 0000 C CNN +F 1 "PORT" H 3850 5100 30 0000 C CNN +F 2 "" H 3850 5100 60 0000 C CNN +F 3 "" H 3850 5100 60 0000 C CNN + 5 3850 5100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 685A4BE5 +P 6050 2000 +F 0 "U1" H 6100 2100 30 0000 C CNN +F 1 "PORT" H 6050 2000 30 0000 C CNN +F 2 "" H 6050 2000 60 0000 C CNN +F 3 "" H 6050 2000 60 0000 C CNN + 8 6050 2000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 685A4CBA +P 7350 2550 +F 0 "U1" H 7400 2650 30 0000 C CNN +F 1 "PORT" H 7350 2550 30 0000 C CNN +F 2 "" H 7350 2550 60 0000 C CNN +F 3 "" H 7350 2550 60 0000 C CNN + 12 7350 2550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 685A4D33 +P 6050 3100 +F 0 "U1" H 6100 3200 30 0000 C CNN +F 1 "PORT" H 6050 3100 30 0000 C CNN +F 2 "" H 6050 3100 60 0000 C CNN +F 3 "" H 6050 3100 60 0000 C CNN + 9 6050 3100 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 685A4DBE +P 7400 3650 +F 0 "U1" H 7450 3750 30 0000 C CNN +F 1 "PORT" H 7400 3650 30 0000 C CNN +F 2 "" H 7400 3650 60 0000 C CNN +F 3 "" H 7400 3650 60 0000 C CNN + 13 7400 3650 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 685A4EC7 +P 6050 4150 +F 0 "U1" H 6100 4250 30 0000 C CNN +F 1 "PORT" H 6050 4150 30 0000 C CNN +F 2 "" H 6050 4150 60 0000 C CNN +F 3 "" H 6050 4150 60 0000 C CNN + 10 6050 4150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 685A4F44 +P 7400 4700 +F 0 "U1" H 7450 4800 30 0000 C CNN +F 1 "PORT" H 7400 4700 30 0000 C CNN +F 2 "" H 7400 4700 60 0000 C CNN +F 3 "" H 7400 4700 60 0000 C CNN + 14 7400 4700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 685A5115 +P 6050 5250 +F 0 "U1" H 6100 5350 30 0000 C CNN +F 1 "PORT" H 6050 5250 30 0000 C CNN +F 2 "" H 6050 5250 60 0000 C CNN +F 3 "" H 6050 5250 60 0000 C CNN + 11 6050 5250 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 685A52B2 +P 7400 5800 +F 0 "U1" H 7450 5900 30 0000 C CNN +F 1 "PORT" H 7400 5800 30 0000 C CNN +F 2 "" H 7400 5800 60 0000 C CNN +F 3 "" H 7400 5800 60 0000 C CNN + 15 7400 5800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 685A53F3 +P 4750 1350 +F 0 "U1" H 4800 1450 30 0000 C CNN +F 1 "PORT" H 4750 1350 30 0000 C CNN +F 2 "" H 4750 1350 60 0000 C CNN +F 3 "" H 4750 1350 60 0000 C CNN + 7 4750 1350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685A5583 +P 4700 5950 +F 0 "U1" H 4750 6050 30 0000 C CNN +F 1 "PORT" H 4700 5950 30 0000 C CNN +F 2 "" H 4700 5950 60 0000 C CNN +F 3 "" H 4700 5950 60 0000 C CNN + 6 4700 5950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5000 1350 5000 1550 +Wire Wire Line + 5000 1500 5200 1500 +Wire Wire Line + 5200 1500 5200 5650 +Wire Wire Line + 5200 5650 5600 5650 +Wire Wire Line + 5000 4800 5200 4800 +Connection ~ 5200 4800 +Wire Wire Line + 5600 4550 5200 4550 +Connection ~ 5200 4550 +Wire Wire Line + 5000 3700 5200 3700 +Connection ~ 5200 3700 +Wire Wire Line + 5600 3500 5200 3500 +Connection ~ 5200 3500 +Wire Wire Line + 5000 2650 5200 2650 +Connection ~ 5200 2650 +Wire Wire Line + 5600 2400 5200 2400 +Connection ~ 5200 2400 +Connection ~ 5000 1500 +Wire Wire Line + 4950 5950 5600 5950 +Wire Wire Line + 5150 5950 5150 2450 +Wire Wire Line + 5150 2450 5000 2450 +Wire Wire Line + 5600 2700 5150 2700 +Connection ~ 5150 2700 +Wire Wire Line + 5000 3550 5150 3550 +Connection ~ 5150 3550 +Wire Wire Line + 5600 3800 5150 3800 +Connection ~ 5150 3800 +Wire Wire Line + 5000 4600 5150 4600 +Connection ~ 5150 4600 +Wire Wire Line + 5600 4850 5150 4850 +Connection ~ 5150 4850 +Wire Wire Line + 5000 5700 5150 5700 +Connection ~ 5150 5700 +Connection ~ 5150 5950 +Wire Wire Line + 5450 5250 5450 5800 +Wire Wire Line + 5450 5800 5600 5800 +Wire Wire Line + 5800 5250 5800 5350 +Wire Wire Line + 5800 5350 5450 5350 +Connection ~ 5450 5350 +Wire Wire Line + 5450 4150 5450 4700 +Wire Wire Line + 5450 4700 5600 4700 +Wire Wire Line + 5800 4150 5800 4250 +Wire Wire Line + 5800 4250 5450 4250 +Connection ~ 5450 4250 +Wire Wire Line + 5450 3100 5450 3650 +Wire Wire Line + 5450 3650 5600 3650 +Wire Wire Line + 5800 3100 5800 3200 +Wire Wire Line + 5800 3200 5450 3200 +Connection ~ 5450 3200 +Wire Wire Line + 5450 2000 5450 2550 +Wire Wire Line + 5450 2550 5600 2550 +Wire Wire Line + 5800 2000 5800 2100 +Wire Wire Line + 5800 2100 5450 2100 +Connection ~ 5450 2100 +Wire Wire Line + 7050 2550 7100 2550 +Wire Wire Line + 7050 3650 7150 3650 +Wire Wire Line + 7050 4700 7150 4700 +Wire Wire Line + 7050 5800 7150 5800 +Wire Wire Line + 4100 5100 4550 5100 +Wire Wire Line + 4100 4000 4550 4000 +Wire Wire Line + 4100 2950 4550 2950 +Wire Wire Line + 4100 1850 4550 1850 +Wire Wire Line + 4100 2150 4550 2150 +Wire Wire Line + 4350 2150 4350 5400 +Wire Wire Line + 4350 5400 4550 5400 +Wire Wire Line + 4550 4300 4350 4300 +Connection ~ 4350 4300 +Wire Wire Line + 4550 3250 4350 3250 +Connection ~ 4350 3250 +Connection ~ 4350 2150 +$Comp +L PORT U1 +U 2 1 685A7447 +P 3850 2150 +F 0 "U1" H 3900 2250 30 0000 C CNN +F 1 "PORT" H 3850 2150 30 0000 C CNN +F 2 "" H 3850 2150 60 0000 C CNN +F 3 "" H 3850 2150 60 0000 C CNN + 2 3850 2150 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 685A7733 +P 8100 2350 +F 0 "scmode1" H 8100 2500 98 0000 C CNB +F 1 "SKY130mode" H 8100 2250 118 0000 C CNB +F 2 "" H 8100 2500 60 0001 C CNN +F 3 "" H 8100 2500 60 0001 C CNN + 1 8100 2350 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/Quad_D_FF.sub b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.sub new file mode 100644 index 000000000..06850c2e5 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/Quad_D_FF.sub @@ -0,0 +1,19 @@ +* Subcircuit Quad_D_FF +.subckt Quad_D_FF net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/quad_d_ff/quad_d_ff.cir +.include D_FF.sub +.include CMOS_INVTR.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad8_ D_FF +x2 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad9_ D_FF +x3 net-_u1-pad4_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad10_ D_FF +x4 net-_u1-pad5_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad11_ D_FF +x5 net-_u1-pad8_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad12_ CMOS_INVTR +x6 net-_u1-pad9_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad13_ CMOS_INVTR +x7 net-_u1-pad10_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad14_ CMOS_INVTR +x8 net-_u1-pad11_ net-_u1-pad7_ net-_u1-pad6_ net-_u1-pad15_ CMOS_INVTR +* s c m o d e +* Control Statements + +.ends Quad_D_FF diff --git a/library/SubcircuitLibrary/CD4042B/Quad_D_FF_Previous_Values.xml b/library/SubcircuitLibrary/CD4042B/Quad_D_FF_Previous_Values.xml new file mode 100644 index 000000000..bd9e78df3 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/Quad_D_FF_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_FF/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_FF/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_FF/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_FF/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch-cache.lib b/library/SubcircuitLibrary/CD4042B/TG_D_Latch-cache.lib new file mode 100644 index 000000000..80dcddf3a --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch-cache.lib @@ -0,0 +1,128 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 100 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 550 0 50 0 1 0 N +P 2 0 1 0 -450 250 500 0 N +P 3 0 1 0 -450 250 -450 -250 500 0 N +X IN 1 -650 0 200 R 50 50 1 1 I +X VDD 2 -650 150 200 R 50 50 1 1 I +X GND 3 -650 -150 200 R 50 50 1 1 I +X OUT 4 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch.bak b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.bak new file mode 100644 index 000000000..e176827e0 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.bak @@ -0,0 +1,363 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 6858190E +P 4050 1900 +F 0 "SC1" H 4100 2200 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4350 1987 50 0000 R CNN +F 2 "" H 4050 400 50 0001 C CNN +F 3 "" H 4050 1900 50 0001 C CNN + 1 4050 1900 + 0 1 1 0 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 68581A3F +P 4050 2600 +F 0 "SC2" H 4100 2900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4350 2687 50 0000 R CNN +F 2 "" H 4050 1100 50 0001 C CNN +F 3 "" H 4050 2600 50 0001 C CNN + 1 4050 2600 + 0 -1 -1 0 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 68581A7C +P 4800 3350 +F 0 "SC3" H 4850 3650 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5100 3437 50 0000 R CNN +F 2 "" H 4800 1850 50 0001 C CNN +F 3 "" H 4800 3350 50 0001 C CNN + 1 4800 3350 + 0 1 1 0 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 68581B09 +P 4800 4000 +F 0 "SC4" H 4850 4300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5100 4087 50 0000 R CNN +F 2 "" H 4800 2500 50 0001 C CNN +F 3 "" H 4800 4000 50 0001 C CNN + 1 4800 4000 + 0 -1 -1 0 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 68581D3A +P 6100 2300 +F 0 "X2" H 6100 2300 60 0000 C CNN +F 1 "CMOS_INVTR" H 6200 2050 60 0000 C CNN +F 2 "" H 6100 2300 60 0001 C CNN +F 3 "" H 6100 2300 60 0001 C CNN + 1 6100 2300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X4 +U 1 1 68581DAF +P 8300 2300 +F 0 "X4" H 8300 2300 60 0000 C CNN +F 1 "CMOS_INVTR" H 8400 2050 60 0000 C CNN +F 2 "" H 8300 2300 60 0001 C CNN +F 3 "" H 8300 2300 60 0001 C CNN + 1 8300 2300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X3 +U 1 1 68581E36 +P 7250 3400 +F 0 "X3" H 7250 3400 60 0000 C CNN +F 1 "CMOS_INVTR" H 7350 3150 60 0000 C CNN +F 2 "" H 7250 3400 60 0001 C CNN +F 3 "" H 7250 3400 60 0001 C CNN + 1 7250 3400 + 0 1 1 0 +$EndComp +$Comp +L CMOS_INVTR X5 +U 1 1 68581EF3 +P 8300 4200 +F 0 "X5" H 8300 4200 60 0000 C CNN +F 1 "CMOS_INVTR" H 8400 3950 60 0000 C CNN +F 2 "" H 8300 4200 60 0001 C CNN +F 3 "" H 8300 4200 60 0001 C CNN + 1 8300 4200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68581F84 +P 3150 2250 +F 0 "U1" H 3200 2350 30 0000 C CNN +F 1 "PORT" H 3150 2250 30 0000 C CNN +F 2 "" H 3150 2250 60 0000 C CNN +F 3 "" H 3150 2250 60 0000 C CNN + 1 3150 2250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68581FCD +P 3150 2800 +F 0 "U1" H 3200 2900 30 0000 C CNN +F 1 "PORT" H 3150 2800 30 0000 C CNN +F 2 "" H 3150 2800 60 0000 C CNN +F 3 "" H 3150 2800 60 0000 C CNN + 2 3150 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685820FF +P 9600 2300 +F 0 "U1" H 9650 2400 30 0000 C CNN +F 1 "PORT" H 9600 2300 30 0000 C CNN +F 2 "" H 9600 2300 60 0000 C CNN +F 3 "" H 9600 2300 60 0000 C CNN + 5 9600 2300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685821BE +P 9600 4200 +F 0 "U1" H 9650 4300 30 0000 C CNN +F 1 "PORT" H 9600 4200 30 0000 C CNN +F 2 "" H 9600 4200 60 0000 C CNN +F 3 "" H 9600 4200 60 0000 C CNN + 6 9600 4200 + -1 0 0 -1 +$EndComp +Wire Wire Line + 3750 2100 3750 2400 +Wire Wire Line + 3400 2250 3750 2250 +Connection ~ 3750 2250 +Wire Wire Line + 4350 2100 4350 2400 +Wire Wire Line + 4050 2000 4050 2200 +Wire Wire Line + 4050 2500 4050 2300 +Wire Wire Line + 6900 2300 7650 2300 +Wire Wire Line + 7250 2750 7250 2300 +Connection ~ 7250 2300 +Wire Wire Line + 9100 2300 9350 2300 +Wire Wire Line + 9100 4200 9350 4200 +Wire Wire Line + 7250 4200 7650 4200 +Wire Wire Line + 4500 3550 4500 3800 +Wire Wire Line + 5100 3550 5100 3800 +Wire Wire Line + 4800 3450 4800 3600 +Wire Wire Line + 4800 3900 4800 3750 +Wire Wire Line + 4400 2300 4400 3700 +Wire Wire Line + 4400 3700 4500 3700 +Connection ~ 4500 3700 +Connection ~ 4400 2300 +Wire Wire Line + 5100 3650 6650 3650 +Wire Wire Line + 6650 3650 6650 4250 +Wire Wire Line + 6650 4250 7400 4250 +Wire Wire Line + 7400 4250 7400 4200 +Connection ~ 7400 4200 +Connection ~ 5100 3650 +Wire Wire Line + 4050 1600 3500 1600 +Wire Wire Line + 3500 1600 3500 4350 +Wire Wire Line + 4050 2900 4050 3050 +Wire Wire Line + 4050 3050 4800 3050 +Connection ~ 4050 3000 +Wire Wire Line + 5450 2450 5450 2750 +Wire Wire Line + 3650 2750 7100 2750 +Wire Wire Line + 7650 2450 7000 2450 +Wire Wire Line + 7000 2450 7000 4350 +Connection ~ 7000 2750 +Wire Wire Line + 5450 1850 5450 2150 +Wire Wire Line + 5300 2000 7650 2000 +Wire Wire Line + 7650 2000 7650 2150 +Wire Wire Line + 7400 2750 7400 2000 +Connection ~ 7400 2000 +Wire Wire Line + 7650 4050 7650 2750 +Wire Wire Line + 7650 2750 7400 2750 +Wire Wire Line + 7000 4350 7650 4350 +$Comp +L CMOS_INVTR X1 +U 1 1 68582D21 +P 3800 3500 +F 0 "X1" H 3800 3500 60 0000 C CNN +F 1 "CMOS_INVTR" H 3900 3250 60 0000 C CNN +F 2 "" H 3800 3500 60 0001 C CNN +F 3 "" H 3800 3500 60 0001 C CNN + 1 3800 3500 + 0 1 1 0 +$EndComp +Wire Wire Line + 3850 3000 4050 3000 +Wire Wire Line + 3850 2800 3850 3000 +Wire Wire Line + 3850 2850 3800 2850 +Wire Wire Line + 3500 4350 4800 4350 +Wire Wire Line + 4800 4350 4800 4300 +Wire Wire Line + 3800 4300 3800 4350 +Connection ~ 3800 4350 +Wire Wire Line + 4350 2300 5450 2300 +Connection ~ 4350 2300 +Wire Wire Line + 4050 2300 4100 2300 +Wire Wire Line + 4100 2300 4100 3600 +Wire Wire Line + 4100 3600 4800 3600 +Wire Wire Line + 3650 2850 3650 2750 +Connection ~ 4100 2750 +Wire Wire Line + 4050 2200 4150 2200 +Wire Wire Line + 4150 2200 4150 4100 +Wire Wire Line + 4150 4100 4900 4100 +Wire Wire Line + 4900 4100 4900 3750 +Wire Wire Line + 4900 3750 4800 3750 +Wire Wire Line + 3950 2850 5300 2850 +Connection ~ 4150 2850 +Wire Wire Line + 5300 2850 5300 2000 +Connection ~ 5450 2000 +Connection ~ 5450 2750 +$Comp +L PORT U1 +U 4 1 685836DB +P 5200 1850 +F 0 "U1" H 5250 1950 30 0000 C CNN +F 1 "PORT" H 5200 1850 30 0000 C CNN +F 2 "" H 5200 1850 60 0000 C CNN +F 3 "" H 5200 1850 60 0000 C CNN + 4 5200 1850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6858373C +P 4950 2550 +F 0 "U1" H 5000 2650 30 0000 C CNN +F 1 "PORT" H 4950 2550 30 0000 C CNN +F 2 "" H 4950 2550 60 0000 C CNN +F 3 "" H 4950 2550 60 0000 C CNN + 3 4950 2550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5200 2550 5450 2550 +Connection ~ 5450 2550 +Text Label 3750 2250 0 60 ~ 0 +D +Text Label 3550 2800 0 60 ~ 0 +clk +Wire Wire Line + 3850 2800 3400 2800 +Connection ~ 3850 2850 +$Comp +L SKY130mode scmode1 +U 1 1 68583D91 +P 2350 2200 +F 0 "scmode1" H 2350 2350 98 0000 C CNB +F 1 "SKY130mode" H 2350 2100 118 0000 C CNB +F 2 "" H 2350 2350 60 0001 C CNN +F 3 "" H 2350 2350 60 0001 C CNN + 1 2350 2200 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch.cir b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.cir new file mode 100644 index 000000000..b7ab4cd1b --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.cir @@ -0,0 +1,19 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/TG_D_Latch/TG_D_Latch.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Mon Jun 23 11:13:51 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 /D Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad4_ sky130_fd_pr__pfet_01v8 +SC2 /D /clk Net-_SC1-Pad3_ Net-_SC2-Pad4_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC3-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad4_ sky130_fd_pr__pfet_01v8 +U1 /D /clk Net-_SC2-Pad4_ Net-_SC1-Pad4_ Net-_U1-Pad5_ Net-_SC1-Pad3_ PORT +scmode1 SKY130mode +SC3 Net-_SC3-Pad1_ /clk Net-_SC1-Pad3_ Net-_SC2-Pad4_ sky130_fd_pr__nfet_01v8 +X1 /clk Net-_SC1-Pad4_ Net-_SC2-Pad4_ Net-_SC1-Pad2_ CMOS_INVTR +X2 Net-_SC1-Pad3_ Net-_SC1-Pad4_ Net-_SC2-Pad4_ Net-_U1-Pad5_ CMOS_INVTR +X3 Net-_U1-Pad5_ Net-_SC1-Pad4_ Net-_SC2-Pad4_ Net-_SC3-Pad1_ CMOS_INVTR + +.end diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch.cir.out b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.cir.out new file mode 100644 index 000000000..a2955e89a --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.cir.out @@ -0,0 +1,23 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/tg_d_latch/tg_d_latch.cir + +.include CMOS_INVTR.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc1 /d net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad4_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 /d /clk net-_sc1-pad3_ net-_sc2-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad4_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +* u1 /d /clk net-_sc2-pad4_ net-_sc1-pad4_ net-_u1-pad5_ net-_sc1-pad3_ port +* s c m o d e +xsc3 net-_sc3-pad1_ /clk net-_sc1-pad3_ net-_sc2-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +x1 /clk net-_sc1-pad4_ net-_sc2-pad4_ net-_sc1-pad2_ CMOS_INVTR +x2 net-_sc1-pad3_ net-_sc1-pad4_ net-_sc2-pad4_ net-_u1-pad5_ CMOS_INVTR +x3 net-_u1-pad5_ net-_sc1-pad4_ net-_sc2-pad4_ net-_sc3-pad1_ CMOS_INVTR +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch.pro b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch.sch b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.sch new file mode 100644 index 000000000..1399e871f --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.sch @@ -0,0 +1,340 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:TG_D_Latch-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 6858190E +P 4050 1900 +F 0 "SC1" H 4100 2200 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4350 1987 50 0000 R CNN +F 2 "" H 4050 400 50 0001 C CNN +F 3 "" H 4050 1900 50 0001 C CNN + 1 4050 1900 + 0 1 1 0 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 68581A3F +P 4050 2600 +F 0 "SC2" H 4100 2900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4350 2687 50 0000 R CNN +F 2 "" H 4050 1100 50 0001 C CNN +F 3 "" H 4050 2600 50 0001 C CNN + 1 4050 2600 + 0 -1 -1 0 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 68581B09 +P 6150 3800 +F 0 "SC4" H 6200 4100 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6450 3887 50 0000 R CNN +F 2 "" H 6150 2300 50 0001 C CNN +F 3 "" H 6150 3800 50 0001 C CNN + 1 6150 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68581F84 +P 3150 2250 +F 0 "U1" H 3200 2350 30 0000 C CNN +F 1 "PORT" H 3150 2250 30 0000 C CNN +F 2 "" H 3150 2250 60 0000 C CNN +F 3 "" H 3150 2250 60 0000 C CNN + 1 3150 2250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68581FCD +P 3150 2800 +F 0 "U1" H 3200 2900 30 0000 C CNN +F 1 "PORT" H 3150 2800 30 0000 C CNN +F 2 "" H 3150 2800 60 0000 C CNN +F 3 "" H 3150 2800 60 0000 C CNN + 2 3150 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685820FF +P 9600 2300 +F 0 "U1" H 9650 2400 30 0000 C CNN +F 1 "PORT" H 9600 2300 30 0000 C CNN +F 2 "" H 9600 2300 60 0000 C CNN +F 3 "" H 9600 2300 60 0000 C CNN + 5 9600 2300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685821BE +P 7050 1650 +F 0 "U1" H 7100 1750 30 0000 C CNN +F 1 "PORT" H 7050 1650 30 0000 C CNN +F 2 "" H 7050 1650 60 0000 C CNN +F 3 "" H 7050 1650 60 0000 C CNN + 6 7050 1650 + -1 0 0 -1 +$EndComp +Wire Wire Line + 3750 2100 3750 2400 +Wire Wire Line + 3400 2250 3750 2250 +Connection ~ 3750 2250 +Wire Wire Line + 4350 2100 4350 2400 +Wire Wire Line + 8250 2300 9350 2300 +Wire Wire Line + 6600 3500 6350 3500 +Wire Wire Line + 6600 4100 6350 4100 +Wire Wire Line + 6450 3400 6450 3500 +Connection ~ 6450 3500 +Connection ~ 6500 4100 +Wire Wire Line + 4050 2900 4050 3800 +Connection ~ 4050 3000 +Wire Wire Line + 3850 3000 7100 3000 +Wire Wire Line + 3850 2800 3850 3000 +Wire Wire Line + 5650 3800 5850 3800 +$Comp +L PORT U1 +U 4 1 685836DB +P 5200 1850 +F 0 "U1" H 5250 1950 30 0000 C CNN +F 1 "PORT" H 5200 1850 30 0000 C CNN +F 2 "" H 5200 1850 60 0000 C CNN +F 3 "" H 5200 1850 60 0000 C CNN + 4 5200 1850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6858373C +P 4950 2550 +F 0 "U1" H 5000 2650 30 0000 C CNN +F 1 "PORT" H 4950 2550 30 0000 C CNN +F 2 "" H 4950 2550 60 0000 C CNN +F 3 "" H 4950 2550 60 0000 C CNN + 3 4950 2550 + 1 0 0 -1 +$EndComp +Text Label 3750 2250 0 60 ~ 0 +D +Text Label 3550 2800 0 60 ~ 0 +clk +Wire Wire Line + 3850 2800 3400 2800 +$Comp +L SKY130mode scmode1 +U 1 1 68583D91 +P 2350 2200 +F 0 "scmode1" H 2350 2350 98 0000 C CNB +F 1 "SKY130mode" H 2350 2100 118 0000 C CNB +F 2 "" H 2350 2350 60 0001 C CNN +F 3 "" H 2350 2350 60 0001 C CNN + 1 2350 2200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 68581A7C +P 6800 3800 +F 0 "SC3" H 6850 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 7100 3887 50 0000 R CNN +F 2 "" H 6800 2300 50 0001 C CNN +F 3 "" H 6800 3800 50 0001 C CNN + 1 6800 3800 + -1 0 0 1 +$EndComp +$Comp +L CMOS_INVTR X1 +U 1 1 6858EB8D +P 4850 3800 +F 0 "X1" H 4850 3800 60 0000 C CNN +F 1 "CMOS_INVTR" H 4950 3550 60 0000 C CNN +F 2 "" H 4850 3800 60 0001 C CNN +F 3 "" H 4850 3800 60 0001 C CNN + 1 4850 3800 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 6858ECAA +P 7300 2300 +F 0 "X2" H 7300 2300 60 0000 C CNN +F 1 "CMOS_INVTR" H 7400 2050 60 0000 C CNN +F 2 "" H 7300 2300 60 0001 C CNN +F 3 "" H 7300 2300 60 0001 C CNN + 1 7300 2300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X3 +U 1 1 6858ED25 +P 7400 4750 +F 0 "X3" H 7400 4750 60 0000 C CNN +F 1 "CMOS_INVTR" H 7500 4500 60 0000 C CNN +F 2 "" H 7400 4750 60 0001 C CNN +F 3 "" H 7400 4750 60 0001 C CNN + 1 7400 4750 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4050 3800 4200 3800 +Wire Wire Line + 4050 1600 5750 1600 +Wire Wire Line + 5750 1600 5750 3800 +Connection ~ 5750 3800 +Wire Wire Line + 7100 3000 7100 3800 +Wire Wire Line + 6650 2300 4350 2300 +Connection ~ 4350 2300 +Wire Wire Line + 8100 2300 8100 4750 +Wire Wire Line + 8100 4750 8050 4750 +Wire Wire Line + 8250 2300 8250 2550 +Wire Wire Line + 8250 2550 8100 2550 +Connection ~ 8100 2550 +Wire Wire Line + 6400 1650 6400 3400 +Wire Wire Line + 6400 1650 6800 1650 +Connection ~ 6400 2300 +Wire Wire Line + 6500 4100 6500 4750 +Wire Wire Line + 6500 4750 6600 4750 +Wire Wire Line + 6400 3400 6450 3400 +Wire Wire Line + 5450 1850 6250 1850 +Wire Wire Line + 6250 1850 6250 2150 +Wire Wire Line + 6250 2150 6650 2150 +Wire Wire Line + 5200 2550 6650 2550 +Wire Wire Line + 6650 2550 6650 2450 +Wire Wire Line + 4050 2000 4050 2200 +Wire Wire Line + 4050 2200 5550 2200 +Wire Wire Line + 5550 2200 5550 1850 +Connection ~ 5550 1850 +Wire Wire Line + 4050 2500 5400 2500 +Wire Wire Line + 5400 2500 5400 3250 +Connection ~ 5400 2550 +Wire Wire Line + 4200 3650 4200 2750 +Wire Wire Line + 4200 2750 4650 2750 +Wire Wire Line + 4650 2750 4650 2200 +Connection ~ 4650 2200 +Wire Wire Line + 4200 3950 4150 3950 +Wire Wire Line + 4150 3950 4150 3250 +Wire Wire Line + 4150 3250 5400 3250 +Wire Wire Line + 8050 4600 8050 2850 +Wire Wire Line + 8050 2850 5900 2850 +Wire Wire Line + 5900 2850 5900 1850 +Connection ~ 5900 1850 +Wire Wire Line + 8050 4900 8050 5150 +Wire Wire Line + 8050 5150 4100 5150 +Wire Wire Line + 4100 5150 4100 3900 +Wire Wire Line + 4100 3900 4150 3900 +Connection ~ 4150 3900 +Wire Wire Line + 6250 3800 6250 3700 +Wire Wire Line + 6250 3700 8050 3700 +Connection ~ 8050 3700 +Wire Wire Line + 6700 3800 6450 3800 +Wire Wire Line + 6450 3800 6450 3900 +Wire Wire Line + 6450 3900 6050 3900 +Wire Wire Line + 6050 3900 6050 5150 +Connection ~ 6050 5150 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch.sub b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.sub new file mode 100644 index 000000000..7f190ea3c --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch.sub @@ -0,0 +1,17 @@ +* Subcircuit TG_D_Latch +.subckt TG_D_Latch /d /clk net-_sc2-pad4_ net-_sc1-pad4_ net-_u1-pad5_ net-_sc1-pad3_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/tg_d_latch/tg_d_latch.cir +.include CMOS_INVTR.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc1 /d net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad4_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 /d /clk net-_sc1-pad3_ net-_sc2-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad4_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +* s c m o d e +xsc3 net-_sc3-pad1_ /clk net-_sc1-pad3_ net-_sc2-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +x1 /clk net-_sc1-pad4_ net-_sc2-pad4_ net-_sc1-pad2_ CMOS_INVTR +x2 net-_sc1-pad3_ net-_sc1-pad4_ net-_sc2-pad4_ net-_u1-pad5_ CMOS_INVTR +x3 net-_u1-pad5_ net-_sc1-pad4_ net-_sc2-pad4_ net-_sc3-pad1_ CMOS_INVTR +* Control Statements + +.ends TG_D_Latch diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch_Previous_Values.xml b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_Previous_Values.xml new file mode 100644 index 000000000..2fd740063 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=3 l=0.15w=1 l=0.15/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl-cache.lib b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.bak b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.bak new file mode 100644 index 000000000..612d217bf --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.bak @@ -0,0 +1,336 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 68582578 +P 4000 2050 +F 0 "SC1" H 4050 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4300 2137 50 0000 R CNN +F 2 "" H 4000 550 50 0001 C CNN +F 3 "" H 4000 2050 50 0001 C CNN + 1 4000 2050 + 0 1 1 0 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 685825B9 +P 4000 2800 +F 0 "SC2" H 4050 3100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 2887 50 0000 R CNN +F 2 "" H 4000 1300 50 0001 C CNN +F 3 "" H 4000 2800 50 0001 C CNN + 1 4000 2800 + 0 -1 -1 0 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 685825F4 +P 4000 3800 +F 0 "SC3" H 4050 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 3887 50 0000 R CNN +F 2 "" H 4000 2300 50 0001 C CNN +F 3 "" H 4000 3800 50 0001 C CNN + 1 4000 3800 + 0 1 1 0 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 6858276D +P 4000 4500 +F 0 "SC4" H 4050 4800 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4300 4587 50 0000 R CNN +F 2 "" H 4000 3000 50 0001 C CNN +F 3 "" H 4000 4500 50 0001 C CNN + 1 4000 4500 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 3700 2250 3700 2600 +Wire Wire Line + 4300 2250 4300 2600 +Wire Wire Line + 4000 3100 4000 3500 +Wire Wire Line + 3700 4000 3700 4300 +Wire Wire Line + 4300 4000 4300 4300 +Wire Wire Line + 4000 1750 4000 1650 +Wire Wire Line + 4000 1650 3500 1650 +Wire Wire Line + 3500 1650 3500 4900 +Wire Wire Line + 3400 4900 4000 4900 +Wire Wire Line + 4000 4900 4000 4800 +$Comp +L CMOS_INVTR X1 +U 1 1 685828D6 +P 2500 2400 +F 0 "X1" H 2500 2400 60 0000 C CNN +F 1 "CMOS_INVTR" H 2600 2150 60 0000 C CNN +F 2 "" H 2500 2400 60 0001 C CNN +F 3 "" H 2500 2400 60 0001 C CNN + 1 2500 2400 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X4 +U 1 1 68582953 +P 5550 2400 +F 0 "X4" H 5550 2400 60 0000 C CNN +F 1 "CMOS_INVTR" H 5650 2150 60 0000 C CNN +F 2 "" H 5550 2400 60 0001 C CNN +F 3 "" H 5550 2400 60 0001 C CNN + 1 5550 2400 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X5 +U 1 1 685829C8 +P 7300 2400 +F 0 "X5" H 7300 2400 60 0000 C CNN +F 1 "CMOS_INVTR" H 7400 2150 60 0000 C CNN +F 2 "" H 7300 2400 60 0001 C CNN +F 3 "" H 7300 2400 60 0001 C CNN + 1 7300 2400 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 68582A57 +P 2500 5700 +F 0 "X2" H 2500 5700 60 0000 C CNN +F 1 "CMOS_INVTR" H 2600 5450 60 0000 C CNN +F 2 "" H 2500 5700 60 0001 C CNN +F 3 "" H 2500 5700 60 0001 C CNN + 1 2500 5700 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X3 +U 1 1 68582AF8 +P 4200 5700 +F 0 "X3" H 4200 5700 60 0000 C CNN +F 1 "CMOS_INVTR" H 4300 5450 60 0000 C CNN +F 2 "" H 4200 5700 60 0001 C CNN +F 3 "" H 4200 5700 60 0001 C CNN + 1 4200 5700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 1850 2250 1850 2000 +Wire Wire Line + 1650 2000 6650 2000 +Wire Wire Line + 6650 2000 6650 2250 +Wire Wire Line + 1850 2550 1850 2800 +Wire Wire Line + 1850 2800 6650 2800 +Wire Wire Line + 6650 2800 6650 2550 +Wire Wire Line + 4900 2550 4900 2800 +Connection ~ 4900 2800 +Wire Wire Line + 4900 2250 4900 2000 +Connection ~ 4900 2000 +Wire Wire Line + 6350 2400 6650 2400 +Wire Wire Line + 3300 2400 3700 2400 +Connection ~ 3700 2400 +Wire Wire Line + 4900 2400 4300 2400 +Connection ~ 4300 2400 +Wire Wire Line + 4000 2150 3850 2150 +Wire Wire Line + 3850 2150 3850 2000 +Connection ~ 3850 2000 +Wire Wire Line + 4000 2700 3800 2700 +Wire Wire Line + 3800 2700 3800 2800 +Connection ~ 3800 2800 +Wire Wire Line + 1850 5550 1850 3100 +Wire Wire Line + 1850 3100 1650 3100 +Wire Wire Line + 1650 3100 1650 2000 +Connection ~ 1850 2000 +Wire Wire Line + 4000 4400 4000 4500 +Wire Wire Line + 4000 4500 1850 4500 +Connection ~ 1850 4500 +Wire Wire Line + 3550 5550 3550 4500 +Connection ~ 3550 4500 +Wire Wire Line + 1850 5850 1850 6000 +Wire Wire Line + 1850 6000 3550 6000 +Wire Wire Line + 3550 6000 3550 5850 +Wire Wire Line + 2850 2800 2850 6000 +Connection ~ 2850 6000 +Connection ~ 2850 2800 +Wire Wire Line + 4000 3900 4000 3800 +Wire Wire Line + 4000 3800 3500 3800 +Connection ~ 3500 3800 +Wire Wire Line + 3300 5700 3550 5700 +Wire Wire Line + 3400 4900 3400 5700 +Connection ~ 3400 5700 +Connection ~ 3500 4900 +Wire Wire Line + 4000 3300 5000 3300 +Wire Wire Line + 5000 3300 5000 5700 +Connection ~ 4000 3300 +$Comp +L PORT U1 +U 1 1 6858317A +P 1250 2400 +F 0 "U1" H 1300 2500 30 0000 C CNN +F 1 "PORT" H 1250 2400 30 0000 C CNN +F 2 "" H 1250 2400 60 0000 C CNN +F 3 "" H 1250 2400 60 0000 C CNN + 1 1250 2400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685831F1 +P 1400 5700 +F 0 "U1" H 1450 5800 30 0000 C CNN +F 1 "PORT" H 1400 5700 30 0000 C CNN +F 2 "" H 1400 5700 60 0000 C CNN +F 3 "" H 1400 5700 60 0000 C CNN + 2 1400 5700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68583299 +P 8550 2400 +F 0 "U1" H 8600 2500 30 0000 C CNN +F 1 "PORT" H 8550 2400 30 0000 C CNN +F 2 "" H 8550 2400 60 0000 C CNN +F 3 "" H 8550 2400 60 0000 C CNN + 5 8550 2400 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 68583330 +P 6750 3050 +F 0 "U1" H 6800 3150 30 0000 C CNN +F 1 "PORT" H 6750 3050 30 0000 C CNN +F 2 "" H 6750 3050 60 0000 C CNN +F 3 "" H 6750 3050 60 0000 C CNN + 4 6750 3050 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 685833C1 +P 6200 1800 +F 0 "U1" H 6250 1900 30 0000 C CNN +F 1 "PORT" H 6200 1800 30 0000 C CNN +F 2 "" H 6200 1800 60 0000 C CNN +F 3 "" H 6200 1800 60 0000 C CNN + 3 6200 1800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 1500 2400 1850 2400 +Wire Wire Line + 6450 1800 6450 2000 +Connection ~ 6450 2000 +Wire Wire Line + 6500 3050 6500 2800 +Connection ~ 6500 2800 +Wire Wire Line + 8100 2400 8300 2400 +Wire Wire Line + 1650 5700 1850 5700 +Text Label 1550 2400 0 60 ~ 0 +clock +Text Label 1750 5700 1 60 ~ 0 +polarity +Text Label 8150 2400 0 60 ~ 0 +clock +$Comp +L SKY130mode scmode1 +U 1 1 68583B39 +P 8050 3950 +F 0 "scmode1" H 8050 4100 98 0000 C CNB +F 1 "SKY130mode" H 8050 3850 118 0000 C CNB +F 2 "" H 8050 4100 60 0001 C CNN +F 3 "" H 8050 4100 60 0001 C CNN + 1 8050 3950 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.cir b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.cir new file mode 100644 index 000000000..135a5112c --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.cir @@ -0,0 +1,34 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/TG_D_Latch_ctrl/TG_D_Latch_ctrl.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Mon Jun 23 11:40:14 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 /clock /polarity /Vdd /Gnd /Out PORT +scmode1 SKY130mode +SC5 Net-_SC10-Pad1_ Net-_SC1-Pad1_ /Vdd /Vdd sky130_fd_pr__pfet_01v8 +SC10 Net-_SC10-Pad1_ /clock /Vdd /Vdd sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ /polarity /Vdd /Vdd sky130_fd_pr__pfet_01v8 +SC13 Net-_SC13-Pad1_ Net-_SC10-Pad1_ /Vdd /Vdd sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ /polarity /Gnd /Gnd sky130_fd_pr__nfet_01v8 +SC7 Net-_SC10-Pad1_ Net-_SC1-Pad1_ Net-_SC7-Pad3_ Net-_SC7-Pad3_ sky130_fd_pr__nfet_01v8 +SC9 Net-_SC7-Pad3_ /clock /Gnd /Gnd sky130_fd_pr__nfet_01v8 +SC14 Net-_SC13-Pad1_ Net-_SC10-Pad1_ /Gnd /Gnd sky130_fd_pr__nfet_01v8 +SC6 Net-_SC12-Pad1_ Net-_SC3-Pad1_ /Vdd /Vdd sky130_fd_pr__pfet_01v8 +SC12 Net-_SC12-Pad1_ /polarity /Vdd /Vdd sky130_fd_pr__pfet_01v8 +SC3 Net-_SC3-Pad1_ /clock /Vdd /Vdd sky130_fd_pr__pfet_01v8 +SC15 Net-_SC15-Pad1_ Net-_SC12-Pad1_ /Vdd /Vdd sky130_fd_pr__pfet_01v8 +SC4 Net-_SC3-Pad1_ /clock /Gnd /Gnd sky130_fd_pr__nfet_01v8 +SC8 Net-_SC12-Pad1_ Net-_SC3-Pad1_ Net-_SC11-Pad1_ Net-_SC11-Pad1_ sky130_fd_pr__nfet_01v8 +SC11 Net-_SC11-Pad1_ /polarity /Gnd /Gnd sky130_fd_pr__nfet_01v8 +SC16 Net-_SC15-Pad1_ Net-_SC12-Pad1_ /Gnd /Gnd sky130_fd_pr__nfet_01v8 +SC18 Net-_SC18-Pad1_ Net-_SC13-Pad1_ /Vdd /Vdd sky130_fd_pr__pfet_01v8 +SC19 Net-_SC17-Pad1_ Net-_SC15-Pad1_ Net-_SC18-Pad1_ Net-_SC18-Pad1_ sky130_fd_pr__pfet_01v8 +SC21 /Out Net-_SC17-Pad1_ /Vdd /Vdd sky130_fd_pr__pfet_01v8 +SC17 Net-_SC17-Pad1_ Net-_SC13-Pad1_ /Gnd /Gnd sky130_fd_pr__nfet_01v8 +SC20 Net-_SC17-Pad1_ Net-_SC15-Pad1_ /Gnd /Gnd sky130_fd_pr__nfet_01v8 +SC22 /Out Net-_SC17-Pad1_ /Gnd /Gnd sky130_fd_pr__nfet_01v8 + +.end diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.cir.out b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.cir.out new file mode 100644 index 000000000..34cfb755f --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.cir.out @@ -0,0 +1,37 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/tg_d_latch_ctrl/tg_d_latch_ctrl.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* u1 /clock /polarity /vdd /gnd /out port +* s c m o d e +xsc5 net-_sc10-pad1_ net-_sc1-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc10 net-_sc10-pad1_ /clock /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ /polarity /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc13 net-_sc13-pad1_ net-_sc10-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ /polarity /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc7 net-_sc10-pad1_ net-_sc1-pad1_ net-_sc7-pad3_ net-_sc7-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc9 net-_sc7-pad3_ /clock /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc14 net-_sc13-pad1_ net-_sc10-pad1_ /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc12-pad1_ net-_sc3-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc12 net-_sc12-pad1_ /polarity /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc3-pad1_ /clock /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc15 net-_sc15-pad1_ net-_sc12-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc4 net-_sc3-pad1_ /clock /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc8 net-_sc12-pad1_ net-_sc3-pad1_ net-_sc11-pad1_ net-_sc11-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc11 net-_sc11-pad1_ /polarity /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc16 net-_sc15-pad1_ net-_sc12-pad1_ /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc18 net-_sc18-pad1_ net-_sc13-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc19 net-_sc17-pad1_ net-_sc15-pad1_ net-_sc18-pad1_ net-_sc18-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc21 /out net-_sc17-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc17 net-_sc17-pad1_ net-_sc13-pad1_ /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc20 net-_sc17-pad1_ net-_sc15-pad1_ /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc22 /out net-_sc17-pad1_ /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.pro b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.sch b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.sch new file mode 100644 index 000000000..faaff3081 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.sch @@ -0,0 +1,700 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:TG_D_Latch_ctrl-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L PORT U1 +U 1 1 6858317A +P 3300 2750 +F 0 "U1" H 3350 2850 30 0000 C CNN +F 1 "PORT" H 3300 2750 30 0000 C CNN +F 2 "" H 3300 2750 60 0000 C CNN +F 3 "" H 3300 2750 60 0000 C CNN + 1 3300 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685831F1 +P 1150 2200 +F 0 "U1" H 1200 2300 30 0000 C CNN +F 1 "PORT" H 1150 2200 30 0000 C CNN +F 2 "" H 1150 2200 60 0000 C CNN +F 3 "" H 1150 2200 60 0000 C CNN + 2 1150 2200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68583299 +P 8250 3550 +F 0 "U1" H 8300 3650 30 0000 C CNN +F 1 "PORT" H 8250 3550 30 0000 C CNN +F 2 "" H 8250 3550 60 0000 C CNN +F 3 "" H 8250 3550 60 0000 C CNN + 5 8250 3550 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 68583330 +P 4800 3900 +F 0 "U1" H 4850 4000 30 0000 C CNN +F 1 "PORT" H 4800 3900 30 0000 C CNN +F 2 "" H 4800 3900 60 0000 C CNN +F 3 "" H 4800 3900 60 0000 C CNN + 4 4800 3900 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 685833C1 +P 3650 1000 +F 0 "U1" H 3700 1100 30 0000 C CNN +F 1 "PORT" H 3650 1000 30 0000 C CNN +F 2 "" H 3650 1000 60 0000 C CNN +F 3 "" H 3650 1000 60 0000 C CNN + 3 3650 1000 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68583B39 +P 10650 2400 +F 0 "scmode1" H 10650 2550 98 0000 C CNB +F 1 "SKY130mode" H 10650 2300 118 0000 C CNB +F 2 "" H 10650 2550 60 0001 C CNN +F 3 "" H 10650 2550 60 0001 C CNN + 1 10650 2400 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC5 +U 1 1 6858F184 +P 2700 1750 +F 0 "SC5" H 2750 2050 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 3000 1837 50 0000 R CNN +F 2 "" H 2700 250 50 0001 C CNN +F 3 "" H 2700 1750 50 0001 C CNN + 1 2700 1750 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC10 +U 1 1 6858F1CD +P 3350 1750 +F 0 "SC10" H 3400 2050 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 3650 1837 50 0000 R CNN +F 2 "" H 3350 250 50 0001 C CNN +F 3 "" H 3350 1750 50 0001 C CNN + 1 3350 1750 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 6858F56C +P 1950 1750 +F 0 "SC1" H 2000 2050 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 2250 1837 50 0000 R CNN +F 2 "" H 1950 250 50 0001 C CNN +F 3 "" H 1950 1750 50 0001 C CNN + 1 1950 1750 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC13 +U 1 1 6858F728 +P 4300 1750 +F 0 "SC13" H 4350 2050 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4600 1837 50 0000 R CNN +F 2 "" H 4300 250 50 0001 C CNN +F 3 "" H 4300 1750 50 0001 C CNN + 1 4300 1750 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 6858F78D +P 1950 2600 +F 0 "SC2" H 2000 2900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 2250 2687 50 0000 R CNN +F 2 "" H 1950 1100 50 0001 C CNN +F 3 "" H 1950 2600 50 0001 C CNN + 1 1950 2600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC7 +U 1 1 6858F7FC +P 2850 2600 +F 0 "SC7" H 2900 2900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3150 2687 50 0000 R CNN +F 2 "" H 2850 1100 50 0001 C CNN +F 3 "" H 2850 2600 50 0001 C CNN + 1 2850 2600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC9 +U 1 1 6858F96B +P 3250 3350 +F 0 "SC9" H 3300 3650 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3550 3437 50 0000 R CNN +F 2 "" H 3250 1850 50 0001 C CNN +F 3 "" H 3250 3350 50 0001 C CNN + 1 3250 3350 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC14 +U 1 1 6858FADD +P 4300 2550 +F 0 "SC14" H 4350 2850 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4600 2637 50 0000 R CNN +F 2 "" H 4300 1050 50 0001 C CNN +F 3 "" H 4300 2550 50 0001 C CNN + 1 4300 2550 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC6 +U 1 1 68590EC2 +P 2800 5000 +F 0 "SC6" H 2850 5300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 3100 5087 50 0000 R CNN +F 2 "" H 2800 3500 50 0001 C CNN +F 3 "" H 2800 5000 50 0001 C CNN + 1 2800 5000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC12 +U 1 1 68590EC9 +P 3450 5000 +F 0 "SC12" H 3500 5300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 3750 5087 50 0000 R CNN +F 2 "" H 3450 3500 50 0001 C CNN +F 3 "" H 3450 5000 50 0001 C CNN + 1 3450 5000 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 68590ED0 +P 2050 5000 +F 0 "SC3" H 2100 5300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 2350 5087 50 0000 R CNN +F 2 "" H 2050 3500 50 0001 C CNN +F 3 "" H 2050 5000 50 0001 C CNN + 1 2050 5000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC15 +U 1 1 68590ED7 +P 4400 5000 +F 0 "SC15" H 4450 5300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4700 5087 50 0000 R CNN +F 2 "" H 4400 3500 50 0001 C CNN +F 3 "" H 4400 5000 50 0001 C CNN + 1 4400 5000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 68590EDE +P 2050 5850 +F 0 "SC4" H 2100 6150 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 2350 5937 50 0000 R CNN +F 2 "" H 2050 4350 50 0001 C CNN +F 3 "" H 2050 5850 50 0001 C CNN + 1 2050 5850 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC8 +U 1 1 68590EE5 +P 2950 5850 +F 0 "SC8" H 3000 6150 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3250 5937 50 0000 R CNN +F 2 "" H 2950 4350 50 0001 C CNN +F 3 "" H 2950 5850 50 0001 C CNN + 1 2950 5850 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC11 +U 1 1 68590EEC +P 3350 6600 +F 0 "SC11" H 3400 6900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3650 6687 50 0000 R CNN +F 2 "" H 3350 5100 50 0001 C CNN +F 3 "" H 3350 6600 50 0001 C CNN + 1 3350 6600 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC16 +U 1 1 68590EF3 +P 4400 5800 +F 0 "SC16" H 4450 6100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4700 5887 50 0000 R CNN +F 2 "" H 4400 4300 50 0001 C CNN +F 3 "" H 4400 5800 50 0001 C CNN + 1 4400 5800 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC18 +U 1 1 6859119B +P 6150 2500 +F 0 "SC18" H 6200 2800 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6450 2587 50 0000 R CNN +F 2 "" H 6150 1000 50 0001 C CNN +F 3 "" H 6150 2500 50 0001 C CNN + 1 6150 2500 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC19 +U 1 1 68591314 +P 6550 3200 +F 0 "SC19" H 6600 3500 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6850 3287 50 0000 R CNN +F 2 "" H 6550 1700 50 0001 C CNN +F 3 "" H 6550 3200 50 0001 C CNN + 1 6550 3200 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC21 +U 1 1 68591481 +P 7700 3200 +F 0 "SC21" H 7750 3500 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 8000 3287 50 0000 R CNN +F 2 "" H 7700 1700 50 0001 C CNN +F 3 "" H 7700 3200 50 0001 C CNN + 1 7700 3200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC17 +U 1 1 6859153C +P 6000 3950 +F 0 "SC17" H 6050 4250 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6300 4037 50 0000 R CNN +F 2 "" H 6000 2450 50 0001 C CNN +F 3 "" H 6000 3950 50 0001 C CNN + 1 6000 3950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC20 +U 1 1 685918B6 +P 6700 3950 +F 0 "SC20" H 6750 4250 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 7000 4037 50 0000 R CNN +F 2 "" H 6700 2450 50 0001 C CNN +F 3 "" H 6700 3950 50 0001 C CNN + 1 6700 3950 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC22 +U 1 1 6859198A +P 7700 3950 +F 0 "SC22" H 7750 4250 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 8000 4037 50 0000 R CNN +F 2 "" H 7700 2450 50 0001 C CNN +F 3 "" H 7700 3950 50 0001 C CNN + 1 7700 3950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2150 1450 2150 1350 +Wire Wire Line + 2150 1350 5550 1350 +Wire Wire Line + 4500 1350 4500 1450 +Wire Wire Line + 2900 1450 2900 1350 +Connection ~ 2900 1350 +Wire Wire Line + 3150 1450 3150 1350 +Connection ~ 3150 1350 +Wire Wire Line + 2800 1750 2950 1750 +Wire Wire Line + 2950 1750 2950 1350 +Connection ~ 2950 1350 +Wire Wire Line + 3250 1750 3100 1750 +Wire Wire Line + 3100 1750 3100 1350 +Connection ~ 3100 1350 +Wire Wire Line + 2050 1750 2200 1750 +Wire Wire Line + 2200 1750 2200 1350 +Connection ~ 2200 1350 +Wire Wire Line + 4400 1750 4550 1750 +Wire Wire Line + 4550 1750 4550 1350 +Connection ~ 4500 1350 +Wire Wire Line + 2900 2050 3150 2050 +Wire Wire Line + 3050 2300 3050 2050 +Connection ~ 3050 2050 +Wire Wire Line + 2150 2050 2150 2300 +Wire Wire Line + 2400 1750 2400 2600 +Wire Wire Line + 2400 2600 2550 2600 +Wire Wire Line + 2150 2200 2400 2200 +Connection ~ 2400 2200 +Connection ~ 2150 2200 +Wire Wire Line + 3650 1750 3650 3350 +Wire Wire Line + 3650 3350 3550 3350 +Wire Wire Line + 3050 2900 3050 3050 +Wire Wire Line + 2950 2600 3100 2600 +Wire Wire Line + 3100 2600 3100 2950 +Wire Wire Line + 3100 2950 3050 2950 +Connection ~ 3050 2950 +Wire Wire Line + 3150 3350 3000 3350 +Wire Wire Line + 3000 3350 3000 3700 +Wire Wire Line + 2200 3700 5500 3700 +Wire Wire Line + 3050 3700 3050 3650 +Wire Wire Line + 4000 1750 4000 2550 +Wire Wire Line + 3050 2150 4000 2150 +Connection ~ 4000 2150 +Connection ~ 3050 2150 +Wire Wire Line + 4500 2050 4500 2250 +Wire Wire Line + 1650 1750 1650 2600 +Wire Wire Line + 4400 2550 4550 2550 +Wire Wire Line + 4550 2550 4550 3900 +Wire Wire Line + 4550 2850 4500 2850 +Wire Wire Line + 2050 2600 2200 2600 +Wire Wire Line + 2200 2600 2200 3700 +Wire Wire Line + 2200 2900 2150 2900 +Wire Wire Line + 2250 4700 2250 4600 +Wire Wire Line + 2250 4600 4650 4600 +Wire Wire Line + 4600 4600 4600 4700 +Wire Wire Line + 3000 4700 3000 4600 +Connection ~ 3000 4600 +Wire Wire Line + 3250 4700 3250 4600 +Connection ~ 3250 4600 +Wire Wire Line + 2900 5000 3050 5000 +Wire Wire Line + 3050 5000 3050 4600 +Connection ~ 3050 4600 +Wire Wire Line + 3350 5000 3200 5000 +Wire Wire Line + 3200 5000 3200 4600 +Connection ~ 3200 4600 +Wire Wire Line + 2150 5000 2300 5000 +Wire Wire Line + 2300 5000 2300 4600 +Connection ~ 2300 4600 +Wire Wire Line + 4500 5000 4650 5000 +Wire Wire Line + 4650 5000 4650 4600 +Connection ~ 4600 4600 +Wire Wire Line + 3000 5300 3250 5300 +Wire Wire Line + 3150 5550 3150 5300 +Connection ~ 3150 5300 +Wire Wire Line + 2250 5300 2250 5550 +Wire Wire Line + 2500 5000 2500 5850 +Wire Wire Line + 2500 5850 2650 5850 +Wire Wire Line + 2250 5450 2500 5450 +Connection ~ 2500 5450 +Connection ~ 2250 5450 +Wire Wire Line + 3750 5000 3750 6600 +Wire Wire Line + 3750 6600 3650 6600 +Wire Wire Line + 3150 6150 3150 6300 +Wire Wire Line + 3050 5850 3200 5850 +Wire Wire Line + 3200 5850 3200 6200 +Wire Wire Line + 3200 6200 3150 6200 +Connection ~ 3150 6200 +Wire Wire Line + 3250 6600 3100 6600 +Wire Wire Line + 3100 6600 3100 6950 +Wire Wire Line + 4650 6950 2300 6950 +Wire Wire Line + 3150 6950 3150 6900 +Wire Wire Line + 4100 5000 4100 5800 +Wire Wire Line + 3150 5400 4100 5400 +Connection ~ 4100 5400 +Connection ~ 3150 5400 +Wire Wire Line + 4600 5300 4600 5500 +Wire Wire Line + 1750 5000 1750 5850 +Wire Wire Line + 4500 5800 4650 5800 +Wire Wire Line + 4650 5800 4650 6950 +Wire Wire Line + 4650 6100 4600 6100 +Wire Wire Line + 2150 5850 2300 5850 +Wire Wire Line + 2300 5850 2300 6950 +Wire Wire Line + 2300 6150 2250 6150 +Wire Wire Line + 6350 2800 6350 2900 +Wire Wire Line + 6350 2200 7900 2200 +Wire Wire Line + 7900 2200 7900 2900 +Wire Wire Line + 6250 2500 6400 2500 +Wire Wire Line + 6400 2500 6400 2200 +Connection ~ 6400 2200 +Wire Wire Line + 7800 3200 7950 3200 +Wire Wire Line + 7950 3200 7950 2800 +Wire Wire Line + 7950 2800 7900 2800 +Connection ~ 7900 2800 +Wire Wire Line + 6200 3650 6500 3650 +Wire Wire Line + 6350 3500 6350 3650 +Connection ~ 6350 3650 +Wire Wire Line + 7400 3200 7400 3950 +Wire Wire Line + 6350 3600 7400 3600 +Connection ~ 7400 3600 +Connection ~ 6350 3600 +Wire Wire Line + 7900 3500 7900 3650 +Wire Wire Line + 6200 4250 6200 4300 +Wire Wire Line + 5500 4300 8000 4300 +Wire Wire Line + 7900 4300 7900 4250 +Wire Wire Line + 6500 4250 6500 4300 +Connection ~ 6500 4300 +Wire Wire Line + 6600 3950 6450 3950 +Wire Wire Line + 6450 3950 6450 4300 +Connection ~ 6450 4300 +Wire Wire Line + 6100 3950 6250 3950 +Wire Wire Line + 6250 3950 6250 4300 +Connection ~ 6250 4300 +Wire Wire Line + 6850 3200 7000 3200 +Wire Wire Line + 7000 3200 7000 3950 +Wire Wire Line + 5850 2500 5700 2500 +Wire Wire Line + 5700 2500 5700 3950 +Wire Wire Line + 6450 3200 6300 3200 +Wire Wire Line + 6300 3200 6300 2850 +Wire Wire Line + 6300 2850 6350 2850 +Connection ~ 6350 2850 +Wire Wire Line + 3550 2750 3900 2750 +Connection ~ 3650 2750 +Wire Wire Line + 3900 2750 3900 4350 +Wire Wire Line + 3900 4350 1650 4350 +Wire Wire Line + 1650 4350 1650 5450 +Wire Wire Line + 1650 5450 1750 5450 +Connection ~ 1750 5450 +Wire Wire Line + 1400 2200 1650 2200 +Connection ~ 1650 2200 +Wire Wire Line + 1500 2200 1500 4250 +Wire Wire Line + 1500 4250 3850 4250 +Wire Wire Line + 3850 4250 3850 5700 +Wire Wire Line + 3850 5700 3750 5700 +Connection ~ 3750 5700 +Connection ~ 1500 2200 +Wire Wire Line + 4500 2150 5700 2150 +Wire Wire Line + 5700 2150 5700 2550 +Connection ~ 5700 2550 +Connection ~ 4500 2150 +Wire Wire Line + 4600 5400 7100 5400 +Wire Wire Line + 7100 5400 7100 3700 +Wire Wire Line + 7100 3700 7000 3700 +Connection ~ 7000 3700 +Connection ~ 4600 5400 +Wire Wire Line + 4350 4600 4350 3450 +Wire Wire Line + 4350 3450 5550 3450 +Wire Wire Line + 5550 3450 5550 1350 +Wire Wire Line + 5550 1950 7050 1950 +Wire Wire Line + 7050 1950 7050 2200 +Connection ~ 7050 2200 +Connection ~ 4350 4600 +Connection ~ 5550 1950 +Connection ~ 4550 1350 +Wire Wire Line + 3900 1000 3900 1350 +Connection ~ 3900 1350 +Connection ~ 3000 3700 +Connection ~ 2200 2900 +Connection ~ 3050 3700 +Connection ~ 4550 2850 +Wire Wire Line + 5500 3700 5500 6200 +Connection ~ 6200 4300 +Connection ~ 4550 3700 +Connection ~ 3100 6950 +Connection ~ 2300 6150 +Connection ~ 3150 6950 +Connection ~ 4650 6100 +Wire Wire Line + 5500 6200 4650 6200 +Connection ~ 4650 6200 +Connection ~ 5500 4300 +Wire Wire Line + 8000 3550 7900 3550 +Connection ~ 7900 3550 +Text Label 3650 2750 0 60 ~ 0 +clock +Text Label 1500 2200 0 60 ~ 0 +polarity +Text Label 3900 1350 0 60 ~ 0 +Vdd +Text Label 4550 3700 0 60 ~ 0 +Gnd +Text Label 7900 3550 2 60 ~ 0 +Out +Wire Wire Line + 7800 3950 8000 3950 +Wire Wire Line + 8000 3950 8000 4300 +Connection ~ 7900 4300 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.sub b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.sub new file mode 100644 index 000000000..f359cdf7c --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl.sub @@ -0,0 +1,31 @@ +* Subcircuit TG_D_Latch_ctrl +.subckt TG_D_Latch_ctrl /clock /polarity /vdd /gnd /out +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/tg_d_latch_ctrl/tg_d_latch_ctrl.cir +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* s c m o d e +xsc5 net-_sc10-pad1_ net-_sc1-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc10 net-_sc10-pad1_ /clock /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ /polarity /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc13 net-_sc13-pad1_ net-_sc10-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ /polarity /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc7 net-_sc10-pad1_ net-_sc1-pad1_ net-_sc7-pad3_ net-_sc7-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc9 net-_sc7-pad3_ /clock /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc14 net-_sc13-pad1_ net-_sc10-pad1_ /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc12-pad1_ net-_sc3-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc12 net-_sc12-pad1_ /polarity /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc3-pad1_ /clock /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc15 net-_sc15-pad1_ net-_sc12-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc4 net-_sc3-pad1_ /clock /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc8 net-_sc12-pad1_ net-_sc3-pad1_ net-_sc11-pad1_ net-_sc11-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc11 net-_sc11-pad1_ /polarity /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc16 net-_sc15-pad1_ net-_sc12-pad1_ /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc18 net-_sc18-pad1_ net-_sc13-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc19 net-_sc17-pad1_ net-_sc15-pad1_ net-_sc18-pad1_ net-_sc18-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc21 /out net-_sc17-pad1_ /vdd /vdd sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc17 net-_sc17-pad1_ net-_sc13-pad1_ /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc20 net-_sc17-pad1_ net-_sc15-pad1_ /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc22 /out net-_sc17-pad1_ /gnd /gnd sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* Control Statements + +.ends TG_D_Latch_ctrl diff --git a/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl_Previous_Values.xml b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl_Previous_Values.xml new file mode 100644 index 000000000..cb5bd44f4 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/TG_D_Latch_ctrl_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4042B/analysis b/library/SubcircuitLibrary/CD4042B/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/CD4042B/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4044BMS/CD4044BMS-cache.lib b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS-cache.lib new file mode 100644 index 000000000..d9cac1d73 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS-cache.lib @@ -0,0 +1,74 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# SR_Latch_with_Enable +# +DEF SR_Latch_with_Enable X 0 40 Y Y 1 F N +F0 "X" 0 -100 60 H V C CNN +F1 "SR_Latch_with_Enable" 0 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -700 200 700 -250 0 1 0 N +X Vdd 1 150 400 200 D 50 50 1 1 I +X E 2 -900 0 200 R 50 50 1 1 I +X Gnd 3 150 -450 200 U 50 50 1 1 I +X S 4 -900 100 200 R 50 50 1 1 I +X R 5 -900 -100 200 R 50 50 1 1 I +X Q 6 900 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.bak b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.bak new file mode 100644 index 000000000..9f31ea680 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.bak @@ -0,0 +1,347 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SR_Latch_with_Enable X1 +U 1 1 684D0CC7 +P 4800 2250 +F 0 "X1" H 4800 2150 60 0000 C CNN +F 1 "SR_Latch_with_Enable" H 4800 2250 60 0000 C CNN +F 2 "" H 4800 2250 60 0001 C CNN +F 3 "" H 4800 2250 60 0001 C CNN + 1 4800 2250 + 1 0 0 -1 +$EndComp +$Comp +L SR_Latch_with_Enable X3 +U 1 1 684D0D13 +P 4900 3350 +F 0 "X3" H 4900 3250 60 0000 C CNN +F 1 "SR_Latch_with_Enable" H 4900 3350 60 0000 C CNN +F 2 "" H 4900 3350 60 0001 C CNN +F 3 "" H 4900 3350 60 0001 C CNN + 1 4900 3350 + 1 0 0 -1 +$EndComp +$Comp +L SR_Latch_with_Enable X2 +U 1 1 684D0E52 +P 4800 4400 +F 0 "X2" H 4800 4300 60 0000 C CNN +F 1 "SR_Latch_with_Enable" H 4800 4400 60 0000 C CNN +F 2 "" H 4800 4400 60 0001 C CNN +F 3 "" H 4800 4400 60 0001 C CNN + 1 4800 4400 + 1 0 0 -1 +$EndComp +$Comp +L SR_Latch_with_Enable X4 +U 1 1 684D0EC6 +P 4900 5450 +F 0 "X4" H 4900 5350 60 0000 C CNN +F 1 "SR_Latch_with_Enable" H 4900 5450 60 0000 C CNN +F 2 "" H 4900 5450 60 0001 C CNN +F 3 "" H 4900 5450 60 0001 C CNN + 1 4900 5450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4950 1850 4950 1800 +Wire Wire Line + 4800 1800 5250 1800 +Wire Wire Line + 4950 4000 5250 4000 +Wire Wire Line + 5050 5050 5250 5050 +Wire Wire Line + 5250 5050 5250 1800 +Wire Wire Line + 4950 2700 4850 2700 +Wire Wire Line + 4850 2700 4850 5900 +Wire Wire Line + 4750 5900 5050 5900 +Wire Wire Line + 5050 2950 5250 2950 +Connection ~ 5250 2950 +Connection ~ 5250 4000 +Wire Wire Line + 5050 3800 4850 3800 +Connection ~ 4850 3800 +Wire Wire Line + 4950 4850 4850 4850 +Connection ~ 4850 4850 +Wire Wire Line + 3500 2250 3900 2250 +Wire Wire Line + 3750 2250 3750 5450 +Wire Wire Line + 3750 5450 4000 5450 +Wire Wire Line + 4000 3350 3750 3350 +Connection ~ 3750 3350 +Wire Wire Line + 3900 4400 3750 4400 +Connection ~ 3750 4400 +$Comp +L PORT U1 +U 1 1 684D11E5 +P 3250 2100 +F 0 "U1" H 3300 2200 30 0000 C CNN +F 1 "PORT" H 3250 2100 30 0000 C CNN +F 2 "" H 3250 2100 60 0000 C CNN +F 3 "" H 3250 2100 60 0000 C CNN + 1 3250 2100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684D127E +P 3250 2250 +F 0 "U1" H 3300 2350 30 0000 C CNN +F 1 "PORT" H 3250 2250 30 0000 C CNN +F 2 "" H 3250 2250 60 0000 C CNN +F 3 "" H 3250 2250 60 0000 C CNN + 2 3250 2250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684D12F5 +P 3250 2400 +F 0 "U1" H 3300 2500 30 0000 C CNN +F 1 "PORT" H 3250 2400 30 0000 C CNN +F 2 "" H 3250 2400 60 0000 C CNN +F 3 "" H 3250 2400 60 0000 C CNN + 3 3250 2400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684D137C +P 3250 3250 +F 0 "U1" H 3300 3350 30 0000 C CNN +F 1 "PORT" H 3250 3250 30 0000 C CNN +F 2 "" H 3250 3250 60 0000 C CNN +F 3 "" H 3250 3250 60 0000 C CNN + 4 3250 3250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684D13ED +P 3250 3500 +F 0 "U1" H 3300 3600 30 0000 C CNN +F 1 "PORT" H 3250 3500 30 0000 C CNN +F 2 "" H 3250 3500 60 0000 C CNN +F 3 "" H 3250 3500 60 0000 C CNN + 5 3250 3500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684D146A +P 3250 4300 +F 0 "U1" H 3300 4400 30 0000 C CNN +F 1 "PORT" H 3250 4300 30 0000 C CNN +F 2 "" H 3250 4300 60 0000 C CNN +F 3 "" H 3250 4300 60 0000 C CNN + 6 3250 4300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 684D14DB +P 3250 4500 +F 0 "U1" H 3300 4600 30 0000 C CNN +F 1 "PORT" H 3250 4500 30 0000 C CNN +F 2 "" H 3250 4500 60 0000 C CNN +F 3 "" H 3250 4500 60 0000 C CNN + 7 3250 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 684D1556 +P 3250 5350 +F 0 "U1" H 3300 5450 30 0000 C CNN +F 1 "PORT" H 3250 5350 30 0000 C CNN +F 2 "" H 3250 5350 60 0000 C CNN +F 3 "" H 3250 5350 60 0000 C CNN + 8 3250 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 684D15BD +P 3250 5550 +F 0 "U1" H 3300 5650 30 0000 C CNN +F 1 "PORT" H 3250 5550 30 0000 C CNN +F 2 "" H 3250 5550 60 0000 C CNN +F 3 "" H 3250 5550 60 0000 C CNN + 9 3250 5550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 684D1863 +P 4550 1800 +F 0 "U1" H 4600 1900 30 0000 C CNN +F 1 "PORT" H 4550 1800 30 0000 C CNN +F 2 "" H 4550 1800 60 0000 C CNN +F 3 "" H 4550 1800 60 0000 C CNN + 11 4550 1800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 684D1972 +P 4500 5900 +F 0 "U1" H 4550 6000 30 0000 C CNN +F 1 "PORT" H 4500 5900 30 0000 C CNN +F 2 "" H 4500 5900 60 0000 C CNN +F 3 "" H 4500 5900 60 0000 C CNN + 10 4500 5900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 684D1A91 +P 6050 2250 +F 0 "U1" H 6100 2350 30 0000 C CNN +F 1 "PORT" H 6050 2250 30 0000 C CNN +F 2 "" H 6050 2250 60 0000 C CNN +F 3 "" H 6050 2250 60 0000 C CNN + 12 6050 2250 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 684D1B2C +P 6150 3350 +F 0 "U1" H 6200 3450 30 0000 C CNN +F 1 "PORT" H 6150 3350 30 0000 C CNN +F 2 "" H 6150 3350 60 0000 C CNN +F 3 "" H 6150 3350 60 0000 C CNN + 14 6150 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 684D1BE9 +P 6100 4400 +F 0 "U1" H 6150 4500 30 0000 C CNN +F 1 "PORT" H 6100 4400 30 0000 C CNN +F 2 "" H 6100 4400 60 0000 C CNN +F 3 "" H 6100 4400 60 0000 C CNN + 13 6100 4400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 684D1C9A +P 6200 5450 +F 0 "U1" H 6250 5550 30 0000 C CNN +F 1 "PORT" H 6200 5450 30 0000 C CNN +F 2 "" H 6200 5450 60 0000 C CNN +F 3 "" H 6200 5450 60 0000 C CNN + 15 6200 5450 + -1 0 0 -1 +$EndComp +Wire Wire Line + 3500 2100 3900 2100 +Wire Wire Line + 3900 2100 3900 2150 +Connection ~ 3750 2250 +Wire Wire Line + 3500 2400 3900 2400 +Wire Wire Line + 3900 2400 3900 2350 +Wire Wire Line + 3500 3250 4000 3250 +Wire Wire Line + 3500 3500 4000 3500 +Wire Wire Line + 4000 3500 4000 3450 +Wire Wire Line + 3500 4300 3900 4300 +Wire Wire Line + 3500 4500 3900 4500 +Wire Wire Line + 3500 5350 4000 5350 +Wire Wire Line + 3500 5550 4000 5550 +Connection ~ 4850 5900 +Connection ~ 4950 1800 +Wire Wire Line + 5700 2250 5800 2250 +Wire Wire Line + 5800 3350 5900 3350 +Wire Wire Line + 5700 4400 5850 4400 +Wire Wire Line + 5800 5450 5950 5450 +$Comp +L SKY130mode scmode1 +U 1 1 684D28ED +P 9050 3000 +F 0 "scmode1" H 9050 3150 98 0000 C CNB +F 1 "SKY130mode" H 9050 2900 118 0000 C CNB +F 2 "" H 9050 3150 60 0001 C CNN +F 3 "" H 9050 3150 60 0001 C CNN + 1 9050 3000 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.cir b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.cir new file mode 100644 index 000000000..9c554bbff --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 11:29:04 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad11_ Net-_U1-Pad2_ Net-_U1-Pad10_ Net-_U1-Pad1_ Net-_U1-Pad3_ Net-_U1-Pad12_ SR_Latch_with_Enable +X3 Net-_U1-Pad11_ Net-_U1-Pad2_ Net-_U1-Pad10_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad14_ SR_Latch_with_Enable +X2 Net-_U1-Pad11_ Net-_U1-Pad2_ Net-_U1-Pad10_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad13_ SR_Latch_with_Enable +X4 Net-_U1-Pad11_ Net-_U1-Pad2_ Net-_U1-Pad10_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad15_ SR_Latch_with_Enable +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.cir.out b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.cir.out new file mode 100644 index 000000000..82478ce73 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.cir.out @@ -0,0 +1,20 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cd4044bms/cd4044bms.cir + +.include SR_Latch_with_Enable.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad11_ net-_u1-pad2_ net-_u1-pad10_ net-_u1-pad1_ net-_u1-pad3_ net-_u1-pad12_ SR_Latch_with_Enable +x3 net-_u1-pad11_ net-_u1-pad2_ net-_u1-pad10_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad14_ SR_Latch_with_Enable +x2 net-_u1-pad11_ net-_u1-pad2_ net-_u1-pad10_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad13_ SR_Latch_with_Enable +x4 net-_u1-pad11_ net-_u1-pad2_ net-_u1-pad10_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad15_ SR_Latch_with_Enable +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.pro b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.sch b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.sch new file mode 100644 index 000000000..0ffe75c0f --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.sch @@ -0,0 +1,348 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:CD4044BMS-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SR_Latch_with_Enable X1 +U 1 1 684D0CC7 +P 4800 2250 +F 0 "X1" H 4800 2150 60 0000 C CNN +F 1 "SR_Latch_with_Enable" H 4800 2250 60 0000 C CNN +F 2 "" H 4800 2250 60 0001 C CNN +F 3 "" H 4800 2250 60 0001 C CNN + 1 4800 2250 + 1 0 0 -1 +$EndComp +$Comp +L SR_Latch_with_Enable X3 +U 1 1 684D0D13 +P 4900 3350 +F 0 "X3" H 4900 3250 60 0000 C CNN +F 1 "SR_Latch_with_Enable" H 4900 3350 60 0000 C CNN +F 2 "" H 4900 3350 60 0001 C CNN +F 3 "" H 4900 3350 60 0001 C CNN + 1 4900 3350 + 1 0 0 -1 +$EndComp +$Comp +L SR_Latch_with_Enable X2 +U 1 1 684D0E52 +P 4800 4400 +F 0 "X2" H 4800 4300 60 0000 C CNN +F 1 "SR_Latch_with_Enable" H 4800 4400 60 0000 C CNN +F 2 "" H 4800 4400 60 0001 C CNN +F 3 "" H 4800 4400 60 0001 C CNN + 1 4800 4400 + 1 0 0 -1 +$EndComp +$Comp +L SR_Latch_with_Enable X4 +U 1 1 684D0EC6 +P 4900 5450 +F 0 "X4" H 4900 5350 60 0000 C CNN +F 1 "SR_Latch_with_Enable" H 4900 5450 60 0000 C CNN +F 2 "" H 4900 5450 60 0001 C CNN +F 3 "" H 4900 5450 60 0001 C CNN + 1 4900 5450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4950 1850 4950 1800 +Wire Wire Line + 4800 1800 5250 1800 +Wire Wire Line + 4950 4000 5250 4000 +Wire Wire Line + 5050 5050 5250 5050 +Wire Wire Line + 5250 5050 5250 1800 +Wire Wire Line + 4950 2700 4850 2700 +Wire Wire Line + 4850 2700 4850 5900 +Wire Wire Line + 4750 5900 5050 5900 +Wire Wire Line + 5050 2950 5250 2950 +Connection ~ 5250 2950 +Connection ~ 5250 4000 +Wire Wire Line + 5050 3800 4850 3800 +Connection ~ 4850 3800 +Wire Wire Line + 4950 4850 4850 4850 +Connection ~ 4850 4850 +Wire Wire Line + 3500 2250 3900 2250 +Wire Wire Line + 3750 2250 3750 5450 +Wire Wire Line + 3750 5450 4000 5450 +Wire Wire Line + 4000 3350 3750 3350 +Connection ~ 3750 3350 +Wire Wire Line + 3900 4400 3750 4400 +Connection ~ 3750 4400 +$Comp +L PORT U1 +U 1 1 684D11E5 +P 3250 2100 +F 0 "U1" H 3300 2200 30 0000 C CNN +F 1 "PORT" H 3250 2100 30 0000 C CNN +F 2 "" H 3250 2100 60 0000 C CNN +F 3 "" H 3250 2100 60 0000 C CNN + 1 3250 2100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684D127E +P 3250 2250 +F 0 "U1" H 3300 2350 30 0000 C CNN +F 1 "PORT" H 3250 2250 30 0000 C CNN +F 2 "" H 3250 2250 60 0000 C CNN +F 3 "" H 3250 2250 60 0000 C CNN + 2 3250 2250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684D12F5 +P 3250 2400 +F 0 "U1" H 3300 2500 30 0000 C CNN +F 1 "PORT" H 3250 2400 30 0000 C CNN +F 2 "" H 3250 2400 60 0000 C CNN +F 3 "" H 3250 2400 60 0000 C CNN + 3 3250 2400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684D137C +P 3250 3250 +F 0 "U1" H 3300 3350 30 0000 C CNN +F 1 "PORT" H 3250 3250 30 0000 C CNN +F 2 "" H 3250 3250 60 0000 C CNN +F 3 "" H 3250 3250 60 0000 C CNN + 4 3250 3250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684D13ED +P 3250 3500 +F 0 "U1" H 3300 3600 30 0000 C CNN +F 1 "PORT" H 3250 3500 30 0000 C CNN +F 2 "" H 3250 3500 60 0000 C CNN +F 3 "" H 3250 3500 60 0000 C CNN + 5 3250 3500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684D146A +P 3250 4300 +F 0 "U1" H 3300 4400 30 0000 C CNN +F 1 "PORT" H 3250 4300 30 0000 C CNN +F 2 "" H 3250 4300 60 0000 C CNN +F 3 "" H 3250 4300 60 0000 C CNN + 6 3250 4300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 684D14DB +P 3250 4500 +F 0 "U1" H 3300 4600 30 0000 C CNN +F 1 "PORT" H 3250 4500 30 0000 C CNN +F 2 "" H 3250 4500 60 0000 C CNN +F 3 "" H 3250 4500 60 0000 C CNN + 7 3250 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 684D1556 +P 3250 5350 +F 0 "U1" H 3300 5450 30 0000 C CNN +F 1 "PORT" H 3250 5350 30 0000 C CNN +F 2 "" H 3250 5350 60 0000 C CNN +F 3 "" H 3250 5350 60 0000 C CNN + 8 3250 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 684D15BD +P 3250 5550 +F 0 "U1" H 3300 5650 30 0000 C CNN +F 1 "PORT" H 3250 5550 30 0000 C CNN +F 2 "" H 3250 5550 60 0000 C CNN +F 3 "" H 3250 5550 60 0000 C CNN + 9 3250 5550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 684D1863 +P 4550 1800 +F 0 "U1" H 4600 1900 30 0000 C CNN +F 1 "PORT" H 4550 1800 30 0000 C CNN +F 2 "" H 4550 1800 60 0000 C CNN +F 3 "" H 4550 1800 60 0000 C CNN + 11 4550 1800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 684D1972 +P 4500 5900 +F 0 "U1" H 4550 6000 30 0000 C CNN +F 1 "PORT" H 4500 5900 30 0000 C CNN +F 2 "" H 4500 5900 60 0000 C CNN +F 3 "" H 4500 5900 60 0000 C CNN + 10 4500 5900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 684D1A91 +P 6050 2250 +F 0 "U1" H 6100 2350 30 0000 C CNN +F 1 "PORT" H 6050 2250 30 0000 C CNN +F 2 "" H 6050 2250 60 0000 C CNN +F 3 "" H 6050 2250 60 0000 C CNN + 12 6050 2250 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 684D1B2C +P 6150 3350 +F 0 "U1" H 6200 3450 30 0000 C CNN +F 1 "PORT" H 6150 3350 30 0000 C CNN +F 2 "" H 6150 3350 60 0000 C CNN +F 3 "" H 6150 3350 60 0000 C CNN + 14 6150 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 684D1BE9 +P 6100 4400 +F 0 "U1" H 6150 4500 30 0000 C CNN +F 1 "PORT" H 6100 4400 30 0000 C CNN +F 2 "" H 6100 4400 60 0000 C CNN +F 3 "" H 6100 4400 60 0000 C CNN + 13 6100 4400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 684D1C9A +P 6200 5450 +F 0 "U1" H 6250 5550 30 0000 C CNN +F 1 "PORT" H 6200 5450 30 0000 C CNN +F 2 "" H 6200 5450 60 0000 C CNN +F 3 "" H 6200 5450 60 0000 C CNN + 15 6200 5450 + -1 0 0 -1 +$EndComp +Wire Wire Line + 3500 2100 3900 2100 +Wire Wire Line + 3900 2100 3900 2150 +Connection ~ 3750 2250 +Wire Wire Line + 3500 2400 3900 2400 +Wire Wire Line + 3900 2400 3900 2350 +Wire Wire Line + 3500 3250 4000 3250 +Wire Wire Line + 3500 3500 4000 3500 +Wire Wire Line + 4000 3500 4000 3450 +Wire Wire Line + 3500 4300 3900 4300 +Wire Wire Line + 3500 4500 3900 4500 +Wire Wire Line + 3500 5350 4000 5350 +Wire Wire Line + 3500 5550 4000 5550 +Connection ~ 4850 5900 +Connection ~ 4950 1800 +Wire Wire Line + 5700 2250 5800 2250 +Wire Wire Line + 5800 3350 5900 3350 +Wire Wire Line + 5700 4400 5850 4400 +Wire Wire Line + 5800 5450 5950 5450 +$Comp +L SKY130mode scmode1 +U 1 1 684D28ED +P 6950 3850 +F 0 "scmode1" H 6950 4000 98 0000 C CNB +F 1 "SKY130mode" H 6950 3750 118 0000 C CNB +F 2 "" H 6950 4000 60 0001 C CNN +F 3 "" H 6950 4000 60 0001 C CNN + 1 6950 3850 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.sub b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.sub new file mode 100644 index 000000000..a7ff0dd0d --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS.sub @@ -0,0 +1,14 @@ +* Subcircuit CD4044BMS +.subckt CD4044BMS net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cd4044bms/cd4044bms.cir +.include SR_Latch_with_Enable.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad11_ net-_u1-pad2_ net-_u1-pad10_ net-_u1-pad1_ net-_u1-pad3_ net-_u1-pad12_ SR_Latch_with_Enable +x3 net-_u1-pad11_ net-_u1-pad2_ net-_u1-pad10_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad14_ SR_Latch_with_Enable +x2 net-_u1-pad11_ net-_u1-pad2_ net-_u1-pad10_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad13_ SR_Latch_with_Enable +x4 net-_u1-pad11_ net-_u1-pad2_ net-_u1-pad10_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad15_ SR_Latch_with_Enable +* s c m o d e +* Control Statements + +.ends CD4044BMS diff --git a/library/SubcircuitLibrary/CD4044BMS/CD4044BMS_Previous_Values.xml b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS_Previous_Values.xml new file mode 100644 index 000000000..4e264fc18 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CD4044BMS_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SR_Latch_with_Enable/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SR_Latch_with_Enable/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SR_Latch_with_Enable/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SR_Latch_with_Enable \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR-cache.lib b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.cir b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.cir new file mode 100644 index 000000000..d2199ddbb --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/CMOS_INVTR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Fri Jun 13 08:49:20 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.cir.out b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.cir.out new file mode 100644 index 000000000..dec1c5fa5 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir + + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.pro b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.sch b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.sch new file mode 100644 index 000000000..aa7a7ee81 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.sch @@ -0,0 +1,161 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 684B982F +P 5350 2950 +F 0 "SC1" H 5400 3250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5650 3037 50 0000 R CNN +F 2 "" H 5350 1450 50 0001 C CNN +F 3 "" H 5350 2950 50 0001 C CNN + 1 5350 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684B9856 +P 5350 3800 +F 0 "SC2" H 5400 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5650 3887 50 0000 R CNN +F 2 "" H 5350 2300 50 0001 C CNN +F 3 "" H 5350 3800 50 0001 C CNN + 1 5350 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684B98AD +P 4550 3300 +F 0 "U1" H 4600 3400 30 0000 C CNN +F 1 "PORT" H 4550 3300 30 0000 C CNN +F 2 "" H 4550 3300 60 0000 C CNN +F 3 "" H 4550 3300 60 0000 C CNN + 1 4550 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B98D8 +P 6300 3350 +F 0 "U1" H 6350 3450 30 0000 C CNN +F 1 "PORT" H 6300 3350 30 0000 C CNN +F 2 "" H 6300 3350 60 0000 C CNN +F 3 "" H 6300 3350 60 0000 C CNN + 4 6300 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B9935 +P 5300 4350 +F 0 "U1" H 5350 4450 30 0000 C CNN +F 1 "PORT" H 5300 4350 30 0000 C CNN +F 2 "" H 5300 4350 60 0000 C CNN +F 3 "" H 5300 4350 60 0000 C CNN + 3 5300 4350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684B999A +P 5300 2350 +F 0 "U1" H 5350 2450 30 0000 C CNN +F 1 "PORT" H 5300 2350 30 0000 C CNN +F 2 "" H 5300 2350 60 0000 C CNN +F 3 "" H 5300 2350 60 0000 C CNN + 2 5300 2350 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B99CD +P 7950 3000 +F 0 "scmode1" H 7950 3150 98 0000 C CNB +F 1 "SKY130mode" H 7950 2900 118 0000 C CNB +F 2 "" H 7950 3150 60 0001 C CNN +F 3 "" H 7950 3150 60 0001 C CNN + 1 7950 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5550 2650 5550 2350 +Wire Wire Line + 5450 2950 5600 2950 +Wire Wire Line + 5600 2950 5600 2550 +Wire Wire Line + 5600 2550 5550 2550 +Connection ~ 5550 2550 +Wire Wire Line + 5550 3250 5550 3500 +Wire Wire Line + 6050 3350 5550 3350 +Connection ~ 5550 3350 +Wire Wire Line + 5050 2950 5050 3800 +Wire Wire Line + 4800 3300 5050 3300 +Connection ~ 5050 3300 +Wire Wire Line + 5450 3800 5600 3800 +Wire Wire Line + 5600 3800 5600 4150 +Wire Wire Line + 5600 4150 5550 4150 +Wire Wire Line + 5550 4100 5550 4350 +Connection ~ 5550 4150 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.sub b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.sub new file mode 100644 index 000000000..8283bca86 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR.sub @@ -0,0 +1,11 @@ +* Subcircuit CMOS_INVTR +.subckt CMOS_INVTR net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends CMOS_INVTR diff --git a/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR_Previous_Values.xml b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR_Previous_Values.xml new file mode 100644 index 000000000..d17c4f93e --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/CMOS_INVTR_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3, l=0.15w=1, l=0.15 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_2-cache.lib b/library/SubcircuitLibrary/CD4044BMS/NAND_2-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_2-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_2.bak b/library/SubcircuitLibrary/CD4044BMS/NAND_2.bak new file mode 100644 index 000000000..ad9819396 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_2.bak @@ -0,0 +1,221 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684AF0E9 +P 4750 2050 +F 0 "SC2" H 4800 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5050 2137 50 0000 R CNN +F 2 "" H 4750 550 50 0001 C CNN +F 3 "" H 4750 2050 50 0001 C CNN + 1 4750 2050 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684AF14C +P 5150 2750 +F 0 "SC3" H 5200 3050 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 2837 50 0000 R CNN +F 2 "" H 5150 1250 50 0001 C CNN +F 3 "" H 5150 2750 50 0001 C CNN + 1 5150 2750 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF1CF +P 4200 3600 +F 0 "SC1" H 4250 3900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4500 3687 50 0000 R CNN +F 2 "" H 4200 2100 50 0001 C CNN +F 3 "" H 4200 3600 50 0001 C CNN + 1 4200 3600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684AF20C +P 5550 3600 +F 0 "SC4" H 5600 3900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5850 3687 50 0000 R CNN +F 2 "" H 5550 2100 50 0001 C CNN +F 3 "" H 5550 3600 50 0001 C CNN + 1 5550 3600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF271 +P 4650 1550 +F 0 "U1" H 4700 1650 30 0000 C CNN +F 1 "PORT" H 4650 1550 30 0000 C CNN +F 2 "" H 4650 1550 60 0000 C CNN +F 3 "" H 4650 1550 60 0000 C CNN + 3 4650 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF336 +P 3550 2650 +F 0 "U1" H 3600 2750 30 0000 C CNN +F 1 "PORT" H 3550 2650 30 0000 C CNN +F 2 "" H 3550 2650 60 0000 C CNN +F 3 "" H 3550 2650 60 0000 C CNN + 1 3550 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AF413 +P 6200 2750 +F 0 "U1" H 6250 2850 30 0000 C CNN +F 1 "PORT" H 6200 2750 30 0000 C CNN +F 2 "" H 6200 2750 60 0000 C CNN +F 3 "" H 6200 2750 60 0000 C CNN + 4 6200 2750 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF82C +P 6200 3150 +F 0 "U1" H 6250 3250 30 0000 C CNN +F 1 "PORT" H 6200 3150 30 0000 C CNN +F 2 "" H 6200 3150 60 0000 C CNN +F 3 "" H 6200 3150 60 0000 C CNN + 5 6200 3150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF895 +P 4550 4050 +F 0 "U1" H 4600 4150 30 0000 C CNN +F 1 "PORT" H 4550 4050 30 0000 C CNN +F 2 "" H 4550 4050 60 0000 C CNN +F 3 "" H 4550 4050 60 0000 C CNN + 2 4550 4050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4400 3900 5350 3900 +Wire Wire Line + 4800 4050 4800 3900 +Connection ~ 4800 3900 +Wire Wire Line + 4300 3600 4450 3600 +Wire Wire Line + 4450 3600 4450 3900 +Connection ~ 4450 3900 +Wire Wire Line + 5450 3600 5300 3600 +Wire Wire Line + 5300 3600 5300 3900 +Connection ~ 5300 3900 +Wire Wire Line + 4400 3300 5350 3300 +Wire Wire Line + 4950 3050 4950 3300 +Connection ~ 4950 3300 +Wire Wire Line + 5950 3150 4950 3150 +Connection ~ 4950 3150 +Wire Wire Line + 5450 2750 5950 2750 +Wire Wire Line + 5850 2750 5850 3600 +Wire Wire Line + 5050 2750 4900 2750 +Wire Wire Line + 4900 2750 4900 2400 +Wire Wire Line + 4900 2400 4950 2400 +Wire Wire Line + 4950 2350 4950 2450 +Connection ~ 4950 2400 +Wire Wire Line + 4450 2050 3900 2050 +Wire Wire Line + 3900 2050 3900 3600 +Wire Wire Line + 3800 2650 3900 2650 +Connection ~ 3900 2650 +Connection ~ 5850 2750 +Wire Wire Line + 4850 2050 5000 2050 +Wire Wire Line + 5000 2050 5000 1650 +Wire Wire Line + 5000 1650 4950 1650 +Wire Wire Line + 4950 1550 4950 1750 +Wire Wire Line + 4900 1550 4950 1550 +Connection ~ 4950 1650 +$Comp +L SKY130mode scmode1 +U 1 1 684AFD6B +P 7350 2150 +F 0 "scmode1" H 7350 2300 98 0000 C CNB +F 1 "SKY130mode" H 7350 2050 118 0000 C CNB +F 2 "" H 7350 2300 60 0001 C CNN +F 3 "" H 7350 2300 60 0001 C CNN + 1 7350 2150 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_2.cir b/library/SubcircuitLibrary/CD4044BMS/NAND_2.cir new file mode 100644 index 000000000..1fa1e05e8 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_2.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/NAND_2.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 09:19:59 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC1-Pad3_ Net-_SC3-Pad2_ Net-_SC4-Pad3_ Net-_SC4-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC4-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ Net-_SC3-Pad2_ PORT +scmode1 SKY130mode +SC3 Net-_SC1-Pad1_ Net-_SC3-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 + +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_2.cir.out b/library/SubcircuitLibrary/CD4044BMS/NAND_2.cir.out new file mode 100644 index 000000000..079b2d2c2 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_2.cir.out @@ -0,0 +1,19 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_2/nand_2.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad3_ net-_sc3-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc4-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ net-_sc3-pad2_ port +* s c m o d e +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_2.pro b/library/SubcircuitLibrary/CD4044BMS/NAND_2.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_2.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_2.sch b/library/SubcircuitLibrary/CD4044BMS/NAND_2.sch new file mode 100644 index 000000000..ebef1d4c6 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_2.sch @@ -0,0 +1,222 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:NAND_2-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684AF0E9 +P 4200 2050 +F 0 "SC2" H 4250 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4500 2137 50 0000 R CNN +F 2 "" H 4200 550 50 0001 C CNN +F 3 "" H 4200 2050 50 0001 C CNN + 1 4200 2050 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF1CF +P 4450 2850 +F 0 "SC1" H 4500 3150 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4750 2937 50 0000 R CNN +F 2 "" H 4450 1350 50 0001 C CNN +F 3 "" H 4450 2850 50 0001 C CNN + 1 4450 2850 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684AF20C +P 4850 3550 +F 0 "SC4" H 4900 3850 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5150 3637 50 0000 R CNN +F 2 "" H 4850 2050 50 0001 C CNN +F 3 "" H 4850 3550 50 0001 C CNN + 1 4850 3550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF271 +P 4350 1550 +F 0 "U1" H 4400 1650 30 0000 C CNN +F 1 "PORT" H 4350 1550 30 0000 C CNN +F 2 "" H 4350 1550 60 0000 C CNN +F 3 "" H 4350 1550 60 0000 C CNN + 3 4350 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF336 +P 3550 2650 +F 0 "U1" H 3600 2750 30 0000 C CNN +F 1 "PORT" H 3550 2650 30 0000 C CNN +F 2 "" H 3550 2650 60 0000 C CNN +F 3 "" H 3550 2650 60 0000 C CNN + 1 3550 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AF413 +P 5750 2450 +F 0 "U1" H 5800 2550 30 0000 C CNN +F 1 "PORT" H 5750 2450 30 0000 C CNN +F 2 "" H 5750 2450 60 0000 C CNN +F 3 "" H 5750 2450 60 0000 C CNN + 4 5750 2450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF82C +P 5750 3300 +F 0 "U1" H 5800 3400 30 0000 C CNN +F 1 "PORT" H 5750 3300 30 0000 C CNN +F 2 "" H 5750 3300 60 0000 C CNN +F 3 "" H 5750 3300 60 0000 C CNN + 5 5750 3300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF895 +P 4400 4000 +F 0 "U1" H 4450 4100 30 0000 C CNN +F 1 "PORT" H 4400 4000 30 0000 C CNN +F 2 "" H 4400 4000 60 0000 C CNN +F 3 "" H 4400 4000 60 0000 C CNN + 2 4400 4000 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684AFD6B +P 7350 2150 +F 0 "scmode1" H 7350 2300 98 0000 C CNB +F 1 "SKY130mode" H 7350 2050 118 0000 C CNB +F 2 "" H 7350 2300 60 0001 C CNN +F 3 "" H 7350 2300 60 0001 C CNN + 1 7350 2150 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684CF41D +P 5000 2050 +F 0 "SC3" H 5050 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5300 2137 50 0000 R CNN +F 2 "" H 5000 550 50 0001 C CNN +F 3 "" H 5000 2050 50 0001 C CNN + 1 5000 2050 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4400 1750 4800 1750 +Wire Wire Line + 4600 1550 4600 1750 +Connection ~ 4600 1750 +Wire Wire Line + 4300 2050 4450 2050 +Wire Wire Line + 4450 2050 4450 1750 +Connection ~ 4450 1750 +Wire Wire Line + 4900 2050 4750 2050 +Wire Wire Line + 4750 2050 4750 1750 +Connection ~ 4750 1750 +Wire Wire Line + 4400 2350 4800 2350 +Wire Wire Line + 4650 2550 4650 2350 +Connection ~ 4650 2350 +Wire Wire Line + 5500 2450 4650 2450 +Connection ~ 4650 2450 +Wire Wire Line + 3900 2050 3900 2850 +Wire Wire Line + 3900 2850 4150 2850 +Wire Wire Line + 3800 2650 3900 2650 +Connection ~ 3900 2650 +Wire Wire Line + 5300 2050 5300 3550 +Wire Wire Line + 5300 3550 5150 3550 +Wire Wire Line + 5500 3300 5300 3300 +Connection ~ 5300 3300 +Wire Wire Line + 4550 2850 4700 2850 +Wire Wire Line + 4700 2850 4700 3200 +Wire Wire Line + 4700 3200 4650 3200 +Wire Wire Line + 4650 3150 4650 3250 +Connection ~ 4650 3200 +Wire Wire Line + 4650 3850 4650 4000 +Wire Wire Line + 4750 3550 4600 3550 +Wire Wire Line + 4600 3550 4600 3900 +Wire Wire Line + 4600 3900 4650 3900 +Connection ~ 4650 3900 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_2.sub b/library/SubcircuitLibrary/CD4044BMS/NAND_2.sub new file mode 100644 index 000000000..47d0bd150 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_2.sub @@ -0,0 +1,13 @@ +* Subcircuit NAND_2 +.subckt NAND_2 net-_sc1-pad2_ net-_sc4-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ net-_sc3-pad2_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_2/nand_2.cir +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad3_ net-_sc3-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +* Control Statements + +.ends NAND_2 diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_2_Previous_Values.xml b/library/SubcircuitLibrary/CD4044BMS/NAND_2_Previous_Values.xml new file mode 100644 index 000000000..066d43a60 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_2_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_Latch-cache.lib b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch-cache.lib new file mode 100644 index 000000000..b11550ee7 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch-cache.lib @@ -0,0 +1,95 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 100 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 550 0 50 0 1 0 N +P 2 0 1 0 -450 250 500 0 N +P 3 0 1 0 -450 250 -450 -250 500 0 N +X IN 1 -650 0 200 R 50 50 1 1 I +X VDD 2 -650 150 200 R 50 50 1 1 I +X GND 3 -650 -150 200 R 50 50 1 1 I +X OUT 4 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NOR_2 +# +DEF NOR_2 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "NOR_2" 250 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A -350 0 269 682 -682 0 1 0 N -250 250 -250 -250 +A 250 0 255 787 -787 0 1 0 N 300 250 300 -250 +C 550 0 50 0 1 0 N +P 2 0 1 0 -250 -250 300 -250 N +P 2 0 1 0 -250 250 300 250 N +X inA 1 -350 150 200 R 50 50 1 1 I +X Gnd 2 100 -450 200 U 50 50 1 1 I +X Vdd 3 100 450 200 D 50 50 1 1 I +X inB 4 -350 -150 200 R 50 50 1 1 I +X Out 5 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.cir b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.cir new file mode 100644 index 000000000..94ba828a9 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_Latch/NAND_Latch.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 10:44:18 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad1_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_X1-Pad4_ CMOS_INVTR +X2 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_X2-Pad4_ CMOS_INVTR +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ PORT +X3 Net-_X1-Pad4_ Net-_U1-Pad4_ Net-_U1-Pad3_ Net-_U1-Pad5_ Net-_X3-Pad5_ NOR_2 +X4 Net-_X2-Pad4_ Net-_U1-Pad4_ Net-_U1-Pad3_ Net-_X3-Pad5_ Net-_U1-Pad5_ NOR_2 +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.cir.out b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.cir.out new file mode 100644 index 000000000..f6273ea71 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.cir.out @@ -0,0 +1,21 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_latch/nand_latch.cir + +.include CMOS_INVTR.sub +.include NOR_2.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad1_ net-_u1-pad3_ net-_u1-pad4_ net-_x1-pad4_ CMOS_INVTR +x2 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_x2-pad4_ CMOS_INVTR +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ port +x3 net-_x1-pad4_ net-_u1-pad4_ net-_u1-pad3_ net-_u1-pad5_ net-_x3-pad5_ NOR_2 +x4 net-_x2-pad4_ net-_u1-pad4_ net-_u1-pad3_ net-_x3-pad5_ net-_u1-pad5_ NOR_2 +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.pro b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.sch b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.sch new file mode 100644 index 000000000..3fec24072 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.sch @@ -0,0 +1,227 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L CMOS_INVTR X1 +U 1 1 684D03CB +P 2950 1900 +F 0 "X1" H 2950 1900 60 0000 C CNN +F 1 "CMOS_INVTR" H 3050 1650 60 0000 C CNN +F 2 "" H 2950 1900 60 0001 C CNN +F 3 "" H 2950 1900 60 0001 C CNN + 1 2950 1900 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 684D041E +P 2950 3450 +F 0 "X2" H 2950 3450 60 0000 C CNN +F 1 "CMOS_INVTR" H 3050 3200 60 0000 C CNN +F 2 "" H 2950 3450 60 0001 C CNN +F 3 "" H 2950 3450 60 0001 C CNN + 1 2950 3450 + 1 0 0 1 +$EndComp +Wire Wire Line + 3750 1900 4650 1900 +Wire Wire Line + 3750 3450 4600 3450 +Wire Wire Line + 4450 2100 4650 2100 +Wire Wire Line + 4450 2100 4450 2650 +Wire Wire Line + 4450 2650 6200 2650 +Wire Wire Line + 6200 2650 6200 3350 +Wire Wire Line + 5800 3350 6500 3350 +Wire Wire Line + 4600 2750 6050 2750 +Wire Wire Line + 6050 2750 6050 2000 +Wire Wire Line + 5100 2450 5100 2900 +Wire Wire Line + 2300 1750 2300 1550 +Wire Wire Line + 2250 1550 5100 1550 +Wire Wire Line + 2300 2050 2300 3300 +Wire Wire Line + 5100 2700 2300 2700 +Connection ~ 2300 2700 +Connection ~ 5100 2700 +Wire Wire Line + 2300 3600 2300 3800 +Wire Wire Line + 2300 3800 5100 3800 +Wire Wire Line + 4300 3800 4300 1550 +Connection ~ 4300 1550 +Connection ~ 4300 3800 +Wire Wire Line + 2300 1900 2050 1900 +Wire Wire Line + 2300 3450 2050 3450 +Connection ~ 6200 3350 +$Comp +L PORT U1 +U 3 1 684D08A2 +P 2000 1550 +F 0 "U1" H 2050 1650 30 0000 C CNN +F 1 "PORT" H 2000 1550 30 0000 C CNN +F 2 "" H 2000 1550 60 0000 C CNN +F 3 "" H 2000 1550 60 0000 C CNN + 3 2000 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684D0939 +P 1800 1900 +F 0 "U1" H 1850 2000 30 0000 C CNN +F 1 "PORT" H 1800 1900 30 0000 C CNN +F 2 "" H 1800 1900 60 0000 C CNN +F 3 "" H 1800 1900 60 0000 C CNN + 1 1800 1900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684D09DE +P 1800 3450 +F 0 "U1" H 1850 3550 30 0000 C CNN +F 1 "PORT" H 1800 3450 30 0000 C CNN +F 2 "" H 1800 3450 60 0000 C CNN +F 3 "" H 1800 3450 60 0000 C CNN + 2 1800 3450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684D0A71 +P 3150 2800 +F 0 "U1" H 3200 2900 30 0000 C CNN +F 1 "PORT" H 3150 2800 30 0000 C CNN +F 2 "" H 3150 2800 60 0000 C CNN +F 3 "" H 3150 2800 60 0000 C CNN + 4 3150 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684D0B22 +P 6750 3350 +F 0 "U1" H 6800 3450 30 0000 C CNN +F 1 "PORT" H 6750 3350 30 0000 C CNN +F 2 "" H 6750 3350 60 0000 C CNN +F 3 "" H 6750 3350 60 0000 C CNN + 5 6750 3350 + -1 0 0 -1 +$EndComp +Wire Wire Line + 3400 2800 3400 2700 +Connection ~ 3400 2700 +Connection ~ 2300 1550 +$Comp +L NOR_2 X3 +U 1 1 684D0C9D +P 5000 2000 +F 0 "X3" H 5000 2000 60 0000 C CNN +F 1 "NOR_2" H 5250 2000 60 0000 C CNN +F 2 "" H 5000 2000 60 0001 C CNN +F 3 "" H 5000 2000 60 0001 C CNN + 1 5000 2000 + 1 0 0 -1 +$EndComp +$Comp +L NOR_2 X4 +U 1 1 684D0CE7 +P 5000 3350 +F 0 "X4" H 5000 3350 60 0000 C CNN +F 1 "NOR_2" H 5250 3350 60 0000 C CNN +F 2 "" H 5000 3350 60 0001 C CNN +F 3 "" H 5000 3350 60 0001 C CNN + 1 5000 3350 + 1 0 0 1 +$EndComp +Wire Wire Line + 6050 2000 5800 2000 +Wire Wire Line + 4600 3450 4600 3500 +Wire Wire Line + 4600 3500 4650 3500 +Wire Wire Line + 4600 3200 4650 3200 +Wire Wire Line + 4600 3200 4600 2750 +Wire Wire Line + 4650 1900 4650 1850 +Wire Wire Line + 4650 2100 4650 2150 +$Comp +L SKY130mode scmode1 +U 1 1 684D1002 +P 7050 1900 +F 0 "scmode1" H 7050 2050 98 0000 C CNB +F 1 "SKY130mode" H 7050 1800 118 0000 C CNB +F 2 "" H 7050 2050 60 0001 C CNN +F 3 "" H 7050 2050 60 0001 C CNN + 1 7050 1900 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.sub b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.sub new file mode 100644 index 000000000..e74e79ca2 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch.sub @@ -0,0 +1,15 @@ +* Subcircuit NAND_Latch +.subckt NAND_Latch net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_latch/nand_latch.cir +.include CMOS_INVTR.sub +.include NOR_2.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad1_ net-_u1-pad3_ net-_u1-pad4_ net-_x1-pad4_ CMOS_INVTR +x2 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_x2-pad4_ CMOS_INVTR +x3 net-_x1-pad4_ net-_u1-pad4_ net-_u1-pad3_ net-_u1-pad5_ net-_x3-pad5_ NOR_2 +x4 net-_x2-pad4_ net-_u1-pad4_ net-_u1-pad3_ net-_x3-pad5_ net-_u1-pad5_ NOR_2 +* s c m o d e +* Control Statements + +.ends NAND_Latch diff --git a/library/SubcircuitLibrary/CD4044BMS/NAND_Latch_Previous_Values.xml b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch_Previous_Values.xml new file mode 100644 index 000000000..e72df0e2c --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NAND_Latch_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_2 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4044BMS/NOR_2-cache.lib b/library/SubcircuitLibrary/CD4044BMS/NOR_2-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NOR_2-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4044BMS/NOR_2.cir b/library/SubcircuitLibrary/CD4044BMS/NOR_2.cir new file mode 100644 index 000000000..da83808c0 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NOR_2.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_2/NOR_2.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 08:53:12 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC2 Net-_SC2-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 +SC3 Net-_SC1-Pad1_ Net-_SC3-Pad2_ Net-_SC2-Pad1_ Net-_SC2-Pad1_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC1-Pad1_ Net-_SC3-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC3-Pad2_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/NOR_2.cir.out b/library/SubcircuitLibrary/CD4044BMS/NOR_2.cir.out new file mode 100644 index 000000000..4326af445 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NOR_2.cir.out @@ -0,0 +1,19 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nor_2/nor_2.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc2 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad1_ net-_sc2-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc3-pad2_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/NOR_2.pro b/library/SubcircuitLibrary/CD4044BMS/NOR_2.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NOR_2.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4044BMS/NOR_2.sch b/library/SubcircuitLibrary/CD4044BMS/NOR_2.sch new file mode 100644 index 000000000..86f7c4bc6 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NOR_2.sch @@ -0,0 +1,219 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684CE7B8 +P 4750 2600 +F 0 "SC2" H 4800 2900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5050 2687 50 0000 R CNN +F 2 "" H 4750 1100 50 0001 C CNN +F 3 "" H 4750 2600 50 0001 C CNN + 1 4750 2600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684CE82E +P 5150 3400 +F 0 "SC3" H 5200 3700 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 3487 50 0000 R CNN +F 2 "" H 5150 1900 50 0001 C CNN +F 3 "" H 5150 3400 50 0001 C CNN + 1 5150 3400 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684CE88F +P 4050 4450 +F 0 "SC1" H 4100 4750 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4350 4537 50 0000 R CNN +F 2 "" H 4050 2950 50 0001 C CNN +F 3 "" H 4050 4450 50 0001 C CNN + 1 4050 4450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684CE8CA +P 5650 4450 +F 0 "SC4" H 5700 4750 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5950 4537 50 0000 R CNN +F 2 "" H 5650 2950 50 0001 C CNN +F 3 "" H 5650 4450 50 0001 C CNN + 1 5650 4450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684CE919 +P 3100 3450 +F 0 "U1" H 3150 3550 30 0000 C CNN +F 1 "PORT" H 3100 3450 30 0000 C CNN +F 2 "" H 3100 3450 60 0000 C CNN +F 3 "" H 3100 3450 60 0000 C CNN + 1 3100 3450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684CE990 +P 6350 3400 +F 0 "U1" H 6400 3500 30 0000 C CNN +F 1 "PORT" H 6350 3400 30 0000 C CNN +F 2 "" H 6350 3400 60 0000 C CNN +F 3 "" H 6350 3400 60 0000 C CNN + 4 6350 3400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684CEA11 +P 6450 3900 +F 0 "U1" H 6500 4000 30 0000 C CNN +F 1 "PORT" H 6450 3900 30 0000 C CNN +F 2 "" H 6450 3900 60 0000 C CNN +F 3 "" H 6450 3900 60 0000 C CNN + 5 6450 3900 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684CEA84 +P 4700 2150 +F 0 "U1" H 4750 2250 30 0000 C CNN +F 1 "PORT" H 4700 2150 30 0000 C CNN +F 2 "" H 4700 2150 60 0000 C CNN +F 3 "" H 4700 2150 60 0000 C CNN + 3 4700 2150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684CEB11 +P 4650 5100 +F 0 "U1" H 4700 5200 30 0000 C CNN +F 1 "PORT" H 4650 5100 30 0000 C CNN +F 2 "" H 4650 5100 60 0000 C CNN +F 3 "" H 4650 5100 60 0000 C CNN + 2 4650 5100 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684CEB6E +P 8300 2900 +F 0 "scmode1" H 8300 3050 98 0000 C CNB +F 1 "SKY130mode" H 8300 2800 118 0000 C CNB +F 2 "" H 8300 3050 60 0001 C CNN +F 3 "" H 8300 3050 60 0001 C CNN + 1 8300 2900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4250 4150 5450 4150 +Wire Wire Line + 4950 3700 4950 4150 +Connection ~ 4950 4150 +Wire Wire Line + 6200 3900 4950 3900 +Connection ~ 4950 3900 +Wire Wire Line + 4250 4750 5450 4750 +Wire Wire Line + 5550 4450 5400 4450 +Wire Wire Line + 5400 4450 5400 4750 +Connection ~ 5400 4750 +Wire Wire Line + 4150 4450 4300 4450 +Wire Wire Line + 4300 4450 4300 4750 +Connection ~ 4300 4750 +Wire Wire Line + 4900 5100 4900 4750 +Connection ~ 4900 4750 +Wire Wire Line + 5450 3400 6100 3400 +Wire Wire Line + 5950 3400 5950 4450 +Connection ~ 5950 3400 +Wire Wire Line + 4450 2600 3750 2600 +Wire Wire Line + 3750 2600 3750 4450 +Wire Wire Line + 3350 3450 3750 3450 +Connection ~ 3750 3450 +Wire Wire Line + 4950 2150 4950 2300 +Wire Wire Line + 4850 2600 5000 2600 +Wire Wire Line + 5000 2600 5000 2250 +Wire Wire Line + 5000 2250 4950 2250 +Connection ~ 4950 2250 +Wire Wire Line + 4950 2900 4950 3100 +Wire Wire Line + 5050 3400 4900 3400 +Wire Wire Line + 4900 3400 4900 3050 +Wire Wire Line + 4900 3050 4950 3050 +Connection ~ 4950 3050 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4044BMS/NOR_2.sub b/library/SubcircuitLibrary/CD4044BMS/NOR_2.sub new file mode 100644 index 000000000..dd148089f --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NOR_2.sub @@ -0,0 +1,13 @@ +* Subcircuit NOR_2 +.subckt NOR_2 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc3-pad2_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nor_2/nor_2.cir +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc2 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad1_ net-_sc2-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends NOR_2 diff --git a/library/SubcircuitLibrary/CD4044BMS/NOR_2_Previous_Values.xml b/library/SubcircuitLibrary/CD4044BMS/NOR_2_Previous_Values.xml new file mode 100644 index 000000000..a8736d2ca --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/NOR_2_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable-cache.lib b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable-cache.lib new file mode 100644 index 000000000..b0ad0d0ae --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable-cache.lib @@ -0,0 +1,187 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 100 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 550 0 50 0 1 0 N +P 2 0 1 0 -450 250 500 0 N +P 3 0 1 0 -450 250 -450 -250 500 0 N +X IN 1 -650 0 200 R 50 50 1 1 I +X VDD 2 -650 150 200 R 50 50 1 1 I +X GND 3 -650 -150 200 R 50 50 1 1 I +X OUT 4 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NAND_2 +# +DEF NAND_2 X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "NAND_2" 400 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 400 0 255 787 -787 0 1 0 N 450 250 450 -250 +C 700 0 0 0 1 0 N +C 700 0 50 0 1 0 N +P 2 0 1 0 -300 250 450 250 N +P 3 0 1 0 -300 250 -300 -250 450 -250 N +X inA 1 -500 100 200 R 50 50 1 1 I +X Gnd 2 0 -450 200 U 50 50 1 1 I +X Vdd 3 0 450 200 D 50 50 1 1 I +X Out 4 950 0 200 L 50 50 1 1 O +X inB 5 -500 -100 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# NAND_Latch +# +DEF NAND_Latch X 0 40 Y Y 1 F N +F0 "X" 0 -100 60 H V C CNN +F1 "NAND_Latch" 0 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -300 200 450 -200 0 1 0 N +X S 1 -500 100 200 R 50 50 1 1 I +X R 2 -500 -100 200 R 50 50 1 1 I +X Vdd 3 100 400 200 D 50 50 1 1 I +X Gnd 4 100 -400 200 U 50 50 1 1 I +X Q 5 650 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NOR_2 +# +DEF NOR_2 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "NOR_2" 250 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A -350 0 269 682 -682 0 1 0 N -250 250 -250 -250 +A 250 0 255 787 -787 0 1 0 N 300 250 300 -250 +C 550 0 50 0 1 0 N +P 2 0 1 0 -250 -250 300 -250 N +P 2 0 1 0 -250 250 300 250 N +X inA 1 -350 150 200 R 50 50 1 1 I +X Gnd 2 100 -450 200 U 50 50 1 1 I +X Vdd 3 100 450 200 D 50 50 1 1 I +X inB 4 -350 -150 200 R 50 50 1 1 I +X Out 5 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.bak b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.bak new file mode 100644 index 000000000..0049e35ef --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.bak @@ -0,0 +1,308 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L NAND_Latch X? +U 1 1 684D0904 +P 5400 2850 +F 0 "X?" H 5400 2750 60 0000 C CNN +F 1 "NAND_Latch" H 5400 2850 60 0000 C CNN +F 2 "" H 5400 2850 60 0001 C CNN +F 3 "" H 5400 2850 60 0001 C CNN + 1 5400 2850 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X? +U 1 1 684D097B +P 6700 2400 +F 0 "X?" H 6800 2400 60 0000 C CNN +F 1 "NAND_2" H 7100 2400 60 0000 C CNN +F 2 "" H 6700 2400 60 0001 C CNN +F 3 "" H 6700 2400 60 0001 C CNN + 1 6700 2400 + 1 0 0 -1 +$EndComp +$Comp +L NOR_2 X? +U 1 1 684D09D8 +P 6600 3500 +F 0 "X?" H 6600 3500 60 0000 C CNN +F 1 "NOR_2" H 6850 3500 60 0000 C CNN +F 2 "" H 6600 3500 60 0001 C CNN +F 3 "" H 6600 3500 60 0001 C CNN + 1 6600 3500 + 1 0 0 1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC? +U 1 1 684D0A0D +P 8300 2400 +F 0 "SC?" H 8350 2700 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 8600 2487 50 0000 R CNN +F 2 "" H 8300 900 50 0001 C CNN +F 3 "" H 8300 2400 50 0001 C CNN + 1 8300 2400 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 684D0A4E +P 8300 3500 +F 0 "SC?" H 8350 3800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 8600 3587 50 0000 R CNN +F 2 "" H 8300 2000 50 0001 C CNN +F 3 "" H 8300 3500 50 0001 C CNN + 1 8300 3500 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X? +U 1 1 684D0A9A +P 3500 2300 +F 0 "X?" H 3500 2300 60 0000 C CNN +F 1 "CMOS_INVTR" H 3600 2050 60 0000 C CNN +F 2 "" H 3500 2300 60 0001 C CNN +F 3 "" H 3500 2300 60 0001 C CNN + 1 3500 2300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X? +U 1 1 684D0B05 +P 5200 2300 +F 0 "X?" H 5200 2300 60 0000 C CNN +F 1 "CMOS_INVTR" H 5300 2050 60 0000 C CNN +F 2 "" H 5200 2300 60 0001 C CNN +F 3 "" H 5200 2300 60 0001 C CNN + 1 5200 2300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 1 1 684D0BAC +P 2250 2150 +F 0 "U?" H 2300 2250 30 0000 C CNN +F 1 "PORT" H 2250 2150 30 0000 C CNN +F 2 "" H 2250 2150 60 0000 C CNN +F 3 "" H 2250 2150 60 0000 C CNN + 1 2250 2150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 2 1 684D0C11 +P 2250 2300 +F 0 "U?" H 2300 2400 30 0000 C CNN +F 1 "PORT" H 2250 2300 30 0000 C CNN +F 2 "" H 2250 2300 60 0000 C CNN +F 3 "" H 2250 2300 60 0000 C CNN + 2 2250 2300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 3 1 684D0D74 +P 2250 2450 +F 0 "U?" H 2300 2550 30 0000 C CNN +F 1 "PORT" H 2250 2450 30 0000 C CNN +F 2 "" H 2250 2450 60 0000 C CNN +F 3 "" H 2250 2450 60 0000 C CNN + 3 2250 2450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 4 1 684D0DD9 +P 2250 2600 +F 0 "U?" H 2300 2700 30 0000 C CNN +F 1 "PORT" H 2250 2600 30 0000 C CNN +F 2 "" H 2250 2600 60 0000 C CNN +F 3 "" H 2250 2600 60 0000 C CNN + 4 2250 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 5 1 684D0E42 +P 2250 2750 +F 0 "U?" H 2300 2850 30 0000 C CNN +F 1 "PORT" H 2250 2750 30 0000 C CNN +F 2 "" H 2250 2750 60 0000 C CNN +F 3 "" H 2250 2750 60 0000 C CNN + 5 2250 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 6 1 684D0EC7 +P 8900 2950 +F 0 "U?" H 8950 3050 30 0000 C CNN +F 1 "PORT" H 8900 2950 30 0000 C CNN +F 2 "" H 8900 2950 60 0000 C CNN +F 3 "" H 8900 2950 60 0000 C CNN + 6 8900 2950 + -1 0 0 -1 +$EndComp +Wire Wire Line + 8500 2700 8500 3200 +Wire Wire Line + 8650 2950 8500 2950 +Connection ~ 8500 2950 +Wire Wire Line + 7650 2400 8000 2400 +Wire Wire Line + 7400 3500 8000 3500 +Wire Wire Line + 2500 2150 2850 2150 +Wire Wire Line + 2800 1900 2800 2150 +Wire Wire Line + 2800 1900 8500 1900 +Wire Wire Line + 8500 1900 8500 2100 +Wire Wire Line + 6700 1950 6700 1900 +Connection ~ 6700 1900 +Wire Wire Line + 4550 2150 4550 1900 +Connection ~ 4550 1900 +Connection ~ 2800 2150 +Wire Wire Line + 2500 2300 2850 2300 +Wire Wire Line + 2500 2450 2850 2450 +Wire Wire Line + 5500 2450 5500 1900 +Connection ~ 5500 1900 +Wire Wire Line + 6700 3950 6800 3950 +Wire Wire Line + 6800 3950 6800 1900 +Connection ~ 6800 1900 +Wire Wire Line + 6200 2500 6200 3350 +Wire Wire Line + 6200 3350 6250 3350 +Wire Wire Line + 6050 2850 6200 2850 +Connection ~ 6200 2850 +Wire Wire Line + 6700 2850 6700 3050 +Wire Wire Line + 5500 3250 5500 3300 +Wire Wire Line + 4550 3300 5900 3300 +Wire Wire Line + 5900 3300 5900 3000 +Wire Wire Line + 5900 3000 7700 3000 +Connection ~ 6700 3000 +Wire Wire Line + 7700 3000 7700 3900 +Wire Wire Line + 7700 3900 8600 3900 +Wire Wire Line + 8500 3900 8500 3800 +Wire Wire Line + 8400 3500 8600 3500 +Wire Wire Line + 8600 3500 8600 3900 +Connection ~ 8500 3900 +Wire Wire Line + 8400 2400 8550 2400 +Wire Wire Line + 8550 2400 8550 1950 +Wire Wire Line + 8550 1950 8500 1950 +Connection ~ 8500 1950 +Wire Wire Line + 6000 2300 6200 2300 +Wire Wire Line + 4300 2300 4550 2300 +Wire Wire Line + 4400 2300 4400 3650 +Wire Wire Line + 4400 3650 6250 3650 +Connection ~ 4400 2300 +Wire Wire Line + 2800 2450 2800 2550 +Wire Wire Line + 2800 2550 4550 2550 +Wire Wire Line + 4550 2450 4550 3300 +Connection ~ 2800 2450 +Connection ~ 5500 3300 +Connection ~ 4550 2550 +Wire Wire Line + 2500 2600 4900 2600 +Wire Wire Line + 4900 2600 4900 2750 +Wire Wire Line + 2500 2750 2500 2950 +Wire Wire Line + 2500 2950 4900 2950 +$Comp +L SKY130mode scmode? +U 1 1 684D1874 +P 9850 1750 +F 0 "scmode?" H 9850 1900 98 0000 C CNB +F 1 "SKY130mode" H 9850 1650 118 0000 C CNB +F 2 "" H 9850 1900 60 0001 C CNN +F 3 "" H 9850 1900 60 0001 C CNN + 1 9850 1750 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.cir b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.cir new file mode 100644 index 000000000..ec0fbff0b --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.cir @@ -0,0 +1,19 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SR_Latch_with_Enable/SR_Latch_with_Enable.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 11:07:47 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X3 Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_X3-Pad5_ NAND_Latch +X5 Net-_X2-Pad4_ Net-_SC2-Pad3_ Net-_SC1-Pad3_ Net-_SC1-Pad2_ Net-_X3-Pad5_ NAND_2 +X4 Net-_X1-Pad4_ Net-_SC2-Pad3_ Net-_SC1-Pad3_ Net-_X3-Pad5_ Net-_SC2-Pad2_ NOR_2 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +X1 Net-_U1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_X1-Pad4_ CMOS_INVTR +X2 Net-_X1-Pad4_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_X2-Pad4_ CMOS_INVTR +U1 Net-_SC1-Pad3_ Net-_U1-Pad2_ Net-_SC2-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.cir.out b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.cir.out new file mode 100644 index 000000000..c01a00a56 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.cir.out @@ -0,0 +1,26 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/sr_latch_with_enable/sr_latch_with_enable.cir + +.include CMOS_INVTR.sub +.include NOR_2.sub +.include NAND_2.sub +.include NAND_Latch.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x3 net-_u1-pad4_ net-_u1-pad5_ net-_sc1-pad3_ net-_sc2-pad3_ net-_x3-pad5_ NAND_Latch +x5 net-_x2-pad4_ net-_sc2-pad3_ net-_sc1-pad3_ net-_sc1-pad2_ net-_x3-pad5_ NAND_2 +x4 net-_x1-pad4_ net-_sc2-pad3_ net-_sc1-pad3_ net-_x3-pad5_ net-_sc2-pad2_ NOR_2 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +x1 net-_u1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_x1-pad4_ CMOS_INVTR +x2 net-_x1-pad4_ net-_sc1-pad3_ net-_sc2-pad3_ net-_x2-pad4_ CMOS_INVTR +* u1 net-_sc1-pad3_ net-_u1-pad2_ net-_sc2-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.pro b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.sch b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.sch new file mode 100644 index 000000000..15ee2aa73 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.sch @@ -0,0 +1,308 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L NAND_Latch X3 +U 1 1 684D0904 +P 5400 2850 +F 0 "X3" H 5400 2750 60 0000 C CNN +F 1 "NAND_Latch" H 5400 2850 60 0000 C CNN +F 2 "" H 5400 2850 60 0001 C CNN +F 3 "" H 5400 2850 60 0001 C CNN + 1 5400 2850 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X5 +U 1 1 684D097B +P 6700 2400 +F 0 "X5" H 6800 2400 60 0000 C CNN +F 1 "NAND_2" H 7100 2400 60 0000 C CNN +F 2 "" H 6700 2400 60 0001 C CNN +F 3 "" H 6700 2400 60 0001 C CNN + 1 6700 2400 + 1 0 0 -1 +$EndComp +$Comp +L NOR_2 X4 +U 1 1 684D09D8 +P 6600 3500 +F 0 "X4" H 6600 3500 60 0000 C CNN +F 1 "NOR_2" H 6850 3500 60 0000 C CNN +F 2 "" H 6600 3500 60 0001 C CNN +F 3 "" H 6600 3500 60 0001 C CNN + 1 6600 3500 + 1 0 0 1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 684D0A0D +P 8300 2400 +F 0 "SC1" H 8350 2700 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 8600 2487 50 0000 R CNN +F 2 "" H 8300 900 50 0001 C CNN +F 3 "" H 8300 2400 50 0001 C CNN + 1 8300 2400 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684D0A4E +P 8300 3500 +F 0 "SC2" H 8350 3800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 8600 3587 50 0000 R CNN +F 2 "" H 8300 2000 50 0001 C CNN +F 3 "" H 8300 3500 50 0001 C CNN + 1 8300 3500 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X1 +U 1 1 684D0A9A +P 3500 2300 +F 0 "X1" H 3500 2300 60 0000 C CNN +F 1 "CMOS_INVTR" H 3600 2050 60 0000 C CNN +F 2 "" H 3500 2300 60 0001 C CNN +F 3 "" H 3500 2300 60 0001 C CNN + 1 3500 2300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 684D0B05 +P 5200 2300 +F 0 "X2" H 5200 2300 60 0000 C CNN +F 1 "CMOS_INVTR" H 5300 2050 60 0000 C CNN +F 2 "" H 5200 2300 60 0001 C CNN +F 3 "" H 5200 2300 60 0001 C CNN + 1 5200 2300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684D0BAC +P 2250 2150 +F 0 "U1" H 2300 2250 30 0000 C CNN +F 1 "PORT" H 2250 2150 30 0000 C CNN +F 2 "" H 2250 2150 60 0000 C CNN +F 3 "" H 2250 2150 60 0000 C CNN + 1 2250 2150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684D0C11 +P 2250 2300 +F 0 "U1" H 2300 2400 30 0000 C CNN +F 1 "PORT" H 2250 2300 30 0000 C CNN +F 2 "" H 2250 2300 60 0000 C CNN +F 3 "" H 2250 2300 60 0000 C CNN + 2 2250 2300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684D0D74 +P 2250 2450 +F 0 "U1" H 2300 2550 30 0000 C CNN +F 1 "PORT" H 2250 2450 30 0000 C CNN +F 2 "" H 2250 2450 60 0000 C CNN +F 3 "" H 2250 2450 60 0000 C CNN + 3 2250 2450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684D0DD9 +P 2250 2600 +F 0 "U1" H 2300 2700 30 0000 C CNN +F 1 "PORT" H 2250 2600 30 0000 C CNN +F 2 "" H 2250 2600 60 0000 C CNN +F 3 "" H 2250 2600 60 0000 C CNN + 4 2250 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684D0E42 +P 2250 2750 +F 0 "U1" H 2300 2850 30 0000 C CNN +F 1 "PORT" H 2250 2750 30 0000 C CNN +F 2 "" H 2250 2750 60 0000 C CNN +F 3 "" H 2250 2750 60 0000 C CNN + 5 2250 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684D0EC7 +P 8900 2950 +F 0 "U1" H 8950 3050 30 0000 C CNN +F 1 "PORT" H 8900 2950 30 0000 C CNN +F 2 "" H 8900 2950 60 0000 C CNN +F 3 "" H 8900 2950 60 0000 C CNN + 6 8900 2950 + -1 0 0 -1 +$EndComp +Wire Wire Line + 8500 2700 8500 3200 +Wire Wire Line + 8650 2950 8500 2950 +Connection ~ 8500 2950 +Wire Wire Line + 7650 2400 8000 2400 +Wire Wire Line + 7400 3500 8000 3500 +Wire Wire Line + 2500 2150 2850 2150 +Wire Wire Line + 2800 1900 2800 2150 +Wire Wire Line + 2800 1900 8500 1900 +Wire Wire Line + 8500 1900 8500 2100 +Wire Wire Line + 6700 1950 6700 1900 +Connection ~ 6700 1900 +Wire Wire Line + 4550 2150 4550 1900 +Connection ~ 4550 1900 +Connection ~ 2800 2150 +Wire Wire Line + 2500 2300 2850 2300 +Wire Wire Line + 2500 2450 2850 2450 +Wire Wire Line + 5500 2450 5500 1900 +Connection ~ 5500 1900 +Wire Wire Line + 6700 3950 6800 3950 +Wire Wire Line + 6800 3950 6800 1900 +Connection ~ 6800 1900 +Wire Wire Line + 6200 2500 6200 3350 +Wire Wire Line + 6200 3350 6250 3350 +Wire Wire Line + 6050 2850 6200 2850 +Connection ~ 6200 2850 +Wire Wire Line + 6700 2850 6700 3050 +Wire Wire Line + 5500 3250 5500 3300 +Wire Wire Line + 4550 3300 5900 3300 +Wire Wire Line + 5900 3300 5900 3000 +Wire Wire Line + 5900 3000 7700 3000 +Connection ~ 6700 3000 +Wire Wire Line + 7700 3000 7700 3900 +Wire Wire Line + 7700 3900 8600 3900 +Wire Wire Line + 8500 3900 8500 3800 +Wire Wire Line + 8400 3500 8600 3500 +Wire Wire Line + 8600 3500 8600 3900 +Connection ~ 8500 3900 +Wire Wire Line + 8400 2400 8550 2400 +Wire Wire Line + 8550 2400 8550 1950 +Wire Wire Line + 8550 1950 8500 1950 +Connection ~ 8500 1950 +Wire Wire Line + 6000 2300 6200 2300 +Wire Wire Line + 4300 2300 4550 2300 +Wire Wire Line + 4400 2300 4400 3650 +Wire Wire Line + 4400 3650 6250 3650 +Connection ~ 4400 2300 +Wire Wire Line + 2800 2450 2800 2550 +Wire Wire Line + 2800 2550 4550 2550 +Wire Wire Line + 4550 2450 4550 3300 +Connection ~ 2800 2450 +Connection ~ 5500 3300 +Connection ~ 4550 2550 +Wire Wire Line + 2500 2600 4900 2600 +Wire Wire Line + 4900 2600 4900 2750 +Wire Wire Line + 2500 2750 2500 2950 +Wire Wire Line + 2500 2950 4900 2950 +$Comp +L SKY130mode scmode1 +U 1 1 684D1874 +P 9850 1750 +F 0 "scmode1" H 9850 1900 98 0000 C CNB +F 1 "SKY130mode" H 9850 1650 118 0000 C CNB +F 2 "" H 9850 1900 60 0001 C CNN +F 3 "" H 9850 1900 60 0001 C CNN + 1 9850 1750 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.sub b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.sub new file mode 100644 index 000000000..b67493832 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable.sub @@ -0,0 +1,20 @@ +* Subcircuit SR_Latch_with_Enable +.subckt SR_Latch_with_Enable net-_sc1-pad3_ net-_u1-pad2_ net-_sc2-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/sr_latch_with_enable/sr_latch_with_enable.cir +.include CMOS_INVTR.sub +.include NOR_2.sub +.include NAND_2.sub +.include NAND_Latch.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x3 net-_u1-pad4_ net-_u1-pad5_ net-_sc1-pad3_ net-_sc2-pad3_ net-_x3-pad5_ NAND_Latch +x5 net-_x2-pad4_ net-_sc2-pad3_ net-_sc1-pad3_ net-_sc1-pad2_ net-_x3-pad5_ NAND_2 +x4 net-_x1-pad4_ net-_sc2-pad3_ net-_sc1-pad3_ net-_x3-pad5_ net-_sc2-pad2_ NOR_2 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +x1 net-_u1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_x1-pad4_ CMOS_INVTR +x2 net-_x1-pad4_ net-_sc1-pad3_ net-_sc2-pad3_ net-_x2-pad4_ CMOS_INVTR +* s c m o d e +* Control Statements + +.ends SR_Latch_with_Enable diff --git a/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable_Previous_Values.xml b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable_Previous_Values.xml new file mode 100644 index 000000000..a06c31a8d --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/SR_Latch_with_Enable_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_Latch/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4044BMS/analysis b/library/SubcircuitLibrary/CD4044BMS/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/CD4044BMS/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4046_sub/CD4046_sub.cir b/library/SubcircuitLibrary/CD4046_sub/CD4046_sub.cir new file mode 100644 index 000000000..5aa744ecc --- /dev/null +++ b/library/SubcircuitLibrary/CD4046_sub/CD4046_sub.cir @@ -0,0 +1,10 @@ +.title KiCad schematic +U7 Net-_U6-Pad2_ Net-_U7-Pad2_ d_inverter +U8 Net-_U7-Pad2_ Net-_U1-Pad4_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad1_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT +U6 Net-_U5-Pad2_ Net-_U6-Pad2_ d_inverter +U3 Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U3-Pad3_ d_and +U4 Net-_U3-Pad3_ Net-_U4-Pad2_ d_inverter +U5 Net-_U4-Pad2_ Net-_U5-Pad2_ d_inverter +U2 Net-_U1-Pad1_ Net-_U1-Pad4_ Net-_U1-Pad3_ d_xor +.end diff --git a/library/SubcircuitLibrary/CD4046_sub/CD4046_sub.kicad_sch b/library/SubcircuitLibrary/CD4046_sub/CD4046_sub.kicad_sch new file mode 100644 index 000000000..f6224f33c --- /dev/null +++ b/library/SubcircuitLibrary/CD4046_sub/CD4046_sub.kicad_sch @@ -0,0 +1,816 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid aefdc1a5-cdbf-4c3a-abff-6e3b8fd516f2) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_xor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_xor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -5.08 -1.27) (mid -4.3109 1.27) (end -5.08 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.27) + (xy -5.08 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 3.81) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_xor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.0922 1.0922)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.0922 1.0922)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 0.9906 0.9906)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 245.11 64.77) (diameter 0) (color 0 0 0 0) + (uuid 2c18c4f9-8fbe-4ee0-bf78-2b78a9d68e14) + ) + (junction (at 130.81 58.42) (diameter 0) (color 0 0 0 0) + (uuid 3f51d54e-a138-4e9e-9d31-4074664bdf7a) + ) + (junction (at 104.14 57.15) (diameter 0) (color 0 0 0 0) + (uuid 7b7c5fb2-004e-4a8a-847b-4a49aaa3b900) + ) + (junction (at 247.65 62.23) (diameter 0) (color 0 0 0 0) + (uuid b350d6fa-8d8f-4067-8d0a-01ae17fe449c) + ) + + (wire (pts (xy 247.65 64.77) (xy 245.11 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 074483d4-c1fc-4292-9e15-0f473d54dd05) + ) + (wire (pts (xy 99.06 60.96) (xy 104.14 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0eca995b-4786-4ae0-8da1-bdae509f14c8) + ) + (wire (pts (xy 110.49 81.28) (xy 102.87 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11f18574-d7d2-46b3-936d-5d4d10fec386) + ) + (wire (pts (xy 245.11 64.77) (xy 132.08 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 195e40d1-65e7-449a-b990-dfa5440639b4) + ) + (wire (pts (xy 113.03 102.87) (xy 99.06 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bd76897-3439-41df-9050-fb0ec8429879) + ) + (wire (pts (xy 172.72 59.69) (xy 175.26 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f2544d1-4245-462b-a14b-629bc170f19c) + ) + (wire (pts (xy 130.81 58.42) (xy 132.08 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 288037ec-b77c-43a7-abc2-aeb03b9702e8) + ) + (wire (pts (xy 101.6 57.15) (xy 104.14 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31dbd7ee-5de1-4d3a-9a01-b105358ab3e0) + ) + (wire (pts (xy 213.36 82.55) (xy 213.36 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37bbca50-1082-45d2-9174-35476fe59109) + ) + (wire (pts (xy 213.36 69.85) (xy 248.92 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3868b2d2-763b-409a-9e8c-907bdaff0791) + ) + (wire (pts (xy 248.92 62.23) (xy 247.65 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46dc72e4-3ccb-483b-944f-33e63c6b52f6) + ) + (wire (pts (xy 245.11 67.31) (xy 245.11 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ad732ed-eac3-4ae0-918b-1887830bcac6) + ) + (wire (pts (xy 247.65 62.23) (xy 247.65 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b2e1384-e7b4-4c50-b870-5f62fd0d51ca) + ) + (wire (pts (xy 190.5 59.69) (xy 194.31 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56d54023-d2f1-454f-ae45-3bece918a850) + ) + (wire (pts (xy 102.87 63.5) (xy 130.81 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ca16fba-2763-4552-a6e0-b5f152e20c15) + ) + (wire (pts (xy 130.81 63.5) (xy 130.81 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75e6a36e-831b-4719-ac15-5a3f71d694dc) + ) + (wire (pts (xy 104.14 57.15) (xy 106.68 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84213d3d-df3a-4ed5-9e8c-7a48a10b7295) + ) + (wire (pts (xy 132.08 64.77) (xy 132.08 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dcda69e-9b6d-4383-8a26-7f32e3205d9b) + ) + (wire (pts (xy 129.54 58.42) (xy 130.81 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 908c3376-a43e-46d7-890d-997eed2f0c1f) + ) + (wire (pts (xy 102.87 81.28) (xy 102.87 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 924f80a7-7c40-487c-9a56-ded4bf18f0e4) + ) + (wire (pts (xy 104.14 60.96) (xy 104.14 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab20cd55-44d4-447f-82b3-2f352df8b373) + ) + (wire (pts (xy 154.94 59.69) (xy 157.48 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b439842e-51af-4025-9977-609bfce485bf) + ) + (wire (pts (xy 209.55 59.69) (xy 213.36 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9694c18-f042-4c2f-9f59-588d34347f93) + ) + (wire (pts (xy 247.65 59.69) (xy 247.65 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c04e917f-dfad-4472-803c-6a2890c96c65) + ) + (wire (pts (xy 248.92 69.85) (xy 248.92 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6a22ca5-7cea-4e94-a3ca-d991f8fd4ce8) + ) + (wire (pts (xy 228.6 59.69) (xy 232.41 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d773bb2e-028c-4871-8e41-43de114c88c1) + ) + (wire (pts (xy 99.06 102.87) (xy 99.06 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e00ecbc0-3ef3-4d26-8144-f41608aa2f3a) + ) + (wire (pts (xy 106.68 59.69) (xy 106.68 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6f30a63-0d5c-4be8-a4e2-9fe34f09a890) + ) + (wire (pts (xy 106.68 67.31) (xy 245.11 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f397a8fb-f737-4e0a-9ccd-1644b2746012) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 165.1 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0905a2a7-85b7-4281-a1a8-b991116bd4e7) + (property "Reference" "U4" (id 0) (at 165.1 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 165.1 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 166.37 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ef54aeba-d2fc-4561-a4de-6c888e27d673)) + (pin "2" (uuid bf437625-c5da-47a2-a442-be1f401dce52)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 95.25 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 21ac2705-67df-4344-88f5-3640cb5b5aba) + (property "Reference" "U1" (id 0) (at 95.885 52.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 95.885 54.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 95.25 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 95.25 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 31e3eb96-b97c-4b83-b610-9e2c6c42e737)) + (pin "2" (uuid b272f8b4-5b38-4497-b7f4-83f8e29cdaca)) + (pin "3" (uuid 99902188-a319-4567-97a0-184f12830454)) + (pin "4" (uuid 5903a392-9b48-4e7a-b2a6-4f49fa865da7)) + (pin "5" (uuid ffffa793-07a6-4b6f-834b-2d7573f6b8fb)) + (pin "6" (uuid 8df6c0d6-cb05-4868-9317-8eaa4a716bea)) + (pin "7" (uuid 574a6915-ba4a-494b-b349-6eb68a21c4b8)) + (pin "8" (uuid 0d55fa77-83ed-4320-8245-b24d2de8c432)) + (pin "9" (uuid 65b50fdf-feee-4994-94b4-d14dc954c2dd)) + (pin "10" (uuid d20e1e43-f5f9-4536-b9e6-89267d54fc6f)) + (pin "11" (uuid 505e60d6-7037-4598-8053-9da78a6087b8)) + (pin "12" (uuid cd2339d8-dd5c-4553-abc7-165243ea6b93)) + (pin "13" (uuid ddaa4462-dd66-4617-a384-1126aff003e8)) + (pin "14" (uuid 86df658e-f2fb-4dae-a7fb-7c9096246789)) + (pin "15" (uuid 47905dc8-022e-447b-9999-84021586d448)) + (pin "16" (uuid faab9356-118c-4190-8013-b93f58e9dcdc)) + (pin "17" (uuid 1ceb7559-105e-4cd3-ab83-2ea296460a23)) + (pin "18" (uuid 1a7cdd6b-8e6e-4326-ae24-4900e1847da7)) + (pin "19" (uuid 5e0e5629-9f6f-43ec-ab5f-704ff591ec7f)) + (pin "20" (uuid 99703528-3e20-40c8-93a1-b90b627cfbc0)) + (pin "21" (uuid 53060765-e9e2-4afd-b5de-6066ecab9fb1)) + (pin "22" (uuid 1e4ab88d-ea4e-4420-925b-ab069cc1b772)) + (pin "23" (uuid 10f4dd13-274a-4e56-982e-3d651f0dacb0)) + (pin "24" (uuid 02f97f45-42b8-4bed-8842-ae9f746b0e23)) + (pin "25" (uuid 5ae36ae1-6f33-4705-8c57-f1270c9617d6)) + (pin "26" (uuid 92889fb0-5b5d-46f9-b211-7b866d375196)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 219.71 82.55 180) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2c00eac3-9b61-4453-a03b-eedd1cb7e660) + (property "Reference" "U1" (id 0) (at 223.52 81.915 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 223.52 84.455 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 219.71 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 219.71 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 81e9f795-f4aa-40e1-949f-d602420777f8)) + (pin "2" (uuid 6146d90e-1292-4cbf-9f2f-5c28fce7d755)) + (pin "3" (uuid 685be617-287d-4a8b-8359-8d448b8fcb07)) + (pin "4" (uuid 3c2e2a6f-bac2-4a13-986b-cf067cffeab5)) + (pin "5" (uuid cf9fbd96-b34c-45e5-932c-a5344026d050)) + (pin "6" (uuid 12240b33-8e90-4d8d-a6b9-fb9b9f87e633)) + (pin "7" (uuid cec31561-030e-499d-91a9-b0c98e1d9dac)) + (pin "8" (uuid 35feea92-a014-4c74-bba0-078e55f8ceba)) + (pin "9" (uuid 1cc8abf7-a1d8-48fb-a093-73a66edd1057)) + (pin "10" (uuid fc633f07-40e0-473e-a329-c93464dcfa23)) + (pin "11" (uuid 71266d61-9619-4fa0-93d2-2aa8b91af921)) + (pin "12" (uuid 9da33bae-62e2-4ea7-9b28-16efe3eed6c1)) + (pin "13" (uuid 889f490d-42c6-4826-82dd-f706f4490c71)) + (pin "14" (uuid 2f061c1c-641c-4ab6-8dc3-ef6a2dff18cb)) + (pin "15" (uuid 6cd09aa9-febc-4eb5-b80f-6806250dee83)) + (pin "16" (uuid 93a08a33-9448-4e11-9c3c-f8d6c3825dab)) + (pin "17" (uuid 8c10cc95-e3bf-457c-9b33-4c050ae6a8e5)) + (pin "18" (uuid bf98a9af-4274-40c4-8e1b-46b9c40e41aa)) + (pin "19" (uuid 1d49d46d-49a2-475c-9606-5fa3cd5d127c)) + (pin "20" (uuid 6a7bcc96-9cce-4020-a86d-8b11fb78a8f4)) + (pin "21" (uuid fc6de390-b887-459f-af02-a61f762dd31d)) + (pin "22" (uuid 164cf2c0-2084-48fc-8aed-2e7681029f3f)) + (pin "23" (uuid 503145c0-16c3-413e-8bac-3b954bec69d4)) + (pin "24" (uuid d146b3e8-1468-4894-9281-1bb41c7d1c0b)) + (pin "25" (uuid 1b16b93a-e2b0-4ae3-8160-28d06a3a016a)) + (pin "26" (uuid a0dc4d8b-adc2-48e8-9108-380fae41629b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 240.03 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4c66514b-cd6f-4685-b038-8ae491d68ec0) + (property "Reference" "U8" (id 0) (at 240.03 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 240.03 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 241.3 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d260619d-0bcf-4059-b050-2d333c22db25)) + (pin "2" (uuid bb6050f7-5093-46f8-8841-b7a5eb582a31)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 118.11 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 69030a5c-0c8a-41f8-b596-2f8d580f2e32) + (property "Reference" "U2" (id 0) (at 118.11 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 118.11 53.34 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 118.11 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 118.11 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3ba8e1a6-975f-4c77-b6e5-d20b5e28c498)) + (pin "2" (uuid 9faa8f82-28ed-4df2-bc11-7ff04f379bb2)) + (pin "3" (uuid 118030d3-e8a2-40ae-920e-a6eab6da25d7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 182.88 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7b37df11-415c-47e4-beca-cb44a616ac82) + (property "Reference" "U5" (id 0) (at 182.88 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 182.88 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 184.15 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 184.15 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid df4f6560-b7a9-4613-9a83-5e52a4474cfc)) + (pin "2" (uuid dd17bd5e-9c5f-48ee-8da7-abf35e892c65)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 119.38 102.87 180) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7e58b932-8f7b-4940-a221-c4e13510d1f5) + (property "Reference" "U1" (id 0) (at 123.19 102.235 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 123.19 104.775 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 119.38 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 119.38 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e1faf68-8747-4a4b-95eb-50fc3d58d141)) + (pin "2" (uuid 443f901b-2ad8-4b1c-b3ad-41119b2b4889)) + (pin "3" (uuid aa792008-d1db-4f16-8fdc-093f839a2844)) + (pin "4" (uuid 51565e8a-a639-44d0-b8d3-402934f573cf)) + (pin "5" (uuid e6ef0656-5177-4046-bf59-9ec0d2145792)) + (pin "6" (uuid 7a72b111-4e9d-4547-b75c-cdad6b19f7f9)) + (pin "7" (uuid e46525d9-6c16-41d2-b54c-0bf81b060cc1)) + (pin "8" (uuid 44daedd2-e5bf-4022-af40-1d7821e8e3e8)) + (pin "9" (uuid 94a72cfc-df8d-4316-afdb-b30032726faf)) + (pin "10" (uuid 943242cf-bc0d-48c5-8a68-4644c239a611)) + (pin "11" (uuid 7449692e-15d2-475a-86aa-c833abf31811)) + (pin "12" (uuid 3488d6b9-5d42-4497-a96d-804b524639a7)) + (pin "13" (uuid 77d51ae4-7661-45af-a2e8-9c7a10702aa2)) + (pin "14" (uuid 8a22fdbc-c6af-4cdc-889a-c4b936cf6985)) + (pin "15" (uuid a69e609f-a1e0-4949-b123-8dcdf7e04844)) + (pin "16" (uuid 91900573-16a7-4146-8023-a021eb645014)) + (pin "17" (uuid a53f9875-2039-4ac9-ae5e-17583cdd1dd1)) + (pin "18" (uuid b72a20da-2e6c-44a4-9b8f-0299e8058f37)) + (pin "19" (uuid efac7ed5-86bb-43da-b710-5c073dc4c26d)) + (pin "20" (uuid 8d0b6db4-4ccd-4892-965e-678ea3ad649a)) + (pin "21" (uuid 77d53da2-7ca1-40d1-8c7e-a2b5b5c13ecd)) + (pin "22" (uuid 4f2ed2cf-2b88-4755-9681-1c0a03002082)) + (pin "23" (uuid f8430eaa-07fd-4ce2-8be6-6cfbe468d72f)) + (pin "24" (uuid 990499e7-ca1b-4e35-9f32-78c85fee713b)) + (pin "25" (uuid 5d8f4abe-ba54-41f9-8bb9-3217df6825ed)) + (pin "26" (uuid c61cccfd-b441-46aa-ad42-eb6b146af7ec)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 143.51 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 95480346-d0be-42bc-b296-3dcc1412ea1d) + (property "Reference" "U3" (id 0) (at 143.51 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 143.51 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 143.51 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e042f49a-9781-4089-b931-300c7f20cfaf)) + (pin "2" (uuid 1b04ef84-72c2-47ef-87b2-38e2c1586ccd)) + (pin "3" (uuid 72c76607-687a-45e3-9f6a-899751d41fef)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 201.93 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bd9a827c-931e-45ef-891c-fbfe5744e498) + (property "Reference" "U6" (id 0) (at 201.93 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 201.93 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 203.2 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 203.2 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 952f7df2-8566-408a-aaa3-bbf3209e31b7)) + (pin "2" (uuid 49893832-4956-4c72-89ab-6dfbe6b44400)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 220.98 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c377e19f-c7ca-49fd-9e9f-84aae4fd383b) + (property "Reference" "U7" (id 0) (at 220.98 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 220.98 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 222.25 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 222.25 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c76fc859-a8a6-4763-b491-b7abc977d7ed)) + (pin "2" (uuid 6c95ab11-2688-4697-8811-e7c623be4c0f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 81.28 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea7aee39-e445-47c0-a0fc-a14110af2fc7) + (property "Reference" "U1" (id 0) (at 120.65 80.645 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 120.65 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 116.84 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 902e6c31-377b-4003-ab01-842a6160a5e7)) + (pin "2" (uuid 29e3266c-aa2b-4538-b452-82d4f2d6722d)) + (pin "3" (uuid cd5da12b-5892-42dd-a233-97bdb93caecc)) + (pin "4" (uuid 69c22052-81b7-46a8-b56d-10db65c98230)) + (pin "5" (uuid 6d03f634-0006-4687-95c2-65bde039175f)) + (pin "6" (uuid fcb52096-2344-45b0-8b5a-9b4a17083f51)) + (pin "7" (uuid efe68332-6550-485c-a8dc-b3dec373aa4e)) + (pin "8" (uuid 718d99d5-d404-4d63-90d9-50b1a1264ff5)) + (pin "9" (uuid 5725f0ee-727b-4392-a449-c796151cd8e1)) + (pin "10" (uuid 7b1bb63a-1b5d-4b97-b381-72e69bdbe078)) + (pin "11" (uuid 6047717f-dad9-46bc-a77d-a595b669f0a9)) + (pin "12" (uuid 973ea757-32b0-4654-be07-15b6fd810aa9)) + (pin "13" (uuid 007b1778-81a6-4e46-87ba-afd01c649d45)) + (pin "14" (uuid bb07b630-7877-4d90-903d-289967244c7b)) + (pin "15" (uuid 726847b1-d783-4473-8a68-8e4e8896185d)) + (pin "16" (uuid f707f5e2-ac79-47bf-9813-7d82659e0529)) + (pin "17" (uuid ed6cc894-0660-4640-9d77-0fe83dc3add6)) + (pin "18" (uuid 34c16d52-f48e-46ab-9c79-1df8e67329c4)) + (pin "19" (uuid 70bdc00b-d343-49d7-afe8-dbe04fdf1946)) + (pin "20" (uuid f4a21add-29bc-4168-86a4-387d8396040f)) + (pin "21" (uuid 26c6764e-8c97-42f9-b32f-5ad7fffac6e0)) + (pin "22" (uuid 6164ae2e-dae8-41ed-98ee-790942ca5e33)) + (pin "23" (uuid f711b7c4-ed4d-4642-aa29-5b36564a54e5)) + (pin "24" (uuid c844afcf-5674-4ea5-b4f7-eb9e02acc417)) + (pin "25" (uuid f47557de-6514-4ffb-a2de-85e84fd99c7c)) + (pin "26" (uuid 138917ed-270a-44c9-8702-ee24d6b48133)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/21ac2705-67df-4344-88f5-3640cb5b5aba" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/7e58b932-8f7b-4940-a221-c4e13510d1f5" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/ea7aee39-e445-47c0-a0fc-a14110af2fc7" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/2c00eac3-9b61-4453-a03b-eedd1cb7e660" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/69030a5c-0c8a-41f8-b596-2f8d580f2e32" + (reference "U2") (unit 1) (value "d_xor") (footprint "") + ) + (path "/95480346-d0be-42bc-b296-3dcc1412ea1d" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/0905a2a7-85b7-4281-a1a8-b991116bd4e7" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7b37df11-415c-47e4-beca-cb44a616ac82" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bd9a827c-931e-45ef-891c-fbfe5744e498" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c377e19f-c7ca-49fd-9e9f-84aae4fd383b" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4c66514b-cd6f-4685-b038-8ae491d68ec0" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4046_sub/CD4046_sub.proj b/library/SubcircuitLibrary/CD4046_sub/CD4046_sub.proj new file mode 100644 index 000000000..4132a33d6 --- /dev/null +++ b/library/SubcircuitLibrary/CD4046_sub/CD4046_sub.proj @@ -0,0 +1 @@ +schematicFile CD4046_sub.kicad_sch diff --git a/library/SubcircuitLibrary/CD4046_sub/CD4046_test.cir b/library/SubcircuitLibrary/CD4046_sub/CD4046_test.cir new file mode 100644 index 000000000..2a8c5be05 --- /dev/null +++ b/library/SubcircuitLibrary/CD4046_sub/CD4046_test.cir @@ -0,0 +1,9 @@ +.title KiCad schematic +v2 Net-_U1-Pad2_ GND pulse +v1 Net-_U1-Pad1_ GND pulse +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U2-Pad3_ Net-_U2-Pad4_ dac_bridge_2 +U3 Net-_U2-Pad3_ plot_v1 +U4 Net-_U2-Pad4_ plot_v1 +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ adc_bridge_2 +X1 Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U2-Pad1_ Net-_U2-Pad2_ CD4046 +.end diff --git a/library/SubcircuitLibrary/CD4046_sub/CD4046_test.kicad_sch b/library/SubcircuitLibrary/CD4046_sub/CD4046_test.kicad_sch new file mode 100644 index 000000000..574dac4e8 --- /dev/null +++ b/library/SubcircuitLibrary/CD4046_sub/CD4046_test.kicad_sch @@ -0,0 +1,509 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid c87d97e8-222e-41ac-aee0-da87ce0b4e00) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_2" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_2" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_2_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_2_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -1.27 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -1.27 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_2" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_2" (id 1) (at 1.27 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_2_0_1" + (rectangle (start -6.35 5.08) (end 8.89 -2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_2_1_1" + (pin input line (at -11.43 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 -1.27 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -1.27 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:CD4046" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "CD4046" (id 1) (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "CD4046_0_1" + (rectangle (start -5.08 7.62) (end 5.08 -6.35) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "CD4046_1_1" + (pin input line (at -5.08 3.81 0) (length 2.54) + (name "SIG_IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -5.08 0 0) (length 2.54) + (name "FCLK" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 5.08 6.35 0) (length 2.54) + (name "PC_OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 5.08 2.54 0) (length 2.54) + (name "VCO_OUT" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 82.55 86.36) (diameter 0) (color 0 0 0 0) + (uuid 4d4eba96-f9eb-4ef3-8148-1d89881526f5) + ) + + (wire (pts (xy 160.02 52.07) (xy 160.02 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03f32516-b9fa-400f-9b72-ca5e8cb94c0d) + ) + (wire (pts (xy 185.42 53.34) (xy 191.77 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1180a5fa-9b35-4495-b334-9e340caf5a0c) + ) + (wire (pts (xy 185.42 55.88) (xy 189.23 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46134a1b-1b90-4de9-aa05-1532b0d865e8) + ) + (wire (pts (xy 133.35 55.88) (xy 133.35 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49e6c16f-e74a-47f6-b137-af798fb6b6de) + ) + (wire (pts (xy 191.77 53.34) (xy 191.77 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5348f2fc-5f03-4533-b6f1-908e469d42d0) + ) + (wire (pts (xy 86.36 86.36) (xy 82.55 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bad9bd0-10fd-48e2-9537-ac0d7ca60a75) + ) + (wire (pts (xy 143.51 55.88) (xy 160.02 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e32297c-f0fa-483b-b2ac-ca6f1206d546) + ) + (wire (pts (xy 81.28 86.36) (xy 81.28 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d09e423-e007-4737-ace0-985aad304da8) + ) + (wire (pts (xy 86.36 63.5) (xy 97.79 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8192f2c9-ec6f-44e1-864a-c9b31700fdfa) + ) + (wire (pts (xy 82.55 57.15) (xy 82.55 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 947a70c7-374c-409c-9853-453a886720a4) + ) + (wire (pts (xy 143.51 52.07) (xy 160.02 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b22423e-e874-42df-be92-ebee111b1885) + ) + (wire (pts (xy 97.79 34.29) (xy 97.79 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad1c1a38-4ebd-4d23-a71a-a95a3cd4cf58) + ) + (wire (pts (xy 127 58.42) (xy 133.35 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd3c9f99-f2b9-4f21-8e26-96d99b51ed5c) + ) + (wire (pts (xy 189.23 66.04) (xy 193.04 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1590bda-0a60-45df-ad3f-1166fa0f1a1c) + ) + (wire (pts (xy 85.09 34.29) (xy 97.79 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d17ac7b7-882e-4d8f-b846-a61f594cbee3) + ) + (wire (pts (xy 189.23 55.88) (xy 189.23 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d180f8d8-9407-417c-9422-f6b82aece924) + ) + (wire (pts (xy 127 55.88) (xy 133.35 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc3f472a-7137-4eb5-a0c2-fa5eaca150a0) + ) + (wire (pts (xy 82.55 86.36) (xy 81.28 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e79a4384-8447-4292-97fb-c99c7297afbd) + ) + (wire (pts (xy 85.09 57.15) (xy 82.55 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3990ce4-a795-4a86-98ff-ed037e4dd7f9) + ) + (wire (pts (xy 97.79 63.5) (xy 97.79 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f82992ea-e24c-4661-abe7-9287766eed75) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 193.04 71.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 18fd132d-fc66-4e0c-8b00-1c0590405a23) + (property "Reference" "U4" (id 0) (at 196.85 57.15 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 196.85 60.96 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 193.04 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 193.04 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid dec610a8-b711-4b92-9c8a-ba36762c3831)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 85.09 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 98d01266-63a7-489d-a55a-37b42cfe5b5b) + (property "Reference" "v1" (id 0) (at 90.17 42.545 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 90.17 46.355 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 90.17 50.165 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 85.09 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 30d909ae-ffb7-42f7-be46-48d0ddbec4ee)) + (pin "2" (uuid 8d6b21ee-9d4e-46fc-a743-8411a5037253)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 191.77 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bd76e387-4559-4476-8291-f8e0bb45c8c9) + (property "Reference" "U3" (id 0) (at 195.58 41.91 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 195.58 45.72 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 191.77 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 191.77 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 9a0c1ca1-37fe-4d3c-9348-6097ed711532)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 86.36 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cb05a20b-c58d-48c0-b0d6-b683d411154a) + (property "Reference" "v2" (id 0) (at 91.44 71.755 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 91.44 75.565 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 91.44 79.375 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 86.36 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 821cf09f-0362-441b-9f36-55a5d69084e5)) + (pin "2" (uuid f8d3b91a-4436-4b15-a6ee-1dc4d7c21b11)) + ) + + (symbol (lib_id "eSim_Subckt:CD4046") (at 138.43 58.42 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid ce800366-cf42-4b54-a880-3c2069a91e36) + (property "Reference" "X1" (id 0) (at 140.97 59.69 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "CD4046" (id 1) (at 134.62 62.23 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 138.43 58.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 138.43 58.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 02cc6306-5225-4503-94af-0c1b3b09fbab)) + (pin "2" (uuid c20fe378-a75c-4a88-92bb-2823fe24f7bb)) + (pin "3" (uuid c08040a7-4361-4643-a77c-0ca09c7caf6e)) + (pin "4" (uuid e660348d-9774-44db-a175-532f658467e4)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_2") (at 113.03 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d8155a67-1dea-4516-b382-1712547f143d) + (property "Reference" "U1" (id 0) (at 112.395 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_2" (id 1) (at 112.395 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 113.03 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 113.03 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 563de6c6-e407-4304-936a-b82989971c39)) + (pin "2" (uuid 0971b5aa-3e1d-469d-9a24-d6f2ba132c1c)) + (pin "3" (uuid bcf9ef70-4972-44dd-925b-d7240fe63ddf)) + (pin "4" (uuid a9796b01-1fcf-41c7-a183-058fb25fa482)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 81.28 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f830e84d-8154-4870-8838-e332d0e912a7) + (property "Reference" "#PWR0101" (id 0) (at 81.28 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 81.28 99.06 0)) + (property "Footprint" "" (id 2) (at 81.28 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 81.28 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6a09db61-4c24-4e30-8575-79fb848422d0)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_2") (at 171.45 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9fcdaa5-266b-4512-932e-bde3409af4d3) + (property "Reference" "U2" (id 0) (at 172.72 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_2" (id 1) (at 172.72 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a491bd8-1f7b-4a17-a30b-48b402075d1c)) + (pin "2" (uuid 4caabd2f-1658-4c7d-9829-ac7e5ea49368)) + (pin "3" (uuid 88b32765-b64e-4460-8f54-d9c266d2e681)) + (pin "4" (uuid e45d49d0-7619-4c89-9266-cc468fb3d198)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/f830e84d-8154-4870-8838-e332d0e912a7" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/d8155a67-1dea-4516-b382-1712547f143d" + (reference "U1") (unit 1) (value "adc_bridge_2") (footprint "") + ) + (path "/f9fcdaa5-266b-4512-932e-bde3409af4d3" + (reference "U2") (unit 1) (value "dac_bridge_2") (footprint "") + ) + (path "/bd76e387-4559-4476-8291-f8e0bb45c8c9" + (reference "U3") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/18fd132d-fc66-4e0c-8b00-1c0590405a23" + (reference "U4") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/ce800366-cf42-4b54-a880-3c2069a91e36" + (reference "X1") (unit 1) (value "CD4046") (footprint "") + ) + (path "/98d01266-63a7-489d-a55a-37b42cfe5b5b" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/cb05a20b-c58d-48c0-b0d6-b683d411154a" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4046_sub/CD4046_test.proj b/library/SubcircuitLibrary/CD4046_sub/CD4046_test.proj new file mode 100644 index 000000000..ee53b7164 --- /dev/null +++ b/library/SubcircuitLibrary/CD4046_sub/CD4046_test.proj @@ -0,0 +1 @@ +schematicFile CD4046_test.kicad_sch diff --git a/library/SubcircuitLibrary/CD4051_sub/CD4051_sub.cir b/library/SubcircuitLibrary/CD4051_sub/CD4051_sub.cir new file mode 100644 index 000000000..1acc8ce48 --- /dev/null +++ b/library/SubcircuitLibrary/CD4051_sub/CD4051_sub.cir @@ -0,0 +1,37 @@ +.title KiCad schematic +U29 Net-_U21-Pad3_ Net-_U18-Pad2_ Net-_U29-Pad3_ d_and +U21 Net-_U1-Pad9_ Net-_U19-Pad2_ Net-_U21-Pad3_ d_and +U30 Net-_U22-Pad3_ Net-_U18-Pad2_ Net-_U30-Pad3_ d_and +U31 Net-_U23-Pad3_ Net-_U18-Pad2_ Net-_U31-Pad3_ d_and +U22 Net-_U17-Pad2_ Net-_U1-Pad10_ Net-_U22-Pad3_ d_and +U18 Net-_U1-Pad11_ Net-_U18-Pad2_ d_inverter +U19 Net-_U1-Pad10_ Net-_U19-Pad2_ d_inverter +U34 Net-_U26-Pad3_ Net-_U1-Pad11_ Net-_U34-Pad3_ d_and +U33 Net-_U25-Pad3_ Net-_U1-Pad11_ Net-_U2-Pad2_ d_and +U32 Net-_U24-Pad3_ Net-_U1-Pad11_ Net-_U32-Pad3_ d_and +U35 Net-_U27-Pad3_ Net-_U1-Pad11_ Net-_U3-Pad2_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ PORT +U3 Net-_U1-Pad8_ Net-_U3-Pad2_ Net-_U13-Pad2_ d_and +U27 Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U27-Pad3_ d_and +U23 Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U23-Pad3_ d_and +U24 Net-_U17-Pad2_ Net-_U19-Pad2_ Net-_U24-Pad3_ d_and +U25 Net-_U1-Pad9_ Net-_U19-Pad2_ Net-_U25-Pad3_ d_and +U26 Net-_U17-Pad2_ Net-_U1-Pad10_ Net-_U26-Pad3_ d_and +U20 Net-_U17-Pad2_ Net-_U19-Pad2_ Net-_U20-Pad3_ d_and +U28 Net-_U20-Pad3_ Net-_U18-Pad2_ Net-_U1-Pad1_ d_and +U17 Net-_U1-Pad9_ Net-_U17-Pad2_ d_inverter +U15 Net-_U14-Pad3_ Net-_U15-Pad2_ Net-_U1-Pad12_ d_or +U16 Net-_U12-Pad3_ Net-_U13-Pad3_ Net-_U15-Pad2_ d_or +U13 Net-_U13-Pad1_ Net-_U13-Pad2_ Net-_U13-Pad3_ d_or +U14 Net-_U10-Pad3_ Net-_U11-Pad3_ Net-_U14-Pad3_ d_or +U4 Net-_U1-Pad7_ Net-_U34-Pad3_ Net-_U13-Pad1_ d_and +U9 Net-_U1-Pad5_ Net-_U32-Pad3_ Net-_U12-Pad1_ d_and +U2 Net-_U1-Pad6_ Net-_U2-Pad2_ Net-_U12-Pad2_ d_and +U7 Net-_U1-Pad1_ Net-_U1-Pad1_ Net-_U10-Pad1_ d_and +U5 Net-_U1-Pad2_ Net-_U29-Pad3_ Net-_U10-Pad2_ d_and +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_or +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U12-Pad3_ d_or +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_or +U6 Net-_U1-Pad3_ Net-_U30-Pad3_ Net-_U11-Pad1_ d_and +U8 Net-_U1-Pad4_ Net-_U31-Pad3_ Net-_U11-Pad2_ d_and +.end diff --git a/library/SubcircuitLibrary/CD4051_sub/CD4051_sub.kicad_sch b/library/SubcircuitLibrary/CD4051_sub/CD4051_sub.kicad_sch new file mode 100644 index 000000000..bdd93afb8 --- /dev/null +++ b/library/SubcircuitLibrary/CD4051_sub/CD4051_sub.kicad_sch @@ -0,0 +1,2553 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid b2b55c62-a671-40de-b9f5-287b8599c671) + + (paper "A1") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 200.66 74.93) (diameter 0) (color 0 0 0 0) + (uuid 0ca5cbe4-b88c-47b6-b9bb-0094829d95f9) + ) + (junction (at 440.69 95.25) (diameter 0) (color 0 0 0 0) + (uuid 118cd8a4-afaf-4d70-8426-d70a360354cb) + ) + (junction (at 441.96 106.68) (diameter 0) (color 0 0 0 0) + (uuid 1faa4440-550d-409f-8c3a-f08baa8c69e5) + ) + (junction (at 450.85 118.11) (diameter 0) (color 0 0 0 0) + (uuid 2400a4d9-d80a-4549-b22a-e59b2c7a1e7b) + ) + (junction (at 384.81 95.25) (diameter 0) (color 0 0 0 0) + (uuid 2a15c531-4e91-4de7-9340-02f55ee0a57d) + ) + (junction (at 394.97 97.79) (diameter 0) (color 0 0 0 0) + (uuid 3548a065-ecfd-44cf-b5b3-3dac7151bddf) + ) + (junction (at 449.58 95.25) (diameter 0) (color 0 0 0 0) + (uuid 36fcaa8c-1137-466d-8d97-13d08220aee8) + ) + (junction (at 388.62 95.25) (diameter 0) (color 0 0 0 0) + (uuid 37b88e67-5a6f-4e78-b8a3-f8104c6692cc) + ) + (junction (at 386.08 97.79) (diameter 0) (color 0 0 0 0) + (uuid 391a56b0-17f3-43a5-a108-dd4cc61a2be5) + ) + (junction (at 436.88 95.25) (diameter 0) (color 0 0 0 0) + (uuid 40b61d20-8de9-46ba-844d-412376e994b8) + ) + (junction (at 452.12 118.11) (diameter 0) (color 0 0 0 0) + (uuid 4abbe623-6989-411f-bcad-ee60020a77fa) + ) + (junction (at 435.61 106.68) (diameter 0) (color 0 0 0 0) + (uuid 4ba272cd-9dd4-4dbb-a47c-e4ade279d7da) + ) + (junction (at 391.16 95.25) (diameter 0) (color 0 0 0 0) + (uuid 711e4e32-3269-40db-bba9-93254387eb88) + ) + (junction (at 393.7 95.25) (diameter 0) (color 0 0 0 0) + (uuid 79ae7008-b4ce-4b1b-b756-7d222959a31d) + ) + (junction (at 398.78 100.33) (diameter 0) (color 0 0 0 0) + (uuid 83b921cd-9d0a-4f6f-b770-d3c03d27f215) + ) + (junction (at 397.51 100.33) (diameter 0) (color 0 0 0 0) + (uuid 86047bb9-ed81-4870-bbbf-d6fd0398ea9a) + ) + (junction (at 453.39 118.11) (diameter 0) (color 0 0 0 0) + (uuid 8ad4c48e-34b0-4a69-9cb1-647cdb0c115b) + ) + (junction (at 392.43 97.79) (diameter 0) (color 0 0 0 0) + (uuid 94974ad6-16a4-4cb1-8a6a-89df1b786f06) + ) + (junction (at 389.89 97.79) (diameter 0) (color 0 0 0 0) + (uuid be8e8aa9-615c-426b-815f-cf6e43efa83b) + ) + (junction (at 444.5 106.68) (diameter 0) (color 0 0 0 0) + (uuid c244168a-b314-40c9-bd6d-36c6007f4038) + ) + (junction (at 396.24 100.33) (diameter 0) (color 0 0 0 0) + (uuid d19c2ab5-49a3-4e5b-8657-f2494698eb40) + ) + (junction (at 400.05 100.33) (diameter 0) (color 0 0 0 0) + (uuid dc2408c6-d120-479e-8f22-2cd0d7cae0ca) + ) + + (wire (pts (xy 389.89 97.79) (xy 392.43 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00ebfbe0-f46e-4514-8dfa-47b9c95a4e4c) + ) + (wire (pts (xy 255.27 166.37) (xy 255.27 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 012a82a4-322d-402b-a56e-a7bda1747bf3) + ) + (wire (pts (xy 558.8 100.33) (xy 558.8 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02afc1d5-15b2-43b7-9ec5-147046206160) + ) + (wire (pts (xy 398.78 274.32) (xy 398.78 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05a53317-0189-4e48-97b8-d4628ca87991) + ) + (wire (pts (xy 595.63 298.45) (xy 739.14 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0600340d-2bf2-4a2b-9210-f2bcee5b6edb) + ) + (wire (pts (xy 127 74.93) (xy 200.66 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c530f65-cc33-4ae2-bdb4-ddfc3a2bd0b8) + ) + (wire (pts (xy 400.05 100.33) (xy 410.21 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ca468ef-a114-479e-ae38-e67472de5cc7) + ) + (wire (pts (xy 127 135.89) (xy 195.58 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d2f51b5-2ab4-4ba4-b770-c722493f0750) + ) + (wire (pts (xy 562.61 191.77) (xy 453.39 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d3f658a-a095-4114-bef8-575582cdee3c) + ) + (wire (pts (xy 200.66 40.64) (xy 200.66 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1297ed39-3b3a-40e4-a0a7-30d8659cb3fe) + ) + (wire (pts (xy 228.6 152.4) (xy 228.6 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12d58adb-7023-4abc-ad08-2c6fccee9e8f) + ) + (wire (pts (xy 196.85 133.35) (xy 196.85 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 156a2464-6b82-4fb7-a25e-cd590b586372) + ) + (wire (pts (xy 410.21 100.33) (xy 410.21 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18fefc6e-bad9-49d6-b82a-b14676adc1c6) + ) + (wire (pts (xy 398.78 100.33) (xy 400.05 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a4746ed-1719-4b0a-a9eb-6e9dfb2b9c1e) + ) + (wire (pts (xy 431.8 118.11) (xy 450.85 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ab276ea-b9e2-4b47-98c8-27b36c74731c) + ) + (wire (pts (xy 519.43 185.42) (xy 388.62 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e750ac9-1ca2-466e-a10a-8707af4d5faf) + ) + (wire (pts (xy 392.43 97.79) (xy 394.97 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2050b6d3-91b7-422b-98b9-73e4eb7c9280) + ) + (wire (pts (xy 414.02 97.79) (xy 414.02 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20c9aa9a-753a-402f-a6fa-7665888c11be) + ) + (wire (pts (xy 542.29 186.69) (xy 562.61 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21313e9b-f4da-429b-98b6-c62a4b8a13fe) + ) + (wire (pts (xy 167.64 392.43) (xy 798.83 392.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21539253-a49a-4971-b161-acfa340d54fd) + ) + (wire (pts (xy 127 138.43) (xy 190.5 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21bc285d-ac4b-4e95-a3a8-e00d53fe32e2) + ) + (wire (pts (xy 186.69 222.25) (xy 195.58 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 222f1cf0-a907-4324-9d70-5440130d3b68) + ) + (wire (pts (xy 516.89 158.75) (xy 386.08 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23198400-7272-4eff-8d7f-9ca6ef4950a8) + ) + (wire (pts (xy 284.48 140.97) (xy 252.73 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2346a3bb-c3be-4805-8b22-c482f53aa8dd) + ) + (wire (pts (xy 271.78 85.09) (xy 287.02 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23b2fd92-1cd7-46b7-aa9f-dc2b34adb513) + ) + (wire (pts (xy 223.52 76.2) (xy 248.92 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24ab45b9-7a86-4364-b8a2-61e6f782f989) + ) + (wire (pts (xy 180.34 93.98) (xy 198.12 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26fc2fec-0bb7-444f-85f0-c078d1590c87) + ) + (wire (pts (xy 392.43 270.51) (xy 392.43 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 281f48d0-f06f-4e1d-a223-0d6c2acf33ca) + ) + (wire (pts (xy 281.94 139.7) (xy 251.46 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28b957c4-6e96-4add-a694-5f50c248d9aa) + ) + (wire (pts (xy 199.39 132.08) (xy 163.83 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28bdba8e-ddb8-4119-acea-51227344e088) + ) + (wire (pts (xy 232.41 120.65) (xy 232.41 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a69d8aa-aa9f-4a8d-8c60-6a415cccbc2f) + ) + (wire (pts (xy 572.77 303.53) (xy 400.05 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ad4551e-a09f-4ed2-bffa-b1f6add6ae93) + ) + (wire (pts (xy 441.96 106.68) (xy 444.5 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b7afddd-d464-479c-8fe8-4833b7b1e783) + ) + (wire (pts (xy 391.16 95.25) (xy 393.7 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bc73f52-7eee-43cf-a2ae-12925e431d87) + ) + (wire (pts (xy 127 133.35) (xy 196.85 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c031d13-7add-4f0b-828d-632dedd778b0) + ) + (wire (pts (xy 190.5 196.85) (xy 196.85 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ed6cb2a-c0ea-4822-8005-c1e94f456503) + ) + (wire (pts (xy 570.23 271.78) (xy 570.23 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3016ec5b-a138-489f-aa63-e3fef7bd7b90) + ) + (wire (pts (xy 510.54 106.68) (xy 510.54 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30695d16-cbd4-49a6-bf5f-1ec8ac66a783) + ) + (wire (pts (xy 410.21 118.11) (xy 416.56 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3153cdb5-4f19-4a41-acdc-1c73f51c31fc) + ) + (wire (pts (xy 739.14 431.8) (xy 739.14 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31815124-31e0-499f-bfb3-e6d4a5c6e822) + ) + (wire (pts (xy 251.46 139.7) (xy 251.46 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 325d320b-a7d5-46ee-aa4b-1dbc228b5a31) + ) + (wire (pts (xy 513.08 128.27) (xy 435.61 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 32e6a4f3-5e42-46fc-9fab-b263277ac013) + ) + (wire (pts (xy 565.15 254) (xy 397.51 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 330bd347-98c0-46fd-ad2e-24da58235173) + ) + (wire (pts (xy 391.16 245.11) (xy 391.16 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 332b6533-62a5-4bfe-aadd-7714c7e6fcea) + ) + (wire (pts (xy 452.12 118.11) (xy 453.39 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35574f0d-4f5b-43dc-a4b6-6eb8c52c48f0) + ) + (wire (pts (xy 284.48 151.13) (xy 284.48 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36430abc-f9d7-4d19-939e-027f24ec8aba) + ) + (wire (pts (xy 222.25 100.33) (xy 251.46 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3815411d-3523-4622-845a-95be19add4b5) + ) + (wire (pts (xy 251.46 162.56) (xy 256.54 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 385814b3-1606-43af-9e58-de0809c872d9) + ) + (wire (pts (xy 154.94 411.48) (xy 772.16 411.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38854436-257a-4923-b7c4-de893449eb54) + ) + (wire (pts (xy 226.06 132.08) (xy 226.06 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a213b0b-31ee-4bb1-a79c-d2e59dbf4de5) + ) + (wire (pts (xy 228.6 118.11) (xy 252.73 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b76a271-b4f4-44d4-a009-695f44bb3d03) + ) + (wire (pts (xy 285.75 142.24) (xy 254 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c4be12f-f917-458b-984e-548be7537ef9) + ) + (wire (pts (xy 220.98 92.71) (xy 248.92 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e05204e-7d82-4e9c-81a3-fe603cfa9d20) + ) + (wire (pts (xy 440.69 212.09) (xy 440.69 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e654150-5621-4a35-84cf-f44aceb5579b) + ) + (wire (pts (xy 252.73 140.97) (xy 252.73 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e97c81a-220b-4ff3-8aa4-7b4928577010) + ) + (wire (pts (xy 163.83 401.32) (xy 783.59 401.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ea6a07c-fde6-4f78-a960-634d9fc1ba2a) + ) + (wire (pts (xy 516.89 156.21) (xy 436.88 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f0364dd-b422-4ed6-8f87-9fa073430864) + ) + (wire (pts (xy 186.69 140.97) (xy 186.69 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 401785a3-af9e-4da0-9269-6824abd88dfa) + ) + (wire (pts (xy 394.97 97.79) (xy 414.02 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 420ef74d-1542-4c16-9a0b-d1aea28bbe11) + ) + (wire (pts (xy 386.08 97.79) (xy 389.89 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 429478ed-9dad-4d98-8a0a-b6aeab762faa) + ) + (wire (pts (xy 278.13 223.52) (xy 280.67 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45a21da1-04f6-44ec-ad1d-8dbe4d7e2771) + ) + (wire (pts (xy 252.73 120.65) (xy 232.41 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47398db8-3ce7-429b-be8d-f8436dab00dc) + ) + (wire (pts (xy 528.32 247.65) (xy 444.5 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 493c7735-8860-4c66-ac6e-48cfae3c2a78) + ) + (wire (pts (xy 817.88 128.27) (xy 817.88 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49eb8752-6a04-41ba-aea5-a4893366afeb) + ) + (wire (pts (xy 570.23 274.32) (xy 398.78 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b5533a0-976e-450b-ae2e-ea60c49b61fb) + ) + (wire (pts (xy 393.7 295.91) (xy 393.7 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b9f794f-4514-4361-99ff-0b8c566e8b00) + ) + (wire (pts (xy 232.41 176.53) (xy 218.44 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c0a204f-d257-4e34-9305-92ff05d61a56) + ) + (wire (pts (xy 539.75 157.48) (xy 561.34 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d410914-c626-4703-a507-0064dd05bb36) + ) + (wire (pts (xy 127 140.97) (xy 186.69 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e505a9e-6d3b-4d54-8e07-7de60a0b6bc2) + ) + (wire (pts (xy 226.06 102.87) (xy 251.46 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f79279c-6116-4f7b-a2bb-485e570f2db9) + ) + (wire (pts (xy 529.59 267.97) (xy 449.58 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 504a283b-9d95-44fb-af31-d0b576825e37) + ) + (wire (pts (xy 762 420.37) (xy 762 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5089f657-24fe-4cd1-96b2-fb64cb9ad787) + ) + (wire (pts (xy 515.62 118.11) (xy 515.62 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 517d64e3-fb6d-4286-9600-f19e814a4ac3) + ) + (wire (pts (xy 772.16 411.48) (xy 772.16 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5675a211-ed3a-44b3-beed-49b11a78b3a5) + ) + (wire (pts (xy 128.27 125.73) (xy 128.27 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5676ed2d-6929-414d-8a21-ef2809a76e68) + ) + (wire (pts (xy 199.39 133.35) (xy 199.39 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56ce9e44-e593-4e5a-a957-6c47f1cae851) + ) + (wire (pts (xy 393.7 95.25) (xy 414.02 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 598ec38b-f1a8-4da4-82fa-27719bcb1807) + ) + (wire (pts (xy 397.51 100.33) (xy 398.78 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a60294c-e6f4-481f-87ec-b85e9974849c) + ) + (wire (pts (xy 275.59 135.89) (xy 281.94 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a89c883-f363-40fe-86d5-2651820d54ac) + ) + (wire (pts (xy 560.07 129.54) (xy 560.07 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62c64176-6b6a-4251-bd9e-4e2445d85cd0) + ) + (wire (pts (xy 562.61 189.23) (xy 562.61 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63c264e5-d632-48c7-b774-b1805250c0fa) + ) + (wire (pts (xy 515.62 100.33) (xy 558.8 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 641945e3-6e63-4f6f-8271-0660e955ef4f) + ) + (wire (pts (xy 546.1 213.36) (xy 563.88 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64bf2409-b293-4237-ab26-55b27b28abbc) + ) + (wire (pts (xy 388.62 95.25) (xy 391.16 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 654e599b-3ab7-47ba-b052-d930f6fd6c42) + ) + (wire (pts (xy 450.85 118.11) (xy 452.12 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65c145c1-0297-4cef-affa-cddb399b95bf) + ) + (wire (pts (xy 581.66 97.79) (xy 590.55 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 671fcc8c-da03-46df-a033-eea844ab7d6d) + ) + (wire (pts (xy 452.12 161.29) (xy 452.12 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68465e75-ee12-4a64-989e-62d649ade88c) + ) + (wire (pts (xy 127 128.27) (xy 130.81 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6cd36a12-094d-4ea8-ab62-81c877b0549d) + ) + (wire (pts (xy 195.58 135.89) (xy 195.58 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f3e2054-df35-4ea2-a406-a77070241ea9) + ) + (wire (pts (xy 440.69 95.25) (xy 449.58 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7208c53a-a986-42e5-bf0c-6a62d226557b) + ) + (wire (pts (xy 384.81 95.25) (xy 388.62 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72a98267-e27d-46d5-b808-6ffd3b6311de) + ) + (wire (pts (xy 414.02 106.68) (xy 417.83 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7334493b-e8d5-4c9d-a0f1-ce432052eda0) + ) + (wire (pts (xy 590.55 40.64) (xy 590.55 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73db50a4-109f-44e0-b72c-b2c6b1c2329f) + ) + (wire (pts (xy 130.81 113.03) (xy 199.39 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74e9e83e-ac44-475f-8efc-72641c72a278) + ) + (wire (pts (xy 252.73 165.1) (xy 252.73 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75c08567-291a-4d3b-8085-c1f867cb0bec) + ) + (wire (pts (xy 528.32 245.11) (xy 391.16 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 773e0777-9fba-4cc7-807f-4a397dc2e937) + ) + (wire (pts (xy 127 130.81) (xy 203.2 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77b21708-af43-461a-8267-ec9c890b59d7) + ) + (wire (pts (xy 435.61 106.68) (xy 441.96 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77df28b3-1cfa-43f9-8097-fa12622cdfe8) + ) + (wire (pts (xy 523.24 214.63) (xy 441.96 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bb0b9ac-5821-4b03-9c17-6ffe6c9c5247) + ) + (wire (pts (xy 590.55 40.64) (xy 200.66 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d056887-1963-4414-8ea1-cd2e4564fbcb) + ) + (wire (pts (xy 130.81 128.27) (xy 130.81 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d7f061f-86f2-4b98-ac66-1ba8ae9dee2c) + ) + (wire (pts (xy 749.3 425.45) (xy 749.3 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dee5190-de18-4c5d-a8f4-bcde6433f144) + ) + (wire (pts (xy 798.83 392.43) (xy 798.83 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e1ef380-eb12-4dd7-8f91-4ed25ed5dd56) + ) + (wire (pts (xy 384.81 125.73) (xy 384.81 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e666aa9-fecd-41f3-923d-7e6e1e4c75b3) + ) + (wire (pts (xy 285.75 101.6) (xy 285.75 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f7a4fbb-754e-43a9-9974-9920f5fc720a) + ) + (wire (pts (xy 435.61 128.27) (xy 435.61 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f97c4a3-f5e3-421f-822d-3ed47687b2d1) + ) + (wire (pts (xy 382.27 95.25) (xy 384.81 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8053f897-55e8-48a0-8ebb-907965768861) + ) + (wire (pts (xy 397.51 254) (xy 397.51 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8132d1ea-dcb2-4d04-a155-be2099e7a7fb) + ) + (wire (pts (xy 551.18 246.38) (xy 565.15 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84465587-67bd-4001-95cb-f42693f2209c) + ) + (wire (pts (xy 436.88 156.21) (xy 436.88 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8469b49b-8355-474b-94dd-a2421f81da95) + ) + (wire (pts (xy 453.39 118.11) (xy 515.62 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ad7d14d-6560-474a-ac26-31aa2653af5f) + ) + (wire (pts (xy 205.74 153.67) (xy 154.94 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d050cfa-1ff1-4e39-9930-e283e1ed180f) + ) + (wire (pts (xy 222.25 114.3) (xy 222.25 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dd728c1-d5be-4c09-ab7d-a53c3d2c2ead) + ) + (wire (pts (xy 218.44 223.52) (xy 241.3 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e7cddf1-f6e2-44e9-91dd-8e9c2bb0371a) + ) + (wire (pts (xy 275.59 119.38) (xy 284.48 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8eccd774-a5f4-46b8-aa2e-77cd64bb38a5) + ) + (wire (pts (xy 588.01 247.65) (xy 762 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fef81aa-9c83-4a76-8e42-1180bb8e10b9) + ) + (wire (pts (xy 135.89 431.8) (xy 739.14 431.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90441815-c67b-4fd4-871f-eb74f2e4c24e) + ) + (wire (pts (xy 582.93 128.27) (xy 817.88 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 905ca414-af4b-41a3-80ec-5c1a28a33ba1) + ) + (wire (pts (xy 450.85 132.08) (xy 450.85 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9087d2cb-a415-41c0-8347-36179698e273) + ) + (wire (pts (xy 561.34 160.02) (xy 561.34 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90afaf7e-2abe-4d5f-a4b6-08a94dbeb005) + ) + (wire (pts (xy 389.89 187.96) (xy 389.89 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9136359b-32af-4d67-a5c6-f9e3fa93c66a) + ) + (wire (pts (xy 513.08 125.73) (xy 384.81 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 918c1bcb-1644-4de7-a60f-b05cd6459f22) + ) + (wire (pts (xy 535.94 127) (xy 560.07 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93eaef48-732b-464e-9475-e65f63158c4b) + ) + (wire (pts (xy 449.58 267.97) (xy 449.58 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94ad1a0b-c03f-48fc-acdf-a9ba9acd99c7) + ) + (wire (pts (xy 565.15 248.92) (xy 565.15 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95b8845f-a434-4441-b97a-9b1e99c8fb8c) + ) + (wire (pts (xy 196.85 151.13) (xy 205.74 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 962f3fcc-4485-4c28-b3a2-07d57dfae174) + ) + (wire (pts (xy 281.94 135.89) (xy 281.94 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98275b0d-8686-46c3-b1ba-34257dd26a42) + ) + (wire (pts (xy 241.3 223.52) (xy 241.3 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9853c3d5-bab3-40f0-9cea-498d53be16c2) + ) + (wire (pts (xy 248.92 76.2) (xy 248.92 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a7b8ab3-fd16-4ee9-b6c4-da4b3f7ee5cd) + ) + (wire (pts (xy 236.22 198.12) (xy 236.22 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a9d7fe5-b75f-4270-8fa8-81ee0c47598e) + ) + (wire (pts (xy 388.62 185.42) (xy 388.62 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9aa72f95-5813-4d41-8ae2-ef19bc7e669d) + ) + (wire (pts (xy 284.48 119.38) (xy 284.48 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fcd236f-3b5d-49c4-bccd-4eb90bcc4a55) + ) + (wire (pts (xy 817.88 379.73) (xy 180.34 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a08d009c-9c16-49bc-8aa0-0381e4cc1e2a) + ) + (wire (pts (xy 552.45 269.24) (xy 570.23 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0e00783-00a4-4b17-a87f-78b63c93a7e1) + ) + (wire (pts (xy 254 142.24) (xy 254 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1061d15-d312-4156-81a0-d61afcc18aad) + ) + (wire (pts (xy 143.51 177.8) (xy 143.51 420.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a59b8759-030b-4b30-a829-a9bf6c6103ae) + ) + (wire (pts (xy 278.13 151.13) (xy 284.48 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a60a6763-ba55-4008-9567-2bda175a9d53) + ) + (wire (pts (xy 167.64 115.57) (xy 167.64 392.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9124220-e29a-45d8-8661-ea83f6104b09) + ) + (wire (pts (xy 196.85 199.39) (xy 139.7 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a979366f-3b13-4ad3-b8a5-143ffc45c625) + ) + (wire (pts (xy 382.27 100.33) (xy 396.24 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa5e2d11-739c-4906-b729-2ce696c514e9) + ) + (wire (pts (xy 433.07 106.68) (xy 435.61 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab4d92c9-85ff-46b2-b39f-38e8d56f9539) + ) + (wire (pts (xy 219.71 198.12) (xy 236.22 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afc24b53-c263-484e-89bc-e733fa3e89a2) + ) + (wire (pts (xy 241.3 137.16) (xy 252.73 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afe707ff-ff5c-4f91-8c14-74c079d05090) + ) + (wire (pts (xy 557.53 297.18) (xy 572.77 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0d37193-83e2-48f9-bb36-ea8ff14e60ff) + ) + (wire (pts (xy 195.58 224.79) (xy 135.89 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1bf9eb7-78a3-4c87-ac53-bcb49c0c49de) + ) + (wire (pts (xy 429.26 95.25) (xy 436.88 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3a37f32-087b-4d12-9896-4dc49c96c62a) + ) + (wire (pts (xy 135.89 224.79) (xy 135.89 431.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b685ffb3-73e7-4c7b-98ce-a24d0b0118b3) + ) + (wire (pts (xy 255.27 143.51) (xy 255.27 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b749dd37-76a5-4d96-92eb-eb1d738f475e) + ) + (wire (pts (xy 396.24 220.98) (xy 396.24 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba4af0c5-84bd-489f-8229-af686258f238) + ) + (wire (pts (xy 441.96 214.63) (xy 441.96 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbae869d-967f-4ac6-8175-d78acea60f97) + ) + (wire (pts (xy 127 125.73) (xy 128.27 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc2ebe56-9e6a-4fd5-b7db-459a5f3d22f3) + ) + (wire (pts (xy 287.02 85.09) (xy 287.02 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd158421-6879-4a1e-a039-87f7fc565032) + ) + (wire (pts (xy 284.48 166.37) (xy 255.27 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bece24e5-b656-45d2-9676-3bef2b317b7e) + ) + (wire (pts (xy 278.13 175.26) (xy 278.13 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf28040d-1fda-4dd2-ad33-55ee5e35a9c7) + ) + (wire (pts (xy 593.09 270.51) (xy 749.3 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c218d420-dd33-4b7c-8eae-adc35aca9361) + ) + (wire (pts (xy 453.39 191.77) (xy 453.39 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4e60f1e-9c15-45cb-a3df-a59125e6fe0c) + ) + (wire (pts (xy 139.7 425.45) (xy 749.3 425.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c50f26dc-5dc4-465c-af8c-ec12f3eb45ef) + ) + (wire (pts (xy 534.67 295.91) (xy 393.7 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c72f51a9-5100-416e-8ccf-3536f723ec93) + ) + (wire (pts (xy 585.47 187.96) (xy 783.59 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c958683c-c209-4c4c-9651-63ae4340f62c) + ) + (wire (pts (xy 523.24 212.09) (xy 440.69 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb2ac5ba-9dae-4c5a-81c9-ce8bfbd59733) + ) + (wire (pts (xy 400.05 303.53) (xy 400.05 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb992449-2fa4-498d-bab5-2b4664ae6535) + ) + (wire (pts (xy 283.21 161.29) (xy 283.21 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc49ebff-6e10-42b4-8224-a3d9cf55487a) + ) + (wire (pts (xy 561.34 161.29) (xy 452.12 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd1d2947-7694-4103-9a8e-8e535a488371) + ) + (wire (pts (xy 519.43 187.96) (xy 389.89 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cde90b43-917d-4227-83d7-e85e8fa0960c) + ) + (wire (pts (xy 584.2 158.75) (xy 798.83 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ced41bae-7a8e-473d-bb11-05984b8ceea8) + ) + (wire (pts (xy 154.94 153.67) (xy 154.94 411.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d17b319c-edb0-4412-a103-01181d099c73) + ) + (wire (pts (xy 449.58 95.25) (xy 510.54 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1b932b3-4bbe-4636-8982-0e6c334e001a) + ) + (wire (pts (xy 190.5 138.43) (xy 190.5 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d363fe31-a71b-4f6b-962a-224810d903f2) + ) + (wire (pts (xy 563.88 215.9) (xy 563.88 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4ac582a-6d60-4b5c-89da-4545a48d86f0) + ) + (wire (pts (xy 274.32 101.6) (xy 285.75 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4fc582e-287a-4fd8-b2b8-58a8c7da9570) + ) + (wire (pts (xy 195.58 177.8) (xy 143.51 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d58741f3-2bd4-43b3-b7d2-6462181a8f8e) + ) + (wire (pts (xy 572.77 299.72) (xy 572.77 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7db338b-b9aa-4478-87e0-457aec98319c) + ) + (wire (pts (xy 203.2 133.35) (xy 199.39 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d841a2f3-91e6-4a0d-aea8-a5dc69342716) + ) + (wire (pts (xy 444.5 247.65) (xy 444.5 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d954e6d6-3f91-4e7a-b8ee-782ecc7bd02d) + ) + (wire (pts (xy 386.08 158.75) (xy 386.08 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d98c6632-63a0-4c7b-a153-09447f7497c7) + ) + (wire (pts (xy 444.5 106.68) (xy 510.54 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcb377b4-83f1-4294-a128-1c7fe6de92bb) + ) + (wire (pts (xy 200.66 74.93) (xy 200.66 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de3b4d6f-8d46-427c-8080-64b1d80290c1) + ) + (wire (pts (xy 252.73 176.53) (xy 255.27 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dfd647bd-2359-44ff-bcd5-bebea954880b) + ) + (wire (pts (xy 533.4 96.52) (xy 558.8 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0da7f44-2d9e-4b75-b8ad-da2cef37cc5d) + ) + (wire (pts (xy 563.88 220.98) (xy 396.24 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e19afc7a-13a1-47bc-8409-2541e742c508) + ) + (wire (pts (xy 560.07 132.08) (xy 450.85 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1c1b95a-7d47-4420-9ea8-6261c6ea3401) + ) + (wire (pts (xy 128.27 91.44) (xy 198.12 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e289380a-8ec7-42ad-bf60-6081aa945cc1) + ) + (wire (pts (xy 529.59 270.51) (xy 392.43 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e54a0c72-477c-4989-8704-8bf4a81aa06e) + ) + (wire (pts (xy 180.34 379.73) (xy 180.34 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e56aa4c5-56f4-40ef-afe8-d128f1243546) + ) + (wire (pts (xy 283.21 165.1) (xy 252.73 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6262cbb-86f0-4dca-b3ea-7364bb98c82a) + ) + (wire (pts (xy 236.22 134.62) (xy 252.73 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6a11979-e966-4447-8326-c921b5260ff4) + ) + (wire (pts (xy 127 123.19) (xy 127 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9abef5c-27b0-4c11-97af-ee7c713ac293) + ) + (wire (pts (xy 143.51 420.37) (xy 762 420.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb33f26e-194d-49b7-a3b5-ba85a6d9b672) + ) + (wire (pts (xy 382.27 97.79) (xy 386.08 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec57eefc-998c-4496-a788-4e6650085d15) + ) + (wire (pts (xy 396.24 100.33) (xy 397.51 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecbb172b-82a6-46d8-8283-98e206d56fcf) + ) + (wire (pts (xy 287.02 143.51) (xy 255.27 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid efdd3ae9-942c-4648-8d2c-9426f17ff18c) + ) + (wire (pts (xy 254 152.4) (xy 255.27 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f04b412d-05d0-4693-9091-28c68dcf302c) + ) + (wire (pts (xy 586.74 214.63) (xy 772.16 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4648748-9aca-4920-9d77-efca24259511) + ) + (wire (pts (xy 279.4 161.29) (xy 283.21 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5f96bde-70e9-4b73-b2e7-e2caf92e6588) + ) + (wire (pts (xy 534.67 298.45) (xy 394.97 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f63106c0-4265-483f-97ef-257493040003) + ) + (wire (pts (xy 199.39 115.57) (xy 167.64 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f737d43f-a806-436b-8e32-40a07529a588) + ) + (wire (pts (xy 783.59 401.32) (xy 783.59 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7453923-651e-43bc-8ff7-87dafaf123f5) + ) + (wire (pts (xy 248.92 92.71) (xy 248.92 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa8ec60a-cf0b-45f4-a9a9-b7166194c304) + ) + (wire (pts (xy 139.7 199.39) (xy 139.7 425.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid faca92b5-219b-434b-a793-93606646a6d1) + ) + (wire (pts (xy 252.73 160.02) (xy 256.54 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb875400-609f-479b-b5bd-66f60b345b97) + ) + (wire (pts (xy 163.83 132.08) (xy 163.83 401.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc36cfac-8362-438e-a50c-7d9f6a5f9ba4) + ) + (wire (pts (xy 436.88 95.25) (xy 440.69 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fcc2ba9c-5d7b-441d-a2eb-75cf81529bc5) + ) + (wire (pts (xy 394.97 298.45) (xy 394.97 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe8dbbcc-c695-47e3-bca4-19f2f986af65) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 425.45 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0840763e-a6bb-47fe-8f53-47c02fbb6e83) + (property "Reference" "U19" (id 0) (at 425.45 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 425.45 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 426.72 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 426.72 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 26978f9f-b113-42b8-9b20-46e07195104d)) + (pin "2" (uuid 1fd68d7a-6a84-4b7b-a3e2-e7f896eb10c1)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 528.32 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 08d7c3ee-68f3-4872-9e2e-82c40374d103) + (property "Reference" "U22" (id 0) (at 528.32 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 528.32 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 528.32 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 528.32 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b99cc3e7-8951-464c-bc5f-15687cbe2dc6)) + (pin "2" (uuid 398650a3-8e37-41a0-8d08-f5ed58c0f800)) + (pin "3" (uuid 80303a3e-46de-40df-8757-d9919aa4190d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 207.01 224.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 09de4009-f8b2-49e0-8de1-886299012f65) + (property "Reference" "U3" (id 0) (at 207.01 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 207.01 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 207.01 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 207.01 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ac2574d3-c84f-4e68-9bbe-d077c50faa96)) + (pin "2" (uuid d18eb702-4bde-452e-9cd6-995591403981)) + (pin "3" (uuid b8303ed7-486a-406e-adcd-b07fed01e6f5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 424.18 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0b857505-756f-4296-88c2-048389f9858f) + (property "Reference" "U18" (id 0) (at 424.18 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 424.18 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 425.45 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 425.45 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 007940ce-1453-4298-8bd6-54b92baf89cd)) + (pin "2" (uuid 5b6ad3e1-72a4-4498-9993-d77ffaa71018)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 546.1 298.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0c9c8fbb-f319-4e12-b7d2-202ca24faa64) + (property "Reference" "U27" (id 0) (at 546.1 289.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 546.1 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 546.1 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 546.1 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 396b8129-0521-4f03-916e-0b3a6f8f1f8c)) + (pin "2" (uuid 89efed1b-3d04-4f2f-96d0-e73640dbe240)) + (pin "3" (uuid 90e5b2b3-2d9a-4d60-adc8-d3043dc76a1b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 375.92 100.33 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 108b3ba9-9387-4165-a5e3-100c2f142105) + (property "Reference" "U1" (id 0) (at 376.555 95.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 376.555 97.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 375.92 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53f6c403-4345-4ea5-a5f4-bd562acbe219)) + (pin "2" (uuid 3a6527ee-5700-4973-b13d-10fd83457681)) + (pin "3" (uuid e182fd4e-4eff-4bcb-a9c4-651c98691e93)) + (pin "4" (uuid 4d810b42-4943-4229-b8bf-c1bbbed4a6ea)) + (pin "5" (uuid 8fb25679-4d42-480e-bfff-7989e1f031f4)) + (pin "6" (uuid 0da35a03-96f9-418f-95c0-b7f2c479732f)) + (pin "7" (uuid e4d8c25f-8ba3-47bd-af71-44dedec499d0)) + (pin "8" (uuid 08fe7fa0-1ea8-4165-931e-a6c7340c202e)) + (pin "9" (uuid de5177fa-1220-4c64-a87b-95c9c84fa119)) + (pin "10" (uuid 97d5d648-23f3-46fd-8019-b9bc560bcc74)) + (pin "11" (uuid 3c6d15c5-2884-433c-a724-f525975da827)) + (pin "12" (uuid cbbc3ea5-b677-48b9-b19d-ffd6301cc29a)) + (pin "13" (uuid f78ad9f1-4344-492c-957a-e48a2899c431)) + (pin "14" (uuid 3b672636-9690-4039-b4af-4330f957b377)) + (pin "15" (uuid dc8c29e4-46db-4bf4-a5ff-aab2582591f1)) + (pin "16" (uuid fc2446cb-c04a-4bef-afdb-bfd99139a6fe)) + (pin "17" (uuid a4113953-0cc1-4de9-9a42-16f496491767)) + (pin "18" (uuid 5ea3fd65-dd2b-4fb4-999f-bf46c6e28624)) + (pin "19" (uuid e6b1be8f-afd7-41ea-a6c1-4b7ec3b6f5ad)) + (pin "20" (uuid c6b55756-e062-45fb-b763-5fe7f66b2264)) + (pin "21" (uuid c73ecc5c-0b51-4928-9946-04b6bf6502b3)) + (pin "22" (uuid 101b8399-ab05-4de8-9223-1dfe4b29fa5e)) + (pin "23" (uuid b020ad09-4c33-4789-bf61-fab959d80f21)) + (pin "24" (uuid 49ff6430-060b-436a-9e76-8024eafebfe1)) + (pin "25" (uuid fe9888f3-39cb-42f8-9543-c3bebae3378a)) + (pin "26" (uuid c92b9f84-4a22-46a7-b30e-bdcbfadc95a6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 270.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 118b6bd0-ba1a-4ed8-99e6-979c6090dd25) + (property "Reference" "U26" (id 0) (at 541.02 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5b513888-1a8a-4eca-aaf5-3421dd2f4740)) + (pin "2" (uuid 9968a7e4-5e87-4d24-b746-8baa7981aaf6)) + (pin "3" (uuid 0dfdcc63-89d7-4dc4-9604-cfe04a613704)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 125.73 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 18f84553-8e9f-433e-9426-618a164ead89) + (property "Reference" "U1" (id 0) (at 121.285 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 123.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4e558022-d47e-4af3-a599-26fad8f18068)) + (pin "2" (uuid 1510b5b0-be4c-4321-9069-0f7912dccf7c)) + (pin "3" (uuid 1108fd43-4434-4edb-95d1-e97662ad502c)) + (pin "4" (uuid 69f51db0-fab6-4415-a53b-e42acb937c11)) + (pin "5" (uuid 27b2efde-1f2c-4926-88ae-35fde7e5b9b3)) + (pin "6" (uuid f2ba9d86-4be6-4ee6-bcd4-802be82afcf8)) + (pin "7" (uuid 2c13a61b-8530-4b79-b4a6-79a74b26ee2a)) + (pin "8" (uuid c5a836f2-3ce3-4f28-b9ab-9c7e1582cca8)) + (pin "9" (uuid 5b654fb6-1f8c-4f01-87fe-7e280aebb686)) + (pin "10" (uuid e069f83e-aa75-46bb-a70f-68b74d2383e9)) + (pin "11" (uuid ceb98a07-b1ec-4106-b8c5-6799dfd440da)) + (pin "12" (uuid 23474712-6182-4e5d-a343-4de644dba13b)) + (pin "13" (uuid dc35223f-5799-4e8c-a0a7-a8555c174b03)) + (pin "14" (uuid 62a4d4a3-91e9-49e3-893f-48738cf612ff)) + (pin "15" (uuid 39dcff0f-b81a-4879-8a49-341f77de579a)) + (pin "16" (uuid 0a3b0d26-8ba9-43fd-9cea-0c68129b103b)) + (pin "17" (uuid 40016b2a-d1b5-497e-84b8-86be5ebf8a8f)) + (pin "18" (uuid ec8f9f88-a8c3-45a8-8178-7101c0dc9754)) + (pin "19" (uuid 72f42920-7ab3-4857-82ff-f825e797b110)) + (pin "20" (uuid 8164bb7f-69b4-492f-b24d-3673f948d468)) + (pin "21" (uuid dcd60926-548d-4cd1-8324-9230f8d0d086)) + (pin "22" (uuid dd7c4ba8-783d-4c37-a00a-39646f075283)) + (pin "23" (uuid dbf5538e-07e4-4f02-a413-c1acc4d281e7)) + (pin "24" (uuid 60833d57-95fb-42b7-afc6-423ac77a0635)) + (pin "25" (uuid 0d4f963f-5051-4d56-ae0b-93706ef2b885)) + (pin "26" (uuid be055d29-cf35-49a7-9b88-f1f338de2418)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 210.82 115.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1a7c0adf-07b9-48d7-a5dd-559df8bf0452) + (property "Reference" "U6" (id 0) (at 210.82 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 210.82 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aab52f58-92d2-44bb-847e-4cfa7ad41ad6)) + (pin "2" (uuid 63a9712c-b3b5-4adc-93dd-723ef6b1cc16)) + (pin "3" (uuid db8f6d2e-2d1d-4a34-b927-58fefe2b579c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 539.75 247.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2d32ea3d-63fe-4a1b-a521-7260d6c65c10) + (property "Reference" "U25" (id 0) (at 539.75 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 539.75 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 539.75 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 539.75 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 89a4501a-8674-4f40-8d08-8b6aa6d4337a)) + (pin "2" (uuid 8d65aaeb-b6d4-4012-8048-0b1b44a21964)) + (pin "3" (uuid bba9b520-2c2c-4a28-a612-43ca92b9a9ed)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 133.35 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2da26bf2-8ea0-4cd0-b6aa-36e116c381d4) + (property "Reference" "U1" (id 0) (at 121.285 128.27 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 130.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 253a991c-18ef-47c5-a0ca-c87810a39072)) + (pin "2" (uuid 9b479b01-66ff-430d-982c-c530e775ae72)) + (pin "3" (uuid 076c69cd-3dce-4686-94a6-be9922b5a67b)) + (pin "4" (uuid eeafc65a-2467-41a7-a5d6-581cd51be235)) + (pin "5" (uuid e230e6d2-56e8-4c5d-b133-946cb2e55a0d)) + (pin "6" (uuid e61deb17-c49c-4716-a293-b3c96fab6703)) + (pin "7" (uuid 9487a2a7-d3a5-402a-8141-c9d02c0d5e3c)) + (pin "8" (uuid 2510c118-9bce-419b-bb5e-f47be6fb6ebc)) + (pin "9" (uuid 86079df9-857e-475d-8e4b-82af6b97da6f)) + (pin "10" (uuid 9a01e327-69d2-4774-a5f6-0eb2cf70c943)) + (pin "11" (uuid b37de99f-5f02-448e-b1a4-a85cc7897b15)) + (pin "12" (uuid 3535ea3d-d60a-418a-aa6e-7f4e604c1968)) + (pin "13" (uuid 1d412396-6325-4dcc-9d51-3fa756a180f7)) + (pin "14" (uuid 248bcfbd-9f98-4301-a22c-97e18c0137f7)) + (pin "15" (uuid a9ba5454-af2f-4377-b21e-9ef8dc59c7b0)) + (pin "16" (uuid 0b1f33d3-ad18-42be-870c-5f85d2556677)) + (pin "17" (uuid e6f7b90c-e5cc-4a4d-b21e-70a842ea7b1d)) + (pin "18" (uuid 9bf3bb59-9afb-489a-96ad-02e4348d05cf)) + (pin "19" (uuid f4c6d42b-7974-4934-bf25-95ccd5064c41)) + (pin "20" (uuid f7a970c3-ec9e-45c4-a4b0-710b5ab9e5d5)) + (pin "21" (uuid 40025621-54f0-4714-ae81-a653bccb0505)) + (pin "22" (uuid 2f7bf73c-7774-41f3-9279-0624a2cfa331)) + (pin "23" (uuid 0a2acc9a-e167-4148-b196-e956247c7f4f)) + (pin "24" (uuid 3d019624-00a9-455f-b7b9-f50b080f48d8)) + (pin "25" (uuid 829edfd9-86e4-4899-a21e-9a77c4af5e29)) + (pin "26" (uuid ec6241dd-e82d-4c60-9a31-d3362cec6e65)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 570.23 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2f53fc14-f96e-474f-ad49-53a778fe8b54) + (property "Reference" "U28" (id 0) (at 570.23 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 570.23 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 570.23 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 570.23 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 63b44730-e8d2-41c1-b266-636fa9610a44)) + (pin "2" (uuid 47b3cf6a-28c1-4385-ab7e-ee92332688c4)) + (pin "3" (uuid cc3c51e6-126f-46d5-bd89-5861cc0b1252)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 260.35 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 31a3df03-c19b-459e-b20a-7a9c0f96497c) + (property "Reference" "U10" (id 0) (at 260.35 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 260.35 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 260.35 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 260.35 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b5cb6055-1464-4580-8401-7cc24dd28802)) + (pin "2" (uuid e3866169-2a41-4994-8d22-d2a22e2c5e99)) + (pin "3" (uuid 9a32ad8a-6388-4734-a191-ff5d5eb90782)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 375.92 97.79 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 34abc383-8334-4a05-963f-898ff0e0d73b) + (property "Reference" "U1" (id 0) (at 376.555 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 376.555 95.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 375.92 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d2c2fbd4-c0d4-4e6b-8f99-7a139d57b7a5)) + (pin "2" (uuid a5f1a9d9-195e-403a-9aeb-f6a24fb86420)) + (pin "3" (uuid 6c7f15aa-55f2-41f0-9f0f-17ba5d5ecddd)) + (pin "4" (uuid 6ae510bb-8464-4bc5-8c44-7eb52bfe1629)) + (pin "5" (uuid 965d7a8c-94d9-49b3-bbdc-495a058e5ca3)) + (pin "6" (uuid 56483c20-c29b-4ac8-a110-f2562afb088f)) + (pin "7" (uuid 1c21c047-b145-4fed-9aaa-d6797e86aec8)) + (pin "8" (uuid 7d762808-1d5f-4978-8f81-fb861d866e1f)) + (pin "9" (uuid 6359bd00-8458-4a65-996e-ef97c915748e)) + (pin "10" (uuid fb3d74a7-63b2-457f-b7be-a697a24dbb1f)) + (pin "11" (uuid 0965f4ff-842a-4655-9d75-573b44e8885a)) + (pin "12" (uuid 4acb76c0-40f1-48a7-8c94-9053133d30a3)) + (pin "13" (uuid 4920c23b-833a-4d28-80e3-8c5d2a05a5fb)) + (pin "14" (uuid ebeb679b-33bc-490b-aaec-9db9333ceacb)) + (pin "15" (uuid 89e80b4d-b07d-414e-8f3c-0c64b3f996c3)) + (pin "16" (uuid 13690a63-1ca1-4fc5-9c1f-60618e2ad85a)) + (pin "17" (uuid b4a397c7-1e77-479a-baff-07c22e3b8f86)) + (pin "18" (uuid 6f9d128e-0cca-4659-9954-9cbd45260c75)) + (pin "19" (uuid 128a2673-df17-4a2a-a6bd-687da5f26710)) + (pin "20" (uuid 32a56e1d-b71c-4654-9d74-cac2fa4bfd60)) + (pin "21" (uuid 507f7e76-6ac1-42a2-beb0-2136567cebd3)) + (pin "22" (uuid 89764580-d635-40b3-9002-bf3bf3cfff37)) + (pin "23" (uuid c9a517ab-a369-4025-a169-a4d3309acbdc)) + (pin "24" (uuid 0a34db68-ae23-4afb-9f27-fe315b1bc8cf)) + (pin "25" (uuid 72276a88-8469-4b58-86e3-e7d8c2bd9084)) + (pin "26" (uuid e4098f55-e879-4648-8ec9-4a2b57c4d30a)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 264.16 137.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 362335f4-2ea3-409c-86db-6fb927be9b7a) + (property "Reference" "U13" (id 0) (at 264.16 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 264.16 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 264.16 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 264.16 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 698b4e77-bc2a-470c-9e6c-494ea656a036)) + (pin "2" (uuid a623d0a6-5d5a-4a09-824f-5f3889909084)) + (pin "3" (uuid 30df4fc8-5b50-4cf5-bcb6-e2e1d9d10377)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 571.5 129.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 39c5f577-57c5-41fc-8a6f-0feecbc378a0) + (property "Reference" "U29" (id 0) (at 571.5 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 571.5 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 571.5 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 571.5 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9b5f0b1a-80f4-4a6c-a98d-857e931cf9e4)) + (pin "2" (uuid 867f8989-06cf-4747-b973-52a099689a66)) + (pin "3" (uuid a573341c-2a15-4a8b-b052-e0fba3ac04ef)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 138.43 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 39f91e69-b689-47e6-83da-099767659bbb) + (property "Reference" "U1" (id 0) (at 121.285 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 01c272a5-606f-4d38-b978-1c0932ef6d9c)) + (pin "2" (uuid 22844c73-3334-44e1-af5f-fc8de84b06dd)) + (pin "3" (uuid 96d2c04d-ffb9-415b-bf9b-e93980518b40)) + (pin "4" (uuid 9cbcda10-3217-40d8-b7e0-8b20972a00db)) + (pin "5" (uuid 90610b03-f99d-42ab-80ea-d47e2a0b38af)) + (pin "6" (uuid 0cd5eca2-7a9b-44da-9d57-786ac99a2e97)) + (pin "7" (uuid 2682d7ce-305f-4561-a83a-749c3bfc338f)) + (pin "8" (uuid 49c5fd80-efdb-4092-bc08-a14076076598)) + (pin "9" (uuid 801f3d0f-fded-452e-9159-8a34819b9cb4)) + (pin "10" (uuid 9da2bb2a-0c3f-472c-bb66-3321803e8185)) + (pin "11" (uuid 35cba9d3-a82b-4fc4-b5d0-4c58bcecb909)) + (pin "12" (uuid 82f4950a-73b2-41f9-ad47-25328c41e213)) + (pin "13" (uuid 08bc5ec1-fb49-471f-914e-e20210cbf531)) + (pin "14" (uuid d1d111ab-56ec-4f69-91c4-c70bb5c371e2)) + (pin "15" (uuid ed62fa16-72d6-485f-8505-8fe425dd9a84)) + (pin "16" (uuid 10009abd-a390-411f-a215-90df6f044936)) + (pin "17" (uuid 23b916d3-b52d-4cde-8d2c-b2e6b8a0be3c)) + (pin "18" (uuid 185d1967-68f1-45d4-98ef-99c2b722611c)) + (pin "19" (uuid 34a37112-eee1-4625-99b4-725f63fda93f)) + (pin "20" (uuid 83d019df-dc3f-409c-8f67-c0ff5f577ce4)) + (pin "21" (uuid 31c50ec8-430c-4b0c-891c-580d934fba34)) + (pin "22" (uuid 4547d44e-a01b-480e-81e5-543ac87e69fd)) + (pin "23" (uuid a08eb867-ddf8-490c-883d-884a164b7c71)) + (pin "24" (uuid a52e3545-b0f2-41b9-aefd-26102775d9c4)) + (pin "25" (uuid ab8759c7-7999-417d-980b-9920204fb8fc)) + (pin "26" (uuid 170977ae-f9af-480f-b1f3-e26b20e9ec18)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 576.58 248.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3d05561e-dfa6-49aa-8217-290ab4445749) + (property "Reference" "U33" (id 0) (at 576.58 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 576.58 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 576.58 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 576.58 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 674bb8ac-d87e-4f38-95c0-48dee6b1ae00)) + (pin "2" (uuid 4bd6721f-1f63-4b7b-a435-4fd09ae3305d)) + (pin "3" (uuid 17447b85-f61e-41ba-b20a-73c28b497363)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 130.81 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3f58e91c-b075-410e-a900-63415299aeff) + (property "Reference" "U1" (id 0) (at 121.285 125.73 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 128.27 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 30f71cc0-d5f5-44ac-9ca5-e633e8f5d33e)) + (pin "2" (uuid 6fc5365f-4ee2-4505-8227-d6d1cbe06678)) + (pin "3" (uuid eef57185-b72e-4cb0-9910-d4569d6fc32a)) + (pin "4" (uuid ae39872e-08b1-41b9-887f-c7ef87a31e7a)) + (pin "5" (uuid fbaaf634-28bc-4e2f-9f72-ba8e28c79d96)) + (pin "6" (uuid 861dea7b-0297-474f-aa03-f43414167f6e)) + (pin "7" (uuid 43b59250-725d-4319-8df4-ed1bc339a811)) + (pin "8" (uuid 1d5f5a5a-0602-4f2b-b093-40c2f206060b)) + (pin "9" (uuid 2b0533df-d877-4671-9f6e-278d547d7339)) + (pin "10" (uuid f89da1cf-cb8a-46ab-8f9d-28fa46e29be0)) + (pin "11" (uuid 544dfe1d-00d2-4bd1-8f70-c7210c552ac1)) + (pin "12" (uuid 2291d5ca-723a-47e3-bb2e-4eb721b83bca)) + (pin "13" (uuid 81b3c8c8-602c-4167-ac87-21c16927bef8)) + (pin "14" (uuid c218aaaa-195d-422c-a041-ab2ce06afc77)) + (pin "15" (uuid e67156e6-600a-4f3b-997c-d58c74c92fa4)) + (pin "16" (uuid 3406d3eb-53de-4087-ac0b-00b9163c75e7)) + (pin "17" (uuid 07c46e8b-3a24-4bb1-8df6-565ae72ff199)) + (pin "18" (uuid dd33bdcf-ac03-4301-809a-9f6adb991818)) + (pin "19" (uuid 90d33bc2-eefa-4953-9f27-af6c4334173f)) + (pin "20" (uuid 33911081-0530-457d-bd61-d017628dd8e9)) + (pin "21" (uuid 6ba10fec-7067-4ea3-a3e4-6703ba7cb495)) + (pin "22" (uuid 7bad7363-3004-4cfd-b6be-2b199d3ebc4d)) + (pin "23" (uuid e4548dc2-1718-4a6f-84a2-8b7309616c74)) + (pin "24" (uuid 3fb735c4-4a66-4648-b588-a2e241d7150b)) + (pin "25" (uuid a5d9496e-20bf-45e5-8970-9572d512600a)) + (pin "26" (uuid 3aaefa30-5388-4850-bda3-727ddedca320)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 209.55 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 42bf5719-5c2e-4164-8858-f3001634e5fd) + (property "Reference" "U5" (id 0) (at 209.55 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 209.55 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 209.55 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f31e33b8-c561-41dd-b0c8-5adff2aa7be3)) + (pin "2" (uuid 3abbe140-581f-4578-99a5-181355450c44)) + (pin "3" (uuid 32c56c8f-c65e-4bcf-af85-ed77c832bba2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 287.02 223.52 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4775c089-b9e4-40cd-9065-12dc50c72d62) + (property "Reference" "U1" (id 0) (at 290.83 222.885 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 290.83 225.425 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 287.02 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 287.02 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 825b1850-d18a-41a6-823f-7c62235a9d38)) + (pin "2" (uuid e5b66268-3782-4c82-8128-c18efc8b8121)) + (pin "3" (uuid 6f88f0bd-067e-4a7d-a6e8-6da6265cdb6d)) + (pin "4" (uuid 3205d76e-8283-4da6-bc82-440bcc2e4a04)) + (pin "5" (uuid 2df2ad0b-a173-491a-9125-ec86a8be69ea)) + (pin "6" (uuid 3d446bc1-80cc-42f4-b918-02a5f33f4c3d)) + (pin "7" (uuid 7cdf432b-d733-48c5-b244-086847834c2e)) + (pin "8" (uuid 4516e83e-5524-4a6f-92d0-90dc3c1fb731)) + (pin "9" (uuid 30e03014-a3ce-48b9-8b41-9f25417ce7f6)) + (pin "10" (uuid e7e1cdd0-17db-4630-9c55-e16e470c1d14)) + (pin "11" (uuid cb92e3ed-b62e-4ecd-987e-a1ec22e0d604)) + (pin "12" (uuid 5a783ba3-c780-42a1-9df6-54763ac18cf9)) + (pin "13" (uuid 9d199f54-ea74-4005-981e-0020af862fe3)) + (pin "14" (uuid 2ab58338-0ab4-4fac-ad12-c01b2dd67d72)) + (pin "15" (uuid d792893e-5ff7-41d7-9fa8-726c3b3fd996)) + (pin "16" (uuid 46fdbc3f-bc4d-4686-b94b-4bb1850338a2)) + (pin "17" (uuid 29b369f9-0c1c-4cdc-8f64-14d6fff448ad)) + (pin "18" (uuid f6cb5758-0144-4973-be50-cb0a77d58c60)) + (pin "19" (uuid a1722950-033d-4179-8f8e-3bbb532e3005)) + (pin "20" (uuid 518b8335-db5b-445c-84e8-5b7ee8fc1fe1)) + (pin "21" (uuid 54351f3a-0d4c-4c94-be1a-7e521b5bc5d1)) + (pin "22" (uuid e1911cfe-3de8-4b3f-8d6f-3a8ad87a3890)) + (pin "23" (uuid 0cabf178-8320-426c-8c3e-893a56c5386e)) + (pin "24" (uuid 3d295ab0-459a-4e95-8676-768525d86e93)) + (pin "25" (uuid 4cfe87c2-ebf1-4f4e-a11a-3acda3577517)) + (pin "26" (uuid cda4a2f6-58bd-4e40-a08c-856eb75ce1bf)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 264.16 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 480a9d59-8b79-480f-a400-5e5a83569f72) + (property "Reference" "U12" (id 0) (at 264.16 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 264.16 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 264.16 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 264.16 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 087936b1-aa0b-4031-a0e0-047c320c7b06)) + (pin "2" (uuid f1d8f69c-ac0d-4812-b9f6-5244bd64c245)) + (pin "3" (uuid a2153938-7b9c-448b-9632-ffbfb16ab965)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 262.89 102.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4861cebe-277f-42d7-a5ac-3ac0a1fdec19) + (property "Reference" "U11" (id 0) (at 262.89 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 262.89 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 262.89 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 262.89 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3f81ff00-ef5e-4964-92ea-72c35410a58f)) + (pin "2" (uuid cc44fc4d-2cbb-447b-8a32-e2acddbe970f)) + (pin "3" (uuid 3efcaba4-f251-492b-addd-be876837f8f5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 212.09 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4d5645e3-3738-4fa8-8e1a-38b8b298d30f) + (property "Reference" "U7" (id 0) (at 212.09 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 212.09 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 212.09 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 212.09 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 459007c3-289c-43d9-989c-1813042679ec)) + (pin "2" (uuid a37f6781-b3ec-4e11-88af-b3797a73e8ee)) + (pin "3" (uuid 45ff8976-3761-4ea7-a192-0b6fc00f7c80)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 524.51 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51e7548e-39b9-46db-8512-6732c8d43412) + (property "Reference" "U21" (id 0) (at 524.51 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 524.51 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 524.51 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 524.51 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e4ea22a5-b969-49c3-a270-ae32ccc4f9be)) + (pin "2" (uuid 53e652d7-ca58-441b-80aa-57803555913b)) + (pin "3" (uuid 5b9e1bb1-69f0-4198-97ac-a123df1c9ea6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 208.28 199.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 541a02cd-06cc-414c-b08a-c31ff9c51b14) + (property "Reference" "U4" (id 0) (at 208.28 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 208.28 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 208.28 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 208.28 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f5369331-1ae5-47e1-88d2-5a1d69bf9cfd)) + (pin "2" (uuid 68e82a47-ce2a-4951-bed9-0b756b706e7d)) + (pin "3" (uuid 37c85894-a87c-44b2-8c0c-e9443176d688)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 584.2 299.72 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 65c29a2e-6a56-4e88-b2e9-4f43948e92a4) + (property "Reference" "U35" (id 0) (at 584.2 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 584.2 294.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 584.2 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 584.2 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9feda579-2a36-410d-99df-9d550c10c55b)) + (pin "2" (uuid e9dfb239-00cf-4b7b-97ff-6736691cb66a)) + (pin "3" (uuid 8989e263-60aa-4237-bad4-f5cfa6d830f4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 572.77 160.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7359c29b-e33c-4cf5-8dfe-8fd74b98c154) + (property "Reference" "U30" (id 0) (at 572.77 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 572.77 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 572.77 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 572.77 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3879f4b0-9392-453c-af5e-3b297b2ea9d2)) + (pin "2" (uuid 2990fdd7-47e1-4947-9bee-639e6890b384)) + (pin "3" (uuid 25f7b7f2-39ae-4ec9-9f12-892847ca1fce)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 140.97 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 740b78a8-e9bc-429c-9ec1-23dae8a3bd4b) + (property "Reference" "U1" (id 0) (at 121.285 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 138.43 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cef12d85-10f5-4910-8ff7-df6bec2e4e7b)) + (pin "2" (uuid c43705d6-433c-45c8-b27c-437548b39e1e)) + (pin "3" (uuid 3ca342a0-959a-4e65-a43e-8c8a5a6b0d64)) + (pin "4" (uuid eb5e6127-eeab-4fc2-9b7c-43fb9a603d25)) + (pin "5" (uuid 4eecc0df-d8be-4954-93ed-6df610668c40)) + (pin "6" (uuid 619ab3c5-1a6d-4101-86ac-1b918c9801b2)) + (pin "7" (uuid 960ce8af-4696-4b73-92f9-2a34448528fb)) + (pin "8" (uuid f94d6da8-2718-4a39-8488-4e9f373e28f7)) + (pin "9" (uuid 1501e392-12fc-424a-be15-4b23fd52fda6)) + (pin "10" (uuid 0b4d9e43-7a83-4236-86ce-cbb0560f5914)) + (pin "11" (uuid 2648b5cb-8c67-458a-a863-9aee6785d9ca)) + (pin "12" (uuid 7aca0e32-f00b-4963-bec5-dd00a3354490)) + (pin "13" (uuid b3c43b1d-b234-4405-ae31-8a020ba0d29f)) + (pin "14" (uuid 1bf51bfb-8c46-4129-99e6-28aa2edae984)) + (pin "15" (uuid 10cea2fb-c921-4c7e-b1dd-a172fba2d6d8)) + (pin "16" (uuid b07a2e4d-8c49-452e-af76-dc69264cb827)) + (pin "17" (uuid aa7d5998-7006-431c-aa43-7c8e79719333)) + (pin "18" (uuid 006e1be9-bab9-45e2-a8a8-369716f754ab)) + (pin "19" (uuid 3e9a60e3-97cb-48c8-b92e-e2f55338bd64)) + (pin "20" (uuid c1ebef9d-f283-4c9e-b0d2-509f01b0f2a4)) + (pin "21" (uuid f0b2d930-04cc-417f-ba2a-9c95c61d2704)) + (pin "22" (uuid bb815a37-f1b8-437a-b7db-b8852c0d7c41)) + (pin "23" (uuid 0e6de8ba-70a0-47c0-acb2-56c264ee7398)) + (pin "24" (uuid 5b473cb3-6716-4940-98eb-54635c02ed77)) + (pin "25" (uuid 8d2ba804-cb33-46e7-b95e-4a98e41ac9ea)) + (pin "26" (uuid 2dea473e-b29b-4a92-a868-5bdc3457472d)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 267.97 162.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 80a23515-9d09-41f7-a783-7250cfadfd6c) + (property "Reference" "U16" (id 0) (at 267.97 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 267.97 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 267.97 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2e82bf81-6aee-4524-83fc-0446b7c1b9b1)) + (pin "2" (uuid 0a70ecf3-1eba-4625-85c7-377897e28980)) + (pin "3" (uuid 40786ad7-ff94-4a8c-a32a-6f41ca44adde)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 534.67 214.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8910f309-f2b6-40ed-ab19-a2b9ee329b68) + (property "Reference" "U24" (id 0) (at 534.67 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 534.67 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 534.67 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 534.67 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a88e80d8-7b9b-42e2-a1ab-51826f2d726f)) + (pin "2" (uuid 5066224d-406f-4b27-87fe-323985337786)) + (pin "3" (uuid b278009a-a71b-419f-82e7-ed0f3049a270)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 521.97 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 945961c3-e61c-4cb9-97ce-6a138e67a8e9) + (property "Reference" "U20" (id 0) (at 521.97 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 521.97 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 521.97 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 521.97 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid af93f93f-0bc7-4e26-b7bc-3b96ab9aabeb)) + (pin "2" (uuid 43a3023b-5b43-40c6-997a-9dc428e8cf1d)) + (pin "3" (uuid 6a9a29be-6d60-4cb1-aec3-cdc6c1323c02)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 266.7 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e8a9f0e-b6aa-4252-83d0-d82da3c09fb2) + (property "Reference" "U15" (id 0) (at 266.7 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 266.7 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 266.7 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 266.7 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d1a36ac-5755-4281-b4e6-adcf1ba1ef59)) + (pin "2" (uuid 8fbc0998-e73f-4fd3-96bc-44ac4459a4c7)) + (pin "3" (uuid 9d40bcef-e84c-4522-abc9-5f61a02a0615)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 135.89 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aa73f68e-7afe-43e8-8f5c-51efc11535cb) + (property "Reference" "U1" (id 0) (at 121.285 130.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9ead08e3-b099-47c7-ab35-e3371972d365)) + (pin "2" (uuid e94dfcdf-dfaa-457d-9174-16e1df58a589)) + (pin "3" (uuid 7d5c4615-7140-4c73-b72d-6af812a19a59)) + (pin "4" (uuid e9e27c11-1ab0-4e5b-b4f4-5ed4fe4d58b7)) + (pin "5" (uuid c842914f-b10f-44ec-9ad2-22dcd1161810)) + (pin "6" (uuid fac8d47a-216c-43af-a7de-559547607f1d)) + (pin "7" (uuid 3d97edad-fa3d-44b4-a1ea-0a67f8e2f35a)) + (pin "8" (uuid 6ce002cf-441c-4511-ac57-bcb8c4cba033)) + (pin "9" (uuid 27569d50-706d-4172-a46a-ed529995bca8)) + (pin "10" (uuid 82524d1a-c4c4-45ac-90da-3b819986e02a)) + (pin "11" (uuid 764fabf2-1452-481a-a7a0-fe10d2111c90)) + (pin "12" (uuid bc893936-5539-4856-b155-4f885fa711b0)) + (pin "13" (uuid d9e02f35-a4ec-4a58-985c-678cb0208835)) + (pin "14" (uuid cee9049e-cb38-4b26-ae3c-3d7576ae8590)) + (pin "15" (uuid f2d4d931-e28c-4ebc-abc5-855d70b3bcda)) + (pin "16" (uuid 1b64bee2-2e51-45b9-a1f8-1be971ad5454)) + (pin "17" (uuid cf8317f0-18f3-4812-8e71-ae377dced4a7)) + (pin "18" (uuid 28979ad1-2221-4a68-a1da-1eecba9aecc3)) + (pin "19" (uuid f9789987-0548-4a10-8699-3ce286e9b941)) + (pin "20" (uuid f2bc15c7-0061-43d1-b639-b96f528c0bd0)) + (pin "21" (uuid 39123946-a587-4f15-9f03-89543a326a98)) + (pin "22" (uuid db63c81d-eead-4ac4-8596-f015153ecd3c)) + (pin "23" (uuid 3a02582d-9a26-4ea0-87fa-9cc539fa511e)) + (pin "24" (uuid 2f8cd8ee-fa5b-47e9-95b7-0d381681868b)) + (pin "25" (uuid 872602fa-33f3-40a4-9297-1c738b824acc)) + (pin "26" (uuid 157ac61f-48e8-4874-86d7-c548668ff185)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 581.66 271.78 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid aad8f626-ab75-4a5b-918c-e32b37c1c1e3) + (property "Reference" "U34" (id 0) (at 581.66 262.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 581.66 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 581.66 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 581.66 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 11b98b99-e581-4514-9f6e-6f264bf19235)) + (pin "2" (uuid 1608dcd8-1376-46e6-8611-9988e8dea070)) + (pin "3" (uuid 507e3c10-2b13-46bf-a360-4072f5eb76bb)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 266.7 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ad871800-0930-473a-9111-00af8fb18a66) + (property "Reference" "U14" (id 0) (at 266.7 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 266.7 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 266.7 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 266.7 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a84a595b-70e5-4dac-9ade-0539eea65f20)) + (pin "2" (uuid c39b410b-19f4-4752-b408-abb310140242)) + (pin "3" (uuid 2ff9c3fc-232b-493e-9b4c-8d6b0adc1427)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 574.04 189.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid afc465de-656a-4865-9a87-44951a86c7f1) + (property "Reference" "U31" (id 0) (at 574.04 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 574.04 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 574.04 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 574.04 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6cb17a45-ced8-4d45-b2c9-67a2250cd29d)) + (pin "2" (uuid e2dde39c-ba5e-4c6f-a46c-d7100d5330f7)) + (pin "3" (uuid 576dba66-52e0-4f46-abee-8d46ceb9ad91)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 123.19 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c22fdf07-d6da-404e-8cdf-bbc7c721c91f) + (property "Reference" "U1" (id 0) (at 121.285 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 52816f55-33c4-4a3d-ba45-a5ccd8a89b37)) + (pin "2" (uuid 3c6abc40-0b20-44ca-87d6-074ce7bb29b7)) + (pin "3" (uuid 78db1b3c-f56a-4be8-aa85-c251f5b37dd9)) + (pin "4" (uuid 574a4d9b-485d-4ef3-96ce-dde1a937b0ae)) + (pin "5" (uuid fcb02be0-fefc-4113-af7e-e4ebf0553a24)) + (pin "6" (uuid 9b2197fd-b73e-4a81-bf39-0a515a469847)) + (pin "7" (uuid 25b2243b-85e6-4b88-a51f-ca8bd1711390)) + (pin "8" (uuid 49ccb1f1-b9bc-4b3f-87a9-130ddfff33a0)) + (pin "9" (uuid 8b98247c-ec9b-49da-901b-ffe581d1228a)) + (pin "10" (uuid 111d6b92-1f50-4e54-929d-fabed6e5e443)) + (pin "11" (uuid b87d57ad-d9c3-440a-91a8-ee221f3c1354)) + (pin "12" (uuid 559f5508-2cfe-413d-a8bd-9e6c8c450765)) + (pin "13" (uuid 37d0450a-6d64-4a67-a93f-86a85b5009af)) + (pin "14" (uuid fa02f18b-ef7c-4c0f-b331-c9f68f4ebceb)) + (pin "15" (uuid 3a408f4e-e1b2-4e37-b264-393caab21520)) + (pin "16" (uuid c43aea1e-d52a-4eae-8a9a-7e9c5668ebd6)) + (pin "17" (uuid 93441e65-7573-4bb8-8737-c6a75a16828c)) + (pin "18" (uuid b897665a-3578-461e-a2e8-072e92095c09)) + (pin "19" (uuid e8d391e7-8c87-4916-9dad-c7d8f73c23cd)) + (pin "20" (uuid b8a812e3-e432-477d-8469-e8e4462af866)) + (pin "21" (uuid d9420884-8265-48a5-ad98-882ffc826c8c)) + (pin "22" (uuid 041c630d-f333-4ea3-9476-c01d226a8c8e)) + (pin "23" (uuid 2ceca668-d7fd-4b15-a921-bf2430208e3e)) + (pin "24" (uuid a70db5de-9d7d-44bd-bfbc-ca6abfe3a60f)) + (pin "25" (uuid d8096424-80ec-40f4-9338-9027199f0c41)) + (pin "26" (uuid 56b0feb5-0526-4fa9-b9aa-5d856cb81b64)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 207.01 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c746eb52-325f-4296-a48f-a86fe21acc80) + (property "Reference" "U2" (id 0) (at 207.01 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 207.01 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 207.01 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 207.01 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aed68743-8347-4d5d-8d9f-3ffddd234e33)) + (pin "2" (uuid b64c2697-37ca-4df9-b5dc-9401e85415a7)) + (pin "3" (uuid 895f9d03-f51d-4534-8379-8703e3b51f64)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 530.86 187.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c7cd3456-eabc-451e-9e1b-02deac5ab83d) + (property "Reference" "U23" (id 0) (at 530.86 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 530.86 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 530.86 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 530.86 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 78b51478-3da1-4f86-a378-0bd49b9fa887)) + (pin "2" (uuid af8c8e49-924b-4521-866b-5c6d601e0375)) + (pin "3" (uuid 5b37f3b7-b32d-4156-97c2-2c2806f869b4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 217.17 153.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d187b50a-3f2f-41c6-bbda-d88ff56152d2) + (property "Reference" "U9" (id 0) (at 217.17 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 217.17 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 217.17 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76714965-d93c-43ed-893c-40ee5542c0dd)) + (pin "2" (uuid 8b229738-3b87-4620-8eb5-54e3a5b7de1b)) + (pin "3" (uuid 02659d38-e8a8-4bce-803d-7faec96fe3e0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 375.92 95.25 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dfbbeadf-5c82-4ddb-94e7-ac5f41c5d552) + (property "Reference" "U1" (id 0) (at 376.555 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 376.555 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 375.92 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2ef19aa3-5e8a-4168-a6a8-e3ca8b21c369)) + (pin "2" (uuid 75617256-23a6-434f-b01a-6053d9ff76a0)) + (pin "3" (uuid 53dc6196-f8be-437a-aa49-bd827e08f7cb)) + (pin "4" (uuid 93242dbd-953d-4a92-a895-de49f73964b4)) + (pin "5" (uuid 3b74e73f-7e8a-44d1-abc7-12c4937d87fb)) + (pin "6" (uuid 83450dbd-7812-403c-8344-7bcd7856e8b4)) + (pin "7" (uuid a4d5e46a-7bf3-47b0-8787-e5a41abcc47a)) + (pin "8" (uuid a3df17b8-4b28-4bba-8d43-df06a02755f7)) + (pin "9" (uuid 43f09503-1ff9-4e77-b2c7-4f1f50fddcaf)) + (pin "10" (uuid c4ae32d9-05ea-4812-8b35-888d61d80ba1)) + (pin "11" (uuid 0796c319-5794-4245-96f3-6a1d07b57bb6)) + (pin "12" (uuid 62eb6e9f-de03-4dc6-9c46-88c84ceb7ac1)) + (pin "13" (uuid 7db8d07d-e9eb-47f9-8e4e-a55596153b32)) + (pin "14" (uuid 9044ca3a-bc8e-4e91-9ff0-10d09b8dff8f)) + (pin "15" (uuid 23e1f13d-9b50-4566-ad33-cfa32b02b9b3)) + (pin "16" (uuid 58c04c9e-f7e3-432c-9df1-30d2832338b5)) + (pin "17" (uuid 0338f036-ce40-4cb4-9417-b33d8f29f5b0)) + (pin "18" (uuid 753ff8a1-35bb-4ae6-bf39-7f3f0b7378e9)) + (pin "19" (uuid a3a51611-28b7-4034-b171-00c029719175)) + (pin "20" (uuid fc83b4c3-fb26-4b92-9dd3-09d17730e352)) + (pin "21" (uuid 72ba88fa-6eaa-4c22-b27a-03a88f98e8bd)) + (pin "22" (uuid 827fc260-5163-44bd-857f-89d6c415ebe1)) + (pin "23" (uuid aa1eee71-d826-422b-b34b-d5725dfb2dcb)) + (pin "24" (uuid 3079ef92-4c37-48c2-973b-8a40d52131ff)) + (pin "25" (uuid a9016fa7-def5-4365-a418-ac5a51c0ae71)) + (pin "26" (uuid d2c539e6-d3ea-4600-9dc5-d55dcf68c348)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 214.63 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eb7cf29c-dfe4-4597-843b-6e7d94c1a070) + (property "Reference" "U8" (id 0) (at 214.63 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 214.63 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 214.63 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ad8034f-9b66-41b4-8d1c-5500a7128a57)) + (pin "2" (uuid 154aa4e1-af86-481b-bc15-e512a2a0f06d)) + (pin "3" (uuid ffbdc6f7-674d-49e2-a9c8-2fbf39ab746f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 128.27 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eba14942-bc61-48e1-bef0-01eb01d27c62) + (property "Reference" "U1" (id 0) (at 121.285 123.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 125.73 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7bb8c307-edc4-4eef-a466-a45a495a8f4e)) + (pin "2" (uuid 4183d8a5-6c8d-4094-b377-96a1fb5c007b)) + (pin "3" (uuid e8f55a8e-9189-41dc-9443-f0839fec223b)) + (pin "4" (uuid 7d67159a-e320-4dc0-be9d-7f90b246e517)) + (pin "5" (uuid 18151c58-e182-428a-8d8a-daa1a5abaf35)) + (pin "6" (uuid 6fe305a9-e0e7-453f-b625-7753b2546471)) + (pin "7" (uuid af0b4c5e-b7e4-47bb-9183-437b68feb3f3)) + (pin "8" (uuid 16a35d08-65d8-4bf2-a973-a886dd46b8cc)) + (pin "9" (uuid 3142a4d1-d7ae-4d3d-835a-782a674bf69d)) + (pin "10" (uuid 3ddd2eba-d8eb-4a1e-bb3f-b7ec1e2a0870)) + (pin "11" (uuid b2b179d9-fe1a-4669-b618-3b7d3e9acec5)) + (pin "12" (uuid 638b4c60-19e6-4b5d-b746-da88c4a1ba73)) + (pin "13" (uuid 7bb19441-22d2-4ef7-83fe-44d0fda8e1f2)) + (pin "14" (uuid ac078ce8-acce-48e4-a2b6-190ee0f53876)) + (pin "15" (uuid 21631ce5-6fd5-484a-b1e4-d9e5b22453ec)) + (pin "16" (uuid a3d2068e-79b7-43d0-9cdf-ad980e7ccd2c)) + (pin "17" (uuid d41b0f5c-121a-4a78-981a-dc80d80c20b3)) + (pin "18" (uuid 9ad8eb06-01bd-4959-a255-e6e302571cb1)) + (pin "19" (uuid 817ff512-f505-4eab-a82d-c499e3ac318e)) + (pin "20" (uuid b21c7215-8897-4667-8bb3-ecad52ff610c)) + (pin "21" (uuid 22c0cf36-a01f-48ff-ad9d-b0a29b22c1d2)) + (pin "22" (uuid 61cd63c6-1bf3-463d-9f16-7a76bc5c3155)) + (pin "23" (uuid 76bbbdb1-b6b4-4dd7-a233-a62f4fad62db)) + (pin "24" (uuid 70b8d3e7-1e4e-45da-80ca-795555d57a2b)) + (pin "25" (uuid a9438be2-108a-4e29-a6d0-58cfeb34832b)) + (pin "26" (uuid ddd45bf0-d8f4-4451-aef1-1553b0ec5c35)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 421.64 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fd4398e6-ae4f-4cfe-849d-5dcbd53abcfb) + (property "Reference" "U17" (id 0) (at 421.64 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 421.64 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 422.91 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 422.91 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53e815cd-d8ac-495b-852a-68baf7b8a34b)) + (pin "2" (uuid 014c65a9-e396-444e-a079-4c771cc14e0c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 575.31 215.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe593570-bbdb-4c92-b514-8786ad29ba82) + (property "Reference" "U32" (id 0) (at 575.31 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 575.31 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 575.31 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 575.31 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2f372d67-7b58-419a-b5a7-bf8f5b1f91e1)) + (pin "2" (uuid fa83df34-f3d5-4a65-9fa1-2e1601ead0e1)) + (pin "3" (uuid ef8cba17-44d0-49d0-9a0f-ccb4c893ea9b)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/c22fdf07-d6da-404e-8cdf-bbc7c721c91f" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/18f84553-8e9f-433e-9426-618a164ead89" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/eba14942-bc61-48e1-bef0-01eb01d27c62" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/3f58e91c-b075-410e-a900-63415299aeff" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/2da26bf2-8ea0-4cd0-b6aa-36e116c381d4" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/aa73f68e-7afe-43e8-8f5c-51efc11535cb" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/39f91e69-b689-47e6-83da-099767659bbb" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/740b78a8-e9bc-429c-9ec1-23dae8a3bd4b" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/dfbbeadf-5c82-4ddb-94e7-ac5f41c5d552" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/34abc383-8334-4a05-963f-898ff0e0d73b" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/108b3ba9-9387-4165-a5e3-100c2f142105" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/4775c089-b9e4-40cd-9065-12dc50c72d62" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/c746eb52-325f-4296-a48f-a86fe21acc80" + (reference "U2") (unit 1) (value "d_and") (footprint "") + ) + (path "/09de4009-f8b2-49e0-8de1-886299012f65" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/541a02cd-06cc-414c-b08a-c31ff9c51b14" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/42bf5719-5c2e-4164-8858-f3001634e5fd" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/1a7c0adf-07b9-48d7-a5dd-559df8bf0452" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/4d5645e3-3738-4fa8-8e1a-38b8b298d30f" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/eb7cf29c-dfe4-4597-843b-6e7d94c1a070" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/d187b50a-3f2f-41c6-bbda-d88ff56152d2" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/31a3df03-c19b-459e-b20a-7a9c0f96497c" + (reference "U10") (unit 1) (value "d_or") (footprint "") + ) + (path "/4861cebe-277f-42d7-a5ac-3ac0a1fdec19" + (reference "U11") (unit 1) (value "d_or") (footprint "") + ) + (path "/480a9d59-8b79-480f-a400-5e5a83569f72" + (reference "U12") (unit 1) (value "d_or") (footprint "") + ) + (path "/362335f4-2ea3-409c-86db-6fb927be9b7a" + (reference "U13") (unit 1) (value "d_or") (footprint "") + ) + (path "/ad871800-0930-473a-9111-00af8fb18a66" + (reference "U14") (unit 1) (value "d_or") (footprint "") + ) + (path "/9e8a9f0e-b6aa-4252-83d0-d82da3c09fb2" + (reference "U15") (unit 1) (value "d_or") (footprint "") + ) + (path "/80a23515-9d09-41f7-a783-7250cfadfd6c" + (reference "U16") (unit 1) (value "d_or") (footprint "") + ) + (path "/fd4398e6-ae4f-4cfe-849d-5dcbd53abcfb" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0b857505-756f-4296-88c2-048389f9858f" + (reference "U18") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0840763e-a6bb-47fe-8f53-47c02fbb6e83" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/945961c3-e61c-4cb9-97ce-6a138e67a8e9" + (reference "U20") (unit 1) (value "d_and") (footprint "") + ) + (path "/51e7548e-39b9-46db-8512-6732c8d43412" + (reference "U21") (unit 1) (value "d_and") (footprint "") + ) + (path "/08d7c3ee-68f3-4872-9e2e-82c40374d103" + (reference "U22") (unit 1) (value "d_and") (footprint "") + ) + (path "/c7cd3456-eabc-451e-9e1b-02deac5ab83d" + (reference "U23") (unit 1) (value "d_and") (footprint "") + ) + (path "/8910f309-f2b6-40ed-ab19-a2b9ee329b68" + (reference "U24") (unit 1) (value "d_and") (footprint "") + ) + (path "/2d32ea3d-63fe-4a1b-a521-7260d6c65c10" + (reference "U25") (unit 1) (value "d_and") (footprint "") + ) + (path "/118b6bd0-ba1a-4ed8-99e6-979c6090dd25" + (reference "U26") (unit 1) (value "d_and") (footprint "") + ) + (path "/0c9c8fbb-f319-4e12-b7d2-202ca24faa64" + (reference "U27") (unit 1) (value "d_and") (footprint "") + ) + (path "/2f53fc14-f96e-474f-ad49-53a778fe8b54" + (reference "U28") (unit 1) (value "d_and") (footprint "") + ) + (path "/39c5f577-57c5-41fc-8a6f-0feecbc378a0" + (reference "U29") (unit 1) (value "d_and") (footprint "") + ) + (path "/7359c29b-e33c-4cf5-8dfe-8fd74b98c154" + (reference "U30") (unit 1) (value "d_and") (footprint "") + ) + (path "/afc465de-656a-4865-9a87-44951a86c7f1" + (reference "U31") (unit 1) (value "d_and") (footprint "") + ) + (path "/fe593570-bbdb-4c92-b514-8786ad29ba82" + (reference "U32") (unit 1) (value "d_and") (footprint "") + ) + (path "/3d05561e-dfa6-49aa-8217-290ab4445749" + (reference "U33") (unit 1) (value "d_and") (footprint "") + ) + (path "/aad8f626-ab75-4a5b-918c-e32b37c1c1e3" + (reference "U34") (unit 1) (value "d_and") (footprint "") + ) + (path "/65c29a2e-6a56-4e88-b2e9-4f43948e92a4" + (reference "U35") (unit 1) (value "d_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4051_sub/CD4051_sub.proj b/library/SubcircuitLibrary/CD4051_sub/CD4051_sub.proj new file mode 100644 index 000000000..c72908bf2 --- /dev/null +++ b/library/SubcircuitLibrary/CD4051_sub/CD4051_sub.proj @@ -0,0 +1 @@ +schematicFile CD4051_sub.kicad_sch diff --git a/library/SubcircuitLibrary/CD4051_sub/CD4051_test.cir b/library/SubcircuitLibrary/CD4051_sub/CD4051_test.cir new file mode 100644 index 000000000..3a779d881 --- /dev/null +++ b/library/SubcircuitLibrary/CD4051_sub/CD4051_test.cir @@ -0,0 +1,19 @@ +.title KiCad schematic +X1 Net-_U2-Pad9_ Net-_U2-Pad10_ Net-_U2-Pad11_ Net-_U2-Pad12_ Net-_U2-Pad13_ Net-_U2-Pad14_ Net-_U2-Pad15_ Net-_U2-Pad16_ Net-_U4-Pad5_ Net-_U4-Pad6_ Net-_U4-Pad7_ Net-_U1-Pad1_ CD4051 +U4 Net-_U4-Pad1_ Net-_U4-Pad2_ Net-_U4-Pad3_ Net-_U4-Pad4_ Net-_U4-Pad5_ Net-_U4-Pad6_ Net-_U4-Pad7_ unconnected-_U4-Pad8_ adc_bridge_4 +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U2-Pad3_ Net-_U2-Pad4_ Net-_U2-Pad5_ Net-_U2-Pad6_ Net-_U2-Pad7_ Net-_U2-Pad8_ Net-_U2-Pad9_ Net-_U2-Pad10_ Net-_U2-Pad11_ Net-_U2-Pad12_ Net-_U2-Pad13_ Net-_U2-Pad14_ Net-_U2-Pad15_ Net-_U2-Pad16_ adc_bridge_8 +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ dac_bridge_1 +U3 Net-_U1-Pad2_ plot_v1 +v3 Net-_U2-Pad3_ GND pulse +v4 Net-_U2-Pad4_ GND pulse +v1 Net-_U2-Pad1_ GND pulse +v2 Net-_U2-Pad2_ GND pulse +v9 Net-_U4-Pad1_ GND pulse +v12 Net-_U4-Pad4_ GND pulse +v10 Net-_U4-Pad2_ GND pulse +v11 Net-_U4-Pad3_ GND pulse +v5 Net-_U2-Pad5_ GND pulse +v8 Net-_U2-Pad8_ GND pulse +v6 Net-_U2-Pad6_ GND pulse +v7 Net-_U2-Pad7_ GND pulse +.end diff --git a/library/SubcircuitLibrary/CD4051_sub/CD4051_test.kicad_sch b/library/SubcircuitLibrary/CD4051_sub/CD4051_test.kicad_sch new file mode 100644 index 000000000..82bf2aa2a --- /dev/null +++ b/library/SubcircuitLibrary/CD4051_sub/CD4051_test.kicad_sch @@ -0,0 +1,1286 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid f8c3a11c-73d2-40cb-abc8-793114cae433) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_8" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_8" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_8_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -17.78) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_8_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -1.27 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -3.81 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -6.35 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -8.89 180) (length 5.08) + (name "OUT5" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -11.43 180) (length 5.08) + (name "OUT6" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -13.97 180) (length 5.08) + (name "OUT7" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -16.51 180) (length 5.08) + (name "OUT8" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -1.27 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -3.81 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -6.35 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -8.89 0) (length 5.08) + (name "IN5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -11.43 0) (length 5.08) + (name "IN6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -13.97 0) (length 5.08) + (name "IN7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -15.24 -16.51 0) (length 5.08) + (name "IN8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:CD4051" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "CD4051" (id 1) (at 2.54 3.81 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "CD4051_0_1" + (rectangle (start -6.35 13.97) (end 7.62 -15.24) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "CD4051_1_1" + (pin input line (at -6.35 11.43 0) (length 2.54) + (name "IN0" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -11.43 0) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -13.97 0) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 8.89 0) (length 2.54) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 8.89 0) (length 2.54) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 6.35 0) (length 2.54) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 3.81 0) (length 2.54) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 1.27 0) (length 2.54) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -1.27 0) (length 2.54) + (name "IN5" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -3.81 0) (length 2.54) + (name "IN6" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -6.35 0) (length 2.54) + (name "IN7" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -8.89 0) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 173.99 243.84) (diameter 0) (color 0 0 0 0) + (uuid 09ba034a-f8c4-4e69-9deb-ef13178d382a) + ) + (junction (at 386.08 238.76) (diameter 0) (color 0 0 0 0) + (uuid 13eb57cd-fd42-4b05-af81-5616ab53f511) + ) + (junction (at 462.28 233.68) (diameter 0) (color 0 0 0 0) + (uuid 3b87d31b-34c4-49f3-a802-094aa81216a8) + ) + (junction (at 234.95 236.22) (diameter 0) (color 0 0 0 0) + (uuid 447e860d-fe27-41ad-b49f-82aa6232b8d3) + ) + (junction (at 435.61 237.49) (diameter 0) (color 0 0 0 0) + (uuid 676a51a4-6fc0-493f-ba62-2d5c34aacc37) + ) + (junction (at 292.1 233.68) (diameter 0) (color 0 0 0 0) + (uuid 6e3610aa-4529-4c73-961e-74a52b5a3f9b) + ) + (junction (at 477.52 220.98) (diameter 0) (color 0 0 0 0) + (uuid 731a2c0d-f1d0-4eef-a833-304fc45aadc9) + ) + (junction (at 321.31 234.95) (diameter 0) (color 0 0 0 0) + (uuid 78f7995c-8d77-47bc-8b84-86791ddacccc) + ) + (junction (at 204.47 241.3) (diameter 0) (color 0 0 0 0) + (uuid 8311846f-a2a2-4cb0-9e13-23a0a9923413) + ) + (junction (at 264.16 233.68) (diameter 0) (color 0 0 0 0) + (uuid dcf1cd77-ba8f-44c2-9d72-ba16ce96613e) + ) + (junction (at 353.06 236.22) (diameter 0) (color 0 0 0 0) + (uuid f4ab5c48-a0b6-4729-b24c-2ec312dc2711) + ) + + (wire (pts (xy 478.79 233.68) (xy 478.79 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01784c08-d1a5-4440-86f4-9a0980bfe98c) + ) + (wire (pts (xy 264.16 233.68) (xy 292.1 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06d31e0b-5a2d-4fdd-aaef-bed1a9a15e1a) + ) + (wire (pts (xy 462.28 233.68) (xy 478.79 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b368b5f-71c3-4ee1-8b9c-77418e3f44f9) + ) + (wire (pts (xy 207.01 231.14) (xy 207.01 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ce1ad9a-1050-4949-87e4-fe1390bfd331) + ) + (wire (pts (xy 416.56 237.49) (xy 435.61 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 116afb4f-08c6-4d5b-bd7d-62cc07094f84) + ) + (wire (pts (xy 142.24 167.64) (xy 142.24 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14a315ed-9f36-44de-9ef8-189cd8e721cb) + ) + (wire (pts (xy 435.61 237.49) (xy 462.28 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14c26557-0a44-44ba-b940-888405578cf7) + ) + (wire (pts (xy 330.2 229.87) (xy 330.2 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14e3762c-0343-4bf1-b303-6daa52bc6b7a) + ) + (wire (pts (xy 454.66 227.33) (xy 454.66 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1729b565-d885-4468-808d-ae742b666d64) + ) + (wire (pts (xy 173.99 156.21) (xy 153.67 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18452486-e713-4ad4-b4d4-049b57872b17) + ) + (wire (pts (xy 175.26 218.44) (xy 139.7 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18caae61-530e-40d7-9a04-d3f6c92cc900) + ) + (wire (pts (xy 393.7 227.33) (xy 393.7 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18ff7137-cce5-4e31-8a2c-29f3d24fffde) + ) + (wire (pts (xy 180.34 196.85) (xy 180.34 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 290879fd-6960-4185-8baf-3d8d8795cffc) + ) + (wire (pts (xy 237.49 210.82) (xy 144.78 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29cd1ef7-e1e3-4429-9405-47c1e469b1c0) + ) + (wire (pts (xy 179.07 194.31) (xy 454.66 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c71c944-17ce-40c9-80b7-c661e3225a28) + ) + (wire (pts (xy 142.24 214.63) (xy 142.24 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d488cb9-6b3b-48ef-81ed-e1b1068d1e6d) + ) + (wire (pts (xy 330.2 201.93) (xy 152.4 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d7f6b15-b06f-4a1b-9cdf-6b17fec08907) + ) + (wire (pts (xy 292.1 229.87) (xy 292.1 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35d4cf57-e811-449c-a3f2-5c5a6d92c783) + ) + (wire (pts (xy 142.24 163.83) (xy 138.43 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35e99222-f0cd-423a-b90d-3eb8167c2328) + ) + (wire (pts (xy 260.35 229.87) (xy 260.35 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36e54c98-a7ef-4823-b8f6-0feb57edc6cb) + ) + (wire (pts (xy 321.31 229.87) (xy 321.31 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3738305d-4368-4c6f-a6a8-b9feb310de3a) + ) + (wire (pts (xy 140.97 162.56) (xy 140.97 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3845164b-e522-41cd-bdfb-7cc227741d30) + ) + (wire (pts (xy 110.49 231.14) (xy 110.49 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38a1139e-7961-4f60-b479-4ccc612ce61b) + ) + (wire (pts (xy 298.45 204.47) (xy 149.86 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38d6c7cf-597f-4a09-b528-3b5ffda55bfe) + ) + (wire (pts (xy 139.7 167.64) (xy 139.7 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38f80388-5479-42df-b20b-3fc909f115ba) + ) + (wire (pts (xy 173.99 198.12) (xy 173.99 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c48f760-b9e1-4c5f-b002-e9d40d5d6102) + ) + (wire (pts (xy 462.28 237.49) (xy 462.28 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3eaaf8c4-e8ff-4867-8285-1ce51b769cee) + ) + (wire (pts (xy 173.99 243.84) (xy 204.47 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f9b19a3-4a20-417c-bf21-2103d77351b9) + ) + (wire (pts (xy 445.77 233.68) (xy 462.28 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 411cf7ad-e1b2-4d6c-bfd7-bfea526be0cf) + ) + (wire (pts (xy 146.05 160.02) (xy 146.05 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 417aba04-886a-43cd-8579-2399e152d8e3) + ) + (wire (pts (xy 363.22 199.39) (xy 171.45 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44d263e3-2ca3-4480-afb9-5acae8a1c44a) + ) + (wire (pts (xy 234.95 236.22) (xy 264.16 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46a26159-2853-409e-aad7-f2e463751eed) + ) + (wire (pts (xy 137.16 231.14) (xy 137.16 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46bb0345-12c0-4eb5-a650-2721e5f985e2) + ) + (wire (pts (xy 422.91 196.85) (xy 180.34 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48bab8f3-583f-401b-8c20-f8078e2ef5e4) + ) + (wire (pts (xy 147.32 161.29) (xy 143.51 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4af1f02e-5982-4456-ac16-dbcd26e089ac) + ) + (wire (pts (xy 151.13 157.48) (xy 151.13 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b429d5a-833b-4763-b949-2af7874964ce) + ) + (wire (pts (xy 198.12 241.3) (xy 204.47 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b9a6c12-291e-4bc5-af8f-bc767e8140be) + ) + (wire (pts (xy 180.34 195.58) (xy 175.26 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5051c361-0c03-4441-8c47-b951d55cf04f) + ) + (wire (pts (xy 143.51 161.29) (xy 143.51 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51e481a4-224e-41ed-92d5-8b74acfe9eca) + ) + (wire (pts (xy 139.7 165.1) (xy 135.89 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53b41957-6635-4b27-98de-2c18a3f11af3) + ) + (wire (pts (xy 149.86 160.02) (xy 146.05 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 569a3e0b-0581-423d-b55e-f56a48b42b27) + ) + (wire (pts (xy 171.45 168.91) (xy 171.45 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5753dd51-5ba6-4dfb-b727-bc34afdc2c64) + ) + (wire (pts (xy 152.4 167.64) (xy 152.4 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57b46c32-9b67-4fc0-9b7d-de91987c7940) + ) + (wire (pts (xy 477.52 227.33) (xy 477.52 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cc56b05-9b36-443e-8926-eec55ec8300c) + ) + (wire (pts (xy 269.24 229.87) (xy 269.24 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5df7df5d-d6ab-4352-a402-d6741d811c80) + ) + (wire (pts (xy 144.78 162.56) (xy 140.97 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 618f070a-6f8d-467a-9553-18385d69e006) + ) + (wire (pts (xy 445.77 224.79) (xy 445.77 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61a0b4d0-ddad-4047-9f55-7b97a2082c8f) + ) + (wire (pts (xy 173.99 168.91) (xy 173.99 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62ddbeb5-5c4e-4034-b29d-2be2404e48ff) + ) + (wire (pts (xy 477.52 212.09) (xy 472.44 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d71d949-c884-4c8d-a5c3-931799ea5e86) + ) + (wire (pts (xy 353.06 238.76) (xy 386.08 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6dfea1ac-15f7-425d-a7c9-eead43ea5c9b) + ) + (wire (pts (xy 148.59 158.75) (xy 148.59 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e10372b-60ee-443e-8c9f-fe2587db1c28) + ) + (wire (pts (xy 171.45 157.48) (xy 151.13 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e50086e-af9a-4edc-b92b-6006b997aaa5) + ) + (wire (pts (xy 353.06 229.87) (xy 353.06 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e7dc100-0b86-4f86-9168-5e9e4c13cc57) + ) + (wire (pts (xy 110.49 196.85) (xy 134.62 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 720f4685-f9ff-4175-a54f-1ee93b8e0e54) + ) + (wire (pts (xy 134.62 167.64) (xy 130.81 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 748d8474-b13c-4204-9b37-0d8b8f6e7de2) + ) + (wire (pts (xy 477.52 220.98) (xy 477.52 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 761b2d53-ff94-4c80-8354-4a17ac017751) + ) + (wire (pts (xy 176.53 154.94) (xy 156.21 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a77cfba-a2a1-4795-b30a-ab05356f975d) + ) + (wire (pts (xy 264.16 236.22) (xy 264.16 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7cb29725-3c1f-4e5e-a2ec-1dd21c2fa7e4) + ) + (wire (pts (xy 152.4 158.75) (xy 148.59 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d71cd6c-6084-4ead-96d4-b70410a101ac) + ) + (wire (pts (xy 147.32 167.64) (xy 147.32 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ebfe76b-70f2-423e-992e-43dd3c673f3e) + ) + (wire (pts (xy 166.37 231.14) (xy 166.37 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ec20d20-88d8-402a-aed9-281ab9cede23) + ) + (wire (pts (xy 292.1 234.95) (xy 321.31 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f19e437-70ac-4aae-b227-c23eda2065aa) + ) + (wire (pts (xy 137.16 166.37) (xy 133.35 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82e0292a-4551-420e-960b-ead504ceb3d8) + ) + (wire (pts (xy 298.45 229.87) (xy 298.45 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82ee2ea0-76aa-419b-af42-0fb6ef41bea3) + ) + (wire (pts (xy 292.1 233.68) (xy 292.1 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83712c02-c71c-4e74-9aab-b43ad377e30e) + ) + (wire (pts (xy 149.86 167.64) (xy 149.86 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8492dcd1-4d3e-4f52-8c1c-2614d45d84ae) + ) + (wire (pts (xy 393.7 198.12) (xy 173.99 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84f988e3-02cd-46ad-b6fe-f012539116d1) + ) + (wire (pts (xy 386.08 242.57) (xy 435.61 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 857731a5-0e96-468e-a81f-c748ac9515a3) + ) + (wire (pts (xy 173.99 247.65) (xy 173.99 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 873eca86-c934-4df1-b9d8-b4db0e4d4e16) + ) + (wire (pts (xy 166.37 243.84) (xy 173.99 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e8a32ed-2e3b-4f6e-b22e-32f6c377775c) + ) + (wire (pts (xy 416.56 227.33) (xy 416.56 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8eca95eb-5b19-47d8-a184-389fc59a668d) + ) + (wire (pts (xy 153.67 156.21) (xy 153.67 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93d1b101-baab-4c44-98a3-ef3c38c792d5) + ) + (wire (pts (xy 147.32 207.01) (xy 147.32 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 944bbd09-97b0-4823-b387-3e518531e108) + ) + (wire (pts (xy 144.78 210.82) (xy 144.78 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94663d06-b797-4f0d-9239-2881d6175519) + ) + (wire (pts (xy 138.43 163.83) (xy 138.43 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95368fc7-bd43-4547-bab6-1f9e07e15ee4) + ) + (wire (pts (xy 133.35 138.43) (xy 133.35 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96175cf4-8f61-4ba8-b236-1a48f78feba0) + ) + (wire (pts (xy 204.47 241.3) (xy 234.95 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99293638-50a6-436e-acd4-14b136db9dd3) + ) + (wire (pts (xy 198.12 231.14) (xy 198.12 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cf92db3-9b1f-4fdb-89a1-a5f65e74928b) + ) + (wire (pts (xy 133.35 247.65) (xy 173.99 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9dab0c36-4031-4cda-8f90-3c0747f3122d) + ) + (wire (pts (xy 386.08 238.76) (xy 386.08 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a316ddb4-a866-48c6-b626-cd7222327dbe) + ) + (wire (pts (xy 260.35 233.68) (xy 264.16 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9473937-8437-4da0-8c1a-df23dcf47e5a) + ) + (wire (pts (xy 207.01 214.63) (xy 142.24 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b328d45d-cd0d-4032-a19d-5a82d49bdef5) + ) + (wire (pts (xy 175.26 196.85) (xy 176.53 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6e72476-1809-4844-b2b0-43c12b263926) + ) + (wire (pts (xy 363.22 228.6) (xy 363.22 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6f2c8ad-80d1-4099-94bd-c8879a97b1d9) + ) + (wire (pts (xy 234.95 241.3) (xy 234.95 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b796d06a-3c8b-46b5-a410-477372c75d63) + ) + (wire (pts (xy 137.16 167.64) (xy 137.16 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bcd70844-a10a-42f8-a7e0-7a060fdcbedd) + ) + (wire (pts (xy 435.61 242.57) (xy 435.61 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd7ecdf7-f9d2-495c-b316-8a6dd8074518) + ) + (wire (pts (xy 422.91 224.79) (xy 422.91 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf64a9ca-9c9e-44db-b412-950da8a60dee) + ) + (wire (pts (xy 175.26 195.58) (xy 175.26 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0c92e27-6d94-4b01-8078-0a434b62688b) + ) + (wire (pts (xy 176.53 168.91) (xy 176.53 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6740c88-4335-4083-b202-b5637cf099db) + ) + (wire (pts (xy 171.45 199.39) (xy 171.45 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9985df9-2569-4121-b3ef-ba12d6c798f8) + ) + (wire (pts (xy 143.51 231.14) (xy 137.16 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d070d1f6-50c2-4db3-84f8-f931955b9bc2) + ) + (wire (pts (xy 133.35 231.14) (xy 133.35 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d274bc92-93ed-4540-82ad-4afeb38faac4) + ) + (wire (pts (xy 149.86 204.47) (xy 149.86 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d53f431e-44e5-4d38-bb81-5b8dc89f393d) + ) + (wire (pts (xy 179.07 194.31) (xy 179.07 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d568b544-132b-40f8-9a0f-8c44a72fdb34) + ) + (wire (pts (xy 237.49 229.87) (xy 237.49 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbfe512d-c0be-4638-aa97-5670f842fba9) + ) + (wire (pts (xy 269.24 207.01) (xy 147.32 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de41ae13-8429-459b-b7c1-0be5e80d5774) + ) + (wire (pts (xy 229.87 236.22) (xy 234.95 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e160367d-3c7f-4c25-976c-00fe65bc6bd7) + ) + (wire (pts (xy 152.4 201.93) (xy 152.4 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e944433f-8b35-4240-9091-b38dcf4cbe47) + ) + (wire (pts (xy 144.78 167.64) (xy 144.78 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea5c7779-f167-41b0-8883-9673bc958e69) + ) + (wire (pts (xy 139.7 218.44) (xy 139.7 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee4806db-792a-4a7b-8284-e4c8314386a4) + ) + (wire (pts (xy 135.89 165.1) (xy 135.89 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef418e6a-5d44-445d-a5bf-e94586c91098) + ) + (wire (pts (xy 133.35 166.37) (xy 133.35 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef5e8020-8288-4972-b7e9-b54d418ec10e) + ) + (wire (pts (xy 321.31 234.95) (xy 321.31 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f34650a1-467c-4670-b1af-ca2952305825) + ) + (wire (pts (xy 204.47 243.84) (xy 204.47 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3bb5b8a-3c2f-4c04-b1b6-b6df5a199287) + ) + (wire (pts (xy 353.06 236.22) (xy 353.06 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f45ae9a8-4fed-42f8-b6af-d1eeacda15a8) + ) + (wire (pts (xy 386.08 228.6) (xy 386.08 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5cb3427-2274-4e7b-9b61-ac16e6fb8b26) + ) + (wire (pts (xy 156.21 154.94) (xy 156.21 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5d021e3-ee71-4fc1-902d-39467d2f7fb8) + ) + (wire (pts (xy 472.44 212.09) (xy 472.44 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7f23c36-3f4b-4a5e-ba10-0ebda61d45e8) + ) + (wire (pts (xy 229.87 231.14) (xy 229.87 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc5de40b-3cc9-4dc1-9a25-824127b783cb) + ) + (wire (pts (xy 321.31 236.22) (xy 353.06 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc68bd6e-7c8b-48d4-8f35-46341414da50) + ) + (wire (pts (xy 130.81 167.64) (xy 130.81 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fcb216b7-8029-4ee7-b9c9-ea4d3fe52f06) + ) + (wire (pts (xy 175.26 231.14) (xy 175.26 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff052c97-f82c-412d-92d1-f8b820e56ddb) + ) + (wire (pts (xy 477.52 220.98) (xy 478.79 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff536afb-ee68-4ee9-b831-33c081a2f411) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 405.13 227.33 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 07fee1ac-3d60-4a5f-b7a0-0416fc5d2e1b) + (property "Reference" "v10" (id 0) (at 401.955 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 405.765 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 409.575 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 405.13 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 95ce7f3b-6abd-4d28-ae70-6c0caad0c8b0)) + (pin "2" (uuid ba716d07-2929-4722-babc-a437ffbf08ef)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 218.44 231.14 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e17a8ef-d962-482a-a1eb-542d641f6b01) + (property "Reference" "v4" (id 0) (at 215.265 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 219.075 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 222.885 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 218.44 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 47c73aea-a5a4-44c6-9786-479c8c3faa41)) + (pin "2" (uuid 28846100-1f50-4d90-babd-a66ea7b96174)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 154.94 231.14 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1751725b-0b80-4d32-a88b-b2819491feee) + (property "Reference" "v2" (id 0) (at 151.765 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 155.575 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 159.385 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 154.94 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 718d1f34-28f0-4c36-bcd5-1b9bf5d8ef26)) + (pin "2" (uuid 3a08cbef-5cf8-458e-889a-387d87d9c0e6)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 176.53 182.88 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1988ad47-4fa5-4db0-8aa9-c5da4e4ab974) + (property "Reference" "U4" (id 0) (at 162.56 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 166.37 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 176.53 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 176.53 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 75e5ff52-c1e5-4f04-88b3-5673802a8ad6)) + (pin "2" (uuid 45f57de5-63af-4f44-8c00-ba81c65728a9)) + (pin "3" (uuid 930d51bb-1eca-4a2f-ba4d-8bf461563aeb)) + (pin "4" (uuid 6cddb9d6-5ae8-4606-9723-e638fc3dd1ea)) + (pin "5" (uuid 924364a6-96ea-445a-a93d-8496db8bf226)) + (pin "6" (uuid 58ea2d6c-be21-46f1-adf0-b163e98ee55d)) + (pin "7" (uuid ce7cff85-d4c1-4bf9-ad69-9f2cadc9599e)) + (pin "8" (uuid 5488327c-2b62-4c70-9422-fed3af993cae)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 472.44 205.74 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 382f245d-3078-44f7-8aa1-7bff05c6910b) + (property "Reference" "#PWR0101" (id 0) (at 478.79 205.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 477.52 205.74 0)) + (property "Footprint" "" (id 2) (at 472.44 205.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 472.44 205.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a49784af-1b65-45ef-8c7c-795739594f0d)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 280.67 229.87 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3f1197d3-6306-4cfa-b0a8-5634d4ddb59f) + (property "Reference" "v6" (id 0) (at 277.495 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 281.305 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 285.115 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 280.67 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cee57d89-6bb1-4140-9a9d-6d4dba883f6b)) + (pin "2" (uuid 03afbd09-d392-405f-81d6-b8a2311adb63)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 341.63 229.87 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4d97b8b8-ba09-46e3-9985-49a970b23c7f) + (property "Reference" "v8" (id 0) (at 338.455 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 342.265 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 346.075 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 341.63 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ec683f06-332c-4dec-9ce0-dcfba0547ce7)) + (pin "2" (uuid dc95a043-2d80-4175-8dc3-7c43cbb9194b)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 186.69 231.14 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6641312e-75d7-477f-bbbc-a0f177ff12ff) + (property "Reference" "v3" (id 0) (at 183.515 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 187.325 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 191.135 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 186.69 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8b175100-143e-484b-97bd-3c00a84dfe80)) + (pin "2" (uuid 1bffbcae-0e20-436b-82ed-d8009b2573f7)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 138.43 100.33 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 821ec837-0ab9-4b29-9957-d782daf40ab6) + (property "Reference" "U3" (id 0) (at 124.46 96.52 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 128.27 96.52 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 138.43 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 138.43 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 34735e38-e802-4b6a-8b95-31792395e7d2)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 434.34 224.79 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 88211eb8-a710-4fe8-8543-6146d187e5be) + (property "Reference" "v11" (id 0) (at 431.165 219.71 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 434.975 219.71 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 438.785 219.71 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 434.34 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3df28fbc-7b9c-4a6b-8899-72e1fde6386a)) + (pin "2" (uuid 0ba5e48a-f845-4d44-adc1-6a03b75a0370)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 121.92 231.14 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9b930b8e-2c34-4be0-814c-7bba7252ef49) + (property "Reference" "v1" (id 0) (at 118.745 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 122.555 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 126.365 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 121.92 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7b3c7990-a044-45a3-8e9f-afa6d055e43f)) + (pin "2" (uuid 652629cf-cb3b-48ff-91f3-4e94371a3c24)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 134.62 114.3 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid b62fcf8c-91fe-4365-915c-d5229321c014) + (property "Reference" "U1" (id 0) (at 124.46 114.935 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 128.27 114.935 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 134.62 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 134.62 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 74eed6a5-f4cb-46f4-89d9-ac8b6763784b)) + (pin "2" (uuid 5483636d-153b-4c93-817c-2061821962ff)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 248.92 229.87 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b9b8e370-9bff-420d-b4c0-8a3b04d70634) + (property "Reference" "v5" (id 0) (at 245.745 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 249.555 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 253.365 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 248.92 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d48fb325-24ca-4d91-b8f6-b8a55b7ae50e)) + (pin "2" (uuid ace0c1ae-d730-4c4b-aaf4-ecbbace901f0)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 374.65 228.6 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb66b163-3e8a-48ed-8b21-33520c901679) + (property "Reference" "v9" (id 0) (at 371.475 223.52 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 375.285 223.52 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 379.095 223.52 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 374.65 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e5cb6ad6-12fe-4fc9-a088-435298a30ed2)) + (pin "2" (uuid 3b38bed8-c95c-42ca-af2c-634476457400)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 466.09 227.33 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d004b88a-c714-4498-aea3-06444a9c4d06) + (property "Reference" "v12" (id 0) (at 462.915 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 466.725 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 470.535 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 466.09 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 262af7db-1a02-4448-afc3-46b85e7d6052)) + (pin "2" (uuid 58763579-0650-42b6-af16-704205a699ee)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 309.88 229.87 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d6343d74-5de7-40d2-8197-dc3b8a17b65b) + (property "Reference" "v7" (id 0) (at 306.705 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 310.515 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 314.325 224.79 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 309.88 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9200de4d-3ccb-4afb-8f26-9207b3ac946f)) + (pin "2" (uuid c4403e34-17b4-4104-82b9-bc8443ea4c71)) + ) + + (symbol (lib_id "eSim_Subckt:CD4051") (at 142.24 146.05 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid d8195c79-81dd-4141-b63f-76f83f10e61f) + (property "Reference" "X1" (id 0) (at 140.97 146.05 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "CD4051" (id 1) (at 143.51 146.05 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 142.24 146.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 142.24 146.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1e0ef05c-4e5c-4cd4-8962-c47e25985d2b)) + (pin "10" (uuid 688a955c-1786-42e0-a019-81096d938ae0)) + (pin "11" (uuid 5d83c2a0-9b25-47fd-8055-87ddf6fe4a3c)) + (pin "12" (uuid d3886944-c3c9-4334-b6e1-1b6edd49d744)) + (pin "2" (uuid 73de62c2-8d67-4031-8943-ce83a15eb921)) + (pin "3" (uuid a2dee864-d826-4b36-8051-21ff260bfaec)) + (pin "4" (uuid 92a5df17-ad34-49a5-9ae8-0b3c76835990)) + (pin "5" (uuid 5d2862f5-d9ba-4cb3-941d-d93f7744b8e9)) + (pin "6" (uuid d4b8d1ba-39d0-4984-b84b-4d3d05878f7a)) + (pin "7" (uuid 819fc69a-c090-4f1b-8047-78369ab0ffb1)) + (pin "8" (uuid 3ce15fec-a2e2-4787-bf10-3d690b8dcabf)) + (pin "9" (uuid ce97abcd-92fe-48c6-aedd-4cdcb3e83ef9)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_8") (at 135.89 181.61 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e445afb2-e5b6-4b86-b5a1-92d2e7e64e54) + (property "Reference" "U2" (id 0) (at 125.73 182.245 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_8" (id 1) (at 129.54 182.245 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 135.89 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 20ba7daa-a4cc-4589-8b20-1f0f68a1313f)) + (pin "10" (uuid 8e51f6d5-350f-4ddb-a594-c01617f5dc45)) + (pin "11" (uuid 8caf3ed6-1e1d-4291-8daf-f71bb90094bd)) + (pin "12" (uuid 61d31c5a-9447-4ac2-a91c-b9da3ff7e9d9)) + (pin "13" (uuid bd20f098-e580-4763-9688-9610041de3d6)) + (pin "14" (uuid df77b6a8-2198-4461-b3e5-f805f44e562b)) + (pin "15" (uuid bb675a5e-0b96-4660-8472-94ad4ddb9829)) + (pin "16" (uuid 6695108e-fef8-4dad-9776-f6601388be73)) + (pin "2" (uuid 9262406b-9601-4e16-a29d-f566804e7bc3)) + (pin "3" (uuid f0ad73d9-236f-486d-9353-db5a7efcc77a)) + (pin "4" (uuid 4a49fc0d-1663-4fe0-8af8-6e748fe54f19)) + (pin "5" (uuid 187e7d51-440f-4c1f-b852-ef17bea0c152)) + (pin "6" (uuid 96ab6941-d971-4c08-b626-52a87e50aacb)) + (pin "7" (uuid a7496f80-ee2e-41c0-aea6-ae21a89e897a)) + (pin "8" (uuid 8b6810df-2536-4a1a-a1c4-ac6ff9565908)) + (pin "9" (uuid dcbbad0d-8596-472d-b3c8-bd7278004c26)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/382f245d-3078-44f7-8aa1-7bff05c6910b" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/b62fcf8c-91fe-4365-915c-d5229321c014" + (reference "U1") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/e445afb2-e5b6-4b86-b5a1-92d2e7e64e54" + (reference "U2") (unit 1) (value "adc_bridge_8") (footprint "") + ) + (path "/821ec837-0ab9-4b29-9957-d782daf40ab6" + (reference "U3") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/1988ad47-4fa5-4db0-8aa9-c5da4e4ab974" + (reference "U4") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/d8195c79-81dd-4141-b63f-76f83f10e61f" + (reference "X1") (unit 1) (value "CD4051") (footprint "") + ) + (path "/9b930b8e-2c34-4be0-814c-7bba7252ef49" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/1751725b-0b80-4d32-a88b-b2819491feee" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/6641312e-75d7-477f-bbbc-a0f177ff12ff" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/0e17a8ef-d962-482a-a1eb-542d641f6b01" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/b9b8e370-9bff-420d-b4c0-8a3b04d70634" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/3f1197d3-6306-4cfa-b0a8-5634d4ddb59f" + (reference "v6") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/d6343d74-5de7-40d2-8197-dc3b8a17b65b" + (reference "v7") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/4d97b8b8-ba09-46e3-9985-49a970b23c7f" + (reference "v8") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/bb66b163-3e8a-48ed-8b21-33520c901679" + (reference "v9") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/07fee1ac-3d60-4a5f-b7a0-0416fc5d2e1b" + (reference "v10") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/88211eb8-a710-4fe8-8543-6146d187e5be" + (reference "v11") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/d004b88a-c714-4498-aea3-06444a9c4d06" + (reference "v12") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4051_sub/CD4051_test.proj b/library/SubcircuitLibrary/CD4051_sub/CD4051_test.proj new file mode 100644 index 000000000..86bd5d9a5 --- /dev/null +++ b/library/SubcircuitLibrary/CD4051_sub/CD4051_test.proj @@ -0,0 +1 @@ +schematicFile CD4051_test.kicad_sch diff --git a/library/SubcircuitLibrary/CD4068B/CD4068B-cache.lib b/library/SubcircuitLibrary/CD4068B/CD4068B-cache.lib new file mode 100644 index 000000000..80dcddf3a --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CD4068B-cache.lib @@ -0,0 +1,128 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 100 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 550 0 50 0 1 0 N +P 2 0 1 0 -450 250 500 0 N +P 3 0 1 0 -450 250 -450 -250 500 0 N +X IN 1 -650 0 200 R 50 50 1 1 I +X VDD 2 -650 150 200 R 50 50 1 1 I +X GND 3 -650 -150 200 R 50 50 1 1 I +X OUT 4 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4068B/CD4068B.bak b/library/SubcircuitLibrary/CD4068B/CD4068B.bak new file mode 100644 index 000000000..4e5197823 --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CD4068B.bak @@ -0,0 +1,878 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC6 +U 1 1 685AD145 +P 4100 1000 +F 0 "SC6" H 4150 1300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4400 1087 50 0000 R CNN +F 2 "" H 4100 -500 50 0001 C CNN +F 3 "" H 4100 1000 50 0001 C CNN + 1 4100 1000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC7 +U 1 1 685AD255 +P 4100 1650 +F 0 "SC7" H 4150 1950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4400 1737 50 0000 R CNN +F 2 "" H 4100 150 50 0001 C CNN +F 3 "" H 4100 1650 50 0001 C CNN + 1 4100 1650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC8 +U 1 1 685AD36A +P 4100 2300 +F 0 "SC8" H 4150 2600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4400 2387 50 0000 R CNN +F 2 "" H 4100 800 50 0001 C CNN +F 3 "" H 4100 2300 50 0001 C CNN + 1 4100 2300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC9 +U 1 1 685AD3B9 +P 4100 2950 +F 0 "SC9" H 4150 3250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4400 3037 50 0000 R CNN +F 2 "" H 4100 1450 50 0001 C CNN +F 3 "" H 4100 2950 50 0001 C CNN + 1 4100 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC10 +U 1 1 685AD444 +P 4100 3650 +F 0 "SC10" H 4150 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4400 3737 50 0000 R CNN +F 2 "" H 4100 2150 50 0001 C CNN +F 3 "" H 4100 3650 50 0001 C CNN + 1 4100 3650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 685AD467 +P 3400 3650 +F 0 "SC4" H 3450 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3700 3737 50 0000 R CNN +F 2 "" H 3400 2150 50 0001 C CNN +F 3 "" H 3400 3650 50 0001 C CNN + 1 3400 3650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 685AD4EE +P 2700 3650 +F 0 "SC2" H 2750 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3000 3737 50 0000 R CNN +F 2 "" H 2700 2150 50 0001 C CNN +F 3 "" H 2700 3650 50 0001 C CNN + 1 2700 3650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 685AD585 +P 2000 3650 +F 0 "SC1" H 2050 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 2300 3737 50 0000 R CNN +F 2 "" H 2000 2150 50 0001 C CNN +F 3 "" H 2000 3650 50 0001 C CNN + 1 2000 3650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC12 +U 1 1 685AE290 +P 5100 4650 +F 0 "SC12" H 5150 4950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5400 4737 50 0000 R CNN +F 2 "" H 5100 3150 50 0001 C CNN +F 3 "" H 5100 4650 50 0001 C CNN + 1 5100 4650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC13 +U 1 1 685AE297 +P 5100 5300 +F 0 "SC13" H 5150 5600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5400 5387 50 0000 R CNN +F 2 "" H 5100 3800 50 0001 C CNN +F 3 "" H 5100 5300 50 0001 C CNN + 1 5100 5300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC14 +U 1 1 685AE29E +P 5100 5950 +F 0 "SC14" H 5150 6250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5400 6037 50 0000 R CNN +F 2 "" H 5100 4450 50 0001 C CNN +F 3 "" H 5100 5950 50 0001 C CNN + 1 5100 5950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC15 +U 1 1 685AE2A5 +P 5100 6600 +F 0 "SC15" H 5150 6900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5400 6687 50 0000 R CNN +F 2 "" H 5100 5100 50 0001 C CNN +F 3 "" H 5100 6600 50 0001 C CNN + 1 5100 6600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC16 +U 1 1 685AE2AC +P 5100 7300 +F 0 "SC16" H 5150 7600 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5400 7387 50 0000 R CNN +F 2 "" H 5100 5800 50 0001 C CNN +F 3 "" H 5100 7300 50 0001 C CNN + 1 5100 7300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC11 +U 1 1 685AE2B3 +P 4400 7300 +F 0 "SC11" H 4450 7600 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4700 7387 50 0000 R CNN +F 2 "" H 4400 5800 50 0001 C CNN +F 3 "" H 4400 7300 50 0001 C CNN + 1 4400 7300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 685AE2BA +P 3700 7300 +F 0 "SC5" H 3750 7600 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4000 7387 50 0000 R CNN +F 2 "" H 3700 5800 50 0001 C CNN +F 3 "" H 3700 7300 50 0001 C CNN + 1 3700 7300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 685AE2C1 +P 3000 7300 +F 0 "SC3" H 3050 7600 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3300 7387 50 0000 R CNN +F 2 "" H 3000 5800 50 0001 C CNN +F 3 "" H 3000 7300 50 0001 C CNN + 1 3000 7300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X9 +U 1 1 685AE361 +P 7850 3500 +F 0 "X9" H 7850 3500 60 0000 C CNN +F 1 "CMOS_INVTR" H 7950 3250 60 0000 C CNN +F 2 "" H 7850 3500 60 0001 C CNN +F 3 "" H 7850 3500 60 0001 C CNN + 1 7850 3500 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X10 +U 1 1 685AE3CE +P 9400 3500 +F 0 "X10" H 9400 3500 60 0000 C CNN +F 1 "CMOS_INVTR" H 9500 3250 60 0000 C CNN +F 2 "" H 9400 3500 60 0001 C CNN +F 3 "" H 9400 3500 60 0001 C CNN + 1 9400 3500 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X1 +U 1 1 685AE85A +P 2000 850 +F 0 "X1" H 2000 850 60 0000 C CNN +F 1 "CMOS_INVTR" H 2100 600 60 0000 C CNN +F 2 "" H 2000 850 60 0001 C CNN +F 3 "" H 2000 850 60 0001 C CNN + 1 2000 850 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 685AE943 +P 2000 1350 +F 0 "X2" H 2000 1350 60 0000 C CNN +F 1 "CMOS_INVTR" H 2100 1100 60 0000 C CNN +F 2 "" H 2000 1350 60 0001 C CNN +F 3 "" H 2000 1350 60 0001 C CNN + 1 2000 1350 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X3 +U 1 1 685AEBEB +P 2000 1850 +F 0 "X3" H 2000 1850 60 0000 C CNN +F 1 "CMOS_INVTR" H 2100 1600 60 0000 C CNN +F 2 "" H 2000 1850 60 0001 C CNN +F 3 "" H 2000 1850 60 0001 C CNN + 1 2000 1850 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X4 +U 1 1 685AED4C +P 2000 2350 +F 0 "X4" H 2000 2350 60 0000 C CNN +F 1 "CMOS_INVTR" H 2100 2100 60 0000 C CNN +F 2 "" H 2000 2350 60 0001 C CNN +F 3 "" H 2000 2350 60 0001 C CNN + 1 2000 2350 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X5 +U 1 1 685AF209 +P 3450 4600 +F 0 "X5" H 3450 4600 60 0000 C CNN +F 1 "CMOS_INVTR" H 3550 4350 60 0000 C CNN +F 2 "" H 3450 4600 60 0001 C CNN +F 3 "" H 3450 4600 60 0001 C CNN + 1 3450 4600 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X6 +U 1 1 685AF210 +P 3450 5100 +F 0 "X6" H 3450 5100 60 0000 C CNN +F 1 "CMOS_INVTR" H 3550 4850 60 0000 C CNN +F 2 "" H 3450 5100 60 0001 C CNN +F 3 "" H 3450 5100 60 0001 C CNN + 1 3450 5100 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X7 +U 1 1 685AF217 +P 3450 5600 +F 0 "X7" H 3450 5600 60 0000 C CNN +F 1 "CMOS_INVTR" H 3550 5350 60 0000 C CNN +F 2 "" H 3450 5600 60 0001 C CNN +F 3 "" H 3450 5600 60 0001 C CNN + 1 3450 5600 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X8 +U 1 1 685AF21E +P 3450 6100 +F 0 "X8" H 3450 6100 60 0000 C CNN +F 1 "CMOS_INVTR" H 3550 5850 60 0000 C CNN +F 2 "" H 3450 6100 60 0001 C CNN +F 3 "" H 3450 6100 60 0001 C CNN + 1 3450 6100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685AF2E4 +P 850 850 +F 0 "U1" H 900 950 30 0000 C CNN +F 1 "PORT" H 850 850 30 0000 C CNN +F 2 "" H 850 850 60 0000 C CNN +F 3 "" H 850 850 60 0000 C CNN + 1 850 850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685AF341 +P 850 1350 +F 0 "U1" H 900 1450 30 0000 C CNN +F 1 "PORT" H 850 1350 30 0000 C CNN +F 2 "" H 850 1350 60 0000 C CNN +F 3 "" H 850 1350 60 0000 C CNN + 2 850 1350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685AF3A8 +P 850 1850 +F 0 "U1" H 900 1950 30 0000 C CNN +F 1 "PORT" H 850 1850 30 0000 C CNN +F 2 "" H 850 1850 60 0000 C CNN +F 3 "" H 850 1850 60 0000 C CNN + 3 850 1850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685AF403 +P 850 2350 +F 0 "U1" H 900 2450 30 0000 C CNN +F 1 "PORT" H 850 2350 30 0000 C CNN +F 2 "" H 850 2350 60 0000 C CNN +F 3 "" H 850 2350 60 0000 C CNN + 4 850 2350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685AF4EA +P 2300 4600 +F 0 "U1" H 2350 4700 30 0000 C CNN +F 1 "PORT" H 2300 4600 30 0000 C CNN +F 2 "" H 2300 4600 60 0000 C CNN +F 3 "" H 2300 4600 60 0000 C CNN + 5 2300 4600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685AF571 +P 2300 5100 +F 0 "U1" H 2350 5200 30 0000 C CNN +F 1 "PORT" H 2300 5100 30 0000 C CNN +F 2 "" H 2300 5100 60 0000 C CNN +F 3 "" H 2300 5100 60 0000 C CNN + 6 2300 5100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 685AF624 +P 2300 5600 +F 0 "U1" H 2350 5700 30 0000 C CNN +F 1 "PORT" H 2300 5600 30 0000 C CNN +F 2 "" H 2300 5600 60 0000 C CNN +F 3 "" H 2300 5600 60 0000 C CNN + 7 2300 5600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 685AF6CD +P 2300 6100 +F 0 "U1" H 2350 6200 30 0000 C CNN +F 1 "PORT" H 2300 6100 30 0000 C CNN +F 2 "" H 2300 6100 60 0000 C CNN +F 3 "" H 2300 6100 60 0000 C CNN + 8 2300 6100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 685AF8FA +P 10650 3500 +F 0 "U1" H 10700 3600 30 0000 C CNN +F 1 "PORT" H 10650 3500 30 0000 C CNN +F 2 "" H 10650 3500 60 0000 C CNN +F 3 "" H 10650 3500 60 0000 C CNN + 11 10650 3500 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 685AF9B9 +P 10650 3850 +F 0 "U1" H 10700 3950 30 0000 C CNN +F 1 "PORT" H 10650 3850 30 0000 C CNN +F 2 "" H 10650 3850 60 0000 C CNN +F 3 "" H 10650 3850 60 0000 C CNN + 12 10650 3850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 685AFD96 +P 4900 600 +F 0 "U1" H 4950 700 30 0000 C CNN +F 1 "PORT" H 4900 600 30 0000 C CNN +F 2 "" H 4900 600 60 0000 C CNN +F 3 "" H 4900 600 60 0000 C CNN + 9 4900 600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 685B0001 +P 5700 7700 +F 0 "U1" H 5750 7800 30 0000 C CNN +F 1 "PORT" H 5700 7700 30 0000 C CNN +F 2 "" H 5700 7700 60 0000 C CNN +F 3 "" H 5700 7700 60 0000 C CNN + 10 5700 7700 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC17 +U 1 1 685B0511 +P 5350 2600 +F 0 "SC17" H 5400 2900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5650 2687 50 0000 R CNN +F 2 "" H 5350 1100 50 0001 C CNN +F 3 "" H 5350 2600 50 0001 C CNN + 1 5350 2600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC20 +U 1 1 685B05AA +P 6000 2600 +F 0 "SC20" H 6050 2900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6300 2687 50 0000 R CNN +F 2 "" H 6000 1100 50 0001 C CNN +F 3 "" H 6000 2600 50 0001 C CNN + 1 6000 2600 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC18 +U 1 1 685B066D +P 5500 3400 +F 0 "SC18" H 5550 3700 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5800 3487 50 0000 R CNN +F 2 "" H 5500 1900 50 0001 C CNN +F 3 "" H 5500 3400 50 0001 C CNN + 1 5500 3400 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC19 +U 1 1 685B071E +P 5900 4050 +F 0 "SC19" H 5950 4350 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6200 4137 50 0000 R CNN +F 2 "" H 5900 2550 50 0001 C CNN +F 3 "" H 5900 4050 50 0001 C CNN + 1 5900 4050 + -1 0 0 -1 +$EndComp +Wire Wire Line + 1100 850 1350 850 +Wire Wire Line + 1100 1350 1350 1350 +Wire Wire Line + 1100 1850 1350 1850 +Wire Wire Line + 1100 2350 1350 2350 +Wire Wire Line + 2550 4600 2800 4600 +Wire Wire Line + 2550 5100 2800 5100 +Wire Wire Line + 2550 5600 2800 5600 +Wire Wire Line + 2550 6100 2800 6100 +Wire Wire Line + 4300 1300 4300 1350 +Wire Wire Line + 4300 1950 4300 2000 +Wire Wire Line + 4300 2600 4300 2650 +Wire Wire Line + 4300 3350 4300 3250 +Wire Wire Line + 3800 2950 3800 3650 +Wire Wire Line + 3800 2300 3100 2300 +Wire Wire Line + 3100 1850 3100 3650 +Wire Wire Line + 3800 1650 2400 1650 +Wire Wire Line + 2400 1650 2400 3650 +Wire Wire Line + 3800 1000 1700 1000 +Wire Wire Line + 1700 1000 1700 3650 +Wire Wire Line + 2800 850 2800 1000 +Connection ~ 2800 1000 +Wire Wire Line + 2800 1350 2800 1650 +Connection ~ 2800 1650 +Wire Wire Line + 2800 1850 3100 1850 +Connection ~ 3100 2300 +Wire Wire Line + 2800 2350 3650 2350 +Wire Wire Line + 3650 2350 3650 3000 +Wire Wire Line + 3650 3000 3800 3000 +Connection ~ 3800 3000 +Wire Wire Line + 5300 4950 5300 5000 +Wire Wire Line + 5300 5600 5300 5650 +Wire Wire Line + 5300 6250 5300 6300 +Wire Wire Line + 5300 6900 5300 7000 +Wire Wire Line + 4800 6600 4800 7300 +Wire Wire Line + 4800 5950 4100 5950 +Wire Wire Line + 4100 5950 4100 7300 +Wire Wire Line + 4800 5300 3400 5300 +Wire Wire Line + 3400 5300 3400 7300 +Wire Wire Line + 4800 4650 2700 4650 +Wire Wire Line + 2700 4650 2700 7300 +Wire Wire Line + 4250 6100 4250 6650 +Wire Wire Line + 4250 6650 4800 6650 +Connection ~ 4800 6650 +Wire Wire Line + 4250 5600 4250 5950 +Connection ~ 4250 5950 +Wire Wire Line + 4250 5100 4250 5300 +Connection ~ 4250 5300 +Wire Wire Line + 4300 4600 4250 4600 +Wire Wire Line + 4300 4600 4300 4650 +Connection ~ 4300 4650 +Wire Wire Line + 10200 3500 10400 3500 +Wire Wire Line + 7050 3850 10400 3850 +Wire Wire Line + 7050 3000 7050 3850 +Wire Wire Line + 7050 3500 7200 3500 +Wire Wire Line + 8650 3500 8750 3500 +Wire Wire Line + 5550 2900 5800 2900 +Wire Wire Line + 5700 3100 5700 2900 +Connection ~ 5700 2900 +Wire Wire Line + 5700 3000 7050 3000 +Connection ~ 7050 3500 +Connection ~ 5700 3000 +Wire Wire Line + 5700 3750 5700 3700 +Wire Wire Line + 5550 2300 5800 2300 +Wire Wire Line + 5050 2600 5050 3400 +Wire Wire Line + 5050 3400 5200 3400 +Wire Wire Line + 2200 3300 5050 3300 +Connection ~ 5050 3300 +Connection ~ 4300 3300 +Wire Wire Line + 6300 2600 6300 4050 +Wire Wire Line + 6300 4050 6200 4050 +Wire Wire Line + 3200 6950 6400 6950 +Wire Wire Line + 6400 6950 6400 3800 +Wire Wire Line + 6400 3800 6300 3800 +Connection ~ 6300 3800 +Connection ~ 5300 6950 +Wire Wire Line + 4300 700 4450 700 +Wire Wire Line + 4450 550 4450 4250 +Wire Wire Line + 4450 4250 5450 4250 +Wire Wire Line + 5300 4250 5300 4350 +Wire Wire Line + 5450 4250 5450 6600 +Wire Wire Line + 5450 6600 5200 6600 +Connection ~ 5300 4250 +Wire Wire Line + 5200 5950 5450 5950 +Connection ~ 5450 5950 +Wire Wire Line + 5200 5300 5450 5300 +Connection ~ 5450 5300 +Wire Wire Line + 5200 4650 5450 4650 +Connection ~ 5450 4650 +Wire Wire Line + 4200 2950 4450 2950 +Connection ~ 4450 2950 +Wire Wire Line + 4200 2300 4450 2300 +Connection ~ 4450 2300 +Wire Wire Line + 4200 1650 8750 1650 +Connection ~ 4450 1650 +Wire Wire Line + 4200 1000 4450 1000 +Connection ~ 4450 1000 +Wire Wire Line + 2200 3300 2200 3350 +Wire Wire Line + 2900 3350 2900 3300 +Connection ~ 2900 3300 +Wire Wire Line + 3600 3350 3600 3300 +Connection ~ 3600 3300 +Wire Wire Line + 3200 6950 3200 7000 +Wire Wire Line + 3900 7000 3900 6950 +Connection ~ 3900 6950 +Wire Wire Line + 4600 7000 4600 6950 +Connection ~ 4600 6950 +Wire Wire Line + 1350 2200 1100 2200 +Wire Wire Line + 1100 550 1100 4450 +Wire Wire Line + 1100 550 4450 550 +Connection ~ 4450 700 +Wire Wire Line + 1350 1700 1100 1700 +Connection ~ 1100 1700 +Wire Wire Line + 1350 1200 1100 1200 +Connection ~ 1100 1200 +Wire Wire Line + 1350 700 1100 700 +Connection ~ 1100 700 +Wire Wire Line + 1100 4450 2800 4450 +Connection ~ 1100 2200 +Wire Wire Line + 2800 5950 2600 5950 +Wire Wire Line + 2600 5950 2600 4450 +Connection ~ 2600 4450 +Wire Wire Line + 2800 4950 2600 4950 +Connection ~ 2600 4950 +Wire Wire Line + 2800 5450 2600 5450 +Connection ~ 2600 5450 +Wire Wire Line + 5450 2600 5600 2600 +Wire Wire Line + 5600 2600 5600 2300 +Connection ~ 5600 2300 +Wire Wire Line + 5900 2600 5750 2600 +Wire Wire Line + 5750 2600 5750 2300 +Connection ~ 5750 2300 +Wire Wire Line + 5700 1650 5700 2300 +Connection ~ 5700 2300 +Wire Wire Line + 8750 1650 8750 3350 +Connection ~ 5700 1650 +Wire Wire Line + 7200 3350 7200 1650 +Connection ~ 7200 1650 +Wire Wire Line + 4650 600 4450 600 +Connection ~ 4450 600 +Wire Wire Line + 1350 1000 1200 1000 +Wire Wire Line + 1200 1000 1200 7700 +Wire Wire Line + 1350 1500 1200 1500 +Connection ~ 1200 1500 +Wire Wire Line + 1350 2000 1200 2000 +Connection ~ 1200 2000 +Wire Wire Line + 1350 2500 1200 2500 +Connection ~ 1200 2500 +Wire Wire Line + 1200 4050 5800 4050 +Wire Wire Line + 4300 4050 4300 3950 +Wire Wire Line + 4200 3650 4350 3650 +Wire Wire Line + 4350 3650 4350 4050 +Connection ~ 4300 4050 +Wire Wire Line + 3600 3950 3600 4050 +Connection ~ 3600 4050 +Wire Wire Line + 3500 3650 3650 3650 +Wire Wire Line + 3650 3650 3650 4050 +Connection ~ 3650 4050 +Wire Wire Line + 2900 3950 2900 4050 +Connection ~ 2900 4050 +Wire Wire Line + 2800 3650 2950 3650 +Wire Wire Line + 2950 3650 2950 4050 +Connection ~ 2950 4050 +Wire Wire Line + 2200 3950 2200 4050 +Connection ~ 2200 4050 +Wire Wire Line + 2100 3650 2250 3650 +Wire Wire Line + 2250 3650 2250 4050 +Connection ~ 2250 4050 +Wire Wire Line + 1200 7700 5450 7700 +Wire Wire Line + 5300 7700 5300 7600 +Connection ~ 1200 4050 +Wire Wire Line + 5200 7300 5350 7300 +Wire Wire Line + 5350 7300 5350 7700 +Connection ~ 5300 7700 +Wire Wire Line + 4600 7600 4600 7700 +Connection ~ 4600 7700 +Wire Wire Line + 4500 7300 4650 7300 +Wire Wire Line + 4650 7300 4650 7700 +Connection ~ 4650 7700 +Wire Wire Line + 3900 7600 3900 7700 +Connection ~ 3900 7700 +Wire Wire Line + 3800 7300 3950 7300 +Wire Wire Line + 3950 7300 3950 7700 +Connection ~ 3950 7700 +Wire Wire Line + 3200 7600 3200 7700 +Connection ~ 3200 7700 +Wire Wire Line + 3100 7300 3250 7300 +Wire Wire Line + 3250 7300 3250 7700 +Connection ~ 3250 7700 +Connection ~ 5350 7700 +Wire Wire Line + 2800 4750 1200 4750 +Connection ~ 1200 4750 +Wire Wire Line + 2800 5250 1200 5250 +Connection ~ 1200 5250 +Wire Wire Line + 2800 5750 1200 5750 +Connection ~ 1200 5750 +Wire Wire Line + 2800 6250 1200 6250 +Connection ~ 1200 6250 +Wire Wire Line + 5550 4050 5550 4400 +Wire Wire Line + 5550 4400 8750 4400 +Wire Wire Line + 8750 4400 8750 3650 +Connection ~ 4350 4050 +Wire Wire Line + 7200 3650 7200 4400 +Connection ~ 7200 4400 +Wire Wire Line + 5700 4350 5700 4400 +Connection ~ 5700 4400 +Connection ~ 5550 4050 +Wire Wire Line + 5600 3400 6000 3400 +Wire Wire Line + 6000 3400 6000 4400 +Connection ~ 6000 4400 +$Comp +L SKY130mode scmode1 +U 1 1 685BA6E8 +P 8750 5150 +F 0 "scmode1" H 8750 5300 98 0000 C CNB +F 1 "SKY130mode" H 8750 5050 118 0000 C CNB +F 2 "" H 8750 5300 60 0001 C CNN +F 3 "" H 8750 5300 60 0001 C CNN + 1 8750 5150 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4068B/CD4068B.cir b/library/SubcircuitLibrary/CD4068B/CD4068B.cir new file mode 100644 index 000000000..8e615d3e1 --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CD4068B.cir @@ -0,0 +1,43 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CD4068B/CD4068B.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Wed Jun 25 11:08:04 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC6 Net-_SC6-Pad1_ Net-_SC1-Pad2_ Net-_SC12-Pad3_ Net-_SC12-Pad3_ sky130_fd_pr__pfet_01v8 +SC7 Net-_SC7-Pad1_ Net-_SC2-Pad2_ Net-_SC6-Pad1_ Net-_SC12-Pad3_ sky130_fd_pr__pfet_01v8 +SC8 Net-_SC8-Pad1_ Net-_SC4-Pad2_ Net-_SC7-Pad1_ Net-_SC12-Pad3_ sky130_fd_pr__pfet_01v8 +SC9 Net-_SC1-Pad1_ Net-_SC10-Pad2_ Net-_SC8-Pad1_ Net-_SC12-Pad3_ sky130_fd_pr__pfet_01v8 +SC10 Net-_SC1-Pad1_ Net-_SC10-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC1-Pad1_ Net-_SC4-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC12 Net-_SC12-Pad1_ Net-_SC12-Pad2_ Net-_SC12-Pad3_ Net-_SC12-Pad3_ sky130_fd_pr__pfet_01v8 +SC13 Net-_SC13-Pad1_ Net-_SC13-Pad2_ Net-_SC12-Pad1_ Net-_SC12-Pad3_ sky130_fd_pr__pfet_01v8 +SC14 Net-_SC14-Pad1_ Net-_SC11-Pad2_ Net-_SC13-Pad1_ Net-_SC12-Pad3_ sky130_fd_pr__pfet_01v8 +SC15 Net-_SC11-Pad1_ Net-_SC15-Pad2_ Net-_SC14-Pad1_ Net-_SC12-Pad3_ sky130_fd_pr__pfet_01v8 +SC16 Net-_SC11-Pad1_ Net-_SC15-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC11 Net-_SC11-Pad1_ Net-_SC11-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC5 Net-_SC11-Pad1_ Net-_SC13-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC3 Net-_SC11-Pad1_ Net-_SC12-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +X9 Net-_SC17-Pad1_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_X10-Pad1_ CMOS_INVTR +X10 Net-_X10-Pad1_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_U1-Pad11_ CMOS_INVTR +X1 Net-_U1-Pad1_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_SC1-Pad2_ CMOS_INVTR +X2 Net-_U1-Pad2_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_SC2-Pad2_ CMOS_INVTR +X3 Net-_U1-Pad3_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_SC4-Pad2_ CMOS_INVTR +X4 Net-_U1-Pad4_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_SC10-Pad2_ CMOS_INVTR +X5 Net-_U1-Pad5_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_SC12-Pad2_ CMOS_INVTR +X6 Net-_U1-Pad6_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_SC13-Pad2_ CMOS_INVTR +X7 Net-_U1-Pad7_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_SC11-Pad2_ CMOS_INVTR +X8 Net-_U1-Pad8_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_SC15-Pad2_ CMOS_INVTR +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_U1-Pad11_ Net-_U1-Pad12_ PORT +SC17 Net-_SC17-Pad1_ Net-_SC1-Pad1_ Net-_SC12-Pad3_ Net-_SC12-Pad3_ sky130_fd_pr__pfet_01v8 +SC20 Net-_SC17-Pad1_ Net-_SC11-Pad1_ Net-_SC12-Pad3_ Net-_SC12-Pad3_ sky130_fd_pr__pfet_01v8 +SC18 Net-_SC17-Pad1_ Net-_SC1-Pad1_ Net-_SC18-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC19 Net-_SC18-Pad3_ Net-_SC11-Pad1_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +scmode1 SKY130mode +X11 Net-_SC17-Pad1_ Net-_SC12-Pad3_ Net-_SC1-Pad3_ Net-_U1-Pad12_ CMOS_INVTR + +.end diff --git a/library/SubcircuitLibrary/CD4068B/CD4068B.cir.out b/library/SubcircuitLibrary/CD4068B/CD4068B.cir.out new file mode 100644 index 000000000..d515e7f4a --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CD4068B.cir.out @@ -0,0 +1,47 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cd4068b/cd4068b.cir + +.include CMOS_INVTR.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc6 net-_sc6-pad1_ net-_sc1-pad2_ net-_sc12-pad3_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc7 net-_sc7-pad1_ net-_sc2-pad2_ net-_sc6-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc8-pad1_ net-_sc4-pad2_ net-_sc7-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc9 net-_sc1-pad1_ net-_sc10-pad2_ net-_sc8-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc10 net-_sc1-pad1_ net-_sc10-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad1_ net-_sc4-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc12 net-_sc12-pad1_ net-_sc12-pad2_ net-_sc12-pad3_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc13 net-_sc13-pad1_ net-_sc13-pad2_ net-_sc12-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc14 net-_sc14-pad1_ net-_sc11-pad2_ net-_sc13-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc15 net-_sc11-pad1_ net-_sc15-pad2_ net-_sc14-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc16 net-_sc11-pad1_ net-_sc15-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc11 net-_sc11-pad1_ net-_sc11-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc11-pad1_ net-_sc13-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc3 net-_sc11-pad1_ net-_sc12-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +x9 net-_sc17-pad1_ net-_sc12-pad3_ net-_sc1-pad3_ net-_x10-pad1_ CMOS_INVTR +x10 net-_x10-pad1_ net-_sc12-pad3_ net-_sc1-pad3_ net-_u1-pad11_ CMOS_INVTR +x1 net-_u1-pad1_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc1-pad2_ CMOS_INVTR +x2 net-_u1-pad2_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc2-pad2_ CMOS_INVTR +x3 net-_u1-pad3_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc4-pad2_ CMOS_INVTR +x4 net-_u1-pad4_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc10-pad2_ CMOS_INVTR +x5 net-_u1-pad5_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc12-pad2_ CMOS_INVTR +x6 net-_u1-pad6_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc13-pad2_ CMOS_INVTR +x7 net-_u1-pad7_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc11-pad2_ CMOS_INVTR +x8 net-_u1-pad8_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc15-pad2_ CMOS_INVTR +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_sc12-pad3_ net-_sc1-pad3_ net-_u1-pad11_ net-_u1-pad12_ port +xsc17 net-_sc17-pad1_ net-_sc1-pad1_ net-_sc12-pad3_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc20 net-_sc17-pad1_ net-_sc11-pad1_ net-_sc12-pad3_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc18 net-_sc17-pad1_ net-_sc1-pad1_ net-_sc18-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc19 net-_sc18-pad3_ net-_sc11-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +x11 net-_sc17-pad1_ net-_sc12-pad3_ net-_sc1-pad3_ net-_u1-pad12_ CMOS_INVTR +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4068B/CD4068B.pro b/library/SubcircuitLibrary/CD4068B/CD4068B.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CD4068B.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4068B/CD4068B.sch b/library/SubcircuitLibrary/CD4068B/CD4068B.sch new file mode 100644 index 000000000..686cc9b6c --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CD4068B.sch @@ -0,0 +1,900 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:CD4068B-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC6 +U 1 1 685AD145 +P 4100 1000 +F 0 "SC6" H 4150 1300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4400 1087 50 0000 R CNN +F 2 "" H 4100 -500 50 0001 C CNN +F 3 "" H 4100 1000 50 0001 C CNN + 1 4100 1000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC7 +U 1 1 685AD255 +P 4100 1650 +F 0 "SC7" H 4150 1950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4400 1737 50 0000 R CNN +F 2 "" H 4100 150 50 0001 C CNN +F 3 "" H 4100 1650 50 0001 C CNN + 1 4100 1650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC8 +U 1 1 685AD36A +P 4100 2300 +F 0 "SC8" H 4150 2600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4400 2387 50 0000 R CNN +F 2 "" H 4100 800 50 0001 C CNN +F 3 "" H 4100 2300 50 0001 C CNN + 1 4100 2300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC9 +U 1 1 685AD3B9 +P 4100 2950 +F 0 "SC9" H 4150 3250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4400 3037 50 0000 R CNN +F 2 "" H 4100 1450 50 0001 C CNN +F 3 "" H 4100 2950 50 0001 C CNN + 1 4100 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC10 +U 1 1 685AD444 +P 4100 3650 +F 0 "SC10" H 4150 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4400 3737 50 0000 R CNN +F 2 "" H 4100 2150 50 0001 C CNN +F 3 "" H 4100 3650 50 0001 C CNN + 1 4100 3650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 685AD467 +P 3400 3650 +F 0 "SC4" H 3450 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3700 3737 50 0000 R CNN +F 2 "" H 3400 2150 50 0001 C CNN +F 3 "" H 3400 3650 50 0001 C CNN + 1 3400 3650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 685AD4EE +P 2700 3650 +F 0 "SC2" H 2750 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3000 3737 50 0000 R CNN +F 2 "" H 2700 2150 50 0001 C CNN +F 3 "" H 2700 3650 50 0001 C CNN + 1 2700 3650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 685AD585 +P 2000 3650 +F 0 "SC1" H 2050 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 2300 3737 50 0000 R CNN +F 2 "" H 2000 2150 50 0001 C CNN +F 3 "" H 2000 3650 50 0001 C CNN + 1 2000 3650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC12 +U 1 1 685AE290 +P 5100 4650 +F 0 "SC12" H 5150 4950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5400 4737 50 0000 R CNN +F 2 "" H 5100 3150 50 0001 C CNN +F 3 "" H 5100 4650 50 0001 C CNN + 1 5100 4650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC13 +U 1 1 685AE297 +P 5100 5300 +F 0 "SC13" H 5150 5600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5400 5387 50 0000 R CNN +F 2 "" H 5100 3800 50 0001 C CNN +F 3 "" H 5100 5300 50 0001 C CNN + 1 5100 5300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC14 +U 1 1 685AE29E +P 5100 5950 +F 0 "SC14" H 5150 6250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5400 6037 50 0000 R CNN +F 2 "" H 5100 4450 50 0001 C CNN +F 3 "" H 5100 5950 50 0001 C CNN + 1 5100 5950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC15 +U 1 1 685AE2A5 +P 5100 6600 +F 0 "SC15" H 5150 6900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5400 6687 50 0000 R CNN +F 2 "" H 5100 5100 50 0001 C CNN +F 3 "" H 5100 6600 50 0001 C CNN + 1 5100 6600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC16 +U 1 1 685AE2AC +P 5100 7300 +F 0 "SC16" H 5150 7600 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5400 7387 50 0000 R CNN +F 2 "" H 5100 5800 50 0001 C CNN +F 3 "" H 5100 7300 50 0001 C CNN + 1 5100 7300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC11 +U 1 1 685AE2B3 +P 4400 7300 +F 0 "SC11" H 4450 7600 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4700 7387 50 0000 R CNN +F 2 "" H 4400 5800 50 0001 C CNN +F 3 "" H 4400 7300 50 0001 C CNN + 1 4400 7300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 685AE2BA +P 3700 7300 +F 0 "SC5" H 3750 7600 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4000 7387 50 0000 R CNN +F 2 "" H 3700 5800 50 0001 C CNN +F 3 "" H 3700 7300 50 0001 C CNN + 1 3700 7300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 685AE2C1 +P 3000 7300 +F 0 "SC3" H 3050 7600 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3300 7387 50 0000 R CNN +F 2 "" H 3000 5800 50 0001 C CNN +F 3 "" H 3000 7300 50 0001 C CNN + 1 3000 7300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X9 +U 1 1 685AE361 +P 7850 3500 +F 0 "X9" H 7850 3500 60 0000 C CNN +F 1 "CMOS_INVTR" H 7950 3250 60 0000 C CNN +F 2 "" H 7850 3500 60 0001 C CNN +F 3 "" H 7850 3500 60 0001 C CNN + 1 7850 3500 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X10 +U 1 1 685AE3CE +P 9400 3500 +F 0 "X10" H 9400 3500 60 0000 C CNN +F 1 "CMOS_INVTR" H 9500 3250 60 0000 C CNN +F 2 "" H 9400 3500 60 0001 C CNN +F 3 "" H 9400 3500 60 0001 C CNN + 1 9400 3500 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X1 +U 1 1 685AE85A +P 2000 850 +F 0 "X1" H 2000 850 60 0000 C CNN +F 1 "CMOS_INVTR" H 2100 600 60 0000 C CNN +F 2 "" H 2000 850 60 0001 C CNN +F 3 "" H 2000 850 60 0001 C CNN + 1 2000 850 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 685AE943 +P 2000 1350 +F 0 "X2" H 2000 1350 60 0000 C CNN +F 1 "CMOS_INVTR" H 2100 1100 60 0000 C CNN +F 2 "" H 2000 1350 60 0001 C CNN +F 3 "" H 2000 1350 60 0001 C CNN + 1 2000 1350 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X3 +U 1 1 685AEBEB +P 2000 1850 +F 0 "X3" H 2000 1850 60 0000 C CNN +F 1 "CMOS_INVTR" H 2100 1600 60 0000 C CNN +F 2 "" H 2000 1850 60 0001 C CNN +F 3 "" H 2000 1850 60 0001 C CNN + 1 2000 1850 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X4 +U 1 1 685AED4C +P 2000 2350 +F 0 "X4" H 2000 2350 60 0000 C CNN +F 1 "CMOS_INVTR" H 2100 2100 60 0000 C CNN +F 2 "" H 2000 2350 60 0001 C CNN +F 3 "" H 2000 2350 60 0001 C CNN + 1 2000 2350 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X5 +U 1 1 685AF209 +P 3450 4600 +F 0 "X5" H 3450 4600 60 0000 C CNN +F 1 "CMOS_INVTR" H 3550 4350 60 0000 C CNN +F 2 "" H 3450 4600 60 0001 C CNN +F 3 "" H 3450 4600 60 0001 C CNN + 1 3450 4600 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X6 +U 1 1 685AF210 +P 3450 5100 +F 0 "X6" H 3450 5100 60 0000 C CNN +F 1 "CMOS_INVTR" H 3550 4850 60 0000 C CNN +F 2 "" H 3450 5100 60 0001 C CNN +F 3 "" H 3450 5100 60 0001 C CNN + 1 3450 5100 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X7 +U 1 1 685AF217 +P 3450 5600 +F 0 "X7" H 3450 5600 60 0000 C CNN +F 1 "CMOS_INVTR" H 3550 5350 60 0000 C CNN +F 2 "" H 3450 5600 60 0001 C CNN +F 3 "" H 3450 5600 60 0001 C CNN + 1 3450 5600 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X8 +U 1 1 685AF21E +P 3450 6100 +F 0 "X8" H 3450 6100 60 0000 C CNN +F 1 "CMOS_INVTR" H 3550 5850 60 0000 C CNN +F 2 "" H 3450 6100 60 0001 C CNN +F 3 "" H 3450 6100 60 0001 C CNN + 1 3450 6100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685AF2E4 +P 850 850 +F 0 "U1" H 900 950 30 0000 C CNN +F 1 "PORT" H 850 850 30 0000 C CNN +F 2 "" H 850 850 60 0000 C CNN +F 3 "" H 850 850 60 0000 C CNN + 1 850 850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685AF341 +P 850 1350 +F 0 "U1" H 900 1450 30 0000 C CNN +F 1 "PORT" H 850 1350 30 0000 C CNN +F 2 "" H 850 1350 60 0000 C CNN +F 3 "" H 850 1350 60 0000 C CNN + 2 850 1350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685AF3A8 +P 850 1850 +F 0 "U1" H 900 1950 30 0000 C CNN +F 1 "PORT" H 850 1850 30 0000 C CNN +F 2 "" H 850 1850 60 0000 C CNN +F 3 "" H 850 1850 60 0000 C CNN + 3 850 1850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685AF403 +P 850 2350 +F 0 "U1" H 900 2450 30 0000 C CNN +F 1 "PORT" H 850 2350 30 0000 C CNN +F 2 "" H 850 2350 60 0000 C CNN +F 3 "" H 850 2350 60 0000 C CNN + 4 850 2350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685AF4EA +P 2300 4600 +F 0 "U1" H 2350 4700 30 0000 C CNN +F 1 "PORT" H 2300 4600 30 0000 C CNN +F 2 "" H 2300 4600 60 0000 C CNN +F 3 "" H 2300 4600 60 0000 C CNN + 5 2300 4600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685AF571 +P 2300 5100 +F 0 "U1" H 2350 5200 30 0000 C CNN +F 1 "PORT" H 2300 5100 30 0000 C CNN +F 2 "" H 2300 5100 60 0000 C CNN +F 3 "" H 2300 5100 60 0000 C CNN + 6 2300 5100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 685AF624 +P 2300 5600 +F 0 "U1" H 2350 5700 30 0000 C CNN +F 1 "PORT" H 2300 5600 30 0000 C CNN +F 2 "" H 2300 5600 60 0000 C CNN +F 3 "" H 2300 5600 60 0000 C CNN + 7 2300 5600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 685AF6CD +P 2300 6100 +F 0 "U1" H 2350 6200 30 0000 C CNN +F 1 "PORT" H 2300 6100 30 0000 C CNN +F 2 "" H 2300 6100 60 0000 C CNN +F 3 "" H 2300 6100 60 0000 C CNN + 8 2300 6100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 685AF8FA +P 10650 3500 +F 0 "U1" H 10700 3600 30 0000 C CNN +F 1 "PORT" H 10650 3500 30 0000 C CNN +F 2 "" H 10650 3500 60 0000 C CNN +F 3 "" H 10650 3500 60 0000 C CNN + 11 10650 3500 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 685AF9B9 +P 10650 3850 +F 0 "U1" H 10700 3950 30 0000 C CNN +F 1 "PORT" H 10650 3850 30 0000 C CNN +F 2 "" H 10650 3850 60 0000 C CNN +F 3 "" H 10650 3850 60 0000 C CNN + 12 10650 3850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 685AFD96 +P 4900 600 +F 0 "U1" H 4950 700 30 0000 C CNN +F 1 "PORT" H 4900 600 30 0000 C CNN +F 2 "" H 4900 600 60 0000 C CNN +F 3 "" H 4900 600 60 0000 C CNN + 9 4900 600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 685B0001 +P 5700 7700 +F 0 "U1" H 5750 7800 30 0000 C CNN +F 1 "PORT" H 5700 7700 30 0000 C CNN +F 2 "" H 5700 7700 60 0000 C CNN +F 3 "" H 5700 7700 60 0000 C CNN + 10 5700 7700 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC17 +U 1 1 685B0511 +P 5350 2600 +F 0 "SC17" H 5400 2900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5650 2687 50 0000 R CNN +F 2 "" H 5350 1100 50 0001 C CNN +F 3 "" H 5350 2600 50 0001 C CNN + 1 5350 2600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC20 +U 1 1 685B05AA +P 6000 2600 +F 0 "SC20" H 6050 2900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6300 2687 50 0000 R CNN +F 2 "" H 6000 1100 50 0001 C CNN +F 3 "" H 6000 2600 50 0001 C CNN + 1 6000 2600 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC18 +U 1 1 685B066D +P 5500 3400 +F 0 "SC18" H 5550 3700 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5800 3487 50 0000 R CNN +F 2 "" H 5500 1900 50 0001 C CNN +F 3 "" H 5500 3400 50 0001 C CNN + 1 5500 3400 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC19 +U 1 1 685B071E +P 5900 4050 +F 0 "SC19" H 5950 4350 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6200 4137 50 0000 R CNN +F 2 "" H 5900 2550 50 0001 C CNN +F 3 "" H 5900 4050 50 0001 C CNN + 1 5900 4050 + -1 0 0 -1 +$EndComp +Wire Wire Line + 1100 850 1350 850 +Wire Wire Line + 1100 1350 1350 1350 +Wire Wire Line + 1100 1850 1350 1850 +Wire Wire Line + 1100 2350 1350 2350 +Wire Wire Line + 2550 4600 2800 4600 +Wire Wire Line + 2550 5100 2800 5100 +Wire Wire Line + 2550 5600 2800 5600 +Wire Wire Line + 2550 6100 2800 6100 +Wire Wire Line + 4300 1300 4300 1350 +Wire Wire Line + 4300 1950 4300 2000 +Wire Wire Line + 4300 2600 4300 2650 +Wire Wire Line + 4300 3350 4300 3250 +Wire Wire Line + 3800 2950 3800 3650 +Wire Wire Line + 3800 2300 3100 2300 +Wire Wire Line + 3100 1850 3100 3650 +Wire Wire Line + 3800 1650 2400 1650 +Wire Wire Line + 2400 1650 2400 3650 +Wire Wire Line + 3800 1000 1700 1000 +Wire Wire Line + 1700 1000 1700 3650 +Wire Wire Line + 2800 850 2800 1000 +Connection ~ 2800 1000 +Wire Wire Line + 2800 1350 2800 1650 +Connection ~ 2800 1650 +Wire Wire Line + 2800 1850 3100 1850 +Connection ~ 3100 2300 +Wire Wire Line + 2800 2350 3650 2350 +Wire Wire Line + 3650 2350 3650 3000 +Wire Wire Line + 3650 3000 3800 3000 +Connection ~ 3800 3000 +Wire Wire Line + 5300 4950 5300 5000 +Wire Wire Line + 5300 5600 5300 5650 +Wire Wire Line + 5300 6250 5300 6300 +Wire Wire Line + 5300 6900 5300 7000 +Wire Wire Line + 4800 6600 4800 7300 +Wire Wire Line + 4800 5950 4100 5950 +Wire Wire Line + 4100 5950 4100 7300 +Wire Wire Line + 4800 5300 3400 5300 +Wire Wire Line + 3400 5300 3400 7300 +Wire Wire Line + 4800 4650 2700 4650 +Wire Wire Line + 2700 4650 2700 7300 +Wire Wire Line + 4250 6100 4250 6650 +Wire Wire Line + 4250 6650 4800 6650 +Connection ~ 4800 6650 +Wire Wire Line + 4250 5600 4250 5950 +Connection ~ 4250 5950 +Wire Wire Line + 4250 5100 4250 5300 +Connection ~ 4250 5300 +Wire Wire Line + 4300 4600 4250 4600 +Wire Wire Line + 4300 4600 4300 4650 +Connection ~ 4300 4650 +Wire Wire Line + 10200 3500 10400 3500 +Wire Wire Line + 7050 3000 7050 4300 +Wire Wire Line + 7050 3500 7200 3500 +Wire Wire Line + 8650 3500 8750 3500 +Wire Wire Line + 5550 2900 5800 2900 +Wire Wire Line + 5700 3100 5700 2900 +Connection ~ 5700 2900 +Wire Wire Line + 5700 3000 7050 3000 +Connection ~ 7050 3500 +Connection ~ 5700 3000 +Wire Wire Line + 5700 3750 5700 3700 +Wire Wire Line + 5550 2300 5800 2300 +Wire Wire Line + 5050 2600 5050 3400 +Wire Wire Line + 5050 3400 5200 3400 +Wire Wire Line + 2200 3300 5050 3300 +Connection ~ 5050 3300 +Connection ~ 4300 3300 +Wire Wire Line + 6300 2600 6300 4050 +Wire Wire Line + 6300 4050 6200 4050 +Wire Wire Line + 3200 6950 6400 6950 +Wire Wire Line + 6400 6950 6400 3800 +Wire Wire Line + 6400 3800 6300 3800 +Connection ~ 6300 3800 +Connection ~ 5300 6950 +Wire Wire Line + 4300 700 4450 700 +Wire Wire Line + 4450 550 4450 4250 +Wire Wire Line + 4450 4250 5450 4250 +Wire Wire Line + 5300 4250 5300 4350 +Wire Wire Line + 5450 4250 5450 6600 +Wire Wire Line + 5450 6600 5200 6600 +Connection ~ 5300 4250 +Wire Wire Line + 5200 5950 5450 5950 +Connection ~ 5450 5950 +Wire Wire Line + 5200 5300 5450 5300 +Connection ~ 5450 5300 +Wire Wire Line + 5200 4650 5450 4650 +Connection ~ 5450 4650 +Wire Wire Line + 4200 2950 4450 2950 +Connection ~ 4450 2950 +Wire Wire Line + 4200 2300 4450 2300 +Connection ~ 4450 2300 +Wire Wire Line + 4200 1650 8750 1650 +Connection ~ 4450 1650 +Wire Wire Line + 4200 1000 4450 1000 +Connection ~ 4450 1000 +Wire Wire Line + 2200 3300 2200 3350 +Wire Wire Line + 2900 3350 2900 3300 +Connection ~ 2900 3300 +Wire Wire Line + 3600 3350 3600 3300 +Connection ~ 3600 3300 +Wire Wire Line + 3200 6950 3200 7000 +Wire Wire Line + 3900 7000 3900 6950 +Connection ~ 3900 6950 +Wire Wire Line + 4600 7000 4600 6950 +Connection ~ 4600 6950 +Wire Wire Line + 1350 2200 1100 2200 +Wire Wire Line + 1100 550 1100 4450 +Wire Wire Line + 1100 550 4450 550 +Connection ~ 4450 700 +Wire Wire Line + 1350 1700 1100 1700 +Connection ~ 1100 1700 +Wire Wire Line + 1350 1200 1100 1200 +Connection ~ 1100 1200 +Wire Wire Line + 1350 700 1100 700 +Connection ~ 1100 700 +Wire Wire Line + 1100 4450 2800 4450 +Connection ~ 1100 2200 +Wire Wire Line + 2800 5950 2600 5950 +Wire Wire Line + 2600 5950 2600 4450 +Connection ~ 2600 4450 +Wire Wire Line + 2800 4950 2600 4950 +Connection ~ 2600 4950 +Wire Wire Line + 2800 5450 2600 5450 +Connection ~ 2600 5450 +Wire Wire Line + 5450 2600 5600 2600 +Wire Wire Line + 5600 2600 5600 2300 +Connection ~ 5600 2300 +Wire Wire Line + 5900 2600 5750 2600 +Wire Wire Line + 5750 2600 5750 2300 +Connection ~ 5750 2300 +Wire Wire Line + 5700 1650 5700 2300 +Connection ~ 5700 2300 +Wire Wire Line + 8750 1650 8750 3350 +Connection ~ 5700 1650 +Wire Wire Line + 7200 3350 7200 1650 +Connection ~ 7200 1650 +Wire Wire Line + 4650 600 4450 600 +Connection ~ 4450 600 +Wire Wire Line + 1350 1000 1200 1000 +Wire Wire Line + 1200 1000 1200 7700 +Wire Wire Line + 1350 1500 1200 1500 +Connection ~ 1200 1500 +Wire Wire Line + 1350 2000 1200 2000 +Connection ~ 1200 2000 +Wire Wire Line + 1350 2500 1200 2500 +Connection ~ 1200 2500 +Wire Wire Line + 1200 4050 5800 4050 +Wire Wire Line + 4300 4050 4300 3950 +Wire Wire Line + 4200 3650 4350 3650 +Wire Wire Line + 4350 3650 4350 4050 +Connection ~ 4300 4050 +Wire Wire Line + 3600 3950 3600 4050 +Connection ~ 3600 4050 +Wire Wire Line + 3500 3650 3650 3650 +Wire Wire Line + 3650 3650 3650 4050 +Connection ~ 3650 4050 +Wire Wire Line + 2900 3950 2900 4050 +Connection ~ 2900 4050 +Wire Wire Line + 2800 3650 2950 3650 +Wire Wire Line + 2950 3650 2950 4050 +Connection ~ 2950 4050 +Wire Wire Line + 2200 3950 2200 4050 +Connection ~ 2200 4050 +Wire Wire Line + 2100 3650 2250 3650 +Wire Wire Line + 2250 3650 2250 4050 +Connection ~ 2250 4050 +Wire Wire Line + 1200 7700 5450 7700 +Wire Wire Line + 5300 7700 5300 7600 +Connection ~ 1200 4050 +Wire Wire Line + 5200 7300 5350 7300 +Wire Wire Line + 5350 7300 5350 7700 +Connection ~ 5300 7700 +Wire Wire Line + 4600 7600 4600 7700 +Connection ~ 4600 7700 +Wire Wire Line + 4500 7300 4650 7300 +Wire Wire Line + 4650 7300 4650 7700 +Connection ~ 4650 7700 +Wire Wire Line + 3900 7600 3900 7700 +Connection ~ 3900 7700 +Wire Wire Line + 3800 7300 3950 7300 +Wire Wire Line + 3950 7300 3950 7700 +Connection ~ 3950 7700 +Wire Wire Line + 3200 7600 3200 7700 +Connection ~ 3200 7700 +Wire Wire Line + 3100 7300 3250 7300 +Wire Wire Line + 3250 7300 3250 7700 +Connection ~ 3250 7700 +Connection ~ 5350 7700 +Wire Wire Line + 2800 4750 1200 4750 +Connection ~ 1200 4750 +Wire Wire Line + 2800 5250 1200 5250 +Connection ~ 1200 5250 +Wire Wire Line + 2800 5750 1200 5750 +Connection ~ 1200 5750 +Wire Wire Line + 2800 6250 1200 6250 +Connection ~ 1200 6250 +Wire Wire Line + 5550 4050 5550 4400 +Wire Wire Line + 5550 4400 8750 4400 +Wire Wire Line + 8750 4400 8750 3650 +Connection ~ 4350 4050 +Wire Wire Line + 7200 3650 7200 4400 +Connection ~ 7200 4400 +Wire Wire Line + 5700 4350 5700 4400 +Connection ~ 5700 4400 +Connection ~ 5550 4050 +Wire Wire Line + 5600 3400 6000 3400 +Wire Wire Line + 6000 3400 6000 4400 +Connection ~ 6000 4400 +$Comp +L SKY130mode scmode1 +U 1 1 685BA6E8 +P 8750 5150 +F 0 "scmode1" H 8750 5300 98 0000 C CNB +F 1 "SKY130mode" H 8750 5050 118 0000 C CNB +F 2 "" H 8750 5300 60 0001 C CNN +F 3 "" H 8750 5300 60 0001 C CNN + 1 8750 5150 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X11 +U 1 1 685B8BEB +P 8900 4300 +F 0 "X11" H 8900 4300 60 0000 C CNN +F 1 "CMOS_INVTR" H 9000 4050 60 0000 C CNN +F 2 "" H 8900 4300 60 0001 C CNN +F 3 "" H 8900 4300 60 0001 C CNN + 1 8900 4300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9700 4300 10400 4300 +Wire Wire Line + 10400 4300 10400 3850 +Wire Wire Line + 8250 4150 8250 1650 +Connection ~ 8250 1650 +Wire Wire Line + 7050 4300 8250 4300 +Wire Wire Line + 8250 4450 8250 4400 +Connection ~ 8250 4400 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4068B/CD4068B.sub b/library/SubcircuitLibrary/CD4068B/CD4068B.sub new file mode 100644 index 000000000..ebf5fb5d2 --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CD4068B.sub @@ -0,0 +1,41 @@ +* Subcircuit CD4068B +.subckt CD4068B net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_sc12-pad3_ net-_sc1-pad3_ net-_u1-pad11_ net-_u1-pad12_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cd4068b/cd4068b.cir +.include CMOS_INVTR.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc6 net-_sc6-pad1_ net-_sc1-pad2_ net-_sc12-pad3_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc7 net-_sc7-pad1_ net-_sc2-pad2_ net-_sc6-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc8-pad1_ net-_sc4-pad2_ net-_sc7-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc9 net-_sc1-pad1_ net-_sc10-pad2_ net-_sc8-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc10 net-_sc1-pad1_ net-_sc10-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad1_ net-_sc4-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc12 net-_sc12-pad1_ net-_sc12-pad2_ net-_sc12-pad3_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc13 net-_sc13-pad1_ net-_sc13-pad2_ net-_sc12-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc14 net-_sc14-pad1_ net-_sc11-pad2_ net-_sc13-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc15 net-_sc11-pad1_ net-_sc15-pad2_ net-_sc14-pad1_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc16 net-_sc11-pad1_ net-_sc15-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc11 net-_sc11-pad1_ net-_sc11-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc11-pad1_ net-_sc13-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc3 net-_sc11-pad1_ net-_sc12-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +x9 net-_sc17-pad1_ net-_sc12-pad3_ net-_sc1-pad3_ net-_x10-pad1_ CMOS_INVTR +x10 net-_x10-pad1_ net-_sc12-pad3_ net-_sc1-pad3_ net-_u1-pad11_ CMOS_INVTR +x1 net-_u1-pad1_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc1-pad2_ CMOS_INVTR +x2 net-_u1-pad2_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc2-pad2_ CMOS_INVTR +x3 net-_u1-pad3_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc4-pad2_ CMOS_INVTR +x4 net-_u1-pad4_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc10-pad2_ CMOS_INVTR +x5 net-_u1-pad5_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc12-pad2_ CMOS_INVTR +x6 net-_u1-pad6_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc13-pad2_ CMOS_INVTR +x7 net-_u1-pad7_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc11-pad2_ CMOS_INVTR +x8 net-_u1-pad8_ net-_sc12-pad3_ net-_sc1-pad3_ net-_sc15-pad2_ CMOS_INVTR +xsc17 net-_sc17-pad1_ net-_sc1-pad1_ net-_sc12-pad3_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc20 net-_sc17-pad1_ net-_sc11-pad1_ net-_sc12-pad3_ net-_sc12-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc18 net-_sc17-pad1_ net-_sc1-pad1_ net-_sc18-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc19 net-_sc18-pad3_ net-_sc11-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +x11 net-_sc17-pad1_ net-_sc12-pad3_ net-_sc1-pad3_ net-_u1-pad12_ CMOS_INVTR +* Control Statements + +.ends CD4068B diff --git a/library/SubcircuitLibrary/CD4068B/CD4068B_Previous_Values.xml b/library/SubcircuitLibrary/CD4068B/CD4068B_Previous_Values.xml new file mode 100644 index 000000000..9c603a591 --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CD4068B_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4068B/CMOS_INVTR-cache.lib b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.cir b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.cir new file mode 100644 index 000000000..d2199ddbb --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/CMOS_INVTR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Fri Jun 13 08:49:20 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.cir.out b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.cir.out new file mode 100644 index 000000000..dec1c5fa5 --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir + + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.pro b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.sch b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.sch new file mode 100644 index 000000000..aa7a7ee81 --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.sch @@ -0,0 +1,161 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 684B982F +P 5350 2950 +F 0 "SC1" H 5400 3250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5650 3037 50 0000 R CNN +F 2 "" H 5350 1450 50 0001 C CNN +F 3 "" H 5350 2950 50 0001 C CNN + 1 5350 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684B9856 +P 5350 3800 +F 0 "SC2" H 5400 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5650 3887 50 0000 R CNN +F 2 "" H 5350 2300 50 0001 C CNN +F 3 "" H 5350 3800 50 0001 C CNN + 1 5350 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684B98AD +P 4550 3300 +F 0 "U1" H 4600 3400 30 0000 C CNN +F 1 "PORT" H 4550 3300 30 0000 C CNN +F 2 "" H 4550 3300 60 0000 C CNN +F 3 "" H 4550 3300 60 0000 C CNN + 1 4550 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B98D8 +P 6300 3350 +F 0 "U1" H 6350 3450 30 0000 C CNN +F 1 "PORT" H 6300 3350 30 0000 C CNN +F 2 "" H 6300 3350 60 0000 C CNN +F 3 "" H 6300 3350 60 0000 C CNN + 4 6300 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B9935 +P 5300 4350 +F 0 "U1" H 5350 4450 30 0000 C CNN +F 1 "PORT" H 5300 4350 30 0000 C CNN +F 2 "" H 5300 4350 60 0000 C CNN +F 3 "" H 5300 4350 60 0000 C CNN + 3 5300 4350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684B999A +P 5300 2350 +F 0 "U1" H 5350 2450 30 0000 C CNN +F 1 "PORT" H 5300 2350 30 0000 C CNN +F 2 "" H 5300 2350 60 0000 C CNN +F 3 "" H 5300 2350 60 0000 C CNN + 2 5300 2350 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B99CD +P 7950 3000 +F 0 "scmode1" H 7950 3150 98 0000 C CNB +F 1 "SKY130mode" H 7950 2900 118 0000 C CNB +F 2 "" H 7950 3150 60 0001 C CNN +F 3 "" H 7950 3150 60 0001 C CNN + 1 7950 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5550 2650 5550 2350 +Wire Wire Line + 5450 2950 5600 2950 +Wire Wire Line + 5600 2950 5600 2550 +Wire Wire Line + 5600 2550 5550 2550 +Connection ~ 5550 2550 +Wire Wire Line + 5550 3250 5550 3500 +Wire Wire Line + 6050 3350 5550 3350 +Connection ~ 5550 3350 +Wire Wire Line + 5050 2950 5050 3800 +Wire Wire Line + 4800 3300 5050 3300 +Connection ~ 5050 3300 +Wire Wire Line + 5450 3800 5600 3800 +Wire Wire Line + 5600 3800 5600 4150 +Wire Wire Line + 5600 4150 5550 4150 +Wire Wire Line + 5550 4100 5550 4350 +Connection ~ 5550 4150 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.sub b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.sub new file mode 100644 index 000000000..8283bca86 --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR.sub @@ -0,0 +1,11 @@ +* Subcircuit CMOS_INVTR +.subckt CMOS_INVTR net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends CMOS_INVTR diff --git a/library/SubcircuitLibrary/CD4068B/CMOS_INVTR_Previous_Values.xml b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR_Previous_Values.xml new file mode 100644 index 000000000..d17c4f93e --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/CMOS_INVTR_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3, l=0.15w=1, l=0.15 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4068B/analysis b/library/SubcircuitLibrary/CD4068B/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/CD4068B/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4072B/CD4072B.cir b/library/SubcircuitLibrary/CD4072B/CD4072B.cir new file mode 100644 index 000000000..12fd17d49 --- /dev/null +++ b/library/SubcircuitLibrary/CD4072B/CD4072B.cir @@ -0,0 +1,21 @@ +.title KiCad schematic +U13 Net-_U13-Pad1_ Net-_U13-Pad2_ Net-_U13-Pad3_ d_nand +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U12-Pad3_ d_nand +U15 Net-_U12-Pad3_ Net-_U13-Pad3_ Net-_U15-Pad3_ d_nor +U17 Net-_U15-Pad3_ Net-_U17-Pad2_ d_inverter +U19 Net-_U17-Pad2_ Net-_U1-Pad13_ d_buffer +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ unconnected-_U1-Pad6_ unconnected-_U1-Pad7_ unconnected-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ unconnected-_U1-Pad14_ PORT +U14 Net-_U10-Pad3_ Net-_U11-Pad3_ Net-_U14-Pad3_ d_nor +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_nand +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_nand +U18 Net-_U16-Pad2_ Net-_U1-Pad1_ d_buffer +U16 Net-_U14-Pad3_ Net-_U16-Pad2_ d_inverter +U2 Net-_U1-Pad2_ Net-_U10-Pad1_ d_inverter +U3 Net-_U1-Pad3_ Net-_U10-Pad2_ d_inverter +U5 Net-_U1-Pad5_ Net-_U11-Pad2_ d_inverter +U4 Net-_U1-Pad4_ Net-_U11-Pad1_ d_inverter +U8 Net-_U1-Pad11_ Net-_U13-Pad1_ d_inverter +U7 Net-_U1-Pad10_ Net-_U12-Pad2_ d_inverter +U6 Net-_U1-Pad9_ Net-_U12-Pad1_ d_inverter +U9 Net-_U1-Pad12_ Net-_U13-Pad2_ d_inverter +.end diff --git a/library/SubcircuitLibrary/CD4072B/CD4072B.cir.out b/library/SubcircuitLibrary/CD4072B/CD4072B.cir.out new file mode 100644 index 000000000..a3e969d48 --- /dev/null +++ b/library/SubcircuitLibrary/CD4072B/CD4072B.cir.out @@ -0,0 +1,84 @@ +.title kicad schematic + +* u13 net-_u13-pad1_ net-_u13-pad2_ net-_u13-pad3_ d_nand +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_nand +* u15 net-_u12-pad3_ net-_u13-pad3_ net-_u15-pad3_ d_nor +* u17 net-_u15-pad3_ net-_u17-pad2_ d_inverter +* u19 net-_u17-pad2_ net-_u1-pad13_ d_buffer +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ unconnected-_u1-pad6_ unconnected-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ unconnected-_u1-pad14_ port +* u14 net-_u10-pad3_ net-_u11-pad3_ net-_u14-pad3_ d_nor +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_nand +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_nand +* u18 net-_u16-pad2_ net-_u1-pad1_ d_buffer +* u16 net-_u14-pad3_ net-_u16-pad2_ d_inverter +* u2 net-_u1-pad2_ net-_u10-pad1_ d_inverter +* u3 net-_u1-pad3_ net-_u10-pad2_ d_inverter +* u5 net-_u1-pad5_ net-_u11-pad2_ d_inverter +* u4 net-_u1-pad4_ net-_u11-pad1_ d_inverter +* u8 net-_u1-pad11_ net-_u13-pad1_ d_inverter +* u7 net-_u1-pad10_ net-_u12-pad2_ d_inverter +* u6 net-_u1-pad9_ net-_u12-pad1_ d_inverter +* u9 net-_u1-pad12_ net-_u13-pad2_ d_inverter +a1 [net-_u13-pad1_ net-_u13-pad2_ ] net-_u13-pad3_ u13 +a2 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a3 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u15-pad3_ u15 +a4 net-_u15-pad3_ net-_u17-pad2_ u17 +a5 net-_u17-pad2_ net-_u1-pad13_ u19 +a6 [net-_u10-pad3_ net-_u11-pad3_ ] net-_u14-pad3_ u14 +a7 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a8 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a9 net-_u16-pad2_ net-_u1-pad1_ u18 +a10 net-_u14-pad3_ net-_u16-pad2_ u16 +a11 net-_u1-pad2_ net-_u10-pad1_ u2 +a12 net-_u1-pad3_ net-_u10-pad2_ u3 +a13 net-_u1-pad5_ net-_u11-pad2_ u5 +a14 net-_u1-pad4_ net-_u11-pad1_ u4 +a15 net-_u1-pad11_ net-_u13-pad1_ u8 +a16 net-_u1-pad10_ net-_u12-pad2_ u7 +a17 net-_u1-pad9_ net-_u12-pad1_ u6 +a18 net-_u1-pad12_ net-_u13-pad2_ u9 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u12 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u15 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u19 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u14 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u10 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u11 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u18 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-09 0e-09 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4072B/CD4072B.kicad_sch b/library/SubcircuitLibrary/CD4072B/CD4072B.kicad_sch new file mode 100644 index 000000000..0c73472b9 --- /dev/null +++ b/library/SubcircuitLibrary/CD4072B/CD4072B.kicad_sch @@ -0,0 +1,1575 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 819e37da-90f4-4d1b-8f19-9c8d2fa2cc71) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nand" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nand_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nand_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (no_connect (at 78.74 151.13) (uuid 6de9c440-d720-4fc5-9996-e22f07fcbf65)) + (no_connect (at 78.74 161.29) (uuid 7c8921db-4a3b-4ff0-85ea-5d8be713453f)) + (no_connect (at 53.34 151.13) (uuid 9b7ea579-cff0-4104-ab9c-4faf65e8c88d)) + (no_connect (at 53.34 161.29) (uuid bb47f560-0b1e-4ca5-a087-d78a35f4440e)) + + (wire (pts (xy 106.68 49.53) (xy 116.84 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0809a875-1407-41e9-a0c7-aad129b7d8d1) + ) + (wire (pts (xy 116.84 49.53) (xy 116.84 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ad5d34d-1dc3-44ae-9f97-2ffc88ec2351) + ) + (wire (pts (xy 116.84 133.35) (xy 116.84 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 196fbd57-7c4f-48fd-a1ed-2c269e744bbf) + ) + (wire (pts (xy 172.72 119.38) (xy 177.8 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2546d2e8-e116-4bfd-a823-488c92e6bdaa) + ) + (wire (pts (xy 78.74 87.63) (xy 91.44 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c9cac49-4fc6-4770-9199-0c8442826ba4) + ) + (wire (pts (xy 78.74 125.73) (xy 91.44 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30b937b9-851d-4f02-9cad-63cd132e6705) + ) + (wire (pts (xy 193.04 68.58) (xy 200.66 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42f5ce2a-c2ac-4ec9-8420-091f735a97b8) + ) + (wire (pts (xy 78.74 100.33) (xy 91.44 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44ece9fe-6cc0-460c-a9ad-375c6b5e7a0b) + ) + (wire (pts (xy 116.84 125.73) (xy 116.84 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4616e8d8-98f7-4184-a3e6-5e09dc635547) + ) + (wire (pts (xy 116.84 87.63) (xy 106.68 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48d335bf-bdc4-4f16-80d9-885918342102) + ) + (wire (pts (xy 78.74 74.93) (xy 91.44 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 505bbbe9-4981-47a5-a789-43dcf36940cb) + ) + (wire (pts (xy 139.7 81.28) (xy 149.86 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56c0c5fb-dcdf-490b-8d0b-895d243ba88c) + ) + (wire (pts (xy 116.84 57.15) (xy 116.84 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ccaf357-d90a-4ade-b84d-79144aa62457) + ) + (wire (pts (xy 116.84 113.03) (xy 106.68 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 665d1ed8-448f-43f5-8ce8-1c86f782e688) + ) + (wire (pts (xy 116.84 100.33) (xy 116.84 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66cf00f1-82f4-4dc4-9934-db5816c06e45) + ) + (wire (pts (xy 106.68 100.33) (xy 116.84 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6950c763-9f3d-4967-8d9e-90cea9cb68da) + ) + (wire (pts (xy 78.74 62.23) (xy 91.44 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d11c343-b272-40af-9e35-728d52eb1e05) + ) + (wire (pts (xy 149.86 55.88) (xy 139.7 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 708de476-f493-47e0-b5f3-c948b856c5f4) + ) + (wire (pts (xy 116.84 62.23) (xy 106.68 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a32defc-cbdd-4de8-83e6-82e905bb0067) + ) + (wire (pts (xy 78.74 138.43) (xy 91.44 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2e7fb73-a27d-4a20-b5bf-65fb66235d30) + ) + (wire (pts (xy 139.7 132.08) (xy 149.86 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4e10f8a-0a16-42f7-90f6-61d20face019) + ) + (wire (pts (xy 116.84 74.93) (xy 116.84 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a59af8da-93e9-4588-b4b1-193fabcfe473) + ) + (wire (pts (xy 106.68 125.73) (xy 116.84 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af0fce9f-e2cd-4998-bc64-9d9d60b0117d) + ) + (wire (pts (xy 78.74 49.53) (xy 91.44 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b95980e8-964c-4554-bbf4-792a33d469ec) + ) + (wire (pts (xy 149.86 106.68) (xy 139.7 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3af4ba0-4e50-49b4-92d4-61827748d550) + ) + (wire (pts (xy 116.84 82.55) (xy 116.84 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4335cef-258e-41d1-9b74-b1b3f3b86683) + ) + (wire (pts (xy 116.84 107.95) (xy 116.84 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce6ae9ff-ec81-46f4-bf5b-5452dcec1e55) + ) + (wire (pts (xy 193.04 119.38) (xy 200.66 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d533a7b5-d7a0-4a4e-94b0-972fb3992e6a) + ) + (wire (pts (xy 116.84 138.43) (xy 106.68 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d83ff7b0-84aa-46ea-a543-911157f89f77) + ) + (wire (pts (xy 149.86 67.31) (xy 149.86 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd78fe82-ff12-4a3b-8659-ced807c1fd6a) + ) + (wire (pts (xy 149.86 132.08) (xy 149.86 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9b51119-7098-44ad-bfa4-5ec25ccc1059) + ) + (wire (pts (xy 78.74 113.03) (xy 91.44 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f186ef81-d03a-4945-ad12-262bb3cc7f5b) + ) + (wire (pts (xy 149.86 81.28) (xy 149.86 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6c35b0c-94e0-47c5-9a5f-21989aa28095) + ) + (wire (pts (xy 172.72 68.58) (xy 177.8 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f75f8c5d-29a2-47c9-9870-0edbf53887a1) + ) + (wire (pts (xy 106.68 74.93) (xy 116.84 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbbb4974-de1a-4414-946a-58a97226dcc6) + ) + (wire (pts (xy 149.86 118.11) (xy 149.86 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff7d0713-d703-4a72-92ea-e32661c2471d) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 99.06 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04bccd8d-d1d0-4635-8eab-acfd40a0a0ff) + (property "Reference" "U7" (id 0) (at 99.06 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 99.06 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bcbc5ae3-fa5e-4e60-b00a-de50e7a148d7)) + (pin "2" (uuid d779a019-9baf-4c9c-824e-991d04f06226)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 99.06 138.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 052fe42f-fb0c-4e70-9878-0bc492db38c8) + (property "Reference" "U9" (id 0) (at 99.06 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 99.06 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae0cc39b-74c2-4d27-9009-b87b7bbb7d2d)) + (pin "2" (uuid 2b0ae186-b506-4466-b861-71c1d3b4761f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 72.39 74.93 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0c28afe3-0660-44cf-9755-7f35a8fb0627) + (property "Reference" "U1" (id 0) (at 73.025 69.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 73.025 72.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 72.39 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a2f6ba6-a86f-4968-a9d3-003deb404d8a)) + (pin "2" (uuid c4df9f99-c3a4-4697-9513-b8157dbef2a3)) + (pin "3" (uuid 47375907-0e84-4429-b721-43e7aac7bdb2)) + (pin "4" (uuid e8321590-84c4-44e1-915b-0c9807b58efe)) + (pin "5" (uuid 27f8bfb3-763f-4f0a-9606-dd16aa2e5802)) + (pin "6" (uuid c24de799-aa34-477c-9551-d3ccd83a1ff5)) + (pin "7" (uuid 30f987f9-4a9a-4834-b9ca-204808ff4ec1)) + (pin "8" (uuid 27ae9848-d416-41f1-8ca9-784da8fae8e4)) + (pin "9" (uuid 47f2c796-fefb-43b1-aa5d-a0930a37951c)) + (pin "10" (uuid 40c5afd1-aa05-44bd-b503-c1e04efb2c01)) + (pin "11" (uuid 21fb9023-b91e-42f4-adc7-e1b49552cd66)) + (pin "12" (uuid 3a2d960b-f0d7-4a98-8f3d-049564a7509c)) + (pin "13" (uuid 4f782e76-7d7b-4836-9656-29f3d13cdf57)) + (pin "14" (uuid 7c7c82fa-1ed7-4347-b584-f29d8fced502)) + (pin "15" (uuid 84d5e6c9-b069-410f-be2e-9a4e237eb1b0)) + (pin "16" (uuid 300a9ccb-ea50-44a5-b9ec-dd411ba12620)) + (pin "17" (uuid c18220d3-fc5b-492f-99ac-b3e4810cf03d)) + (pin "18" (uuid d4f878a5-8375-45b9-8f7a-f5a2117f6e0c)) + (pin "19" (uuid ea69938d-38e7-4449-bbb3-8c1c16861e1f)) + (pin "20" (uuid bcb5e93e-998b-4d19-b66b-75f7071aa106)) + (pin "21" (uuid 4c27fd60-1f15-4de7-b43a-8ff088b858ce)) + (pin "22" (uuid a424dc6a-4127-4e80-8e4a-5e4eafa0d132)) + (pin "23" (uuid bd3e150c-905c-46a7-9490-28534f89cb07)) + (pin "24" (uuid 7dd44d27-933a-4e80-926e-5e1eb5b5c079)) + (pin "25" (uuid 08decafc-0667-45b8-adb7-2553d90949e1)) + (pin "26" (uuid b5d5fdb1-a226-4abb-843f-6ca7ce1f3a0c)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 161.29 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 14b262a4-bd21-4efe-8119-98d569ee376f) + (property "Reference" "U15" (id 0) (at 161.29 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 161.29 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 161.29 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 161.29 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 263016cb-ff85-4004-b33d-146c3aeb2622)) + (pin "2" (uuid 110f412b-f691-4470-80c9-a7cb5367c83a)) + (pin "3" (uuid cfc922cb-0abc-43fc-81c4-945137e817d6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 72.39 49.53 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1e746305-953b-4e95-97d1-5a7e2a568e2a) + (property "Reference" "U1" (id 0) (at 73.025 44.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 73.025 46.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 72.39 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9c5c2f81-deb1-420f-bef6-bed37a42cac0)) + (pin "2" (uuid 82e40dbb-8fb5-442e-bcc5-0830f415b749)) + (pin "3" (uuid df0918be-e1ed-4fa7-8132-38fb8251e683)) + (pin "4" (uuid e53d6320-9aa8-48ba-a86c-97ef35857931)) + (pin "5" (uuid 6b79c87b-23fd-4d5c-b831-bb1dc7c359fb)) + (pin "6" (uuid baae9144-37ca-4ff4-b2a8-593470fefef7)) + (pin "7" (uuid 7f94b85a-2f2e-4445-8b40-ce5fb2a97547)) + (pin "8" (uuid a3de2c03-93e5-4430-85af-3083fbbc1364)) + (pin "9" (uuid 786974ee-05cf-4631-ab8b-24f8eb7a4370)) + (pin "10" (uuid b7fd3a1a-48d5-46da-b24e-3803c3371c94)) + (pin "11" (uuid 8380c539-3027-43ab-808b-07a5ff5371a0)) + (pin "12" (uuid 50e79b2e-1d22-443e-8f0d-f9c681e335da)) + (pin "13" (uuid e68f8b8a-cc7d-49a7-9a0b-b9c4db518213)) + (pin "14" (uuid 8ef3ea78-2dd2-4405-b441-9bbbe6cbbcc4)) + (pin "15" (uuid a6464541-8f81-4979-a428-303a0c4766de)) + (pin "16" (uuid e165aa35-b5f2-4569-bc8a-8e326f2e26c9)) + (pin "17" (uuid f0da912a-5bee-4b65-b596-1f8bbc03ba74)) + (pin "18" (uuid 5e2c8219-e7af-441a-963d-3f5ffb84a990)) + (pin "19" (uuid 89bccdd9-85ee-4698-bf2c-edefc1ec90fe)) + (pin "20" (uuid c8b96275-7e45-4c67-afc8-d7624abae38e)) + (pin "21" (uuid c64392e2-d2ca-4976-9115-e286ca0188e2)) + (pin "22" (uuid 68c681ec-264c-4c3b-8233-dc279006a85c)) + (pin "23" (uuid cc229766-5e32-4792-9278-a88443ed013c)) + (pin "24" (uuid a3be4e60-ce26-4467-8503-a30a2edbf773)) + (pin "25" (uuid e311b3a2-b715-4732-a0dc-30f6b9ab8f7b)) + (pin "26" (uuid b0f30e18-e19f-465f-ad0d-1186fad32c03)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 72.39 161.29 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 246af434-ef58-479c-84d8-b0ae7c946595) + (property "Reference" "U1" (id 0) (at 73.025 156.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 73.025 158.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 72.39 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b415c154-c4b7-4b2a-adee-caf20c60ea24)) + (pin "2" (uuid f8525341-739d-41ab-a018-7bfcf85309e3)) + (pin "3" (uuid c714eef2-0254-4fff-82b6-d321f18c25bc)) + (pin "4" (uuid 639c8e14-73c2-4c90-b82b-42ad89101b33)) + (pin "5" (uuid a5d4c6b3-4830-46c4-be8d-aeb8e077e226)) + (pin "6" (uuid fedad6e2-c42b-474d-8095-a0501cbec790)) + (pin "7" (uuid ba4b5603-4859-4a78-9cbc-082bd7612099)) + (pin "8" (uuid 06b54b6d-4304-4e8e-ad92-33f832828269)) + (pin "9" (uuid f718fc02-f13c-45d9-8295-df0c72702655)) + (pin "10" (uuid ea5208ea-98b6-46b4-98a6-0573edf1440b)) + (pin "11" (uuid 921992e2-8716-466a-a704-70f23bf4d4f4)) + (pin "12" (uuid 392f0907-5255-4a0a-972d-99a8bd62c093)) + (pin "13" (uuid 3a1ed852-3c95-4fbc-a037-cac30f38f260)) + (pin "14" (uuid 5da4c2d0-bc9e-4e57-a28f-ac482ed0e053)) + (pin "15" (uuid dfe95788-28a3-464f-bca9-370e8eada2c9)) + (pin "16" (uuid 2ac41e41-d9ff-4b38-955f-79dfa3e538f0)) + (pin "17" (uuid 5f15302e-4b62-42ce-b90c-8cb5b03bcbc5)) + (pin "18" (uuid 477608d8-6caf-489c-9002-c4c5fb5d140e)) + (pin "19" (uuid b1d95e93-9e2f-4634-a79c-ed50ae7bc161)) + (pin "20" (uuid 0463fb67-c353-4849-9ebd-3878cd1c9df4)) + (pin "21" (uuid 41687f72-4ea1-40c5-bbdb-269716a3847f)) + (pin "22" (uuid 2e65904e-8b50-4b12-b88c-7fd0e9aebc6c)) + (pin "23" (uuid ca27dd69-9b40-48da-938b-c27b2dcf6260)) + (pin "24" (uuid 84993410-bba7-4d69-ae47-85d4fc50ee5a)) + (pin "25" (uuid a77fdc27-2297-4406-8d3a-5bcf44c45ef1)) + (pin "26" (uuid 6a5677ec-eef8-4bdb-9c62-f24b7460ce8b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 72.39 138.43 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28ef6489-68d2-4bbe-a23c-69cac19cde49) + (property "Reference" "U1" (id 0) (at 73.025 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 73.025 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 72.39 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e6f07a8-7423-4333-a1b5-bc8483b05eaa)) + (pin "2" (uuid 3da8db6d-f617-418c-9093-d71e201261a5)) + (pin "3" (uuid 94bcf7f7-9c5a-428e-bf26-d68146e9e94a)) + (pin "4" (uuid 491ce583-41f3-42fc-859b-5133b41e7d3e)) + (pin "5" (uuid 3aa158db-c7ac-4180-9530-167396a3937c)) + (pin "6" (uuid 2f7102ed-15d8-485f-b274-32bb673f7b26)) + (pin "7" (uuid d62c2ae9-74c9-4bf1-b4eb-767a791a0cc3)) + (pin "8" (uuid adc2a5fa-dcb5-4aed-8687-ba1170199dd5)) + (pin "9" (uuid 33eaf478-295c-4cfb-86fa-4483640dc92b)) + (pin "10" (uuid b8760782-f6ce-4041-a07e-e08fda04288b)) + (pin "11" (uuid 453326a6-fba2-49ce-9a87-86238049fddf)) + (pin "12" (uuid d9227489-301a-4076-8346-e2c5fb2e9912)) + (pin "13" (uuid 35905268-25fd-40e7-8f09-590a8981ba37)) + (pin "14" (uuid bdce6c7e-81d5-4809-aa7a-f859f06d6663)) + (pin "15" (uuid c1b8d33a-1447-4740-86a4-bae94297a1d6)) + (pin "16" (uuid d4d15826-253b-4be0-bd6f-30f18d918976)) + (pin "17" (uuid 192c4aed-23f2-4919-9453-28018815015c)) + (pin "18" (uuid d648abf0-59e7-4f76-9d68-541451c3fdfb)) + (pin "19" (uuid e0549046-39aa-4ed8-b9c1-b7bed24dddb7)) + (pin "20" (uuid 6a3a564f-2255-4d47-9670-6fde6c65b541)) + (pin "21" (uuid 59d97f77-3580-47b8-ba0d-455bc4f6f9e9)) + (pin "22" (uuid ce90b876-cc0b-4d17-8867-15f68c08e680)) + (pin "23" (uuid 771130a9-86f1-4a3d-8ce6-83b4cb42f080)) + (pin "24" (uuid 79bd0006-1640-4d99-8652-70f94d923bd8)) + (pin "25" (uuid 8e77ab4c-8cba-400c-8518-790dbe2ef8f5)) + (pin "26" (uuid 432abc81-1c78-4710-9f57-c609159a9124)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 99.06 49.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2c4233fe-c375-4e00-af2c-ca7b6d0d1b08) + (property "Reference" "U2" (id 0) (at 99.06 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 99.06 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e780bc2f-9f02-47f8-a2b0-00cd3fdedce5)) + (pin "2" (uuid 21b533ed-d16d-4556-9cd9-16cf1eb7aeeb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 72.39 100.33 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 318df188-fe02-4e51-b228-968f8e01969f) + (property "Reference" "U1" (id 0) (at 73.025 95.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 73.025 97.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 72.39 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d295c29e-fcc5-4bd1-b8f8-10ce3faee174)) + (pin "2" (uuid 9bf20473-a392-49dc-8d73-1e0a898a324f)) + (pin "3" (uuid 80f8836b-74a7-4099-8053-72d75c9c1c70)) + (pin "4" (uuid cdbd4d5d-332a-4545-9f6b-c360b12da419)) + (pin "5" (uuid 06958fef-fbcd-4e20-926c-126ad724c7ac)) + (pin "6" (uuid a9710623-b278-4cec-8edb-acb73a911bf6)) + (pin "7" (uuid 6deddc64-506b-4026-bbed-2f2c884b7db4)) + (pin "8" (uuid bc5e9285-b815-416b-8d43-ba17bb32dc92)) + (pin "9" (uuid f0ff43d6-ea1a-45f8-8ac8-66fa0fd2a4c2)) + (pin "10" (uuid fef20678-309c-4c97-982f-27b2372c144e)) + (pin "11" (uuid 4a0d823a-20b4-47df-a214-2f01003c2546)) + (pin "12" (uuid 90f7ea43-8707-46d1-913d-e25a82ce0c39)) + (pin "13" (uuid 569a8a40-47dc-4867-8de9-6de6c0c7e72c)) + (pin "14" (uuid 412ae3bb-dbe1-4673-a14c-6b9403c17033)) + (pin "15" (uuid 313b843d-551b-4ade-aab7-9ddbd4cefae2)) + (pin "16" (uuid b9691966-52d0-47be-b6da-0211b0aec49c)) + (pin "17" (uuid 284f5852-e2b6-40af-ad14-10ebd1223a04)) + (pin "18" (uuid c7996423-14ee-4491-86c7-648cd8223e1a)) + (pin "19" (uuid c4f0f794-e253-4757-9499-25d55b301c99)) + (pin "20" (uuid ac1da9ba-efd1-4957-9f8e-39c0a3928ef9)) + (pin "21" (uuid 7fe77fc4-0c5e-4c4a-9c54-3bc03df24b33)) + (pin "22" (uuid 4c4bc82e-7ef2-4ecf-bdee-19f7c2b51c53)) + (pin "23" (uuid 08caed6f-52cc-4548-9bc2-6492fdaf21d5)) + (pin "24" (uuid ffd28f43-00d9-4744-b896-ee9168a5cf2d)) + (pin "25" (uuid 8e4e30a0-c062-4d1f-947d-d083cb38b594)) + (pin "26" (uuid 509833ce-ff30-4749-8f8b-4f0d4c76ce48)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 72.39 62.23 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 373e6b0a-d18b-4523-86c3-c4d68be63e46) + (property "Reference" "U1" (id 0) (at 73.025 57.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 73.025 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 72.39 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 68e0bd9f-e426-42a1-a8d2-e6b42b2f0a8f)) + (pin "2" (uuid cdc81425-e231-46cb-bc6c-69b3116d5780)) + (pin "3" (uuid 42d3ccb5-ccbe-4530-8a9f-a6a5f0d37f1f)) + (pin "4" (uuid b297c735-b3cd-44d0-be9f-732fb970887b)) + (pin "5" (uuid 4a742574-f2c6-4376-8694-99e023ed6b54)) + (pin "6" (uuid 6daa24f6-a14f-438f-be3a-c4ade1e36854)) + (pin "7" (uuid 5021539f-dea1-4797-8d70-3b8ea623fa2d)) + (pin "8" (uuid ac65a0a3-f9a9-457c-a7b8-fa9f34fab1b2)) + (pin "9" (uuid e250dd27-f072-47ad-aece-d5fd0523c00d)) + (pin "10" (uuid a920df9c-0b9c-4f3d-b00a-241295d838c0)) + (pin "11" (uuid 66777c32-aac3-4672-aa7b-4902050a095e)) + (pin "12" (uuid 7b04d6d7-b52b-4fd1-ad12-91021225c68a)) + (pin "13" (uuid f228ea66-0fed-4297-87a7-f3872cc18558)) + (pin "14" (uuid 5169f0d1-c403-4e48-b895-ac925cd2ab14)) + (pin "15" (uuid 324aa782-f075-4286-8cf4-cbc370e211de)) + (pin "16" (uuid 86be6845-ec95-45cc-894f-e345d34ddd8b)) + (pin "17" (uuid d3af2254-69d0-46bd-882e-17d04f1f261e)) + (pin "18" (uuid 8de12e9d-bdc9-4223-bcf6-8e5514268f61)) + (pin "19" (uuid 00b7cf90-e42c-41e8-8ad8-26a835a88c56)) + (pin "20" (uuid 3d874f08-018f-4b55-9950-3f51d9cca986)) + (pin "21" (uuid 4a43fabe-f0f4-4f30-acb4-80ab1c47ed27)) + (pin "22" (uuid 8c7d75c7-170d-4eab-84a9-7f283e28ef2e)) + (pin "23" (uuid 14e27bba-bbf8-401f-a457-27bb73033130)) + (pin "24" (uuid 141b1ad1-dae7-42a1-abb8-7b2c6357b4b1)) + (pin "25" (uuid 5b3e13e9-4402-49dc-9e8a-0a237682bf0a)) + (pin "26" (uuid af8ebbfa-16c7-40c1-bb85-e94e11a29102)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 185.42 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3dd37d4c-c667-4c51-96e8-f61b88c8b522) + (property "Reference" "U16" (id 0) (at 185.42 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 185.42 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d636e17-9466-4f15-886d-665c4c784176)) + (pin "2" (uuid 3b166936-4c10-4186-8510-07f45c323b6b)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 161.29 69.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45c3834e-9c6f-43c2-a451-15d8fbd5070e) + (property "Reference" "U14" (id 0) (at 161.29 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 161.29 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 161.29 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 161.29 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c4b7af6e-e1dc-4084-9689-911c349b6cd9)) + (pin "2" (uuid 2097fd73-deac-4867-bc5a-5846a91b06c1)) + (pin "3" (uuid 9360bc29-35c8-4434-b278-40003b84a110)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 128.27 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4998813f-6125-4503-a8e5-bbb71baee9e8) + (property "Reference" "U11" (id 0) (at 128.27 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 128.27 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 128.27 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dc1cbbca-1257-4951-b534-31fc5a656484)) + (pin "2" (uuid cf7c856f-981a-489b-9c50-2f8532adc7d2)) + (pin "3" (uuid b4b2a671-ac16-48d3-bfd7-c88c23233b86)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 99.06 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4c3594b8-3c62-444f-b62a-ed71baff7e84) + (property "Reference" "U3" (id 0) (at 99.06 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 99.06 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e752e42-6629-47d3-9a35-388df4c6eb5b)) + (pin "2" (uuid d8e5aef1-91b7-4d9a-ae98-83aedc237731)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 151.13 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 57f985bc-b9d5-4a5b-8e74-6898ed201f06) + (property "Reference" "U1" (id 0) (at 47.625 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 148.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7a977d1c-79cd-4ca0-a3b8-40ec974e07b7)) + (pin "2" (uuid 9a36849e-4b35-42f1-ae14-3d005f3c5af6)) + (pin "3" (uuid 103bb257-23fb-44ac-adf4-800d23d046a2)) + (pin "4" (uuid be06ccbb-c678-416e-b726-e399c1fd3671)) + (pin "5" (uuid 2331220d-ecaa-4523-a1bb-ba0b0f22a214)) + (pin "6" (uuid b05c6674-3070-48a0-8733-48f2bf873010)) + (pin "7" (uuid 8cfc4862-7dbc-4cc6-b098-820f2af88495)) + (pin "8" (uuid fb6cc5a2-9e1b-464c-ac89-fe5080c41a22)) + (pin "9" (uuid 6eb0992c-b75c-4864-bd73-617a661e0eb1)) + (pin "10" (uuid d10591d4-2b22-4673-887e-b8b73e4b98a4)) + (pin "11" (uuid 5e3328d2-ddc2-4128-8dbe-e009e0df4228)) + (pin "12" (uuid d0e50ad3-32f4-448a-9999-ef976168c020)) + (pin "13" (uuid 65a9de26-972c-4a86-8b86-43598979f0d9)) + (pin "14" (uuid 4396f2a3-f36f-45ec-8d4b-783fd1670e63)) + (pin "15" (uuid e41adb00-0f40-48d8-95a0-e364f485c222)) + (pin "16" (uuid e0bc9a16-e8e4-49b6-96cf-05fb40842ccc)) + (pin "17" (uuid be525a0b-f5e0-4bdb-8dac-281b2e146c12)) + (pin "18" (uuid 42691459-9f1f-469f-91e5-78ddaf9a920f)) + (pin "19" (uuid 01a7017e-3bab-418c-afb5-14691e70fd0a)) + (pin "20" (uuid f5aae654-46e9-4bf7-95cc-7e760da57047)) + (pin "21" (uuid 3b39db03-8f60-47dd-b3dc-27257b5b624c)) + (pin "22" (uuid 0799baf7-ddec-49fd-91b3-5962d8dfc447)) + (pin "23" (uuid 634b6c3c-c599-4258-bd3d-5e442036b0ac)) + (pin "24" (uuid d8b9d530-f098-4531-beef-bfab439ab1b9)) + (pin "25" (uuid a7d5a1db-2420-40c8-adf5-4ed4e378a78c)) + (pin "26" (uuid c1f785d2-a250-4553-a771-f05f399a68d2)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 128.27 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5826d339-d4f2-4799-a09e-c63a7926fa49) + (property "Reference" "U12" (id 0) (at 128.27 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 128.27 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 128.27 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d308b3e-8632-4cca-bb7c-700257907b56)) + (pin "2" (uuid 0b83a135-1185-4ed6-917a-df4eb57ef9a2)) + (pin "3" (uuid 9c67d52b-faeb-4ddf-a41e-2d247604fe78)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 128.27 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5f1c5c75-c083-4352-9b6b-2b4f29816995) + (property "Reference" "U13" (id 0) (at 128.27 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 128.27 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 128.27 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 867ef64f-fe73-4b57-bed6-069eb03dacea)) + (pin "2" (uuid 369605e2-090f-47e6-9d92-1ebd6f9048b0)) + (pin "3" (uuid 7fd01c43-93ec-46b7-9715-9fbd60734708)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 128.27 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 606dfe1c-a67d-49e7-9008-5ca807903737) + (property "Reference" "U10" (id 0) (at 128.27 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 128.27 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 128.27 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 790f947e-3978-4637-bfe3-86e2b6165a23)) + (pin "2" (uuid c80d7421-71fc-49b6-b3e4-2876eaf88598)) + (pin "3" (uuid 4bc046b3-cc0c-4c35-a588-563dea35aef5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 72.39 113.03 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 62937966-3e1e-4b9a-9463-669869014628) + (property "Reference" "U1" (id 0) (at 73.025 107.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 73.025 110.49 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 72.39 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cdb8bd6f-fd69-459f-80f1-644dd6a1cc1d)) + (pin "2" (uuid 6c6ae619-9c83-4d50-911d-ee710b3586e3)) + (pin "3" (uuid df20f320-81b6-4b6a-8af1-3a884e9075c6)) + (pin "4" (uuid 8e4d9233-eebd-4fd2-940f-78b0aa83b154)) + (pin "5" (uuid 7d2795db-5cd0-4375-bd57-9deb50f5612d)) + (pin "6" (uuid 20378fd7-b415-4d7f-9e81-a2a624587847)) + (pin "7" (uuid 13aa7569-14d6-4597-8ca1-36755471a7e5)) + (pin "8" (uuid 1b3e4941-4637-44ec-ade4-b3f878739883)) + (pin "9" (uuid cf6d83e4-14ff-4e9c-8a72-dbe46cb4c02c)) + (pin "10" (uuid 7a3b6999-9e75-4859-a7ac-56e5e0722af3)) + (pin "11" (uuid 8095f683-ceea-4175-8d88-8b8f3db1f260)) + (pin "12" (uuid 13d5cb75-6e57-480d-b8c4-b64a1efc6442)) + (pin "13" (uuid 5041b65d-194b-4852-a7fa-ecd55bc8451c)) + (pin "14" (uuid aac0c5c2-0fc2-42d7-8ac2-bd3405ef69b6)) + (pin "15" (uuid 10b0006c-ad6b-4f7b-921c-817ff958ad23)) + (pin "16" (uuid 248ab24b-9317-4e7a-9daa-919f4426606a)) + (pin "17" (uuid 2d51a44f-9d5d-43d5-9989-6bbf635132a7)) + (pin "18" (uuid 23de99f6-9884-4684-b9aa-5021ec674270)) + (pin "19" (uuid 4cc6f919-bcb3-4169-8d7d-9194c217689f)) + (pin "20" (uuid 259da0a0-4104-4bb5-a63f-a8ec98482741)) + (pin "21" (uuid c27c16ec-51d6-4397-82c2-a40d442658dd)) + (pin "22" (uuid c74e9f19-a4f1-424b-92ea-c92b1d75a278)) + (pin "23" (uuid 9bfba613-3112-4ac3-930d-79dbc7afdf9c)) + (pin "24" (uuid 44e55ecb-9600-4410-9fe7-5cfd8437f9c5)) + (pin "25" (uuid 4c58e100-e869-4a5d-bef9-5423eea19202)) + (pin "26" (uuid 1fe314e8-6b4b-4aa8-9596-f3620fd4080f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 72.39 87.63 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6cfd08f4-91f3-48be-8ca0-7fe1d3941ad4) + (property "Reference" "U1" (id 0) (at 73.025 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 73.025 85.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 72.39 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9253e26a-075d-4b61-bed1-17c386692127)) + (pin "2" (uuid ba40a8e8-6c30-4ade-bfac-5e7da7a6d428)) + (pin "3" (uuid e91670ac-aa5b-4e8d-8024-ab34d35302db)) + (pin "4" (uuid ee84083d-738e-40ce-923c-4dbce42d3a32)) + (pin "5" (uuid c573b389-b7a9-47fb-8595-aacce78edad8)) + (pin "6" (uuid aa4a3325-7f82-4ed9-b26f-8bab56a962dd)) + (pin "7" (uuid 60a64606-f085-45d9-af7c-747e825a263a)) + (pin "8" (uuid df7fdf0f-7b08-4167-bb7d-d1c79c5eac23)) + (pin "9" (uuid f20cf622-576b-49cf-b672-6115c1fea965)) + (pin "10" (uuid 14a34a22-7c29-4052-9cf0-ae879d75044f)) + (pin "11" (uuid b72726dc-71e2-4afa-be0d-b61fe5927399)) + (pin "12" (uuid 2f0103d1-360a-4112-a5a6-06da2e649456)) + (pin "13" (uuid b738922b-19cc-41fe-8994-e65c5bf3ef64)) + (pin "14" (uuid 4bf00d7e-b423-49f5-b323-fd9ffe96ba81)) + (pin "15" (uuid 98d883bd-f91f-4d05-8e98-4248f63fd7f3)) + (pin "16" (uuid 8add3a8a-5f86-41a3-bd10-3f5ca74dd54d)) + (pin "17" (uuid 5d655f2d-7d19-4b50-a11c-487458ad6546)) + (pin "18" (uuid d85c3392-10af-4346-ba5c-89391c494028)) + (pin "19" (uuid 4b4d501e-3675-4037-afc7-743814c8e420)) + (pin "20" (uuid 35f660cb-7872-442d-9465-7ba36fa455ea)) + (pin "21" (uuid 44c02d13-c89f-4a2c-9fa0-ea59657fc1e6)) + (pin "22" (uuid d8e90a18-3c36-4dbc-a07a-0f78aa8193bb)) + (pin "23" (uuid 78913fae-9d0b-4959-8156-296392599823)) + (pin "24" (uuid 8f23ea8e-5c74-42fb-b7a0-02ff951fa997)) + (pin "25" (uuid 8aa06fa0-eff7-4a8e-9a51-eed3e9ae344b)) + (pin "26" (uuid cd0f00c0-8d40-49c7-9154-b0bf0b46d1ef)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 99.06 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 71c26ccc-795c-40f3-b062-b9b6c1da8be5) + (property "Reference" "U4" (id 0) (at 99.06 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 99.06 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8eb938ed-cc87-43c3-bb44-5ca9d601dae9)) + (pin "2" (uuid 39a96c8f-a5fc-4a59-bcf2-cb4e91e4a545)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 161.29 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 821dcd63-a979-4def-8e39-04d16390f13d) + (property "Reference" "U1" (id 0) (at 47.625 156.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 158.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ffc3bc57-baff-4173-8ab1-93f3afe797c9)) + (pin "2" (uuid 7da70bd3-72e9-4291-bda4-11d8e14dc932)) + (pin "3" (uuid 17e2621f-ffe5-4490-9ff6-f1bbd68e648f)) + (pin "4" (uuid 718c1639-4421-448e-bad9-76942b889935)) + (pin "5" (uuid 6478a67e-12cf-4123-a054-299cae5563bc)) + (pin "6" (uuid b424a119-13bd-4cbb-a2c4-43ac74b30e53)) + (pin "7" (uuid a5b4729f-dd10-4420-a78b-4c379f56b2f6)) + (pin "8" (uuid 95fd909d-d321-4208-9cdd-4cabf6b87e19)) + (pin "9" (uuid b05594e6-c497-4b4b-91bc-7ef18ce61464)) + (pin "10" (uuid cd63ab80-3399-4565-b21f-8aa820f1f779)) + (pin "11" (uuid 8f7741d2-8fdf-44e1-98a3-793f31603eda)) + (pin "12" (uuid abff7d13-b371-44a8-a644-af2c5997982e)) + (pin "13" (uuid 07ddfb7e-d22e-42fa-b3e8-467fb56687b6)) + (pin "14" (uuid b3d5952c-4d93-441a-9aae-b6480ada409c)) + (pin "15" (uuid 9076cd8f-9567-4e60-a002-b001f57cb34b)) + (pin "16" (uuid edf382a1-6b23-4ac9-bc01-4fef7f43e534)) + (pin "17" (uuid 9a4c3020-d14d-442f-8134-5df2551630a6)) + (pin "18" (uuid 12e4d2b7-38f9-4b54-af1f-e870cf6c840a)) + (pin "19" (uuid 0e4bbea4-b1a8-4253-b927-3c642d987f5f)) + (pin "20" (uuid d830bdd4-251b-475c-8bcc-6a1f97125175)) + (pin "21" (uuid 8e5e4e4b-3cea-4781-b071-d494e5917344)) + (pin "22" (uuid bffcd095-f33a-4e17-a881-e223bcf47bd6)) + (pin "23" (uuid 7aecc770-a86f-4da4-be9a-4c2fdbf0c798)) + (pin "24" (uuid edcf64a7-af01-4e4d-b8e7-a33970db7bc4)) + (pin "25" (uuid 5c7f8f69-91d2-4c24-980a-ec661522a605)) + (pin "26" (uuid 5f178c10-f3ef-4ba9-a957-e403de54dd22)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 99.06 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9080612e-3d03-4f65-b425-01e0266caca4) + (property "Reference" "U8" (id 0) (at 99.06 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 99.06 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1bc70d3a-c1bd-434b-a9e6-715d2db85fac)) + (pin "2" (uuid 81327610-ee4e-4b06-9715-2b49ac72abeb)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 99.06 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7342841-d731-4007-b21c-dcee949ef9da) + (property "Reference" "U5" (id 0) (at 99.06 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 99.06 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bc29726e-f12b-4a9b-8bd6-d38aa6ce0f89)) + (pin "2" (uuid 07b2b0aa-a0e2-4cb2-b560-b21982c9b8d2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 236.22 68.58 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b2bf7b11-53f7-44aa-9160-b0b989401673) + (property "Reference" "U1" (id 0) (at 240.03 67.945 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 240.03 70.485 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 236.22 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 236.22 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 51530273-2155-4393-83ce-615d0f9dc710)) + (pin "2" (uuid 0e245f93-deac-414a-8bf5-03c3728c24d0)) + (pin "3" (uuid ad049b53-55fd-47b2-a8fe-0d8b73c21202)) + (pin "4" (uuid be437297-7d16-41e0-8dc5-ee129db79631)) + (pin "5" (uuid 08282db9-5198-4bff-bf12-4a5c6b324fe4)) + (pin "6" (uuid 3bc75371-0b13-493b-8d4b-d0f6207e1afc)) + (pin "7" (uuid ffaa46ed-ef03-47da-b79d-4e2deca12e74)) + (pin "8" (uuid 06865dde-7055-4ee2-84cf-34ccc6ae1225)) + (pin "9" (uuid 03cacd0f-a2c8-4982-8589-27bda6e4a867)) + (pin "10" (uuid 488c8ac2-596a-4f60-a4fb-f2c805c5cfbe)) + (pin "11" (uuid e9f4ee34-75e8-4f51-a99b-8d36e3802bbc)) + (pin "12" (uuid 96d9f6bd-77b1-408e-afcf-5d540844760a)) + (pin "13" (uuid 1db94978-a3a9-44a3-8955-90ae26ee082a)) + (pin "14" (uuid 13cc28dc-4166-41c7-9b28-9a35de73433b)) + (pin "15" (uuid beb9e8aa-12a9-46c7-958b-be23d4998de1)) + (pin "16" (uuid d653b3d6-acc5-4836-9fac-9ae3b29999f0)) + (pin "17" (uuid 69f9ee59-b284-4e65-b29b-f5ffe5b7cf21)) + (pin "18" (uuid 990cee77-7382-4484-8f31-eceb7ae9bf69)) + (pin "19" (uuid 2d0483b5-d7be-4bdb-ba48-0fcda5442fea)) + (pin "20" (uuid d61bcebf-b911-4b52-a4c9-e09f791b9b66)) + (pin "21" (uuid a9b35388-259a-4ad5-b688-a3c09a3940e4)) + (pin "22" (uuid 8facfc83-8b5f-4e77-85a5-a4d810712b5e)) + (pin "23" (uuid 0fd02ed3-ae72-4d91-a839-d0ce54bfff2a)) + (pin "24" (uuid 9b4acd7a-c084-4d11-94a7-1652bb8e01c6)) + (pin "25" (uuid 58bfa7f3-1866-4156-b23f-0d7ae27f329b)) + (pin "26" (uuid 0f7631d8-0c16-4d16-954d-012d9e39b3e8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 236.22 119.38 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d37ea936-4b1d-4b65-ae41-48cce63c4ac5) + (property "Reference" "U1" (id 0) (at 240.03 118.745 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 240.03 121.285 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 236.22 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 236.22 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 12257d26-84e9-4494-8dd9-9ba8ab9a3cfe)) + (pin "2" (uuid 8a7c8fc8-da2f-429c-9660-8144622074e2)) + (pin "3" (uuid bd77ec64-7c1b-480f-80ab-d9cf20e93421)) + (pin "4" (uuid 2ba6ee11-c053-447a-adb2-673f3febd00c)) + (pin "5" (uuid 0fddee6a-3b79-480c-8e3c-e9083404d2a3)) + (pin "6" (uuid 84c58857-a956-45b4-91c1-c49b369a607a)) + (pin "7" (uuid f2b1ae34-c78c-4c5d-9ae1-601d2482236b)) + (pin "8" (uuid 9d2ecb02-1b70-4428-a679-3e17714fd7c5)) + (pin "9" (uuid 7bdfd378-4402-40be-a04d-4fc89e618a7e)) + (pin "10" (uuid 494f60bf-4331-4695-969a-2531a96e84f9)) + (pin "11" (uuid 0dfc4843-d6ef-4a79-97e5-409220171b54)) + (pin "12" (uuid f087838e-18c3-4306-b4fa-10e301a2271e)) + (pin "13" (uuid 8c08f649-4aeb-4982-9006-15a96970ae47)) + (pin "14" (uuid e246191c-7042-4b89-b3c2-dbea14fad863)) + (pin "15" (uuid d817e1d7-4603-4b2e-be96-a4a057d6ac3f)) + (pin "16" (uuid ff1cb323-cb75-4870-90d9-95e8c8d5b0cc)) + (pin "17" (uuid f6a2da3f-bea5-4dad-b495-6e02cd78782f)) + (pin "18" (uuid 2ea417d8-6d99-446e-bffe-7f4ca83cda09)) + (pin "19" (uuid d1ff707c-d7d0-492e-9c4a-ad9a7ef3cff6)) + (pin "20" (uuid 76fd739f-5be9-4111-a5dd-a23522390596)) + (pin "21" (uuid df25256a-e462-4479-b693-218e1196c629)) + (pin "22" (uuid d7f4026d-2c0d-4773-a6b7-021faffa1093)) + (pin "23" (uuid 58097a78-9d3d-43f8-864e-ed273ef8548a)) + (pin "24" (uuid d8192e20-23b1-4dcb-807c-3496fb057a09)) + (pin "25" (uuid 76373af0-e96f-41d5-9ed2-9ad85db52221)) + (pin "26" (uuid 392cd9d3-51d6-4fa3-893f-e0874a617e09)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 72.39 151.13 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9f868e9-596f-473a-bf0e-1955d284e7f9) + (property "Reference" "U1" (id 0) (at 73.025 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 73.025 148.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 72.39 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5a58036b-dd8d-4a84-9f26-323307391263)) + (pin "2" (uuid 2f9d530c-ddf5-4b53-9a5b-264d46c40213)) + (pin "3" (uuid 8a479c17-a970-4d32-8440-59f3a2cb7457)) + (pin "4" (uuid aa4d9a43-682a-4cd6-81ef-9bb41b6144eb)) + (pin "5" (uuid 49b21c67-b356-4df2-8f5e-b268a8f4340e)) + (pin "6" (uuid 6b25cd66-8900-4a29-9765-9c304665d694)) + (pin "7" (uuid 8b3f2df6-d3ad-4bc4-8130-b0727c551445)) + (pin "8" (uuid ca9288be-c733-461d-afe0-143d1b9e780a)) + (pin "9" (uuid 9d8c0663-4b0d-4180-88ed-f2aa77eadb19)) + (pin "10" (uuid 25d63a40-c8ce-4ade-a07c-9a41618f7d3e)) + (pin "11" (uuid aa8419bb-7cc2-466f-ae40-aa6e6668d87d)) + (pin "12" (uuid 331b78fd-81ee-455f-8929-6a19dce94c10)) + (pin "13" (uuid be2ee109-bebb-4055-8c8f-78c2d509c8ea)) + (pin "14" (uuid 9df15221-0887-4ee6-b8a9-dd807e42ee92)) + (pin "15" (uuid 41e549a4-1281-4235-ac3f-6ddf11ec5575)) + (pin "16" (uuid d9b0467a-df28-4bcb-a3a5-5d3a334487f1)) + (pin "17" (uuid 49060288-f388-4b34-aa9b-545da287a81b)) + (pin "18" (uuid c1952f3a-e3fb-4961-ae4c-d01db563c7fd)) + (pin "19" (uuid 86ddbaa4-6f35-4c0e-9850-682c3b7886b2)) + (pin "20" (uuid 2a4893ef-0867-4c90-872f-73101573bbca)) + (pin "21" (uuid 01c4ba92-e918-4102-9bba-0b96eb6e5897)) + (pin "22" (uuid b5dad6bc-4ba0-4474-8224-4c6398674d1f)) + (pin "23" (uuid 15630ace-4910-4262-b87b-7ad9a1a44f40)) + (pin "24" (uuid edabdd6d-e366-4712-b02d-e13707e4e1c9)) + (pin "25" (uuid 559a22bf-305e-4309-826f-bce610d3cc61)) + (pin "26" (uuid c1d0df11-067b-4c94-a5ed-9949f4cfa40e)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 213.36 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2fef106-f222-4eb6-b7af-cf1983bf3877) + (property "Reference" "U18" (id 0) (at 215.265 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 215.265 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 13c2f4c8-c9fd-42b0-a0a1-e45b66a97884)) + (pin "2" (uuid 6410df24-e382-4f65-8899-0ef0e4a1186f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 72.39 125.73 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e6a490f8-05f8-4423-a74f-124b4e30c659) + (property "Reference" "U1" (id 0) (at 73.025 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 73.025 123.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 72.39 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9c60f229-cf73-4995-8b42-044f32b25e1a)) + (pin "2" (uuid c9a9a110-16d1-4134-a06b-22ccd3d27004)) + (pin "3" (uuid 04789109-91a3-40ca-89ee-3ab3fe1f54b4)) + (pin "4" (uuid 9847edfb-19a6-40c9-b68a-a5eb5e7bf6a2)) + (pin "5" (uuid 2645dca7-d660-464a-b3cc-a4b44548126a)) + (pin "6" (uuid 1e52fe38-88c8-4db2-a2c3-92cefcddb3a7)) + (pin "7" (uuid 70359f01-5f30-4b3d-9c35-6a5c193d2326)) + (pin "8" (uuid 9f9d6940-9b2a-414b-807b-39ded141b332)) + (pin "9" (uuid 5e2f9adb-ac0e-4f32-ad3b-4c22d8840395)) + (pin "10" (uuid 5aa1645b-79d3-4535-8f26-1889418082c3)) + (pin "11" (uuid e77da450-e8df-4a2c-9f0f-f1496003833f)) + (pin "12" (uuid 4b740f5b-5f6f-4a80-b153-9b323ea1d861)) + (pin "13" (uuid 1be3777c-fdc6-47ce-a1e6-a6d3bf94ca3b)) + (pin "14" (uuid e18a6b0b-0220-471c-a1d9-092bcd2301f0)) + (pin "15" (uuid 33d42a47-3a49-40fc-9ca5-ec0d8b160da1)) + (pin "16" (uuid 2fca9110-5ea1-45ca-8807-4acbcb77d279)) + (pin "17" (uuid 80f8da8d-7d6e-46ff-bd68-e9119c74a96f)) + (pin "18" (uuid ff872f0a-ce1d-448a-977f-cd9ef882c846)) + (pin "19" (uuid 12f1273e-79fd-47b9-a0dc-94cde9eedaf8)) + (pin "20" (uuid c1684e29-7c9f-4b36-81c2-120a4af7c814)) + (pin "21" (uuid 25dcb03a-f63c-4beb-9104-a3dcc554a869)) + (pin "22" (uuid cfb53317-2c48-44d7-8478-a097d65a862f)) + (pin "23" (uuid bc55b4f9-d6c6-4dcb-9eac-303c465ca0d0)) + (pin "24" (uuid f051d919-8a0e-475b-9a7d-88568d8e4930)) + (pin "25" (uuid 8d024681-b781-40b4-ad25-6283a198463a)) + (pin "26" (uuid 34352836-6509-4341-b6ce-ee9e5cb824e0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 185.42 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e6d9fe49-a6ab-4fbe-bf2a-2554b95d89e6) + (property "Reference" "U17" (id 0) (at 185.42 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 185.42 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cbb2d453-e11f-436f-9899-5a1c1943be64)) + (pin "2" (uuid 04e7fd18-ae94-452a-8933-67033eaabe13)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 213.36 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea031466-2401-4109-89a9-bc57f9f8a86c) + (property "Reference" "U19" (id 0) (at 215.265 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 215.265 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 56142d31-9bf5-4da6-980d-0a2dfc118e70)) + (pin "2" (uuid 7b67b8aa-2a53-41ae-b252-e108e65bcb53)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 99.06 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f1fafbf4-334e-4f93-a22d-f189e42d90c0) + (property "Reference" "U6" (id 0) (at 99.06 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 99.06 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9526e166-f2b7-4979-a42e-23520be5d5a3)) + (pin "2" (uuid b7a7ff8a-1cf6-4b2b-8753-94fb5ac37b77)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/b2bf7b11-53f7-44aa-9160-b0b989401673" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/1e746305-953b-4e95-97d1-5a7e2a568e2a" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/373e6b0a-d18b-4523-86c3-c4d68be63e46" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/0c28afe3-0660-44cf-9755-7f35a8fb0627" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/6cfd08f4-91f3-48be-8ca0-7fe1d3941ad4" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/57f985bc-b9d5-4a5b-8e74-6898ed201f06" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/d9f868e9-596f-473a-bf0e-1955d284e7f9" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/821dcd63-a979-4def-8e39-04d16390f13d" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/318df188-fe02-4e51-b228-968f8e01969f" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/62937966-3e1e-4b9a-9463-669869014628" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/e6a490f8-05f8-4423-a74f-124b4e30c659" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/28ef6489-68d2-4bbe-a23c-69cac19cde49" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/d37ea936-4b1d-4b65-ae41-48cce63c4ac5" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/246af434-ef58-479c-84d8-b0ae7c946595" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/2c4233fe-c375-4e00-af2c-ca7b6d0d1b08" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4c3594b8-3c62-444f-b62a-ed71baff7e84" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/71c26ccc-795c-40f3-b062-b9b6c1da8be5" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a7342841-d731-4007-b21c-dcee949ef9da" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f1fafbf4-334e-4f93-a22d-f189e42d90c0" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/04bccd8d-d1d0-4635-8eab-acfd40a0a0ff" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9080612e-3d03-4f65-b425-01e0266caca4" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/052fe42f-fb0c-4e70-9878-0bc492db38c8" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/606dfe1c-a67d-49e7-9008-5ca807903737" + (reference "U10") (unit 1) (value "d_nand") (footprint "") + ) + (path "/4998813f-6125-4503-a8e5-bbb71baee9e8" + (reference "U11") (unit 1) (value "d_nand") (footprint "") + ) + (path "/5826d339-d4f2-4799-a09e-c63a7926fa49" + (reference "U12") (unit 1) (value "d_nand") (footprint "") + ) + (path "/5f1c5c75-c083-4352-9b6b-2b4f29816995" + (reference "U13") (unit 1) (value "d_nand") (footprint "") + ) + (path "/45c3834e-9c6f-43c2-a451-15d8fbd5070e" + (reference "U14") (unit 1) (value "d_nor") (footprint "") + ) + (path "/14b262a4-bd21-4efe-8119-98d569ee376f" + (reference "U15") (unit 1) (value "d_nor") (footprint "") + ) + (path "/3dd37d4c-c667-4c51-96e8-f61b88c8b522" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e6d9fe49-a6ab-4fbe-bf2a-2554b95d89e6" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e2fef106-f222-4eb6-b7af-cf1983bf3877" + (reference "U18") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/ea031466-2401-4109-89a9-bc57f9f8a86c" + (reference "U19") (unit 1) (value "d_buffer") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4072B/CD4072B.sub b/library/SubcircuitLibrary/CD4072B/CD4072B.sub new file mode 100644 index 000000000..cf808eb6a --- /dev/null +++ b/library/SubcircuitLibrary/CD4072B/CD4072B.sub @@ -0,0 +1,78 @@ +* Subcircuit CD4072B +.subckt CD4072B net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ unconnected-_u1-pad6_ unconnected-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ unconnected-_u1-pad14_ +.title kicad schematic +* u13 net-_u13-pad1_ net-_u13-pad2_ net-_u13-pad3_ d_nand +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_nand +* u15 net-_u12-pad3_ net-_u13-pad3_ net-_u15-pad3_ d_nor +* u17 net-_u15-pad3_ net-_u17-pad2_ d_inverter +* u19 net-_u17-pad2_ net-_u1-pad13_ d_buffer +* u14 net-_u10-pad3_ net-_u11-pad3_ net-_u14-pad3_ d_nor +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_nand +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_nand +* u18 net-_u16-pad2_ net-_u1-pad1_ d_buffer +* u16 net-_u14-pad3_ net-_u16-pad2_ d_inverter +* u2 net-_u1-pad2_ net-_u10-pad1_ d_inverter +* u3 net-_u1-pad3_ net-_u10-pad2_ d_inverter +* u5 net-_u1-pad5_ net-_u11-pad2_ d_inverter +* u4 net-_u1-pad4_ net-_u11-pad1_ d_inverter +* u8 net-_u1-pad11_ net-_u13-pad1_ d_inverter +* u7 net-_u1-pad10_ net-_u12-pad2_ d_inverter +* u6 net-_u1-pad9_ net-_u12-pad1_ d_inverter +* u9 net-_u1-pad12_ net-_u13-pad2_ d_inverter +a1 [net-_u13-pad1_ net-_u13-pad2_ ] net-_u13-pad3_ u13 +a2 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a3 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u15-pad3_ u15 +a4 net-_u15-pad3_ net-_u17-pad2_ u17 +a5 net-_u17-pad2_ net-_u1-pad13_ u19 +a6 [net-_u10-pad3_ net-_u11-pad3_ ] net-_u14-pad3_ u14 +a7 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a8 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a9 net-_u16-pad2_ net-_u1-pad1_ u18 +a10 net-_u14-pad3_ net-_u16-pad2_ u16 +a11 net-_u1-pad2_ net-_u10-pad1_ u2 +a12 net-_u1-pad3_ net-_u10-pad2_ u3 +a13 net-_u1-pad5_ net-_u11-pad2_ u5 +a14 net-_u1-pad4_ net-_u11-pad1_ u4 +a15 net-_u1-pad11_ net-_u13-pad1_ u8 +a16 net-_u1-pad10_ net-_u12-pad2_ u7 +a17 net-_u1-pad9_ net-_u12-pad1_ u6 +a18 net-_u1-pad12_ net-_u13-pad2_ u9 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u12 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u15 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u19 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u14 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u10 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u11 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u18 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends CD4072B \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4072B/CD4072B_Previous_Values.xml b/library/SubcircuitLibrary/CD4072B/CD4072B_Previous_Values.xml new file mode 100644 index 000000000..c45bf1cc7 --- /dev/null +++ b/library/SubcircuitLibrary/CD4072B/CD4072B_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecnsnsd_nandd_nandd_nord_inverterd_bufferd_nord_nandd_nandd_bufferd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverter \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4072B/_autosave-CD4072B.sch b/library/SubcircuitLibrary/CD4072B/_autosave-CD4072B.sch new file mode 100644 index 000000000..f8e45733f --- /dev/null +++ b/library/SubcircuitLibrary/CD4072B/_autosave-CD4072B.sch @@ -0,0 +1,449 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +NoConn ~ 2100 5950 +NoConn ~ 2100 6350 +NoConn ~ 3100 5950 +NoConn ~ 3100 6350 +Wire Wire Line + 3100 1950 3600 1950 +Wire Wire Line + 3100 2450 3600 2450 +Wire Wire Line + 3100 2950 3600 2950 +Wire Wire Line + 3100 3450 3600 3450 +Wire Wire Line + 3100 3950 3600 3950 +Wire Wire Line + 3100 4450 3600 4450 +Wire Wire Line + 3100 4950 3600 4950 +Wire Wire Line + 3100 5450 3600 5450 +Wire Wire Line + 4200 1950 4600 1950 +Wire Wire Line + 4200 2950 4600 2950 +Wire Wire Line + 4200 3950 4600 3950 +Wire Wire Line + 4200 4950 4600 4950 +Wire Wire Line + 4600 1950 4600 2150 +Wire Wire Line + 4600 2250 4600 2450 +Wire Wire Line + 4600 2450 4200 2450 +Wire Wire Line + 4600 2950 4600 3150 +Wire Wire Line + 4600 3250 4600 3450 +Wire Wire Line + 4600 3450 4200 3450 +Wire Wire Line + 4600 3950 4600 4150 +Wire Wire Line + 4600 4250 4600 4450 +Wire Wire Line + 4600 4450 4200 4450 +Wire Wire Line + 4600 4950 4600 5150 +Wire Wire Line + 4600 5250 4600 5450 +Wire Wire Line + 4600 5450 4200 5450 +Wire Wire Line + 5500 3200 5900 3200 +Wire Wire Line + 5500 5200 5900 5200 +Wire Wire Line + 5900 2200 5500 2200 +Wire Wire Line + 5900 2650 5900 2200 +Wire Wire Line + 5900 3200 5900 2750 +Wire Wire Line + 5900 4200 5500 4200 +Wire Wire Line + 5900 4650 5900 4200 +Wire Wire Line + 5900 5200 5900 4750 +Wire Wire Line + 6800 2700 7000 2700 +Wire Wire Line + 6800 4700 7000 4700 +Wire Wire Line + 7600 2700 7900 2700 +Wire Wire Line + 7600 4700 7900 4700 +$Comp +L eSim_Miscellaneous:PORT U1 +U 6 1 00000000 +P 1850 5950 +F 0 "U1" H 1875 6150 30 0000 C CNN +F 1 "PORT" H 1875 6050 30 0000 C CNN +F 2 "" H 1850 5950 60 0000 C CNN +F 3 "" H 1850 5950 60 0000 C CNN + 6 1850 5950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 8 1 00000000 +P 1850 6350 +F 0 "U1" H 1875 6550 30 0000 C CNN +F 1 "PORT" H 1875 6450 30 0000 C CNN +F 2 "" H 1850 6350 60 0000 C CNN +F 3 "" H 1850 6350 60 0000 C CNN + 8 1850 6350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 2 1 00000000 +P 2850 1950 +F 0 "U1" H 2875 2150 30 0000 C CNN +F 1 "PORT" H 2875 2050 30 0000 C CNN +F 2 "" H 2850 1950 60 0000 C CNN +F 3 "" H 2850 1950 60 0000 C CNN + 2 2850 1950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 3 1 00000000 +P 2850 2450 +F 0 "U1" H 2875 2650 30 0000 C CNN +F 1 "PORT" H 2875 2550 30 0000 C CNN +F 2 "" H 2850 2450 60 0000 C CNN +F 3 "" H 2850 2450 60 0000 C CNN + 3 2850 2450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 4 1 00000000 +P 2850 2950 +F 0 "U1" H 2875 3150 30 0000 C CNN +F 1 "PORT" H 2875 3050 30 0000 C CNN +F 2 "" H 2850 2950 60 0000 C CNN +F 3 "" H 2850 2950 60 0000 C CNN + 4 2850 2950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 5 1 00000000 +P 2850 3450 +F 0 "U1" H 2875 3650 30 0000 C CNN +F 1 "PORT" H 2875 3550 30 0000 C CNN +F 2 "" H 2850 3450 60 0000 C CNN +F 3 "" H 2850 3450 60 0000 C CNN + 5 2850 3450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 9 1 00000000 +P 2850 3950 +F 0 "U1" H 2875 4150 30 0000 C CNN +F 1 "PORT" H 2875 4050 30 0000 C CNN +F 2 "" H 2850 3950 60 0000 C CNN +F 3 "" H 2850 3950 60 0000 C CNN + 9 2850 3950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 10 1 00000000 +P 2850 4450 +F 0 "U1" H 2875 4650 30 0000 C CNN +F 1 "PORT" H 2875 4550 30 0000 C CNN +F 2 "" H 2850 4450 60 0000 C CNN +F 3 "" H 2850 4450 60 0000 C CNN + 10 2850 4450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 11 1 00000000 +P 2850 4950 +F 0 "U1" H 2875 5150 30 0000 C CNN +F 1 "PORT" H 2875 5050 30 0000 C CNN +F 2 "" H 2850 4950 60 0000 C CNN +F 3 "" H 2850 4950 60 0000 C CNN + 11 2850 4950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 12 1 00000000 +P 2850 5450 +F 0 "U1" H 2875 5650 30 0000 C CNN +F 1 "PORT" H 2875 5550 30 0000 C CNN +F 2 "" H 2850 5450 60 0000 C CNN +F 3 "" H 2850 5450 60 0000 C CNN + 12 2850 5450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 7 1 00000000 +P 2850 5950 +F 0 "U1" H 2875 6150 30 0000 C CNN +F 1 "PORT" H 2875 6050 30 0000 C CNN +F 2 "" H 2850 5950 60 0000 C CNN +F 3 "" H 2850 5950 60 0000 C CNN + 7 2850 5950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 14 1 00000000 +P 2850 6350 +F 0 "U1" H 2875 6550 30 0000 C CNN +F 1 "PORT" H 2875 6450 30 0000 C CNN +F 2 "" H 2850 6350 60 0000 C CNN +F 3 "" H 2850 6350 60 0000 C CNN + 14 2850 6350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 1 1 00000000 +P 9300 2700 +F 0 "U1" H 9150 2675 30 0000 R CNN +F 1 "PORT" H 9150 2775 30 0000 R CNN +F 2 "" H 9300 2700 60 0000 C CNN +F 3 "" H 9300 2700 60 0000 C CNN + 1 9300 2700 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 13 1 00000000 +P 9300 4700 +F 0 "U1" H 9150 4675 30 0000 R CNN +F 1 "PORT" H 9150 4775 30 0000 R CNN +F 2 "" H 9300 4700 60 0000 C CNN +F 3 "" H 9300 4700 60 0000 C CNN + 13 9300 4700 + -1 0 0 1 +$EndComp +$Comp +L eSim_Digital:d_inverter U2 +U 1 1 00000000 +P 3900 1950 +F 0 "U2" H 3900 2200 60 0000 C CNN +F 1 "d_inverter" H 3900 2050 60 0000 C CNN +F 2 "" H 3950 1900 60 0000 C CNN +F 3 "" H 3950 1900 60 0000 C CNN + 1 3900 1950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U3 +U 1 1 00000000 +P 3900 2450 +F 0 "U3" H 3900 2700 60 0000 C CNN +F 1 "d_inverter" H 3900 2550 60 0000 C CNN +F 2 "" H 3950 2400 60 0000 C CNN +F 3 "" H 3950 2400 60 0000 C CNN + 1 3900 2450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U4 +U 1 1 00000000 +P 3900 2950 +F 0 "U4" H 3900 3200 60 0000 C CNN +F 1 "d_inverter" H 3900 3050 60 0000 C CNN +F 2 "" H 3950 2900 60 0000 C CNN +F 3 "" H 3950 2900 60 0000 C CNN + 1 3900 2950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U5 +U 1 1 00000000 +P 3900 3450 +F 0 "U5" H 3900 3700 60 0000 C CNN +F 1 "d_inverter" H 3900 3550 60 0000 C CNN +F 2 "" H 3950 3400 60 0000 C CNN +F 3 "" H 3950 3400 60 0000 C CNN + 1 3900 3450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U6 +U 1 1 00000000 +P 3900 3950 +F 0 "U6" H 3900 4200 60 0000 C CNN +F 1 "d_inverter" H 3900 4050 60 0000 C CNN +F 2 "" H 3950 3900 60 0000 C CNN +F 3 "" H 3950 3900 60 0000 C CNN + 1 3900 3950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U7 +U 1 1 00000000 +P 3900 4450 +F 0 "U7" H 3900 4700 60 0000 C CNN +F 1 "d_inverter" H 3900 4550 60 0000 C CNN +F 2 "" H 3950 4400 60 0000 C CNN +F 3 "" H 3950 4400 60 0000 C CNN + 1 3900 4450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U8 +U 1 1 00000000 +P 3900 4950 +F 0 "U8" H 3900 5200 60 0000 C CNN +F 1 "d_inverter" H 3900 5050 60 0000 C CNN +F 2 "" H 3950 4900 60 0000 C CNN +F 3 "" H 3950 4900 60 0000 C CNN + 1 3900 4950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U9 +U 1 1 00000000 +P 3900 5450 +F 0 "U9" H 3900 5700 60 0000 C CNN +F 1 "d_inverter" H 3900 5550 60 0000 C CNN +F 2 "" H 3950 5400 60 0000 C CNN +F 3 "" H 3950 5400 60 0000 C CNN + 1 3900 5450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U16 +U 1 1 00000000 +P 7300 2700 +F 0 "U16" H 7300 2950 60 0000 C CNN +F 1 "d_inverter" H 7300 2800 60 0000 C CNN +F 2 "" H 7350 2650 60 0000 C CNN +F 3 "" H 7350 2650 60 0000 C CNN + 1 7300 2700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U17 +U 1 1 00000000 +P 7300 4700 +F 0 "U17" H 7300 4950 60 0000 C CNN +F 1 "d_inverter" H 7300 4800 60 0000 C CNN +F 2 "" H 7350 4650 60 0000 C CNN +F 3 "" H 7350 4650 60 0000 C CNN + 1 7300 4700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U10 +U 1 1 00000000 +P 5050 2250 +F 0 "U10" H 5050 2600 60 0000 C CNN +F 1 "d_nand" H 5050 2450 60 0000 C CNN +F 2 "" H 5050 2250 60 0000 C CNN +F 3 "" H 5050 2250 60 0000 C CNN + 1 5050 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U11 +U 1 1 00000000 +P 5050 3250 +F 0 "U11" H 5050 3600 60 0000 C CNN +F 1 "d_nand" H 5050 3450 60 0000 C CNN +F 2 "" H 5050 3250 60 0000 C CNN +F 3 "" H 5050 3250 60 0000 C CNN + 1 5050 3250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U12 +U 1 1 00000000 +P 5050 4250 +F 0 "U12" H 5050 4600 60 0000 C CNN +F 1 "d_nand" H 5050 4450 60 0000 C CNN +F 2 "" H 5050 4250 60 0000 C CNN +F 3 "" H 5050 4250 60 0000 C CNN + 1 5050 4250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U13 +U 1 1 00000000 +P 5050 5250 +F 0 "U13" H 5050 5600 60 0000 C CNN +F 1 "d_nand" H 5050 5450 60 0000 C CNN +F 2 "" H 5050 5250 60 0000 C CNN +F 3 "" H 5050 5250 60 0000 C CNN + 1 5050 5250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nor U14 +U 1 1 00000000 +P 6350 2750 +F 0 "U14" H 6350 3100 60 0000 C CNN +F 1 "d_nor" H 6350 2950 60 0000 C CNN +F 2 "" H 6350 2750 60 0000 C CNN +F 3 "" H 6350 2750 60 0000 C CNN + 1 6350 2750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nor U15 +U 1 1 00000000 +P 6350 4750 +F 0 "U15" H 6350 5100 60 0000 C CNN +F 1 "d_nor" H 6350 4950 60 0000 C CNN +F 2 "" H 6350 4750 60 0000 C CNN +F 3 "" H 6350 4750 60 0000 C CNN + 1 6350 4750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U18 +U 1 1 00000000 +P 8400 2700 +F 0 "U18" H 8475 3100 60 0000 C CNN +F 1 "d_buffer" H 8475 2950 60 0000 C CNN +F 2 "" H 8400 2700 60 0000 C CNN +F 3 "" H 8400 2700 60 0000 C CNN + 1 8400 2700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U19 +U 1 1 00000000 +P 8400 4700 +F 0 "U19" H 8475 5100 60 0000 C CNN +F 1 "d_buffer" H 8475 4950 60 0000 C CNN +F 2 "" H 8400 4700 60 0000 C CNN +F 3 "" H 8400 4700 60 0000 C CNN + 1 8400 4700 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4072B/analysis b/library/SubcircuitLibrary/CD4072B/analysis new file mode 100644 index 000000000..db3219f02 --- /dev/null +++ b/library/SubcircuitLibrary/CD4072B/analysis @@ -0,0 +1 @@ +.tran 0e-09 0e-09 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4073B/CD4073B.cir b/library/SubcircuitLibrary/CD4073B/CD4073B.cir new file mode 100644 index 000000000..20e4ed74a --- /dev/null +++ b/library/SubcircuitLibrary/CD4073B/CD4073B.cir @@ -0,0 +1,21 @@ +.title KiCad schematic +U10 Net-_U1-Pad2_ Net-_U10-Pad2_ d_inverter +U8 Net-_U1-Pad1_ Net-_U13-Pad1_ d_inverter +U9 Net-_U1-Pad8_ Net-_U16-Pad2_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ PORT +U4 Net-_U1-Pad3_ Net-_U12-Pad1_ d_inverter +U7 Net-_U1-Pad4_ Net-_U12-Pad2_ d_inverter +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_nor +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U12-Pad3_ d_nor +U13 Net-_U13-Pad1_ Net-_U10-Pad2_ Net-_U13-Pad3_ d_nor +U16 Net-_U13-Pad3_ Net-_U16-Pad2_ Net-_U16-Pad3_ d_nor +U19 Net-_U16-Pad3_ Net-_U1-Pad9_ d_inverter +U15 Net-_U12-Pad3_ Net-_U15-Pad2_ Net-_U15-Pad3_ d_nor +U18 Net-_U15-Pad3_ Net-_U1-Pad6_ d_inverter +U14 Net-_U11-Pad3_ Net-_U14-Pad2_ Net-_U14-Pad3_ d_nor +U17 Net-_U14-Pad3_ Net-_U1-Pad10_ d_inverter +U2 Net-_U1-Pad11_ Net-_U11-Pad1_ d_inverter +U5 Net-_U1-Pad5_ Net-_U15-Pad2_ d_inverter +U6 Net-_U1-Pad12_ Net-_U11-Pad2_ d_inverter +U3 Net-_U1-Pad13_ Net-_U14-Pad2_ d_inverter +.end diff --git a/library/SubcircuitLibrary/CD4073B/CD4073B.cir.out b/library/SubcircuitLibrary/CD4073B/CD4073B.cir.out new file mode 100644 index 000000000..d938347eb --- /dev/null +++ b/library/SubcircuitLibrary/CD4073B/CD4073B.cir.out @@ -0,0 +1,84 @@ +.title kicad schematic + +* u10 net-_u1-pad2_ net-_u10-pad2_ d_inverter +* u8 net-_u1-pad1_ net-_u13-pad1_ d_inverter +* u9 net-_u1-pad8_ net-_u16-pad2_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ port +* u4 net-_u1-pad3_ net-_u12-pad1_ d_inverter +* u7 net-_u1-pad4_ net-_u12-pad2_ d_inverter +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_nor +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_nor +* u13 net-_u13-pad1_ net-_u10-pad2_ net-_u13-pad3_ d_nor +* u16 net-_u13-pad3_ net-_u16-pad2_ net-_u16-pad3_ d_nor +* u19 net-_u16-pad3_ net-_u1-pad9_ d_inverter +* u15 net-_u12-pad3_ net-_u15-pad2_ net-_u15-pad3_ d_nor +* u18 net-_u15-pad3_ net-_u1-pad6_ d_inverter +* u14 net-_u11-pad3_ net-_u14-pad2_ net-_u14-pad3_ d_nor +* u17 net-_u14-pad3_ net-_u1-pad10_ d_inverter +* u2 net-_u1-pad11_ net-_u11-pad1_ d_inverter +* u5 net-_u1-pad5_ net-_u15-pad2_ d_inverter +* u6 net-_u1-pad12_ net-_u11-pad2_ d_inverter +* u3 net-_u1-pad13_ net-_u14-pad2_ d_inverter +a1 net-_u1-pad2_ net-_u10-pad2_ u10 +a2 net-_u1-pad1_ net-_u13-pad1_ u8 +a3 net-_u1-pad8_ net-_u16-pad2_ u9 +a4 net-_u1-pad3_ net-_u12-pad1_ u4 +a5 net-_u1-pad4_ net-_u12-pad2_ u7 +a6 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a7 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a8 [net-_u13-pad1_ net-_u10-pad2_ ] net-_u13-pad3_ u13 +a9 [net-_u13-pad3_ net-_u16-pad2_ ] net-_u16-pad3_ u16 +a10 net-_u16-pad3_ net-_u1-pad9_ u19 +a11 [net-_u12-pad3_ net-_u15-pad2_ ] net-_u15-pad3_ u15 +a12 net-_u15-pad3_ net-_u1-pad6_ u18 +a13 [net-_u11-pad3_ net-_u14-pad2_ ] net-_u14-pad3_ u14 +a14 net-_u14-pad3_ net-_u1-pad10_ u17 +a15 net-_u1-pad11_ net-_u11-pad1_ u2 +a16 net-_u1-pad5_ net-_u15-pad2_ u5 +a17 net-_u1-pad12_ net-_u11-pad2_ u6 +a18 net-_u1-pad13_ net-_u14-pad2_ u3 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u11 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u12 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u13 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u16 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u15 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u14 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4073B/CD4073B.kicad_sch b/library/SubcircuitLibrary/CD4073B/CD4073B.kicad_sch new file mode 100644 index 000000000..55f5bdae0 --- /dev/null +++ b/library/SubcircuitLibrary/CD4073B/CD4073B.kicad_sch @@ -0,0 +1,1486 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 98add05d-5804-4bb3-9377-b99efab3f649) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (wire (pts (xy 76.2 128.27) (xy 85.09 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 010808ee-0e09-4cf2-98c9-5e1912eeddfb) + ) + (wire (pts (xy 102.87 129.54) (xy 102.87 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 026320e2-8cb6-4349-8341-b8b4613708e6) + ) + (wire (pts (xy 74.93 118.11) (xy 85.09 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07896d5f-77ad-47e4-b875-ae95b6007957) + ) + (wire (pts (xy 53.34 83.82) (xy 60.96 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09ddcac9-4584-4df0-b75e-e5757abbca7c) + ) + (wire (pts (xy 80.01 44.45) (xy 90.17 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bfe78b4-0ad4-47bd-b36b-15bec881f140) + ) + (wire (pts (xy 104.14 91.44) (xy 104.14 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f79c97d-0c4e-44e3-a4db-b5b77913650a) + ) + (wire (pts (xy 80.01 66.04) (xy 107.95 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21dfc469-9161-4d25-9c0a-91d95ca2c825) + ) + (wire (pts (xy 107.95 123.19) (xy 107.95 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2214239e-36fe-48ba-bfe3-3d879a06c107) + ) + (wire (pts (xy 130.81 63.5) (xy 137.16 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22fc1dd0-1971-4744-8259-1e3b6f70b780) + ) + (wire (pts (xy 109.22 85.09) (xy 109.22 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 305e34d9-3fc7-416e-bac3-6e0aff6ed498) + ) + (wire (pts (xy 53.34 80.01) (xy 53.34 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38714c7c-3fd8-4dcf-baf2-3c885f4fd818) + ) + (wire (pts (xy 107.95 129.54) (xy 102.87 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fcc9b23-9440-4c67-a3e0-7d7c04f949c2) + ) + (wire (pts (xy 64.77 64.77) (xy 64.77 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4322eb4f-f596-4f05-9681-4fae70f085f4) + ) + (wire (pts (xy 104.14 101.6) (xy 104.14 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 445195c5-b6c3-4f1b-8ca5-421253656f50) + ) + (wire (pts (xy 109.22 91.44) (xy 104.14 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dbced40-ed6f-42ed-b7b3-08960eb1ed97) + ) + (wire (pts (xy 77.47 90.17) (xy 86.36 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 629b0722-ba7c-4aae-bc9a-18de776a5490) + ) + (wire (pts (xy 86.36 80.01) (xy 86.36 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 648aa92f-43c7-48a8-8ebb-a25f154a0d3b) + ) + (wire (pts (xy 81.28 54.61) (xy 90.17 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6dcfc20b-2b7a-4469-9a1c-6fbcbe4abc18) + ) + (wire (pts (xy 53.34 99.06) (xy 60.96 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f233145-6816-47ff-9786-152392d58206) + ) + (wire (pts (xy 52.07 116.84) (xy 52.07 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72df7d0c-0eb4-4c07-9c86-cac1295044f8) + ) + (wire (pts (xy 125.73 137.16) (xy 132.08 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7350791f-72bd-4142-bcef-217215c42e94) + ) + (wire (pts (xy 133.35 99.06) (xy 133.35 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a6eee45-2716-4301-9fb3-5730d8b18820) + ) + (wire (pts (xy 80.01 63.5) (xy 80.01 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ad14df1-f8a3-4464-ac08-e924801c6c10) + ) + (wire (pts (xy 64.77 48.26) (xy 64.77 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e28a4b5-c2e7-4ead-9853-beff3137039e) + ) + (wire (pts (xy 66.04 50.8) (xy 66.04 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80383574-ac64-44e9-94d6-065d93793801) + ) + (wire (pts (xy 57.15 44.45) (xy 57.15 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 814d40fa-4995-49e6-bb15-22c51e607db0) + ) + (wire (pts (xy 52.07 121.92) (xy 59.69 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8468052d-d707-4a8d-8049-03c6e4ccd724) + ) + (wire (pts (xy 74.93 139.7) (xy 102.87 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f47a26e-3f19-4b6b-b67d-270f0ce64870) + ) + (wire (pts (xy 113.03 55.88) (xy 107.95 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 946fa657-f3ab-4c14-9cc8-9d50725cb3e6) + ) + (wire (pts (xy 127 99.06) (xy 133.35 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9562ca54-1303-4162-acc1-14ff000d7127) + ) + (wire (pts (xy 62.23 86.36) (xy 62.23 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ab2d5d8-ee2c-4a6e-9360-49cc756f7332) + ) + (wire (pts (xy 76.2 101.6) (xy 104.14 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b8da358-1e95-4df4-b302-2a3f14e6979d) + ) + (wire (pts (xy 137.16 63.5) (xy 137.16 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5ddbf82-6bfc-4fcb-a779-c5c05c65c3b0) + ) + (wire (pts (xy 55.88 55.88) (xy 55.88 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b21479b7-bf04-4255-a556-832510bd705b) + ) + (wire (pts (xy 86.36 90.17) (xy 86.36 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b46b2353-ee6b-47b7-926f-8d9e1513e64e) + ) + (wire (pts (xy 60.96 83.82) (xy 60.96 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4c358a5-7b30-4fce-8c22-ecedbb6a6308) + ) + (wire (pts (xy 53.34 86.36) (xy 62.23 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be6d2ba0-c947-4e47-b449-cdf2c2b1db5a) + ) + (wire (pts (xy 52.07 124.46) (xy 60.96 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1bbb2a5-0c0e-4325-8932-f6d525546e37) + ) + (wire (pts (xy 90.17 54.61) (xy 90.17 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c21207e7-0101-488c-b455-bd708e656387) + ) + (wire (pts (xy 53.34 88.9) (xy 53.34 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7f3d8f8-45aa-4dd8-a150-044a4e065c68) + ) + (wire (pts (xy 85.09 128.27) (xy 85.09 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca404cfa-0a82-43fa-a4cd-a4e7e78de6d9) + ) + (wire (pts (xy 107.95 55.88) (xy 107.95 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb38c400-0c46-4b4c-a0fb-ddec50bdef89) + ) + (wire (pts (xy 59.69 121.92) (xy 59.69 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9d354eb-a743-4b84-a7ce-c723372793d8) + ) + (wire (pts (xy 57.15 48.26) (xy 64.77 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da724735-b7ba-4791-b3e9-11ea19504c10) + ) + (wire (pts (xy 74.93 137.16) (xy 74.93 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de088b67-dbb4-4f5a-aa10-4dd2287059d0) + ) + (wire (pts (xy 59.69 138.43) (xy 59.69 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de25ada3-aba0-45b2-b57d-56ec7f7bbbfe) + ) + (wire (pts (xy 55.88 50.8) (xy 66.04 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1598200-ea54-4919-9b8b-5bb65f335e43) + ) + (wire (pts (xy 76.2 99.06) (xy 76.2 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4d1d6fb-ed26-477e-b099-bb46b7dfac76) + ) + (wire (pts (xy 85.09 118.11) (xy 85.09 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e60e3ad4-84ae-41a6-aa61-eed51a5d6b08) + ) + (wire (pts (xy 132.08 137.16) (xy 132.08 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e77481cb-10b5-46a6-bf1b-75c428d27d50) + ) + (wire (pts (xy 113.03 49.53) (xy 113.03 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea5b21f5-b73f-4148-8468-7861928ffb3b) + ) + (wire (pts (xy 50.8 138.43) (xy 59.69 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec7acfb1-af81-4e69-a9f1-d3b25f11192f) + ) + (wire (pts (xy 107.95 66.04) (xy 107.95 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edc3577c-e1c9-4767-930c-e1fa787af9cd) + ) + (wire (pts (xy 52.07 127) (xy 52.07 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2675700-8d67-4583-83c2-3537dfc1c354) + ) + (wire (pts (xy 55.88 64.77) (xy 64.77 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6c63d67-231e-47f4-943a-b9cd8ec9bcbf) + ) + (wire (pts (xy 90.17 44.45) (xy 90.17 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9275f02-07e3-44b7-adf1-b185f0e34196) + ) + (wire (pts (xy 76.2 80.01) (xy 86.36 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9c34d73-5583-4abc-81c9-fed81766d703) + ) + (wire (pts (xy 60.96 124.46) (xy 60.96 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe61e26f-bf50-4771-8cee-1c5f1498f6d7) + ) + (wire (pts (xy 102.87 139.7) (xy 102.87 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff67c00f-01c1-48f3-b110-b6f4d3455f47) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 49.53 55.88 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13264e71-5d77-47fe-9258-d1b0fda055d0) + (property "Reference" "U1" (id 0) (at 50.165 50.8 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 50.165 53.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 49.53 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 49.53 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 94364f44-6a54-4325-8a53-815e339a5694)) + (pin "2" (uuid ffb55901-ec53-4768-a67c-9a329fe119fc)) + (pin "3" (uuid 4b5b1c5c-e7be-418e-8b7c-93da20d5e473)) + (pin "4" (uuid c0654753-8962-4fe0-b576-b51c57766eb4)) + (pin "5" (uuid 33b3b456-e7e1-4148-9a74-2dfc79b6eba7)) + (pin "6" (uuid 400ce191-173a-4fc2-a9ec-bd001ee1c716)) + (pin "7" (uuid fe7f06a1-bedb-4771-9090-80461380aa13)) + (pin "8" (uuid 3e6d32a2-e998-443b-b6e5-de2a1f00abfb)) + (pin "9" (uuid b5db782b-ee74-4ef2-b97b-1aa8f80f9adb)) + (pin "10" (uuid 22af72c5-5547-417a-ae56-40200f6edd6f)) + (pin "11" (uuid 1a87f0ad-fc62-4bc8-9c24-53e222e20a5a)) + (pin "12" (uuid ec5e4369-8de0-4f31-9100-d70796a361b4)) + (pin "13" (uuid 1e4e961d-ccac-4180-9afd-2d6ae43767d7)) + (pin "14" (uuid 7d1c35b8-20a9-48f2-bd89-12a5a58eea32)) + (pin "15" (uuid 042f2a7b-b502-403a-a474-075bc237f2d4)) + (pin "16" (uuid 65d3840f-7de6-44ce-9005-71252bb0ccb9)) + (pin "17" (uuid b8ef7438-7c31-47c3-ada6-78550e199322)) + (pin "18" (uuid b280ceda-1a6a-4d18-9ea6-b0229f40604a)) + (pin "19" (uuid 9dc4af5a-89a1-4a9d-aca9-11b630ff7440)) + (pin "20" (uuid a8d3e89d-9a1d-4dac-9874-44c399c48c70)) + (pin "21" (uuid d07c62b1-22a6-4c76-8b41-e58d596a7c49)) + (pin "22" (uuid c2d26a46-970a-4279-a961-6963dee4a0a0)) + (pin "23" (uuid 2c4b6de1-6bf4-4b50-b6b9-66e73fd8bea5)) + (pin "24" (uuid d8c42ed0-2428-439b-9349-1d2a039e26a6)) + (pin "25" (uuid 937b65eb-2cfd-4462-ae73-6216a8ccac9a)) + (pin "26" (uuid 1ff47ec7-8a29-45c2-8ef9-e57480057c02)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 158.75 53.34 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17f9eba0-00b4-4aa0-afcc-6e9d32607989) + (property "Reference" "U1" (id 0) (at 162.56 52.705 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 162.56 55.245 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 158.75 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 158.75 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b0cbd9f5-fefd-4c78-bc88-c4c00ab6226d)) + (pin "2" (uuid a3564273-6951-472c-be19-844adf7ef697)) + (pin "3" (uuid 9cbd4383-040f-4aca-b69a-47b3d4f86ad5)) + (pin "4" (uuid 05477472-1871-404b-8d83-4bed2c6089b6)) + (pin "5" (uuid 5b96f706-b47f-4efd-afe1-d2769cf661ea)) + (pin "6" (uuid 268e8fa8-b762-4b11-be25-9208e3acab04)) + (pin "7" (uuid 52100dfd-a804-4fba-a6ee-b815b4471263)) + (pin "8" (uuid 070a9794-fe7f-4299-afc7-ad985f1117f5)) + (pin "9" (uuid a506f8b3-f1f0-4c59-8fb0-bb0b34af0013)) + (pin "10" (uuid df58147a-8036-4fab-ae34-a365da9e89d9)) + (pin "11" (uuid 6aacca0c-bfef-4f92-ac54-ac814847747d)) + (pin "12" (uuid 2d10991f-ee08-4059-bf03-6fd622e36e1c)) + (pin "13" (uuid 869bf249-245c-4221-8be8-e2423344230c)) + (pin "14" (uuid daa73014-a801-4ec0-9374-e708b208ec4b)) + (pin "15" (uuid 8cb2170d-51fc-4061-bd4e-2eb2c7a41441)) + (pin "16" (uuid 1e6c5994-2aaf-4101-92ca-4a5ca41d2ee9)) + (pin "17" (uuid c9d2e881-5e09-45e7-8a5a-4b632127f6bb)) + (pin "18" (uuid 6fa8797b-6139-4ad1-bb41-90548885361a)) + (pin "19" (uuid 18695c2b-8a76-4797-88cb-4b24406c2364)) + (pin "20" (uuid 78dea6cf-d84d-4127-8af1-8d48eef47fa3)) + (pin "21" (uuid ff8e7da1-5162-41cf-960e-0bf067c1bc85)) + (pin "22" (uuid 1dcc3de5-7e71-4429-924f-16ff4fcfdd2b)) + (pin "23" (uuid d24d1bd3-cedd-4f8c-8705-a6a81e2c09f7)) + (pin "24" (uuid 748932ab-6d3b-4d1b-9f73-adb1903e3ae2)) + (pin "25" (uuid 65d91a1a-cac6-45a9-a7e5-930fd63ddc2a)) + (pin "26" (uuid 2b1eb025-0da6-4d4b-b64b-133080da20ea)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 44.45 138.43 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1c2b526e-156f-440c-8c9f-a3445fc1c3ec) + (property "Reference" "U1" (id 0) (at 45.085 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 45.085 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 44.45 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 44.45 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 25c00645-955a-44ac-a5fc-fa6bc9a4410a)) + (pin "2" (uuid 03147ca2-536e-4182-9613-45f0c981b995)) + (pin "3" (uuid 14bfc573-c1a5-4802-ad22-d29582a0471e)) + (pin "4" (uuid de505fec-2c94-42d8-add1-2a596b047a98)) + (pin "5" (uuid fb6f9392-9fdc-4711-b84f-cdd2503ff714)) + (pin "6" (uuid 9612ccb4-2d74-414f-8763-94c223a7758a)) + (pin "7" (uuid 08c7de9e-a241-47ea-bd96-e2ae975a21ab)) + (pin "8" (uuid 2a5ab67b-f43b-4982-b8b5-f97e9bcb9606)) + (pin "9" (uuid 0b4b6773-63c9-439c-b31b-1a9301531d40)) + (pin "10" (uuid 82befe67-c574-400f-b8b6-bdee70518af6)) + (pin "11" (uuid 9ba2c714-bc0b-4923-a269-0383e03d2295)) + (pin "12" (uuid d26ecc32-bd51-4e0d-82ee-78cf3fca5d52)) + (pin "13" (uuid a771d540-f048-4680-9c54-d5f3a82e70b6)) + (pin "14" (uuid bc748ca7-7ccd-4c60-8c60-62592db28874)) + (pin "15" (uuid 3e23b808-1c85-4aeb-8d77-188fec7ffb72)) + (pin "16" (uuid 57ddeb85-5171-4898-bbdb-d50637dbd827)) + (pin "17" (uuid 409d1470-ab15-4078-a094-cb76987c91a3)) + (pin "18" (uuid 0c0e87b7-6659-4339-a3bb-437aede842eb)) + (pin "19" (uuid 846ce145-b80a-4c44-9d71-22c28d115c3a)) + (pin "20" (uuid 0d06a175-f5d2-40da-8d68-aa028d2d5d76)) + (pin "21" (uuid e776775c-4c37-4334-a422-71a1abb7072d)) + (pin "22" (uuid 64354ab1-8c9d-47f4-9a0c-3241d96aa969)) + (pin "23" (uuid 56e74090-463a-438f-817e-6a10f6e22be6)) + (pin "24" (uuid 45dc47f6-6367-459f-be26-1c2f9a2abe3b)) + (pin "25" (uuid 83778186-f386-4b12-a019-8ba186a0ca82)) + (pin "26" (uuid 8c70b680-b71e-488b-bf6b-4177f2f07cc7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 68.58 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 212e2307-0bc3-4ed4-a2a5-b8d77458957f) + (property "Reference" "U5" (id 0) (at 68.58 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 68.58 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 69.85 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid acab923d-e065-412d-9ff5-5afe6e35c645)) + (pin "2" (uuid 28a48472-39e7-43ba-a2e5-aab60b9480b3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 67.31 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 24ed4c09-9971-42b7-a987-edd5c4e90025) + (property "Reference" "U2" (id 0) (at 67.31 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 67.31 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 68.58 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 68.58 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a94606bf-9f7c-40c1-9d96-77bf2ac88416)) + (pin "2" (uuid b0329eab-d2ae-4dcb-bd09-357535566e1c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 68.58 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28df6961-4ca5-47f7-b2b2-9d4ff83e9f4b) + (property "Reference" "U4" (id 0) (at 68.58 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 68.58 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 69.85 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 966be82a-f308-4589-a47c-eec487518dd3)) + (pin "2" (uuid 7112eed8-3a12-421e-b667-9f7b556ebc67)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 68.58 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e3e1baf-bc3e-423f-9e85-925fa1b7d029) + (property "Reference" "U6" (id 0) (at 68.58 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 68.58 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 69.85 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 69.85 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 69ead9cf-fabf-4cb0-92e4-15f6501e3a27)) + (pin "2" (uuid 7be6d961-f817-4807-b122-4ada60bedcc6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 67.31 137.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2f4e2604-003a-4e22-afb8-e3c51da89361) + (property "Reference" "U3" (id 0) (at 67.31 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 67.31 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 68.58 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 68.58 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f8e8010a-3d2f-4272-ba92-a730c1225233)) + (pin "2" (uuid 73a344bc-0ae6-4244-b36c-c88b174df8a9)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 72.39 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2ff68ab2-5252-4ee1-95e3-ac36e7d91a4e) + (property "Reference" "U8" (id 0) (at 72.39 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 72.39 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 73.66 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 73.66 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7b36a0e1-2071-4de0-844a-6c673918fe50)) + (pin "2" (uuid 5814bd64-ef3d-4ff8-be7c-6b5a17647bc9)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 72.39 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 47cd2e48-da47-4209-8dba-ef1c4f674651) + (property "Reference" "U9" (id 0) (at 72.39 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 72.39 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 73.66 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 73.66 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7772a2df-370f-4931-a35d-4718e72cfe02)) + (pin "2" (uuid 738c05b1-51c1-43a8-9005-e298e5f47693)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 50.8 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6205a955-b56b-47b7-8822-94ab577ad597) + (property "Reference" "U1" (id 0) (at 51.435 39.37 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 51.435 41.91 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 50.8 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 50.8 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 31931f7a-e87d-4441-9c32-8aadb472d66c)) + (pin "2" (uuid cc6f8ff9-3c7a-4ec1-a770-59e63208ecc3)) + (pin "3" (uuid 32906ad5-5549-4bbb-9c74-72691ad87cd1)) + (pin "4" (uuid 1baebf8d-12ac-434f-a2b3-759dc8b8f56b)) + (pin "5" (uuid f18b25ca-44a0-4651-b0eb-02ba2732f5a5)) + (pin "6" (uuid 3c12e510-f81d-47b8-96aa-444972d47fe7)) + (pin "7" (uuid 469dafee-64cf-434d-b4fe-1077585465d7)) + (pin "8" (uuid 620951ed-c89f-44f6-9bcf-c59cf6348e0a)) + (pin "9" (uuid d7a4c33d-cd11-4a53-812a-7c0072ec7b7a)) + (pin "10" (uuid 8fe5c0d4-40b3-4662-9451-beedbf978068)) + (pin "11" (uuid a323f77d-d0ec-410c-9c5d-52594040f5f6)) + (pin "12" (uuid fbbf7071-a491-4d3c-a9db-238d15d58452)) + (pin "13" (uuid 9cef09b4-6718-45cd-a6c5-1661a6f22d03)) + (pin "14" (uuid bec296c3-ec23-4dcc-b628-2349f33d58a2)) + (pin "15" (uuid 752e8964-d946-47ef-ad0d-9212d1b2f206)) + (pin "16" (uuid c19b2de0-cd12-4e1f-a6a3-14aef3ae782c)) + (pin "17" (uuid 2eaff91c-56f0-4449-9bb9-c563cc06bd8d)) + (pin "18" (uuid ed049bae-464a-4a90-b0fd-8f861cdb0c30)) + (pin "19" (uuid 55a8bf41-6ca0-4e91-b510-b50b0a3a13fe)) + (pin "20" (uuid 3e16516e-f62a-49da-9323-569d3f19e633)) + (pin "21" (uuid ecc80213-6bdb-4434-9484-79377767cb50)) + (pin "22" (uuid b80683e8-ce12-40d3-b3e1-31ccd66b0af8)) + (pin "23" (uuid 3a827169-9cda-41e1-917b-1c1494a771d6)) + (pin "24" (uuid 3334d117-36ea-4b2b-bb94-1e09f26ea0f1)) + (pin "25" (uuid 080a2b9f-8d63-40e5-a377-5a8cd9b4981f)) + (pin "26" (uuid ca092ef6-a026-4941-9bcc-5bbfec4c7f5d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 80.01 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6b9f664b-fc3c-4d5c-b4b2-c393266f9bde) + (property "Reference" "U1" (id 0) (at 47.625 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0daad538-1638-4ab3-bb24-be664498b5e1)) + (pin "2" (uuid 56317610-ab8a-4261-85ea-ce25e1a1fb4a)) + (pin "3" (uuid 7d21ee0b-4d59-445d-9f27-f1f26d6702b1)) + (pin "4" (uuid 465d5fe7-1441-45f8-90bf-c263ad941ac5)) + (pin "5" (uuid bda1f1c6-ee8f-475a-a260-2d630700eb1d)) + (pin "6" (uuid 19bd6b01-fde3-40e1-a24d-258909ccae8f)) + (pin "7" (uuid 6d3941f6-9e63-4fb8-95f9-6df46f7efd71)) + (pin "8" (uuid e83ccc11-8ab2-4dda-8a86-c54ec28bf7c7)) + (pin "9" (uuid 4bc58a9e-8594-4f36-8ca9-e6d0bda64bf4)) + (pin "10" (uuid b04379db-51b2-452e-86fe-9a0856da7377)) + (pin "11" (uuid 3437c5c4-a1f3-40d7-b50e-7b4102360ca3)) + (pin "12" (uuid b0b62790-efbb-4245-a37b-68537e925b4d)) + (pin "13" (uuid 0de081c8-c095-4808-8ec2-6217b8e9c4e0)) + (pin "14" (uuid 9e921b4d-64ef-4436-971f-942c722c030b)) + (pin "15" (uuid 45dc265d-dad4-4e9e-a794-38e3dfb08675)) + (pin "16" (uuid d3080266-c8c1-493c-8773-b5a0b2ee955a)) + (pin "17" (uuid 60844b8b-d17b-4f59-a8fc-13599078cc5a)) + (pin "18" (uuid c556dce3-b1f5-45ba-a5af-da6ab506a2b4)) + (pin "19" (uuid 2ca3cc03-715f-4ed0-9223-7f5517a87263)) + (pin "20" (uuid 01a88407-a2b9-4e48-8dfa-e75d5a86386e)) + (pin "21" (uuid fde7ae09-d859-4886-b0cd-dfe31558fda7)) + (pin "22" (uuid c12574f0-4816-499f-93dd-8d5e739ce3e9)) + (pin "23" (uuid 5ecd6519-d657-4be6-98d2-8522445a929c)) + (pin "24" (uuid 0bd03216-bb25-4ec5-8431-7cefb5798e82)) + (pin "25" (uuid 28c87d27-95b6-4bdf-8807-64a796657f4f)) + (pin "26" (uuid 0601fe4b-aba2-4d18-bc30-457b5ddef5e3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 49.53 64.77 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ba17240-7257-47f9-9181-0a239dc6e06d) + (property "Reference" "U1" (id 0) (at 50.165 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 50.165 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 49.53 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 49.53 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c9522fd3-c4cf-40d7-98b1-5febb789cae5)) + (pin "2" (uuid a1bedbbd-8521-4083-b8f3-5b2e8241d030)) + (pin "3" (uuid 8660e028-a1ad-4dab-8f8b-31fa8eb5b0db)) + (pin "4" (uuid 47cc302c-a459-47d0-8b3a-b83ca1a310ff)) + (pin "5" (uuid f3d4c92b-c99c-4a17-9f1b-6d48edf24a56)) + (pin "6" (uuid 42181dd4-d7c4-449c-adef-d5a0e6ba88d8)) + (pin "7" (uuid db7f98f6-fd29-4c88-8517-46313a687852)) + (pin "8" (uuid 0bf592c6-652c-45ad-9837-310c5254911a)) + (pin "9" (uuid b748a5bf-5bf1-48df-88cb-c967646a7aa7)) + (pin "10" (uuid f908c40a-2f6f-4fa8-8a30-840ac8ce3695)) + (pin "11" (uuid 70ef723f-fc57-480c-a30b-e54eb7892d3b)) + (pin "12" (uuid 63050961-3ab4-4fd2-a1bc-d1c7a438f5a1)) + (pin "13" (uuid 06923f54-0575-487c-8e77-e7732a6af5e5)) + (pin "14" (uuid d1049351-1f3a-4652-affd-bd7c643098e5)) + (pin "15" (uuid a437795d-dae2-4196-b2fb-d4bdb7df3409)) + (pin "16" (uuid 59782d73-8bf1-490f-9de9-757394999862)) + (pin "17" (uuid 6dfefec7-8a6b-4c32-9349-0b7c9178409d)) + (pin "18" (uuid 4e1597b7-3469-462a-aefc-172d6a27fe2f)) + (pin "19" (uuid 8ef467df-ffbe-4208-8d00-e0d6124473e0)) + (pin "20" (uuid 56a62d4b-1c2e-4eaf-a2a6-4c6fdbcb9392)) + (pin "21" (uuid 9a6a1ffc-ef33-49ca-b45d-3343406079d9)) + (pin "22" (uuid 0e8ff194-db88-47b7-b20a-b570a5913664)) + (pin "23" (uuid 75822a82-6919-4148-acbc-064c2bf2aefb)) + (pin "24" (uuid 0570b979-6ddb-45ef-91ac-1c337f9d9a5c)) + (pin "25" (uuid cf193ba5-4083-40f1-ba2b-72dc4b7f659e)) + (pin "26" (uuid a540f417-7ba7-44e8-8dc5-808d1e083a20)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 96.52 124.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7c3b839f-14c7-4e4f-9028-777bba41a521) + (property "Reference" "U11" (id 0) (at 96.52 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 96.52 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 96.52 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 96.52 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 976faf6a-af2d-4f3f-81da-226a795481c0)) + (pin "2" (uuid aee89c3c-e35b-48b3-b6c5-ecb9c4557b18)) + (pin "3" (uuid 02034a57-6a79-40d5-95db-16177e17d69b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 153.67 127 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7c5b5f2d-5a51-40ce-98ba-adde081b2448) + (property "Reference" "U1" (id 0) (at 157.48 126.365 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 157.48 128.905 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 153.67 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid adc5ffc3-2ec2-4125-befb-f79708431205)) + (pin "2" (uuid 2a88f146-1564-413c-8ae2-e786ac55f591)) + (pin "3" (uuid 342db4ee-2078-4a07-96f6-6a976b3c23b9)) + (pin "4" (uuid c9895142-4407-430d-a7ad-684623da3b2f)) + (pin "5" (uuid 5f49f629-8b05-4a3b-bff1-625446bbd583)) + (pin "6" (uuid 255d574f-71bc-44de-979b-36d20389134b)) + (pin "7" (uuid d3e215cd-2b9c-4921-a94f-f5379b35d32d)) + (pin "8" (uuid 02a13163-31a4-4443-82d9-c67dd56d2eee)) + (pin "9" (uuid f075508e-d55f-4fc1-838b-d10c135c3f81)) + (pin "10" (uuid ebcc575b-7e37-47f4-b2b7-c62aa20d7d00)) + (pin "11" (uuid 0e0083df-4ead-46b5-bb96-bc48ba66357f)) + (pin "12" (uuid 282428bf-6974-46ac-9c15-6dc3b9ef26f5)) + (pin "13" (uuid ca78f5a7-93bf-40a6-9ab6-4dcf9128dce5)) + (pin "14" (uuid 0777ea83-67a5-4e67-96dd-8f37dcf74d66)) + (pin "15" (uuid a5db9312-9217-45b8-bde0-2df53669adb2)) + (pin "16" (uuid 98e042da-d32b-48a0-908e-ec778fb05384)) + (pin "17" (uuid 9ae61c5f-4174-4980-9529-e5a3cbd1edfd)) + (pin "18" (uuid 4fe82694-6a15-405a-afea-d917cbafb80e)) + (pin "19" (uuid baaa4095-7005-47f3-922b-4dfb16ab253d)) + (pin "20" (uuid d676a170-5f86-4e9b-9bea-4cd86b355319)) + (pin "21" (uuid 23470a32-4a6c-42b3-b0f4-ef1d7911e73b)) + (pin "22" (uuid 59b8d9fd-170b-41b2-8657-d6f22abbe76e)) + (pin "23" (uuid e0fba541-81b7-48eb-afac-7815011e440c)) + (pin "24" (uuid bafe98a8-9610-4657-9599-a40e0fa9cafb)) + (pin "25" (uuid b1ec9506-943d-4728-be57-662d55f17c4c)) + (pin "26" (uuid 502a2cc2-2045-4b01-be76-c1a2bda1390b)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 115.57 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 810017c2-ad82-4db7-8ff2-a8715f0ae5b2) + (property "Reference" "U15" (id 0) (at 115.57 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 115.57 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 115.57 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 115.57 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8abb42bd-6e46-4950-b438-a95768efeba8)) + (pin "2" (uuid f2e3f03e-c3c8-4b2a-b159-8551d91a0f4b)) + (pin "3" (uuid 3159eb82-c399-44d1-a50f-a4999e9902ca)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 97.79 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8a513bac-15f8-4b14-b2bc-41bb70ae61a3) + (property "Reference" "U12" (id 0) (at 97.79 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 97.79 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 97.79 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 076e7d6d-d008-4e3f-a247-b207697cc5f6)) + (pin "2" (uuid 0f96d4dd-b33e-4e75-9059-e026423807b5)) + (pin "3" (uuid 4819324a-f745-494d-ba49-5f77a9e52fdd)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 154.94 88.9 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 962120c6-837e-484e-9454-5c8163132679) + (property "Reference" "U1" (id 0) (at 158.75 88.265 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 158.75 90.805 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 154.94 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 154.94 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1ff7cdc5-3101-4172-aab2-c215f20dc054)) + (pin "2" (uuid 86ad8a51-8730-4670-a09b-82100e2bc38b)) + (pin "3" (uuid 9bc96de7-b1ca-4b2d-ac28-7b704c2e0ee5)) + (pin "4" (uuid 599c7293-a8bb-4e11-9ebe-8c98dcd453ad)) + (pin "5" (uuid 2bac92a6-faf3-4798-a0af-c30aedfbeda7)) + (pin "6" (uuid c7286331-6368-4e92-9be3-3930bbb8e998)) + (pin "7" (uuid ee8fcfb2-ddfb-417a-9d38-cf251a74abfd)) + (pin "8" (uuid 948eb4f1-5d1c-4aaa-b5e9-3733b0011a3b)) + (pin "9" (uuid b130f9ab-dea2-4231-a903-da6831d2406b)) + (pin "10" (uuid 86491471-0dad-4cb0-8225-a79dcae9a4de)) + (pin "11" (uuid 502526cf-c3b1-43ca-92d4-593dad0633bd)) + (pin "12" (uuid c8688e71-31bf-4c7b-a6dc-f68085054473)) + (pin "13" (uuid f0db9a41-0dfa-46e9-8ff7-23dd1be78b41)) + (pin "14" (uuid a74ab00f-aa72-415c-b780-befa70899163)) + (pin "15" (uuid f43434ec-cb68-4308-b403-d02d0c5e8fa2)) + (pin "16" (uuid 248c7ea7-3ceb-41b6-b5a9-65f84e077dcf)) + (pin "17" (uuid 3f4ca512-7fdc-4b40-a8c1-e9e0011aace9)) + (pin "18" (uuid a6d10ce1-6e49-405a-9aaf-c85c64ef4c3a)) + (pin "19" (uuid 99b49334-8755-4f78-9edd-c6ba97914063)) + (pin "20" (uuid 8a3b43aa-38d3-422f-aaa2-89613f7e6719)) + (pin "21" (uuid 91e86d47-1c5b-4b00-be80-e4f588377af2)) + (pin "22" (uuid 130c72ad-2cd7-44e5-b0bb-af81f4f50902)) + (pin "23" (uuid 7cbaf674-beec-4a66-8506-be2772aecc16)) + (pin "24" (uuid 66f756dd-8830-49c2-aa30-db48aee79c5e)) + (pin "25" (uuid cd4b034f-cbfe-4676-ba4e-b1a5be809425)) + (pin "26" (uuid 706fd8f4-91f4-4efe-9c79-f766d01de59b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 144.78 53.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9675dd4e-fd2f-4564-9e40-f21fa0b7127b) + (property "Reference" "U19" (id 0) (at 144.78 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 144.78 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 146.05 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 146.05 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3717a893-92c7-4414-a982-c6aa6ee07f68)) + (pin "2" (uuid 3f5896d2-af23-415f-a0a1-f1095c894e6c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 88.9 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 97b1d0e2-35fe-4d10-8183-9b8f40c5d184) + (property "Reference" "U1" (id 0) (at 47.625 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9e0c39f0-d10b-4c1a-8c56-b7863d9677d4)) + (pin "2" (uuid b3841f1b-3411-4728-b75a-5306c9b9a916)) + (pin "3" (uuid 03b91bc4-fa9c-429f-b33d-261c5859b233)) + (pin "4" (uuid 2087b40f-01a2-4827-b4df-c8213da7995d)) + (pin "5" (uuid 88a52d38-1d82-491f-a277-18e2168102fd)) + (pin "6" (uuid fc7d23f6-0708-4076-bbe8-54cff05232f1)) + (pin "7" (uuid a781401d-7c39-4c9b-b869-e6cf2cb4792b)) + (pin "8" (uuid 47930873-d3f4-4203-b8ec-532193c84e7b)) + (pin "9" (uuid 8503c02d-39de-4e8f-8c1d-7760285657b0)) + (pin "10" (uuid 2c67ac50-da67-451d-ae3b-8a8c71ddf0c0)) + (pin "11" (uuid 2d88e659-7212-4b11-acdc-98848b1b5acf)) + (pin "12" (uuid 30b6032e-4fea-43ff-a9d6-b580925e03d4)) + (pin "13" (uuid 606abc89-62d4-4f02-8994-b16b5e7e1564)) + (pin "14" (uuid 94a2945a-6fa5-4b4d-90fa-690e257d5f42)) + (pin "15" (uuid 659c21af-c541-43ab-9654-2a4fa3ace074)) + (pin "16" (uuid 7f79a51d-dc15-4832-a653-afb500235539)) + (pin "17" (uuid afeb984a-11ba-42dc-8a11-522a2a38d430)) + (pin "18" (uuid cce8a440-02a1-41d4-a693-9ed7f6027dab)) + (pin "19" (uuid cafde2ad-db51-40e8-b1e3-e06ac17ce5ba)) + (pin "20" (uuid 828858e0-ad26-413e-9650-17f5180528e6)) + (pin "21" (uuid 5c970445-94fc-4096-a757-f21e231994f4)) + (pin "22" (uuid 15d58eb8-0048-4ee9-af7e-861a17a2093f)) + (pin "23" (uuid 74ed35aa-8ce7-4d7f-8afc-daa6e706736a)) + (pin "24" (uuid e9dd0158-e257-4877-bfb6-72e2cf7912d2)) + (pin "25" (uuid d07184b9-5323-4171-9539-a811bf240475)) + (pin "26" (uuid 51de5142-ffe7-47f7-a965-47ac3ae28a2f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 45.72 116.84 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab9d198f-966f-4c18-8cb7-1ed1997ba0da) + (property "Reference" "U1" (id 0) (at 46.355 111.76 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 46.355 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 45.72 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 45.72 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 717524fb-4244-4f4a-ae2f-76f39c860e8e)) + (pin "2" (uuid b8e27cb1-0e25-4ba7-be3e-4d50599655b9)) + (pin "3" (uuid e8c6a4e6-493e-42a0-ba38-ead05a9b2b8e)) + (pin "4" (uuid 2753a4fa-3783-4eb5-b469-ed5d03502c16)) + (pin "5" (uuid c7a1e2bb-6678-4d80-aa63-df19add1649c)) + (pin "6" (uuid 26444431-299c-4684-a306-6a2e1d87814a)) + (pin "7" (uuid 4cfd95d7-d446-4da4-afc7-3c6aef58fa5e)) + (pin "8" (uuid 2a3b19ce-9a37-4b48-9d21-2da3ebe7e9a5)) + (pin "9" (uuid ac13b828-c7e9-4a7b-8b2e-e5ef2faf411b)) + (pin "10" (uuid 599ba1f8-2a01-40f4-af56-07d7a902f539)) + (pin "11" (uuid aa2295cf-b2cc-4d77-80a8-80b1f705f941)) + (pin "12" (uuid 459ec472-188c-4304-9016-911d17cd17af)) + (pin "13" (uuid 283224ac-4ee5-4b64-b9c1-4bcabc40e25b)) + (pin "14" (uuid 7ca21ed5-9e1d-4db5-a873-e2b1ceaaf568)) + (pin "15" (uuid b6ee208d-8006-40f5-b7da-11fd2886a206)) + (pin "16" (uuid 46c40727-85c4-43cc-84f5-5dbdd7e081d8)) + (pin "17" (uuid 934eb805-d35d-489c-9b7a-e32b384b9756)) + (pin "18" (uuid 9bbebeb3-6a1e-46c5-b6a4-f656ec512fea)) + (pin "19" (uuid 556fc074-d1ba-4c7c-9d60-f596b88a8df4)) + (pin "20" (uuid b36e8e1b-6562-4b80-bed4-d48dc8de21b1)) + (pin "21" (uuid 0fb3bbf0-557b-4f5a-875d-bf54211dc338)) + (pin "22" (uuid 0f23cb43-6892-490a-9180-d1ff85e40a17)) + (pin "23" (uuid d983fffc-8f09-48a3-a6f8-4a1057b2b200)) + (pin "24" (uuid a0db0ec5-4115-41b0-9cac-12be93448d77)) + (pin "25" (uuid bd680e7a-ab50-411c-9bb8-586a3e754f5a)) + (pin "26" (uuid c09823a1-44bb-42b3-9a27-d5448b123b5a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 45.72 127 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid af20b072-d3b5-43b2-be4c-04f4e96064ef) + (property "Reference" "U1" (id 0) (at 46.355 121.92 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 46.355 124.46 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 45.72 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 45.72 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b6b41de1-3524-4a09-a29a-4be173be48a3)) + (pin "2" (uuid 177b3fca-1a6a-44ad-9bb6-145475916d50)) + (pin "3" (uuid 30a34ce4-271e-4b56-b75f-be26a7a64543)) + (pin "4" (uuid 84619c42-35d1-4a9b-a508-def723e80035)) + (pin "5" (uuid 73a3140d-3211-4dea-9f1d-90d53e6a0fa6)) + (pin "6" (uuid 94b97594-df1b-422f-806c-12089966f90d)) + (pin "7" (uuid 1d3f0677-afbc-4b00-8984-f142d73d9de0)) + (pin "8" (uuid ae67963e-6833-4e70-aea0-75f9a1849f0d)) + (pin "9" (uuid eceb803d-803b-48ea-ad92-087238087628)) + (pin "10" (uuid 7fc1fc5c-3e4b-49ad-ae17-ae184d83664f)) + (pin "11" (uuid d4489d11-140f-48ca-b277-a455d57b6148)) + (pin "12" (uuid 2425bb09-3d5e-4b4e-a5de-4e191f3f9539)) + (pin "13" (uuid afefcb87-bbf6-4380-b2ff-9e0587ede8a6)) + (pin "14" (uuid 866c8e2a-87bd-4ecf-9c11-8f9732169cb9)) + (pin "15" (uuid 9ad92dda-1dbd-4d7b-a4fc-65c9a8a557c5)) + (pin "16" (uuid 921dfe88-aa70-4787-889a-50bd0ad7b36d)) + (pin "17" (uuid 665f6b08-d855-43c8-92fe-9a794fb68a95)) + (pin "18" (uuid fbfe184d-5856-4469-8bf7-afa1117e3faa)) + (pin "19" (uuid 5f8e6b98-c9c9-4b67-b276-30ac6f557fa1)) + (pin "20" (uuid eb5b4a96-0c09-449b-a59a-656aad53719b)) + (pin "21" (uuid 6bb71689-2e57-4b38-a10e-7dea4e7c3605)) + (pin "22" (uuid 37199297-abce-4c73-8093-db04f77662d1)) + (pin "23" (uuid 31b126f3-c893-4ab2-9559-583a48905777)) + (pin "24" (uuid e28cc679-8c9e-4196-947c-183eabe46dbc)) + (pin "25" (uuid 8757327c-3a03-4b0b-8654-212f1aa4e38f)) + (pin "26" (uuid 51236573-8757-4bd7-b6d8-24ccf41262ca)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 140.97 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c38e021f-bbc4-4e84-941e-0fea34cb8901) + (property "Reference" "U18" (id 0) (at 140.97 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 140.97 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 142.24 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5519261e-59a1-42f7-a9e2-ac967d6cf409)) + (pin "2" (uuid 37d56679-c777-45cd-af4f-90fe6eec5733)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 119.38 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c6584d2d-aa08-4c47-91dc-f5344be111a1) + (property "Reference" "U16" (id 0) (at 119.38 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 119.38 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 119.38 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 119.38 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e36329f-c3cd-48ce-babd-f913fac9e37a)) + (pin "2" (uuid ff0bd3b5-6bcd-40cc-a68b-fc84290bc674)) + (pin "3" (uuid 287783c8-a878-412c-bcbe-cd565d902cb4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 99.06 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ca61342a-f529-49bb-96bb-9023b0e26cbd) + (property "Reference" "U1" (id 0) (at 47.625 93.98 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 96.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 62c77a1c-ee38-44a7-bbca-9f804e0fb923)) + (pin "2" (uuid eab22447-279a-4eb7-85f8-4e622afc19ef)) + (pin "3" (uuid f6972a01-0cfd-444c-b9da-c6766dd2d7db)) + (pin "4" (uuid 830a28d4-b71d-4e00-b697-b351957d1189)) + (pin "5" (uuid bf3c0293-52ca-4404-abf1-20e811108511)) + (pin "6" (uuid 973102fd-965b-4801-9706-4268ab007e6c)) + (pin "7" (uuid 0ba4cda5-6fa0-498c-a86a-a7ddad357258)) + (pin "8" (uuid 5b994ff6-5ae5-47a6-a24e-5c657b9efafe)) + (pin "9" (uuid 0aed13fd-03d6-413f-a043-16644781db0c)) + (pin "10" (uuid 5d15bbff-f604-436a-b7bc-e1af0a2e4957)) + (pin "11" (uuid 8e8e9b38-41c6-4b8f-ae7f-4ad99600dec4)) + (pin "12" (uuid 9b14b515-f431-4c9f-be85-90b7aa3b05e1)) + (pin "13" (uuid 632f8b27-8e52-4829-9694-3e6187f19d4e)) + (pin "14" (uuid 7cd67926-5fdd-4dd6-ba5f-685cd57d2394)) + (pin "15" (uuid 19fa30d0-7f82-45d8-81c0-645681c6976b)) + (pin "16" (uuid 352b4de4-5afc-494b-b944-2a295ff30a48)) + (pin "17" (uuid 4eafdada-ed06-445f-b886-5268c0af5629)) + (pin "18" (uuid 7ad178c1-8ecc-415b-8a92-773caee63ea9)) + (pin "19" (uuid 4b21f850-c3cd-471d-b2be-8bc51366a236)) + (pin "20" (uuid 6ae00ba4-771c-4beb-b750-fdac1f620f46)) + (pin "21" (uuid 610dc46e-d496-4482-a410-2cc8cc2f92bb)) + (pin "22" (uuid 0e5fc702-be66-4c17-9ffe-a57b6f7eb119)) + (pin "23" (uuid 7b372dc7-499d-48cc-94ae-677e9e63759d)) + (pin "24" (uuid 60e45831-513b-47d6-a03f-66821f0c243c)) + (pin "25" (uuid c2cf8939-8bf6-46a5-8284-41dd859b9e35)) + (pin "26" (uuid fe1eda26-f7b8-42cf-9cc3-be4e37f5be8a)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 114.3 138.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc4400eb-f897-4e93-ae83-af581d0eef05) + (property "Reference" "U14" (id 0) (at 114.3 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 114.3 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 114.3 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 114.3 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1f1456f0-81a3-4177-b547-880b9df3ab8c)) + (pin "2" (uuid 9c099800-a75a-4b04-b773-3b29f175a403)) + (pin "3" (uuid ff15dd21-4619-4934-9709-9453836f7c45)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 69.85 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e746ecc8-30c8-4527-98b2-8ce5d227ba21) + (property "Reference" "U7" (id 0) (at 69.85 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 69.85 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9847b7fe-2009-4c95-bbf4-c2378af37627)) + (pin "2" (uuid 2a3302de-d348-4e86-91c3-584ed1fac816)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 73.66 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f665b7f4-8755-4d1f-a36b-c226823c3003) + (property "Reference" "U10" (id 0) (at 73.66 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 73.66 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 74.93 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 74.93 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 381f21c2-c8e9-4e34-b609-587b9656a742)) + (pin "2" (uuid 7b6022da-6ca6-419f-bbc7-890a06c326ae)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 101.6 50.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f7e53f6a-1bef-4608-a88d-b777fb78292c) + (property "Reference" "U13" (id 0) (at 101.6 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 101.6 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 101.6 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 101.6 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0bbe4071-ebf0-4ae1-a73d-bc7c4815246c)) + (pin "2" (uuid 4a62c8e9-445e-4e79-b989-a5fe78d92c69)) + (pin "3" (uuid ed563b33-eba4-46dc-b241-7a1c5ac49ad8)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 139.7 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fc4bb10b-5552-4d07-9cd5-43b7b25c7ebf) + (property "Reference" "U17" (id 0) (at 139.7 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 139.7 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 140.97 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7d22816c-7d27-461f-ab52-7ac1e2947185)) + (pin "2" (uuid b0a3d52b-6ee5-4d06-bdf6-61f8ac85b7fa)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/6205a955-b56b-47b7-8822-94ab577ad597" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/13264e71-5d77-47fe-9258-d1b0fda055d0" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/6b9f664b-fc3c-4d5c-b4b2-c393266f9bde" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/97b1d0e2-35fe-4d10-8183-9b8f40c5d184" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/ca61342a-f529-49bb-96bb-9023b0e26cbd" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/962120c6-837e-484e-9454-5c8163132679" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/7ba17240-7257-47f9-9181-0a239dc6e06d" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/17f9eba0-00b4-4aa0-afcc-6e9d32607989" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/7c5b5f2d-5a51-40ce-98ba-adde081b2448" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/ab9d198f-966f-4c18-8cb7-1ed1997ba0da" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/af20b072-d3b5-43b2-be4c-04f4e96064ef" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/1c2b526e-156f-440c-8c9f-a3445fc1c3ec" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/24ed4c09-9971-42b7-a987-edd5c4e90025" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2f4e2604-003a-4e22-afb8-e3c51da89361" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/28df6961-4ca5-47f7-b2b2-9d4ff83e9f4b" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/212e2307-0bc3-4ed4-a2a5-b8d77458957f" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2e3e1baf-bc3e-423f-9e85-925fa1b7d029" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e746ecc8-30c8-4527-98b2-8ce5d227ba21" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2ff68ab2-5252-4ee1-95e3-ac36e7d91a4e" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/47cd2e48-da47-4209-8dba-ef1c4f674651" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f665b7f4-8755-4d1f-a36b-c226823c3003" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7c3b839f-14c7-4e4f-9028-777bba41a521" + (reference "U11") (unit 1) (value "d_nor") (footprint "") + ) + (path "/8a513bac-15f8-4b14-b2bc-41bb70ae61a3" + (reference "U12") (unit 1) (value "d_nor") (footprint "") + ) + (path "/f7e53f6a-1bef-4608-a88d-b777fb78292c" + (reference "U13") (unit 1) (value "d_nor") (footprint "") + ) + (path "/cc4400eb-f897-4e93-ae83-af581d0eef05" + (reference "U14") (unit 1) (value "d_nor") (footprint "") + ) + (path "/810017c2-ad82-4db7-8ff2-a8715f0ae5b2" + (reference "U15") (unit 1) (value "d_nor") (footprint "") + ) + (path "/c6584d2d-aa08-4c47-91dc-f5344be111a1" + (reference "U16") (unit 1) (value "d_nor") (footprint "") + ) + (path "/fc4bb10b-5552-4d07-9cd5-43b7b25c7ebf" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c38e021f-bbc4-4e84-941e-0fea34cb8901" + (reference "U18") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9675dd4e-fd2f-4564-9e40-f21fa0b7127b" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4073B/CD4073B.sub b/library/SubcircuitLibrary/CD4073B/CD4073B.sub new file mode 100644 index 000000000..68767fe7e --- /dev/null +++ b/library/SubcircuitLibrary/CD4073B/CD4073B.sub @@ -0,0 +1,78 @@ +* Subcircuit CD4073B +.subckt CD4073B net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ +.title kicad schematic +* u10 net-_u1-pad2_ net-_u10-pad2_ d_inverter +* u8 net-_u1-pad1_ net-_u13-pad1_ d_inverter +* u9 net-_u1-pad8_ net-_u16-pad2_ d_inverter +* u4 net-_u1-pad3_ net-_u12-pad1_ d_inverter +* u7 net-_u1-pad4_ net-_u12-pad2_ d_inverter +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_nor +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_nor +* u13 net-_u13-pad1_ net-_u10-pad2_ net-_u13-pad3_ d_nor +* u16 net-_u13-pad3_ net-_u16-pad2_ net-_u16-pad3_ d_nor +* u19 net-_u16-pad3_ net-_u1-pad9_ d_inverter +* u15 net-_u12-pad3_ net-_u15-pad2_ net-_u15-pad3_ d_nor +* u18 net-_u15-pad3_ net-_u1-pad6_ d_inverter +* u14 net-_u11-pad3_ net-_u14-pad2_ net-_u14-pad3_ d_nor +* u17 net-_u14-pad3_ net-_u1-pad10_ d_inverter +* u2 net-_u1-pad11_ net-_u11-pad1_ d_inverter +* u5 net-_u1-pad5_ net-_u15-pad2_ d_inverter +* u6 net-_u1-pad12_ net-_u11-pad2_ d_inverter +* u3 net-_u1-pad13_ net-_u14-pad2_ d_inverter +a1 net-_u1-pad2_ net-_u10-pad2_ u10 +a2 net-_u1-pad1_ net-_u13-pad1_ u8 +a3 net-_u1-pad8_ net-_u16-pad2_ u9 +a4 net-_u1-pad3_ net-_u12-pad1_ u4 +a5 net-_u1-pad4_ net-_u12-pad2_ u7 +a6 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a7 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a8 [net-_u13-pad1_ net-_u10-pad2_ ] net-_u13-pad3_ u13 +a9 [net-_u13-pad3_ net-_u16-pad2_ ] net-_u16-pad3_ u16 +a10 net-_u16-pad3_ net-_u1-pad9_ u19 +a11 [net-_u12-pad3_ net-_u15-pad2_ ] net-_u15-pad3_ u15 +a12 net-_u15-pad3_ net-_u1-pad6_ u18 +a13 [net-_u11-pad3_ net-_u14-pad2_ ] net-_u14-pad3_ u14 +a14 net-_u14-pad3_ net-_u1-pad10_ u17 +a15 net-_u1-pad11_ net-_u11-pad1_ u2 +a16 net-_u1-pad5_ net-_u15-pad2_ u5 +a17 net-_u1-pad12_ net-_u11-pad2_ u6 +a18 net-_u1-pad13_ net-_u14-pad2_ u3 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u11 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u12 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u13 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u16 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u15 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u14 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends CD4073B \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4073B/CD4073B_Previous_Values.xml b/library/SubcircuitLibrary/CD4073B/CD4073B_Previous_Values.xml new file mode 100644 index 000000000..191cac3e1 --- /dev/null +++ b/library/SubcircuitLibrary/CD4073B/CD4073B_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_inverterd_inverterd_inverterd_inverterd_inverterd_nord_nord_nord_nord_inverterd_nord_inverterd_nord_inverterd_inverterd_inverterd_inverterd_inverter \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4073B/analysis b/library/SubcircuitLibrary/CD4073B/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/CD4073B/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4078BE/CD4078BE.cir b/library/SubcircuitLibrary/CD4078BE/CD4078BE.cir new file mode 100644 index 000000000..b3b8ca894 --- /dev/null +++ b/library/SubcircuitLibrary/CD4078BE/CD4078BE.cir @@ -0,0 +1,26 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ unconnected-_U1-Pad6_ unconnected-_U1-Pad7_ unconnected-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ unconnected-_U1-Pad14_ PORT +U8 Net-_U1-Pad3_ Net-_U10-Pad2_ d_inverter +U7 Net-_U1-Pad2_ Net-_U10-Pad1_ d_inverter +U9 Net-_U1-Pad4_ Net-_U11-Pad1_ d_inverter +U2 Net-_U1-Pad5_ Net-_U11-Pad2_ d_inverter +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_and +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_and +U5 Net-_U1-Pad11_ Net-_U13-Pad1_ d_inverter +U6 Net-_U1-Pad12_ Net-_U13-Pad2_ d_inverter +U3 Net-_U1-Pad9_ Net-_U12-Pad1_ d_inverter +U4 Net-_U1-Pad10_ Net-_U12-Pad2_ d_inverter +U15 Net-_U12-Pad3_ Net-_U13-Pad3_ Net-_U15-Pad3_ d_and +U17 Net-_U15-Pad3_ Net-_U17-Pad2_ d_inverter +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U12-Pad3_ d_and +U13 Net-_U13-Pad1_ Net-_U13-Pad2_ Net-_U13-Pad3_ d_and +U21 Net-_U19-Pad2_ Net-_U21-Pad2_ d_inverter +U23 Net-_U21-Pad2_ Net-_U1-Pad1_ d_buffer +U22 Net-_U20-Pad2_ Net-_U22-Pad2_ d_buffer +U24 Net-_U22-Pad2_ Net-_U1-Pad13_ d_inverter +U19 Net-_U18-Pad3_ Net-_U19-Pad2_ d_inverter +U20 Net-_U19-Pad2_ Net-_U20-Pad2_ d_inverter +U18 Net-_U16-Pad2_ Net-_U17-Pad2_ Net-_U18-Pad3_ d_or +U16 Net-_U14-Pad3_ Net-_U16-Pad2_ d_inverter +U14 Net-_U10-Pad3_ Net-_U11-Pad3_ Net-_U14-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/CD4078BE/CD4078BE.cir.out b/library/SubcircuitLibrary/CD4078BE/CD4078BE.cir.out new file mode 100644 index 000000000..e8e6ddbb2 --- /dev/null +++ b/library/SubcircuitLibrary/CD4078BE/CD4078BE.cir.out @@ -0,0 +1,104 @@ +.title kicad schematic + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ unconnected-_u1-pad6_ unconnected-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ unconnected-_u1-pad14_ port +* u8 net-_u1-pad3_ net-_u10-pad2_ d_inverter +* u7 net-_u1-pad2_ net-_u10-pad1_ d_inverter +* u9 net-_u1-pad4_ net-_u11-pad1_ d_inverter +* u2 net-_u1-pad5_ net-_u11-pad2_ d_inverter +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_and +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_and +* u5 net-_u1-pad11_ net-_u13-pad1_ d_inverter +* u6 net-_u1-pad12_ net-_u13-pad2_ d_inverter +* u3 net-_u1-pad9_ net-_u12-pad1_ d_inverter +* u4 net-_u1-pad10_ net-_u12-pad2_ d_inverter +* u15 net-_u12-pad3_ net-_u13-pad3_ net-_u15-pad3_ d_and +* u17 net-_u15-pad3_ net-_u17-pad2_ d_inverter +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_and +* u13 net-_u13-pad1_ net-_u13-pad2_ net-_u13-pad3_ d_and +* u21 net-_u19-pad2_ net-_u21-pad2_ d_inverter +* u23 net-_u21-pad2_ net-_u1-pad1_ d_buffer +* u22 net-_u20-pad2_ net-_u22-pad2_ d_buffer +* u24 net-_u22-pad2_ net-_u1-pad13_ d_inverter +* u19 net-_u18-pad3_ net-_u19-pad2_ d_inverter +* u20 net-_u19-pad2_ net-_u20-pad2_ d_inverter +* u18 net-_u16-pad2_ net-_u17-pad2_ net-_u18-pad3_ d_or +* u16 net-_u14-pad3_ net-_u16-pad2_ d_inverter +* u14 net-_u10-pad3_ net-_u11-pad3_ net-_u14-pad3_ d_and +a1 net-_u1-pad3_ net-_u10-pad2_ u8 +a2 net-_u1-pad2_ net-_u10-pad1_ u7 +a3 net-_u1-pad4_ net-_u11-pad1_ u9 +a4 net-_u1-pad5_ net-_u11-pad2_ u2 +a5 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a6 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a7 net-_u1-pad11_ net-_u13-pad1_ u5 +a8 net-_u1-pad12_ net-_u13-pad2_ u6 +a9 net-_u1-pad9_ net-_u12-pad1_ u3 +a10 net-_u1-pad10_ net-_u12-pad2_ u4 +a11 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u15-pad3_ u15 +a12 net-_u15-pad3_ net-_u17-pad2_ u17 +a13 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a14 [net-_u13-pad1_ net-_u13-pad2_ ] net-_u13-pad3_ u13 +a15 net-_u19-pad2_ net-_u21-pad2_ u21 +a16 net-_u21-pad2_ net-_u1-pad1_ u23 +a17 net-_u20-pad2_ net-_u22-pad2_ u22 +a18 net-_u22-pad2_ net-_u1-pad13_ u24 +a19 net-_u18-pad3_ net-_u19-pad2_ u19 +a20 net-_u19-pad2_ net-_u20-pad2_ u20 +a21 [net-_u16-pad2_ net-_u17-pad2_ ] net-_u18-pad3_ u18 +a22 net-_u14-pad3_ net-_u16-pad2_ u16 +a23 [net-_u10-pad3_ net-_u11-pad3_ ] net-_u14-pad3_ u14 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u23 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u22 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u18 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4078BE/CD4078BE.kicad_sch b/library/SubcircuitLibrary/CD4078BE/CD4078BE.kicad_sch new file mode 100644 index 000000000..46a0d57bf --- /dev/null +++ b/library/SubcircuitLibrary/CD4078BE/CD4078BE.kicad_sch @@ -0,0 +1,14 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 68eb16fe-d783-4484-9ac7-ffeb02679964) + + (paper "A4") + + (lib_symbols + ) + + + (sheet_instances + (path "/" (page "1")) + ) +) diff --git a/library/SubcircuitLibrary/CD4078BE/CD4078BE.sub b/library/SubcircuitLibrary/CD4078BE/CD4078BE.sub new file mode 100644 index 000000000..5682988bb --- /dev/null +++ b/library/SubcircuitLibrary/CD4078BE/CD4078BE.sub @@ -0,0 +1,98 @@ +* Subcircuit CD4078BE +.subckt CD4078BE net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ unconnected-_u1-pad6_ unconnected-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ unconnected-_u1-pad14_ +.title kicad schematic +* u8 net-_u1-pad3_ net-_u10-pad2_ d_inverter +* u7 net-_u1-pad2_ net-_u10-pad1_ d_inverter +* u9 net-_u1-pad4_ net-_u11-pad1_ d_inverter +* u2 net-_u1-pad5_ net-_u11-pad2_ d_inverter +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_and +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_and +* u5 net-_u1-pad11_ net-_u13-pad1_ d_inverter +* u6 net-_u1-pad12_ net-_u13-pad2_ d_inverter +* u3 net-_u1-pad9_ net-_u12-pad1_ d_inverter +* u4 net-_u1-pad10_ net-_u12-pad2_ d_inverter +* u15 net-_u12-pad3_ net-_u13-pad3_ net-_u15-pad3_ d_and +* u17 net-_u15-pad3_ net-_u17-pad2_ d_inverter +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_and +* u13 net-_u13-pad1_ net-_u13-pad2_ net-_u13-pad3_ d_and +* u21 net-_u19-pad2_ net-_u21-pad2_ d_inverter +* u23 net-_u21-pad2_ net-_u1-pad1_ d_buffer +* u22 net-_u20-pad2_ net-_u22-pad2_ d_buffer +* u24 net-_u22-pad2_ net-_u1-pad13_ d_inverter +* u19 net-_u18-pad3_ net-_u19-pad2_ d_inverter +* u20 net-_u19-pad2_ net-_u20-pad2_ d_inverter +* u18 net-_u16-pad2_ net-_u17-pad2_ net-_u18-pad3_ d_or +* u16 net-_u14-pad3_ net-_u16-pad2_ d_inverter +* u14 net-_u10-pad3_ net-_u11-pad3_ net-_u14-pad3_ d_and +a1 net-_u1-pad3_ net-_u10-pad2_ u8 +a2 net-_u1-pad2_ net-_u10-pad1_ u7 +a3 net-_u1-pad4_ net-_u11-pad1_ u9 +a4 net-_u1-pad5_ net-_u11-pad2_ u2 +a5 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a6 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a7 net-_u1-pad11_ net-_u13-pad1_ u5 +a8 net-_u1-pad12_ net-_u13-pad2_ u6 +a9 net-_u1-pad9_ net-_u12-pad1_ u3 +a10 net-_u1-pad10_ net-_u12-pad2_ u4 +a11 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u15-pad3_ u15 +a12 net-_u15-pad3_ net-_u17-pad2_ u17 +a13 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a14 [net-_u13-pad1_ net-_u13-pad2_ ] net-_u13-pad3_ u13 +a15 net-_u19-pad2_ net-_u21-pad2_ u21 +a16 net-_u21-pad2_ net-_u1-pad1_ u23 +a17 net-_u20-pad2_ net-_u22-pad2_ u22 +a18 net-_u22-pad2_ net-_u1-pad13_ u24 +a19 net-_u18-pad3_ net-_u19-pad2_ u19 +a20 net-_u19-pad2_ net-_u20-pad2_ u20 +a21 [net-_u16-pad2_ net-_u17-pad2_ ] net-_u18-pad3_ u18 +a22 net-_u14-pad3_ net-_u16-pad2_ u16 +a23 [net-_u10-pad3_ net-_u11-pad3_ ] net-_u14-pad3_ u14 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u23 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u22 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u18 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends CD4078BE \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4078BE/CD4078BE_Previous_Values.xml b/library/SubcircuitLibrary/CD4078BE/CD4078BE_Previous_Values.xml new file mode 100644 index 000000000..f1f1386e7 --- /dev/null +++ b/library/SubcircuitLibrary/CD4078BE/CD4078BE_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_inverterd_inverterd_inverterd_andd_andd_inverterd_inverterd_inverterd_inverterd_andd_inverterd_andd_andd_inverterd_bufferd_bufferd_inverterd_inverterd_inverterd_ord_inverterd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4078BE/analysis b/library/SubcircuitLibrary/CD4078BE/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/CD4078BE/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4098/CD4098-cache.lib b/library/SubcircuitLibrary/CD4098/CD4098-cache.lib new file mode 100644 index 000000000..23a1ef279 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098-cache.lib @@ -0,0 +1,195 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# adc_bridge_1 +# +DEF adc_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "adc_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# cd4098_latch +# +DEF cd4098_latch U 0 40 Y Y 1 F N +F0 "U" 2850 1800 60 H V C CNN +F1 "cd4098_latch" 2850 2000 60 H V C CNN +F2 "" 2850 1950 60 H V C CNN +F3 "" 2850 1950 60 H V C CNN +DRAW +S 2350 2100 3350 1400 0 1 0 N +X D0 1 2150 1900 200 R 50 50 1 1 I +X C0 2 2150 1800 200 R 50 50 1 1 I +X R10 3 2150 1700 200 R 50 50 1 1 I +X R20 4 2150 1600 200 R 50 50 1 1 I +X Q0 5 3550 1900 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_nand +# +DEF d_nand U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nand" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_nor +# +DEF d_nor U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nor" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# dac_bridge_1 +# +DEF dac_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "dac_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# eSim_MOS_N +# +DEF eSim_MOS_N M 0 0 Y N 1 F N +F0 "M" 0 -150 50 H V R CNN +F1 "eSim_MOS_N" 100 -50 50 H V R CNN +F2 "" 300 -300 29 H V C CNN +F3 "" 100 -200 60 H V C CNN +ALIAS mosfet_n +DRAW +C 150 -200 111 0 1 10 N +P 2 0 1 10 130 -290 130 -250 N +P 2 0 1 0 130 -270 200 -270 N +P 2 0 1 10 130 -220 130 -180 N +P 2 0 1 0 130 -200 200 -200 N +P 2 0 1 10 130 -150 130 -110 N +P 2 0 1 0 130 -130 200 -130 N +P 2 0 1 0 200 -300 200 -270 N +P 2 0 1 0 200 -130 200 -100 N +P 3 0 1 10 110 -275 110 -125 110 -125 N +P 3 0 1 0 200 -200 300 -200 300 -250 N +P 4 0 1 0 140 -200 180 -215 180 -185 140 -200 F +X D 1 200 0 100 D 50 50 1 1 P +X G 2 -100 -200 210 R 50 50 1 1 P +X S 3 200 -400 100 U 50 50 1 1 P +X B 4 300 -350 98 U 47 47 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_P +# +DEF eSim_MOS_P M 0 0 Y N 1 F N +F0 "M" -50 50 50 H V R CNN +F1 "eSim_MOS_P" 50 150 50 H V R CNN +F2 "" 250 100 29 H V C CNN +F3 "" 50 0 60 H V C CNN +ALIAS mosfet_p +DRAW +C 100 0 111 0 1 10 N +P 2 0 1 0 80 -70 150 -70 N +P 2 0 1 10 80 -50 80 -90 N +P 2 0 1 0 80 0 150 0 N +P 2 0 1 10 80 20 80 -20 N +P 2 0 1 0 80 70 150 70 N +P 2 0 1 10 80 90 80 50 N +P 2 0 1 0 150 -70 150 -100 N +P 2 0 1 0 150 100 150 70 N +P 3 0 1 10 60 75 60 -75 60 -75 N +P 3 0 1 0 150 0 250 0 250 -50 N +P 4 0 1 0 140 0 100 -15 100 15 140 0 F +X D 1 150 200 100 D 50 50 1 1 P +X G 2 -150 0 210 R 50 50 1 1 P +X S 3 150 -200 100 U 50 50 1 1 P +X B 4 250 -150 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4098/CD4098.cir b/library/SubcircuitLibrary/CD4098/CD4098.cir new file mode 100644 index 000000000..919af079a --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098.cir @@ -0,0 +1,32 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\CD4098\CD4098.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/26/25 13:17:11 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ d_inverter +U5 Net-_U1-Pad2_ Net-_U5-Pad2_ d_inverter +U2 Net-_U19-Pad2_ Net-_U2-Pad2_ d_inverter +U3 Net-_U19-Pad3_ Net-_U11-Pad1_ d_inverter +U8 Net-_U5-Pad2_ Net-_U2-Pad2_ Net-_U4-Pad2_ d_nand +U4 Net-_U19-Pad10_ Net-_U4-Pad2_ Net-_U11-Pad1_ Net-_U12-Pad2_ Net-_U10-Pad1_ cd4098_latch +U6 Net-_U10-Pad3_ Net-_U6-Pad2_ d_inverter +U9 Net-_U10-Pad3_ Net-_U19-Pad4_ d_inverter +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_nor +U7 Net-_U6-Pad2_ Net-_U19-Pad5_ d_inverter +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U10-Pad2_ d_nor +U12 Net-_U11-Pad2_ Net-_U12-Pad2_ d_inverter +U13 Net-_U13-Pad1_ Net-_U10-Pad1_ Net-_U13-Pad3_ d_nor +U14 Net-_U11-Pad2_ Net-_U13-Pad1_ d_inverter +U15 Net-_U13-Pad3_ Net-_U11-Pad1_ Net-_U15-Pad3_ d_nor +M1 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M2 Net-_M2-Pad1_ Net-_M2-Pad2_ Net-_M2-Pad3_ Net-_M2-Pad3_ eSim_MOS_P +U17 Net-_U15-Pad3_ Net-_M2-Pad2_ dac_bridge_1 +M3 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M2-Pad1_ Net-_M2-Pad3_ eSim_MOS_P +U18 Net-_M1-Pad1_ Net-_U11-Pad2_ adc_bridge_1 +U16 Net-_U10-Pad1_ Net-_M1-Pad2_ dac_bridge_1 +U19 Net-_U1-Pad1_ Net-_U19-Pad2_ Net-_U19-Pad3_ Net-_U19-Pad4_ Net-_U19-Pad5_ Net-_M2-Pad3_ Net-_M1-Pad3_ ? Net-_U11-Pad2_ Net-_U19-Pad10_ PORT + +.end diff --git a/library/SubcircuitLibrary/CD4098/CD4098.cir.out b/library/SubcircuitLibrary/CD4098/CD4098.cir.out new file mode 100644 index 000000000..57f317163 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098.cir.out @@ -0,0 +1,89 @@ +* c:\fossee\esim\library\subcircuitlibrary\cd4098\cd4098.cir + +.include PMOS-180nm.lib +.include NMOS-180nm.lib +* u1 net-_u1-pad1_ net-_u1-pad2_ d_inverter +* u5 net-_u1-pad2_ net-_u5-pad2_ d_inverter +* u2 net-_u19-pad2_ net-_u2-pad2_ d_inverter +* u3 net-_u19-pad3_ net-_u11-pad1_ d_inverter +* u8 net-_u5-pad2_ net-_u2-pad2_ net-_u4-pad2_ d_nand +* u4 net-_u19-pad10_ net-_u4-pad2_ net-_u11-pad1_ net-_u12-pad2_ net-_u10-pad1_ cd4098_latch +* u6 net-_u10-pad3_ net-_u6-pad2_ d_inverter +* u9 net-_u10-pad3_ net-_u19-pad4_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_nor +* u7 net-_u6-pad2_ net-_u19-pad5_ d_inverter +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u10-pad2_ d_nor +* u12 net-_u11-pad2_ net-_u12-pad2_ d_inverter +* u13 net-_u13-pad1_ net-_u10-pad1_ net-_u13-pad3_ d_nor +* u14 net-_u11-pad2_ net-_u13-pad1_ d_inverter +* u15 net-_u13-pad3_ net-_u11-pad1_ net-_u15-pad3_ d_nor +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m2 net-_m2-pad1_ net-_m2-pad2_ net-_m2-pad3_ net-_m2-pad3_ CMOSP W=100u L=100u M=1 +* u17 net-_u15-pad3_ net-_m2-pad2_ dac_bridge_1 +m3 net-_m1-pad1_ net-_m1-pad2_ net-_m2-pad1_ net-_m2-pad3_ CMOSP W=100u L=100u M=1 +* u18 net-_m1-pad1_ net-_u11-pad2_ adc_bridge_1 +* u16 net-_u10-pad1_ net-_m1-pad2_ dac_bridge_1 +* u19 net-_u1-pad1_ net-_u19-pad2_ net-_u19-pad3_ net-_u19-pad4_ net-_u19-pad5_ net-_m2-pad3_ net-_m1-pad3_ ? net-_u11-pad2_ net-_u19-pad10_ port +a1 net-_u1-pad1_ net-_u1-pad2_ u1 +a2 net-_u1-pad2_ net-_u5-pad2_ u5 +a3 net-_u19-pad2_ net-_u2-pad2_ u2 +a4 net-_u19-pad3_ net-_u11-pad1_ u3 +a5 [net-_u5-pad2_ net-_u2-pad2_ ] net-_u4-pad2_ u8 +a6 [net-_u19-pad10_ ] [net-_u4-pad2_ ] [net-_u11-pad1_ ] [net-_u12-pad2_ ] [net-_u10-pad1_ ] u4 +a7 net-_u10-pad3_ net-_u6-pad2_ u6 +a8 net-_u10-pad3_ net-_u19-pad4_ u9 +a9 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a10 net-_u6-pad2_ net-_u19-pad5_ u7 +a11 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u10-pad2_ u11 +a12 net-_u11-pad2_ net-_u12-pad2_ u12 +a13 [net-_u13-pad1_ net-_u10-pad1_ ] net-_u13-pad3_ u13 +a14 net-_u11-pad2_ net-_u13-pad1_ u14 +a15 [net-_u13-pad3_ net-_u11-pad1_ ] net-_u15-pad3_ u15 +a16 [net-_u15-pad3_ ] [net-_m2-pad2_ ] u17 +a17 [net-_m1-pad1_ ] [net-_u11-pad2_ ] u18 +a18 [net-_u10-pad1_ ] [net-_m1-pad2_ ] u16 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u1 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u8 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: cd4098_latch, NgSpice Name: cd4098_latch +.model u4 cd4098_latch(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u10 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u11 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u13 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u15 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u17 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u18 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u16 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4098/CD4098.pro b/library/SubcircuitLibrary/CD4098/CD4098.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4098/CD4098.proj b/library/SubcircuitLibrary/CD4098/CD4098.proj new file mode 100644 index 000000000..da1524788 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098.proj @@ -0,0 +1 @@ +schematicFile CD4098.sch diff --git a/library/SubcircuitLibrary/CD4098/CD4098.sch b/library/SubcircuitLibrary/CD4098/CD4098.sch new file mode 100644 index 000000000..ca0e5bf4a --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098.sch @@ -0,0 +1,537 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:CD4098-cache +EELAYER 25 0 +EELAYER END +$Descr A1 33110 23386 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_inverter U1 +U 1 1 685A774C +P 5700 6850 +F 0 "U1" H 5700 6750 60 0000 C CNN +F 1 "d_inverter" H 5700 7000 60 0000 C CNN +F 2 "" H 5750 6800 60 0000 C CNN +F 3 "" H 5750 6800 60 0000 C CNN + 1 5700 6850 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U5 +U 1 1 685A783C +P 6450 6850 +F 0 "U5" H 6450 6750 60 0000 C CNN +F 1 "d_inverter" H 6450 7000 60 0000 C CNN +F 2 "" H 6500 6800 60 0000 C CNN +F 3 "" H 6500 6800 60 0000 C CNN + 1 6450 6850 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U2 +U 1 1 685A785A +P 5700 7250 +F 0 "U2" H 5700 7150 60 0000 C CNN +F 1 "d_inverter" H 5700 7400 60 0000 C CNN +F 2 "" H 5750 7200 60 0000 C CNN +F 3 "" H 5750 7200 60 0000 C CNN + 1 5700 7250 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U3 +U 1 1 685A787D +P 5700 7650 +F 0 "U3" H 5700 7550 60 0000 C CNN +F 1 "d_inverter" H 5700 7800 60 0000 C CNN +F 2 "" H 5750 7600 60 0000 C CNN +F 3 "" H 5750 7600 60 0000 C CNN + 1 5700 7650 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U8 +U 1 1 685A78A1 +P 7500 6950 +F 0 "U8" H 7500 6950 60 0000 C CNN +F 1 "d_nand" H 7550 7050 60 0000 C CNN +F 2 "" H 7500 6950 60 0000 C CNN +F 3 "" H 7500 6950 60 0000 C CNN + 1 7500 6950 + 1 0 0 -1 +$EndComp +$Comp +L cd4098_latch U4 +U 1 1 685A78FA +P 6050 8700 +F 0 "U4" H 8900 10500 60 0000 C CNN +F 1 "cd4098_latch" H 8900 10700 60 0000 C CNN +F 2 "" H 8900 10650 60 0000 C CNN +F 3 "" H 8900 10650 60 0000 C CNN + 1 6050 8700 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U6 +U 1 1 685A7A49 +P 7400 8850 +F 0 "U6" H 7400 8750 60 0000 C CNN +F 1 "d_inverter" H 7400 9000 60 0000 C CNN +F 2 "" H 7450 8800 60 0000 C CNN +F 3 "" H 7450 8800 60 0000 C CNN + 1 7400 8850 + 0 1 1 0 +$EndComp +$Comp +L d_inverter U9 +U 1 1 685A7B83 +P 7800 8850 +F 0 "U9" H 7800 8750 60 0000 C CNN +F 1 "d_inverter" H 7800 9000 60 0000 C CNN +F 2 "" H 7850 8800 60 0000 C CNN +F 3 "" H 7850 8800 60 0000 C CNN + 1 7800 8850 + 0 1 1 0 +$EndComp +$Comp +L d_nor U10 +U 1 1 685A7BCD +P 8550 8600 +F 0 "U10" H 8550 8600 60 0000 C CNN +F 1 "d_nor" H 8600 8700 60 0000 C CNN +F 2 "" H 8550 8600 60 0000 C CNN +F 3 "" H 8550 8600 60 0000 C CNN + 1 8550 8600 + -1 0 0 -1 +$EndComp +$Comp +L d_inverter U7 +U 1 1 685A7C5A +P 7400 9650 +F 0 "U7" H 7400 9550 60 0000 C CNN +F 1 "d_inverter" H 7400 9800 60 0000 C CNN +F 2 "" H 7450 9600 60 0000 C CNN +F 3 "" H 7450 9600 60 0000 C CNN + 1 7400 9650 + 0 1 1 0 +$EndComp +$Comp +L d_nor U11 +U 1 1 685A7CB1 +P 9600 8900 +F 0 "U11" H 9600 8900 60 0000 C CNN +F 1 "d_nor" H 9650 9000 60 0000 C CNN +F 2 "" H 9600 8900 60 0000 C CNN +F 3 "" H 9600 8900 60 0000 C CNN + 1 9600 8900 + -1 0 0 -1 +$EndComp +$Comp +L d_inverter U12 +U 1 1 685A7FB4 +P 9900 9550 +F 0 "U12" H 9900 9450 60 0000 C CNN +F 1 "d_inverter" H 9900 9700 60 0000 C CNN +F 2 "" H 9950 9500 60 0000 C CNN +F 3 "" H 9950 9500 60 0000 C CNN + 1 9900 9550 + -1 0 0 -1 +$EndComp +$Comp +L d_nor U13 +U 1 1 685A85BD +P 10300 7050 +F 0 "U13" H 10300 7050 60 0000 C CNN +F 1 "d_nor" H 10350 7150 60 0000 C CNN +F 2 "" H 10300 7050 60 0000 C CNN +F 3 "" H 10300 7050 60 0000 C CNN + 1 10300 7050 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U14 +U 1 1 685A864D +P 10750 6600 +F 0 "U14" H 10750 6500 60 0000 C CNN +F 1 "d_inverter" H 10750 6750 60 0000 C CNN +F 2 "" H 10800 6550 60 0000 C CNN +F 3 "" H 10800 6550 60 0000 C CNN + 1 10750 6600 + -1 0 0 -1 +$EndComp +$Comp +L d_nor U15 +U 1 1 685A89C6 +P 11250 7300 +F 0 "U15" H 11250 7300 60 0000 C CNN +F 1 "d_nor" H 11300 7400 60 0000 C CNN +F 2 "" H 11250 7300 60 0000 C CNN +F 3 "" H 11250 7300 60 0000 C CNN + 1 11250 7300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M1 +U 1 1 685A8AE5 +P 13200 8450 +F 0 "M1" H 13200 8300 50 0000 R CNN +F 1 "eSim_MOS_N" H 13300 8400 50 0000 R CNN +F 2 "" H 13500 8150 29 0000 C CNN +F 3 "" H 13300 8250 60 0000 C CNN + 1 13200 8450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M2 +U 1 1 685A8B2C +P 13250 7550 +F 0 "M2" H 13200 7600 50 0000 R CNN +F 1 "eSim_MOS_P" H 13300 7700 50 0000 R CNN +F 2 "" H 13500 7650 29 0000 C CNN +F 3 "" H 13300 7550 60 0000 C CNN + 1 13250 7550 + 1 0 0 1 +$EndComp +$Comp +L dac_bridge_1 U17 +U 1 1 685A8BED +P 12450 7300 +F 0 "U17" H 12450 7300 60 0000 C CNN +F 1 "dac_bridge_1" H 12450 7450 60 0000 C CNN +F 2 "" H 12450 7300 60 0000 C CNN +F 3 "" H 12450 7300 60 0000 C CNN + 1 12450 7300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M3 +U 1 1 685A8D82 +P 13250 8100 +F 0 "M3" H 13200 8150 50 0000 R CNN +F 1 "eSim_MOS_P" H 13300 8250 50 0000 R CNN +F 2 "" H 13500 8200 29 0000 C CNN +F 3 "" H 13300 8100 60 0000 C CNN + 1 13250 8100 + 1 0 0 1 +$EndComp +$Comp +L adc_bridge_1 U18 +U 1 1 685A8FBC +P 15150 7900 +F 0 "U18" H 15150 7900 60 0000 C CNN +F 1 "adc_bridge_1" H 15150 8050 60 0000 C CNN +F 2 "" H 15150 7900 60 0000 C CNN +F 3 "" H 15150 7900 60 0000 C CNN + 1 15150 7900 + 1 0 0 -1 +$EndComp +$Comp +L dac_bridge_1 U16 +U 1 1 685A927F +P 11900 8450 +F 0 "U16" H 11900 8450 60 0000 C CNN +F 1 "dac_bridge_1" H 11900 8600 60 0000 C CNN +F 2 "" H 11900 8450 60 0000 C CNN +F 3 "" H 11900 8450 60 0000 C CNN + 1 11900 8450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U19 +U 1 1 685B7973 +P 4950 6850 +F 0 "U19" H 5000 6950 30 0000 C CNN +F 1 "PORT" H 4950 6850 30 0000 C CNN +F 2 "" H 4950 6850 60 0000 C CNN +F 3 "" H 4950 6850 60 0000 C CNN + 1 4950 6850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U19 +U 2 1 685B7A0E +P 4950 7250 +F 0 "U19" H 5000 7350 30 0000 C CNN +F 1 "PORT" H 4950 7250 30 0000 C CNN +F 2 "" H 4950 7250 60 0000 C CNN +F 3 "" H 4950 7250 60 0000 C CNN + 2 4950 7250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U19 +U 4 1 685B7A55 +P 7800 9550 +F 0 "U19" H 7850 9650 30 0000 C CNN +F 1 "PORT" H 7800 9550 30 0000 C CNN +F 2 "" H 7800 9550 60 0000 C CNN +F 3 "" H 7800 9550 60 0000 C CNN + 4 7800 9550 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U19 +U 3 1 685B7A9A +P 4900 7650 +F 0 "U19" H 4950 7750 30 0000 C CNN +F 1 "PORT" H 4900 7650 30 0000 C CNN +F 2 "" H 4900 7650 60 0000 C CNN +F 3 "" H 4900 7650 60 0000 C CNN + 3 4900 7650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U19 +U 5 1 685B7AE1 +P 7150 10100 +F 0 "U19" H 7200 10200 30 0000 C CNN +F 1 "PORT" H 7150 10100 30 0000 C CNN +F 2 "" H 7150 10100 60 0000 C CNN +F 3 "" H 7150 10100 60 0000 C CNN + 5 7150 10100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U19 +U 6 1 685B7B2E +P 14350 5200 +F 0 "U19" H 14400 5300 30 0000 C CNN +F 1 "PORT" H 14350 5200 30 0000 C CNN +F 2 "" H 14350 5200 60 0000 C CNN +F 3 "" H 14350 5200 60 0000 C CNN + 6 14350 5200 + -1 0 0 -1 +$EndComp +$Comp +L PORT U19 +U 7 1 685B7B7D +P 13200 9050 +F 0 "U19" H 13250 9150 30 0000 C CNN +F 1 "PORT" H 13200 9050 30 0000 C CNN +F 2 "" H 13200 9050 60 0000 C CNN +F 3 "" H 13200 9050 60 0000 C CNN + 7 13200 9050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U19 +U 8 1 685B7BCA +P 7050 5100 +F 0 "U19" H 7100 5200 30 0000 C CNN +F 1 "PORT" H 7050 5100 30 0000 C CNN +F 2 "" H 7050 5100 60 0000 C CNN +F 3 "" H 7050 5100 60 0000 C CNN + 8 7050 5100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U19 +U 9 1 685B7C1D +P 14650 8600 +F 0 "U19" H 14700 8700 30 0000 C CNN +F 1 "PORT" H 14650 8600 30 0000 C CNN +F 2 "" H 14650 8600 60 0000 C CNN +F 3 "" H 14650 8600 60 0000 C CNN + 9 14650 8600 + 1 0 0 -1 +$EndComp +NoConn ~ 7300 5100 +$Comp +L PORT U19 +U 10 1 685BE05C +P 7950 6550 +F 0 "U19" H 8000 6650 30 0000 C CNN +F 1 "PORT" H 7950 6550 30 0000 C CNN +F 2 "" H 7950 6550 60 0000 C CNN +F 3 "" H 7950 6550 60 0000 C CNN + 10 7950 6550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6000 6850 6150 6850 +Wire Wire Line + 6750 6850 7050 6850 +Wire Wire Line + 6000 7250 6900 7250 +Wire Wire Line + 6900 7250 6900 6950 +Wire Wire Line + 6900 6950 7050 6950 +Wire Wire Line + 7950 6900 8200 6900 +Wire Wire Line + 6000 7650 10800 7650 +Wire Wire Line + 8000 7650 8000 7000 +Wire Wire Line + 8000 7000 8200 7000 +Wire Wire Line + 7400 8550 8100 8550 +Connection ~ 7800 8550 +Wire Wire Line + 7400 9150 7400 9350 +Wire Wire Line + 9000 8600 9000 8850 +Wire Wire Line + 9000 8850 9150 8850 +Wire Wire Line + 9600 9550 9100 9550 +Wire Wire Line + 9100 9550 9100 7350 +Wire Wire Line + 9100 7350 8200 7350 +Wire Wire Line + 8200 7350 8200 7100 +Wire Wire Line + 9600 6800 9750 6800 +Wire Wire Line + 9750 6800 9750 7050 +Wire Wire Line + 9750 7050 9850 7050 +Wire Wire Line + 9850 6950 9850 6600 +Wire Wire Line + 9850 6600 10450 6600 +Wire Wire Line + 11050 6600 14250 6600 +Wire Wire Line + 14250 6600 14250 9550 +Wire Wire Line + 14250 9550 10200 9550 +Wire Wire Line + 10750 7000 10750 7200 +Wire Wire Line + 10750 7200 10800 7200 +Wire Wire Line + 10800 7300 10800 8800 +Connection ~ 8000 7650 +Wire Wire Line + 10800 8800 10050 8800 +Connection ~ 10800 7650 +Wire Wire Line + 10050 8900 14250 8900 +Connection ~ 14250 8900 +Wire Wire Line + 11850 7250 11700 7250 +Wire Wire Line + 13000 7250 13000 7550 +Wire Wire Line + 13000 7550 13100 7550 +Wire Wire Line + 13400 7350 13650 7350 +Wire Wire Line + 13500 5200 13500 7400 +Wire Wire Line + 13400 8850 13500 8850 +Wire Wire Line + 13500 8850 13500 8800 +Wire Wire Line + 13400 8300 13400 8450 +Wire Wire Line + 13400 7750 13400 7900 +Wire Wire Line + 13650 7350 13650 7950 +Wire Wire Line + 13650 7950 13500 7950 +Connection ~ 13500 7350 +Wire Wire Line + 13400 8350 14100 8350 +Wire Wire Line + 14100 8350 14100 7850 +Wire Wire Line + 14100 7850 14550 7850 +Connection ~ 13400 8350 +Wire Wire Line + 15700 8400 15700 7850 +Wire Wire Line + 14250 8400 15700 8400 +Connection ~ 14250 8400 +Wire Wire Line + 13100 8100 12750 8100 +Wire Wire Line + 12750 8100 12750 8650 +Wire Wire Line + 12750 8650 13100 8650 +Wire Wire Line + 12450 8400 12750 8400 +Connection ~ 12750 8400 +Wire Wire Line + 9650 6800 9650 8500 +Wire Wire Line + 9650 8500 9000 8500 +Connection ~ 9650 6800 +Wire Wire Line + 9700 6800 9700 8400 +Wire Wire Line + 9700 8400 11300 8400 +Connection ~ 9700 6800 +Wire Wire Line + 5200 6850 5400 6850 +Wire Wire Line + 5200 7250 5400 7250 +Wire Wire Line + 5150 7650 5400 7650 +Wire Wire Line + 7800 9150 7800 9300 +Wire Wire Line + 7400 9950 7400 10100 +Wire Wire Line + 13450 9050 13450 8850 +Connection ~ 13450 8850 +Wire Wire Line + 14900 8600 14900 8400 +Connection ~ 14900 8400 +Wire Wire Line + 13500 5200 14100 5200 +Wire Wire Line + 8200 6550 8200 6800 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4098/CD4098.sub b/library/SubcircuitLibrary/CD4098/CD4098.sub new file mode 100644 index 000000000..2774be7b8 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098.sub @@ -0,0 +1,83 @@ +* Subcircuit CD4098 +.subckt CD4098 net-_u1-pad1_ net-_u19-pad2_ net-_u19-pad3_ net-_u19-pad4_ net-_u19-pad5_ net-_m2-pad3_ net-_m1-pad3_ ? net-_u11-pad2_ net-_u19-pad10_ +* c:\fossee\esim\library\subcircuitlibrary\cd4098\cd4098.cir +.include PMOS-180nm.lib +.include NMOS-180nm.lib +* u1 net-_u1-pad1_ net-_u1-pad2_ d_inverter +* u5 net-_u1-pad2_ net-_u5-pad2_ d_inverter +* u2 net-_u19-pad2_ net-_u2-pad2_ d_inverter +* u3 net-_u19-pad3_ net-_u11-pad1_ d_inverter +* u8 net-_u5-pad2_ net-_u2-pad2_ net-_u4-pad2_ d_nand +* u4 net-_u19-pad10_ net-_u4-pad2_ net-_u11-pad1_ net-_u12-pad2_ net-_u10-pad1_ cd4098_latch +* u6 net-_u10-pad3_ net-_u6-pad2_ d_inverter +* u9 net-_u10-pad3_ net-_u19-pad4_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_nor +* u7 net-_u6-pad2_ net-_u19-pad5_ d_inverter +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u10-pad2_ d_nor +* u12 net-_u11-pad2_ net-_u12-pad2_ d_inverter +* u13 net-_u13-pad1_ net-_u10-pad1_ net-_u13-pad3_ d_nor +* u14 net-_u11-pad2_ net-_u13-pad1_ d_inverter +* u15 net-_u13-pad3_ net-_u11-pad1_ net-_u15-pad3_ d_nor +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m2 net-_m2-pad1_ net-_m2-pad2_ net-_m2-pad3_ net-_m2-pad3_ CMOSP W=100u L=100u M=1 +* u17 net-_u15-pad3_ net-_m2-pad2_ dac_bridge_1 +m3 net-_m1-pad1_ net-_m1-pad2_ net-_m2-pad1_ net-_m2-pad3_ CMOSP W=100u L=100u M=1 +* u18 net-_m1-pad1_ net-_u11-pad2_ adc_bridge_1 +* u16 net-_u10-pad1_ net-_m1-pad2_ dac_bridge_1 +a1 net-_u1-pad1_ net-_u1-pad2_ u1 +a2 net-_u1-pad2_ net-_u5-pad2_ u5 +a3 net-_u19-pad2_ net-_u2-pad2_ u2 +a4 net-_u19-pad3_ net-_u11-pad1_ u3 +a5 [net-_u5-pad2_ net-_u2-pad2_ ] net-_u4-pad2_ u8 +a6 [net-_u19-pad10_ ] [net-_u4-pad2_ ] [net-_u11-pad1_ ] [net-_u12-pad2_ ] [net-_u10-pad1_ ] u4 +a7 net-_u10-pad3_ net-_u6-pad2_ u6 +a8 net-_u10-pad3_ net-_u19-pad4_ u9 +a9 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a10 net-_u6-pad2_ net-_u19-pad5_ u7 +a11 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u10-pad2_ u11 +a12 net-_u11-pad2_ net-_u12-pad2_ u12 +a13 [net-_u13-pad1_ net-_u10-pad1_ ] net-_u13-pad3_ u13 +a14 net-_u11-pad2_ net-_u13-pad1_ u14 +a15 [net-_u13-pad3_ net-_u11-pad1_ ] net-_u15-pad3_ u15 +a16 [net-_u15-pad3_ ] [net-_m2-pad2_ ] u17 +a17 [net-_m1-pad1_ ] [net-_u11-pad2_ ] u18 +a18 [net-_u10-pad1_ ] [net-_m1-pad2_ ] u16 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u1 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u8 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: cd4098_latch, NgSpice Name: cd4098_latch +.model u4 cd4098_latch(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u10 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u11 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u13 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u15 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u17 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u18 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u16 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Control Statements + +.ends CD4098 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4098/CD4098_Previous_Values.xml b/library/SubcircuitLibrary/CD4098/CD4098_Previous_Values.xml new file mode 100644 index 000000000..d5270ce15 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_inverterd_inverterd_inverterd_nandcd4098_latchd_inverterd_inverterd_nord_inverterd_nord_inverterd_nord_inverterd_nordac_bridgeadc_bridgedac_bridgedac_bridgeC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4098/CD4098_latch.v b/library/SubcircuitLibrary/CD4098/CD4098_latch.v new file mode 100644 index 000000000..85e13b4ec --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098_latch.v @@ -0,0 +1,18 @@ + module CD4098_latch( +input D, +input C, +input R1, +input R2, +output reg Q); + + + +always@(posedge R1 or posedge R2 or posedge C) +begin +if(R1 || R2) +Q<=0; +else +Q<=D; +end +endmodule + diff --git a/library/SubcircuitLibrary/CD4098/CD4098_test-cache.lib b/library/SubcircuitLibrary/CD4098/CD4098_test-cache.lib new file mode 100644 index 000000000..e9e616527 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098_test-cache.lib @@ -0,0 +1,178 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# DC +# +DEF DC v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "DC" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 w +X - 2 0 -450 300 U 50 50 1 1 w +ENDDRAW +ENDDEF +# +# adc_bridge_1 +# +DEF adc_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "adc_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# adc_bridge_2 +# +DEF adc_bridge_2 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "adc_bridge_2" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -100 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X IN2 2 -600 -50 200 R 50 50 1 1 I +X OUT1 3 550 50 200 L 50 50 1 1 O +X OUT2 4 550 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# dac_bridge_2 +# +DEF dac_bridge_2 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "dac_bridge_2" 50 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -250 200 350 -100 0 1 0 N +X IN1 1 -450 50 200 R 50 50 1 1 I +X IN2 2 -450 -50 200 R 50 50 1 1 I +X OUT1 3 550 50 200 L 50 50 1 1 O +X OUT4 4 550 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# eSim_CP1 +# +DEF eSim_CP1 C 0 10 N N 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_CP1" 25 -100 50 H V L CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +ALIAS capacitor_polarised +$FPLIST + CP_* +$ENDFPLIST +DRAW +A 0 -150 128 1287 513 0 1 20 N -80 -50 80 -50 +P 2 0 1 20 -80 30 80 30 N +P 2 0 1 0 -70 90 -30 90 N +P 2 0 1 0 -50 70 -50 110 N +X ~ 1 0 150 110 D 50 50 1 1 P +X ~ 2 0 -150 130 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_GND +# +DEF eSim_GND #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -250 50 H I C CNN +F1 "eSim_GND" 0 -150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N +X GND 1 0 0 0 D 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +# mono +# +DEF mono x 0 40 Y Y 1 F N +F0 "x" 0 -650 60 H V C CNN +F1 "mono" 0 650 60 H V C CNN +F2 "" 0 650 60 H I C CNN +F3 "" 0 650 60 H I C CNN +DRAW +S -500 400 550 -550 0 1 0 N +X TR_plus 1 -700 300 200 R 50 50 1 1 I +X TR_minus 2 -700 100 200 R 50 50 1 1 I +X RST 3 -700 -100 200 R 50 50 1 1 I +X Q 4 750 300 200 L 50 50 1 1 O +X Q_bar 5 750 100 200 L 50 50 1 1 O +X VDD 6 -700 -300 200 R 50 50 1 1 I +X VSS 7 750 -150 200 L 50 50 1 1 I +X Cx 8 750 -350 200 L 50 50 1 1 I +X RxCx 9 -700 -450 200 R 50 50 1 1 I +X DVCC 10 750 -500 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# plot_v1 +# +DEF plot_v1 U 0 40 Y Y 1 F N +F0 "U" 0 500 60 H V C CNN +F1 "plot_v1" 200 350 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 0 500 100 0 1 0 N +X ~ ~ 0 200 200 U 50 50 1 1 I +ENDDRAW +ENDDEF +# +# pulse +# +DEF pulse v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "pulse" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -25 -450 501 928 871 0 1 0 N -50 50 0 50 +A 25 400 451 -931 -868 0 1 0 N 0 -50 50 -50 +A 75 600 551 -926 -873 0 1 0 N 50 50 100 50 +A 350 0 403 -1728 1728 0 1 0 N -50 -50 -50 50 +A 450 0 453 1736 -1736 0 1 0 N 0 50 0 -50 +A 600 0 552 -1748 1748 0 1 0 N 50 -50 50 50 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 P +X - 2 0 -450 300 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/CD4098/CD4098_test.cir b/library/SubcircuitLibrary/CD4098/CD4098_test.cir new file mode 100644 index 000000000..5e71b4e94 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098_test.cir @@ -0,0 +1,26 @@ +* C:\Users\pavithra\eSim-Workspace\CD4098_test\CD4098_test.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/26/25 15:32:18 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 trig rst Net-_U1-Pad3_ Net-_U1-Pad4_ adc_bridge_2 +v1 trig GND pulse +v2 rst GND pulse +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 1u +R1 Net-_R1-Pad1_ Net-_C1-Pad2_ 5k +U4 Net-_U4-Pad1_ Net-_U4-Pad2_ Q Q_bar dac_bridge_2 +U5 Q plot_v1 +U6 Q_bar plot_v1 +U2 rst plot_v1 +U3 trig plot_v1 +x1 Net-_U1-Pad3_ Net-_U7-Pad2_ Net-_U1-Pad4_ Net-_U4-Pad1_ Net-_U4-Pad2_ Net-_R1-Pad1_ GND Net-_C1-Pad1_ Net-_U8-Pad2_ Net-_U7-Pad2_ mono +U7 Net-_U7-Pad1_ Net-_U7-Pad2_ adc_bridge_1 +v3 Net-_U7-Pad1_ GND DC +U8 Net-_C1-Pad2_ Net-_U8-Pad2_ adc_bridge_1 +R2 Net-_C1-Pad2_ Net-_C1-Pad1_ 1k +v4 Net-_R1-Pad1_ GND DC + +.end diff --git a/library/SubcircuitLibrary/CD4098/CD4098_test.cir.out b/library/SubcircuitLibrary/CD4098/CD4098_test.cir.out new file mode 100644 index 000000000..707d438a0 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098_test.cir.out @@ -0,0 +1,43 @@ + * c:\users\pavithra\esim-workspace\cd4098_test\cd4098_test.cir + +.include CD4098.sub +* u1 trig rst net-_u1-pad3_ net-_u1-pad4_ adc_bridge_2 +v1 trig gnd pulse(0 5 2 0.1n 0.1n 0.125 3) +v2 rst gnd pulse(5 0 1 0.1n 0.1n 0.3 3) +c1 net-_c1-pad1_ net-_c1-pad2_ 1u +r1 net-_r1-pad1_ net-_c1-pad2_ 5k +* u4 net-_u4-pad1_ net-_u4-pad2_ q q_bar dac_bridge_2 +* u5 q plot_v1 +* u6 q_bar plot_v1 +* u2 rst plot_v1 +* u3 trig plot_v1 +x1 net-_u1-pad3_ net-_u7-pad2_ net-_u1-pad4_ net-_u4-pad1_ net-_u4-pad2_ net-_r1-pad1_ gnd net-_c1-pad1_ net-_u8-pad2_ net-_u7-pad2_ CD4098 +* u7 net-_u7-pad1_ net-_u7-pad2_ adc_bridge_1 +v3 net-_u7-pad1_ gnd dc 5 +* u8 net-_c1-pad2_ net-_u8-pad2_ adc_bridge_1 +r2 net-_c1-pad2_ net-_c1-pad1_ 1k +v4 net-_r1-pad1_ gnd dc 0 +a1 [trig rst ] [net-_u1-pad3_ net-_u1-pad4_ ] u1 +a2 [net-_u4-pad1_ net-_u4-pad2_ ] [q q_bar ] u4 +a3 [net-_u7-pad1_ ] [net-_u7-pad2_ ] u7 +a4 [net-_c1-pad2_ ] [net-_u8-pad2_ ] u8 +* Schematic Name: adc_bridge_2, NgSpice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_2, NgSpice Name: dac_bridge +.model u4 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u7 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 1e-00 3e-00 0e-00 +.ic V(q)=0 +.ic V(q_bar)=5 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(q)+6 v(q_bar)+12v(rst)+18 v(trig) +.endc +.end diff --git a/library/SubcircuitLibrary/CD4098/CD4098_test.pro b/library/SubcircuitLibrary/CD4098/CD4098_test.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098_test.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/CD4098/CD4098_test.proj b/library/SubcircuitLibrary/CD4098/CD4098_test.proj new file mode 100644 index 000000000..7a80cae0d --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098_test.proj @@ -0,0 +1 @@ +schematicFile CD4098_test.sch diff --git a/library/SubcircuitLibrary/CD4098/CD4098_test.sch b/library/SubcircuitLibrary/CD4098/CD4098_test.sch new file mode 100644 index 000000000..d76034731 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098_test.sch @@ -0,0 +1,405 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:CD4098_test-cache +EELAYER 25 0 +EELAYER END +$Descr A1 33110 23386 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_GND #PWR01 +U 1 1 685A92A1 +P 15750 4950 +F 0 "#PWR01" H 15750 4700 50 0001 C CNN +F 1 "eSim_GND" H 15750 4800 50 0000 C CNN +F 2 "" H 15750 4950 50 0001 C CNN +F 3 "" H 15750 4950 50 0001 C CNN + 1 15750 4950 + 1 0 0 -1 +$EndComp +$Comp +L adc_bridge_2 U1 +U 1 1 685A92F3 +P 13450 4850 +F 0 "U1" H 13450 4850 60 0000 C CNN +F 1 "adc_bridge_2" H 13450 5000 60 0000 C CNN +F 2 "" H 13450 4850 60 0000 C CNN +F 3 "" H 13450 4850 60 0000 C CNN + 1 13450 4850 + 1 0 0 -1 +$EndComp +$Comp +L pulse v1 +U 1 1 685A932B +P 12650 5250 +F 0 "v1" H 12450 5350 60 0000 C CNN +F 1 "pulse" H 12450 5200 60 0000 C CNN +F 2 "R1" H 12350 5250 60 0000 C CNN +F 3 "" H 12650 5250 60 0000 C CNN + 1 12650 5250 + 1 0 0 -1 +$EndComp +$Comp +L pulse v2 +U 1 1 685A936D +P 12850 5500 +F 0 "v2" H 12650 5600 60 0000 C CNN +F 1 "pulse" H 12650 5450 60 0000 C CNN +F 2 "R1" H 12550 5500 60 0000 C CNN +F 3 "" H 12850 5500 60 0000 C CNN + 1 12850 5500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR02 +U 1 1 685A93B8 +P 12850 6050 +F 0 "#PWR02" H 12850 5800 50 0001 C CNN +F 1 "eSim_GND" H 12850 5900 50 0000 C CNN +F 2 "" H 12850 6050 50 0001 C CNN +F 3 "" H 12850 6050 50 0001 C CNN + 1 12850 6050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR03 +U 1 1 685A93D2 +P 12650 5800 +F 0 "#PWR03" H 12650 5550 50 0001 C CNN +F 1 "eSim_GND" H 12650 5650 50 0000 C CNN +F 2 "" H 12650 5800 50 0001 C CNN +F 3 "" H 12650 5800 50 0001 C CNN + 1 12650 5800 + 1 0 0 -1 +$EndComp +$Comp +L capacitor_polarised C1 +U 1 1 685A958F +P 15300 5800 +F 0 "C1" H 15325 5900 50 0000 L CNN +F 1 "1u" H 15325 5700 50 0000 L CNN +F 2 "" H 15300 5800 50 0001 C CNN +F 3 "" H 15300 5800 50 0001 C CNN + 1 15300 5800 + 0 1 1 0 +$EndComp +$Comp +L resistor R1 +U 1 1 685A9605 +P 13650 5850 +F 0 "R1" H 13700 5980 50 0000 C CNN +F 1 "5k" H 13700 5800 50 0000 C CNN +F 2 "" H 13700 5830 30 0000 C CNN +F 3 "" V 13700 5900 30 0000 C CNN + 1 13650 5850 + 1 0 0 -1 +$EndComp +$Comp +L dac_bridge_2 U4 +U 1 1 685A97A9 +P 16250 4550 +F 0 "U4" H 16250 4550 60 0000 C CNN +F 1 "dac_bridge_2" H 16300 4700 60 0000 C CNN +F 2 "" H 16250 4550 60 0000 C CNN +F 3 "" H 16250 4550 60 0000 C CNN + 1 16250 4550 + 1 0 0 -1 +$EndComp +$Comp +L plot_v1 U5 +U 1 1 685A9823 +P 16950 4600 +F 0 "U5" H 16950 5100 60 0000 C CNN +F 1 "plot_v1" H 17150 4950 60 0000 C CNN +F 2 "" H 16950 4600 60 0000 C CNN +F 3 "" H 16950 4600 60 0000 C CNN + 1 16950 4600 + 1 0 0 -1 +$EndComp +$Comp +L plot_v1 U6 +U 1 1 685A9863 +P 17250 4700 +F 0 "U6" H 17250 5200 60 0000 C CNN +F 1 "plot_v1" H 17450 5050 60 0000 C CNN +F 2 "" H 17250 4700 60 0000 C CNN +F 3 "" H 17250 4700 60 0000 C CNN + 1 17250 4700 + 1 0 0 -1 +$EndComp +Text GLabel 16850 4350 0 60 Input ~ 0 +Q +Text GLabel 17150 4750 0 60 Input ~ 0 +Q_bar +$Comp +L plot_v1 U2 +U 1 1 685A9C0F +P 12100 5150 +F 0 "U2" H 12100 5650 60 0000 C CNN +F 1 "plot_v1" H 12300 5500 60 0000 C CNN +F 2 "" H 12100 5150 60 0000 C CNN +F 3 "" H 12100 5150 60 0000 C CNN + 1 12100 5150 + 1 0 0 -1 +$EndComp +Text GLabel 12750 4750 0 60 Input ~ 0 +trig +$Comp +L plot_v1 U3 +U 1 1 685A9E86 +P 12800 4900 +F 0 "U3" H 12800 5400 60 0000 C CNN +F 1 "plot_v1" H 13000 5250 60 0000 C CNN +F 2 "" H 12800 4900 60 0000 C CNN +F 3 "" H 12800 4900 60 0000 C CNN + 1 12800 4900 + 1 0 0 -1 +$EndComp +Text GLabel 12250 5100 0 60 Input ~ 0 +rst +$Comp +L mono x1 +U 1 1 685BC6FC +P 14900 4800 +F 0 "x1" H 14900 4150 60 0000 C CNN +F 1 "mono" H 14900 5450 60 0000 C CNN +F 2 "" H 14900 5450 60 0001 C CNN +F 3 "" H 14900 5450 60 0001 C CNN + 1 14900 4800 + 1 0 0 -1 +$EndComp +$Comp +L adc_bridge_1 U7 +U 1 1 685BC7A2 +P 17000 5350 +F 0 "U7" H 17000 5350 60 0000 C CNN +F 1 "adc_bridge_1" H 17000 5500 60 0000 C CNN +F 2 "" H 17000 5350 60 0000 C CNN +F 3 "" H 17000 5350 60 0000 C CNN + 1 17000 5350 + -1 0 0 -1 +$EndComp +$Comp +L DC v3 +U 1 1 685BC92B +P 17800 5750 +F 0 "v3" H 17600 5850 60 0000 C CNN +F 1 "DC" H 17600 5700 60 0000 C CNN +F 2 "R1" H 17500 5750 60 0000 C CNN +F 3 "" H 17800 5750 60 0000 C CNN + 1 17800 5750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR04 +U 1 1 685BC9BA +P 17800 6300 +F 0 "#PWR04" H 17800 6050 50 0001 C CNN +F 1 "eSim_GND" H 17800 6150 50 0000 C CNN +F 2 "" H 17800 6300 50 0001 C CNN +F 3 "" H 17800 6300 50 0001 C CNN + 1 17800 6300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 15650 4950 15750 4950 +Wire Wire Line + 14000 4900 14200 4900 +Wire Wire Line + 14000 4800 14000 4500 +Wire Wire Line + 14000 4500 14200 4500 +Wire Wire Line + 12650 4800 12850 4800 +Wire Wire Line + 12850 4900 12850 5050 +Wire Wire Line + 12650 5700 12650 5800 +Wire Wire Line + 12850 5950 12850 6050 +Wire Wire Line + 13850 5800 15150 5800 +Wire Wire Line + 15650 4500 15800 4500 +Wire Wire Line + 15650 4700 15650 4600 +Wire Wire Line + 15650 4600 15800 4600 +Wire Wire Line + 16800 4500 16950 4500 +Wire Wire Line + 16950 4500 16950 4400 +Wire Wire Line + 16800 4600 17250 4600 +Wire Wire Line + 17250 4600 17250 4500 +Wire Wire Line + 16850 4350 16850 4500 +Connection ~ 16850 4500 +Wire Wire Line + 17150 4750 17150 4600 +Connection ~ 17150 4600 +Wire Wire Line + 14150 5050 14150 5100 +Wire Wire Line + 13550 5100 14200 5100 +Wire Wire Line + 13550 5800 13550 5100 +Connection ~ 14150 5100 +Wire Wire Line + 15650 5150 16400 5150 +Wire Wire Line + 16400 5150 16400 5800 +Wire Wire Line + 16400 5800 15450 5800 +Wire Wire Line + 15650 5300 16450 5300 +Wire Wire Line + 17600 5300 17800 5300 +Wire Wire Line + 17800 6200 17800 6300 +Wire Wire Line + 14200 4700 14200 4800 +Wire Wire Line + 14200 4800 16100 4800 +Wire Wire Line + 16100 4800 16100 5300 +Connection ~ 16100 5300 +$Comp +L adc_bridge_1 U8 +U 1 1 685BD0C1 +P 14250 6450 +F 0 "U8" H 14250 6450 60 0000 C CNN +F 1 "adc_bridge_1" H 14250 6600 60 0000 C CNN +F 2 "" H 14250 6450 60 0000 C CNN +F 3 "" H 14250 6450 60 0000 C CNN + 1 14250 6450 + -1 0 0 -1 +$EndComp +Wire Wire Line + 14850 6400 14850 6050 +Wire Wire Line + 14850 6050 14350 6050 +Wire Wire Line + 14350 6050 14350 5800 +Connection ~ 14350 5800 +Wire Wire Line + 13700 6400 13700 6100 +Wire Wire Line + 13700 6100 14200 6100 +Wire Wire Line + 14200 6100 14200 5250 +$Comp +L resistor R2 +U 1 1 685BDEEA +P 15250 6100 +F 0 "R2" H 15300 6230 50 0000 C CNN +F 1 "1k" H 15300 6050 50 0000 C CNN +F 2 "" H 15300 6080 30 0000 C CNN +F 3 "" V 15300 6150 30 0000 C CNN + 1 15250 6100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 15150 6050 15050 6050 +Wire Wire Line + 15050 6050 15050 5800 +Connection ~ 15050 5800 +Wire Wire Line + 15450 6050 15700 6050 +Wire Wire Line + 15700 6050 15700 5800 +Connection ~ 15700 5800 +$Comp +L DC v4 +U 1 1 685D03C8 +P 13550 4050 +F 0 "v4" H 13350 4150 60 0000 C CNN +F 1 "DC" H 13350 4000 60 0000 C CNN +F 2 "R1" H 13250 4050 60 0000 C CNN +F 3 "" H 13550 4050 60 0000 C CNN + 1 13550 4050 + 1 0 0 1 +$EndComp +Wire Wire Line + 13550 4500 13900 4500 +Wire Wire Line + 13900 4500 13900 5050 +Wire Wire Line + 13900 5050 14150 5050 +$Comp +L eSim_GND #PWR05 +U 1 1 685D0868 +P 13700 3600 +F 0 "#PWR05" H 13700 3350 50 0001 C CNN +F 1 "eSim_GND" H 13700 3450 50 0000 C CNN +F 2 "" H 13700 3600 50 0001 C CNN +F 3 "" H 13700 3600 50 0001 C CNN + 1 13700 3600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 13550 3600 13700 3600 +Wire Wire Line + 12800 4700 12800 4800 +Connection ~ 12800 4800 +Wire Wire Line + 12750 4750 12800 4750 +Connection ~ 12800 4750 +Wire Wire Line + 12100 4950 12850 4950 +Connection ~ 12850 4950 +Wire Wire Line + 12250 5100 12250 4950 +Wire Wire Line + 12250 4950 12300 4950 +Connection ~ 12300 4950 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD4098/CD4098_test_Previous_Values.xml b/library/SubcircuitLibrary/CD4098/CD4098_test_Previous_Values.xml new file mode 100644 index 000000000..ce4cec994 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/CD4098_test_Previous_Values.xml @@ -0,0 +1 @@ +dc5pulse0520.1n0.1n0.1253pulse0510.1n0.1n0.33dc0adc_bridgedac_bridgeadc_bridgeadc_bridgeC:\FOSSEE\eSim\library\SubcircuitLibrary\CD4098truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes013secsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4098/NMOS-0.5um.lib b/library/SubcircuitLibrary/CD4098/NMOS-0.5um.lib new file mode 100644 index 000000000..2e6f4635c --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/NMOS-0.5um.lib @@ -0,0 +1,6 @@ +.model mos_n NMOS( TPG=1 TOX=9.5n CJ=550u ETA=0.02125 VMAX=1.8E05 ++ GAMMA=0.62 CGSO=0.3n LD=50n MJSW=0.35 PB=1.1 ++ CGBO=0.45n XJ=0.2U CGDO=0.3n KAPPA=0.1 LEVEL=3 ++ VTO=0.6 NFS=7.20E11 THETA=0.23 CJSW=0.3n PHI=0.7 ++ RSH=2.0 MJ=0.6 UO=420 KP=156u DELTA=0.88 ++ NSUB=1.40E17 ) \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4098/NMOS-180nm.lib b/library/SubcircuitLibrary/CD4098/NMOS-180nm.lib new file mode 100644 index 000000000..51e9b1196 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/NMOS-180nm.lib @@ -0,0 +1,13 @@ +.model CMOSN NMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=2.3549E17 VTH0=0.3823463 K1=0.5810697 ++ K2=4.774618E-3 K3=0.0431669 K3B=1.1498346 W0=1E-7 NLX=1.910552E-7 DVT0W=0 DVT1W=0 DVT2W=0 ++ DVT0=1.2894824 DVT1=0.3622063 DVT2=0.0713729 U0=280.633249 UA=-1.208537E-9 UB=2.158625E-18 ++ UC=5.342807E-11 VSAT=9.366802E4 A0=1.7593146 AGS=0.3939741 B0=-6.413949E-9 B1=-1E-7 KETA=-5.180424E-4 ++ A1=0 A2=1 RDSW=105.5517558 PRWG=0.5 PRWB=-0.1998871 WR=1 WINT=7.904732E-10 LINT=1.571424E-8 XL=0 ++ XW=-1E-8 DWG=1.297221E-9 DWB=1.479041E-9 VOFF=-0.0955434 NFACTOR=2.4358891 CIT=0 CDSC=2.4E-4 CDSCD=0 ++ CDSCB=0 ETA0=3.104851E-3 ETAB=-2.512384E-5 DSUB=0.0167075 PCLM=0.8073191 PDIBLC1=0.1666161 PDIBLC2=3.112892E-3 ++ PDIBLCB=-0.1 DROUT=0.7875618 PSCBE1=8E10 PSCBE2=9.213635E-10 PVAG=3.85243E-3 DELTA=0.01 RSH=6.7 MOBMOD=1 ++ PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 ++ WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 CGDO=7.08E-10 CGSO=7.08E-10 CGBO=1E-12 ++ CJ=9.68858E-4 PB=0.8 MJ=0.3864502 CJSW=2.512138E-10 PBSW=0.809286 MJSW=0.1060414 CJSWG=3.3E-10 PBSWG=0.809286 ++ MJSWG=0.1060414 CF=0 PVTH0=-1.192722E-3 PRDSW=-5 PK2=6.450505E-5 WKETA=-4.27294E-4 LKETA=-0.0104078 ++ PU0=6.3268729 PUA=2.226552E-11 PUB=0 PVSAT=969.1480157 PETA0=1E-4 PKETA=-1.049509E-3) diff --git a/library/SubcircuitLibrary/CD4098/NMOS-5um.lib b/library/SubcircuitLibrary/CD4098/NMOS-5um.lib new file mode 100644 index 000000000..a237e1fe3 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/NMOS-5um.lib @@ -0,0 +1,5 @@ +* 5um technology + +.model mos_n NMOS( Cgso=0.4n Tox=85n Vto=1 phi=0.7 ++ Level=1 ++ Mj=.5 UO=750 Cgdo=0.4n Gamma=1.4 LAMBDA=0.01 LD=0.7u JS=1u CJ=0.4m CJSW=0.8n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/CD4098/PMOS-0.5um.lib b/library/SubcircuitLibrary/CD4098/PMOS-0.5um.lib new file mode 100644 index 000000000..848e8b051 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/PMOS-0.5um.lib @@ -0,0 +1,6 @@ +.model mos_p PMOS( TPG=-1 TOX=9.5n CJ=950u ETA=0.025 VMAX=0.3u ++ GAMMA=0.52 CGSO=0.35n LD=70n MJSW=0.25 PB=1 ++ CGBO=0.45n XJ=0.2U CGDO=0.35n KAPPA=8.0 LEVEL=3 ++ VTO=-0.6 NFS=6.50E11 THETA=0.2 CJSW=0.2n PHI=0.7 ++ RSH=2.5 MJ=0.5 UO=130 KP=48u DELTA=0.25 ++ NSUB=1.0E17 ) \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4098/PMOS-180nm.lib b/library/SubcircuitLibrary/CD4098/PMOS-180nm.lib new file mode 100644 index 000000000..032b5b95e --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/PMOS-180nm.lib @@ -0,0 +1,11 @@ +.model CMOSP PMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=4.1589E17 VTH0=-0.3938813 K1=0.5479015 ++ K2=0.0360586 K3=0.0993095 K3B=5.7086622 W0=1E-6 NLX=1.313191E-7 DVT0W=0 DVT1W=0 DVT2W=0 DVT0=0.4911363 ++ DVT1=0.2227356 DVT2=0.1 U0=115.6852975 UA=1.505832E-9 UB=1E-21 UC=-1E-10 VSAT=1.329694E5 A0=1.7590478 ++ AGS=0.3641621 B0=3.427126E-7 B1=1.062928E-6 KETA=0.0134667 A1=0.6859506 A2=0.3506788 RDSW=168.5705677 ++ PRWG=0.5 PRWB=-0.4987371 WR=1 WINT=0 LINT=3.028832E-8 XL=0 XW=-1E-8 DWG=-2.349633E-8 DWB=-7.152486E-9 ++ VOFF=-0.0994037 NFACTOR=1.9424315 CIT=0 CDSC=2.4E-4 CDSCD=0 CDSCB=0 ETA0=0.0608072 ETAB=-0.0426148 ++ DSUB=0.7343015 PCLM=3.2579974 PDIBLC1=7.229527E-6 PDIBLC2=0.025389 PDIBLCB=-1E-3 DROUT=0 PSCBE1=1.454878E10 ++ PSCBE2=4.202027E-9 PVAG=15 DELTA=0.01 RSH=7.8 MOBMOD=1 PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 ++ UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 ++ CGDO=6.32E-10 CGSO=6.32E-10 CGBO=1E-12 CJ=1.172138E-3 PB=0.8421173 MJ=0.4109788 CJSW=2.242609E-10 PBSW=0.8 + MJSW=0.3752089 CJSWG=4.22E-10 PBSWG=0.8 MJSWG=0.3752089 CF=0 PVTH0=1.888482E-3 PRDSW=11.5315407 PK2=1.559399E-3 ++ WKETA=0.0319301 LKETA=2.955547E-3 PU0=-1.1105313 PUA=-4.62102E-11 PUB=1E-21 PVSAT=50 PETA0=1E-4 PKETA=-4.346368E-3) diff --git a/library/SubcircuitLibrary/CD4098/PMOS-5um.lib b/library/SubcircuitLibrary/CD4098/PMOS-5um.lib new file mode 100644 index 000000000..9c3ed9760 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/PMOS-5um.lib @@ -0,0 +1,5 @@ +*5um technology + +.model mos_p PMOS( Cgso=0.4n Tox=85n Vto=-1 phi=0.65 ++ Level=1 ++ Mj=.5 UO=250 Cgdo=0.4n Gamma=0.65 LAMBDA=0.03 LD=0.6u JS=1u CJ=0.18m CJSW=0.6n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/CD4098/analysis b/library/SubcircuitLibrary/CD4098/analysis new file mode 100644 index 000000000..a2a273682 --- /dev/null +++ b/library/SubcircuitLibrary/CD4098/analysis @@ -0,0 +1 @@ +.tran 1e-00 3e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4520B_sub/CD4520B_sub.cir b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_sub.cir new file mode 100644 index 000000000..c1a1c16b6 --- /dev/null +++ b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_sub.cir @@ -0,0 +1,11 @@ +.title KiCad schematic +U9 Net-_U1-Pad6_ Net-_U5-Pad1_ d_inverter +U8 Net-_U1-Pad5_ Net-_U4-Pad1_ d_inverter +U5 Net-_U5-Pad1_ Net-_U1-Pad5_ unconnected-_U5-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad6_ unconnected-_U5-Pad6_ d_dff +U4 Net-_U4-Pad1_ Net-_U1-Pad4_ unconnected-_U4-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad5_ unconnected-_U4-Pad6_ d_dff +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ PORT +U3 Net-_U3-Pad1_ Net-_U1-Pad3_ unconnected-_U3-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad4_ unconnected-_U3-Pad6_ d_dff +U7 Net-_U1-Pad4_ Net-_U3-Pad1_ d_inverter +U6 Net-_U1-Pad3_ Net-_U2-Pad1_ d_inverter +U2 Net-_U2-Pad1_ Net-_U1-Pad1_ unconnected-_U2-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad3_ unconnected-_U2-Pad6_ d_dff +.end diff --git a/library/SubcircuitLibrary/CD4520B_sub/CD4520B_sub.kicad_sch b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_sub.kicad_sch new file mode 100644 index 000000000..79c5af287 --- /dev/null +++ b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_sub.kicad_sch @@ -0,0 +1,1038 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid cb9fa4bd-be1b-4cdd-82d4-9d6567cf6821) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 129.54 78.74) (diameter 0) (color 0 0 0 0) + (uuid 17e1ddcc-6ca6-4b82-a7d9-8f26cc4860f1) + ) + (junction (at 92.71 59.69) (diameter 0) (color 0 0 0 0) + (uuid 2717cb3d-0779-4908-bae3-2bb2586c3d40) + ) + (junction (at 129.54 156.21) (diameter 0) (color 0 0 0 0) + (uuid 4c221c9c-a096-41fe-b918-d9e772c7269b) + ) + (junction (at 90.17 59.69) (diameter 0) (color 0 0 0 0) + (uuid 7bc5eef5-fe9a-4ade-b03b-72d04bd3c644) + ) + (junction (at 129.54 39.37) (diameter 0) (color 0 0 0 0) + (uuid b7062a39-b4f3-4c2a-a94b-6e29d097e56f) + ) + (junction (at 127 39.37) (diameter 0) (color 0 0 0 0) + (uuid d01f1094-70bc-40a3-8e35-237123083b72) + ) + (junction (at 90.17 67.31) (diameter 0) (color 0 0 0 0) + (uuid dc9770fc-65ad-4d32-a831-983dbf03ff8f) + ) + (junction (at 132.08 118.11) (diameter 0) (color 0 0 0 0) + (uuid e5259bc4-7f9b-45ee-8f32-fc64cc4d27c9) + ) + (junction (at 129.54 118.11) (diameter 0) (color 0 0 0 0) + (uuid e65f4cd3-5e9b-49bb-8980-a5fc53081589) + ) + (junction (at 128.27 78.74) (diameter 0) (color 0 0 0 0) + (uuid e9fd3e1c-fa7f-46a1-930e-6314e66b0d1f) + ) + + (wire (pts (xy 166.37 85.09) (xy 129.54 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 010ef5c5-bb66-4b0e-8778-a4cf1e9fe953) + ) + (wire (pts (xy 166.37 90.17) (xy 166.37 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0149f680-1b34-40cc-8e38-c8d569591b90) + ) + (wire (pts (xy 111.76 102.87) (xy 92.71 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04a5e402-c1a0-41bd-a8a6-eb5e0701a2e4) + ) + (wire (pts (xy 149.86 26.67) (xy 91.44 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0778bc16-21df-44c0-9625-fc1f2b9debd4) + ) + (wire (pts (xy 156.21 123.19) (xy 132.08 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13a71ca9-60e6-4840-bdf7-3564c2745d55) + ) + (wire (pts (xy 87.63 67.31) (xy 90.17 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19395c74-012e-4623-9833-ed54976f964d) + ) + (wire (pts (xy 92.71 104.14) (xy 128.27 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e9e2eac-8dbf-48c4-8bb7-b7c790e58dc1) + ) + (wire (pts (xy 124.46 39.37) (xy 127 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f01ed6e-e936-42ef-9d4f-9b86cebeb567) + ) + (wire (pts (xy 96.52 59.69) (xy 92.71 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20ead9d7-239a-4b1d-919c-2ff5db70ab8d) + ) + (wire (pts (xy 127 118.11) (xy 129.54 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2884bede-dc43-4b5f-a08c-4a9cbbdc0771) + ) + (wire (pts (xy 91.44 39.37) (xy 96.52 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3be59fc8-89c7-47fd-ab9e-0f5b0c8dfb77) + ) + (wire (pts (xy 90.17 142.24) (xy 90.17 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d501a6f-2bf5-4c9f-90c9-2b0baa33123e) + ) + (wire (pts (xy 149.86 39.37) (xy 149.86 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d837ff3-a717-4a01-9e26-22e5a952dad4) + ) + (wire (pts (xy 153.67 118.11) (xy 153.67 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41019243-b245-4434-b687-f5cb4203f94c) + ) + (wire (pts (xy 110.49 63.5) (xy 96.52 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41efa996-203a-4a2b-bfab-6e333d8a87e5) + ) + (wire (pts (xy 127 67.31) (xy 127 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41fadb5b-fe7c-4f86-a133-2e6dbd94740f) + ) + (wire (pts (xy 132.08 123.19) (xy 132.08 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43fb56af-5bcf-459e-a0f9-2acd82b49a86) + ) + (wire (pts (xy 129.54 85.09) (xy 129.54 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b917d0b-b5ed-427b-9083-98886db4f4af) + ) + (wire (pts (xy 127 39.37) (xy 129.54 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e8665a1-c280-4390-a330-cb7d0a227215) + ) + (wire (pts (xy 129.54 160.02) (xy 129.54 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 554b81f2-cbf2-4b81-8e62-cd4043bfd078) + ) + (wire (pts (xy 92.71 102.87) (xy 92.71 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55545575-0e4e-44d8-9022-c8d77e153c6e) + ) + (wire (pts (xy 151.13 80.01) (xy 151.13 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55fe415a-c52f-403c-9f48-8111e9fff099) + ) + (wire (pts (xy 129.54 39.37) (xy 134.62 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56e33857-53cd-4c6c-b2a3-3a7f18a3c1ff) + ) + (wire (pts (xy 113.03 142.24) (xy 90.17 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6284f20a-56be-4d74-ab2e-124e626873bf) + ) + (wire (pts (xy 166.37 82.55) (xy 166.37 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63359f22-e65a-4962-b024-74aec95d96ca) + ) + (wire (pts (xy 95.25 95.25) (xy 95.25 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b957abb-56f0-4ded-a0a7-b2493f8bb5ee) + ) + (wire (pts (xy 95.25 67.31) (xy 127 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72dedf10-c82c-4557-b0b8-536c29721dac) + ) + (wire (pts (xy 128.27 104.14) (xy 128.27 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 749bf8b1-dc75-4c12-ba50-233143fad5ec) + ) + (wire (pts (xy 97.79 144.78) (xy 129.54 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d66b565-0585-4503-8559-8cee1473d573) + ) + (wire (pts (xy 129.54 118.11) (xy 132.08 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ea267ad-8e43-4cc8-8b45-7275d5b4cba2) + ) + (wire (pts (xy 127 156.21) (xy 129.54 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8104f658-022c-4576-85e7-3a4dddb3b4e8) + ) + (wire (pts (xy 88.9 55.88) (xy 96.52 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84b5481f-94cd-4a74-b882-83f48b5112cf) + ) + (wire (pts (xy 166.37 87.63) (xy 156.21 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 866f13e5-3a0c-45e2-b42a-d349f2b5d718) + ) + (wire (pts (xy 129.54 78.74) (xy 135.89 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89c48aaf-9a7a-42a2-848c-30812fb63443) + ) + (wire (pts (xy 87.63 180.34) (xy 87.63 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a03b759-0095-4def-82f3-c6bb3893908b) + ) + (wire (pts (xy 129.54 45.72) (xy 129.54 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cbb8463-ba0c-4ddc-b941-964948086e1a) + ) + (wire (pts (xy 156.21 147.32) (xy 99.06 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 943f734e-642f-4870-9a38-8ea9850903a9) + ) + (wire (pts (xy 99.06 147.32) (xy 99.06 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 961fd626-209f-4ce7-b058-cfcbde47e68a) + ) + (wire (pts (xy 97.79 72.39) (xy 97.79 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97b5c188-7f4d-4032-acfd-182f9f92ca26) + ) + (wire (pts (xy 99.06 172.72) (xy 97.79 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 997fc7f7-10f4-4ba7-8a72-621770db31aa) + ) + (wire (pts (xy 96.52 63.5) (xy 96.52 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 999055f1-baac-4ec5-a64d-82789b01e89b) + ) + (wire (pts (xy 91.44 26.67) (xy 91.44 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c8d51ba-c51e-4f6f-8dc2-c00545e2033f) + ) + (wire (pts (xy 88.9 55.88) (xy 88.9 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d63bf9e-76e4-4674-a70e-98288a84eaf6) + ) + (wire (pts (xy 92.71 134.62) (xy 92.71 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d726963-ef41-48df-8f80-d52f8d00359a) + ) + (wire (pts (xy 99.06 107.95) (xy 99.06 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a583dadc-0535-4ce4-9844-ffa7b53077c1) + ) + (wire (pts (xy 90.17 67.31) (xy 90.17 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad0fe0c8-f654-4728-a4f6-83a92bcb9b07) + ) + (wire (pts (xy 125.73 78.74) (xy 128.27 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af89d07a-866c-4fe8-a4a2-3a3fcea59749) + ) + (wire (pts (xy 151.13 72.39) (xy 97.79 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b00127bf-0346-4ed9-83f8-ff9430cc47a9) + ) + (wire (pts (xy 129.54 144.78) (xy 129.54 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b06dc1ac-2b0f-4b96-ac78-c9e90710b010) + ) + (wire (pts (xy 129.54 156.21) (xy 140.97 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2e935c4-2a07-4ba8-b738-a784122523f4) + ) + (wire (pts (xy 153.67 107.95) (xy 99.06 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3f7df4d-64e4-4f85-ba9c-1c85bf255d72) + ) + (wire (pts (xy 90.17 59.69) (xy 88.9 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b521aa8c-9a57-4e2a-bb67-9c4d6f5a4dfb) + ) + (wire (pts (xy 166.37 160.02) (xy 129.54 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7f72ae4-5e21-45dc-aaea-2db57cecde84) + ) + (wire (pts (xy 166.37 45.72) (xy 129.54 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb9ed30c-6b0d-4235-aa95-faf19d2cf2f8) + ) + (wire (pts (xy 92.71 59.69) (xy 90.17 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc8afd5b-d358-4d14-bc48-1ed725d6c7d1) + ) + (wire (pts (xy 135.89 78.74) (xy 135.89 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4320b8b-261e-40c4-8999-26063cc4e8a9) + ) + (wire (pts (xy 128.27 78.74) (xy 129.54 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6e52133-38be-4347-93f0-6a4320778d0d) + ) + (wire (pts (xy 132.08 118.11) (xy 138.43 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdecc2ca-9c02-4dca-b8f1-2b3f1e147f99) + ) + (wire (pts (xy 156.21 156.21) (xy 156.21 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2a59aa8-41fa-40d9-afba-af78a45f587b) + ) + (wire (pts (xy 97.79 95.25) (xy 95.25 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec9a0141-e1c4-4c67-b692-f39e9430ccb5) + ) + (wire (pts (xy 99.06 134.62) (xy 92.71 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecf5dc58-334d-49e2-b4fc-a16fffa43098) + ) + (wire (pts (xy 113.03 180.34) (xy 87.63 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2bb63ae-f639-44c9-b998-19f0cb166e39) + ) + (wire (pts (xy 97.79 172.72) (xy 97.79 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fad39ad3-2e91-47b3-b1b8-43190f542c7c) + ) + (wire (pts (xy 156.21 87.63) (xy 156.21 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff90c293-1bef-45c4-a068-8bafbeadb38e) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 172.72 82.55 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 078624d5-d762-4aff-8a91-b089458c4880) + (property "Reference" "U1" (id 0) (at 176.53 81.915 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 176.53 84.455 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 172.72 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 192cdede-ae30-4a3f-a5d2-6f2b8cb75434)) + (pin "2" (uuid 211d1a4b-0d97-4f1d-9119-44fdc9bf6e42)) + (pin "3" (uuid 80acc00c-4869-4e38-a291-55507a736677)) + (pin "4" (uuid ffc6f4af-2290-4a8e-b259-2cb86eee5904)) + (pin "5" (uuid d5fd605d-1d1e-4bc6-b5a6-914c0c82d6d8)) + (pin "6" (uuid 7fcfb808-a571-41b4-98a1-82cea7050a6a)) + (pin "7" (uuid c87738c8-3154-4220-9c3b-633a5b1039de)) + (pin "8" (uuid 68fdba6c-d53e-4c61-8510-4fcc46f768a1)) + (pin "9" (uuid fca482e3-60ec-4b40-a34e-e1b657a76c85)) + (pin "10" (uuid e4b3d697-a251-4252-a77d-4c4d0ce93dca)) + (pin "11" (uuid 9039c509-a33e-48da-adb8-f1b7e6f82755)) + (pin "12" (uuid ba7576fd-9bcc-4e94-ac91-0e4fadfd15fd)) + (pin "13" (uuid 9953234a-3042-4e40-9e93-99ba7de088ca)) + (pin "14" (uuid 7c58de5b-5a7e-4314-ac40-646464a9386b)) + (pin "15" (uuid a96ca059-1b52-4835-ae4b-6a1b5fa85d9c)) + (pin "16" (uuid 615cb8dc-f615-4639-9c4c-dca82507be3e)) + (pin "17" (uuid df7c1a6b-1904-4554-865c-abead36df701)) + (pin "18" (uuid 212918ce-4217-41a9-ad70-4b5bb34ddeb9)) + (pin "19" (uuid 19284589-4cf1-4d40-946a-d970ddf80a11)) + (pin "20" (uuid e178cd55-46bc-4e1b-ab39-600e77d0e1e0)) + (pin "21" (uuid 1d76b1df-3600-40ac-9d78-f998480b32a6)) + (pin "22" (uuid 7eb0caad-4b5f-4a59-adf7-b82a0f489b24)) + (pin "23" (uuid 2c4271a1-065c-411e-ad4b-67252c8ad658)) + (pin "24" (uuid a3bf4dd6-966a-4bb9-befb-fd508bde5fe3)) + (pin "25" (uuid c7480319-b6af-4920-8d68-157b392b966f)) + (pin "26" (uuid a07e126a-d4e4-40fd-a5f3-3e725676c616)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 113.03 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 16c4c486-9f89-40a8-af4e-1f7b0966fdff) + (property "Reference" "U4" (id 0) (at 115.0494 110.49 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 115.0494 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 113.03 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 113.03 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8b9cc5da-b402-40a1-8ca0-c05a268811e6)) + (pin "2" (uuid 7770b185-e554-4aa2-b507-466a9cc12147)) + (pin "3" (uuid 3efc08c6-a997-4220-ba66-d86373f6e9f6)) + (pin "4" (uuid 7a622c01-28ab-4572-88c2-0fa651663e3f)) + (pin "5" (uuid 6930bb7d-7402-43d2-a236-dffe9e483f26)) + (pin "6" (uuid bde44111-4193-4a48-8d5d-2a18952c8643)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 172.72 87.63 180) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b4f594f-44fd-44d3-a521-856fced1467c) + (property "Reference" "U1" (id 0) (at 176.53 86.995 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 176.53 89.535 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 172.72 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f560d52b-b021-4efe-bf32-56e6b9a3c252)) + (pin "2" (uuid 1b8f575f-9bc4-4df9-ab8d-ca3468217fcd)) + (pin "3" (uuid 321cc9c2-3f33-457a-92b6-e943dd2c2795)) + (pin "4" (uuid 25c8e958-b885-4bf0-90d8-996cae492884)) + (pin "5" (uuid 67b8274e-301a-4256-9fac-3c60ef5f0376)) + (pin "6" (uuid cfbd93c1-112a-4a2e-91c4-347e0197c443)) + (pin "7" (uuid 2cd491ce-9705-44bf-9a6d-f83d04d39a8b)) + (pin "8" (uuid 350e5d24-fcbe-4fec-9685-87d7789bd747)) + (pin "9" (uuid 9f341e93-ac6a-400d-80eb-d880c9c8ac20)) + (pin "10" (uuid 35c77fcc-80e1-4372-8291-d8208c28165d)) + (pin "11" (uuid 40cdb11b-7391-47f3-973b-dfcf1ee89463)) + (pin "12" (uuid 9666fdb3-10c2-4a3f-b8d7-7db0a192cc51)) + (pin "13" (uuid f4ef8ef4-2b61-430c-ba02-a4f4bbb6d389)) + (pin "14" (uuid 62da3ccb-6019-4acc-ad5b-cf135f8792aa)) + (pin "15" (uuid 5a2bc7de-a165-46b0-9cf3-5c663778a939)) + (pin "16" (uuid 21e1e182-92f9-4f4f-bdc4-23198f59bccb)) + (pin "17" (uuid 764c2e73-d45a-4043-a9d7-13e35dbf4552)) + (pin "18" (uuid 5e3d1e83-dbf1-4002-b6e4-ad8e8312176c)) + (pin "19" (uuid 6e48952a-1406-4ae7-a2a6-db19cc817dcd)) + (pin "20" (uuid b055cff0-4c7c-4905-b363-bd421473ab02)) + (pin "21" (uuid cba19d74-e932-4f7a-9e01-66f7a326ac30)) + (pin "22" (uuid 36df042a-cddc-4611-b290-91102678a00f)) + (pin "23" (uuid e6ffdb77-2051-4264-ad30-1dfbec898e40)) + (pin "24" (uuid d9d78f57-f33c-4df9-9247-3e1b26feef65)) + (pin "25" (uuid 479740d3-b150-4914-800d-0af5324f8dad)) + (pin "26" (uuid 25e56598-2cfc-40d2-8210-8cb3a7da4f70)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 110.49 48.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4407342b-7898-43a7-8919-5a9604cb82b3) + (property "Reference" "U2" (id 0) (at 112.5094 31.75 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 112.5094 35.56 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 110.49 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dc10c4de-c6c0-4123-8902-cc851d8d741f)) + (pin "2" (uuid 4d074dbf-cc19-402a-a1d4-8f2883db08a6)) + (pin "3" (uuid efb0c084-6c0c-4b90-86f1-38e420e19216)) + (pin "4" (uuid ad0f323e-0a2d-4e3c-b46c-476c46b3ac95)) + (pin "5" (uuid 164c10ca-880d-4a58-97a0-816adf5ffd64)) + (pin "6" (uuid 475fdd25-4075-4614-a831-d74543ec94bb)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 111.76 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 477b0627-b95a-4c96-b5da-3757754843a9) + (property "Reference" "U3" (id 0) (at 113.7794 71.12 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 113.7794 74.93 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 111.76 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 111.76 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be4c832f-1651-440a-a474-caf459554260)) + (pin "2" (uuid a7ace65f-36fc-477d-9e0f-de20cf174acf)) + (pin "3" (uuid 5dfdcdcf-290e-4427-a9cc-b253130401a2)) + (pin "4" (uuid 5ce84533-29d5-4142-995c-1f462431ea28)) + (pin "5" (uuid 0fb5d07f-e184-49eb-88f8-4a853df1df99)) + (pin "6" (uuid bf972733-f78c-49bf-929a-7ac27a57c3b9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 172.72 85.09 180) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5860b615-8750-425f-808f-4c83bfc1b6d2) + (property "Reference" "U1" (id 0) (at 176.53 84.455 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 176.53 86.995 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 172.72 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 463340db-26fa-4140-a007-f88c73b52d4a)) + (pin "2" (uuid c0a537b4-b9d8-4079-af7d-9982a7fffc91)) + (pin "3" (uuid 2640216c-f93a-40c3-973c-6c9c4a355110)) + (pin "4" (uuid 77dd25b3-9f42-4dbe-8688-282d72af6d30)) + (pin "5" (uuid 259c04e8-dffc-4de6-8353-5247f6f9e634)) + (pin "6" (uuid ec6a735d-c403-40d3-9c01-85beead3026d)) + (pin "7" (uuid 9c2c1c7d-b50e-44d0-a774-416057c2b920)) + (pin "8" (uuid cf7b8505-1607-4968-8efa-ce090a3366e3)) + (pin "9" (uuid 6415eb7d-766e-42b7-a921-4c6ad2be4616)) + (pin "10" (uuid 4abae2c5-cb41-404c-96a9-5e5a38b8ecbc)) + (pin "11" (uuid 33c55f9b-a25a-4d76-9b38-c947357da4ba)) + (pin "12" (uuid 474d22f5-97cb-46dd-81e9-3f4d8c2133dd)) + (pin "13" (uuid afa4686c-f10e-4658-9f98-c41493e3bf10)) + (pin "14" (uuid 74fa3711-35b3-4ef4-925f-71023a5a83e1)) + (pin "15" (uuid dd3baab8-d1bd-4a9e-9bb4-067e571e281a)) + (pin "16" (uuid 922f6aa0-e944-44c9-ae76-5fc7f47f4007)) + (pin "17" (uuid 636c112f-331d-481b-b943-b6db008a4592)) + (pin "18" (uuid 77a90405-c14b-4fc6-8c4f-8a247603fac0)) + (pin "19" (uuid 139243e3-5ccc-4e56-bb5e-5d0e03091a7a)) + (pin "20" (uuid 76a68cdf-7a71-42da-aebc-200b2f9ae9d4)) + (pin "21" (uuid 27a1fc61-9b52-417b-9218-3596aeda2567)) + (pin "22" (uuid 5225bad8-8cc3-4645-b288-427b710185c9)) + (pin "23" (uuid f1317141-7226-49e9-9d35-cc0a73473305)) + (pin "24" (uuid 0d18d73a-963e-46ce-a551-4e3e59b46831)) + (pin "25" (uuid f21a65c6-340f-4b69-a55f-8b49615f75a1)) + (pin "26" (uuid 9f0ec12a-4a62-465b-927a-2a8ba459b51b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 143.51 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 590f873f-c200-4680-b13f-3ba55a205837) + (property "Reference" "U7" (id 0) (at 143.51 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 143.51 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 144.78 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f49b61c5-0e3a-47c4-874c-f3aaf03accaa)) + (pin "2" (uuid 1efb938c-4d95-4eb1-b596-4af7371203ca)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 148.59 156.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5c2662c4-7c7e-4ac7-ae67-88a7c69749aa) + (property "Reference" "U9" (id 0) (at 148.59 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 148.59 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e9dac870-a146-48e7-9319-fd4f2d5d3605)) + (pin "2" (uuid d89e5f09-0073-484a-b39f-b83aa72490e3)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 113.03 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a0f53a9-5c4f-42a4-a1cc-e889eca6df92) + (property "Reference" "U5" (id 0) (at 115.0494 148.59 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 115.0494 152.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 113.03 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 113.03 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 86b4bf28-29f2-41da-a188-323e77d16aec)) + (pin "2" (uuid 4f272a70-78b7-4f8c-a84a-7fb2a43d4041)) + (pin "3" (uuid 8be92ba2-34cf-42ae-b753-015ef4d94ec6)) + (pin "4" (uuid f4d0b782-efde-44b5-9e3b-da497ce0f6f1)) + (pin "5" (uuid 69af6228-8b96-4468-9784-cbc415023669)) + (pin "6" (uuid a2b7977a-f37a-423d-a215-65cc0f423b7e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 142.24 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7e640b5d-0949-42b2-832a-4e38204167a2) + (property "Reference" "U6" (id 0) (at 142.24 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 142.24 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 143.51 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8ecc6ca8-96b2-41e5-a30b-7675a57d75bf)) + (pin "2" (uuid 67e6236a-79f1-41c8-9b18-8b95138b317a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 146.05 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9069b675-0cae-40b2-8188-89be1dfca4e6) + (property "Reference" "U8" (id 0) (at 146.05 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 146.05 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 147.32 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 147.32 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 66618bd4-2cd3-43e3-bba5-2932b8784292)) + (pin "2" (uuid 6fbb537c-f09d-4e02-ad68-5b4d162e1b47)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 82.55 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cff31586-a8b6-400c-a7fb-afd0105eb5cf) + (property "Reference" "U1" (id 0) (at 83.185 52.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 83.185 54.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 82.55 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ef6a7fb8-bb3f-4daa-b8d5-eea6c7071286)) + (pin "2" (uuid 1cf8295e-93d7-4930-8fb7-74dd6485892f)) + (pin "3" (uuid 8733c2c8-6d5b-461d-8b61-5afc21830c31)) + (pin "4" (uuid dc6fcb03-1a14-4621-bf25-1915e29d7bdc)) + (pin "5" (uuid a18dfc92-9407-4038-ba1a-b611a67e0833)) + (pin "6" (uuid f23e7b90-1418-4b96-a159-f6855f59ba95)) + (pin "7" (uuid e7fcd4b0-5865-49b1-9f60-ab833cf86adf)) + (pin "8" (uuid 63d9d504-58f7-4daf-835e-bc22b390c1f9)) + (pin "9" (uuid 10df3f0c-e320-4b4d-b0fe-dc35bf589e39)) + (pin "10" (uuid 4c72a94c-20e5-493c-9c26-603aaaf07013)) + (pin "11" (uuid bc5758de-3b8e-4bb9-ae19-95c3575d0c0c)) + (pin "12" (uuid 8addcb20-9ac8-4e25-8876-121db548d26f)) + (pin "13" (uuid 54e5df1b-e964-4710-99d7-d21b93b872cb)) + (pin "14" (uuid e3c63682-3c59-43d1-8f9f-d9e749d29bc2)) + (pin "15" (uuid 4f8260b0-4446-4232-8c83-66e32f2dafc3)) + (pin "16" (uuid 0254d6ce-7260-4c2f-8b60-2ecf2775f146)) + (pin "17" (uuid b59673d4-0d55-4db9-a300-13f667c9c04b)) + (pin "18" (uuid 5fd1beb8-c879-44d8-97e2-24245801dd24)) + (pin "19" (uuid b5609f26-e1a4-46b3-b870-cf8dc987417d)) + (pin "20" (uuid c6086b14-4fb1-4e57-90ad-2a18a97f41fb)) + (pin "21" (uuid 4d5c40b2-6273-46e2-bce9-4e92a023bf8a)) + (pin "22" (uuid 3ba8f71e-b2b5-44f9-bd75-e6ba76bee2cf)) + (pin "23" (uuid 65e5bb32-5ed8-439b-ac77-344f020a9002)) + (pin "24" (uuid 180b60ed-e9b7-4d35-a6ac-61358ea84ee0)) + (pin "25" (uuid 2e16c72f-42ca-4d2f-bdc4-682e07cfc37e)) + (pin "26" (uuid 0098a7df-57d2-4f23-a909-833be5d017f4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 82.55 59.69 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d20a4f34-bb3a-41e7-81b0-f33dbfd0f6ce) + (property "Reference" "U1" (id 0) (at 83.185 54.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 83.185 57.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 82.55 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 188bbc33-f4f6-4d4d-abd2-6fc98f9ba718)) + (pin "2" (uuid 5cda3752-c3ef-44a1-8277-9335fc8a468e)) + (pin "3" (uuid 57ff02cc-6fd8-4b38-baae-cccba2135397)) + (pin "4" (uuid a2d655ca-9a3b-4e68-94ad-617dd99c518c)) + (pin "5" (uuid 767f61ce-3282-4558-9347-ef88b80c5b3f)) + (pin "6" (uuid fbdd0ca6-9a9f-4854-befd-053380d04368)) + (pin "7" (uuid b85247dc-d196-4f39-981a-be9384572cdb)) + (pin "8" (uuid 20f271e5-209a-48c0-9771-49507c71abdc)) + (pin "9" (uuid 699bf946-3641-4de2-9bcb-df854791cb1f)) + (pin "10" (uuid b3501ac4-9682-4b6e-b5ce-167705ffa396)) + (pin "11" (uuid 9098fbc2-a1c1-4e84-a2cf-a5b80288aa84)) + (pin "12" (uuid fe535397-52e9-40fe-a3ca-6e5ba315f040)) + (pin "13" (uuid eedd9905-b7cf-4025-9069-6e8918408c6a)) + (pin "14" (uuid 42fe725a-f5d5-43e4-b081-daabf3b2120a)) + (pin "15" (uuid 011e6223-9450-4571-8568-5f669cd9a7d0)) + (pin "16" (uuid fbeaa944-2fc3-4209-9045-ed97711ff90c)) + (pin "17" (uuid 7e036354-291a-4caf-9c64-068299157c37)) + (pin "18" (uuid 98e91c73-94f0-476e-8399-45696cb263bb)) + (pin "19" (uuid cf8f25a4-2a47-4479-9992-8ba4968ae3f8)) + (pin "20" (uuid 5a9307f3-b732-4793-8e8f-6e2b13f89c1b)) + (pin "21" (uuid 0467f735-3a08-4b7b-b439-94c0813f6b8b)) + (pin "22" (uuid 0be84603-a1b1-4048-ab9a-0cbd763c05a0)) + (pin "23" (uuid 1fd77152-7cb0-4105-acdc-09a660f1b5e4)) + (pin "24" (uuid 80758888-2395-403d-b93e-ee2b52cd5baf)) + (pin "25" (uuid d75f9de6-dd7d-40de-a7d9-ea6e465a6ed2)) + (pin "26" (uuid cc0b93f5-202b-4fe5-98bc-87655afc8ef0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 172.72 90.17 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e335703d-7d63-499e-ae43-125d77c9c843) + (property "Reference" "U1" (id 0) (at 176.53 89.535 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 176.53 92.075 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 172.72 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 994cbe32-efca-453c-890f-9c3e63a36f13)) + (pin "2" (uuid 85310648-b133-487b-b74f-f11bf9586805)) + (pin "3" (uuid 586be2bc-884a-476d-b1c4-e6f9b3810a2c)) + (pin "4" (uuid d980dce4-d546-467e-a881-a70cc98e420c)) + (pin "5" (uuid 8652f3d1-006f-479a-92b9-21de1ea425d8)) + (pin "6" (uuid bccb8d76-dc72-4b2e-b4ff-d4143d8d6fa0)) + (pin "7" (uuid 45bd7754-55df-4130-86aa-acea724b1600)) + (pin "8" (uuid 27912518-b4b7-449f-a394-4ee6b19c2da7)) + (pin "9" (uuid 013664ef-8016-431b-99fd-6961512d5a4b)) + (pin "10" (uuid facf16e3-3ecb-42df-b323-aa2fa4fb2c06)) + (pin "11" (uuid 0ee72fe1-1669-4c4e-9314-f735a54ad92b)) + (pin "12" (uuid 9c1b4b4a-399d-484b-bf23-0e0abddbe440)) + (pin "13" (uuid bcbc1200-9e63-4c53-b369-d2cfd495869d)) + (pin "14" (uuid a5e8d39c-04f7-4fe0-9fd9-2be8455678db)) + (pin "15" (uuid 8a0fb235-dde8-4ddd-b9a3-9b12b80fe012)) + (pin "16" (uuid b3741a26-c220-4820-9b33-118d6dfb4642)) + (pin "17" (uuid ef235285-231d-43d7-8a23-72aa653a266b)) + (pin "18" (uuid 24e23098-2f5d-4c89-8858-0052d1e06f4d)) + (pin "19" (uuid a95ca517-d81c-4b07-9bcd-9eb5f5e78d2f)) + (pin "20" (uuid 36044660-d056-4c46-95fc-b23c585e6e4e)) + (pin "21" (uuid be938723-8d56-4526-a022-a262414e1235)) + (pin "22" (uuid f1a75d68-36d5-449d-b87d-32f8a9ba99dd)) + (pin "23" (uuid 59f62acf-69c6-4b58-ab21-94a742abeee3)) + (pin "24" (uuid 8ebc3a5a-903e-484d-be8d-97e1824283b9)) + (pin "25" (uuid c78433c5-f68f-4118-8702-2c42d0cefd86)) + (pin "26" (uuid a914ea47-6ac7-430a-82d1-3d35ebedcfb2)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/cff31586-a8b6-400c-a7fb-afd0105eb5cf" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/d20a4f34-bb3a-41e7-81b0-f33dbfd0f6ce" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/078624d5-d762-4aff-8a91-b089458c4880" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/5860b615-8750-425f-808f-4c83bfc1b6d2" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/1b4f594f-44fd-44d3-a521-856fced1467c" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/e335703d-7d63-499e-ae43-125d77c9c843" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/4407342b-7898-43a7-8919-5a9604cb82b3" + (reference "U2") (unit 1) (value "d_dff") (footprint "") + ) + (path "/477b0627-b95a-4c96-b5da-3757754843a9" + (reference "U3") (unit 1) (value "d_dff") (footprint "") + ) + (path "/16c4c486-9f89-40a8-af4e-1f7b0966fdff" + (reference "U4") (unit 1) (value "d_dff") (footprint "") + ) + (path "/7a0f53a9-5c4f-42a4-a1cc-e889eca6df92" + (reference "U5") (unit 1) (value "d_dff") (footprint "") + ) + (path "/7e640b5d-0949-42b2-832a-4e38204167a2" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/590f873f-c200-4680-b13f-3ba55a205837" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9069b675-0cae-40b2-8188-89be1dfca4e6" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5c2662c4-7c7e-4ac7-ae67-88a7c69749aa" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4520B_sub/CD4520B_sub.proj b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_sub.proj new file mode 100644 index 000000000..05a913ae6 --- /dev/null +++ b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_sub.proj @@ -0,0 +1 @@ +schematicFile CD4520B_sub.kicad_sch diff --git a/library/SubcircuitLibrary/CD4520B_sub/CD4520B_test.cir b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_test.cir new file mode 100644 index 000000000..7e1994644 --- /dev/null +++ b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_test.cir @@ -0,0 +1,11 @@ +.title KiCad schematic +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U2-Pad3_ Net-_U2-Pad4_ Net-_U2-Pad5_ Net-_U2-Pad6_ Net-_U2-Pad7_ Net-_U2-Pad8_ dac_bridge_4 +U5 Net-_U2-Pad7_ plot_v1 +U6 Net-_U2-Pad8_ plot_v1 +v2 Net-_U1-Pad2_ GND pulse +v1 Net-_U1-Pad1_ GND pulse +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ unconnected-_U1-Pad3_ unconnected-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ unconnected-_U1-Pad7_ unconnected-_U1-Pad8_ adc_bridge_4 +X1 Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U2-Pad3_ Net-_U2-Pad4_ CD4520B +U3 Net-_U2-Pad5_ plot_v1 +U4 Net-_U2-Pad6_ plot_v1 +.end diff --git a/library/SubcircuitLibrary/CD4520B_sub/CD4520B_test.kicad_sch b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_test.kicad_sch new file mode 100644 index 000000000..469537359 --- /dev/null +++ b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_test.kicad_sch @@ -0,0 +1,637 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid b197e569-4f9d-487a-8a7f-f125a3955dba) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:CD4520B" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "CD4520B" (id 1) (at 0 3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "CD4520B_0_1" + (rectangle (start -5.08 6.35) (end 6.35 -7.62) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "CD4520B_1_1" + (pin input line (at -5.08 0 0) (length 2.54) + (name "CLK" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -5.08 -2.54 0) (length 2.54) + (name "RESET" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 2.54 180) (length 2.54) + (name "Q0" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 0 180) (length 2.54) + (name "Q1" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 -3.81 180) (length 2.54) + (name "Q2" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 -6.35 180) (length 2.54) + (name "Q3" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 73.66 83.82) (diameter 0) (color 0 0 0 0) + (uuid a7e77678-f9cc-4133-942f-7d62fe8c3380) + ) + + (wire (pts (xy 76.2 25.4) (xy 91.44 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 068278ae-9fa8-4010-b44f-36cdb5cddc29) + ) + (wire (pts (xy 69.85 83.82) (xy 73.66 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0de09f8c-592a-4f4b-b0a3-7f06574f20fd) + ) + (wire (pts (xy 138.43 39.37) (xy 138.43 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 198b261e-fbee-46b3-a6d7-f6f60454c86e) + ) + (wire (pts (xy 170.18 33.02) (xy 170.18 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d0563e0-e932-4e71-a42d-d3511ff04001) + ) + (wire (pts (xy 121.92 33.02) (xy 121.92 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e3b0e1a-0f3d-4d08-aaf4-5b1f0a6b5a29) + ) + (wire (pts (xy 121.92 35.56) (xy 123.19 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ebd061c-98b1-45eb-965f-b351f6e314bf) + ) + (wire (pts (xy 119.38 33.02) (xy 121.92 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e52841d-3c27-48ce-8b0e-0c85c82a53b5) + ) + (wire (pts (xy 87.63 55.88) (xy 87.63 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42c4c3e3-e3db-44db-8139-d15cc25b446d) + ) + (wire (pts (xy 138.43 36.83) (xy 138.43 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 497a2d80-4b97-4d87-a74c-effbbbfafd80) + ) + (wire (pts (xy 69.85 48.26) (xy 69.85 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52d00614-1b89-4a1f-86f5-b102ffe8ad5c) + ) + (wire (pts (xy 166.37 35.56) (xy 168.91 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54cc1b63-0c9b-4f7a-b266-121dde9d1aa7) + ) + (wire (pts (xy 119.38 30.48) (xy 123.19 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a2baadf-3518-41e4-a46f-f0431b20e18f) + ) + (wire (pts (xy 166.37 33.02) (xy 170.18 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 738200d4-3ac0-4878-b469-4937523aaf98) + ) + (wire (pts (xy 123.19 30.48) (xy 123.19 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7562a91d-ea97-4bf5-ac0d-731034b619f7) + ) + (wire (pts (xy 168.91 52.07) (xy 175.26 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9358dbaf-fedc-4776-b666-3f551da64fc9) + ) + (wire (pts (xy 134.62 36.83) (xy 138.43 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2804f43-7790-4646-90b9-af74589e4585) + ) + (wire (pts (xy 87.63 33.02) (xy 91.44 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6c3d34d-162e-430e-8d56-164b8eeee7d7) + ) + (wire (pts (xy 166.37 38.1) (xy 166.37 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a994d431-7000-404f-84f4-8c644b9f4ca9) + ) + (wire (pts (xy 73.66 78.74) (xy 76.2 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab7a4a12-d296-4842-b22e-dd95ced22984) + ) + (wire (pts (xy 168.91 35.56) (xy 168.91 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b814be42-73c0-4e3d-90c1-a57be2462ad4) + ) + (wire (pts (xy 134.62 39.37) (xy 138.43 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba49f050-5f41-4e06-a8d2-bea10fef37ba) + ) + (wire (pts (xy 73.66 90.17) (xy 73.66 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd58969a-fc04-4e6c-b025-dc9f4f4088ca) + ) + (wire (pts (xy 134.62 30.48) (xy 138.43 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ceb5a7cd-7775-4a65-9fbf-49968b9e2508) + ) + (wire (pts (xy 91.44 25.4) (xy 91.44 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf902d72-2b4b-4b82-83d2-1f7282fa1a5f) + ) + (wire (pts (xy 134.62 33.02) (xy 138.43 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d48153f9-3c10-465a-8419-1ff8c6d64ab2) + ) + (wire (pts (xy 76.2 55.88) (xy 87.63 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1a31b50-3026-47db-8a1a-890fafe71929) + ) + (wire (pts (xy 76.2 48.26) (xy 69.85 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f26da682-02c0-4f5e-9882-9ce1312b479a) + ) + (wire (pts (xy 73.66 83.82) (xy 73.66 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f54ee29a-b474-49e4-9e5b-22b2c4dd8070) + ) + (wire (pts (xy 170.18 39.37) (xy 173.99 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc479c36-a9bb-4fa0-a070-075296e8d255) + ) + (wire (pts (xy 166.37 63.5) (xy 175.26 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid febef481-863c-45f4-97c8-8c5457f37f67) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_4") (at 152.4 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1505c8dd-c91c-427f-9637-a861dccadb91) + (property "Reference" "U2" (id 0) (at 152.4 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_4" (id 1) (at 152.4 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 152.4 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 152.4 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e517f4d-a1d2-4e11-9615-56f98b3e7394)) + (pin "2" (uuid 67447a2f-926f-422e-a660-03b73863db2a)) + (pin "3" (uuid 1fe6f7d1-b1b6-4147-9980-ab1f8956ca2d)) + (pin "4" (uuid 5fe03113-31ad-4acd-bf2f-7110ffd0e984)) + (pin "5" (uuid 21c159a9-f3d8-4a27-b24f-e07cc9603cd8)) + (pin "6" (uuid eb2fcf5d-5361-4703-a477-5717a3f1f585)) + (pin "7" (uuid 37dae4e7-1d7f-4abd-9b46-dbc05509f721)) + (pin "8" (uuid 68d316aa-38cc-46e1-81b2-edc1f28ab793)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 76.2 67.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3047ffd8-78e3-42eb-b876-2f36b3d4ea52) + (property "Reference" "v2" (id 0) (at 81.28 64.135 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 81.28 67.945 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 81.28 71.755 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 76.2 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a769d5e-3b23-4ce5-b047-c3786732e2aa)) + (pin "2" (uuid 2e0f62f4-c989-4305-8f9a-0bdb7b599504)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 105.41 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3dceea4b-e0df-4528-acda-969e12a08d8d) + (property "Reference" "U1" (id 0) (at 105.41 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 105.41 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 105.41 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 105.41 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ecafa392-1f98-47e7-85b0-410b846b966d)) + (pin "2" (uuid f2b701e3-892a-44fc-a70f-68a72c35e6c6)) + (pin "3" (uuid c9acdd2c-0935-4b31-acad-ffc24ed04d30)) + (pin "4" (uuid 09498ae4-330a-4472-859d-e44ca11d1e5d)) + (pin "5" (uuid b337a7da-45d5-4267-bf52-79cadcfec4ac)) + (pin "6" (uuid 212ff42f-1f5c-4915-9c4e-2c3e8a2e4658)) + (pin "7" (uuid 952f3efb-8eb5-4696-832b-9f1d22017dd2)) + (pin "8" (uuid a3688c02-0a2a-453b-a994-9f5cbcadeeb7)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 73.66 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68a5c448-bc25-4409-8df8-fa89abdadb9c) + (property "Reference" "#PWR0101" (id 0) (at 73.66 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 73.66 95.25 0)) + (property "Footprint" "" (id 2) (at 73.66 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 73.66 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b228db31-cb9d-4776-8d20-81010e231e31)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 173.99 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e2936c2-be14-4a6b-b2f4-0b0730efb2c6) + (property "Reference" "U4" (id 0) (at 177.8 30.48 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 177.8 34.29 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 173.99 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 173.99 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 09b3fbac-8e5c-4670-91c4-313e8a456554)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 175.26 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1b4fc9e-2097-49f6-a9cb-4dc953049873) + (property "Reference" "U6" (id 0) (at 179.07 54.61 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 179.07 58.42 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 175.26 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 63dbe4dd-a8b2-45c3-ae1d-d1d0771d4b28)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 166.37 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c85d563d-55d8-4683-9056-6f6cb10be1b6) + (property "Reference" "U3" (id 0) (at 170.18 21.59 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 170.18 25.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 166.37 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 0336e25e-cb9e-4420-b170-66216dfe6f2f)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 76.2 36.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ccb24503-0cde-40c3-9cdc-32ddc4f92499) + (property "Reference" "v1" (id 0) (at 81.28 33.655 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 81.28 37.465 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 81.28 41.275 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 76.2 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8e13c0ca-b6da-496c-9655-b5e3305cbdde)) + (pin "2" (uuid a32f43fe-25cb-4fbb-a597-e4235ec57e1d)) + ) + + (symbol (lib_id "eSim_Subckt:CD4520B") (at 128.27 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8579bf9-9a5e-49f7-b25d-835b59506c5a) + (property "Reference" "X1" (id 0) (at 128.905 21.59 0)) + (property "Value" "CD4520B" (id 1) (at 128.905 24.13 0)) + (property "Footprint" "" (id 2) (at 128.27 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 128.27 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a767badb-9834-41bc-a5e7-31dd27148993)) + (pin "2" (uuid 87c9beae-f968-490a-af00-4eed6bc42a00)) + (pin "3" (uuid 4be45fb6-f734-4421-9749-c83813ef6bc6)) + (pin "4" (uuid 2f86909a-bbe6-449d-8b8c-0b361131c4a2)) + (pin "5" (uuid 117dc695-5111-4b45-9151-dfaf6c2bf24b)) + (pin "6" (uuid 7ce60d79-3c50-4c55-b318-1809310d8a4e)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 175.26 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f6760be6-68be-4271-93e2-add04d164988) + (property "Reference" "U5" (id 0) (at 179.07 43.18 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 179.07 46.99 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 175.26 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid e4b3c930-29ae-43d5-af41-6bf3b3c89547)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/68a5c448-bc25-4409-8df8-fa89abdadb9c" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/3dceea4b-e0df-4528-acda-969e12a08d8d" + (reference "U1") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/1505c8dd-c91c-427f-9637-a861dccadb91" + (reference "U2") (unit 1) (value "dac_bridge_4") (footprint "") + ) + (path "/c85d563d-55d8-4683-9056-6f6cb10be1b6" + (reference "U3") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/6e2936c2-be14-4a6b-b2f4-0b0730efb2c6" + (reference "U4") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/f6760be6-68be-4271-93e2-add04d164988" + (reference "U5") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/a1b4fc9e-2097-49f6-a9cb-4dc953049873" + (reference "U6") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/e8579bf9-9a5e-49f7-b25d-835b59506c5a" + (reference "X1") (unit 1) (value "CD4520B") (footprint "") + ) + (path "/ccb24503-0cde-40c3-9cdc-32ddc4f92499" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/3047ffd8-78e3-42eb-b876-2f36b3d4ea52" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4520B_sub/CD4520B_test.proj b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_test.proj new file mode 100644 index 000000000..16fc22788 --- /dev/null +++ b/library/SubcircuitLibrary/CD4520B_sub/CD4520B_test.proj @@ -0,0 +1 @@ +schematicFile CD4520B_test.kicad_sch diff --git a/library/SubcircuitLibrary/CD4585/CD4585.cir b/library/SubcircuitLibrary/CD4585/CD4585.cir new file mode 100644 index 000000000..be9216e96 --- /dev/null +++ b/library/SubcircuitLibrary/CD4585/CD4585.cir @@ -0,0 +1,69 @@ +.title KiCad schematic +U55 Net-_U25-Pad2_ Net-_U31-Pad3_ Net-_U55-Pad3_ d_nor +U59 Net-_U55-Pad3_ Net-_U55-Pad3_ Net-_U59-Pad3_ d_nor +U58 Net-_U54-Pad3_ Net-_U47-Pad3_ Net-_U58-Pad3_ d_nor +U62 Net-_U58-Pad3_ Net-_U1-Pad12_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ PORT +U63 Net-_U59-Pad3_ Net-_U60-Pad3_ Net-_U63-Pad3_ d_nor +U51 Net-_U49-Pad3_ Net-_U49-Pad3_ Net-_U51-Pad3_ d_nor +U49 Net-_U25-Pad2_ Net-_U31-Pad3_ Net-_U49-Pad3_ d_nor +U50 Net-_U41-Pad3_ Net-_U42-Pad3_ Net-_U50-Pad3_ d_nor +U54 Net-_U53-Pad3_ Net-_U53-Pad3_ Net-_U54-Pad3_ d_nor +U53 Net-_U51-Pad3_ Net-_U52-Pad3_ Net-_U53-Pad3_ d_nor +U57 Net-_U47-Pad3_ Net-_U1-Pad3_ Net-_U57-Pad3_ d_nor +U56 Net-_U41-Pad3_ Net-_U42-Pad3_ Net-_U56-Pad3_ d_nor +U60 Net-_U56-Pad3_ Net-_U56-Pad3_ Net-_U60-Pad3_ d_nor +U66 Net-_U65-Pad3_ Net-_U65-Pad3_ Net-_U66-Pad3_ d_nor +U67 Net-_U66-Pad3_ Net-_U2-Pad2_ Net-_U1-Pad13_ d_nor +U64 Net-_U63-Pad3_ Net-_U63-Pad3_ Net-_U64-Pad3_ d_nor +U61 Net-_U57-Pad3_ Net-_U57-Pad3_ Net-_U61-Pad3_ d_nor +U65 Net-_U64-Pad3_ Net-_U61-Pad3_ Net-_U65-Pad3_ d_nor +U52 Net-_U50-Pad3_ Net-_U50-Pad3_ Net-_U52-Pad3_ d_nor +U47 Net-_U45-Pad3_ Net-_U21-Pad3_ Net-_U47-Pad3_ d_nor +U48 Net-_U46-Pad3_ Net-_U21-Pad3_ Net-_U1-Pad3_ d_nor +U23 Net-_U17-Pad3_ Net-_U18-Pad3_ Net-_U23-Pad3_ d_nand +U24 Net-_U20-Pad3_ Net-_U19-Pad3_ Net-_U24-Pad3_ d_nand +U8 Net-_U1-Pad14_ Net-_U14-Pad2_ d_inverter +U9 Net-_U1-Pad2_ Net-_U15-Pad1_ d_inverter +U7 Net-_U1-Pad15_ Net-_U13-Pad1_ d_inverter +U10 Net-_U1-Pad7_ Net-_U10-Pad2_ d_inverter +U11 Net-_U1-Pad9_ Net-_U11-Pad2_ d_inverter +U12 Net-_U1-Pad1_ Net-_U12-Pad2_ d_inverter +U5 Net-_U1-Pad10_ Net-_U20-Pad1_ d_inverter +U6 Net-_U1-Pad11_ Net-_U19-Pad2_ d_inverter +U3 Net-_U1-Pad5_ Net-_U29-Pad1_ d_inverter +U18 Net-_U1-Pad7_ Net-_U11-Pad2_ Net-_U18-Pad3_ d_nand +U20 Net-_U20-Pad1_ Net-_U1-Pad11_ Net-_U20-Pad3_ d_nand +U19 Net-_U1-Pad10_ Net-_U19-Pad2_ Net-_U19-Pad3_ d_nand +U2 Net-_U1-Pad4_ Net-_U2-Pad2_ d_inverter +U4 Net-_U1-Pad6_ Net-_U30-Pad1_ d_inverter +U22 Net-_U15-Pad3_ Net-_U16-Pad3_ Net-_U22-Pad3_ d_nand +U14 Net-_U1-Pad15_ Net-_U14-Pad2_ Net-_U14-Pad3_ d_nand +U16 Net-_U1-Pad2_ Net-_U12-Pad2_ Net-_U16-Pad3_ d_nand +U17 Net-_U10-Pad2_ Net-_U1-Pad9_ Net-_U17-Pad3_ d_nand +U15 Net-_U15-Pad1_ Net-_U1-Pad1_ Net-_U15-Pad3_ d_nand +U13 Net-_U13-Pad1_ Net-_U1-Pad14_ Net-_U13-Pad3_ d_nand +U21 Net-_U13-Pad3_ Net-_U14-Pad3_ Net-_U21-Pad3_ d_nand +U29 Net-_U29-Pad1_ Net-_U24-Pad3_ Net-_U29-Pad3_ d_nor +U32 Net-_U23-Pad3_ Net-_U22-Pad3_ Net-_U32-Pad3_ d_nor +U28 Net-_U20-Pad3_ Net-_U23-Pad3_ Net-_U28-Pad3_ d_nor +U25 Net-_U13-Pad3_ Net-_U25-Pad2_ d_inverter +U31 Net-_U21-Pad3_ Net-_U15-Pad3_ Net-_U31-Pad3_ d_nor +U36 Net-_U28-Pad3_ Net-_U28-Pad3_ Net-_U36-Pad3_ d_nor +U35 Net-_U27-Pad3_ Net-_U27-Pad3_ Net-_U35-Pad3_ d_nor +U27 Net-_U22-Pad3_ Net-_U21-Pad3_ Net-_U27-Pad3_ d_nor +U34 Net-_U26-Pad3_ Net-_U26-Pad3_ Net-_U34-Pad3_ d_nor +U26 Net-_U22-Pad3_ Net-_U17-Pad3_ Net-_U26-Pad3_ d_nor +U42 Net-_U35-Pad3_ Net-_U36-Pad3_ Net-_U42-Pad3_ d_nor +U41 Net-_U34-Pad3_ Net-_U21-Pad3_ Net-_U41-Pad3_ d_nor +U46 Net-_U44-Pad3_ Net-_U44-Pad3_ Net-_U46-Pad3_ d_nor +U44 Net-_U39-Pad3_ Net-_U40-Pad3_ Net-_U44-Pad3_ d_nor +U39 Net-_U30-Pad3_ Net-_U30-Pad3_ Net-_U39-Pad3_ d_nor +U33 Net-_U23-Pad3_ Net-_U22-Pad3_ Net-_U33-Pad3_ d_nor +U38 Net-_U32-Pad3_ Net-_U32-Pad3_ Net-_U38-Pad3_ d_nor +U40 Net-_U33-Pad3_ Net-_U33-Pad3_ Net-_U40-Pad3_ d_nor +U30 Net-_U30-Pad1_ Net-_U24-Pad3_ Net-_U30-Pad3_ d_nor +U37 Net-_U29-Pad3_ Net-_U29-Pad3_ Net-_U37-Pad3_ d_nor +U45 Net-_U43-Pad3_ Net-_U43-Pad3_ Net-_U45-Pad3_ d_nor +U43 Net-_U37-Pad3_ Net-_U38-Pad3_ Net-_U43-Pad3_ d_nor +.end diff --git a/library/SubcircuitLibrary/CD4585/CD4585.cir.out b/library/SubcircuitLibrary/CD4585/CD4585.cir.out new file mode 100644 index 000000000..7d88617ae --- /dev/null +++ b/library/SubcircuitLibrary/CD4585/CD4585.cir.out @@ -0,0 +1,276 @@ +.title kicad schematic + +* u55 net-_u25-pad2_ net-_u31-pad3_ net-_u55-pad3_ d_nor +* u59 net-_u55-pad3_ net-_u55-pad3_ net-_u59-pad3_ d_nor +* u58 net-_u54-pad3_ net-_u47-pad3_ net-_u58-pad3_ d_nor +* u62 net-_u58-pad3_ net-_u1-pad12_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ port +* u63 net-_u59-pad3_ net-_u60-pad3_ net-_u63-pad3_ d_nor +* u51 net-_u49-pad3_ net-_u49-pad3_ net-_u51-pad3_ d_nor +* u49 net-_u25-pad2_ net-_u31-pad3_ net-_u49-pad3_ d_nor +* u50 net-_u41-pad3_ net-_u42-pad3_ net-_u50-pad3_ d_nor +* u54 net-_u53-pad3_ net-_u53-pad3_ net-_u54-pad3_ d_nor +* u53 net-_u51-pad3_ net-_u52-pad3_ net-_u53-pad3_ d_nor +* u57 net-_u47-pad3_ net-_u1-pad3_ net-_u57-pad3_ d_nor +* u56 net-_u41-pad3_ net-_u42-pad3_ net-_u56-pad3_ d_nor +* u60 net-_u56-pad3_ net-_u56-pad3_ net-_u60-pad3_ d_nor +* u66 net-_u65-pad3_ net-_u65-pad3_ net-_u66-pad3_ d_nor +* u67 net-_u66-pad3_ net-_u2-pad2_ net-_u1-pad13_ d_nor +* u64 net-_u63-pad3_ net-_u63-pad3_ net-_u64-pad3_ d_nor +* u61 net-_u57-pad3_ net-_u57-pad3_ net-_u61-pad3_ d_nor +* u65 net-_u64-pad3_ net-_u61-pad3_ net-_u65-pad3_ d_nor +* u52 net-_u50-pad3_ net-_u50-pad3_ net-_u52-pad3_ d_nor +* u47 net-_u45-pad3_ net-_u21-pad3_ net-_u47-pad3_ d_nor +* u48 net-_u46-pad3_ net-_u21-pad3_ net-_u1-pad3_ d_nor +* u23 net-_u17-pad3_ net-_u18-pad3_ net-_u23-pad3_ d_nand +* u24 net-_u20-pad3_ net-_u19-pad3_ net-_u24-pad3_ d_nand +* u8 net-_u1-pad14_ net-_u14-pad2_ d_inverter +* u9 net-_u1-pad2_ net-_u15-pad1_ d_inverter +* u7 net-_u1-pad15_ net-_u13-pad1_ d_inverter +* u10 net-_u1-pad7_ net-_u10-pad2_ d_inverter +* u11 net-_u1-pad9_ net-_u11-pad2_ d_inverter +* u12 net-_u1-pad1_ net-_u12-pad2_ d_inverter +* u5 net-_u1-pad10_ net-_u20-pad1_ d_inverter +* u6 net-_u1-pad11_ net-_u19-pad2_ d_inverter +* u3 net-_u1-pad5_ net-_u29-pad1_ d_inverter +* u18 net-_u1-pad7_ net-_u11-pad2_ net-_u18-pad3_ d_nand +* u20 net-_u20-pad1_ net-_u1-pad11_ net-_u20-pad3_ d_nand +* u19 net-_u1-pad10_ net-_u19-pad2_ net-_u19-pad3_ d_nand +* u2 net-_u1-pad4_ net-_u2-pad2_ d_inverter +* u4 net-_u1-pad6_ net-_u30-pad1_ d_inverter +* u22 net-_u15-pad3_ net-_u16-pad3_ net-_u22-pad3_ d_nand +* u14 net-_u1-pad15_ net-_u14-pad2_ net-_u14-pad3_ d_nand +* u16 net-_u1-pad2_ net-_u12-pad2_ net-_u16-pad3_ d_nand +* u17 net-_u10-pad2_ net-_u1-pad9_ net-_u17-pad3_ d_nand +* u15 net-_u15-pad1_ net-_u1-pad1_ net-_u15-pad3_ d_nand +* u13 net-_u13-pad1_ net-_u1-pad14_ net-_u13-pad3_ d_nand +* u21 net-_u13-pad3_ net-_u14-pad3_ net-_u21-pad3_ d_nand +* u29 net-_u29-pad1_ net-_u24-pad3_ net-_u29-pad3_ d_nor +* u32 net-_u23-pad3_ net-_u22-pad3_ net-_u32-pad3_ d_nor +* u28 net-_u20-pad3_ net-_u23-pad3_ net-_u28-pad3_ d_nor +* u25 net-_u13-pad3_ net-_u25-pad2_ d_inverter +* u31 net-_u21-pad3_ net-_u15-pad3_ net-_u31-pad3_ d_nor +* u36 net-_u28-pad3_ net-_u28-pad3_ net-_u36-pad3_ d_nor +* u35 net-_u27-pad3_ net-_u27-pad3_ net-_u35-pad3_ d_nor +* u27 net-_u22-pad3_ net-_u21-pad3_ net-_u27-pad3_ d_nor +* u34 net-_u26-pad3_ net-_u26-pad3_ net-_u34-pad3_ d_nor +* u26 net-_u22-pad3_ net-_u17-pad3_ net-_u26-pad3_ d_nor +* u42 net-_u35-pad3_ net-_u36-pad3_ net-_u42-pad3_ d_nor +* u41 net-_u34-pad3_ net-_u21-pad3_ net-_u41-pad3_ d_nor +* u46 net-_u44-pad3_ net-_u44-pad3_ net-_u46-pad3_ d_nor +* u44 net-_u39-pad3_ net-_u40-pad3_ net-_u44-pad3_ d_nor +* u39 net-_u30-pad3_ net-_u30-pad3_ net-_u39-pad3_ d_nor +* u33 net-_u23-pad3_ net-_u22-pad3_ net-_u33-pad3_ d_nor +* u38 net-_u32-pad3_ net-_u32-pad3_ net-_u38-pad3_ d_nor +* u40 net-_u33-pad3_ net-_u33-pad3_ net-_u40-pad3_ d_nor +* u30 net-_u30-pad1_ net-_u24-pad3_ net-_u30-pad3_ d_nor +* u37 net-_u29-pad3_ net-_u29-pad3_ net-_u37-pad3_ d_nor +* u45 net-_u43-pad3_ net-_u43-pad3_ net-_u45-pad3_ d_nor +* u43 net-_u37-pad3_ net-_u38-pad3_ net-_u43-pad3_ d_nor +a1 [net-_u25-pad2_ net-_u31-pad3_ ] net-_u55-pad3_ u55 +a2 [net-_u55-pad3_ net-_u55-pad3_ ] net-_u59-pad3_ u59 +a3 [net-_u54-pad3_ net-_u47-pad3_ ] net-_u58-pad3_ u58 +a4 net-_u58-pad3_ net-_u1-pad12_ u62 +a5 [net-_u59-pad3_ net-_u60-pad3_ ] net-_u63-pad3_ u63 +a6 [net-_u49-pad3_ net-_u49-pad3_ ] net-_u51-pad3_ u51 +a7 [net-_u25-pad2_ net-_u31-pad3_ ] net-_u49-pad3_ u49 +a8 [net-_u41-pad3_ net-_u42-pad3_ ] net-_u50-pad3_ u50 +a9 [net-_u53-pad3_ net-_u53-pad3_ ] net-_u54-pad3_ u54 +a10 [net-_u51-pad3_ net-_u52-pad3_ ] net-_u53-pad3_ u53 +a11 [net-_u47-pad3_ net-_u1-pad3_ ] net-_u57-pad3_ u57 +a12 [net-_u41-pad3_ net-_u42-pad3_ ] net-_u56-pad3_ u56 +a13 [net-_u56-pad3_ net-_u56-pad3_ ] net-_u60-pad3_ u60 +a14 [net-_u65-pad3_ net-_u65-pad3_ ] net-_u66-pad3_ u66 +a15 [net-_u66-pad3_ net-_u2-pad2_ ] net-_u1-pad13_ u67 +a16 [net-_u63-pad3_ net-_u63-pad3_ ] net-_u64-pad3_ u64 +a17 [net-_u57-pad3_ net-_u57-pad3_ ] net-_u61-pad3_ u61 +a18 [net-_u64-pad3_ net-_u61-pad3_ ] net-_u65-pad3_ u65 +a19 [net-_u50-pad3_ net-_u50-pad3_ ] net-_u52-pad3_ u52 +a20 [net-_u45-pad3_ net-_u21-pad3_ ] net-_u47-pad3_ u47 +a21 [net-_u46-pad3_ net-_u21-pad3_ ] net-_u1-pad3_ u48 +a22 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u23-pad3_ u23 +a23 [net-_u20-pad3_ net-_u19-pad3_ ] net-_u24-pad3_ u24 +a24 net-_u1-pad14_ net-_u14-pad2_ u8 +a25 net-_u1-pad2_ net-_u15-pad1_ u9 +a26 net-_u1-pad15_ net-_u13-pad1_ u7 +a27 net-_u1-pad7_ net-_u10-pad2_ u10 +a28 net-_u1-pad9_ net-_u11-pad2_ u11 +a29 net-_u1-pad1_ net-_u12-pad2_ u12 +a30 net-_u1-pad10_ net-_u20-pad1_ u5 +a31 net-_u1-pad11_ net-_u19-pad2_ u6 +a32 net-_u1-pad5_ net-_u29-pad1_ u3 +a33 [net-_u1-pad7_ net-_u11-pad2_ ] net-_u18-pad3_ u18 +a34 [net-_u20-pad1_ net-_u1-pad11_ ] net-_u20-pad3_ u20 +a35 [net-_u1-pad10_ net-_u19-pad2_ ] net-_u19-pad3_ u19 +a36 net-_u1-pad4_ net-_u2-pad2_ u2 +a37 net-_u1-pad6_ net-_u30-pad1_ u4 +a38 [net-_u15-pad3_ net-_u16-pad3_ ] net-_u22-pad3_ u22 +a39 [net-_u1-pad15_ net-_u14-pad2_ ] net-_u14-pad3_ u14 +a40 [net-_u1-pad2_ net-_u12-pad2_ ] net-_u16-pad3_ u16 +a41 [net-_u10-pad2_ net-_u1-pad9_ ] net-_u17-pad3_ u17 +a42 [net-_u15-pad1_ net-_u1-pad1_ ] net-_u15-pad3_ u15 +a43 [net-_u13-pad1_ net-_u1-pad14_ ] net-_u13-pad3_ u13 +a44 [net-_u13-pad3_ net-_u14-pad3_ ] net-_u21-pad3_ u21 +a45 [net-_u29-pad1_ net-_u24-pad3_ ] net-_u29-pad3_ u29 +a46 [net-_u23-pad3_ net-_u22-pad3_ ] net-_u32-pad3_ u32 +a47 [net-_u20-pad3_ net-_u23-pad3_ ] net-_u28-pad3_ u28 +a48 net-_u13-pad3_ net-_u25-pad2_ u25 +a49 [net-_u21-pad3_ net-_u15-pad3_ ] net-_u31-pad3_ u31 +a50 [net-_u28-pad3_ net-_u28-pad3_ ] net-_u36-pad3_ u36 +a51 [net-_u27-pad3_ net-_u27-pad3_ ] net-_u35-pad3_ u35 +a52 [net-_u22-pad3_ net-_u21-pad3_ ] net-_u27-pad3_ u27 +a53 [net-_u26-pad3_ net-_u26-pad3_ ] net-_u34-pad3_ u34 +a54 [net-_u22-pad3_ net-_u17-pad3_ ] net-_u26-pad3_ u26 +a55 [net-_u35-pad3_ net-_u36-pad3_ ] net-_u42-pad3_ u42 +a56 [net-_u34-pad3_ net-_u21-pad3_ ] net-_u41-pad3_ u41 +a57 [net-_u44-pad3_ net-_u44-pad3_ ] net-_u46-pad3_ u46 +a58 [net-_u39-pad3_ net-_u40-pad3_ ] net-_u44-pad3_ u44 +a59 [net-_u30-pad3_ net-_u30-pad3_ ] net-_u39-pad3_ u39 +a60 [net-_u23-pad3_ net-_u22-pad3_ ] net-_u33-pad3_ u33 +a61 [net-_u32-pad3_ net-_u32-pad3_ ] net-_u38-pad3_ u38 +a62 [net-_u33-pad3_ net-_u33-pad3_ ] net-_u40-pad3_ u40 +a63 [net-_u30-pad1_ net-_u24-pad3_ ] net-_u30-pad3_ u30 +a64 [net-_u29-pad3_ net-_u29-pad3_ ] net-_u37-pad3_ u37 +a65 [net-_u43-pad3_ net-_u43-pad3_ ] net-_u45-pad3_ u45 +a66 [net-_u37-pad3_ net-_u38-pad3_ ] net-_u43-pad3_ u43 +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u55 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u59 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u58 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u62 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u63 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u51 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u49 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u50 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u54 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u53 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u57 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u56 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u60 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u66 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u67 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u64 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u61 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u65 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u52 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u47 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u48 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u23 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u24 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u18 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u20 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u19 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u22 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u14 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u16 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u17 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u15 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u21 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u29 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u32 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u28 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u31 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u36 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u35 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u27 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u34 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u26 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u42 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u41 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u46 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u44 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u39 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u33 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u38 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u40 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u30 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u37 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u45 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u43 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD4585/CD4585.kicad_sch b/library/SubcircuitLibrary/CD4585/CD4585.kicad_sch new file mode 100644 index 000000000..e189f6ea7 --- /dev/null +++ b/library/SubcircuitLibrary/CD4585/CD4585.kicad_sch @@ -0,0 +1,3872 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid d0bb1f65-c3e1-4f25-a4db-57f4042c103c) + + (paper "A1") + + (lib_symbols + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nand" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nand_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nand_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 406.4 163.83) (diameter 0) (color 0 0 0 0) + (uuid 0278dcde-89ae-4064-9a3b-d8aa40db0763) + ) + (junction (at 368.3 113.03) (diameter 0) (color 0 0 0 0) + (uuid 0c3dfb58-443f-4f66-82eb-d2a5575415d2) + ) + (junction (at 340.36 250.19) (diameter 0) (color 0 0 0 0) + (uuid 145fbcc6-ae20-4a64-beff-e35987c7354a) + ) + (junction (at 568.96 281.94) (diameter 0) (color 0 0 0 0) + (uuid 20a3a886-b14e-4966-9a53-1450b2aa7248) + ) + (junction (at 147.32 190.5) (diameter 0) (color 0 0 0 0) + (uuid 25dcb3da-f88b-4c4d-8133-69c599afbf2e) + ) + (junction (at 149.86 176.53) (diameter 0) (color 0 0 0 0) + (uuid 29e56b8f-2413-442f-b580-8622509ee18b) + ) + (junction (at 284.48 156.21) (diameter 0) (color 0 0 0 0) + (uuid 2e122623-5781-4e61-97aa-029a07236ad4) + ) + (junction (at 336.55 148.59) (diameter 0) (color 0 0 0 0) + (uuid 329f26a8-5a37-4a19-954f-323f3ce8bb03) + ) + (junction (at 398.78 259.08) (diameter 0) (color 0 0 0 0) + (uuid 33842615-931e-475e-b497-9dcbbaaaf550) + ) + (junction (at 217.17 222.25) (diameter 0) (color 0 0 0 0) + (uuid 3871445b-5565-43f9-80f1-0b6478fd1811) + ) + (junction (at 457.2 271.78) (diameter 0) (color 0 0 0 0) + (uuid 38ee214f-6d0d-4d89-85f8-80fec59908f8) + ) + (junction (at 570.23 312.42) (diameter 0) (color 0 0 0 0) + (uuid 39882f74-02ff-4597-91c4-63089ae20189) + ) + (junction (at 265.43 205.74) (diameter 0) (color 0 0 0 0) + (uuid 3beef037-b77f-48c0-b42b-ae4ac689c6d9) + ) + (junction (at 149.86 137.16) (diameter 0) (color 0 0 0 0) + (uuid 42785e51-6433-460c-9977-c5b2ab1dad9f) + ) + (junction (at 468.63 127) (diameter 0) (color 0 0 0 0) + (uuid 4bdc3526-a303-42c1-8ad6-965c33ab5813) + ) + (junction (at 358.14 130.81) (diameter 0) (color 0 0 0 0) + (uuid 4cc70f3c-536f-4dc9-9e97-cf887e718429) + ) + (junction (at 679.45 300.99) (diameter 0) (color 0 0 0 0) + (uuid 5e3cc015-31ad-4818-9906-22138fa311c3) + ) + (junction (at 336.55 168.91) (diameter 0) (color 0 0 0 0) + (uuid 66567c54-b012-41b3-ae0f-4a00784429be) + ) + (junction (at 213.36 139.7) (diameter 0) (color 0 0 0 0) + (uuid 68316fb0-7276-4474-8ffc-3afeb82e2af1) + ) + (junction (at 457.2 207.01) (diameter 0) (color 0 0 0 0) + (uuid 77c6e2ea-6c0e-4cd3-b534-5d6c1410daf6) + ) + (junction (at 149.86 161.29) (diameter 0) (color 0 0 0 0) + (uuid 7ccbc9db-5ec8-468a-9284-d09ab07a5a5e) + ) + (junction (at 626.11 290.83) (diameter 0) (color 0 0 0 0) + (uuid 7ea17eb0-0c24-4998-baec-e206f6a09b24) + ) + (junction (at 388.62 147.32) (diameter 0) (color 0 0 0 0) + (uuid 7ebb79ec-44d9-46ea-a9a3-c503619c8017) + ) + (junction (at 146.05 148.59) (diameter 0) (color 0 0 0 0) + (uuid 7fa09311-eea9-4121-bd3e-fbb17b5cba06) + ) + (junction (at 527.05 121.92) (diameter 0) (color 0 0 0 0) + (uuid 81e8d05d-c6a9-4dd3-908c-627a19a1d981) + ) + (junction (at 336.55 184.15) (diameter 0) (color 0 0 0 0) + (uuid 824fda1b-a438-445d-8481-f2d0e0997422) + ) + (junction (at 340.36 264.16) (diameter 0) (color 0 0 0 0) + (uuid 83ad9f69-9427-46a5-b50e-5bf3f28bee51) + ) + (junction (at 340.36 210.82) (diameter 0) (color 0 0 0 0) + (uuid 84e03101-3ced-4f3f-a1f8-008993fc9e04) + ) + (junction (at 274.32 219.71) (diameter 0) (color 0 0 0 0) + (uuid 8fd46951-0652-47ef-9f07-5ab67f70dac1) + ) + (junction (at 568.96 295.91) (diameter 0) (color 0 0 0 0) + (uuid 927de096-0841-4c75-9d40-5ac2d2f92dbd) + ) + (junction (at 468.63 113.03) (diameter 0) (color 0 0 0 0) + (uuid 94017856-91dd-40e0-8043-1a23a0d01bed) + ) + (junction (at 148.59 233.68) (diameter 0) (color 0 0 0 0) + (uuid 986af9dd-015a-4364-b6eb-8a3aa31ae774) + ) + (junction (at 284.48 161.29) (diameter 0) (color 0 0 0 0) + (uuid 9c95b693-a364-445f-a739-98f12c74fd3e) + ) + (junction (at 398.78 219.71) (diameter 0) (color 0 0 0 0) + (uuid a05faf39-9d60-48d4-8e2c-03d4c5b3073c) + ) + (junction (at 255.27 233.68) (diameter 0) (color 0 0 0 0) + (uuid a5eac261-79e6-40c2-92c2-31cea6cfd6e5) + ) + (junction (at 265.43 217.17) (diameter 0) (color 0 0 0 0) + (uuid acaba8eb-4dd2-41d3-af5b-747b47a1f2cb) + ) + (junction (at 214.63 194.31) (diameter 0) (color 0 0 0 0) + (uuid aeb7f23a-f43c-4c7f-80d3-ba743186e526) + ) + (junction (at 284.48 203.2) (diameter 0) (color 0 0 0 0) + (uuid bd64f400-e8c3-42ee-b347-fb4eb4f9c9d3) + ) + (junction (at 274.32 177.8) (diameter 0) (color 0 0 0 0) + (uuid c0523919-35fe-45d3-a4ce-ddbd2dab2f88) + ) + (junction (at 148.59 217.17) (diameter 0) (color 0 0 0 0) + (uuid d03650e4-7847-44c6-bef5-5aac0f04efcd) + ) + (junction (at 151.13 204.47) (diameter 0) (color 0 0 0 0) + (uuid d5c32eb7-a524-454d-992c-9f3dfe79a3a6) + ) + (junction (at 274.32 198.12) (diameter 0) (color 0 0 0 0) + (uuid de5e3fa2-d940-478c-a9b8-dcebf74f1deb) + ) + (junction (at 340.36 224.79) (diameter 0) (color 0 0 0 0) + (uuid e552fe45-bf09-452e-b172-1c22d9dfb57e) + ) + (junction (at 284.48 231.14) (diameter 0) (color 0 0 0 0) + (uuid ebc963c3-f63e-4c40-aec1-06ab938247c9) + ) + (junction (at 213.36 165.1) (diameter 0) (color 0 0 0 0) + (uuid f49208d4-0115-49c0-9fc1-4ea50bcd56bd) + ) + + (wire (pts (xy 537.21 297.18) (xy 537.21 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00956b11-0233-4593-aa97-5d5d09ffef28) + ) + (wire (pts (xy 345.44 227.33) (xy 340.36 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00e03116-563c-467e-9629-3c9d9d42fa5f) + ) + (wire (pts (xy 383.54 231.14) (xy 383.54 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00ff59f1-d7c0-4107-9b5d-1555873499a3) + ) + (wire (pts (xy 511.81 133.35) (xy 511.81 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02063249-8b2e-4552-88bc-bd317f231c45) + ) + (wire (pts (xy 167.64 233.68) (xy 167.64 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04d1ced5-cd3f-45de-8c77-f26b8167a35b) + ) + (wire (pts (xy 570.23 312.42) (xy 576.58 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05c71ead-f943-484a-a28d-0d97a7785b46) + ) + (wire (pts (xy 190.5 140.97) (xy 146.05 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0766ff62-f361-4a2e-9bb0-e2a2789fa8eb) + ) + (wire (pts (xy 247.65 132.08) (xy 247.65 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 078ef82b-77d1-4f8f-8fb8-5048f4d24f6e) + ) + (wire (pts (xy 214.63 194.31) (xy 214.63 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07913829-8b20-4ce9-bd8a-b5bbaf24ab2d) + ) + (wire (pts (xy 435.61 281.94) (xy 435.61 322.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0875a2b3-f6c0-4d17-8ee5-39526c3a2f0e) + ) + (wire (pts (xy 149.86 176.53) (xy 154.94 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0931f079-5bc2-474d-bd08-4b51cedb7390) + ) + (wire (pts (xy 574.04 285.75) (xy 568.96 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a2ea889-78b6-48a5-b808-ee289f652cd6) + ) + (wire (pts (xy 168.91 161.29) (xy 190.5 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b869580-29c0-4ab6-8046-2387fe94e5fc) + ) + (wire (pts (xy 541.02 313.69) (xy 457.2 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e98e6d1-c08b-4c25-b925-0d133188ba14) + ) + (wire (pts (xy 217.17 113.03) (xy 217.17 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fc4078d-30fc-4af6-b178-b6a1fe89b86b) + ) + (wire (pts (xy 363.22 185.42) (xy 363.22 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1055e78c-4a4e-4e4f-aebd-3704b9a2de41) + ) + (wire (pts (xy 473.71 129.54) (xy 468.63 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1128295f-064a-439c-85a3-3752c7d980eb) + ) + (wire (pts (xy 473.71 116.84) (xy 468.63 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11ff85f6-9406-48c5-bba2-901c15434f26) + ) + (wire (pts (xy 149.86 161.29) (xy 153.67 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 140e7b48-4c0e-4242-87f0-5082954cc1a8) + ) + (wire (pts (xy 309.88 182.88) (xy 250.19 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1469e1d3-fd81-45de-9a11-3acdfc0ef29e) + ) + (wire (pts (xy 190.5 137.16) (xy 190.5 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14e7f77d-eb09-4f64-b3c1-cdede2927168) + ) + (wire (pts (xy 125.73 264.16) (xy 151.13 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1644f8ac-cb74-49ee-b53b-d1a94041f916) + ) + (wire (pts (xy 473.71 280.67) (xy 473.71 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1792dda6-17df-4b6e-8aaf-d665c54f681e) + ) + (wire (pts (xy 168.91 137.16) (xy 190.5 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18785841-1623-4a23-aae8-9e0b49fc7865) + ) + (wire (pts (xy 148.59 223.52) (xy 148.59 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18d64207-10b0-46d9-9792-3b77a3b8abf5) + ) + (wire (pts (xy 168.91 190.5) (xy 191.77 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19720694-4d53-4c2c-a75c-25af8634786c) + ) + (wire (pts (xy 513.08 207.01) (xy 457.2 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1973a182-fb3c-46d5-a723-e56ca69f9882) + ) + (wire (pts (xy 168.91 209.55) (xy 191.77 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19dc5a00-9c84-4eb0-8728-900ebf2b61af) + ) + (wire (pts (xy 265.43 201.93) (xy 265.43 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a10ac09-9e0d-422b-a303-0c8453fd353e) + ) + (wire (pts (xy 170.18 176.53) (xy 170.18 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a9934d8-7951-46e1-b845-3416105c66a8) + ) + (wire (pts (xy 332.74 250.19) (xy 340.36 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b9c0239-8998-4a09-99cf-d4e5233c33df) + ) + (wire (pts (xy 599.44 313.69) (xy 654.05 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c6b5305-b07d-4b29-a429-38058f118b42) + ) + (wire (pts (xy 265.43 256.54) (xy 312.42 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20bdbd01-29fa-45fc-adc9-c17eb85334ce) + ) + (wire (pts (xy 180.34 149.86) (xy 180.34 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2112414d-433f-4ea6-a998-577af541a741) + ) + (wire (pts (xy 435.61 322.58) (xy 692.15 322.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22073a34-a1c7-4028-b193-dfdb59b49e82) + ) + (wire (pts (xy 255.27 233.68) (xy 255.27 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 234de9e1-6f64-4430-89bb-d0ace91c2b36) + ) + (wire (pts (xy 309.88 185.42) (xy 269.24 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24c363aa-7cfe-48cc-9b0b-a11f6193c5f8) + ) + (wire (pts (xy 125.73 281.94) (xy 149.86 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 290f5510-f6bb-491e-8c43-7bb6ff98eec7) + ) + (wire (pts (xy 255.27 251.46) (xy 309.88 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 294680c9-97ac-4375-bf0f-830e0f4683e3) + ) + (wire (pts (xy 527.05 121.92) (xy 533.4 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29c7ca85-07a0-4539-8cc4-3b33b5df4df9) + ) + (wire (pts (xy 293.37 161.29) (xy 284.48 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29e720dc-01ad-4025-9e9d-f02744468456) + ) + (wire (pts (xy 308.61 265.43) (xy 308.61 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29e85f50-5b1b-4a57-be92-3b646be6278c) + ) + (wire (pts (xy 398.78 222.25) (xy 398.78 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a088a93-8a9f-4092-bc60-ae697d1ec3f3) + ) + (wire (pts (xy 363.22 149.86) (xy 365.76 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a9177c3-47ae-432c-a85e-07a38f98fe36) + ) + (wire (pts (xy 274.32 198.12) (xy 274.32 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2abebb5a-625a-44d1-b862-6b2adc3101ef) + ) + (wire (pts (xy 217.17 139.7) (xy 213.36 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f3413b0-2614-4377-a78a-4db6e0e9c89b) + ) + (wire (pts (xy 563.88 295.91) (xy 568.96 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f4e2af4-6159-446e-9b6a-02f52cb4f89c) + ) + (wire (pts (xy 284.48 161.29) (xy 284.48 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fa1ffda-8e67-45ba-9f40-098506c33f43) + ) + (wire (pts (xy 336.55 168.91) (xy 340.36 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 313a9705-0e59-49b9-b7cf-91abed079e2a) + ) + (wire (pts (xy 692.15 314.96) (xy 706.12 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 313cc986-dcb5-4603-a962-6f84022469a0) + ) + (wire (pts (xy 568.96 295.91) (xy 574.04 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3301fdc3-e513-4003-96a4-001cd09ecce5) + ) + (wire (pts (xy 290.83 198.12) (xy 274.32 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33f73cb1-b1ec-4bb4-8cb3-3c18e5ba9431) + ) + (wire (pts (xy 242.57 264.16) (xy 242.57 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 351a32f3-810f-4fb4-8508-1ee30312e3a5) + ) + (wire (pts (xy 692.15 322.58) (xy 692.15 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35fe8c5e-342b-4643-ad75-cfa7e129157f) + ) + (wire (pts (xy 312.42 262.89) (xy 312.42 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3722aee8-b144-41ce-bc01-9defeeb83cba) + ) + (wire (pts (xy 436.88 128.27) (xy 436.88 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 377fc78c-c655-456b-b573-eda1d378576a) + ) + (wire (pts (xy 473.71 280.67) (xy 538.48 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38bcd381-eb28-499b-86bd-8d771ce27ba2) + ) + (wire (pts (xy 336.55 151.13) (xy 336.55 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39141310-c29a-4888-974f-64e278a3a589) + ) + (wire (pts (xy 170.18 180.34) (xy 191.77 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39aa9d12-1e62-4547-b725-92e8fb3bb331) + ) + (wire (pts (xy 427.99 260.35) (xy 427.99 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a755163-9869-462a-bd81-781eed0b8151) + ) + (wire (pts (xy 336.55 148.59) (xy 340.36 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ab9691d-2236-4e27-8a03-b820ef97fc83) + ) + (wire (pts (xy 299.72 242.57) (xy 299.72 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b856499-b132-485d-b8b2-4c16d32c4397) + ) + (wire (pts (xy 166.37 248.92) (xy 240.03 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c15d9f6-fbfd-4e07-a8ce-9185e0615228) + ) + (wire (pts (xy 215.9 232.41) (xy 220.98 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d4c607a-2f66-4ccd-928c-a76c127437d5) + ) + (wire (pts (xy 146.05 140.97) (xy 146.05 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e1feeed-a3b7-4877-8876-4643789ef082) + ) + (wire (pts (xy 704.85 302.26) (xy 704.85 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e7f1f80-8b10-4a8f-a4d5-af882d390863) + ) + (wire (pts (xy 148.59 220.98) (xy 148.59 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fea4922-9d70-40e1-a3f7-058738537d51) + ) + (wire (pts (xy 483.87 283.21) (xy 483.87 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 401fdbdb-3496-47c2-8721-3b02fc8da69c) + ) + (wire (pts (xy 255.27 231.14) (xy 255.27 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 418fc9e0-b0b5-49b4-8904-6cf42651aa74) + ) + (wire (pts (xy 148.59 233.68) (xy 152.4 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44ee4db6-20ee-40de-a3b5-2e704a13be5e) + ) + (wire (pts (xy 190.5 166.37) (xy 149.86 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44f8129c-2a27-4d86-97d3-6f90f0db8228) + ) + (wire (pts (xy 541.02 311.15) (xy 513.08 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46603773-5b7e-4e5b-b3d1-950d45e4eead) + ) + (wire (pts (xy 293.37 129.54) (xy 293.37 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46792b01-9883-4981-b777-32e68b897cd2) + ) + (wire (pts (xy 250.19 182.88) (xy 250.19 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 476324ce-9eec-4e25-a42e-1aec3f205cea) + ) + (wire (pts (xy 389.89 177.8) (xy 406.4 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49048d53-4118-481b-be31-578b95dcb3d5) + ) + (wire (pts (xy 240.03 144.78) (xy 284.48 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49be2d69-ca50-42bf-923e-5692fdc753d8) + ) + (wire (pts (xy 214.63 203.2) (xy 220.98 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b7b5645-2f14-4909-a9f1-4c42f7ac229f) + ) + (wire (pts (xy 527.05 124.46) (xy 527.05 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c9b3fbc-3859-433e-98db-81843e55103d) + ) + (wire (pts (xy 309.88 147.32) (xy 288.29 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f15297a-81b9-4270-89c7-d038249446e0) + ) + (wire (pts (xy 257.81 194.31) (xy 214.63 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f6ded41-bed6-4c31-80c8-72c6a446c4fe) + ) + (wire (pts (xy 596.9 284.48) (xy 596.9 289.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f90067c-0c35-4f52-ba56-123d607ce604) + ) + (wire (pts (xy 502.92 163.83) (xy 406.4 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fc055bc-c090-43f6-b30f-39056d4e119d) + ) + (wire (pts (xy 214.63 200.66) (xy 220.98 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52120acf-b085-4bcf-9c6e-c4716c9ae6fc) + ) + (wire (pts (xy 681.99 303.53) (xy 679.45 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5337f89e-c534-437b-859e-3f0cb12478ba) + ) + (wire (pts (xy 570.23 314.96) (xy 570.23 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 546a3611-11e6-4e63-a65f-8ecb7e4c09d0) + ) + (wire (pts (xy 368.3 260.35) (xy 372.11 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54d61f77-4ce2-4195-8463-329667a5a202) + ) + (wire (pts (xy 274.32 171.45) (xy 274.32 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55b22ed1-749d-4a67-8fb6-7af1df526b25) + ) + (wire (pts (xy 241.3 171.45) (xy 274.32 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55f5100f-6d64-4473-88d8-9f7cb2e57200) + ) + (wire (pts (xy 127 250.19) (xy 151.13 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56361460-12c7-47a6-b618-b64da48d3756) + ) + (wire (pts (xy 217.17 222.25) (xy 217.17 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 567b6611-06ed-460f-8151-31683e885e3c) + ) + (wire (pts (xy 368.3 257.81) (xy 372.11 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56a8bc6e-4009-4cff-94ff-45f48e41b36b) + ) + (wire (pts (xy 652.78 299.72) (xy 654.05 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57059897-d584-407f-b31f-5ee3ec43b9ef) + ) + (wire (pts (xy 312.42 223.52) (xy 312.42 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5859efb0-8f4a-488d-8a5c-ee250270b245) + ) + (wire (pts (xy 149.86 137.16) (xy 153.67 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 585bf703-f8a1-4c0e-bc3d-88d65a8c78b6) + ) + (wire (pts (xy 461.01 113.03) (xy 468.63 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 586e173e-c744-4a87-b38a-5550a431b158) + ) + (wire (pts (xy 340.36 254) (xy 340.36 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59003baf-3d6f-4195-a7d0-43eefb915201) + ) + (wire (pts (xy 334.01 130.81) (xy 358.14 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59d6e724-98c2-41c6-9f22-5b0f6980512a) + ) + (wire (pts (xy 147.32 193.04) (xy 147.32 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a60ae45-c140-4edb-a956-cf0aebbd15de) + ) + (wire (pts (xy 269.24 185.42) (xy 269.24 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5afa02a6-6163-4ae5-8c5c-92e55b807fe7) + ) + (wire (pts (xy 596.9 289.56) (xy 600.71 289.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b9743cf-60da-4d9b-9a9e-db17cf5c7435) + ) + (wire (pts (xy 340.36 266.7) (xy 340.36 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bb9f51b-1f58-4f97-87a8-6d3f8d1c474d) + ) + (wire (pts (xy 728.98 313.69) (xy 759.46 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5eaafe32-4480-421a-9886-d40ae8bfcf50) + ) + (wire (pts (xy 496.57 120.65) (xy 500.38 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60a5200b-c69a-45b2-8542-f3c274b9212a) + ) + (wire (pts (xy 217.17 229.87) (xy 220.98 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 620674b4-30bb-4938-91b2-40078ddda227) + ) + (wire (pts (xy 368.3 265.43) (xy 368.3 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62d95f61-2905-4fc2-9daf-7567caf21993) + ) + (wire (pts (xy 427.99 113.03) (xy 427.99 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63388efa-b780-4960-9c0e-24d9bf242d69) + ) + (wire (pts (xy 427.99 270.51) (xy 434.34 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 643a1654-5928-43e6-a986-44d66a66d16d) + ) + (wire (pts (xy 274.32 219.71) (xy 274.32 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64b6d89d-c4be-4f70-ad5e-b9d1d835886b) + ) + (wire (pts (xy 345.44 266.7) (xy 340.36 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65d8ba20-742d-440a-8400-3fd3ed46dc3d) + ) + (wire (pts (xy 336.55 171.45) (xy 336.55 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66250d8b-c67e-4dcb-86b3-67c59b135239) + ) + (wire (pts (xy 556.26 133.35) (xy 562.61 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66a7c607-97cf-4346-8cab-92bf694d33d1) + ) + (wire (pts (xy 214.63 208.28) (xy 214.63 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66b9e21e-c13a-442b-ad84-277d8c56f878) + ) + (wire (pts (xy 368.3 113.03) (xy 427.99 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a3f79a4-2570-4c83-8b0a-5a172707ec02) + ) + (wire (pts (xy 523.24 121.92) (xy 527.05 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a7cd6a1-4559-45cb-b3fb-2e435196e7be) + ) + (wire (pts (xy 405.13 222.25) (xy 398.78 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a88b42f-8d47-42e5-9d82-47c6545bd154) + ) + (wire (pts (xy 299.72 248.92) (xy 309.88 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b2e5ef7-df82-473e-9cd4-83ac6ecf7562) + ) + (wire (pts (xy 288.29 177.8) (xy 274.32 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b6c2260-54e8-464b-8ca3-8256016a74d1) + ) + (wire (pts (xy 368.3 226.06) (xy 368.3 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c440fdb-55fc-4b07-9fba-7210285f3bf2) + ) + (wire (pts (xy 340.36 224.79) (xy 345.44 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d4214e3-8075-4b07-be73-7895debbc1f2) + ) + (wire (pts (xy 332.74 148.59) (xy 336.55 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6dd843e2-3125-42df-882e-3266d0c2b62a) + ) + (wire (pts (xy 149.86 166.37) (xy 149.86 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6df6f336-5dad-41aa-8233-bc2e688d2869) + ) + (wire (pts (xy 406.4 163.83) (xy 406.4 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72542dbd-9517-4b04-a671-2640559af45f) + ) + (wire (pts (xy 496.57 123.19) (xy 500.38 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 741f5c93-bdcf-4ffa-b062-a5720707a98e) + ) + (wire (pts (xy 576.58 314.96) (xy 570.23 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74a3e74d-1912-4778-9787-5e6d0e4e88c2) + ) + (wire (pts (xy 335.28 224.79) (xy 340.36 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 769462fd-621d-457d-a267-8680b7fa7d62) + ) + (wire (pts (xy 596.9 292.1) (xy 600.71 292.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 769588e3-2d7a-4080-b569-c33d3be4bdef) + ) + (wire (pts (xy 440.69 125.73) (xy 440.69 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77663927-18aa-4827-b0f2-5b6e0a209589) + ) + (wire (pts (xy 180.34 139.7) (xy 149.86 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78a6c30f-d2f7-4c7b-88e5-5157ca44de4c) + ) + (wire (pts (xy 511.81 135.89) (xy 562.61 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78ad0be3-3344-46e1-b23e-f4e2a062a0e3) + ) + (wire (pts (xy 626.11 293.37) (xy 626.11 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78d5c2e8-93b3-4efc-9151-22ef88459fe2) + ) + (wire (pts (xy 213.36 139.7) (xy 213.36 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78e60767-e8ce-4e6d-9836-b452c8467e8c) + ) + (wire (pts (xy 398.78 219.71) (xy 405.13 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b9e6fcc-b4c4-4e2d-8945-e7301ee87fab) + ) + (wire (pts (xy 191.77 177.8) (xy 180.34 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bf326c3-5a20-42c3-a10b-2260c78bdf69) + ) + (wire (pts (xy 166.37 264.16) (xy 242.57 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bf883d9-ff11-4c3e-8788-950587384e64) + ) + (wire (pts (xy 483.87 143.51) (xy 358.14 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d595ee5-ae7f-4f02-9639-664a27311528) + ) + (wire (pts (xy 165.1 281.94) (xy 435.61 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e2c8e07-0791-4d57-bd7e-3e1dba665cef) + ) + (wire (pts (xy 168.91 148.59) (xy 168.91 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e64c49e-5e13-4ea2-a3fa-2f78db3394ab) + ) + (wire (pts (xy 368.3 252.73) (xy 368.3 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fa79906-3866-4cfe-bfca-a3a70d13f0eb) + ) + (wire (pts (xy 405.13 261.62) (xy 398.78 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ff0b82f-34be-41ab-a1b2-5a6ab9c70927) + ) + (wire (pts (xy 190.5 149.86) (xy 180.34 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80841d43-5682-4d26-b55b-c61ecc8a0cd0) + ) + (wire (pts (xy 679.45 303.53) (xy 679.45 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81f3493f-193d-4c94-bead-cb8a096fbad6) + ) + (wire (pts (xy 363.22 170.18) (xy 363.22 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81f71cd0-3a53-4d25-b754-f5c93150654e) + ) + (wire (pts (xy 494.03 288.29) (xy 494.03 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 822dd80d-876b-4407-b3c4-a175670ec993) + ) + (wire (pts (xy 151.13 250.19) (xy 151.13 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 825de7e4-4c7e-473a-9ee4-963882d01209) + ) + (wire (pts (xy 311.15 132.08) (xy 247.65 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82f0522d-2ee1-43b6-b09d-c591a3fd5447) + ) + (wire (pts (xy 568.96 285.75) (xy 568.96 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8367a05e-4629-4eb4-991a-856bcc4b4fdc) + ) + (wire (pts (xy 468.63 129.54) (xy 468.63 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 853f398d-55d8-439a-97f4-3748d6ffc06b) + ) + (wire (pts (xy 243.84 201.93) (xy 265.43 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86e10e86-29af-412f-8ed5-4b5d3d28578e) + ) + (wire (pts (xy 294.64 203.2) (xy 284.48 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 873b7301-7eef-429b-89f1-84f3042f81ce) + ) + (wire (pts (xy 309.88 167.64) (xy 290.83 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88080afb-c398-451a-beca-e3611a6805ca) + ) + (wire (pts (xy 180.34 165.1) (xy 149.86 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a364614-2708-4afc-8938-4d90571c8ce4) + ) + (wire (pts (xy 332.74 210.82) (xy 340.36 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b4b940b-b686-461a-a6c7-1d32f6fde77f) + ) + (wire (pts (xy 368.3 213.36) (xy 368.3 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bd44a5d-663d-4f3b-90d2-b18e8a64552b) + ) + (wire (pts (xy 274.32 177.8) (xy 274.32 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bdb5677-a86a-4593-8b8b-1e3157bf70b0) + ) + (wire (pts (xy 345.44 214.63) (xy 340.36 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bf7ca03-2799-4f43-a79a-ca5b0b6e4d44) + ) + (wire (pts (xy 247.65 165.1) (xy 213.36 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c0779a7-7bad-4c02-b1a6-08899d98af16) + ) + (wire (pts (xy 468.63 127) (xy 473.71 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cb52a69-5ddf-4251-a473-08c0a4dd5e7a) + ) + (wire (pts (xy 365.76 149.86) (xy 365.76 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cdfef59-3c04-422c-b3c3-023fe75ee2b8) + ) + (wire (pts (xy 623.57 290.83) (xy 626.11 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fa5b496-98ec-4654-a87b-9c8b17aa5b1a) + ) + (wire (pts (xy 191.77 190.5) (xy 191.77 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9054d10b-7874-4a84-826f-abdd4970d182) + ) + (wire (pts (xy 168.91 204.47) (xy 168.91 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9100a916-b05c-4b0a-b003-bc9e6279e478) + ) + (wire (pts (xy 340.36 151.13) (xy 336.55 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 935aecee-ba80-46b7-848c-484a64d78395) + ) + (wire (pts (xy 332.74 184.15) (xy 336.55 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 939b2fa8-11d0-4154-8764-7539795753b7) + ) + (wire (pts (xy 394.97 219.71) (xy 398.78 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93f18f4a-0e91-4e8d-afa8-d23ba976f3b6) + ) + (wire (pts (xy 679.45 300.99) (xy 681.99 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93ffc997-63b5-4449-ad08-5df26c0034b6) + ) + (wire (pts (xy 149.86 139.7) (xy 149.86 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 940ceaa3-1d5d-408a-8e1a-00cf5cc99029) + ) + (wire (pts (xy 496.57 115.57) (xy 496.57 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 941f83e9-c1f4-4aaa-a3aa-4b18d60d52a2) + ) + (wire (pts (xy 243.84 231.14) (xy 255.27 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94a50713-fa15-4b46-aeab-65d6f9f79402) + ) + (wire (pts (xy 309.88 149.86) (xy 257.81 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95c6f7df-0933-4f3d-8098-51bc8262248f) + ) + (wire (pts (xy 427.99 111.76) (xy 438.15 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95f19bca-48ca-48fa-9cfd-3e6131e78e4d) + ) + (wire (pts (xy 312.42 265.43) (xy 308.61 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96b49d44-a70d-461a-9f5f-d756ccb5f5fe) + ) + (wire (pts (xy 468.63 113.03) (xy 473.71 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96f44ba7-a069-458c-9767-6b5a4902af5b) + ) + (wire (pts (xy 340.36 171.45) (xy 336.55 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 995523b8-9891-4a13-976e-466213214ae8) + ) + (wire (pts (xy 463.55 127) (xy 468.63 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9972b812-c66b-42e1-b315-fc7fbda91936) + ) + (wire (pts (xy 167.64 238.76) (xy 193.04 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a7405ed-d459-44e8-a0f7-aede9a69ff50) + ) + (wire (pts (xy 473.71 113.03) (xy 473.71 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a9a4df0-7e8c-4c2c-8406-21a890d99570) + ) + (wire (pts (xy 457.2 271.78) (xy 457.2 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bb6b6d3-e6b4-40be-a061-5d5a3a94df8b) + ) + (wire (pts (xy 139.7 233.68) (xy 148.59 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bdb112f-8422-4c4a-9cd9-668b38cd0828) + ) + (wire (pts (xy 345.44 210.82) (xy 345.44 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c16869c-c732-44d1-96d7-7bccdc99d25b) + ) + (wire (pts (xy 139.7 137.16) (xy 149.86 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9db7ca13-1b5f-4bab-8c8d-210c4be1c441) + ) + (wire (pts (xy 340.36 210.82) (xy 345.44 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9dfa3b61-4ebf-4b63-8e2d-269ccd93f8c0) + ) + (wire (pts (xy 290.83 167.64) (xy 290.83 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ea11aab-f754-4823-ae12-34acfe89ec79) + ) + (wire (pts (xy 556.26 123.19) (xy 556.26 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f13c411-dca1-4e20-a050-154445b7a6b0) + ) + (wire (pts (xy 406.4 121.92) (xy 436.88 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fccaea1-4716-4e01-ae2b-7bb9822f6e37) + ) + (wire (pts (xy 180.34 177.8) (xy 180.34 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a06be457-d0c7-4bf9-bd2b-1d432d7caf66) + ) + (wire (pts (xy 149.86 165.1) (xy 149.86 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0b0cd94-42f9-4b88-983e-1184449a2a15) + ) + (wire (pts (xy 574.04 298.45) (xy 568.96 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0c03055-a8e2-4258-8b20-82dadaa9a424) + ) + (wire (pts (xy 457.2 133.35) (xy 511.81 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0ce5c91-b88d-4bae-a145-661933219aa3) + ) + (wire (pts (xy 483.87 283.21) (xy 538.48 283.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0fdcd72-08ff-431e-89bd-2774095aefa1) + ) + (wire (pts (xy 240.03 242.57) (xy 299.72 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a126f0b7-d8c1-41cf-a775-cb13e2a59e4f) + ) + (wire (pts (xy 274.32 259.08) (xy 308.61 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a20f2fda-36cb-44b0-b7eb-fccfadff1e90) + ) + (wire (pts (xy 388.62 119.38) (xy 388.62 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2637e0f-1399-49ef-8ebe-c65d004929d4) + ) + (wire (pts (xy 265.43 205.74) (xy 265.43 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2a47afa-62a8-4833-a34e-348364cf98e1) + ) + (wire (pts (xy 284.48 156.21) (xy 284.48 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2cddea1-d5f6-47be-b1bd-74a3ff007b71) + ) + (wire (pts (xy 191.77 207.01) (xy 177.8 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a37b1a97-ed40-4b29-80d5-968e1a056e77) + ) + (wire (pts (xy 363.22 176.53) (xy 367.03 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a38e7cd8-a871-4128-838c-ca94a264813c) + ) + (wire (pts (xy 574.04 281.94) (xy 574.04 283.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a54726a5-bdde-4772-8d6b-681b8b1f869f) + ) + (wire (pts (xy 213.36 151.13) (xy 213.36 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7595067-8ad7-4b98-a3a0-ed075d597ea1) + ) + (wire (pts (xy 494.03 147.32) (xy 388.62 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a78e0d78-79ed-41f8-ac75-f1ece9d1eafc) + ) + (wire (pts (xy 596.9 297.18) (xy 596.9 292.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8412dc4-409f-43c7-9b1c-540cd2ce248f) + ) + (wire (pts (xy 365.76 156.21) (xy 284.48 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8bc2891-f000-49e0-8274-310f2a45f0ea) + ) + (wire (pts (xy 427.99 231.14) (xy 434.34 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8db51c6-c6b9-4ef0-83fd-519d3e749104) + ) + (wire (pts (xy 427.99 220.98) (xy 427.99 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a94841a0-44c2-460b-aaa7-0c5571454d03) + ) + (wire (pts (xy 299.72 209.55) (xy 309.88 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab6c536e-5c6a-4235-89fc-1c9c551d2bd9) + ) + (wire (pts (xy 147.32 190.5) (xy 153.67 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abf7002b-26ab-467a-85f5-c68005204912) + ) + (wire (pts (xy 151.13 195.58) (xy 151.13 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ace16515-7efe-4dc3-9c70-12fee2acf080) + ) + (wire (pts (xy 284.48 270.51) (xy 383.54 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad470491-0ee2-4074-af38-915fc9c4fa19) + ) + (wire (pts (xy 288.29 147.32) (xy 288.29 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid adf8a3c3-3a8b-4da4-b43a-b17f2f3c3971) + ) + (wire (pts (xy 383.54 130.81) (xy 383.54 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af409df4-1d3d-4f10-a9de-b25f9d447a96) + ) + (wire (pts (xy 340.36 264.16) (xy 345.44 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af48020b-8203-4c31-9be3-f8d25bf6827f) + ) + (wire (pts (xy 340.36 214.63) (xy 340.36 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afba2b40-edb3-4f36-a9ad-4c74dfc16448) + ) + (wire (pts (xy 242.57 279.4) (xy 299.72 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b27bd83d-3e0c-45fd-b721-c13fcb2f81db) + ) + (wire (pts (xy 213.36 170.18) (xy 218.44 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b30baf5a-92f9-4683-801a-d5717eb7d284) + ) + (wire (pts (xy 383.54 233.68) (xy 434.34 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b36b366f-9a93-4a50-9dc9-654e2655fabe) + ) + (wire (pts (xy 502.92 290.83) (xy 537.21 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b377050f-9bca-44ef-9069-2dfef8434056) + ) + (wire (pts (xy 513.08 311.15) (xy 513.08 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3776401-67c0-46c3-89b8-d336e7cb4cbf) + ) + (wire (pts (xy 394.97 259.08) (xy 398.78 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3bf762d-d9fd-40c4-a07a-ef9db13fec99) + ) + (wire (pts (xy 336.55 184.15) (xy 340.36 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b55d939d-028c-4400-96b0-282e6cef033b) + ) + (wire (pts (xy 213.36 165.1) (xy 213.36 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6be9953-0edb-4bfb-82f6-e52773915715) + ) + (wire (pts (xy 250.19 222.25) (xy 217.17 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6ef81c5-f0d9-45a5-b8df-518c130ab7c2) + ) + (wire (pts (xy 193.04 220.98) (xy 148.59 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b70e0cf8-d82c-40e1-8706-0e8e47ef47cc) + ) + (wire (pts (xy 284.48 203.2) (xy 284.48 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b99a630a-74b6-4ade-b6d0-2b972849bc15) + ) + (wire (pts (xy 383.54 270.51) (xy 383.54 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bac5a6f3-2a0c-4933-b4f5-89fa2bf839b2) + ) + (wire (pts (xy 336.55 186.69) (xy 336.55 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbadc134-7bcf-4f1e-9ad9-70067a4a1686) + ) + (wire (pts (xy 214.63 172.72) (xy 218.44 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc4d7144-0330-45ad-8690-ff0ee8a8fc7a) + ) + (wire (pts (xy 676.91 300.99) (xy 679.45 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd7766c1-5ae2-4dfa-a2e3-654d7cc99ac3) + ) + (wire (pts (xy 363.22 179.07) (xy 367.03 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdf9a0e7-bc3b-4280-8e73-1a3719734956) + ) + (wire (pts (xy 383.54 273.05) (xy 434.34 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be7b8912-cba7-4c12-b109-35a719cc5fb1) + ) + (wire (pts (xy 190.5 161.29) (xy 190.5 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bea29085-9d82-493c-8095-b9b8e2224fe7) + ) + (wire (pts (xy 340.36 227.33) (xy 340.36 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c09586cb-8e77-4cbb-b209-87e39d9cd10d) + ) + (wire (pts (xy 568.96 298.45) (xy 568.96 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0d7b88d-4478-43d7-81b9-96b70a67ae7e) + ) + (wire (pts (xy 139.7 161.29) (xy 149.86 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c329db5c-5ff5-4e4f-baa6-025c04793a94) + ) + (wire (pts (xy 193.04 236.22) (xy 193.04 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c45bd660-c2ec-4ea6-a712-79e8fcb1f274) + ) + (wire (pts (xy 194.31 223.52) (xy 148.59 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c581e436-46d7-4574-9bdc-0456d58a014f) + ) + (wire (pts (xy 457.2 207.01) (xy 457.2 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c59354ad-9277-4b24-9a8b-57e519d4d20d) + ) + (wire (pts (xy 168.91 152.4) (xy 190.5 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5cc1cc8-2a2e-4ded-a192-b38c63ffc293) + ) + (wire (pts (xy 257.81 149.86) (xy 257.81 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5f62a5b-28b8-4fa7-a4ba-478e9f656fc3) + ) + (wire (pts (xy 194.31 217.17) (xy 194.31 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c61b2851-29f0-4ec6-aee5-a0d0425b463b) + ) + (wire (pts (xy 148.59 217.17) (xy 152.4 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6340dfc-569b-4734-b3fe-61d5c24f7fa2) + ) + (wire (pts (xy 139.7 204.47) (xy 151.13 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6d20376-5df5-47ca-b523-e7d85f50a4a3) + ) + (wire (pts (xy 473.71 137.16) (xy 368.3 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c74c1d05-145b-4c6a-b561-f0f37c98b459) + ) + (wire (pts (xy 388.62 119.38) (xy 440.69 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c76e44c2-da5d-492d-8398-01e9db7e10fb) + ) + (wire (pts (xy 563.88 312.42) (xy 570.23 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c82e57a9-6cb5-434d-af30-8b6ac9acb3f4) + ) + (wire (pts (xy 284.48 231.14) (xy 284.48 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c83668e4-3b88-4d8c-bef7-58ddb8a9d607) + ) + (wire (pts (xy 340.36 250.19) (xy 345.44 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8e84e99-12c2-417d-b1ac-e9430b664483) + ) + (wire (pts (xy 358.14 130.81) (xy 383.54 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c91a3e6a-f530-48c1-bbf2-db299dc3ea15) + ) + (wire (pts (xy 240.03 248.92) (xy 240.03 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c962f1db-dc3a-4e84-8b27-9b76d5ec0e1a) + ) + (wire (pts (xy 309.88 212.09) (xy 260.35 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9946bf2-eec8-408a-bdc1-9a911fce813d) + ) + (wire (pts (xy 139.7 148.59) (xy 146.05 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca0daec2-5b05-4bb2-897f-a1a836b40d4a) + ) + (wire (pts (xy 340.36 186.69) (xy 336.55 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbbc0e43-896f-45d8-9f02-045292157e13) + ) + (wire (pts (xy 311.15 129.54) (xy 293.37 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd79dde8-d626-4fa0-887d-07fb196b114c) + ) + (wire (pts (xy 457.2 260.35) (xy 607.06 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdb0442e-3b88-4e55-bdf3-f6a1b037913a) + ) + (wire (pts (xy 146.05 148.59) (xy 153.67 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce4e1e94-272c-46f9-b78b-0bf22aab22a5) + ) + (wire (pts (xy 629.92 293.37) (xy 626.11 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce598256-5847-45cc-b626-dde13775a432) + ) + (wire (pts (xy 496.57 128.27) (xy 496.57 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0697247-1be4-4cbf-becf-00e3e588128c) + ) + (wire (pts (xy 191.77 195.58) (xy 151.13 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d10d5a2e-4179-4f4f-990c-4f60f240f1be) + ) + (wire (pts (xy 269.24 205.74) (xy 265.43 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d17bf82e-06a9-41b0-8c73-8a23fde15e05) + ) + (wire (pts (xy 368.3 220.98) (xy 372.11 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1b65a40-6fe5-46dc-be2f-4125897a746e) + ) + (wire (pts (xy 215.9 237.49) (xy 215.9 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d24969c4-3e91-41aa-b94b-a26cab411ee7) + ) + (wire (pts (xy 167.64 217.17) (xy 194.31 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d29b6bc9-681a-48ab-a791-9f8d92805829) + ) + (wire (pts (xy 494.03 288.29) (xy 541.02 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d533e549-df79-4fe4-b727-8346288ea036) + ) + (wire (pts (xy 600.71 134.62) (xy 635 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d625aa8a-8689-420b-8cb1-34e9bc7da4f5) + ) + (wire (pts (xy 312.42 226.06) (xy 308.61 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d805bff6-fe7f-40e8-b30b-00a4062f2207) + ) + (wire (pts (xy 284.48 144.78) (xy 284.48 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8bd2279-9389-49ba-897b-d539be81733f) + ) + (wire (pts (xy 398.78 261.62) (xy 398.78 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d944dbcb-cc16-49f1-8d62-bc7127281c81) + ) + (wire (pts (xy 398.78 259.08) (xy 405.13 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9cfea91-9c5a-41de-8fae-0d0d04f142ad) + ) + (wire (pts (xy 368.3 113.03) (xy 368.3 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9d8c09a-4fcf-44e0-9f9f-9cd040bcfaf4) + ) + (wire (pts (xy 541.02 297.18) (xy 537.21 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da22b185-f5a1-463c-8f16-01d320463800) + ) + (wire (pts (xy 308.61 226.06) (xy 308.61 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid daabf1ac-9d9b-4dce-a70d-bc5b71ed5808) + ) + (wire (pts (xy 406.4 121.92) (xy 406.4 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbbff0ad-046a-4c84-97cb-edacf26728d4) + ) + (wire (pts (xy 138.43 176.53) (xy 149.86 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcbc3b70-1d68-4fcf-bbef-4c0822bdd379) + ) + (wire (pts (xy 652.78 292.1) (xy 652.78 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ddf69a9d-b272-4ee1-9f37-a06644099ff8) + ) + (wire (pts (xy 502.92 290.83) (xy 502.92 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de2aa022-e48a-4338-9c9f-c4a16b53d707) + ) + (wire (pts (xy 358.14 143.51) (xy 358.14 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid def4e545-eeb2-40e6-9716-dfcbac97fff2) + ) + (wire (pts (xy 541.02 294.64) (xy 541.02 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df373a7c-1833-48d5-97f8-eaa1441297b3) + ) + (wire (pts (xy 294.64 170.18) (xy 294.64 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df4f2106-ede2-4228-8850-fc98b2fd3753) + ) + (wire (pts (xy 626.11 290.83) (xy 629.92 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e238cf49-17c0-4ad0-938e-013f258835f2) + ) + (wire (pts (xy 177.8 193.04) (xy 147.32 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2979f8b-4c2b-4ef1-a68e-4f0408fcb3c4) + ) + (wire (pts (xy 332.74 168.91) (xy 336.55 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e333d3cf-c846-4d20-a09a-d169fc4bc8b0) + ) + (wire (pts (xy 284.48 231.14) (xy 383.54 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e387300e-2f91-4953-a06b-c405374f3322) + ) + (wire (pts (xy 468.63 116.84) (xy 468.63 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e46cb655-5846-434a-8469-d6a764b16415) + ) + (wire (pts (xy 457.2 260.35) (xy 457.2 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4cc4ff8-a4d3-4d25-93ea-78f18981af7a) + ) + (wire (pts (xy 561.34 281.94) (xy 568.96 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e59d9fbd-2258-4440-8741-fb4ad815e8ab) + ) + (wire (pts (xy 533.4 124.46) (xy 527.05 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6794748-43df-41e8-b78d-5e577cb0ae44) + ) + (wire (pts (xy 383.54 114.3) (xy 438.15 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6aa0323-6f9d-4988-9ef8-027ecb1154ab) + ) + (wire (pts (xy 214.63 179.07) (xy 214.63 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e796c4ff-7927-4314-99f1-3bc1443d5b49) + ) + (wire (pts (xy 177.8 207.01) (xy 177.8 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e94bf692-aae2-41de-a4ca-ae319f586a33) + ) + (wire (pts (xy 368.3 218.44) (xy 372.11 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebd09bfa-75d9-4a7e-9658-3e9a3387707f) + ) + (wire (pts (xy 654.05 313.69) (xy 654.05 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec38c3c0-35d2-4577-ba9d-d1d8d3ead626) + ) + (wire (pts (xy 457.2 133.35) (xy 457.2 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed101cf9-b96c-4fba-9bc5-8cf80798c522) + ) + (wire (pts (xy 328.93 113.03) (xy 368.3 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed44b118-43cb-41f1-8426-97c73413cfe9) + ) + (wire (pts (xy 151.13 204.47) (xy 153.67 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef5fded1-dddb-425c-9ee1-8f7289e9ad1b) + ) + (wire (pts (xy 345.44 250.19) (xy 345.44 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef88f9cb-372a-4bda-b3ec-5222a28533d8) + ) + (wire (pts (xy 440.69 128.27) (xy 436.88 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef9e239e-b31c-4e55-97fa-06c92b5e3c1b) + ) + (wire (pts (xy 138.43 190.5) (xy 147.32 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f09a3e75-0b72-499d-a632-50e903455a26) + ) + (wire (pts (xy 313.69 113.03) (xy 217.17 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0e35324-248d-4649-863c-70519cb6bdd4) + ) + (wire (pts (xy 260.35 233.68) (xy 255.27 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0f7431c-5666-43f8-92c3-10dd6af7741c) + ) + (wire (pts (xy 213.36 146.05) (xy 217.17 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0fd46d4-21c1-4a0c-a55d-6eb9048235e1) + ) + (wire (pts (xy 265.43 217.17) (xy 265.43 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2daf276-bbac-4f59-90d1-97688f39b76c) + ) + (wire (pts (xy 260.35 212.09) (xy 260.35 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4207305-737a-4a78-bcdd-b755c9ccabb2) + ) + (wire (pts (xy 213.36 143.51) (xy 217.17 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f482ed53-2379-4d81-95ce-3982f67b11a0) + ) + (wire (pts (xy 139.7 217.17) (xy 148.59 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f74cf840-5e4e-4136-ba65-464615010a3d) + ) + (wire (pts (xy 345.44 254) (xy 340.36 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f79072a4-b590-41dd-a41c-6b3b921a0eba) + ) + (wire (pts (xy 388.62 147.32) (xy 388.62 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7b5c746-f0bf-4a54-b7db-1981656775a5) + ) + (wire (pts (xy 308.61 219.71) (xy 274.32 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f906317c-bfdd-410b-b1e0-360b522988d1) + ) + (wire (pts (xy 309.88 170.18) (xy 294.64 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa0cd0b9-2ffd-45e8-9127-92ef4c15442e) + ) + (wire (pts (xy 299.72 279.4) (xy 299.72 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb9cd527-4bd1-4a33-b526-d5602c9ac469) + ) + (wire (pts (xy 704.85 312.42) (xy 706.12 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd2256d5-82e4-46fe-93e0-a832589b96e7) + ) + (wire (pts (xy 335.28 264.16) (xy 340.36 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe107d01-1885-45cc-91ce-560ad42014a8) + ) + (wire (pts (xy 568.96 281.94) (xy 574.04 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fed287dc-b02f-4295-8c02-3b37294dc4f6) + ) + (wire (pts (xy 265.43 217.17) (xy 312.42 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff4f011b-2fcb-4eb6-b653-f6bb19d432d1) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 322.58 132.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 003afa00-a512-4c94-b6ce-55d96c9af635) + (property "Reference" "U31" (id 0) (at 322.58 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 322.58 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 322.58 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 322.58 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2dc305a9-90ad-44af-95df-c0a6287e860a)) + (pin "2" (uuid fa911106-9c0d-4de4-a585-57b23f82cf26)) + (pin "3" (uuid c64e2988-c698-4ebb-aead-f474268d9a3c)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 416.56 261.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 055a3fd4-5927-407e-9cc2-a5b208c925cb) + (property "Reference" "U46" (id 0) (at 416.56 252.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 416.56 256.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 416.56 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 416.56 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d39fb7bd-7af8-4271-a080-05bc24a2cfb2)) + (pin "2" (uuid dd528395-d8fc-420f-b81f-35fada7c79cd)) + (pin "3" (uuid db46f639-457c-4dcd-8628-fdb94976bb36)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 133.35 204.47 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 063eec86-8ae6-4e53-9ff4-057e0a321f2a) + (property "Reference" "U1" (id 0) (at 133.985 199.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 133.985 201.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 133.35 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0102fff3-8cc3-437c-b4d4-1e38fb4ef463)) + (pin "2" (uuid aa4d1ed8-1a12-4779-8b2a-3c664e18af0f)) + (pin "3" (uuid 1613b389-d627-4909-ae32-9bf7555e69e1)) + (pin "4" (uuid 050dacad-339e-4b01-8455-e7c152a259da)) + (pin "5" (uuid d4d39975-3943-49e6-aed1-32d59972e741)) + (pin "6" (uuid f25be668-e297-4ea9-9ac1-6e025dd87e94)) + (pin "7" (uuid f8ecc30b-4b42-4c07-bcc0-53036db43d57)) + (pin "8" (uuid a2e11b6a-ec27-4f7a-8ce3-cdacc9666eae)) + (pin "9" (uuid 97ecb03d-0fd7-40c6-ad74-3aec2c0911db)) + (pin "10" (uuid 759ad779-6961-4417-935f-c1f6c9cb56a4)) + (pin "11" (uuid ba441445-9328-4c14-8a5d-8cd02a3df97a)) + (pin "12" (uuid d8a6cf87-a686-4e8d-95d5-73fb476dd51d)) + (pin "13" (uuid 759c201c-0a9d-4d02-a36c-fe38bc66a4f7)) + (pin "14" (uuid 27a84bcf-3a3c-4ae3-a3f0-0d7f01eda437)) + (pin "15" (uuid 877dbd1e-779a-4230-a132-aeda5d6eb84b)) + (pin "16" (uuid 11b9a96b-4ecd-4874-877b-7cc2a9bac6ca)) + (pin "17" (uuid 2b91e24f-859d-4ec8-af37-bab1f34a9422)) + (pin "18" (uuid d35a2190-43ee-4c05-950f-883e685f467a)) + (pin "19" (uuid 671a71fd-75dd-4711-a909-db3041df5e71)) + (pin "20" (uuid fe2a77eb-cbbf-4d58-8133-33d7f5daa95e)) + (pin "21" (uuid 30a1eb50-e18c-4151-9582-51b578564db1)) + (pin "22" (uuid f7568118-89bd-4c77-93dc-294490a096bf)) + (pin "23" (uuid 41b7dd8f-196a-4265-a391-e37f73ef2737)) + (pin "24" (uuid 041b9a19-70a8-4764-b1cb-ff6af1c7b664)) + (pin "25" (uuid f66ad6b8-e92b-4f9e-a01e-e4e71d165035)) + (pin "26" (uuid 45ddf860-9870-4455-9d9a-873f64d54ec9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 132.08 190.5 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0772f850-11df-4e22-9cb3-7249125c1755) + (property "Reference" "U1" (id 0) (at 132.715 185.42 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 132.715 187.96 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 132.08 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 132.08 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 03caaed2-c145-4234-839d-ece0966df2df)) + (pin "2" (uuid c0294134-a3e8-4210-a7dc-4b30209e731a)) + (pin "3" (uuid c90f2b23-b266-450c-891a-4c9ea9fd1b38)) + (pin "4" (uuid d008c30b-192b-417c-b4ac-65c83ded48ca)) + (pin "5" (uuid 4dc7350e-1a13-494d-8dbf-7acd232b2e89)) + (pin "6" (uuid 4d3c8edd-4c0d-4f28-8993-dcfae5982aa8)) + (pin "7" (uuid 8550885c-66ba-432f-8089-623bc09dc832)) + (pin "8" (uuid 23831688-a063-420f-aaf4-8efff2579e87)) + (pin "9" (uuid 74636b0a-a377-47d0-b157-394ab75833b4)) + (pin "10" (uuid e3a24523-a367-44bd-9d5f-435980aab5ae)) + (pin "11" (uuid 9a10020d-0d6c-4acb-9a2c-308cedc62f52)) + (pin "12" (uuid 50926f85-f2da-4e62-a573-43a6fd42d05f)) + (pin "13" (uuid b1fb7c37-90a1-4e4a-b565-96754b6439fd)) + (pin "14" (uuid 9fb01f56-4ee7-49e5-b965-78cdc15befbb)) + (pin "15" (uuid dc8e7b7a-4b46-4db5-8619-6c8eff14a276)) + (pin "16" (uuid 9c4d032c-e3f9-4975-9ca0-ef342aa11efe)) + (pin "17" (uuid a81d018d-e0ad-4434-9c97-bf668c44c1f7)) + (pin "18" (uuid fde0d193-4f2b-4a0c-95f0-c0afb8f7afca)) + (pin "19" (uuid 0abc6e60-b14b-4de7-8632-0298cd0704f5)) + (pin "20" (uuid ffe543db-aca8-41d0-a567-9af69fdce120)) + (pin "21" (uuid b6c27f5e-8fc1-48b6-a90c-2534bc0dd975)) + (pin "22" (uuid 018d4b4b-4ba1-4f50-8c4f-29ddf4c6ea12)) + (pin "23" (uuid c11d2a5c-cd6f-4d1a-a7be-83362fa38f8c)) + (pin "24" (uuid dd789b8d-e26a-4faa-b379-a7e1a9ebaf08)) + (pin "25" (uuid 10b49ccb-ace8-46c2-8b80-ee2b1efaa0f2)) + (pin "26" (uuid b3b65c1d-c6ef-4199-9b0a-4dcb23107f54)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 383.54 220.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 07753331-17e3-4be2-8466-10581f18ed79) + (property "Reference" "U43" (id 0) (at 383.54 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 383.54 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 383.54 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 383.54 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 93e25f68-be1b-4c36-a862-86e0eb75524b)) + (pin "2" (uuid c20a25ae-6056-4f73-8590-9b02d041dee0)) + (pin "3" (uuid 8ad76e00-56a6-4243-90a7-7b99c36ee64f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 321.31 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0d302135-250e-4574-88e7-cc6acc376368) + (property "Reference" "U25" (id 0) (at 321.31 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 321.31 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 322.58 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 322.58 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 79329065-5639-471b-b037-ba60b22f8cac)) + (pin "2" (uuid 39512b51-142a-4a50-a3d9-2f319e3a6988)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 356.87 227.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0d7014f7-0705-4eb6-86ac-bb496025765d) + (property "Reference" "U38" (id 0) (at 356.87 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 356.87 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 356.87 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 356.87 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 49d3eac6-1eaf-4304-ae6d-d6eaa8e8257f)) + (pin "2" (uuid 02d4509f-e9ee-499c-9f09-748615079478)) + (pin "3" (uuid abe4dde8-72a0-4f94-a6c2-0b2506fe63de)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 161.29 161.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e4e12a4-e5fa-4557-9fe1-3c1cfa321be2) + (property "Reference" "U9" (id 0) (at 161.29 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 161.29 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0b6d6886-de14-404e-88cc-e4001574b8ef)) + (pin "2" (uuid 94560708-872d-40a0-a727-16f0c4287e3f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 250.19 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 12715975-3ccd-4eaf-97bb-5c32dc07e7cf) + (property "Reference" "U1" (id 0) (at 121.285 245.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 247.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c63def98-570c-4f8b-a54e-e9896d733526)) + (pin "2" (uuid 9c725771-3b4a-4502-ad4d-83d9003eef8a)) + (pin "3" (uuid a6d76d1e-d637-4a21-9e4c-05545d2bbdda)) + (pin "4" (uuid 9df55c28-f362-4bdd-8aaa-3b4010822e5f)) + (pin "5" (uuid acec168b-6ab1-4db5-8de1-fda45a87fc89)) + (pin "6" (uuid e82a79d7-94e1-4ae1-8eeb-858589b44745)) + (pin "7" (uuid 8f07724e-4b16-465d-9109-293010a49df6)) + (pin "8" (uuid e055cf19-4789-4fa1-a90b-7a26564d537a)) + (pin "9" (uuid 299a3122-74e9-4a90-b2e5-6e8a17f54aae)) + (pin "10" (uuid 01213c91-9aec-4041-878e-0b77c9ce3ea1)) + (pin "11" (uuid 13615baf-7373-4406-b66f-371c5e290389)) + (pin "12" (uuid d0f7daf1-0d3a-4882-9e5b-db0e0965a4ea)) + (pin "13" (uuid 5812c17b-ecb2-4f4e-b109-6af75deb0395)) + (pin "14" (uuid 8383f4cc-6098-4ef9-ae1e-4c61a2d7b2b7)) + (pin "15" (uuid f85ad98d-d66f-470a-8c2b-c0ab909e859d)) + (pin "16" (uuid 85845e91-c4a4-4182-bb5f-a2400ebe6a4f)) + (pin "17" (uuid 2297b061-9237-4392-8eb1-9d89c28ca0ec)) + (pin "18" (uuid 592900e5-7f6c-44de-b5ef-3417a1fc79d4)) + (pin "19" (uuid 952fcace-b8b4-41d6-be78-f5f57bebe402)) + (pin "20" (uuid 28a61862-28c2-46ce-8ee6-2e2aa75f641a)) + (pin "21" (uuid f34bf48e-df31-41df-b4a8-1713fd4fa4c4)) + (pin "22" (uuid b76704dc-9e47-4766-8ff5-382ba5b0a6c3)) + (pin "23" (uuid 0e729c06-2a7f-48c3-a4fc-f906dc2033b8)) + (pin "24" (uuid 030e4710-1602-434b-8a11-e9c4672cbc79)) + (pin "25" (uuid 8e4315bf-0140-4339-a3ee-9ba79c38fcb3)) + (pin "26" (uuid 01c8988e-bf82-4956-9567-6dd6b8f1e3b3)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 356.87 266.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13232f06-7d0c-425c-85e2-4d55bc604d45) + (property "Reference" "U40" (id 0) (at 356.87 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 356.87 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 356.87 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 356.87 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a9a5595-d746-4ee8-a1a7-996232ceb6ca)) + (pin "2" (uuid 406f9bb5-95c4-494e-ad0b-9696aaeb590c)) + (pin "3" (uuid 6577aaad-a1bd-4f33-b490-cabfe2438ac4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 158.75 248.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17b40e3e-32c6-428d-9870-080a0c927396) + (property "Reference" "U3" (id 0) (at 158.75 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 158.75 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 160.02 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 160.02 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 27f8fe96-da17-4238-bc7e-2a4f272256f5)) + (pin "2" (uuid fb1848ad-d261-4961-b62a-d9cdd03c6c54)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 203.2 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b4e67d0-503b-4dbf-8d1c-1a4712fbb68a) + (property "Reference" "U18" (id 0) (at 203.2 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 203.2 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 203.2 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 203.2 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f7d5578-f125-427c-9709-36bb8eeebc73)) + (pin "2" (uuid 89d9c896-9917-4422-83db-2b5be9358a0d)) + (pin "3" (uuid a0723df2-d427-4407-af83-719f111adc93)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 161.29 190.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1cea397d-09e1-4617-9d29-4360c37f4ac1) + (property "Reference" "U10" (id 0) (at 161.29 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 161.29 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e7a6750-8e45-42f9-88f7-004d20898f6b)) + (pin "2" (uuid 696f4e79-ae9b-44ac-bb8c-c84ed3ba0c6c)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 203.2 180.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d485dee-7496-4376-b4a8-7e28afcb028c) + (property "Reference" "U16" (id 0) (at 203.2 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 203.2 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 203.2 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 203.2 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e750a6b-510d-4d7d-9834-4b70fcf582e8)) + (pin "2" (uuid cd505caa-5ef5-49d5-af60-6c373c9de539)) + (pin "3" (uuid 311e42e4-98d0-4e75-b754-4ccd686f2df1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 593.09 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d9fa4af-d440-4192-bf6b-a0c5bf576024) + (property "Reference" "U62" (id 0) (at 593.09 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 593.09 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 594.36 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 594.36 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7b20e3ff-8dbd-4814-90c2-1a19cde8f1db)) + (pin "2" (uuid a3e89eda-1151-4771-bbab-994042f96fbe)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 161.29 148.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 223d4b43-277d-4b57-b649-34d224c58681) + (property "Reference" "U8" (id 0) (at 161.29 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 161.29 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9327cb94-0eab-4174-bd9b-433eade6748f)) + (pin "2" (uuid d2daaf32-8ad6-4770-9b77-e6ecb6834259)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 204.47 238.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 24876994-a0c8-4208-b114-85e7cf3e9273) + (property "Reference" "U19" (id 0) (at 204.47 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 204.47 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ca2a93f6-056b-43e8-bd74-2b6eff9f116f)) + (pin "2" (uuid 99b6659d-7271-43c9-8f9e-02f3eb7ba279)) + (pin "3" (uuid 1d4ec5ce-0c63-4444-a58d-535d40b8bf14)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 205.74 223.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 29aa6728-d06e-472d-9abb-b21384bd432d) + (property "Reference" "U20" (id 0) (at 205.74 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 205.74 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 205.74 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59ccdbb3-a437-4233-98dd-fe8700ecd55a)) + (pin "2" (uuid 8e279d58-f3f3-4dd3-bfd2-8cb524b3eaf7)) + (pin "3" (uuid bccce005-06af-435c-b7ef-56f3841f879f)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 321.31 149.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2f9e067b-175d-4644-ae6a-a159b8e82676) + (property "Reference" "U26" (id 0) (at 321.31 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 321.31 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 321.31 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 321.31 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c81ca34d-a9c3-43b9-bdd3-12831b0f17b9)) + (pin "2" (uuid 6366cfec-3684-46b3-96fe-2dbf27c69df8)) + (pin "3" (uuid 7179b95f-fbfe-404b-b8b2-9e8c4b9c696a)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 323.85 265.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 300ba586-5483-4a41-9863-5b06dd9d19d6) + (property "Reference" "U33" (id 0) (at 323.85 256.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 323.85 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 323.85 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 323.85 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5ab7aacd-fb0c-46cd-bd2e-46a3058342db)) + (pin "2" (uuid 2493c495-5f3f-4c53-bd42-e71e2a1d4ffe)) + (pin "3" (uuid 84907a22-8b28-4a59-a87c-b3bdf467b844)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 378.46 179.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 33abd22b-9a91-4c5b-8e86-f4417058ff7e) + (property "Reference" "U42" (id 0) (at 378.46 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 378.46 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 378.46 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 378.46 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 572f8e7b-0d1b-4dde-a039-82c65dc1cb07)) + (pin "2" (uuid 19fc4089-6406-4319-a997-8058c06910bd)) + (pin "3" (uuid 76c9f7dd-71e3-4e95-8b14-cb7ece74afa9)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 549.91 283.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3420d57f-4d01-4ebe-bd05-e9f33e57a8b5) + (property "Reference" "U55" (id 0) (at 549.91 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 549.91 278.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 549.91 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 549.91 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7ab973d-d4d5-4c82-a84b-1685bff19d51)) + (pin "2" (uuid 14d8eb77-3ea9-4539-82d9-c042236de564)) + (pin "3" (uuid 58df2915-8d17-47a7-8a9d-0bed2e313b05)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 665.48 302.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 36c13d9f-1e1b-4c88-a6e7-7d167f89985d) + (property "Reference" "U65" (id 0) (at 665.48 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 665.48 297.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 665.48 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 665.48 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87ad995f-3099-402f-a62d-b2a5a0ea1610)) + (pin "2" (uuid e67b5efb-81f6-4d5e-b948-268999dcb87d)) + (pin "3" (uuid 37c404be-2fa9-4790-b3f4-718646947426)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 133.35 161.29 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38e2acf2-d8a3-4409-9543-b41b4f8f053b) + (property "Reference" "U1" (id 0) (at 133.985 156.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 133.985 158.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 133.35 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 35369800-69f6-4645-ad18-7c6f5354bdec)) + (pin "2" (uuid d313971f-3cbd-4f78-b6d3-bc04a9174ce0)) + (pin "3" (uuid 74595e2f-92bf-4227-bba0-d06c18495838)) + (pin "4" (uuid fa244996-0add-4ae1-842d-e342121c9b71)) + (pin "5" (uuid 64e3ded3-aa0c-4cf6-9c3c-e07b2128e9f7)) + (pin "6" (uuid 72b69c93-8246-4be7-9ace-61c9256934ff)) + (pin "7" (uuid 3cfe2ac6-1487-4c41-9ec4-f6fa5b7aee94)) + (pin "8" (uuid aa7a63c4-f79e-43e9-9fa3-259d33fc8f8c)) + (pin "9" (uuid 8bf4aedf-0d38-4f81-b37c-6d664d0bb8c0)) + (pin "10" (uuid 7779ead3-a23a-4eaf-ba4f-27a99a6c187f)) + (pin "11" (uuid 0ce838a0-d873-401b-b104-4218044cff37)) + (pin "12" (uuid 1d2bbb43-1d70-4b11-8c3c-4df6b42159cf)) + (pin "13" (uuid f276d930-948a-4567-b547-373dd8b0bb18)) + (pin "14" (uuid 35a9be6e-efc3-4d33-994b-c776f35c5e84)) + (pin "15" (uuid 9add4e41-4ad3-4e0b-b989-8fc7802f5f47)) + (pin "16" (uuid baaa1129-3ddb-409a-a2d0-5fd99bab41a2)) + (pin "17" (uuid 4eb6109b-240b-434c-a5bf-cd2a4564692d)) + (pin "18" (uuid 10ebd3e6-2364-4432-ae9d-a25dfe56b846)) + (pin "19" (uuid 30e0d873-d0c2-4d82-be1c-4e7b621541c7)) + (pin "20" (uuid a20fef62-22ee-41e5-8219-d396573997bb)) + (pin "21" (uuid 988eca1a-ed26-40c6-9f5b-3fb3946a9a0e)) + (pin "22" (uuid 8ff0b024-d987-4adc-a544-2d3e737f18d0)) + (pin "23" (uuid 00b2b669-e36f-483f-8e2e-8952a629ebfb)) + (pin "24" (uuid a2f61401-682a-432e-b730-d8df834d9b04)) + (pin "25" (uuid a445018b-eced-483d-b95b-5be85d4b4f9f)) + (pin "26" (uuid 3425ff02-5924-4296-9752-823004e4af90)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 321.31 251.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3ad993d0-b6ce-443f-87e6-7cd82daf71bc) + (property "Reference" "U30" (id 0) (at 321.31 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 321.31 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 321.31 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 321.31 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 98ce74b0-7819-4f02-a422-118e2e70cb86)) + (pin "2" (uuid e719d17e-4ba9-461e-b689-35bd6821d857)) + (pin "3" (uuid 3af75cfc-416d-4364-abef-f76d27e7bcac)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 452.12 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b4c039e-c284-42ec-b5b2-054e60e4301c) + (property "Reference" "U50" (id 0) (at 452.12 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 452.12 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 452.12 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 452.12 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 12e53cd0-bf7f-4649-b7d7-a466ad147ea2)) + (pin "2" (uuid 734b0c96-d9ba-4472-b225-1e8ee4f8c3aa)) + (pin "3" (uuid 46678c61-eb60-469b-a32c-c0e6062367a7)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 321.31 170.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3ba623a8-dc45-4bc5-bbe6-099881a234c6) + (property "Reference" "U27" (id 0) (at 321.31 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 321.31 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 321.31 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 321.31 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0c1d00f0-7a7b-4bae-9b1a-5ed35f3a5c18)) + (pin "2" (uuid 8f3d9aeb-e9df-49cc-901d-93bc89243051)) + (pin "3" (uuid b5a253ff-9a0b-4743-92e6-dbcf28f6f214)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 323.85 226.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c86118a-af6d-4c4d-b3d6-9c04c9f8f55c) + (property "Reference" "U32" (id 0) (at 323.85 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 323.85 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 323.85 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 323.85 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 22cd7138-0e28-4d3c-9ff2-ff06cd31020d)) + (pin "2" (uuid 0a62fa55-0b26-4249-b991-de237f1c3d50)) + (pin "3" (uuid 4de6e3e7-675b-4d29-81b0-0cf6c239b2f5)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 356.87 254 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 47715120-9563-478d-882c-c62d250453b7) + (property "Reference" "U39" (id 0) (at 356.87 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 356.87 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 356.87 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 356.87 254 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 33dd985e-46a9-4e84-937e-119b0f13b92d)) + (pin "2" (uuid 19727735-784f-409e-bf8d-5a74cf84dfc1)) + (pin "3" (uuid 5a671d29-b23c-461b-804c-e7f090c276b4)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 356.87 214.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 49808e38-d0df-4c3f-a2cb-1b3865e6b6a9) + (property "Reference" "U37" (id 0) (at 356.87 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 356.87 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 356.87 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 356.87 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8014acce-088b-4886-8c5e-e0ec156a037b)) + (pin "2" (uuid cf58a636-7491-478b-85fd-1712e086fd35)) + (pin "3" (uuid 36b5a8df-4486-442b-b01b-e4ed93dbcb20)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 201.93 166.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 49bff292-97fe-499b-8912-0a5da1cdb0bf) + (property "Reference" "U15" (id 0) (at 201.93 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 201.93 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 201.93 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 201.93 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b97a2ddc-9d52-4214-a144-36b423582aa4)) + (pin "2" (uuid 50139f11-50c5-4243-8fcb-cba24390fc0f)) + (pin "3" (uuid 79231b78-3fc3-4f5b-aabf-fa392370c724)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 119.38 281.94 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4da44f59-c23f-4686-930e-73cd5f0db452) + (property "Reference" "U1" (id 0) (at 120.015 276.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 120.015 279.4 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 119.38 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 119.38 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d87b468e-1ec6-4154-8c4b-3880b8e490ac)) + (pin "2" (uuid 59da30df-6a6d-49c5-9a3c-280d3afe17e8)) + (pin "3" (uuid d340e601-fcd2-4320-a7e2-2a081590a0c4)) + (pin "4" (uuid 7da638d6-1ab5-4bbc-b9af-6d2e15e96c2a)) + (pin "5" (uuid b1de377a-c94b-43de-8965-88dc606aea9d)) + (pin "6" (uuid 0e527fbd-3437-4606-9369-13faf3398f25)) + (pin "7" (uuid d614ef91-4050-4ffb-b0d7-ffb4eda474fc)) + (pin "8" (uuid f5a117ba-1360-4fd1-88d2-2b7c84106c14)) + (pin "9" (uuid 7905bac8-e612-463d-9901-cdc73dcba764)) + (pin "10" (uuid c4c66762-8e5d-4623-9551-ec4b4f479742)) + (pin "11" (uuid 7f731f8d-2c13-4d74-9062-79431e28e59c)) + (pin "12" (uuid a5fd2dc2-3c8a-4fd5-82d5-0ff64b7cce77)) + (pin "13" (uuid 816fcdef-28c9-4d4d-a266-f7db55f2ab94)) + (pin "14" (uuid 03afcda7-cc34-409b-a5ce-10ca5ca5c1f4)) + (pin "15" (uuid bca02602-03ae-4129-96ce-c704b7762f79)) + (pin "16" (uuid b8ada1ba-6d4a-4e38-91c2-4ac3c9ac37d6)) + (pin "17" (uuid af027d5e-3760-487f-be0f-d49a9ced3041)) + (pin "18" (uuid d9fb4982-01e9-4861-a70f-e553482866cd)) + (pin "19" (uuid fc8344b4-f4fe-42db-8eec-bcb6d52cc213)) + (pin "20" (uuid d7284073-cbfe-45cf-bd65-2fa2fe4e4280)) + (pin "21" (uuid f4705cc9-cfe9-447f-bef4-0f668c144d8c)) + (pin "22" (uuid 85b50aaa-5412-4893-8af9-fae5de2f6f27)) + (pin "23" (uuid 3a69e0cd-14da-449c-bef1-6bf0584d0f9d)) + (pin "24" (uuid bbac9e56-c89a-4721-b843-0585f0c7f96a)) + (pin "25" (uuid 57112f47-10e4-4050-b85d-8ec4e5594078)) + (pin "26" (uuid e430f0d2-038c-4f95-9f14-63c8f5dc091b)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 585.47 298.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4de91a10-b997-418b-97c5-29046e681dda) + (property "Reference" "U60" (id 0) (at 585.47 289.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 585.47 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 585.47 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 585.47 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bbda2abd-8c09-4d60-a1de-57e42e3f6b51)) + (pin "2" (uuid b9c5137b-05f6-4c7b-bb8e-5bf16d9139ca)) + (pin "3" (uuid 258c6185-d1e0-4eed-8def-9946811be41d)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 641.35 293.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4f24997d-c3c7-4bbf-b381-a2fd90438677) + (property "Reference" "U64" (id 0) (at 641.35 284.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 641.35 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 641.35 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 641.35 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6ed3041c-240c-45d5-b807-f5853f415eb6)) + (pin "2" (uuid 7c3d05bd-cb16-4b25-87d8-53455e0c0472)) + (pin "3" (uuid 46c7d55b-0ff8-4c84-8448-c59a2dd1de39)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 552.45 297.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 504038d8-2790-43a5-bad4-d0d820a64800) + (property "Reference" "U56" (id 0) (at 552.45 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 552.45 292.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 552.45 297.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 552.45 297.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a39767b6-1664-4b99-b194-e2600bc790de)) + (pin "2" (uuid 29f2ff81-f6c8-4b63-ac46-927759f86cf1)) + (pin "3" (uuid 79ecd4df-bbd4-4b69-8902-648c501f8dc4)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 383.54 260.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 50982009-b5cb-4c8d-93eb-02aa2afc1de5) + (property "Reference" "U44" (id 0) (at 383.54 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 383.54 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 383.54 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 383.54 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid caacaefc-a3b5-4794-8353-33f64631f9aa)) + (pin "2" (uuid 4b21da69-cb0d-4981-a26e-cb1fccd15dd7)) + (pin "3" (uuid 37e577da-a823-4caa-9474-c69ff71a4be1)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 351.79 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 50ce07d7-bba1-4195-b10c-191f8c96fb43) + (property "Reference" "U36" (id 0) (at 351.79 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 351.79 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 351.79 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 351.79 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 230e27c0-1109-485e-83f5-8823f13ed5e8)) + (pin "2" (uuid b469f9ea-33fc-4656-aef4-b22b7b980544)) + (pin "3" (uuid 9a7dd6d0-f497-4862-bcde-3e05bacf9f14)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 229.87 172.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51593f19-d80c-4a9e-9111-f2a48827b20d) + (property "Reference" "U22" (id 0) (at 229.87 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 229.87 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 229.87 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 229.87 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0220865d-700c-48b0-b6a8-cf90b8887e18)) + (pin "2" (uuid 09c2d56f-2ac1-413d-9696-bfad7ab24419)) + (pin "3" (uuid f42cc9d0-116a-4f50-bc0f-5ad3962a0481)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 232.41 203.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53a4dccd-01bc-4906-ba89-8a7e8e2c70ec) + (property "Reference" "U23" (id 0) (at 232.41 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 232.41 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 232.41 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 232.41 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7c3ec5a7-dd0f-4f5b-938a-ebba4d0767ba)) + (pin "2" (uuid 0fe651b4-5336-44a7-8413-575ca634fa07)) + (pin "3" (uuid 20deb1fb-8046-4589-8a2b-b3e7625185a8)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 511.81 123.19 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 588181a8-d04e-4558-8388-7743789d0a0d) + (property "Reference" "U53" (id 0) (at 511.81 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 511.81 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 511.81 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 511.81 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 41b9ae5a-c378-46c6-adbd-81817596c1b6)) + (pin "2" (uuid 9f18c917-b955-42f1-b6ef-f31432c01f4f)) + (pin "3" (uuid 841e78ac-5297-4bc3-9071-1cb727c62a1d)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 552.45 313.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 64cbc8d3-346d-4877-80f5-1167cb3bfcaf) + (property "Reference" "U57" (id 0) (at 552.45 304.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 552.45 308.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 552.45 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 552.45 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6488b51a-fc9e-473f-8753-381a3ecc2557)) + (pin "2" (uuid 23abd7c6-047f-4aaf-87aa-cc3269acca2f)) + (pin "3" (uuid e22caaea-26f7-403b-bd5e-63b7020e6519)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 485.14 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 661e69cf-09c6-4582-9f5e-83bafb2a8e4e) + (property "Reference" "U51" (id 0) (at 485.14 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 485.14 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 485.14 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 485.14 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 938fc0a9-b3db-40cc-81cf-1d37879e7aec)) + (pin "2" (uuid 38846d3d-5319-49a4-a197-fe42fa0a5cca)) + (pin "3" (uuid 7fefe746-9a04-4446-a939-bd46ef23b062)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 162.56 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6710a37a-dc82-47c9-a10a-37094f424d1d) + (property "Reference" "U12" (id 0) (at 162.56 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 162.56 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 163.83 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 163.83 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fa551af-9f38-4715-8465-008c7b0bf0ec)) + (pin "2" (uuid f7caa1a3-bff8-455f-b16e-d6127fa4ae8e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 613.41 260.35 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6b62f544-6c06-436b-bdc0-d52224cce0a9) + (property "Reference" "U1" (id 0) (at 617.22 259.715 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 617.22 262.255 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 613.41 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 613.41 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7be9fe25-106f-4092-a22f-fd2f9c8d0331)) + (pin "2" (uuid 865058c4-ecb6-41ff-a467-90a7727e5826)) + (pin "3" (uuid 744b7d81-e4df-43a1-8e58-67b0056d2d49)) + (pin "4" (uuid c7246aea-cfd7-4118-80df-9aaf67651113)) + (pin "5" (uuid 6f886761-86ad-4773-9688-f13123712ba0)) + (pin "6" (uuid a33fd364-1b24-448f-ae34-46092e4a314d)) + (pin "7" (uuid c765dd86-ae0a-4f41-8aa3-248593d1a6f5)) + (pin "8" (uuid 94876de8-d780-4b20-9c73-d5c2a05b7bbb)) + (pin "9" (uuid 3c72e35f-a371-4fa7-9b5f-078067a55a5b)) + (pin "10" (uuid 218cce8a-1128-4407-950d-683d20a33911)) + (pin "11" (uuid 2db60430-86b4-4f65-b939-fea6efe4f104)) + (pin "12" (uuid 218ae2a5-c26a-49a5-bd36-36ad45e9a7dc)) + (pin "13" (uuid cad8033c-f7e9-45fc-ae91-d070355421a7)) + (pin "14" (uuid a1e94861-5871-424c-bed3-dae8e3631852)) + (pin "15" (uuid ee326ecc-a59b-41dc-bc18-b6832ee01a30)) + (pin "16" (uuid e37a5ef6-166d-4d84-afdd-125e0665a88f)) + (pin "17" (uuid 3f5a17bf-bbd4-4bb0-a317-b9a5791dcbdf)) + (pin "18" (uuid 29ddaa00-8f8a-42d9-9734-59dfae3b52b9)) + (pin "19" (uuid d93fb077-e356-4187-ac37-fcdfee0257cc)) + (pin "20" (uuid 657e7e89-dddb-4948-b963-321e05fd4c1b)) + (pin "21" (uuid b0bf78c8-6275-45b6-8d78-7564195967a7)) + (pin "22" (uuid a8285384-daeb-4525-9639-cbc97326034c)) + (pin "23" (uuid 24120ff5-e6d4-46ea-897f-9aa5fbadd02f)) + (pin "24" (uuid c4ec1b92-893d-466c-b3d3-72158aaffd11)) + (pin "25" (uuid 1aae5d34-7b1d-4fa6-9527-365d11ac21a6)) + (pin "26" (uuid e9c0df78-f254-4b7a-af53-07eeccd93d3e)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 445.77 273.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6ff9fa6b-6a12-4984-99cb-c913d2456a58) + (property "Reference" "U48" (id 0) (at 445.77 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 445.77 267.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 445.77 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 445.77 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 647863bb-fa37-49d3-a1cd-221b91cba14a)) + (pin "2" (uuid a84c5db9-197b-486a-90a0-4803e1198c3d)) + (pin "3" (uuid 53e385e7-a2cd-4bb5-83bf-7d719e7ee2e4)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 351.79 171.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 72ed7e02-ebc8-4964-bd35-dc5858dc5c1d) + (property "Reference" "U35" (id 0) (at 351.79 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 351.79 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 351.79 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 351.79 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6ddf3032-2e8d-474e-8d2c-cfd177be2c30)) + (pin "2" (uuid 15d8d631-f75d-4167-b55f-e0386c384185)) + (pin "3" (uuid 171ad5da-b810-4769-be83-19cb03fa505e)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 201.93 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7802d909-afd9-4aef-b8c2-30289ea2c506) + (property "Reference" "U13" (id 0) (at 201.93 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 201.93 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 201.93 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 201.93 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 21f54170-3df0-4c96-b1d1-5791ea6cf6b3)) + (pin "2" (uuid ad631ce6-b5f4-4141-a9e1-4bec959bd17e)) + (pin "3" (uuid fd9a8929-da15-4e6d-82b1-f0d8e1ede261)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 203.2 195.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7e01e5ba-6162-4ea6-82e5-2aa3f22de60d) + (property "Reference" "U17" (id 0) (at 203.2 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 203.2 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 203.2 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 203.2 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 88b3dc74-0316-4d8b-91e0-9e8bdc6b92ec)) + (pin "2" (uuid 1f0b1b89-cac6-4a05-a83f-ef1c073bb004)) + (pin "3" (uuid 778bc63a-51d3-43e0-8858-6d6b3ce115e4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 161.29 204.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8401e813-02bb-4915-a2ea-f10f417fc273) + (property "Reference" "U11" (id 0) (at 161.29 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 161.29 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d5a907a-6a45-475d-b74b-b53d2515f386)) + (pin "2" (uuid fb27a1ca-15ce-4d44-89ba-5d18c842199f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 119.38 264.16 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b934376-fb91-44c7-81fa-39aae62dbe31) + (property "Reference" "U1" (id 0) (at 120.015 259.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 120.015 261.62 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 119.38 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 119.38 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92d08503-635d-49fd-887a-4b5491947e9d)) + (pin "2" (uuid 3b79fe16-56a5-40ee-a676-1a0bbc27b498)) + (pin "3" (uuid d9d26784-0ad1-433d-b9c4-862d6b5b5408)) + (pin "4" (uuid 23f3ad44-2c33-455a-86d6-807767a51438)) + (pin "5" (uuid 0a0c823d-22ea-42a5-84db-d3365be09bc9)) + (pin "6" (uuid 84aae7d5-762b-467c-9a3a-34ccab7c4b04)) + (pin "7" (uuid a67b7c53-1128-45cd-ad15-a2034aff15a7)) + (pin "8" (uuid fae8dab4-42b8-43a1-8901-297dc9598113)) + (pin "9" (uuid abf43147-5779-493d-96b6-0e9617980ef7)) + (pin "10" (uuid bb4a6661-279c-419e-917f-9f60102cb15c)) + (pin "11" (uuid 8934078b-f2e1-4ad4-970c-05dbb040cd7f)) + (pin "12" (uuid 19051333-a321-4bbf-bdee-ebc344f20749)) + (pin "13" (uuid 410eefa0-9498-4726-8136-4c5ae144246d)) + (pin "14" (uuid bf37df29-46d8-4c2a-899a-5543bcfaf9c6)) + (pin "15" (uuid 1573ef4b-4da5-4df9-8de5-12c7440ab9e8)) + (pin "16" (uuid 672b8c98-275e-40ec-bca2-cc8f045aab4c)) + (pin "17" (uuid 9cb992e7-148d-488a-8a69-661e54ef76ac)) + (pin "18" (uuid 92a3ef07-b8af-478a-b544-efd9d6cbe00d)) + (pin "19" (uuid 6dc1edf5-f987-4045-b270-f7854e2836bc)) + (pin "20" (uuid b81425bc-0b33-484e-b2fe-5c0bcd410a25)) + (pin "21" (uuid c8086463-493f-4b71-9478-6847b3c21db1)) + (pin "22" (uuid 9269a6fa-644d-4184-b596-c047c47c0a2f)) + (pin "23" (uuid efac5e23-4eda-4524-845d-fa6155a9ea91)) + (pin "24" (uuid 4d86f4b4-f928-43ce-b372-672ab3d877a3)) + (pin "25" (uuid dc4f7292-2b99-48d8-950e-f735763f111c)) + (pin "26" (uuid 30b9b501-f6eb-4c3e-a4d9-ee84f804b803)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 232.41 232.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9935bd94-f4c3-45f0-a806-4f4d93e9c4dc) + (property "Reference" "U24" (id 0) (at 232.41 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 232.41 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 232.41 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 232.41 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3167d604-fc2b-4025-8f19-5b0432d39134)) + (pin "2" (uuid cb03ce57-97a8-4d81-8d96-3164067ab90d)) + (pin "3" (uuid f8ce67e6-7401-44bd-89c0-fc30ef55e55f)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 351.79 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 99ea1426-bb63-45e2-a377-60b337d70d72) + (property "Reference" "U34" (id 0) (at 351.79 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 351.79 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 351.79 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 351.79 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34cf433f-23e4-4b64-85ce-59f3605e63f6)) + (pin "2" (uuid cb5c1029-38ea-4fe6-9d98-0826856a7355)) + (pin "3" (uuid 0a0ca6f3-f1fc-468d-ab9b-703ea8ac636c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 133.35 233.68 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9defd377-f16f-49d1-888f-a561c4e92514) + (property "Reference" "U1" (id 0) (at 133.985 228.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 133.985 231.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 133.35 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6f5d7c7c-2e08-4ab1-84e8-6f22d1ad7e91)) + (pin "2" (uuid 46583812-d1c0-4d79-ac04-b06b2608f8a2)) + (pin "3" (uuid 4f1201f2-2c8b-4f7b-8311-27b4375df227)) + (pin "4" (uuid 333e0aca-84c2-4e39-af9d-8d61699d7513)) + (pin "5" (uuid 942257a2-9ec7-4b07-b007-f1c6aadc66de)) + (pin "6" (uuid 37a9491b-50a8-47f3-94d0-4d754cb54af8)) + (pin "7" (uuid 472a15ba-7507-4377-a588-bfe60b46ca60)) + (pin "8" (uuid b579078a-5ecc-4686-927d-de26fb03a4b7)) + (pin "9" (uuid d6ecb135-d11b-44af-8f46-1184fa0bbf29)) + (pin "10" (uuid 6c328b48-2bfa-4a85-b89b-43a13bbe6e0f)) + (pin "11" (uuid 24ecdce9-ec60-4fe6-b58f-8078e002a3c1)) + (pin "12" (uuid d1e29f8d-d5fe-4e05-b67f-9dd3718a177d)) + (pin "13" (uuid ac9398c2-ba64-4462-ad0a-8deff2a9f5be)) + (pin "14" (uuid 24c9ddc2-c6e5-4d58-9fb6-b7ce089ed7dd)) + (pin "15" (uuid 1f7227fd-9ed9-4a5a-938f-5ee57f6f2c34)) + (pin "16" (uuid 09f5489c-b68b-4736-bd2d-b4c92fe8c76d)) + (pin "17" (uuid 41084898-bcb8-4c18-9235-a747cc7a39ee)) + (pin "18" (uuid 4fbc4ff4-22ec-464d-94ed-330fd9ea26e5)) + (pin "19" (uuid e05f3350-e7ec-46a4-a75d-32ca8f5c8b5a)) + (pin "20" (uuid ba3f7cd1-0a39-45fd-99e0-69c6ab42bc16)) + (pin "21" (uuid e9cae0ce-28f5-4728-9aee-1f426e17cfdb)) + (pin "22" (uuid 98748f58-56b8-433a-91f3-f1dfdf49a5a0)) + (pin "23" (uuid 808898c5-8ac0-4490-8c96-32d170fbd4c8)) + (pin "24" (uuid d8699573-b180-4e17-a8ac-4a1016f70546)) + (pin "25" (uuid faf8eff4-d216-42d7-bc40-bb93ea5a7c7e)) + (pin "26" (uuid a583462c-7008-4f59-b4a5-9815403d0493)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 161.29 137.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e70713c-2d21-4c13-97a4-0bd9ef82b6ac) + (property "Reference" "U7" (id 0) (at 161.29 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 161.29 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2632c145-48de-461d-ac81-7f7ae3ed33e1)) + (pin "2" (uuid 1bb578c8-d761-4124-8340-cd6a529ec09c)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 377.19 156.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9f2ba0a8-d2ec-4b84-b109-3f3206614a86) + (property "Reference" "U41" (id 0) (at 377.19 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 377.19 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ad9adbb-d457-4bf3-893d-d2a4e35ef223)) + (pin "2" (uuid 78645447-1c4f-43a9-9e71-2293eddabd08)) + (pin "3" (uuid d2ff0d5c-3843-4ccb-b523-b64c3da2dd34)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 588.01 314.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a993410e-af66-4172-9c1e-75841f27daea) + (property "Reference" "U61" (id 0) (at 588.01 306.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 588.01 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 588.01 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 588.01 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fbe10cb4-51ba-40f6-b245-aeb32d3822ff)) + (pin "2" (uuid a382c0c9-3a8b-4ac8-be01-1296f8dff62c)) + (pin "3" (uuid ebd4e350-7418-4dd6-8939-2c5b0dc215d1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 157.48 281.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid acd904fc-9635-487d-8874-02aab598068a) + (property "Reference" "U2" (id 0) (at 157.48 275.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 157.48 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 158.75 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 158.75 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9e48e496-6ce2-4e49-b3f4-c9fc5cc1ca53)) + (pin "2" (uuid 48ac877a-6187-4618-b06c-23358dc75d94)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 449.58 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b5ed4d76-2cbf-4821-9f80-0eb44b2706d7) + (property "Reference" "U49" (id 0) (at 449.58 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 449.58 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 449.58 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 449.58 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 44574823-b445-4490-b7b3-558d59e46706)) + (pin "2" (uuid 24a4ff99-a4d8-4c81-bcbe-64c47c81ff0a)) + (pin "3" (uuid 7a4fbb8a-2550-4e68-a8b9-4a2ebc7e1fe2)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 228.6 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid be1cde61-70c1-4c0d-88f6-fe25d70ec7f7) + (property "Reference" "U21" (id 0) (at 228.6 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 228.6 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 228.6 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b70ae4bb-d4a0-435d-bbe1-b2892ea58626)) + (pin "2" (uuid 4a318905-9d11-40cc-b100-ac6d0b826e09)) + (pin "3" (uuid b08bf637-bb08-47a5-8aad-fbc90e93de51)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 160.02 217.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bf94e146-dec1-4adc-b55b-2605a68b2600) + (property "Reference" "U5" (id 0) (at 160.02 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 160.02 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 161.29 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 161.29 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e71e11ed-1c73-4c3f-885b-14bcd6cce743)) + (pin "2" (uuid 9e5d969b-4cda-4593-9a70-8f28a0574581)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 641.35 134.62 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c66b9d57-e727-4057-8e30-52eb20d317b8) + (property "Reference" "U1" (id 0) (at 645.16 133.985 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 645.16 136.525 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 641.35 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 641.35 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 79458176-e7fd-4fde-9457-a70df60b0f2e)) + (pin "2" (uuid d503b894-82b6-468d-960d-1ab2640b031d)) + (pin "3" (uuid bf1d4598-be7a-4506-b3d3-3417197a56fd)) + (pin "4" (uuid 0100a087-9fd4-4ae3-8ee6-8458136af623)) + (pin "5" (uuid f3aa4f24-32d3-4739-95bf-b52f6dd0c641)) + (pin "6" (uuid 3adf0ca0-6b27-402a-9654-db6a4081be5f)) + (pin "7" (uuid c559868e-590d-429b-b979-a1c1cce1824d)) + (pin "8" (uuid b9a00644-66f4-466f-a1cc-9ec5d1f1a747)) + (pin "9" (uuid 9cad7d33-474d-4f3a-b6e6-623241c7589a)) + (pin "10" (uuid 38c2c2c7-e060-4cb4-9f10-780e00deb28f)) + (pin "11" (uuid b5ed70a8-4433-4ffc-a9be-3a45b128f2bd)) + (pin "12" (uuid cbdf80de-076a-48f1-b71f-1b69e385d787)) + (pin "13" (uuid 0fc66c8b-b36c-4a63-93fb-75c5c8b95b99)) + (pin "14" (uuid 0589c028-f129-4be4-95c1-ab4d2cce5a76)) + (pin "15" (uuid c8974425-8e3e-4f40-bef2-bc31bc317fef)) + (pin "16" (uuid 48824c2d-125b-4b97-be28-f0469b850186)) + (pin "17" (uuid 2e32c7ec-d6fa-44a6-9982-2a7b18ee7b1e)) + (pin "18" (uuid c3a370eb-f04a-4839-86ee-1bcf6c9ec437)) + (pin "19" (uuid 39887456-f1f8-4020-84ed-1004a689c35c)) + (pin "20" (uuid 84b3f435-efe3-4d93-8336-12cf1437b1d8)) + (pin "21" (uuid 62b2e567-6087-4d4a-914c-9dd21bc8327e)) + (pin "22" (uuid 9883e260-ae52-4cbd-a686-5d09493c912e)) + (pin "23" (uuid 9a515f44-4c52-4f23-b8ea-2b32b168f9c2)) + (pin "24" (uuid b6ca6ca3-65df-41bf-8149-fc7ce57b6c0e)) + (pin "25" (uuid c0be2328-1940-4980-b5c4-c3455b08157a)) + (pin "26" (uuid 9d83afe7-0ebf-4a50-b59f-d74ce694668a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 132.08 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c80a43b6-9cb8-48c4-8dae-e19bc67be03e) + (property "Reference" "U1" (id 0) (at 132.715 171.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 132.715 173.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 132.08 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 132.08 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a96790df-311d-49b8-b39d-35398bae0a72)) + (pin "2" (uuid c8db0219-4962-47be-97c8-6aa9273e39b8)) + (pin "3" (uuid 3ae46c08-37fc-41f8-acd0-14030b4a1f52)) + (pin "4" (uuid 75f82be2-4200-4fa3-a1f1-6bf5b568d7a0)) + (pin "5" (uuid edddd0e2-0f8a-419e-8476-3a0eee3c312d)) + (pin "6" (uuid 69ab9b73-2f3f-4f3e-8ab1-74af26e22844)) + (pin "7" (uuid 13d339a4-0d68-43bd-9317-11be3d8fa9f2)) + (pin "8" (uuid 64997cde-4e45-4e7c-82b5-8396522e80e3)) + (pin "9" (uuid e432daf2-8643-41b3-8598-e282b39497bd)) + (pin "10" (uuid 3dd34124-01a8-4010-be91-b2ad196313f2)) + (pin "11" (uuid 49d6a993-9ca4-47ec-af8b-dd7d628c7a2b)) + (pin "12" (uuid 46efa196-48b7-4259-9ef4-c58714dd7386)) + (pin "13" (uuid 6afbe5e9-fbde-483a-aae0-df6d97472268)) + (pin "14" (uuid f448b7cf-2f0b-4818-a987-005966f3d5ce)) + (pin "15" (uuid 8a2de9f0-7789-47ce-8154-480eae16ea3a)) + (pin "16" (uuid 8debcb2b-f4ab-4334-a94f-d23771136099)) + (pin "17" (uuid f5975f00-7f9c-4d15-96b3-1616da9c4299)) + (pin "18" (uuid 74001a59-d5a1-417d-9856-36b259b56139)) + (pin "19" (uuid d3f3f39a-116a-4693-a45b-e12e87d6a07c)) + (pin "20" (uuid 34eaea94-86d6-4e45-a69d-526103ede5eb)) + (pin "21" (uuid 70c01394-e710-42ee-8dd7-ff88dc9ff01c)) + (pin "22" (uuid 2f5acd81-afb6-4b96-9dfe-21cdd75f19c6)) + (pin "23" (uuid 7ea17b52-f7de-4d6d-bfa5-8798175e0c50)) + (pin "24" (uuid e7f9763d-2150-42d1-810d-ea34d2340313)) + (pin "25" (uuid 858358bc-7ace-4046-b905-b716422ea4dc)) + (pin "26" (uuid bd169500-df22-468a-87f0-62e2531bf5d6)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 585.47 285.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c9af201a-c49f-436c-9458-3a9f9380eff3) + (property "Reference" "U59" (id 0) (at 585.47 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 585.47 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 585.47 285.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 585.47 285.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e1a7e5c-9fae-43e1-9a38-7ca8be75c64e)) + (pin "2" (uuid 7167ea20-756b-452e-b723-0ba524ab51d9)) + (pin "3" (uuid e2a8b190-34c3-4dcc-8cfb-6dbaa37834c1)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 485.14 129.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d04f2ede-e77d-467c-bf58-e90ca4c867d3) + (property "Reference" "U52" (id 0) (at 485.14 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 485.14 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 485.14 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 485.14 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7702ae45-4a52-485d-8b3d-4054a486b511)) + (pin "2" (uuid 0458a2d8-64a8-4bc8-9e91-71236da8365d)) + (pin "3" (uuid 0c75bea9-a01c-4fd8-ad04-dcd16028ec6a)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 201.93 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d29286c9-6060-4909-b808-1ca885cbcda4) + (property "Reference" "U14" (id 0) (at 201.93 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 201.93 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 201.93 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 201.93 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 68ab140b-301d-4222-8158-8dffe75595c9)) + (pin "2" (uuid 0962b949-fd6d-42da-a3ea-d9421c41742a)) + (pin "3" (uuid 7aaf2e94-b6c4-4bb7-b6d4-c0c15c75f0c6)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 693.42 303.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d6ffbc75-147f-44d2-9635-08574a7da222) + (property "Reference" "U66" (id 0) (at 693.42 294.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 693.42 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 693.42 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 693.42 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34c46468-2534-40de-b11e-2f6a042a1560)) + (pin "2" (uuid 1a9423b7-737e-4bac-94eb-d37a93cc40ac)) + (pin "3" (uuid 87018897-d75c-421d-a420-1531aee90378)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 133.35 137.16 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d73c987d-916b-412b-b0f2-48eb3bc024c7) + (property "Reference" "U1" (id 0) (at 133.985 132.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 133.985 134.62 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 133.35 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8577cfef-b790-40cd-a5a7-3b440340c9a3)) + (pin "2" (uuid 917c8be2-2a81-453f-b4e2-d77f179ab1eb)) + (pin "3" (uuid 43293384-4771-4cf7-bfbd-7f2e332af740)) + (pin "4" (uuid 5ab105c5-d525-4cc6-bedc-bfd67ad430d0)) + (pin "5" (uuid 2d8ceb0e-a4dd-41cd-85c8-98a9138d9a11)) + (pin "6" (uuid a878edd2-8f31-4281-84e8-d86d64d7ca78)) + (pin "7" (uuid 413c4cab-fc63-4953-b871-baf7960753f4)) + (pin "8" (uuid 25f64389-266b-4367-9ec7-98f1ad1e8d60)) + (pin "9" (uuid 2d564b0b-ed0a-4d01-ad9a-d7b1ea4a8ab7)) + (pin "10" (uuid 068294b7-c781-4a7a-b3ec-0e6e80644fc0)) + (pin "11" (uuid 767d9786-6924-46a9-af29-d73033dc5921)) + (pin "12" (uuid 10f001cb-dbcb-4ef1-8e0b-f6485790b409)) + (pin "13" (uuid 66ce82b4-505e-4233-b4d7-3430acd8dbc5)) + (pin "14" (uuid f18c42e3-8382-4508-a4a9-b0e1d2a66191)) + (pin "15" (uuid ea257bbf-69af-4780-a524-919e32ba1d2d)) + (pin "16" (uuid 2a76883d-c27b-490b-ac19-e6ec99004c55)) + (pin "17" (uuid 902fbcf7-262e-4bb1-a88c-bd9dcba45850)) + (pin "18" (uuid 68fb65fd-c1ca-4079-aecb-ee1763f10e1d)) + (pin "19" (uuid 28d42572-22a8-48b4-bac7-13bec21509e2)) + (pin "20" (uuid 45aaafc8-7f15-4539-aa93-1e6832eaf78d)) + (pin "21" (uuid 7cdb945e-54f6-4abd-85a0-840ae3455b78)) + (pin "22" (uuid 11c582cc-3bae-4794-a154-6786294ba8e2)) + (pin "23" (uuid 421210df-c4a1-41c7-b16d-4df2cb618326)) + (pin "24" (uuid 4c19cb9d-621a-447f-a3e5-7117c7ffda36)) + (pin "25" (uuid 884ad16e-495c-4743-aa0e-3f76acfb7308)) + (pin "26" (uuid 54b04c8f-bab7-4d03-82a6-d103d06c1a30)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 160.02 233.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d88cba9d-4c6a-419e-9c8d-f7a99e0d0c1a) + (property "Reference" "U6" (id 0) (at 160.02 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 160.02 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 161.29 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 161.29 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b436d218-a3e7-4ebd-9f94-49f5a75ef3e6)) + (pin "2" (uuid 3928bb7c-a99d-4535-a274-ff6d48407857)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 574.04 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d929dc57-4508-4223-96a2-2fec8dd4db9d) + (property "Reference" "U58" (id 0) (at 574.04 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 574.04 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 574.04 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 574.04 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c2153a1f-386b-419f-ad03-5ae4fe4ed0b8)) + (pin "2" (uuid 3c928197-33aa-4a12-a27e-96640d90d3e4)) + (pin "3" (uuid e80c564c-702e-4b4c-9dc3-87e860bae028)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 445.77 233.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid daa80fc2-6fbd-4c77-8eca-1a64218a9f8f) + (property "Reference" "U47" (id 0) (at 445.77 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 445.77 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 445.77 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 445.77 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 54985576-adbb-4c78-af07-ed5f1949dee9)) + (pin "2" (uuid eca32fe5-6539-4c18-bfdb-e79906854aca)) + (pin "3" (uuid faef72f5-c675-46dd-9d69-8982a14c7411)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 544.83 124.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dab38dc5-3729-457b-bdc7-9c5a5c212fba) + (property "Reference" "U54" (id 0) (at 544.83 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 544.83 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 544.83 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 544.83 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 51bb04d0-16bd-4b1c-9f0c-d4fa19b110af)) + (pin "2" (uuid 838bc416-8087-4334-aa26-7ddb94d60be0)) + (pin "3" (uuid c048bee5-f70c-49dd-8590-d9fd4a6bca35)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 133.35 217.17 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid df498aea-b7b0-499a-aba4-81f65c23d940) + (property "Reference" "U1" (id 0) (at 133.985 212.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 133.985 214.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 133.35 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0f291dcf-7f8b-48ae-8f2c-53a436f16a71)) + (pin "2" (uuid 9a6729e5-11fb-408e-a064-d373125a1b32)) + (pin "3" (uuid 1375d9e2-4bfe-4438-8cce-957c51f76db3)) + (pin "4" (uuid e4d6633d-ea73-468f-b422-bc5a86332857)) + (pin "5" (uuid 9f1262e5-8847-4ba9-9fba-dad1d70bacdd)) + (pin "6" (uuid 5003ea8d-2f6b-4084-9b31-a8f202a51248)) + (pin "7" (uuid bca00fdb-c037-42a0-abb8-b3976c5fea91)) + (pin "8" (uuid 66fc1e97-4da6-468b-8b15-063ca23f6d47)) + (pin "9" (uuid 73d8585a-4f9a-4d2a-a7e7-729667ca8aac)) + (pin "10" (uuid 1e087ffb-9908-4fb1-99e0-012238e6d63e)) + (pin "11" (uuid 6b7299c3-1130-498a-8dfe-b30f601682f7)) + (pin "12" (uuid 542e8dc9-c8e8-49b0-b95c-13a646d1286f)) + (pin "13" (uuid 13e75c45-af2f-402a-98f5-973e25d715d5)) + (pin "14" (uuid c4c3793f-bccf-4a5b-96f3-d218b6a00551)) + (pin "15" (uuid a57f097f-3ea2-4575-9f78-d0eeb8122469)) + (pin "16" (uuid e406d141-e812-485e-897f-36ddedf3665f)) + (pin "17" (uuid df8f496c-76b6-4a9c-9e13-f76d1d571758)) + (pin "18" (uuid 964dfb02-f0b0-4eb9-8274-6e030473a072)) + (pin "19" (uuid 924a8f3b-2671-4008-aa5a-10273aff69a1)) + (pin "20" (uuid e02c7be8-2d84-47d9-abf2-d2aeb71f1888)) + (pin "21" (uuid faeb86df-e709-45ae-ab8a-877243d1dd84)) + (pin "22" (uuid 2e83cf0f-4eef-486d-a56a-95ae3039fd3d)) + (pin "23" (uuid dcefa695-3546-4d72-9830-728ba41e3b2b)) + (pin "24" (uuid ffbffc1e-4141-4f11-a01a-4f4444c343d8)) + (pin "25" (uuid 173bc86c-4f8b-4de0-b0de-71c4b43c494f)) + (pin "26" (uuid 73839e2b-7b58-4d3f-8625-3b4384b57f70)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 158.75 264.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e581a530-6cf6-46a1-babd-1ccc871b2f73) + (property "Reference" "U4" (id 0) (at 158.75 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 158.75 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 160.02 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 160.02 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e2607508-1d16-42c9-93bd-16821d5ad7d8)) + (pin "2" (uuid 588e7f1d-67a3-4206-8509-b0f9e94f1e69)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 133.35 148.59 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5ae34b1-e61e-479d-a58c-d35cd1957a7f) + (property "Reference" "U1" (id 0) (at 133.985 143.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 133.985 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 133.35 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad129a8e-a8ca-49a2-84f5-f063efd90970)) + (pin "2" (uuid 9e768b05-5387-40b1-b507-f8d0b2415c69)) + (pin "3" (uuid 84900d2a-5dd2-4ec7-ba86-d0f954bf2a91)) + (pin "4" (uuid fe494b1e-695d-430c-bcaf-8b6be4c5d7a4)) + (pin "5" (uuid 36289fcf-9836-44eb-8b86-a86961eaebee)) + (pin "6" (uuid 33bd785f-b659-474e-a3e8-843072458e18)) + (pin "7" (uuid 0bf43ecf-cd0c-4c68-acca-89019a9eebca)) + (pin "8" (uuid 1a564e08-5065-44c7-9549-592c47078e5a)) + (pin "9" (uuid 167839b4-d6fb-4924-a369-b1d7da2af9c1)) + (pin "10" (uuid 47b41f81-d3c8-4496-8fb4-32c4bf878166)) + (pin "11" (uuid 59ea2bd2-1e7b-4b96-a699-df150841a1df)) + (pin "12" (uuid 7c2e0789-4885-40ad-a9f6-d63ed29a4cb6)) + (pin "13" (uuid 231fbf8e-5406-4226-ae66-f1090d00eebe)) + (pin "14" (uuid b8d3f5d0-7931-448d-9d6b-03a5f08eb48b)) + (pin "15" (uuid 6b20cd40-a034-4967-9acc-256700566b6f)) + (pin "16" (uuid f79f4995-86b1-4b63-bdda-30a554d0449c)) + (pin "17" (uuid dbe45d89-f8f7-4cfa-9497-67367ab0559a)) + (pin "18" (uuid be3dd505-6728-4503-a6ec-7a105603f158)) + (pin "19" (uuid 9c7108cf-8845-4bc2-b449-960c8f709a5d)) + (pin "20" (uuid 9b11eff3-f79a-48b8-9b9b-aae3354c7c47)) + (pin "21" (uuid 3b53d464-d6e6-4ef5-8f8a-54fefc58105f)) + (pin "22" (uuid 594e8a72-af16-407f-a894-2e4fa2dd0815)) + (pin "23" (uuid e250f5bb-2e24-4fa6-8988-a93d43e15864)) + (pin "24" (uuid 01edc448-823c-42e3-9c51-fd83a4a7a6c0)) + (pin "25" (uuid 8f96cc66-de7b-4f3b-a2c0-5febedc6a2b2)) + (pin "26" (uuid 54761efb-60f0-4953-8bde-e73a0c4d6e8a)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 717.55 314.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8208cfb-ef2b-4798-8d61-2ad7a529a58b) + (property "Reference" "U67" (id 0) (at 717.55 306.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 717.55 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 717.55 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 717.55 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2cfc7395-8d04-4d87-aeac-ee956ded8451)) + (pin "2" (uuid a5aada95-b3dd-405a-9ffb-f2518b21ea7a)) + (pin "3" (uuid 5c1c6c6a-8462-40a8-a8a3-297c1bc95f72)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 416.56 222.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eba15da9-4e77-4698-882f-16a5fe08f3e5) + (property "Reference" "U45" (id 0) (at 416.56 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 416.56 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 416.56 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 416.56 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 24a4634e-720c-418e-a1ac-c71597c5c3a3)) + (pin "2" (uuid 379c0b53-2299-4652-9868-0cc0ceb2f00a)) + (pin "3" (uuid 6cf92873-14f2-42d7-b0ee-00da29ab9d8a)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 321.31 212.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ee4143a0-f81a-444d-972d-e2fe36f569e2) + (property "Reference" "U29" (id 0) (at 321.31 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 321.31 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 321.31 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 321.31 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 07cfa536-cd0b-4b7b-9930-10fd085935cc)) + (pin "2" (uuid 069e2d04-7127-43ae-9546-336749acb745)) + (pin "3" (uuid 2a31d20f-db69-44f3-bad0-d725f6882d7f)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 321.31 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f0766d05-c24f-4526-bf0b-24a07ecda5f9) + (property "Reference" "U28" (id 0) (at 321.31 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 321.31 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 321.31 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 321.31 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3201c3a3-d48c-4b4c-9f0a-cb6a77e6dca2)) + (pin "2" (uuid 86beecc3-02af-4e25-bc08-30e725877030)) + (pin "3" (uuid 069f3450-845e-4438-9ad7-fe56ae3170f7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 765.81 313.69 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f6dae8f4-b36d-4a49-8830-466deda8864c) + (property "Reference" "U1" (id 0) (at 769.62 313.055 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 769.62 315.595 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 765.81 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 765.81 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6caeec3a-bdf8-4004-8df9-7c72820593f7)) + (pin "2" (uuid c6369178-4237-4efd-8406-3f16b39179a7)) + (pin "3" (uuid 0941828e-fefd-48a4-905b-0442679a47e3)) + (pin "4" (uuid 61e27b5b-9c8f-461c-9984-b54c5aa9a0aa)) + (pin "5" (uuid b0920618-981d-4385-8418-ce3fddd66cff)) + (pin "6" (uuid d5dcd592-9612-4d28-9dcf-178b3ace1f8d)) + (pin "7" (uuid 431b39cf-3ffd-4634-b846-fe245877ff9b)) + (pin "8" (uuid a2f3c02c-672c-464b-9f4e-334be8c3997c)) + (pin "9" (uuid 351c1f2b-f99e-473a-8aee-9320cba004ae)) + (pin "10" (uuid cf03ceed-560d-43dc-8ec1-d0a872bd0205)) + (pin "11" (uuid dc82d7c2-9f5c-4b81-a5c5-2e96da71e114)) + (pin "12" (uuid 9cdc60a0-1178-417b-8e67-1994d1866e96)) + (pin "13" (uuid c84c9605-a028-4403-a5c2-f2289283ed8f)) + (pin "14" (uuid c7dc4540-8943-49fb-9a00-21c2da305683)) + (pin "15" (uuid a964379f-a6b9-4223-80e5-9db7f8c70ab8)) + (pin "16" (uuid 95a9a86d-4dd0-4280-b38e-30813364cca5)) + (pin "17" (uuid 5659696c-c53f-4129-8a05-707fb5b83c26)) + (pin "18" (uuid 79a8ec2c-30e4-47a1-a5d7-a39426a79057)) + (pin "19" (uuid 10d5db6e-363c-4efc-9c2c-b11f73e214dd)) + (pin "20" (uuid ee13c2e0-f460-4d3c-947b-f0c587d74755)) + (pin "21" (uuid fa9f228b-7def-471c-b5b9-9e8bea145b7b)) + (pin "22" (uuid f5936fd3-a2d9-482d-95c1-c960b8605106)) + (pin "23" (uuid fd7f434c-a143-4e63-8d93-3b8527cf6a6c)) + (pin "24" (uuid 13554f0f-3c00-447a-ab93-1a5bde847ed4)) + (pin "25" (uuid 168aa6f6-34cd-4a32-b2b8-e583545c6220)) + (pin "26" (uuid 5e4f6202-f1f9-43a2-a516-8df39ac356c8)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 612.14 292.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fad02e5b-915a-44ed-8c69-ab85391ffaf6) + (property "Reference" "U63" (id 0) (at 612.14 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 612.14 287.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 612.14 292.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 612.14 292.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d7079e3-de8e-4d92-8817-df9fa0e8bf04)) + (pin "2" (uuid 3ad115de-b0a4-4cba-8f9a-029413c04854)) + (pin "3" (uuid 42f3c2a2-ec33-4254-a307-bd5772668ecd)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/c80a43b6-9cb8-48c4-8dae-e19bc67be03e" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/38e2acf2-d8a3-4409-9543-b41b4f8f053b" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/6b62f544-6c06-436b-bdc0-d52224cce0a9" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/4da44f59-c23f-4686-930e-73cd5f0db452" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/12715975-3ccd-4eaf-97bb-5c32dc07e7cf" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/8b934376-fb91-44c7-81fa-39aae62dbe31" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/0772f850-11df-4e22-9cb3-7249125c1755" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/063eec86-8ae6-4e53-9ff4-057e0a321f2a" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/df498aea-b7b0-499a-aba4-81f65c23d940" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/9defd377-f16f-49d1-888f-a561c4e92514" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/c66b9d57-e727-4057-8e30-52eb20d317b8" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/f6dae8f4-b36d-4a49-8830-466deda8864c" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/e5ae34b1-e61e-479d-a58c-d35cd1957a7f" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/d73c987d-916b-412b-b0f2-48eb3bc024c7" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/acd904fc-9635-487d-8874-02aab598068a" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/17b40e3e-32c6-428d-9870-080a0c927396" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e581a530-6cf6-46a1-babd-1ccc871b2f73" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bf94e146-dec1-4adc-b55b-2605a68b2600" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d88cba9d-4c6a-419e-9c8d-f7a99e0d0c1a" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9e70713c-2d21-4c13-97a4-0bd9ef82b6ac" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/223d4b43-277d-4b57-b649-34d224c58681" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0e4e12a4-e5fa-4557-9fe1-3c1cfa321be2" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1cea397d-09e1-4617-9d29-4360c37f4ac1" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/8401e813-02bb-4915-a2ea-f10f417fc273" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/6710a37a-dc82-47c9-a10a-37094f424d1d" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7802d909-afd9-4aef-b8c2-30289ea2c506" + (reference "U13") (unit 1) (value "d_nand") (footprint "") + ) + (path "/d29286c9-6060-4909-b808-1ca885cbcda4" + (reference "U14") (unit 1) (value "d_nand") (footprint "") + ) + (path "/49bff292-97fe-499b-8912-0a5da1cdb0bf" + (reference "U15") (unit 1) (value "d_nand") (footprint "") + ) + (path "/1d485dee-7496-4376-b4a8-7e28afcb028c" + (reference "U16") (unit 1) (value "d_nand") (footprint "") + ) + (path "/7e01e5ba-6162-4ea6-82e5-2aa3f22de60d" + (reference "U17") (unit 1) (value "d_nand") (footprint "") + ) + (path "/1b4e67d0-503b-4dbf-8d1c-1a4712fbb68a" + (reference "U18") (unit 1) (value "d_nand") (footprint "") + ) + (path "/24876994-a0c8-4208-b114-85e7cf3e9273" + (reference "U19") (unit 1) (value "d_nand") (footprint "") + ) + (path "/29aa6728-d06e-472d-9abb-b21384bd432d" + (reference "U20") (unit 1) (value "d_nand") (footprint "") + ) + (path "/be1cde61-70c1-4c0d-88f6-fe25d70ec7f7" + (reference "U21") (unit 1) (value "d_nand") (footprint "") + ) + (path "/51593f19-d80c-4a9e-9111-f2a48827b20d" + (reference "U22") (unit 1) (value "d_nand") (footprint "") + ) + (path "/53a4dccd-01bc-4906-ba89-8a7e8e2c70ec" + (reference "U23") (unit 1) (value "d_nand") (footprint "") + ) + (path "/9935bd94-f4c3-45f0-a806-4f4d93e9c4dc" + (reference "U24") (unit 1) (value "d_nand") (footprint "") + ) + (path "/0d302135-250e-4574-88e7-cc6acc376368" + (reference "U25") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2f9e067b-175d-4644-ae6a-a159b8e82676" + (reference "U26") (unit 1) (value "d_nor") (footprint "") + ) + (path "/3ba623a8-dc45-4bc5-bbe6-099881a234c6" + (reference "U27") (unit 1) (value "d_nor") (footprint "") + ) + (path "/f0766d05-c24f-4526-bf0b-24a07ecda5f9" + (reference "U28") (unit 1) (value "d_nor") (footprint "") + ) + (path "/ee4143a0-f81a-444d-972d-e2fe36f569e2" + (reference "U29") (unit 1) (value "d_nor") (footprint "") + ) + (path "/3ad993d0-b6ce-443f-87e6-7cd82daf71bc" + (reference "U30") (unit 1) (value "d_nor") (footprint "") + ) + (path "/003afa00-a512-4c94-b6ce-55d96c9af635" + (reference "U31") (unit 1) (value "d_nor") (footprint "") + ) + (path "/3c86118a-af6d-4c4d-b3d6-9c04c9f8f55c" + (reference "U32") (unit 1) (value "d_nor") (footprint "") + ) + (path "/300ba586-5483-4a41-9863-5b06dd9d19d6" + (reference "U33") (unit 1) (value "d_nor") (footprint "") + ) + (path "/99ea1426-bb63-45e2-a377-60b337d70d72" + (reference "U34") (unit 1) (value "d_nor") (footprint "") + ) + (path "/72ed7e02-ebc8-4964-bd35-dc5858dc5c1d" + (reference "U35") (unit 1) (value "d_nor") (footprint "") + ) + (path "/50ce07d7-bba1-4195-b10c-191f8c96fb43" + (reference "U36") (unit 1) (value "d_nor") (footprint "") + ) + (path "/49808e38-d0df-4c3f-a2cb-1b3865e6b6a9" + (reference "U37") (unit 1) (value "d_nor") (footprint "") + ) + (path "/0d7014f7-0705-4eb6-86ac-bb496025765d" + (reference "U38") (unit 1) (value "d_nor") (footprint "") + ) + (path "/47715120-9563-478d-882c-c62d250453b7" + (reference "U39") (unit 1) (value "d_nor") (footprint "") + ) + (path "/13232f06-7d0c-425c-85e2-4d55bc604d45" + (reference "U40") (unit 1) (value "d_nor") (footprint "") + ) + (path "/9f2ba0a8-d2ec-4b84-b109-3f3206614a86" + (reference "U41") (unit 1) (value "d_nor") (footprint "") + ) + (path "/33abd22b-9a91-4c5b-8e86-f4417058ff7e" + (reference "U42") (unit 1) (value "d_nor") (footprint "") + ) + (path "/07753331-17e3-4be2-8466-10581f18ed79" + (reference "U43") (unit 1) (value "d_nor") (footprint "") + ) + (path "/50982009-b5cb-4c8d-93eb-02aa2afc1de5" + (reference "U44") (unit 1) (value "d_nor") (footprint "") + ) + (path "/eba15da9-4e77-4698-882f-16a5fe08f3e5" + (reference "U45") (unit 1) (value "d_nor") (footprint "") + ) + (path "/055a3fd4-5927-407e-9cc2-a5b208c925cb" + (reference "U46") (unit 1) (value "d_nor") (footprint "") + ) + (path "/daa80fc2-6fbd-4c77-8eca-1a64218a9f8f" + (reference "U47") (unit 1) (value "d_nor") (footprint "") + ) + (path "/6ff9fa6b-6a12-4984-99cb-c913d2456a58" + (reference "U48") (unit 1) (value "d_nor") (footprint "") + ) + (path "/b5ed4d76-2cbf-4821-9f80-0eb44b2706d7" + (reference "U49") (unit 1) (value "d_nor") (footprint "") + ) + (path "/3b4c039e-c284-42ec-b5b2-054e60e4301c" + (reference "U50") (unit 1) (value "d_nor") (footprint "") + ) + (path "/661e69cf-09c6-4582-9f5e-83bafb2a8e4e" + (reference "U51") (unit 1) (value "d_nor") (footprint "") + ) + (path "/d04f2ede-e77d-467c-bf58-e90ca4c867d3" + (reference "U52") (unit 1) (value "d_nor") (footprint "") + ) + (path "/588181a8-d04e-4558-8388-7743789d0a0d" + (reference "U53") (unit 1) (value "d_nor") (footprint "") + ) + (path "/dab38dc5-3729-457b-bdc7-9c5a5c212fba" + (reference "U54") (unit 1) (value "d_nor") (footprint "") + ) + (path "/3420d57f-4d01-4ebe-bd05-e9f33e57a8b5" + (reference "U55") (unit 1) (value "d_nor") (footprint "") + ) + (path "/504038d8-2790-43a5-bad4-d0d820a64800" + (reference "U56") (unit 1) (value "d_nor") (footprint "") + ) + (path "/64cbc8d3-346d-4877-80f5-1167cb3bfcaf" + (reference "U57") (unit 1) (value "d_nor") (footprint "") + ) + (path "/d929dc57-4508-4223-96a2-2fec8dd4db9d" + (reference "U58") (unit 1) (value "d_nor") (footprint "") + ) + (path "/c9af201a-c49f-436c-9458-3a9f9380eff3" + (reference "U59") (unit 1) (value "d_nor") (footprint "") + ) + (path "/4de91a10-b997-418b-97c5-29046e681dda" + (reference "U60") (unit 1) (value "d_nor") (footprint "") + ) + (path "/a993410e-af66-4172-9c1e-75841f27daea" + (reference "U61") (unit 1) (value "d_nor") (footprint "") + ) + (path "/1d9fa4af-d440-4192-bf6b-a0c5bf576024" + (reference "U62") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/fad02e5b-915a-44ed-8c69-ab85391ffaf6" + (reference "U63") (unit 1) (value "d_nor") (footprint "") + ) + (path "/4f24997d-c3c7-4bbf-b381-a2fd90438677" + (reference "U64") (unit 1) (value "d_nor") (footprint "") + ) + (path "/36c13d9f-1e1b-4c88-a6e7-7d167f89985d" + (reference "U65") (unit 1) (value "d_nor") (footprint "") + ) + (path "/d6ffbc75-147f-44d2-9635-08574a7da222" + (reference "U66") (unit 1) (value "d_nor") (footprint "") + ) + (path "/e8208cfb-ef2b-4798-8d61-2ad7a529a58b" + (reference "U67") (unit 1) (value "d_nor") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD4585/CD4585.sub b/library/SubcircuitLibrary/CD4585/CD4585.sub new file mode 100644 index 000000000..c618f35ad --- /dev/null +++ b/library/SubcircuitLibrary/CD4585/CD4585.sub @@ -0,0 +1,270 @@ +* Subcircuit CD4585 +.subckt CD4585 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ +.title kicad schematic +* u55 net-_u25-pad2_ net-_u31-pad3_ net-_u55-pad3_ d_nor +* u59 net-_u55-pad3_ net-_u55-pad3_ net-_u59-pad3_ d_nor +* u58 net-_u54-pad3_ net-_u47-pad3_ net-_u58-pad3_ d_nor +* u62 net-_u58-pad3_ net-_u1-pad12_ d_inverter +* u63 net-_u59-pad3_ net-_u60-pad3_ net-_u63-pad3_ d_nor +* u51 net-_u49-pad3_ net-_u49-pad3_ net-_u51-pad3_ d_nor +* u49 net-_u25-pad2_ net-_u31-pad3_ net-_u49-pad3_ d_nor +* u50 net-_u41-pad3_ net-_u42-pad3_ net-_u50-pad3_ d_nor +* u54 net-_u53-pad3_ net-_u53-pad3_ net-_u54-pad3_ d_nor +* u53 net-_u51-pad3_ net-_u52-pad3_ net-_u53-pad3_ d_nor +* u57 net-_u47-pad3_ net-_u1-pad3_ net-_u57-pad3_ d_nor +* u56 net-_u41-pad3_ net-_u42-pad3_ net-_u56-pad3_ d_nor +* u60 net-_u56-pad3_ net-_u56-pad3_ net-_u60-pad3_ d_nor +* u66 net-_u65-pad3_ net-_u65-pad3_ net-_u66-pad3_ d_nor +* u67 net-_u66-pad3_ net-_u2-pad2_ net-_u1-pad13_ d_nor +* u64 net-_u63-pad3_ net-_u63-pad3_ net-_u64-pad3_ d_nor +* u61 net-_u57-pad3_ net-_u57-pad3_ net-_u61-pad3_ d_nor +* u65 net-_u64-pad3_ net-_u61-pad3_ net-_u65-pad3_ d_nor +* u52 net-_u50-pad3_ net-_u50-pad3_ net-_u52-pad3_ d_nor +* u47 net-_u45-pad3_ net-_u21-pad3_ net-_u47-pad3_ d_nor +* u48 net-_u46-pad3_ net-_u21-pad3_ net-_u1-pad3_ d_nor +* u23 net-_u17-pad3_ net-_u18-pad3_ net-_u23-pad3_ d_nand +* u24 net-_u20-pad3_ net-_u19-pad3_ net-_u24-pad3_ d_nand +* u8 net-_u1-pad14_ net-_u14-pad2_ d_inverter +* u9 net-_u1-pad2_ net-_u15-pad1_ d_inverter +* u7 net-_u1-pad15_ net-_u13-pad1_ d_inverter +* u10 net-_u1-pad7_ net-_u10-pad2_ d_inverter +* u11 net-_u1-pad9_ net-_u11-pad2_ d_inverter +* u12 net-_u1-pad1_ net-_u12-pad2_ d_inverter +* u5 net-_u1-pad10_ net-_u20-pad1_ d_inverter +* u6 net-_u1-pad11_ net-_u19-pad2_ d_inverter +* u3 net-_u1-pad5_ net-_u29-pad1_ d_inverter +* u18 net-_u1-pad7_ net-_u11-pad2_ net-_u18-pad3_ d_nand +* u20 net-_u20-pad1_ net-_u1-pad11_ net-_u20-pad3_ d_nand +* u19 net-_u1-pad10_ net-_u19-pad2_ net-_u19-pad3_ d_nand +* u2 net-_u1-pad4_ net-_u2-pad2_ d_inverter +* u4 net-_u1-pad6_ net-_u30-pad1_ d_inverter +* u22 net-_u15-pad3_ net-_u16-pad3_ net-_u22-pad3_ d_nand +* u14 net-_u1-pad15_ net-_u14-pad2_ net-_u14-pad3_ d_nand +* u16 net-_u1-pad2_ net-_u12-pad2_ net-_u16-pad3_ d_nand +* u17 net-_u10-pad2_ net-_u1-pad9_ net-_u17-pad3_ d_nand +* u15 net-_u15-pad1_ net-_u1-pad1_ net-_u15-pad3_ d_nand +* u13 net-_u13-pad1_ net-_u1-pad14_ net-_u13-pad3_ d_nand +* u21 net-_u13-pad3_ net-_u14-pad3_ net-_u21-pad3_ d_nand +* u29 net-_u29-pad1_ net-_u24-pad3_ net-_u29-pad3_ d_nor +* u32 net-_u23-pad3_ net-_u22-pad3_ net-_u32-pad3_ d_nor +* u28 net-_u20-pad3_ net-_u23-pad3_ net-_u28-pad3_ d_nor +* u25 net-_u13-pad3_ net-_u25-pad2_ d_inverter +* u31 net-_u21-pad3_ net-_u15-pad3_ net-_u31-pad3_ d_nor +* u36 net-_u28-pad3_ net-_u28-pad3_ net-_u36-pad3_ d_nor +* u35 net-_u27-pad3_ net-_u27-pad3_ net-_u35-pad3_ d_nor +* u27 net-_u22-pad3_ net-_u21-pad3_ net-_u27-pad3_ d_nor +* u34 net-_u26-pad3_ net-_u26-pad3_ net-_u34-pad3_ d_nor +* u26 net-_u22-pad3_ net-_u17-pad3_ net-_u26-pad3_ d_nor +* u42 net-_u35-pad3_ net-_u36-pad3_ net-_u42-pad3_ d_nor +* u41 net-_u34-pad3_ net-_u21-pad3_ net-_u41-pad3_ d_nor +* u46 net-_u44-pad3_ net-_u44-pad3_ net-_u46-pad3_ d_nor +* u44 net-_u39-pad3_ net-_u40-pad3_ net-_u44-pad3_ d_nor +* u39 net-_u30-pad3_ net-_u30-pad3_ net-_u39-pad3_ d_nor +* u33 net-_u23-pad3_ net-_u22-pad3_ net-_u33-pad3_ d_nor +* u38 net-_u32-pad3_ net-_u32-pad3_ net-_u38-pad3_ d_nor +* u40 net-_u33-pad3_ net-_u33-pad3_ net-_u40-pad3_ d_nor +* u30 net-_u30-pad1_ net-_u24-pad3_ net-_u30-pad3_ d_nor +* u37 net-_u29-pad3_ net-_u29-pad3_ net-_u37-pad3_ d_nor +* u45 net-_u43-pad3_ net-_u43-pad3_ net-_u45-pad3_ d_nor +* u43 net-_u37-pad3_ net-_u38-pad3_ net-_u43-pad3_ d_nor +a1 [net-_u25-pad2_ net-_u31-pad3_ ] net-_u55-pad3_ u55 +a2 [net-_u55-pad3_ net-_u55-pad3_ ] net-_u59-pad3_ u59 +a3 [net-_u54-pad3_ net-_u47-pad3_ ] net-_u58-pad3_ u58 +a4 net-_u58-pad3_ net-_u1-pad12_ u62 +a5 [net-_u59-pad3_ net-_u60-pad3_ ] net-_u63-pad3_ u63 +a6 [net-_u49-pad3_ net-_u49-pad3_ ] net-_u51-pad3_ u51 +a7 [net-_u25-pad2_ net-_u31-pad3_ ] net-_u49-pad3_ u49 +a8 [net-_u41-pad3_ net-_u42-pad3_ ] net-_u50-pad3_ u50 +a9 [net-_u53-pad3_ net-_u53-pad3_ ] net-_u54-pad3_ u54 +a10 [net-_u51-pad3_ net-_u52-pad3_ ] net-_u53-pad3_ u53 +a11 [net-_u47-pad3_ net-_u1-pad3_ ] net-_u57-pad3_ u57 +a12 [net-_u41-pad3_ net-_u42-pad3_ ] net-_u56-pad3_ u56 +a13 [net-_u56-pad3_ net-_u56-pad3_ ] net-_u60-pad3_ u60 +a14 [net-_u65-pad3_ net-_u65-pad3_ ] net-_u66-pad3_ u66 +a15 [net-_u66-pad3_ net-_u2-pad2_ ] net-_u1-pad13_ u67 +a16 [net-_u63-pad3_ net-_u63-pad3_ ] net-_u64-pad3_ u64 +a17 [net-_u57-pad3_ net-_u57-pad3_ ] net-_u61-pad3_ u61 +a18 [net-_u64-pad3_ net-_u61-pad3_ ] net-_u65-pad3_ u65 +a19 [net-_u50-pad3_ net-_u50-pad3_ ] net-_u52-pad3_ u52 +a20 [net-_u45-pad3_ net-_u21-pad3_ ] net-_u47-pad3_ u47 +a21 [net-_u46-pad3_ net-_u21-pad3_ ] net-_u1-pad3_ u48 +a22 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u23-pad3_ u23 +a23 [net-_u20-pad3_ net-_u19-pad3_ ] net-_u24-pad3_ u24 +a24 net-_u1-pad14_ net-_u14-pad2_ u8 +a25 net-_u1-pad2_ net-_u15-pad1_ u9 +a26 net-_u1-pad15_ net-_u13-pad1_ u7 +a27 net-_u1-pad7_ net-_u10-pad2_ u10 +a28 net-_u1-pad9_ net-_u11-pad2_ u11 +a29 net-_u1-pad1_ net-_u12-pad2_ u12 +a30 net-_u1-pad10_ net-_u20-pad1_ u5 +a31 net-_u1-pad11_ net-_u19-pad2_ u6 +a32 net-_u1-pad5_ net-_u29-pad1_ u3 +a33 [net-_u1-pad7_ net-_u11-pad2_ ] net-_u18-pad3_ u18 +a34 [net-_u20-pad1_ net-_u1-pad11_ ] net-_u20-pad3_ u20 +a35 [net-_u1-pad10_ net-_u19-pad2_ ] net-_u19-pad3_ u19 +a36 net-_u1-pad4_ net-_u2-pad2_ u2 +a37 net-_u1-pad6_ net-_u30-pad1_ u4 +a38 [net-_u15-pad3_ net-_u16-pad3_ ] net-_u22-pad3_ u22 +a39 [net-_u1-pad15_ net-_u14-pad2_ ] net-_u14-pad3_ u14 +a40 [net-_u1-pad2_ net-_u12-pad2_ ] net-_u16-pad3_ u16 +a41 [net-_u10-pad2_ net-_u1-pad9_ ] net-_u17-pad3_ u17 +a42 [net-_u15-pad1_ net-_u1-pad1_ ] net-_u15-pad3_ u15 +a43 [net-_u13-pad1_ net-_u1-pad14_ ] net-_u13-pad3_ u13 +a44 [net-_u13-pad3_ net-_u14-pad3_ ] net-_u21-pad3_ u21 +a45 [net-_u29-pad1_ net-_u24-pad3_ ] net-_u29-pad3_ u29 +a46 [net-_u23-pad3_ net-_u22-pad3_ ] net-_u32-pad3_ u32 +a47 [net-_u20-pad3_ net-_u23-pad3_ ] net-_u28-pad3_ u28 +a48 net-_u13-pad3_ net-_u25-pad2_ u25 +a49 [net-_u21-pad3_ net-_u15-pad3_ ] net-_u31-pad3_ u31 +a50 [net-_u28-pad3_ net-_u28-pad3_ ] net-_u36-pad3_ u36 +a51 [net-_u27-pad3_ net-_u27-pad3_ ] net-_u35-pad3_ u35 +a52 [net-_u22-pad3_ net-_u21-pad3_ ] net-_u27-pad3_ u27 +a53 [net-_u26-pad3_ net-_u26-pad3_ ] net-_u34-pad3_ u34 +a54 [net-_u22-pad3_ net-_u17-pad3_ ] net-_u26-pad3_ u26 +a55 [net-_u35-pad3_ net-_u36-pad3_ ] net-_u42-pad3_ u42 +a56 [net-_u34-pad3_ net-_u21-pad3_ ] net-_u41-pad3_ u41 +a57 [net-_u44-pad3_ net-_u44-pad3_ ] net-_u46-pad3_ u46 +a58 [net-_u39-pad3_ net-_u40-pad3_ ] net-_u44-pad3_ u44 +a59 [net-_u30-pad3_ net-_u30-pad3_ ] net-_u39-pad3_ u39 +a60 [net-_u23-pad3_ net-_u22-pad3_ ] net-_u33-pad3_ u33 +a61 [net-_u32-pad3_ net-_u32-pad3_ ] net-_u38-pad3_ u38 +a62 [net-_u33-pad3_ net-_u33-pad3_ ] net-_u40-pad3_ u40 +a63 [net-_u30-pad1_ net-_u24-pad3_ ] net-_u30-pad3_ u30 +a64 [net-_u29-pad3_ net-_u29-pad3_ ] net-_u37-pad3_ u37 +a65 [net-_u43-pad3_ net-_u43-pad3_ ] net-_u45-pad3_ u45 +a66 [net-_u37-pad3_ net-_u38-pad3_ ] net-_u43-pad3_ u43 +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u55 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u59 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u58 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u62 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u63 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u51 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u49 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u50 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u54 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u53 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u57 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u56 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u60 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u66 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u67 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u64 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u61 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u65 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u52 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u47 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u48 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u23 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u24 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u18 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u20 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u19 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u22 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u14 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u16 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u17 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u15 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u21 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u29 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u32 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u28 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u31 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u36 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u35 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u27 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u34 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u26 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u42 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u41 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u46 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u44 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u39 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u33 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u38 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u40 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u30 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u37 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u45 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u43 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends CD4585 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4585/CD4585_Previous_Values.xml b/library/SubcircuitLibrary/CD4585/CD4585_Previous_Values.xml new file mode 100644 index 000000000..0d5d1586a --- /dev/null +++ b/library/SubcircuitLibrary/CD4585/CD4585_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_nord_nord_nord_inverterd_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nandd_nandd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_nandd_nandd_nandd_inverterd_inverterd_nandd_nandd_nandd_nandd_nandd_nandd_nandd_nord_nord_nord_inverterd_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nord_nor \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD4585/analysis b/library/SubcircuitLibrary/CD4585/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/CD4585/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD74HC563/CD74HC563.cir b/library/SubcircuitLibrary/CD74HC563/CD74HC563.cir new file mode 100644 index 000000000..3dc72d398 --- /dev/null +++ b/library/SubcircuitLibrary/CD74HC563/CD74HC563.cir @@ -0,0 +1,20 @@ +.title KiCad schematic +U2 Net-_U1-Pad1_ Net-_U10-Pad2_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ Net-_U1-Pad19_ PORT +U5 Net-_U1-Pad3_ Net-_U1-Pad11_ unconnected-_U5-Pad3_ unconnected-_U5-Pad4_ Net-_U5-Pad5_ unconnected-_U5-Pad6_ d_dlatch +U4 Net-_U3-Pad5_ Net-_U10-Pad2_ Net-_U1-Pad19_ d_tristate +U3 Net-_U1-Pad2_ Net-_U1-Pad11_ unconnected-_U3-Pad3_ unconnected-_U3-Pad4_ Net-_U3-Pad5_ unconnected-_U3-Pad6_ d_dlatch +U13 Net-_U1-Pad7_ Net-_U1-Pad11_ unconnected-_U13-Pad3_ unconnected-_U13-Pad4_ Net-_U13-Pad5_ unconnected-_U13-Pad6_ d_dlatch +U15 Net-_U1-Pad8_ Net-_U1-Pad11_ unconnected-_U15-Pad3_ unconnected-_U15-Pad4_ Net-_U15-Pad5_ unconnected-_U15-Pad6_ d_dlatch +U11 Net-_U1-Pad6_ Net-_U1-Pad11_ unconnected-_U11-Pad3_ unconnected-_U11-Pad4_ Net-_U11-Pad5_ unconnected-_U11-Pad6_ d_dlatch +U12 Net-_U11-Pad5_ Net-_U10-Pad2_ Net-_U1-Pad15_ d_tristate +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U1-Pad16_ d_tristate +U14 Net-_U13-Pad5_ Net-_U10-Pad2_ Net-_U1-Pad14_ d_tristate +U8 Net-_U7-Pad5_ Net-_U10-Pad2_ Net-_U1-Pad17_ d_tristate +U6 Net-_U5-Pad5_ Net-_U10-Pad2_ Net-_U1-Pad18_ d_tristate +U7 Net-_U1-Pad4_ Net-_U1-Pad11_ unconnected-_U7-Pad3_ unconnected-_U7-Pad4_ Net-_U7-Pad5_ unconnected-_U7-Pad6_ d_dlatch +U9 Net-_U1-Pad5_ Net-_U1-Pad11_ unconnected-_U9-Pad3_ unconnected-_U9-Pad4_ Net-_U10-Pad1_ unconnected-_U9-Pad6_ d_dlatch +U17 Net-_U1-Pad9_ Net-_U1-Pad11_ unconnected-_U17-Pad3_ unconnected-_U17-Pad4_ Net-_U17-Pad5_ unconnected-_U17-Pad6_ d_dlatch +U16 Net-_U15-Pad5_ Net-_U10-Pad2_ Net-_U1-Pad13_ d_tristate +U18 Net-_U17-Pad5_ Net-_U10-Pad2_ Net-_U1-Pad12_ d_tristate +.end diff --git a/library/SubcircuitLibrary/CD74HC563/CD74HC563.cir.out b/library/SubcircuitLibrary/CD74HC563/CD74HC563.cir.out new file mode 100644 index 000000000..2d17387c2 --- /dev/null +++ b/library/SubcircuitLibrary/CD74HC563/CD74HC563.cir.out @@ -0,0 +1,80 @@ +.title kicad schematic + +* u2 net-_u1-pad1_ net-_u10-pad2_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ port +* u5 net-_u1-pad3_ net-_u1-pad11_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ d_dlatch +* u4 net-_u3-pad5_ net-_u10-pad2_ net-_u1-pad19_ d_tristate +* u3 net-_u1-pad2_ net-_u1-pad11_ unconnected-_u3-pad3_ unconnected-_u3-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ d_dlatch +* u13 net-_u1-pad7_ net-_u1-pad11_ unconnected-_u13-pad3_ unconnected-_u13-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ d_dlatch +* u15 net-_u1-pad8_ net-_u1-pad11_ unconnected-_u15-pad3_ unconnected-_u15-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ d_dlatch +* u11 net-_u1-pad6_ net-_u1-pad11_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ d_dlatch +* u12 net-_u11-pad5_ net-_u10-pad2_ net-_u1-pad15_ d_tristate +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u1-pad16_ d_tristate +* u14 net-_u13-pad5_ net-_u10-pad2_ net-_u1-pad14_ d_tristate +* u8 net-_u7-pad5_ net-_u10-pad2_ net-_u1-pad17_ d_tristate +* u6 net-_u5-pad5_ net-_u10-pad2_ net-_u1-pad18_ d_tristate +* u7 net-_u1-pad4_ net-_u1-pad11_ unconnected-_u7-pad3_ unconnected-_u7-pad4_ net-_u7-pad5_ unconnected-_u7-pad6_ d_dlatch +* u9 net-_u1-pad5_ net-_u1-pad11_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ d_dlatch +* u17 net-_u1-pad9_ net-_u1-pad11_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_dlatch +* u16 net-_u15-pad5_ net-_u10-pad2_ net-_u1-pad13_ d_tristate +* u18 net-_u17-pad5_ net-_u10-pad2_ net-_u1-pad12_ d_tristate +a1 net-_u1-pad1_ net-_u10-pad2_ u2 +a2 net-_u1-pad3_ net-_u1-pad11_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ u5 +a3 net-_u3-pad5_ net-_u10-pad2_ net-_u1-pad19_ u4 +a4 net-_u1-pad2_ net-_u1-pad11_ unconnected-_u3-pad3_ unconnected-_u3-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ u3 +a5 net-_u1-pad7_ net-_u1-pad11_ unconnected-_u13-pad3_ unconnected-_u13-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ u13 +a6 net-_u1-pad8_ net-_u1-pad11_ unconnected-_u15-pad3_ unconnected-_u15-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ u15 +a7 net-_u1-pad6_ net-_u1-pad11_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ u11 +a8 net-_u11-pad5_ net-_u10-pad2_ net-_u1-pad15_ u12 +a9 net-_u10-pad1_ net-_u10-pad2_ net-_u1-pad16_ u10 +a10 net-_u13-pad5_ net-_u10-pad2_ net-_u1-pad14_ u14 +a11 net-_u7-pad5_ net-_u10-pad2_ net-_u1-pad17_ u8 +a12 net-_u5-pad5_ net-_u10-pad2_ net-_u1-pad18_ u6 +a13 net-_u1-pad4_ net-_u1-pad11_ unconnected-_u7-pad3_ unconnected-_u7-pad4_ net-_u7-pad5_ unconnected-_u7-pad6_ u7 +a14 net-_u1-pad5_ net-_u1-pad11_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ u9 +a15 net-_u1-pad9_ net-_u1-pad11_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a16 net-_u15-pad5_ net-_u10-pad2_ net-_u1-pad13_ u16 +a17 net-_u17-pad5_ net-_u10-pad2_ net-_u1-pad12_ u18 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u5 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u4 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u3 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u13 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u15 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u11 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u12 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u10 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u14 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u8 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u7 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u9 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u17 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u16 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u18 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD74HC563/CD74HC563.kicad_sch b/library/SubcircuitLibrary/CD74HC563/CD74HC563.kicad_sch new file mode 100644 index 000000000..a22a09cbb --- /dev/null +++ b/library/SubcircuitLibrary/CD74HC563/CD74HC563.kicad_sch @@ -0,0 +1,1953 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 57f10b5b-05e0-46be-b8d9-fc2a793165e9) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Digital:d_dlatch" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dlatch" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dlatch_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dlatch_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -7.62 0) (length 5.08) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_tristate" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -6.35 6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at -5.08 11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_tristate_0_1" + (polyline + (pts + (xy -10.16 13.97) + (xy -10.16 3.81) + (xy 8.89 8.89) + (xy -10.16 13.97) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_tristate_1_1" + (pin input line (at -15.24 8.89 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -1.27 1.27 90) (length 4.9022) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 308.61 151.13) (diameter 0) (color 0 0 0 0) + (uuid 1a5ef9fa-fc61-41a9-b932-b958f69a1fd8) + ) + (junction (at 251.46 151.13) (diameter 0) (color 0 0 0 0) + (uuid 28ab24b5-6050-439a-a9dd-8b2cf100432d) + ) + (junction (at 222.25 113.03) (diameter 0) (color 0 0 0 0) + (uuid 4b87d90c-2f87-4838-bde8-e689ef4b4982) + ) + (junction (at 330.2 113.03) (diameter 0) (color 0 0 0 0) + (uuid 5a3c9b4b-1747-4860-ae6a-3af25bf327d8) + ) + (junction (at 457.2 151.13) (diameter 0) (color 0 0 0 0) + (uuid 5eef9239-1d94-4787-ba6e-f54c7655f7a4) + ) + (junction (at 110.49 113.03) (diameter 0) (color 0 0 0 0) + (uuid 6f8dde7a-76a3-4894-9d3f-e414a9cb6f9b) + ) + (junction (at 195.58 151.13) (diameter 0) (color 0 0 0 0) + (uuid 7a3ba7aa-3e13-4f6a-8f32-edff10ff5bf3) + ) + (junction (at 382.27 113.03) (diameter 0) (color 0 0 0 0) + (uuid 7edd112f-737d-4948-82d0-343ef4abaad6) + ) + (junction (at 166.37 113.03) (diameter 0) (color 0 0 0 0) + (uuid 9aacfca8-2710-4fe3-8647-6c969b0d963c) + ) + (junction (at 135.89 151.13) (diameter 0) (color 0 0 0 0) + (uuid a1a02a2f-ed66-4717-b836-54a27cd2d0fa) + ) + (junction (at 275.59 113.03) (diameter 0) (color 0 0 0 0) + (uuid c8581ea0-de86-4347-8ca9-552e9868e2fc) + ) + (junction (at 407.67 151.13) (diameter 0) (color 0 0 0 0) + (uuid d33e972e-6c72-4c3f-9c71-90558d1007a8) + ) + (junction (at 358.14 151.13) (diameter 0) (color 0 0 0 0) + (uuid f4a45c4c-d1bb-4f52-99f1-0272b5362a22) + ) + (junction (at 427.99 113.03) (diameter 0) (color 0 0 0 0) + (uuid fb9a1ca6-7416-4af0-b3db-116778871e4c) + ) + + (no_connect (at 505.46 93.98) (uuid 00c362d1-8400-4400-b8b7-6b1d717dc613)) + (no_connect (at 124.46 104.14) (uuid 01ec0b40-db46-4000-b73b-dcc7d98a2f8f)) + (no_connect (at 303.53 95.25) (uuid 0cf48c25-146a-437a-9c1f-130358de5280)) + (no_connect (at 250.19 96.52) (uuid 23508c84-c2ff-49b3-9012-e271b393fea9)) + (no_connect (at 194.31 96.52) (uuid 286fa54a-e13b-4364-a176-a66fe76c4f30)) + (no_connect (at 344.17 102.87) (uuid 2b04a4b9-b300-420b-bc93-592771f80dcd)) + (no_connect (at 441.96 100.33) (uuid 3441184f-abdd-49c7-8e85-d4a1de88450d)) + (no_connect (at 410.21 93.98) (uuid 3de275ce-c7d8-4545-ab8d-1b03d52d2c59)) + (no_connect (at 491.49 101.6) (uuid 459a0318-c85c-42ee-a191-e041b6504703)) + (no_connect (at 491.49 69.85) (uuid 4caed81f-d61b-4f55-9c4c-0b921eee0be6)) + (no_connect (at 236.22 72.39) (uuid 56aa02d9-85ee-48e4-b05f-f0f7690ba5dc)) + (no_connect (at 236.22 104.14) (uuid 6503311d-81e0-4c0a-9cfa-d4bc3895d804)) + (no_connect (at 396.24 101.6) (uuid 67f59c65-807a-449f-ab78-601d52794936)) + (no_connect (at 180.34 104.14) (uuid 71754abc-2b1a-4db5-802d-d77228078adb)) + (no_connect (at 455.93 92.71) (uuid 813cdbf9-81c4-4227-91ea-602728f1246f)) + (no_connect (at 396.24 69.85) (uuid 84d3ea11-6c3d-4baf-af51-ad2163c7469a)) + (no_connect (at 138.43 96.52) (uuid 9db15481-eeab-4e34-b687-da0004d978d3)) + (no_connect (at 124.46 72.39) (uuid 9fc47333-9b7d-4037-8878-8bacb6801067)) + (no_connect (at 344.17 71.12) (uuid b4432c44-ad9e-4083-b579-f8b8faecc31b)) + (no_connect (at 180.34 72.39) (uuid b6302dc1-f10c-4959-8aa3-bba1c1e91c72)) + (no_connect (at 289.56 71.12) (uuid c62bc0ee-72e8-4b40-92b7-384e8bd2c2e9)) + (no_connect (at 358.14 95.25) (uuid ef070462-e113-45f6-a5e7-80bb2ccf9775)) + (no_connect (at 289.56 102.87) (uuid f00668cc-dfb3-4b01-91c2-6d6d5e113e0b)) + (no_connect (at 441.96 68.58) (uuid fb0f589e-d284-44ca-9daa-4f2470179fdb)) + + (wire (pts (xy 379.73 54.61) (xy 379.73 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0642d1a5-e7bb-4b96-896d-ad71c077bee5) + ) + (wire (pts (xy 271.78 78.74) (xy 275.59 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 064e8b78-8bc9-49e6-b9a5-019b04d67de8) + ) + (wire (pts (xy 316.23 163.83) (xy 318.77 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e11b4e9-e6af-4c48-9000-1f446f1a77b3) + ) + (wire (pts (xy 271.78 54.61) (xy 271.78 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 161faa5e-c8c4-4f8b-967e-f98af3201d20) + ) + (wire (pts (xy 166.37 113.03) (xy 222.25 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a867e99-04af-4eb1-b648-6dd5f01e9ff6) + ) + (wire (pts (xy 407.67 130.81) (xy 407.67 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ca3dff1-e5da-4c1d-afb2-5fea9e9ad451) + ) + (wire (pts (xy 203.2 166.37) (xy 204.47 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cc00146-6cc9-4ed4-bd21-235bdeebe627) + ) + (wire (pts (xy 358.14 151.13) (xy 407.67 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f5ddec2-e9c4-468f-bcfd-aca3ab8fdac3) + ) + (wire (pts (xy 303.53 78.74) (xy 316.23 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20c1c1e2-7d60-4d3b-af9c-14bc2c91340a) + ) + (wire (pts (xy 259.08 163.83) (xy 261.62 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2128d860-f073-40a8-a00e-57b95a8e311d) + ) + (wire (pts (xy 218.44 80.01) (xy 222.25 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2363cdea-255f-423a-b4c5-fb636b3faa89) + ) + (wire (pts (xy 455.93 76.2) (xy 464.82 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 287ce78d-d2b7-443a-9fce-dfa005c2e586) + ) + (wire (pts (xy 326.39 78.74) (xy 330.2 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29632331-72df-4706-91df-fea1453b8973) + ) + (wire (pts (xy 218.44 54.61) (xy 218.44 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b998069-d192-438d-82a4-a666a4d4e081) + ) + (wire (pts (xy 135.89 151.13) (xy 195.58 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e8493df-994d-45b0-afdb-2d2994f16acf) + ) + (wire (pts (xy 464.82 147.32) (xy 464.82 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 314b9447-8c50-460e-bdf4-22bec2d9d1cc) + ) + (wire (pts (xy 162.56 57.15) (xy 162.56 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3205c5b9-c4e1-40b4-96a0-bd2f6e3599fd) + ) + (wire (pts (xy 415.29 146.05) (xy 415.29 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3727fc0b-9695-41c3-85e2-2d41eed03f74) + ) + (wire (pts (xy 457.2 132.08) (xy 457.2 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3761ee18-d82e-421b-8cc5-3ba10b0f1baa) + ) + (wire (pts (xy 143.51 80.01) (xy 143.51 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a318ab1-0884-48b8-8aa1-9b610ffcaab8) + ) + (wire (pts (xy 316.23 78.74) (xy 316.23 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c77103b-3bc8-485e-abe3-2b1076ac95ea) + ) + (wire (pts (xy 251.46 151.13) (xy 308.61 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d10298c-6e9f-42b3-aef2-6f092394293e) + ) + (wire (pts (xy 104.14 55.88) (xy 104.14 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d94d85a-1b36-4be0-84da-9cd29b5a6262) + ) + (wire (pts (xy 505.46 151.13) (xy 505.46 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fba41d3-f584-4f48-892e-e2daf9736840) + ) + (wire (pts (xy 474.98 54.61) (xy 474.98 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4080a47c-9122-42c1-83c1-3585b6f467cf) + ) + (wire (pts (xy 365.76 144.78) (xy 365.76 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 424cb1ad-aa70-4488-aebc-9bd8498a315e) + ) + (wire (pts (xy 162.56 80.01) (xy 166.37 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43b9d483-8bf9-48a2-bb42-f1acb9dee703) + ) + (wire (pts (xy 308.61 129.54) (xy 308.61 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43d94708-948d-472d-a624-4d96a5cdcb83) + ) + (wire (pts (xy 427.99 92.71) (xy 427.99 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 477fca85-71cf-4f40-9638-031f08314ae0) + ) + (wire (pts (xy 382.27 113.03) (xy 427.99 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4852b0d3-dae2-426d-b060-7a2ee1432c6a) + ) + (wire (pts (xy 330.2 113.03) (xy 382.27 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a56fdfc-5a71-4ef1-8188-498c34cff452) + ) + (wire (pts (xy 382.27 93.98) (xy 382.27 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d0eeb65-8d65-4807-9ca5-1ebbe7a80c58) + ) + (wire (pts (xy 505.46 77.47) (xy 519.43 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 528ba7e8-698d-482a-845f-b8ad98fcff98) + ) + (wire (pts (xy 457.2 151.13) (xy 505.46 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 563f1299-0667-4c8c-8bf6-5702e1645a4d) + ) + (wire (pts (xy 222.25 113.03) (xy 275.59 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bc97482-673a-41eb-b96d-bf5488f7b45b) + ) + (wire (pts (xy 407.67 151.13) (xy 457.2 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c75ec7e-d6c1-4703-8dcb-9bdf941fc4dd) + ) + (wire (pts (xy 464.82 167.64) (xy 466.09 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dfb7860-ceb2-4dfc-91a2-d9b3c92339f4) + ) + (wire (pts (xy 143.51 165.1) (xy 144.78 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e67cd41-5ed2-45c1-8240-b07b91cb5c02) + ) + (wire (pts (xy 250.19 80.01) (xy 259.08 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 612e136a-d543-4307-a4ad-c7060d5dfb74) + ) + (wire (pts (xy 195.58 130.81) (xy 195.58 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66778da8-55b4-4251-9cdf-ba1fb9f6861c) + ) + (wire (pts (xy 365.76 78.74) (xy 365.76 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 676aaca9-252f-4611-ab5c-3ee2418b1a3f) + ) + (wire (pts (xy 82.55 151.13) (xy 135.89 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67a5d6b8-486e-4e66-8968-1ccf9782d10d) + ) + (wire (pts (xy 519.43 77.47) (xy 519.43 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6952d7d1-19f6-4f6f-923e-465139d2cb36) + ) + (wire (pts (xy 415.29 166.37) (xy 416.56 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d7485d1-4b1f-44a8-b4c8-5895c4380fbe) + ) + (wire (pts (xy 275.59 95.25) (xy 275.59 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70258a30-02ae-43aa-b80f-4cc7ebeba6fe) + ) + (wire (pts (xy 316.23 144.78) (xy 316.23 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79cd75a9-934e-4cd3-be34-9a6ad5e64543) + ) + (wire (pts (xy 505.46 132.08) (xy 511.81 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80721e56-0348-4515-9b37-f833d6e70cf7) + ) + (wire (pts (xy 110.49 113.03) (xy 166.37 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8402cb55-66ad-43c6-854f-cae2d34d1a5d) + ) + (wire (pts (xy 251.46 130.81) (xy 251.46 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b861754-1142-4b0f-b951-1a67c42e3e17) + ) + (wire (pts (xy 427.99 113.03) (xy 477.52 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bebbfc3-4a98-4c58-8cf7-e6fb50037b4c) + ) + (wire (pts (xy 275.59 113.03) (xy 330.2 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cdd91b9-b424-4ef5-976f-99f1a6852bc1) + ) + (wire (pts (xy 426.72 54.61) (xy 426.72 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8da5dbfa-5a71-404d-8229-68c548b4fee2) + ) + (wire (pts (xy 195.58 151.13) (xy 251.46 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8de1172f-06c7-4a2b-a2d9-25fb839ba1cf) + ) + (wire (pts (xy 379.73 77.47) (xy 382.27 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ec7f437-0413-4839-8593-9e5a749c3b3a) + ) + (wire (pts (xy 464.82 76.2) (xy 464.82 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91a63459-eb5e-4eb1-9011-08e7eb00634e) + ) + (wire (pts (xy 166.37 96.52) (xy 166.37 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93f96c52-cea0-45e8-873b-d74d582462e6) + ) + (wire (pts (xy 203.2 146.05) (xy 203.2 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 959d9408-dd5c-4244-ab98-55e7335b71c7) + ) + (wire (pts (xy 474.98 77.47) (xy 477.52 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1c52903-f1fe-479d-b331-d8e4a9f739fc) + ) + (wire (pts (xy 365.76 165.1) (xy 367.03 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6bfdce3-1d81-4cf1-878f-7df1e6d813c6) + ) + (wire (pts (xy 66.04 113.03) (xy 110.49 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6d7cfd4-c6be-4e1f-a007-a8d414ff18d4) + ) + (wire (pts (xy 358.14 78.74) (xy 365.76 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa7471e1-ffdf-4ae5-b82b-cdb8f0ca7801) + ) + (wire (pts (xy 194.31 80.01) (xy 203.2 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ada86939-b593-4e5b-98b1-9d4c10787840) + ) + (wire (pts (xy 415.29 77.47) (xy 415.29 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6160ffd-1516-4630-9982-1586aafeae35) + ) + (wire (pts (xy 326.39 54.61) (xy 326.39 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba454651-f6c1-4dec-90ba-f08a7335bdc3) + ) + (wire (pts (xy 104.14 80.01) (xy 110.49 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbc2dd08-5610-45d2-9852-73d445aba010) + ) + (wire (pts (xy 330.2 95.25) (xy 330.2 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbee67c8-f923-4185-b667-090892c7dbad) + ) + (wire (pts (xy 519.43 147.32) (xy 519.43 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c22cb2d7-3f23-40b2-b8ab-969666dbc1d0) + ) + (wire (pts (xy 259.08 146.05) (xy 259.08 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2fafa60-05d5-4ea2-9f61-a8ee7b8521c8) + ) + (wire (pts (xy 138.43 80.01) (xy 143.51 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c327e054-9703-4bc8-a320-e836655986b3) + ) + (wire (pts (xy 110.49 96.52) (xy 110.49 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c383118e-6dd1-4a82-8c19-d1c45a8c0d3f) + ) + (wire (pts (xy 308.61 151.13) (xy 358.14 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c39d3c6c-ad44-421b-9a06-b80bbc70b5ea) + ) + (wire (pts (xy 426.72 76.2) (xy 427.99 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3c99d55-d0e7-43ce-88cb-c83d0781a902) + ) + (wire (pts (xy 203.2 80.01) (xy 203.2 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c51586a0-254d-4be1-addb-18c06bcc6b99) + ) + (wire (pts (xy 358.14 129.54) (xy 358.14 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7dbaf5c-fafa-4147-b8ea-6b59b7198c17) + ) + (wire (pts (xy 143.51 144.78) (xy 143.51 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8e494b0-896c-4e2f-909e-2b1a2dce9c48) + ) + (wire (pts (xy 259.08 80.01) (xy 259.08 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8ab2e81-3949-4f53-bd13-21cc056c217f) + ) + (wire (pts (xy 477.52 113.03) (xy 477.52 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid daaacde7-2bed-489e-b9ac-c6fa41b54d91) + ) + (wire (pts (xy 222.25 96.52) (xy 222.25 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6238e69-5c38-4900-8628-7a46ad3511d4) + ) + (wire (pts (xy 410.21 77.47) (xy 415.29 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5b6e677-da85-47b1-ba3f-bca54ea8952a) + ) + (wire (pts (xy 135.89 129.54) (xy 135.89 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe9f9276-6c36-4c66-b010-5cd1c98a6387) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 519.43 173.99 90) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0420b1d5-51a8-423c-a7b0-463df2720623) + (property "Reference" "U1" (id 0) (at 521.97 172.72 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 521.97 175.26 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 519.43 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 519.43 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e612144-d97e-4da3-91da-2a640d486b60)) + (pin "2" (uuid 8d6ffef3-b152-4d69-8ae6-1401b0c0018e)) + (pin "3" (uuid 3479e27a-8a03-4f15-8876-bd96875fd0d4)) + (pin "4" (uuid c8de7360-71d0-4c54-988a-2e0c3124bc51)) + (pin "5" (uuid a85c548a-f317-4b2e-9d5f-5f888834c09b)) + (pin "6" (uuid 38ed6810-9e90-48e5-9dd7-71f04dfbdba7)) + (pin "7" (uuid cb0c1d1d-34a1-4d44-beb0-e480ffe9a263)) + (pin "8" (uuid 242da4d9-faf4-4381-85fd-b69529d4103c)) + (pin "9" (uuid 8fa65009-6777-4041-a634-f0449b0dc9ae)) + (pin "10" (uuid 090c92e4-589e-4871-a362-9a09624ccde9)) + (pin "11" (uuid 2e8e43ed-76eb-4a2e-bbc1-0b07c27ba0ce)) + (pin "12" (uuid 0a3ec3e1-20e2-4554-ab6f-8dd527d2fcd0)) + (pin "13" (uuid d881e570-44a6-4711-abac-b48058785aea)) + (pin "14" (uuid 9e3d8b86-43e5-4fa2-a029-590f85b24802)) + (pin "15" (uuid 2bcdac14-f2ac-455a-b509-3b827da5277c)) + (pin "16" (uuid 2b2f8e01-005c-442e-a928-1ff215de5561)) + (pin "17" (uuid 378277e0-24ea-4f11-9adc-54378ff8a994)) + (pin "18" (uuid 0f4a2994-9013-478c-b208-53ce18f458d8)) + (pin "19" (uuid 73e7c91b-83ff-431e-a076-dd208d96bead)) + (pin "20" (uuid 1b3e6b3c-4be9-4266-b25f-5675aebb3f59)) + (pin "21" (uuid 3483ad1c-56f2-4750-8de4-936d1c7aa8e5)) + (pin "22" (uuid c0b8b816-6588-4d74-9fdc-464432c985e7)) + (pin "23" (uuid dbfb8f69-b72a-474b-bf10-9f4d783ea4e6)) + (pin "24" (uuid 26306735-e10e-4057-9b14-a9123aaef407)) + (pin "25" (uuid 911c3fbf-7e7b-4bc7-abf7-b3963b01cc8e)) + (pin "26" (uuid 25880ac8-e25a-4ee7-8d97-d5346c94f3a2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 426.72 48.26 270) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 097ef1c9-fc88-4810-ae5d-fb0f0f96d79a) + (property "Reference" "U1" (id 0) (at 429.26 48.26 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 429.26 50.8 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 426.72 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 426.72 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 40de0d35-c9e7-4b67-924f-3b16d6e64ca4)) + (pin "2" (uuid 77264768-08b7-4570-b3a2-c7b00716e5ca)) + (pin "3" (uuid 4385f3f4-5a12-4a06-af66-e13c34ebe177)) + (pin "4" (uuid da8c4c87-d729-4b08-86f9-d1ed9008e1f9)) + (pin "5" (uuid e4ee36c9-12b2-46be-a001-522b81377db0)) + (pin "6" (uuid 25084871-6f37-45c0-95d6-28ad071f78be)) + (pin "7" (uuid 82a9a191-dfee-4fb5-8c28-ed73ed6fdfca)) + (pin "8" (uuid 09f3a195-7305-4632-8a81-c565438272d8)) + (pin "9" (uuid 8b38cad2-bd3b-4fd6-960c-06076b7b4437)) + (pin "10" (uuid 3c7ca458-d51a-4229-a29f-003ed2641cae)) + (pin "11" (uuid c3e6d024-13f2-45fa-ada2-5da6bfa2eebe)) + (pin "12" (uuid f172edb5-6b5f-475b-8ade-643de312d704)) + (pin "13" (uuid 8670c20e-f451-4d8b-8b8e-8be46981273e)) + (pin "14" (uuid 32769920-065c-4675-b849-d4b08e82c2c7)) + (pin "15" (uuid bcfc7e41-8e10-4ffd-9d21-07af85dfa0c7)) + (pin "16" (uuid 002e8bb3-db99-4d50-b656-dc41d5addac9)) + (pin "17" (uuid a19c2ae0-7230-4c7b-b61d-96c185aab6e1)) + (pin "18" (uuid 6332c27f-d8b4-4239-ac59-ade0456cb671)) + (pin "19" (uuid 3bd49c8a-0d05-4131-bfde-941d969fcdd9)) + (pin "20" (uuid 337d31e8-ce6e-4dd3-b418-55120bf2ebfc)) + (pin "21" (uuid 4a303ef1-f618-4301-a54e-e477c351ecd8)) + (pin "22" (uuid 707fd55f-7189-49d8-8053-b7ead1bf2189)) + (pin "23" (uuid 67ace127-c9f8-4c10-b6c8-ce99c32dc83e)) + (pin "24" (uuid 23209aa8-efb1-4f84-8d2d-1191841daa6d)) + (pin "25" (uuid 5ff0e19a-73f4-475c-ab13-5a639107b6a5)) + (pin "26" (uuid caa0fbe8-d49d-4edd-bc27-3057faa1a9fa)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 344.17 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0a238d0a-7f40-4983-be11-661315aedab0) + (property "Reference" "U11" (id 0) (at 346.1894 71.12 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 346.1894 74.93 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 344.17 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 344.17 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9020c224-23b7-4487-9b6a-7bb185b1730d)) + (pin "2" (uuid f1058d01-bd5a-4fcc-b939-fb12e0647a25)) + (pin "3" (uuid d173440e-c948-4831-b0d0-e36fbc3d9db4)) + (pin "4" (uuid d6267bd4-207f-4ad2-8d09-a7375d0efa11)) + (pin "5" (uuid 64f4039b-1299-405e-89af-98334c1d891b)) + (pin "6" (uuid a24f9e9b-b7d1-4ea8-b01f-d70e3866ec1c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 466.09 173.99 90) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0c294141-73e4-4427-8f66-8d83abceac1f) + (property "Reference" "U1" (id 0) (at 468.63 172.72 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 468.63 175.26 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 466.09 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 466.09 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c43b7781-2922-48d2-9eac-3ea3402a599b)) + (pin "2" (uuid 0a90e607-8f64-466a-a71f-af5593edeadd)) + (pin "3" (uuid dbdcddb6-2bc0-46e0-a924-2fbf9bd6543a)) + (pin "4" (uuid 5a666b21-30e1-42ec-ba3a-798439afff6e)) + (pin "5" (uuid 0dd67b25-828e-44c6-ae3b-95acefed6a44)) + (pin "6" (uuid 549a93db-1098-4760-abe9-0ad91e4674de)) + (pin "7" (uuid cefde1c1-5ee9-4c63-9d7f-0ed6b2c540b3)) + (pin "8" (uuid a02a0c81-0f5d-45a1-864a-eb618d55453a)) + (pin "9" (uuid bf4aeae3-fcd2-4d20-924c-027fc3c140a4)) + (pin "10" (uuid 4d0dab55-1459-4b7b-964e-faae9e84d1d0)) + (pin "11" (uuid 2af7eb06-57ee-4b44-8751-cfb5f6dc531f)) + (pin "12" (uuid 737d9090-c127-4000-ab29-d2679be56eed)) + (pin "13" (uuid eed0c0ca-691e-4149-9eb3-5ec18deda89e)) + (pin "14" (uuid 15182370-3cde-49bd-9091-9b770eeb5c0c)) + (pin "15" (uuid 2104a0bc-8fea-405a-b47c-2debed9984bf)) + (pin "16" (uuid 5f99a58c-139c-461a-a13b-90ffa56fe19f)) + (pin "17" (uuid 78fce9a9-61b9-4a82-9cf1-56ff71bbaecf)) + (pin "18" (uuid 0836a29d-1378-4977-aedb-08e25bd4f9eb)) + (pin "19" (uuid 85db451f-8957-4a5f-a588-625dd92c3911)) + (pin "20" (uuid c39d7677-fdc1-4147-aa67-31ed91974581)) + (pin "21" (uuid 023dd510-a019-4f50-9fc6-b03a8bc819e8)) + (pin "22" (uuid 43cf2893-25d4-43a0-87a2-718967a0988b)) + (pin "23" (uuid df700082-40c9-4f06-9cf4-6c076aa8d923)) + (pin "24" (uuid ae61c79f-ad00-4b00-826e-371427727b51)) + (pin "25" (uuid 1f47cf68-325e-44f9-80e9-8f1cd3ba0fae)) + (pin "26" (uuid 53a7c0e5-3b85-4691-b16a-061f36c69346)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 180.34 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 10215768-c59c-40c4-9b4f-861c9ff82ebb) + (property "Reference" "U5" (id 0) (at 182.3594 72.39 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 182.3594 76.2 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 180.34 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 180.34 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d566f840-776e-472c-a241-6bc0501bb374)) + (pin "2" (uuid 02f9cf52-47db-48e1-a6cb-554e270ff974)) + (pin "3" (uuid 4e263725-0176-44b5-8dae-30aab6ee3b05)) + (pin "4" (uuid 5268e691-55bb-422f-afde-de4e3731740b)) + (pin "5" (uuid c1654b75-c972-4f08-b35c-d39d2e984983)) + (pin "6" (uuid f1a6c4a7-6a2a-4419-8585-b51e33aa7549)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 318.77 170.18 90) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 125cdf78-e36c-4537-a914-e950985875fa) + (property "Reference" "U1" (id 0) (at 321.31 168.91 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 321.31 171.45 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 318.77 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 318.77 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 773e5eec-c5e4-4d19-8b61-9459fff605ee)) + (pin "2" (uuid 7db6e99d-2b7e-4977-a689-d9acf0381aa6)) + (pin "3" (uuid ebe7859d-2f22-42aa-b7f7-02999ea1faea)) + (pin "4" (uuid bee322b7-dce2-4486-9774-80c6c7ece5fb)) + (pin "5" (uuid a8c44718-2809-4888-9390-764d9b440fe0)) + (pin "6" (uuid 8a46e519-a28b-45c9-ad63-b9a9a285de6c)) + (pin "7" (uuid fde98af4-62d2-450e-95c8-460b7f7b296c)) + (pin "8" (uuid ca9b2c96-bc7c-4b29-887d-6393ce43c88f)) + (pin "9" (uuid a671d758-9658-469c-aedb-65427d985093)) + (pin "10" (uuid b1b99d16-dbb5-49a9-a5a1-f651a5c6d39f)) + (pin "11" (uuid 095f194d-9798-400e-a1c6-0527f760c2a6)) + (pin "12" (uuid 045ca749-0390-4e43-9315-5a4e6f4209f6)) + (pin "13" (uuid a3f14c05-d342-4506-ab70-23e1b937dfcf)) + (pin "14" (uuid e313073a-218d-4c3a-a328-535dbf070302)) + (pin "15" (uuid 551f292f-613b-4264-bfeb-23a9fafa9bce)) + (pin "16" (uuid ba27d605-bb6a-4d5e-a6d1-7994214ca635)) + (pin "17" (uuid 8ce88b8f-dcb9-4587-8e6c-0d6f38543b3f)) + (pin "18" (uuid 48f341d4-d8b8-48b9-8861-095a93a3ed87)) + (pin "19" (uuid 12c85eb7-82ae-40f9-81a7-67b502e211a4)) + (pin "20" (uuid 24fa3c17-df10-4c8a-83fe-c4362001d9d7)) + (pin "21" (uuid 358578c4-9dfa-4af9-9dba-db423ed0f0dd)) + (pin "22" (uuid 15882f0d-97fb-4b12-a5f4-af3d96e96cd4)) + (pin "23" (uuid 09b628fc-5bdb-4659-80c3-168efaa2805a)) + (pin "24" (uuid 4f7b8671-5a10-4b92-b8a7-c47536855c40)) + (pin "25" (uuid 64d7328f-76e6-4b4f-90a5-fdfbfdb5b673)) + (pin "26" (uuid b6dc6bc1-e764-4f7e-853f-7207706aa7d5)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 455.93 133.35 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1369a4cc-064e-4052-82fe-90287561c653) + (property "Reference" "U16" (id 0) (at 471.17 131.445 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 471.17 135.255 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 464.82 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 464.82 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d0ceb81d-912a-42de-9bf8-afb41c282a81)) + (pin "2" (uuid 82ae0b47-7f02-4ef2-9833-b83de74ece3a)) + (pin "3" (uuid 9dd0b68f-6a6e-40ae-af6a-a40bb7efaca3)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 307.34 130.81 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 25340e2f-fe67-4b6c-8f4e-ac4021a13ccd) + (property "Reference" "U10" (id 0) (at 322.58 128.905 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 322.58 132.715 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 316.23 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 316.23 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f222062a-631d-42c8-a399-d20a3a78d1d1)) + (pin "2" (uuid d2f0e6b3-2bb4-4821-83fc-c972e3c5493a)) + (pin "3" (uuid 5fb007f1-3f8c-4225-9e34-ea179c51230f)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 406.4 132.08 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28bebb12-d351-4d43-9da5-e1bae09f1f91) + (property "Reference" "U14" (id 0) (at 421.64 130.175 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 421.64 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 415.29 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 415.29 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 35958a75-9f9c-450c-a4c9-0b0df517c650)) + (pin "2" (uuid 99de5faa-3820-49e3-b745-76bb55505e72)) + (pin "3" (uuid d7bd5156-99a4-44d6-be08-0662d06e2797)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 74.93 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2ac2fa50-f651-4cb4-849b-95ce904777a3) + (property "Reference" "U2" (id 0) (at 74.93 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 74.93 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 76.2 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 76.2 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 140f52a1-e844-487e-9c06-68692427b195)) + (pin "2" (uuid be7c9e03-cd68-4283-a8ab-6a08d7f6bbde)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 326.39 48.26 270) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b1c2cab-54ef-410b-baec-c4cec8b2a4e8) + (property "Reference" "U1" (id 0) (at 328.93 48.26 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 328.93 50.8 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 326.39 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 326.39 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a14d81ae-fff8-4f4e-9b74-ccd22bc255ff)) + (pin "2" (uuid d8a67dc1-eadf-4582-bdd0-d7ec424bb08b)) + (pin "3" (uuid 16c41366-ba85-413d-8767-21f91c9c2dc2)) + (pin "4" (uuid 0bf1338b-87c2-44aa-9974-ed00394ef110)) + (pin "5" (uuid f82e0640-e189-471b-bdf4-7360d6045b0f)) + (pin "6" (uuid e6fb2109-7d2f-496d-a0bf-da2e0525983a)) + (pin "7" (uuid 00d53dcd-94f9-4405-a15a-4aeef98a8402)) + (pin "8" (uuid add0f571-e642-4b86-b42a-5a528a39eec0)) + (pin "9" (uuid 6968b898-6c44-44ae-a268-dcd716f02125)) + (pin "10" (uuid be0aed58-9594-4ceb-9108-2a11772a05cf)) + (pin "11" (uuid 014fe752-b05a-44ce-9a08-d6ed21cae924)) + (pin "12" (uuid 663ad08b-153a-4089-a886-c02247f762e3)) + (pin "13" (uuid bace935e-8ceb-44e3-a6ab-b369daec0fee)) + (pin "14" (uuid 50a36d51-2a95-4686-8484-a50845236c4b)) + (pin "15" (uuid cb472b1e-a392-4a6d-9511-df71b5532ce0)) + (pin "16" (uuid ed707fd8-d933-4989-864b-5e0a6a04e205)) + (pin "17" (uuid 7945a259-f30e-438e-a7b2-44b176428c13)) + (pin "18" (uuid 74232395-2196-45c8-981f-82de3d56e3a7)) + (pin "19" (uuid 82cd22af-0cd8-42a0-b44e-4660854692a9)) + (pin "20" (uuid ddf21f19-536a-4981-a339-99eab3286322)) + (pin "21" (uuid da556ee7-2794-41d9-868a-9825a61b4156)) + (pin "22" (uuid b7f97fff-fede-48cb-b230-7ad601cc09d1)) + (pin "23" (uuid e0cfabe7-46c4-4796-b099-df9761195d7e)) + (pin "24" (uuid 3f6cbffb-f715-40af-8a30-c5a89e027c4d)) + (pin "25" (uuid a57616cf-5575-44e8-b59f-48b227f8dd7a)) + (pin "26" (uuid c3bbe0d2-19e7-488d-a185-fe91c83bcd3e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 60.96 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3bc4feb5-0464-4e39-93dd-d67a6257a0a2) + (property "Reference" "U1" (id 0) (at 61.595 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 61.595 148.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 60.96 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 60.96 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e63084d-83e1-4845-9214-aac5ac149769)) + (pin "2" (uuid 2a53092c-c0cb-4b57-9d28-611d229c1c75)) + (pin "3" (uuid b11510f4-5802-4a2f-b43b-c565fa172733)) + (pin "4" (uuid a50f30a3-7581-454d-acd2-61257044325f)) + (pin "5" (uuid 1fdd83ac-4125-4d88-8aaf-554b392fb1d0)) + (pin "6" (uuid 2faf05a5-f40a-434a-b983-92052463f526)) + (pin "7" (uuid 3073570e-92ef-4478-87be-a989fdb4632e)) + (pin "8" (uuid 73842b75-3321-44c6-af62-bde36bd9c627)) + (pin "9" (uuid 3691ee63-c3d9-459d-b976-2b72d61cd166)) + (pin "10" (uuid 70886e86-76a0-41a9-a0bb-b1f52aa6827e)) + (pin "11" (uuid 0fd47999-44d2-4c68-82de-e13bdb954913)) + (pin "12" (uuid 8b6560c7-afa7-4b5d-8c20-018a52a55ccf)) + (pin "13" (uuid 3dfcfa00-caaa-490a-ba80-bae84ec6bb96)) + (pin "14" (uuid 2cdd8f20-5169-47da-9658-5542da5586b0)) + (pin "15" (uuid 4a249cd2-dcf6-4b57-88fc-ed612dc369fe)) + (pin "16" (uuid a1da6c03-efa8-4b57-960f-0d7015f94524)) + (pin "17" (uuid ae572319-d8bc-4506-b17e-4307b37192cb)) + (pin "18" (uuid d0734693-d5c7-4dae-be07-34208058f214)) + (pin "19" (uuid 47240951-0fdc-46b3-be35-7e9eed9c14b1)) + (pin "20" (uuid ebccba84-0a4b-47a7-b10a-86fe2a292fde)) + (pin "21" (uuid 99df0109-c80c-499d-a039-88e3b44b72b4)) + (pin "22" (uuid 22d78a79-4f8d-4952-b88c-001c03b97a49)) + (pin "23" (uuid 8934fc41-c711-458f-b0f2-b84de685c792)) + (pin "24" (uuid d3cdd0de-b2f8-426a-b73e-c6284508a638)) + (pin "25" (uuid caf4ad36-885e-47eb-81e5-471b5f81923c)) + (pin "26" (uuid b3f697ee-8f6d-4f92-9760-3e99cc0b8e5e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 367.03 171.45 90) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4034ab69-ad0a-4c43-8038-b89fe0665469) + (property "Reference" "U1" (id 0) (at 369.57 170.18 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 369.57 172.72 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 367.03 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 367.03 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 94f33109-50c2-4e8e-970f-135fc8d15452)) + (pin "2" (uuid 065e8e37-da7f-4206-88ba-db8b4bbe0c61)) + (pin "3" (uuid 950f27f5-4e22-4f0b-8683-99de1f953c77)) + (pin "4" (uuid 47e0eaa0-dc44-40b6-9a97-b4388b5f8f55)) + (pin "5" (uuid d7d40086-a288-4c9a-b479-b0190e63d3fe)) + (pin "6" (uuid 2e4436be-9926-4eb8-92f2-251e9ab20fb6)) + (pin "7" (uuid cd3329fc-b516-4226-83e3-23bafc6ddef1)) + (pin "8" (uuid a7fe9cd8-6269-46a8-8808-951e333e9ace)) + (pin "9" (uuid 2a79f905-3658-4f79-adaa-a5ab02b4b8ad)) + (pin "10" (uuid 328dc32b-7d3f-466a-83f7-fe0bbc769257)) + (pin "11" (uuid 5c4e7476-68e9-4bd1-b172-2cc0a7ce6b46)) + (pin "12" (uuid e54fe9ab-14aa-4e27-97ff-219940da3c53)) + (pin "13" (uuid f84954b6-bc9e-4ca1-a453-060b51df0dd1)) + (pin "14" (uuid 521d360c-b8aa-492a-926c-c3d0d5300a09)) + (pin "15" (uuid 049c4ea8-da72-460d-8a3b-e63cf9482984)) + (pin "16" (uuid 1e1f5ed3-dfb1-4d3f-9451-0ec6fb4b534a)) + (pin "17" (uuid a8a3d28d-08c5-452c-9cae-7f0e5f56e798)) + (pin "18" (uuid ae5ab1f4-1e86-4b54-a9b4-7888f15da79f)) + (pin "19" (uuid c40e246d-1ff6-4226-aca0-ee9ac8ee9926)) + (pin "20" (uuid d89f14c3-4fed-4d38-9bca-ea5cea749957)) + (pin "21" (uuid 093d1a5c-2820-464e-8000-da6cb4532434)) + (pin "22" (uuid e06ff1eb-13e9-45fc-9878-c59b9bd81213)) + (pin "23" (uuid 38c7c045-a9bf-4dc4-86f9-1850ee95cd46)) + (pin "24" (uuid d3e5f124-0e4c-41e6-a019-d72ec673dc30)) + (pin "25" (uuid 9b16f187-db2b-4a49-afd3-c7a76b4ad58b)) + (pin "26" (uuid 309755e2-4886-4f5d-a84a-19e4a89179d7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 204.47 172.72 90) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 41e6d73e-4987-4f14-80e5-d46fd36078ac) + (property "Reference" "U1" (id 0) (at 207.01 171.45 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 207.01 173.99 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 204.47 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 72e03376-e619-4963-a1a5-6c42be4741be)) + (pin "2" (uuid 53f5fb75-881b-42d3-a21d-1b5a0ae59b63)) + (pin "3" (uuid d0fdec70-106b-4b5c-bcc3-9eb81fcf5dc8)) + (pin "4" (uuid 33db4015-beb5-4a16-abc9-6ee0d01c3a81)) + (pin "5" (uuid 187313a2-7965-4991-bd1e-3adf6a948fea)) + (pin "6" (uuid 1169bba6-c2ca-4450-bef0-9ddfb900e716)) + (pin "7" (uuid 8f3cf830-39b6-4341-817e-9e46345c79d1)) + (pin "8" (uuid b2df2942-e881-43d5-8dcc-00c5761a27d9)) + (pin "9" (uuid 0f42fc13-a6e0-4363-935c-598c87101892)) + (pin "10" (uuid 3500b0ad-0761-4474-8c59-024eaca3cac2)) + (pin "11" (uuid 734d95e6-4c11-4e87-86d5-ead2e3b96414)) + (pin "12" (uuid cd845faf-7721-43b5-9550-6921d63f65a1)) + (pin "13" (uuid 4f00de08-881a-471b-acc1-dda530ecde86)) + (pin "14" (uuid 505e7002-65f5-44e4-9580-28c1e067f7e1)) + (pin "15" (uuid c635d610-e05e-471f-8402-18e93fb26ca5)) + (pin "16" (uuid 85a19ad8-c79c-4eeb-b3c3-0f8362e57cbc)) + (pin "17" (uuid 3ff810d7-85a6-42b5-8daf-0e5eaecb8070)) + (pin "18" (uuid aa5e6623-8c2b-4090-a25a-1f6ab7ba97b4)) + (pin "19" (uuid ae43127c-081c-4ebf-aff2-38e82b5942ae)) + (pin "20" (uuid b7b252d6-411a-4b19-9bb2-1ebe500301f6)) + (pin "21" (uuid a8e04f77-779a-450e-8c79-c396cd9f04b1)) + (pin "22" (uuid 85dabcbe-84b5-4379-bb80-ac08a870dfd9)) + (pin "23" (uuid 43935435-87c3-4d92-97f0-3a99cdcd81b6)) + (pin "24" (uuid fea534d1-295b-439c-9116-e6762de86188)) + (pin "25" (uuid 6d2b8a8a-c727-462b-9f60-57d17b73763e)) + (pin "26" (uuid b88c8015-5e17-4a70-b85c-4985bb418f0e)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 441.96 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 46756d9f-4fa2-4b50-ab42-656558de05b7) + (property "Reference" "U15" (id 0) (at 443.9794 68.58 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 443.9794 72.39 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 441.96 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 441.96 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 07a327fc-c03c-4a75-9e06-23bbebd2cf52)) + (pin "2" (uuid c92c70b7-dbf3-4751-a879-5ec19f07fb85)) + (pin "3" (uuid ebf25ac6-b38d-43cd-958b-a5c02208760b)) + (pin "4" (uuid f570ce13-04a8-4236-a274-2d558da4b09a)) + (pin "5" (uuid 12e2b98f-2d26-4c8d-bead-42cba3a7acdb)) + (pin "6" (uuid 5cd8d6bd-3562-403e-9c22-4b8eb8517ae8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 474.98 48.26 270) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b47a4e4-e4bf-4cd4-b2e1-4edc1aa59b53) + (property "Reference" "U1" (id 0) (at 477.52 48.26 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 477.52 50.8 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 474.98 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 474.98 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c2116448-d8c4-4e35-9be2-9f768c95351c)) + (pin "2" (uuid 26871a3b-626c-4be6-847e-ee2ad35e253f)) + (pin "3" (uuid 6d8fd5b3-a52b-4ddc-99ef-04b27d9b9ce8)) + (pin "4" (uuid dc6d8759-937e-4119-9c0d-3d1ef294037d)) + (pin "5" (uuid e3773587-c74d-489c-b167-b711f41e2e03)) + (pin "6" (uuid af627471-0c88-4b93-837f-4ef236c9d1ac)) + (pin "7" (uuid 01b9d798-d3ab-4671-b334-14cf651b683d)) + (pin "8" (uuid c6621439-81e2-4e94-acd4-0c83f1bcb850)) + (pin "9" (uuid 3de3d2ee-5457-4733-82fc-e49ffd8fb836)) + (pin "10" (uuid 3877faec-6f07-4712-a8e1-ef2708afa129)) + (pin "11" (uuid 10945e0c-d6dd-49fa-8321-7f03aafcfb69)) + (pin "12" (uuid 80b7f4ec-35f8-4196-b48e-b234783b0de9)) + (pin "13" (uuid 67384a38-3367-40f1-94a6-483ec9d41161)) + (pin "14" (uuid 9979d1e2-46b0-4f15-a55e-719bf6bbbb0e)) + (pin "15" (uuid 57c0ab31-e30c-4253-b41d-ce2e8ca4a1f5)) + (pin "16" (uuid 503ba33f-7aa6-40b4-a538-7b1d7e05bc61)) + (pin "17" (uuid d8ad65ff-4d26-4ede-88a4-87206f11949c)) + (pin "18" (uuid 7f2622fa-2280-4bd0-9312-d5a1cd4366be)) + (pin "19" (uuid 466c69c1-2531-404d-b627-7cfda8edbd8f)) + (pin "20" (uuid dbd1aaaa-4503-48b0-9a08-e5cf35057280)) + (pin "21" (uuid 6ff28efe-1eb9-409e-969d-cae79aaa8baa)) + (pin "22" (uuid 51333a48-8033-48d5-8632-9f831308ad1e)) + (pin "23" (uuid d3f5b434-86e0-47b9-bf29-cae65deddc9f)) + (pin "24" (uuid 846d9036-a12d-4214-9ff8-249feeaf954d)) + (pin "25" (uuid fd03c07f-f733-4695-af00-d169a55c07e4)) + (pin "26" (uuid 7bec92e9-e42d-4e85-8635-042caf4bcc0a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 416.56 172.72 90) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58fcd514-eaf1-4070-82da-78278c1e9176) + (property "Reference" "U1" (id 0) (at 419.1 171.45 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 419.1 173.99 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 416.56 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 416.56 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e136047a-e33e-4ce1-a1f8-fb55f4459164)) + (pin "2" (uuid fe33c51e-a9b0-4628-93ab-f73f88a6863a)) + (pin "3" (uuid 0906010a-efd7-4c25-99cf-7daa960eb486)) + (pin "4" (uuid 70d43972-ce92-4ec4-9479-f2ce0285ea98)) + (pin "5" (uuid 22b8227a-2cfe-470f-b6c5-76f46a1d5dff)) + (pin "6" (uuid 7883c133-bb13-488f-b5c0-cf3949be83f0)) + (pin "7" (uuid 2ed1eee1-0898-467c-ab1b-74029b84407c)) + (pin "8" (uuid 9521da3e-bdfd-41ff-8be6-027176665117)) + (pin "9" (uuid f0c01039-bd87-4c80-a3fe-27d23652dc78)) + (pin "10" (uuid 370db3cc-a1d5-4771-ac32-0a842d56dd54)) + (pin "11" (uuid ec192949-6875-433b-8a5e-3e8ef2b66dea)) + (pin "12" (uuid bbae5d21-8b36-480b-87d1-fd6819d007d9)) + (pin "13" (uuid 575b1665-573a-41d1-b64a-16a0a623dcd4)) + (pin "14" (uuid a4c2a700-a4ff-45b3-acb9-b24a529fd782)) + (pin "15" (uuid 053901ba-1665-4e22-b759-51220ce4754f)) + (pin "16" (uuid 92582c6f-d911-4cb4-9fbc-58fd945a9281)) + (pin "17" (uuid a05e12ba-ae66-4e1e-ac8e-358bcea9921d)) + (pin "18" (uuid 27460b13-50cd-43a2-969c-e012967dea7c)) + (pin "19" (uuid eba679d9-96aa-4f27-a74d-10d83bec0083)) + (pin "20" (uuid aef7ac83-bbc8-4803-9c8d-bdd0120bc5be)) + (pin "21" (uuid 1763b66b-31d5-44ac-bbdc-b21418383b47)) + (pin "22" (uuid 05660f33-ecee-43fb-8976-2468efe1f004)) + (pin "23" (uuid cead2854-6edd-43d8-b4e7-36b12b2cf952)) + (pin "24" (uuid 07ece833-9230-4c11-8527-b1b05c878a04)) + (pin "25" (uuid 70d45f9f-b722-4a6e-ae0a-19205ca81234)) + (pin "26" (uuid 2c9c2941-95e0-4fe6-b11d-a2d758da3bbd)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 491.49 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5c979a0a-d36e-4347-be60-bdd9757aa8ab) + (property "Reference" "U17" (id 0) (at 493.5094 69.85 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 493.5094 73.66 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 491.49 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 491.49 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 33faa4c8-6d83-473e-ae9c-17efb22b5bbc)) + (pin "2" (uuid 792dfee2-8632-4c1a-8e81-856072302d8f)) + (pin "3" (uuid 4c3049ab-84a5-4e67-8f1a-280127059a08)) + (pin "4" (uuid bbf4a73c-51d1-4a77-beb9-0d97a998b109)) + (pin "5" (uuid 0c7b8a89-889a-43b4-8cdf-8ad8c6c940bf)) + (pin "6" (uuid a62c11d9-6112-4323-8493-61cebb406692)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 194.31 132.08 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d5ce877-3c16-48af-a461-3389edbce5ba) + (property "Reference" "U6" (id 0) (at 209.55 130.175 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 209.55 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 203.2 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 203.2 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2ad6d95-b19c-44da-860b-d4a5b194b3a2)) + (pin "2" (uuid 335197f9-6551-4aee-a54d-53bf53cf8e91)) + (pin "3" (uuid 7fe5da06-623a-44f2-967c-35fa44115486)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 510.54 133.35 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6b194cd6-4af2-4fae-95cf-e4187971b166) + (property "Reference" "U18" (id 0) (at 525.78 131.445 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 525.78 135.255 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 519.43 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 519.43 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b14dcd37-7571-4e0c-966d-58288324f6ed)) + (pin "2" (uuid 011eccde-0144-4964-991c-e2825edc5fe6)) + (pin "3" (uuid d03a3dd9-85a3-45ae-877f-370f27645949)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 396.24 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6dc51112-6f77-4530-b979-37a4be8d6dc2) + (property "Reference" "U13" (id 0) (at 398.2594 69.85 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 398.2594 73.66 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 396.24 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 396.24 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 09d4acd4-7f3e-4729-8a67-cc8561e4098f)) + (pin "2" (uuid 448f9cab-47e9-4ad0-8e8d-e1ca07ae8e3c)) + (pin "3" (uuid 4741b1f1-bb8f-4f57-bc70-9adfd24899a8)) + (pin "4" (uuid d7744de4-085b-43f1-82e4-4608c0f4fefd)) + (pin "5" (uuid b2c084b2-b918-424e-a106-2abb9ce1621c)) + (pin "6" (uuid 2a6dc455-4f89-4523-8c1e-1a9b5de9995f)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 289.56 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6ef7a048-b89e-4b3d-84f2-8ceb9bd4573d) + (property "Reference" "U9" (id 0) (at 291.5794 71.12 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 291.5794 74.93 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 289.56 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 289.56 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b76f7502-6fd3-4a4c-8b44-4163be38168c)) + (pin "2" (uuid abad91b0-34ed-4bfb-a1ad-dfbb58c3c41a)) + (pin "3" (uuid 40927674-6946-488c-8931-d9d99fe8dd7c)) + (pin "4" (uuid 6f7ea29f-228d-49d0-8277-b3a3a7e64712)) + (pin "5" (uuid 933324dc-9a07-4ac0-aba5-0ade2d50e765)) + (pin "6" (uuid 9ade3455-7bf5-48cb-a7b1-92b0df1ef444)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 144.78 171.45 90) (unit 19) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6fb6fc8c-8dbb-4e00-9f2e-5f716f0ddfb5) + (property "Reference" "U1" (id 0) (at 147.32 170.18 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 147.32 172.72 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 144.78 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cb59c13b-d384-4d06-bb61-440ce9908adb)) + (pin "2" (uuid 34ebcd0c-17be-4199-8cac-10dbd7a1c189)) + (pin "3" (uuid 9ac6797d-4476-4e82-9e2c-684e5bc35974)) + (pin "4" (uuid 1d391653-78e7-4872-97ab-1748ad3997cc)) + (pin "5" (uuid 4e439445-9bb0-46da-82da-50acda920d12)) + (pin "6" (uuid 773394fb-b718-4961-9fc1-9556d6a0c259)) + (pin "7" (uuid 3ae7ac84-c865-4808-9de1-61f6e2812556)) + (pin "8" (uuid 2b668cdc-6e6d-4a98-a2c5-7dad11efb08a)) + (pin "9" (uuid 3dc06528-87db-42a4-a220-3ff897df5af8)) + (pin "10" (uuid ae65e10c-43f9-4988-90ba-006d6c703076)) + (pin "11" (uuid 26173d34-cac7-4c1a-8e5a-96cf5cf46501)) + (pin "12" (uuid 1c71243e-13d7-467c-aaf8-b78ffa222ea0)) + (pin "13" (uuid 3ceb0691-d63b-4f9b-9956-675694db876c)) + (pin "14" (uuid d0eed70d-ee11-4cb8-b7d3-12bbd63a538a)) + (pin "15" (uuid 361cb5a3-3d96-42e5-a6f7-6cd8a8f9e41d)) + (pin "16" (uuid b5a84322-b674-4b70-99c3-f64c6d19c992)) + (pin "17" (uuid e2a3a80d-69cd-4898-bee2-c4fa50a01d8c)) + (pin "18" (uuid 5f37c525-9093-4c9d-ad9c-389e5e339287)) + (pin "19" (uuid 64e1e0d6-b1e5-414d-804e-343d26afe45d)) + (pin "20" (uuid 9184e5f9-6e62-4c72-958c-b267faedc4ff)) + (pin "21" (uuid d90007e3-d956-4db6-8830-eabacface9c9)) + (pin "22" (uuid c04fd3d0-1ad6-453e-a536-4a960965177e)) + (pin "23" (uuid d3400413-2b53-4679-a5ef-e8d5de52543b)) + (pin "24" (uuid 9a865354-8148-463a-8249-b66f9126c580)) + (pin "25" (uuid 532f085b-a5ee-4913-9cfb-eeafade6fc21)) + (pin "26" (uuid 9432185c-fdc5-4876-a4dc-3b1332a81619)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 236.22 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 85047856-f32b-4fef-b597-e0ee42e80900) + (property "Reference" "U7" (id 0) (at 238.2394 72.39 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 238.2394 76.2 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 236.22 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 236.22 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bfd19797-190b-4fb5-9f6f-467eb14c1c61)) + (pin "2" (uuid a6f92460-e448-4583-8ddb-efd05be78d7c)) + (pin "3" (uuid 75841925-8383-4236-b54f-bd2fa1eb5d67)) + (pin "4" (uuid f83369fc-a4c5-465b-b7cb-191a420fea6d)) + (pin "5" (uuid 3c50b323-be9c-4a60-bc64-8dc5c8beef2b)) + (pin "6" (uuid 3fd31cb0-c812-4b2f-9867-4ab0b4f1b485)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 261.62 170.18 90) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8653dd41-9fc6-451e-998f-24a411192b10) + (property "Reference" "U1" (id 0) (at 264.16 168.91 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 171.45 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 261.62 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 261.62 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 61d2c220-920b-4333-b532-ca8f051ba2bb)) + (pin "2" (uuid f91a9b18-bbdc-42b2-acac-6cec8d3c89b0)) + (pin "3" (uuid 83a65e5b-9431-48dd-a8ad-7459e3bacc16)) + (pin "4" (uuid 85230736-77ac-4c12-885f-6fba1edd32c9)) + (pin "5" (uuid 81dee53f-50fc-42a7-b34a-6366fd86d9c9)) + (pin "6" (uuid 74613f56-26c7-408c-a08d-002561c8b1e5)) + (pin "7" (uuid d6b5b871-8ed9-445e-805f-e2f3e0410302)) + (pin "8" (uuid 183ef6f2-4160-4dd1-be51-5a59349aa460)) + (pin "9" (uuid a29b4a59-181d-4de3-9d59-1152d3114485)) + (pin "10" (uuid f5611b88-8f2d-4bbc-a5b3-041c3fcce55f)) + (pin "11" (uuid 80840648-53ce-4850-acb3-30668d8a879a)) + (pin "12" (uuid 0473c137-fc1d-43e1-9388-0d7a1b60bb00)) + (pin "13" (uuid 3c54b81e-7ef1-4201-a2e7-ddd3966d914b)) + (pin "14" (uuid 58df147b-b902-48c7-b0a6-1bc5bd1ed08b)) + (pin "15" (uuid 7d74a0d3-7fda-4a5d-8dca-774923246ebe)) + (pin "16" (uuid ab259283-dd02-474d-b3bc-392936ebf298)) + (pin "17" (uuid ef9ec50a-3217-46a2-a284-141db663d278)) + (pin "18" (uuid 414af0ee-f763-41a5-9a58-4e872c555090)) + (pin "19" (uuid c5c8d961-97fe-408a-b4d3-e8419f84b257)) + (pin "20" (uuid 6e975147-a595-4076-9e0c-772539631497)) + (pin "21" (uuid e56cf331-2d91-4974-9266-4c68eaef4662)) + (pin "22" (uuid b55bb133-a47a-4b0d-9625-84a7047266b3)) + (pin "23" (uuid 2ce2881c-a583-4881-ac1c-a10490a63f42)) + (pin "24" (uuid 1d4fe080-a55d-4fef-9bb3-68f3aad82a27)) + (pin "25" (uuid 4903f052-7d99-44d4-9e3d-3dd2c5970df9)) + (pin "26" (uuid 5412e9db-d37e-451d-bf81-6a2672d71024)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 162.56 50.8 270) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8be98b49-c9af-42cb-949e-89100aaf3993) + (property "Reference" "U1" (id 0) (at 165.1 50.8 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 165.1 53.34 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 162.56 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9191921e-b041-447b-b315-1be105c83013)) + (pin "2" (uuid 53bfce89-fcf4-44a5-920a-0d02c2dd2153)) + (pin "3" (uuid d0aee65b-ae62-4fd1-b08c-a99ea7fdc166)) + (pin "4" (uuid c1d18984-059b-4663-89aa-d9a252ccfbae)) + (pin "5" (uuid 0cadb604-1e66-4504-918f-665fc2a4af01)) + (pin "6" (uuid ed3bd69d-8434-436d-ad69-52ab10438ae4)) + (pin "7" (uuid 08606d8e-569d-41d8-ae18-12bc8ad49098)) + (pin "8" (uuid 1e81ebfd-c952-45ef-a223-03773451dea0)) + (pin "9" (uuid cdf91e9a-8662-47f7-9a05-934c70478a83)) + (pin "10" (uuid 917f4db7-e669-473a-b18b-3e226d6f50e8)) + (pin "11" (uuid 941187a3-3619-4b54-be2b-a4062f50de14)) + (pin "12" (uuid 0b48242a-d5f1-4bdf-b5c1-4af323900a8c)) + (pin "13" (uuid e94e606a-031a-4127-8d18-30e4072610f9)) + (pin "14" (uuid d30a3080-f9b1-4e44-939c-1cd502d0e209)) + (pin "15" (uuid 441d74f0-eab6-43d1-90ea-3b2219086280)) + (pin "16" (uuid f6a27916-cc12-4db0-b166-5916b36c21ac)) + (pin "17" (uuid 02603e0f-eee9-45a3-b554-049a4419b43f)) + (pin "18" (uuid 27da2719-8806-4886-8935-8f52d408f938)) + (pin "19" (uuid c4c9978f-8405-4d6e-b52f-943bd91cd153)) + (pin "20" (uuid f2846992-326b-4447-9d36-30e8a991aea2)) + (pin "21" (uuid 9ccc0ab1-b623-42fa-9f8b-62a349a0a40d)) + (pin "22" (uuid 04b05f27-4d45-4478-97a7-df64115da57b)) + (pin "23" (uuid 9d1f4529-9e55-46de-92d8-7efce5721238)) + (pin "24" (uuid 5c427f9d-8037-43f9-98c2-7e286037b7ed)) + (pin "25" (uuid dbadf83f-8109-41db-8e75-9898bf4a71e6)) + (pin "26" (uuid b2a1a511-1b81-4529-973c-8e166a4be4d5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 379.73 48.26 270) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9cfcfe4f-fcc0-4d2d-bab7-21c390a4fd08) + (property "Reference" "U1" (id 0) (at 382.27 48.26 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 382.27 50.8 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 379.73 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 379.73 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a7e6b21b-9e3c-437f-bbc3-7922f1457f0a)) + (pin "2" (uuid 0f7fb195-48fa-4a70-9271-434491c27bb4)) + (pin "3" (uuid e3b1ac8b-9b8c-4c02-8b2a-3a8c5dbddc33)) + (pin "4" (uuid 1d4167ed-fbc7-4aad-8bcc-35d51960f241)) + (pin "5" (uuid 442c0f9f-3563-4092-87b6-118b9dbb53d0)) + (pin "6" (uuid 4e915aa5-8d95-4e76-a87e-0fefc4168a83)) + (pin "7" (uuid 5e2af996-85bc-4014-8233-6f13abc9cd40)) + (pin "8" (uuid 5ac94918-e7cd-404b-a56e-77dd0d5240a4)) + (pin "9" (uuid 464c4af4-2bf3-43b6-9372-4f8a9781c380)) + (pin "10" (uuid df20db2d-2261-4a06-a2c2-a006a7023585)) + (pin "11" (uuid 48d65e7a-a396-4f01-8b77-7b2de5bc6900)) + (pin "12" (uuid 81553e22-3973-45ef-818c-b41c01d8dd0c)) + (pin "13" (uuid b6a0356e-8c80-402b-aa0a-ad4a1041c53d)) + (pin "14" (uuid 4e262a8e-6836-4809-8ebe-ece73145390b)) + (pin "15" (uuid 04530a5d-0746-41f7-bb84-8feaee151ac4)) + (pin "16" (uuid 63aed5aa-c1d6-444c-88ec-49d746403ebb)) + (pin "17" (uuid 7249d0d8-a5c3-4260-a076-ad99291a4dee)) + (pin "18" (uuid f146d8e2-aa6f-4a36-ad22-41132444e386)) + (pin "19" (uuid d586b0b4-6c56-4cc1-a4ae-017feaa53c40)) + (pin "20" (uuid f85d3bf2-238d-434d-89b6-7e0c749f6d4c)) + (pin "21" (uuid 4be56fc4-5222-4489-9f39-35adc20a0b06)) + (pin "22" (uuid 1d43a5b7-1585-4590-8d07-5a00d4adc665)) + (pin "23" (uuid 156d6822-8884-4a65-960e-bc66d996892e)) + (pin "24" (uuid 9e105dc9-4c5d-4e77-ae9f-7887a30d9331)) + (pin "25" (uuid 46fcabf0-be8d-4a69-81b3-d705e891b984)) + (pin "26" (uuid 86b266d4-98c6-46e3-a834-005e5a19adb1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 218.44 48.26 270) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a305cd4d-3df3-4d6d-a55b-c86866c44a16) + (property "Reference" "U1" (id 0) (at 220.98 48.26 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 220.98 50.8 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 218.44 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 218.44 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 24273b4f-fe78-4e5a-85ba-7d6e67bbdc40)) + (pin "2" (uuid e58d3264-81aa-4321-9f2b-d82b5f250129)) + (pin "3" (uuid 126f5398-1520-4f6c-9a2c-8ce370408d2f)) + (pin "4" (uuid 9c25515a-f5f9-4324-a137-1c49db961b85)) + (pin "5" (uuid 34bd61d1-4228-41ad-8c29-a592a76b3841)) + (pin "6" (uuid 67fcbb90-8b38-4bed-9193-6cb57eba3ebe)) + (pin "7" (uuid b7809862-7771-4f24-a71a-63b2c8ed9f7a)) + (pin "8" (uuid 7319c7cc-c0b8-4038-a0ef-81a418b90388)) + (pin "9" (uuid 040ab41e-3f08-48a9-aebc-5d9b7f382d4f)) + (pin "10" (uuid 2e2c907f-0186-4b4a-bc89-5c86d8c47622)) + (pin "11" (uuid 17260f3f-fb87-46ed-af79-7baef96cc9de)) + (pin "12" (uuid 9c9a9d59-dbca-4005-b71c-4a5cea5f90e8)) + (pin "13" (uuid 764581f4-d73e-488a-8020-26ef6592cdfd)) + (pin "14" (uuid b47baa82-071c-4cbc-aa57-72489f3cfedc)) + (pin "15" (uuid 9cf58811-8c72-41aa-b224-911ddaf75db7)) + (pin "16" (uuid 929576c4-ef37-4780-9552-3ee635a5004c)) + (pin "17" (uuid 1ed2b24e-fc82-4011-b3f9-f17148370f38)) + (pin "18" (uuid 993d73c6-7e69-4a8f-94c5-6ecefe642c47)) + (pin "19" (uuid 80954a01-ea32-4533-ab00-8dbd6c04bb85)) + (pin "20" (uuid 210e9231-fad0-4077-9f87-242d72d9fa7b)) + (pin "21" (uuid ba401670-a0f2-4955-8f91-3b2191223940)) + (pin "22" (uuid 13731e8a-7e83-4177-858f-52d5c3a1096e)) + (pin "23" (uuid a93b8aac-e5b6-4962-bc20-794e66337495)) + (pin "24" (uuid 3cac65e9-c336-4bb1-bbe0-b1d800d34114)) + (pin "25" (uuid 830b0b78-9275-4ec5-86c0-3a0e8f9a42aa)) + (pin "26" (uuid f883cd08-1493-4097-bfa9-ad703a5007d0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 271.78 48.26 270) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a35e82a1-a5de-4023-94ad-1a9d4cba7597) + (property "Reference" "U1" (id 0) (at 274.32 48.26 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 274.32 50.8 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 271.78 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fa375ed9-0e59-4cec-838e-aa88a0eaa08c)) + (pin "2" (uuid fab8686b-1dbc-4121-9133-9c460fa585a2)) + (pin "3" (uuid ae7db287-fbb1-42e4-8681-113f44899069)) + (pin "4" (uuid 7619edec-2235-4026-a453-6f5da9db341c)) + (pin "5" (uuid fdc8de75-c0f9-4828-ab25-1340d9ef7bc7)) + (pin "6" (uuid c4b67ba6-ba9a-4c1d-948d-bdaee26947ec)) + (pin "7" (uuid 011f65cc-4485-446a-900e-0c8a8f005e87)) + (pin "8" (uuid 5e2c4eda-ccca-454f-8b6e-65c3b0d33950)) + (pin "9" (uuid 101a218e-b4f1-405f-99a7-61e52268543e)) + (pin "10" (uuid d7eae9c5-f2a1-476a-aace-3f55e3848eb6)) + (pin "11" (uuid 77a6acb4-dadb-47d7-a8e3-ec9259c22080)) + (pin "12" (uuid 0f6e8606-2ca1-4059-839c-dd87e93e9c6d)) + (pin "13" (uuid 29fa13b9-5fbd-49c8-8a76-13514753f6b2)) + (pin "14" (uuid a4df4a13-905b-4f6f-afdf-395979866e97)) + (pin "15" (uuid f38eb717-15ab-40ad-9642-840bddc1796e)) + (pin "16" (uuid 4db51689-18fe-4712-bde5-879d033073ec)) + (pin "17" (uuid 55c0b66f-47dc-4cc4-ae3f-543087c451b7)) + (pin "18" (uuid 90a78874-e730-4075-84e2-efa1a6a62aa1)) + (pin "19" (uuid d6610835-ccc9-4409-a000-c0bc3ab90144)) + (pin "20" (uuid 7d28972f-1f98-4ec1-875c-06ca61467be2)) + (pin "21" (uuid cbdc7e22-8bc8-4413-a0ef-deaa2b6195ca)) + (pin "22" (uuid fcdf593d-ed3a-44b8-8bb2-8566a6cf3354)) + (pin "23" (uuid 19393951-91d8-48a7-9d9f-8062cd94eafe)) + (pin "24" (uuid 0899b38e-6133-4079-84f7-fa3461824438)) + (pin "25" (uuid 1b64d047-b922-40e0-a615-797549c3d206)) + (pin "26" (uuid ff70c2a3-75bf-4509-87ce-45bc75c94867)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 250.19 132.08 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a3fae44a-46e5-4294-a8ce-84fbcb491c36) + (property "Reference" "U8" (id 0) (at 265.43 130.175 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 265.43 133.985 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 259.08 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 259.08 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 597b8d44-2be1-4f19-9bb9-33795440d21b)) + (pin "2" (uuid cbb01fbc-fa7a-4369-ba25-3ec8d223a18d)) + (pin "3" (uuid 10bcfea2-7d5c-4041-bafd-d585dec83aae)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 356.87 130.81 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c6d790d2-a6c3-4bf1-b5de-e57e6a49e11a) + (property "Reference" "U12" (id 0) (at 372.11 128.905 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 372.11 132.715 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 365.76 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 365.76 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 43be7654-be2c-46cc-90d9-4e54110e55fe)) + (pin "2" (uuid 95ad56c8-4168-48d1-b985-53c1b5aa6f1f)) + (pin "3" (uuid fa6561b0-e858-4882-9b41-8dfc25465be2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 113.03 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d255fe51-65e9-4bea-a8e3-6219462fe1c4) + (property "Reference" "U1" (id 0) (at 60.325 107.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 110.49 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fd6ab27f-f997-4769-96ee-5b510cd618fb)) + (pin "2" (uuid e7e33786-06e2-4ebf-843b-9a079d367182)) + (pin "3" (uuid 94631b3d-ac53-4de3-a354-83b0e5a22886)) + (pin "4" (uuid 34ab1248-252e-4efa-8063-7d9e804f79a9)) + (pin "5" (uuid e46f98b1-6928-4d62-882a-f54bd428412d)) + (pin "6" (uuid c0352741-5f93-4003-9d12-ce86eee912f5)) + (pin "7" (uuid 8f7bafa5-52e5-495a-a530-5406ffa8428a)) + (pin "8" (uuid 6a67fd0a-5bf8-4711-92f6-2564090d1978)) + (pin "9" (uuid 2e69aa09-71e4-4d04-9614-c850c120a433)) + (pin "10" (uuid 5ae93c11-551a-4f84-bb50-67aea19e1149)) + (pin "11" (uuid 84709352-3aa7-4fd3-bef5-549142b7c071)) + (pin "12" (uuid f6add9d0-7b98-430e-a48a-3fed903099db)) + (pin "13" (uuid d092b5be-8ec2-4b83-af93-d61d8af1adb5)) + (pin "14" (uuid eca35ff6-9a41-444c-a23d-1ea82a68f3fb)) + (pin "15" (uuid cbe7d8a6-43ff-464c-b742-70dfaed72806)) + (pin "16" (uuid 525c944c-d222-4298-82e8-58c67b017812)) + (pin "17" (uuid 765b305f-a1ea-48e8-93ab-fd054a449274)) + (pin "18" (uuid 46002c90-2279-41ba-8e57-e4c008400015)) + (pin "19" (uuid c344e4a8-9c79-4f22-9ffc-a0f8af68cb19)) + (pin "20" (uuid 4813ccc7-f576-4c28-a5c1-92f134eaaffb)) + (pin "21" (uuid 608fb9c5-3c92-444d-bba8-a41476e9132a)) + (pin "22" (uuid 06651cec-cd77-409b-a40a-b05125f8fcb9)) + (pin "23" (uuid 72195b90-5fee-44e4-bbff-d02d5d1af9c2)) + (pin "24" (uuid 16858d88-2177-46f3-9ae2-7e979ef505b9)) + (pin "25" (uuid 15cbc2bb-ee07-454c-9ef3-f9cefbd309a2)) + (pin "26" (uuid d016f589-4a55-4440-b57d-3a83a768972f)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 134.62 130.81 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2f56537-bc94-4075-940a-f113dded29bb) + (property "Reference" "U4" (id 0) (at 149.86 128.905 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 149.86 132.715 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 143.51 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 508fdf9f-5b9e-4ed6-8088-1dfeff3b8b32)) + (pin "2" (uuid bdd1bbf7-a436-43a8-8408-406e6c3f0666)) + (pin "3" (uuid c478a250-81fa-4b7f-be35-10c284589d66)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 104.14 49.53 270) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f3fa98ed-d3c2-455b-95de-726c21bd301d) + (property "Reference" "U1" (id 0) (at 106.68 49.53 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 106.68 52.07 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 104.14 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 104.14 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d4230fa1-1a33-4f49-a1b0-10f868abe40b)) + (pin "2" (uuid 9321c0e3-8e24-41ad-940c-f8340d3f2c5f)) + (pin "3" (uuid 654ade56-d03f-48da-84dc-d8dec7db91fe)) + (pin "4" (uuid a9bb5313-705c-466f-bb40-8b3370ef3e3b)) + (pin "5" (uuid 2fa1dafc-b7e8-4c40-bd33-a1b493053e33)) + (pin "6" (uuid 8c3f57ae-5fe8-49cc-a3aa-f6e780bdfbba)) + (pin "7" (uuid df6f8ed0-7227-4dcf-b289-045130c4c50d)) + (pin "8" (uuid f89d060c-a97c-4169-870d-5fb6d807fb15)) + (pin "9" (uuid 10be06da-e718-4b08-a950-d6ac6b160930)) + (pin "10" (uuid 2a4adb54-0143-484a-9666-74e58c5edb33)) + (pin "11" (uuid 1705e7f7-1113-47a2-a74d-d454d1aff78b)) + (pin "12" (uuid 5b9459eb-a89f-44cb-b36c-773bb2c31bec)) + (pin "13" (uuid 9a822a09-baf5-4f65-b8b6-f64892ccabb4)) + (pin "14" (uuid c13d24f4-949d-4960-8ce1-8e5142f4b11c)) + (pin "15" (uuid 25f3ee2f-8a47-46a2-b4a4-e8025a49c4db)) + (pin "16" (uuid 498deaf9-9eeb-480c-8f3f-0a190360823b)) + (pin "17" (uuid cb16269d-2b2b-4068-a3c8-de6cb9aa5762)) + (pin "18" (uuid 3bdc275f-fd54-4e6f-882d-13abbb56a14a)) + (pin "19" (uuid 5887fad7-83a0-4ca4-b038-29e5b090f41a)) + (pin "20" (uuid 12924717-3676-46e0-8258-a56af4d6a4f8)) + (pin "21" (uuid 552a3dcf-a31a-4343-9c78-661351274eff)) + (pin "22" (uuid 080232e8-b315-421f-be85-f526b5fcf823)) + (pin "23" (uuid 0ba38d47-9244-46e9-8839-73895739f966)) + (pin "24" (uuid 6fb99f3c-4121-426e-a623-53b9a23047ca)) + (pin "25" (uuid aef4d31a-8792-4cf3-a014-d3019309b1e5)) + (pin "26" (uuid bd10cf4a-a126-4334-8ab0-fc7a3e470841)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 124.46 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe4e24d2-34a6-41a1-b0ba-fcbcba7a22f8) + (property "Reference" "U3" (id 0) (at 126.4794 72.39 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 126.4794 76.2 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 124.46 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 124.46 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ee57485-c6c7-40c4-be04-5d2042be83ec)) + (pin "2" (uuid c64b1dc9-d0c0-47b2-9c2a-583877b2adfe)) + (pin "3" (uuid ffa4aeab-94c8-4b1e-bbb3-508b49990f97)) + (pin "4" (uuid 764d6eb8-6535-47c6-90ff-420f9421d9fc)) + (pin "5" (uuid 2d11493b-b1e8-4af1-96fe-7e2d3d19b57c)) + (pin "6" (uuid c4032650-f209-4abf-aefa-93bc114de57f)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/3bc4feb5-0464-4e39-93dd-d67a6257a0a2" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/f3fa98ed-d3c2-455b-95de-726c21bd301d" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/8be98b49-c9af-42cb-949e-89100aaf3993" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/a305cd4d-3df3-4d6d-a55b-c86866c44a16" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/a35e82a1-a5de-4023-94ad-1a9d4cba7597" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/3b1c2cab-54ef-410b-baec-c4cec8b2a4e8" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/9cfcfe4f-fcc0-4d2d-bab7-21c390a4fd08" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/097ef1c9-fc88-4810-ae5d-fb0f0f96d79a" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/4b47a4e4-e4bf-4cd4-b2e1-4edc1aa59b53" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/d255fe51-65e9-4bea-a8e3-6219462fe1c4" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/0420b1d5-51a8-423c-a7b0-463df2720623" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/0c294141-73e4-4427-8f66-8d83abceac1f" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/58fcd514-eaf1-4070-82da-78278c1e9176" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/4034ab69-ad0a-4c43-8038-b89fe0665469" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/125cdf78-e36c-4537-a914-e950985875fa" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/8653dd41-9fc6-451e-998f-24a411192b10" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/41e6d73e-4987-4f14-80e5-d46fd36078ac" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/6fb6fc8c-8dbb-4e00-9f2e-5f716f0ddfb5" + (reference "U1") (unit 19) (value "PORT") (footprint "") + ) + (path "/2ac2fa50-f651-4cb4-849b-95ce904777a3" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/fe4e24d2-34a6-41a1-b0ba-fcbcba7a22f8" + (reference "U3") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/e2f56537-bc94-4075-940a-f113dded29bb" + (reference "U4") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/10215768-c59c-40c4-9b4f-861c9ff82ebb" + (reference "U5") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/5d5ce877-3c16-48af-a461-3389edbce5ba" + (reference "U6") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/85047856-f32b-4fef-b597-e0ee42e80900" + (reference "U7") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/a3fae44a-46e5-4294-a8ce-84fbcb491c36" + (reference "U8") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/6ef7a048-b89e-4b3d-84f2-8ceb9bd4573d" + (reference "U9") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/25340e2f-fe67-4b6c-8f4e-ac4021a13ccd" + (reference "U10") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/0a238d0a-7f40-4983-be11-661315aedab0" + (reference "U11") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/c6d790d2-a6c3-4bf1-b5de-e57e6a49e11a" + (reference "U12") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/6dc51112-6f77-4530-b979-37a4be8d6dc2" + (reference "U13") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/28bebb12-d351-4d43-9da5-e1bae09f1f91" + (reference "U14") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/46756d9f-4fa2-4b50-ab42-656558de05b7" + (reference "U15") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/1369a4cc-064e-4052-82fe-90287561c653" + (reference "U16") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/5c979a0a-d36e-4347-be60-bdd9757aa8ab" + (reference "U17") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/6b194cd6-4af2-4fae-95cf-e4187971b166" + (reference "U18") (unit 1) (value "d_tristate") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD74HC563/CD74HC563.sub b/library/SubcircuitLibrary/CD74HC563/CD74HC563.sub new file mode 100644 index 000000000..c500840eb --- /dev/null +++ b/library/SubcircuitLibrary/CD74HC563/CD74HC563.sub @@ -0,0 +1,74 @@ +* Subcircuit CD74HC563 +.subckt CD74HC563 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ +.title kicad schematic +* u2 net-_u1-pad1_ net-_u10-pad2_ d_inverter +* u5 net-_u1-pad3_ net-_u1-pad11_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ d_dlatch +* u4 net-_u3-pad5_ net-_u10-pad2_ net-_u1-pad19_ d_tristate +* u3 net-_u1-pad2_ net-_u1-pad11_ unconnected-_u3-pad3_ unconnected-_u3-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ d_dlatch +* u13 net-_u1-pad7_ net-_u1-pad11_ unconnected-_u13-pad3_ unconnected-_u13-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ d_dlatch +* u15 net-_u1-pad8_ net-_u1-pad11_ unconnected-_u15-pad3_ unconnected-_u15-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ d_dlatch +* u11 net-_u1-pad6_ net-_u1-pad11_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ d_dlatch +* u12 net-_u11-pad5_ net-_u10-pad2_ net-_u1-pad15_ d_tristate +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u1-pad16_ d_tristate +* u14 net-_u13-pad5_ net-_u10-pad2_ net-_u1-pad14_ d_tristate +* u8 net-_u7-pad5_ net-_u10-pad2_ net-_u1-pad17_ d_tristate +* u6 net-_u5-pad5_ net-_u10-pad2_ net-_u1-pad18_ d_tristate +* u7 net-_u1-pad4_ net-_u1-pad11_ unconnected-_u7-pad3_ unconnected-_u7-pad4_ net-_u7-pad5_ unconnected-_u7-pad6_ d_dlatch +* u9 net-_u1-pad5_ net-_u1-pad11_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ d_dlatch +* u17 net-_u1-pad9_ net-_u1-pad11_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_dlatch +* u16 net-_u15-pad5_ net-_u10-pad2_ net-_u1-pad13_ d_tristate +* u18 net-_u17-pad5_ net-_u10-pad2_ net-_u1-pad12_ d_tristate +a1 net-_u1-pad1_ net-_u10-pad2_ u2 +a2 net-_u1-pad3_ net-_u1-pad11_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ u5 +a3 net-_u3-pad5_ net-_u10-pad2_ net-_u1-pad19_ u4 +a4 net-_u1-pad2_ net-_u1-pad11_ unconnected-_u3-pad3_ unconnected-_u3-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ u3 +a5 net-_u1-pad7_ net-_u1-pad11_ unconnected-_u13-pad3_ unconnected-_u13-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ u13 +a6 net-_u1-pad8_ net-_u1-pad11_ unconnected-_u15-pad3_ unconnected-_u15-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ u15 +a7 net-_u1-pad6_ net-_u1-pad11_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ u11 +a8 net-_u11-pad5_ net-_u10-pad2_ net-_u1-pad15_ u12 +a9 net-_u10-pad1_ net-_u10-pad2_ net-_u1-pad16_ u10 +a10 net-_u13-pad5_ net-_u10-pad2_ net-_u1-pad14_ u14 +a11 net-_u7-pad5_ net-_u10-pad2_ net-_u1-pad17_ u8 +a12 net-_u5-pad5_ net-_u10-pad2_ net-_u1-pad18_ u6 +a13 net-_u1-pad4_ net-_u1-pad11_ unconnected-_u7-pad3_ unconnected-_u7-pad4_ net-_u7-pad5_ unconnected-_u7-pad6_ u7 +a14 net-_u1-pad5_ net-_u1-pad11_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ u9 +a15 net-_u1-pad9_ net-_u1-pad11_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a16 net-_u15-pad5_ net-_u10-pad2_ net-_u1-pad13_ u16 +a17 net-_u17-pad5_ net-_u10-pad2_ net-_u1-pad12_ u18 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u5 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u4 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u3 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u13 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u15 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u11 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u12 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u10 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u14 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u8 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u7 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u9 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u17 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u16 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u18 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Control Statements + +.ends CD74HC563 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD74HC563/CD74HC563_Previous_Values.xml b/library/SubcircuitLibrary/CD74HC563/CD74HC563_Previous_Values.xml new file mode 100644 index 000000000..31c21263a --- /dev/null +++ b/library/SubcircuitLibrary/CD74HC563/CD74HC563_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_inverterd_dlatchd_tristated_dlatchd_dlatchd_dlatchd_dlatchd_tristated_tristated_tristated_tristated_tristated_dlatchd_dlatchd_dlatchd_tristated_tristate \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD74HC563/_autosave-CD74HC563.sch b/library/SubcircuitLibrary/CD74HC563/_autosave-CD74HC563.sch new file mode 100644 index 000000000..6f57529a8 --- /dev/null +++ b/library/SubcircuitLibrary/CD74HC563/_autosave-CD74HC563.sch @@ -0,0 +1,580 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A2 23386 16535 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 4350 4450 +Connection ~ 5350 5950 +Connection ~ 6550 4450 +Connection ~ 7700 5950 +Connection ~ 8750 4450 +Connection ~ 9900 5950 +Connection ~ 10850 4450 +Connection ~ 12150 5950 +Connection ~ 13000 4450 +Connection ~ 14100 5950 +Connection ~ 15050 4450 +Connection ~ 16050 5950 +Connection ~ 16850 4450 +Connection ~ 18000 5950 +Wire Wire Line + 2600 4450 4350 4450 +Wire Wire Line + 3250 5950 5350 5950 +Wire Wire Line + 4100 2200 4100 3150 +Wire Wire Line + 4100 3150 4350 3150 +Wire Wire Line + 4350 3800 4350 4450 +Wire Wire Line + 4350 4450 6550 4450 +Wire Wire Line + 5350 5100 5350 5950 +Wire Wire Line + 5350 5950 7700 5950 +Wire Wire Line + 5450 3150 5650 3150 +Wire Wire Line + 5650 3150 5650 4550 +Wire Wire Line + 5650 5700 5650 6500 +Wire Wire Line + 5650 6500 5700 6500 +Wire Wire Line + 6400 2250 6400 3150 +Wire Wire Line + 6400 3150 6550 3150 +Wire Wire Line + 6550 3800 6550 4450 +Wire Wire Line + 6550 4450 8750 4450 +Wire Wire Line + 7650 3150 8000 3150 +Wire Wire Line + 7700 5150 7700 5950 +Wire Wire Line + 7700 5950 9900 5950 +Wire Wire Line + 8000 3150 8000 4600 +Wire Wire Line + 8000 5750 8000 6550 +Wire Wire Line + 8000 6550 8050 6550 +Wire Wire Line + 8600 2150 8600 3150 +Wire Wire Line + 8600 3150 8750 3150 +Wire Wire Line + 8750 3800 8750 4450 +Wire Wire Line + 8750 4450 10850 4450 +Wire Wire Line + 9850 3150 10200 3150 +Wire Wire Line + 9900 5150 9900 5950 +Wire Wire Line + 9900 5950 12150 5950 +Wire Wire Line + 10200 3150 10200 4600 +Wire Wire Line + 10200 5750 10200 6450 +Wire Wire Line + 10200 6450 10300 6450 +Wire Wire Line + 10700 2150 10700 3100 +Wire Wire Line + 10700 3100 10850 3100 +Wire Wire Line + 10850 3750 10850 4450 +Wire Wire Line + 10850 4450 13000 4450 +Wire Wire Line + 11950 3100 12450 3100 +Wire Wire Line + 12150 5100 12150 5950 +Wire Wire Line + 12150 5950 14100 5950 +Wire Wire Line + 12450 3100 12450 4550 +Wire Wire Line + 12450 5700 12450 6450 +Wire Wire Line + 12450 6450 12550 6450 +Wire Wire Line + 12850 2150 12850 3100 +Wire Wire Line + 12850 3100 13000 3100 +Wire Wire Line + 13000 3750 13000 4450 +Wire Wire Line + 13000 4450 15050 4450 +Wire Wire Line + 14100 3100 14400 3100 +Wire Wire Line + 14100 5100 14100 5950 +Wire Wire Line + 14100 5950 16050 5950 +Wire Wire Line + 14400 3100 14400 4550 +Wire Wire Line + 14400 5700 14400 6500 +Wire Wire Line + 14400 6500 14450 6500 +Wire Wire Line + 14950 2150 14950 3050 +Wire Wire Line + 14950 3050 15050 3050 +Wire Wire Line + 15050 3700 15050 4450 +Wire Wire Line + 15050 4450 16850 4450 +Wire Wire Line + 16050 5150 16050 5950 +Wire Wire Line + 16050 5950 18000 5950 +Wire Wire Line + 16150 3050 16350 3050 +Wire Wire Line + 16350 3050 16350 4600 +Wire Wire Line + 16350 5750 16350 6550 +Wire Wire Line + 16350 6550 16400 6550 +Wire Wire Line + 16800 2150 16800 3000 +Wire Wire Line + 16800 3000 16850 3000 +Wire Wire Line + 16850 3650 16850 4450 +Wire Wire Line + 16850 4450 18800 4450 +Wire Wire Line + 17950 3000 18300 3000 +Wire Wire Line + 18000 5200 18000 5950 +Wire Wire Line + 18000 5950 19900 5950 +Wire Wire Line + 18300 3000 18300 4650 +Wire Wire Line + 18300 5800 18300 6600 +Wire Wire Line + 18300 6600 18350 6600 +Wire Wire Line + 18700 2150 18700 3050 +Wire Wire Line + 18700 3050 18800 3050 +Wire Wire Line + 18800 4450 18800 3700 +Wire Wire Line + 19900 3050 20450 3050 +Wire Wire Line + 19900 5200 20150 5200 +Wire Wire Line + 19900 5950 19900 5200 +Wire Wire Line + 20450 3050 20450 4650 +Wire Wire Line + 20450 5800 20450 6600 +$Comp +L eSim_Miscellaneous:PORT U? +U 11 1 00000000 +P 2350 4450 +F 0 "U?" H 2375 4650 30 0000 C CNN +F 1 "PORT" H 2375 4550 30 0000 C CNN +F 2 "" H 2350 4450 60 0000 C CNN +F 3 "" H 2350 4450 60 0000 C CNN + 11 2350 4450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 2400 5950 +F 0 "U?" H 2425 6150 30 0000 C CNN +F 1 "PORT" H 2425 6050 30 0000 C CNN +F 2 "" H 2400 5950 60 0000 C CNN +F 3 "" H 2400 5950 60 0000 C CNN + 1 2400 5950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 2 1 00000000 +P 4100 1950 +F 0 "U?" V 4100 2050 30 0000 L CNN +F 1 "PORT" V 4200 2050 30 0000 L CNN +F 2 "" H 4100 1950 60 0000 C CNN +F 3 "" H 4100 1950 60 0000 C CNN + 2 4100 1950 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 19 1 00000000 +P 5700 6750 +F 0 "U?" V 5750 6650 30 0000 R CNN +F 1 "PORT" V 5650 6650 30 0000 R CNN +F 2 "" H 5700 6750 60 0000 C CNN +F 3 "" H 5700 6750 60 0000 C CNN + 19 5700 6750 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 3 1 00000000 +P 6400 2000 +F 0 "U?" V 6400 2100 30 0000 L CNN +F 1 "PORT" V 6500 2100 30 0000 L CNN +F 2 "" H 6400 2000 60 0000 C CNN +F 3 "" H 6400 2000 60 0000 C CNN + 3 6400 2000 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 18 1 00000000 +P 8050 6800 +F 0 "U?" V 8100 6700 30 0000 R CNN +F 1 "PORT" V 8000 6700 30 0000 R CNN +F 2 "" H 8050 6800 60 0000 C CNN +F 3 "" H 8050 6800 60 0000 C CNN + 18 8050 6800 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 4 1 00000000 +P 8600 1900 +F 0 "U?" V 8600 2000 30 0000 L CNN +F 1 "PORT" V 8700 2000 30 0000 L CNN +F 2 "" H 8600 1900 60 0000 C CNN +F 3 "" H 8600 1900 60 0000 C CNN + 4 8600 1900 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 17 1 00000000 +P 10300 6700 +F 0 "U?" V 10350 6600 30 0000 R CNN +F 1 "PORT" V 10250 6600 30 0000 R CNN +F 2 "" H 10300 6700 60 0000 C CNN +F 3 "" H 10300 6700 60 0000 C CNN + 17 10300 6700 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 5 1 00000000 +P 10700 1900 +F 0 "U?" V 10700 2000 30 0000 L CNN +F 1 "PORT" V 10800 2000 30 0000 L CNN +F 2 "" H 10700 1900 60 0000 C CNN +F 3 "" H 10700 1900 60 0000 C CNN + 5 10700 1900 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 16 1 00000000 +P 12550 6700 +F 0 "U?" V 12600 6600 30 0000 R CNN +F 1 "PORT" V 12500 6600 30 0000 R CNN +F 2 "" H 12550 6700 60 0000 C CNN +F 3 "" H 12550 6700 60 0000 C CNN + 16 12550 6700 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 6 1 00000000 +P 12850 1900 +F 0 "U?" V 12850 2000 30 0000 L CNN +F 1 "PORT" V 12950 2000 30 0000 L CNN +F 2 "" H 12850 1900 60 0000 C CNN +F 3 "" H 12850 1900 60 0000 C CNN + 6 12850 1900 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 15 1 00000000 +P 14450 6750 +F 0 "U?" V 14500 6650 30 0000 R CNN +F 1 "PORT" V 14400 6650 30 0000 R CNN +F 2 "" H 14450 6750 60 0000 C CNN +F 3 "" H 14450 6750 60 0000 C CNN + 15 14450 6750 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 7 1 00000000 +P 14950 1900 +F 0 "U?" V 14950 2000 30 0000 L CNN +F 1 "PORT" V 15050 2000 30 0000 L CNN +F 2 "" H 14950 1900 60 0000 C CNN +F 3 "" H 14950 1900 60 0000 C CNN + 7 14950 1900 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 14 1 00000000 +P 16400 6800 +F 0 "U?" V 16450 6700 30 0000 R CNN +F 1 "PORT" V 16350 6700 30 0000 R CNN +F 2 "" H 16400 6800 60 0000 C CNN +F 3 "" H 16400 6800 60 0000 C CNN + 14 16400 6800 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 8 1 00000000 +P 16800 1900 +F 0 "U?" V 16800 2000 30 0000 L CNN +F 1 "PORT" V 16900 2000 30 0000 L CNN +F 2 "" H 16800 1900 60 0000 C CNN +F 3 "" H 16800 1900 60 0000 C CNN + 8 16800 1900 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 13 1 00000000 +P 18350 6850 +F 0 "U?" V 18400 6750 30 0000 R CNN +F 1 "PORT" V 18300 6750 30 0000 R CNN +F 2 "" H 18350 6850 60 0000 C CNN +F 3 "" H 18350 6850 60 0000 C CNN + 13 18350 6850 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 9 1 00000000 +P 18700 1900 +F 0 "U?" V 18700 2000 30 0000 L CNN +F 1 "PORT" V 18800 2000 30 0000 L CNN +F 2 "" H 18700 1900 60 0000 C CNN +F 3 "" H 18700 1900 60 0000 C CNN + 9 18700 1900 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 12 1 00000000 +P 20450 6850 +F 0 "U?" V 20500 6750 30 0000 R CNN +F 1 "PORT" V 20400 6750 30 0000 R CNN +F 2 "" H 20450 6850 60 0000 C CNN +F 3 "" H 20450 6850 60 0000 C CNN + 12 20450 6850 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 2950 5950 +F 0 "U?" H 2950 6200 60 0000 C CNN +F 1 "d_inverter" H 2950 6050 60 0000 C CNN +F 2 "" H 3000 5900 60 0000 C CNN +F 3 "" H 3000 5900 60 0000 C CNN + 1 2950 5950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_tristate U? +U 1 1 00000000 +P 5300 5150 +F 0 "U?" V 5225 5750 60 0000 L CNN +F 1 "d_tristate" V 5375 5750 60 0000 L CNN +F 2 "" H 5200 5500 60 0000 C CNN +F 3 "" H 5200 5500 60 0000 C CNN + 1 5300 5150 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U? +U 1 1 00000000 +P 7650 5200 +F 0 "U?" V 7575 5800 60 0000 L CNN +F 1 "d_tristate" V 7725 5800 60 0000 L CNN +F 2 "" H 7550 5550 60 0000 C CNN +F 3 "" H 7550 5550 60 0000 C CNN + 1 7650 5200 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U? +U 1 1 00000000 +P 9850 5200 +F 0 "U?" V 9775 5800 60 0000 L CNN +F 1 "d_tristate" V 9925 5800 60 0000 L CNN +F 2 "" H 9750 5550 60 0000 C CNN +F 3 "" H 9750 5550 60 0000 C CNN + 1 9850 5200 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U? +U 1 1 00000000 +P 12100 5150 +F 0 "U?" V 12025 5750 60 0000 L CNN +F 1 "d_tristate" V 12175 5750 60 0000 L CNN +F 2 "" H 12000 5500 60 0000 C CNN +F 3 "" H 12000 5500 60 0000 C CNN + 1 12100 5150 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U? +U 1 1 00000000 +P 14050 5150 +F 0 "U?" V 13975 5750 60 0000 L CNN +F 1 "d_tristate" V 14125 5750 60 0000 L CNN +F 2 "" H 13950 5500 60 0000 C CNN +F 3 "" H 13950 5500 60 0000 C CNN + 1 14050 5150 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U? +U 1 1 00000000 +P 16000 5200 +F 0 "U?" V 15925 5800 60 0000 L CNN +F 1 "d_tristate" V 16075 5800 60 0000 L CNN +F 2 "" H 15900 5550 60 0000 C CNN +F 3 "" H 15900 5550 60 0000 C CNN + 1 16000 5200 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U? +U 1 1 00000000 +P 17950 5250 +F 0 "U?" V 17875 5850 60 0000 L CNN +F 1 "d_tristate" V 18025 5850 60 0000 L CNN +F 2 "" H 17850 5600 60 0000 C CNN +F 3 "" H 17850 5600 60 0000 C CNN + 1 17950 5250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U? +U 1 1 00000000 +P 20100 5250 +F 0 "U?" V 20025 5850 60 0000 L CNN +F 1 "d_tristate" V 20175 5850 60 0000 L CNN +F 2 "" H 20000 5600 60 0000 C CNN +F 3 "" H 20000 5600 60 0000 C CNN + 1 20100 5250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_dlatch U? +U 1 1 00000000 +P 4900 3500 +F 0 "U?" H 4980 4150 60 0000 L CNN +F 1 "d_dlatch" H 4980 4000 60 0000 L CNN +F 2 "" H 4900 3500 60 0000 C CNN +F 3 "" H 4900 3500 60 0000 C CNN + 1 4900 3500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dlatch U? +U 1 1 00000000 +P 7100 3500 +F 0 "U?" H 7180 4150 60 0000 L CNN +F 1 "d_dlatch" H 7180 4000 60 0000 L CNN +F 2 "" H 7100 3500 60 0000 C CNN +F 3 "" H 7100 3500 60 0000 C CNN + 1 7100 3500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dlatch U? +U 1 1 00000000 +P 9300 3500 +F 0 "U?" H 9380 4150 60 0000 L CNN +F 1 "d_dlatch" H 9380 4000 60 0000 L CNN +F 2 "" H 9300 3500 60 0000 C CNN +F 3 "" H 9300 3500 60 0000 C CNN + 1 9300 3500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dlatch U? +U 1 1 00000000 +P 11400 3450 +F 0 "U?" H 11480 4100 60 0000 L CNN +F 1 "d_dlatch" H 11480 3950 60 0000 L CNN +F 2 "" H 11400 3450 60 0000 C CNN +F 3 "" H 11400 3450 60 0000 C CNN + 1 11400 3450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dlatch U? +U 1 1 00000000 +P 13550 3450 +F 0 "U?" H 13630 4100 60 0000 L CNN +F 1 "d_dlatch" H 13630 3950 60 0000 L CNN +F 2 "" H 13550 3450 60 0000 C CNN +F 3 "" H 13550 3450 60 0000 C CNN + 1 13550 3450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dlatch U? +U 1 1 00000000 +P 15600 3400 +F 0 "U?" H 15680 4050 60 0000 L CNN +F 1 "d_dlatch" H 15680 3900 60 0000 L CNN +F 2 "" H 15600 3400 60 0000 C CNN +F 3 "" H 15600 3400 60 0000 C CNN + 1 15600 3400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dlatch U? +U 1 1 00000000 +P 17400 3350 +F 0 "U?" H 17480 4000 60 0000 L CNN +F 1 "d_dlatch" H 17480 3850 60 0000 L CNN +F 2 "" H 17400 3350 60 0000 C CNN +F 3 "" H 17400 3350 60 0000 C CNN + 1 17400 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dlatch U? +U 1 1 00000000 +P 19350 3400 +F 0 "U?" H 19430 4050 60 0000 L CNN +F 1 "d_dlatch" H 19430 3900 60 0000 L CNN +F 2 "" H 19350 3400 60 0000 C CNN +F 3 "" H 19350 3400 60 0000 C CNN + 1 19350 3400 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/CD74HC563/analysis b/library/SubcircuitLibrary/CD74HC563/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/CD74HC563/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.cir b/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.cir new file mode 100644 index 000000000..81cc805bf --- /dev/null +++ b/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.cir @@ -0,0 +1,21 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ Net-_U1-Pad19_ PORT +U11 Net-_U1-Pad17_ Net-_U11-Pad2_ d_buffer +U9 Net-_U1-Pad13_ Net-_U17-Pad1_ d_buffer +U10 Net-_U1-Pad15_ Net-_U10-Pad2_ d_buffer +U3 Net-_U1-Pad11_ Net-_U16-Pad1_ d_buffer +U7 Net-_U1-Pad8_ Net-_U15-Pad1_ d_buffer +U8 Net-_U1-Pad19_ Net-_U16-Pad2_ d_buffer +U5 Net-_U1-Pad2_ Net-_U12-Pad1_ d_buffer +U2 Net-_U1-Pad1_ Net-_U12-Pad2_ d_inverter +U14 Net-_U14-Pad1_ Net-_U12-Pad2_ Net-_U1-Pad14_ d_tristate +U13 Net-_U13-Pad1_ Net-_U12-Pad2_ Net-_U1-Pad16_ d_tristate +U6 Net-_U1-Pad4_ Net-_U13-Pad1_ d_buffer +U4 Net-_U1-Pad6_ Net-_U14-Pad1_ d_buffer +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U1-Pad18_ d_tristate +U15 Net-_U15-Pad1_ Net-_U12-Pad2_ Net-_U1-Pad12_ d_tristate +U18 Net-_U10-Pad2_ Net-_U16-Pad2_ Net-_U1-Pad5_ d_tristate +U19 Net-_U11-Pad2_ Net-_U16-Pad2_ Net-_U1-Pad3_ d_tristate +U17 Net-_U17-Pad1_ Net-_U16-Pad2_ Net-_U1-Pad7_ d_tristate +U16 Net-_U16-Pad1_ Net-_U16-Pad2_ Net-_U1-Pad9_ d_tristate +.end diff --git a/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.cir.out b/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.cir.out new file mode 100644 index 000000000..b67cc380d --- /dev/null +++ b/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.cir.out @@ -0,0 +1,84 @@ +.title kicad schematic + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ port +* u11 net-_u1-pad17_ net-_u11-pad2_ d_buffer +* u9 net-_u1-pad13_ net-_u17-pad1_ d_buffer +* u10 net-_u1-pad15_ net-_u10-pad2_ d_buffer +* u3 net-_u1-pad11_ net-_u16-pad1_ d_buffer +* u7 net-_u1-pad8_ net-_u15-pad1_ d_buffer +* u8 net-_u1-pad19_ net-_u16-pad2_ d_buffer +* u5 net-_u1-pad2_ net-_u12-pad1_ d_buffer +* u2 net-_u1-pad1_ net-_u12-pad2_ d_inverter +* u14 net-_u14-pad1_ net-_u12-pad2_ net-_u1-pad14_ d_tristate +* u13 net-_u13-pad1_ net-_u12-pad2_ net-_u1-pad16_ d_tristate +* u6 net-_u1-pad4_ net-_u13-pad1_ d_buffer +* u4 net-_u1-pad6_ net-_u14-pad1_ d_buffer +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u1-pad18_ d_tristate +* u15 net-_u15-pad1_ net-_u12-pad2_ net-_u1-pad12_ d_tristate +* u18 net-_u10-pad2_ net-_u16-pad2_ net-_u1-pad5_ d_tristate +* u19 net-_u11-pad2_ net-_u16-pad2_ net-_u1-pad3_ d_tristate +* u17 net-_u17-pad1_ net-_u16-pad2_ net-_u1-pad7_ d_tristate +* u16 net-_u16-pad1_ net-_u16-pad2_ net-_u1-pad9_ d_tristate +a1 net-_u1-pad17_ net-_u11-pad2_ u11 +a2 net-_u1-pad13_ net-_u17-pad1_ u9 +a3 net-_u1-pad15_ net-_u10-pad2_ u10 +a4 net-_u1-pad11_ net-_u16-pad1_ u3 +a5 net-_u1-pad8_ net-_u15-pad1_ u7 +a6 net-_u1-pad19_ net-_u16-pad2_ u8 +a7 net-_u1-pad2_ net-_u12-pad1_ u5 +a8 net-_u1-pad1_ net-_u12-pad2_ u2 +a9 net-_u14-pad1_ net-_u12-pad2_ net-_u1-pad14_ u14 +a10 net-_u13-pad1_ net-_u12-pad2_ net-_u1-pad16_ u13 +a11 net-_u1-pad4_ net-_u13-pad1_ u6 +a12 net-_u1-pad6_ net-_u14-pad1_ u4 +a13 net-_u12-pad1_ net-_u12-pad2_ net-_u1-pad18_ u12 +a14 net-_u15-pad1_ net-_u12-pad2_ net-_u1-pad12_ u15 +a15 net-_u10-pad2_ net-_u16-pad2_ net-_u1-pad5_ u18 +a16 net-_u11-pad2_ net-_u16-pad2_ net-_u1-pad3_ u19 +a17 net-_u17-pad1_ net-_u16-pad2_ net-_u1-pad7_ u17 +a18 net-_u16-pad1_ net-_u16-pad2_ net-_u1-pad9_ u16 +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u11 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u10 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u8 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u14 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u13 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u6 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u12 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u15 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u18 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u19 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u17 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u16 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.kicad_sch b/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.kicad_sch new file mode 100644 index 000000000..f149efa17 --- /dev/null +++ b/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.kicad_sch @@ -0,0 +1,1760 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 5f7c9bb2-1003-4cbb-aa8b-6049753fb058) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_tristate" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -6.35 6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at -5.08 11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_tristate_0_1" + (polyline + (pts + (xy -10.16 13.97) + (xy -10.16 3.81) + (xy 8.89 8.89) + (xy -10.16 13.97) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_tristate_1_1" + (pin input line (at -15.24 8.89 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -1.27 1.27 90) (length 4.9022) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 129.54 153.67) (diameter 0) (color 0 0 0 0) + (uuid 00d00834-b4bb-4c37-87af-9301eb6558fa) + ) + (junction (at 121.92 68.58) (diameter 0) (color 0 0 0 0) + (uuid 1fe6ad4f-d4fd-4270-89d9-c041c2993edf) + ) + (junction (at 129.54 127) (diameter 0) (color 0 0 0 0) + (uuid 2343c9cd-e9a1-4c72-ba50-081132f3cc75) + ) + (junction (at 121.92 30.48) (diameter 0) (color 0 0 0 0) + (uuid 6b68e7d0-37f4-411e-9519-2d69f9669b89) + ) + (junction (at 129.54 177.8) (diameter 0) (color 0 0 0 0) + (uuid 78dda65e-a1ac-484a-90df-8886239d5089) + ) + (junction (at 121.92 50.8) (diameter 0) (color 0 0 0 0) + (uuid f2fec60c-9b17-4464-863b-4a7c774211c0) + ) + + (wire (pts (xy 67.31 134.62) (xy 91.44 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c921883-c2ad-43ba-ad66-91877e3f6377) + ) + (wire (pts (xy 138.43 134.62) (xy 138.43 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f6996ec-54b7-4b99-a0de-c1f54eb28b4b) + ) + (wire (pts (xy 101.6 68.58) (xy 121.92 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1434336f-ee16-4578-99f4-2257b1585e70) + ) + (wire (pts (xy 118.11 95.25) (xy 135.89 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14aee6cf-9570-4c05-bdd2-e45003fb0ba3) + ) + (wire (pts (xy 121.92 22.86) (xy 121.92 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17b3eaac-3c70-4289-8da1-8ff5c56e191a) + ) + (wire (pts (xy 115.57 58.42) (xy 133.35 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 180fae62-13af-47de-9da9-462cf1b1500b) + ) + (wire (pts (xy 116.84 76.2) (xy 134.62 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 229028ec-1e61-4726-9078-6c40d1728e5b) + ) + (wire (pts (xy 100.33 30.48) (xy 121.92 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2760bbb2-59e0-4979-aa29-2dd2aeb751f9) + ) + (wire (pts (xy 129.54 114.3) (xy 129.54 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3834af9d-08eb-4b02-aca2-29c5caa4a7e8) + ) + (wire (pts (xy 124.46 201.93) (xy 143.51 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ad304db-0e9f-4a49-a33e-c1e19ce95b5e) + ) + (wire (pts (xy 26.67 76.2) (xy 39.37 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46558c46-d7c9-4379-b520-b874944c3c09) + ) + (wire (pts (xy 121.92 50.8) (xy 121.92 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e406a63-9565-426a-bcea-8ef3be2813e4) + ) + (wire (pts (xy 27.94 93.98) (xy 40.64 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50e36a2c-f23e-4e95-bba7-1073cfaaa4b5) + ) + (wire (pts (xy 25.4 58.42) (xy 40.64 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54522e95-5567-4359-9a60-449d8711839f) + ) + (wire (pts (xy 129.54 127) (xy 129.54 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55b712b2-950d-4dc3-96d9-f0f150f6a82d) + ) + (wire (pts (xy 121.92 68.58) (xy 121.92 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d1fbde6-f91a-4fca-8310-0501f9d86c80) + ) + (wire (pts (xy 40.64 93.98) (xy 40.64 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64329528-adff-4de4-9b17-a7cce5365461) + ) + (wire (pts (xy 129.54 177.8) (xy 129.54 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6540c373-bef6-4369-b5eb-c666a2d783b4) + ) + (wire (pts (xy 69.85 95.25) (xy 88.9 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 692bd322-ad5b-40ed-a284-c4a88f06e8a1) + ) + (wire (pts (xy 27.94 161.29) (xy 40.64 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7150dd18-c66c-499b-9829-6e882e3ceced) + ) + (wire (pts (xy 143.51 201.93) (xy 143.51 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71f1ea32-0551-42fa-9420-887e4982c899) + ) + (wire (pts (xy 142.24 161.29) (xy 142.24 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72d2efe9-552a-47e3-8388-d54ea57f3289) + ) + (wire (pts (xy 25.4 38.1) (xy 40.64 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 779ea818-dc9d-47f5-9f49-aa70f5a7627e) + ) + (wire (pts (xy 69.85 161.29) (xy 92.71 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 799b33d7-de1a-476f-8a75-786a5ce45931) + ) + (wire (pts (xy 124.46 185.42) (xy 143.51 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 804ce70e-6043-4f38-ac8d-9ca0b75fd075) + ) + (wire (pts (xy 109.22 177.8) (xy 129.54 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86323ae2-9234-49c7-beaf-b97b96292f35) + ) + (wire (pts (xy 121.92 161.29) (xy 142.24 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bf387f3-e94c-46cf-bc80-c63b56fe2531) + ) + (wire (pts (xy 55.88 22.86) (xy 121.92 22.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bf7ad87-de87-47e0-855b-577bf19748fc) + ) + (wire (pts (xy 129.54 153.67) (xy 129.54 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 950290f4-7871-4f2e-9e5a-8267c24ac2d7) + ) + (wire (pts (xy 133.35 58.42) (xy 133.35 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 994cfb9c-80ba-4fce-9485-661d6049a6aa) + ) + (wire (pts (xy 68.58 76.2) (xy 87.63 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bdecbad-8c46-42f5-ab22-4fcc0fd559af) + ) + (wire (pts (xy 115.57 38.1) (xy 132.08 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cc23a54-8605-4988-86e2-ce160036c4f7) + ) + (wire (pts (xy 121.92 87.63) (xy 102.87 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f179730-a7b3-4a43-9bbc-b717d0d6d4a1) + ) + (wire (pts (xy 129.54 194.31) (xy 109.22 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a35bdaa1-d4e7-4a4a-8cf8-3a79d8e2b582) + ) + (wire (pts (xy 69.85 201.93) (xy 95.25 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9725f1e-6d7b-4564-aa51-40ced7e22e01) + ) + (wire (pts (xy 69.85 38.1) (xy 86.36 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acb22e83-07d2-4361-8e4a-0ee76da82668) + ) + (wire (pts (xy 25.4 134.62) (xy 38.1 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad094f66-11c9-4ffd-9dbc-5f6ea931ddb7) + ) + (wire (pts (xy 29.21 185.42) (xy 40.64 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0b618de-62ec-46b2-b3a5-771b4c3093fb) + ) + (wire (pts (xy 27.94 201.93) (xy 40.64 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b32c00d2-0a86-4289-9994-8d1dadf1b7fd) + ) + (wire (pts (xy 106.68 153.67) (xy 129.54 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8606adf-cc3c-42d3-a288-16212be08d28) + ) + (wire (pts (xy 27.94 114.3) (xy 40.64 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bcf524fe-8692-42cc-bc44-c255a4c0de97) + ) + (wire (pts (xy 120.65 134.62) (xy 138.43 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid caea29ed-95a2-42d9-9fb8-e39cc3d2a7eb) + ) + (wire (pts (xy 105.41 127) (xy 129.54 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d222f09e-f37d-4118-918f-48b7f08e0607) + ) + (wire (pts (xy 121.92 30.48) (xy 121.92 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc1df3d0-449f-489a-9916-d8695d30b39b) + ) + (wire (pts (xy 25.4 22.86) (xy 40.64 22.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7282283-9430-4db9-9cd6-10bf7f907d6b) + ) + (wire (pts (xy 100.33 50.8) (xy 121.92 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea476816-30ab-4c43-8689-ac197536ff7c) + ) + (wire (pts (xy 69.85 114.3) (xy 129.54 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid efe04d76-4377-4fdf-89d4-ca2129275b71) + ) + (wire (pts (xy 69.85 58.42) (xy 86.36 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f49f3c58-eae0-4507-b173-9aa3c415ef7d) + ) + (wire (pts (xy 69.85 185.42) (xy 95.25 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9c04e81-7a59-4625-81e5-25c09fc1707e) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 102.87 67.31 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06cc84da-29e5-4303-91d3-0ed58d9c0e4b) + (property "Reference" "U14" (id 0) (at 102.235 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 102.235 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dc116c37-6b74-44fe-9791-24b943e3a45b)) + (pin "2" (uuid bda07056-48d6-4238-80ac-6d2e82342b23)) + (pin "3" (uuid 3b3e9779-b0c8-44d9-b203-3423a0a1f22e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 21.59 161.29 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 08ab2b64-58a4-48d1-872d-30e876408eee) + (property "Reference" "U1" (id 0) (at 22.225 156.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 22.225 158.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 21.59 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 21.59 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8dd89c26-0e62-4bdd-b3d5-f8153f966532)) + (pin "2" (uuid 95e273bd-fd7a-4f97-bfb3-01831b13c2d0)) + (pin "3" (uuid fc3f76d2-22a9-456d-88a4-9a950dd29f36)) + (pin "4" (uuid 9e4906e9-6a90-453a-8848-cd39dcae7fd2)) + (pin "5" (uuid 35690054-2329-4774-bb7d-32f1d17211ac)) + (pin "6" (uuid 31148eb7-46f2-4239-9d36-c75379ea4680)) + (pin "7" (uuid a2143742-e592-4229-bbcc-942a62fee362)) + (pin "8" (uuid b9e334d9-ef40-4c5d-b1b5-320def0deccd)) + (pin "9" (uuid ee7471d6-a1e3-4d3c-8baf-8b8df844771d)) + (pin "10" (uuid 78f0b3b6-9826-4baa-be0f-7204a1cda569)) + (pin "11" (uuid 9a6ff7d5-41e0-46f4-b56d-feea7d920b48)) + (pin "12" (uuid 40f21f8a-2391-48e1-a860-6f490553d71b)) + (pin "13" (uuid bfaded3e-3397-4cb5-8484-5de10099d5ce)) + (pin "14" (uuid a1df802e-3670-45c2-b310-650b91134b7b)) + (pin "15" (uuid b49bc376-e87d-4d77-ab81-428e7984df7d)) + (pin "16" (uuid 5fe3cccf-80e1-48ca-9fb8-cbdfc6fd86d1)) + (pin "17" (uuid efd5bf31-40f8-427a-bcd9-a31258c45402)) + (pin "18" (uuid 620616cd-78d9-4976-bff3-57692b12ce56)) + (pin "19" (uuid b8ffa362-dd67-4284-811f-fee3a220a760)) + (pin "20" (uuid ec894447-899b-4537-9dd2-e7fe2ec84fa4)) + (pin "21" (uuid c1c75fe5-f960-459a-a2c2-6c8dbc5cc3b8)) + (pin "22" (uuid ab5cf657-ac8a-4003-b540-eabab27bb9ab)) + (pin "23" (uuid 228ec2c5-23d6-4f61-8cd7-7a3d0e154033)) + (pin "24" (uuid 024ea8ac-1705-4675-a12c-d12636786ca6)) + (pin "25" (uuid d3104a3d-b94e-4d7b-92bb-5dc5a7cd7d89)) + (pin "26" (uuid dc5aabf5-a985-4e0e-a46b-c9244bcfd8d2)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 50.8 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 11788cf5-6946-4ee9-be04-3c6cdeeaa088) + (property "Reference" "U3" (id 0) (at 52.705 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 52.705 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 50.8 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 50.8 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c6b92530-9544-4807-a655-cb72e41ac393)) + (pin "2" (uuid 0cbd829e-b1c3-4e45-915c-42c49f2b8e1e)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 53.34 161.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 123f0604-3d14-479f-898b-ba45841a6e8d) + (property "Reference" "U9" (id 0) (at 55.245 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 55.245 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 53.34 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 53.34 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f52f4ae9-7b1f-4d42-813a-2e5b0bc84ade)) + (pin "2" (uuid 5f721f2b-a327-4d28-b054-22ee034ff169)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 101.6 49.53 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 14a2d572-155d-4f37-af4a-677194607048) + (property "Reference" "U13" (id 0) (at 100.965 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 100.965 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 99.06 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 99.06 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4aa0deb9-92ec-4d93-938d-913e15a89296)) + (pin "2" (uuid 8fae9acb-c183-40f9-bd43-36ab40c288ef)) + (pin "3" (uuid cf2b20ff-2577-4485-a4c3-d1e501ee95b2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 19.05 134.62 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1af1ff09-6efd-4c95-92b9-560981f9755b) + (property "Reference" "U1" (id 0) (at 19.685 129.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 19.685 132.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 19.05 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 19.05 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6cc08ba1-aa72-4c1a-b32f-613e2915c852)) + (pin "2" (uuid a8dc8952-837c-482a-a27b-0e2319b0ba53)) + (pin "3" (uuid 7b51257e-7f3e-461b-93a4-bfdc1b9c554e)) + (pin "4" (uuid 946ab008-93bf-4884-ae20-3ac070dca7cc)) + (pin "5" (uuid 22ecb326-fe83-457f-aeff-52213a3cb96d)) + (pin "6" (uuid 33748b6d-59ca-4f0e-80f5-a70eabc605d3)) + (pin "7" (uuid bf3f9bf1-1b87-4a61-b330-b9cafabe561e)) + (pin "8" (uuid 46b37cf4-0372-4e98-97e8-872a4227bb1e)) + (pin "9" (uuid a13781da-394b-4957-add4-44d263e53bd7)) + (pin "10" (uuid 52ba6b7c-71cc-4640-9e0d-e89af1875dcc)) + (pin "11" (uuid 1e196621-b33c-46ec-b5cc-abe4697699c0)) + (pin "12" (uuid c49d381d-c2c5-4960-8cca-dc49655da754)) + (pin "13" (uuid cd666c84-9f57-45b5-a9fa-1324301c9704)) + (pin "14" (uuid 6b8ec331-a69f-4b28-9fcd-2d1f100924c9)) + (pin "15" (uuid 337a859e-5c91-422c-90f8-9d395c768cbf)) + (pin "16" (uuid e25f8c5d-458f-4bab-99e1-6133d2d4e710)) + (pin "17" (uuid e3ba28c3-d106-47c7-9192-7e89652d6be3)) + (pin "18" (uuid 4d430293-7fad-480e-91b8-3db229cb1401)) + (pin "19" (uuid d2d89e6e-2418-4081-9c64-6f23ca0b79b4)) + (pin "20" (uuid ee5a7fbf-b491-425f-9c50-e6fce9e8098c)) + (pin "21" (uuid 1e641de3-3564-4574-b626-350c4d378e48)) + (pin "22" (uuid 95c6d921-bd99-4180-9584-3615e4e37580)) + (pin "23" (uuid d325cc96-18d4-425e-95fa-7309a25f4ea9)) + (pin "24" (uuid 80fa050b-41de-4af1-be93-2d8af36790d2)) + (pin "25" (uuid 67b2b498-f45f-4c3d-a694-a1d157b71138)) + (pin "26" (uuid 3fa6df12-0ccf-4aab-80f5-a256bc2e00fc)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 52.07 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b7ff83a-8275-47db-a6cf-496766f9409d) + (property "Reference" "U4" (id 0) (at 53.975 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 53.975 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 52.07 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 52.07 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ce34733e-e717-4489-bec7-f17c8df15da9)) + (pin "2" (uuid 6a12829a-92c9-410b-ad07-2063b9b4472d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 19.05 38.1 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 203908b7-a20c-4278-b34a-b50936217b6a) + (property "Reference" "U1" (id 0) (at 19.685 33.02 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 19.685 35.56 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 19.05 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 19.05 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b0bafeaa-3dfa-4301-9fe8-47e570fa76e2)) + (pin "2" (uuid 95b0a809-57d8-48cb-bfa3-2bded73f679e)) + (pin "3" (uuid 55e6c384-c396-4774-a73f-30652a6da3d8)) + (pin "4" (uuid 7de626ad-eaa0-4e83-8938-b94bc6547222)) + (pin "5" (uuid 5feba0c4-88a2-4ed1-9c18-85af112ece99)) + (pin "6" (uuid 6b789dab-2ca4-4c35-8509-5ec21a4befb1)) + (pin "7" (uuid 4b83d461-875b-4244-809f-e65df0a90194)) + (pin "8" (uuid 0b23978a-56c8-43c6-a003-def9df52a9c6)) + (pin "9" (uuid dc933cf2-a66c-4522-81ec-d1565a5fc803)) + (pin "10" (uuid 8f47a500-b024-46a8-9027-8e78a8198404)) + (pin "11" (uuid 68e303f2-b24d-4e4f-aef6-ee63a39efb12)) + (pin "12" (uuid e29b20a2-788a-4dcb-abb2-64f999c649ef)) + (pin "13" (uuid d0d1b9b2-bf97-44a9-9c06-6e5512a6b489)) + (pin "14" (uuid 59884bae-7ee3-4dd9-b51c-1956170d127e)) + (pin "15" (uuid bc9d1d8c-445d-4d19-9849-7b7f8193c5a9)) + (pin "16" (uuid c5c840d9-3908-49bd-9d16-2a1c91383148)) + (pin "17" (uuid ab8e25e3-b13b-44f2-ab5f-366913aea8b3)) + (pin "18" (uuid fa095525-b0c0-49b7-b3e5-18524d455e6c)) + (pin "19" (uuid b9d4cac5-e5de-47db-ad99-d1af8eec28e4)) + (pin "20" (uuid 57d6d0c3-c229-468e-abe6-091f532ef764)) + (pin "21" (uuid 26e02b64-de78-4b0c-bb74-628fde5151a4)) + (pin "22" (uuid ad3263b2-944c-4be5-a0db-0678662af878)) + (pin "23" (uuid 0b113028-8618-40a3-a4f8-2b258fae4b2a)) + (pin "24" (uuid c8f5a4cb-d0cd-4006-b000-8547a8438110)) + (pin "25" (uuid 2982e87a-9242-421a-a9a6-01ad3690542e)) + (pin "26" (uuid 94fdd07b-28bf-49bf-8013-d1daa1a877ec)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 142.24 95.25 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2ae9904b-145d-4482-ac19-aa6fc02567f7) + (property "Reference" "U1" (id 0) (at 146.05 94.615 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 146.05 97.155 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 142.24 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4b0c4264-d9e2-49af-ba7b-bd2fb32bf2bf)) + (pin "2" (uuid 7a8fd402-591b-4bd0-ad23-ac62cb0e971a)) + (pin "3" (uuid 54b11738-25b5-4824-8ae5-ddcf320dcbb9)) + (pin "4" (uuid 562ab96c-d028-4dbe-b3e6-00bb9df14852)) + (pin "5" (uuid 424a9e3a-186e-46bc-a603-eb78662eb4b4)) + (pin "6" (uuid afa3ef3c-8472-4d34-b3f6-07d94bfd4b21)) + (pin "7" (uuid ebde9380-b0fc-45b7-871b-4cb8550211ef)) + (pin "8" (uuid dd840086-84f9-4e46-a38e-6304175a00b1)) + (pin "9" (uuid 11bc2cab-9588-40f7-abef-87190d258d62)) + (pin "10" (uuid 17ccc8ee-2c37-40fd-b764-36f570a7a22e)) + (pin "11" (uuid cc217c7d-a24a-4b77-b93c-88c4bc46ae92)) + (pin "12" (uuid 031cdc4c-c90c-42d0-a958-e438f173c5cf)) + (pin "13" (uuid d1de6eb3-99ea-477e-8ed9-3bfdd2d942ec)) + (pin "14" (uuid e25447af-d9f0-4682-9b03-05248d502b95)) + (pin "15" (uuid ed15d638-a2c7-469b-9856-bc4b461c43ca)) + (pin "16" (uuid ca212349-320c-473f-85cc-65e69c9c43c4)) + (pin "17" (uuid 15324564-70aa-454a-9b37-42fa7f0fbab4)) + (pin "18" (uuid 647c35ee-fccd-4307-b654-3d8d56c646a1)) + (pin "19" (uuid 2393c4ad-ab35-4376-8811-20d7206e7f13)) + (pin "20" (uuid a81565c1-9bc4-42a0-83e2-99c832ca9716)) + (pin "21" (uuid a825eca1-46de-491e-83e7-d7c80e2fb28f)) + (pin "22" (uuid 1fe767da-6d87-4e53-a12b-850f9f83400f)) + (pin "23" (uuid 1cf661bd-6d55-4ae3-b6b0-631affd1b616)) + (pin "24" (uuid 7c6ed0ea-55e6-4371-9d97-e19978618082)) + (pin "25" (uuid f6b6474b-f993-47da-94f6-2e6ed0cfef43)) + (pin "26" (uuid d1e50b50-5147-4419-93f4-666f0122856c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 144.78 133.35 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 31300082-f0a6-4aca-abdd-fe736d979998) + (property "Reference" "U1" (id 0) (at 148.59 132.715 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 148.59 135.255 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 144.78 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e914cf80-74d3-417e-9826-5a2333420db5)) + (pin "2" (uuid 91116743-c206-4861-a0a2-c06828f890bf)) + (pin "3" (uuid af336446-4117-47ea-a796-d16017f90f31)) + (pin "4" (uuid 3d627c10-0ad5-4668-b8a4-6369b7f6c790)) + (pin "5" (uuid 1dbbfa28-54eb-486b-af6e-eb9d6ca36435)) + (pin "6" (uuid deb796e4-9a73-4196-bb4a-a7cbf47a2141)) + (pin "7" (uuid 96a45041-be29-4673-86e9-6fc6cf7e70fc)) + (pin "8" (uuid 40bb9116-0730-4a05-80f1-5533ed8a4f88)) + (pin "9" (uuid db1e58f3-1ebe-4987-94e3-3f64a8777a24)) + (pin "10" (uuid 46a566f1-3f0a-4141-92f8-7b3daa7906b4)) + (pin "11" (uuid b229a36b-74c8-464f-a3f9-616e733cd5fe)) + (pin "12" (uuid 88e19252-3616-4762-8505-1f80a4f57864)) + (pin "13" (uuid e87ae8d5-a992-4725-ba87-46e5f2d6f6d7)) + (pin "14" (uuid 95b2e941-6cc5-4768-9cb7-af9e5f30be00)) + (pin "15" (uuid dc27d293-12e5-4441-8b73-d95a4675fca2)) + (pin "16" (uuid c60f6608-1617-4a11-bd70-3eb4d57f1af4)) + (pin "17" (uuid 7e7d4869-ac75-4184-85e5-7338b1714d6f)) + (pin "18" (uuid c7e79e96-6aa8-411a-a045-b1260572a2e6)) + (pin "19" (uuid 19d6a67a-4f17-46a0-b595-0ac5c672d1cb)) + (pin "20" (uuid b24619fe-a179-4c20-b4da-20a5757bd8de)) + (pin "21" (uuid 8092bf11-d985-453e-bfc0-7e74589aea02)) + (pin "22" (uuid c275afa0-3110-4846-ae25-d6f0a459634c)) + (pin "23" (uuid d2116d9a-d722-424c-aae1-bffd1bddbe85)) + (pin "24" (uuid 4c978c3c-33e3-41f9-8675-2b4daca94eaf)) + (pin "25" (uuid 4a8c5ec0-1d5b-4816-81ac-9645edefd31b)) + (pin "26" (uuid b884eea8-7e2c-4d15-845d-d74bd216af1e)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 53.34 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38dbe71c-659a-4722-90eb-ccc1adaa3685) + (property "Reference" "U6" (id 0) (at 55.245 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 55.245 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 53.34 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 53.34 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 588d7fc6-ca2a-4e56-bcc9-9dd79555b5db)) + (pin "2" (uuid 4dc393f0-bffe-4d68-82d9-84d12bb36214)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 148.59 160.02 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3ab56a3e-14cb-4a5c-953d-dfdabe6de32d) + (property "Reference" "U1" (id 0) (at 152.4 159.385 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 152.4 161.925 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 148.59 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 148.59 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1474e657-3b8e-4a2e-8b51-29609bca34fe)) + (pin "2" (uuid c4d8443f-293e-4a24-8e04-12a24667d7ea)) + (pin "3" (uuid 48e085fc-624a-4b3e-b41d-0a00a688093f)) + (pin "4" (uuid 1a2f21a4-cc86-42dc-98ab-d0d14264a8e4)) + (pin "5" (uuid 0b2eeb77-7185-4e42-bb3b-a897eb5f42c4)) + (pin "6" (uuid a90fffd5-3a96-47d8-b694-f5d01aa9b105)) + (pin "7" (uuid fd661c6b-a194-416d-8342-6e36f7b7067a)) + (pin "8" (uuid af14d258-cfed-4e2d-88f3-1c0c728881c2)) + (pin "9" (uuid 7c0d65ef-5061-4e53-a0d9-1faa5a468e20)) + (pin "10" (uuid 1b2417c2-88eb-4be3-b8e8-5e6ced3f0c4b)) + (pin "11" (uuid c00812a7-eb0b-466a-bbe3-b61ecf5472e5)) + (pin "12" (uuid 44c81a11-ff42-41f7-85e0-eb398ead3a1e)) + (pin "13" (uuid d26b63d7-3943-41f4-8df1-2f8a32b94d17)) + (pin "14" (uuid 374bc646-9d74-431b-b0d7-825bdea9066f)) + (pin "15" (uuid f720488f-4837-4134-836f-af665b4df6fb)) + (pin "16" (uuid 6c23ad13-3aa1-4ec6-8dda-2665b2eb81b7)) + (pin "17" (uuid 5c0c1f4b-d4d8-4e2d-afbd-85b299619d53)) + (pin "18" (uuid 0931fce0-95b4-4078-bb18-6ab6fa9803d2)) + (pin "19" (uuid 711efb4b-2083-4f1f-8d36-f5c2f4644323)) + (pin "20" (uuid c265a1b5-0f93-4506-86bb-f7992582e0f3)) + (pin "21" (uuid 36374a37-0e8f-4d8f-9bb0-38fd6eb146aa)) + (pin "22" (uuid 05bbfa13-8a5c-4ece-8760-7489f83eed2f)) + (pin "23" (uuid cba08089-bc1b-4082-9c98-19340f3bd453)) + (pin "24" (uuid 6b7533aa-4e5a-4c09-9ec0-0baad7b36783)) + (pin "25" (uuid 688b1b79-cd9e-421c-9b62-2c18b0d0e486)) + (pin "26" (uuid 1c746540-4d6b-4d57-8f6c-ad3d3f35cc66)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 110.49 193.04 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3ba6a8df-2fb1-4e0c-ba7c-a0aca9a49edd) + (property "Reference" "U19" (id 0) (at 109.855 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 109.855 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 107.95 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 107.95 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5ff618d9-7b3a-45e1-a570-071b69a1a2b1)) + (pin "2" (uuid a7eba676-9785-45b3-aad6-0973a9ce0f2f)) + (pin "3" (uuid c69202f8-41e4-422f-ac80-2dd05ca70d98)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 19.05 22.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3e52877e-fab0-45c9-a370-08bad2e1e67b) + (property "Reference" "U1" (id 0) (at 19.685 17.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 19.685 20.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 19.05 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 19.05 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0b0180f5-28c1-45ec-8c94-02459ad98b78)) + (pin "2" (uuid fa26337a-d494-48ea-8819-960bd7dabbb0)) + (pin "3" (uuid b17cc862-c05d-436d-a38e-7d7ca171dd71)) + (pin "4" (uuid 51302919-eb10-4044-868f-cf35df8b7f71)) + (pin "5" (uuid 5abadc1e-3083-43cb-8f69-953001c743f2)) + (pin "6" (uuid 44018b8a-9cc0-4eb1-b9aa-a39165cdb233)) + (pin "7" (uuid 3c3f1de8-9bd4-417f-abc2-b6103245289a)) + (pin "8" (uuid 217261c0-c166-49db-93f1-1ef2b26900dd)) + (pin "9" (uuid 85719e93-5b2c-4090-9e07-445303f86c6c)) + (pin "10" (uuid b62cd722-daf3-451e-89db-1a044487f826)) + (pin "11" (uuid b1334245-a38b-4765-a0c2-df929ee0ce03)) + (pin "12" (uuid ccca9dd1-7c23-496b-8852-8fec8c1722cc)) + (pin "13" (uuid 203697db-b54c-4df2-9be3-96f7f6b8b904)) + (pin "14" (uuid c8ec5741-3813-4cd4-9c65-8ce3e9c54a59)) + (pin "15" (uuid ff906476-0c9c-4ee1-b8a4-ea75526fb6ec)) + (pin "16" (uuid 430f67ca-5f15-4155-baff-837b13921f11)) + (pin "17" (uuid d474a3be-d8d6-4052-ad56-61af4d162cbf)) + (pin "18" (uuid 3e3b1400-2b84-4eab-9c99-65db79eae332)) + (pin "19" (uuid 994d7d2b-e2a9-41a4-b3c2-505164ee1e99)) + (pin "20" (uuid 9cd1d884-b699-4900-be06-cebae93bb11f)) + (pin "21" (uuid e2aecb9c-8f70-4550-be46-a78dc058f70d)) + (pin "22" (uuid 13103eb1-f13c-4d4b-bda0-b63adc0241c7)) + (pin "23" (uuid d24881ec-732e-4a14-8787-1a185ecbaf86)) + (pin "24" (uuid c993a418-6111-438b-b4af-f417c910cb4a)) + (pin "25" (uuid 4915b675-7675-460d-93eb-08edc4faec2e)) + (pin "26" (uuid 200cc0bd-38fd-4048-bdcd-bae4958301cc)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 21.59 93.98 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 46200f95-022f-4d01-b4d5-3bebfc8493f3) + (property "Reference" "U1" (id 0) (at 22.225 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 22.225 91.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 21.59 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 21.59 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ecfa51a-554b-445f-9824-4fda2a7d1ff6)) + (pin "2" (uuid 9926809a-0c00-471f-b571-61847d03ef44)) + (pin "3" (uuid bd95a867-fcf5-4c0b-bfdc-a1c775614f46)) + (pin "4" (uuid 2cc75bb9-32f3-489f-a8b7-0e51a78ea768)) + (pin "5" (uuid 5895b6fb-1d49-412e-b6ce-13c20f051c93)) + (pin "6" (uuid 31ec36cb-f477-47bb-8a04-68e92535242c)) + (pin "7" (uuid 13f404bc-a843-49ba-99a1-9a6199fc25a2)) + (pin "8" (uuid a2abcf59-830a-40b3-bc6b-7db9f6290048)) + (pin "9" (uuid 84631a82-f383-4b81-88bd-412b7f6115ff)) + (pin "10" (uuid 0cc74907-5897-434d-bfd7-cc6306cd2b4f)) + (pin "11" (uuid 73369d40-a2be-48eb-855e-e25f59ac8fb8)) + (pin "12" (uuid 09cb2af2-7ba2-45c1-b4fb-707f59f416fd)) + (pin "13" (uuid 211df737-81f3-49b6-b58b-fa39def23450)) + (pin "14" (uuid 3a4f0bed-f97c-4287-9066-745a2d86313b)) + (pin "15" (uuid 37a58bfe-9524-4e8c-9ca7-74266041ce9b)) + (pin "16" (uuid b7ed44e8-3e87-418c-b33b-43b553e9ad0e)) + (pin "17" (uuid 953d3e55-eb6f-4313-918d-1c42e9851774)) + (pin "18" (uuid efec47bf-561a-490c-a473-76f62647fabb)) + (pin "19" (uuid 6c6098e3-96d1-4984-95cb-3fc3db8cb739)) + (pin "20" (uuid edb837a0-8fa2-4d81-9152-dabcbc9e1e75)) + (pin "21" (uuid 671611ca-4468-4d8e-80a8-e1bcaa6efe5f)) + (pin "22" (uuid 9a3a2b4a-6339-4819-8c94-e9fe41e0ce4f)) + (pin "23" (uuid b9a6d1f8-5490-4d56-98c3-f064df073462)) + (pin "24" (uuid 2981aeae-71e1-49e0-8ea3-104ad7c5615d)) + (pin "25" (uuid 1b36abba-f514-4682-a6ba-804af242a008)) + (pin "26" (uuid 257821cd-03c4-43a1-960b-55c63d787495)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 106.68 125.73 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ffd4646-ebf6-42af-8df7-984e31a18da0) + (property "Reference" "U16" (id 0) (at 106.045 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 106.045 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 104.14 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 104.14 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 536518ac-9727-4221-bd40-abfa6b98cd04)) + (pin "2" (uuid 6efd3d43-b623-466a-8841-3b0cc6c576f2)) + (pin "3" (uuid 5e40d129-2046-4027-ac3d-1b93034696e7)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 53.34 201.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e4602ff-8dba-42ae-aca0-86b8fbd89b5d) + (property "Reference" "U11" (id 0) (at 55.245 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 55.245 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 53.34 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 53.34 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 764fa090-97b8-40ed-ac7b-23c4b36449dd)) + (pin "2" (uuid aec15e8c-c82d-4bbe-b1a1-86242828bf54)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 20.32 76.2 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6f8564f9-5cfe-4aff-bf17-d1600b37dd21) + (property "Reference" "U1" (id 0) (at 20.955 71.12 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 20.955 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 20.32 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 20.32 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 67702603-fd5c-48e7-b656-82e0ede44a01)) + (pin "2" (uuid 1f59c4f4-fc14-4d3a-bbdd-e439072a37ca)) + (pin "3" (uuid 2bc22d00-22f7-43fe-aa15-70df94761a6f)) + (pin "4" (uuid ec5c9f8e-748a-449b-ba2a-4dd3f5a70820)) + (pin "5" (uuid d125536c-f2bb-4fe8-bace-fe67c85f1a72)) + (pin "6" (uuid 7168dfca-a7f2-4ee4-bcaa-f8bcb46c480b)) + (pin "7" (uuid fef60e2b-5096-49a9-be4b-f0a196135c48)) + (pin "8" (uuid 64434f7e-94aa-4af1-8862-f8f5fc0c3ce1)) + (pin "9" (uuid 823da4d4-4cc0-41ff-8258-31457002daba)) + (pin "10" (uuid 16b98b0d-fdd6-4285-b628-a2ac4a57bdcb)) + (pin "11" (uuid 1ae3ed36-4af3-4f6e-935d-c2a5a92da701)) + (pin "12" (uuid ad56b801-4307-431f-ac52-4491c3746044)) + (pin "13" (uuid 32ca29a2-1bf7-4564-8be9-530780a898b8)) + (pin "14" (uuid f038010c-3464-4f07-bec0-5ae768fef3d2)) + (pin "15" (uuid b460c13c-5d9d-4266-8247-ff19ed48604a)) + (pin "16" (uuid cf0f4a42-3f57-4e08-a148-8ba6d1d7fba3)) + (pin "17" (uuid 4ff62037-35b3-4e0d-bec1-43dae05ba735)) + (pin "18" (uuid a6c2a0a6-3251-4a11-9965-9b3c5741d478)) + (pin "19" (uuid 7b712d48-0f28-4d0c-bc78-b1041b2a6101)) + (pin "20" (uuid 3043af30-5f90-4712-82ce-c19ea4ce0cf3)) + (pin "21" (uuid fdb95732-81da-4421-8deb-334b85ab9d80)) + (pin "22" (uuid ef3b352f-6170-4d06-80d6-8374e07e6273)) + (pin "23" (uuid b9264231-3473-440b-8999-c63c557268db)) + (pin "24" (uuid 170b5300-1b91-48c7-9f50-8cf4034ff0c0)) + (pin "25" (uuid 18ccd3e2-4b99-49f9-9a4e-5446a2f52dfe)) + (pin "26" (uuid 68dc2922-1128-4631-bc5b-494b4806c747)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 53.34 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 70e7cdc1-6f08-4c86-a4c9-3d5125ae396c) + (property "Reference" "U5" (id 0) (at 55.245 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 55.245 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 53.34 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 53.34 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a3297ff-ee69-4521-9ecb-b275e6fed45d)) + (pin "2" (uuid 29c11561-56ed-48be-8fac-51bd30b94cce)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 21.59 114.3 0) (unit 19) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 738ce868-f6ea-4907-aced-dec818959d14) + (property "Reference" "U1" (id 0) (at 22.225 109.22 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 22.225 111.76 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 21.59 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 21.59 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6415bd5b-fff1-49c4-8f7f-7ba5ef1de863)) + (pin "2" (uuid 762ce467-a25d-427c-a6bc-948ac4f95faf)) + (pin "3" (uuid 674dd62f-e7d4-4b0e-87a8-90fe55453b61)) + (pin "4" (uuid a0c1a3e1-2bc8-4056-94a0-ef9a306bbbcd)) + (pin "5" (uuid cf41e9fb-72a0-46a5-95e3-889be2bc7fb2)) + (pin "6" (uuid 2b1c7162-7737-42f4-8dc2-141cab6d5ce8)) + (pin "7" (uuid ad2a7b7d-d769-4d03-ba1e-b515e805f7cc)) + (pin "8" (uuid f7b4b809-0a72-4b94-9ccb-a4aaabf90ee0)) + (pin "9" (uuid 0201cd0e-cae7-447a-88a5-68a1a1538dff)) + (pin "10" (uuid 0574581d-4ef2-4fd9-927a-8662f9c36a64)) + (pin "11" (uuid e923fbee-c69d-4476-817d-8287e49698f5)) + (pin "12" (uuid 67fa1cd7-3be7-4617-b83e-adcbdd751d45)) + (pin "13" (uuid cfa56032-a51b-487c-8f43-d7726170f2c6)) + (pin "14" (uuid a5c36544-d3ab-4865-959b-c7b3ce657229)) + (pin "15" (uuid c7f8aa33-a403-4530-84cf-db5131cf46f0)) + (pin "16" (uuid 969936a6-b28f-4090-b091-ea29b0954df2)) + (pin "17" (uuid 3d2ee6d6-8c38-46e9-bfb8-69e623005895)) + (pin "18" (uuid 39d7aa0d-c623-4be8-b3de-75af74fd64d5)) + (pin "19" (uuid 93fc1173-ad26-41cc-b2a6-29ce5f5dbd41)) + (pin "20" (uuid 9298c894-9f9b-4205-9e38-fac5ec89dbd0)) + (pin "21" (uuid 4b0b570d-33a6-4d91-bfd5-1e95c7896aff)) + (pin "22" (uuid c7894c7d-8888-454d-b859-ffbcc0299d01)) + (pin "23" (uuid b592d898-7b15-4d46-9df9-9a091e8a9dac)) + (pin "24" (uuid c5cb9b6e-090f-4ab0-b370-3563a0ae0994)) + (pin "25" (uuid 4fdd2e86-affa-4e6a-8801-8a8a31fc863d)) + (pin "26" (uuid dec1a7df-39bf-4dcd-832f-8d5bb4efcb06)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 22.86 185.42 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7673c26d-7751-4a7c-8e5d-a97c596a2551) + (property "Reference" "U1" (id 0) (at 23.495 180.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 23.495 182.88 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 22.86 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 22.86 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 569dfff2-9296-40b8-8ac9-7b3f85890706)) + (pin "2" (uuid af0337b1-e088-454f-ba7f-49e6c0e2c759)) + (pin "3" (uuid 8e0c8bc1-fe1f-4162-83a7-7ac7a062f589)) + (pin "4" (uuid ce505840-1110-4414-a960-a584b66004be)) + (pin "5" (uuid b45aab9c-f201-47ab-83cf-f2777d25591c)) + (pin "6" (uuid 00facc4c-809a-491d-aaec-2910cc5fce84)) + (pin "7" (uuid 7cdcb9ee-5bb2-4cc7-992e-dc56f9e7c066)) + (pin "8" (uuid 4add0a6a-ec9a-4923-91b9-1b314e55b61b)) + (pin "9" (uuid 25bda6b6-7f3e-41bd-b76f-fa5f5a8bff55)) + (pin "10" (uuid 9439d13f-09ea-445c-82b8-5b283e9b796d)) + (pin "11" (uuid 17ca44d7-cad7-43ee-91b2-46c763247ac5)) + (pin "12" (uuid d99599d1-81fb-450d-b153-757d8411dedc)) + (pin "13" (uuid 40444648-f9da-40be-99e7-ae20fdb04d8c)) + (pin "14" (uuid 8173786b-c249-4af8-b1cf-36edafcea0a1)) + (pin "15" (uuid 8bb9d254-0c4a-4ec0-8d39-bfe4e4964802)) + (pin "16" (uuid 7276d887-539f-48dc-b2e0-307bfba4202e)) + (pin "17" (uuid c106e4ce-e327-48b3-b738-22ced5625b0a)) + (pin "18" (uuid ad0e55c7-1c81-4ddc-9764-67c046eb0a29)) + (pin "19" (uuid efc96697-ec49-4fee-af6d-e70f82c00b71)) + (pin "20" (uuid f144f726-15c3-40dd-a886-b69c3aa8eb46)) + (pin "21" (uuid 42688b21-6f4e-44f5-8ea0-155efc167842)) + (pin "22" (uuid 41855a3e-ddec-4b1c-a347-60b070fde09c)) + (pin "23" (uuid 72cc4b0b-6114-4a34-808b-d39b553904bd)) + (pin "24" (uuid 940e3e79-6dc1-4681-8926-434d515976af)) + (pin "25" (uuid ee530ed4-868f-44d5-ad40-683a271f940d)) + (pin "26" (uuid f58abca0-7b36-47b5-bd80-5f5645d09025)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 138.43 38.1 180) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 80b03b7d-56f6-49e7-b5e4-06148708918f) + (property "Reference" "U1" (id 0) (at 142.24 37.465 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 142.24 40.005 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 138.43 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 138.43 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid adb47317-b9ae-4f4d-8e9e-f17419e86491)) + (pin "2" (uuid a4aabddd-d918-4940-98a4-921e2e29e6f1)) + (pin "3" (uuid 292d684d-8700-41cd-9281-2c13c2b8150a)) + (pin "4" (uuid 157c86fd-d273-4a97-b2d6-3cbffb02a518)) + (pin "5" (uuid 27485251-9c76-481a-ba03-c6fdda22af77)) + (pin "6" (uuid c64f6eda-64b3-45d5-be68-0614ea6a9476)) + (pin "7" (uuid 7ff60b63-23fb-4f73-8f5a-12039ba1fc79)) + (pin "8" (uuid 04cb0d52-4d2c-4b9f-bba4-d8768999b42c)) + (pin "9" (uuid e3eabee7-b8b4-485b-a386-1b446251d6a1)) + (pin "10" (uuid d97576c1-257b-415e-bfee-423a29c80a72)) + (pin "11" (uuid cf81bd01-1bac-4504-a3b7-13bc16fa97fe)) + (pin "12" (uuid 1d5bc306-6d0f-410a-9d9b-61724e850adf)) + (pin "13" (uuid cff3b189-b348-4a13-b779-60fa5990f6e4)) + (pin "14" (uuid d549eeca-cc14-42ca-b337-e12f7c7d5666)) + (pin "15" (uuid d366d0a1-4b2b-4b96-9815-7cefb239e43e)) + (pin "16" (uuid 16aaf61b-10ba-413d-bd8a-1752f89566d6)) + (pin "17" (uuid 07d98b81-a38b-47b2-8d43-57838edb4d48)) + (pin "18" (uuid 11bcccb9-35f0-4d30-9954-b6189c221a82)) + (pin "19" (uuid dbda8279-f893-4131-af33-37b977405e40)) + (pin "20" (uuid 1451a4a2-218c-40ec-911f-11308b853244)) + (pin "21" (uuid 7cace017-95e7-42ca-b882-3bdb16c10340)) + (pin "22" (uuid a5fb13f9-3d65-43a6-8b11-2b0545d1f8f7)) + (pin "23" (uuid 48cb9256-212c-4ca2-bf57-69698751e0e3)) + (pin "24" (uuid b3517141-5f0a-419e-b4dc-ce5d2d0fd5cb)) + (pin "25" (uuid 86cb7764-6f74-4c4e-9013-8fec29355716)) + (pin "26" (uuid c849516f-ce3a-4001-9afa-a45a532db595)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 21.59 201.93 0) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 868973aa-ae22-487d-a110-687b0dca053b) + (property "Reference" "U1" (id 0) (at 22.225 196.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 22.225 199.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 21.59 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 21.59 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1308c385-b5c8-461b-8388-49f87ce83bf5)) + (pin "2" (uuid f8b56dd3-4dbc-4eab-b97d-ec541ba864d5)) + (pin "3" (uuid 4ef7d1fd-2b25-4f92-b713-6480890a225c)) + (pin "4" (uuid 95721968-39f3-46ea-92e8-7953f940789e)) + (pin "5" (uuid bd784e12-d5a4-47be-8755-508ccf31aaa0)) + (pin "6" (uuid beebb97b-7cce-457c-86d0-82dc54882e7c)) + (pin "7" (uuid fdb0c203-3d08-4974-a78c-2fe36b2b26fb)) + (pin "8" (uuid 8ccd6ece-57ff-4bb8-aa54-3188c54d82b2)) + (pin "9" (uuid e3f19bb8-1438-499c-8f8e-3474c7db35ec)) + (pin "10" (uuid 22fcf2b1-9d71-49ec-bf14-af681c565b89)) + (pin "11" (uuid f60d94bb-c976-4c9a-837e-9885215eea0c)) + (pin "12" (uuid 8e77f470-4368-402c-a673-77e92526dae0)) + (pin "13" (uuid 807d958e-7f5a-471a-ba90-0ab78ca3d076)) + (pin "14" (uuid a1a45a9b-0844-4576-b4db-1d5ed850195f)) + (pin "15" (uuid e0ac0d7c-a873-491c-a884-ede58c4e621c)) + (pin "16" (uuid b79037e5-9f2f-4828-822c-bd5cdeef653c)) + (pin "17" (uuid 0757ad59-8a5f-4f74-bb0b-452dc4823b80)) + (pin "18" (uuid 9849adc8-7b57-4f6c-88d0-c95fcd7c8cda)) + (pin "19" (uuid b46aca79-005f-42df-a52f-4f1322f72fd8)) + (pin "20" (uuid 41c1d3c3-8a2c-4060-b6ab-6f66d88792cb)) + (pin "21" (uuid cf02b0d0-8893-4718-99d5-202d56ea4af8)) + (pin "22" (uuid 21c8cea3-fd6e-412f-9287-3f768dfdc72f)) + (pin "23" (uuid 69a5fb17-b49b-4c34-83f8-3dfbea3810e3)) + (pin "24" (uuid 6ca10ed8-c688-4c69-ac30-e20a96947faa)) + (pin "25" (uuid ad680eca-9dd2-4d53-887f-200e7840ef4c)) + (pin "26" (uuid 318936e9-e616-4fea-9005-d7190f8584e6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 48.26 22.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f961b4c-9cfa-4e34-8ec0-293d195d6640) + (property "Reference" "U2" (id 0) (at 48.26 16.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 48.26 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 49.53 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 49.53 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f5b51ed5-48c1-48f5-a2e8-4875b4204b42)) + (pin "2" (uuid 52f2d5e8-a52c-4c42-b4ba-91fdecea4a22)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 107.95 152.4 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 98ca0df2-c2d3-47ca-b6ba-cedef541807f) + (property "Reference" "U17" (id 0) (at 107.315 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 107.315 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 105.41 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 105.41 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fff15095-ccc5-427b-8c3e-18191988aa94)) + (pin "2" (uuid ba84b52f-7276-4a06-b7d7-4483fe7d0a1d)) + (pin "3" (uuid e1164eb0-fccb-43d9-96ac-468e2c80a9f8)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 53.34 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9cef0061-e0e1-4935-a5e3-642f21ec80a6) + (property "Reference" "U10" (id 0) (at 55.245 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 55.245 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 53.34 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 53.34 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c72722b2-eef8-4d0a-a3ab-76de51bfb31a)) + (pin "2" (uuid 9443f4a5-953e-42a4-9e67-78d2e9ee03be)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 19.05 58.42 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a3094817-7735-4a1d-9464-5a43414adc23) + (property "Reference" "U1" (id 0) (at 19.685 53.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 19.685 55.88 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 19.05 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 19.05 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 69e62a22-c746-4565-9d19-ad021abd864d)) + (pin "2" (uuid a4323c7a-6026-49b6-9091-9c707809d638)) + (pin "3" (uuid d1492b18-c7bc-42c5-9ba4-a04176989d8a)) + (pin "4" (uuid 7ce4a62a-4343-4a2f-9ce2-3f19244b07e4)) + (pin "5" (uuid c153f8cf-ca69-4406-8b39-393a8c3e59ee)) + (pin "6" (uuid 50625442-45a9-4e8a-8b20-d2399c6306b3)) + (pin "7" (uuid eff1ffab-f092-4cba-8c68-186c47d4e2b1)) + (pin "8" (uuid 62c74b22-04c4-4e0b-b34c-a7bb205f28f9)) + (pin "9" (uuid c1b0ae06-bf93-4f44-89ce-91bd2495ba55)) + (pin "10" (uuid 28a37e7f-9b35-48fa-ad4d-e1e5e5ee3a9f)) + (pin "11" (uuid 54aa0c5d-91cf-4a7a-9a7e-5eed1cfb3005)) + (pin "12" (uuid c078b936-fc16-447d-83c3-c1f6765eaf44)) + (pin "13" (uuid 01eba9ec-fd81-4fc1-8c89-d1bbf79441db)) + (pin "14" (uuid 895c3607-ac7c-45ff-9774-a42046f3dc53)) + (pin "15" (uuid f84709d8-9580-444f-83fa-fbc316cca2b9)) + (pin "16" (uuid 6ff2800a-bb5e-4b38-85e1-36e7647497a9)) + (pin "17" (uuid be209a5e-adf4-418b-ae12-fd56138a5505)) + (pin "18" (uuid 1d0f0202-8cfa-4ea7-a8a7-867f4c21a545)) + (pin "19" (uuid a33becef-06a8-4ff0-a180-47accccf3a93)) + (pin "20" (uuid 35538a9c-9aa3-42a4-a3b8-8a473552ae7c)) + (pin "21" (uuid 74146686-7b91-4e16-b305-296fe662e334)) + (pin "22" (uuid 852d9371-6151-48e7-b88d-0167f5c657d6)) + (pin "23" (uuid b74f00b6-1b09-4c02-aac0-c567aac4e477)) + (pin "24" (uuid 6a87ae62-a9dd-4c78-a76b-ec771c98807c)) + (pin "25" (uuid d117689d-d05a-4a13-a62c-824def8a2b50)) + (pin "26" (uuid ba201a09-51e8-4d60-9734-613253e80cdd)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 53.34 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ac5a3d80-10fb-43d2-88b3-ae29df03997b) + (property "Reference" "U7" (id 0) (at 55.245 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 55.245 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 53.34 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 53.34 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bc4d0609-6f9d-42fb-bbcf-dc63179034ae)) + (pin "2" (uuid 115fe089-6e71-4212-a515-d2d605ad376c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 139.7 57.15 180) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c1b56cde-ffd5-448f-ade6-43d95f5ac41b) + (property "Reference" "U1" (id 0) (at 143.51 56.515 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 143.51 59.055 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 139.7 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b905992a-6547-41de-acdc-556a90eb497c)) + (pin "2" (uuid 34a0ae30-0e04-49f1-bf1e-c0f3bf05f585)) + (pin "3" (uuid c0e2300c-7acf-4008-82af-f7583534267e)) + (pin "4" (uuid f33081fb-9e3b-4007-a501-fe309fdc5a7e)) + (pin "5" (uuid b15afea8-1297-4aec-8289-38ddaeb83c57)) + (pin "6" (uuid 127f1489-f58f-456b-a34d-1d52b88b0aba)) + (pin "7" (uuid d05b2cf4-8ec2-43de-bbe0-ce35dc67fbcd)) + (pin "8" (uuid 126163bb-cf51-4571-8436-1cb45cf3b7e7)) + (pin "9" (uuid de8b4f2f-1e0c-4069-b8de-8c1e0244d1f2)) + (pin "10" (uuid 81d8bf41-6994-4f6e-8b10-b3c655c67e6b)) + (pin "11" (uuid 63674097-c882-4e93-a523-86d5d3a8df82)) + (pin "12" (uuid e1030fde-6288-40c7-8c3e-b6811e578a72)) + (pin "13" (uuid 11ff12dd-14f8-4914-be51-c0c0798525ce)) + (pin "14" (uuid efe59dd8-e209-4d00-9bb7-537d94594951)) + (pin "15" (uuid 7c2722f1-d785-4f51-b40a-cbc31e73b9d3)) + (pin "16" (uuid 2920d726-230b-40a6-a935-20fb0ac3443d)) + (pin "17" (uuid 58e9be5b-467a-4e0a-bc81-06200d0453bb)) + (pin "18" (uuid 4426eef4-8d22-4203-a412-de149836ffaa)) + (pin "19" (uuid 549c2873-66bc-4d6b-a731-39730f5ba2dc)) + (pin "20" (uuid 00ebd9d7-23c8-44ad-a12a-d412109b97f6)) + (pin "21" (uuid ef5483f3-e132-40ba-a63d-4c6f341695a0)) + (pin "22" (uuid 9943d83d-e6f8-469a-a705-e6097981646e)) + (pin "23" (uuid f50770a8-c278-4d73-9a2b-10d551ee3d97)) + (pin "24" (uuid b05fb734-c82b-415e-913a-a7ffc4f533d9)) + (pin "25" (uuid 4278c939-3c1b-441f-b5c2-d1832909e00f)) + (pin "26" (uuid 45679038-b22a-43e0-81b2-5412557f5a26)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 53.34 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc763926-5c29-43a5-bc4e-0028218546e9) + (property "Reference" "U8" (id 0) (at 55.245 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 55.245 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 53.34 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 53.34 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1d22858b-094c-4d9f-b344-62fba246a10a)) + (pin "2" (uuid 2c1c9fd3-59e9-4cb7-9c9d-d4bec6f7bffc)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 110.49 176.53 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3177ce0-8064-4b56-b79c-6982b2e73cd1) + (property "Reference" "U18" (id 0) (at 109.855 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 109.855 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 107.95 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 107.95 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8d3a3328-2380-408e-836f-16ce80242baa)) + (pin "2" (uuid 56d10605-d18f-4daf-abf9-e577956a2970)) + (pin "3" (uuid 62ae0dd4-2e9f-45f1-aa57-f1ac9b5b9523)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 149.86 203.2 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e343c6b0-f8aa-41af-966a-aac9e099c491) + (property "Reference" "U1" (id 0) (at 153.67 202.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 153.67 205.105 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 149.86 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8fa6f36c-9aad-4404-8157-e134bfbd37db)) + (pin "2" (uuid aa3a4e06-672e-41b4-9ca6-ee12d9d9f077)) + (pin "3" (uuid ba55cb2f-3bdf-4f42-902a-a3c86a0e8139)) + (pin "4" (uuid 6b804f5c-a2c2-4eb1-9c01-161d5b31bbbd)) + (pin "5" (uuid 615f81f3-a84d-4c5e-a576-9b259b4b53a0)) + (pin "6" (uuid d44e15f1-0cfe-4675-8937-e06d2210324a)) + (pin "7" (uuid 6b3d90ab-5bbc-456a-b97a-8631962a2b05)) + (pin "8" (uuid 69526484-606f-4b1e-a159-2077bbfb7fa7)) + (pin "9" (uuid 95f38d12-41b7-4cc5-a3ff-a8b6b450cbb3)) + (pin "10" (uuid 7d438142-0258-4443-8b51-519a4ed39327)) + (pin "11" (uuid 7cdf3a12-b5e4-4b2d-9094-0d1cbb5e2c5f)) + (pin "12" (uuid 79fd2253-5f2e-49f4-9198-0814b13f66ef)) + (pin "13" (uuid 1bc03ed7-8863-4520-9a7d-932143793751)) + (pin "14" (uuid 6edd7c58-5b2b-49e1-b6fb-dc60c4387c04)) + (pin "15" (uuid 42389851-36d4-4555-8c30-eaacfd3f6fa3)) + (pin "16" (uuid 0ab10641-c9da-4381-b57f-d9df14d426d0)) + (pin "17" (uuid 6d6db0a0-950b-4f40-8dc5-3893fe1d50f3)) + (pin "18" (uuid ed897a57-6391-4a33-801e-fe35a43f0987)) + (pin "19" (uuid e32ec04d-346c-407d-a4c8-f4ae2c17349a)) + (pin "20" (uuid aaac9a9e-6f24-4a4b-968b-eafb4b59d3ea)) + (pin "21" (uuid 66ff6f48-ec0b-4b35-8650-be48f47b34b0)) + (pin "22" (uuid 026ec178-b4d4-45d9-8f9a-3afb5acfc339)) + (pin "23" (uuid 4ecde0b1-4feb-48d4-80d7-f11f55aa1078)) + (pin "24" (uuid 00bf1584-2b2c-4b96-9f11-5f0951565875)) + (pin "25" (uuid df6aaa5e-8be7-40f4-8957-fdd1ffc0076e)) + (pin "26" (uuid 822a4b68-4126-494d-b4a6-fcf4bd11147c)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 104.14 86.36 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5b9d5eb-91c7-4a21-83f7-6eff86d7843c) + (property "Reference" "U15" (id 0) (at 103.505 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 103.505 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 101.6 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 101.6 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4637d8dc-7a63-442a-b15e-ea9f8ac1e7ae)) + (pin "2" (uuid 767d32a4-9bd3-4019-be0b-84675aa76aea)) + (pin "3" (uuid 18b4a4c4-349d-464d-8012-1e43a6c9c82c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 149.86 185.42 180) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eaf400db-2c62-4a89-9b3b-ec54676f546d) + (property "Reference" "U1" (id 0) (at 153.67 184.785 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 153.67 187.325 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 149.86 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 83b0e468-fcab-46dc-9237-a14110b48141)) + (pin "2" (uuid f5968acd-4efd-43d4-98c9-063bebdbb5e3)) + (pin "3" (uuid d7df8a5d-8f00-4eda-82e2-3dfdb1e8427a)) + (pin "4" (uuid 4b849458-83ef-4d2e-9f20-709c099c56ce)) + (pin "5" (uuid 7411b732-bf13-4e6a-b273-acc2a3ca56c5)) + (pin "6" (uuid c5c48321-a640-49d2-be29-3e74cc7577ec)) + (pin "7" (uuid 8af974a5-8e70-4aab-92c3-dd1f431ec39d)) + (pin "8" (uuid bf9aabf1-898c-478a-9a01-eea1692611a0)) + (pin "9" (uuid 85dec3e9-ff53-4653-83fd-f0e7fe3c969e)) + (pin "10" (uuid 96106411-f6e0-43c9-ac03-d24c795c66c6)) + (pin "11" (uuid 812777c8-3ebe-4334-810f-8b3829a9e036)) + (pin "12" (uuid 7690b16b-f0df-4650-bb34-2877a1dc701a)) + (pin "13" (uuid a3fbbedd-e433-4575-b8a0-925c12beeea8)) + (pin "14" (uuid 17e787c9-9233-4c75-943e-7dd945636719)) + (pin "15" (uuid 9fddbc1c-5d9e-4759-ad2c-4b54956024e6)) + (pin "16" (uuid 06872384-71e1-47f3-9bb6-5dfeaba524e6)) + (pin "17" (uuid 5764320e-38d0-4081-ad9a-f8a3b8b3c2f6)) + (pin "18" (uuid eb27d6d2-c037-4c0f-8e6f-37330d4b816d)) + (pin "19" (uuid 7a375baf-aed7-4c48-a2d7-8044190ae8d0)) + (pin "20" (uuid b44a6d03-94fa-4bec-982c-6e59d7e9b786)) + (pin "21" (uuid 9cbcab11-6eee-47cb-a23b-3f41662bc73a)) + (pin "22" (uuid 9ef5cb06-7ea5-4b92-b919-b1d94b518614)) + (pin "23" (uuid d4d02f2c-d511-43d6-b370-59cd1688b7bc)) + (pin "24" (uuid 077e1eee-e1cd-46cc-bd5b-fcf25583dde7)) + (pin "25" (uuid 663ee9e4-7acb-4fb3-bb5f-e214179b0095)) + (pin "26" (uuid 2ebb2a5d-4fd9-4065-8cd0-6460e1ba8aa2)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 101.6 29.21 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f4d2058b-f1fc-4b3d-a7af-03781f541e19) + (property "Reference" "U12" (id 0) (at 100.965 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 100.965 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 99.06 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 99.06 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 943080eb-80e2-4438-8f01-30c0fbcda427)) + (pin "2" (uuid 6a2b81b6-e47d-4113-bf8a-57393f51bb19)) + (pin "3" (uuid 2144b710-5674-486a-bbe5-26a236786b79)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 140.97 76.2 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f8e696cf-4ae9-436b-a56b-0685f49b5288) + (property "Reference" "U1" (id 0) (at 144.78 75.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 144.78 78.105 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 140.97 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb587285-18ea-4bf3-a0a2-d61736662c52)) + (pin "2" (uuid 9d6d9a4b-9f81-484c-9396-cb8b5e8b99ee)) + (pin "3" (uuid 6a27e455-4aeb-4b07-b8af-fd4fd044116c)) + (pin "4" (uuid 980edf1e-e520-4f91-a90c-178f6fad99f8)) + (pin "5" (uuid 8fdedccd-267c-4b5d-87a7-0819aa872d34)) + (pin "6" (uuid 3fac2e3b-bfbb-43cd-bab8-3407a7eee541)) + (pin "7" (uuid b22c5693-6866-4ce1-a166-a3cf07df5c1c)) + (pin "8" (uuid 2438654f-81a8-48db-9c8c-e183fc91bbc2)) + (pin "9" (uuid 2da08124-baeb-41fc-8857-213decd704ba)) + (pin "10" (uuid 6cf01636-b029-4fa4-963a-60b2604105d6)) + (pin "11" (uuid 03c425c7-abcf-48ed-9fbb-fe6b71c94efe)) + (pin "12" (uuid 17ddcce6-d4ed-4a49-8e3b-a2ed34df24ba)) + (pin "13" (uuid 3356fbb5-4bae-4195-bcc1-63b2871ff20d)) + (pin "14" (uuid 41a58075-f044-4a81-a5a1-177e525019a8)) + (pin "15" (uuid f5c54964-ac7b-451f-aadb-1896e037ad99)) + (pin "16" (uuid 39b46a1b-ee14-4155-837b-07905e1080af)) + (pin "17" (uuid 9496275d-0f3c-4d86-908a-ce7a1077e132)) + (pin "18" (uuid 84bad180-69b9-4210-80f3-41891113ed44)) + (pin "19" (uuid a27b94a4-dd86-4b1d-9196-96e0c585b9da)) + (pin "20" (uuid 92581ef9-7c93-4ed7-913c-5e41e4f16826)) + (pin "21" (uuid 9cab7c58-e6a9-479d-bd84-1d499818d718)) + (pin "22" (uuid a5bef954-654b-4376-b3df-879190b4bb26)) + (pin "23" (uuid 6fdfb117-69d8-4918-8e99-d37347cd16fd)) + (pin "24" (uuid 5ae5c1ca-5ed4-4f5a-b3cf-8b67dd874fee)) + (pin "25" (uuid 04f25e33-c4a5-407e-b718-f583a7935faa)) + (pin "26" (uuid edb87fe8-7c1f-4738-81bf-d5c22cece23c)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/3e52877e-fab0-45c9-a370-08bad2e1e67b" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/203908b7-a20c-4278-b34a-b50936217b6a" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/e343c6b0-f8aa-41af-966a-aac9e099c491" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/a3094817-7735-4a1d-9464-5a43414adc23" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/eaf400db-2c62-4a89-9b3b-ec54676f546d" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/6f8564f9-5cfe-4aff-bf17-d1600b37dd21" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/3ab56a3e-14cb-4a5c-953d-dfdabe6de32d" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/46200f95-022f-4d01-b4d5-3bebfc8493f3" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/31300082-f0a6-4aca-abdd-fe736d979998" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/1af1ff09-6efd-4c95-92b9-560981f9755b" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/2ae9904b-145d-4482-ac19-aa6fc02567f7" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/08ab2b64-58a4-48d1-872d-30e876408eee" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/f8e696cf-4ae9-436b-a56b-0685f49b5288" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/7673c26d-7751-4a7c-8e5d-a97c596a2551" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/c1b56cde-ffd5-448f-ade6-43d95f5ac41b" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/868973aa-ae22-487d-a110-687b0dca053b" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/80b03b7d-56f6-49e7-b5e4-06148708918f" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/738ce868-f6ea-4907-aced-dec818959d14" + (reference "U1") (unit 19) (value "PORT") (footprint "") + ) + (path "/8f961b4c-9cfa-4e34-8ec0-293d195d6640" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/11788cf5-6946-4ee9-be04-3c6cdeeaa088" + (reference "U3") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/1b7ff83a-8275-47db-a6cf-496766f9409d" + (reference "U4") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/70e7cdc1-6f08-4c86-a4c9-3d5125ae396c" + (reference "U5") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/38dbe71c-659a-4722-90eb-ccc1adaa3685" + (reference "U6") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/ac5a3d80-10fb-43d2-88b3-ae29df03997b" + (reference "U7") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/cc763926-5c29-43a5-bc4e-0028218546e9" + (reference "U8") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/123f0604-3d14-479f-898b-ba45841a6e8d" + (reference "U9") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/9cef0061-e0e1-4935-a5e3-642f21ec80a6" + (reference "U10") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/6e4602ff-8dba-42ae-aca0-86b8fbd89b5d" + (reference "U11") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/f4d2058b-f1fc-4b3d-a7af-03781f541e19" + (reference "U12") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/14a2d572-155d-4f37-af4a-677194607048" + (reference "U13") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/06cc84da-29e5-4303-91d3-0ed58d9c0e4b" + (reference "U14") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/e5b9d5eb-91c7-4a21-83f7-6eff86d7843c" + (reference "U15") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/5ffd4646-ebf6-42af-8df7-984e31a18da0" + (reference "U16") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/98ca0df2-c2d3-47ca-b6ba-cedef541807f" + (reference "U17") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/d3177ce0-8064-4b56-b79c-6982b2e73cd1" + (reference "U18") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/3ba6a8df-2fb1-4e0c-ba7c-a0aca9a49edd" + (reference "U19") (unit 1) (value "d_tristate") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.sub b/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.sub new file mode 100644 index 000000000..2309d24cd --- /dev/null +++ b/library/SubcircuitLibrary/CD74HCT241/CD74HCT241.sub @@ -0,0 +1,78 @@ +* Subcircuit CD74HCT241 +.subckt CD74HCT241 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ +.title kicad schematic +* u11 net-_u1-pad17_ net-_u11-pad2_ d_buffer +* u9 net-_u1-pad13_ net-_u17-pad1_ d_buffer +* u10 net-_u1-pad15_ net-_u10-pad2_ d_buffer +* u3 net-_u1-pad11_ net-_u16-pad1_ d_buffer +* u7 net-_u1-pad8_ net-_u15-pad1_ d_buffer +* u8 net-_u1-pad19_ net-_u16-pad2_ d_buffer +* u5 net-_u1-pad2_ net-_u12-pad1_ d_buffer +* u2 net-_u1-pad1_ net-_u12-pad2_ d_inverter +* u14 net-_u14-pad1_ net-_u12-pad2_ net-_u1-pad14_ d_tristate +* u13 net-_u13-pad1_ net-_u12-pad2_ net-_u1-pad16_ d_tristate +* u6 net-_u1-pad4_ net-_u13-pad1_ d_buffer +* u4 net-_u1-pad6_ net-_u14-pad1_ d_buffer +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u1-pad18_ d_tristate +* u15 net-_u15-pad1_ net-_u12-pad2_ net-_u1-pad12_ d_tristate +* u18 net-_u10-pad2_ net-_u16-pad2_ net-_u1-pad5_ d_tristate +* u19 net-_u11-pad2_ net-_u16-pad2_ net-_u1-pad3_ d_tristate +* u17 net-_u17-pad1_ net-_u16-pad2_ net-_u1-pad7_ d_tristate +* u16 net-_u16-pad1_ net-_u16-pad2_ net-_u1-pad9_ d_tristate +a1 net-_u1-pad17_ net-_u11-pad2_ u11 +a2 net-_u1-pad13_ net-_u17-pad1_ u9 +a3 net-_u1-pad15_ net-_u10-pad2_ u10 +a4 net-_u1-pad11_ net-_u16-pad1_ u3 +a5 net-_u1-pad8_ net-_u15-pad1_ u7 +a6 net-_u1-pad19_ net-_u16-pad2_ u8 +a7 net-_u1-pad2_ net-_u12-pad1_ u5 +a8 net-_u1-pad1_ net-_u12-pad2_ u2 +a9 net-_u14-pad1_ net-_u12-pad2_ net-_u1-pad14_ u14 +a10 net-_u13-pad1_ net-_u12-pad2_ net-_u1-pad16_ u13 +a11 net-_u1-pad4_ net-_u13-pad1_ u6 +a12 net-_u1-pad6_ net-_u14-pad1_ u4 +a13 net-_u12-pad1_ net-_u12-pad2_ net-_u1-pad18_ u12 +a14 net-_u15-pad1_ net-_u12-pad2_ net-_u1-pad12_ u15 +a15 net-_u10-pad2_ net-_u16-pad2_ net-_u1-pad5_ u18 +a16 net-_u11-pad2_ net-_u16-pad2_ net-_u1-pad3_ u19 +a17 net-_u17-pad1_ net-_u16-pad2_ net-_u1-pad7_ u17 +a18 net-_u16-pad1_ net-_u16-pad2_ net-_u1-pad9_ u16 +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u11 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u10 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u8 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u14 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u13 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u6 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u12 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u15 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u18 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u19 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u17 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u16 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Control Statements + +.ends CD74HCT241 \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD74HCT241/CD74HCT241_Previous_Values.xml b/library/SubcircuitLibrary/CD74HCT241/CD74HCT241_Previous_Values.xml new file mode 100644 index 000000000..86c0cdbc9 --- /dev/null +++ b/library/SubcircuitLibrary/CD74HCT241/CD74HCT241_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_bufferd_bufferd_bufferd_bufferd_bufferd_bufferd_bufferd_inverterd_tristated_tristated_bufferd_bufferd_tristated_tristated_tristated_tristated_tristated_tristate \ No newline at end of file diff --git a/library/SubcircuitLibrary/CD74HCT241/analysis b/library/SubcircuitLibrary/CD74HCT241/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/CD74HCT241/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.cir b/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.cir new file mode 100644 index 000000000..b5eb27372 --- /dev/null +++ b/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.cir @@ -0,0 +1,9 @@ +.title KiCad schematic +U4 Net-_U3-Pad2_ Net-_U4-Pad2_ d_inverter +U3 Net-_U2-Pad2_ Net-_U3-Pad2_ d_inverter +U2 Net-_U1-Pad1_ Net-_U2-Pad2_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ PORT +U7 Net-_U6-Pad2_ Net-_U1-Pad2_ d_inverter +U5 Net-_U4-Pad2_ Net-_U5-Pad2_ d_inverter +U6 Net-_U5-Pad2_ Net-_U6-Pad2_ d_inverter +.end diff --git a/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.cir.out b/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.cir.out new file mode 100644 index 000000000..f0288ec9b --- /dev/null +++ b/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.cir.out @@ -0,0 +1,36 @@ +.title kicad schematic + +* u4 net-_u3-pad2_ net-_u4-pad2_ d_inverter +* u3 net-_u2-pad2_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad1_ net-_u2-pad2_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ port +* u7 net-_u6-pad2_ net-_u1-pad2_ d_inverter +* u5 net-_u4-pad2_ net-_u5-pad2_ d_inverter +* u6 net-_u5-pad2_ net-_u6-pad2_ d_inverter +a1 net-_u3-pad2_ net-_u4-pad2_ u4 +a2 net-_u2-pad2_ net-_u3-pad2_ u3 +a3 net-_u1-pad1_ net-_u2-pad2_ u2 +a4 net-_u6-pad2_ net-_u1-pad2_ u7 +a5 net-_u4-pad2_ net-_u5-pad2_ u5 +a6 net-_u5-pad2_ net-_u6-pad2_ u6 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.kicad_sch b/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.kicad_sch new file mode 100644 index 000000000..de91e7bce --- /dev/null +++ b/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.kicad_sch @@ -0,0 +1,490 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid d1f09450-d5f3-4486-926c-dfcf6fec91f1) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (wire (pts (xy 207.01 86.36) (xy 204.47 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18c9aea6-398a-415c-bb20-c6ee95ed81d5) + ) + (wire (pts (xy 115.57 86.36) (xy 118.11 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 403a9885-600f-4770-9cb0-f9f1e84c58a4) + ) + (wire (pts (xy 186.69 86.36) (xy 189.23 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 992eacf5-13b7-4f97-9a10-104ebb345ada) + ) + (wire (pts (xy 95.25 86.36) (xy 100.33 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ccfc5d9-6d31-40bc-81e6-4e1d8ef69e98) + ) + (wire (pts (xy 168.91 86.36) (xy 171.45 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfbc8979-4724-4f85-beaf-c25521cbbe9d) + ) + (wire (pts (xy 151.13 86.36) (xy 153.67 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d45ea8fc-382b-4235-9b1c-f9f576d44c14) + ) + (wire (pts (xy 133.35 86.36) (xy 135.89 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc3fafeb-3f34-47ac-8469-5f88e27f130f) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 88.9 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 110693e8-408d-42ee-a194-af5ff924e508) + (property "Reference" "U1" (id 0) (at 89.535 81.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 89.535 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 88.9 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 88.9 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c44ad0e-ee8c-4476-a767-c0890d9abcc3)) + (pin "2" (uuid f030ffe3-606e-4293-a142-dbf851498f16)) + (pin "3" (uuid f52480f0-0bf2-49ef-89c8-9e805022f9f9)) + (pin "4" (uuid 781d094e-229a-4898-a875-151cfbc65f70)) + (pin "5" (uuid f605d3e2-6475-4793-9759-05faf1c50689)) + (pin "6" (uuid eed13237-3c5d-4ab1-aa9e-c198e9b32c7f)) + (pin "7" (uuid ddf827d2-e4a7-4f7b-9b9f-19d5a3432f9b)) + (pin "8" (uuid 0c23b767-e745-4f4e-abd1-6daaf7086a3b)) + (pin "9" (uuid 4e38c2d4-6baf-4c7b-97b7-2e2ca053e323)) + (pin "10" (uuid 3cebd303-b2e9-408e-ae90-92bca57c0710)) + (pin "11" (uuid 4bee26ad-b486-46a8-89bc-16a05092fd4a)) + (pin "12" (uuid 474bb153-b150-4e4d-8116-70594eaf8f6d)) + (pin "13" (uuid 9973f59b-972b-4b26-9d1b-edc34f161bce)) + (pin "14" (uuid 824faf41-a071-4cbb-b4b7-9096441a40eb)) + (pin "15" (uuid 7a03229a-4078-4a29-af1d-991b6b75ccd0)) + (pin "16" (uuid d0aa718c-462d-48fb-bbe9-1c701e9da8f8)) + (pin "17" (uuid a9b688af-d66e-40d6-9f72-20a415085bd7)) + (pin "18" (uuid dcd2e070-7b6c-477a-a682-a6c167a69d8e)) + (pin "19" (uuid 34e5e68e-30d4-4c76-92dd-63b74c85445e)) + (pin "20" (uuid b95c7166-16fb-46af-bb96-da61a5ba3f2d)) + (pin "21" (uuid b030bc2a-2cbe-4773-8d3b-d029df8d5809)) + (pin "22" (uuid 99eea8a8-1a75-4f1e-ba33-8dd71a539b80)) + (pin "23" (uuid 0fa0f609-473f-46af-b2e5-8decdc5ba960)) + (pin "24" (uuid 5c2c28cc-8f95-4709-b798-80e128085a3a)) + (pin "25" (uuid ba6377e1-ecbf-4971-98c4-5d9b66e9b89e)) + (pin "26" (uuid 3c9b869d-f9bd-4a05-a69d-ecb6ff2a8418)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 161.29 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 39d526d4-2f90-4180-8d34-c0bd728e58d0) + (property "Reference" "U5" (id 0) (at 161.29 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 161.29 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ca1d8ed0-019a-4724-85b3-c49480e8efe4)) + (pin "2" (uuid 6a33eed7-f9c3-4d79-90b2-96346c37b51d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 107.95 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 47bc52ef-9112-4959-a89f-3e35e023543f) + (property "Reference" "U2" (id 0) (at 107.95 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 107.95 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 415b3a5e-80e0-4a7b-a43d-b5ddf270305f)) + (pin "2" (uuid f8e73bbb-8f87-429c-82cd-33e6f1c5391b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 213.36 86.36 180) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4d5fb1c4-7765-4d42-8b07-6ff63bd68cc6) + (property "Reference" "U1" (id 0) (at 217.17 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 217.17 88.265 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 213.36 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4368b514-0e17-4091-88f5-77bac6f626f3)) + (pin "2" (uuid 09c9d001-3892-4d89-97f3-eb8028e9be6b)) + (pin "3" (uuid 64bd372c-5c09-4ec9-9ac7-cdd9fe05e31b)) + (pin "4" (uuid 800b2692-fad9-4e52-88b9-6eedbaef3f4a)) + (pin "5" (uuid 59eac1f7-3071-428b-9421-d0726bc5c41d)) + (pin "6" (uuid 6cc26ad6-dcde-49a6-bbd7-ccdb824989ee)) + (pin "7" (uuid 396fa573-32ed-4dec-bd9b-4524596c6658)) + (pin "8" (uuid ab3a7b8e-f123-48f0-920e-ab06ff6f3678)) + (pin "9" (uuid 3ed60bb8-2ca8-4b1d-9127-9be9e34a926a)) + (pin "10" (uuid fa0bd97a-85e3-4186-8e83-c765dbe573c5)) + (pin "11" (uuid b2e5696d-6696-475e-bfcf-4364b0c78b0d)) + (pin "12" (uuid 825078de-607f-4650-88ba-70f395b38103)) + (pin "13" (uuid 3ab1b0eb-53bf-4df2-9be7-2e3341c17946)) + (pin "14" (uuid 5be58849-18d2-4bc8-96fc-a0532467cecb)) + (pin "15" (uuid 800b3785-07f3-48bf-bc01-d40373ccb19f)) + (pin "16" (uuid e0553836-75fb-44ad-aa7b-1bcebce7f7b0)) + (pin "17" (uuid 85c561e8-156b-4289-8bdc-41b51106d41c)) + (pin "18" (uuid 1972c43e-1418-443d-8fa2-28086ddbbb6d)) + (pin "19" (uuid ce91e121-c8c7-4e84-a144-3ada9edccddf)) + (pin "20" (uuid 80d279c6-b863-4179-9288-cd01079fe1dd)) + (pin "21" (uuid 8e90ba3a-5462-450b-9a20-f6d187f9fc25)) + (pin "22" (uuid 08ece9d7-651a-4c70-a129-140a71f47dc2)) + (pin "23" (uuid 4f97214a-8eea-4af2-ae09-efae17f9be6c)) + (pin "24" (uuid 6fb69047-5b08-4775-8832-e4cf4757ab48)) + (pin "25" (uuid 9b110538-3d78-4344-9d45-2965fa75878a)) + (pin "26" (uuid 9cc1094a-fc30-486b-ae4e-a59f3214809f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 196.85 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5202cb02-a3ae-46db-b2c8-2c1dbc524ef7) + (property "Reference" "U7" (id 0) (at 196.85 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 196.85 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aa2d363f-dd2c-470e-aaa5-a39cc8e6672f)) + (pin "2" (uuid 7cabb904-f75c-4de2-b4e0-08d6581a94cd)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 179.07 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ac91ffb2-ec59-47bb-a612-2046f480c1e6) + (property "Reference" "U6" (id 0) (at 179.07 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 179.07 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 180.34 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 180.34 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f66ec248-c3d5-4c96-95cb-c6573fb4ff5a)) + (pin "2" (uuid 5f62e200-af56-4fcc-a6f4-8eb4bff3cbd6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 143.51 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid caea2a68-2f7d-43f2-a0d9-2c0c4d7b3f43) + (property "Reference" "U4" (id 0) (at 143.51 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 143.51 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 144.78 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d9ed383-468c-4b69-aca1-ed47daf63107)) + (pin "2" (uuid 91a153c8-383b-48bf-8fac-7a11a1635dfd)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 125.73 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d28121e3-1ebb-4192-99ef-781f3f6c9e37) + (property "Reference" "U3" (id 0) (at 125.73 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 125.73 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 127 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 127 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9eb0a72f-7599-4ac0-b586-41be1c15d016)) + (pin "2" (uuid 34dabd02-7a5b-4b2b-9f96-489babdcd897)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/110693e8-408d-42ee-a194-af5ff924e508" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/4d5fb1c4-7765-4d42-8b07-6ff63bd68cc6" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/47bc52ef-9112-4959-a89f-3e35e023543f" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d28121e3-1ebb-4192-99ef-781f3f6c9e37" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/caea2a68-2f7d-43f2-a0d9-2c0c4d7b3f43" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/39d526d4-2f90-4180-8d34-c0bd728e58d0" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ac91ffb2-ec59-47bb-a612-2046f480c1e6" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5202cb02-a3ae-46db-b2c8-2c1dbc524ef7" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.sub b/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.sub new file mode 100644 index 000000000..69eb9341b --- /dev/null +++ b/library/SubcircuitLibrary/IC_74LS31/IC_74LS31.sub @@ -0,0 +1,30 @@ +* Subcircuit IC_74LS31 +.subckt IC_74LS31 net-_u1-pad1_ net-_u1-pad2_ +.title kicad schematic +* u4 net-_u3-pad2_ net-_u4-pad2_ d_inverter +* u3 net-_u2-pad2_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad1_ net-_u2-pad2_ d_inverter +* u7 net-_u6-pad2_ net-_u1-pad2_ d_inverter +* u5 net-_u4-pad2_ net-_u5-pad2_ d_inverter +* u6 net-_u5-pad2_ net-_u6-pad2_ d_inverter +a1 net-_u3-pad2_ net-_u4-pad2_ u4 +a2 net-_u2-pad2_ net-_u3-pad2_ u3 +a3 net-_u1-pad1_ net-_u2-pad2_ u2 +a4 net-_u6-pad2_ net-_u1-pad2_ u7 +a5 net-_u4-pad2_ net-_u5-pad2_ u5 +a6 net-_u5-pad2_ net-_u6-pad2_ u6 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends IC_74LS31 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_74LS31/IC_74LS31_Previous_Values.xml b/library/SubcircuitLibrary/IC_74LS31/IC_74LS31_Previous_Values.xml new file mode 100644 index 000000000..86b70963f --- /dev/null +++ b/library/SubcircuitLibrary/IC_74LS31/IC_74LS31_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_inverterd_inverterd_inverterd_inverterd_inverterd_inverter \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_74LS31/README_IC_74LS31.md b/library/SubcircuitLibrary/IC_74LS31/README_IC_74LS31.md new file mode 100644 index 000000000..9245da71c --- /dev/null +++ b/library/SubcircuitLibrary/IC_74LS31/README_IC_74LS31.md @@ -0,0 +1,26 @@ +# IC_74LS31 Hex Delay Element + +IC_74LS31 is a Hex Delay Element belonging to the Low-Power Schottky TTL logic family. It contains six independent delay elements designed to introduce controlled propagation delays in digital circuits. + +## Usage/Examples + +- Digital timing circuits +- Pulse shaping applications +- Clock synchronization systems +- Delay generation networks +- Signal conditioning circuits + +## Documentation + +To know the details of IC_74LS31 please go through the documentation: [74LS31 Datasheet](https://www.ti.com/lit/ds/symlink/sn74ls31.pdf) + +## Comments/Notes + +Please note this is a digital TTL IC. The subcircuit accurately replicates the timing behavior specified in the datasheet using cascaded inverter delay elements. The propagation delay is modeled using six independent d_inverter stages. + +## Contributor + +Name: Santhosh C +Email: santhoshc.vlsi2024@citchennai.net +Year: 2026 +Position: FOSSEE eSim Intern 2026 diff --git a/library/SubcircuitLibrary/IC_74LS31/analysis b/library/SubcircuitLibrary/IC_74LS31/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_74LS31/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.cir b/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.cir new file mode 100644 index 000000000..634706b33 --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.cir @@ -0,0 +1,17 @@ +.title KiCad schematic +U13 Net-_U13-Pad1_ /Q4 d_buffer +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ /Q6 /Q5 /Q4 /Q3 /Q2 /Q1 PORT +U6 Net-_U1-Pad3_ /CLK unconnected-_U6-Pad3_ /CLR Net-_U12-Pad1_ unconnected-_U6-Pad6_ d_dff +U15 Net-_U15-Pad1_ /Q6 d_buffer +U12 Net-_U12-Pad1_ /Q3 d_buffer +U14 Net-_U14-Pad1_ /Q5 d_buffer +U9 Net-_U1-Pad6_ /CLK unconnected-_U9-Pad3_ /CLR Net-_U15-Pad1_ unconnected-_U9-Pad6_ d_dff +U8 Net-_U1-Pad5_ /CLK unconnected-_U8-Pad3_ /CLR Net-_U14-Pad1_ unconnected-_U8-Pad6_ d_dff +U7 Net-_U1-Pad4_ /CLK unconnected-_U7-Pad3_ /CLR Net-_U13-Pad1_ unconnected-_U7-Pad6_ d_dff +U3 Net-_U1-Pad7_ /CLK d_buffer +U10 Net-_U10-Pad1_ /Q1 d_buffer +U11 Net-_U11-Pad1_ /Q2 d_buffer +U4 Net-_U1-Pad1_ /CLK unconnected-_U4-Pad3_ /CLR Net-_U10-Pad1_ unconnected-_U4-Pad6_ d_dff +U5 Net-_U1-Pad2_ /CLK unconnected-_U5-Pad3_ /CLR Net-_U11-Pad1_ unconnected-_U5-Pad6_ d_dff +U2 Net-_U1-Pad8_ /CLR d_inverter +.end diff --git a/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.cir.out b/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.cir.out new file mode 100644 index 000000000..1faa73d5b --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.cir.out @@ -0,0 +1,68 @@ +.title kicad schematic + +* u13 net-_u13-pad1_ /q4 d_buffer +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ /q6 /q5 /q4 /q3 /q2 /q1 port +* u6 net-_u1-pad3_ /clk unconnected-_u6-pad3_ /clr net-_u12-pad1_ unconnected-_u6-pad6_ d_dff +* u15 net-_u15-pad1_ /q6 d_buffer +* u12 net-_u12-pad1_ /q3 d_buffer +* u14 net-_u14-pad1_ /q5 d_buffer +* u9 net-_u1-pad6_ /clk unconnected-_u9-pad3_ /clr net-_u15-pad1_ unconnected-_u9-pad6_ d_dff +* u8 net-_u1-pad5_ /clk unconnected-_u8-pad3_ /clr net-_u14-pad1_ unconnected-_u8-pad6_ d_dff +* u7 net-_u1-pad4_ /clk unconnected-_u7-pad3_ /clr net-_u13-pad1_ unconnected-_u7-pad6_ d_dff +* u3 net-_u1-pad7_ /clk d_buffer +* u10 net-_u10-pad1_ /q1 d_buffer +* u11 net-_u11-pad1_ /q2 d_buffer +* u4 net-_u1-pad1_ /clk unconnected-_u4-pad3_ /clr net-_u10-pad1_ unconnected-_u4-pad6_ d_dff +* u5 net-_u1-pad2_ /clk unconnected-_u5-pad3_ /clr net-_u11-pad1_ unconnected-_u5-pad6_ d_dff +* u2 net-_u1-pad8_ /clr d_inverter +a1 net-_u13-pad1_ /q4 u13 +a2 net-_u1-pad3_ /clk unconnected-_u6-pad3_ /clr net-_u12-pad1_ unconnected-_u6-pad6_ u6 +a3 net-_u15-pad1_ /q6 u15 +a4 net-_u12-pad1_ /q3 u12 +a5 net-_u14-pad1_ /q5 u14 +a6 net-_u1-pad6_ /clk unconnected-_u9-pad3_ /clr net-_u15-pad1_ unconnected-_u9-pad6_ u9 +a7 net-_u1-pad5_ /clk unconnected-_u8-pad3_ /clr net-_u14-pad1_ unconnected-_u8-pad6_ u8 +a8 net-_u1-pad4_ /clk unconnected-_u7-pad3_ /clr net-_u13-pad1_ unconnected-_u7-pad6_ u7 +a9 net-_u1-pad7_ /clk u3 +a10 net-_u10-pad1_ /q1 u10 +a11 net-_u11-pad1_ /q2 u11 +a12 net-_u1-pad1_ /clk unconnected-_u4-pad3_ /clr net-_u10-pad1_ unconnected-_u4-pad6_ u4 +a13 net-_u1-pad2_ /clk unconnected-_u5-pad3_ /clr net-_u11-pad1_ unconnected-_u5-pad6_ u5 +a14 net-_u1-pad8_ /clr u2 +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u13 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u6 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u15 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u12 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u14 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u9 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u8 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u7 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u10 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u11 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u4 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u5 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.kicad_sch b/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.kicad_sch new file mode 100644 index 000000000..4e73f93f3 --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.kicad_sch @@ -0,0 +1,1556 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 442a5a5a-8e79-4187-b466-277f4dfa4761) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 270.51 215.9) (diameter 0) (color 0 0 0 0) + (uuid 2b0e1126-5c72-4bb3-bce7-4176cbefd7fd) + ) + (junction (at 270.51 176.53) (diameter 0) (color 0 0 0 0) + (uuid 3a955dd7-64fe-4269-8ad9-d8c65a39548e) + ) + (junction (at 273.05 184.15) (diameter 0) (color 0 0 0 0) + (uuid 562dc233-c968-4444-afca-73e9d37b3249) + ) + (junction (at 270.51 135.89) (diameter 0) (color 0 0 0 0) + (uuid 571ffd5f-052e-4f6b-91e2-8c51620d7662) + ) + (junction (at 270.51 256.54) (diameter 0) (color 0 0 0 0) + (uuid 6a13ef02-3e14-469f-9f43-ee5d75f83cea) + ) + (junction (at 273.05 264.16) (diameter 0) (color 0 0 0 0) + (uuid 6faa6cf6-3ead-4cb9-bb03-d08107060f96) + ) + (junction (at 273.05 143.51) (diameter 0) (color 0 0 0 0) + (uuid 9d4263ee-8966-49d5-8391-b9c66983a953) + ) + (junction (at 270.51 295.91) (diameter 0) (color 0 0 0 0) + (uuid a8e75c46-bef9-433d-8c10-42f182ec3ce9) + ) + (junction (at 273.05 303.53) (diameter 0) (color 0 0 0 0) + (uuid bf1321bd-37f3-4619-be0c-c153cfb39a48) + ) + (junction (at 273.05 223.52) (diameter 0) (color 0 0 0 0) + (uuid d61fa56d-9629-490c-a9cc-b8d3929eafd4) + ) + + (no_connect (at 314.96 256.54) (uuid 16d23eff-5062-4771-9fdd-459ed55c620b)) + (no_connect (at 300.99 152.4) (uuid 1d18d4c6-c8b7-4d92-bf4d-e4ab8fe72b7a)) + (no_connect (at 314.96 135.89) (uuid 3810d144-4509-445a-8498-1e80817512ee)) + (no_connect (at 314.96 295.91) (uuid 566043f7-8a14-4e78-ab6e-a604941c5b81)) + (no_connect (at 300.99 232.41) (uuid 65f8a4c3-cd19-4a3e-a374-877a456ac6b8)) + (no_connect (at 314.96 215.9) (uuid 67fbd90f-d0ed-44f2-b629-08b9fa739dff)) + (no_connect (at 300.99 271.78) (uuid 9cfd0778-3ed0-44b8-a15a-ae8ed592ce9a)) + (no_connect (at 300.99 191.77) (uuid ab7a7fb4-4cff-4142-a94a-7187e933f356)) + (no_connect (at 300.99 111.76) (uuid be016fbf-b726-4c41-9a17-e1ee406639eb)) + (no_connect (at 314.96 176.53) (uuid bf193e51-6ef4-49e9-b580-bdf3e503017b)) + (no_connect (at 314.96 336.55) (uuid d6cbf627-59a1-4920-87f3-f6ec625f0312)) + (no_connect (at 300.99 312.42) (uuid ea101a6d-091d-4401-8642-068a1cf6588c)) + + (wire (pts (xy 270.51 256.54) (xy 287.02 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0cd55d90-da2c-4eb8-806e-4b2f492c3865) + ) + (wire (pts (xy 368.3 160.02) (xy 355.6 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16d6e2d6-def1-4177-922d-ece3df908ddd) + ) + (wire (pts (xy 217.17 119.38) (xy 287.02 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1815d154-4667-4d79-9a91-ebd1d8e8a51c) + ) + (wire (pts (xy 270.51 97.79) (xy 270.51 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18e254b0-252a-4fb9-997e-e7d636f6b944) + ) + (wire (pts (xy 369.57 320.04) (xy 355.6 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a8327c1-5a30-4874-a47a-f9c2e05c7359) + ) + (wire (pts (xy 273.05 143.51) (xy 273.05 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21dcb793-17f9-4e01-a557-3d04f8097a40) + ) + (wire (pts (xy 314.96 240.03) (xy 326.39 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 237c05a7-c1e6-42f0-a3de-b68f9ed47a6a) + ) + (wire (pts (xy 247.65 80.01) (xy 273.05 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 257444ef-c6d4-46d5-8b37-a6325d4549b5) + ) + (wire (pts (xy 273.05 264.16) (xy 273.05 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27cf5328-5dcc-40e3-915f-2865989f118f) + ) + (wire (pts (xy 314.96 119.38) (xy 326.39 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bbb1873-3cc3-4142-b8a8-936dec678d56) + ) + (wire (pts (xy 273.05 344.17) (xy 300.99 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a7cb8be-5403-4193-874b-b84aaca7a550) + ) + (wire (pts (xy 314.96 160.02) (xy 326.39 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ca6fdca-7d05-4b94-81dc-e38e3a2bfbed) + ) + (wire (pts (xy 273.05 303.53) (xy 273.05 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f9641fe-70dd-43d2-9526-83f6bc6ac87b) + ) + (wire (pts (xy 369.57 279.4) (xy 355.6 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42b69c38-fb97-44b8-8b15-eafc19bbb7a3) + ) + (wire (pts (xy 273.05 184.15) (xy 300.99 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45e40e3f-63dc-4070-bf0f-f97f410ff12b) + ) + (wire (pts (xy 314.96 199.39) (xy 326.39 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45ef4ba1-7530-45fe-852f-0cdda97c8420) + ) + (wire (pts (xy 215.9 199.39) (xy 287.02 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fe22fe6-7821-46a1-9400-3c64ddb59069) + ) + (wire (pts (xy 226.06 279.4) (xy 287.02 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54c56c46-86c8-4206-96c2-0849c4dab596) + ) + (wire (pts (xy 212.09 97.79) (xy 228.6 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b1318fe-b000-4e17-bf46-d6bc4731162b) + ) + (wire (pts (xy 368.3 199.39) (xy 355.6 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d587a6b-b6e3-4f1f-acf4-ed85e77ea670) + ) + (wire (pts (xy 273.05 143.51) (xy 300.99 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5eb93296-39d4-4222-b4ff-720b17e8b46b) + ) + (wire (pts (xy 273.05 223.52) (xy 273.05 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62349ef8-d986-484d-8d15-d73588f1aac0) + ) + (wire (pts (xy 287.02 295.91) (xy 270.51 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65ef668e-eb20-4689-b0ca-72e73163deac) + ) + (wire (pts (xy 273.05 303.53) (xy 300.99 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67ff233a-2fa1-4ebf-9a02-a49340664498) + ) + (wire (pts (xy 210.82 240.03) (xy 287.02 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7baaaca7-db3a-42f1-b92f-872859aa838b) + ) + (wire (pts (xy 270.51 215.9) (xy 270.51 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 810e7481-64c8-4011-a669-a3b1d3f585b6) + ) + (wire (pts (xy 270.51 256.54) (xy 270.51 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88655a41-75f5-4fd7-ba76-776295d49e1c) + ) + (wire (pts (xy 314.96 320.04) (xy 326.39 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b57a9a6-20d0-4da7-b24e-6322e0266f66) + ) + (wire (pts (xy 257.81 97.79) (xy 270.51 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e1dbfd1-d46b-48bb-9d01-15b503328c0f) + ) + (wire (pts (xy 270.51 176.53) (xy 287.02 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f4bdf9e-dd47-4b62-937b-ddaf68f9a6a2) + ) + (wire (pts (xy 270.51 135.89) (xy 270.51 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a39e410a-5e0c-48d8-87fa-c4f60b0d5633) + ) + (wire (pts (xy 270.51 336.55) (xy 287.02 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5186846-ad39-4cf7-8cfc-28e0cd047c94) + ) + (wire (pts (xy 273.05 264.16) (xy 300.99 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afd5c140-fdbb-4e4f-a8fb-56280ab28cd5) + ) + (wire (pts (xy 367.03 119.38) (xy 355.6 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b08c3652-07a7-4fe7-8044-8cf5fe65c6f9) + ) + (wire (pts (xy 215.9 160.02) (xy 287.02 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1b72ced-32c0-4ed8-936e-d5c47e09fad1) + ) + (wire (pts (xy 369.57 240.03) (xy 355.6 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9d0a74a-8d43-4ea5-8af2-74b66e78d3e3) + ) + (wire (pts (xy 287.02 215.9) (xy 270.51 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb645d97-947e-4e3e-b449-daf3a3d89a83) + ) + (wire (pts (xy 270.51 295.91) (xy 270.51 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be7092f6-e3b0-44e9-b6b5-5ce2b8cc3dc2) + ) + (wire (pts (xy 270.51 135.89) (xy 287.02 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c68398e4-791d-4fc3-9ca4-9886bbbfdd19) + ) + (wire (pts (xy 273.05 223.52) (xy 300.99 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8add081-9fe2-45d9-aa1a-2c66bd8ebf27) + ) + (wire (pts (xy 273.05 80.01) (xy 273.05 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c974305a-07af-46f7-8ae7-2a048816f095) + ) + (wire (pts (xy 212.09 80.01) (xy 232.41 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da35d289-1555-4e83-a8d7-b24d427d95d2) + ) + (wire (pts (xy 314.96 279.4) (xy 326.39 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df8276a9-6d17-48e1-b01d-5a2b95982f7c) + ) + (wire (pts (xy 227.33 320.04) (xy 287.02 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e831e12c-e2c0-46b9-a9c9-79230dee680c) + ) + (wire (pts (xy 273.05 184.15) (xy 273.05 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7cd85ab-368d-4079-b3e8-dd163af3e578) + ) + (wire (pts (xy 270.51 176.53) (xy 270.51 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f98e213c-6e6f-458e-b13f-3d12b9481d42) + ) + + (label "CLK" (at 264.16 97.79 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0e4468af-a6b3-49c6-8620-9ec644a835fb) + ) + (label "Q5" (at 363.22 279.4 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5de98c8a-5af8-482f-8747-79ef9198d3d8) + ) + (label "Q1" (at 363.22 119.38 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 913a2f93-19c3-452a-b83f-503eaf374cc3) + ) + (label "Q3" (at 363.22 199.39 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b68e36c4-0cd6-4bb2-8436-f5a31287821f) + ) + (label "CLR" (at 264.16 80.01 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c2446a2a-4821-4885-8252-1c2ce1136fe3) + ) + (label "Q6" (at 363.22 320.04 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c3d9ae7a-2ec9-401a-b3be-077081c21025) + ) + (label "Q2" (at 363.22 160.02 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid cc3107c2-aab9-418d-b90c-2420f6a3da29) + ) + (label "Q4" (at 363.22 240.03 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e4687b4b-fe25-4d1e-a9e7-118c7743b6c8) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 300.99 208.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04afe41d-3abe-40c4-87ed-e41548b56a4f) + (property "Reference" "U6" (id 0) (at 303.0094 191.77 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 303.0094 195.58 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 300.99 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 300.99 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e5b8c4e7-a2e5-49e9-85f7-1923821e9ec4)) + (pin "2" (uuid f5549aeb-bfa2-41d8-a857-0c6bfce8f112)) + (pin "3" (uuid 00f46b00-9d63-4a63-852e-21c818752818)) + (pin "4" (uuid 1cbfa3df-9ca4-4b03-9407-935f5cc0af20)) + (pin "5" (uuid fff7b362-3ac9-471a-b792-59a21032a6de)) + (pin "6" (uuid 4ff31ac6-6b8d-4a18-b4f2-9c0a0c522eff)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 339.09 320.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04f5ec72-7f78-4a8a-b87e-b4400dc21552) + (property "Reference" "U15" (id 0) (at 340.995 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 340.995 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 339.09 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c1acfff4-0a86-4f28-8c3a-42c61e101cd6)) + (pin "2" (uuid d4db8dd4-58e1-4dd0-a1c9-69f01124c011)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 339.09 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 069a0ecf-c88b-493a-b0ce-3522c5036f13) + (property "Reference" "U10" (id 0) (at 340.995 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 340.995 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 339.09 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 00cee1f9-5da1-43bb-99ac-3ebaf273c40f)) + (pin "2" (uuid 075953e1-9d72-4045-a10b-0430de8ec49d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 205.74 80.01 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 09adf8ab-ed63-4690-91fe-9073e1d7a862) + (property "Reference" "U1" (id 0) (at 206.375 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 206.375 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 205.74 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97ed0ca3-9175-472c-91cb-81d7baae39b8)) + (pin "2" (uuid c59e0e9a-40b7-455d-8416-528f9657e0f7)) + (pin "3" (uuid 7423703b-d95a-4a44-bc3d-1a47b447e20a)) + (pin "4" (uuid 531004bb-35c2-4f6c-8b41-b747708a30e5)) + (pin "5" (uuid 056b4b06-700a-4700-a5b1-ee29a951c3bd)) + (pin "6" (uuid 0926d82e-c62b-4288-8c18-744b12fd4ff5)) + (pin "7" (uuid c51e0d73-e8a7-4e70-b3be-224edadf51a3)) + (pin "8" (uuid 84035c25-9132-41dd-a3ae-e174f106b471)) + (pin "9" (uuid db10296d-8e88-47a6-8158-cc82d8fc0e02)) + (pin "10" (uuid 2fc5a6fe-62d6-447a-9140-ac738ee5f056)) + (pin "11" (uuid a22028bc-340e-44f0-9a89-48c4003c518d)) + (pin "12" (uuid d8b46b0d-0b9e-443c-a53d-264b1aaf3b6d)) + (pin "13" (uuid 87fd8a71-dbd5-4cce-9a15-aefe68f5564f)) + (pin "14" (uuid 7e92cbd1-99c8-4781-ad00-75ce0a2ab20c)) + (pin "15" (uuid 7f0ea804-3219-4ed2-a8a5-f7f6c9fabd32)) + (pin "16" (uuid 613ba5a2-0013-41fb-89fd-c83a4b364a88)) + (pin "17" (uuid 3e138dbf-9202-4d0e-a154-122e2e84a5d0)) + (pin "18" (uuid b9f5b0aa-1b9d-414a-8924-b4d76b325351)) + (pin "19" (uuid 5203d98a-e40d-411e-8002-976fbdff86b4)) + (pin "20" (uuid 2597d1f7-a5b6-455b-98db-7269336863df)) + (pin "21" (uuid cec91037-8af9-4698-9b34-91c1ddc7f7fc)) + (pin "22" (uuid d165c375-681f-40dc-a815-63d244abd977)) + (pin "23" (uuid 0f354670-1918-4e9d-9959-ea6cab2794e2)) + (pin "24" (uuid 164e60b3-716f-434a-b5f6-897a6c21ee7a)) + (pin "25" (uuid d7480644-9e5c-476f-bc84-226dc964c2cb)) + (pin "26" (uuid 15fa872f-a318-42dc-adcd-4e587aa2bbb0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 204.47 240.03 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0d089315-ad07-4b73-a91d-0a51083fb72c) + (property "Reference" "U1" (id 0) (at 205.105 234.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 205.105 237.49 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 204.47 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 39bdc775-3efc-4ec4-a8b4-0d655c405432)) + (pin "2" (uuid 0ec034cc-6a84-4cd8-bb60-a82938f0ce8a)) + (pin "3" (uuid 827dc1f3-f2c5-4606-8d18-6ebb1b53ca4f)) + (pin "4" (uuid 9c8c183c-b063-4a06-b3ac-cb1be9888802)) + (pin "5" (uuid d6e80de0-1e9f-4e0c-97cd-592ecd4142bb)) + (pin "6" (uuid 4510a518-77ca-4982-a66f-fbc788dc6278)) + (pin "7" (uuid dbbf9b85-e9e4-4cdd-8221-4c427cc9611a)) + (pin "8" (uuid e9a21dae-b58e-4831-b0e2-3e095ea49704)) + (pin "9" (uuid eaecd5ea-04c9-48e5-8a02-06a611a52163)) + (pin "10" (uuid 2ac26184-3d1f-4d4f-9ada-66eebacc755a)) + (pin "11" (uuid b1c45687-1e01-449a-ac79-3c01d54fdb09)) + (pin "12" (uuid 3289a4ea-bfd9-4a7b-88ff-650a6dad3644)) + (pin "13" (uuid dc4f1513-7627-4141-8fc5-64646c97779f)) + (pin "14" (uuid a9f20b8a-1e58-4809-b6f7-ee66ec9ef387)) + (pin "15" (uuid 68570de2-5dbf-4b76-8e4f-986da0ab3eca)) + (pin "16" (uuid a697c8d0-a55a-4328-a057-45c46bc205de)) + (pin "17" (uuid 7f80a038-6f23-4efd-82ed-0bf9dd074c4e)) + (pin "18" (uuid 1afdbcbd-95a4-403c-a978-849d867d9476)) + (pin "19" (uuid da115663-f756-49f8-825a-89679f8f7efe)) + (pin "20" (uuid 2834423c-6092-4f92-b2eb-a12081313642)) + (pin "21" (uuid 0b13120b-d2d3-4134-b877-2bcf26de4153)) + (pin "22" (uuid 4171c494-9731-40aa-a86f-152fd921bcd7)) + (pin "23" (uuid c767e8c2-c349-4d74-9c8e-d79cb070c369)) + (pin "24" (uuid d3324621-c5ab-41aa-acfa-a56148c294a1)) + (pin "25" (uuid 390414f7-32b7-482c-9edc-36923397030b)) + (pin "26" (uuid 28631ee9-517f-4234-9d03-cee4d260c715)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 374.65 199.39 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 191591ee-5bed-472e-8ed3-31e6b27755c9) + (property "Reference" "U1" (id 0) (at 378.46 198.755 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 378.46 201.295 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 374.65 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1ebdfdb5-cab2-48e0-bde0-a73a8a4415c2)) + (pin "2" (uuid 81e9c88f-677b-4571-9c33-765d6e0886d4)) + (pin "3" (uuid 21695845-85e6-4d46-9e46-00cc076c11fc)) + (pin "4" (uuid c95c14b5-b676-4be3-8216-b208e625e5af)) + (pin "5" (uuid 8fbcfba2-9fc8-4908-8fdd-993ead301410)) + (pin "6" (uuid bc1d633c-59db-48b4-b37c-88dd86204880)) + (pin "7" (uuid 2d92dfed-1d36-4b25-95ab-fff060dd3164)) + (pin "8" (uuid d00708bc-1e16-4966-823c-64787499f7be)) + (pin "9" (uuid 59f005be-7948-4081-8eeb-dd5ce6a4799b)) + (pin "10" (uuid 002a44d1-6eeb-4d69-afb4-4c8580e61af0)) + (pin "11" (uuid 3c464d72-d591-450e-b60c-11b7962b64f7)) + (pin "12" (uuid 1ef739ac-26c2-4ca6-9e92-039def886edd)) + (pin "13" (uuid 4e0f1c4a-956b-41c0-ab7f-341c26a25a76)) + (pin "14" (uuid c016571c-7f08-4218-bfc5-57818480db93)) + (pin "15" (uuid 0328fe5a-49b3-44cc-9b95-2abf1d07f997)) + (pin "16" (uuid 92d4ef23-b610-466b-9e8d-6a0277780d68)) + (pin "17" (uuid 1c846860-554d-4c2e-b439-150d91e0a7a5)) + (pin "18" (uuid c1a6d5fa-11a5-4a91-a4d9-be6c4c8b450d)) + (pin "19" (uuid ee308a26-38cc-484e-9399-dfce3664b57b)) + (pin "20" (uuid bd1d9d72-39ef-4bc6-a094-cf6740cda420)) + (pin "21" (uuid 12ffe353-0323-4adf-a26c-b3368b5553b3)) + (pin "22" (uuid d9826d83-25a3-4d19-938e-b860d3ed438e)) + (pin "23" (uuid 89ecb159-9abd-413b-ad4c-ac741beb6c37)) + (pin "24" (uuid b1edadbf-b9fc-4d40-bf84-3892ec9d3caa)) + (pin "25" (uuid bd2e2642-82aa-4b50-9c8b-ba815544c9aa)) + (pin "26" (uuid 9a465006-c6d2-4e11-9fc9-60dd5690fdc2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 160.02 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 239f347b-e487-422f-9647-38881def0415) + (property "Reference" "U1" (id 0) (at 210.185 154.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 210.185 157.48 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 209.55 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5fd97e27-4de8-4b45-bb70-6aa2ec405c9a)) + (pin "2" (uuid 4d6f9820-b229-4073-9331-216162cc5439)) + (pin "3" (uuid fe1039ca-d34e-4729-bd0d-4ab305be71c2)) + (pin "4" (uuid f4fe0637-5187-4729-bff4-412b4162d372)) + (pin "5" (uuid 37b1ba52-fb4d-48bd-89bc-be2edd29c00c)) + (pin "6" (uuid 855e614d-1fd8-426e-8a06-9046b5cbc89b)) + (pin "7" (uuid 53a2ce5f-6055-4dbe-a67c-328aeff4aaf4)) + (pin "8" (uuid db2319e7-d614-41ea-b975-456c0434e4a9)) + (pin "9" (uuid f641d74a-f3bb-47c6-a149-f1fb20a370cb)) + (pin "10" (uuid ba654501-21c5-4cba-8752-078b704fd3f5)) + (pin "11" (uuid 23bdbbb1-870c-4969-9f12-0ca4cd928984)) + (pin "12" (uuid e603dc09-c995-4e07-b088-b4a47aa22b1a)) + (pin "13" (uuid 9f77363a-6320-40bf-8f3d-1910d76186e1)) + (pin "14" (uuid 265ac2b7-1ec9-48b7-9bfc-c72720b1dd8a)) + (pin "15" (uuid f740a104-3faf-45d5-9ab0-a55ab5fff304)) + (pin "16" (uuid a26c6be3-281a-432f-ac4c-c04e3556702d)) + (pin "17" (uuid 787a3438-1e69-48d6-9e97-38aefabe6b14)) + (pin "18" (uuid 69cb137f-06c8-4d17-90a0-312ebc2f4ace)) + (pin "19" (uuid 4b575ec1-121c-4ebd-8cc6-2fd6836049f7)) + (pin "20" (uuid ff6c4108-b069-4e22-9373-fe7658f88749)) + (pin "21" (uuid 8adbd5fc-f6d8-42a3-bdfd-98c99605c706)) + (pin "22" (uuid 0887a43c-568a-4f36-afda-feb1d221eb8f)) + (pin "23" (uuid 6b87b82b-8e18-40f8-bcd4-0091a29b1633)) + (pin "24" (uuid f4747f8d-f55b-40ad-9049-ca2df740f9e2)) + (pin "25" (uuid f01f1dd5-ea30-4778-9b1f-6eba51e88b7f)) + (pin "26" (uuid b8529815-963a-4d01-b497-697e382f4de2)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 300.99 248.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2def0cc9-0fe9-4fd9-ba9d-2014ec5c8cf9) + (property "Reference" "U7" (id 0) (at 303.0094 232.41 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 303.0094 236.22 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 300.99 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 300.99 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 413d5da0-26fb-468a-affa-2e6c120bd193)) + (pin "2" (uuid 6d4c34c7-1ae8-4bd3-a0fe-af2f81273a1b)) + (pin "3" (uuid 583bd5cf-e2c8-42b2-b654-542cb192bf50)) + (pin "4" (uuid e580de0d-471e-4894-95e6-6b0a57889074)) + (pin "5" (uuid 56bb7c80-62b7-4676-90de-b65607723218)) + (pin "6" (uuid 2596f46e-d8be-4ee2-91a4-20dbc06db87a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 375.92 279.4 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 47bf1cd8-2a23-472c-b9c4-c6db530a6fba) + (property "Reference" "U1" (id 0) (at 379.73 278.765 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 379.73 281.305 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 375.92 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 18772d07-57e8-4f2f-acda-17f30be2c454)) + (pin "2" (uuid b39beb56-a4cd-421b-a6bc-fa4608b03a8d)) + (pin "3" (uuid df0bf4dc-bf0a-413e-ba6a-5cec6dd85a83)) + (pin "4" (uuid 3e4b682f-e7fe-4a6a-81a0-507a18ced1c6)) + (pin "5" (uuid 786fce1c-a425-464d-a8cd-52ff19c3010f)) + (pin "6" (uuid 2056ace2-c1a5-4b92-9e7c-58c85f7080fb)) + (pin "7" (uuid 22b5607c-9186-4cfc-b84d-3b6b0870e69f)) + (pin "8" (uuid 1aeb29d3-fc4e-45ad-9d4c-d36c67aa889a)) + (pin "9" (uuid e4a25fb7-5872-42b5-a2a1-43de4c077341)) + (pin "10" (uuid 4dbad178-88ff-4948-a3e5-a5c038484b7f)) + (pin "11" (uuid 9578221e-4d1c-4fe9-9f84-87c317b37c00)) + (pin "12" (uuid d4cdc631-5e63-4142-808a-218fcfc90b9f)) + (pin "13" (uuid 6d59bbf9-be65-4307-b25b-a973c5bb4119)) + (pin "14" (uuid dec0f7b4-a116-41ec-b091-4403f0a0b473)) + (pin "15" (uuid 6848cbbd-6511-4c7f-8f41-cde285d25cd0)) + (pin "16" (uuid 4a67f3fc-f1cc-4bf6-83bb-e58c3554e45c)) + (pin "17" (uuid 1c84f6af-bbe0-4750-ac3b-88c2eed34b3c)) + (pin "18" (uuid 938da534-1ece-475a-b05d-00c0df872211)) + (pin "19" (uuid 193ca8e0-d06a-4eff-baff-a87a29d6eb13)) + (pin "20" (uuid 86c7e3b7-95a4-4ae4-af3a-6d0d72f7652e)) + (pin "21" (uuid dc45662a-2e04-4a7d-b65e-2e63466d4b6b)) + (pin "22" (uuid c25a9d97-2103-4f9f-aac6-9f240ba83c4e)) + (pin "23" (uuid 8ee0f755-0ffd-4f41-afab-b40b68c89168)) + (pin "24" (uuid f7a8ae18-58fc-4436-940b-719a4604e7d2)) + (pin "25" (uuid 6f7eb6a6-9ccc-4f25-b26a-cb2a90565788)) + (pin "26" (uuid 351d4115-7b52-4481-b5b4-e15c001e4e2c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 199.39 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48ad4024-21b6-41d3-b673-62306d1319d9) + (property "Reference" "U1" (id 0) (at 210.185 194.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 210.185 196.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 209.55 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 080f0abf-9273-4714-8faa-b9cf46a490dd)) + (pin "2" (uuid 34844f60-28b9-4eec-ba5f-e57e6b393dce)) + (pin "3" (uuid 56ef5f76-cb99-44cf-ad3d-5381e3d029d6)) + (pin "4" (uuid f33ab0b9-93b4-4131-a152-0f3a26519810)) + (pin "5" (uuid ce544a8a-90f9-403d-b978-56464bc29070)) + (pin "6" (uuid 214f3ab6-cf58-4756-aa7d-0e70b326f38f)) + (pin "7" (uuid 9169528c-42b3-4da9-be69-6e758828646a)) + (pin "8" (uuid 79f1b5e9-5f7d-4449-b16e-504d80429975)) + (pin "9" (uuid f23a95b3-18ef-4b2c-a762-9f968925ab8a)) + (pin "10" (uuid 1bba6321-83e3-447d-8c53-268fefdf5e9b)) + (pin "11" (uuid 665f05d9-a110-4212-b5e6-c41b084e5099)) + (pin "12" (uuid 72ff567b-7dda-4185-99e0-c1a259544ae7)) + (pin "13" (uuid 8e52b89b-6b87-401c-bee1-60a279473696)) + (pin "14" (uuid 71fe97d0-f4ad-484d-8630-15d3a9790fa9)) + (pin "15" (uuid 5eac4873-4921-4ce4-a732-93c4ef60287f)) + (pin "16" (uuid 22c9060c-8f5c-49c7-bd50-3e223981988a)) + (pin "17" (uuid 2db7034c-9b63-4bf9-9948-e181e71b0972)) + (pin "18" (uuid f0b5248d-dbf7-4fa8-99a2-f87099fe46f8)) + (pin "19" (uuid 155eaddf-4eed-406c-a107-d91f682740aa)) + (pin "20" (uuid eeae5393-c495-4b1b-b091-10ca3e69a666)) + (pin "21" (uuid 958f7db0-9b02-4399-bac7-2ed8215530bf)) + (pin "22" (uuid 7f9c1ed3-5653-4257-9ecc-0b9419351f21)) + (pin "23" (uuid c0bd6f24-9e8a-41c6-8c89-6b2dbd6b20df)) + (pin "24" (uuid 3084fa7f-263c-41f5-8ee5-23e5a9413fc3)) + (pin "25" (uuid ec9172c2-7c12-488a-bfe2-9a2f6c96ec13)) + (pin "26" (uuid 0b85237e-bc73-4e93-aae7-22679151b66d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 373.38 119.38 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53974ecf-c4c2-49f6-8a02-0daf152e42fc) + (property "Reference" "U1" (id 0) (at 377.19 118.745 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 377.19 121.285 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 373.38 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 373.38 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 830f6ae6-d29c-4318-bbd7-ee79031ff4b0)) + (pin "2" (uuid 88949e97-6c1a-487f-a2b2-427c51159352)) + (pin "3" (uuid bb1a5626-a5ff-4d0c-8c1e-7ef6e5444edb)) + (pin "4" (uuid 745beb0c-0b33-4225-935a-bb279eca528b)) + (pin "5" (uuid 8f8b6c23-015f-465e-bd17-c4e426b0b99e)) + (pin "6" (uuid 75356598-5132-429c-81cb-3cefdcf82192)) + (pin "7" (uuid 54bd9082-bfe9-4345-9eb4-3e97d154fa73)) + (pin "8" (uuid b553f64e-3949-44bd-a7b0-9aa4f5dbac37)) + (pin "9" (uuid bb81981c-4242-43fb-80fe-9aca020e68ea)) + (pin "10" (uuid cfb2b951-d74b-42fb-a320-48c5471f7434)) + (pin "11" (uuid bed895a0-a77e-4b36-bcae-b66b53f87feb)) + (pin "12" (uuid 54b45373-8203-4a67-a7d4-b23d42fe0cdd)) + (pin "13" (uuid 93d404c4-fe92-4b7f-ba56-7a26e25ed751)) + (pin "14" (uuid f37f1b6f-1a37-4680-9acb-95967400846c)) + (pin "15" (uuid 072a6bd7-c79d-4cc5-864f-7047b8e2a453)) + (pin "16" (uuid 4a40ce6f-1c1c-4fc7-8904-9190e919926b)) + (pin "17" (uuid 83fb1083-8c14-4d2e-92a9-ffeb1cd6e84b)) + (pin "18" (uuid 18521044-4e37-4970-b13f-5f17ff68edd6)) + (pin "19" (uuid 728dba6e-9a9a-49db-b6cd-edf7c498cb64)) + (pin "20" (uuid 4bec26f1-a9ed-4c85-bf20-0827f65b5014)) + (pin "21" (uuid c16d6726-c916-444f-99c3-8637bbdceffc)) + (pin "22" (uuid 42a79aca-1dde-4f2a-8365-a36e905f7d33)) + (pin "23" (uuid 8da0b767-a520-4d9d-8c6d-38a9d84acae3)) + (pin "24" (uuid 272b4e5c-72f8-4f3b-a281-559752c47290)) + (pin "25" (uuid b02047cc-6906-4933-bf1f-d5d305a2b91c)) + (pin "26" (uuid 7ad57361-bdc7-44cd-92c5-c55fe53cddf7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 205.74 97.79 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 594c9a11-e64b-4db1-ba54-10d2ff51b064) + (property "Reference" "U1" (id 0) (at 206.375 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 206.375 95.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 205.74 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0a23956d-057d-44bc-a373-a56766de3dde)) + (pin "2" (uuid 4764f86c-8f91-405b-9da6-56b037545a5c)) + (pin "3" (uuid b6f40efe-e1d5-4723-9464-e9d73c92818e)) + (pin "4" (uuid e2658f4f-6cf6-4d88-8d74-d432b0c872eb)) + (pin "5" (uuid fb342922-a089-4f0b-8ed7-ef06a08b19f3)) + (pin "6" (uuid 3c1d307e-0700-44ee-9e1f-93fc4bff7e76)) + (pin "7" (uuid f6a68cb1-ce32-471d-91cd-65d2974b8693)) + (pin "8" (uuid 40080316-d34f-4b12-a0d1-7d9b353104a3)) + (pin "9" (uuid 7658b31f-79ca-48a3-9daa-8a14113425a4)) + (pin "10" (uuid 390dd5e9-f95b-46f2-aa91-51ac5bfb1ef2)) + (pin "11" (uuid e2e22947-8a6b-4717-b54c-c52275dfcbee)) + (pin "12" (uuid 92840214-d2bf-4619-ab0e-6b1fec0fb0ef)) + (pin "13" (uuid 8a43a4b4-2566-4dfb-9357-b4caf7b1c7d8)) + (pin "14" (uuid 804b3d35-dbf7-4f9d-93e3-44df4decd8a9)) + (pin "15" (uuid b66d54d6-565c-4fc8-8f7c-6e23e4b94074)) + (pin "16" (uuid 30a61c2d-65f9-4e3f-9060-ebf37df39694)) + (pin "17" (uuid f10cac22-d436-4915-8245-5e5ebfb5609b)) + (pin "18" (uuid ba6860cf-c4ae-48ed-9a09-97960a01678e)) + (pin "19" (uuid d693ab45-9bf5-4f47-995d-2a8d1221bf1b)) + (pin "20" (uuid e972b0db-35f3-4e13-bb7e-9143f395a99a)) + (pin "21" (uuid 6e627e9f-13a3-492e-81f2-a70c00cf8a8f)) + (pin "22" (uuid 71812308-20b3-4749-9309-4bca2e1b01ff)) + (pin "23" (uuid 069f2dcd-b522-4169-aedd-479d9ddaa7ef)) + (pin "24" (uuid 2cdfbd13-9c32-45ed-a823-1c3ecbe14915)) + (pin "25" (uuid 7f361b4c-0cdf-4282-9286-b0ae5268a818)) + (pin "26" (uuid dcb550a8-3c14-4c4b-8b4d-cc42a2ea59a8)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 241.3 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5aeb50ed-05e4-4712-92a9-21927e9756d0) + (property "Reference" "U3" (id 0) (at 243.205 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 243.205 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 241.3 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 38fa1f93-b353-4c38-bc4b-7cc844c5b73d)) + (pin "2" (uuid 95e7d8dc-5c33-459d-846b-414e27e36c4c)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 300.99 288.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ffbb8f5-6b25-49b2-9948-b9742d7029a1) + (property "Reference" "U8" (id 0) (at 303.0094 271.78 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 303.0094 275.59 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 300.99 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 300.99 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 226331da-d985-41e3-9043-d5888b63df2b)) + (pin "2" (uuid 12990ea2-11e4-438a-a526-5507deb75a87)) + (pin "3" (uuid 5c475527-fe9a-4623-b334-aa7a444fd940)) + (pin "4" (uuid fa987391-ac8d-43ed-abf5-799c4aa3825e)) + (pin "5" (uuid 8ba91a00-1fa3-43ab-926c-d2c3ff933023)) + (pin "6" (uuid 06f17142-e5c7-4fe1-8313-419e493fc146)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 339.09 199.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6bef8c38-843f-4997-871a-1fa840628150) + (property "Reference" "U12" (id 0) (at 340.995 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 340.995 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 339.09 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2a021839-30ae-4378-9f31-e2abb27f7307)) + (pin "2" (uuid def6a18f-b539-4ed3-bca0-3c3bdb03648c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 375.92 320.04 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8110a1f8-538a-4cbb-b734-a36379cf27a7) + (property "Reference" "U1" (id 0) (at 379.73 319.405 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 379.73 321.945 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 375.92 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 757d9ecd-429a-4e06-8d3c-e5135c6709a9)) + (pin "2" (uuid 95e35ab9-cf06-4c2f-8c5d-80f4ee637717)) + (pin "3" (uuid efebc879-4036-4937-afcc-0f1b7ff7ff65)) + (pin "4" (uuid 116e9753-b42e-4ec2-b9ef-117e47e8221f)) + (pin "5" (uuid 5984051e-adca-4776-ad5a-a0159acc9834)) + (pin "6" (uuid 6ba58ebf-7435-45e6-a437-9b26adcebf42)) + (pin "7" (uuid 94c5069a-4c2a-49dc-8c5c-5788a786b108)) + (pin "8" (uuid d4f4c0c0-bd54-4749-9e42-105d17477aa2)) + (pin "9" (uuid 5eb0bc16-ea80-4c42-8e58-57f1182f2c87)) + (pin "10" (uuid 8d8232f7-e187-4209-9491-bd424d3df506)) + (pin "11" (uuid 484ddd43-2fc0-4232-9396-47c4ca96d024)) + (pin "12" (uuid 3b744101-f2de-4b00-bb03-abc3945effda)) + (pin "13" (uuid 5987b635-12eb-4164-9814-8937bb4a026f)) + (pin "14" (uuid 5e124138-f536-4bcd-aa2d-3bcdf3d74b23)) + (pin "15" (uuid 013d50aa-c7fa-459d-9c10-a8fe6a778ad1)) + (pin "16" (uuid 3664fac8-2aad-4bd8-ac61-a064dfdb3b88)) + (pin "17" (uuid 4fb2256f-b654-4095-b2bf-59dcdc352b6c)) + (pin "18" (uuid 88d795a1-591c-4ca4-bd2c-4b62657a1c5a)) + (pin "19" (uuid ecd1d8a0-b5c6-4a78-90e8-ad5bb3f4a0c7)) + (pin "20" (uuid 412eba22-4110-45fa-b933-4657b510e6e3)) + (pin "21" (uuid dcc2f356-31fc-4c51-b9cc-ae2dfe6fc7a9)) + (pin "22" (uuid 6cc5cca6-67d4-4931-9e9c-2649af2d7add)) + (pin "23" (uuid 58c71ec3-ae7e-4852-9c3b-f68028302ee0)) + (pin "24" (uuid 13660719-84ff-4631-b0f8-0876759fdd5d)) + (pin "25" (uuid d2e180d7-bed0-4b31-a7c7-615bf19482fe)) + (pin "26" (uuid 7847b6f5-15d1-4e61-b709-bf1d80b044e4)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 300.99 328.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8512eac5-628d-48cb-9091-c950c8ab0dc5) + (property "Reference" "U9" (id 0) (at 303.0094 312.42 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 303.0094 316.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 300.99 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 300.99 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7852271f-618f-4354-a14c-1719fa61bd61)) + (pin "2" (uuid 21802c14-0b16-4cf5-b812-7119a85d01f0)) + (pin "3" (uuid 144ad16a-5d90-48e3-88af-3486a9b32210)) + (pin "4" (uuid 6711e98a-0119-49b3-ba9c-18d704090f8e)) + (pin "5" (uuid 309ffa94-d004-4645-98ab-9324eef14002)) + (pin "6" (uuid af11ec61-669e-4000-a056-5fef481718bb)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 300.99 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8e544e1b-f572-4865-a5d1-1bced1380eda) + (property "Reference" "U4" (id 0) (at 303.0094 111.76 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 303.0094 115.57 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 300.99 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 300.99 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 80ac4d0c-c7e3-4566-b59a-63205bfda915)) + (pin "2" (uuid 68cc0089-fa98-4347-bf71-276e148ad6f2)) + (pin "3" (uuid d3b2f15d-eb4f-433f-b24e-7fa14f22a170)) + (pin "4" (uuid 1f291000-7dd8-4f32-8f80-f41e171a2cd0)) + (pin "5" (uuid 2d445b82-3c66-4e1c-a49c-07f1fbd382b0)) + (pin "6" (uuid ba9ec1e8-5a79-48b0-8a15-889d59eefb13)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 240.03 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f9514ff-09ea-4699-8440-2304cfb41a71) + (property "Reference" "U2" (id 0) (at 240.03 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 240.03 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 241.3 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 65d532a5-49a0-4929-90b9-772940bf8871)) + (pin "2" (uuid 43377d11-8464-4c75-9e58-b9fc31025978)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 375.92 240.03 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a0862aa0-2d17-491f-87c1-f8271df648b7) + (property "Reference" "U1" (id 0) (at 379.73 239.395 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 379.73 241.935 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 375.92 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ec0fe738-556f-488a-a856-aae56dd6bc30)) + (pin "2" (uuid f982189c-2104-4203-8ebb-d359aceea08e)) + (pin "3" (uuid 32bf39df-b9b6-432c-949d-b3917be8924b)) + (pin "4" (uuid e9d93202-2e39-4423-b87f-9435f2ef3fdf)) + (pin "5" (uuid 1bb8608b-f8eb-4213-9f9c-a15883503ebd)) + (pin "6" (uuid 235e4595-6f51-46c7-a3e6-51bf6b8839d9)) + (pin "7" (uuid 53fc503c-ae48-42c6-bc33-ec9d6c7039bb)) + (pin "8" (uuid fc198a7b-f8bc-4e1f-bf77-009f6d7bffc3)) + (pin "9" (uuid 7b2c5d5b-3f40-475e-a212-40e1a90afe8e)) + (pin "10" (uuid 7d0e8a13-9e3a-49e3-8c6e-69c66107bf46)) + (pin "11" (uuid fa1a57b5-97c1-4b96-be41-73074682e3e8)) + (pin "12" (uuid 843a5270-fda6-4c1e-81c1-9c44199e5b19)) + (pin "13" (uuid 8a7962a5-47bb-47ce-99ea-f0264886178f)) + (pin "14" (uuid 415bb354-f8c8-4225-9ed2-5fdbc5563736)) + (pin "15" (uuid 85ea1601-4517-4c8c-b6b4-e6458aafa034)) + (pin "16" (uuid 795a6147-f868-4cf7-85c2-ee16668c8b45)) + (pin "17" (uuid 1e93df6a-3ac8-41e1-abb0-094324713b7d)) + (pin "18" (uuid 1afaa750-2107-4f9a-93fa-90b217e7a437)) + (pin "19" (uuid 6a95b11e-cb12-4aa2-a2e8-a07aa270a0f2)) + (pin "20" (uuid 3323b00a-1ef2-42bb-8b7e-a90129ee3f54)) + (pin "21" (uuid 0961813f-ab13-43ed-9dac-374c2c6e06af)) + (pin "22" (uuid 16c2aa54-acdc-413e-b596-0f254026ef4e)) + (pin "23" (uuid ff79c012-88d9-40c8-aa82-bf2ce0d0f7d3)) + (pin "24" (uuid a1eee7ae-66f4-4e06-98b8-55825570e77c)) + (pin "25" (uuid 32ef1912-fbdb-4e62-94a5-6d707b4e19b8)) + (pin "26" (uuid a3824324-072a-426f-98ad-08bb74017afa)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 339.09 279.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a2ad52f2-8794-47c2-9a44-803d75affd8b) + (property "Reference" "U14" (id 0) (at 340.995 269.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 340.995 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 339.09 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 80ae3ca0-5c56-45f4-9620-e20ac52d2b79)) + (pin "2" (uuid 38daaf22-ec9b-4e1b-bc4e-85aa1628540f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 210.82 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ae74a5e2-a282-48bb-80fb-56ad11c8fca6) + (property "Reference" "U1" (id 0) (at 211.455 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 211.455 116.84 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 210.82 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b4f29eed-fa17-4293-9d47-f618d3667a02)) + (pin "2" (uuid 136ae040-bff0-4659-8d9c-72facf2e405f)) + (pin "3" (uuid 98e1927c-3db7-47fd-9365-923cb9a3b83c)) + (pin "4" (uuid eb5c57c9-a9cd-426e-a690-8519aea3350b)) + (pin "5" (uuid cef497af-c361-44e7-8951-e56107a98c0a)) + (pin "6" (uuid 913262b8-e5dd-497c-a2b3-3c78fef4ba78)) + (pin "7" (uuid f22c5849-6186-4240-b1aa-12bdb955bf5d)) + (pin "8" (uuid 56c260b9-be52-4932-b214-3ae6e2c82f9e)) + (pin "9" (uuid 72f8f72b-5c58-4ffa-8ee7-9bb9208d5956)) + (pin "10" (uuid b77b45d7-3777-4f0a-b46c-c4dc8b81910e)) + (pin "11" (uuid 1fd55547-bf10-45e2-a552-c652ec9ad11c)) + (pin "12" (uuid 19a6d8d9-5a9a-441e-bf9c-3cf23d3223b3)) + (pin "13" (uuid 895407ea-26bc-4273-bcc8-f77d58b89697)) + (pin "14" (uuid ce04be06-e36e-4fdf-88a7-1e6ee5a2e008)) + (pin "15" (uuid 226eb3f0-4c9c-4ccc-917e-b83d82c4ea43)) + (pin "16" (uuid a16e4c63-d38e-4616-af4f-eee5fd3b962d)) + (pin "17" (uuid 4563e61e-641e-43bf-bd91-2cb2b1866647)) + (pin "18" (uuid 0a259ccd-193c-46d7-91c3-18af5bb45a29)) + (pin "19" (uuid 132a763c-fd15-4002-b98f-6bb5e8dcba71)) + (pin "20" (uuid b9f5b11c-8adc-4b26-b331-67a312288201)) + (pin "21" (uuid 62926215-e769-4034-986d-775118bcb2b6)) + (pin "22" (uuid f6ff329d-1b91-4828-a913-e89fcba6076a)) + (pin "23" (uuid 92130765-37b2-48dd-8ae2-2eb2f99f688a)) + (pin "24" (uuid b9e790fc-c8e2-4864-ae65-2e26d28fcb4a)) + (pin "25" (uuid 56a81fde-8fa1-48eb-8110-5e812405e97e)) + (pin "26" (uuid 576bb6ea-b4a4-4879-acee-0f608b821e69)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 220.98 320.04 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aff65b41-96d0-461e-b5c7-626d4bd641cd) + (property "Reference" "U1" (id 0) (at 221.615 314.96 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 221.615 317.5 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 220.98 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 38cf0385-0521-41bd-9a32-8be4c550ff50)) + (pin "2" (uuid 09a548b7-ecdf-44e2-8c75-10ad52d5f246)) + (pin "3" (uuid bc987ad4-2063-45c3-9833-9039d505b74b)) + (pin "4" (uuid cfcdb0f1-6d0c-4710-8256-978a8acb1755)) + (pin "5" (uuid 75f48a1f-c1bc-44ef-9e33-0d1f24b155a8)) + (pin "6" (uuid 0d90fe0f-c85d-4f3f-8355-b8ae321afb26)) + (pin "7" (uuid 13cf0be3-1dd0-4519-8911-451928a3f885)) + (pin "8" (uuid e65289f7-be09-4b4e-90d6-296d3f5fa675)) + (pin "9" (uuid 8c8439d4-8f12-4767-a6f8-4a3021cabff8)) + (pin "10" (uuid 57524a72-96bc-4977-a8e0-ddcae49de349)) + (pin "11" (uuid 6e5bfbaf-0f53-4acb-8ce4-539c6346be34)) + (pin "12" (uuid f1d676c5-557d-4900-8dba-b34a076e5647)) + (pin "13" (uuid 6a11fc01-53ba-4d5d-a30d-8e12e5366778)) + (pin "14" (uuid d9ae906d-cbc0-47ae-809f-d38123fd27f7)) + (pin "15" (uuid 9db12982-7366-40c4-b703-0ab2af725dfd)) + (pin "16" (uuid 3ca5d1eb-5d55-4fd6-89f7-452ee4a28cd7)) + (pin "17" (uuid 3e5769d0-e77f-4756-9bb9-d50deec775e8)) + (pin "18" (uuid fdd461aa-afbb-4348-9ae6-948d9b081516)) + (pin "19" (uuid 12bdfd5a-f5a6-4d3f-8bce-b24e26794db7)) + (pin "20" (uuid 197793e4-3113-4b7e-8e92-a8e471ff4b92)) + (pin "21" (uuid 90872e72-3db7-4857-b25f-67c964dddea1)) + (pin "22" (uuid 311d7052-9be7-4b1d-8e0a-43d4012eeb6c)) + (pin "23" (uuid f3dc9b27-e985-4ad1-90b9-5d700f81ea17)) + (pin "24" (uuid 761369b3-256e-4806-b149-e346de5f578c)) + (pin "25" (uuid 1d6a1714-5433-4ae2-a5e7-364d37219905)) + (pin "26" (uuid 4dfc594b-bc6f-4e81-81ea-1aca48ae6707)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 300.99 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b902c0c2-7e0e-4379-9b9f-2f6a78767790) + (property "Reference" "U5" (id 0) (at 303.0094 152.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 303.0094 156.21 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 300.99 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 300.99 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f87f4235-f03a-41a8-9db9-2195f8006aec)) + (pin "2" (uuid f608acd0-7078-4f0e-97d4-db4e8869d6f6)) + (pin "3" (uuid a24c5938-7cd5-47c8-97d5-35fc23c36cd6)) + (pin "4" (uuid 49684eae-b939-4d1f-b91d-aefd42b8601e)) + (pin "5" (uuid 13c6e9b3-b453-4acd-b03a-7c79d6e767a3)) + (pin "6" (uuid 0b06b5cc-4d5b-4a57-af92-3abbd8344846)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 374.65 160.02 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb2932e1-21c1-4a7c-8b26-d82f7a937b37) + (property "Reference" "U1" (id 0) (at 378.46 159.385 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 378.46 161.925 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 374.65 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87f2e733-882a-409e-ad50-7b9778c0c2a3)) + (pin "2" (uuid e6e2b90f-ac3e-452f-baee-c3aedc285166)) + (pin "3" (uuid 715d325e-c2e8-438b-af6e-997b067d0352)) + (pin "4" (uuid 68de1595-2797-461b-8e08-0932e533155e)) + (pin "5" (uuid c7ed2c75-619c-421e-97ee-8d3e09623120)) + (pin "6" (uuid b7dedfad-95e2-4afc-b577-cad2410f3605)) + (pin "7" (uuid 604ab814-9a83-4891-896a-00f8cc696009)) + (pin "8" (uuid 3a68a68e-a61a-4a08-8bb2-e73a3238e192)) + (pin "9" (uuid 1359dec7-a3f5-4228-a4ee-41ed5a52d36a)) + (pin "10" (uuid 2df37bab-075a-40e2-896e-e31558effdb1)) + (pin "11" (uuid 3530f44d-8904-4b79-b4c6-53ab80984235)) + (pin "12" (uuid b3696ee5-a67a-4e2c-bbee-c93da527eebe)) + (pin "13" (uuid d56c5182-468e-4f1a-832c-8fe71a9c70bd)) + (pin "14" (uuid 0429f01f-0eac-47d5-9ef4-cc55dd79d7b7)) + (pin "15" (uuid 54f798bd-cb45-4ee1-82fe-11026cb9db34)) + (pin "16" (uuid 57c423a1-708b-4452-bead-77ff71d3df08)) + (pin "17" (uuid 683b8db7-e6cc-4c84-94e6-564de7a5b333)) + (pin "18" (uuid 8c36168a-dd6f-4244-82e3-2b5fbcd7b04b)) + (pin "19" (uuid 5bc91c02-1615-4951-a76b-9a3c5afb3e16)) + (pin "20" (uuid da74660a-6e6e-4edf-b079-fb54a3df42e6)) + (pin "21" (uuid 702004b6-7dac-41cf-8bcd-6e3160915fb9)) + (pin "22" (uuid 06ed1c4a-e2bd-474f-9829-12158bd12043)) + (pin "23" (uuid 87a1bf94-9849-4d90-a9ca-f72867445cc3)) + (pin "24" (uuid 7d368caf-f7a5-4b32-a91f-b24b0b1dca05)) + (pin "25" (uuid d56a6670-827d-4a4e-9825-dbba5db0c44e)) + (pin "26" (uuid f1a577b6-661d-478e-bd85-eb6de3160ddb)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 339.09 240.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c30a3759-ad88-4901-98e2-c335327b7d85) + (property "Reference" "U13" (id 0) (at 340.995 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 340.995 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 339.09 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 42860ec2-0de9-4b85-ba6d-a03eba391785)) + (pin "2" (uuid 8acea317-e52c-4860-95d4-70650018aa77)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 339.09 160.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e4c9c8db-76a3-4102-84a9-976a465c2bd4) + (property "Reference" "U11" (id 0) (at 340.995 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 340.995 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 339.09 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 55208348-8473-4854-ae5f-6fb02f5f1edd)) + (pin "2" (uuid bd66191e-789c-47be-bf96-b81806520e51)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 219.71 279.4 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eb10cbc8-e60e-41f0-9194-a71dab539a2b) + (property "Reference" "U1" (id 0) (at 220.345 274.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 220.345 276.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 219.71 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 219.71 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e7b96660-8123-4304-bf3b-cff4d9d0475a)) + (pin "2" (uuid fa07bbfc-1427-402d-bab1-524cbee62cb3)) + (pin "3" (uuid 76ac648d-9683-454d-95bb-bdc09f42c159)) + (pin "4" (uuid 18935d1e-3ea3-4fbb-a805-023a48ef1b5d)) + (pin "5" (uuid 2786789c-db2a-4b94-a37a-ac38790f80f8)) + (pin "6" (uuid 2c4fd6f9-fbe4-4374-b890-40baffea5ca0)) + (pin "7" (uuid dcfc8f94-397c-4065-9bdc-81cfb2d23667)) + (pin "8" (uuid 8e409859-3a21-4c4c-91b5-50c7e4095372)) + (pin "9" (uuid 6cd7d96b-2514-4cd8-87fd-829e3e1f375a)) + (pin "10" (uuid 8afcbf32-30c9-4d5b-9d46-3f9dc00b5831)) + (pin "11" (uuid 19d58f22-1d04-4ae1-849f-dd65c42760eb)) + (pin "12" (uuid 9d83b677-5562-4147-8bd2-7b7bf82f5fee)) + (pin "13" (uuid 8f48e088-32fd-47d1-be27-fabf12d1b104)) + (pin "14" (uuid caa2fe83-6e92-41d4-a680-85db2f8bf745)) + (pin "15" (uuid a266ea10-c2ff-4432-a63f-bd49c9e79571)) + (pin "16" (uuid 6e039ba7-760b-4626-b21a-e5c59f4d5651)) + (pin "17" (uuid 82262ab8-067a-4500-abe3-0d2d6f1a47c0)) + (pin "18" (uuid 95dcb744-c057-4fab-9597-fb882c39b56c)) + (pin "19" (uuid be03368b-5b54-4bf7-809c-e379fa61d9f3)) + (pin "20" (uuid fb096233-97e2-4d3b-a510-f09058def763)) + (pin "21" (uuid f192af8d-fabf-42fa-8f66-7ef65c2d2b53)) + (pin "22" (uuid 92003786-b473-4e30-a641-156dd89c5524)) + (pin "23" (uuid 4b33d894-5b20-46d1-9a09-a8da0f4d35b7)) + (pin "24" (uuid 7b0f07e3-fd4f-4d3b-83ed-c5216e399ceb)) + (pin "25" (uuid f422bc81-63ff-4368-bee8-ff6d3d1ba557)) + (pin "26" (uuid 69e842c8-4038-4aa2-92e7-ebe69b090ebb)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/ae74a5e2-a282-48bb-80fb-56ad11c8fca6" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/239f347b-e487-422f-9647-38881def0415" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/48ad4024-21b6-41d3-b673-62306d1319d9" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/0d089315-ad07-4b73-a91d-0a51083fb72c" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/eb10cbc8-e60e-41f0-9194-a71dab539a2b" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/aff65b41-96d0-461e-b5c7-626d4bd641cd" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/594c9a11-e64b-4db1-ba54-10d2ff51b064" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/09adf8ab-ed63-4690-91fe-9073e1d7a862" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/8110a1f8-538a-4cbb-b734-a36379cf27a7" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/47bf1cd8-2a23-472c-b9c4-c6db530a6fba" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/a0862aa0-2d17-491f-87c1-f8271df648b7" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/191591ee-5bed-472e-8ed3-31e6b27755c9" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/bb2932e1-21c1-4a7c-8b26-d82f7a937b37" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/53974ecf-c4c2-49f6-8a02-0daf152e42fc" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/8f9514ff-09ea-4699-8440-2304cfb41a71" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5aeb50ed-05e4-4712-92a9-21927e9756d0" + (reference "U3") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/8e544e1b-f572-4865-a5d1-1bced1380eda" + (reference "U4") (unit 1) (value "d_dff") (footprint "") + ) + (path "/b902c0c2-7e0e-4379-9b9f-2f6a78767790" + (reference "U5") (unit 1) (value "d_dff") (footprint "") + ) + (path "/04afe41d-3abe-40c4-87ed-e41548b56a4f" + (reference "U6") (unit 1) (value "d_dff") (footprint "") + ) + (path "/2def0cc9-0fe9-4fd9-ba9d-2014ec5c8cf9" + (reference "U7") (unit 1) (value "d_dff") (footprint "") + ) + (path "/5ffbb8f5-6b25-49b2-9948-b9742d7029a1" + (reference "U8") (unit 1) (value "d_dff") (footprint "") + ) + (path "/8512eac5-628d-48cb-9091-c950c8ab0dc5" + (reference "U9") (unit 1) (value "d_dff") (footprint "") + ) + (path "/069a0ecf-c88b-493a-b0ce-3522c5036f13" + (reference "U10") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/e4c9c8db-76a3-4102-84a9-976a465c2bd4" + (reference "U11") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/6bef8c38-843f-4997-871a-1fa840628150" + (reference "U12") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/c30a3759-ad88-4901-98e2-c335327b7d85" + (reference "U13") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/a2ad52f2-8794-47c2-9a44-803d75affd8b" + (reference "U14") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/04f5ec72-7f78-4a8a-b87e-b4400dc21552" + (reference "U15") (unit 1) (value "d_buffer") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.sub b/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.sub new file mode 100644 index 000000000..a420effbb --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174.sub @@ -0,0 +1,62 @@ +* Subcircuit IC_CD74AC174 +.subckt IC_CD74AC174 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ /q6 /q5 /q4 /q3 /q2 /q1 +.title kicad schematic +* u13 net-_u13-pad1_ /q4 d_buffer +* u6 net-_u1-pad3_ /clk unconnected-_u6-pad3_ /clr net-_u12-pad1_ unconnected-_u6-pad6_ d_dff +* u15 net-_u15-pad1_ /q6 d_buffer +* u12 net-_u12-pad1_ /q3 d_buffer +* u14 net-_u14-pad1_ /q5 d_buffer +* u9 net-_u1-pad6_ /clk unconnected-_u9-pad3_ /clr net-_u15-pad1_ unconnected-_u9-pad6_ d_dff +* u8 net-_u1-pad5_ /clk unconnected-_u8-pad3_ /clr net-_u14-pad1_ unconnected-_u8-pad6_ d_dff +* u7 net-_u1-pad4_ /clk unconnected-_u7-pad3_ /clr net-_u13-pad1_ unconnected-_u7-pad6_ d_dff +* u3 net-_u1-pad7_ /clk d_buffer +* u10 net-_u10-pad1_ /q1 d_buffer +* u11 net-_u11-pad1_ /q2 d_buffer +* u4 net-_u1-pad1_ /clk unconnected-_u4-pad3_ /clr net-_u10-pad1_ unconnected-_u4-pad6_ d_dff +* u5 net-_u1-pad2_ /clk unconnected-_u5-pad3_ /clr net-_u11-pad1_ unconnected-_u5-pad6_ d_dff +* u2 net-_u1-pad8_ /clr d_inverter +a1 net-_u13-pad1_ /q4 u13 +a2 net-_u1-pad3_ /clk unconnected-_u6-pad3_ /clr net-_u12-pad1_ unconnected-_u6-pad6_ u6 +a3 net-_u15-pad1_ /q6 u15 +a4 net-_u12-pad1_ /q3 u12 +a5 net-_u14-pad1_ /q5 u14 +a6 net-_u1-pad6_ /clk unconnected-_u9-pad3_ /clr net-_u15-pad1_ unconnected-_u9-pad6_ u9 +a7 net-_u1-pad5_ /clk unconnected-_u8-pad3_ /clr net-_u14-pad1_ unconnected-_u8-pad6_ u8 +a8 net-_u1-pad4_ /clk unconnected-_u7-pad3_ /clr net-_u13-pad1_ unconnected-_u7-pad6_ u7 +a9 net-_u1-pad7_ /clk u3 +a10 net-_u10-pad1_ /q1 u10 +a11 net-_u11-pad1_ /q2 u11 +a12 net-_u1-pad1_ /clk unconnected-_u4-pad3_ /clr net-_u10-pad1_ unconnected-_u4-pad6_ u4 +a13 net-_u1-pad2_ /clk unconnected-_u5-pad3_ /clr net-_u11-pad1_ unconnected-_u5-pad6_ u5 +a14 net-_u1-pad8_ /clr u2 +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u13 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u6 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u15 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u12 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u14 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u9 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u8 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u7 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u10 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u11 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u4 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u5 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends IC_CD74AC174 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174_Previous_Values.xml b/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174_Previous_Values.xml new file mode 100644 index 000000000..e7de15a27 --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74AC174/IC_CD74AC174_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_bufferd_dffd_bufferd_bufferd_bufferd_dffd_dffd_dffd_bufferd_bufferd_bufferd_dffd_dffd_inverter \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_CD74AC174/README_IC_CD74AC174.md b/library/SubcircuitLibrary/IC_CD74AC174/README_IC_CD74AC174.md new file mode 100644 index 000000000..eefa0cb36 --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74AC174/README_IC_CD74AC174.md @@ -0,0 +1,26 @@ +# IC_CD74AC174 Hex D-Type Flip-Flop + +IC_CD74AC174 is a hex D-type flip-flop featuring six edge-triggered storage elements with a common clock and master reset. Advanced CMOS technology provides high-speed performance with low power consumption. + +## Usage/Examples + +- Data storage registers +- Shift register systems +- Digital counters +- Timing control circuits +- Embedded systems + +## Documentation + +To know the details of IC_CD74AC174 please go through the documentation: [CD74AC174 Datasheet](https://www.ti.com/lit/ds/symlink/cd74ac174.pdf) + +## Comments/Notes + +Please note this is a positive-edge-triggered CMOS flip-flop IC. The subcircuit uses d_dff elements with a shared clock and active-low reset. Data at each D input is transferred to the corresponding Q output on the rising clock edge. + +## Contributor + +Name: Santhosh C +Email: santhoshc.vlsi2024@citchennai.net +Year: 2026 +Position: FOSSEE eSim Intern 2026 diff --git a/library/SubcircuitLibrary/IC_CD74AC174/analysis b/library/SubcircuitLibrary/IC_CD74AC174/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74AC174/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.cir b/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.cir new file mode 100644 index 000000000..1cb35880d --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.cir @@ -0,0 +1,30 @@ +.title KiCad schematic +U18 Net-_U17-Pad5_ Net-_U12-Pad2_ Net-_U18-Pad3_ d_tristate +U21 Net-_U20-Pad5_ Net-_U12-Pad2_ Net-_U21-Pad3_ d_tristate +U19 Net-_U18-Pad3_ Net-_U1-Pad14_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ PORT +U22 Net-_U21-Pad3_ Net-_U1-Pad13_ d_inverter +U17 Net-_U1-Pad5_ Net-_U11-Pad2_ unconnected-_U17-Pad3_ unconnected-_U17-Pad4_ Net-_U17-Pad5_ unconnected-_U17-Pad6_ d_dlatch +U20 Net-_U1-Pad6_ Net-_U11-Pad2_ unconnected-_U20-Pad3_ unconnected-_U20-Pad4_ Net-_U20-Pad5_ unconnected-_U20-Pad6_ d_dlatch +U26 Net-_U1-Pad8_ Net-_U11-Pad2_ unconnected-_U26-Pad3_ unconnected-_U26-Pad4_ Net-_U26-Pad5_ unconnected-_U26-Pad6_ d_dlatch +U25 Net-_U24-Pad3_ Net-_U1-Pad12_ d_inverter +U24 Net-_U23-Pad5_ Net-_U12-Pad2_ Net-_U24-Pad3_ d_tristate +U23 Net-_U1-Pad7_ Net-_U11-Pad2_ unconnected-_U23-Pad3_ unconnected-_U23-Pad4_ Net-_U23-Pad5_ unconnected-_U23-Pad6_ d_dlatch +U28 Net-_U27-Pad3_ Net-_U1-Pad11_ d_inverter +U27 Net-_U26-Pad5_ Net-_U12-Pad2_ Net-_U27-Pad3_ d_tristate +U6 Net-_U5-Pad5_ Net-_U12-Pad2_ Net-_U6-Pad3_ d_tristate +U5 Net-_U1-Pad1_ Net-_U11-Pad2_ unconnected-_U5-Pad3_ unconnected-_U5-Pad4_ Net-_U5-Pad5_ unconnected-_U5-Pad6_ d_dlatch +U4 Net-_U3-Pad2_ Net-_U12-Pad2_ d_buffer +U2 Net-_U1-Pad9_ Net-_U11-Pad2_ d_inverter +U3 Net-_U1-Pad10_ Net-_U3-Pad2_ d_inverter +U15 Net-_U14-Pad5_ Net-_U12-Pad2_ Net-_U15-Pad3_ d_tristate +U11 Net-_U1-Pad3_ Net-_U11-Pad2_ unconnected-_U11-Pad3_ unconnected-_U11-Pad4_ Net-_U11-Pad5_ unconnected-_U11-Pad6_ d_dlatch +U14 Net-_U1-Pad4_ Net-_U11-Pad2_ unconnected-_U14-Pad3_ unconnected-_U14-Pad4_ Net-_U14-Pad5_ unconnected-_U14-Pad6_ d_dlatch +U16 Net-_U15-Pad3_ Net-_U1-Pad15_ d_inverter +U8 Net-_U1-Pad2_ Net-_U11-Pad2_ unconnected-_U8-Pad3_ unconnected-_U8-Pad4_ Net-_U8-Pad5_ unconnected-_U8-Pad6_ d_dlatch +U12 Net-_U11-Pad5_ Net-_U12-Pad2_ Net-_U12-Pad3_ d_tristate +U13 Net-_U12-Pad3_ Net-_U1-Pad16_ d_inverter +U7 Net-_U6-Pad3_ Net-_U1-Pad18_ d_inverter +U9 Net-_U8-Pad5_ Net-_U12-Pad2_ Net-_U10-Pad1_ d_tristate +U10 Net-_U10-Pad1_ Net-_U1-Pad17_ d_inverter +.end diff --git a/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.cir.out b/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.cir.out new file mode 100644 index 000000000..63f052fa8 --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.cir.out @@ -0,0 +1,120 @@ +.title kicad schematic + +* u18 net-_u17-pad5_ net-_u12-pad2_ net-_u18-pad3_ d_tristate +* u21 net-_u20-pad5_ net-_u12-pad2_ net-_u21-pad3_ d_tristate +* u19 net-_u18-pad3_ net-_u1-pad14_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ port +* u22 net-_u21-pad3_ net-_u1-pad13_ d_inverter +* u17 net-_u1-pad5_ net-_u11-pad2_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_dlatch +* u20 net-_u1-pad6_ net-_u11-pad2_ unconnected-_u20-pad3_ unconnected-_u20-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ d_dlatch +* u26 net-_u1-pad8_ net-_u11-pad2_ unconnected-_u26-pad3_ unconnected-_u26-pad4_ net-_u26-pad5_ unconnected-_u26-pad6_ d_dlatch +* u25 net-_u24-pad3_ net-_u1-pad12_ d_inverter +* u24 net-_u23-pad5_ net-_u12-pad2_ net-_u24-pad3_ d_tristate +* u23 net-_u1-pad7_ net-_u11-pad2_ unconnected-_u23-pad3_ unconnected-_u23-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ d_dlatch +* u28 net-_u27-pad3_ net-_u1-pad11_ d_inverter +* u27 net-_u26-pad5_ net-_u12-pad2_ net-_u27-pad3_ d_tristate +* u6 net-_u5-pad5_ net-_u12-pad2_ net-_u6-pad3_ d_tristate +* u5 net-_u1-pad1_ net-_u11-pad2_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ d_dlatch +* u4 net-_u3-pad2_ net-_u12-pad2_ d_buffer +* u2 net-_u1-pad9_ net-_u11-pad2_ d_inverter +* u3 net-_u1-pad10_ net-_u3-pad2_ d_inverter +* u15 net-_u14-pad5_ net-_u12-pad2_ net-_u15-pad3_ d_tristate +* u11 net-_u1-pad3_ net-_u11-pad2_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ d_dlatch +* u14 net-_u1-pad4_ net-_u11-pad2_ unconnected-_u14-pad3_ unconnected-_u14-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_dlatch +* u16 net-_u15-pad3_ net-_u1-pad15_ d_inverter +* u8 net-_u1-pad2_ net-_u11-pad2_ unconnected-_u8-pad3_ unconnected-_u8-pad4_ net-_u8-pad5_ unconnected-_u8-pad6_ d_dlatch +* u12 net-_u11-pad5_ net-_u12-pad2_ net-_u12-pad3_ d_tristate +* u13 net-_u12-pad3_ net-_u1-pad16_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad18_ d_inverter +* u9 net-_u8-pad5_ net-_u12-pad2_ net-_u10-pad1_ d_tristate +* u10 net-_u10-pad1_ net-_u1-pad17_ d_inverter +a1 net-_u17-pad5_ net-_u12-pad2_ net-_u18-pad3_ u18 +a2 net-_u20-pad5_ net-_u12-pad2_ net-_u21-pad3_ u21 +a3 net-_u18-pad3_ net-_u1-pad14_ u19 +a4 net-_u21-pad3_ net-_u1-pad13_ u22 +a5 net-_u1-pad5_ net-_u11-pad2_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a6 net-_u1-pad6_ net-_u11-pad2_ unconnected-_u20-pad3_ unconnected-_u20-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ u20 +a7 net-_u1-pad8_ net-_u11-pad2_ unconnected-_u26-pad3_ unconnected-_u26-pad4_ net-_u26-pad5_ unconnected-_u26-pad6_ u26 +a8 net-_u24-pad3_ net-_u1-pad12_ u25 +a9 net-_u23-pad5_ net-_u12-pad2_ net-_u24-pad3_ u24 +a10 net-_u1-pad7_ net-_u11-pad2_ unconnected-_u23-pad3_ unconnected-_u23-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ u23 +a11 net-_u27-pad3_ net-_u1-pad11_ u28 +a12 net-_u26-pad5_ net-_u12-pad2_ net-_u27-pad3_ u27 +a13 net-_u5-pad5_ net-_u12-pad2_ net-_u6-pad3_ u6 +a14 net-_u1-pad1_ net-_u11-pad2_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ u5 +a15 net-_u3-pad2_ net-_u12-pad2_ u4 +a16 net-_u1-pad9_ net-_u11-pad2_ u2 +a17 net-_u1-pad10_ net-_u3-pad2_ u3 +a18 net-_u14-pad5_ net-_u12-pad2_ net-_u15-pad3_ u15 +a19 net-_u1-pad3_ net-_u11-pad2_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ u11 +a20 net-_u1-pad4_ net-_u11-pad2_ unconnected-_u14-pad3_ unconnected-_u14-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a21 net-_u15-pad3_ net-_u1-pad15_ u16 +a22 net-_u1-pad2_ net-_u11-pad2_ unconnected-_u8-pad3_ unconnected-_u8-pad4_ net-_u8-pad5_ unconnected-_u8-pad6_ u8 +a23 net-_u11-pad5_ net-_u12-pad2_ net-_u12-pad3_ u12 +a24 net-_u12-pad3_ net-_u1-pad16_ u13 +a25 net-_u6-pad3_ net-_u1-pad18_ u7 +a26 net-_u8-pad5_ net-_u12-pad2_ net-_u10-pad1_ u9 +a27 net-_u10-pad1_ net-_u1-pad17_ u10 +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u18 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u21 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u22 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u17 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u20 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u26 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u24 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u23 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u28 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u27 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u5 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u15 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u11 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u14 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u8 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u12 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u9 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.kicad_sch b/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.kicad_sch new file mode 100644 index 000000000..70e0184dd --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.kicad_sch @@ -0,0 +1,2269 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid d161802c-cc1c-4a97-b77c-0a2feb58bb22) + + (paper "A1") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dlatch" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dlatch" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dlatch_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dlatch_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -7.62 0) (length 5.08) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_tristate" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -6.35 6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at -5.08 11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_tristate_0_1" + (polyline + (pts + (xy -10.16 13.97) + (xy -10.16 3.81) + (xy 8.89 8.89) + (xy -10.16 13.97) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_tristate_1_1" + (pin input line (at -15.24 8.89 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -1.27 1.27 90) (length 4.9022) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 435.61 302.26) (diameter 0) (color 0 0 0 0) + (uuid 007302be-c510-479d-9c16-bbedd1a23197) + ) + (junction (at 283.21 288.29) (diameter 0) (color 0 0 0 0) + (uuid 162be502-93f5-4c18-b0ff-48a4460bd6cd) + ) + (junction (at 347.98 302.26) (diameter 0) (color 0 0 0 0) + (uuid 1e2c1207-1af5-4875-8fdd-844aee232f57) + ) + (junction (at 414.02 288.29) (diameter 0) (color 0 0 0 0) + (uuid 22532878-7637-4511-851e-87e71132bbe7) + ) + (junction (at 257.81 302.26) (diameter 0) (color 0 0 0 0) + (uuid 245d5188-e384-49f0-a9c1-1f60971a2703) + ) + (junction (at 389.89 302.26) (diameter 0) (color 0 0 0 0) + (uuid 270c7928-e101-4723-9b68-8e77af779f26) + ) + (junction (at 326.39 288.29) (diameter 0) (color 0 0 0 0) + (uuid 2e158efe-8f20-40b0-9f72-c3eb513006be) + ) + (junction (at 300.99 302.26) (diameter 0) (color 0 0 0 0) + (uuid 38235f17-ced3-4c3a-8b92-e183098b5815) + ) + (junction (at 462.28 288.29) (diameter 0) (color 0 0 0 0) + (uuid 478da6db-1854-41e8-b195-6485a2154fef) + ) + (junction (at 481.33 302.26) (diameter 0) (color 0 0 0 0) + (uuid 66421caf-1801-4ec7-904f-a04b8b8305c0) + ) + (junction (at 236.22 288.29) (diameter 0) (color 0 0 0 0) + (uuid 96c10f32-b0bc-4fd2-9df5-f16ea3f601bf) + ) + (junction (at 506.73 288.29) (diameter 0) (color 0 0 0 0) + (uuid c09c2e58-b592-454b-befa-8ac864931824) + ) + (junction (at 370.84 288.29) (diameter 0) (color 0 0 0 0) + (uuid d0606d6b-de94-45a4-a3db-9f781300bf6a) + ) + (junction (at 527.05 302.26) (diameter 0) (color 0 0 0 0) + (uuid f16b787a-a6b3-4191-9a9b-4dc0cf7ba274) + ) + + (no_connect (at 568.96 242.57) (uuid 0f7e7651-e50f-4753-91bc-00403ee60796)) + (no_connect (at 525.78 242.57) (uuid 15f2ac55-46df-4b43-9c00-04d3c2f80483)) + (no_connect (at 256.54 276.86) (uuid 1723abda-ddd4-4db1-866d-59f79befb364)) + (no_connect (at 525.78 274.32) (uuid 3a5ad7b7-339d-4415-a3e5-9792cbde8236)) + (no_connect (at 449.58 267.97) (uuid 3b365b4f-04c8-46f1-98de-00319d16f3f7)) + (no_connect (at 582.93 266.7) (uuid 3bdcb2db-d1f5-4353-82d3-f4e706a1af81)) + (no_connect (at 481.33 243.84) (uuid 45dc8fe2-b727-4ae8-b7ff-dbc524c9e55a)) + (no_connect (at 389.89 243.84) (uuid 57d0d231-a596-493f-9013-8184ef6f965b)) + (no_connect (at 435.61 275.59) (uuid 66efcb37-e4a5-492e-8ffd-9672f6f24d98)) + (no_connect (at 435.61 243.84) (uuid 67f504ef-0aa3-4571-bbe5-6d53f1544037)) + (no_connect (at 403.86 267.97) (uuid 7f18b481-b8fb-4d3d-81cc-fac629513765)) + (no_connect (at 568.96 274.32) (uuid a610198a-29bb-4e33-8f3a-f7c5d1d34474)) + (no_connect (at 495.3 267.97) (uuid c57db365-6574-49c9-81bd-e71354da17f8)) + (no_connect (at 539.75 266.7) (uuid c587c23c-f9e6-41f0-82ab-240b5b4e2586)) + (no_connect (at 270.51 269.24) (uuid c89fe243-b2d1-4e81-a76a-075811f0e570)) + (no_connect (at 256.54 245.11) (uuid ce8be570-7c27-455a-ae74-1393e57e83c3)) + (no_connect (at 346.71 243.84) (uuid d3cbda46-7196-4efe-9312-7471ba8ae89a)) + (no_connect (at 481.33 275.59) (uuid d6a1e24c-e603-4415-bbe8-242c0656cb95)) + (no_connect (at 302.26 245.11) (uuid d6a55eb3-5ccb-4191-ae5c-786d69a70759)) + (no_connect (at 360.68 267.97) (uuid de9f03bd-dfe2-4b32-9f81-413744ac6050)) + (no_connect (at 316.23 269.24) (uuid e40198b9-3ad5-462d-8cee-7c0fd7f666f6)) + (no_connect (at 389.89 275.59) (uuid ee47c857-b103-47c2-8ab7-e39971c0eef0)) + (no_connect (at 346.71 275.59) (uuid fd4f1fc4-462c-4c91-bd2f-b06125c8bb50)) + (no_connect (at 302.26 276.86) (uuid fd8b36fe-7f1b-4449-a0da-e1337f62daf4)) + + (wire (pts (xy 273.05 300.99) (xy 273.05 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 036696d8-1fee-48b6-98d7-e7541a00a149) + ) + (wire (pts (xy 490.22 284.48) (xy 481.33 284.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06aaa36b-1266-4dd6-b77c-04c0bc32bbbc) + ) + (wire (pts (xy 236.22 288.29) (xy 283.21 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09fde081-455a-4f30-ae7f-e4650d9fb153) + ) + (wire (pts (xy 254 302.26) (xy 257.81 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a834840-1f83-40fe-84ae-4df8ee3fed79) + ) + (wire (pts (xy 497.84 299.72) (xy 497.84 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b6cbfe6-3507-4406-bd41-5a6e8202ff34) + ) + (wire (pts (xy 370.84 288.29) (xy 414.02 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b8b6b8b-632c-415d-b733-4eb4dc38e863) + ) + (wire (pts (xy 551.18 266.7) (xy 554.99 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12de9926-db0c-482d-8f0b-578607b7177a) + ) + (wire (pts (xy 582.93 250.19) (xy 585.47 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b11995f-b0f6-4241-8154-02204320a554) + ) + (wire (pts (xy 568.96 283.21) (xy 577.85 283.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bfdd4aa-3dc9-4eba-937d-93d71c678dc3) + ) + (wire (pts (xy 506.73 288.29) (xy 551.18 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c1984b0-8cee-4b13-8dc1-6d34fd05df16) + ) + (wire (pts (xy 370.84 267.97) (xy 370.84 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20b7a8ad-f282-4b5d-a202-e735da526af5) + ) + (wire (pts (xy 363.22 316.23) (xy 363.22 325.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23f1fbb5-b54d-4f0a-98a8-7682b8f773ac) + ) + (wire (pts (xy 506.73 266.7) (xy 506.73 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24433ecc-18a1-4b89-ac7e-944bc0fdfa68) + ) + (wire (pts (xy 372.11 231.14) (xy 372.11 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2675a074-5ad8-46a3-be9d-de7bd1351d52) + ) + (wire (pts (xy 316.23 252.73) (xy 318.77 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 271c6bd8-2491-4a52-8841-c326b9132b12) + ) + (wire (pts (xy 527.05 302.26) (xy 568.96 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29eefd9c-bef6-4589-85c5-963f8d1f88b6) + ) + (wire (pts (xy 398.78 284.48) (xy 389.89 284.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f058c7c-a88d-417f-a88e-8cc1588b8e3e) + ) + (wire (pts (xy 236.22 220.98) (xy 236.22 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33bce307-a949-48a7-ad00-1e125d53e264) + ) + (wire (pts (xy 406.4 299.72) (xy 406.4 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ce45d67-50ef-4914-8cc7-283d0c3a169b) + ) + (wire (pts (xy 414.02 267.97) (xy 414.02 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f98b8c2-2daa-497d-95e8-7a5ed83b0f39) + ) + (wire (pts (xy 452.12 299.72) (xy 452.12 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42acee5f-a416-41c7-82ba-df78a4c350d2) + ) + (wire (pts (xy 568.96 302.26) (xy 568.96 283.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44ef844a-dee3-43c2-8704-aef07997ece8) + ) + (wire (pts (xy 554.99 223.52) (xy 554.99 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45af8563-bcf7-4296-a720-2106e0c9e04e) + ) + (wire (pts (xy 318.77 317.5) (xy 318.77 326.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 469de507-407b-4c79-9001-0b5e4f50e4a2) + ) + (wire (pts (xy 347.98 302.26) (xy 389.89 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47bc7ae4-6762-45c9-a4be-1027696e28a6) + ) + (wire (pts (xy 435.61 302.26) (xy 481.33 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4df66dd8-7e0f-45c7-a6c8-880a2d8456e5) + ) + (wire (pts (xy 527.05 283.21) (xy 534.67 283.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52be79a4-3127-4aed-9ae6-5d709386880b) + ) + (wire (pts (xy 542.29 298.45) (xy 542.29 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5695541f-c40d-4cbc-9b32-3d89ed3b3eee) + ) + (wire (pts (xy 389.89 302.26) (xy 435.61 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 599434b5-2ca9-45da-a2e5-8dc0ba763d97) + ) + (wire (pts (xy 283.21 269.24) (xy 283.21 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e54458c-d8f4-4c16-96b7-7fd5175d1f14) + ) + (wire (pts (xy 467.36 228.6) (xy 467.36 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ee32949-3250-42ef-a6ba-9b85541ab7aa) + ) + (wire (pts (xy 281.94 252.73) (xy 288.29 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6107cd4b-2cde-4a7d-b6f0-f838e7236b16) + ) + (wire (pts (xy 273.05 252.73) (xy 273.05 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61310343-7f3b-45d7-b87c-23b0ebcea1c9) + ) + (wire (pts (xy 585.47 327.66) (xy 585.47 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69f59049-63b4-4125-ba94-ff1af68914c2) + ) + (wire (pts (xy 481.33 302.26) (xy 527.05 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b92de20-6331-410b-b59b-c81227cd8dc7) + ) + (wire (pts (xy 318.77 252.73) (xy 318.77 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 701f9b33-4d2d-474e-a4ce-592b8834274c) + ) + (wire (pts (xy 527.05 302.26) (xy 527.05 283.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7075e097-1df6-445c-b63b-10eb8e14eddd) + ) + (wire (pts (xy 257.81 302.26) (xy 300.99 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70e361d5-b5f1-42a9-8a74-41943822159b) + ) + (wire (pts (xy 372.11 251.46) (xy 375.92 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7513a27e-23f3-4554-8e9e-18a874532c5c) + ) + (wire (pts (xy 462.28 267.97) (xy 462.28 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7773c3a7-6f2d-4d66-9c06-cbc11b60ef5c) + ) + (wire (pts (xy 421.64 267.97) (xy 414.02 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77ac990e-816b-4dbf-96e7-10c18d51bf61) + ) + (wire (pts (xy 265.43 285.75) (xy 257.81 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7af528fd-d255-4113-b707-bb7c7f19dc2f) + ) + (wire (pts (xy 311.15 285.75) (xy 300.99 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b1b04a6-8a0f-4fa6-abe5-0c6b1e901dcd) + ) + (wire (pts (xy 222.25 302.26) (xy 224.79 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d8682cb-9697-4e44-bc03-27974b4a79d5) + ) + (wire (pts (xy 444.5 284.48) (xy 435.61 284.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e3fb25f-dfee-457d-bdf6-ff9200e3f8dc) + ) + (wire (pts (xy 403.86 251.46) (xy 406.4 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 810cd3e7-1307-41cc-9743-e87dec8254bb) + ) + (wire (pts (xy 421.64 231.14) (xy 421.64 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81de7ac7-457b-4f85-b1a4-51cd9445e796) + ) + (wire (pts (xy 326.39 288.29) (xy 370.84 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82e2ec95-7423-4710-a7f0-31751e6d6c3b) + ) + (wire (pts (xy 497.84 325.12) (xy 497.84 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84f75e61-33c5-4e36-9064-cefd72134b37) + ) + (wire (pts (xy 283.21 288.29) (xy 326.39 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86020e80-5609-49a6-b101-866c59ea368f) + ) + (wire (pts (xy 542.29 250.19) (xy 542.29 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cb87040-295d-4c8e-9c88-8bb3b57661f8) + ) + (wire (pts (xy 186.69 302.26) (xy 207.01 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d3cf811-803a-48d8-8e57-fbf3ce9bdbff) + ) + (wire (pts (xy 270.51 252.73) (xy 273.05 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91ec31c4-aa50-4f22-836a-e058479d9d47) + ) + (wire (pts (xy 355.6 284.48) (xy 347.98 284.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91edb3dd-fc65-4574-ba9c-e8dda932e5d2) + ) + (wire (pts (xy 347.98 284.48) (xy 347.98 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96494768-fbe8-4cef-8d7e-f3500d98a808) + ) + (wire (pts (xy 467.36 267.97) (xy 462.28 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 979823ea-dbc7-4bb2-9ecf-d669e8ff4b61) + ) + (wire (pts (xy 327.66 228.6) (xy 327.66 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 985089cb-f165-443d-93a4-297e026298e3) + ) + (wire (pts (xy 375.92 267.97) (xy 370.84 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b81e2a9-02b6-4637-91fa-42a6caa31217) + ) + (wire (pts (xy 236.22 269.24) (xy 236.22 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9da2bf63-c1b8-46e7-b7a5-3894bec9357d) + ) + (wire (pts (xy 300.99 302.26) (xy 347.98 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9eafbcad-135c-45aa-8418-64db64e0a783) + ) + (wire (pts (xy 449.58 251.46) (xy 452.12 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a04e1de8-13b2-490e-babd-85cd45c3da3f) + ) + (wire (pts (xy 414.02 288.29) (xy 462.28 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0602675-838e-4524-83f4-d743aad0aec9) + ) + (wire (pts (xy 326.39 267.97) (xy 326.39 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4dea5b7-54f3-478b-b4c1-a9afdff975d5) + ) + (wire (pts (xy 242.57 269.24) (xy 236.22 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a645e4ff-39cc-437a-a06c-ff6e67ab7b7e) + ) + (wire (pts (xy 257.81 285.75) (xy 257.81 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a754207c-70ec-4f42-b8ac-6e137fcf1cf6) + ) + (wire (pts (xy 542.29 314.96) (xy 542.29 326.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a766cee4-67e4-48c0-a372-810a51fac7bd) + ) + (wire (pts (xy 539.75 250.19) (xy 542.29 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a85de878-8607-4763-bbfc-0e38f5e85d70) + ) + (wire (pts (xy 495.3 251.46) (xy 497.84 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3f051fa-dcff-489a-874f-7444ad62f953) + ) + (wire (pts (xy 481.33 284.48) (xy 481.33 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7d5c8d3-dbb2-475b-ba2c-68b17360f3e6) + ) + (wire (pts (xy 318.77 300.99) (xy 318.77 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7f61d5c-87b6-4fd2-92c8-842c3a33b075) + ) + (wire (pts (xy 186.69 288.29) (xy 207.01 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb4a775e-29c2-46b5-9c80-a307a519e256) + ) + (wire (pts (xy 363.22 299.72) (xy 363.22 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c034b3a3-5255-44d6-aee1-5a594cfeeafa) + ) + (wire (pts (xy 300.99 285.75) (xy 300.99 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3ab72cc-b872-4d90-b4e0-a3acf3a0ac72) + ) + (wire (pts (xy 389.89 284.48) (xy 389.89 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4d811ea-792f-4d22-8de8-1d88b94874d4) + ) + (wire (pts (xy 406.4 251.46) (xy 406.4 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5749c04-d835-47b2-830d-f0d7f8d910ea) + ) + (wire (pts (xy 452.12 316.23) (xy 452.12 323.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9776224-dfa3-478a-b9f6-3cc4eeab0fe9) + ) + (wire (pts (xy 452.12 251.46) (xy 452.12 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9c2962a-3b2e-41c4-9c69-416b1911c1d9) + ) + (wire (pts (xy 332.74 267.97) (xy 326.39 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb24ddfc-6c6d-4888-9fe6-f3727035b6fa) + ) + (wire (pts (xy 281.94 224.79) (xy 281.94 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cebaad36-e71b-4548-a633-7ca87aa096bc) + ) + (wire (pts (xy 497.84 251.46) (xy 497.84 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfe643c9-a1d5-493d-811d-aa68d3337cc0) + ) + (wire (pts (xy 585.47 250.19) (xy 585.47 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8b839ef-28b3-4613-8828-c64593ae3972) + ) + (wire (pts (xy 406.4 316.23) (xy 406.4 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbfc44b2-87e7-4332-80e6-be5894806f02) + ) + (wire (pts (xy 288.29 269.24) (xy 283.21 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0172fad-2e2c-41c2-a401-4b1d792cab47) + ) + (wire (pts (xy 363.22 251.46) (xy 363.22 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e182f3ed-e937-492e-ac31-1633d469aca3) + ) + (wire (pts (xy 435.61 284.48) (xy 435.61 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1d397d4-a308-4536-8c60-ec0df6b51784) + ) + (wire (pts (xy 511.81 266.7) (xy 506.73 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2acd698-bb8a-4bff-a912-35bbe9d39e72) + ) + (wire (pts (xy 327.66 251.46) (xy 332.74 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e34350c3-6c2a-46f2-8565-ba6964b64e8e) + ) + (wire (pts (xy 551.18 288.29) (xy 551.18 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5e2ad58-1e81-4aa5-a757-19bbea80b041) + ) + (wire (pts (xy 222.25 288.29) (xy 236.22 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7076869-5692-4004-86c7-dfe6aef403bd) + ) + (wire (pts (xy 360.68 251.46) (xy 363.22 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb161a14-8c95-4491-9690-f3b031f1a80f) + ) + (wire (pts (xy 585.47 298.45) (xy 585.47 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f063555f-b26b-46a0-a564-207e965ee467) + ) + (wire (pts (xy 511.81 226.06) (xy 511.81 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f63e4bd1-6049-41c0-b1c7-5f34d8ecd5f4) + ) + (wire (pts (xy 273.05 317.5) (xy 273.05 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd28310b-197e-4809-9449-84c2c194b0fa) + ) + (wire (pts (xy 236.22 252.73) (xy 242.57 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd3babea-01e0-4db2-86ea-2b8ac36a3477) + ) + (wire (pts (xy 462.28 288.29) (xy 506.73 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd9bba46-56ba-43b2-8833-3765a2674e17) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 452.12 308.61 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0a0cfd53-3071-4eef-98fc-685400b295b5) + (property "Reference" "U19" (id 0) (at 454.66 307.34 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 454.66 311.15 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 450.85 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 450.85 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6dd7bec5-622c-43b2-a81d-a0951f9f4dd9)) + (pin "2" (uuid 3e18ff2a-5b5d-4821-beb5-042311bbc280)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 497.84 308.61 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 110fbde8-5a7a-4080-aca8-07adb2fb76dc) + (property "Reference" "U22" (id 0) (at 500.38 307.34 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 500.38 311.15 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 496.57 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 496.57 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9701cb39-6918-4ae2-8621-616e77814319)) + (pin "2" (uuid 28695e49-38fb-46f2-bbb0-79b3cfccb043)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 354.33 285.75 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1568d3c4-86dd-4b77-bb60-60c942686580) + (property "Reference" "U12" (id 0) (at 369.57 283.845 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 369.57 287.655 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 363.22 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 363.22 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2814bbac-08f7-48dc-ab1a-6f82885d5f6b)) + (pin "2" (uuid 504f5229-65eb-472b-8821-9a179fef02d7)) + (pin "3" (uuid fd26efa3-4e06-4e36-be41-4eb0a592507b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 585.47 334.01 90) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b6ec2b8-b091-40f1-8e73-02ebf1f93b73) + (property "Reference" "U1" (id 0) (at 588.01 332.74 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 588.01 335.28 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 585.47 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 585.47 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 85595092-8817-44f0-a865-d5371c50b8a4)) + (pin "2" (uuid 1776b5bf-4bfa-495c-93a9-523a312f67c8)) + (pin "3" (uuid 2d19bb3a-0f19-484d-8721-fa6df8f52f04)) + (pin "4" (uuid aa3409d6-9ad8-4e0b-9422-88564e353a0b)) + (pin "5" (uuid 6e40e345-a677-4fcd-8961-a2409902c001)) + (pin "6" (uuid 6d07c607-eccf-45e9-bcd3-239062422b42)) + (pin "7" (uuid f2c9aba1-2d0c-4355-b275-7c9e51e78d3a)) + (pin "8" (uuid c3706fc9-32e0-4f12-88dc-5695bbc57a42)) + (pin "9" (uuid a54b01a9-7414-4274-98c9-dc8a0993421d)) + (pin "10" (uuid d2629ac6-1c94-47a3-83c4-53a59d6a71a9)) + (pin "11" (uuid 1ee3322f-1218-42a4-ab58-7454a2cda27b)) + (pin "12" (uuid 972bfb02-b00a-4a5f-af7a-849db30b58dc)) + (pin "13" (uuid c15293ff-7929-4fd0-aaa2-a5a777833be8)) + (pin "14" (uuid ee9cd003-efa8-433e-83d9-3603c060a58c)) + (pin "15" (uuid f861df08-fc74-4ca1-b6c7-4ab31547a7f8)) + (pin "16" (uuid c04ee4e8-9d5d-4986-ba1a-8d08e3ded3f9)) + (pin "17" (uuid bf1b7f2a-a0ab-459b-ab93-e23353184058)) + (pin "18" (uuid 2e9388f3-96d8-41bb-9150-6fd346220732)) + (pin "19" (uuid 455a88e6-c65c-4f2b-b919-90c7245569fe)) + (pin "20" (uuid 2d501ee2-430a-4c15-96f2-8dff2cc9ab76)) + (pin "21" (uuid 8a2f6e48-2de0-4b0e-8eed-44384a0f15a4)) + (pin "22" (uuid 970105ab-6de0-4e8b-86d7-7e74e92f02e2)) + (pin "23" (uuid c9170827-9941-4c7f-8a13-8abfbba0cbcb)) + (pin "24" (uuid bc151496-ce3c-4d32-9a49-9a507022eb53)) + (pin "25" (uuid 7df4d0d4-48a0-4db3-864c-16372cc0779f)) + (pin "26" (uuid 9f500f58-e085-45b5-a3f8-b847a292dfe9)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 389.89 260.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 23841a41-932a-433b-8174-ea2807c16274) + (property "Reference" "U14" (id 0) (at 391.9094 243.84 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 391.9094 247.65 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 389.89 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 389.89 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59ea6892-8a3a-4a8a-b64e-7f735d392e49)) + (pin "2" (uuid 83a8ebe5-5ecf-4352-a264-dd0e79772dc2)) + (pin "3" (uuid cae12670-bb20-4b74-ae37-b9e9c7f0efd0)) + (pin "4" (uuid 6e672e64-8048-40d6-a733-6d95fa4cdad0)) + (pin "5" (uuid f86c6189-bd9a-4161-b64d-f00e787c24e5)) + (pin "6" (uuid 6f83110c-a5f6-4cf4-b58e-b85869e2c5df)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 363.22 331.47 90) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 30bfed1b-e130-4def-afef-827bcda4d20f) + (property "Reference" "U1" (id 0) (at 365.76 330.2 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 365.76 332.74 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 363.22 331.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 363.22 331.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 89019852-752b-46b0-b689-4877c516329a)) + (pin "2" (uuid 37d8b4a4-5f6f-4398-bb73-a577e70792d3)) + (pin "3" (uuid eb0ba1e3-4d1f-4261-ada0-61983e24796b)) + (pin "4" (uuid 0b560376-d095-4caa-9326-d8dc55a56442)) + (pin "5" (uuid 87eaa6ed-3257-4dd5-a836-0775874ae4fd)) + (pin "6" (uuid cba4561d-5418-4be1-804a-d4b013d0fb5e)) + (pin "7" (uuid 6ff6b76c-aacf-4b3a-8835-3cee0674b016)) + (pin "8" (uuid ad28311e-9865-4df7-bd2f-b6031a10fcab)) + (pin "9" (uuid 4d0812a0-36a6-4a5a-a5a5-edc6bd525f3c)) + (pin "10" (uuid 28124216-03bb-4592-a0b1-93e4d0c30e3f)) + (pin "11" (uuid a231bfc7-461b-4c02-9823-0d520e117098)) + (pin "12" (uuid 5a48bdb6-4e4c-4cb7-af4a-b2fa36731a73)) + (pin "13" (uuid 9ddda9bd-1f91-484b-9332-bb6ea7729504)) + (pin "14" (uuid 18babd2c-ef54-4475-a0a1-9ae7027d8e6b)) + (pin "15" (uuid e5b9df51-91a9-4474-8d6b-4486b6fdfb6f)) + (pin "16" (uuid 30262fd6-048e-4e3f-9453-f882d6787b10)) + (pin "17" (uuid bc0c71bc-769e-419c-99b2-f724a0af7311)) + (pin "18" (uuid 1076c6b3-082a-41ab-abd2-98190b6de77c)) + (pin "19" (uuid 108a32f7-4140-44a2-8918-f65dc13ff7dd)) + (pin "20" (uuid 1043c70a-58db-419d-9719-f6ff8f87df44)) + (pin "21" (uuid 825be1b2-7c08-4d07-86a6-d6ce7f871566)) + (pin "22" (uuid 4f9c73a1-5bb8-44d0-b47c-650080054e99)) + (pin "23" (uuid 31a03cbc-7dbe-4ed0-b8ee-77acd304f2d8)) + (pin "24" (uuid 37df490c-00b2-4e6d-a213-878d8aa97ed5)) + (pin "25" (uuid 46de29ac-5cec-4811-95d9-3f0fc74a4eee)) + (pin "26" (uuid 6eb8c026-8419-49ea-ba75-71944fe2f9f3)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 256.54 261.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 370907f2-dd80-485e-8c30-a242de9be6f5) + (property "Reference" "U5" (id 0) (at 258.5594 245.11 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 258.5594 248.92 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 256.54 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 256.54 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f736dd48-b21d-4782-9532-542b7e7858b0)) + (pin "2" (uuid a2a74c65-d70c-45d8-b785-017e2d8b6359)) + (pin "3" (uuid 98403b43-caa8-48dc-ae65-bd0504f126fd)) + (pin "4" (uuid b3315466-b083-4b59-aed8-73ee9b997a2c)) + (pin "5" (uuid febb264d-2725-48b6-b8c9-641c07541b9b)) + (pin "6" (uuid 0cc837a1-a917-4ef4-bb69-d317f2657b1c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 327.66 222.25 270) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 37fca1e2-1f3d-455b-a49c-6126c2ccacec) + (property "Reference" "U1" (id 0) (at 330.2 222.25 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 330.2 224.79 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 327.66 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 327.66 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e1ec7e9b-3e43-4a6c-aca2-cb389266eff1)) + (pin "2" (uuid a2b541af-bf55-44cf-a695-cb1167e67540)) + (pin "3" (uuid 95126d0e-d75a-45ab-adb3-0eb9ad6d5c7e)) + (pin "4" (uuid b2616dc1-7641-4de5-905d-4e4765e3d0bc)) + (pin "5" (uuid 49f4e263-cb8d-401a-9749-01bb09f0ed4b)) + (pin "6" (uuid 0d9f0fd9-8bbb-4d1d-a8ab-024a7301cbde)) + (pin "7" (uuid 47e8ecc7-df6c-4d19-bb02-7e0795df1fd6)) + (pin "8" (uuid 410589f5-4235-42a8-b3ec-c27c35f80735)) + (pin "9" (uuid 7a0593ee-764f-44c7-82c1-d2bf3c0d3d36)) + (pin "10" (uuid facf46b3-8d8e-4bd8-871d-f33e32b9d79b)) + (pin "11" (uuid 9d5f5660-4b3a-453d-829a-6e4fc6fce215)) + (pin "12" (uuid b956bb68-2188-4f31-803d-cbd8904e06e3)) + (pin "13" (uuid 24aa3afb-9862-4105-a2d2-3429a7f548e1)) + (pin "14" (uuid 7a14b8ed-9b75-4a05-a524-d3a45ed63712)) + (pin "15" (uuid 0d7e440f-612f-4f22-b1a3-ebb089d2c4eb)) + (pin "16" (uuid 7f8e1c89-f6da-4d5c-a034-b348d4f4fb8b)) + (pin "17" (uuid 1f61d1c9-7398-4bfc-b1c6-aaf27e18b40e)) + (pin "18" (uuid ac194f8a-2d4b-4a18-9c04-8f606601ca49)) + (pin "19" (uuid 21086ac3-f2d8-4e08-864f-4f2c13e28ee0)) + (pin "20" (uuid 51268013-3f0d-4e21-9c0a-646bd2d300e8)) + (pin "21" (uuid fc39517b-79b6-497e-983e-ba6a4f711748)) + (pin "22" (uuid 0aa5268b-1db5-4514-ae6c-5d1a5de43b83)) + (pin "23" (uuid b8b38f00-23d4-4b4e-8c76-03700f0a2399)) + (pin "24" (uuid eba49299-7c6f-4922-a277-cc7a613be8ef)) + (pin "25" (uuid a4e408d5-5ed5-4f29-b1b5-38f28eb7275a)) + (pin "26" (uuid d9ec7bd4-1c55-4509-85b0-cd4891ddc139)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 435.61 260.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 386facbf-3e0d-4048-a622-6c0c69f64c0b) + (property "Reference" "U17" (id 0) (at 437.6294 243.84 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 437.6294 247.65 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 435.61 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 435.61 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d50b743e-6547-44c0-91ad-8467549b6960)) + (pin "2" (uuid eb899f1c-2a8e-472a-bfac-906877198cf4)) + (pin "3" (uuid bc9c30a5-b1af-4371-854e-1971bd9620d7)) + (pin "4" (uuid ba0e2a69-0606-4b77-b50f-5cc30af0007c)) + (pin "5" (uuid 347a77f0-d8f5-4671-95b9-7143c1582d52)) + (pin "6" (uuid b45acf05-d636-4654-9f9e-1bf2e72cdf1d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 214.63 288.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3e3b4ce9-5170-495e-b426-ad943c5b5756) + (property "Reference" "U2" (id 0) (at 214.63 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 214.63 285.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 215.9 289.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 215.9 289.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5e61b980-be8f-47a0-9088-7518b2f18946)) + (pin "2" (uuid 1c497ed3-81a5-403b-bbb2-ad2b8310098f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 308.61 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3f1cd832-8e9c-4ff9-92f1-c6631861f536) + (property "Reference" "U16" (id 0) (at 408.94 307.34 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 408.94 311.15 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 405.13 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 405.13 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fb62678a-2fa8-46cf-a158-7e3304e73989)) + (pin "2" (uuid 9938bd0a-85e2-4192-a444-b0c7e8917a2e)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 568.96 259.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5048d7cb-d8b3-4568-bc9a-242ac4ccc9f5) + (property "Reference" "U26" (id 0) (at 570.9794 242.57 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 570.9794 246.38 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 568.96 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 568.96 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3dcb2d24-6507-4029-b300-c3537a98a3af)) + (pin "2" (uuid 2026a07a-fce1-49c4-a5bf-85bc58557194)) + (pin "3" (uuid c9c80473-9f53-410a-a03c-8b77daee621b)) + (pin "4" (uuid 3d31b0c4-829d-4224-914a-c2525b56c52c)) + (pin "5" (uuid 88ba398a-d741-4e03-afdf-34529fd514f5)) + (pin "6" (uuid 779f8250-e248-4a98-b645-21a221a2ac44)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 554.99 217.17 270) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 50d90843-6c2e-4ef0-b871-5bc6efbbd713) + (property "Reference" "U1" (id 0) (at 557.53 217.17 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 557.53 219.71 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 554.99 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 554.99 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid da515121-2c60-4593-b2f3-2db2559ffe93)) + (pin "2" (uuid ef8176e7-09bd-46a8-8f07-4cf3a1332d66)) + (pin "3" (uuid 0b968048-2ccd-48d1-9f52-8f3b38ba569e)) + (pin "4" (uuid 5667d53d-71aa-431f-8a76-a653619099da)) + (pin "5" (uuid 0f43d7d3-c5a4-48f4-b75a-b8df6a055c89)) + (pin "6" (uuid 6142241d-7926-416b-8473-631abf1a65ef)) + (pin "7" (uuid fb0e83d8-1f89-48b7-ad18-d64b4ce67438)) + (pin "8" (uuid 427d8287-0cb7-4c79-8403-752f0f8a07a3)) + (pin "9" (uuid 458f8ad9-6165-4768-a701-fcf8ec62166a)) + (pin "10" (uuid 57f0e559-9c2c-4967-b41a-23b8bb61f6e9)) + (pin "11" (uuid c2214442-ff1d-45f4-ae07-ddb8a0cf26d9)) + (pin "12" (uuid 190f39e2-7eb0-4fa7-96b1-6d81081d3bad)) + (pin "13" (uuid 2be69f1a-586b-4d62-81fc-06d6b7b45da6)) + (pin "14" (uuid 531f221e-495b-4499-aede-2e91a5007b23)) + (pin "15" (uuid 6b6b7962-5005-48b0-9347-7d4e5e716a48)) + (pin "16" (uuid 5936e637-fdd1-4f60-801c-a6e6aa2a5363)) + (pin "17" (uuid 996263cf-177b-4cca-8c86-3d6c81d713fd)) + (pin "18" (uuid 2b74fe20-2322-4795-942b-119d03d276a0)) + (pin "19" (uuid 7278048f-329d-48e6-a1ed-7c8b4b549ec0)) + (pin "20" (uuid 64a7edf3-c4b5-4a1c-b7ea-304d7535fba4)) + (pin "21" (uuid b3692f3e-af93-45d1-958a-82823515daf9)) + (pin "22" (uuid 1ed55afb-e17b-434c-afa1-37d3ebb2d0e3)) + (pin "23" (uuid 44d5ef28-3e93-441b-bc75-95e5eb8b5b9c)) + (pin "24" (uuid 6259b7f2-a51b-46e8-9306-44a2d920e017)) + (pin "25" (uuid 5d8f5b83-667a-4a96-a3f2-bb097ee0ddbf)) + (pin "26" (uuid 741c99b5-e1bb-425f-bce0-498e26cb03fe)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 511.81 219.71 270) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 549db5a7-d384-4516-bfa5-62de4c296eb4) + (property "Reference" "U1" (id 0) (at 514.35 219.71 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 514.35 222.25 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 511.81 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 511.81 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6968d8cb-20f2-482c-aa30-e4039735309c)) + (pin "2" (uuid 65f4d61b-fc50-4d25-9edc-a811959d9792)) + (pin "3" (uuid 39883f6c-8fe7-4b3f-b3cd-a97e87e92d3b)) + (pin "4" (uuid 8ab7e440-eb3c-43ae-b560-8e3eef137ba3)) + (pin "5" (uuid b81b4960-7e61-45d7-9532-6d8e2a1375fa)) + (pin "6" (uuid 8e056018-6ef4-456f-979c-54eaf8eea097)) + (pin "7" (uuid fb463d83-b17b-4fd4-8045-086bd0567764)) + (pin "8" (uuid 5734eb12-d5a4-4908-95f1-6cc3c70cb599)) + (pin "9" (uuid 105de1da-37a2-4af4-8e3b-a80afbe82c20)) + (pin "10" (uuid f310989d-a901-4514-ad4a-b7fa9851af61)) + (pin "11" (uuid 35b84d26-3238-40f5-8e47-b62829ad1f0a)) + (pin "12" (uuid 8e391aef-1557-453e-be30-1e77f6769146)) + (pin "13" (uuid 2f4f3db9-8f8e-49b8-90f9-ce9147f02724)) + (pin "14" (uuid 73dc11a9-a5d6-4c4a-bb19-116361eca43c)) + (pin "15" (uuid f743f364-169b-49d9-8672-6549b72de534)) + (pin "16" (uuid 8b64c712-ec44-4418-ae59-3438b9ebafb3)) + (pin "17" (uuid 13865609-d49d-439c-a702-486b6f29aa3c)) + (pin "18" (uuid b77bb0e3-0f93-4039-a711-0c2324c3085d)) + (pin "19" (uuid b00fad4c-9e77-4ded-8ef6-76e43648e097)) + (pin "20" (uuid 7fe921cf-c5a6-4bae-b4b8-ac7b9b32259a)) + (pin "21" (uuid 3a836a10-e49f-4314-8286-107f7f29e6f9)) + (pin "22" (uuid 3a02c488-bdce-45f6-8bb3-4efd7f513eb1)) + (pin "23" (uuid ea0fc91c-389b-4f88-b807-979ce9a31c89)) + (pin "24" (uuid d18635db-3869-4cb2-b9bf-9a17a2cb7ea1)) + (pin "25" (uuid 2c7c0548-1fd3-4489-bbbd-4086d834741f)) + (pin "26" (uuid f1cf254e-507d-4ddc-8952-c90ddc074ac4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 372.11 224.79 270) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 57551d53-97d5-46cb-a53f-7ce93e363830) + (property "Reference" "U1" (id 0) (at 374.65 224.79 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 374.65 227.33 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 372.11 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 372.11 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a2860337-1623-46a4-bb98-3c7991d06620)) + (pin "2" (uuid 4993609b-5f75-4cee-b152-c39f47e99d3c)) + (pin "3" (uuid b56c7f97-d3af-4389-b690-165aba7ee8be)) + (pin "4" (uuid 3aab78f1-b3bb-4746-aaa0-e79721034093)) + (pin "5" (uuid 70b6c911-cb53-4a25-8069-2e321f68b199)) + (pin "6" (uuid 3acaa277-c6ac-4ae3-a920-8de22d67bef7)) + (pin "7" (uuid 05c17ef0-b023-4774-b4a4-f183896a7ece)) + (pin "8" (uuid 60e22aee-8701-4615-893e-f78a0d944009)) + (pin "9" (uuid 6423deb9-233b-426d-abe7-1ada583b4ab5)) + (pin "10" (uuid 1d674397-0818-4647-9ac6-4ec5a7533943)) + (pin "11" (uuid f5bdb229-13f8-49ee-816a-a7c9cfcc1acc)) + (pin "12" (uuid 395f8eb5-9e1e-4525-8552-ab1ee7ad683e)) + (pin "13" (uuid c73c8093-3a32-45e1-a882-ac34f5720249)) + (pin "14" (uuid 3d118d56-6c69-4204-abbf-0c6077a703c0)) + (pin "15" (uuid 266578ba-0001-4057-bc59-ae5d16dd4906)) + (pin "16" (uuid 7389abe5-cf40-4f3f-a6f9-531e44122c5e)) + (pin "17" (uuid 1533456e-263f-4623-95f4-0b666568218c)) + (pin "18" (uuid cd29c185-4f7a-47ce-a5ed-2e90db011ab6)) + (pin "19" (uuid a0f45796-ecba-4bb1-8ec4-3982f3e1dcb3)) + (pin "20" (uuid 2a6090e9-e61a-4aee-a447-6503d4f61ac4)) + (pin "21" (uuid bd4edce5-290c-4fb1-9aad-928272be3499)) + (pin "22" (uuid cb4904d2-8c38-4a48-9c1d-514e6b246dd0)) + (pin "23" (uuid 8457bb75-1c3b-42a7-b80e-3f26e34fdea8)) + (pin "24" (uuid 6bc1efe4-f216-4e6d-9db8-057699b19bef)) + (pin "25" (uuid aa6a9391-c4fd-4149-affc-65ab7637d157)) + (pin "26" (uuid 947e50eb-b06b-48d6-961f-c82e7d6cedc0)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 481.33 260.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ed8310a-25d1-42a7-9ba3-f236fac34571) + (property "Reference" "U20" (id 0) (at 483.3494 243.84 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 483.3494 247.65 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 481.33 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 481.33 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8b083518-c115-44f3-bbc2-c1766b00d65a)) + (pin "2" (uuid f1bf493e-9b82-4ef4-a848-34d5976cddda)) + (pin "3" (uuid b48a137f-c45e-4af5-8798-53d430dce463)) + (pin "4" (uuid 6ca4574f-72ae-4ea0-b6fa-95b67542d55e)) + (pin "5" (uuid cc3ae4e8-641f-4c5d-9f4c-43d8440f6acc)) + (pin "6" (uuid 8dad5756-bac6-40ab-b15e-e6012906dbdd)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 237.49 302.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68895d7e-b009-4e31-a25b-50f4a597ef70) + (property "Reference" "U4" (id 0) (at 239.395 292.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 239.395 295.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 237.49 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 237.49 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5b5c5d0a-a416-4425-93c8-b505f35040cd)) + (pin "2" (uuid 46cd2885-8304-4b11-bbbe-4f0a69f52da4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 273.05 334.01 90) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6fddae7c-c312-4a9f-9a23-ac773f49e9f6) + (property "Reference" "U1" (id 0) (at 275.59 332.74 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 275.59 335.28 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 273.05 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 273.05 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 56fa7d32-cddf-49b5-af96-784b33059d91)) + (pin "2" (uuid 2d9afccc-faf5-49c5-987a-caaa74533351)) + (pin "3" (uuid 91b60f0b-0f6c-4a9c-a6c0-a83118e90a7e)) + (pin "4" (uuid 3e33673d-2a35-4914-8a27-1828f4ffdd69)) + (pin "5" (uuid e9a5b25b-d6a1-423c-ba77-53e9464dee1c)) + (pin "6" (uuid c8010956-bcd9-4f57-aae2-1456d9ce556f)) + (pin "7" (uuid 9eab8c2d-2e6e-4bed-b690-bb591a160125)) + (pin "8" (uuid 2cf19bcb-3f38-4584-a126-1248a9be59c3)) + (pin "9" (uuid edb624b5-55c0-4b5b-80e9-af7c96c42c93)) + (pin "10" (uuid 00b44ca8-be8e-426b-b277-4c21628a0f17)) + (pin "11" (uuid 3fc3f425-b0c3-4950-991f-25685343e1c2)) + (pin "12" (uuid 7c0eb664-deae-4de2-b78c-bf23b136581b)) + (pin "13" (uuid fd5ab454-ae67-401a-bf7d-822b7d940e16)) + (pin "14" (uuid c72b22ef-5e0e-4484-bbce-db0a03b0e805)) + (pin "15" (uuid 7ace7ec9-ad1e-4fc6-ab0a-11372e009d1f)) + (pin "16" (uuid 162f6772-e614-4cb4-89ca-9966dc88d691)) + (pin "17" (uuid 47f4e80c-61d6-4da6-95f7-7af7013c4946)) + (pin "18" (uuid b7793c70-a45c-464c-9eb3-d020f6fd09ce)) + (pin "19" (uuid f4fb1004-6420-43e5-ad7c-46de4c67e84d)) + (pin "20" (uuid 9d47271e-d747-4ecf-8a9b-b4698966630c)) + (pin "21" (uuid 484abd07-2025-40ae-bb2f-f63996fdb10d)) + (pin "22" (uuid 255d3287-a34f-4ddc-a314-11c877967ff5)) + (pin "23" (uuid ffa03515-4c3f-46d0-b6ca-f7e07e39187d)) + (pin "24" (uuid 268a5ee9-7659-4f1b-9c8d-057a170e6591)) + (pin "25" (uuid 6e05e853-2ad3-4a27-a113-40e4cafe9b58)) + (pin "26" (uuid c12566ee-f388-4625-bd69-fc15fdbf383c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 452.12 330.2 90) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6ff4274a-68c9-46a6-8a7d-e1583eb6dc28) + (property "Reference" "U1" (id 0) (at 454.66 328.93 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 454.66 331.47 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 452.12 330.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 452.12 330.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 54cbc34c-f99c-4da9-b43c-2ff85bd923cd)) + (pin "2" (uuid b5a59b2f-2c29-4304-8127-1d5192ab593e)) + (pin "3" (uuid 121288c8-7746-4546-90e8-ddb546895d18)) + (pin "4" (uuid b4137247-2318-40ac-8363-7d17dcf03b60)) + (pin "5" (uuid e1295509-3e5d-4431-90ba-66bac3aa78a6)) + (pin "6" (uuid 1aaeb7bd-9729-4f7d-96f0-07de4e81e280)) + (pin "7" (uuid 55b8bc63-74f5-4cd9-833f-ef5104a60f2c)) + (pin "8" (uuid bf6c1639-09b6-4610-8d9a-555f76bdb0fd)) + (pin "9" (uuid b6e04a2e-64e0-41e3-b800-d4bead30d2ff)) + (pin "10" (uuid c7eccd95-3776-4459-905c-d8913944bd13)) + (pin "11" (uuid 4a835e90-101b-423f-a2ca-c7b1cd9a6214)) + (pin "12" (uuid 483882f5-0e6a-48a2-9e9c-471e16ee83c0)) + (pin "13" (uuid 5d6dac8c-53d5-4c1f-85e4-c02f8bd87553)) + (pin "14" (uuid 1789f8bf-0dd7-447f-b0ab-7d14c65f1e37)) + (pin "15" (uuid 09c422f8-8f70-4115-a5d5-6267ae507248)) + (pin "16" (uuid 284cdc05-e48f-4bd9-a9fb-68d7e7fd3c6d)) + (pin "17" (uuid 1fe2b0df-cc4d-41ef-b884-578322a5384f)) + (pin "18" (uuid e0acbbad-467c-4f70-9b76-bf65a575ec18)) + (pin "19" (uuid 5f29048f-99c7-4cbd-acce-8c1e89dc2690)) + (pin "20" (uuid debadd21-f752-47a3-95a6-9a4abe3e9cc8)) + (pin "21" (uuid 453039ad-9bf8-4a7b-a759-8dba812d67dc)) + (pin "22" (uuid 177ea1dc-a490-47b2-940f-7e883f74d59b)) + (pin "23" (uuid 4245c586-fab1-45d0-a5a1-42393e1af37d)) + (pin "24" (uuid 13c18653-61bb-4a6c-b032-faf77ea8845a)) + (pin "25" (uuid a0b317b9-fa14-4d6d-8dff-5fd8dd14d57f)) + (pin "26" (uuid 87fd0125-3cf8-441e-8eb4-de6350f1b9c4)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 346.71 260.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 71777415-3f20-414a-ae3f-3c4fd42fb21b) + (property "Reference" "U11" (id 0) (at 348.7294 243.84 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 348.7294 247.65 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 346.71 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 346.71 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cfebe227-1445-47e8-a1c0-d5378f11cd8d)) + (pin "2" (uuid b4adeeed-c152-44c2-be18-b29993cda27a)) + (pin "3" (uuid 93dd757f-ba43-4e99-8f05-49d9cf9a0e4a)) + (pin "4" (uuid 71b81a21-ee2d-40db-9b4a-d76834891112)) + (pin "5" (uuid aa6d2f33-7ead-43f1-bd6d-b502347ab54e)) + (pin "6" (uuid 2e9c0b87-7a96-4bce-a6c6-111b33901803)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 443.23 285.75 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 74b7448b-c37e-47b4-a657-af41d172500e) + (property "Reference" "U18" (id 0) (at 458.47 283.845 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 458.47 287.655 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 452.12 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 452.12 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d5a74ce-d22f-4fb9-843e-338d2320f34e)) + (pin "2" (uuid 4e5b7dbc-35e2-495d-b946-0cc0a6860f02)) + (pin "3" (uuid 6d58c39a-6098-4a93-97aa-ea2a1bc51bba)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 281.94 218.44 270) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7680119e-f4a0-4cf8-a843-a6f9ad4eb23f) + (property "Reference" "U1" (id 0) (at 284.48 218.44 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 284.48 220.98 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 281.94 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 281.94 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 718c89d2-8db6-4afd-8c79-24f1520b375b)) + (pin "2" (uuid c0d952e5-3607-41eb-9dbb-d3c8cc05e25c)) + (pin "3" (uuid 9b4c9d61-cbe4-4899-9008-869e818ac659)) + (pin "4" (uuid d6255f12-cd48-449f-9d49-59596a37038d)) + (pin "5" (uuid 524557ff-6b09-462b-bf58-f68b5239d073)) + (pin "6" (uuid cc8eaa2b-79f5-403b-91bc-0e1986ecf7cc)) + (pin "7" (uuid 783b80c9-4437-4a19-9b32-4aadf17a0ae8)) + (pin "8" (uuid 9db603a2-bedb-473c-bf0f-1b4ba573a7e6)) + (pin "9" (uuid bcf55b95-1eab-4a39-b269-599fed4facf1)) + (pin "10" (uuid d52b4f7d-9a54-460b-b683-e2d186a4292d)) + (pin "11" (uuid 8598facc-47d1-47a7-b063-b0a7b50bf96d)) + (pin "12" (uuid 9eec7788-0df0-43e9-a6a1-71647687a1c2)) + (pin "13" (uuid a615389a-ce31-4ce9-9a15-cdc20f06393b)) + (pin "14" (uuid 4b57ff26-4a06-4f57-8b22-8c3f4bfe70d0)) + (pin "15" (uuid f9db46a7-ab01-4e0d-a2e6-6defb65178c8)) + (pin "16" (uuid 6b59697e-b48a-4b24-b8d7-d2ae526b2eb5)) + (pin "17" (uuid a3c68728-a567-4da5-b87f-be2247d57d0f)) + (pin "18" (uuid aa4e4df8-d45d-4a35-881e-637da6dd5810)) + (pin "19" (uuid a6acd8e8-b140-4892-a125-0dd59c7cc515)) + (pin "20" (uuid 09f56475-2051-4e4a-ac75-68707fd989c5)) + (pin "21" (uuid 63985eb7-dea6-40eb-bc63-e4f44274b14b)) + (pin "22" (uuid dc7c6d95-8187-48d9-8d0e-19b3508ae21f)) + (pin "23" (uuid 83f4fe89-4469-4a47-9018-6873b04e0218)) + (pin "24" (uuid 582db01a-c525-4b22-b26c-f1d54d768485)) + (pin "25" (uuid 207af925-7418-456c-9154-306dbc6b3e60)) + (pin "26" (uuid b7340c4b-c913-40e4-a337-c2c8f1d83e2c)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 525.78 259.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7c428c5b-a48b-4a57-8a3b-27c782eee805) + (property "Reference" "U23" (id 0) (at 527.7994 242.57 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 527.7994 246.38 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 525.78 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 525.78 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e88c04f-3064-44c8-b059-6831cb59f263)) + (pin "2" (uuid 58e203cc-1103-4af9-9633-0a9b35cba1d3)) + (pin "3" (uuid b59a4109-5819-4d39-9ae4-fc1c0434561c)) + (pin "4" (uuid cccc9a28-ebf5-43a2-b1a5-a16d2d68a76c)) + (pin "5" (uuid 25538c78-b075-430c-88ae-70cd02471e96)) + (pin "6" (uuid fc4e129f-70c4-4be0-87da-ffb949a5a4a4)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 302.26 261.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7d0750aa-dea5-4c85-a2b1-8e8be4ecdc6b) + (property "Reference" "U8" (id 0) (at 304.2794 245.11 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 304.2794 248.92 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 302.26 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 302.26 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 83f85053-4a52-49f0-814d-a852d4e46e4f)) + (pin "2" (uuid 981a031b-60b8-4145-a8cb-35f8f1ef122f)) + (pin "3" (uuid 852288e0-85ed-4035-bf08-ddc2adb9e855)) + (pin "4" (uuid a898ebdb-8171-40c3-8c07-b041350e9add)) + (pin "5" (uuid 648af4ea-20a7-452e-9086-812caccfabfe)) + (pin "6" (uuid 5a4289c2-ae71-4510-8577-27e943ea9f7e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 406.4 334.01 90) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 82135245-0208-481d-9fad-36d082465ef4) + (property "Reference" "U1" (id 0) (at 408.94 332.74 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 408.94 335.28 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 406.4 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 406.4 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 891df89c-b6e6-4e5f-92b1-4214acbed0e0)) + (pin "2" (uuid 8ab8ac97-ca19-4bd4-841f-5e90127f1a88)) + (pin "3" (uuid 8c265f0e-e0d5-41fb-b5f1-49dfb8a5db58)) + (pin "4" (uuid 0f67e234-f901-4bd2-9850-9573222f1c10)) + (pin "5" (uuid 1060a9da-a06d-45e6-96bb-37975dabfb1f)) + (pin "6" (uuid 71a777fa-2827-4bbc-b526-eb05bcb85ffb)) + (pin "7" (uuid 245c3c9f-39f8-4420-aa88-2d82fd54efca)) + (pin "8" (uuid eb09e4d6-ffd6-41ae-af14-321ca55bea40)) + (pin "9" (uuid e3506c17-48e8-484e-bcf9-19205a710745)) + (pin "10" (uuid c21f942d-391d-47d7-ae3f-789c6105bdf8)) + (pin "11" (uuid a86e834d-94e2-450c-ab4c-343aa7be966a)) + (pin "12" (uuid acfc9953-f3db-4e0e-9590-aa0bbcaa8e64)) + (pin "13" (uuid bd9092e1-6b90-4e39-b3f8-62cf611342c9)) + (pin "14" (uuid 73808f5e-2af5-4ce9-a1bb-5088a84c812b)) + (pin "15" (uuid a421af9d-9750-405d-8ba0-b66a52a6052a)) + (pin "16" (uuid ff511553-831a-4cb1-9763-50363778830f)) + (pin "17" (uuid 56b731f0-8ec4-4bad-bb41-f645164d5464)) + (pin "18" (uuid a216b697-8708-463c-8a4b-21bddf233be8)) + (pin "19" (uuid 3b3ce005-3014-441a-973a-babe61ccc8b1)) + (pin "20" (uuid 1adf0918-20bb-45b9-84bb-dd46bc346256)) + (pin "21" (uuid da3ebea8-8141-482b-aeb1-819628c7814f)) + (pin "22" (uuid 6c58aa1b-a3a4-4ee6-a8a6-1d9a4fc7e0d0)) + (pin "23" (uuid f89618e8-97f2-4d81-81ed-fe3cb63a23cd)) + (pin "24" (uuid 93e7d91b-0312-4bda-9f76-159a70e4bbbf)) + (pin "25" (uuid 104e382d-a182-4882-8fbc-0904dec2eaaa)) + (pin "26" (uuid a5adea23-888f-461b-b7ee-2414e9a20f9b)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 264.16 287.02 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 849fc6ae-3be9-4ca8-ad34-3cb786c2a720) + (property "Reference" "U6" (id 0) (at 279.4 285.115 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 279.4 288.925 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 273.05 284.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 273.05 284.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c49b1729-605d-436f-ad6a-49ad02451cf1)) + (pin "2" (uuid 592a5bbc-7223-4cf8-ba90-6de07a68b8e7)) + (pin "3" (uuid 5cb29b6f-e4be-45e7-82c2-82b32475d8f4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 363.22 308.61 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8598e3a8-0e66-4cd5-9eb1-a18d6de7f2d0) + (property "Reference" "U13" (id 0) (at 365.76 307.34 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 365.76 311.15 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 361.95 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 361.95 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7d8f93c4-6841-4fdd-b5fd-5940ddc7695a)) + (pin "2" (uuid affe65e3-530a-4395-a8c5-12d3db93ac4a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 180.34 288.29 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9723b7b9-a20a-4b99-be22-669e37d50556) + (property "Reference" "U1" (id 0) (at 180.975 283.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 180.975 285.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 180.34 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 180.34 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7fa9f51c-1f90-4dd2-9954-af286c85b7b2)) + (pin "2" (uuid 63bb9205-04f5-470d-a95c-23a57a960b71)) + (pin "3" (uuid af094cd8-c1d0-4891-b12a-ae5f507bc596)) + (pin "4" (uuid a24f282c-b697-4197-809d-bca3301ca4c2)) + (pin "5" (uuid e781dcd8-23e6-4274-b423-0e111ee730a8)) + (pin "6" (uuid 1530b3a2-d78d-4a5a-83f2-6473f3e1f115)) + (pin "7" (uuid f1e45946-48f0-49c1-b4e0-323ec7f5d2ea)) + (pin "8" (uuid f2cf1561-a996-47ea-b203-2a152cd57d89)) + (pin "9" (uuid 013f37a9-1773-4ea3-8352-149a5382465d)) + (pin "10" (uuid 8d3b27f9-0104-4390-aae8-f8a9ecb7e1f1)) + (pin "11" (uuid d239571d-0197-4821-9aa3-6f1d1460d855)) + (pin "12" (uuid 80f1406e-feb7-434d-b81c-837242c3bce2)) + (pin "13" (uuid 7bfbc866-3d2a-4700-9030-53ea153aeeea)) + (pin "14" (uuid 1668b177-4267-4604-a207-62e7fbc8e420)) + (pin "15" (uuid 2112b206-b40a-4ea1-a7c2-292f6c443c97)) + (pin "16" (uuid b10112f8-d4df-44f4-8b8e-0b76ff50b9d6)) + (pin "17" (uuid fa814735-c190-4243-b5e5-5714496d8ee8)) + (pin "18" (uuid ee2c6444-c2b4-41eb-8825-62d109beec8e)) + (pin "19" (uuid 5bdc6853-1702-47ae-bf1c-8fd115ff2f56)) + (pin "20" (uuid 977430a5-7062-4811-a393-b3184b52b539)) + (pin "21" (uuid db746abf-9c16-470c-8d0f-dd50f3c1975d)) + (pin "22" (uuid ae379e56-5e9b-478f-b0bf-cfa41764a282)) + (pin "23" (uuid ba392af9-9609-4081-b42a-6081aae33cca)) + (pin "24" (uuid cee3aa13-2345-4793-9985-a48b7ce31356)) + (pin "25" (uuid 8b8f3a75-4cdb-4812-8208-af05a13d5b58)) + (pin "26" (uuid 54d73e8e-0c6b-4389-a0b0-62eb5125d26b)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 533.4 284.48 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 994607de-8067-422c-8c08-28722a7a73c0) + (property "Reference" "U24" (id 0) (at 548.64 282.575 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 548.64 286.385 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 542.29 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 542.29 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 319f80b6-0986-4985-8838-a03226ac10db)) + (pin "2" (uuid ea185fa5-f3f1-4db7-bd98-b9dfd2ac2953)) + (pin "3" (uuid b3056459-3cb6-476f-95df-235829ffe6d3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 467.36 222.25 270) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ad87af60-9c4e-4f04-9cc7-969ac102d5b4) + (property "Reference" "U1" (id 0) (at 469.9 222.25 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 469.9 224.79 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 467.36 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 467.36 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 00c8963f-9c13-4ea0-9e6e-7d0e75cab1af)) + (pin "2" (uuid 04ffd4f6-d637-47e5-8c62-80062e9d601e)) + (pin "3" (uuid 5e6493f0-8087-48c5-95df-a7962b10c9e1)) + (pin "4" (uuid c8c55de5-4527-4c4a-a328-6ef5f694cb51)) + (pin "5" (uuid 3afabae7-64e3-4a87-b44d-bcb945ca92b9)) + (pin "6" (uuid 8eca2eba-c2a7-48b2-ada4-4f6cd025f74c)) + (pin "7" (uuid 5eb1b86a-63ba-4629-bc84-9d25177e686e)) + (pin "8" (uuid 4c593b64-9cd4-49fb-bd2a-bb5cdab778df)) + (pin "9" (uuid 5f67796e-8775-4f19-b19d-4a998786ad6e)) + (pin "10" (uuid 2bd9aca2-4879-4a3f-af37-0ef6cbab156b)) + (pin "11" (uuid ffdc98fb-ab9e-4d78-be23-3584668d787d)) + (pin "12" (uuid 2105869b-4aef-4567-9556-60a66a6e561b)) + (pin "13" (uuid 5fa7f4b4-7c90-4adb-b703-719a3dc6657f)) + (pin "14" (uuid 0e81c337-af6f-4c8f-a5f9-cc159cdec256)) + (pin "15" (uuid 31b4f243-7dbb-4ce5-82e2-50936f0c3828)) + (pin "16" (uuid d4921a3e-30e2-4a82-8594-be8e958524dc)) + (pin "17" (uuid 6037a0fc-930a-4353-a486-2a627e894180)) + (pin "18" (uuid ba9ebe7f-153c-485f-90b1-a3592add827b)) + (pin "19" (uuid 1c2b58fa-fb4f-4848-a717-831ba6c1bb12)) + (pin "20" (uuid 2fa7d2a3-d4a7-4137-8f20-216bc91f72f6)) + (pin "21" (uuid e2053e84-c20c-464d-b1c9-07daa2ee228d)) + (pin "22" (uuid 8731359e-6394-451b-813e-d3eebe559c8a)) + (pin "23" (uuid fd7fe419-8c37-47e3-a207-c86216064231)) + (pin "24" (uuid 589b595c-b1e5-475d-b120-a49ccee9bf5d)) + (pin "25" (uuid 0aee7dbe-68e6-4720-8ad7-b62fe4e1a9f3)) + (pin "26" (uuid a77a58f3-4426-477b-95ee-508ba73cb2e4)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 488.95 285.75 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ada1db0b-510e-4c63-b3e8-ab860654d307) + (property "Reference" "U21" (id 0) (at 504.19 283.845 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 504.19 287.655 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 497.84 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 497.84 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e506eeb-7da0-4680-845c-a89721be6b81)) + (pin "2" (uuid ee270346-e31d-49f9-94e9-e4b6c09d214e)) + (pin "3" (uuid fabce84d-eddf-4dc8-aba4-bcb48d96ee69)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 542.29 307.34 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid af81e449-58f3-4824-8557-1cb6451f6f4c) + (property "Reference" "U25" (id 0) (at 544.83 306.07 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 544.83 309.88 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 541.02 308.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 308.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fe47456-b9f3-42a8-9dd1-6670dabd752d)) + (pin "2" (uuid 4ab850dd-e553-406b-9306-eb6ed4b81355)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 585.47 307.34 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b02955d4-e066-4d90-8ec8-79b5031d54d4) + (property "Reference" "U28" (id 0) (at 588.01 306.07 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 588.01 309.88 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 584.2 308.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 584.2 308.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fe6efa79-3a5a-48ef-8acc-33033368d6a8)) + (pin "2" (uuid daed736e-507e-4a5b-b081-a45154543c32)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 236.22 214.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b1aae155-7c85-43e0-b938-109ed4d055d5) + (property "Reference" "U1" (id 0) (at 238.76 214.63 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 238.76 217.17 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 236.22 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 236.22 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 72be6b92-3f39-4209-acb4-3fa7bd4a2e44)) + (pin "2" (uuid 948ad11b-1c5d-45a5-96d9-429e9e1917b0)) + (pin "3" (uuid 18411d0b-1353-4a37-99c5-515daf0e0465)) + (pin "4" (uuid 14bcd644-5e82-4413-8eb7-a79cea5680dc)) + (pin "5" (uuid 5ff208f1-e8d8-4427-81cd-fb41404d9d3b)) + (pin "6" (uuid 08997cd8-a41f-4b8c-8c1d-c02385543763)) + (pin "7" (uuid e70b979d-1df4-44e6-9fac-381b5583cbc3)) + (pin "8" (uuid 3a0aa68b-0a37-4f20-ac9e-3e29872ce212)) + (pin "9" (uuid 126184eb-57f8-4720-b778-5f63b6c16aec)) + (pin "10" (uuid 88e71e3f-e725-4e2a-9c39-b9399c4f7034)) + (pin "11" (uuid 4fcd65d5-720e-40d0-80da-4123431dc193)) + (pin "12" (uuid 0ed27b90-36bf-4a5d-860b-bef32c471a99)) + (pin "13" (uuid 1eb787e7-4c7d-4769-8b09-88d55d1deb32)) + (pin "14" (uuid 8a9b1b9b-6d02-4e6a-9296-3f50d6f1b6f5)) + (pin "15" (uuid 0cde2aec-dce3-4660-a898-258dfa6d0735)) + (pin "16" (uuid 35a4738a-74f1-4a73-84f2-1acf28dd0f5a)) + (pin "17" (uuid 6a788b56-7c7c-4bb8-914d-b840cd7d4567)) + (pin "18" (uuid 5cb92448-ed17-4c85-9204-a43edb993aed)) + (pin "19" (uuid d1e5ea96-5aa1-45ab-89c9-4bdf1c17b2ff)) + (pin "20" (uuid 38992bda-74a6-430b-bbd6-3428a43487c4)) + (pin "21" (uuid b6f2aa27-6dff-49f3-8e48-a93971133a4c)) + (pin "22" (uuid 60540f86-1ada-45ba-99b8-2df8b55f786a)) + (pin "23" (uuid 638aabf3-9f39-4eea-a08a-f44d0942588b)) + (pin "24" (uuid 4242805e-a9a6-4e2a-9998-dafcaee58a9e)) + (pin "25" (uuid 1707580e-0039-4822-9bf3-79bb054401d7)) + (pin "26" (uuid 509df3a9-0caa-4428-8756-ae0a97addd1c)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 397.51 285.75 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b72065c9-40f5-4c50-8d80-203f9536aa11) + (property "Reference" "U15" (id 0) (at 412.75 283.845 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 412.75 287.655 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 406.4 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 406.4 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2a813b1a-fdf2-4506-be8c-1248de7a215e)) + (pin "2" (uuid 7acb7e42-efb1-424d-af6e-370395d68a8f)) + (pin "3" (uuid dc51dc95-d138-457c-8999-3a475489452a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 180.34 302.26 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c861caa8-396f-479b-a183-6d4d548eb644) + (property "Reference" "U1" (id 0) (at 180.975 297.18 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 180.975 299.72 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 180.34 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 180.34 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d4b03ae-56d6-46c6-965f-e96200a72f77)) + (pin "2" (uuid 60553e04-6e2c-448e-991f-b8d6d7d68021)) + (pin "3" (uuid 8c85881c-c3db-4d1b-897c-ac6c0415279e)) + (pin "4" (uuid 0f98505f-ea48-4594-b312-14e05880f0fa)) + (pin "5" (uuid 746458d2-0194-4255-b544-6390b8ece59d)) + (pin "6" (uuid ffa81f89-6769-4d52-90fa-74035b8565c0)) + (pin "7" (uuid 20b5fec8-1278-4b6b-a780-2af68e90b209)) + (pin "8" (uuid 1181913c-51da-4f2c-b156-0b792daa9674)) + (pin "9" (uuid 2725349c-ba65-4ba6-8e6d-6a092e63180b)) + (pin "10" (uuid 86aa6826-5e4b-4768-b4f0-831eec584138)) + (pin "11" (uuid 306140de-55c5-4436-9406-579bfd0848c8)) + (pin "12" (uuid 4a388c59-ba0e-4d36-b5b5-9a1e9cdbe24a)) + (pin "13" (uuid daf4c945-5bfc-492f-b63a-09c990d05608)) + (pin "14" (uuid 09d7e0a0-2709-492a-aeda-2a381ea1f88a)) + (pin "15" (uuid c2c0f7d2-5410-4ef8-97ac-d131cde77829)) + (pin "16" (uuid 76b777e6-167b-4d56-bfe1-ec3c261dc69f)) + (pin "17" (uuid 3194a346-b6e7-466b-be83-0f5df14ec828)) + (pin "18" (uuid 036b4c2d-4a36-4698-a15b-01c8380ab963)) + (pin "19" (uuid 1b6742be-ad64-458a-904b-4db43dad11df)) + (pin "20" (uuid b80e8b6d-b2c1-45a6-b5d5-50ccfbc7893a)) + (pin "21" (uuid b0ea3db9-5ace-423e-ae84-f8a399247e9e)) + (pin "22" (uuid bee0c4c1-7bbf-40e7-8a36-c1582319d6ce)) + (pin "23" (uuid 3e2a8277-c88b-4640-a076-01fc4f95ec6b)) + (pin "24" (uuid 94937f7a-61db-4643-af24-3f8f567635d1)) + (pin "25" (uuid 8c091028-1482-4c62-a6fc-ca2ded3465c0)) + (pin "26" (uuid f13a3d85-a648-4564-8255-9ff01cde0c6f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 318.77 309.88 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cfe0bfb5-a260-4a8f-8f1b-d1b8adb7fd90) + (property "Reference" "U10" (id 0) (at 321.31 308.61 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 321.31 312.42 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 317.5 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 317.5 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ea904156-27c6-4b7a-a34b-90e82dbd7a52)) + (pin "2" (uuid c640f5de-620a-46e2-ac1c-cdb9d1502ef2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 497.84 331.47 90) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3b226c7-f7e9-4858-a77d-49663a5b6a80) + (property "Reference" "U1" (id 0) (at 500.38 330.2 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 500.38 332.74 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 497.84 331.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 497.84 331.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4b2a3c54-063c-4f5b-b180-43cae8f0f4ad)) + (pin "2" (uuid d8ba5ec7-c255-4a35-aa7a-4cad2e39d17a)) + (pin "3" (uuid 00bfa934-842d-4963-8f0d-adb1cee0a2c2)) + (pin "4" (uuid ebbde7ed-7348-4934-bab5-f4d8d9bd3f16)) + (pin "5" (uuid b0e4148a-a950-4023-9548-ea0d544f4b31)) + (pin "6" (uuid e52e842c-06d6-442f-9423-f085b40b6f23)) + (pin "7" (uuid 41b7e674-4d74-4795-b188-59b37dac45df)) + (pin "8" (uuid bc2dca32-fc1b-45c1-b4b4-42339a250af7)) + (pin "9" (uuid 18cd2b06-2ea5-4f41-8a25-401603688b9c)) + (pin "10" (uuid 5aead3a9-ca53-459a-b995-5f6f69b5dc7a)) + (pin "11" (uuid 6a969118-174a-4535-9f7b-9a25396e6cf8)) + (pin "12" (uuid 00da8b4b-faf7-4b6c-8e5e-49b5329f48d1)) + (pin "13" (uuid a8e934e1-080c-4679-b539-5e52aa2b1e8d)) + (pin "14" (uuid 2ce2cd92-7765-415e-9a2a-8ad96f89d0cd)) + (pin "15" (uuid 2e3d9d15-32cb-43db-97d5-1da90ea46b30)) + (pin "16" (uuid d1f42e61-e2ca-4dd5-bd8d-e07cfaaebf1f)) + (pin "17" (uuid 097bd327-fdb7-4fd6-8401-c9605efc607e)) + (pin "18" (uuid 24f12ba7-8717-4d6c-834a-89e319baae6a)) + (pin "19" (uuid 78b2042e-13c4-438d-b00c-a5d1daec0085)) + (pin "20" (uuid 662932e8-3342-4a3d-9b70-f8c8784e7c2b)) + (pin "21" (uuid 1cbc75b1-5bcf-48ce-b410-5c170acf81a3)) + (pin "22" (uuid a05fa746-81ea-411f-8bd0-257721ecb3d6)) + (pin "23" (uuid 357d9e56-0d69-4c61-9624-c79fe9dfa4b0)) + (pin "24" (uuid 69e33c9b-e822-403b-b0c4-6742437fcb7e)) + (pin "25" (uuid bc79e75f-d1a8-4507-b058-c2dbe6995fab)) + (pin "26" (uuid 7198e750-5eb4-4930-a8c8-e3552565372c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 318.77 332.74 90) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d5638f85-976c-4bf4-81ee-a28786deea78) + (property "Reference" "U1" (id 0) (at 321.31 331.47 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 321.31 334.01 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 318.77 332.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 318.77 332.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 35a16f00-1ab4-4a8e-badc-38760946bf70)) + (pin "2" (uuid 4526fbf0-4db1-45e0-a97d-6170801be131)) + (pin "3" (uuid 6bcfe9df-4f77-4200-a857-ec600e291d48)) + (pin "4" (uuid 09606ff2-5932-40e0-87d3-f73fb5d516a8)) + (pin "5" (uuid 9dd21350-6f61-4958-aea6-bafd83edbb3d)) + (pin "6" (uuid 3ecbac0d-ddfe-490c-98eb-162501b14637)) + (pin "7" (uuid a5b05fbb-0ef9-4914-a340-d8f9bd9dbce0)) + (pin "8" (uuid ffb5f4cc-a9d7-4713-b5dd-cd55c99613f3)) + (pin "9" (uuid 4bc76d8d-ea0c-4332-9016-7a5786b9cebb)) + (pin "10" (uuid b3a05668-cff3-482b-a811-d627856e806f)) + (pin "11" (uuid a88d6a94-773e-492a-9791-fd005f9a0ff4)) + (pin "12" (uuid 63c429bc-373b-4328-a3bc-0f25da3f3216)) + (pin "13" (uuid af15623c-1183-44f7-a9fc-1859922efbe1)) + (pin "14" (uuid af93416d-b182-4c45-b65b-90122fefa2c0)) + (pin "15" (uuid 87103a30-f92c-42c7-b396-209063305ff9)) + (pin "16" (uuid 740f0179-a4c7-4688-b3a0-1362ed54a67c)) + (pin "17" (uuid 2451b41b-d7c6-437c-a28a-367152928b09)) + (pin "18" (uuid 6fbbc87c-abaf-467c-9376-fc998cab7be7)) + (pin "19" (uuid 962bacc3-7048-49f2-a57e-687adb38cc16)) + (pin "20" (uuid aa8531dc-9fbc-473d-a5dc-96000f1dad04)) + (pin "21" (uuid 1f0baf58-405c-437c-b7f5-93cf043a00bb)) + (pin "22" (uuid 90890393-0032-4a26-a3b3-f37b225a2338)) + (pin "23" (uuid 3da01b36-26ec-4c1f-9de1-fb3459993f91)) + (pin "24" (uuid 4b9aa403-a6af-4417-8f2d-0e594782946a)) + (pin "25" (uuid b63d3f9c-2b8e-4132-8a23-5ea0cf34bbcc)) + (pin "26" (uuid e32b84df-0043-4119-8bf3-145020e83a1d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 214.63 302.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e20edf6c-d9ee-418b-bbc5-8ecaa01413bd) + (property "Reference" "U3" (id 0) (at 214.63 295.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 214.63 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 215.9 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 215.9 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ec632c70-fcd4-4cfd-bd9b-9232137e2e7c)) + (pin "2" (uuid e25b2d92-4b32-4f0a-aacb-9aa677ed5006)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 421.64 224.79 270) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e46de086-d346-4def-91e5-411b5eba8c3b) + (property "Reference" "U1" (id 0) (at 424.18 224.79 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 424.18 227.33 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 421.64 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 421.64 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dfd3d484-56bb-4231-8712-f677a411d765)) + (pin "2" (uuid 12fae12e-3b02-421c-8812-1414122f771a)) + (pin "3" (uuid 1297ebf5-4fe4-4a35-b84e-16f350af2a20)) + (pin "4" (uuid 42cec409-7642-4420-8cd2-eadb64f35710)) + (pin "5" (uuid 680a267a-9864-48b0-a1f4-0f82af251621)) + (pin "6" (uuid 47b30f08-2d43-4437-ae2a-668ccea1f98d)) + (pin "7" (uuid 340606b4-43c1-40e2-98e8-012e052b7dff)) + (pin "8" (uuid cd79832d-9cca-45fc-9c06-f55de123d4e2)) + (pin "9" (uuid e818926f-562d-4435-b60b-2fd53822836d)) + (pin "10" (uuid e7cc261c-249f-4b63-b7ab-6d91c571ac2f)) + (pin "11" (uuid 0c1791ab-6c83-4fd6-a974-4b70f6a0874c)) + (pin "12" (uuid 4e7a6e19-a5ec-4b9a-8821-087e8ed4b10e)) + (pin "13" (uuid e2689c19-2e2c-4ff3-b773-5d3f2ffab11e)) + (pin "14" (uuid cf8bd720-e951-4c50-8ee0-32507f37fce2)) + (pin "15" (uuid 097ee63f-8637-4422-9646-939e486c9bf7)) + (pin "16" (uuid 38215af8-8688-4a67-b086-1e106a110523)) + (pin "17" (uuid 8b39fe03-b30c-4fbd-9c55-44a500b4068d)) + (pin "18" (uuid 0ec7fc7f-fc17-4735-848d-17e27696d061)) + (pin "19" (uuid bc11249f-1928-4d90-b218-23555565ca48)) + (pin "20" (uuid 5619debb-f3fc-43bc-8a1d-eab9075f7a26)) + (pin "21" (uuid 78555a2f-eb30-436b-8ba5-733e14cc5490)) + (pin "22" (uuid daf9766b-6d28-4eac-93d9-e3ee3dc4458a)) + (pin "23" (uuid 174f92c9-4d1a-4b23-bfe7-d1ccc879a34f)) + (pin "24" (uuid 9f822fa6-3766-4783-bb78-0aff2930710f)) + (pin "25" (uuid 106cf5a3-365b-439a-a723-b9948f36e33a)) + (pin "26" (uuid a55936c9-eb98-457d-bab3-0e3f074a1bdb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 542.29 332.74 90) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ec80bbb9-5fde-441f-adcc-d4d8d791ec68) + (property "Reference" "U1" (id 0) (at 544.83 331.47 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 544.83 334.01 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 542.29 332.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 542.29 332.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 299ae978-bffc-4c86-8bc7-4bc7d516f640)) + (pin "2" (uuid faad7159-74d2-4625-88b9-a3594f7dcfa4)) + (pin "3" (uuid ad962527-424e-4991-8cef-9a9dab6713d0)) + (pin "4" (uuid 60a776e9-086f-4cef-89e3-4d6e88426f64)) + (pin "5" (uuid f127e405-38dd-4efa-9709-dc2705082684)) + (pin "6" (uuid d771a1ef-4f4d-4c36-ad37-7e67a4a1b671)) + (pin "7" (uuid f8f4224c-3e0b-4c5a-948a-c2e2b658abe8)) + (pin "8" (uuid 29d5a0dc-57ef-4585-b2bc-a3527fb4de7e)) + (pin "9" (uuid 96e836bd-6031-4baa-81bf-4597f6fdef52)) + (pin "10" (uuid ad4409f0-58ea-4cee-9b86-5c4d54abaea6)) + (pin "11" (uuid 8f71a7fa-36c8-41e6-84bf-73c8c7126982)) + (pin "12" (uuid 2127fea9-eec2-417d-83d0-d32f77de0d98)) + (pin "13" (uuid 0e0de040-8f12-428d-92eb-10a4ba2defd7)) + (pin "14" (uuid e4374059-6251-424c-8679-56fd129f53c4)) + (pin "15" (uuid 3efe594d-e25e-4367-b5af-20303a02c9a9)) + (pin "16" (uuid 3313bf84-15da-4f07-9233-3547b4887123)) + (pin "17" (uuid 71f823fb-23f7-4497-88f6-ff19d2eff8ca)) + (pin "18" (uuid 34b700ba-9c6d-47b4-9f4f-0afac4d7efa6)) + (pin "19" (uuid 08b71bbd-4291-405e-b4c1-7e5bf50f9b19)) + (pin "20" (uuid 6a8ed54f-5349-4446-85a2-3a0c6269eb42)) + (pin "21" (uuid 5ae1bfbb-3d5d-40c7-a8ac-8f9d3fcac204)) + (pin "22" (uuid f52c135c-8a75-4677-9382-377f9785f95c)) + (pin "23" (uuid 92d466d2-3592-4d9e-bcf2-6002fd564981)) + (pin "24" (uuid 7980471d-3725-4f07-817d-e24055e46145)) + (pin "25" (uuid 250da69e-277f-4cb8-8eb8-8c290e08d5e2)) + (pin "26" (uuid 42124b71-9f86-4624-a94e-fa99d49d4060)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 309.88 287.02 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed7a3fa4-a8a9-4289-9953-4511504ae01b) + (property "Reference" "U9" (id 0) (at 325.12 285.115 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 325.12 288.925 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 318.77 284.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 318.77 284.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3f9b84f8-5aab-43f0-8483-6fbdaa878a59)) + (pin "2" (uuid 42f64c7b-44c9-4451-b49e-9d47da8ec755)) + (pin "3" (uuid f1aef0ab-ea6f-48bd-884d-085fcf6ca377)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 273.05 309.88 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f53a8c45-9d53-4508-96ce-c972fff7da65) + (property "Reference" "U7" (id 0) (at 275.59 308.61 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 275.59 312.42 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 271.78 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 246959c4-d62f-408e-9793-f8cb1f925679)) + (pin "2" (uuid 00b1c8ea-bc99-4a29-9a59-ae2143891d9d)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 576.58 284.48 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fca35eb6-e646-41da-a3c8-9de3d2718a83) + (property "Reference" "U27" (id 0) (at 591.82 282.575 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 591.82 286.385 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 585.47 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 585.47 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 981a8c42-e413-46f6-a871-f87ae1260457)) + (pin "2" (uuid f8feb09d-05fa-42cb-a84c-7512f2fe7395)) + (pin "3" (uuid d04f630f-7f6c-4bb9-87ba-ed431165997c)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/b1aae155-7c85-43e0-b938-109ed4d055d5" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/7680119e-f4a0-4cf8-a843-a6f9ad4eb23f" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/37fca1e2-1f3d-455b-a49c-6126c2ccacec" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/57551d53-97d5-46cb-a53f-7ce93e363830" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/e46de086-d346-4def-91e5-411b5eba8c3b" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/ad87af60-9c4e-4f04-9cc7-969ac102d5b4" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/549db5a7-d384-4516-bfa5-62de4c296eb4" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/50d90843-6c2e-4ef0-b871-5bc6efbbd713" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/9723b7b9-a20a-4b99-be22-669e37d50556" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/c861caa8-396f-479b-a183-6d4d548eb644" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/1b6ec2b8-b091-40f1-8e73-02ebf1f93b73" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/ec80bbb9-5fde-441f-adcc-d4d8d791ec68" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/d3b226c7-f7e9-4858-a77d-49663a5b6a80" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/6ff4274a-68c9-46a6-8a7d-e1583eb6dc28" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/82135245-0208-481d-9fad-36d082465ef4" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/30bfed1b-e130-4def-afef-827bcda4d20f" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/d5638f85-976c-4bf4-81ee-a28786deea78" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/6fddae7c-c312-4a9f-9a23-ac773f49e9f6" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/3e3b4ce9-5170-495e-b426-ad943c5b5756" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e20edf6c-d9ee-418b-bbc5-8ecaa01413bd" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/68895d7e-b009-4e31-a25b-50f4a597ef70" + (reference "U4") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/370907f2-dd80-485e-8c30-a242de9be6f5" + (reference "U5") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/849fc6ae-3be9-4ca8-ad34-3cb786c2a720" + (reference "U6") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/f53a8c45-9d53-4508-96ce-c972fff7da65" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7d0750aa-dea5-4c85-a2b1-8e8be4ecdc6b" + (reference "U8") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/ed7a3fa4-a8a9-4289-9953-4511504ae01b" + (reference "U9") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/cfe0bfb5-a260-4a8f-8f1b-d1b8adb7fd90" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/71777415-3f20-414a-ae3f-3c4fd42fb21b" + (reference "U11") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/1568d3c4-86dd-4b77-bb60-60c942686580" + (reference "U12") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/8598e3a8-0e66-4cd5-9eb1-a18d6de7f2d0" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/23841a41-932a-433b-8174-ea2807c16274" + (reference "U14") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/b72065c9-40f5-4c50-8d80-203f9536aa11" + (reference "U15") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/3f1cd832-8e9c-4ff9-92f1-c6631861f536" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/386facbf-3e0d-4048-a622-6c0c69f64c0b" + (reference "U17") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/74b7448b-c37e-47b4-a657-af41d172500e" + (reference "U18") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/0a0cfd53-3071-4eef-98fc-685400b295b5" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5ed8310a-25d1-42a7-9ba3-f236fac34571" + (reference "U20") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/ada1db0b-510e-4c63-b3e8-ab860654d307" + (reference "U21") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/110fbde8-5a7a-4080-aca8-07adb2fb76dc" + (reference "U22") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7c428c5b-a48b-4a57-8a3b-27c782eee805" + (reference "U23") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/994607de-8067-422c-8c08-28722a7a73c0" + (reference "U24") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/af81e449-58f3-4824-8557-1cb6451f6f4c" + (reference "U25") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5048d7cb-d8b3-4568-bc9a-242ac4ccc9f5" + (reference "U26") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/fca35eb6-e646-41da-a3c8-9de3d2718a83" + (reference "U27") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/b02955d4-e066-4d90-8ec8-79b5031d54d4" + (reference "U28") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.sub b/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.sub new file mode 100644 index 000000000..e0702553b --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533.sub @@ -0,0 +1,114 @@ +* Subcircuit IC_CD74HC533 +.subckt IC_CD74HC533 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ +.title kicad schematic +* u18 net-_u17-pad5_ net-_u12-pad2_ net-_u18-pad3_ d_tristate +* u21 net-_u20-pad5_ net-_u12-pad2_ net-_u21-pad3_ d_tristate +* u19 net-_u18-pad3_ net-_u1-pad14_ d_inverter +* u22 net-_u21-pad3_ net-_u1-pad13_ d_inverter +* u17 net-_u1-pad5_ net-_u11-pad2_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_dlatch +* u20 net-_u1-pad6_ net-_u11-pad2_ unconnected-_u20-pad3_ unconnected-_u20-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ d_dlatch +* u26 net-_u1-pad8_ net-_u11-pad2_ unconnected-_u26-pad3_ unconnected-_u26-pad4_ net-_u26-pad5_ unconnected-_u26-pad6_ d_dlatch +* u25 net-_u24-pad3_ net-_u1-pad12_ d_inverter +* u24 net-_u23-pad5_ net-_u12-pad2_ net-_u24-pad3_ d_tristate +* u23 net-_u1-pad7_ net-_u11-pad2_ unconnected-_u23-pad3_ unconnected-_u23-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ d_dlatch +* u28 net-_u27-pad3_ net-_u1-pad11_ d_inverter +* u27 net-_u26-pad5_ net-_u12-pad2_ net-_u27-pad3_ d_tristate +* u6 net-_u5-pad5_ net-_u12-pad2_ net-_u6-pad3_ d_tristate +* u5 net-_u1-pad1_ net-_u11-pad2_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ d_dlatch +* u4 net-_u3-pad2_ net-_u12-pad2_ d_buffer +* u2 net-_u1-pad9_ net-_u11-pad2_ d_inverter +* u3 net-_u1-pad10_ net-_u3-pad2_ d_inverter +* u15 net-_u14-pad5_ net-_u12-pad2_ net-_u15-pad3_ d_tristate +* u11 net-_u1-pad3_ net-_u11-pad2_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ d_dlatch +* u14 net-_u1-pad4_ net-_u11-pad2_ unconnected-_u14-pad3_ unconnected-_u14-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_dlatch +* u16 net-_u15-pad3_ net-_u1-pad15_ d_inverter +* u8 net-_u1-pad2_ net-_u11-pad2_ unconnected-_u8-pad3_ unconnected-_u8-pad4_ net-_u8-pad5_ unconnected-_u8-pad6_ d_dlatch +* u12 net-_u11-pad5_ net-_u12-pad2_ net-_u12-pad3_ d_tristate +* u13 net-_u12-pad3_ net-_u1-pad16_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad18_ d_inverter +* u9 net-_u8-pad5_ net-_u12-pad2_ net-_u10-pad1_ d_tristate +* u10 net-_u10-pad1_ net-_u1-pad17_ d_inverter +a1 net-_u17-pad5_ net-_u12-pad2_ net-_u18-pad3_ u18 +a2 net-_u20-pad5_ net-_u12-pad2_ net-_u21-pad3_ u21 +a3 net-_u18-pad3_ net-_u1-pad14_ u19 +a4 net-_u21-pad3_ net-_u1-pad13_ u22 +a5 net-_u1-pad5_ net-_u11-pad2_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a6 net-_u1-pad6_ net-_u11-pad2_ unconnected-_u20-pad3_ unconnected-_u20-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ u20 +a7 net-_u1-pad8_ net-_u11-pad2_ unconnected-_u26-pad3_ unconnected-_u26-pad4_ net-_u26-pad5_ unconnected-_u26-pad6_ u26 +a8 net-_u24-pad3_ net-_u1-pad12_ u25 +a9 net-_u23-pad5_ net-_u12-pad2_ net-_u24-pad3_ u24 +a10 net-_u1-pad7_ net-_u11-pad2_ unconnected-_u23-pad3_ unconnected-_u23-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ u23 +a11 net-_u27-pad3_ net-_u1-pad11_ u28 +a12 net-_u26-pad5_ net-_u12-pad2_ net-_u27-pad3_ u27 +a13 net-_u5-pad5_ net-_u12-pad2_ net-_u6-pad3_ u6 +a14 net-_u1-pad1_ net-_u11-pad2_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ u5 +a15 net-_u3-pad2_ net-_u12-pad2_ u4 +a16 net-_u1-pad9_ net-_u11-pad2_ u2 +a17 net-_u1-pad10_ net-_u3-pad2_ u3 +a18 net-_u14-pad5_ net-_u12-pad2_ net-_u15-pad3_ u15 +a19 net-_u1-pad3_ net-_u11-pad2_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ u11 +a20 net-_u1-pad4_ net-_u11-pad2_ unconnected-_u14-pad3_ unconnected-_u14-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a21 net-_u15-pad3_ net-_u1-pad15_ u16 +a22 net-_u1-pad2_ net-_u11-pad2_ unconnected-_u8-pad3_ unconnected-_u8-pad4_ net-_u8-pad5_ unconnected-_u8-pad6_ u8 +a23 net-_u11-pad5_ net-_u12-pad2_ net-_u12-pad3_ u12 +a24 net-_u12-pad3_ net-_u1-pad16_ u13 +a25 net-_u6-pad3_ net-_u1-pad18_ u7 +a26 net-_u8-pad5_ net-_u12-pad2_ net-_u10-pad1_ u9 +a27 net-_u10-pad1_ net-_u1-pad17_ u10 +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u18 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u21 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u22 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u17 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u20 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u26 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u24 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u23 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u28 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u27 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u5 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u15 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u11 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u14 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u8 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u12 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u9 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends IC_CD74HC533 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533_Previous_Values.xml b/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533_Previous_Values.xml new file mode 100644 index 000000000..637759b65 --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74HC533/IC_CD74HC533_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_tristated_tristated_inverterd_inverterd_dlatchd_dlatchd_dlatchd_inverterd_tristated_dlatchd_inverterd_tristated_tristated_dlatchd_bufferd_inverterd_inverterd_tristated_dlatchd_dlatchd_inverterd_dlatchd_tristated_inverterd_inverterd_tristated_inverter \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_CD74HC533/README_IC_CD74HC533.md b/library/SubcircuitLibrary/IC_CD74HC533/README_IC_CD74HC533.md new file mode 100644 index 000000000..f2d12aa42 --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74HC533/README_IC_CD74HC533.md @@ -0,0 +1,27 @@ +# IC_CD74HC533 Octal D-Type Transparent Latch with 3-State Inverting Outputs + +IC_CD74HC533 is an octal D-type transparent latch featuring 3-state inverting outputs. The device stores eight bits of data while the latch enable is active and holds the data when disabled. Tristate outputs allow direct bus connection without contention. + +## Usage/Examples + +- Data storage registers +- Bus-oriented systems +- Memory interfacing circuits +- Embedded controllers +- Digital communication systems +- Data buffering applications + +## Documentation + +To know the details of IC_CD74HC533 please go through the documentation: [CD74HC533 Datasheet](https://www.ti.com/lit/ds/symlink/cd74hc533.pdf) + +## Comments/Notes + +Please note this is a high-speed CMOS latch IC with inverting tristate outputs. The subcircuit uses d_latch, d_inverter, and d_tristate elements. When Latch Enable is HIGH, outputs track (and invert) the inputs; when LOW, outputs hold the last data. Output Enable LOW activates the outputs; HIGH puts them in Hi-Z. + +## Contributor + +Name: Santhosh C +Email: santhoshc.vlsi2024@citchennai.net +Year: 2026 +Position: FOSSEE eSim Intern 2026 diff --git a/library/SubcircuitLibrary/IC_CD74HC533/analysis b/library/SubcircuitLibrary/IC_CD74HC533/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_CD74HC533/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.cir b/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.cir new file mode 100644 index 000000000..6a437e9db --- /dev/null +++ b/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.cir @@ -0,0 +1,19 @@ +.title KiCad schematic +U9 Net-_U1-Pad4_ Net-_U4-Pad2_ Net-_U15-Pad1_ d_tristate +U10 Net-_U1-Pad5_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_tristate +U11 Net-_U1-Pad6_ Net-_U10-Pad2_ Net-_U11-Pad3_ d_tristate +U3 Net-_U1-Pad8_ Net-_U3-Pad2_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U17-Pad2_ Net-_U16-Pad2_ Net-_U15-Pad2_ Net-_U14-Pad2_ Net-_U13-Pad2_ Net-_U12-Pad2_ PORT +U2 Net-_U1-Pad7_ Net-_U2-Pad2_ d_inverter +U15 Net-_U15-Pad1_ Net-_U15-Pad2_ d_inverter +U17 Net-_U11-Pad3_ Net-_U17-Pad2_ d_inverter +U16 Net-_U10-Pad3_ Net-_U16-Pad2_ d_inverter +U4 Net-_U2-Pad2_ Net-_U4-Pad2_ d_buffer +U5 Net-_U3-Pad2_ Net-_U10-Pad2_ d_buffer +U8 Net-_U1-Pad3_ Net-_U4-Pad2_ Net-_U14-Pad1_ d_tristate +U13 Net-_U13-Pad1_ Net-_U13-Pad2_ d_inverter +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ d_inverter +U6 Net-_U1-Pad1_ Net-_U4-Pad2_ Net-_U12-Pad1_ d_tristate +U7 Net-_U1-Pad2_ Net-_U4-Pad2_ Net-_U13-Pad1_ d_tristate +U14 Net-_U14-Pad1_ Net-_U14-Pad2_ d_inverter +.end diff --git a/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.cir.out b/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.cir.out new file mode 100644 index 000000000..deea8a184 --- /dev/null +++ b/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.cir.out @@ -0,0 +1,76 @@ +.title kicad schematic + +* u9 net-_u1-pad4_ net-_u4-pad2_ net-_u15-pad1_ d_tristate +* u10 net-_u1-pad5_ net-_u10-pad2_ net-_u10-pad3_ d_tristate +* u11 net-_u1-pad6_ net-_u10-pad2_ net-_u11-pad3_ d_tristate +* u3 net-_u1-pad8_ net-_u3-pad2_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u17-pad2_ net-_u16-pad2_ net-_u15-pad2_ net-_u14-pad2_ net-_u13-pad2_ net-_u12-pad2_ port +* u2 net-_u1-pad7_ net-_u2-pad2_ d_inverter +* u15 net-_u15-pad1_ net-_u15-pad2_ d_inverter +* u17 net-_u11-pad3_ net-_u17-pad2_ d_inverter +* u16 net-_u10-pad3_ net-_u16-pad2_ d_inverter +* u4 net-_u2-pad2_ net-_u4-pad2_ d_buffer +* u5 net-_u3-pad2_ net-_u10-pad2_ d_buffer +* u8 net-_u1-pad3_ net-_u4-pad2_ net-_u14-pad1_ d_tristate +* u13 net-_u13-pad1_ net-_u13-pad2_ d_inverter +* u12 net-_u12-pad1_ net-_u12-pad2_ d_inverter +* u6 net-_u1-pad1_ net-_u4-pad2_ net-_u12-pad1_ d_tristate +* u7 net-_u1-pad2_ net-_u4-pad2_ net-_u13-pad1_ d_tristate +* u14 net-_u14-pad1_ net-_u14-pad2_ d_inverter +a1 net-_u1-pad4_ net-_u4-pad2_ net-_u15-pad1_ u9 +a2 net-_u1-pad5_ net-_u10-pad2_ net-_u10-pad3_ u10 +a3 net-_u1-pad6_ net-_u10-pad2_ net-_u11-pad3_ u11 +a4 net-_u1-pad8_ net-_u3-pad2_ u3 +a5 net-_u1-pad7_ net-_u2-pad2_ u2 +a6 net-_u15-pad1_ net-_u15-pad2_ u15 +a7 net-_u11-pad3_ net-_u17-pad2_ u17 +a8 net-_u10-pad3_ net-_u16-pad2_ u16 +a9 net-_u2-pad2_ net-_u4-pad2_ u4 +a10 net-_u3-pad2_ net-_u10-pad2_ u5 +a11 net-_u1-pad3_ net-_u4-pad2_ net-_u14-pad1_ u8 +a12 net-_u13-pad1_ net-_u13-pad2_ u13 +a13 net-_u12-pad1_ net-_u12-pad2_ u12 +a14 net-_u1-pad1_ net-_u4-pad2_ net-_u12-pad1_ u6 +a15 net-_u1-pad2_ net-_u4-pad2_ net-_u13-pad1_ u7 +a16 net-_u14-pad1_ net-_u14-pad2_ u14 +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u9 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u10 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u11 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u8 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u7 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.kicad_sch b/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.kicad_sch new file mode 100644 index 000000000..5aee50533 --- /dev/null +++ b/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.kicad_sch @@ -0,0 +1,1468 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 9fc349f8-cffa-4943-b521-956ec7906ac5) + + (paper "A0") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_tristate" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -6.35 6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at -5.08 11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_tristate_0_1" + (polyline + (pts + (xy -10.16 13.97) + (xy -10.16 3.81) + (xy 8.89 8.89) + (xy -10.16 13.97) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_tristate_1_1" + (pin input line (at -15.24 8.89 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -1.27 1.27 90) (length 4.9022) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 485.14 328.93) (diameter 0) (color 0 0 0 0) + (uuid 5258d3e4-e67e-40e0-8bbf-40b07d6d592c) + ) + (junction (at 485.14 369.57) (diameter 0) (color 0 0 0 0) + (uuid ab4478cd-c846-4a1a-b343-868ef54e8114) + ) + (junction (at 485.14 349.25) (diameter 0) (color 0 0 0 0) + (uuid bcfab034-d519-4594-a39c-4052b6ff18bb) + ) + (junction (at 488.95 412.75) (diameter 0) (color 0 0 0 0) + (uuid f8b227b0-1c8f-44e4-9bed-a2fbde8cba85) + ) + + (wire (pts (xy 485.14 328.93) (xy 485.14 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10acd2b2-d640-438a-bf1d-2054d4ef0f9d) + ) + (wire (pts (xy 542.29 321.31) (xy 562.61 321.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14155d58-3210-43e5-b760-53cefd64505d) + ) + (wire (pts (xy 485.14 369.57) (xy 508 369.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1534f5f1-f32b-4a8f-b5da-48c719d8c81a) + ) + (wire (pts (xy 431.8 430.53) (xy 436.88 430.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17307fc9-059e-44ea-ab76-c9c20c43bfa1) + ) + (wire (pts (xy 485.14 307.34) (xy 506.73 307.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1810413a-3625-4c29-921b-b7ce761c4bae) + ) + (wire (pts (xy 488.95 391.16) (xy 488.95 412.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 257eec18-64e7-4bdb-b13d-03d63a0e04cf) + ) + (wire (pts (xy 458.47 341.63) (xy 494.03 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26d2516b-3e86-4a09-b77c-2e954171ed8e) + ) + (wire (pts (xy 488.95 412.75) (xy 488.95 448.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27394451-f331-429b-8afa-720b5a6eabf8) + ) + (wire (pts (xy 488.95 391.16) (xy 508 391.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3519d643-a576-4429-b535-4f24f5cf79d0) + ) + (wire (pts (xy 523.24 405.13) (xy 528.32 405.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 365774b5-d53a-4206-a588-c65372d854fc) + ) + (wire (pts (xy 508 349.25) (xy 485.14 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b3619e5-f4d8-49c4-b6fb-7a7483d9003d) + ) + (wire (pts (xy 523.24 383.54) (xy 528.32 383.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3eae205c-d735-45d4-b09d-c46774f30b5e) + ) + (wire (pts (xy 542.29 299.72) (xy 560.07 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4720e7cd-b1b4-4308-a544-c0a3515fae46) + ) + (wire (pts (xy 521.97 299.72) (xy 527.05 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57073a0f-17c1-4973-80ac-5f8ba0259fda) + ) + (wire (pts (xy 485.14 369.57) (xy 485.14 430.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 661543fc-83d2-4bd5-86da-e4ad90f7b844) + ) + (wire (pts (xy 485.14 448.31) (xy 488.95 448.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68fb4504-2909-4253-a238-67be6bdf062a) + ) + (wire (pts (xy 543.56 341.63) (xy 563.88 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73120513-587b-472a-af4a-b6f0ccac29d4) + ) + (wire (pts (xy 453.39 448.31) (xy 455.93 448.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79044646-d525-4d40-96ce-223c14f5d840) + ) + (wire (pts (xy 485.14 307.34) (xy 485.14 328.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ae3fca2-f19a-4e7c-b364-3af58045792b) + ) + (wire (pts (xy 433.07 448.31) (xy 438.15 448.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d8cb1b7-e84d-445e-b258-23ce5aadc551) + ) + (wire (pts (xy 458.47 361.95) (xy 494.03 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ae2cd83-f846-4e39-9507-2f0598b72a1f) + ) + (wire (pts (xy 523.24 341.63) (xy 528.32 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97652875-fa10-42be-a97d-2b4bb9e32891) + ) + (wire (pts (xy 543.56 383.54) (xy 563.88 383.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b10b7a21-c708-4cfb-90a5-0e79bd35af3e) + ) + (wire (pts (xy 461.01 405.13) (xy 494.03 405.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b92d0bae-0251-4b5a-bc93-d4168a8819ce) + ) + (wire (pts (xy 459.74 383.54) (xy 494.03 383.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bad136dd-de99-40a6-ad29-7865db8ef5f9) + ) + (wire (pts (xy 508 412.75) (xy 488.95 412.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbb1e124-620f-4013-a908-f0406462f842) + ) + (wire (pts (xy 523.24 321.31) (xy 527.05 321.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ccdd3e0c-c52d-468c-bc15-b5c9fb23ee9e) + ) + (wire (pts (xy 485.14 349.25) (xy 485.14 369.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce26bf26-3cf8-4937-85a5-07c38f135fbd) + ) + (wire (pts (xy 452.12 430.53) (xy 455.93 430.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5d91434-2f74-4d0f-9885-1a808ef7fa7c) + ) + (wire (pts (xy 455.93 299.72) (xy 492.76 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6cbd692-7823-4b0c-891b-ceb1a2c340cf) + ) + (wire (pts (xy 457.2 321.31) (xy 494.03 321.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de98d274-315a-413f-9637-683ca09d908b) + ) + (wire (pts (xy 543.56 361.95) (xy 565.15 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4cdd44c-f312-458b-9e26-26d565d38d73) + ) + (wire (pts (xy 543.56 405.13) (xy 563.88 405.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd602af4-8e1e-4192-a888-7b5437c3be7e) + ) + (wire (pts (xy 508 328.93) (xy 485.14 328.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdca0b74-1f48-4e7d-a88e-7c34ada6acdc) + ) + (wire (pts (xy 523.24 361.95) (xy 528.32 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe1425ea-84be-4e5d-9065-2735031802ea) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 570.23 341.63 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 163e7587-c7a8-433e-9d43-5c9cb26ac0d4) + (property "Reference" "U1" (id 0) (at 574.04 340.995 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 574.04 343.535 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 570.23 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 570.23 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87d17b2d-d9fc-49f4-9428-f468ab8f5a71)) + (pin "2" (uuid 934b2d5e-e07f-4c52-ad73-bfcf081077ef)) + (pin "3" (uuid 7d90f1bf-3cad-498a-8abe-4d828d2d3d2f)) + (pin "4" (uuid 239efcff-e450-465a-9b3c-9b1e2335eb31)) + (pin "5" (uuid cd2145e0-af71-4207-99e5-b1db3e0f7d5f)) + (pin "6" (uuid 0c6a2af6-a493-4c5b-b742-de1c9c6d7812)) + (pin "7" (uuid a562fe6a-f942-475b-973c-82edc51bacd9)) + (pin "8" (uuid 31e58ca7-ea00-40ac-8d36-0820f551a479)) + (pin "9" (uuid 204dad3f-64c2-439c-97dd-2cc63a0c985d)) + (pin "10" (uuid 25f612c3-6ae7-41c8-b1bb-08a5fb86edc7)) + (pin "11" (uuid aaa3ef33-d8dc-481d-b3c6-85a22da0552b)) + (pin "12" (uuid da26528d-721d-43b9-87ff-addb953c8601)) + (pin "13" (uuid d53d7fd2-0e33-4e9f-86f4-caa224350498)) + (pin "14" (uuid e9c03e14-6bc5-4bc5-aea3-b2af3b460e84)) + (pin "15" (uuid 779b2e56-60cc-4544-bab7-b3c368f2782c)) + (pin "16" (uuid 80ee8deb-a97c-49ff-b265-4a46c34e1626)) + (pin "17" (uuid c33738d6-6351-483a-b5c6-f1aabc8d3097)) + (pin "18" (uuid 4594331f-8e6c-42ee-807d-07f752c03a18)) + (pin "19" (uuid 78f11d54-5056-4d3c-87b3-4d526497e677)) + (pin "20" (uuid 124f19ee-0f27-480c-b250-6e24ff98b4cb)) + (pin "21" (uuid 78965586-559d-4d4f-a3ce-8b64e200ef95)) + (pin "22" (uuid 9992f284-0140-4efc-9e25-763d7ca39be4)) + (pin "23" (uuid 024e6877-086c-4fc4-8d59-05ac3267308d)) + (pin "24" (uuid 58d477e3-7060-4a7c-b230-b93f28e150ae)) + (pin "25" (uuid e022b552-c0e9-4add-86d8-8f8ef657d1d1)) + (pin "26" (uuid 89196d20-0696-48df-bd5c-7cc4e1d5ea8b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 426.72 448.31 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1def826d-8b6f-44a0-853d-92d07529ed38) + (property "Reference" "U1" (id 0) (at 427.355 443.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 427.355 445.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 426.72 448.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 426.72 448.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 13bf76cd-4ff5-4e60-a30f-d273b038cfbc)) + (pin "2" (uuid a1f8c2f3-255d-412f-bcd1-5f9535d5080e)) + (pin "3" (uuid 3685e661-c2f4-42e8-b7a6-647375c64608)) + (pin "4" (uuid 722e5d14-d7da-4b4a-9e9b-1c54fd8ce871)) + (pin "5" (uuid 9541c2cf-3544-44d5-ad7b-54834922ffb0)) + (pin "6" (uuid 44464da5-5f1c-47fe-9910-31f164652251)) + (pin "7" (uuid c1e856eb-cc20-45b8-8228-c9e1886cd4fa)) + (pin "8" (uuid cddfe840-8196-454c-a486-37524d795f30)) + (pin "9" (uuid c5632ea6-8b21-4669-8e16-3bba6a1f4a1a)) + (pin "10" (uuid 5328661a-e2b6-46c5-b98c-be5f88952ce7)) + (pin "11" (uuid 9bd9709c-d671-4495-918c-ee193f85bc50)) + (pin "12" (uuid 907099ff-a404-49f3-bba1-dfc28eca4671)) + (pin "13" (uuid cfca93cb-aae5-4e05-8cab-b12a3839066d)) + (pin "14" (uuid d07be2af-4bb9-4b61-8332-e6322c7d52c9)) + (pin "15" (uuid 01f9f045-e330-4ee7-8c55-7666da8581b5)) + (pin "16" (uuid 569943eb-ebe6-4d8d-a7b1-b64f06a4eb32)) + (pin "17" (uuid 00c65453-44fb-4d44-8d78-0a0ab6d43cde)) + (pin "18" (uuid 71b166a9-6371-48db-846c-8f2894511d7a)) + (pin "19" (uuid 83342b6c-eea5-4bb8-a72b-595128702061)) + (pin "20" (uuid a8c7a117-d9c3-41c8-a75b-03882af8247b)) + (pin "21" (uuid 4ce5716e-9e5c-4408-a005-c6ce2f74054a)) + (pin "22" (uuid 66985e12-705f-42ce-b55e-a96a135d1c8a)) + (pin "23" (uuid 0ea208a0-8458-4f8a-b827-87708b31ec5b)) + (pin "24" (uuid 2ea054f3-c242-4799-9093-ad6a4cad7bf1)) + (pin "25" (uuid 6eae81fd-2f93-4a60-aeb4-3211b08742aa)) + (pin "26" (uuid 6800c6ad-3eb4-4918-b804-37044fc77289)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 509.27 350.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 20ee6bde-6aa7-43b8-970c-2c839f6758c8) + (property "Reference" "U8" (id 0) (at 508.635 331.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 508.635 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 506.73 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 506.73 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cb76ce64-e3bd-43f3-a532-8ce3ddd32a2f)) + (pin "2" (uuid dd96dd55-4d3e-4f43-b070-bd9c862ea5b6)) + (pin "3" (uuid ae0027f4-50c3-4e3c-bdbe-5f9b2ad6f846)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 568.96 321.31 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 23756e76-3140-41dd-8773-166ece38daa8) + (property "Reference" "U1" (id 0) (at 572.77 320.675 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 572.77 323.215 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 568.96 321.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 568.96 321.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5889f059-8ddf-4b4d-85b9-ce12bd0a9ebf)) + (pin "2" (uuid 928d82c8-55c1-42ce-a59a-764681faa345)) + (pin "3" (uuid 7e5c21b8-7d48-4d12-8a18-810111644f59)) + (pin "4" (uuid 68bae21d-f997-455e-a6e9-d161bb79ca71)) + (pin "5" (uuid 1daaebc9-279d-4379-834f-43ab08aee31f)) + (pin "6" (uuid eb710ed0-acdd-48df-ab23-787e1685878c)) + (pin "7" (uuid 1066a92a-79d1-498e-ba81-25e4b20eee59)) + (pin "8" (uuid ea99a87d-f0c5-4fe4-a1ce-da2bb9984bbb)) + (pin "9" (uuid 08cb4bdd-430e-4b87-bd3e-f894b45e0300)) + (pin "10" (uuid bc2df412-297d-4319-96bb-2da0233309be)) + (pin "11" (uuid 2dd89011-3bea-4250-9461-c0a46a240aaf)) + (pin "12" (uuid a9171f33-20fe-4b30-9fc5-b3c7f93d9360)) + (pin "13" (uuid 9f6059c6-a899-4af7-a450-3b669291d830)) + (pin "14" (uuid 72c4bd27-c283-414e-af96-83a56422b848)) + (pin "15" (uuid dfe8451c-d0bf-4d31-a917-910528f5a324)) + (pin "16" (uuid a9f8381c-08f3-4aeb-b0c4-6fb0d95607de)) + (pin "17" (uuid 2358b05e-7dec-4c4a-85b7-faf7dd2a23d5)) + (pin "18" (uuid 34486129-e404-4e41-8d7a-35684157dc1f)) + (pin "19" (uuid 5ba96251-96db-42d7-bde6-7985195753fe)) + (pin "20" (uuid 1ad59190-98d1-4f17-a4be-383730c19324)) + (pin "21" (uuid 38254271-3a62-4a18-89ac-0eae65928165)) + (pin "22" (uuid 69da23e7-0a0c-4d6f-ba4d-6b2f365e6c12)) + (pin "23" (uuid 84d515bf-ca17-4487-a571-3ca03854790e)) + (pin "24" (uuid 141c3fb9-93a3-4928-80ad-4ae7e04c694e)) + (pin "25" (uuid e8ecddd1-8ac5-45f2-9448-78653741eab6)) + (pin "26" (uuid 9c05c76a-14a1-47db-b9aa-29c125cd7111)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 509.27 414.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 237a6073-fe1c-45c0-a11b-58ddb02b9169) + (property "Reference" "U11" (id 0) (at 508.635 394.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 508.635 398.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 506.73 405.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 506.73 405.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a48d9ac8-589a-4195-b34e-5ac44654c3e5)) + (pin "2" (uuid d0c8d5c4-92ab-4d30-8d69-e6b9972b2131)) + (pin "3" (uuid 451b618c-3693-48e2-85eb-4705427521fa)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 509.27 370.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 265b7926-ab07-4343-a386-9881898f9c09) + (property "Reference" "U9" (id 0) (at 508.635 351.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 508.635 355.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 506.73 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 506.73 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 781a7209-0931-4022-8720-6a2c2640c8cf)) + (pin "2" (uuid e98f5a23-6da8-4958-9d86-d3ae7fc2dea1)) + (pin "3" (uuid 9e865cdc-01d7-49a6-b5e9-ac4cd30f6f33)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 509.27 392.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 27d64c43-2cd5-45c7-b1fa-7c1328fabed4) + (property "Reference" "U10" (id 0) (at 508.635 373.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 508.635 377.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 506.73 383.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 506.73 383.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c56b4257-b2ca-408a-b1b3-ee9691e07e12)) + (pin "2" (uuid df068a3c-33a8-417c-87a1-2368033d018f)) + (pin "3" (uuid 58e91133-8377-4a3d-a2ff-0cd2ac4f0c97)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 535.94 341.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48816861-d9d1-470d-ad30-be339ccd0778) + (property "Reference" "U14" (id 0) (at 535.94 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 535.94 339.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 537.21 342.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 537.21 342.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be9cd6fe-158a-42dd-af09-dd323bef49c8)) + (pin "2" (uuid f1cb3370-5c53-4a12-b744-82e7d7485166)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 452.12 361.95 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4ce2e44d-d3c4-4f60-9a0a-1d3e15cb4bb3) + (property "Reference" "U1" (id 0) (at 452.755 356.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 452.755 359.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 452.12 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 452.12 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c259465-91ae-40a3-aa20-5dd171c7b123)) + (pin "2" (uuid 9e929d15-9275-4599-8385-85dd7ea0635d)) + (pin "3" (uuid 49da7c25-338a-4549-a2ff-f161fa01163b)) + (pin "4" (uuid 251a61a9-ab18-404c-9397-9484b3fa2282)) + (pin "5" (uuid e3264e51-b4de-44fd-a1d4-f796bc53847c)) + (pin "6" (uuid 99b73594-a139-41ff-8d2f-b62244397226)) + (pin "7" (uuid 00f06f38-6015-4b90-b413-e526bb225ed5)) + (pin "8" (uuid 15e68af5-9800-40a6-a8f3-32fc00418618)) + (pin "9" (uuid 253e02ac-6d2d-4655-8d11-fa409a0fa258)) + (pin "10" (uuid d20c4324-43f0-463b-8fde-13fced376066)) + (pin "11" (uuid 2f97e3de-e6d9-492e-926d-a66b66b4734c)) + (pin "12" (uuid b2ddb1ff-e16c-47be-8fb8-292d41ce4e1e)) + (pin "13" (uuid 9791d3be-35c1-4b88-a219-86d85ad9bd30)) + (pin "14" (uuid c0c41298-1a0a-4983-b5c4-5591a8844c53)) + (pin "15" (uuid 5a642052-9642-4aec-8ff5-d50bb87bfbc2)) + (pin "16" (uuid 618aacaf-0c53-46c3-a366-f2f056d4f789)) + (pin "17" (uuid a067e2fc-b4e3-4cbd-b294-6779b47dc62d)) + (pin "18" (uuid 2f3fe452-7e99-4d0c-86c5-9429d684718f)) + (pin "19" (uuid 17d96797-e08e-4031-9a0f-4260c2ffd478)) + (pin "20" (uuid 14e5f5e1-4e0e-43d2-8560-74c438ce6898)) + (pin "21" (uuid bda00207-11f7-49d0-82f4-c531e285cdca)) + (pin "22" (uuid 5c56885b-848b-4e22-b6b4-42526624c381)) + (pin "23" (uuid 8d939f4c-e4e8-4721-afaa-1e8e5740e856)) + (pin "24" (uuid d3527d7a-8ec9-4d8d-af9e-d1e4ffb77759)) + (pin "25" (uuid 68c3bedd-ade8-46c1-8197-a65f45b24622)) + (pin "26" (uuid 1661b958-fa12-4db5-bc91-b6022b4c9ee2)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 508 308.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 500ebb22-2f4e-4bb8-8019-022862fe33b3) + (property "Reference" "U6" (id 0) (at 507.365 289.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 507.365 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 505.46 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 505.46 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 288631aa-3e9f-422e-a393-3dd70ef0df53)) + (pin "2" (uuid 046190cb-ddc1-4b05-a197-8120b12a4613)) + (pin "3" (uuid e3afb377-a868-4ef8-b171-b25106eb19b0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 570.23 405.13 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5172c06a-e330-4085-b9c6-e47cf8eca348) + (property "Reference" "U1" (id 0) (at 574.04 404.495 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 574.04 407.035 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 570.23 405.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 570.23 405.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d5e17efe-2dec-4481-b72e-0455141c6f65)) + (pin "2" (uuid 900e622c-03da-43cb-9053-d8adfd620fe1)) + (pin "3" (uuid 7ec59f9f-45f1-4855-819c-8e2645f07887)) + (pin "4" (uuid 1381d824-6c09-428f-81b8-222fa82dc69c)) + (pin "5" (uuid dc8afeff-a588-48e1-b242-0c5df56cda0a)) + (pin "6" (uuid c80b995c-f489-4475-ae1b-1afc49d727a8)) + (pin "7" (uuid 1c9c3786-5f02-4c8c-b8aa-3eb82ca95053)) + (pin "8" (uuid 6f28f142-fe75-42d3-aa26-0f4709cad91f)) + (pin "9" (uuid 99dc81b1-2e9b-42b8-b17f-104a6a61adf3)) + (pin "10" (uuid 911c9224-a7e5-4f1b-bce9-7297b9ad61b9)) + (pin "11" (uuid b11a54e8-d5d2-4481-be11-ae71a7d077c1)) + (pin "12" (uuid 29fbcdb4-2d61-4896-952d-a3900097321b)) + (pin "13" (uuid 4a838cd0-9392-4df4-9334-1ec464e92e48)) + (pin "14" (uuid 51a6d7e9-67fb-456e-babd-6324dbd870e2)) + (pin "15" (uuid e6bf4726-59c8-40d9-bdef-4ac8f5138f52)) + (pin "16" (uuid a0891455-3091-4888-af91-a8eedd06096f)) + (pin "17" (uuid 871393c5-177e-4aec-a48e-aa3de3e53dbb)) + (pin "18" (uuid c646a36c-b0e0-4859-afb7-d756ac451c3f)) + (pin "19" (uuid e671f641-8adb-47e5-a6d3-5d1724c24fb9)) + (pin "20" (uuid 61b9624d-b74e-4112-8078-427aadbe68df)) + (pin "21" (uuid 912d9a35-ed1e-4e59-a5e5-8ee07860f785)) + (pin "22" (uuid bd4a5a47-7fd0-4916-a93a-517189e2d8aa)) + (pin "23" (uuid 079447f4-f8ca-4db8-8b9e-37169e1b8bae)) + (pin "24" (uuid 87426477-9c11-4971-b3ec-24c54717634e)) + (pin "25" (uuid 54df8428-763e-401f-bc12-aa3545e205b0)) + (pin "26" (uuid 3ed4ae79-b9ca-4f80-a52f-84cec3a96aee)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 444.5 430.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5c418a1c-a626-4065-98a6-7f66813e10b3) + (property "Reference" "U2" (id 0) (at 444.5 424.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 444.5 427.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 445.77 431.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 445.77 431.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6fe69df6-2194-4ff4-a7fe-535cc5f703ff)) + (pin "2" (uuid d3b6d2db-bd9c-4d95-b438-c01d61d9d703)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 468.63 448.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 612f4d8c-9964-4535-917b-bc79e77a8d36) + (property "Reference" "U5" (id 0) (at 470.535 438.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 470.535 441.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 468.63 448.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 468.63 448.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5ce46d66-ccb8-45c5-a31c-270dc9d94225)) + (pin "2" (uuid bff725fb-9a52-4891-ae91-ec1acf6dc499)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 534.67 299.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 618d93fc-e358-42ca-94e1-6ea6255d8022) + (property "Reference" "U12" (id 0) (at 534.67 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 534.67 297.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 535.94 300.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 535.94 300.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 010fd5c7-ce03-43c6-a13e-9f9077381627)) + (pin "2" (uuid 1c415621-be2a-4767-b87e-73183ae471c1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 450.85 321.31 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 63bc68d5-7cb9-4505-9f64-c4c23a6484b1) + (property "Reference" "U1" (id 0) (at 451.485 316.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 451.485 318.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 450.85 321.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 450.85 321.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e9efb615-d7f0-4d37-bd0c-7fa4f32473ae)) + (pin "2" (uuid 2f827d2b-f54a-4b69-983e-b1444eb457c5)) + (pin "3" (uuid 104f2417-936a-4999-b823-10e3c86bdc75)) + (pin "4" (uuid 7fa5265c-1cf7-439e-819f-b292777547d0)) + (pin "5" (uuid 815e855e-831e-4f59-a419-04ad4de7d918)) + (pin "6" (uuid 5e63bf86-d5b3-42e0-9ac2-53bf22991856)) + (pin "7" (uuid cd3edac9-3c05-41e4-9e38-98f5fa32ceaa)) + (pin "8" (uuid d66c7165-81f9-42c0-8d80-029075d235da)) + (pin "9" (uuid f13a28c0-10fa-4bbe-807b-befb28cb631e)) + (pin "10" (uuid f55ce082-9a8d-44d6-a375-5e3dcf0194b2)) + (pin "11" (uuid 543e4512-42dd-46c4-8e79-cb49a8798f07)) + (pin "12" (uuid a9d5bcd7-9658-4db0-8d9a-680052a176fb)) + (pin "13" (uuid e4db2df7-aa43-44a5-80c6-4720b86de6ff)) + (pin "14" (uuid 2bf5ffa2-56ed-43ac-8037-3453de96d82a)) + (pin "15" (uuid 0a5682e9-f981-4540-8bbe-0b4916ac62ef)) + (pin "16" (uuid 92b66705-205b-4512-bd3a-f063f24c72ff)) + (pin "17" (uuid b42a361e-9b0c-4db8-b6b6-021f5edbe088)) + (pin "18" (uuid bc44d825-aacd-4a14-90d9-3698f20e5713)) + (pin "19" (uuid e5cec632-5ef3-4955-8173-7726c041796c)) + (pin "20" (uuid 3706e2b9-e7da-4e74-af18-e835e5fd411a)) + (pin "21" (uuid baf38eea-6745-4e03-a4bd-aa949dbd3918)) + (pin "22" (uuid e9726a79-00f1-48cd-a924-7f961a48c78b)) + (pin "23" (uuid 78e9d179-1ac0-4423-b8f2-3bd567cf6d52)) + (pin "24" (uuid 1cce0feb-51bd-4201-a032-13c8f52b7b32)) + (pin "25" (uuid dafe68e0-a901-4284-9b00-7d7e26fbfd12)) + (pin "26" (uuid c1ba7448-9f70-4826-a5fc-c31756fc8539)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 425.45 430.53 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6744acd4-f5d2-4d47-8654-1b2e8cd642b7) + (property "Reference" "U1" (id 0) (at 426.085 425.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 426.085 427.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 425.45 430.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 425.45 430.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3865eb96-b972-4582-9ca4-ff8cec2dc009)) + (pin "2" (uuid 2852a03b-356e-49ed-a86f-a9ad0e2ca459)) + (pin "3" (uuid 60380e74-7b17-45db-8929-501c2d9bf6d8)) + (pin "4" (uuid 094aae44-2af2-45b0-994a-8a68a5d960d1)) + (pin "5" (uuid e40b75c9-57af-4bf1-b443-fc9f8c0b6bee)) + (pin "6" (uuid 91e200f8-b66c-4dd7-8c63-3fe9b1a482bf)) + (pin "7" (uuid 0415bc5f-3ee1-420a-9f78-be1f738ebb44)) + (pin "8" (uuid ed7aa309-1ba8-427f-90b8-df5ede349962)) + (pin "9" (uuid 84a63d49-9096-44bf-9897-0aae671e47f8)) + (pin "10" (uuid e84893d5-cc7a-4bf6-bd6a-1b67eabd71ef)) + (pin "11" (uuid dcd8e608-0921-4141-8877-ca1bfb7fd594)) + (pin "12" (uuid b934421b-5927-48e3-9b1b-a4c986f0a7a8)) + (pin "13" (uuid a8cccb60-925a-48f3-8337-57725a3d1d39)) + (pin "14" (uuid 3b8236c4-2b9b-435f-9538-019b4ae3fa6a)) + (pin "15" (uuid 158b7838-1cdd-4c35-a111-82f823288ff5)) + (pin "16" (uuid cde4baf6-063b-4245-b24a-b068a94239ca)) + (pin "17" (uuid fe72bd14-a447-4627-aa44-687437e03ddc)) + (pin "18" (uuid 7dc289bc-a573-4916-a551-3023c5154f56)) + (pin "19" (uuid 80658189-cafe-4a35-9443-b594d05144f3)) + (pin "20" (uuid 6a7b74e0-2c3e-4d54-ae51-c07637fe025e)) + (pin "21" (uuid ba0cd547-7bf9-4c99-be2c-0556b694fd87)) + (pin "22" (uuid 3d0aed24-f727-4ffc-becf-298a5863cd11)) + (pin "23" (uuid c85d88e2-82bc-4860-964c-e7f24d64cd98)) + (pin "24" (uuid 96f9df5e-b46b-4ca8-9a07-9d807a71b6bc)) + (pin "25" (uuid 35987259-7675-4a31-ab62-e2c3f94e6a35)) + (pin "26" (uuid b140671c-0e92-44d1-aa91-8745a5d9ccfc)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 570.23 383.54 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e517092-b7e7-40dc-a418-f5bb163e5650) + (property "Reference" "U1" (id 0) (at 574.04 382.905 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 574.04 385.445 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 570.23 383.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 570.23 383.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9ac334a4-18b6-44ce-86d6-c5feb71a9ce7)) + (pin "2" (uuid 7c954538-cdf1-4927-8648-831f1b58a698)) + (pin "3" (uuid 56a79c42-89e2-4866-abc8-75d2d65903d2)) + (pin "4" (uuid 8163e1d9-10ea-4e26-ac2b-6210080235d7)) + (pin "5" (uuid 1d67f8e0-323b-4416-817b-2f556b0df9c3)) + (pin "6" (uuid d724e818-ab78-4209-ad70-8aa0bdc920c4)) + (pin "7" (uuid b10653e0-8ae3-4cd2-b134-015e4c8a3dcd)) + (pin "8" (uuid ed037250-4168-42ec-a512-f448e0603ef6)) + (pin "9" (uuid d1edda76-b3d2-4239-a118-b338636d3df1)) + (pin "10" (uuid f2beecc3-974d-4160-9bf9-7c2abbf7a11d)) + (pin "11" (uuid b799d2cf-3569-4b8a-ad3c-34bc1dc96d0c)) + (pin "12" (uuid c091d036-2cc4-46bd-9ff6-2694837f7fa0)) + (pin "13" (uuid ab5a52d4-eb56-41c6-9ec6-cec80de50bcd)) + (pin "14" (uuid 1d79f972-72d7-4d50-9223-7688c3c3abc7)) + (pin "15" (uuid 0a92a529-84d6-4306-a844-4f0e561f4f00)) + (pin "16" (uuid 8b26950e-0c52-4d3d-bbac-96b05e107b63)) + (pin "17" (uuid 534a38a2-3dbb-4a0c-9f7a-c3f8902a6561)) + (pin "18" (uuid 374d6030-3d40-44c2-b334-28aeb972c407)) + (pin "19" (uuid efc23a1d-96e9-4934-8afc-c9d0a5aa3a5d)) + (pin "20" (uuid cea4bc98-f995-4510-80d1-50caecf4a1db)) + (pin "21" (uuid 22bfa7ce-5ae4-42bc-81b7-8eedffc5ed1c)) + (pin "22" (uuid 309af2ad-7894-443f-bc91-9e5a60b5ebfc)) + (pin "23" (uuid 3b20f40d-ccbd-4232-bfd9-0b75777f050f)) + (pin "24" (uuid 0386c98d-0e33-43fc-8a24-b30f39586a97)) + (pin "25" (uuid 83d9aab7-c7b6-4c7d-9389-3894ad1ed457)) + (pin "26" (uuid a4849abb-530c-4d9a-b03f-8b8c604960af)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 453.39 383.54 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7717dbe5-db01-4512-863f-a899a5901f65) + (property "Reference" "U1" (id 0) (at 454.025 378.46 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 454.025 381 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 453.39 383.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 383.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2453bc6b-d57f-4e4e-91f9-7f65ee9089c1)) + (pin "2" (uuid 0243b9ef-940d-42d0-9540-60c6ce3c4856)) + (pin "3" (uuid 91f11638-c6d0-42d5-bc3f-307141b95a9d)) + (pin "4" (uuid 57574d3d-9013-45c1-8e8e-a63b72868629)) + (pin "5" (uuid df4812d6-f4e7-4949-8cf4-036522ae6fc0)) + (pin "6" (uuid a3413d1a-55aa-4c3f-984f-6bc298f1ded5)) + (pin "7" (uuid 0c71b42b-3d0e-4a52-b8f3-dbcac7de947c)) + (pin "8" (uuid 017ee996-a0ff-4526-8c90-bec905f9506b)) + (pin "9" (uuid 75bdf313-6228-4a40-9f4d-d07f4a075666)) + (pin "10" (uuid 37cf73bf-bd6c-47d2-a881-03a21bbfd9b9)) + (pin "11" (uuid 8e28ccbc-35e6-4bd0-a4ce-a0eb6dce6fdc)) + (pin "12" (uuid 94bb6987-e525-4343-837b-a9850a18cc21)) + (pin "13" (uuid 1bab9b36-fa8e-4812-a48d-edcd7952e3f1)) + (pin "14" (uuid f51efb24-2e0e-4842-b997-9fac719e4ccc)) + (pin "15" (uuid a32c0758-9a38-40f6-9b1a-3a27f14031f7)) + (pin "16" (uuid 6a33d994-45cf-444f-839b-fa555487ceeb)) + (pin "17" (uuid d6473eeb-9653-443d-941a-6590632503ec)) + (pin "18" (uuid 6e23b21b-49e7-472c-9949-4541b1991e7d)) + (pin "19" (uuid 348f37bf-8416-413c-b6c7-d3dbc16ccf12)) + (pin "20" (uuid c1f667ae-3ecd-4ead-ad61-c6b7dcc0069e)) + (pin "21" (uuid 7d0b1a67-007b-4dbc-920a-cdfa1c0e558a)) + (pin "22" (uuid f8b9540e-d083-4e51-9467-74feb19f8234)) + (pin "23" (uuid 60df0847-474d-41eb-a147-976ba64e5a11)) + (pin "24" (uuid 4dcb7f51-268e-4be2-ac15-5b7c3728fe22)) + (pin "25" (uuid 9de483b1-243f-48f4-bb44-fc2d489dfadd)) + (pin "26" (uuid 8da74daa-9897-48ef-9d65-f7185648a1f7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 449.58 299.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 887150bc-62b6-44f3-8db1-87440b7f05c5) + (property "Reference" "U1" (id 0) (at 450.215 294.64 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 450.215 297.18 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 449.58 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 449.58 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ee6da07-c63f-4ae3-ab2d-3304c0d7a8ff)) + (pin "2" (uuid 0767cb24-5a00-4280-8762-6ae79d25a54a)) + (pin "3" (uuid fc9d82a7-2660-49b4-bfdc-9f9a0b341c0b)) + (pin "4" (uuid c4253b1a-84d1-4018-8c1c-7cc3e51412b9)) + (pin "5" (uuid 58533695-9bb1-48d4-8ca2-84e1d2cd506b)) + (pin "6" (uuid a2c9b419-8077-4633-bcb8-7b489a15f5c2)) + (pin "7" (uuid 285cc7b8-e7e7-4fa2-8e8e-087c76e0401c)) + (pin "8" (uuid c368b314-a9c8-4e16-ac65-6d9f6a8c73cc)) + (pin "9" (uuid 0eae06ad-b515-4000-bc24-f124e3abd083)) + (pin "10" (uuid 117d85bc-70d2-40c4-9409-39464b76d496)) + (pin "11" (uuid 3d9d1ca9-cdbf-446c-8516-a45d82b17629)) + (pin "12" (uuid 47d07151-0efe-4ced-902b-e68829621994)) + (pin "13" (uuid c83f38b3-f84e-496e-88e3-6b3976215674)) + (pin "14" (uuid eb7690b3-fbc1-4e2f-809e-b5cb8f98bc19)) + (pin "15" (uuid c2e18d91-f9a9-4935-8cdd-23557d48cb0b)) + (pin "16" (uuid 802c4fff-21f2-4584-a554-86c659595f6c)) + (pin "17" (uuid 82061637-cc60-484c-95e3-5bbdd49dcd2a)) + (pin "18" (uuid d29301b9-c812-4366-9a16-fe287f1a33b7)) + (pin "19" (uuid 3295c38a-2ae2-404e-94c8-d1ca2d05a6ae)) + (pin "20" (uuid 1b528155-ad6a-4ff5-8d0b-5232699d45d8)) + (pin "21" (uuid d88f0583-96e6-4a8d-87b7-45c805f08cf4)) + (pin "22" (uuid aee0a5c0-dc92-48f2-af58-b547058f5fc2)) + (pin "23" (uuid d289fb01-578c-4da2-85cc-c5a0d1f54660)) + (pin "24" (uuid 8141838c-0143-46a7-a228-4a2650013e47)) + (pin "25" (uuid 52f278e1-b5c1-491b-bc13-7727db4e0d2d)) + (pin "26" (uuid 8de7c20b-80fe-4315-be0f-034b795bb3f1)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 509.27 330.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8c83ddc9-17f2-406f-a554-121ee37c2610) + (property "Reference" "U7" (id 0) (at 508.635 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 508.635 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 506.73 321.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 506.73 321.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 82bbdee3-de9c-4e84-80de-78efa7ed302a)) + (pin "2" (uuid d078eb68-7161-4a2e-bf3b-1b5534972e7d)) + (pin "3" (uuid c9f86640-bc28-463e-ae8a-2733af8341f6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 535.94 383.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1b46a3b-1e07-4a0d-814a-a9961edb2e20) + (property "Reference" "U16" (id 0) (at 535.94 377.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 535.94 381 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 537.21 384.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 537.21 384.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 760286bf-1a86-4827-871e-898099d52e8a)) + (pin "2" (uuid 0acf3aa5-ad88-40d2-be10-d174acf0ecaa)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 535.94 405.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5805c2a-66f0-40fa-a133-7cd5be9efd68) + (property "Reference" "U17" (id 0) (at 535.94 398.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 535.94 402.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 537.21 406.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 537.21 406.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ff0bc401-900a-4a08-825c-ad007ed998ab)) + (pin "2" (uuid 2748cee3-fa9b-444c-9899-8864f2dc98f6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 566.42 299.72 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba3b54b8-72c3-42e5-85d8-adc118ac2fe0) + (property "Reference" "U1" (id 0) (at 570.23 299.085 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 570.23 301.625 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 566.42 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 566.42 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 69c1acb1-8787-4bcd-865c-fc7126f7f351)) + (pin "2" (uuid 502ba215-d0a9-4641-96ae-8caec806992f)) + (pin "3" (uuid 4b75252d-2365-49a5-8b0c-9e350d627633)) + (pin "4" (uuid 32e318a3-5b3c-43ad-83d9-adcc0581c7f7)) + (pin "5" (uuid 87136a46-67a2-4aeb-9375-d5df6a93d1cc)) + (pin "6" (uuid 3f3e1416-a08e-410a-8a35-0cc633d1eede)) + (pin "7" (uuid 725e52b0-f9aa-4b29-ad2b-7b8a3f33b180)) + (pin "8" (uuid 377a7653-e4bc-454b-897b-794fefe4153d)) + (pin "9" (uuid 86368183-ec8a-40a0-9ac2-30f07b0d3a7b)) + (pin "10" (uuid 2e0879bb-7fcc-44c4-a802-76c22de169f3)) + (pin "11" (uuid 1e67b041-b71b-483f-805f-b9c03048fecd)) + (pin "12" (uuid af50d7b5-bcf9-4748-842b-f6f7a1072b55)) + (pin "13" (uuid 65d448b3-0f83-4a34-913d-07822a1e2ace)) + (pin "14" (uuid 0095aad3-054a-4055-bd98-056e5649d7c6)) + (pin "15" (uuid d6e3c659-599e-49dc-9b35-505720ba1236)) + (pin "16" (uuid 352b757b-70cd-4185-9f70-d8d87bb3e755)) + (pin "17" (uuid d9c802d0-5e4e-4e73-8574-c2d99109087c)) + (pin "18" (uuid b5f9f245-df0b-4398-84d5-ed539a68e837)) + (pin "19" (uuid 02305761-da9e-4799-a303-2cf4c2c41524)) + (pin "20" (uuid 0fd36e71-3eeb-4b46-ac97-14fe1b364df9)) + (pin "21" (uuid 3e14f803-c452-420e-b1d7-6d14fc86fb33)) + (pin "22" (uuid ed242a09-aa59-4013-a855-bc899f8a1cb3)) + (pin "23" (uuid a589451a-403c-4ea6-ab1d-c2aa6488b4c4)) + (pin "24" (uuid af69a77f-0c25-4e35-8aac-1c14c0ee2ae2)) + (pin "25" (uuid 361f1636-96ad-484e-a16b-87ae895eabac)) + (pin "26" (uuid e4dcab40-272b-4d02-b10b-354fc45ede33)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 535.94 361.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ddc9efa8-ac21-4f9a-8c3d-1552705c3eda) + (property "Reference" "U15" (id 0) (at 535.94 355.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 535.94 359.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 537.21 363.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 537.21 363.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 36792d25-e97c-48e3-a931-75e6b6bbb784)) + (pin "2" (uuid 7a7bad72-fbcf-4f98-8ed3-91faf9de9059)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 468.63 430.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e22c47f2-c019-4319-a2e5-2f809e5d8ea5) + (property "Reference" "U4" (id 0) (at 470.535 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 470.535 424.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 468.63 430.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 468.63 430.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 465e0eb6-5af4-4ea3-9f5c-aff4e35d3bdc)) + (pin "2" (uuid 378181ae-059d-43ee-bff2-145e4c918158)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 445.77 448.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e4d8ed5a-b8ab-4943-ab06-729be7787da9) + (property "Reference" "U3" (id 0) (at 445.77 441.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 445.77 445.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 447.04 449.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 447.04 449.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 73d7d98f-4e84-4194-b456-c2ed50d123d1)) + (pin "2" (uuid 3751e4ca-86c8-41af-adb6-a0c94fb16292)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 454.66 405.13 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e50f50ce-4fa2-449c-b6fb-8bea9726c389) + (property "Reference" "U1" (id 0) (at 455.295 400.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 455.295 402.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 454.66 405.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 454.66 405.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fbc41c5b-f35e-4ab1-9696-91346408f32f)) + (pin "2" (uuid 12c158e0-ee85-4096-b430-ab7fccb78284)) + (pin "3" (uuid c31bd808-212a-4384-b539-b673027b21ca)) + (pin "4" (uuid cacd8fba-db76-488d-ae2d-8e2978d9c361)) + (pin "5" (uuid 54545de8-35c2-4473-850d-1086e40163bb)) + (pin "6" (uuid cddec406-ed5f-443b-81ad-8cac5980b3e6)) + (pin "7" (uuid 790ea03f-386b-4685-a514-b1d7c9dc9452)) + (pin "8" (uuid 2f9a78ee-ee3a-4f06-af9c-ebacee3c8f2d)) + (pin "9" (uuid 30fcc2a0-425f-4f27-972c-5b440f722dd8)) + (pin "10" (uuid e3339c0c-194a-46ac-aca7-d300f11eea20)) + (pin "11" (uuid 4d1776bc-1ea2-4b28-846a-eb370e5703b9)) + (pin "12" (uuid 53a8f264-e5c5-4e15-bc0c-c47421e3b2c3)) + (pin "13" (uuid 8c76bba0-a765-4d0e-8784-49db62c68d77)) + (pin "14" (uuid fbce4d44-f010-4329-add8-3bb18de63998)) + (pin "15" (uuid e088a4d7-d549-4b3d-bd87-6d9c3f818b29)) + (pin "16" (uuid ee22d928-86ca-4cf8-9afb-a775113327f1)) + (pin "17" (uuid 678af6a1-a008-4aba-84c1-e440a0fb7670)) + (pin "18" (uuid 2bef51d5-e84e-495b-9f69-6adbe5132e45)) + (pin "19" (uuid 7de80d2c-c6e8-4808-9e81-0d401fc672bd)) + (pin "20" (uuid e279c998-4e5f-4126-87ce-8b2138812221)) + (pin "21" (uuid e9df6cff-5968-477f-9532-13096c149b9c)) + (pin "22" (uuid 47a3d575-dd5c-4b09-a5ab-3b918a965c9e)) + (pin "23" (uuid 63bbc3b4-6c57-43de-aa2d-5f2493e17582)) + (pin "24" (uuid 3ac4a1fd-d4d4-4c59-98c0-0259acb7d803)) + (pin "25" (uuid 6e61d27e-ac3d-4d3c-9868-b48990b1ea26)) + (pin "26" (uuid 07c8b4ff-e395-4389-af86-4dd99dab0bd0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 534.67 321.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ee9d0187-f5b7-4f33-b888-a83f3b2092e3) + (property "Reference" "U13" (id 0) (at 534.67 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 534.67 318.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 535.94 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 535.94 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9e2907f6-7bc2-4970-befa-418a76c29caf)) + (pin "2" (uuid 072f3e44-14be-4ee3-b6eb-50da97095777)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 452.12 341.63 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f93946d0-b7c1-4fe8-ac3a-946c18558997) + (property "Reference" "U1" (id 0) (at 452.755 336.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 452.755 339.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 452.12 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 452.12 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d3493f86-97ba-4bc4-9d1b-c19fce5c84dd)) + (pin "2" (uuid 861a7cc5-6e64-46fe-aa36-713b71ccb945)) + (pin "3" (uuid 79287689-e067-4c57-a60e-a70dac342068)) + (pin "4" (uuid 3dae9082-08bb-4373-8444-d1257a2a4486)) + (pin "5" (uuid 8dad7ba1-ee5b-489e-b27c-a04ac17c3754)) + (pin "6" (uuid 6a1b7777-7f2d-4a31-85c6-3ac0dbcdaab1)) + (pin "7" (uuid 1095d06d-f2c1-4fb6-a767-b96911b48906)) + (pin "8" (uuid 6d84ff9c-5e9f-4e67-abca-37fbc52a5e45)) + (pin "9" (uuid a1508219-6856-4a38-a2cc-dff1eafe460f)) + (pin "10" (uuid 423b229c-08cc-41d7-ab91-c1495e146bbf)) + (pin "11" (uuid 93e45dcf-065d-4d9c-b8ae-a37875f2c553)) + (pin "12" (uuid 19af5dc1-ffbe-47c5-9b08-73b7e856d031)) + (pin "13" (uuid 087c96c1-541d-4495-bd45-228f610b52c6)) + (pin "14" (uuid 5fdfc6f5-9345-48de-84af-1b4cf0ab88d3)) + (pin "15" (uuid 251565ec-9654-46a5-addc-af6de4bf57e6)) + (pin "16" (uuid 3678d386-9f7f-4a79-804f-c6d906a9c872)) + (pin "17" (uuid 4acc163e-5ddf-4e91-a66a-c9e79f3e0e65)) + (pin "18" (uuid adae1fb2-698f-452f-9da2-fcfbf4cfa659)) + (pin "19" (uuid 16f3fb94-f351-43d3-8c41-68fcd13c97ec)) + (pin "20" (uuid a6fc87b2-2a97-4fde-baf3-459737cf14ca)) + (pin "21" (uuid 2dbf88e0-1faf-40d7-86df-e17c74d0bec1)) + (pin "22" (uuid 5add0338-9117-41db-be3a-2bbd8b3bce85)) + (pin "23" (uuid 8bd87e94-6407-4879-bb6e-1e65a76f288d)) + (pin "24" (uuid c2d195e8-d78e-42af-838d-cac857bd329b)) + (pin "25" (uuid 4e7618b3-b81f-4bd9-a4ca-ce69ea4a00fc)) + (pin "26" (uuid 0b48c136-08d6-4b9a-9865-53da00adabf3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 571.5 361.95 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb8affbb-4e52-474b-9e8e-c15fd569aca9) + (property "Reference" "U1" (id 0) (at 575.31 361.315 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 575.31 363.855 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 571.5 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 571.5 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid edebdc94-4ca2-4c6d-b753-7102de45bcdf)) + (pin "2" (uuid d732c308-12d0-4bf8-b242-fc28273818ca)) + (pin "3" (uuid 7ee0db9e-967b-47e9-9a4b-49d73477d952)) + (pin "4" (uuid d40eb07d-e87b-4665-91a5-911a8415d4ef)) + (pin "5" (uuid be8b7c6c-5296-4c47-9d35-b24b886aa034)) + (pin "6" (uuid f558072f-2396-4ac5-b9c3-412a2c48ef14)) + (pin "7" (uuid c9369680-0b28-4cbd-b5b9-94c3db9cd8ab)) + (pin "8" (uuid a29d99da-16ae-4200-a6ac-600acd75edec)) + (pin "9" (uuid fb490daf-cfad-4bdc-ba2d-4ba7df5b8a3d)) + (pin "10" (uuid 17f13392-c4cc-446e-ae24-76b06ad01f39)) + (pin "11" (uuid 89f2e34a-3182-4795-a49b-9d410d6fcbfa)) + (pin "12" (uuid b43bd8a1-27e8-4628-aa6c-5968bc819a6c)) + (pin "13" (uuid 99febe8f-8c0f-4f13-8021-0f0641223f1c)) + (pin "14" (uuid 397eb235-f998-4c0b-99fd-fc0da31c1e55)) + (pin "15" (uuid 47516906-969c-43f2-a366-75576d2e36bb)) + (pin "16" (uuid e33689ec-7d67-43a0-84ff-a2944f35f1d3)) + (pin "17" (uuid 94ba77b8-8f5f-490a-b857-8ba6ceebd58f)) + (pin "18" (uuid 94318363-d08c-4c00-9f07-79bcd4a90b01)) + (pin "19" (uuid dc220f7a-144a-4ebd-b41e-7b4b2ec84e8f)) + (pin "20" (uuid e7043c60-bae2-4379-a198-418cce170563)) + (pin "21" (uuid dd916469-33c9-42dc-ad0b-df9fdad8ad19)) + (pin "22" (uuid a413f94b-27ce-4c42-bc4b-084a70e7d381)) + (pin "23" (uuid d9dd8dc9-0753-4693-b8e5-c49c6e99c6bd)) + (pin "24" (uuid f0ba77ae-d565-4dfa-b46a-03b94794dda6)) + (pin "25" (uuid 578d4d0d-bdcc-4d16-9f1d-51d23e828a03)) + (pin "26" (uuid 8f9c3ed9-8e04-4eec-8af9-a30c8b57f836)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/887150bc-62b6-44f3-8db1-87440b7f05c5" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/63bc68d5-7cb9-4505-9f64-c4c23a6484b1" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/f93946d0-b7c1-4fe8-ac3a-946c18558997" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/4ce2e44d-d3c4-4f60-9a0a-1d3e15cb4bb3" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/7717dbe5-db01-4512-863f-a899a5901f65" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/e50f50ce-4fa2-449c-b6fb-8bea9726c389" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/6744acd4-f5d2-4d47-8654-1b2e8cd642b7" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/1def826d-8b6f-44a0-853d-92d07529ed38" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/5172c06a-e330-4085-b9c6-e47cf8eca348" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/6e517092-b7e7-40dc-a418-f5bb163e5650" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/fb8affbb-4e52-474b-9e8e-c15fd569aca9" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/163e7587-c7a8-433e-9d43-5c9cb26ac0d4" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/23756e76-3140-41dd-8773-166ece38daa8" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/ba3b54b8-72c3-42e5-85d8-adc118ac2fe0" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/5c418a1c-a626-4065-98a6-7f66813e10b3" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e4d8ed5a-b8ab-4943-ab06-729be7787da9" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e22c47f2-c019-4319-a2e5-2f809e5d8ea5" + (reference "U4") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/612f4d8c-9964-4535-917b-bc79e77a8d36" + (reference "U5") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/500ebb22-2f4e-4bb8-8019-022862fe33b3" + (reference "U6") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/8c83ddc9-17f2-406f-a554-121ee37c2610" + (reference "U7") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/20ee6bde-6aa7-43b8-970c-2c839f6758c8" + (reference "U8") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/265b7926-ab07-4343-a386-9881898f9c09" + (reference "U9") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/27d64c43-2cd5-45c7-b1fa-7c1328fabed4" + (reference "U10") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/237a6073-fe1c-45c0-a11b-58ddb02b9169" + (reference "U11") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/618d93fc-e358-42ca-94e1-6ea6255d8022" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ee9d0187-f5b7-4f33-b888-a83f3b2092e3" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/48816861-d9d1-470d-ad30-be339ccd0778" + (reference "U14") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ddc9efa8-ac21-4f9a-8c3d-1552705c3eda" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a1b46a3b-1e07-4a0d-814a-a9961edb2e20" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a5805c2a-66f0-40fa-a133-7cd5be9efd68" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.sub b/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.sub new file mode 100644 index 000000000..44a3e35f3 --- /dev/null +++ b/library/SubcircuitLibrary/IC_DM8098/IC_DM8098.sub @@ -0,0 +1,70 @@ +* Subcircuit IC_DM8098 +.subckt IC_DM8098 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u17-pad2_ net-_u16-pad2_ net-_u15-pad2_ net-_u14-pad2_ net-_u13-pad2_ net-_u12-pad2_ +.title kicad schematic +* u9 net-_u1-pad4_ net-_u4-pad2_ net-_u15-pad1_ d_tristate +* u10 net-_u1-pad5_ net-_u10-pad2_ net-_u10-pad3_ d_tristate +* u11 net-_u1-pad6_ net-_u10-pad2_ net-_u11-pad3_ d_tristate +* u3 net-_u1-pad8_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad7_ net-_u2-pad2_ d_inverter +* u15 net-_u15-pad1_ net-_u15-pad2_ d_inverter +* u17 net-_u11-pad3_ net-_u17-pad2_ d_inverter +* u16 net-_u10-pad3_ net-_u16-pad2_ d_inverter +* u4 net-_u2-pad2_ net-_u4-pad2_ d_buffer +* u5 net-_u3-pad2_ net-_u10-pad2_ d_buffer +* u8 net-_u1-pad3_ net-_u4-pad2_ net-_u14-pad1_ d_tristate +* u13 net-_u13-pad1_ net-_u13-pad2_ d_inverter +* u12 net-_u12-pad1_ net-_u12-pad2_ d_inverter +* u6 net-_u1-pad1_ net-_u4-pad2_ net-_u12-pad1_ d_tristate +* u7 net-_u1-pad2_ net-_u4-pad2_ net-_u13-pad1_ d_tristate +* u14 net-_u14-pad1_ net-_u14-pad2_ d_inverter +a1 net-_u1-pad4_ net-_u4-pad2_ net-_u15-pad1_ u9 +a2 net-_u1-pad5_ net-_u10-pad2_ net-_u10-pad3_ u10 +a3 net-_u1-pad6_ net-_u10-pad2_ net-_u11-pad3_ u11 +a4 net-_u1-pad8_ net-_u3-pad2_ u3 +a5 net-_u1-pad7_ net-_u2-pad2_ u2 +a6 net-_u15-pad1_ net-_u15-pad2_ u15 +a7 net-_u11-pad3_ net-_u17-pad2_ u17 +a8 net-_u10-pad3_ net-_u16-pad2_ u16 +a9 net-_u2-pad2_ net-_u4-pad2_ u4 +a10 net-_u3-pad2_ net-_u10-pad2_ u5 +a11 net-_u1-pad3_ net-_u4-pad2_ net-_u14-pad1_ u8 +a12 net-_u13-pad1_ net-_u13-pad2_ u13 +a13 net-_u12-pad1_ net-_u12-pad2_ u12 +a14 net-_u1-pad1_ net-_u4-pad2_ net-_u12-pad1_ u6 +a15 net-_u1-pad2_ net-_u4-pad2_ net-_u13-pad1_ u7 +a16 net-_u14-pad1_ net-_u14-pad2_ u14 +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u9 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u10 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u11 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u8 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u7 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends IC_DM8098 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_DM8098/IC_DM8098_Previous_Values.xml b/library/SubcircuitLibrary/IC_DM8098/IC_DM8098_Previous_Values.xml new file mode 100644 index 000000000..ccac1fe53 --- /dev/null +++ b/library/SubcircuitLibrary/IC_DM8098/IC_DM8098_Previous_Values.xml @@ -0,0 +1 @@ +d_tristated_tristated_inverterd_tristated_inverterd_inverterd_inverterd_inverterd_bufferd_bufferd_tristated_inverterd_inverterd_tristated_tristated_invertertruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_DM8098/README_IC_DM8098.md b/library/SubcircuitLibrary/IC_DM8098/README_IC_DM8098.md new file mode 100644 index 000000000..74acc5940 --- /dev/null +++ b/library/SubcircuitLibrary/IC_DM8098/README_IC_DM8098.md @@ -0,0 +1,27 @@ +# IC_DM8098 Tristate Hex Inverting Buffer + +IC_DM8098 is a tristate hex inverting buffer designed for digital bus interfacing applications. It contains six independent inverting buffers with tristate outputs that can be placed in a high-impedance state for bus sharing applications. + +## Usage/Examples + +- Bus-oriented systems +- Memory interfacing circuits +- Microprocessor applications +- Signal buffering networks +- Data transmission systems +- Digital communication interfaces + +## Documentation + +To know the details of IC_DM8098 please go through the documentation: [DM8098 Datasheet](https://www.alldatasheet.com) + +## Comments/Notes + +Please note this is a TTL tristate buffer IC. The subcircuit uses d_tristate and d_inverter elements to model both the inversion and high-impedance output behavior. When the output-enable is deasserted, outputs enter the Hi-Z state correctly. + +## Contributor + +Name: Santhosh C +Email: santhoshc.vlsi2024@citchennai.net +Year: 2026 +Position: FOSSEE eSim Intern 2026 diff --git a/library/SubcircuitLibrary/IC_DM8098/analysis b/library/SubcircuitLibrary/IC_DM8098/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_DM8098/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.cir b/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.cir new file mode 100644 index 000000000..784deb4cb --- /dev/null +++ b/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.cir @@ -0,0 +1,17 @@ +.title KiCad schematic +U8 Net-_U2-Pad3_ Net-_U3-Pad3_ Net-_U11-Pad1_ d_nand +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ d_inverter +U12 Net-_U11-Pad2_ Net-_U1-Pad12_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ PORT +U10 Net-_U10-Pad1_ Net-_U1-Pad10_ Net-_U10-Pad3_ d_nand +U9 Net-_U6-Pad3_ Net-_U1-Pad7_ Net-_U13-Pad1_ d_nand +U13 Net-_U13-Pad1_ Net-_U10-Pad3_ Net-_U13-Pad3_ d_nand +U15 Net-_U14-Pad2_ Net-_U1-Pad11_ d_inverter +U14 Net-_U13-Pad3_ Net-_U14-Pad2_ d_inverter +U4 Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U4-Pad3_ d_nand +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_nand +U3 Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U3-Pad3_ d_nand +U5 Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U5-Pad3_ d_nand +U7 Net-_U5-Pad3_ Net-_U5-Pad3_ Net-_U10-Pad1_ d_nand +U6 Net-_U4-Pad3_ Net-_U4-Pad3_ Net-_U6-Pad3_ d_nand +.end diff --git a/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.cir.out b/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.cir.out new file mode 100644 index 000000000..d8ed6626f --- /dev/null +++ b/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.cir.out @@ -0,0 +1,68 @@ +.title kicad schematic + +* u8 net-_u2-pad3_ net-_u3-pad3_ net-_u11-pad1_ d_nand +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +* u12 net-_u11-pad2_ net-_u1-pad12_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ port +* u10 net-_u10-pad1_ net-_u1-pad10_ net-_u10-pad3_ d_nand +* u9 net-_u6-pad3_ net-_u1-pad7_ net-_u13-pad1_ d_nand +* u13 net-_u13-pad1_ net-_u10-pad3_ net-_u13-pad3_ d_nand +* u15 net-_u14-pad2_ net-_u1-pad11_ d_inverter +* u14 net-_u13-pad3_ net-_u14-pad2_ d_inverter +* u4 net-_u1-pad5_ net-_u1-pad6_ net-_u4-pad3_ d_nand +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_nand +* u3 net-_u1-pad3_ net-_u1-pad4_ net-_u3-pad3_ d_nand +* u5 net-_u1-pad8_ net-_u1-pad9_ net-_u5-pad3_ d_nand +* u7 net-_u5-pad3_ net-_u5-pad3_ net-_u10-pad1_ d_nand +* u6 net-_u4-pad3_ net-_u4-pad3_ net-_u6-pad3_ d_nand +a1 [net-_u2-pad3_ net-_u3-pad3_ ] net-_u11-pad1_ u8 +a2 net-_u11-pad1_ net-_u11-pad2_ u11 +a3 net-_u11-pad2_ net-_u1-pad12_ u12 +a4 [net-_u10-pad1_ net-_u1-pad10_ ] net-_u10-pad3_ u10 +a5 [net-_u6-pad3_ net-_u1-pad7_ ] net-_u13-pad1_ u9 +a6 [net-_u13-pad1_ net-_u10-pad3_ ] net-_u13-pad3_ u13 +a7 net-_u14-pad2_ net-_u1-pad11_ u15 +a8 net-_u13-pad3_ net-_u14-pad2_ u14 +a9 [net-_u1-pad5_ net-_u1-pad6_ ] net-_u4-pad3_ u4 +a10 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a11 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a12 [net-_u1-pad8_ net-_u1-pad9_ ] net-_u5-pad3_ u5 +a13 [net-_u5-pad3_ net-_u5-pad3_ ] net-_u10-pad1_ u7 +a14 [net-_u4-pad3_ net-_u4-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u8 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u10 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u9 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u4 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u2 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u3 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u5 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u7 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u6 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.kicad_sch b/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.kicad_sch new file mode 100644 index 000000000..da57e1739 --- /dev/null +++ b/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.kicad_sch @@ -0,0 +1,1306 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 8044377d-c70c-461a-9baa-ee2bc77147aa) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nand" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nand_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nand_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 109.22 88.9) (diameter 0) (color 0 0 0 0) + (uuid bc69cd5e-626b-4ff1-aa2c-5f8590ab34e1) + ) + (junction (at 109.22 109.22) (diameter 0) (color 0 0 0 0) + (uuid e295aa4c-2dae-4a1d-8375-af0f0a7349b1) + ) + + (wire (pts (xy 132.08 88.9) (xy 133.35 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06dcee6e-208b-4484-b393-534e91e30b81) + ) + (wire (pts (xy 69.85 90.17) (xy 85.09 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10f44ea4-d025-4f3f-abe6-fefcb1baae4c) + ) + (wire (pts (xy 106.68 68.58) (xy 113.03 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1414ecea-2201-4c62-9349-ad54d84ecf76) + ) + (wire (pts (xy 130.81 91.44) (xy 130.81 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a4f4784-6d9f-42a6-bfe1-82504f6154c3) + ) + (wire (pts (xy 83.82 69.85) (xy 68.58 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b66f432-aed6-4efa-9013-93a4cf63f20d) + ) + (wire (pts (xy 106.68 53.34) (xy 113.03 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f9ef3c2-7c27-491d-a0c4-463cd6e21c30) + ) + (wire (pts (xy 109.22 87.63) (xy 109.22 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22d901a5-62a1-4907-81f1-e25a942f6ae9) + ) + (wire (pts (xy 109.22 107.95) (xy 109.22 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 302d7c75-5877-427d-baae-196c8292712e) + ) + (wire (pts (xy 160.02 110.49) (xy 156.21 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3561a63c-fcc4-4e69-8eb7-951a7b9e6e02) + ) + (wire (pts (xy 69.85 93.98) (xy 130.81 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45281656-8639-4e45-9738-cca05a380756) + ) + (wire (pts (xy 68.58 52.07) (xy 83.82 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48f9fdb8-8901-4050-be11-c57d23c284c9) + ) + (wire (pts (xy 132.08 109.22) (xy 133.35 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7666efc8-864c-4663-b12c-9da6315d894e) + ) + (wire (pts (xy 176.53 60.96) (xy 182.88 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 768ba5e0-584e-4235-8aa1-97d6714704c4) + ) + (wire (pts (xy 182.88 101.6) (xy 187.96 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76facf4e-3b44-4fd6-8dcc-68f610aad299) + ) + (wire (pts (xy 109.22 88.9) (xy 109.22 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82a110e0-ee30-49d7-b145-987ac99875e6) + ) + (wire (pts (xy 68.58 67.31) (xy 83.82 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83f53bf7-bd3d-4e53-a1ae-b2101481a860) + ) + (wire (pts (xy 113.03 53.34) (xy 113.03 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 846c926d-cd41-44ea-99e4-9264d84e4cdf) + ) + (wire (pts (xy 133.35 111.76) (xy 130.81 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 847b6158-c98b-4cdd-9a3c-e4bd4b5e19a5) + ) + (wire (pts (xy 107.95 88.9) (xy 109.22 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a361878-9b4c-49df-b916-89d0f3edc270) + ) + (wire (pts (xy 69.85 110.49) (xy 85.09 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91d4cdb8-5ec3-4b8c-b37f-9ec4632665f0) + ) + (wire (pts (xy 107.95 109.22) (xy 109.22 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0de885d-78d3-4170-a989-40e2cf5dc754) + ) + (wire (pts (xy 68.58 54.61) (xy 83.82 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a36df721-3bfb-47a4-a57b-77dd40289d17) + ) + (wire (pts (xy 222.25 101.6) (xy 229.87 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0f1452e-c6a4-4fb7-b619-e178d71e6f35) + ) + (wire (pts (xy 157.48 60.96) (xy 161.29 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b68c6486-43cf-4ae5-80fc-d4ca1feae356) + ) + (wire (pts (xy 130.81 111.76) (xy 130.81 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba672d62-36b8-4fdb-8ca0-72439d986369) + ) + (wire (pts (xy 69.85 114.3) (xy 130.81 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb46393d-be71-44cc-9de8-948f91750628) + ) + (wire (pts (xy 133.35 91.44) (xy 130.81 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c14b3e6f-5dc7-4f41-ace1-548d34181f46) + ) + (wire (pts (xy 203.2 101.6) (xy 207.01 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d08072b6-0078-4441-a299-8d1094a31cad) + ) + (wire (pts (xy 135.89 60.96) (xy 142.24 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4144bc4-3cd5-4295-afa4-00a473498544) + ) + (wire (pts (xy 69.85 107.95) (xy 85.09 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5936305-5eb7-4de3-bd0f-7e566ca8eadc) + ) + (wire (pts (xy 156.21 90.17) (xy 160.02 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7c264c6-fab4-441f-846e-b2eeaa5250a7) + ) + (wire (pts (xy 113.03 68.58) (xy 113.03 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0fa103e-a2c6-4586-8b64-d908904a5ddd) + ) + (wire (pts (xy 69.85 87.63) (xy 85.09 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4723c11-de18-4a2f-a268-c436e0aa01fc) + ) + (wire (pts (xy 160.02 102.87) (xy 160.02 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e54d0722-ef42-4710-9153-47e4a2e0c1a7) + ) + (wire (pts (xy 109.22 109.22) (xy 109.22 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e65f5e9f-4d59-466b-9d35-57147b17198a) + ) + (wire (pts (xy 160.02 90.17) (xy 160.02 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f46f5b6c-9a4b-41a4-a5fa-434a2b05218c) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 144.78 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 067974b7-3fd2-45a3-b319-67c06be43bcd) + (property "Reference" "U9" (id 0) (at 144.78 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 144.78 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 144.78 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a1db7eb2-75aa-4a68-8eb0-9b098fd312b7)) + (pin "2" (uuid 3a94939e-e24e-41a6-8a14-568c08e154dc)) + (pin "3" (uuid 2e350d96-fc1f-4a39-a411-52a942dca521)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 96.52 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13060ccc-83b6-4325-b07b-fd411dface3b) + (property "Reference" "U4" (id 0) (at 96.52 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 96.52 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 96.52 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 96.52 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f3da11c7-24a2-482e-be25-88a8bc5c3d02)) + (pin "2" (uuid 843bb176-e4dd-4e0c-844f-e6633ced5155)) + (pin "3" (uuid 4330728e-3d41-4b75-b2b2-bc28c5d9347c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 63.5 90.17 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1426b277-d1b7-49d2-8f5d-e32a07492fa0) + (property "Reference" "U1" (id 0) (at 64.135 85.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 64.135 87.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 63.5 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2280d383-7a34-4adc-9071-06372cf09091)) + (pin "2" (uuid 53267b7a-a297-4421-b4c4-0fb9dda83737)) + (pin "3" (uuid 783434cb-b85f-46ac-989f-01d027d854a8)) + (pin "4" (uuid ac51bcd2-aa09-4bbc-8c41-9320b302d3ef)) + (pin "5" (uuid e0f8c66e-ed0e-4e0b-a524-87bfee7d17d3)) + (pin "6" (uuid 9beb9f56-a2ce-4234-8f98-5ea969ece8d2)) + (pin "7" (uuid 8724a402-02c5-4908-9e35-9c61370180ae)) + (pin "8" (uuid 3a49e60b-1d66-4e96-9f51-896c133c5ee0)) + (pin "9" (uuid a8c1d5bf-c288-4700-931a-cec383562491)) + (pin "10" (uuid ec4f1c6b-fd75-483f-aabb-d9292573fe84)) + (pin "11" (uuid b3742e26-7f99-4a2f-98ce-ccb4bd99d72a)) + (pin "12" (uuid ae836c6a-d297-4107-8114-0abdac356d0f)) + (pin "13" (uuid 9b19e91b-258e-4057-bfc6-804ff446e867)) + (pin "14" (uuid ef8c3752-d1c1-4afe-9535-1d345d53d4d2)) + (pin "15" (uuid fcdbc696-1f4e-4c7e-be36-bfbe61eeb796)) + (pin "16" (uuid 74110b5b-3f3f-4033-b3f7-76e27ebaa1f7)) + (pin "17" (uuid 632b51e7-3fa3-4ae0-b30e-0a680593ed99)) + (pin "18" (uuid ce24c7c4-ee0d-4373-9dd8-9f38a7338122)) + (pin "19" (uuid 4eb65ace-30b8-4013-b3d9-ec79b28a019f)) + (pin "20" (uuid f7627dc2-9481-4b6f-99e6-7a28f8019088)) + (pin "21" (uuid 06140f78-051e-4c3d-a0f1-5c02e6ac2f48)) + (pin "22" (uuid 8de98d9b-9b14-4f20-ab77-b671d21746ab)) + (pin "23" (uuid 7305daf5-f46f-46c8-a748-d2e5766ef4b5)) + (pin "24" (uuid 43864e9d-2015-4e28-86fd-2c719675539b)) + (pin "25" (uuid bcf3b3ef-0dbe-47af-bcb6-76b4f18e69af)) + (pin "26" (uuid 9bbd1d2f-f8b6-492e-af54-edc41ea16735)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 63.5 93.98 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1af7d325-bcd4-4415-aa44-6edd1ebdb36a) + (property "Reference" "U1" (id 0) (at 64.135 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 64.135 91.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 63.5 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7dc9bda3-b233-4870-858e-798e3dc7f87d)) + (pin "2" (uuid ebd4fccc-1867-4066-b59a-515b724280f7)) + (pin "3" (uuid ff4cbd02-6b49-4040-90eb-4426a272a564)) + (pin "4" (uuid 704693f4-806a-4c39-87dd-ca9a85dcf4b0)) + (pin "5" (uuid ab4059d2-1255-4f68-a3a9-35ad59e8a9f8)) + (pin "6" (uuid 28abd07b-a804-4a4e-84b0-c997d81ea1a6)) + (pin "7" (uuid 9b123805-9275-42cb-82d1-039b7c23c850)) + (pin "8" (uuid 4f601733-ede0-419b-8974-fa0721c4600e)) + (pin "9" (uuid a05afb06-c490-47de-840b-53e9e9eeaa33)) + (pin "10" (uuid bf92d683-c3e4-45b1-b0d3-3f9b7ac33815)) + (pin "11" (uuid b5d4c06c-a9cb-48e6-a059-7d1593006991)) + (pin "12" (uuid 0b004f9c-1a5a-4911-8a23-9144f3455eba)) + (pin "13" (uuid 998fe3b8-bbaa-430c-af09-2c6274755085)) + (pin "14" (uuid 0aa8dfb8-f653-4b16-ab6d-60d1a2b3f9c3)) + (pin "15" (uuid f45eec8c-bffd-4aa3-a14d-579afafd3f19)) + (pin "16" (uuid 16b9d641-6b2f-4521-9a01-254a4c5d525e)) + (pin "17" (uuid 51d947db-8b2c-410d-9039-1f6ba12dc499)) + (pin "18" (uuid 201aa430-08fc-4970-96cb-29121b6abc0b)) + (pin "19" (uuid 57be84b8-e425-460f-bc4a-75b90463b68d)) + (pin "20" (uuid 37fcb48f-d368-4a8b-b0fc-3bec1f42969d)) + (pin "21" (uuid 99e9bc29-80db-4148-9412-21af8bbd2fb7)) + (pin "22" (uuid 99da5948-1d91-4605-933d-6ed0eafdaf60)) + (pin "23" (uuid 3fe3c15b-afc0-4f67-8498-977bee80f349)) + (pin "24" (uuid 9cf37223-3ddd-4634-8a9f-d0bfea90ba3f)) + (pin "25" (uuid 7265f377-9ac8-48bc-a9f8-12cfb1936c59)) + (pin "26" (uuid e16ab277-1a53-4d42-bee5-65f76170273b)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 171.45 102.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 22516f61-3dcf-4dab-b5e1-8da56d0bec68) + (property "Reference" "U13" (id 0) (at 171.45 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 171.45 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e0814092-3a47-4b12-9172-04f01fb1a90d)) + (pin "2" (uuid 364cfd7f-6e43-4d9e-9d92-8c7bcc69d420)) + (pin "3" (uuid a756043c-72f2-4ed3-b4ec-6734d8de1214)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 189.23 60.96 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 27f7d124-d643-4bb5-ab53-b59742adab48) + (property "Reference" "U1" (id 0) (at 193.04 60.325 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 193.04 62.865 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 189.23 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ed3878e-3a09-4698-a1f5-7e35b08b2590)) + (pin "2" (uuid a65cd2b0-27da-40fc-8002-194ad6615e3f)) + (pin "3" (uuid 8371c3b4-8342-47eb-a5c1-7ff6abe67753)) + (pin "4" (uuid afe4a8a8-7505-4fe8-8287-3a0bd71bdcb7)) + (pin "5" (uuid 210d6a5a-7e93-4936-9c67-9422e275fba9)) + (pin "6" (uuid 3119a56b-1d99-458d-b046-9cb46f26543d)) + (pin "7" (uuid a7bf559b-4240-4583-9c9e-1b3d8bb046fb)) + (pin "8" (uuid 6891ce6a-7ba9-443d-97d7-a6ad5a7d7bb8)) + (pin "9" (uuid 84fc01cc-3cec-4efc-a77c-85390d2933ee)) + (pin "10" (uuid 8273f6be-87a2-4758-b7c4-a813d28f8465)) + (pin "11" (uuid 68fcd3ea-7816-4eb8-aeb5-21fa9df97aad)) + (pin "12" (uuid 485ef19f-0580-4fda-9c6d-9b746d1ea8b9)) + (pin "13" (uuid 8de21c55-91fd-43af-8d12-2c2f55077700)) + (pin "14" (uuid 5bfb3eb0-3189-4132-adf0-556a7d941061)) + (pin "15" (uuid 70abe082-ab12-46b0-a5e6-220d83ba5811)) + (pin "16" (uuid ce51dc2c-9c86-4e5e-b2cc-3e00fe175ff7)) + (pin "17" (uuid 295ffe01-baf3-4535-94ff-cdaa83ae40ba)) + (pin "18" (uuid f70090cd-0de2-4ffd-9e61-ff8f5e68f00c)) + (pin "19" (uuid 7fb4dd69-42ed-4051-af4a-753db09d8e88)) + (pin "20" (uuid 42cf4a11-2a3b-4c0e-b0e4-b0ab53a5f829)) + (pin "21" (uuid 08859bfa-61c2-4670-aa53-9ed9027fccb9)) + (pin "22" (uuid 7a624f76-3226-4336-a145-ac3b9a60ce4a)) + (pin "23" (uuid 598626d5-7c21-4f86-bdd5-7c38e86ab268)) + (pin "24" (uuid f6212a3a-bc6a-4801-b5fa-7ebf2ceb6d16)) + (pin "25" (uuid 1e71782f-ef74-4195-8210-17319e4be184)) + (pin "26" (uuid 208894a8-0ebe-4c0d-9623-97ccdd2cac45)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 63.5 110.49 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 312be6df-9ec0-486e-b2b6-1f7155168a4c) + (property "Reference" "U1" (id 0) (at 64.135 105.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 64.135 107.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 63.5 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 430c6afc-22ce-4803-8f25-a34abdea8640)) + (pin "2" (uuid d3d99f2c-de97-41b9-9bbd-97fdd1d6a7f0)) + (pin "3" (uuid e00eee35-f6e6-4611-aa07-168e71663b9e)) + (pin "4" (uuid 0e39c1d4-ad7a-4308-af36-b8c065fec256)) + (pin "5" (uuid 6615157f-a3b9-4a3e-b512-26a5c08ef533)) + (pin "6" (uuid 2709cb98-fce3-479c-ac3d-86ef63a7defb)) + (pin "7" (uuid db241b05-0c95-4f16-90c9-d42a570b4509)) + (pin "8" (uuid b0208c3a-1792-4586-abca-53345a90a071)) + (pin "9" (uuid cfbfb523-6292-4a70-bbe7-bc20953b03f9)) + (pin "10" (uuid e413406c-2ad6-4824-a4eb-aeecd1333313)) + (pin "11" (uuid 4159a190-af8d-47e9-8ab9-4b4f198fefb9)) + (pin "12" (uuid fcf7026c-01e6-45ec-89f3-28d04d0ceebb)) + (pin "13" (uuid a15bfe7c-e70a-4514-9afb-f6be20fdb03c)) + (pin "14" (uuid 928cfbb8-3780-4373-a7d4-d5a36d152d4e)) + (pin "15" (uuid 24d6f0da-36f0-44ff-bb5c-73a4e8bba620)) + (pin "16" (uuid 491caef0-9d16-4f6c-8ea7-dad6ef8d6be6)) + (pin "17" (uuid c33b73b5-f849-42f2-885e-82758214f416)) + (pin "18" (uuid bf70d53b-a76a-4552-930f-dc6dc974f666)) + (pin "19" (uuid 3b310ada-f1ad-4663-9205-d66261701780)) + (pin "20" (uuid c25b12e0-cd6b-4617-aa24-7f251fc887a8)) + (pin "21" (uuid e33ebdd0-4b26-4d4a-807d-fac5d7623647)) + (pin "22" (uuid 0c0c2719-1cd4-46e6-855f-f6079af88e1f)) + (pin "23" (uuid fff83c42-605d-453d-ac45-7c48b5cbe4f2)) + (pin "24" (uuid 9fc74996-eca5-4070-8826-7d31239ef733)) + (pin "25" (uuid 501010f1-fb74-49d2-91dd-fa3c056406ba)) + (pin "26" (uuid 764b0a2e-0dbe-470c-9d85-8ae87bbf7c06)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 195.58 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 497583ba-2f42-445b-a4f7-655e81e1f743) + (property "Reference" "U14" (id 0) (at 195.58 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 195.58 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 196.85 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eab601cf-dc32-4bc7-a09f-2e427a1254fb)) + (pin "2" (uuid af4772c6-e2b6-4d3a-86b2-9a61da80ca22)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 63.5 114.3 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b8ead0f-a2ee-4081-a1bd-0d4cfc032b6b) + (property "Reference" "U1" (id 0) (at 64.135 109.22 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 64.135 111.76 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 63.5 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7b3f738-629e-4c46-8e6b-dc76db6b22ae)) + (pin "2" (uuid 4961927c-8a49-4fd2-90aa-5bc06a332b9b)) + (pin "3" (uuid 0257bb78-451a-4c3d-9933-174294ef9ea3)) + (pin "4" (uuid f9a2581c-d1ef-4e92-a71c-670c367cc606)) + (pin "5" (uuid d6cd3fd7-e529-4a28-b4bc-5b3b3dfba0b2)) + (pin "6" (uuid 3b6b0a32-0171-4fd1-aa72-8facc49c85d3)) + (pin "7" (uuid 5ad31652-0eda-4515-bdcb-1bcdbc702be8)) + (pin "8" (uuid 2cdcfb8f-cea5-4a1c-b34a-26cee6e01eb5)) + (pin "9" (uuid 18f0d849-4467-4c20-8a4a-29c121d5c842)) + (pin "10" (uuid f2d94564-5f54-4c85-93c9-ae45ae2fec75)) + (pin "11" (uuid d8204b40-a3a7-403d-b254-f56fca95190f)) + (pin "12" (uuid 886b89e5-b72a-4cfc-9fdb-ff686431a668)) + (pin "13" (uuid d617944a-30da-41e3-bf1e-4c2bc8a16627)) + (pin "14" (uuid d063faf7-e26f-4e08-8b3f-979aac8dd1e1)) + (pin "15" (uuid bc112a47-b3f1-41c8-bb8f-8dd6a80bacb4)) + (pin "16" (uuid 3011291c-cf0a-4f37-bebc-041f2e95cac4)) + (pin "17" (uuid 5688a0d7-c16e-4183-b588-f74c04ede641)) + (pin "18" (uuid 83a3797c-a2f4-4199-bebd-519d0cdd02c7)) + (pin "19" (uuid 712a931c-4a77-493f-a243-3ab1932fddf3)) + (pin "20" (uuid dc90de79-23cb-4fb4-ab8f-bd163b7d97bb)) + (pin "21" (uuid 00496fdb-5d71-43e1-a86b-6f6f6f550a8a)) + (pin "22" (uuid d4a8674b-d16b-401d-88ee-242fd10d6ae0)) + (pin "23" (uuid ec3e9d6d-22fc-49e8-bd53-b4130a9b5466)) + (pin "24" (uuid e4112bf3-071d-4545-bcb8-dac9c6e9b8aa)) + (pin "25" (uuid 130039f2-332c-4c9e-968a-8f7c2c5c9a08)) + (pin "26" (uuid 8fca4d73-8380-4b61-bf7a-3ce7afbe95f4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 168.91 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5926f87f-7926-40b1-94ad-1b3f1240e693) + (property "Reference" "U12" (id 0) (at 168.91 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 168.91 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 170.18 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 396f8f78-5a13-433f-a7c9-0364b96a4382)) + (pin "2" (uuid f004a7a2-86f6-4f81-9d90-974e3b9475eb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 62.23 54.61 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 592efacd-6ce3-4a57-9641-8f9177de5cf2) + (property "Reference" "U1" (id 0) (at 62.865 49.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 62.865 52.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 62.23 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 62.23 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 171440cc-eb2a-4059-9075-363033d04454)) + (pin "2" (uuid 7ebe72d5-0480-4573-8d1a-2b29b6713c5e)) + (pin "3" (uuid 7b11bb57-2761-417b-85ea-0875c1f3ecdd)) + (pin "4" (uuid 35219d5b-58fb-4db1-b458-e19393f3b123)) + (pin "5" (uuid d8004c14-b946-4f7b-8e8d-c2126f5c6e22)) + (pin "6" (uuid 33bf721d-2010-4a5c-85ee-1555ac95f43f)) + (pin "7" (uuid 76125625-34af-4b19-8a12-39dea169bee1)) + (pin "8" (uuid fa062a76-59c4-40b6-8688-e8531e599c7f)) + (pin "9" (uuid 291eee84-6c41-46b9-8cf2-9558d412b867)) + (pin "10" (uuid 9bbbe7a2-4dd3-4b24-b26a-e46fdb6035d6)) + (pin "11" (uuid edb26815-8aae-42fa-8320-82552eaff888)) + (pin "12" (uuid 9573ada5-0222-416e-a4f2-d7980fa506b8)) + (pin "13" (uuid bb633f96-eb1e-4238-b2ef-2c4954c3763f)) + (pin "14" (uuid 77206ccc-df92-49ad-be0e-e0578ba93148)) + (pin "15" (uuid 5d4e0f9d-da5e-4ca0-9cf9-59d79ce3a14e)) + (pin "16" (uuid c32b771c-e32e-4f46-adc9-9b0378c128cf)) + (pin "17" (uuid 22ef1b44-ad23-4222-9582-b30a986d2617)) + (pin "18" (uuid 57f5d647-3884-4658-ae21-75212c3d0605)) + (pin "19" (uuid 9b78decd-fb36-402f-9b79-c0bc1ce68314)) + (pin "20" (uuid 6f9bafbc-b932-44bc-8d12-279e4fcea26b)) + (pin "21" (uuid e5f6eb43-4622-422f-8081-1e027d1d04bb)) + (pin "22" (uuid 39ad0a48-fe8f-4432-a85c-b51ec27219d4)) + (pin "23" (uuid 30569c85-2329-490f-a0ab-7682add5085b)) + (pin "24" (uuid eecf2d08-e5fd-4299-9443-a47479b38f2b)) + (pin "25" (uuid 24ea6073-90f6-45b9-bfae-f13655b6e307)) + (pin "26" (uuid 82baf3ba-b778-4e74-90f3-6950f445412a)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 124.46 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5c54b279-fb82-4e8b-8dac-0c10a20ce99a) + (property "Reference" "U8" (id 0) (at 124.46 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 124.46 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 124.46 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 124.46 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 447814c6-dda4-4bab-8674-3ac106c7011b)) + (pin "2" (uuid 07f303a1-cf04-4133-91e6-bb6bd23fc104)) + (pin "3" (uuid 517d27dd-85d7-43d1-904a-14252a639ac0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 149.86 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 663e09c5-c624-4ca7-9f86-6aaf692a9f82) + (property "Reference" "U11" (id 0) (at 149.86 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 149.86 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 151.13 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 151.13 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 86360524-205c-4620-baaa-446a1a69f7e8)) + (pin "2" (uuid 82411fd7-11d3-44f0-976a-59f3ef2ee846)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 144.78 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68b6fff2-f300-4acc-a6c8-6740fe871e27) + (property "Reference" "U10" (id 0) (at 144.78 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 144.78 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 144.78 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1333f839-286d-4227-8c5e-0bd36de3af20)) + (pin "2" (uuid 290015ba-3c61-41af-9b44-6c130c144598)) + (pin "3" (uuid 8f5e5549-7d6e-44c0-9a6f-dfd55e7c93a1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 63.5 107.95 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a2b2495-0d79-4bb1-b994-775e5c407833) + (property "Reference" "U1" (id 0) (at 64.135 102.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 64.135 105.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 63.5 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fafeea45-a029-470a-83d6-28f7c9d00965)) + (pin "2" (uuid 80c25c38-8868-462b-8b9a-14ada02dc297)) + (pin "3" (uuid 213efe29-b678-40a7-8be4-029e0a6a86a2)) + (pin "4" (uuid dc9ef0a6-9de7-4bfe-bcb6-f8ddc5a18880)) + (pin "5" (uuid a8664373-3047-4280-b34f-53f3a98d2468)) + (pin "6" (uuid d0c343d5-2d61-4e9f-a6b0-cb8ae348ceaa)) + (pin "7" (uuid 5ac42c46-2a6f-47c3-b963-60cd8c055f51)) + (pin "8" (uuid dda35e4d-01f0-43ed-9c1d-9d64b95c095f)) + (pin "9" (uuid 4106e93b-97e3-4a10-8134-72351db304d4)) + (pin "10" (uuid 241e5225-7ea8-4154-830f-27f24d2fff5a)) + (pin "11" (uuid ee79b52a-6452-4d70-b424-f0d71ad9c73a)) + (pin "12" (uuid 19067f43-989b-42b9-b294-81d357d91c1b)) + (pin "13" (uuid 1cb100c1-efdf-4311-ab7d-24df8034b2f2)) + (pin "14" (uuid 2d9b56ef-27bf-41b8-8aee-42e7121354da)) + (pin "15" (uuid 71c28356-f186-4cdf-8d5a-10f14f9d33dc)) + (pin "16" (uuid fe88426d-e5e7-4e27-9283-1a0254b78ca4)) + (pin "17" (uuid 3f1d334e-4696-4b98-9fb7-2b33e9ddbbf5)) + (pin "18" (uuid ab91c61b-77d5-412e-939f-7e964a47dbd5)) + (pin "19" (uuid 0fa9d9d9-3510-4ffe-b477-639e57280978)) + (pin "20" (uuid ec7ddfdb-65af-49c9-a188-5c8235ed67a0)) + (pin "21" (uuid 840aba97-8e0b-462c-aac4-f6a950447ce5)) + (pin "22" (uuid c6b1d5ca-516f-4083-a898-9b4f88c52a2a)) + (pin "23" (uuid 27a938c5-dfd9-4360-a285-d1e6b602d6a9)) + (pin "24" (uuid 033cb2ae-ab26-4057-81dd-e21ebcad2506)) + (pin "25" (uuid a46d8af2-81d4-40ef-b6a8-fced5178455e)) + (pin "26" (uuid 9d52b850-49f9-470f-91b8-7e2e19f37ef6)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 95.25 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 774889c8-5b04-46d5-865b-9044f219bcca) + (property "Reference" "U2" (id 0) (at 95.25 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 95.25 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 95.25 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 95.25 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5bb87ecd-9fc7-405a-97a2-2e0940de3701)) + (pin "2" (uuid 0f65b052-2ffa-464a-ab2c-d81d4b36014e)) + (pin "3" (uuid fc972465-e9ef-495f-8ce3-48d4054c9e07)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 62.23 69.85 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a1b2080-1781-4ede-9a97-453c24fcac99) + (property "Reference" "U1" (id 0) (at 62.865 64.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 62.865 67.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 62.23 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 62.23 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bfd73350-2894-4e6f-8b2c-f4daa621bbcd)) + (pin "2" (uuid 7637d091-90ae-4f97-a33c-6a34b1afb5e1)) + (pin "3" (uuid 767c077a-9200-4fcc-a693-5e63a0ce8713)) + (pin "4" (uuid c4ac90ae-146c-4747-8237-b027a6281004)) + (pin "5" (uuid 50296cbf-b196-410a-80ab-9b07a63be16a)) + (pin "6" (uuid 39a1d6d8-a6a5-43d8-a2d5-546683c01a36)) + (pin "7" (uuid e0d52d81-1eb5-49d7-8de0-a96ea3e42638)) + (pin "8" (uuid b33f8a7f-baa5-46b8-a63e-6fac94b8159a)) + (pin "9" (uuid 12a1d226-9954-4283-ac89-b8336f40b9e9)) + (pin "10" (uuid b88495aa-89ae-497a-a78d-9e080c96d468)) + (pin "11" (uuid 75a1807f-f58e-4177-919b-52ed21999cd4)) + (pin "12" (uuid b0b497ea-1139-470e-9cde-a98c9b54e2a9)) + (pin "13" (uuid d8ec1ec7-c3db-4ded-b6eb-5ac550e703da)) + (pin "14" (uuid 7cd9b7fb-f99d-4138-8770-812a0364a1b7)) + (pin "15" (uuid 49b1756e-0f1b-4bfd-96d7-6103d90123cb)) + (pin "16" (uuid fa688d9b-fedb-4e9e-ab67-c6d4359a7a50)) + (pin "17" (uuid 8fa62ad3-12b9-4513-a4e5-04918ae67a7a)) + (pin "18" (uuid fed2c3f8-fa99-4ac9-b66c-d7bc01315c8f)) + (pin "19" (uuid dde7c0b2-95c6-447f-9ab4-098f16d8d152)) + (pin "20" (uuid 0314894a-df8a-4b21-ab31-e95fe7e5df52)) + (pin "21" (uuid 40e190c1-d4e7-4acd-b2ca-8b305a8480a5)) + (pin "22" (uuid 5a820ed1-3e7a-40f2-9eb7-e14988e796a1)) + (pin "23" (uuid cc1f6998-c9dc-4c0a-8e50-96d3a0413070)) + (pin "24" (uuid 599932a6-376b-473e-b402-bbf2e4503537)) + (pin "25" (uuid c8d77063-d07f-4bf6-9340-846bd4596597)) + (pin "26" (uuid a629b5cc-3938-41a0-bc6e-1b106da400a6)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 120.65 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 943c90a9-a2a3-4d66-b81c-e53630307192) + (property "Reference" "U6" (id 0) (at 120.65 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 120.65 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 120.65 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 99e15acc-d127-473e-b320-d8536b1ae7fa)) + (pin "2" (uuid d1a19459-3614-48a9-b462-6c75f6e7dc8f)) + (pin "3" (uuid d992c0b1-7ed3-4172-af57-f0d2606262e7)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 120.65 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a826a390-9921-4cf9-91d2-5af98223d59c) + (property "Reference" "U7" (id 0) (at 120.65 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 120.65 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f7ad2714-768e-4c5c-b199-d5f76b5ffc08)) + (pin "2" (uuid 7607d813-b68a-47d8-87f1-12d4342df493)) + (pin "3" (uuid 0386fcee-847f-4db5-abd1-0cce8263445c)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 96.52 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid abfc9beb-d1e1-4958-b64d-8b8ef6318409) + (property "Reference" "U5" (id 0) (at 96.52 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 96.52 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 96.52 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 96.52 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bb3823b7-9d86-46ed-b8f1-f2d0e1fe5277)) + (pin "2" (uuid 1328d08e-65df-4ddb-bd2e-94e0f3f3369b)) + (pin "3" (uuid 3ffabca7-55bc-4d71-b821-92d0e3351fa1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 62.23 52.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ad29fe05-3db3-4cbc-8e95-4a546a4de8cb) + (property "Reference" "U1" (id 0) (at 62.865 46.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 62.865 49.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 62.23 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 62.23 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f4761fda-f185-4208-bfcd-9e0ef5c72edc)) + (pin "2" (uuid 99323bf1-63dc-4939-894b-58a34e1df8e5)) + (pin "3" (uuid 36cb07c0-51b4-48a6-9605-495053924c55)) + (pin "4" (uuid cc5c3c06-eee4-46e9-b017-a6e828869f7c)) + (pin "5" (uuid a98e570b-d7b6-47aa-9aa7-5a8e652d1238)) + (pin "6" (uuid f0844d50-ba40-42df-879a-ea1d7e14910e)) + (pin "7" (uuid 810146f2-0fb1-4ef6-aa23-3c7d57e0b30a)) + (pin "8" (uuid 51da6c7f-ce97-43e4-9f89-644c70f99f15)) + (pin "9" (uuid 8861002c-b2da-4e8b-8642-71fa85c0ac06)) + (pin "10" (uuid f3598b4d-db33-4a8e-8358-14dc636a54c2)) + (pin "11" (uuid 243694c4-0e62-4427-bfdf-d80b25b0a42f)) + (pin "12" (uuid af1fd299-5c97-4fb8-85c6-350ac47ac5fb)) + (pin "13" (uuid 570cd4f0-f529-4c21-bb16-c1f162a88890)) + (pin "14" (uuid 3ed6f859-aeaa-4f68-a43f-8fe5493f9386)) + (pin "15" (uuid 774c568b-e581-4362-8e2d-dcd8daf01a97)) + (pin "16" (uuid 857d2ef5-0600-4d98-ad85-0bec1663f10b)) + (pin "17" (uuid 899b421c-b0c5-4f9a-9ffb-ccc3a95a9c80)) + (pin "18" (uuid bfd2daac-262e-4cdf-ab42-88a2098a8f7f)) + (pin "19" (uuid efaa1ac2-4864-445f-839a-2a31b1d57396)) + (pin "20" (uuid 0c840b27-490c-46a9-8b28-46750d9f41cc)) + (pin "21" (uuid 24f08681-c6c2-4655-914c-aae612a04c26)) + (pin "22" (uuid 6a64fa99-2dde-4816-8c7c-ae9e4dd2f89e)) + (pin "23" (uuid fc7d30c6-18b0-4f5a-87cf-9c55499ad533)) + (pin "24" (uuid 7ac0069c-06ef-4b79-a285-b5aa7e20da03)) + (pin "25" (uuid 08c4711d-ec37-4528-8538-d418c6755039)) + (pin "26" (uuid 0906a62e-724e-4d94-be28-262e73844ea2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 236.22 101.6 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b05499d7-d5b6-45a9-8f06-9ef685c22b46) + (property "Reference" "U1" (id 0) (at 240.03 100.965 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 240.03 103.505 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 236.22 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 236.22 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dcd196d5-517d-485b-86d5-35bc0284eb6d)) + (pin "2" (uuid 20824ffc-3773-4dd7-b2c3-d6c9aad17ed5)) + (pin "3" (uuid 658a080f-f9ad-44d1-bf07-11ffdc248d41)) + (pin "4" (uuid 6b60546d-5ff6-4a29-ac75-6632e6fadb30)) + (pin "5" (uuid 24be2ab3-8cb1-47c8-b481-9a35dbd8fad9)) + (pin "6" (uuid 8dfb304d-a7de-48d3-86ef-42d675c67416)) + (pin "7" (uuid e4acc61a-0741-4a84-a40d-cbaa6e9fce9a)) + (pin "8" (uuid 027beef0-0406-4b09-b7a9-dfc0ba833ee1)) + (pin "9" (uuid 5b40f6d8-9f4f-408d-8865-b4c5ac791ead)) + (pin "10" (uuid da8ab6e0-409f-4f9f-8a12-915a2a4d2a6f)) + (pin "11" (uuid 5d3cc51c-e96f-4ed6-ac3f-8c3821ceef47)) + (pin "12" (uuid 32875dee-2706-4de6-99d2-9df412cee8f0)) + (pin "13" (uuid 1724bebd-73d3-4916-8b19-fd49254ef61d)) + (pin "14" (uuid f0119742-56df-453f-9682-19e9c0fd6ad9)) + (pin "15" (uuid d7e00dc9-5c4c-4a42-8b16-497f2e35252b)) + (pin "16" (uuid bbf7832f-a245-4a32-9146-2145d845e1f9)) + (pin "17" (uuid dfd85d2a-6055-48c8-84b2-c314e7bfed38)) + (pin "18" (uuid 4ba74581-b0af-4363-803d-3b9dc92503a6)) + (pin "19" (uuid cdaa67bf-33cc-46e7-914a-2fdc836dc694)) + (pin "20" (uuid d5db8477-7d17-4d3e-849d-a242bb297f64)) + (pin "21" (uuid bd18a665-24d3-4e20-848b-d110c093f6fc)) + (pin "22" (uuid 1602f9ad-80e9-4247-b504-c4d4b91ec2ea)) + (pin "23" (uuid 28e2129c-d230-4d51-833e-d7e02f8d5aa6)) + (pin "24" (uuid 2706a36f-943a-43d1-96c2-34cd91184e53)) + (pin "25" (uuid bd278979-bbf6-4f28-969b-f2f18ae00c1b)) + (pin "26" (uuid a9004561-4567-4c80-8ed2-367d7f5b6e41)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 214.63 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cdfc4a5a-8c72-4e4d-906d-6b343a7cdb93) + (property "Reference" "U15" (id 0) (at 214.63 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 214.63 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 215.9 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 215.9 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 426aa8fc-f11a-4104-aed6-3517378d0648)) + (pin "2" (uuid e57af4ee-e6fd-47e6-a43b-b50a09161fec)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 62.23 67.31 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f804c8c8-a75e-41d4-a016-8f88c26a9aac) + (property "Reference" "U1" (id 0) (at 62.865 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 62.865 64.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 62.23 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 62.23 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a0375303-e60d-40fc-8368-703fa5a91ba4)) + (pin "2" (uuid 6c7a816c-d068-4313-ba6e-754dfa32a08b)) + (pin "3" (uuid cd12da8b-e133-4f1f-8923-72110efd9291)) + (pin "4" (uuid cb7a0bb5-e7ca-4130-a118-1630f40281f6)) + (pin "5" (uuid 32a482d2-f571-4372-96a3-3bb2f54da714)) + (pin "6" (uuid a24292c3-d832-4188-936e-6d7ffa6b5927)) + (pin "7" (uuid 8f4c4b6b-ea38-4440-8ef9-094897bf577b)) + (pin "8" (uuid b2dde307-6b6c-44e2-8dec-827c8032ae27)) + (pin "9" (uuid 5c161d53-fe6e-4d82-88ce-baaf00a83fc0)) + (pin "10" (uuid 548b0f1d-1989-4e9d-bf4d-95786a8dc2c4)) + (pin "11" (uuid 6193b15f-18c0-4bf0-8b0c-e379bbdca932)) + (pin "12" (uuid e5de52d4-f1f3-44e2-b758-7094836744f7)) + (pin "13" (uuid a53e57c7-4e92-4ccb-8250-cbd74e5ec85b)) + (pin "14" (uuid 557a05dc-9581-4526-a3b1-c090d270b7f9)) + (pin "15" (uuid 6aa8a95c-e995-4518-a9f8-4c631daf1774)) + (pin "16" (uuid 4ac28620-ca73-4da9-a902-2fc3300c6ea2)) + (pin "17" (uuid 58b62b4d-2c53-40b1-92f9-7abaa800cb66)) + (pin "18" (uuid de1df27d-60b9-4d6b-bdb9-212363817ff9)) + (pin "19" (uuid 2a494a8f-837c-42c7-8ad2-b62122a42d41)) + (pin "20" (uuid 12fa4c4e-7948-4364-bd18-372972b2b386)) + (pin "21" (uuid 8f02400e-8e4a-4b6f-9f1c-032346586831)) + (pin "22" (uuid bc544054-ba9a-4494-83fe-3a6269514f6a)) + (pin "23" (uuid 1481a03e-de49-4262-afa2-6d9bcab16671)) + (pin "24" (uuid 208fc609-950b-493a-adb2-0a219e6df6e7)) + (pin "25" (uuid bdf9ffdb-8a39-441e-a8df-5787d3842d50)) + (pin "26" (uuid 0c0afc43-093d-4992-b7e7-6938dc1ba6ee)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 95.25 69.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9f99922-f57d-4007-b73a-a0d8f2182212) + (property "Reference" "U3" (id 0) (at 95.25 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 95.25 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 95.25 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 95.25 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 369fc19a-2644-4fb9-8749-0882962a4253)) + (pin "2" (uuid cf122879-5b2c-4edd-842e-c5aa75c7da7e)) + (pin "3" (uuid a5e4a88a-7667-4c7d-a672-0e110a21814d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 63.5 87.63 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fbc5086e-1043-4810-b845-8aaa2a3764eb) + (property "Reference" "U1" (id 0) (at 64.135 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 64.135 85.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 63.5 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4559ac7e-92ab-4019-9fd8-ef3d8255f281)) + (pin "2" (uuid 08ffac85-5903-436b-938a-81b1b6f6552f)) + (pin "3" (uuid 602e56f6-b929-41b9-8bb9-d40ed8bdd791)) + (pin "4" (uuid 40ef7aa4-9b02-43f0-b4f4-c2adba6e1048)) + (pin "5" (uuid b7b0c8ef-32c4-41fe-bf6d-48a17dc97092)) + (pin "6" (uuid ecd7c128-d8b5-4847-9308-d7a80e7b68ee)) + (pin "7" (uuid dab7f394-3ad3-495d-8c2c-7372be2a9332)) + (pin "8" (uuid 62f7d77c-854c-4ac9-b7d2-d78a0a9193d4)) + (pin "9" (uuid 46ab4397-f82d-4861-90a1-0357a82eec90)) + (pin "10" (uuid a0a8e3ba-d774-4a0c-8305-b8db2290130c)) + (pin "11" (uuid 41fd7885-3269-48b2-b455-0c6d7355cafa)) + (pin "12" (uuid f27ce563-f90b-4b79-89a4-b6e72d7b1e85)) + (pin "13" (uuid 5b701da0-df7a-4b5b-bae3-03ee796d6f69)) + (pin "14" (uuid ea9a5282-e56e-481b-a185-2212a8091126)) + (pin "15" (uuid 64ac2d54-1dc4-4085-b898-a11fe15779f7)) + (pin "16" (uuid 52c8d119-8053-41aa-8e06-6f8d0b04370f)) + (pin "17" (uuid 462cff6f-6c44-436d-8aae-ff5bbfee261e)) + (pin "18" (uuid 5fdd5592-e557-45de-8378-10c996f4367e)) + (pin "19" (uuid 7daadbb5-77f9-45ef-97fe-4eb856c62bc7)) + (pin "20" (uuid abc6acca-c0e1-49e1-a841-b4fce0abe14e)) + (pin "21" (uuid ee9a54c9-ebcf-45f4-bc16-53b0cf82d35d)) + (pin "22" (uuid a48ac786-3d3a-43e5-9543-3c195b55fea1)) + (pin "23" (uuid d27f4ba5-1c67-4be6-ad4a-f2cd42ddfe03)) + (pin "24" (uuid ce1dbce7-d039-427e-a343-180d2d8b1781)) + (pin "25" (uuid 1bfe7a62-a00b-4252-ad9c-baa9a0a214df)) + (pin "26" (uuid c9151272-31c5-458b-b3b7-6973ab23a610)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/ad29fe05-3db3-4cbc-8e95-4a546a4de8cb" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/592efacd-6ce3-4a57-9641-8f9177de5cf2" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/f804c8c8-a75e-41d4-a016-8f88c26a9aac" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/7a1b2080-1781-4ede-9a97-453c24fcac99" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/fbc5086e-1043-4810-b845-8aaa2a3764eb" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/1426b277-d1b7-49d2-8f5d-e32a07492fa0" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/1af7d325-bcd4-4415-aa44-6edd1ebdb36a" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/6a2b2495-0d79-4bb1-b994-775e5c407833" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/312be6df-9ec0-486e-b2b6-1f7155168a4c" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/4b8ead0f-a2ee-4081-a1bd-0d4cfc032b6b" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/b05499d7-d5b6-45a9-8f06-9ef685c22b46" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/27f7d124-d643-4bb5-ab53-b59742adab48" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/774889c8-5b04-46d5-865b-9044f219bcca" + (reference "U2") (unit 1) (value "d_nand") (footprint "") + ) + (path "/f9f99922-f57d-4007-b73a-a0d8f2182212" + (reference "U3") (unit 1) (value "d_nand") (footprint "") + ) + (path "/13060ccc-83b6-4325-b07b-fd411dface3b" + (reference "U4") (unit 1) (value "d_nand") (footprint "") + ) + (path "/abfc9beb-d1e1-4958-b64d-8b8ef6318409" + (reference "U5") (unit 1) (value "d_nand") (footprint "") + ) + (path "/943c90a9-a2a3-4d66-b81c-e53630307192" + (reference "U6") (unit 1) (value "d_nand") (footprint "") + ) + (path "/a826a390-9921-4cf9-91d2-5af98223d59c" + (reference "U7") (unit 1) (value "d_nand") (footprint "") + ) + (path "/5c54b279-fb82-4e8b-8dac-0c10a20ce99a" + (reference "U8") (unit 1) (value "d_nand") (footprint "") + ) + (path "/067974b7-3fd2-45a3-b319-67c06be43bcd" + (reference "U9") (unit 1) (value "d_nand") (footprint "") + ) + (path "/68b6fff2-f300-4acc-a6c8-6740fe871e27" + (reference "U10") (unit 1) (value "d_nand") (footprint "") + ) + (path "/663e09c5-c624-4ca7-9f86-6aaf692a9f82" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5926f87f-7926-40b1-94ad-1b3f1240e693" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/22516f61-3dcf-4dab-b5e1-8da56d0bec68" + (reference "U13") (unit 1) (value "d_nand") (footprint "") + ) + (path "/497583ba-2f42-445b-a4f7-655e81e1f743" + (reference "U14") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/cdfc4a5a-8c72-4e4d-906d-6b343a7cdb93" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.sub b/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.sub new file mode 100644 index 000000000..45655333c --- /dev/null +++ b/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58.sub @@ -0,0 +1,62 @@ +* Subcircuit IC_GD74HCT58 +.subckt IC_GD74HCT58 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ +.title kicad schematic +* u8 net-_u2-pad3_ net-_u3-pad3_ net-_u11-pad1_ d_nand +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +* u12 net-_u11-pad2_ net-_u1-pad12_ d_inverter +* u10 net-_u10-pad1_ net-_u1-pad10_ net-_u10-pad3_ d_nand +* u9 net-_u6-pad3_ net-_u1-pad7_ net-_u13-pad1_ d_nand +* u13 net-_u13-pad1_ net-_u10-pad3_ net-_u13-pad3_ d_nand +* u15 net-_u14-pad2_ net-_u1-pad11_ d_inverter +* u14 net-_u13-pad3_ net-_u14-pad2_ d_inverter +* u4 net-_u1-pad5_ net-_u1-pad6_ net-_u4-pad3_ d_nand +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_nand +* u3 net-_u1-pad3_ net-_u1-pad4_ net-_u3-pad3_ d_nand +* u5 net-_u1-pad8_ net-_u1-pad9_ net-_u5-pad3_ d_nand +* u7 net-_u5-pad3_ net-_u5-pad3_ net-_u10-pad1_ d_nand +* u6 net-_u4-pad3_ net-_u4-pad3_ net-_u6-pad3_ d_nand +a1 [net-_u2-pad3_ net-_u3-pad3_ ] net-_u11-pad1_ u8 +a2 net-_u11-pad1_ net-_u11-pad2_ u11 +a3 net-_u11-pad2_ net-_u1-pad12_ u12 +a4 [net-_u10-pad1_ net-_u1-pad10_ ] net-_u10-pad3_ u10 +a5 [net-_u6-pad3_ net-_u1-pad7_ ] net-_u13-pad1_ u9 +a6 [net-_u13-pad1_ net-_u10-pad3_ ] net-_u13-pad3_ u13 +a7 net-_u14-pad2_ net-_u1-pad11_ u15 +a8 net-_u13-pad3_ net-_u14-pad2_ u14 +a9 [net-_u1-pad5_ net-_u1-pad6_ ] net-_u4-pad3_ u4 +a10 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a11 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a12 [net-_u1-pad8_ net-_u1-pad9_ ] net-_u5-pad3_ u5 +a13 [net-_u5-pad3_ net-_u5-pad3_ ] net-_u10-pad1_ u7 +a14 [net-_u4-pad3_ net-_u4-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u8 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u10 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u9 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u4 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u2 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u3 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u5 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u7 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u6 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends IC_GD74HCT58 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58_Previous_Values.xml b/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58_Previous_Values.xml new file mode 100644 index 000000000..f492aa5ca --- /dev/null +++ b/library/SubcircuitLibrary/IC_GD74HCT58/IC_GD74HCT58_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_nandd_inverterd_inverterd_nandd_nandd_nandd_inverterd_inverterd_nandd_nandd_nandd_nandd_nandd_nand \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_GD74HCT58/README_IC_GD74HCT58.md b/library/SubcircuitLibrary/IC_GD74HCT58/README_IC_GD74HCT58.md new file mode 100644 index 000000000..a600d6e49 --- /dev/null +++ b/library/SubcircuitLibrary/IC_GD74HCT58/README_IC_GD74HCT58.md @@ -0,0 +1,26 @@ +# IC_GD74HCT58 Dual AND-OR Gates + +IC_GD74HCT58 is a dual AND-OR gate integrated circuit from the HCT logic family. It combines multiple AND gates followed by OR gate stages to implement complex combinational logic functions with TTL-compatible input thresholds and CMOS technology. + +## Usage/Examples + +- Logic control circuits +- Digital decision-making systems +- Embedded applications +- Industrial automation +- Data processing circuits + +## Documentation + +To know the details of IC_GD74HCT58 please go through the documentation: [GD74HCT58 Datasheet](https://www.alldatasheet.com) + +## Comments/Notes + +Please note this is a CMOS IC with TTL-compatible inputs. The subcircuit implements the dual AND-OR function using d_nand gates and d_inverter stages to realize the AND-OR-INVERT structure. High noise immunity is a key feature. + +## Contributor + +Name: Santhosh C +Email: santhoshc.vlsi2024@citchennai.net +Year: 2026 +Position: FOSSEE eSim Intern 2026 diff --git a/library/SubcircuitLibrary/IC_GD74HCT58/analysis b/library/SubcircuitLibrary/IC_GD74HCT58/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_GD74HCT58/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_LM3411/D.lib b/library/SubcircuitLibrary/IC_LM3411/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/IC_LM3411/IC_LM3411-cache.lib b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411-cache.lib new file mode 100644 index 000000000..d80602ef3 --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411-cache.lib @@ -0,0 +1,145 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_C +# +DEF eSim_C C 0 10 N Y 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_C" 25 -100 50 H V L CNN +F2 "" 38 -150 30 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS capacitor +$FPLIST + C_* +$ENDFPLIST +DRAW +P 2 0 1 20 -80 -30 80 -30 N +P 2 0 1 20 -80 30 80 30 N +X ~ 1 0 150 110 D 40 40 1 1 P +X ~ 2 0 -150 110 U 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_NPN +# +DEF eSim_NPN Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_NPN" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS BC547 Q2N2222 +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_PNP +# +DEF eSim_PNP Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_PNP" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 90 -70 70 -90 50 -50 90 -70 90 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.cir b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.cir new file mode 100644 index 000000000..34d717d64 --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.cir @@ -0,0 +1,55 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\IC_LM3411\IC_LM3411.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/28/26 22:24:15 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +Q1 Net-_C3-Pad2_ Net-_C3-Pad2_ Net-_Q1-Pad3_ eSim_NPN +Q2 Net-_C3-Pad2_ Net-_Q2-Pad2_ Net-_Q2-Pad3_ eSim_NPN +Q4 Net-_C1-Pad2_ Net-_Q4-Pad2_ Net-_Q10-Pad2_ eSim_NPN +R3 Net-_Q1-Pad3_ Net-_Q2-Pad3_ 130k +R4 Net-_Q2-Pad3_ Net-_Q3-Pad3_ 69k +R1 Net-_C3-Pad2_ Net-_Q3-Pad2_ 30.75k +R8 Net-_Q7-Pad2_ Net-_Q3-Pad3_ 45k +Q7 Net-_C2-Pad2_ Net-_Q7-Pad2_ Net-_Q10-Pad2_ eSim_NPN +R7 Net-_Q4-Pad2_ Net-_Q7-Pad2_ 10k +Q9 Net-_Q10-Pad2_ Net-_Q10-Pad1_ Net-_Q9-Pad3_ eSim_NPN +R9 Net-_Q9-Pad3_ Net-_Q11-Pad3_ 6k +Q11 Net-_Q11-Pad1_ Net-_Q10-Pad1_ Net-_Q11-Pad3_ eSim_NPN +R11 Net-_Q10-Pad1_ Net-_Q11-Pad1_ 40k +Q12 Net-_Q12-Pad1_ Net-_Q10-Pad1_ Net-_Q12-Pad3_ eSim_NPN +R13 Net-_Q12-Pad3_ Net-_Q11-Pad3_ 3.3k +R6 Net-_Q2-Pad2_ Net-_Q4-Pad2_ 20k +R5 Net-_C3-Pad2_ Net-_Q2-Pad2_ 25.5k +R14 Net-_Q16-Pad2_ Net-_Q10-Pad1_ 66k +Q16 Net-_C1-Pad1_ Net-_Q16-Pad2_ Net-_Q11-Pad3_ eSim_NPN +D1 Net-_D1-Pad1_ Net-_C1-Pad1_ eSim_Diode +R16 Net-_Q20-Pad3_ Net-_D1-Pad1_ 1k +Q20 Net-_Q20-Pad1_ Net-_C1-Pad1_ Net-_Q20-Pad3_ eSim_NPN +Q22 Net-_Q22-Pad1_ Net-_Q22-Pad1_ Net-_Q20-Pad3_ eSim_NPN +Q24 Net-_C3-Pad2_ Net-_Q22-Pad1_ Net-_D1-Pad1_ eSim_NPN +R12 Net-_Q13-Pad1_ Net-_Q12-Pad1_ 60k +R10 Net-_C3-Pad2_ Net-_Q10-Pad3_ 51k +Q14 Net-_Q14-Pad1_ Net-_C1-Pad2_ Net-_Q12-Pad1_ eSim_NPN +R15 Net-_C2-Pad1_ Net-_Q14-Pad1_ 110k +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 8p +C2 Net-_C2-Pad1_ Net-_C2-Pad2_ 5p +Q18 Net-_C2-Pad1_ Net-_C2-Pad2_ Net-_Q12-Pad1_ eSim_NPN +C3 Net-_C1-Pad1_ Net-_C3-Pad2_ 3p +R2 Net-_Q3-Pad2_ Net-_Q11-Pad3_ 110k +U1 Net-_C3-Pad2_ Net-_Q11-Pad3_ Net-_C3-Pad2_ Net-_Q3-Pad2_ Net-_D1-Pad1_ PORT +Q5 Net-_C1-Pad2_ Net-_Q13-Pad1_ Net-_C3-Pad2_ eSim_PNP +Q8 Net-_C2-Pad2_ Net-_Q13-Pad1_ Net-_C3-Pad2_ eSim_PNP +Q13 Net-_Q13-Pad1_ Net-_Q13-Pad1_ Net-_C3-Pad2_ eSim_PNP +Q15 Net-_Q14-Pad1_ Net-_Q14-Pad1_ Net-_C3-Pad2_ eSim_PNP +Q17 Net-_C2-Pad1_ Net-_Q14-Pad1_ Net-_C3-Pad2_ eSim_PNP +Q19 Net-_C1-Pad1_ Net-_C2-Pad1_ Net-_C3-Pad2_ eSim_PNP +Q21 Net-_Q20-Pad1_ Net-_Q20-Pad1_ Net-_C3-Pad2_ eSim_PNP +Q23 Net-_Q22-Pad1_ Net-_Q20-Pad1_ Net-_C3-Pad2_ eSim_PNP +Q6 Net-_Q11-Pad1_ Net-_Q3-Pad2_ Net-_Q3-Pad3_ eSim_PNP +Q3 Net-_Q11-Pad3_ Net-_Q3-Pad2_ Net-_Q3-Pad3_ eSim_PNP +Q10 Net-_Q10-Pad1_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_PNP + +.end diff --git a/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.cir.out b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.cir.out new file mode 100644 index 000000000..12885cee4 --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.cir.out @@ -0,0 +1,59 @@ +* c:\fossee\esim\library\subcircuitlibrary\ic_lm3411\ic_lm3411.cir + +.include NPN.lib +.include PNP.lib +.include D.lib +q1 net-_c3-pad2_ net-_c3-pad2_ net-_q1-pad3_ Q2N2222 +q2 net-_c3-pad2_ net-_q2-pad2_ net-_q2-pad3_ Q2N2222 +q4 net-_c1-pad2_ net-_q4-pad2_ net-_q10-pad2_ Q2N2222 +r3 net-_q1-pad3_ net-_q2-pad3_ 130k +r4 net-_q2-pad3_ net-_q3-pad3_ 69k +r1 net-_c3-pad2_ net-_q3-pad2_ 30.75k +r8 net-_q7-pad2_ net-_q3-pad3_ 45k +q7 net-_c2-pad2_ net-_q7-pad2_ net-_q10-pad2_ Q2N2222 +r7 net-_q4-pad2_ net-_q7-pad2_ 10k +q9 net-_q10-pad2_ net-_q10-pad1_ net-_q9-pad3_ Q2N2222 +r9 net-_q9-pad3_ net-_q11-pad3_ 6k +q11 net-_q11-pad1_ net-_q10-pad1_ net-_q11-pad3_ Q2N2222 +r11 net-_q10-pad1_ net-_q11-pad1_ 40k +q12 net-_q12-pad1_ net-_q10-pad1_ net-_q12-pad3_ Q2N2222 +r13 net-_q12-pad3_ net-_q11-pad3_ 3.3k +r6 net-_q2-pad2_ net-_q4-pad2_ 20k +r5 net-_c3-pad2_ net-_q2-pad2_ 25.5k +r14 net-_q16-pad2_ net-_q10-pad1_ 66k +q16 net-_c1-pad1_ net-_q16-pad2_ net-_q11-pad3_ Q2N2222 +d1 net-_d1-pad1_ net-_c1-pad1_ 1N4148 +r16 net-_q20-pad3_ net-_d1-pad1_ 1k +q20 net-_q20-pad1_ net-_c1-pad1_ net-_q20-pad3_ Q2N2222 +q22 net-_q22-pad1_ net-_q22-pad1_ net-_q20-pad3_ Q2N2222 +q24 net-_c3-pad2_ net-_q22-pad1_ net-_d1-pad1_ Q2N2222 +r12 net-_q13-pad1_ net-_q12-pad1_ 60k +r10 net-_c3-pad2_ net-_q10-pad3_ 51k +q14 net-_q14-pad1_ net-_c1-pad2_ net-_q12-pad1_ Q2N2222 +r15 net-_c2-pad1_ net-_q14-pad1_ 110k +c1 net-_c1-pad1_ net-_c1-pad2_ 8p +c2 net-_c2-pad1_ net-_c2-pad2_ 5p +q18 net-_c2-pad1_ net-_c2-pad2_ net-_q12-pad1_ Q2N2222 +c3 net-_c1-pad1_ net-_c3-pad2_ 3p +r2 net-_q3-pad2_ net-_q11-pad3_ 110k +* u1 net-_c3-pad2_ net-_q11-pad3_ net-_c3-pad2_ net-_q3-pad2_ net-_d1-pad1_ port +q5 net-_c1-pad2_ net-_q13-pad1_ net-_c3-pad2_ Q2N2907A +q8 net-_c2-pad2_ net-_q13-pad1_ net-_c3-pad2_ Q2N2907A +q13 net-_q13-pad1_ net-_q13-pad1_ net-_c3-pad2_ Q2N2907A +q15 net-_q14-pad1_ net-_q14-pad1_ net-_c3-pad2_ Q2N2907A +q17 net-_c2-pad1_ net-_q14-pad1_ net-_c3-pad2_ Q2N2907A +q19 net-_c1-pad1_ net-_c2-pad1_ net-_c3-pad2_ Q2N2907A +q21 net-_q20-pad1_ net-_q20-pad1_ net-_c3-pad2_ Q2N2907A +q23 net-_q22-pad1_ net-_q20-pad1_ net-_c3-pad2_ Q2N2907A +q6 net-_q11-pad1_ net-_q3-pad2_ net-_q3-pad3_ Q2N2907A +q3 net-_q11-pad3_ net-_q3-pad2_ net-_q3-pad3_ Q2N2907A +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.pro b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.sch b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.sch new file mode 100644 index 000000000..a064d38d1 --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.sch @@ -0,0 +1,917 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:IC_LM3411-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_NPN Q1 +U 1 1 69C52A03 +P 1450 2500 +F 0 "Q1" H 1350 2550 50 0000 R CNN +F 1 "eSim_NPN" H 1400 2650 50 0000 R CNN +F 2 "" H 1650 2600 29 0000 C CNN +F 3 "" H 1450 2500 60 0000 C CNN + 1 1450 2500 + -1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q2 +U 1 1 69C52B68 +P 2200 3100 +F 0 "Q2" H 2100 3150 50 0000 R CNN +F 1 "eSim_NPN" H 2150 3250 50 0000 R CNN +F 2 "" H 2400 3200 29 0000 C CNN +F 3 "" H 2200 3100 60 0000 C CNN + 1 2200 3100 + -1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q4 +U 1 1 69C52F2F +P 3750 3050 +F 0 "Q4" H 3650 3100 50 0000 R CNN +F 1 "eSim_NPN" H 3700 3200 50 0000 R CNN +F 2 "" H 3950 3150 29 0000 C CNN +F 3 "" H 3750 3050 60 0000 C CNN + 1 3750 3050 + 1 0 0 -1 +$EndComp +$Comp +L resistor R3 +U 1 1 69C53040 +P 1300 3050 +F 0 "R3" H 1350 3180 50 0000 C CNN +F 1 "130k" H 1350 3000 50 0000 C CNN +F 2 "" H 1350 3030 30 0000 C CNN +F 3 "" V 1350 3100 30 0000 C CNN + 1 1300 3050 + 0 1 1 0 +$EndComp +$Comp +L resistor R4 +U 1 1 69C5322C +P 1300 3900 +F 0 "R4" H 1350 4030 50 0000 C CNN +F 1 "69k" H 1350 3850 50 0000 C CNN +F 2 "" H 1350 3880 30 0000 C CNN +F 3 "" V 1350 3950 30 0000 C CNN + 1 1300 3900 + 0 1 1 0 +$EndComp +$Comp +L resistor R1 +U 1 1 69C53423 +P 1000 4450 +F 0 "R1" H 1050 4580 50 0000 C CNN +F 1 "30.75k" H 1050 4400 50 0000 C CNN +F 2 "" H 1050 4430 30 0000 C CNN +F 3 "" V 1050 4500 30 0000 C CNN + 1 1000 4450 + 0 1 1 0 +$EndComp +$Comp +L resistor R8 +U 1 1 69C530D9 +P 3000 3950 +F 0 "R8" H 3050 4080 50 0000 C CNN +F 1 "45k" H 3050 3900 50 0000 C CNN +F 2 "" H 3050 3930 30 0000 C CNN +F 3 "" V 3050 4000 30 0000 C CNN + 1 3000 3950 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q7 +U 1 1 69C53186 +P 4300 3550 +F 0 "Q7" H 4200 3600 50 0000 R CNN +F 1 "eSim_NPN" H 4250 3700 50 0000 R CNN +F 2 "" H 4500 3650 29 0000 C CNN +F 3 "" H 4300 3550 60 0000 C CNN + 1 4300 3550 + 1 0 0 -1 +$EndComp +$Comp +L resistor R7 +U 1 1 69C5323D +P 3000 3200 +F 0 "R7" H 3050 3330 50 0000 C CNN +F 1 "10k" H 3050 3150 50 0000 C CNN +F 2 "" H 3050 3180 30 0000 C CNN +F 3 "" V 3050 3250 30 0000 C CNN + 1 3000 3200 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q9 +U 1 1 69C53451 +P 4500 4250 +F 0 "Q9" H 4400 4300 50 0000 R CNN +F 1 "eSim_NPN" H 4450 4400 50 0000 R CNN +F 2 "" H 4700 4350 29 0000 C CNN +F 3 "" H 4500 4250 60 0000 C CNN + 1 4500 4250 + -1 0 0 -1 +$EndComp +$Comp +L resistor R9 +U 1 1 69C5364C +P 4350 5350 +F 0 "R9" H 4400 5480 50 0000 C CNN +F 1 "6k" H 4400 5300 50 0000 C CNN +F 2 "" H 4400 5330 30 0000 C CNN +F 3 "" V 4400 5400 30 0000 C CNN + 1 4350 5350 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q11 +U 1 1 69C5388B +P 5100 5450 +F 0 "Q11" H 5000 5500 50 0000 R CNN +F 1 "eSim_NPN" H 5050 5600 50 0000 R CNN +F 2 "" H 5300 5550 29 0000 C CNN +F 3 "" H 5100 5450 60 0000 C CNN + 1 5100 5450 + -1 0 0 -1 +$EndComp +$Comp +L resistor R11 +U 1 1 69C53970 +P 4950 4750 +F 0 "R11" H 5000 4880 50 0000 C CNN +F 1 "40k" H 5000 4700 50 0000 C CNN +F 2 "" H 5000 4730 30 0000 C CNN +F 3 "" V 5000 4800 30 0000 C CNN + 1 4950 4750 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q12 +U 1 1 69C53A1D +P 5250 4150 +F 0 "Q12" H 5150 4200 50 0000 R CNN +F 1 "eSim_NPN" H 5200 4300 50 0000 R CNN +F 2 "" H 5450 4250 29 0000 C CNN +F 3 "" H 5250 4150 60 0000 C CNN + 1 5250 4150 + 1 0 0 -1 +$EndComp +$Comp +L resistor R13 +U 1 1 69C53F0E +P 5600 4950 +F 0 "R13" H 5650 5080 50 0000 C CNN +F 1 "3.3k" H 5650 4900 50 0000 C CNN +F 2 "" H 5650 4930 30 0000 C CNN +F 3 "" V 5650 5000 30 0000 C CNN + 1 5600 4950 + 0 1 1 0 +$EndComp +$Comp +L resistor R6 +U 1 1 69C543D8 +P 3000 2650 +F 0 "R6" H 3050 2780 50 0000 C CNN +F 1 "20k" H 3050 2600 50 0000 C CNN +F 2 "" H 3050 2630 30 0000 C CNN +F 3 "" V 3050 2700 30 0000 C CNN + 1 3000 2650 + 0 1 1 0 +$EndComp +$Comp +L resistor R5 +U 1 1 69C544B0 +P 3000 2050 +F 0 "R5" H 3050 2180 50 0000 C CNN +F 1 "25.5k" H 3050 2000 50 0000 C CNN +F 2 "" H 3050 2030 30 0000 C CNN +F 3 "" V 3050 2100 30 0000 C CNN + 1 3000 2050 + 0 1 1 0 +$EndComp +$Comp +L resistor R14 +U 1 1 69C54CB6 +P 5900 4100 +F 0 "R14" H 5950 4230 50 0000 C CNN +F 1 "66k" H 5950 4050 50 0000 C CNN +F 2 "" H 5950 4080 30 0000 C CNN +F 3 "" V 5950 4150 30 0000 C CNN + 1 5900 4100 + -1 0 0 1 +$EndComp +$Comp +L eSim_NPN Q16 +U 1 1 69C54D7F +P 6400 4150 +F 0 "Q16" H 6300 4200 50 0000 R CNN +F 1 "eSim_NPN" H 6350 4300 50 0000 R CNN +F 2 "" H 6600 4250 29 0000 C CNN +F 3 "" H 6400 4150 60 0000 C CNN + 1 6400 4150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Diode D1 +U 1 1 69C5511E +P 6900 4900 +F 0 "D1" H 6900 5000 50 0000 C CNN +F 1 "eSim_Diode" H 6900 4800 50 0000 C CNN +F 2 "" H 6900 4900 60 0000 C CNN +F 3 "" H 6900 4900 60 0000 C CNN + 1 6900 4900 + 0 -1 -1 0 +$EndComp +$Comp +L resistor R16 +U 1 1 69C55273 +P 7200 5000 +F 0 "R16" H 7250 5130 50 0000 C CNN +F 1 "1k" H 7250 4950 50 0000 C CNN +F 2 "" H 7250 4980 30 0000 C CNN +F 3 "" V 7250 5050 30 0000 C CNN + 1 7200 5000 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q20 +U 1 1 69C553B9 +P 7150 3500 +F 0 "Q20" H 7050 3550 50 0000 R CNN +F 1 "eSim_NPN" H 7100 3650 50 0000 R CNN +F 2 "" H 7350 3600 29 0000 C CNN +F 3 "" H 7150 3500 60 0000 C CNN + 1 7150 3500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q22 +U 1 1 69C55545 +P 7750 3400 +F 0 "Q22" H 7650 3450 50 0000 R CNN +F 1 "eSim_NPN" H 7700 3550 50 0000 R CNN +F 2 "" H 7950 3500 29 0000 C CNN +F 3 "" H 7750 3400 60 0000 C CNN + 1 7750 3400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q24 +U 1 1 69C55DA3 +P 8600 2800 +F 0 "Q24" H 8500 2850 50 0000 R CNN +F 1 "eSim_NPN" H 8550 2950 50 0000 R CNN +F 2 "" H 8800 2900 29 0000 C CNN +F 3 "" H 8600 2800 60 0000 C CNN + 1 8600 2800 + 1 0 0 -1 +$EndComp +$Comp +L resistor R12 +U 1 1 69C56E04 +P 5350 1500 +F 0 "R12" H 5400 1630 50 0000 C CNN +F 1 "60k" H 5400 1450 50 0000 C CNN +F 2 "" H 5400 1480 30 0000 C CNN +F 3 "" V 5400 1550 30 0000 C CNN + 1 5350 1500 + 0 1 1 0 +$EndComp +$Comp +L resistor R10 +U 1 1 69C57029 +P 4850 1500 +F 0 "R10" H 4900 1630 50 0000 C CNN +F 1 "51k" H 4900 1450 50 0000 C CNN +F 2 "" H 4900 1480 30 0000 C CNN +F 3 "" V 4900 1550 30 0000 C CNN + 1 4850 1500 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q14 +U 1 1 69C5751E +P 5800 2200 +F 0 "Q14" H 5700 2250 50 0000 R CNN +F 1 "eSim_NPN" H 5750 2350 50 0000 R CNN +F 2 "" H 6000 2300 29 0000 C CNN +F 3 "" H 5800 2200 60 0000 C CNN + 1 5800 2200 + 1 0 0 -1 +$EndComp +$Comp +L resistor R15 +U 1 1 69C57CA0 +P 6300 1450 +F 0 "R15" H 6350 1580 50 0000 C CNN +F 1 "110k" H 6350 1400 50 0000 C CNN +F 2 "" H 6350 1430 30 0000 C CNN +F 3 "" V 6350 1500 30 0000 C CNN + 1 6300 1450 + -1 0 0 1 +$EndComp +$Comp +L capacitor C1 +U 1 1 69C580EB +P 6300 1800 +F 0 "C1" H 6325 1900 50 0000 L CNN +F 1 "8p" H 6325 1700 50 0000 L CNN +F 2 "" H 6338 1650 30 0000 C CNN +F 3 "" H 6300 1800 60 0000 C CNN + 1 6300 1800 + 0 1 1 0 +$EndComp +$Comp +L capacitor C2 +U 1 1 69C587C5 +P 6400 2250 +F 0 "C2" H 6425 2350 50 0000 L CNN +F 1 "5p" H 6425 2150 50 0000 L CNN +F 2 "" H 6438 2100 30 0000 C CNN +F 3 "" H 6400 2250 60 0000 C CNN + 1 6400 2250 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q18 +U 1 1 69C58C6B +P 6500 2500 +F 0 "Q18" H 6400 2550 50 0000 R CNN +F 1 "eSim_NPN" H 6450 2650 50 0000 R CNN +F 2 "" H 6700 2600 29 0000 C CNN +F 3 "" H 6500 2500 60 0000 C CNN + 1 6500 2500 + 1 0 0 -1 +$EndComp +$Comp +L capacitor C3 +U 1 1 69C58FE4 +P 7100 1100 +F 0 "C3" H 7125 1200 50 0000 L CNN +F 1 "3p" H 7125 1000 50 0000 L CNN +F 2 "" H 7138 950 30 0000 C CNN +F 3 "" H 7100 1100 60 0000 C CNN + 1 7100 1100 + -1 0 0 1 +$EndComp +Wire Wire Line + 1350 2300 1350 650 +Wire Wire Line + 1050 650 8900 650 +Wire Wire Line + 1350 2700 1350 2950 +Wire Wire Line + 1650 2500 2100 2500 +Wire Wire Line + 2100 2500 2100 2900 +Wire Wire Line + 2100 3300 2100 3500 +Wire Wire Line + 2100 3500 1350 3500 +Wire Wire Line + 1350 3250 1350 3800 +Connection ~ 1350 3500 +Wire Wire Line + 1350 4100 1350 4500 +Wire Wire Line + 1350 4500 4100 4500 +Wire Wire Line + 4100 4500 4100 4750 +Wire Wire Line + 1050 650 1050 4350 +Connection ~ 1350 650 +Wire Wire Line + 3050 4150 3050 4750 +Connection ~ 3050 4500 +Wire Wire Line + 3050 3850 3050 3400 +Wire Wire Line + 3050 3550 4100 3550 +Connection ~ 3050 3550 +Wire Wire Line + 3850 3250 3850 4000 +Wire Wire Line + 3850 4000 4400 4000 +Wire Wire Line + 4400 3750 4400 4050 +Wire Wire Line + 4600 3850 4400 3850 +Connection ~ 4400 3850 +Connection ~ 4400 4000 +Wire Wire Line + 4900 4050 4900 4650 +Wire Wire Line + 4900 4250 4700 4250 +Wire Wire Line + 4400 4450 4400 5250 +Wire Wire Line + 4100 5150 5000 5150 +Wire Wire Line + 5000 4950 5000 5250 +Connection ~ 5000 5150 +Wire Wire Line + 4900 4650 5000 4650 +Connection ~ 4900 4250 +Wire Wire Line + 950 5700 6500 5700 +Wire Wire Line + 5000 5700 5000 5650 +Wire Wire Line + 4400 5550 4400 5700 +Connection ~ 4400 5700 +Wire Wire Line + 3050 5150 3050 5700 +Connection ~ 3050 5700 +Wire Wire Line + 5000 4550 5300 4550 +Wire Wire Line + 5300 4550 5300 5450 +Wire Wire Line + 5350 4350 5350 4450 +Wire Wire Line + 5350 4450 5650 4450 +Wire Wire Line + 5650 4450 5650 4850 +Wire Wire Line + 5650 5700 5650 5150 +Connection ~ 5000 5700 +Wire Wire Line + 3050 2850 3050 3100 +Wire Wire Line + 3050 3050 3550 3050 +Connection ~ 3050 3050 +Wire Wire Line + 3050 2550 3050 2250 +Wire Wire Line + 2400 3100 2650 3100 +Wire Wire Line + 2650 3100 2650 2400 +Wire Wire Line + 2650 2400 3050 2400 +Connection ~ 3050 2400 +Wire Wire Line + 3050 650 3050 1950 +Wire Wire Line + 3850 2850 3850 1350 +Wire Wire Line + 5000 3950 5000 4550 +Wire Wire Line + 6000 4150 6200 4150 +Wire Wire Line + 6500 5700 6500 4350 +Connection ~ 5650 5700 +Wire Wire Line + 6500 3150 6500 3950 +Wire Wire Line + 6500 3800 6900 3800 +Wire Wire Line + 6900 3800 6900 4750 +Connection ~ 6500 3800 +Wire Wire Line + 6900 5050 6900 5700 +Wire Wire Line + 7250 5700 7250 5200 +Connection ~ 7250 5700 +Wire Wire Line + 7250 4900 7250 3700 +Wire Wire Line + 6950 3500 6500 3500 +Connection ~ 6500 3500 +Wire Wire Line + 7250 3750 7850 3750 +Wire Wire Line + 7850 3750 7850 3600 +Connection ~ 7250 3750 +Wire Wire Line + 7850 2150 7850 3200 +Wire Wire Line + 7550 3400 7450 3400 +Wire Wire Line + 7450 3400 7450 3100 +Wire Wire Line + 7450 3100 7850 3100 +Connection ~ 7850 3100 +Wire Wire Line + 7250 3300 7250 2150 +Wire Wire Line + 7550 1950 7800 1950 +Wire Wire Line + 7650 1950 7650 2300 +Wire Wire Line + 7650 2300 7250 2300 +Connection ~ 7250 2300 +Connection ~ 7650 1950 +Wire Wire Line + 7250 650 7250 1750 +Wire Wire Line + 8100 1750 8100 650 +Wire Wire Line + 7850 2150 8100 2150 +Wire Wire Line + 8400 2800 7850 2800 +Connection ~ 7850 2800 +Wire Wire Line + 8700 650 8700 2600 +Wire Wire Line + 3850 1350 3700 1350 +Wire Wire Line + 3700 1350 3700 1300 +Wire Wire Line + 3700 650 3700 900 +Wire Wire Line + 4600 650 4600 900 +Connection ~ 3700 650 +Wire Wire Line + 5400 1300 5400 1400 +Connection ~ 4600 650 +Wire Wire Line + 4900 650 4900 1400 +Connection ~ 4900 650 +Wire Wire Line + 5000 1100 5000 1350 +Wire Wire Line + 5000 1350 5400 1350 +Connection ~ 5400 1350 +Wire Wire Line + 4400 3350 4400 1300 +Wire Wire Line + 4400 1300 4600 1300 +Wire Wire Line + 4900 3650 4900 1700 +Wire Wire Line + 5750 1300 5750 2000 +Wire Wire Line + 5750 2000 5900 2000 +Wire Wire Line + 5400 1700 5400 2600 +Wire Wire Line + 5400 2600 5900 2600 +Wire Wire Line + 5900 2400 5900 2800 +Wire Wire Line + 5600 2200 3850 2200 +Connection ~ 3850 2200 +Wire Wire Line + 5350 3950 5350 2800 +Wire Wire Line + 5350 2800 5900 2800 +Connection ~ 5900 2600 +Wire Wire Line + 5550 2200 5550 1800 +Wire Wire Line + 5550 1800 6150 1800 +Connection ~ 5550 2200 +Wire Wire Line + 6050 1100 6300 1100 +Wire Wire Line + 6150 1100 6150 1350 +Wire Wire Line + 6150 1350 5750 1350 +Connection ~ 5750 1350 +Connection ~ 6150 1100 +Wire Wire Line + 5750 1500 6100 1500 +Connection ~ 5750 1500 +Wire Wire Line + 6600 1300 6600 2300 +Wire Wire Line + 6400 1500 6650 1500 +Connection ~ 6600 1500 +Wire Wire Line + 6600 900 6600 650 +Connection ~ 6600 650 +Wire Wire Line + 6950 650 6950 1300 +Wire Wire Line + 6450 1800 6950 1800 +Wire Wire Line + 6950 1700 6950 3150 +Wire Wire Line + 6600 2700 6600 3000 +Wire Wire Line + 6600 3000 5350 3000 +Connection ~ 5350 3000 +Wire Wire Line + 6300 2500 6200 2500 +Wire Wire Line + 6200 2500 6200 2700 +Wire Wire Line + 6200 2700 4400 2700 +Connection ~ 4400 2700 +Wire Wire Line + 6050 2700 6050 2250 +Wire Wire Line + 6050 2250 6250 2250 +Connection ~ 6050 2700 +Wire Wire Line + 6550 2250 6600 2250 +Connection ~ 6600 2250 +Wire Wire Line + 6950 3150 6500 3150 +Connection ~ 6950 1800 +Wire Wire Line + 6950 2050 7100 2050 +Wire Wire Line + 7100 2050 7100 1250 +Connection ~ 6950 2050 +Wire Wire Line + 7100 650 7100 950 +Connection ~ 8100 650 +Connection ~ 6950 650 +Connection ~ 7100 650 +Connection ~ 7250 650 +Connection ~ 8700 650 +Wire Wire Line + 1800 2500 1800 650 +Connection ~ 1800 650 +Connection ~ 1800 2500 +Wire Wire Line + 5400 900 5400 650 +Connection ~ 5400 650 +Wire Wire Line + 5750 900 5750 650 +Connection ~ 5750 650 +Connection ~ 5000 1100 +$Comp +L resistor R2 +U 1 1 69C67D93 +P 1000 5300 +F 0 "R2" H 1050 5430 50 0000 C CNN +F 1 "110k" H 1050 5250 50 0000 C CNN +F 2 "" H 1050 5280 30 0000 C CNN +F 3 "" V 1050 5350 30 0000 C CNN + 1 1000 5300 + 0 1 1 0 +$EndComp +Wire Wire Line + 1050 5700 1050 5500 +Connection ~ 1050 5700 +Wire Wire Line + 1050 4650 1050 5200 +Connection ~ 1050 4950 +$Comp +L PORT U1 +U 1 1 69C7CD21 +P 9150 650 +F 0 "U1" H 9200 750 30 0000 C CNN +F 1 "PORT" H 9150 650 30 0000 C CNN +F 2 "" H 9150 650 60 0000 C CNN +F 3 "" H 9150 650 60 0000 C CNN + 1 9150 650 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 2 1 69C7CEB0 +P 700 5700 +F 0 "U1" H 750 5800 30 0000 C CNN +F 1 "PORT" H 700 5700 30 0000 C CNN +F 2 "" H 700 5700 60 0000 C CNN +F 3 "" H 700 5700 60 0000 C CNN + 2 700 5700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 69C7D0F7 +P 650 4950 +F 0 "U1" H 700 5050 30 0000 C CNN +F 1 "PORT" H 650 4950 30 0000 C CNN +F 2 "" H 650 4950 60 0000 C CNN +F 3 "" H 650 4950 60 0000 C CNN + 4 650 4950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 69C7E38A +P 2700 1150 +F 0 "U1" H 2750 1250 30 0000 C CNN +F 1 "PORT" H 2700 1150 30 0000 C CNN +F 2 "" H 2700 1150 60 0000 C CNN +F 3 "" H 2700 1150 60 0000 C CNN + 3 2700 1150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 69C7D17A +P 9200 5700 +F 0 "U1" H 9250 5800 30 0000 C CNN +F 1 "PORT" H 9200 5700 30 0000 C CNN +F 2 "" H 9200 5700 60 0000 C CNN +F 3 "" H 9200 5700 60 0000 C CNN + 5 9200 5700 + -1 0 0 1 +$EndComp +Wire Wire Line + 8700 5700 8700 3000 +Wire Wire Line + 6900 5700 8950 5700 +Connection ~ 8700 5700 +Connection ~ 3050 650 +Wire Wire Line + 2950 1150 3050 1150 +Connection ~ 3050 1150 +Wire Wire Line + 4000 1100 4300 1100 +Wire Wire Line + 4100 1100 4100 1350 +Wire Wire Line + 4100 1350 4750 1350 +Wire Wire Line + 4750 1350 4750 1100 +Wire Wire Line + 4750 1100 5100 1100 +Connection ~ 4100 1100 +Wire Wire Line + 3800 4950 3800 4650 +Wire Wire Line + 3800 4650 1250 4650 +Wire Wire Line + 1250 4650 1250 4950 +Wire Wire Line + 900 4950 2750 4950 +Connection ~ 1250 4950 +Wire Wire Line + 4900 4150 5050 4150 +Connection ~ 4900 4150 +Wire Wire Line + 5000 3950 5700 3950 +Wire Wire Line + 5700 3950 5700 4150 +Connection ~ 5000 4150 +$Comp +L eSim_PNP Q5 +U 1 1 69C80AB5 +P 3800 1100 +F 0 "Q5" H 3700 1150 50 0000 R CNN +F 1 "eSim_PNP" H 3750 1250 50 0000 R CNN +F 2 "" H 4000 1200 29 0000 C CNN +F 3 "" H 3800 1100 60 0000 C CNN + 1 3800 1100 + -1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q8 +U 1 1 69C80CAB +P 4500 1100 +F 0 "Q8" H 4400 1150 50 0000 R CNN +F 1 "eSim_PNP" H 4450 1250 50 0000 R CNN +F 2 "" H 4700 1200 29 0000 C CNN +F 3 "" H 4500 1100 60 0000 C CNN + 1 4500 1100 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q13 +U 1 1 69C80FBB +P 5300 1100 +F 0 "Q13" H 5200 1150 50 0000 R CNN +F 1 "eSim_PNP" H 5250 1250 50 0000 R CNN +F 2 "" H 5500 1200 29 0000 C CNN +F 3 "" H 5300 1100 60 0000 C CNN + 1 5300 1100 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q15 +U 1 1 69C81143 +P 5850 1100 +F 0 "Q15" H 5750 1150 50 0000 R CNN +F 1 "eSim_PNP" H 5800 1250 50 0000 R CNN +F 2 "" H 6050 1200 29 0000 C CNN +F 3 "" H 5850 1100 60 0000 C CNN + 1 5850 1100 + -1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q17 +U 1 1 69C8125D +P 6500 1100 +F 0 "Q17" H 6400 1150 50 0000 R CNN +F 1 "eSim_PNP" H 6450 1250 50 0000 R CNN +F 2 "" H 6700 1200 29 0000 C CNN +F 3 "" H 6500 1100 60 0000 C CNN + 1 6500 1100 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q19 +U 1 1 69C8134E +P 6850 1500 +F 0 "Q19" H 6750 1550 50 0000 R CNN +F 1 "eSim_PNP" H 6800 1650 50 0000 R CNN +F 2 "" H 7050 1600 29 0000 C CNN +F 3 "" H 6850 1500 60 0000 C CNN + 1 6850 1500 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q21 +U 1 1 69C814C6 +P 7350 1950 +F 0 "Q21" H 7250 2000 50 0000 R CNN +F 1 "eSim_PNP" H 7300 2100 50 0000 R CNN +F 2 "" H 7550 2050 29 0000 C CNN +F 3 "" H 7350 1950 60 0000 C CNN + 1 7350 1950 + -1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q23 +U 1 1 69C815B1 +P 8000 1950 +F 0 "Q23" H 7900 2000 50 0000 R CNN +F 1 "eSim_PNP" H 7950 2100 50 0000 R CNN +F 2 "" H 8200 2050 29 0000 C CNN +F 3 "" H 8000 1950 60 0000 C CNN + 1 8000 1950 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q6 +U 1 1 69C8182B +P 4000 4950 +F 0 "Q6" H 3900 5000 50 0000 R CNN +F 1 "eSim_PNP" H 3950 5100 50 0000 R CNN +F 2 "" H 4200 5050 29 0000 C CNN +F 3 "" H 4000 4950 60 0000 C CNN + 1 4000 4950 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q3 +U 1 1 69C81A1A +P 2950 4950 +F 0 "Q3" H 2850 5000 50 0000 R CNN +F 1 "eSim_PNP" H 2900 5100 50 0000 R CNN +F 2 "" H 3150 5050 29 0000 C CNN +F 3 "" H 2950 4950 60 0000 C CNN + 1 2950 4950 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q10 +U 1 1 69C81DDD +P 4800 3850 +F 0 "Q10" H 4700 3900 50 0000 R CNN +F 1 "eSim_PNP" H 4750 4000 50 0000 R CNN +F 2 "" H 5000 3950 29 0000 C CNN +F 3 "" H 4800 3850 60 0000 C CNN + 1 4800 3850 + 1 0 0 1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.sub b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.sub new file mode 100644 index 000000000..e45faf79e --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411.sub @@ -0,0 +1,53 @@ +* Subcircuit IC_LM3411 +.subckt IC_LM3411 net-_c3-pad2_ net-_q11-pad3_ net-_c3-pad2_ net-_q3-pad2_ net-_d1-pad1_ +* c:\fossee\esim\library\subcircuitlibrary\ic_lm3411\ic_lm3411.cir +.include NPN.lib +.include PNP.lib +.include D.lib +q1 net-_c3-pad2_ net-_c3-pad2_ net-_q1-pad3_ Q2N2222 +q2 net-_c3-pad2_ net-_q2-pad2_ net-_q2-pad3_ Q2N2222 +q4 net-_c1-pad2_ net-_q4-pad2_ net-_q10-pad2_ Q2N2222 +r3 net-_q1-pad3_ net-_q2-pad3_ 130k +r4 net-_q2-pad3_ net-_q3-pad3_ 69k +r1 net-_c3-pad2_ net-_q3-pad2_ 30.75k +r8 net-_q7-pad2_ net-_q3-pad3_ 45k +q7 net-_c2-pad2_ net-_q7-pad2_ net-_q10-pad2_ Q2N2222 +r7 net-_q4-pad2_ net-_q7-pad2_ 10k +q9 net-_q10-pad2_ net-_q10-pad1_ net-_q9-pad3_ Q2N2222 +r9 net-_q9-pad3_ net-_q11-pad3_ 6k +q11 net-_q11-pad1_ net-_q10-pad1_ net-_q11-pad3_ Q2N2222 +r11 net-_q10-pad1_ net-_q11-pad1_ 40k +q12 net-_q12-pad1_ net-_q10-pad1_ net-_q12-pad3_ Q2N2222 +r13 net-_q12-pad3_ net-_q11-pad3_ 3.3k +r6 net-_q2-pad2_ net-_q4-pad2_ 20k +r5 net-_c3-pad2_ net-_q2-pad2_ 25.5k +r14 net-_q16-pad2_ net-_q10-pad1_ 66k +q16 net-_c1-pad1_ net-_q16-pad2_ net-_q11-pad3_ Q2N2222 +d1 net-_d1-pad1_ net-_c1-pad1_ 1N4148 +r16 net-_q20-pad3_ net-_d1-pad1_ 1k +q20 net-_q20-pad1_ net-_c1-pad1_ net-_q20-pad3_ Q2N2222 +q22 net-_q22-pad1_ net-_q22-pad1_ net-_q20-pad3_ Q2N2222 +q24 net-_c3-pad2_ net-_q22-pad1_ net-_d1-pad1_ Q2N2222 +r12 net-_q13-pad1_ net-_q12-pad1_ 60k +r10 net-_c3-pad2_ net-_q10-pad3_ 51k +q14 net-_q14-pad1_ net-_c1-pad2_ net-_q12-pad1_ Q2N2222 +r15 net-_c2-pad1_ net-_q14-pad1_ 110k +c1 net-_c1-pad1_ net-_c1-pad2_ 8p +c2 net-_c2-pad1_ net-_c2-pad2_ 5p +q18 net-_c2-pad1_ net-_c2-pad2_ net-_q12-pad1_ Q2N2222 +c3 net-_c1-pad1_ net-_c3-pad2_ 3p +r2 net-_q3-pad2_ net-_q11-pad3_ 110k +q5 net-_c1-pad2_ net-_q13-pad1_ net-_c3-pad2_ Q2N2907A +q8 net-_c2-pad2_ net-_q13-pad1_ net-_c3-pad2_ Q2N2907A +q13 net-_q13-pad1_ net-_q13-pad1_ net-_c3-pad2_ Q2N2907A +q15 net-_q14-pad1_ net-_q14-pad1_ net-_c3-pad2_ Q2N2907A +q17 net-_c2-pad1_ net-_q14-pad1_ net-_c3-pad2_ Q2N2907A +q19 net-_c1-pad1_ net-_c2-pad1_ net-_c3-pad2_ Q2N2907A +q21 net-_q20-pad1_ net-_q20-pad1_ net-_c3-pad2_ Q2N2907A +q23 net-_q22-pad1_ net-_q20-pad1_ net-_c3-pad2_ Q2N2907A +q6 net-_q11-pad1_ net-_q3-pad2_ net-_q3-pad3_ Q2N2907A +q3 net-_q11-pad3_ net-_q3-pad2_ net-_q3-pad3_ Q2N2907A +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +* Control Statements + +.ends IC_LM3411 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_LM3411/IC_LM3411_Previous_Values.xml b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411_Previous_Values.xml new file mode 100644 index 000000000..343e0bd01 --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/IC_LM3411_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_LM3411/NPN.lib b/library/SubcircuitLibrary/IC_LM3411/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/IC_LM3411/PNP.lib b/library/SubcircuitLibrary/IC_LM3411/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/IC_LM3411/analysis b/library/SubcircuitLibrary/IC_LM3411/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_LM3411/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.cir b/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.cir new file mode 100644 index 000000000..0bfea073b --- /dev/null +++ b/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.cir @@ -0,0 +1,35 @@ +.title KiCad schematic +U27 Net-_U27-Pad1_ Net-_U1-Pad4_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ PORT +U28 Net-_U28-Pad1_ Net-_U27-Pad1_ d_inverter +U29 Net-_U26-Pad1_ Net-_U28-Pad1_ d_inverter +U33 Net-_U30-Pad1_ Net-_U32-Pad1_ d_inverter +U32 Net-_U32-Pad1_ Net-_U31-Pad1_ d_inverter +U30 Net-_U30-Pad1_ Net-_U26-Pad1_ unconnected-_U30-Pad3_ Net-_U10-Pad4_ unconnected-_U30-Pad5_ Net-_U30-Pad1_ d_dff +U31 Net-_U31-Pad1_ Net-_U1-Pad3_ d_inverter +U16 Net-_U16-Pad1_ Net-_U15-Pad1_ d_inverter +U15 Net-_U15-Pad1_ Net-_U1-Pad7_ d_inverter +U11 Net-_U11-Pad1_ Net-_U1-Pad8_ d_inverter +U12 Net-_U12-Pad1_ Net-_U11-Pad1_ d_inverter +U18 Net-_U18-Pad1_ Net-_U14-Pad1_ unconnected-_U18-Pad3_ Net-_U10-Pad4_ unconnected-_U18-Pad5_ Net-_U18-Pad1_ d_dff +U17 Net-_U14-Pad1_ Net-_U16-Pad1_ d_inverter +U13 Net-_U10-Pad1_ Net-_U12-Pad1_ d_inverter +U6 Net-_U10-Pad2_ Net-_U4-Pad2_ unconnected-_U6-Pad3_ Net-_U10-Pad4_ unconnected-_U6-Pad5_ Net-_U10-Pad2_ d_dff +U2 Net-_U1-Pad2_ Net-_U2-Pad2_ d_inverter +U3 Net-_U2-Pad2_ Net-_U3-Pad2_ d_inverter +U4 Net-_U1-Pad1_ Net-_U4-Pad2_ d_inverter +U5 Net-_U3-Pad2_ Net-_U10-Pad4_ d_buffer +U21 Net-_U18-Pad1_ Net-_U20-Pad1_ d_inverter +U26 Net-_U26-Pad1_ Net-_U22-Pad1_ unconnected-_U26-Pad3_ Net-_U10-Pad4_ unconnected-_U26-Pad5_ Net-_U26-Pad1_ d_dff +U19 Net-_U19-Pad1_ Net-_U1-Pad6_ d_inverter +U20 Net-_U20-Pad1_ Net-_U19-Pad1_ d_inverter +U22 Net-_U22-Pad1_ Net-_U18-Pad1_ unconnected-_U22-Pad3_ Net-_U10-Pad4_ unconnected-_U22-Pad5_ Net-_U22-Pad1_ d_dff +U23 Net-_U23-Pad1_ Net-_U1-Pad5_ d_inverter +U25 Net-_U22-Pad1_ Net-_U24-Pad1_ d_inverter +U24 Net-_U24-Pad1_ Net-_U23-Pad1_ d_inverter +U14 Net-_U14-Pad1_ Net-_U10-Pad1_ unconnected-_U14-Pad3_ Net-_U10-Pad4_ unconnected-_U14-Pad5_ Net-_U14-Pad1_ d_dff +U7 Net-_U7-Pad1_ Net-_U1-Pad9_ d_inverter +U8 Net-_U8-Pad1_ Net-_U7-Pad1_ d_inverter +U9 Net-_U10-Pad2_ Net-_U8-Pad1_ d_inverter +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ unconnected-_U10-Pad3_ Net-_U10-Pad4_ unconnected-_U10-Pad5_ Net-_U10-Pad1_ d_dff +.end diff --git a/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.cir.out b/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.cir.out new file mode 100644 index 000000000..586c499ca --- /dev/null +++ b/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.cir.out @@ -0,0 +1,140 @@ +.title kicad schematic + +* u27 net-_u27-pad1_ net-_u1-pad4_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ port +* u28 net-_u28-pad1_ net-_u27-pad1_ d_inverter +* u29 net-_u26-pad1_ net-_u28-pad1_ d_inverter +* u33 net-_u30-pad1_ net-_u32-pad1_ d_inverter +* u32 net-_u32-pad1_ net-_u31-pad1_ d_inverter +* u30 net-_u30-pad1_ net-_u26-pad1_ unconnected-_u30-pad3_ net-_u10-pad4_ unconnected-_u30-pad5_ net-_u30-pad1_ d_dff +* u31 net-_u31-pad1_ net-_u1-pad3_ d_inverter +* u16 net-_u16-pad1_ net-_u15-pad1_ d_inverter +* u15 net-_u15-pad1_ net-_u1-pad7_ d_inverter +* u11 net-_u11-pad1_ net-_u1-pad8_ d_inverter +* u12 net-_u12-pad1_ net-_u11-pad1_ d_inverter +* u18 net-_u18-pad1_ net-_u14-pad1_ unconnected-_u18-pad3_ net-_u10-pad4_ unconnected-_u18-pad5_ net-_u18-pad1_ d_dff +* u17 net-_u14-pad1_ net-_u16-pad1_ d_inverter +* u13 net-_u10-pad1_ net-_u12-pad1_ d_inverter +* u6 net-_u10-pad2_ net-_u4-pad2_ unconnected-_u6-pad3_ net-_u10-pad4_ unconnected-_u6-pad5_ net-_u10-pad2_ d_dff +* u2 net-_u1-pad2_ net-_u2-pad2_ d_inverter +* u3 net-_u2-pad2_ net-_u3-pad2_ d_inverter +* u4 net-_u1-pad1_ net-_u4-pad2_ d_inverter +* u5 net-_u3-pad2_ net-_u10-pad4_ d_buffer +* u21 net-_u18-pad1_ net-_u20-pad1_ d_inverter +* u26 net-_u26-pad1_ net-_u22-pad1_ unconnected-_u26-pad3_ net-_u10-pad4_ unconnected-_u26-pad5_ net-_u26-pad1_ d_dff +* u19 net-_u19-pad1_ net-_u1-pad6_ d_inverter +* u20 net-_u20-pad1_ net-_u19-pad1_ d_inverter +* u22 net-_u22-pad1_ net-_u18-pad1_ unconnected-_u22-pad3_ net-_u10-pad4_ unconnected-_u22-pad5_ net-_u22-pad1_ d_dff +* u23 net-_u23-pad1_ net-_u1-pad5_ d_inverter +* u25 net-_u22-pad1_ net-_u24-pad1_ d_inverter +* u24 net-_u24-pad1_ net-_u23-pad1_ d_inverter +* u14 net-_u14-pad1_ net-_u10-pad1_ unconnected-_u14-pad3_ net-_u10-pad4_ unconnected-_u14-pad5_ net-_u14-pad1_ d_dff +* u7 net-_u7-pad1_ net-_u1-pad9_ d_inverter +* u8 net-_u8-pad1_ net-_u7-pad1_ d_inverter +* u9 net-_u10-pad2_ net-_u8-pad1_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ unconnected-_u10-pad5_ net-_u10-pad1_ d_dff +a1 net-_u27-pad1_ net-_u1-pad4_ u27 +a2 net-_u28-pad1_ net-_u27-pad1_ u28 +a3 net-_u26-pad1_ net-_u28-pad1_ u29 +a4 net-_u30-pad1_ net-_u32-pad1_ u33 +a5 net-_u32-pad1_ net-_u31-pad1_ u32 +a6 net-_u30-pad1_ net-_u26-pad1_ unconnected-_u30-pad3_ net-_u10-pad4_ unconnected-_u30-pad5_ net-_u30-pad1_ u30 +a7 net-_u31-pad1_ net-_u1-pad3_ u31 +a8 net-_u16-pad1_ net-_u15-pad1_ u16 +a9 net-_u15-pad1_ net-_u1-pad7_ u15 +a10 net-_u11-pad1_ net-_u1-pad8_ u11 +a11 net-_u12-pad1_ net-_u11-pad1_ u12 +a12 net-_u18-pad1_ net-_u14-pad1_ unconnected-_u18-pad3_ net-_u10-pad4_ unconnected-_u18-pad5_ net-_u18-pad1_ u18 +a13 net-_u14-pad1_ net-_u16-pad1_ u17 +a14 net-_u10-pad1_ net-_u12-pad1_ u13 +a15 net-_u10-pad2_ net-_u4-pad2_ unconnected-_u6-pad3_ net-_u10-pad4_ unconnected-_u6-pad5_ net-_u10-pad2_ u6 +a16 net-_u1-pad2_ net-_u2-pad2_ u2 +a17 net-_u2-pad2_ net-_u3-pad2_ u3 +a18 net-_u1-pad1_ net-_u4-pad2_ u4 +a19 net-_u3-pad2_ net-_u10-pad4_ u5 +a20 net-_u18-pad1_ net-_u20-pad1_ u21 +a21 net-_u26-pad1_ net-_u22-pad1_ unconnected-_u26-pad3_ net-_u10-pad4_ unconnected-_u26-pad5_ net-_u26-pad1_ u26 +a22 net-_u19-pad1_ net-_u1-pad6_ u19 +a23 net-_u20-pad1_ net-_u19-pad1_ u20 +a24 net-_u22-pad1_ net-_u18-pad1_ unconnected-_u22-pad3_ net-_u10-pad4_ unconnected-_u22-pad5_ net-_u22-pad1_ u22 +a25 net-_u23-pad1_ net-_u1-pad5_ u23 +a26 net-_u22-pad1_ net-_u24-pad1_ u25 +a27 net-_u24-pad1_ net-_u23-pad1_ u24 +a28 net-_u14-pad1_ net-_u10-pad1_ unconnected-_u14-pad3_ net-_u10-pad4_ unconnected-_u14-pad5_ net-_u14-pad1_ u14 +a29 net-_u7-pad1_ net-_u1-pad9_ u7 +a30 net-_u8-pad1_ net-_u7-pad1_ u8 +a31 net-_u10-pad2_ net-_u8-pad1_ u9 +a32 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ unconnected-_u10-pad5_ net-_u10-pad1_ u10 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u27 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u28 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u29 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u33 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u32 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u30 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u18 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u6 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u26 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u22 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u14 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u10 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.kicad_sch b/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.kicad_sch new file mode 100644 index 000000000..0c09909ce --- /dev/null +++ b/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.kicad_sch @@ -0,0 +1,1878 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 452bee08-306e-4264-9fc9-3516b58658e6) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 250.19 130.81) (diameter 0) (color 0 0 0 0) + (uuid 005cf42c-fa1d-4915-8094-ac83f736c2c6) + ) + (junction (at 148.59 165.1) (diameter 0) (color 0 0 0 0) + (uuid 0f1efb48-bff1-47f1-ad36-d1716b778c7e) + ) + (junction (at 209.55 152.4) (diameter 0) (color 0 0 0 0) + (uuid 1f4ddc7f-7fda-4993-8e85-14688a3d2a80) + ) + (junction (at 189.23 165.1) (diameter 0) (color 0 0 0 0) + (uuid 2e214e99-c7fd-4c3d-b42b-2360a78de41e) + ) + (junction (at 229.87 165.1) (diameter 0) (color 0 0 0 0) + (uuid 3ccd95b7-bad5-4b04-b305-bdbb1768bea8) + ) + (junction (at 250.19 152.4) (diameter 0) (color 0 0 0 0) + (uuid 5ed7a1db-0386-4a6b-96c7-4c61b59d1bb0) + ) + (junction (at 168.91 152.4) (diameter 0) (color 0 0 0 0) + (uuid 5f76a93a-2ea7-46f9-ba86-399b3b4362a8) + ) + (junction (at 104.14 165.1) (diameter 0) (color 0 0 0 0) + (uuid 68897541-5b40-4d6e-acdb-c54f1c9ed5eb) + ) + (junction (at 127 130.81) (diameter 0) (color 0 0 0 0) + (uuid 733a82e5-ed08-4b9d-b100-dffcd699ea19) + ) + (junction (at 293.37 132.08) (diameter 0) (color 0 0 0 0) + (uuid 770f1dbb-a2a6-40a7-892e-3dbce7bc6c40) + ) + (junction (at 337.82 152.4) (diameter 0) (color 0 0 0 0) + (uuid 7770362a-613f-485f-89bb-d47a46973542) + ) + (junction (at 127 152.4) (diameter 0) (color 0 0 0 0) + (uuid 79d9c2fe-70fd-45df-b838-5df73724cb96) + ) + (junction (at 209.55 130.81) (diameter 0) (color 0 0 0 0) + (uuid 7de95e59-b9fa-4582-a299-194c9ec77a86) + ) + (junction (at 271.78 165.1) (diameter 0) (color 0 0 0 0) + (uuid 87e457ea-5477-4e0d-a195-9b9d74000f51) + ) + (junction (at 293.37 152.4) (diameter 0) (color 0 0 0 0) + (uuid 8973602b-c8a3-4a5c-a9b3-e8436164143b) + ) + (junction (at 168.91 130.81) (diameter 0) (color 0 0 0 0) + (uuid 916f7d87-c732-42d1-8d47-ddc5a3a6e464) + ) + (junction (at 383.54 132.08) (diameter 0) (color 0 0 0 0) + (uuid d87d8c6f-8009-4b65-9dc5-fc64bac0482d) + ) + (junction (at 314.96 165.1) (diameter 0) (color 0 0 0 0) + (uuid e63bcf98-95f3-437d-bd3a-7d55738b9140) + ) + (junction (at 337.82 132.08) (diameter 0) (color 0 0 0 0) + (uuid e89ed8cb-158e-4cc8-b197-86b1b5e5ae1e) + ) + + (no_connect (at 271.78 128.27) (uuid 062638f5-39e7-4fac-95de-2a5823c87601)) + (no_connect (at 243.84 135.89) (uuid 11459d8a-938d-48e7-a1f7-108e48c1e339)) + (no_connect (at 328.93 135.89) (uuid 16b65778-0a4a-4155-be48-3fc22e3f382c)) + (no_connect (at 373.38 135.89) (uuid 22bb33c6-b943-4590-8ae9-2171f3cc1858)) + (no_connect (at 118.11 135.89) (uuid 2ceb3625-7bcf-436f-9030-0b9674482683)) + (no_connect (at 162.56 135.89) (uuid 40cc2383-7f3a-4e42-9abf-7d060ae8f82b)) + (no_connect (at 285.75 135.89) (uuid 689771bd-3ed9-417c-b334-bd85a83b50ac)) + (no_connect (at 148.59 128.27) (uuid 6d8402f7-bbde-468d-8645-3824b8c53ceb)) + (no_connect (at 189.23 128.27) (uuid 9051cb41-0e1d-4440-a367-32853c567a12)) + (no_connect (at 104.14 128.27) (uuid 97108628-4d0e-4ce5-aa87-ed798df9fd6c)) + (no_connect (at 314.96 128.27) (uuid c04f5767-ea45-489d-9e02-e3c53e79775f)) + (no_connect (at 229.87 128.27) (uuid cc6de204-90e2-4f7d-a36f-8e1e1df04674)) + (no_connect (at 359.41 128.27) (uuid f333ebaf-c650-4092-b684-2c4278abbce1)) + (no_connect (at 203.2 135.89) (uuid f7a3a31d-d218-4cf3-baa8-1eaabf384713)) + + (wire (pts (xy 383.54 132.08) (xy 383.54 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0004bdd5-89c6-4817-82aa-5b4317866331) + ) + (wire (pts (xy 104.14 165.1) (xy 148.59 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 069a826a-ab7e-43da-9a84-67e2d7427bb7) + ) + (wire (pts (xy 127 129.54) (xy 127 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07dbb5e6-af3a-4485-8bac-85d046c3a5be) + ) + (wire (pts (xy 337.82 114.3) (xy 337.82 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 095460d4-a36d-4d9a-b4f0-449f9048ee1b) + ) + (wire (pts (xy 101.6 165.1) (xy 104.14 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 099013e9-16fc-4fb6-86c7-dbdb1f68285e) + ) + (wire (pts (xy 127 96.52) (xy 127 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a044676-71d4-4865-96b9-256f0dd6cf7f) + ) + (wire (pts (xy 168.91 130.81) (xy 168.91 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a100277-1962-4f3e-9432-b5162c8ce066) + ) + (wire (pts (xy 127 152.4) (xy 134.62 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a16dcec-98a2-464c-b37d-a5430d3a6502) + ) + (wire (pts (xy 162.56 152.4) (xy 168.91 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a7ce062-0ed8-49be-8544-647b283621fa) + ) + (wire (pts (xy 337.82 152.4) (xy 345.44 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ce7973e-da0e-44db-84b9-a64f69e5f7fd) + ) + (wire (pts (xy 257.81 132.08) (xy 293.37 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d7dacba-8dde-42eb-94f4-4621448b9d02) + ) + (wire (pts (xy 300.99 135.89) (xy 298.45 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16b761da-10ac-4374-89b7-7304c3394c08) + ) + (wire (pts (xy 293.37 97.79) (xy 293.37 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 173866ba-05bb-40c6-8c23-a28135cbb2a2) + ) + (wire (pts (xy 250.19 152.4) (xy 257.81 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 188bd35f-8de4-4027-a607-cc255207ef87) + ) + (wire (pts (xy 383.54 97.79) (xy 383.54 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19cdaad5-34dd-463a-86a0-27a4737d6291) + ) + (wire (pts (xy 148.59 160.02) (xy 148.59 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ba74e24-b3f4-4bc1-834f-6000e2940991) + ) + (wire (pts (xy 189.23 160.02) (xy 189.23 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21b7c0be-b2d0-4f53-b0a6-768d015f4698) + ) + (wire (pts (xy 257.81 135.89) (xy 257.81 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 233dd3e0-eddf-4f6c-b52f-dc77ebe3442e) + ) + (wire (pts (xy 293.37 81.28) (xy 293.37 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28897648-452d-4303-b38f-32f85a4289f8) + ) + (wire (pts (xy 373.38 152.4) (xy 383.54 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2da5e4ce-934b-4ca9-acf0-889742921ed3) + ) + (wire (pts (xy 243.84 152.4) (xy 250.19 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e8b4090-4d8f-4c90-8bca-02d268efbcfe) + ) + (wire (pts (xy 90.17 135.89) (xy 90.17 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2efe77db-6a25-4716-a384-36d8b25370df) + ) + (wire (pts (xy 328.93 152.4) (xy 337.82 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3077a3ba-1040-4897-af8d-15b4295426ee) + ) + (wire (pts (xy 314.96 160.02) (xy 314.96 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3215d37c-acdc-4f80-9c7d-ca140b298ed3) + ) + (wire (pts (xy 189.23 165.1) (xy 229.87 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a18fde9-3355-40eb-81ef-cfceea9fad60) + ) + (wire (pts (xy 293.37 132.08) (xy 293.37 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 440ca290-8a2a-46c8-9480-7591131cc2b6) + ) + (wire (pts (xy 134.62 135.89) (xy 132.08 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44236b00-6f2f-4ef8-9b09-46d634af8363) + ) + (wire (pts (xy 74.93 152.4) (xy 90.17 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48046751-2c1b-458e-bad3-9e9f7ab0d644) + ) + (wire (pts (xy 214.63 130.81) (xy 250.19 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 491e5f08-9f32-4bb3-a6a8-56c71ae3c2bd) + ) + (wire (pts (xy 293.37 152.4) (xy 300.99 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bf549e4-a7f0-4e87-bd7e-9e7ce4226d62) + ) + (wire (pts (xy 175.26 135.89) (xy 172.72 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e2f27b1-72e1-4d6b-a5fc-3c22c4fc70ba) + ) + (wire (pts (xy 250.19 113.03) (xy 250.19 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ed7d680-7511-4239-add6-a17ef0dc1699) + ) + (wire (pts (xy 132.08 135.89) (xy 132.08 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51986687-f67b-48c1-8c27-c158148f2e20) + ) + (wire (pts (xy 90.17 130.81) (xy 127 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5fb90198-a8f6-46dc-b6c8-6991e5e02e38) + ) + (wire (pts (xy 33.02 152.4) (xy 59.69 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62e2fd85-69b8-41e5-bc62-fe9f79690fcd) + ) + (wire (pts (xy 215.9 135.89) (xy 214.63 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 651915a8-33dd-4ceb-9205-f9d1b28a2313) + ) + (wire (pts (xy 229.87 165.1) (xy 271.78 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6700fb42-3edc-401f-a541-923f1876f294) + ) + (wire (pts (xy 285.75 152.4) (xy 293.37 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6718afcd-3ffc-4279-ae27-ee3fd20ebb60) + ) + (wire (pts (xy 172.72 135.89) (xy 172.72 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6889aad3-710e-49db-8765-68609f123e1e) + ) + (wire (pts (xy 209.55 130.81) (xy 209.55 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ce75d89-be2d-4d11-8164-71fcde95a18d) + ) + (wire (pts (xy 203.2 152.4) (xy 209.55 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d4785cf-761b-4a25-9c43-850fee0d8312) + ) + (wire (pts (xy 271.78 160.02) (xy 271.78 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ef6d46d-f7b6-46d1-b81d-b6c7029f90ea) + ) + (wire (pts (xy 298.45 132.08) (xy 298.45 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6fc9e752-c095-4d62-a798-314fc0171a45) + ) + (wire (pts (xy 209.55 152.4) (xy 215.9 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 706c6814-fbd5-465e-af14-a373299e9bf9) + ) + (wire (pts (xy 345.44 132.08) (xy 383.54 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 728b8b47-b3ca-493d-8e57-5eef972c676c) + ) + (wire (pts (xy 54.61 165.1) (xy 55.88 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79cb4bca-d07b-42ad-8584-eb6e30e58af6) + ) + (wire (pts (xy 337.82 130.81) (xy 337.82 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a34ffe4-f876-476e-8101-fe1c9ba9a0a9) + ) + (wire (pts (xy 293.37 114.3) (xy 293.37 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83bfe0a7-3416-431d-be12-1c88765ece69) + ) + (wire (pts (xy 168.91 80.01) (xy 168.91 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ec950e8-02d0-432f-aec9-f50f8d87a8db) + ) + (wire (pts (xy 168.91 113.03) (xy 168.91 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 925fd357-b3ba-4044-b4fb-83f23a7abb6c) + ) + (wire (pts (xy 209.55 96.52) (xy 209.55 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9495deb4-5829-48de-af0f-9750710ccd2e) + ) + (wire (pts (xy 337.82 97.79) (xy 337.82 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d8d3201-9b2c-4848-a7b1-14b5535be5fd) + ) + (wire (pts (xy 229.87 160.02) (xy 229.87 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1d24229-e05e-4af1-b13e-7cc5b50638d9) + ) + (wire (pts (xy 209.55 129.54) (xy 209.55 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a207ce24-dcf8-451f-937c-73c963a25892) + ) + (wire (pts (xy 250.19 80.01) (xy 250.19 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2c22ffd-127b-4069-a7a6-65c9afcbe0c9) + ) + (wire (pts (xy 172.72 130.81) (xy 209.55 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a467de4d-b9d2-4abe-89dd-f175e375674d) + ) + (wire (pts (xy 383.54 114.3) (xy 383.54 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a52d408c-2087-4907-a373-82a466522185) + ) + (wire (pts (xy 127 130.81) (xy 127 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a79f781d-e16b-4414-98f2-ac34bc56e420) + ) + (wire (pts (xy 337.82 81.28) (xy 337.82 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afba2557-00c2-4031-b2fe-d366520fba4e) + ) + (wire (pts (xy 293.37 130.81) (xy 293.37 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b079c808-be4d-40d6-9f64-c323ea73bc73) + ) + (wire (pts (xy 118.11 152.4) (xy 127 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3bc7346-ca61-47a8-8cd8-ab977bfb8513) + ) + (wire (pts (xy 271.78 165.1) (xy 314.96 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0c760b1-f5ac-499b-ae45-6296d85a0f81) + ) + (wire (pts (xy 337.82 132.08) (xy 337.82 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1eba1e0-3afd-45ce-9a29-107159c259fb) + ) + (wire (pts (xy 250.19 129.54) (xy 250.19 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1898d5c-15da-4ea3-8063-38a458106a81) + ) + (wire (pts (xy 209.55 113.03) (xy 209.55 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d26bdb47-eb4a-4404-b0e6-e695c6131d51) + ) + (wire (pts (xy 209.55 78.74) (xy 209.55 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2e73d62-869d-4817-a0bf-bf12be6f844d) + ) + (wire (pts (xy 127 113.03) (xy 127 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2f51982-f710-4a7f-b41d-d7d554857a81) + ) + (wire (pts (xy 250.19 96.52) (xy 250.19 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d462e716-b1cd-4d2c-aa4e-f54d16f40cff) + ) + (wire (pts (xy 71.12 165.1) (xy 72.39 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4a0d2ae-74f8-4189-88c4-3955ec76f31a) + ) + (wire (pts (xy 31.75 165.1) (xy 39.37 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d82962b2-233c-4892-b4e8-e58381b3bfa8) + ) + (wire (pts (xy 168.91 152.4) (xy 175.26 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbe257fc-056a-4e24-acfc-a731c60b2766) + ) + (wire (pts (xy 345.44 135.89) (xy 345.44 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de5fc134-fef8-4a69-aac0-6359cd0dbb99) + ) + (wire (pts (xy 383.54 130.81) (xy 383.54 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e197edbf-77a4-449c-8bf9-d7dab515f69a) + ) + (wire (pts (xy 168.91 96.52) (xy 168.91 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7e9eca7-80c3-4c35-b5d2-aa2d8ca9e33c) + ) + (wire (pts (xy 127 78.74) (xy 127 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb594abb-b4fc-40b8-a57b-c5bf87aea8e6) + ) + (wire (pts (xy 250.19 130.81) (xy 250.19 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eec8a82d-8429-46db-9943-ba91f3e08629) + ) + (wire (pts (xy 359.41 160.02) (xy 359.41 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef4d60df-8d3a-4311-95ab-64e5c142580b) + ) + (wire (pts (xy 168.91 129.54) (xy 168.91 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0968002-028d-4d7c-a219-c54670785ec1) + ) + (wire (pts (xy 383.54 81.28) (xy 383.54 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3e0c313-74ce-4cd2-8b60-fdbdbe93e757) + ) + (wire (pts (xy 298.45 132.08) (xy 337.82 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f489011c-7c01-44be-8924-4d08ffa5d9da) + ) + (wire (pts (xy 148.59 165.1) (xy 189.23 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5670a64-d9e7-44dc-aaf3-60794b57415a) + ) + (wire (pts (xy 132.08 130.81) (xy 168.91 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc30e98a-613b-4a7a-a63e-b30ac5d245a8) + ) + (wire (pts (xy 314.96 165.1) (xy 359.41 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe53e3e9-39f6-45bc-b71a-8e501d9b6a38) + ) + (wire (pts (xy 214.63 135.89) (xy 214.63 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe8558a7-8571-4945-941e-e8680a6e4a9c) + ) + (wire (pts (xy 104.14 160.02) (xy 104.14 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff94639d-7037-46f3-98f3-3bf32fe739de) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 168.91 105.41 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 008713dd-244c-4402-8fa2-d4181a229458) + (property "Reference" "U12" (id 0) (at 171.45 104.14 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 171.45 107.95 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 170.18 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a277bcd6-866f-4601-98bb-174ee3697bd0)) + (pin "2" (uuid 1a0bbe41-0334-4702-a3a4-7e588fdea582)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 26.67 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 020598a3-c9da-432f-aa24-f076f949500c) + (property "Reference" "U1" (id 0) (at 27.305 147.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 27.305 149.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 26.67 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 26.67 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ee5c0d8f-0396-4d10-a473-754d38fcec4b)) + (pin "2" (uuid 54923b69-4f9c-4b98-9ea8-2afd34e6a5b3)) + (pin "3" (uuid 7d85a40b-df7b-4a08-b4b7-d404a808bb1c)) + (pin "4" (uuid e7814a24-6d1c-4f85-9b57-567be3dde92b)) + (pin "5" (uuid 48a53170-0793-4611-90e9-527d2c8d2d14)) + (pin "6" (uuid 78ed93dd-94d3-413c-84e8-28e863d3641d)) + (pin "7" (uuid 01bd8734-8b92-49b0-9026-a66af2e7cd29)) + (pin "8" (uuid fdc39238-f5a8-4f94-9c8c-1bca31513700)) + (pin "9" (uuid 53a3520c-5bd2-497f-809d-489f794e0b46)) + (pin "10" (uuid 887dc97d-4e5a-41d4-bca1-9cf8a917ca4e)) + (pin "11" (uuid 55414107-967a-4c13-bafe-20adb5ded8a1)) + (pin "12" (uuid 1edd3dbf-44a1-4593-aafb-ed77c498b8e2)) + (pin "13" (uuid 3488a42d-0939-437d-9c28-b70ce1d92da9)) + (pin "14" (uuid f79064b2-ba13-4122-a4e1-0ede875d9190)) + (pin "15" (uuid d5d37948-39b8-40a7-a4c6-c95a74fd1c4b)) + (pin "16" (uuid 2776194e-a5b9-41c0-8fda-62b256f19414)) + (pin "17" (uuid 818b68d0-89c6-42ed-aae0-fc2afe249d1b)) + (pin "18" (uuid 8d22c80b-8fae-4b6f-95d5-e3f4057a87b0)) + (pin "19" (uuid 1d63ff49-30e0-43bd-a37b-58618f61f01d)) + (pin "20" (uuid 37679a3c-1444-479f-83bf-1faa70ad27f5)) + (pin "21" (uuid 43a4f6aa-93cf-4fe9-b78f-5737700245c9)) + (pin "22" (uuid 9255ca7d-ca2d-489f-8e09-c5fe13f5c13b)) + (pin "23" (uuid d32730db-db0c-4658-b125-4cc7fcb03ff8)) + (pin "24" (uuid 6c272d73-e2f0-44f5-8b29-3fd2073377dc)) + (pin "25" (uuid 8efd183e-c30b-4739-8e00-1131c8b8988c)) + (pin "26" (uuid b300a9a0-6810-490b-bfee-50d511c3de6e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 293.37 90.17 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15c220c1-2cb3-40a0-9da2-67092ce70efc) + (property "Reference" "U23" (id 0) (at 295.91 88.9 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 295.91 92.71 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 294.64 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f94fe88-9c47-4d7c-93a5-7039b5433802)) + (pin "2" (uuid ad70ada3-f979-4a3b-8e49-63ff63ee5ac0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 63.5 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15d65c17-9e32-4557-8db7-e6c1095f0cd0) + (property "Reference" "U3" (id 0) (at 63.5 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 63.5 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 64.77 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 64.77 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b116e475-fb3e-487d-a999-86aad1c47f76)) + (pin "2" (uuid d4a96dd3-d920-4357-b2d7-a2e6d3e15a92)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 293.37 74.93 270) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 18a18477-4311-40e5-8038-1e49fa253288) + (property "Reference" "U1" (id 0) (at 295.91 74.93 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 295.91 77.47 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 293.37 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 293.37 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6bf67d3c-6979-4681-ac9e-c0c81bf69363)) + (pin "2" (uuid 394e059a-b2dc-4172-bd42-c6652353f1e7)) + (pin "3" (uuid 061773e9-caa6-4a35-965a-bf37656cd33b)) + (pin "4" (uuid 2c910d54-5aa0-4c1b-b9f6-1dab08e0c778)) + (pin "5" (uuid e51c4309-5270-4a9a-80d5-92ba2139a259)) + (pin "6" (uuid c168461e-7ad6-4137-bdce-37e2b6ab1d6e)) + (pin "7" (uuid 2156564d-4c5b-4653-a97f-4fb783755556)) + (pin "8" (uuid 20805bcf-2d04-4b9b-b317-cf6991ab6a06)) + (pin "9" (uuid fd0fd739-d7dc-448f-8953-71214797591e)) + (pin "10" (uuid f7b0865b-014c-4427-8f49-b0c81f47f03b)) + (pin "11" (uuid fd50616d-291d-48c3-be08-8ddbc2fcdef1)) + (pin "12" (uuid 5a32cd34-8287-4ee7-9885-4bcab5011c50)) + (pin "13" (uuid b5846736-e792-43e5-97a3-b3f95ce14495)) + (pin "14" (uuid 0bcf8785-af1d-4a47-9254-41cf615275cb)) + (pin "15" (uuid 8d760e32-0b01-4e02-b81a-148d02536751)) + (pin "16" (uuid dc6ec8fe-9c8b-4ee7-ba49-f2b680ee9d21)) + (pin "17" (uuid ee00935b-d5ba-4737-8c9d-67fadd72bfdc)) + (pin "18" (uuid 11caa823-fc7b-4f00-971c-18d5859f1857)) + (pin "19" (uuid de1d3eec-bbe9-49ad-8298-e56c41c85b17)) + (pin "20" (uuid 4addde0d-f6d8-452a-9750-b0e1682ecc89)) + (pin "21" (uuid d2f7a8bd-04c1-454c-a6ef-a74791c23e47)) + (pin "22" (uuid bd2bec1c-6348-4dce-9934-f7c14bf78c27)) + (pin "23" (uuid 1b0bdb5e-0528-4e9e-9508-f1640b05cdad)) + (pin "24" (uuid 3b93a741-f535-49c3-bd36-7cc2420af685)) + (pin "25" (uuid a467a1b2-85bd-4400-a6c9-39484db34068)) + (pin "26" (uuid 4e93af43-aadc-4e4b-a212-435022e87d23)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 383.54 106.68 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2107e224-1f9a-4dce-a73d-b929e67da692) + (property "Reference" "U32" (id 0) (at 386.08 105.41 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 386.08 109.22 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 384.81 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 384.81 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0a2c6368-ff30-4161-9d0f-4662cd45b0d8)) + (pin "2" (uuid 9c31b1a0-f7b2-48e7-984d-432218694795)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 127 105.41 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26b3a7c2-7d18-4f85-9b5f-33681a8d3b7d) + (property "Reference" "U8" (id 0) (at 129.54 104.14 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 129.54 107.95 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 128.27 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 023240e5-dfff-4c29-805b-fdd615149d21)) + (pin "2" (uuid 152b7016-6da5-460a-b46f-3e19c588e58f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 293.37 123.19 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 299eb4a2-c2ae-4224-a16e-7606d0a9e6d6) + (property "Reference" "U25" (id 0) (at 295.91 121.92 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 295.91 125.73 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 294.64 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 616462aa-a99e-4a3b-9d58-af5d0283a032)) + (pin "2" (uuid 9f78ef8f-c0ed-4438-bed7-6f8c2dc69402)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 85.09 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2daa34da-8536-475e-b180-b285ac7ab420) + (property "Reference" "U5" (id 0) (at 86.995 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 86.995 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 85.09 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 85.09 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 54b17a96-3afa-4eb0-8cf6-262cc14153de)) + (pin "2" (uuid 5e51a2e1-94db-4f52-99a7-b71c48d9c30b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 337.82 74.93 270) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2fbaf4b9-3b0d-4821-a812-59ad6432bca0) + (property "Reference" "U1" (id 0) (at 340.36 74.93 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 340.36 77.47 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 337.82 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 337.82 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d0b75aae-ead9-4988-bacd-aff60cd36cb6)) + (pin "2" (uuid 598dc7ba-a2ab-4475-b105-20653ab4b568)) + (pin "3" (uuid e8f5b2ab-191a-4c63-b68d-1d986e37cee7)) + (pin "4" (uuid 9f24dea2-9744-4003-8180-ad0cf0321b36)) + (pin "5" (uuid 4d259879-2c60-4f4d-8e5c-8d37e14e2d5f)) + (pin "6" (uuid 4d2db982-977a-445c-b76d-cae2e449d4c9)) + (pin "7" (uuid e2bd72e7-1273-4154-a07a-9cd014c2c568)) + (pin "8" (uuid 6ab80b96-8281-43b4-af78-caef25acec09)) + (pin "9" (uuid 73437aad-a874-4dc8-8140-dc911a392646)) + (pin "10" (uuid b04e75e2-a928-44df-ad01-aec449adfa29)) + (pin "11" (uuid 5b0b6cf6-0fc9-4558-ac1e-cd866a1a362c)) + (pin "12" (uuid 68358750-516e-4823-aa0c-0cd665e033d4)) + (pin "13" (uuid 184aeb04-7b4a-480a-8486-9a2c031f462a)) + (pin "14" (uuid ed9827df-ae79-4778-9d4a-61d82dbf3f87)) + (pin "15" (uuid f613be00-e68c-4c2a-9f95-fd2861c4982b)) + (pin "16" (uuid ac17f146-f4f2-4e87-bf1e-c4625d9fb112)) + (pin "17" (uuid 49fc95c7-ad25-4c3b-ba2b-653edf05a720)) + (pin "18" (uuid 9507d18b-c363-4a9b-acf9-c7e47b666d86)) + (pin "19" (uuid 36e9ba74-5baf-4ab4-abeb-ea41a60058e3)) + (pin "20" (uuid 2f5ba82d-cdea-4219-825b-3404cf61f178)) + (pin "21" (uuid 5f98e80e-b3f5-4bef-a03a-c1f31cb362bd)) + (pin "22" (uuid 9146547f-158a-4133-807d-0f71afb8c66c)) + (pin "23" (uuid 9040eee5-969d-4427-a70f-fee392c59c20)) + (pin "24" (uuid b8f1fd5d-5c1e-47d6-9b12-fd7f31f0e3b1)) + (pin "25" (uuid 99b3e063-977e-4971-b95a-f671ba8cb0bb)) + (pin "26" (uuid 73661e3c-c0eb-4fed-937d-f8211f1c79a1)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 229.87 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 335ac0ae-12d0-48de-b9dc-d909bd7a8647) + (property "Reference" "U18" (id 0) (at 231.8894 128.27 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 231.8894 132.08 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 229.87 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 229.87 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 82a0eaf6-1c0b-470e-abf0-935bab1ec54e)) + (pin "2" (uuid 1db79823-3a13-405c-8268-dce716a0125a)) + (pin "3" (uuid ecaf5c15-9531-4424-a444-0019264b3b0f)) + (pin "4" (uuid 99c43818-29a5-4251-b9a8-d346201b9028)) + (pin "5" (uuid 52f27b90-f97f-4b21-8d9a-8409d092ff4a)) + (pin "6" (uuid 5772724b-a3da-4633-981d-37640ddaa65c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 127 121.92 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3eb6a207-c75b-46d1-bedf-89ecfd793b42) + (property "Reference" "U9" (id 0) (at 129.54 120.65 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 129.54 124.46 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 128.27 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2ed2e5e0-a51d-4447-b80a-9b66dc948b90)) + (pin "2" (uuid b0468277-22cc-416f-8917-cece5d79b6a5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 25.4 165.1 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3f5b54e6-fec9-4d03-9896-bf9f393b3a1e) + (property "Reference" "U1" (id 0) (at 26.035 160.02 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 26.035 162.56 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 25.4 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 25.4 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 530ad170-becc-40a1-a9ca-15a6bd431aa3)) + (pin "2" (uuid 6e1fd7eb-55b0-4b94-8ed2-82dbfcd88244)) + (pin "3" (uuid d8358a30-9b2d-48e3-8c4b-15da4706e133)) + (pin "4" (uuid ed630c42-6eb0-420a-b258-80f8f3b31912)) + (pin "5" (uuid b63b13a6-5341-46af-b991-f89bd7721264)) + (pin "6" (uuid 1ed22d46-bf1a-4f11-bc32-7964f66d85f3)) + (pin "7" (uuid 11c4fb7b-c8bf-404e-8f07-77739973e916)) + (pin "8" (uuid 2b1c9548-0176-499f-b5e5-c5bede1964ef)) + (pin "9" (uuid d53c32b2-6081-4686-8ab8-3fa4641676f8)) + (pin "10" (uuid 77d6cd24-9a79-4b75-9018-e655283be4eb)) + (pin "11" (uuid 84250509-a674-4b58-b92d-99361116a71a)) + (pin "12" (uuid 345e7488-c136-4e3b-88ce-7b6cf463c671)) + (pin "13" (uuid 27947a3e-0f88-4bb8-923d-c610867e3018)) + (pin "14" (uuid 716d5229-c02c-4c74-b0d5-da8adffff83b)) + (pin "15" (uuid fa0ede0d-74ca-4b6e-8e85-5e551c15e9b9)) + (pin "16" (uuid 91eeb41f-aa74-47f2-a7f5-971e4c6204a7)) + (pin "17" (uuid c0e5cd7e-0481-43d7-a241-c4e173a6c985)) + (pin "18" (uuid 91248873-0e03-4d97-b2f3-128618da8e7b)) + (pin "19" (uuid 21c68f78-d0bd-4a1e-9df2-fe937004400a)) + (pin "20" (uuid 78ef81f4-d861-432b-bef7-1cca4270031a)) + (pin "21" (uuid f5f94c50-7083-4084-8d70-5ef9c3151638)) + (pin "22" (uuid c2c63466-cee1-4acd-bf7b-a784e2515d17)) + (pin "23" (uuid f29fac4c-cf2c-4e20-8499-6979826b59a0)) + (pin "24" (uuid f08f6d6f-6927-463c-83eb-93be1e42c51b)) + (pin "25" (uuid af54583e-9c6e-4619-a49d-b004823ed774)) + (pin "26" (uuid e3ccbb7c-fdac-460c-8133-02ab254ab7dc)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 337.82 90.17 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b841f68-dbcb-442f-9231-c74b5cc34a75) + (property "Reference" "U27" (id 0) (at 340.36 88.9 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 340.36 92.71 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 339.09 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 07c9df70-846b-4784-8670-46375b0b0751)) + (pin "2" (uuid a2969ffa-886f-4038-a1de-350867eee769)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 250.19 105.41 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 50d3418f-1c52-4e8a-9bd2-f3d3c1fb7107) + (property "Reference" "U20" (id 0) (at 252.73 104.14 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 252.73 107.95 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 251.46 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 251.46 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1d6c4af2-c137-4bb5-b676-09478939087f)) + (pin "2" (uuid b572d0b0-ff11-430f-8435-36aacaa9a052)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 383.54 90.17 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5c9a359e-e8dc-4226-83ae-343527f7b670) + (property "Reference" "U31" (id 0) (at 386.08 88.9 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 386.08 92.71 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 384.81 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 384.81 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8dd0ae29-67bb-439a-9872-dfea5623a44a)) + (pin "2" (uuid 57a3e36d-6413-4423-a328-9d563fe83bd3)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 359.41 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 666f092b-54ad-4503-a38d-88f84433e168) + (property "Reference" "U30" (id 0) (at 361.4294 128.27 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 361.4294 132.08 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 359.41 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9151444b-c9cc-4031-a012-f4744f567455)) + (pin "2" (uuid 090894ab-8aae-416d-8d5a-45c6894518ae)) + (pin "3" (uuid cd2936be-ee2f-475a-aad4-b76dfbeaf1c3)) + (pin "4" (uuid 08f9f61c-2637-4c7f-ae8e-1c28c74d3877)) + (pin "5" (uuid 95b29706-6bbf-401b-bd27-a95fa2726fa0)) + (pin "6" (uuid 2c2da458-4cf1-4ae0-a38d-5a876994d4eb)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 250.19 121.92 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7e105f36-a34a-442b-b062-b0563f54327b) + (property "Reference" "U21" (id 0) (at 252.73 120.65 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 252.73 124.46 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 251.46 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 251.46 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7bf9172a-38cd-4915-87f7-b052e288c3f8)) + (pin "2" (uuid dacd210a-2810-401f-aece-abb999a41091)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 209.55 88.9 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 84997399-8f9c-4f01-b4e2-af7a8753dcaa) + (property "Reference" "U15" (id 0) (at 212.09 87.63 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 212.09 91.44 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 210.82 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a591da4a-3067-4632-9d60-975b794935db)) + (pin "2" (uuid f7986198-fff8-44b9-a7de-68391832d071)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 46.99 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b87dbae-78f0-4f75-b34a-698ea603a5ca) + (property "Reference" "U2" (id 0) (at 46.99 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 46.99 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 48.26 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 48.26 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 84f20200-7d2a-4611-ae1f-2787a4b91a36)) + (pin "2" (uuid 7312ce8b-93ed-4819-8c53-b008c20e9541)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 383.54 123.19 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f983226-8415-459b-a4f0-883c2c0bf47d) + (property "Reference" "U33" (id 0) (at 386.08 121.92 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 386.08 125.73 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 384.81 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 384.81 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad6a1ea1-0266-482b-8b20-cc86d9a77245)) + (pin "2" (uuid c2b7cac9-f73c-456f-993f-a0179c275cc8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 383.54 74.93 270) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9113eb45-048f-43bd-b63e-5edb709fd460) + (property "Reference" "U1" (id 0) (at 386.08 74.93 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 386.08 77.47 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 383.54 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 383.54 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e12a960-9036-42b0-b7d4-ef5dd0dbfb88)) + (pin "2" (uuid 3ce0c7ab-6368-497f-8918-966e26e1219c)) + (pin "3" (uuid 6354f3b1-afcd-4d05-a984-c1c09d56b991)) + (pin "4" (uuid bf92e0c8-8bbf-4404-b632-60e82901f745)) + (pin "5" (uuid 0fb984a8-a75c-4ade-9be5-ae20a88dcfb8)) + (pin "6" (uuid 44b68d4c-fbf7-4f03-8be9-be9cfb9bb574)) + (pin "7" (uuid 57449ea4-a7b6-4d2d-99f3-8224fabfd007)) + (pin "8" (uuid 832df3f1-c28d-4b85-838d-8951c30bb639)) + (pin "9" (uuid 4e84cefd-fc6f-4903-be93-7d9ea2796df0)) + (pin "10" (uuid d961a4d2-1cfb-477c-bfcd-1792a5f1aa56)) + (pin "11" (uuid 782e89a5-5a3c-4313-877b-1acf390c58c1)) + (pin "12" (uuid 261c861b-7e65-4990-91d2-4ccf79c08ffb)) + (pin "13" (uuid 284b07d9-edac-4c18-bde6-5c52b88f04eb)) + (pin "14" (uuid a3e59e3a-2ffe-4887-8f94-0fcd0c7da852)) + (pin "15" (uuid 8c26018d-ff51-4bcf-b65b-78c1757a44e2)) + (pin "16" (uuid 4630004c-cace-452d-bfaa-175fb27864fc)) + (pin "17" (uuid 4c38d5cc-273b-4c35-a8d5-c82903446dd0)) + (pin "18" (uuid 65763d7b-8751-4974-808a-463845e94a7c)) + (pin "19" (uuid 46824a8f-91d7-4b1a-82d7-3991ceda07f2)) + (pin "20" (uuid e31f8874-10cc-4cbb-9531-b2164452377d)) + (pin "21" (uuid eb6b40e4-4393-475e-a4e3-1960c06cb663)) + (pin "22" (uuid 654bc7a5-3dab-4a2a-bde1-6d272c5d1418)) + (pin "23" (uuid 0b548200-64d9-4c38-9ce4-0af27c43b167)) + (pin "24" (uuid f20baee8-7f34-4419-9bbd-62970dd0ef82)) + (pin "25" (uuid 2c50801e-ff92-425f-85d6-a186f29ed31b)) + (pin "26" (uuid b952c3ad-fdfb-476b-a12c-86f7106720a9)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 127 88.9 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9170e2fc-478f-4a3b-a70a-b9949ef041bf) + (property "Reference" "U7" (id 0) (at 129.54 87.63 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 129.54 91.44 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 128.27 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 54225318-86de-4731-a4f9-576d52ca93e0)) + (pin "2" (uuid 3cee58e0-727d-499d-b5ef-3bfaf687ebfb)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 314.96 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93874c57-2342-4792-b022-92b63a6ffaac) + (property "Reference" "U26" (id 0) (at 316.9794 128.27 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 316.9794 132.08 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 314.96 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 314.96 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a2eb9517-cf6b-4044-89c9-2e3656bf05c2)) + (pin "2" (uuid 5856f0cd-7eee-4ca9-800e-160f15e2cb1d)) + (pin "3" (uuid 0f803d7a-b9f9-4630-a8b5-2fa5741bb94c)) + (pin "4" (uuid 914d4b5b-60b5-4723-a285-7d93115e8e39)) + (pin "5" (uuid 6b6bce7e-ec41-4a3d-800b-52da8e821196)) + (pin "6" (uuid b49fbb4f-a711-423f-beab-1803adca0fcf)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 250.19 73.66 270) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 94a5f269-a2df-4f76-8fa2-a970acf28198) + (property "Reference" "U1" (id 0) (at 252.73 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 252.73 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 250.19 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 250.19 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 06c0b305-a778-4d8e-b336-77ef89dc3d2f)) + (pin "2" (uuid 99c0ffe3-9f4a-4239-b715-9d5627023242)) + (pin "3" (uuid 21a48074-9498-46ef-9ad8-ddcbc4969338)) + (pin "4" (uuid e906fa36-a26e-45c2-aecd-fee065554672)) + (pin "5" (uuid 61d31ea5-a9d4-4abf-b2b8-b139ba609e30)) + (pin "6" (uuid 8bf7b53d-7583-40ba-a001-e2cfe558672e)) + (pin "7" (uuid a793cfb5-719a-4d77-b38b-32016f4d7f03)) + (pin "8" (uuid ad277acc-4895-415f-a3ab-20d52428cf6b)) + (pin "9" (uuid 34efdf86-8257-46a9-ab43-0addce4e5f21)) + (pin "10" (uuid 9ec3f4bc-9cbb-43ef-8512-8bc37493da91)) + (pin "11" (uuid f941b380-fef4-447b-ae42-2ed338a012b9)) + (pin "12" (uuid 58288084-b786-40e8-8f81-2ed9df11bc23)) + (pin "13" (uuid cc848dcc-5660-4835-8b34-a3dc3b636ac5)) + (pin "14" (uuid 454400af-9b74-497d-8765-c366c493fd04)) + (pin "15" (uuid 5706d307-f16b-45aa-9a21-8cb3ead49b7a)) + (pin "16" (uuid 19e51119-5380-4755-abd9-129e0e66a33c)) + (pin "17" (uuid b8dd93b9-ad7b-4bef-8252-f338e750307e)) + (pin "18" (uuid a512c06f-e9e5-455c-9b69-88e7acf0612a)) + (pin "19" (uuid 47b76f98-ebaa-4c15-ba11-73bf07e4c20b)) + (pin "20" (uuid 24ab4736-ecec-41c1-854a-815df113bb6f)) + (pin "21" (uuid c0492c0a-4b01-4074-baed-238ee5a495c3)) + (pin "22" (uuid a8fb45e0-5eb1-4ca5-b755-2cfa53297811)) + (pin "23" (uuid 23320034-3f4b-4d32-b473-cfc0672df98f)) + (pin "24" (uuid 4c4a8116-cef0-4433-b58e-0f712b8b43da)) + (pin "25" (uuid 3794c0f3-1045-4b17-a937-b12b50fdf2e0)) + (pin "26" (uuid 06776f82-1776-4eff-91e1-75a2217a305a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 337.82 123.19 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 96eb17d0-eaa1-4039-9e61-2bf26cc48faa) + (property "Reference" "U29" (id 0) (at 340.36 121.92 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 340.36 125.73 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 339.09 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c2ca8335-d145-46c6-8236-d13ee8277208)) + (pin "2" (uuid 163658e5-c092-44c2-82cf-f21f80f86f48)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 168.91 73.66 270) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 99836109-0c7f-4590-a918-6ca42d929b1d) + (property "Reference" "U1" (id 0) (at 171.45 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 171.45 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 168.91 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b47543f1-512c-497a-923a-2e512cc1fbb0)) + (pin "2" (uuid cc78308b-2d4f-4b84-8d41-c891142988e1)) + (pin "3" (uuid 882a3aad-e932-4c67-9d49-c822677e9493)) + (pin "4" (uuid c1e98883-4641-4270-9d7b-e1e92778b175)) + (pin "5" (uuid 670283d1-f416-4b03-8c4c-00c43f494064)) + (pin "6" (uuid 0d007392-464a-4a9e-ab51-b1be67a563b6)) + (pin "7" (uuid 44688188-f520-49a0-874b-a754c54e302c)) + (pin "8" (uuid 38293d0c-4326-4548-844b-44342d436933)) + (pin "9" (uuid 109b3df9-0938-4c36-bfb6-426e3e006d77)) + (pin "10" (uuid 203ba6b5-8339-4c2e-9faa-08121f49bd6a)) + (pin "11" (uuid bdc92807-0b97-47a4-b4c6-31109a325dd6)) + (pin "12" (uuid 229cf074-da2a-4d5a-be79-1ef58fc8fa5e)) + (pin "13" (uuid 9b6b397e-b01b-4ffd-85b7-4e53a3b112d4)) + (pin "14" (uuid 0a78e507-d663-4f9c-91b9-c15e6227df98)) + (pin "15" (uuid 9a41117f-35c0-4c93-b30d-03acc86cd094)) + (pin "16" (uuid b6e5d72b-9fdc-46ba-ad53-fd4361e02311)) + (pin "17" (uuid 1c89810a-3b60-43c7-88dd-5457193274da)) + (pin "18" (uuid 47599737-e85c-451f-aa90-7a0123769d8b)) + (pin "19" (uuid 65d4b4cb-70d1-40be-b59e-20bdca3bdc45)) + (pin "20" (uuid da2ac60e-5084-4464-bc90-2de1a86d323c)) + (pin "21" (uuid 7d3f2a4f-4b59-46c0-802c-b17399e17cb3)) + (pin "22" (uuid a6ae469f-8e6f-4ee4-960f-5347602fbb96)) + (pin "23" (uuid 3f3bfab7-4f05-410d-ad87-80ce2c661649)) + (pin "24" (uuid 792093f8-b403-4215-9247-dcd9c63bd567)) + (pin "25" (uuid 25303eb9-98c5-4b12-8368-9f2186120cc3)) + (pin "26" (uuid 63ce8dfa-9279-456f-8531-689f40fe6d44)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 104.14 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9c3dbd7a-9f18-41f0-a80b-ad0b9f0b2fd9) + (property "Reference" "U6" (id 0) (at 106.1594 128.27 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 106.1594 132.08 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 104.14 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 104.14 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 19d4a60b-3c73-4935-a948-35202b4d37aa)) + (pin "2" (uuid 5db04a03-7431-4636-8294-83adb80e411a)) + (pin "3" (uuid c603e490-e20c-41bc-b7b5-fc389ed5af20)) + (pin "4" (uuid 015f08d2-63b8-453e-9585-29f4482a8448)) + (pin "5" (uuid 50817693-71c3-4ec7-8e0c-5a5fe9294a38)) + (pin "6" (uuid 8e152a0a-187e-40d2-8179-d0f95baaed8f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 72.39 270) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9cf01d15-ac2b-435c-8e0a-7d1532c6fb5c) + (property "Reference" "U1" (id 0) (at 212.09 72.39 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 212.09 74.93 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 209.55 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 053609f7-ec30-46bc-8c70-c39804a02094)) + (pin "2" (uuid 580d63de-e038-4624-a6ad-acb408302a9c)) + (pin "3" (uuid b747d098-2a24-4d13-acda-97fbac6ccbf2)) + (pin "4" (uuid 8587d849-89f6-4005-aba7-00d97426b93c)) + (pin "5" (uuid b3b88ca9-4617-42b4-889c-0da4d1754d97)) + (pin "6" (uuid 16ccb151-4861-4196-b576-aaca3164983e)) + (pin "7" (uuid 16b8cdfa-bab5-4fdc-9e79-c3546d969a92)) + (pin "8" (uuid 6ca3db6b-2dc5-4d23-92d1-ba24deb0e2e8)) + (pin "9" (uuid 51e245cd-3c98-4eed-a75e-531543514488)) + (pin "10" (uuid 9a4c86b5-a7f9-4c07-bab4-dee925daee39)) + (pin "11" (uuid 539cc9c2-21f8-4da5-8a3f-f86a68c42a4d)) + (pin "12" (uuid 0de07c4c-61c5-402c-9f9d-a20eb49a10b3)) + (pin "13" (uuid 0e9c0dac-042b-438a-b321-6f5ac01ea651)) + (pin "14" (uuid 2977d068-62ac-45d2-a744-47a47661d68d)) + (pin "15" (uuid 19b4ce45-2000-41cf-abf4-d771d7943789)) + (pin "16" (uuid 3a2d2aee-a7b5-4b47-9f8a-228adcf1c25c)) + (pin "17" (uuid 954d2680-d759-4a2b-b747-8c164806ef6f)) + (pin "18" (uuid b8cd6382-7fd2-4eb2-9531-4a270817991b)) + (pin "19" (uuid c8f06f5d-9061-4633-ab03-98cf9161605e)) + (pin "20" (uuid 568c79c2-f724-4533-b707-b73bdc7864eb)) + (pin "21" (uuid e37c860e-feed-4a0a-a180-5aec35e70aa1)) + (pin "22" (uuid 03299b24-d895-4879-9cf2-3d34c3731005)) + (pin "23" (uuid 5a6fa80a-4a45-4a98-b484-ba673d32259b)) + (pin "24" (uuid 18b4fcda-f782-4f88-b6c0-627e329cac6b)) + (pin "25" (uuid d2c5a113-4c34-4154-bb34-320efa4c77d6)) + (pin "26" (uuid fdd57a8e-6f3a-4758-87db-90815790a4a7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 127 72.39 270) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9f5951f6-baf5-44c0-87df-8d45fed843aa) + (property "Reference" "U1" (id 0) (at 129.54 72.39 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 129.54 74.93 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 127 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 127 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8f1ab4ff-75c0-4cd6-8734-33024f6af248)) + (pin "2" (uuid ae8ebe1a-2ff0-4350-8fa4-0ab77d8d50ba)) + (pin "3" (uuid 42973a7b-38bd-4daf-a530-05be117e6ad9)) + (pin "4" (uuid 2f77c348-5ffb-4cb7-b8de-611e9a4749e5)) + (pin "5" (uuid 493bb958-92bb-4c94-a26a-5a6a5a4b3e22)) + (pin "6" (uuid ad9e3caa-4227-40c4-a05c-f7f4f8e9ed0a)) + (pin "7" (uuid 15a9082e-c5c4-46ac-9a0f-bf083b6afe22)) + (pin "8" (uuid 6a88ea12-a1d7-48be-a1b8-fffa7deab901)) + (pin "9" (uuid b3fd1160-a625-465c-a2fe-ab5f2f5f6b01)) + (pin "10" (uuid 0092b445-192f-4791-9aff-6772b4667c13)) + (pin "11" (uuid d8bf7429-ffc3-4376-86b7-1c5a49cd5f56)) + (pin "12" (uuid a4279d84-fedb-4e40-8d7e-c2c896bdfc63)) + (pin "13" (uuid 70581f93-0c00-4298-8460-cc7679d3293d)) + (pin "14" (uuid 5d51d33d-41c8-45b9-8ef5-e7d079c1df07)) + (pin "15" (uuid 489b2870-2264-48bc-9c03-759339d3908c)) + (pin "16" (uuid 6412b8e1-02c6-43b5-9760-a5ea44afe711)) + (pin "17" (uuid 855fadbf-badb-4660-8718-2c9d7155ef7f)) + (pin "18" (uuid 0a98f322-9dc5-4136-abc3-ecb53f592441)) + (pin "19" (uuid 63ad0fa3-b8fa-4e9f-993d-4b6610c64e23)) + (pin "20" (uuid b7058503-f1dd-4ad7-8374-ab92c25f43c0)) + (pin "21" (uuid aeaa1e30-5e7d-43fe-91c4-7ec94c0eb315)) + (pin "22" (uuid f63602c6-c035-4d86-a764-0fb3caa6ba1b)) + (pin "23" (uuid 5f186c44-e640-4f03-9db9-ab0de50332db)) + (pin "24" (uuid f763b1d0-df5b-4492-b042-7e357100f296)) + (pin "25" (uuid a77aed2a-6cc3-4ed6-ad5c-f78235ea8f97)) + (pin "26" (uuid d7d0feb4-0157-4dd1-97be-150203f2db22)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 250.19 88.9 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a3ebb5ea-2325-4e9e-8684-4a711dcce742) + (property "Reference" "U19" (id 0) (at 252.73 87.63 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 252.73 91.44 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 251.46 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 251.46 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ed1b71d5-79ee-44b5-ac9c-fa60bf316847)) + (pin "2" (uuid 8a5320a7-c9a8-43fd-959d-466051abd6ee)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 209.55 121.92 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc9254be-acc5-4baa-8bf6-e3091ef0badd) + (property "Reference" "U17" (id 0) (at 212.09 120.65 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 212.09 124.46 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 210.82 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d447b5c-438b-4768-8491-bc0e735eb02d)) + (pin "2" (uuid 2665d4f2-aadf-4d5b-8497-8f1cce70cffd)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 209.55 105.41 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d1d62ab1-d8df-402a-a344-28c28958c221) + (property "Reference" "U16" (id 0) (at 212.09 104.14 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 212.09 107.95 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 210.82 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 35065c1f-77f8-4426-b7e0-a973632be42c)) + (pin "2" (uuid bc4535c0-304c-4d02-8fae-90ae75f423a4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 168.91 121.92 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2b8d928-a047-4a63-8036-384ceb700e96) + (property "Reference" "U13" (id 0) (at 171.45 120.65 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 171.45 124.46 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 170.18 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 705ed03f-796b-4d02-a91e-0d5acc5ad33e)) + (pin "2" (uuid 03ede2c9-9a2a-419f-9cd4-a91e24eb8565)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 67.31 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dc00d6e0-8172-4990-a0af-7a95bce97943) + (property "Reference" "U4" (id 0) (at 67.31 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 67.31 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 68.58 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 68.58 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 931c2c22-605b-4807-9f57-27c8beae6dd2)) + (pin "2" (uuid 49ea2ff9-e6c6-43ab-80e5-a935b9e7c173)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 271.78 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid de186ecd-0811-40ea-9111-20920474e80d) + (property "Reference" "U22" (id 0) (at 273.7994 128.27 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 273.7994 132.08 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 271.78 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 516be5b3-5ec4-4d17-afcf-bc4b15f6145a)) + (pin "2" (uuid 8694c82d-1870-475e-a425-897f9ca9a27e)) + (pin "3" (uuid 326a0c30-6d05-40ed-95dd-ab3381538376)) + (pin "4" (uuid d0e03d26-9dcd-40d1-b116-174b7e129df9)) + (pin "5" (uuid 1868e717-b27b-43a2-8e92-9cd9b0f923d5)) + (pin "6" (uuid 547ec579-2aea-4635-9a30-8b9ce62e9e6b)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 189.23 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid de985354-52d3-411d-94f1-09651ae60984) + (property "Reference" "U14" (id 0) (at 191.2494 128.27 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 191.2494 132.08 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 189.23 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid beb96edb-9e92-4b3c-9448-70b10ca549ff)) + (pin "2" (uuid 6b27f387-f5d6-482a-907b-73978fa87287)) + (pin "3" (uuid 711b450d-52bf-4801-897c-3e0b447691eb)) + (pin "4" (uuid 36f2acfd-24d8-4150-b83e-ddc82bf2b128)) + (pin "5" (uuid a5895c07-6de0-4966-aabe-de278d466662)) + (pin "6" (uuid e4ea68d2-2ea7-454e-8ce9-f3aa15aa24ff)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 168.91 88.9 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e6eb5793-3cd7-4f64-b18c-7e21ed577271) + (property "Reference" "U11" (id 0) (at 171.45 87.63 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 171.45 91.44 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 170.18 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 05b50593-9ef5-432d-8f49-0475485781e3)) + (pin "2" (uuid b564b389-e127-4778-84d9-550fac257a5c)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 148.59 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f084e41e-206e-443b-b7ab-ec9e602190dd) + (property "Reference" "U10" (id 0) (at 150.6094 128.27 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 150.6094 132.08 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 148.59 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 148.59 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eafcd5a7-9830-46b6-af0a-55cd16230294)) + (pin "2" (uuid 56c8c26b-b10f-4c66-9519-a612fcd1b66e)) + (pin "3" (uuid 7778135f-5e51-4353-a286-00306d2828d8)) + (pin "4" (uuid cf3687b4-bffc-4174-b6f0-f824ec1323c5)) + (pin "5" (uuid 0bd7070b-8ffe-4683-95cb-ab97fedbf688)) + (pin "6" (uuid 0d5dccab-dbb6-4ef7-bdb5-ccc4f01423dd)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 293.37 106.68 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f10d6dfd-8f38-4889-9598-a4b906d01cf2) + (property "Reference" "U24" (id 0) (at 295.91 105.41 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 295.91 109.22 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 294.64 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ac646c4-1a3b-4116-8fd9-19157027e4b4)) + (pin "2" (uuid 29fbb226-761d-4500-9c7d-0a2883751534)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 337.82 106.68 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f18d366a-822f-4b1e-ab69-9651a07f6742) + (property "Reference" "U28" (id 0) (at 340.36 105.41 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 340.36 109.22 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 339.09 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a2b7f580-7b05-4d43-ace2-4e61ee389f45)) + (pin "2" (uuid 868e0283-7810-42f3-b27c-731fcf8d2f8a)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/020598a3-c9da-432f-aa24-f076f949500c" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/3f5b54e6-fec9-4d03-9896-bf9f393b3a1e" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/9113eb45-048f-43bd-b63e-5edb709fd460" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/2fbaf4b9-3b0d-4821-a812-59ad6432bca0" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/18a18477-4311-40e5-8038-1e49fa253288" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/94a5f269-a2df-4f76-8fa2-a970acf28198" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/9cf01d15-ac2b-435c-8e0a-7d1532c6fb5c" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/99836109-0c7f-4590-a918-6ca42d929b1d" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/9f5951f6-baf5-44c0-87df-8d45fed843aa" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/8b87dbae-78f0-4f75-b34a-698ea603a5ca" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/15d65c17-9e32-4557-8db7-e6c1095f0cd0" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/dc00d6e0-8172-4990-a0af-7a95bce97943" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2daa34da-8536-475e-b180-b285ac7ab420" + (reference "U5") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/9c3dbd7a-9f18-41f0-a80b-ad0b9f0b2fd9" + (reference "U6") (unit 1) (value "d_dff") (footprint "") + ) + (path "/9170e2fc-478f-4a3b-a70a-b9949ef041bf" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/26b3a7c2-7d18-4f85-9b5f-33681a8d3b7d" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3eb6a207-c75b-46d1-bedf-89ecfd793b42" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f084e41e-206e-443b-b7ab-ec9e602190dd" + (reference "U10") (unit 1) (value "d_dff") (footprint "") + ) + (path "/e6eb5793-3cd7-4f64-b18c-7e21ed577271" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/008713dd-244c-4402-8fa2-d4181a229458" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d2b8d928-a047-4a63-8036-384ceb700e96" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/de985354-52d3-411d-94f1-09651ae60984" + (reference "U14") (unit 1) (value "d_dff") (footprint "") + ) + (path "/84997399-8f9c-4f01-b4e2-af7a8753dcaa" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d1d62ab1-d8df-402a-a344-28c28958c221" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bc9254be-acc5-4baa-8bf6-e3091ef0badd" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/335ac0ae-12d0-48de-b9dc-d909bd7a8647" + (reference "U18") (unit 1) (value "d_dff") (footprint "") + ) + (path "/a3ebb5ea-2325-4e9e-8684-4a711dcce742" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/50d3418f-1c52-4e8a-9bd2-f3d3c1fb7107" + (reference "U20") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7e105f36-a34a-442b-b062-b0563f54327b" + (reference "U21") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/de186ecd-0811-40ea-9111-20920474e80d" + (reference "U22") (unit 1) (value "d_dff") (footprint "") + ) + (path "/15c220c1-2cb3-40a0-9da2-67092ce70efc" + (reference "U23") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f10d6dfd-8f38-4889-9598-a4b906d01cf2" + (reference "U24") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/299eb4a2-c2ae-4224-a16e-7606d0a9e6d6" + (reference "U25") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/93874c57-2342-4792-b022-92b63a6ffaac" + (reference "U26") (unit 1) (value "d_dff") (footprint "") + ) + (path "/4b841f68-dbcb-442f-9231-c74b5cc34a75" + (reference "U27") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f18d366a-822f-4b1e-ab69-9651a07f6742" + (reference "U28") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/96eb17d0-eaa1-4039-9e61-2bf26cc48faa" + (reference "U29") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/666f092b-54ad-4503-a38d-88f84433e168" + (reference "U30") (unit 1) (value "d_dff") (footprint "") + ) + (path "/5c9a359e-e8dc-4226-83ae-343527f7b670" + (reference "U31") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2107e224-1f9a-4dce-a73d-b929e67da692" + (reference "U32") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/8f983226-8415-459b-a4f0-883c2c0bf47d" + (reference "U33") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.sub b/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.sub new file mode 100644 index 000000000..31d876639 --- /dev/null +++ b/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024.sub @@ -0,0 +1,134 @@ +* Subcircuit IC_M74HC4024 +.subckt IC_M74HC4024 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ +.title kicad schematic +* u27 net-_u27-pad1_ net-_u1-pad4_ d_inverter +* u28 net-_u28-pad1_ net-_u27-pad1_ d_inverter +* u29 net-_u26-pad1_ net-_u28-pad1_ d_inverter +* u33 net-_u30-pad1_ net-_u32-pad1_ d_inverter +* u32 net-_u32-pad1_ net-_u31-pad1_ d_inverter +* u30 net-_u30-pad1_ net-_u26-pad1_ unconnected-_u30-pad3_ net-_u10-pad4_ unconnected-_u30-pad5_ net-_u30-pad1_ d_dff +* u31 net-_u31-pad1_ net-_u1-pad3_ d_inverter +* u16 net-_u16-pad1_ net-_u15-pad1_ d_inverter +* u15 net-_u15-pad1_ net-_u1-pad7_ d_inverter +* u11 net-_u11-pad1_ net-_u1-pad8_ d_inverter +* u12 net-_u12-pad1_ net-_u11-pad1_ d_inverter +* u18 net-_u18-pad1_ net-_u14-pad1_ unconnected-_u18-pad3_ net-_u10-pad4_ unconnected-_u18-pad5_ net-_u18-pad1_ d_dff +* u17 net-_u14-pad1_ net-_u16-pad1_ d_inverter +* u13 net-_u10-pad1_ net-_u12-pad1_ d_inverter +* u6 net-_u10-pad2_ net-_u4-pad2_ unconnected-_u6-pad3_ net-_u10-pad4_ unconnected-_u6-pad5_ net-_u10-pad2_ d_dff +* u2 net-_u1-pad2_ net-_u2-pad2_ d_inverter +* u3 net-_u2-pad2_ net-_u3-pad2_ d_inverter +* u4 net-_u1-pad1_ net-_u4-pad2_ d_inverter +* u5 net-_u3-pad2_ net-_u10-pad4_ d_buffer +* u21 net-_u18-pad1_ net-_u20-pad1_ d_inverter +* u26 net-_u26-pad1_ net-_u22-pad1_ unconnected-_u26-pad3_ net-_u10-pad4_ unconnected-_u26-pad5_ net-_u26-pad1_ d_dff +* u19 net-_u19-pad1_ net-_u1-pad6_ d_inverter +* u20 net-_u20-pad1_ net-_u19-pad1_ d_inverter +* u22 net-_u22-pad1_ net-_u18-pad1_ unconnected-_u22-pad3_ net-_u10-pad4_ unconnected-_u22-pad5_ net-_u22-pad1_ d_dff +* u23 net-_u23-pad1_ net-_u1-pad5_ d_inverter +* u25 net-_u22-pad1_ net-_u24-pad1_ d_inverter +* u24 net-_u24-pad1_ net-_u23-pad1_ d_inverter +* u14 net-_u14-pad1_ net-_u10-pad1_ unconnected-_u14-pad3_ net-_u10-pad4_ unconnected-_u14-pad5_ net-_u14-pad1_ d_dff +* u7 net-_u7-pad1_ net-_u1-pad9_ d_inverter +* u8 net-_u8-pad1_ net-_u7-pad1_ d_inverter +* u9 net-_u10-pad2_ net-_u8-pad1_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ unconnected-_u10-pad5_ net-_u10-pad1_ d_dff +a1 net-_u27-pad1_ net-_u1-pad4_ u27 +a2 net-_u28-pad1_ net-_u27-pad1_ u28 +a3 net-_u26-pad1_ net-_u28-pad1_ u29 +a4 net-_u30-pad1_ net-_u32-pad1_ u33 +a5 net-_u32-pad1_ net-_u31-pad1_ u32 +a6 net-_u30-pad1_ net-_u26-pad1_ unconnected-_u30-pad3_ net-_u10-pad4_ unconnected-_u30-pad5_ net-_u30-pad1_ u30 +a7 net-_u31-pad1_ net-_u1-pad3_ u31 +a8 net-_u16-pad1_ net-_u15-pad1_ u16 +a9 net-_u15-pad1_ net-_u1-pad7_ u15 +a10 net-_u11-pad1_ net-_u1-pad8_ u11 +a11 net-_u12-pad1_ net-_u11-pad1_ u12 +a12 net-_u18-pad1_ net-_u14-pad1_ unconnected-_u18-pad3_ net-_u10-pad4_ unconnected-_u18-pad5_ net-_u18-pad1_ u18 +a13 net-_u14-pad1_ net-_u16-pad1_ u17 +a14 net-_u10-pad1_ net-_u12-pad1_ u13 +a15 net-_u10-pad2_ net-_u4-pad2_ unconnected-_u6-pad3_ net-_u10-pad4_ unconnected-_u6-pad5_ net-_u10-pad2_ u6 +a16 net-_u1-pad2_ net-_u2-pad2_ u2 +a17 net-_u2-pad2_ net-_u3-pad2_ u3 +a18 net-_u1-pad1_ net-_u4-pad2_ u4 +a19 net-_u3-pad2_ net-_u10-pad4_ u5 +a20 net-_u18-pad1_ net-_u20-pad1_ u21 +a21 net-_u26-pad1_ net-_u22-pad1_ unconnected-_u26-pad3_ net-_u10-pad4_ unconnected-_u26-pad5_ net-_u26-pad1_ u26 +a22 net-_u19-pad1_ net-_u1-pad6_ u19 +a23 net-_u20-pad1_ net-_u19-pad1_ u20 +a24 net-_u22-pad1_ net-_u18-pad1_ unconnected-_u22-pad3_ net-_u10-pad4_ unconnected-_u22-pad5_ net-_u22-pad1_ u22 +a25 net-_u23-pad1_ net-_u1-pad5_ u23 +a26 net-_u22-pad1_ net-_u24-pad1_ u25 +a27 net-_u24-pad1_ net-_u23-pad1_ u24 +a28 net-_u14-pad1_ net-_u10-pad1_ unconnected-_u14-pad3_ net-_u10-pad4_ unconnected-_u14-pad5_ net-_u14-pad1_ u14 +a29 net-_u7-pad1_ net-_u1-pad9_ u7 +a30 net-_u8-pad1_ net-_u7-pad1_ u8 +a31 net-_u10-pad2_ net-_u8-pad1_ u9 +a32 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ unconnected-_u10-pad5_ net-_u10-pad1_ u10 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u27 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u28 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u29 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u33 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u32 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u30 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u18 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u6 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u26 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u22 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u14 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u10 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Control Statements + +.ends IC_M74HC4024 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024_Previous_Values.xml b/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024_Previous_Values.xml new file mode 100644 index 000000000..5607735d6 --- /dev/null +++ b/library/SubcircuitLibrary/IC_M74HC4024/IC_M74HC4024_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_inverterd_inverterd_inverterd_inverterd_inverterd_dffd_inverterd_inverterd_inverterd_inverterd_inverterd_dffd_inverterd_inverterd_dffd_inverterd_inverterd_inverterd_bufferd_inverterd_dffd_inverterd_inverterd_dffd_inverterd_inverterd_inverterd_dffd_inverterd_inverterd_inverterd_dff \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_M74HC4024/README_IC_M74HC4024.md b/library/SubcircuitLibrary/IC_M74HC4024/README_IC_M74HC4024.md new file mode 100644 index 000000000..3b738c635 --- /dev/null +++ b/library/SubcircuitLibrary/IC_M74HC4024/README_IC_M74HC4024.md @@ -0,0 +1,27 @@ +# IC_M74HC4024 7-Bit Asynchronous Binary Counter + +IC_M74HC4024 is a 14-pin IC. It is a 7-bit asynchronous binary ripple counter implemented using high-speed CMOS technology. Each cascaded stage divides the input clock frequency by two, providing binary frequency division outputs Q1 through Q7. + +## Usage/Examples + +- Frequency dividers +- Digital timers +- Event counting systems +- Clock generation circuits +- Embedded controllers +- Industrial automation + +## Documentation + +To know the details of IC_M74HC4024 please go through the documentation: [M74HC4024 Datasheet](https://www.alldatasheet.com/datasheet-pdf/pdf/15784/STMICROELECTRONICS/M74HC4024.html) + +## Comments/Notes + +Please note this is a CMOS ripple counter IC. The subcircuit uses cascaded d_jkff elements triggered on the falling edge to implement the seven-stage binary count. A synchronous RESET input clears all outputs to LOW when asserted HIGH. + +## Contributor + +Name: Santhosh C +Email: santhoshc.vlsi2024@citchennai.net +Year: 2026 +Position: FOSSEE eSim Intern 2026 diff --git a/library/SubcircuitLibrary/IC_M74HC4024/analysis b/library/SubcircuitLibrary/IC_M74HC4024/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_M74HC4024/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.cir b/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.cir new file mode 100644 index 000000000..564968afc --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.cir @@ -0,0 +1,36 @@ +.title KiCad schematic +U27 Net-_U19-Pad3_ Net-_U20-Pad3_ Net-_U27-Pad3_ d_or +U33 Net-_U27-Pad3_ Net-_U29-Pad2_ unconnected-_U33-Pad3_ Net-_U29-Pad4_ Net-_U1-Pad18_ unconnected-_U33-Pad6_ d_dlatch +U32 Net-_U26-Pad3_ Net-_U29-Pad2_ unconnected-_U32-Pad3_ Net-_U29-Pad4_ Net-_U1-Pad19_ unconnected-_U32-Pad6_ d_dlatch +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ Net-_U1-Pad19_ Net-_U1-Pad20_ Net-_U1-Pad21_ Net-_U1-Pad22_ PORT +U26 Net-_U17-Pad3_ Net-_U18-Pad3_ Net-_U26-Pad3_ d_or +U18 Net-_U1-Pad8_ Net-_U10-Pad1_ Net-_U18-Pad3_ d_and +U20 Net-_U1-Pad10_ Net-_U10-Pad1_ Net-_U20-Pad3_ d_and +U19 Net-_U1-Pad9_ Net-_U19-Pad2_ Net-_U19-Pad3_ d_and +U8 Net-_U10-Pad1_ Net-_U17-Pad2_ d_inverter +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ d_inverter +U4 Net-_U1-Pad14_ Net-_U29-Pad4_ d_buffer +U3 Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U29-Pad2_ d_or +U2 Net-_U1-Pad13_ Net-_U10-Pad1_ d_buffer +U21 Net-_U1-Pad11_ Net-_U10-Pad2_ Net-_U21-Pad3_ d_and +U22 Net-_U1-Pad12_ Net-_U10-Pad1_ Net-_U22-Pad3_ d_and +U9 Net-_U10-Pad1_ Net-_U19-Pad2_ d_inverter +U28 Net-_U21-Pad3_ Net-_U22-Pad3_ Net-_U28-Pad3_ d_or +U34 Net-_U28-Pad3_ Net-_U29-Pad2_ unconnected-_U34-Pad3_ Net-_U29-Pad4_ Net-_U1-Pad17_ unconnected-_U34-Pad6_ d_dlatch +U16 Net-_U1-Pad6_ Net-_U10-Pad1_ Net-_U16-Pad3_ d_and +U15 Net-_U1-Pad5_ Net-_U15-Pad2_ Net-_U15-Pad3_ d_and +U17 Net-_U1-Pad7_ Net-_U17-Pad2_ Net-_U17-Pad3_ d_and +U7 Net-_U10-Pad1_ Net-_U15-Pad2_ d_inverter +U29 Net-_U23-Pad3_ Net-_U29-Pad2_ unconnected-_U29-Pad3_ Net-_U29-Pad4_ Net-_U1-Pad22_ unconnected-_U29-Pad6_ d_dlatch +U30 Net-_U24-Pad3_ Net-_U29-Pad2_ unconnected-_U30-Pad3_ Net-_U29-Pad4_ Net-_U1-Pad21_ unconnected-_U30-Pad6_ d_dlatch +U31 Net-_U25-Pad3_ Net-_U29-Pad2_ unconnected-_U31-Pad3_ Net-_U29-Pad4_ Net-_U1-Pad20_ unconnected-_U31-Pad6_ d_dlatch +U25 Net-_U15-Pad3_ Net-_U16-Pad3_ Net-_U25-Pad3_ d_or +U24 Net-_U13-Pad3_ Net-_U14-Pad3_ Net-_U24-Pad3_ d_or +U23 Net-_U11-Pad3_ Net-_U12-Pad3_ Net-_U23-Pad3_ d_or +U6 Net-_U10-Pad1_ Net-_U13-Pad2_ d_inverter +U5 Net-_U10-Pad1_ Net-_U11-Pad2_ d_inverter +U12 Net-_U1-Pad2_ Net-_U10-Pad1_ Net-_U12-Pad3_ d_and +U11 Net-_U1-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_and +U13 Net-_U1-Pad3_ Net-_U13-Pad2_ Net-_U13-Pad3_ d_and +U14 Net-_U1-Pad4_ Net-_U10-Pad1_ Net-_U14-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.cir.out b/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.cir.out new file mode 100644 index 000000000..ae373a369 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.cir.out @@ -0,0 +1,144 @@ +.title kicad schematic + +* u27 net-_u19-pad3_ net-_u20-pad3_ net-_u27-pad3_ d_or +* u33 net-_u27-pad3_ net-_u29-pad2_ unconnected-_u33-pad3_ net-_u29-pad4_ net-_u1-pad18_ unconnected-_u33-pad6_ d_dlatch +* u32 net-_u26-pad3_ net-_u29-pad2_ unconnected-_u32-pad3_ net-_u29-pad4_ net-_u1-pad19_ unconnected-_u32-pad6_ d_dlatch +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ net-_u1-pad20_ net-_u1-pad21_ net-_u1-pad22_ port +* u26 net-_u17-pad3_ net-_u18-pad3_ net-_u26-pad3_ d_or +* u18 net-_u1-pad8_ net-_u10-pad1_ net-_u18-pad3_ d_and +* u20 net-_u1-pad10_ net-_u10-pad1_ net-_u20-pad3_ d_and +* u19 net-_u1-pad9_ net-_u19-pad2_ net-_u19-pad3_ d_and +* u8 net-_u10-pad1_ net-_u17-pad2_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u4 net-_u1-pad14_ net-_u29-pad4_ d_buffer +* u3 net-_u1-pad15_ net-_u1-pad16_ net-_u29-pad2_ d_or +* u2 net-_u1-pad13_ net-_u10-pad1_ d_buffer +* u21 net-_u1-pad11_ net-_u10-pad2_ net-_u21-pad3_ d_and +* u22 net-_u1-pad12_ net-_u10-pad1_ net-_u22-pad3_ d_and +* u9 net-_u10-pad1_ net-_u19-pad2_ d_inverter +* u28 net-_u21-pad3_ net-_u22-pad3_ net-_u28-pad3_ d_or +* u34 net-_u28-pad3_ net-_u29-pad2_ unconnected-_u34-pad3_ net-_u29-pad4_ net-_u1-pad17_ unconnected-_u34-pad6_ d_dlatch +* u16 net-_u1-pad6_ net-_u10-pad1_ net-_u16-pad3_ d_and +* u15 net-_u1-pad5_ net-_u15-pad2_ net-_u15-pad3_ d_and +* u17 net-_u1-pad7_ net-_u17-pad2_ net-_u17-pad3_ d_and +* u7 net-_u10-pad1_ net-_u15-pad2_ d_inverter +* u29 net-_u23-pad3_ net-_u29-pad2_ unconnected-_u29-pad3_ net-_u29-pad4_ net-_u1-pad22_ unconnected-_u29-pad6_ d_dlatch +* u30 net-_u24-pad3_ net-_u29-pad2_ unconnected-_u30-pad3_ net-_u29-pad4_ net-_u1-pad21_ unconnected-_u30-pad6_ d_dlatch +* u31 net-_u25-pad3_ net-_u29-pad2_ unconnected-_u31-pad3_ net-_u29-pad4_ net-_u1-pad20_ unconnected-_u31-pad6_ d_dlatch +* u25 net-_u15-pad3_ net-_u16-pad3_ net-_u25-pad3_ d_or +* u24 net-_u13-pad3_ net-_u14-pad3_ net-_u24-pad3_ d_or +* u23 net-_u11-pad3_ net-_u12-pad3_ net-_u23-pad3_ d_or +* u6 net-_u10-pad1_ net-_u13-pad2_ d_inverter +* u5 net-_u10-pad1_ net-_u11-pad2_ d_inverter +* u12 net-_u1-pad2_ net-_u10-pad1_ net-_u12-pad3_ d_and +* u11 net-_u1-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_and +* u13 net-_u1-pad3_ net-_u13-pad2_ net-_u13-pad3_ d_and +* u14 net-_u1-pad4_ net-_u10-pad1_ net-_u14-pad3_ d_and +a1 [net-_u19-pad3_ net-_u20-pad3_ ] net-_u27-pad3_ u27 +a2 net-_u27-pad3_ net-_u29-pad2_ unconnected-_u33-pad3_ net-_u29-pad4_ net-_u1-pad18_ unconnected-_u33-pad6_ u33 +a3 net-_u26-pad3_ net-_u29-pad2_ unconnected-_u32-pad3_ net-_u29-pad4_ net-_u1-pad19_ unconnected-_u32-pad6_ u32 +a4 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u26-pad3_ u26 +a5 [net-_u1-pad8_ net-_u10-pad1_ ] net-_u18-pad3_ u18 +a6 [net-_u1-pad10_ net-_u10-pad1_ ] net-_u20-pad3_ u20 +a7 [net-_u1-pad9_ net-_u19-pad2_ ] net-_u19-pad3_ u19 +a8 net-_u10-pad1_ net-_u17-pad2_ u8 +a9 net-_u10-pad1_ net-_u10-pad2_ u10 +a10 net-_u1-pad14_ net-_u29-pad4_ u4 +a11 [net-_u1-pad15_ net-_u1-pad16_ ] net-_u29-pad2_ u3 +a12 net-_u1-pad13_ net-_u10-pad1_ u2 +a13 [net-_u1-pad11_ net-_u10-pad2_ ] net-_u21-pad3_ u21 +a14 [net-_u1-pad12_ net-_u10-pad1_ ] net-_u22-pad3_ u22 +a15 net-_u10-pad1_ net-_u19-pad2_ u9 +a16 [net-_u21-pad3_ net-_u22-pad3_ ] net-_u28-pad3_ u28 +a17 net-_u28-pad3_ net-_u29-pad2_ unconnected-_u34-pad3_ net-_u29-pad4_ net-_u1-pad17_ unconnected-_u34-pad6_ u34 +a18 [net-_u1-pad6_ net-_u10-pad1_ ] net-_u16-pad3_ u16 +a19 [net-_u1-pad5_ net-_u15-pad2_ ] net-_u15-pad3_ u15 +a20 [net-_u1-pad7_ net-_u17-pad2_ ] net-_u17-pad3_ u17 +a21 net-_u10-pad1_ net-_u15-pad2_ u7 +a22 net-_u23-pad3_ net-_u29-pad2_ unconnected-_u29-pad3_ net-_u29-pad4_ net-_u1-pad22_ unconnected-_u29-pad6_ u29 +a23 net-_u24-pad3_ net-_u29-pad2_ unconnected-_u30-pad3_ net-_u29-pad4_ net-_u1-pad21_ unconnected-_u30-pad6_ u30 +a24 net-_u25-pad3_ net-_u29-pad2_ unconnected-_u31-pad3_ net-_u29-pad4_ net-_u1-pad20_ unconnected-_u31-pad6_ u31 +a25 [net-_u15-pad3_ net-_u16-pad3_ ] net-_u25-pad3_ u25 +a26 [net-_u13-pad3_ net-_u14-pad3_ ] net-_u24-pad3_ u24 +a27 [net-_u11-pad3_ net-_u12-pad3_ ] net-_u23-pad3_ u23 +a28 net-_u10-pad1_ net-_u13-pad2_ u6 +a29 net-_u10-pad1_ net-_u11-pad2_ u5 +a30 [net-_u1-pad2_ net-_u10-pad1_ ] net-_u12-pad3_ u12 +a31 [net-_u1-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a32 [net-_u1-pad3_ net-_u13-pad2_ ] net-_u13-pad3_ u13 +a33 [net-_u1-pad4_ net-_u10-pad1_ ] net-_u14-pad3_ u14 +* Schematic Name: d_or, Ngspice Name: d_or +.model u27 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u33 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u32 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u26 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u2 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u28 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u34 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u16 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u29 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u30 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u31 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u25 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u24 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.kicad_sch b/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.kicad_sch new file mode 100644 index 000000000..271c5aa48 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.kicad_sch @@ -0,0 +1,2839 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 152de191-ec6e-4131-b547-2d60ee461ac8) + + (paper "A0") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dlatch" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dlatch" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dlatch_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dlatch_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -7.62 0) (length 5.08) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 579.12 219.71) (diameter 0) (color 0 0 0 0) + (uuid 0422d9c3-653f-4068-b977-4777f83c02d2) + ) + (junction (at 669.29 261.62) (diameter 0) (color 0 0 0 0) + (uuid 18a1cf33-9889-4000-9b46-6335816da9f1) + ) + (junction (at 579.12 269.24) (diameter 0) (color 0 0 0 0) + (uuid 1fe57dff-c54c-4924-a63a-b6aff5c4e923) + ) + (junction (at 579.12 121.92) (diameter 0) (color 0 0 0 0) + (uuid 2420ba1d-b074-44e3-8eba-5d7175906c24) + ) + (junction (at 579.12 318.77) (diameter 0) (color 0 0 0 0) + (uuid 25e6e3eb-3430-4979-a668-22312ef7d966) + ) + (junction (at 549.91 269.24) (diameter 0) (color 0 0 0 0) + (uuid 29760017-0167-4bf1-92c0-6dbd8f175e3e) + ) + (junction (at 579.12 72.39) (diameter 0) (color 0 0 0 0) + (uuid 34e439cf-bb6b-433f-b65a-4d401c3a16dd) + ) + (junction (at 549.91 219.71) (diameter 0) (color 0 0 0 0) + (uuid 43a69482-f349-460e-a64e-e2cac2cfee13) + ) + (junction (at 549.91 170.18) (diameter 0) (color 0 0 0 0) + (uuid 5761e9a3-a271-4dba-ad75-f118868edb18) + ) + (junction (at 549.91 121.92) (diameter 0) (color 0 0 0 0) + (uuid 59b9af4c-9aeb-48a4-914a-cf4da4f7224f) + ) + (junction (at 669.29 114.3) (diameter 0) (color 0 0 0 0) + (uuid 656e7c7a-18b8-4683-94a3-315170b90351) + ) + (junction (at 674.37 121.92) (diameter 0) (color 0 0 0 0) + (uuid 90d32a00-62ab-434b-a0ee-daa91a5798c3) + ) + (junction (at 549.91 318.77) (diameter 0) (color 0 0 0 0) + (uuid 9f852bda-db65-42a2-8328-a13566c35763) + ) + (junction (at 674.37 219.71) (diameter 0) (color 0 0 0 0) + (uuid ab469a17-44b1-4812-b5ee-f640bc256751) + ) + (junction (at 579.12 170.18) (diameter 0) (color 0 0 0 0) + (uuid bb9d2135-c0cb-466f-a076-643efef9b845) + ) + (junction (at 674.37 170.18) (diameter 0) (color 0 0 0 0) + (uuid be9352eb-e992-471e-81fa-c849095eaf5c) + ) + (junction (at 669.29 311.15) (diameter 0) (color 0 0 0 0) + (uuid cca00309-6802-4a38-b728-5caaa6103cc1) + ) + (junction (at 674.37 318.77) (diameter 0) (color 0 0 0 0) + (uuid e605dd67-fdb7-4cc3-abee-d7c46aa7554b) + ) + (junction (at 674.37 269.24) (diameter 0) (color 0 0 0 0) + (uuid e93f8a75-2d24-4602-8223-28c42f1d0410) + ) + (junction (at 669.29 212.09) (diameter 0) (color 0 0 0 0) + (uuid eebb1ea9-b6ab-40e6-9689-5b9d1683fa7d) + ) + (junction (at 669.29 162.56) (diameter 0) (color 0 0 0 0) + (uuid f23e2028-a33c-45fb-87a4-b5d29876e5b1) + ) + + (no_connect (at 703.58 261.62) (uuid 044d943a-ccd8-415e-ab50-67abdec044e8)) + (no_connect (at 703.58 162.56) (uuid 187229ed-4355-4c43-ac05-29824df7e4d6)) + (no_connect (at 689.61 187.96) (uuid 1d920ac8-b11d-43e4-beb0-fd8746f48477)) + (no_connect (at 703.58 311.15) (uuid 2776f0f3-df07-4f33-a1c4-354c241a2684)) + (no_connect (at 689.61 138.43) (uuid 27a5e71b-c0e2-46bb-b235-745c3310b77a)) + (no_connect (at 703.58 212.09) (uuid 5b5f9093-ac37-49d6-8936-9aa3ac770bd2)) + (no_connect (at 689.61 237.49) (uuid 6f8a6a2b-d373-43eb-a826-118563b44668)) + (no_connect (at 689.61 90.17) (uuid 93e9f242-3ebd-4ff9-8528-66e8de33b9c2)) + (no_connect (at 703.58 114.3) (uuid ce67f13f-e924-436b-9563-21e7d94939a9)) + (no_connect (at 703.58 64.77) (uuid d7a1d058-3296-406b-84a9-1a18b75f565d)) + (no_connect (at 689.61 287.02) (uuid dbc471a2-07d7-41e5-a344-2bb8112a917b)) + (no_connect (at 689.61 40.64) (uuid e00ca2a7-cda7-41bb-b473-0e6cb3125d29)) + + (wire (pts (xy 636.27 187.96) (xy 636.27 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01eb899f-416a-4b99-8271-2610416abebd) + ) + (wire (pts (xy 496.57 382.27) (xy 515.62 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02132ead-e750-4c02-870a-45f8626520d3) + ) + (wire (pts (xy 636.27 105.41) (xy 636.27 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 022ecf59-77fa-445d-971d-08793107562a) + ) + (wire (pts (xy 599.44 121.92) (xy 605.79 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0276d551-82ed-43cc-87fa-49a95703e033) + ) + (wire (pts (xy 549.91 219.71) (xy 579.12 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03e5f15c-7399-4f4f-8b6f-1c0ca3aeda08) + ) + (wire (pts (xy 579.12 57.15) (xy 610.87 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05a415ce-5390-473a-9322-33c04c796562) + ) + (wire (pts (xy 636.27 55.88) (xy 636.27 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08317b0a-e7d1-4d2f-a27b-24466b5ee624) + ) + (wire (pts (xy 662.94 48.26) (xy 675.64 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 089ea7db-0818-452c-9404-7c23fa68b757) + ) + (wire (pts (xy 579.12 121.92) (xy 579.12 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08c2d3c2-7599-49ab-8eae-eab12ffb33d5) + ) + (wire (pts (xy 579.12 254) (xy 610.87 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08eb1b1b-593e-4e04-9e4d-fb3aca6dac3e) + ) + (wire (pts (xy 633.73 153.67) (xy 636.27 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09559a01-4831-47a7-924e-e9d7a6165f67) + ) + (wire (pts (xy 496.57 364.49) (xy 516.89 364.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bdd4f10-e9b1-4017-ae31-2a5393b80354) + ) + (wire (pts (xy 633.73 252.73) (xy 636.27 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0dba5386-b98f-4f19-b194-a8825498f27f) + ) + (wire (pts (xy 610.87 104.14) (xy 500.38 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0eedb44d-a22a-451f-a510-61d1df7fe07d) + ) + (wire (pts (xy 584.2 170.18) (xy 579.12 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1062633d-6185-41c5-86a7-f84742e5431d) + ) + (wire (pts (xy 674.37 318.77) (xy 689.61 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 123e4921-57b8-4b71-a5b9-ee77f115f790) + ) + (wire (pts (xy 636.27 46.99) (xy 640.08 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 128005d2-06da-4f2a-97d6-c4d1135902d3) + ) + (wire (pts (xy 636.27 246.38) (xy 640.08 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12b97934-cb5b-4cf2-9083-395fcfc62a66) + ) + (wire (pts (xy 605.79 139.7) (xy 610.87 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13a2a47b-d57b-4207-8470-3c7585914064) + ) + (wire (pts (xy 490.22 300.99) (xy 610.87 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15b2ed27-563f-4008-a94c-57afafe4078b) + ) + (wire (pts (xy 495.3 54.61) (xy 610.87 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 197906c0-b449-4448-8fdd-6ed915039291) + ) + (wire (pts (xy 502.92 88.9) (xy 610.87 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a695373-c422-41cd-b0a8-d735e8cb0173) + ) + (wire (pts (xy 501.65 152.4) (xy 610.87 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f4f5926-0850-478f-a7bd-d80e0f208c44) + ) + (wire (pts (xy 605.79 41.91) (xy 610.87 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fd3748b-f34d-4767-92f9-de54696a0ce9) + ) + (wire (pts (xy 674.37 170.18) (xy 674.37 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24ac34f4-be90-4863-8deb-8c1a3c00644a) + ) + (wire (pts (xy 662.94 97.79) (xy 675.64 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 252f8282-5803-4525-beb2-203b50c391c1) + ) + (wire (pts (xy 636.27 293.37) (xy 640.08 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a8e92b3-f8cc-4e57-b13b-b9693f349b0b) + ) + (wire (pts (xy 636.27 203.2) (xy 636.27 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b90c718-1102-436b-a6c6-c50f92b8e56e) + ) + (wire (pts (xy 579.12 170.18) (xy 579.12 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 378a6c85-d2f0-4498-870a-23f9a3bf7995) + ) + (wire (pts (xy 495.3 39.37) (xy 610.87 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37d25c3f-62f5-4fc3-a04c-dabedee01091) + ) + (wire (pts (xy 605.79 238.76) (xy 605.79 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38543b70-9a4f-4fde-8194-ebece1772418) + ) + (wire (pts (xy 636.27 153.67) (xy 636.27 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3861759b-6a24-4db7-8ed2-509f0e5d72f4) + ) + (wire (pts (xy 674.37 121.92) (xy 689.61 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38971dbb-5cb8-4b51-8631-d55a0354ef45) + ) + (wire (pts (xy 499.11 186.69) (xy 610.87 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 390f1d45-3ca4-43b0-9f3a-a8d3d807f8dc) + ) + (wire (pts (xy 502.92 137.16) (xy 610.87 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d1049ba-b45b-467b-ae08-387709a56cb6) + ) + (wire (pts (xy 549.91 72.39) (xy 549.91 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4150a8e4-7823-4c2a-b331-0ece1b306c02) + ) + (wire (pts (xy 636.27 237.49) (xy 636.27 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a0dff5a-0cfe-48e8-85d2-e673adc0a9e6) + ) + (wire (pts (xy 549.91 318.77) (xy 549.91 346.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4da8184a-7a19-425e-8d79-ca86277140e0) + ) + (wire (pts (xy 633.73 90.17) (xy 636.27 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52f7fe8d-4bcb-486a-9de1-dcf45c02cc96) + ) + (wire (pts (xy 544.83 346.71) (xy 549.91 346.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5650b2a2-21a4-4e41-8b2c-53dc39790a7c) + ) + (wire (pts (xy 549.91 72.39) (xy 579.12 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 581c1bf3-2f62-4a66-8cb1-60a133e090a4) + ) + (wire (pts (xy 703.58 146.05) (xy 745.49 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58f65eba-30d0-409d-af00-882d90d05f2e) + ) + (wire (pts (xy 703.58 245.11) (xy 741.68 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59533235-fcaf-4b89-8fa5-e9fbc6ca1f60) + ) + (wire (pts (xy 579.12 154.94) (xy 610.87 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c384d98-7037-490e-94b7-d398ae0d1a98) + ) + (wire (pts (xy 584.2 269.24) (xy 579.12 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d40bb8b-8684-4703-9b21-aa4ba1c353f7) + ) + (wire (pts (xy 662.94 294.64) (xy 675.64 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d98518b-af0e-4213-b844-06aa45e346d0) + ) + (wire (pts (xy 544.83 382.27) (xy 674.37 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 607788ea-0ca2-43ae-9910-f59ddac2b4eb) + ) + (wire (pts (xy 495.3 251.46) (xy 610.87 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 634e2109-7fe1-4e1f-b917-d65cd39ec973) + ) + (wire (pts (xy 584.2 318.77) (xy 579.12 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64e7dbb0-afd5-478c-af30-37ccdda9928a) + ) + (wire (pts (xy 605.79 189.23) (xy 605.79 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65dc1870-60f5-4685-8329-ad7d9d80f985) + ) + (wire (pts (xy 636.27 194.31) (xy 640.08 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69c1deaa-c356-4b51-b803-772611ee4714) + ) + (wire (pts (xy 703.58 97.79) (xy 742.95 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a6e3217-9155-4dbb-bf1d-8cae8dcbdf2c) + ) + (wire (pts (xy 662.94 146.05) (xy 675.64 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ca665ea-9425-4275-8a04-843d54d99c47) + ) + (wire (pts (xy 549.91 269.24) (xy 579.12 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f157d74-2f80-4d2b-938d-9de6a9f7cc0f) + ) + (wire (pts (xy 605.79 91.44) (xy 605.79 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f6d227c-3b14-4eb8-a30e-ec6e774e018c) + ) + (wire (pts (xy 669.29 363.22) (xy 669.29 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72a27db8-9e7b-4e8c-b9da-0ac2d9e60944) + ) + (wire (pts (xy 584.2 72.39) (xy 579.12 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77ddf9a0-7933-4e75-b715-e8e9ab9d9cb3) + ) + (wire (pts (xy 579.12 269.24) (xy 579.12 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b0a05da-ca4a-4b78-9f70-159ef12f6d08) + ) + (wire (pts (xy 669.29 114.3) (xy 675.64 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e2fb464-08c2-4783-a33f-3b944d58e82d) + ) + (wire (pts (xy 579.12 219.71) (xy 579.12 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 812f2b72-ca58-4f8c-8088-612601cd1811) + ) + (wire (pts (xy 669.29 212.09) (xy 669.29 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81e75075-6ecc-47fb-a896-98cf921cfd36) + ) + (wire (pts (xy 496.57 361.95) (xy 516.89 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8330a8d4-4392-49dc-bad9-2dd708f37bb4) + ) + (wire (pts (xy 633.73 203.2) (xy 636.27 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 848545c0-7ef7-4a09-b00b-a2d110075591) + ) + (wire (pts (xy 669.29 311.15) (xy 669.29 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8932fc50-fea7-45e9-98b0-407bc1c925e0) + ) + (wire (pts (xy 549.91 269.24) (xy 549.91 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 898a31aa-5628-4667-9869-df043c9752af) + ) + (wire (pts (xy 669.29 261.62) (xy 675.64 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b0b80dd-faee-4a39-b0b6-40c089c69ae3) + ) + (wire (pts (xy 636.27 49.53) (xy 640.08 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f2998dd-0ab4-42e5-9e82-00c4b06f17b8) + ) + (wire (pts (xy 703.58 48.26) (xy 736.6 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92648847-fc37-4fb1-a4db-16f2697a4457) + ) + (wire (pts (xy 539.75 363.22) (xy 669.29 363.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9501acf2-a249-488b-9339-106e57f4246c) + ) + (wire (pts (xy 636.27 243.84) (xy 640.08 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 953fe22c-8697-44a9-828a-46488ae0fca3) + ) + (wire (pts (xy 579.12 72.39) (xy 579.12 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96103e50-95f5-4724-932a-70c5fd377d6d) + ) + (wire (pts (xy 584.2 121.92) (xy 579.12 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 963f63a9-2b1f-480f-bf85-ba7ca55f0be8) + ) + (wire (pts (xy 599.44 170.18) (xy 605.79 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9abba028-08e2-4a31-8fba-18ddea0adb60) + ) + (wire (pts (xy 549.91 170.18) (xy 549.91 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cbb63f2-189a-4f8c-afc3-42d4ded800e6) + ) + (wire (pts (xy 636.27 295.91) (xy 640.08 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e0b042c-c8f9-4d91-bcd0-f7945a650ff2) + ) + (wire (pts (xy 605.79 41.91) (xy 605.79 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f032823-9556-4230-90aa-c166f184bb63) + ) + (wire (pts (xy 549.91 121.92) (xy 579.12 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f60712c-6537-41d8-bf52-016a540405b0) + ) + (wire (pts (xy 636.27 147.32) (xy 640.08 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a17d1bec-53e3-48d8-a242-e5bb1d2bb5c0) + ) + (wire (pts (xy 636.27 90.17) (xy 636.27 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a51f6843-b749-42e1-addd-3d8d2397fe45) + ) + (wire (pts (xy 636.27 144.78) (xy 640.08 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a68e43f9-e8ab-4b93-a92b-e6080572e8be) + ) + (wire (pts (xy 633.73 138.43) (xy 636.27 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7141c03-0b96-4b59-9141-3626fa58222d) + ) + (wire (pts (xy 703.58 294.64) (xy 740.41 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9147040-553f-4105-a9c5-5658ab3f3672) + ) + (wire (pts (xy 610.87 201.93) (xy 499.11 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9db434c-7420-44bb-9675-20a4454d22f6) + ) + (wire (pts (xy 669.29 261.62) (xy 669.29 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abb0dfd7-84f8-4af0-b476-4accd7b2de11) + ) + (wire (pts (xy 669.29 162.56) (xy 675.64 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abdc6c81-16a6-4908-8511-549078d13c45) + ) + (wire (pts (xy 703.58 195.58) (xy 742.95 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b316bb7c-3d88-4b25-ac43-91771fd4335c) + ) + (wire (pts (xy 633.73 187.96) (xy 636.27 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b43c2d92-310e-4c0a-a475-c259e004595b) + ) + (wire (pts (xy 579.12 204.47) (xy 610.87 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b64622c6-c298-42df-9adf-d793f61c178e) + ) + (wire (pts (xy 636.27 302.26) (xy 636.27 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b64f60a6-2b32-469e-b6e7-e4e16b631e35) + ) + (wire (pts (xy 636.27 40.64) (xy 636.27 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7fa8e2a-a4ac-46ec-af4f-132e5660397a) + ) + (wire (pts (xy 636.27 196.85) (xy 640.08 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid babb84a6-0da8-4a15-b2bb-c9ff0aa4ba79) + ) + (wire (pts (xy 636.27 287.02) (xy 636.27 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbf223c0-852e-410a-b6e9-05180f71d2b3) + ) + (wire (pts (xy 605.79 288.29) (xy 605.79 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc5cf8a9-f059-4406-9f91-83b10e1ed7e9) + ) + (wire (pts (xy 549.91 121.92) (xy 549.91 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bcf35180-0867-4a81-b364-e59923fe3d6c) + ) + (wire (pts (xy 669.29 212.09) (xy 675.64 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfbeb580-eb0b-4b92-81b0-fe1d742437d5) + ) + (wire (pts (xy 495.3 236.22) (xy 610.87 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0ee1d84-d64c-4f7f-97f5-cb38ec9919ba) + ) + (wire (pts (xy 669.29 311.15) (xy 675.64 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca83a4cf-80e0-4076-b359-676395bf6f74) + ) + (wire (pts (xy 662.94 195.58) (xy 675.64 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb709dac-f07b-48de-9770-f53da4a766cd) + ) + (wire (pts (xy 669.29 114.3) (xy 669.29 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc9fec45-cfbe-45a0-83cc-cce0a91baf95) + ) + (wire (pts (xy 605.79 189.23) (xy 610.87 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ceb94b2e-2728-4521-99ff-3375acee78ce) + ) + (wire (pts (xy 605.79 288.29) (xy 610.87 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cec8c3f3-31e2-4460-b9a8-006040bdaa95) + ) + (wire (pts (xy 674.37 219.71) (xy 674.37 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d23a614e-9d9d-4d05-9e24-320dc9167a1e) + ) + (wire (pts (xy 599.44 269.24) (xy 605.79 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2e6f6aa-ebde-48cb-a375-90e44f50731e) + ) + (wire (pts (xy 633.73 302.26) (xy 636.27 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3065c10-3d99-4f21-865e-6befa1f997cf) + ) + (wire (pts (xy 662.94 245.11) (xy 675.64 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6d31ee4-05d3-40c2-b156-5136ea4c1134) + ) + (wire (pts (xy 605.79 238.76) (xy 610.87 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d731fa13-ea3c-4134-9af5-fae10a1c3115) + ) + (wire (pts (xy 599.44 219.71) (xy 605.79 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8183595-b3a7-4013-b784-4ed6d394c1bf) + ) + (wire (pts (xy 636.27 96.52) (xy 640.08 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8a0e293-575f-4c1c-9c58-02ad76e96a00) + ) + (wire (pts (xy 633.73 55.88) (xy 636.27 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9e271f7-ec01-4be2-84ec-bbd4c321677c) + ) + (wire (pts (xy 674.37 382.27) (xy 674.37 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9e2d3e8-cdf6-4b4d-9b0f-2564fcb3eab6) + ) + (wire (pts (xy 669.29 162.56) (xy 669.29 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db4fd492-4913-4f2e-b0b8-63e0e2c91f15) + ) + (wire (pts (xy 674.37 269.24) (xy 674.37 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd683af9-016a-4532-b0b4-235a76efdf21) + ) + (wire (pts (xy 674.37 219.71) (xy 689.61 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid deed73b3-2801-455b-a92e-ba085c517102) + ) + (wire (pts (xy 674.37 170.18) (xy 689.61 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid deee2f10-515f-4842-a06d-2d98fc1e8336) + ) + (wire (pts (xy 605.79 139.7) (xy 605.79 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0c25c07-afba-4351-9527-4c2909acaff1) + ) + (wire (pts (xy 674.37 72.39) (xy 689.61 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e23bfa41-187a-4f92-a2c1-01626205985b) + ) + (wire (pts (xy 579.12 303.53) (xy 610.87 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e332c855-875b-4fe9-8f0b-5d9c5cf07941) + ) + (wire (pts (xy 579.12 318.77) (xy 579.12 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3d82336-8909-4d4e-a17d-8f3654f9640f) + ) + (wire (pts (xy 605.79 91.44) (xy 610.87 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e44ef645-909e-4433-859c-0a62bddb8cb4) + ) + (wire (pts (xy 549.91 318.77) (xy 579.12 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5831c53-77b0-439e-bc82-410e7bfab0f9) + ) + (wire (pts (xy 496.57 346.71) (xy 515.62 346.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7d10f44-2ea3-4a66-a72b-1a35c5a4f58e) + ) + (wire (pts (xy 633.73 40.64) (xy 636.27 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9762c06-0546-4782-ad71-c27637bc2330) + ) + (wire (pts (xy 579.12 106.68) (xy 610.87 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb87e388-f145-459b-b3c9-204e8be914e2) + ) + (wire (pts (xy 636.27 252.73) (xy 636.27 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebbddf2a-1aaf-4ded-9366-c1e4df7bbb98) + ) + (wire (pts (xy 669.29 64.77) (xy 675.64 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec042098-9f11-44b3-a63f-87af05058e9a) + ) + (wire (pts (xy 584.2 219.71) (xy 579.12 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef81f14b-e2b1-4972-9595-0864bbe17304) + ) + (wire (pts (xy 633.73 287.02) (xy 636.27 287.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f04c8e1a-6284-48a6-98a7-b59060645edd) + ) + (wire (pts (xy 636.27 99.06) (xy 640.08 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f120794f-9a80-4bd8-9ffc-424d642fea30) + ) + (wire (pts (xy 599.44 318.77) (xy 605.79 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1dac0eb-1e34-4318-b919-b638a74c0f8f) + ) + (wire (pts (xy 674.37 121.92) (xy 674.37 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f332751e-2ec3-4067-a9c1-8fff87a11aa0) + ) + (wire (pts (xy 633.73 105.41) (xy 636.27 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4b3bd3c-5ca3-48af-b8c1-80bed26a2e10) + ) + (wire (pts (xy 636.27 138.43) (xy 636.27 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4febdce-6d98-40c5-857f-a3a6b571384c) + ) + (wire (pts (xy 599.44 72.39) (xy 605.79 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7adaf88-dea7-4f97-aafd-fbdc0a717075) + ) + (wire (pts (xy 549.91 219.71) (xy 549.91 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fac370f4-2638-496c-aa9e-6cf5b2b1be37) + ) + (wire (pts (xy 490.22 285.75) (xy 610.87 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd482984-cca8-4d36-b395-f7e365fcc209) + ) + (wire (pts (xy 633.73 237.49) (xy 636.27 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd5744fd-4839-443b-ab32-9eb8fb934ad0) + ) + (wire (pts (xy 549.91 170.18) (xy 579.12 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd7da182-6d3d-42b9-944c-6d0355b51d2b) + ) + (wire (pts (xy 674.37 318.77) (xy 674.37 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdd9d131-5039-4513-9120-527273fbbe2a) + ) + (wire (pts (xy 674.37 269.24) (xy 689.61 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe4a6884-8d86-4546-bf71-031446f3e22d) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 189.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 01b1b38e-2b94-4f30-b22a-5c33d73731c2) + (property "Reference" "U17" (id 0) (at 622.3 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 67eed917-5f6d-4c82-a50c-a029fb2f6c33)) + (pin "2" (uuid e02ca723-e9af-4ce4-bbe3-69aa227c925a)) + (pin "3" (uuid fda46d89-a5ca-4d44-b0b3-0f78fc352167)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 651.51 49.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 10a270d1-4c34-456e-97c9-7016d4472ff8) + (property "Reference" "U23" (id 0) (at 651.51 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 651.51 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 651.51 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 651.51 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b5bf81eb-38ee-4ee4-a30d-17c4914bb0a4)) + (pin "2" (uuid 2193ed0e-79c0-4685-8b1d-db484bd94c40)) + (pin "3" (uuid df467c37-d31d-4a39-a25c-2a56eeb7525b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 254 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 132603d6-8c06-4da5-b026-94b19c129708) + (property "Reference" "U20" (id 0) (at 622.3 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 254 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c37a4a28-ae27-4ab0-ada3-4dbf802e66ec)) + (pin "2" (uuid 64408a93-054f-4f76-9f00-2afa78525005)) + (pin "3" (uuid f3df14ca-cc64-4a68-ad5e-ecee5cc4a79a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 591.82 269.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 18c3c7b0-aca9-484a-8ea3-1107099aef13) + (property "Reference" "U9" (id 0) (at 591.82 262.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 591.82 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 593.09 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 593.09 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5dcc89ef-715d-4b01-b602-f540ce969b0b)) + (pin "2" (uuid e1423650-702c-4610-950b-1195cf1e1b7c)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 651.51 295.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1aea6b04-3458-4d2d-a851-07fb2b177031) + (property "Reference" "U28" (id 0) (at 651.51 287.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 651.51 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 651.51 295.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 651.51 295.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b9dff16b-67ca-4fb7-a218-a8a423a1c1d7)) + (pin "2" (uuid e4dfaad8-603c-4059-9062-2ff7ae94b1b4)) + (pin "3" (uuid 11b9b885-c61a-4340-a944-624638477c35)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 139.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 250f1a53-5792-4309-91f2-19a844628ca2) + (property "Reference" "U15" (id 0) (at 622.3 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 04e62383-b32b-4ed5-b74e-bd24d779ce23)) + (pin "2" (uuid f29970d4-20b4-4d14-89dc-f108c956d4f7)) + (pin "3" (uuid 94268f08-32d8-47cd-a86d-4bb7ba153392)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 483.87 300.99 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3ac1e2c6-e07b-4e51-8b88-1aab78a7f8b0) + (property "Reference" "U1" (id 0) (at 484.505 295.91 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 484.505 298.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 483.87 300.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 483.87 300.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 740f6bc1-451d-4a60-afe4-405c1da46c79)) + (pin "2" (uuid 71ccd101-ee9a-47e8-9972-fa11057e025c)) + (pin "3" (uuid b36624d7-7db7-448c-baa1-c405ef85eb27)) + (pin "4" (uuid 3e3e86c4-9ccb-47ac-8f7e-52e0fbb36788)) + (pin "5" (uuid c5328a26-f97c-4008-b00c-25358082ed35)) + (pin "6" (uuid c2559795-9bb9-4fee-855c-3c109282be17)) + (pin "7" (uuid 920305f4-45a3-4447-8f3e-76a6ededddf3)) + (pin "8" (uuid e868e109-a3fe-4618-b537-81e4ecc7946b)) + (pin "9" (uuid 76974d35-df85-4959-94bb-fbe0b71ea32c)) + (pin "10" (uuid 84195d6c-0f4d-4d82-a77a-6854537fa43a)) + (pin "11" (uuid d4510d55-1bd9-46c5-ade9-39103ad9100a)) + (pin "12" (uuid fa1f39ee-58ea-4d97-b9bc-c3b8d6c9d9f1)) + (pin "13" (uuid 28f3bfc0-99f8-4bb6-b44b-1da64381d40e)) + (pin "14" (uuid 6b10596f-e263-4082-810f-67a38ed9fc9b)) + (pin "15" (uuid c09acb8a-0565-4650-bc39-1a49af02b289)) + (pin "16" (uuid 009f5f72-22f0-4759-8781-5ddd95b56af4)) + (pin "17" (uuid 7ae7d04e-9e9a-48c9-90d2-4cce483d98ec)) + (pin "18" (uuid b2b1eb7b-dee5-4ec6-9ae3-56dfb57f79d1)) + (pin "19" (uuid d1d804bc-ad6c-4246-91b0-35d7e099f86f)) + (pin "20" (uuid b65e6ff0-f7ff-49ee-8564-035a9d0ff87d)) + (pin "21" (uuid 4c1b89a6-31d4-44cc-9973-c5c01fc98040)) + (pin "22" (uuid 09be66be-afb0-4aee-a433-9760d62e5ad0)) + (pin "23" (uuid 7ce94bd7-6ab3-4395-b381-bfa9ad2ab3f4)) + (pin "24" (uuid 6e403a8d-892f-4c96-aea7-2608ff13d5a3)) + (pin "25" (uuid 2bf76a04-f7d0-48dd-a066-287fffb70e59)) + (pin "26" (uuid 01744d42-a45c-4ee6-af14-b3cd53af5430)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 483.87 285.75 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c639acc-8ece-4a0e-a4bf-2bc7351e6ec2) + (property "Reference" "U1" (id 0) (at 484.505 280.67 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 484.505 283.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 483.87 285.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 483.87 285.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8a68a464-1038-42a5-a7dc-44840a37ef38)) + (pin "2" (uuid a5a8ccc0-0655-4470-8bde-851a79224dfa)) + (pin "3" (uuid 614ae06a-d69f-4c3d-8379-ff624f86b50b)) + (pin "4" (uuid 01eb4723-5aac-48fa-b275-c7268a279927)) + (pin "5" (uuid 4cb546a9-2563-4517-9d17-b3e89f7de56b)) + (pin "6" (uuid ed7ae2ff-e3c3-43f8-b140-e4effd3c6137)) + (pin "7" (uuid 427bbd4e-72f9-40c4-b1e3-ab96e9c04435)) + (pin "8" (uuid 1643ce29-204d-48ee-9ba6-d6a10df2f39f)) + (pin "9" (uuid b512872f-73ba-40a2-b367-7a8667d2e5d1)) + (pin "10" (uuid ded61ede-092e-4810-add0-9e95f5ee79eb)) + (pin "11" (uuid ee85bd7d-7197-4784-8708-0c6cf2672156)) + (pin "12" (uuid 5317e627-4ea5-4b23-8392-6792008d8167)) + (pin "13" (uuid 1aeff46b-758b-430e-a8f2-629429ea2872)) + (pin "14" (uuid 60807b6a-0324-43f1-9a1c-101bea1c0355)) + (pin "15" (uuid 07026f3c-86f2-4a29-9f13-1768d2c00bb1)) + (pin "16" (uuid 3d54bb43-a309-4926-8008-4d30f8fdd0ea)) + (pin "17" (uuid 14276f0d-12e8-4219-b8fd-3145a83d21f5)) + (pin "18" (uuid 688a4113-423c-4bf9-98a6-dd68912cc0ca)) + (pin "19" (uuid 83427685-69fe-401d-aacb-88f3fc79f0e8)) + (pin "20" (uuid 22c3cd4e-4c24-469f-a014-5cb02f9587ea)) + (pin "21" (uuid d6fb5369-ee10-4872-8512-9451f8fd1652)) + (pin "22" (uuid 5911076e-43e2-42a9-8bff-a59fe8a216ae)) + (pin "23" (uuid c9612dca-051a-4236-a6ef-a51a6907cecb)) + (pin "24" (uuid 3a087511-2af4-47ae-8a86-7fd6bc383fdf)) + (pin "25" (uuid 8bf4f125-fd80-4c0b-abe2-929053c3e1bc)) + (pin "26" (uuid 7bb293b8-5a33-4910-92b2-30dd27e584ae)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 490.22 364.49 0) (unit 16) + (in_bom yes) (on_board yes) + (uuid 42091359-7ac7-4a35-bcf6-473d98170065) + (property "Reference" "U1" (id 0) (at 490.855 359.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 490.855 361.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 490.22 364.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 490.22 364.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eff8dac1-37a7-4377-8590-adaa87d7bb08)) + (pin "2" (uuid 31b3bb42-fcfe-4fa7-9797-48a152ed87e3)) + (pin "3" (uuid b5085e66-efca-4bc7-b985-3ef577b6ee41)) + (pin "4" (uuid e0549c82-e889-44b4-be71-bf1619cb3c73)) + (pin "5" (uuid be36259b-ba43-4af8-9dd1-b5cc5f3d850c)) + (pin "6" (uuid 4600b901-948e-4647-ad39-6eff25ef48d7)) + (pin "7" (uuid 087dbc84-ac7f-4f2e-bab8-5857b37d774c)) + (pin "8" (uuid 795185aa-3c58-4ef9-830b-3f25f568f970)) + (pin "9" (uuid 3afb9c0a-b75c-4446-ba78-0eab28954327)) + (pin "10" (uuid 23c0b976-9ecb-471d-a926-164155a82b77)) + (pin "11" (uuid 7cd6f55e-2bfa-4094-af7c-925ec25c4aa5)) + (pin "12" (uuid 610ef253-3d1c-495b-8ebf-883bc816be4e)) + (pin "13" (uuid 0f5d9119-4f96-4eb8-9d07-8a381d07822a)) + (pin "14" (uuid 59a80f64-a6a7-4fc5-ae84-ca8c4209369e)) + (pin "15" (uuid 1f16fde0-64d9-4e26-937c-2108119098a7)) + (pin "16" (uuid 348d07ff-443a-439d-8e73-65739452e342)) + (pin "17" (uuid 752b3593-16bc-40ba-92f2-4b2f5ea356b4)) + (pin "18" (uuid 1b692af1-0497-4a1f-b4f4-5aebdf208b0a)) + (pin "19" (uuid ebab3f50-dafc-4d40-8c91-b75bdea66dec)) + (pin "20" (uuid fbdbfa58-315c-4b64-a2d8-e72fd33951a1)) + (pin "21" (uuid 74ac4fd0-e3bf-4378-abdc-77beaff576e8)) + (pin "22" (uuid 62547dc1-01d8-4161-b1fe-fd9f4c5a001a)) + (pin "23" (uuid 63a908a6-e5c4-48d7-8a79-b37514206f08)) + (pin "24" (uuid d7bc59b7-c025-472d-8100-d8a5b8c1a1e8)) + (pin "25" (uuid dbf6b073-6653-4da0-9244-b6a93bf7c83d)) + (pin "26" (uuid bf331fa7-6165-4814-98e5-40417d1cb192)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 591.82 219.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4655c67a-6b0a-4d9e-89f9-5d3bbc4efb7f) + (property "Reference" "U8" (id 0) (at 591.82 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 591.82 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 593.09 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 593.09 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 38e75de7-9609-4963-81ff-d5ca0781d0ed)) + (pin "2" (uuid f786cd1c-2c17-4e12-b4a0-241397d4f085)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 651.51 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4c755c46-be92-4048-af27-78dad16b5033) + (property "Reference" "U26" (id 0) (at 651.51 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 651.51 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 651.51 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 651.51 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 084b111a-d6e5-4439-86e0-ba4b9943a70d)) + (pin "2" (uuid f04fd28a-d5f0-4631-af4b-36d6a15bdaaa)) + (pin "3" (uuid 4a684916-e184-41bc-8173-2b6689de9624)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 496.57 88.9 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5a235813-fe98-46c1-95cf-5f8c97199e53) + (property "Reference" "U1" (id 0) (at 497.205 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 497.205 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 496.57 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 496.57 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b9ef17fb-49f2-4ad7-8e94-d6e8c511758f)) + (pin "2" (uuid 31ff6e19-c9c5-478e-8e03-b3f76bdcc489)) + (pin "3" (uuid 3f57b3a5-40b6-4bc0-876c-4f99d2e46d18)) + (pin "4" (uuid e0763166-47a9-4d6e-84f1-3254eb4de3c1)) + (pin "5" (uuid a14786bd-e836-4d68-955f-df51e635e17b)) + (pin "6" (uuid 74a11c2d-3096-4001-9302-44edac1a9cd3)) + (pin "7" (uuid 415177bf-e91e-4afa-889b-7a27e982ce39)) + (pin "8" (uuid 82805fc8-449c-4701-8e44-defe68dfe620)) + (pin "9" (uuid 33fc2ca4-670e-4020-9d61-ee951855d712)) + (pin "10" (uuid 997117d1-fa23-4964-8474-0de0f5fb69d5)) + (pin "11" (uuid 1a80dae2-934e-4755-953d-eef3b9a22185)) + (pin "12" (uuid 4270ad76-cf0a-4978-891f-7c394cb0aad1)) + (pin "13" (uuid 12f18611-428a-4b79-b23a-99e3121d30f6)) + (pin "14" (uuid 773ce6cb-7cdc-4b3a-85d7-96dcdb49a36f)) + (pin "15" (uuid a0a333e5-befc-4dc4-8ec5-339af5062597)) + (pin "16" (uuid a8039bd5-4d66-45bb-8131-eb9348ef611d)) + (pin "17" (uuid eb3e4f73-cb9d-4448-9d33-bcbbd20fef73)) + (pin "18" (uuid 8fa9fcc0-869f-4728-802e-94adc05c4000)) + (pin "19" (uuid 83711da5-c060-4dae-bd84-0d1432c5b938)) + (pin "20" (uuid 3341e71a-05df-44b0-bb7b-1616290d49dd)) + (pin "21" (uuid 8eeb855b-7159-4ab2-9c4e-0a96d541d8c9)) + (pin "22" (uuid d86b0d94-8e39-4678-83a7-278db9d04bec)) + (pin "23" (uuid dbc9abc5-9655-406b-bdea-8ca5ee55d243)) + (pin "24" (uuid 2589c122-43d4-4681-b5bf-f3076ba4dfb4)) + (pin "25" (uuid 7104544d-86c9-45a9-b45c-1ac3a82b1b5b)) + (pin "26" (uuid ec1131f0-2abb-48cd-a263-d063ddc85742)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 490.22 361.95 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5b35ec9a-8670-4bfa-9db7-8cd7c4e1e10e) + (property "Reference" "U1" (id 0) (at 490.855 356.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 490.855 359.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 490.22 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 490.22 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c10c44fc-82f6-400a-bfd2-e69a14be2687)) + (pin "2" (uuid 2cbfe078-2e1e-4a1d-85f5-1c57c370188e)) + (pin "3" (uuid e2c69108-003b-45ac-b41f-173445c279fa)) + (pin "4" (uuid 3a954351-f2b3-44fd-9fd8-ea16abef0f5a)) + (pin "5" (uuid 248c1e0a-6090-485b-8a07-85130e93e86a)) + (pin "6" (uuid 4a418c19-2a18-45a9-9bc1-3380a705c72a)) + (pin "7" (uuid 42ca3405-a2f3-408a-97d8-72a37c5df6ee)) + (pin "8" (uuid f2968f4e-f9b0-404b-a1a5-69e48ee78f6d)) + (pin "9" (uuid 534b3c4d-f765-4964-ac5c-7573c2e70866)) + (pin "10" (uuid b32d1a65-5450-4ba4-95f8-684048e53972)) + (pin "11" (uuid 61b942a7-7484-4efa-b9a3-c2ebb4bd5f73)) + (pin "12" (uuid 009b167b-1fb2-4749-8662-4bada89eb35a)) + (pin "13" (uuid 2d548473-4af6-49a9-9f83-26b5fdc8b923)) + (pin "14" (uuid 058389e9-3d4b-4dd8-b4ee-4d84e2c6f6af)) + (pin "15" (uuid 679a2471-b6a0-4bea-a99d-9d3ebdd662be)) + (pin "16" (uuid c54cbd59-bf06-4e20-8977-0518c7afa36a)) + (pin "17" (uuid c502efab-21e7-423e-b90d-5578030db1de)) + (pin "18" (uuid a83e57eb-8ef1-43a9-875c-4d7e5c1e63ba)) + (pin "19" (uuid 1fdabc01-c57b-4c2a-9cb9-155ac8af13ab)) + (pin "20" (uuid 3370f3ac-e72e-410d-8b88-5442a8259c53)) + (pin "21" (uuid f285c8f0-07a4-4f6d-a4f3-662800295db4)) + (pin "22" (uuid 168d062e-a946-4e53-8494-1e17399c2f3d)) + (pin "23" (uuid 74aed231-952b-4007-9f44-d80340843bb6)) + (pin "24" (uuid aec4df5f-7b45-411e-95f3-addb56529692)) + (pin "25" (uuid 6e56ca85-ad35-47e7-a6ed-e3f8583c959b)) + (pin "26" (uuid d6f7e71f-a54d-48fb-8c83-c1c78c353832)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 748.03 245.11 180) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 65cbd6fd-e9f4-437f-a467-61f90fde49ed) + (property "Reference" "U1" (id 0) (at 751.84 244.475 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 751.84 247.015 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 748.03 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 748.03 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a12ef4e2-e72f-4ee3-b922-02728a953e24)) + (pin "2" (uuid fcd5970d-ab01-4134-8a07-dcff27296969)) + (pin "3" (uuid 640a9684-7cfe-4c0a-8be7-5dee9f003434)) + (pin "4" (uuid bbb2cf7e-dd61-4db5-8848-cf2fdba034fb)) + (pin "5" (uuid d8bf1ed8-8602-4158-9128-b11a56eb213a)) + (pin "6" (uuid 00b52cf1-1777-4cc9-9695-605341c6e4a6)) + (pin "7" (uuid e0afd0b1-97c5-4cad-a4bb-7b98b78d2e28)) + (pin "8" (uuid c199fdbb-f157-4a46-92f3-37a3a4178230)) + (pin "9" (uuid 638d914c-5bea-4132-9fdc-05419ac85b94)) + (pin "10" (uuid 41eeb8ab-8cd1-4de5-83e3-978b16d65563)) + (pin "11" (uuid 840d2649-6d17-49f8-aa39-d8596872d051)) + (pin "12" (uuid a193a8ff-37a1-4c00-a8b0-3388fe19b070)) + (pin "13" (uuid e23cd554-6a19-4da3-a8c2-7797be15dc19)) + (pin "14" (uuid 8311dcb0-2736-447c-aea9-2001f0f53ad6)) + (pin "15" (uuid 81071872-3ad5-416e-89d6-f5aaa45f4aa3)) + (pin "16" (uuid 9c6c6ead-c663-44d6-b436-c7ace1149b05)) + (pin "17" (uuid 5b8dcbce-cf00-4397-8217-560774950757)) + (pin "18" (uuid 0f0a3003-0441-4b63-b4be-d4fe9742c6c0)) + (pin "19" (uuid 87e67968-a569-4b61-8540-505b03da25f3)) + (pin "20" (uuid a101f9a2-126d-42b1-92ed-1e84f2784c3b)) + (pin "21" (uuid 59f5f20d-34f4-42da-a290-bd85ebd9b0f0)) + (pin "22" (uuid 1a40fdb6-05a3-468f-a965-f823aa198386)) + (pin "23" (uuid d1a79cdb-cb2b-459f-bded-d65b82c0a258)) + (pin "24" (uuid 7fc89a44-cdc4-4caa-805b-9f736f29af78)) + (pin "25" (uuid adcd2d3a-9332-4604-9d83-78adef5ffe12)) + (pin "26" (uuid c8746fe4-978e-482e-9414-570ac6ef458d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 746.76 294.64 180) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a8a8bf8-5348-4a23-89e3-554fe25f3014) + (property "Reference" "U1" (id 0) (at 750.57 294.005 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 750.57 296.545 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 746.76 294.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 746.76 294.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 43d7748f-40f3-46b1-b4c8-c08d7049e2b1)) + (pin "2" (uuid 14631c78-3ef1-4c7e-aac8-3d22e2615b37)) + (pin "3" (uuid fb160b59-929d-4c5d-bae6-5a03cc275ed3)) + (pin "4" (uuid f53780eb-3d65-4216-9e1a-203662ceaee5)) + (pin "5" (uuid 09ded1d3-18fb-4afa-bdce-ff91e3007330)) + (pin "6" (uuid 170c21fc-17fc-4fbb-adc8-77900f62286f)) + (pin "7" (uuid 593d19a5-a2ba-44da-b8c9-f97d3679e40d)) + (pin "8" (uuid 450215bd-be85-4f8f-a1d2-15557c7f7249)) + (pin "9" (uuid 8a1c2b45-94be-4de8-b648-381700b88957)) + (pin "10" (uuid 47cd575f-8726-41be-869f-d069ebdf1b62)) + (pin "11" (uuid 8d118663-6019-4041-822a-df438d6f7464)) + (pin "12" (uuid dca6470f-b610-4da5-8c02-7d5565d9dfd3)) + (pin "13" (uuid cf0ebe02-2ef2-4cba-aad1-c0f9bb330c73)) + (pin "14" (uuid 418340a0-d0d1-461b-a263-a0258399446e)) + (pin "15" (uuid 0c6869e8-1566-422d-a7b5-55c3cf274f5e)) + (pin "16" (uuid 2b20eabe-cb6f-43a3-90e3-ddca42089e87)) + (pin "17" (uuid b0cfc446-eba4-43b5-8762-15e39ccdaad5)) + (pin "18" (uuid 69200adb-e80a-44bc-a943-f8fdcb6526db)) + (pin "19" (uuid 66278875-0edb-4e67-9325-db70ffa86166)) + (pin "20" (uuid 714c29a1-ea1a-481e-b511-f9be7bbfc5f0)) + (pin "21" (uuid 11e1290b-0eb3-4b2e-95f7-dd790eb2f299)) + (pin "22" (uuid 02db8667-6983-4bee-916d-ebc156fa4a36)) + (pin "23" (uuid d26730b7-2138-40b1-8685-a84029a3d96b)) + (pin "24" (uuid e6ba2264-2786-4261-a0a4-48e903244c1a)) + (pin "25" (uuid d788eb67-e6b9-41b1-b98e-9f0247c6e45f)) + (pin "26" (uuid d9c835d7-9503-4deb-8125-c38187ceb546)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 492.76 186.69 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6b957ae1-d23d-4f8a-8621-8a779816fb85) + (property "Reference" "U1" (id 0) (at 493.395 181.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 493.395 184.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 492.76 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 492.76 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1e85195e-40f2-402d-932e-3c79f709082f)) + (pin "2" (uuid 79f564fe-a622-41fa-a418-91adbf5f0f2f)) + (pin "3" (uuid 23480876-3b36-4a51-97f6-ffa9dd018d98)) + (pin "4" (uuid 399330ec-344b-45cc-b6c9-08a471070591)) + (pin "5" (uuid 2bac5557-ae83-4382-9d4e-c2d9e8b1d973)) + (pin "6" (uuid 2b00fece-5629-4ab8-9a8a-96d3ebc0d796)) + (pin "7" (uuid ffc01a37-7b3d-4a62-9867-43ee8c6f0664)) + (pin "8" (uuid 7d210efd-f8fb-4782-9b4b-cca1a9223564)) + (pin "9" (uuid 20da3605-f536-47f7-ad69-4eb6a04d9c50)) + (pin "10" (uuid 728ea5a6-652a-425c-88d3-92a8373ed34d)) + (pin "11" (uuid aefbf352-9575-4738-b179-161d67c27a03)) + (pin "12" (uuid 22ee9a4e-6070-4fd7-ac4c-77c7f5d50b7c)) + (pin "13" (uuid 8b107a0b-8e03-4905-9e8b-5c692a4abc26)) + (pin "14" (uuid ed9d7c3a-6bfd-4f07-b9bd-4d75ff9751fb)) + (pin "15" (uuid 08576279-9644-4982-868a-9a4ce094f387)) + (pin "16" (uuid 2f3e2b2f-bf3e-4f68-b120-f3d3d0025c44)) + (pin "17" (uuid c5bf9a54-f989-4412-b645-208ae30a0eb3)) + (pin "18" (uuid b08601ff-c036-4aa7-b402-bd0c2b4ac9d8)) + (pin "19" (uuid 081831dd-3a98-47cf-a709-65f44fbbd0e9)) + (pin "20" (uuid 2aa07c94-2ff2-4307-82f5-8f390401f696)) + (pin "21" (uuid c0da237a-b8fc-4ec8-b800-14e16d7fcd7d)) + (pin "22" (uuid c75c1289-f216-4fab-895f-e445d3265821)) + (pin "23" (uuid 2ad858cd-c501-4da3-b9cf-88ceb549707c)) + (pin "24" (uuid 2878c68a-d89e-4455-91a0-877d1ad135b7)) + (pin "25" (uuid 573345fb-d587-41af-840e-6b81f51d7b4b)) + (pin "26" (uuid 4ccf9be7-67a4-49be-b5e9-5fb542e9c068)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 749.3 97.79 180) (unit 21) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 72e154b3-efdd-4d5c-9a05-a65ba12f81d5) + (property "Reference" "U1" (id 0) (at 753.11 97.155 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 753.11 99.695 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 749.3 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 749.3 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fccb512b-d239-4610-a603-7a6004d55892)) + (pin "2" (uuid 297ea73a-4217-47a1-904a-4388b167643b)) + (pin "3" (uuid e11aa7a3-3b40-4e41-a5c8-464a2f66db57)) + (pin "4" (uuid e686690e-27d2-4fef-99e2-bac8e3ee36e5)) + (pin "5" (uuid c6748e7a-33a5-4901-b9a1-bb72840d02f6)) + (pin "6" (uuid ba531d98-358e-4394-b2b5-840cbb23e033)) + (pin "7" (uuid b0564e4e-0f02-49f5-975d-6df4eaca8c63)) + (pin "8" (uuid 405f6736-1a67-4447-8b1c-5ecf364a2e4e)) + (pin "9" (uuid 8fd3ebb5-3134-4b39-b56e-05086eb56bf3)) + (pin "10" (uuid 76324e94-2d74-4f8d-9428-00b7e58de568)) + (pin "11" (uuid e5aa95ad-7c96-4481-a530-02ae8536e699)) + (pin "12" (uuid 8f28f82b-6a0c-4d31-88d8-f3da172c9358)) + (pin "13" (uuid 8376a1f5-8343-47f7-9147-506c95e178d9)) + (pin "14" (uuid 3d64e4dc-8db2-48ac-88fb-c38a208a7a5b)) + (pin "15" (uuid 10cb4178-a8c4-4394-becc-c132cb166def)) + (pin "16" (uuid fb621275-283e-44ca-8761-94a2f4fb7f1a)) + (pin "17" (uuid 06a38cac-c43c-464a-9110-a6924f8f0447)) + (pin "18" (uuid 272721bf-95d5-4f94-bad2-aa0c665b0df7)) + (pin "19" (uuid dee6cf9f-7dc1-49dc-be2f-0b3bcb6f0553)) + (pin "20" (uuid 8a7ba598-c117-4d51-b5d7-976ec83634db)) + (pin "21" (uuid e514ef5d-df84-4859-9ead-9ca6b2393d9a)) + (pin "22" (uuid 658572ba-1770-4bb8-90a0-bbe8dab63daa)) + (pin "23" (uuid 4c4e9078-ca7e-4217-bcfa-30641a4ecb26)) + (pin "24" (uuid c3f7938b-942a-4f73-be09-76b22720f448)) + (pin "25" (uuid 2d2ac633-d92f-4087-9bc1-95b0a6070935)) + (pin "26" (uuid a54407ea-476f-4553-aae6-a3b2b69db6d2)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7b76c1c6-e4a6-46f4-9361-5a9ef5b9b839) + (property "Reference" "U14" (id 0) (at 622.3 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d9b46dff-44fb-43b4-8c39-590e2b0b553b)) + (pin "2" (uuid 86ffcbfd-f848-405f-a0c7-e8b764f6aa4f)) + (pin "3" (uuid a3d7fbb4-7512-4305-9fbf-ccc4416e819e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 591.82 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ce606a2-1e26-40ab-a60b-bc618bbb0779) + (property "Reference" "U5" (id 0) (at 591.82 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 591.82 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 593.09 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 593.09 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 41696d18-86f2-4904-bcd4-2898e55667a2)) + (pin "2" (uuid 801437d6-03c7-47dc-80e7-4153893acf8f)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 651.51 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 81d62144-9385-4554-80c5-0f1ae7b547ad) + (property "Reference" "U24" (id 0) (at 651.51 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 651.51 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 651.51 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 651.51 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 16d1449d-1d9d-4e5d-b6ab-e18c888850e3)) + (pin "2" (uuid 6ee9cb28-2c3e-4254-bbea-f583d553aa8f)) + (pin "3" (uuid 2d6a6414-e6bb-4080-b2b8-7937d13f5974)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 651.51 246.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8ab377e3-59d7-4827-b84f-004cfaa01ca0) + (property "Reference" "U27" (id 0) (at 651.51 237.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 651.51 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 651.51 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 651.51 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 614c1761-b0d4-4519-974b-bd87b59422e9)) + (pin "2" (uuid 57f749b2-500b-4165-8f51-2e2742851ba3)) + (pin "3" (uuid f2d3f930-7215-48b8-a357-0e8d7dbb3c5f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 94e384f4-1c79-4347-8fc6-7d01a4cc9c33) + (property "Reference" "U16" (id 0) (at 622.3 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f02d4706-4bb9-4fb6-bc77-8ef958ae037e)) + (pin "2" (uuid 31c9db41-f248-4b78-b5b8-2e0b1f9e2d46)) + (pin "3" (uuid 65d8c29c-676b-47d6-9223-2d797ae281ac)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 591.82 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 974731a9-bbb8-416f-9a25-0c30d8ab07d4) + (property "Reference" "U6" (id 0) (at 591.82 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 591.82 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 593.09 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 593.09 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eae15356-44b2-47b5-8c8d-c8c623019b00)) + (pin "2" (uuid 9751366f-ec80-47c7-91b8-9bab28ad0749)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 494.03 104.14 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9d0712c2-5800-4b54-a496-a315d623b930) + (property "Reference" "U1" (id 0) (at 494.665 99.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 494.665 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 494.03 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 494.03 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 46619ce6-5fe8-4e7c-8ae1-93377ca8f141)) + (pin "2" (uuid 44466490-258f-442f-877e-ed3448c2c5a0)) + (pin "3" (uuid 9baae19b-85eb-445b-bc07-ad0ae5919c71)) + (pin "4" (uuid b998f6ce-4382-487b-ba31-eba8f04f7c95)) + (pin "5" (uuid 85e9306f-646c-4c31-a7ad-b95465e6d000)) + (pin "6" (uuid 95227155-0d6a-4f6d-bc36-db770a62e844)) + (pin "7" (uuid 744b2a39-b435-4ac3-88bd-7182e99bf754)) + (pin "8" (uuid 465eabc7-ffba-49b6-a624-e8c654b5f7e7)) + (pin "9" (uuid f1caa8fe-3e31-41da-9adb-9a471a2b7a7f)) + (pin "10" (uuid 8da11a3c-4e6e-4476-8cff-d637e8c5dbbd)) + (pin "11" (uuid 45f0b5eb-2c27-488a-8096-852f746b9de6)) + (pin "12" (uuid 278bdb62-aacf-4f60-b795-e5aed9f27103)) + (pin "13" (uuid 4c4ed1c9-f704-424f-a3ad-20cdd700b930)) + (pin "14" (uuid bdc10d7e-76d3-42ea-8157-59801cff5b59)) + (pin "15" (uuid cf339171-d4cf-4df0-bf7e-12c1061ab6d7)) + (pin "16" (uuid 08fc252d-f7a2-43c7-86c9-fbe579a59cde)) + (pin "17" (uuid a54002d9-c64e-4f04-8c71-26965785b71d)) + (pin "18" (uuid 42c81e51-8c65-4bb0-aeb9-1b48bfd619ea)) + (pin "19" (uuid 7964676e-2c85-4e5e-82ad-08392a195e34)) + (pin "20" (uuid 9d30d8b6-8bcc-4d9d-bbc4-539c159dd4ba)) + (pin "21" (uuid 65bedad7-f3e0-40da-8304-8efb49349eca)) + (pin "22" (uuid 654800aa-789d-4853-a667-9656b7aa74c6)) + (pin "23" (uuid b40b95e4-d797-43cd-87c6-15c86c3bfd3f)) + (pin "24" (uuid 734a3264-2f90-4f25-ba4d-89ed8285dd84)) + (pin "25" (uuid a04c8753-6d67-424b-ad01-cc63bf02bd50)) + (pin "26" (uuid 5624c007-636e-40e4-97de-2066e630be51)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 488.95 236.22 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9d667aea-12d4-48f4-b569-3adbde8b642a) + (property "Reference" "U1" (id 0) (at 489.585 231.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 489.585 233.68 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 488.95 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 488.95 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f8d1f486-3149-44bb-8881-43d70e302192)) + (pin "2" (uuid bc9818e2-1ab1-4d01-8c31-94d73e60f810)) + (pin "3" (uuid d497ebfb-23ff-4925-bce3-97dcaad28d35)) + (pin "4" (uuid b288dd1f-a2bb-41fc-b295-e688e7d4fac5)) + (pin "5" (uuid 9bba0c75-dc6a-4cba-84d3-fb06d5187f74)) + (pin "6" (uuid abeaba2d-f816-4856-978a-30fa52958127)) + (pin "7" (uuid b91d0c94-a021-4934-944f-070d637ecbc7)) + (pin "8" (uuid e09aa881-556d-4f33-9571-0b608a761ea0)) + (pin "9" (uuid ffc39734-35fd-4ee8-a169-2b594c556498)) + (pin "10" (uuid 1d78a2a5-5bca-48b0-a84b-511f081a8f19)) + (pin "11" (uuid 044d0954-33b3-40da-b064-6011f61bcaf8)) + (pin "12" (uuid 732df748-4d35-43b2-abf5-4d9287e0ce36)) + (pin "13" (uuid e51f12a4-540a-465b-b875-48bb38ee9919)) + (pin "14" (uuid cd0c36dd-2577-44b9-a02f-fd9e18779a1f)) + (pin "15" (uuid ef0e21a8-0f4f-43c9-864a-accf42f2cd94)) + (pin "16" (uuid 2cba0d0f-df88-4bbd-8eb3-80d7658f3c46)) + (pin "17" (uuid 0782720c-a1cc-4712-bae2-105e6bc8a0d1)) + (pin "18" (uuid 1418f41a-5910-4778-aa91-c0774e768cdb)) + (pin "19" (uuid 0fc8c70b-7af6-48b4-aada-25e08e4f77ac)) + (pin "20" (uuid 44ec0d8b-404d-4676-920a-f4252c1f6bd5)) + (pin "21" (uuid dbb259c0-8b71-418b-a055-762e17da49e8)) + (pin "22" (uuid 96d0a4dc-7787-4822-a67a-161fa6d4cec6)) + (pin "23" (uuid b8931059-a7ac-4f57-8ce3-bb7c6c3e8c7c)) + (pin "24" (uuid c861aeac-4792-46d8-b3af-dea3c0443c2f)) + (pin "25" (uuid d5805f22-073b-47eb-b1ca-99fe6cb46228)) + (pin "26" (uuid 96801612-a316-475d-b237-ca618b4b8649)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 303.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a48e1556-b6f7-4004-8a02-7b026b5571ca) + (property "Reference" "U22" (id 0) (at 622.3 294.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6cfd67b6-85ab-4575-aebc-7ff45e5dddf9)) + (pin "2" (uuid 86f69ade-b268-4f70-bfcd-7ff5a7edf100)) + (pin "3" (uuid 029abdad-ed11-4952-a126-fc8361f25e49)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 528.32 364.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a71de703-7e10-4cb6-8e4f-18b3a294ba06) + (property "Reference" "U3" (id 0) (at 528.32 355.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 528.32 359.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 528.32 364.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 528.32 364.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2d06bde8-8812-4f3f-9ef1-7dc064e3f9d6)) + (pin "2" (uuid eeb070ec-2997-4d1b-adca-9c416f92a2c3)) + (pin "3" (uuid 66489845-0248-4eef-8397-605bcd17f4d2)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 528.32 382.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a73831d8-f095-4183-9711-d758fe2b91b2) + (property "Reference" "U4" (id 0) (at 530.225 372.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 530.225 375.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 528.32 382.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 528.32 382.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 892c685b-59a0-4395-8883-5a8ded1c85c1)) + (pin "2" (uuid d63071ea-84ca-45b0-8b30-4a5aef3e54c9)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 689.61 303.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7cd4e60-4eee-4555-9280-125af15c4f9f) + (property "Reference" "U34" (id 0) (at 691.6294 287.02 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 691.6294 290.83 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 689.61 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 689.61 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bec71f21-a716-4252-8c51-47c9e88a9878)) + (pin "2" (uuid 51e8ab09-92ae-4387-b1dd-a8553417f9ce)) + (pin "3" (uuid 31e6c5e7-881b-4b27-baff-65af3cda24e5)) + (pin "4" (uuid c118bcb3-0b7e-47d3-b59d-4bbc6e565980)) + (pin "5" (uuid 68c0c02e-5389-4f36-b01e-fb291c2bd3dd)) + (pin "6" (uuid 766b1910-766e-4cad-a6c2-f81f21afc7d4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 496.57 137.16 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b6407310-9376-44fe-8d69-d66e9fc01207) + (property "Reference" "U1" (id 0) (at 497.205 132.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 497.205 134.62 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 496.57 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 496.57 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e0aff9a4-f156-4d76-b46c-ad760ac455c9)) + (pin "2" (uuid a762687c-6784-4d95-af0a-cc697ba2eca7)) + (pin "3" (uuid 31ba8e1c-9ab8-46d6-97f2-0bbb3dbb5af4)) + (pin "4" (uuid 69dce5c5-b6e9-4641-978d-99b5074c1b3a)) + (pin "5" (uuid c3f828de-cdd0-4eec-b236-1f0d153bdb7a)) + (pin "6" (uuid 50f96e8f-221c-4f52-a900-7c142838b491)) + (pin "7" (uuid 87e3cefb-7771-4688-bc1d-1ed36b7bb832)) + (pin "8" (uuid a764a30b-5c30-4446-ae27-608d3f0a663d)) + (pin "9" (uuid 27f5e6ac-6768-46f7-8f89-42a24faffc0c)) + (pin "10" (uuid 894c4a05-8640-4633-995f-4311085f78a6)) + (pin "11" (uuid adc3dede-298c-4cfc-b39c-ff0dd9b737f8)) + (pin "12" (uuid e6a99423-1161-42bb-b069-93f4cbd0be44)) + (pin "13" (uuid e73051a5-06ff-43ba-a9c6-cf03fb4f2baa)) + (pin "14" (uuid 3dee80e1-b8b2-4c9f-b400-ea71d817308b)) + (pin "15" (uuid 2f9ddb92-4f28-473b-8bcb-e4b896bcd4d7)) + (pin "16" (uuid 7e0cc7a9-36fb-41d2-aae3-743d6a12ce25)) + (pin "17" (uuid 0b991e44-7c2b-442d-ae0d-002034a7bc71)) + (pin "18" (uuid 4bd5c65a-6fde-48e4-961c-3c0f26257ac4)) + (pin "19" (uuid 2982b729-f8d0-4408-bba8-7f864778a238)) + (pin "20" (uuid 14751ce9-64d0-4014-b9dd-0d85291839f0)) + (pin "21" (uuid 3fdff848-03b5-451c-891a-a1d6aceb1e90)) + (pin "22" (uuid ba65889d-f6e1-4e13-af53-205460e90253)) + (pin "23" (uuid de6bd669-2a22-4a99-beb9-c0ecab8b8b81)) + (pin "24" (uuid 1394a123-c760-456a-82d5-1c38dd235a59)) + (pin "25" (uuid 399f932b-b4c1-4068-b5d3-44bd18c7d0b8)) + (pin "26" (uuid 86843a09-a2e3-446b-8c05-d4d818d28e1b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 742.95 48.26 180) (unit 22) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb75b71c-830d-4bca-9066-548f265d8f88) + (property "Reference" "U1" (id 0) (at 746.76 47.625 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 746.76 50.165 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 742.95 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 742.95 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 114823a7-b8c5-4cb6-9e5d-125ac7f8117b)) + (pin "2" (uuid 0a67453f-ddb1-4b43-b336-c2eb08fa5178)) + (pin "3" (uuid a5b6fc34-3c04-4f05-ae8d-e331aa82c289)) + (pin "4" (uuid 4bdb9e85-a9bc-4976-84fb-3f8f63dc34d2)) + (pin "5" (uuid 69c26516-c702-4d28-8224-8bb7b43f1722)) + (pin "6" (uuid 2a940b8b-950a-425a-bb76-b0840e6e92b6)) + (pin "7" (uuid 51ecacc8-530a-4732-be40-bd2a7b140be0)) + (pin "8" (uuid 7492f024-01e0-4a9e-9fe1-8e9fc379ea02)) + (pin "9" (uuid e3c9d8a0-6e46-4382-812d-f211806ef9fe)) + (pin "10" (uuid df35af6e-91a9-4c82-a082-fc58921ead9b)) + (pin "11" (uuid 2f69bde1-0e3b-4988-93df-fb2e2bf5f60c)) + (pin "12" (uuid 6d9f63ad-9756-4b98-841f-2115242114d3)) + (pin "13" (uuid 9d0c82c4-6c61-4474-a033-a0a35ace6592)) + (pin "14" (uuid fc9648ff-9cd7-45a7-91a4-01fbc4f4957c)) + (pin "15" (uuid 7a51a340-b5fc-400d-828c-ed2787898da4)) + (pin "16" (uuid 18c76bb4-f779-41e6-a33a-3d1033c56338)) + (pin "17" (uuid d9c35cf6-b1ce-42a8-b1df-1ff044231e8a)) + (pin "18" (uuid 652baeb6-fdc3-4e40-bde6-87d1b5d57565)) + (pin "19" (uuid 344a752d-5ecc-4b42-85a3-bbf96b79f3af)) + (pin "20" (uuid 49861efc-87e8-4005-80f5-0336ebd6fb9a)) + (pin "21" (uuid b3de9e9d-d14c-4da8-8751-93825598c244)) + (pin "22" (uuid dc3df8e0-3f33-4080-b7a6-9074f114302b)) + (pin "23" (uuid 5fd8c6e4-e085-4b5c-998f-6316f899eb6c)) + (pin "24" (uuid 5fefaf4e-4825-4935-9a92-9be156c6f3cd)) + (pin "25" (uuid e00737d4-3859-4c16-a886-99cdefe3c787)) + (pin "26" (uuid 7f03da94-0cbd-4cdd-8477-6137d35ea902)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 591.82 318.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bce3e1b3-5d6d-4f93-8697-8466a3707777) + (property "Reference" "U10" (id 0) (at 591.82 312.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 591.82 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 593.09 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 593.09 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ec5d6ecb-48cc-412c-9f50-6d222ff935fa)) + (pin "2" (uuid 75ef27b0-96be-4c10-9b93-aadc6336e0d8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 238.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bf2454ea-2dd2-4c76-901c-e9a9269e2e07) + (property "Reference" "U19" (id 0) (at 622.3 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8cc0e9cb-d679-4f50-b8b4-4d227349136a)) + (pin "2" (uuid bc753a80-8436-4a53-b5bc-7dd92963cb54)) + (pin "3" (uuid ae64fff9-7aeb-40b1-9708-fb3df0f911fb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c7fb65f6-70fa-4411-8573-953a9e10d84f) + (property "Reference" "U13" (id 0) (at 622.3 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f4abf3f9-a9f2-41be-a8d9-b42ce5539347)) + (pin "2" (uuid 36646a61-9f13-4a86-ba83-c9ee8c37bc73)) + (pin "3" (uuid b2bf8475-dec6-4391-adf9-d32b250c7358)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 488.95 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c880fe7d-1993-4d38-9667-f92025e9a9fa) + (property "Reference" "U1" (id 0) (at 489.585 34.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 489.585 36.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 488.95 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 488.95 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5b78c820-6ce0-4cfe-99ef-1d520b57254a)) + (pin "2" (uuid 82d05591-fb2d-4506-9bc1-67f556eecd38)) + (pin "3" (uuid 5724bee0-1ce2-4920-ba96-f0b09d98d121)) + (pin "4" (uuid e8e1ef52-ef62-4323-9917-008f4791e3d1)) + (pin "5" (uuid d1df82b6-9031-4350-86da-64841b27a821)) + (pin "6" (uuid cb246e1a-9462-413a-9574-f68979fbb40b)) + (pin "7" (uuid 51e2a59a-eadc-42dd-8cf8-9258f722bba1)) + (pin "8" (uuid d41fda47-d50a-4841-9969-06bc50e8bd5e)) + (pin "9" (uuid 1be33c73-771e-4540-9d85-1a5174cdf300)) + (pin "10" (uuid 5130a4a4-4efe-4784-9e83-c0dd4ff1c9ef)) + (pin "11" (uuid 118893bc-93c7-4cf2-b042-2752c3be97a5)) + (pin "12" (uuid b54cb261-7d48-4815-9ac7-a42b40d2c6a7)) + (pin "13" (uuid 4c01e419-a2a4-4c55-ba36-4041e7dea684)) + (pin "14" (uuid c888a867-142c-470a-96e7-dbc940b92b7b)) + (pin "15" (uuid b318a08c-35e8-4055-bfd7-5665bef644f2)) + (pin "16" (uuid f7f82959-720d-48c7-af25-53e579853406)) + (pin "17" (uuid a1929cd2-0b5c-46ce-94f7-1dab475cc46b)) + (pin "18" (uuid c0f6f9f8-9302-41e8-8d6a-f2aaf79e617a)) + (pin "19" (uuid 8d204f68-75ea-40f3-a183-d1661d6e2c2c)) + (pin "20" (uuid 78fe9cea-e94e-49e8-a7cc-f46ce6ac6e24)) + (pin "21" (uuid bca2abeb-c2a6-4bb5-a450-f04dda65f4ec)) + (pin "22" (uuid b2b8add6-f513-4592-8c4f-ffed9b48eb0e)) + (pin "23" (uuid 526db9b2-fb5c-4c18-a912-8da274ab0c0b)) + (pin "24" (uuid 4cdf6a4b-2f89-49b5-b7ca-a38f2bab7e97)) + (pin "25" (uuid ec949126-1aaa-4da7-ad58-60e1fe6ed59d)) + (pin "26" (uuid 775499b5-94a1-496b-ac83-c4975eb76519)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 689.61 204.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8c9cfe4-dfe5-4f34-b7a2-771b2850f5ae) + (property "Reference" "U32" (id 0) (at 691.6294 187.96 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 691.6294 191.77 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 689.61 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 689.61 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f5c4c2d8-4a02-4885-a968-458def50cff3)) + (pin "2" (uuid 5a9181c6-18a3-4963-b83a-5019240dd426)) + (pin "3" (uuid 9f01d599-d6c6-4baf-ab8c-c2990484d6d5)) + (pin "4" (uuid df1f79e9-660f-4fe0-82c4-70e00c7c4710)) + (pin "5" (uuid 41da16db-786a-4018-b43f-58bd6d09f48e)) + (pin "6" (uuid 443294f3-600b-4bc7-bd35-edc0366888cc)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c97ae990-9ea4-401a-8b7c-0ebe206b82dc) + (property "Reference" "U12" (id 0) (at 622.3 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 133cc734-10cd-4c4c-9304-60b9e69443f2)) + (pin "2" (uuid 4915b223-1e4f-406b-863c-5bf33ce354bb)) + (pin "3" (uuid e70801bb-5b80-411c-b5fb-7959b8eda314)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 288.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc043456-31fe-443d-bf1a-9fea786a6fd8) + (property "Reference" "U21" (id 0) (at 622.3 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 934f35ef-a4b0-49c3-ab4f-e8449a56835f)) + (pin "2" (uuid 10060ea5-5ac5-49c3-8e90-d3a1277d15e5)) + (pin "3" (uuid df45ab4c-49ee-4308-9f90-8615193e33a5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 488.95 251.46 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cdb5644e-d079-4500-9430-0316977af1ee) + (property "Reference" "U1" (id 0) (at 489.585 246.38 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 489.585 248.92 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 488.95 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 488.95 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 318aef5a-c32d-468f-8b31-038971a9b416)) + (pin "2" (uuid 9cb9b131-1bf1-4955-80ed-eca0340fedd7)) + (pin "3" (uuid 5437a0b1-aecc-479e-8d6c-f9f1c2592220)) + (pin "4" (uuid d7aab51d-6276-4819-a0a3-f12fcaf9c05c)) + (pin "5" (uuid a47a64ab-cdf1-4aed-975e-49abfb7fe47d)) + (pin "6" (uuid 73713fc4-b456-46f2-b1bb-aa106b936d15)) + (pin "7" (uuid 56380aa7-022e-449c-a411-0abfbfa5df01)) + (pin "8" (uuid 14d1c4fc-dd07-4bd8-a144-56a7a41c51db)) + (pin "9" (uuid 5a8d5056-3160-42b5-8cf7-5bf0f71974c5)) + (pin "10" (uuid 51e5d358-4bd7-44cc-92c5-80fec2fd3b59)) + (pin "11" (uuid f59ddf64-4b9e-4918-925b-7a88ab4f55d2)) + (pin "12" (uuid 0839658b-a8f0-48f8-9ace-6394ac706552)) + (pin "13" (uuid 0e432aa5-f32e-4e30-8205-22a231ae5604)) + (pin "14" (uuid 108b26a9-ff0a-46b1-9644-a7d836eb56b1)) + (pin "15" (uuid 6998b79b-2e49-4376-94d2-629cc9f04982)) + (pin "16" (uuid 1ccfc916-3b5a-454e-a85b-892fe41d7520)) + (pin "17" (uuid 54d73308-6ad3-431f-b8f1-85b4279cb3d5)) + (pin "18" (uuid b08d471a-3c40-49e6-8b03-6deaec4a7c30)) + (pin "19" (uuid 2f633d31-3529-47d6-b8c5-fb70a4afb4d5)) + (pin "20" (uuid bce46885-aa38-48b9-97b1-fca2d35dc5b9)) + (pin "21" (uuid d71f2480-812e-4b88-99b7-d24dffdce1b2)) + (pin "22" (uuid 9feb9ee6-b866-4a34-a7fb-618e1f8c2cd0)) + (pin "23" (uuid 40e52817-6f82-431a-a2d2-6f9c12217f83)) + (pin "24" (uuid 22d58dce-0a58-4904-b385-8596f7148598)) + (pin "25" (uuid 2c65a63d-b7cd-4625-a18d-fb2c26cfbb37)) + (pin "26" (uuid faa6cb8e-28b5-46da-9383-63de5c34fc87)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 488.95 54.61 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d0dcc5a3-f80c-4e3e-aa59-7a2d9b9e93f8) + (property "Reference" "U1" (id 0) (at 489.585 49.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 489.585 52.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 488.95 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 488.95 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 051ca0a2-514a-484a-ab76-304b5ff80a76)) + (pin "2" (uuid 6581b676-50d9-4fec-b8f2-eb41e3c42736)) + (pin "3" (uuid 567e6844-9839-4901-b785-363f7f571b23)) + (pin "4" (uuid c3ddc8a4-f276-4fd4-a945-73658db13fa9)) + (pin "5" (uuid b938083b-f34e-4087-b345-10ce8781f6df)) + (pin "6" (uuid aa7d23f9-1013-40e7-b114-eb72710f786c)) + (pin "7" (uuid 0c0ae5ef-f7b0-4f18-bdc4-e1a2885028f4)) + (pin "8" (uuid 5ff0b018-8519-447a-9044-a5a1944cba77)) + (pin "9" (uuid af88eea9-0095-47e4-94a0-411632c30717)) + (pin "10" (uuid 6ba6be6a-d1fa-4121-8647-af7bd996d7a3)) + (pin "11" (uuid e76c4704-499a-4c23-9635-e3630d889a74)) + (pin "12" (uuid 2483a40d-0291-4155-8178-bdefa63a591e)) + (pin "13" (uuid 65a41509-8d7b-4fe7-a68e-bbeaea6ed963)) + (pin "14" (uuid 38d1bb58-1e2e-4f6b-8b55-16ae7de13606)) + (pin "15" (uuid dab33679-d172-4ae1-b600-42620b8a74cc)) + (pin "16" (uuid 8487a72e-b51d-4039-8c27-084e1f18d363)) + (pin "17" (uuid 5e1f166d-b19c-4621-93c7-0b60d13172c7)) + (pin "18" (uuid 7b9e6b0d-c2da-4e95-adcf-7ed540ce83b5)) + (pin "19" (uuid a2db13ea-7fcf-4b6e-a798-f7426d982f83)) + (pin "20" (uuid fc79efa3-229d-4257-8526-a5aac58c0d90)) + (pin "21" (uuid 3547598a-ca50-4541-a68c-d41ab4c44259)) + (pin "22" (uuid 0285bc5b-83c0-492a-8a5b-8860d5007c20)) + (pin "23" (uuid 2d4f0b54-bfc2-4f86-b659-aa53ea5e8745)) + (pin "24" (uuid 8a99639f-3a27-4301-9a7b-207627f243b8)) + (pin "25" (uuid 80cfb973-ec05-4ff8-ace6-005571796803)) + (pin "26" (uuid ff3006b0-359b-4a73-bd47-9c3ada07e6ab)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 689.61 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2483d8f-3942-4287-b32a-e92b684cb4d2) + (property "Reference" "U31" (id 0) (at 691.6294 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 691.6294 142.24 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 689.61 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 689.61 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d21d00d4-d8c0-410c-8d8e-9a09f79bb811)) + (pin "2" (uuid 2fd9c653-a5b8-4758-9662-30f97e8bbf4d)) + (pin "3" (uuid bda84643-3362-423f-aa6f-e8a203652725)) + (pin "4" (uuid 6989ce45-7404-42eb-9b6f-1c932d6277fe)) + (pin "5" (uuid 828ee572-20fb-4a96-8e4e-e93bd9a1ae97)) + (pin "6" (uuid 738376a4-c347-4d84-9072-ed0f84cdecd0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 591.82 170.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2862414-dfe9-449d-a13c-16243898aca3) + (property "Reference" "U7" (id 0) (at 591.82 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 591.82 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 593.09 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 593.09 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2289967b-07e7-4d31-b254-61fb51ed25ef)) + (pin "2" (uuid 815907ec-69e9-436b-afdf-44ab80f3bde0)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 689.61 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d42f2209-b4ed-44c7-ac34-9564c1b62c7f) + (property "Reference" "U30" (id 0) (at 691.6294 90.17 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 691.6294 93.98 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 689.61 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 689.61 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f6a15625-0752-4999-9364-11e8eb324204)) + (pin "2" (uuid de8ec28f-84e7-492d-ba93-a7e5cc872903)) + (pin "3" (uuid ecbd8218-5e5e-48b5-b6fd-a49b19daa94e)) + (pin "4" (uuid 37f3a075-7251-48a6-a03a-986fb587708b)) + (pin "5" (uuid 20c27b7f-adab-4968-baa5-7a202d886b81)) + (pin "6" (uuid 7ecec594-1f9c-40c2-b9fa-9cd53bb80ce8)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 651.51 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d92c3006-9faf-4b67-9c98-039abeada619) + (property "Reference" "U25" (id 0) (at 651.51 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 651.51 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 651.51 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 651.51 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3bc56948-1106-4961-8a4f-bcbac74be48d)) + (pin "2" (uuid 179f9fa1-4213-4e69-af64-61ff089e8647)) + (pin "3" (uuid 05dc5196-0a7d-44f2-b379-67edcbcc8e06)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 490.22 382.27 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9746da1-c88a-4ae2-8d04-f4615aed1dd8) + (property "Reference" "U1" (id 0) (at 490.855 377.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 490.855 379.73 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 490.22 382.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 490.22 382.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a72fe6a-2a3c-4a55-ae6c-0bf23dd73219)) + (pin "2" (uuid 19bc44ae-fdc6-4d08-bc84-7662452c2376)) + (pin "3" (uuid 500fc172-e7be-4abb-8f47-545ebe54cf82)) + (pin "4" (uuid d3a05976-0afe-42b8-9067-ae5762b7b738)) + (pin "5" (uuid b901994a-0fc7-44c7-b91b-d63ab180b6de)) + (pin "6" (uuid 52cfacf4-f506-4f22-b615-5e6fde8f6c61)) + (pin "7" (uuid 800a6c4d-a90d-4c76-ac90-d34315e95c13)) + (pin "8" (uuid 9ac0d3a0-3a89-40d9-b748-984dc6f94c01)) + (pin "9" (uuid ee57656d-3e3d-4f17-ace7-3fa64974a801)) + (pin "10" (uuid 708f0f96-bf81-474e-8ff9-7832722da037)) + (pin "11" (uuid cc1433f5-d013-4e9e-9ddc-9db1c5851ce8)) + (pin "12" (uuid 327a057c-e7f4-4726-87a8-28b4c459a23e)) + (pin "13" (uuid b67dfbb4-a9f1-4bab-961b-dd9a316e4096)) + (pin "14" (uuid c31ef824-d0ba-4692-bb9d-cc9497624d13)) + (pin "15" (uuid c368e834-da50-426b-9596-daf123fc3c37)) + (pin "16" (uuid ab8e9bbe-f116-4c96-860d-878fee5f9d73)) + (pin "17" (uuid b55515a0-010b-4b60-b897-e80099231083)) + (pin "18" (uuid 6c2b476d-7e9f-4d67-b884-a13d406d1bfb)) + (pin "19" (uuid 2aec923d-a6f3-40d5-8ee1-e0dd22c14a1b)) + (pin "20" (uuid 36b5afd3-0410-4d03-94c0-2e48ce5a6abf)) + (pin "21" (uuid 05a8e181-b36c-4633-be43-85a36123f4e9)) + (pin "22" (uuid 120766d9-a07a-490d-b0be-638c6df2e916)) + (pin "23" (uuid fb7aa2a0-e356-4f0f-b44c-07ba8114465c)) + (pin "24" (uuid 5373bf0f-766f-4212-98e0-0bc85a7012d5)) + (pin "25" (uuid d22beec9-f7bd-4cbe-bdb1-a6a7cb3de3e0)) + (pin "26" (uuid 09d5a91a-d471-4eba-9dd2-f6a88e579df2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 749.3 195.58 180) (unit 19) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d986a773-5a74-45d8-98f4-863e8295c349) + (property "Reference" "U1" (id 0) (at 753.11 194.945 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 753.11 197.485 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 749.3 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 749.3 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8636fd31-6cc1-4bdf-ac16-295964ee3978)) + (pin "2" (uuid 2421e714-3318-43b5-9897-582c9be25048)) + (pin "3" (uuid 8eb259f3-dbca-4171-ab4e-77e4ebb11ab1)) + (pin "4" (uuid 0bdf9300-0695-4d5c-91e6-b1a2e7e46933)) + (pin "5" (uuid 415bc005-8897-4740-9b1d-ea7ecb384f1c)) + (pin "6" (uuid 26014364-9e6b-4130-9843-dd90a551f1ad)) + (pin "7" (uuid df4faec4-8563-4cb6-bb79-b9070723ff49)) + (pin "8" (uuid 851f0423-47be-4a81-b6d3-e959b34ee1a0)) + (pin "9" (uuid 1d440894-9e0d-4232-bda3-781d6cbed36e)) + (pin "10" (uuid 6b79d64b-c5bf-4b30-9b31-9f4543095244)) + (pin "11" (uuid ff3c056f-b198-44ee-bacd-f2a979ec8a44)) + (pin "12" (uuid 530d117e-c5d5-4f95-be1c-532c45083109)) + (pin "13" (uuid 09d99187-83b6-4e42-bc3e-777437fe48a6)) + (pin "14" (uuid e4aa6645-ddf0-40f0-ab81-005cf1f86b42)) + (pin "15" (uuid b414d6ea-2b46-4166-84f9-30157a253b44)) + (pin "16" (uuid 99b35aa4-8783-4a79-a6d5-1cf19c2bce27)) + (pin "17" (uuid 91b86329-2742-4379-89ab-935551801d89)) + (pin "18" (uuid c14c2d21-cacf-4763-9bc1-3ae9036a4909)) + (pin "19" (uuid da536005-67f2-40ac-b3aa-f7bca6bbd998)) + (pin "20" (uuid 90bed4ff-b812-4f78-add9-16b5e4cdb777)) + (pin "21" (uuid 5d42a645-1a6c-478e-9ae4-1201838bd7c0)) + (pin "22" (uuid 4c689d5f-4f7d-4cb1-8964-70555d0a44d3)) + (pin "23" (uuid 0bd76f79-7b91-4f66-8323-593efb2304c3)) + (pin "24" (uuid 0fda32b4-963a-488c-a44c-1d7553d9fd72)) + (pin "25" (uuid ab9cad19-3380-4c28-a497-3b3f66fa4f1a)) + (pin "26" (uuid bc223cd5-ad87-4281-a59a-c7a8fbd8a488)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 204.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db6dcb92-cdbf-4391-b1cc-0c7ea7c1fea7) + (property "Reference" "U18" (id 0) (at 622.3 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 90089895-2749-4d06-bd7c-8b77d1698af3)) + (pin "2" (uuid eef0fdae-db61-4e60-80c5-a08dfebfe0bf)) + (pin "3" (uuid eddc3bf9-cdf7-4c8a-b847-3e0b087d605b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 492.76 201.93 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dbd2cf07-b114-48be-a9e1-cc548aae379e) + (property "Reference" "U1" (id 0) (at 493.395 196.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 493.395 199.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 492.76 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 492.76 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 920d26ca-3ca5-4ef5-b556-21db6667c042)) + (pin "2" (uuid 30718670-92d5-41e3-9114-0723e7fafac6)) + (pin "3" (uuid 9b69f92e-f96a-4b42-a537-612ba6800516)) + (pin "4" (uuid 27bdb22e-a9a7-45b8-9a9a-1a4c66c541fd)) + (pin "5" (uuid 68c54318-36b8-4e3a-ab92-a8b65f58153a)) + (pin "6" (uuid fa420d17-9734-469a-ab57-7bae339673ed)) + (pin "7" (uuid a52eff43-1e2e-47c3-bb94-d84e6a87f262)) + (pin "8" (uuid 6c4fea86-ed5e-4f06-938c-58c05a849740)) + (pin "9" (uuid cb4d091c-45ac-4ae9-8b04-d389710de0de)) + (pin "10" (uuid 95085eb7-d429-40df-ab73-774fcdf9c0c9)) + (pin "11" (uuid 9b1095ef-c45e-4675-b4f8-d2696255d1fe)) + (pin "12" (uuid 18e0ace4-d7d0-486e-9222-be7fc44d0951)) + (pin "13" (uuid 80fbf906-8374-49c2-a7f2-7e2f2da837a8)) + (pin "14" (uuid 5ad339dd-efcf-4993-b314-97913aadea7b)) + (pin "15" (uuid fc001d1e-c10b-4089-8a39-4c9576c5e4eb)) + (pin "16" (uuid 45fa3f4c-f888-4665-9b8c-e550639a95a8)) + (pin "17" (uuid bb946cea-c2b3-44af-a02d-854f60bced87)) + (pin "18" (uuid 1309ca6b-c9e8-4225-9b97-e12de1031f55)) + (pin "19" (uuid aa797116-06c3-48d4-af42-50a0848d018e)) + (pin "20" (uuid 4fe56cc1-051c-45e3-9404-a6d99da22f11)) + (pin "21" (uuid 8ad44a3b-7ac1-4e54-bcff-0f94ce1b0b74)) + (pin "22" (uuid 80b917b9-107c-4181-8dae-7a0ac020beec)) + (pin "23" (uuid 0144cc8d-7e15-4491-b370-386a0eb431d7)) + (pin "24" (uuid 9d48b4ba-c62e-4d96-8734-100e922e71c4)) + (pin "25" (uuid 37e1564e-32e2-4c02-82cd-0601cee4c8b3)) + (pin "26" (uuid 530b4080-97f3-445a-a37b-d0399ac05f19)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 689.61 254 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e3216757-efcd-4495-bbd7-6e21707ecac7) + (property "Reference" "U33" (id 0) (at 691.6294 237.49 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 691.6294 241.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 689.61 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 689.61 254 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e6d8b538-6df8-4f35-9c16-89c6a8622ff6)) + (pin "2" (uuid 88c2b348-c97c-4091-8386-980a883646c8)) + (pin "3" (uuid ae3dfb96-0614-4089-bd2a-ff7d98987545)) + (pin "4" (uuid 6b8868b7-1339-4148-a047-f1ca69b1f554)) + (pin "5" (uuid 96280f5c-9d5c-44c2-9bac-4c3f021ec7c8)) + (pin "6" (uuid 639541b7-a27c-4516-861c-f35d15942b36)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 751.84 146.05 180) (unit 20) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ec84a115-f6a0-46cf-be67-19ff59e8a135) + (property "Reference" "U1" (id 0) (at 755.65 145.415 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 755.65 147.955 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 751.84 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 751.84 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a9ef6ca5-ced6-4484-a584-c2bf1e8048e5)) + (pin "2" (uuid fcfdfbd6-cc55-451a-8fe7-97b7086d939d)) + (pin "3" (uuid 0963d1f1-0c40-4c2d-893c-3bc46acee00d)) + (pin "4" (uuid 14978d6f-c49a-4259-88ca-7cee1f75c101)) + (pin "5" (uuid cbabfdb1-acda-4196-8457-e71dab87f58b)) + (pin "6" (uuid b7e38c5c-d6db-4f1d-9de2-d02a9009a62c)) + (pin "7" (uuid d34fcd7d-391c-4da9-bfab-fdd24a461aa6)) + (pin "8" (uuid 7d810704-9604-4cc6-b160-de13154f09c6)) + (pin "9" (uuid 0c05a4c7-50c5-469d-a119-396ca0dafe9c)) + (pin "10" (uuid f58d01c0-97db-478f-8e53-8036a0adc48c)) + (pin "11" (uuid 0ddcda14-236d-48b2-9930-be1d0a1010d0)) + (pin "12" (uuid 1c26d399-2cb6-4206-a334-e82b4399038d)) + (pin "13" (uuid d1d9af6d-a27e-48ff-af25-e79770a9cd8a)) + (pin "14" (uuid 585f85ca-a462-4f2a-b4b5-c4f94b69af9c)) + (pin "15" (uuid c40e5939-9699-49f3-a204-6315bb525b52)) + (pin "16" (uuid ff21ce05-075a-43c1-b621-c38766b16479)) + (pin "17" (uuid 60b54528-204e-44d7-bbe8-a8f30c818644)) + (pin "18" (uuid d6c8c17e-3e2c-4e8c-ab7d-59b3653cc236)) + (pin "19" (uuid 5079b41c-0eb7-4521-8a22-4f07e6b12b6f)) + (pin "20" (uuid 456a4ce1-f2e9-4d45-9bc3-7b0b98e6df8c)) + (pin "21" (uuid 60ad9edb-63ff-420c-b5a7-4c34b2ee3f37)) + (pin "22" (uuid 57bb7012-eead-4754-bb98-efbccfc7277f)) + (pin "23" (uuid 08b70f47-7dd9-465e-83cd-d5c121bcc05c)) + (pin "24" (uuid 84f05d3d-b64e-45f3-8293-bc3a7a9fa90d)) + (pin "25" (uuid 760e177d-f305-4540-bdfe-a30edca72beb)) + (pin "26" (uuid fc9c5ee2-1ce5-47a1-822c-bcfd8a374b7b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 495.3 152.4 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f507ded8-5249-4623-bb88-f4ec03a37abe) + (property "Reference" "U1" (id 0) (at 495.935 147.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 495.935 149.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 495.3 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 495.3 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f07f0aab-95ff-4f58-82a0-1248ecf75dfd)) + (pin "2" (uuid b9cff657-44f2-4776-8068-eef2344dee75)) + (pin "3" (uuid 2fa6191c-e5a6-4d7e-863f-de0cf90d44ee)) + (pin "4" (uuid 5df716c3-921c-4c51-8cfd-bcedd3e04ce7)) + (pin "5" (uuid 1fc318ba-4c20-482b-8e6e-4b11e27ecbda)) + (pin "6" (uuid e4b7c294-b237-48a1-b5b4-1d4674bb5b1b)) + (pin "7" (uuid e0e22bea-81da-4aed-a64a-e6e7746f1dab)) + (pin "8" (uuid 255b13e8-0a55-47a7-86b1-fd62ad724101)) + (pin "9" (uuid 7bb99832-ae7b-4cb7-8fec-316af6413684)) + (pin "10" (uuid 1847e561-c403-4a14-bb06-45d0fb36749c)) + (pin "11" (uuid 9b2ded53-4ede-4ff4-89d8-f6fbd640999a)) + (pin "12" (uuid d4c3c58e-0695-494c-b609-05da6a1c72e3)) + (pin "13" (uuid f4e57c6c-15be-418f-997d-97f94d2b7569)) + (pin "14" (uuid f3692d3e-5d0b-4df7-b7de-88c8dfc7e58f)) + (pin "15" (uuid 8d98ca4c-06b3-46fb-a82b-6ea9cf42e90f)) + (pin "16" (uuid d1f95e4e-21e6-4389-ada0-8c27579bcc2b)) + (pin "17" (uuid 659cb198-cb80-4660-905e-c15f9201c973)) + (pin "18" (uuid 602e1251-560f-403b-9c3a-eaaec6f17121)) + (pin "19" (uuid ef58a780-b08c-414e-94a1-e411a52c530e)) + (pin "20" (uuid 6c5316e9-e145-40dc-94a8-9f3e21bc7539)) + (pin "21" (uuid fbf89448-1ff6-43cf-a833-758349566ac1)) + (pin "22" (uuid 13d5571e-f0dc-4401-ac72-eb1f66e7c030)) + (pin "23" (uuid 5c4c05ec-0370-426d-ae5e-b39f86ab6d51)) + (pin "24" (uuid 9a22920d-73cc-47bf-bcf4-160f87743313)) + (pin "25" (uuid 85ce1747-96b3-4133-ba6d-5a361fde9d8e)) + (pin "26" (uuid 041a15f7-f982-4d23-be2f-aa6fb294aeeb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 490.22 346.71 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fa312d4e-1e21-41c5-b586-4910c40fc7a6) + (property "Reference" "U1" (id 0) (at 490.855 341.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 490.855 344.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 490.22 346.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 490.22 346.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f1025e4b-3491-49c4-ba90-9ce718154a6c)) + (pin "2" (uuid f5ae315c-6703-4947-aca9-b42bf8a539ea)) + (pin "3" (uuid 3c51a8bc-6d5e-4084-a961-8b8ce9ffbb75)) + (pin "4" (uuid bcf26f24-30b5-4c0a-a567-8c95437531d3)) + (pin "5" (uuid d79fe71d-75e7-4232-9f02-710fea639ea5)) + (pin "6" (uuid a384a2dc-4580-43c8-9a74-0fd56d61c33f)) + (pin "7" (uuid a4c3c4d1-fea0-4e69-95e9-f3914d2dc129)) + (pin "8" (uuid 6ea339a6-b01f-48ea-afc5-60a833530188)) + (pin "9" (uuid 6fa4d8ab-ab97-4b7a-9442-4a5a583aa837)) + (pin "10" (uuid d0eea058-d057-4139-89e2-19ae7c6015f9)) + (pin "11" (uuid d559f192-9192-41b3-be21-785ae41a1002)) + (pin "12" (uuid 939c9c5f-2a82-4693-bb07-99e779c9f705)) + (pin "13" (uuid f12e4852-d676-483b-a6ce-e9825faf8a8d)) + (pin "14" (uuid 623376ec-db8e-4431-abb9-86337dec85ce)) + (pin "15" (uuid 6abc293a-1ed5-46cb-8695-28262640b8ee)) + (pin "16" (uuid e6c25ed2-044f-48ac-8821-9f74c7e171e1)) + (pin "17" (uuid 41b56e3f-256a-4b35-a0f7-a8a0e36f1cca)) + (pin "18" (uuid ff074c9c-56d6-4251-b987-49affcf6ddbb)) + (pin "19" (uuid 8505277e-83a8-4467-acec-0870b2264923)) + (pin "20" (uuid 6e11dc00-6572-4128-9874-7b290a5e075b)) + (pin "21" (uuid 3443dd72-6af1-4e1a-8bf0-1dc8b7ec5299)) + (pin "22" (uuid 04c64121-153f-4582-a500-de35bf895537)) + (pin "23" (uuid 31b9b683-617b-43cf-bd04-69adabc3486a)) + (pin "24" (uuid 4e8abff1-a0f5-4a66-81dc-19d0668e1319)) + (pin "25" (uuid 2d2da908-c56a-4100-ab8b-ef38bbfe28b4)) + (pin "26" (uuid 2a948336-6b36-4dfa-bba1-248abf6fb307)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 622.3 41.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fa95283e-4f52-401f-8543-e7cb2aef2983) + (property "Reference" "U11" (id 0) (at 622.3 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 622.3 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2237cf9d-3ffa-4fc6-81b7-5e1b04090124)) + (pin "2" (uuid f1d8a5fc-048a-48d4-b79d-01f7d84f7e07)) + (pin "3" (uuid e76b63c9-6ffb-4a9e-a2f7-c53a5cbf4264)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 689.61 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fadac7d1-0376-4c01-bee4-983f0fc5b72e) + (property "Reference" "U29" (id 0) (at 691.6294 40.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 691.6294 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 689.61 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 689.61 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ade9a92f-9af3-42da-a976-dc7994ddff7f)) + (pin "2" (uuid 412189ff-a1a8-42e5-a624-f930048b2215)) + (pin "3" (uuid 267eb344-1fb4-4b46-8c1f-6c2c047f54e1)) + (pin "4" (uuid 369182e9-481f-483e-aa49-851f67b47dac)) + (pin "5" (uuid 160697c4-c9c7-49b5-9f12-0cfd602ebf6f)) + (pin "6" (uuid dd9c7eb4-d580-46e7-8612-41ab0d1fc69a)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 528.32 346.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fd642dc9-604d-4f92-94d4-ac4ab7b2ec5c) + (property "Reference" "U2" (id 0) (at 530.225 336.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 530.225 340.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 528.32 346.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 528.32 346.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4b540baa-e785-4a97-b909-444f5ab1e03f)) + (pin "2" (uuid 9304dda6-dec0-4117-8ea7-9c26021eb273)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/c880fe7d-1993-4d38-9667-f92025e9a9fa" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/d0dcc5a3-f80c-4e3e-aa59-7a2d9b9e93f8" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/5a235813-fe98-46c1-95cf-5f8c97199e53" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/9d0712c2-5800-4b54-a496-a315d623b930" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/b6407310-9376-44fe-8d69-d66e9fc01207" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/f507ded8-5249-4623-bb88-f4ec03a37abe" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/6b957ae1-d23d-4f8a-8621-8a779816fb85" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/dbd2cf07-b114-48be-a9e1-cc548aae379e" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/9d667aea-12d4-48f4-b569-3adbde8b642a" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/cdb5644e-d079-4500-9430-0316977af1ee" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/3c639acc-8ece-4a0e-a4bf-2bc7351e6ec2" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/3ac1e2c6-e07b-4e51-8b88-1aab78a7f8b0" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/fa312d4e-1e21-41c5-b586-4910c40fc7a6" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/d9746da1-c88a-4ae2-8d04-f4615aed1dd8" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/5b35ec9a-8670-4bfa-9db7-8cd7c4e1e10e" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/42091359-7ac7-4a35-bcf6-473d98170065" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/6a8a8bf8-5348-4a23-89e3-554fe25f3014" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/65cbd6fd-e9f4-437f-a467-61f90fde49ed" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/d986a773-5a74-45d8-98f4-863e8295c349" + (reference "U1") (unit 19) (value "PORT") (footprint "") + ) + (path "/ec84a115-f6a0-46cf-be67-19ff59e8a135" + (reference "U1") (unit 20) (value "PORT") (footprint "") + ) + (path "/72e154b3-efdd-4d5c-9a05-a65ba12f81d5" + (reference "U1") (unit 21) (value "PORT") (footprint "") + ) + (path "/bb75b71c-830d-4bca-9066-548f265d8f88" + (reference "U1") (unit 22) (value "PORT") (footprint "") + ) + (path "/fd642dc9-604d-4f92-94d4-ac4ab7b2ec5c" + (reference "U2") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/a71de703-7e10-4cb6-8e4f-18b3a294ba06" + (reference "U3") (unit 1) (value "d_or") (footprint "") + ) + (path "/a73831d8-f095-4183-9711-d758fe2b91b2" + (reference "U4") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/7ce606a2-1e26-40ab-a60b-bc618bbb0779" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/974731a9-bbb8-416f-9a25-0c30d8ab07d4" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d2862414-dfe9-449d-a13c-16243898aca3" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4655c67a-6b0a-4d9e-89f9-5d3bbc4efb7f" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/18c3c7b0-aca9-484a-8ea3-1107099aef13" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bce3e1b3-5d6d-4f93-8697-8466a3707777" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/fa95283e-4f52-401f-8543-e7cb2aef2983" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/c97ae990-9ea4-401a-8b7c-0ebe206b82dc" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/c7fb65f6-70fa-4411-8573-953a9e10d84f" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + (path "/7b76c1c6-e4a6-46f4-9361-5a9ef5b9b839" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/250f1a53-5792-4309-91f2-19a844628ca2" + (reference "U15") (unit 1) (value "d_and") (footprint "") + ) + (path "/94e384f4-1c79-4347-8fc6-7d01a4cc9c33" + (reference "U16") (unit 1) (value "d_and") (footprint "") + ) + (path "/01b1b38e-2b94-4f30-b22a-5c33d73731c2" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/db6dcb92-cdbf-4391-b1cc-0c7ea7c1fea7" + (reference "U18") (unit 1) (value "d_and") (footprint "") + ) + (path "/bf2454ea-2dd2-4c76-901c-e9a9269e2e07" + (reference "U19") (unit 1) (value "d_and") (footprint "") + ) + (path "/132603d6-8c06-4da5-b026-94b19c129708" + (reference "U20") (unit 1) (value "d_and") (footprint "") + ) + (path "/cc043456-31fe-443d-bf1a-9fea786a6fd8" + (reference "U21") (unit 1) (value "d_and") (footprint "") + ) + (path "/a48e1556-b6f7-4004-8a02-7b026b5571ca" + (reference "U22") (unit 1) (value "d_and") (footprint "") + ) + (path "/10a270d1-4c34-456e-97c9-7016d4472ff8" + (reference "U23") (unit 1) (value "d_or") (footprint "") + ) + (path "/81d62144-9385-4554-80c5-0f1ae7b547ad" + (reference "U24") (unit 1) (value "d_or") (footprint "") + ) + (path "/d92c3006-9faf-4b67-9c98-039abeada619" + (reference "U25") (unit 1) (value "d_or") (footprint "") + ) + (path "/4c755c46-be92-4048-af27-78dad16b5033" + (reference "U26") (unit 1) (value "d_or") (footprint "") + ) + (path "/8ab377e3-59d7-4827-b84f-004cfaa01ca0" + (reference "U27") (unit 1) (value "d_or") (footprint "") + ) + (path "/1aea6b04-3458-4d2d-a851-07fb2b177031" + (reference "U28") (unit 1) (value "d_or") (footprint "") + ) + (path "/fadac7d1-0376-4c01-bee4-983f0fc5b72e" + (reference "U29") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/d42f2209-b4ed-44c7-ac34-9564c1b62c7f" + (reference "U30") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/d2483d8f-3942-4287-b32a-e92b684cb4d2" + (reference "U31") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/c8c9cfe4-dfe5-4f34-b7a2-771b2850f5ae" + (reference "U32") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/e3216757-efcd-4495-bbd7-6e21707ecac7" + (reference "U33") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/a7cd4e60-4eee-4555-9280-125af15c4f9f" + (reference "U34") (unit 1) (value "d_dlatch") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.sub b/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.sub new file mode 100644 index 000000000..d2c342bcc --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155.sub @@ -0,0 +1,138 @@ +* Subcircuit IC_MC10E155 +.subckt IC_MC10E155 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ net-_u1-pad20_ net-_u1-pad21_ net-_u1-pad22_ +.title kicad schematic +* u27 net-_u19-pad3_ net-_u20-pad3_ net-_u27-pad3_ d_or +* u33 net-_u27-pad3_ net-_u29-pad2_ unconnected-_u33-pad3_ net-_u29-pad4_ net-_u1-pad18_ unconnected-_u33-pad6_ d_dlatch +* u32 net-_u26-pad3_ net-_u29-pad2_ unconnected-_u32-pad3_ net-_u29-pad4_ net-_u1-pad19_ unconnected-_u32-pad6_ d_dlatch +* u26 net-_u17-pad3_ net-_u18-pad3_ net-_u26-pad3_ d_or +* u18 net-_u1-pad8_ net-_u10-pad1_ net-_u18-pad3_ d_and +* u20 net-_u1-pad10_ net-_u10-pad1_ net-_u20-pad3_ d_and +* u19 net-_u1-pad9_ net-_u19-pad2_ net-_u19-pad3_ d_and +* u8 net-_u10-pad1_ net-_u17-pad2_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u4 net-_u1-pad14_ net-_u29-pad4_ d_buffer +* u3 net-_u1-pad15_ net-_u1-pad16_ net-_u29-pad2_ d_or +* u2 net-_u1-pad13_ net-_u10-pad1_ d_buffer +* u21 net-_u1-pad11_ net-_u10-pad2_ net-_u21-pad3_ d_and +* u22 net-_u1-pad12_ net-_u10-pad1_ net-_u22-pad3_ d_and +* u9 net-_u10-pad1_ net-_u19-pad2_ d_inverter +* u28 net-_u21-pad3_ net-_u22-pad3_ net-_u28-pad3_ d_or +* u34 net-_u28-pad3_ net-_u29-pad2_ unconnected-_u34-pad3_ net-_u29-pad4_ net-_u1-pad17_ unconnected-_u34-pad6_ d_dlatch +* u16 net-_u1-pad6_ net-_u10-pad1_ net-_u16-pad3_ d_and +* u15 net-_u1-pad5_ net-_u15-pad2_ net-_u15-pad3_ d_and +* u17 net-_u1-pad7_ net-_u17-pad2_ net-_u17-pad3_ d_and +* u7 net-_u10-pad1_ net-_u15-pad2_ d_inverter +* u29 net-_u23-pad3_ net-_u29-pad2_ unconnected-_u29-pad3_ net-_u29-pad4_ net-_u1-pad22_ unconnected-_u29-pad6_ d_dlatch +* u30 net-_u24-pad3_ net-_u29-pad2_ unconnected-_u30-pad3_ net-_u29-pad4_ net-_u1-pad21_ unconnected-_u30-pad6_ d_dlatch +* u31 net-_u25-pad3_ net-_u29-pad2_ unconnected-_u31-pad3_ net-_u29-pad4_ net-_u1-pad20_ unconnected-_u31-pad6_ d_dlatch +* u25 net-_u15-pad3_ net-_u16-pad3_ net-_u25-pad3_ d_or +* u24 net-_u13-pad3_ net-_u14-pad3_ net-_u24-pad3_ d_or +* u23 net-_u11-pad3_ net-_u12-pad3_ net-_u23-pad3_ d_or +* u6 net-_u10-pad1_ net-_u13-pad2_ d_inverter +* u5 net-_u10-pad1_ net-_u11-pad2_ d_inverter +* u12 net-_u1-pad2_ net-_u10-pad1_ net-_u12-pad3_ d_and +* u11 net-_u1-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_and +* u13 net-_u1-pad3_ net-_u13-pad2_ net-_u13-pad3_ d_and +* u14 net-_u1-pad4_ net-_u10-pad1_ net-_u14-pad3_ d_and +a1 [net-_u19-pad3_ net-_u20-pad3_ ] net-_u27-pad3_ u27 +a2 net-_u27-pad3_ net-_u29-pad2_ unconnected-_u33-pad3_ net-_u29-pad4_ net-_u1-pad18_ unconnected-_u33-pad6_ u33 +a3 net-_u26-pad3_ net-_u29-pad2_ unconnected-_u32-pad3_ net-_u29-pad4_ net-_u1-pad19_ unconnected-_u32-pad6_ u32 +a4 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u26-pad3_ u26 +a5 [net-_u1-pad8_ net-_u10-pad1_ ] net-_u18-pad3_ u18 +a6 [net-_u1-pad10_ net-_u10-pad1_ ] net-_u20-pad3_ u20 +a7 [net-_u1-pad9_ net-_u19-pad2_ ] net-_u19-pad3_ u19 +a8 net-_u10-pad1_ net-_u17-pad2_ u8 +a9 net-_u10-pad1_ net-_u10-pad2_ u10 +a10 net-_u1-pad14_ net-_u29-pad4_ u4 +a11 [net-_u1-pad15_ net-_u1-pad16_ ] net-_u29-pad2_ u3 +a12 net-_u1-pad13_ net-_u10-pad1_ u2 +a13 [net-_u1-pad11_ net-_u10-pad2_ ] net-_u21-pad3_ u21 +a14 [net-_u1-pad12_ net-_u10-pad1_ ] net-_u22-pad3_ u22 +a15 net-_u10-pad1_ net-_u19-pad2_ u9 +a16 [net-_u21-pad3_ net-_u22-pad3_ ] net-_u28-pad3_ u28 +a17 net-_u28-pad3_ net-_u29-pad2_ unconnected-_u34-pad3_ net-_u29-pad4_ net-_u1-pad17_ unconnected-_u34-pad6_ u34 +a18 [net-_u1-pad6_ net-_u10-pad1_ ] net-_u16-pad3_ u16 +a19 [net-_u1-pad5_ net-_u15-pad2_ ] net-_u15-pad3_ u15 +a20 [net-_u1-pad7_ net-_u17-pad2_ ] net-_u17-pad3_ u17 +a21 net-_u10-pad1_ net-_u15-pad2_ u7 +a22 net-_u23-pad3_ net-_u29-pad2_ unconnected-_u29-pad3_ net-_u29-pad4_ net-_u1-pad22_ unconnected-_u29-pad6_ u29 +a23 net-_u24-pad3_ net-_u29-pad2_ unconnected-_u30-pad3_ net-_u29-pad4_ net-_u1-pad21_ unconnected-_u30-pad6_ u30 +a24 net-_u25-pad3_ net-_u29-pad2_ unconnected-_u31-pad3_ net-_u29-pad4_ net-_u1-pad20_ unconnected-_u31-pad6_ u31 +a25 [net-_u15-pad3_ net-_u16-pad3_ ] net-_u25-pad3_ u25 +a26 [net-_u13-pad3_ net-_u14-pad3_ ] net-_u24-pad3_ u24 +a27 [net-_u11-pad3_ net-_u12-pad3_ ] net-_u23-pad3_ u23 +a28 net-_u10-pad1_ net-_u13-pad2_ u6 +a29 net-_u10-pad1_ net-_u11-pad2_ u5 +a30 [net-_u1-pad2_ net-_u10-pad1_ ] net-_u12-pad3_ u12 +a31 [net-_u1-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a32 [net-_u1-pad3_ net-_u13-pad2_ ] net-_u13-pad3_ u13 +a33 [net-_u1-pad4_ net-_u10-pad1_ ] net-_u14-pad3_ u14 +* Schematic Name: d_or, Ngspice Name: d_or +.model u27 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u33 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u32 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u26 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u2 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u28 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u34 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u16 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u29 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u30 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u31 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u25 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u24 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends IC_MC10E155 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155_Previous_Values.xml b/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155_Previous_Values.xml new file mode 100644 index 000000000..90816d243 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E155/IC_MC10E155_Previous_Values.xml @@ -0,0 +1 @@ +d_ord_dlatchd_dlatchd_ord_andd_andd_andd_inverterd_inverterd_ord_bufferd_bufferd_andd_andd_inverterd_ord_dlatchd_andd_andd_inverterd_andd_dlatchd_dlatchd_dlatchd_ord_ord_ord_inverterd_inverterd_andd_andd_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC10E155/README_IC_MC10E155.md b/library/SubcircuitLibrary/IC_MC10E155/README_IC_MC10E155.md new file mode 100644 index 000000000..402e8056e --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E155/README_IC_MC10E155.md @@ -0,0 +1,27 @@ +# IC_MC10E155 6-Bit 2:1 Multiplexer Latch + +IC_MC10E155 is a 28-pin IC. It is a high-speed 6-bit 2:1 multiplexer latch designed using ECL technology. It selects one of two 6-bit input data sources based on a single select line and stores the selected data in integrated latches with low propagation delay. + +## Usage/Examples + +- Data multiplexing systems +- High-speed data acquisition +- Telecommunications circuits +- Digital switching networks +- Signal routing applications +- Test and measurement systems + +## Documentation + +To know the details of IC_MC10E155 please go through the documentation: [MC10E155 Datasheet](https://www.onsemi.com/pdf/datasheet/mc10e155-d.pdf) + +## Comments/Notes + +Please note this is a high-speed ECL logic IC. The subcircuit implements the 2:1 multiplexer using d_mux2 and d_latch elements for each of the six bits. When SEL is HIGH, data source 'a' is selected; when LOW, data source 'b' is routed to the outputs. + +## Contributor + +Name: Santhosh C +Email: santhoshc.vlsi2024@citchennai.net +Year: 2026 +Position: FOSSEE eSim Intern 2026 diff --git a/library/SubcircuitLibrary/IC_MC10E155/analysis b/library/SubcircuitLibrary/IC_MC10E155/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E155/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC10E156/3_and-cache.lib b/library/SubcircuitLibrary/IC_MC10E156/3_and-cache.lib new file mode 100644 index 000000000..af0586415 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/3_and-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/IC_MC10E156/3_and.cir b/library/SubcircuitLibrary/IC_MC10E156/3_and.cir new file mode 100644 index 000000000..ba296cf01 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/3_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\3_and\3_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/26/19 18:42:57 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad4_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT + +.end diff --git a/library/SubcircuitLibrary/IC_MC10E156/3_and.cir.out b/library/SubcircuitLibrary/IC_MC10E156/3_and.cir.out new file mode 100644 index 000000000..d7cf79a07 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/3_and.cir.out @@ -0,0 +1,20 @@ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_MC10E156/3_and.pro b/library/SubcircuitLibrary/IC_MC10E156/3_and.pro new file mode 100644 index 000000000..00597a5ad --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/3_and.pro @@ -0,0 +1,43 @@ +update=05/31/19 15:26:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=eSim_Analog +LibName2=eSim_Devices +LibName3=eSim_Digital +LibName4=eSim_Hybrid +LibName5=eSim_Miscellaneous +LibName6=eSim_Plot +LibName7=eSim_Power +LibName8=eSim_User +LibName9=eSim_Sources +LibName10=eSim_Subckt diff --git a/library/SubcircuitLibrary/IC_MC10E156/3_and.sch b/library/SubcircuitLibrary/IC_MC10E156/3_and.sch new file mode 100644 index 000000000..d6ac89f95 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/3_and.sch @@ -0,0 +1,130 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:3_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U2 +U 1 1 5C9A24D8 +P 4250 2700 +F 0 "U2" H 4250 2700 60 0000 C CNN +F 1 "d_and" H 4300 2800 60 0000 C CNN +F 2 "" H 4250 2700 60 0000 C CNN +F 3 "" H 4250 2700 60 0000 C CNN + 1 4250 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 5C9A2538 +P 5150 2900 +F 0 "U3" H 5150 2900 60 0000 C CNN +F 1 "d_and" H 5200 3000 60 0000 C CNN +F 2 "" H 5150 2900 60 0000 C CNN +F 3 "" H 5150 2900 60 0000 C CNN + 1 5150 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 5C9A259A +P 3050 2600 +F 0 "U1" H 3100 2700 30 0000 C CNN +F 1 "PORT" H 3050 2600 30 0000 C CNN +F 2 "" H 3050 2600 60 0000 C CNN +F 3 "" H 3050 2600 60 0000 C CNN + 1 3050 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A25D9 +P 3050 2800 +F 0 "U1" H 3100 2900 30 0000 C CNN +F 1 "PORT" H 3050 2800 30 0000 C CNN +F 2 "" H 3050 2800 60 0000 C CNN +F 3 "" H 3050 2800 60 0000 C CNN + 2 3050 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A260A +P 3050 3100 +F 0 "U1" H 3100 3200 30 0000 C CNN +F 1 "PORT" H 3050 3100 30 0000 C CNN +F 2 "" H 3050 3100 60 0000 C CNN +F 3 "" H 3050 3100 60 0000 C CNN + 3 3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2637 +P 6900 2850 +F 0 "U1" H 6950 2950 30 0000 C CNN +F 1 "PORT" H 6900 2850 30 0000 C CNN +F 2 "" H 6900 2850 60 0000 C CNN +F 3 "" H 6900 2850 60 0000 C CNN + 4 6900 2850 + -1 0 0 1 +$EndComp +Wire Wire Line + 4700 2650 4700 2800 +Wire Wire Line + 5600 2850 6650 2850 +Wire Wire Line + 3800 2600 3300 2600 +Wire Wire Line + 3800 2700 3300 2700 +Wire Wire Line + 3300 2700 3300 2800 +Wire Wire Line + 3300 3100 4700 3100 +Wire Wire Line + 4700 3100 4700 2900 +Text Notes 3500 2600 0 60 ~ 12 +in1 +Text Notes 3450 2800 0 60 ~ 12 +in2\n +Text Notes 3500 3100 0 60 ~ 12 +in3 +Text Notes 6100 2850 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/IC_MC10E156/3_and.sub b/library/SubcircuitLibrary/IC_MC10E156/3_and.sub new file mode 100644 index 000000000..3d9120bb6 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/3_and.sub @@ -0,0 +1,14 @@ +* Subcircuit 3_and +.subckt 3_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC10E156/3_and_Previous_Values.xml b/library/SubcircuitLibrary/IC_MC10E156/3_and_Previous_Values.xml new file mode 100644 index 000000000..abc5faaae --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/3_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC10E156/4_OR-cache.lib b/library/SubcircuitLibrary/IC_MC10E156/4_OR-cache.lib new file mode 100644 index 000000000..155f5e601 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/4_OR-cache.lib @@ -0,0 +1,63 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_or +# +DEF d_or U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_or" 0 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/IC_MC10E156/4_OR.cir b/library/SubcircuitLibrary/IC_MC10E156/4_OR.cir new file mode 100644 index 000000000..b338b7b5f --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/4_OR.cir @@ -0,0 +1,14 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\4_OR\4_OR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/28/19 22:47:12 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_or +U3 Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U3-Pad3_ d_or +U4 Net-_U2-Pad3_ Net-_U3-Pad3_ Net-_U1-Pad5_ d_or +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ PORT + +.end diff --git a/library/SubcircuitLibrary/IC_MC10E156/4_OR.cir.out b/library/SubcircuitLibrary/IC_MC10E156/4_OR.cir.out new file mode 100644 index 000000000..adb6b01be --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/4_OR.cir.out @@ -0,0 +1,24 @@ +* c:\users\malli\esim\src\subcircuitlibrary\4_or\4_or.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_or +* u3 net-_u1-pad3_ net-_u1-pad4_ net-_u3-pad3_ d_or +* u4 net-_u2-pad3_ net-_u3-pad3_ net-_u1-pad5_ d_or +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a3 [net-_u2-pad3_ net-_u3-pad3_ ] net-_u1-pad5_ u4 +* Schematic Name: d_or, NgSpice Name: d_or +.model u2 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u3 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u4 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_MC10E156/4_OR.pro b/library/SubcircuitLibrary/IC_MC10E156/4_OR.pro new file mode 100644 index 000000000..881563ebd --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/4_OR.pro @@ -0,0 +1,44 @@ +update=06/01/19 12:36:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=power +LibName2=eSim_Analog +LibName3=eSim_Devices +LibName4=eSim_Digital +LibName5=eSim_Hybrid +LibName6=eSim_Miscellaneous +LibName7=eSim_Plot +LibName8=eSim_Power +LibName9=eSim_User +LibName10=eSim_Sources +LibName11=eSim_Subckt diff --git a/library/SubcircuitLibrary/IC_MC10E156/4_OR.sch b/library/SubcircuitLibrary/IC_MC10E156/4_OR.sch new file mode 100644 index 000000000..118968656 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/4_OR.sch @@ -0,0 +1,150 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_or U2 +U 1 1 5C9D00E1 +P 4300 2950 +F 0 "U2" H 4300 2950 60 0000 C CNN +F 1 "d_or" H 4300 3050 60 0000 C CNN +F 2 "" H 4300 2950 60 0000 C CNN +F 3 "" H 4300 2950 60 0000 C CNN + 1 4300 2950 + 1 0 0 -1 +$EndComp +$Comp +L d_or U3 +U 1 1 5C9D011F +P 4300 3350 +F 0 "U3" H 4300 3350 60 0000 C CNN +F 1 "d_or" H 4300 3450 60 0000 C CNN +F 2 "" H 4300 3350 60 0000 C CNN +F 3 "" H 4300 3350 60 0000 C CNN + 1 4300 3350 + 1 0 0 -1 +$EndComp +$Comp +L d_or U4 +U 1 1 5C9D0141 +P 5250 3150 +F 0 "U4" H 5250 3150 60 0000 C CNN +F 1 "d_or" H 5250 3250 60 0000 C CNN +F 2 "" H 5250 3150 60 0000 C CNN +F 3 "" H 5250 3150 60 0000 C CNN + 1 5250 3150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4800 3050 4800 2900 +Wire Wire Line + 4800 2900 4750 2900 +Wire Wire Line + 4800 3150 4800 3300 +Wire Wire Line + 4800 3300 4750 3300 +Wire Wire Line + 3350 2850 3850 2850 +Wire Wire Line + 3850 2950 3600 2950 +Wire Wire Line + 3850 3250 3350 3250 +Wire Wire Line + 3600 2950 3600 3000 +Wire Wire Line + 3600 3000 3350 3000 +Wire Wire Line + 3850 3350 3850 3400 +Wire Wire Line + 3850 3400 3350 3400 +Wire Wire Line + 5700 3100 6200 3100 +$Comp +L PORT U1 +U 1 1 5C9D01F4 +P 3100 2850 +F 0 "U1" H 3150 2950 30 0000 C CNN +F 1 "PORT" H 3100 2850 30 0000 C CNN +F 2 "" H 3100 2850 60 0000 C CNN +F 3 "" H 3100 2850 60 0000 C CNN + 1 3100 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9D022F +P 3100 3000 +F 0 "U1" H 3150 3100 30 0000 C CNN +F 1 "PORT" H 3100 3000 30 0000 C CNN +F 2 "" H 3100 3000 60 0000 C CNN +F 3 "" H 3100 3000 60 0000 C CNN + 2 3100 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9D0271 +P 3100 3250 +F 0 "U1" H 3150 3350 30 0000 C CNN +F 1 "PORT" H 3100 3250 30 0000 C CNN +F 2 "" H 3100 3250 60 0000 C CNN +F 3 "" H 3100 3250 60 0000 C CNN + 3 3100 3250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9D0299 +P 3100 3400 +F 0 "U1" H 3150 3500 30 0000 C CNN +F 1 "PORT" H 3100 3400 30 0000 C CNN +F 2 "" H 3100 3400 60 0000 C CNN +F 3 "" H 3100 3400 60 0000 C CNN + 4 3100 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 5C9D02C2 +P 6450 3100 +F 0 "U1" H 6500 3200 30 0000 C CNN +F 1 "PORT" H 6450 3100 30 0000 C CNN +F 2 "" H 6450 3100 60 0000 C CNN +F 3 "" H 6450 3100 60 0000 C CNN + 5 6450 3100 + -1 0 0 1 +$EndComp +Text Notes 3450 2850 0 60 ~ 12 +in1 +Text Notes 3450 3000 0 60 ~ 12 +in2 +Text Notes 3450 3250 0 60 ~ 12 +in3 +Text Notes 3450 3400 0 60 ~ 12 +in4 +Text Notes 5800 3100 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/IC_MC10E156/4_OR.sub b/library/SubcircuitLibrary/IC_MC10E156/4_OR.sub new file mode 100644 index 000000000..d1fd3a241 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/4_OR.sub @@ -0,0 +1,18 @@ +* Subcircuit 4_OR +.subckt 4_OR net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ +* c:\users\malli\esim\src\subcircuitlibrary\4_or\4_or.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_or +* u3 net-_u1-pad3_ net-_u1-pad4_ net-_u3-pad3_ d_or +* u4 net-_u2-pad3_ net-_u3-pad3_ net-_u1-pad5_ d_or +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a3 [net-_u2-pad3_ net-_u3-pad3_ ] net-_u1-pad5_ u4 +* Schematic Name: d_or, NgSpice Name: d_or +.model u2 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u3 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u4 d_or(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 4_OR \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC10E156/4_OR_Previous_Values.xml b/library/SubcircuitLibrary/IC_MC10E156/4_OR_Previous_Values.xml new file mode 100644 index 000000000..0683d9eb6 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/4_OR_Previous_Values.xml @@ -0,0 +1 @@ +d_ord_ord_ortruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.cir b/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.cir new file mode 100644 index 000000000..357c3f795 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.cir @@ -0,0 +1,31 @@ +.title KiCad schematic +U14 Net-_U14-Pad1_ Net-_U12-Pad2_ unconnected-_U14-Pad3_ Net-_U12-Pad4_ Net-_U1-Pad19_ Net-_U1-Pad18_ d_dlatch +X15 Net-_X15-Pad1_ Net-_X10-Pad4_ Net-_X11-Pad4_ Net-_X12-Pad4_ Net-_U14-Pad1_ 4_OR +U13 Net-_U13-Pad1_ Net-_U12-Pad2_ unconnected-_U13-Pad3_ Net-_U12-Pad4_ Net-_U1-Pad21_ Net-_U1-Pad20_ d_dlatch +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ Net-_U1-Pad19_ Net-_U1-Pad20_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ PORT +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ d_inverter +X8 Net-_U1-Pad8_ Net-_U2-Pad2_ Net-_U10-Pad1_ Net-_X14-Pad4_ 3_and +U9 Net-_U10-Pad1_ Net-_U9-Pad2_ d_inverter +U6 Net-_U2-Pad2_ Net-_U6-Pad2_ d_inverter +X5 Net-_U1-Pad5_ Net-_U7-Pad2_ Net-_U10-Pad2_ Net-_X14-Pad1_ 3_and +X6 Net-_U1-Pad6_ Net-_U2-Pad2_ Net-_U10-Pad2_ Net-_X14-Pad2_ 3_and +X14 Net-_X14-Pad1_ Net-_X14-Pad2_ Net-_X14-Pad3_ Net-_X14-Pad4_ Net-_U13-Pad1_ 4_OR +X7 Net-_U1-Pad7_ Net-_U7-Pad2_ Net-_U10-Pad1_ Net-_X14-Pad3_ 3_and +U3 Net-_U1-Pad15_ Net-_U10-Pad1_ d_buffer +U2 Net-_U1-Pad14_ Net-_U2-Pad2_ d_buffer +U5 Net-_U1-Pad13_ Net-_U12-Pad4_ d_buffer +U4 Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U12-Pad2_ d_or +X12 Net-_U1-Pad12_ Net-_U2-Pad2_ Net-_U10-Pad1_ Net-_X12-Pad4_ 3_and +X11 Net-_U1-Pad11_ Net-_U8-Pad2_ Net-_U10-Pad1_ Net-_X11-Pad4_ 3_and +X9 Net-_U1-Pad9_ Net-_U8-Pad2_ Net-_U11-Pad2_ Net-_X15-Pad1_ 3_and +X10 Net-_U1-Pad10_ Net-_U2-Pad2_ Net-_U11-Pad2_ Net-_X10-Pad4_ 3_and +U11 Net-_U10-Pad1_ Net-_U11-Pad2_ d_inverter +U8 Net-_U2-Pad2_ Net-_U8-Pad2_ d_inverter +U7 Net-_U2-Pad2_ Net-_U7-Pad2_ d_inverter +X4 Net-_U1-Pad4_ Net-_U2-Pad2_ Net-_U10-Pad1_ Net-_X13-Pad4_ 3_and +X3 Net-_U1-Pad3_ Net-_U6-Pad2_ Net-_U10-Pad1_ Net-_X13-Pad3_ 3_and +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ unconnected-_U12-Pad3_ Net-_U12-Pad4_ Net-_U1-Pad23_ Net-_U1-Pad22_ d_dlatch +X13 Net-_X1-Pad4_ Net-_X13-Pad2_ Net-_X13-Pad3_ Net-_X13-Pad4_ Net-_U12-Pad1_ 4_OR +X1 Net-_U1-Pad1_ Net-_U6-Pad2_ Net-_U9-Pad2_ Net-_X1-Pad4_ 3_and +X2 Net-_U1-Pad2_ Net-_U2-Pad2_ Net-_U9-Pad2_ Net-_X13-Pad2_ 3_and +.end diff --git a/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.cir.out b/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.cir.out new file mode 100644 index 000000000..be3205fcb --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.cir.out @@ -0,0 +1,81 @@ +.title kicad schematic + +.include 3_and.sub +.include 4_OR.sub +* u14 net-_u14-pad1_ net-_u12-pad2_ unconnected-_u14-pad3_ net-_u12-pad4_ net-_u1-pad19_ net-_u1-pad18_ d_dlatch +x15 net-_x15-pad1_ net-_x10-pad4_ net-_x11-pad4_ net-_x12-pad4_ net-_u14-pad1_ 4_OR +* u13 net-_u13-pad1_ net-_u12-pad2_ unconnected-_u13-pad3_ net-_u12-pad4_ net-_u1-pad21_ net-_u1-pad20_ d_dlatch +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ net-_u1-pad20_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ port +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +x8 net-_u1-pad8_ net-_u2-pad2_ net-_u10-pad1_ net-_x14-pad4_ 3_and +* u9 net-_u10-pad1_ net-_u9-pad2_ d_inverter +* u6 net-_u2-pad2_ net-_u6-pad2_ d_inverter +x5 net-_u1-pad5_ net-_u7-pad2_ net-_u10-pad2_ net-_x14-pad1_ 3_and +x6 net-_u1-pad6_ net-_u2-pad2_ net-_u10-pad2_ net-_x14-pad2_ 3_and +x14 net-_x14-pad1_ net-_x14-pad2_ net-_x14-pad3_ net-_x14-pad4_ net-_u13-pad1_ 4_OR +x7 net-_u1-pad7_ net-_u7-pad2_ net-_u10-pad1_ net-_x14-pad3_ 3_and +* u3 net-_u1-pad15_ net-_u10-pad1_ d_buffer +* u2 net-_u1-pad14_ net-_u2-pad2_ d_buffer +* u5 net-_u1-pad13_ net-_u12-pad4_ d_buffer +* u4 net-_u1-pad16_ net-_u1-pad17_ net-_u12-pad2_ d_or +x12 net-_u1-pad12_ net-_u2-pad2_ net-_u10-pad1_ net-_x12-pad4_ 3_and +x11 net-_u1-pad11_ net-_u8-pad2_ net-_u10-pad1_ net-_x11-pad4_ 3_and +x9 net-_u1-pad9_ net-_u8-pad2_ net-_u11-pad2_ net-_x15-pad1_ 3_and +x10 net-_u1-pad10_ net-_u2-pad2_ net-_u11-pad2_ net-_x10-pad4_ 3_and +* u11 net-_u10-pad1_ net-_u11-pad2_ d_inverter +* u8 net-_u2-pad2_ net-_u8-pad2_ d_inverter +* u7 net-_u2-pad2_ net-_u7-pad2_ d_inverter +x4 net-_u1-pad4_ net-_u2-pad2_ net-_u10-pad1_ net-_x13-pad4_ 3_and +x3 net-_u1-pad3_ net-_u6-pad2_ net-_u10-pad1_ net-_x13-pad3_ 3_and +* u12 net-_u12-pad1_ net-_u12-pad2_ unconnected-_u12-pad3_ net-_u12-pad4_ net-_u1-pad23_ net-_u1-pad22_ d_dlatch +x13 net-_x1-pad4_ net-_x13-pad2_ net-_x13-pad3_ net-_x13-pad4_ net-_u12-pad1_ 4_OR +x1 net-_u1-pad1_ net-_u6-pad2_ net-_u9-pad2_ net-_x1-pad4_ 3_and +x2 net-_u1-pad2_ net-_u2-pad2_ net-_u9-pad2_ net-_x13-pad2_ 3_and +a1 net-_u14-pad1_ net-_u12-pad2_ unconnected-_u14-pad3_ net-_u12-pad4_ net-_u1-pad19_ net-_u1-pad18_ u14 +a2 net-_u13-pad1_ net-_u12-pad2_ unconnected-_u13-pad3_ net-_u12-pad4_ net-_u1-pad21_ net-_u1-pad20_ u13 +a3 net-_u10-pad1_ net-_u10-pad2_ u10 +a4 net-_u10-pad1_ net-_u9-pad2_ u9 +a5 net-_u2-pad2_ net-_u6-pad2_ u6 +a6 net-_u1-pad15_ net-_u10-pad1_ u3 +a7 net-_u1-pad14_ net-_u2-pad2_ u2 +a8 net-_u1-pad13_ net-_u12-pad4_ u5 +a9 [net-_u1-pad16_ net-_u1-pad17_ ] net-_u12-pad2_ u4 +a10 net-_u10-pad1_ net-_u11-pad2_ u11 +a11 net-_u2-pad2_ net-_u8-pad2_ u8 +a12 net-_u2-pad2_ net-_u7-pad2_ u7 +a13 net-_u12-pad1_ net-_u12-pad2_ unconnected-_u12-pad3_ net-_u12-pad4_ net-_u1-pad23_ net-_u1-pad22_ u12 +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u14 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u13 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u2 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u12 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.kicad_sch b/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.kicad_sch new file mode 100644 index 000000000..b94612216 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.kicad_sch @@ -0,0 +1,2901 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid c6e7df5b-6560-4678-bb6c-28f90672d8f4) + + (paper "A0") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dlatch" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dlatch" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dlatch_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dlatch_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -7.62 0) (length 5.08) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Subckt:3_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 2.54 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 3.81 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "3_and_0_1" + (polyline + (pts + (xy -3.81 5.08) + (xy 5.08 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 5.08) + (xy -3.81 -2.54) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 5.08 -2.54) (mid 7.8261 1.27) (end 5.08 5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "3_and_1_1" + (pin input line (at -8.89 3.81 0) (length 5.08) + (name "in1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 1.27 0) (length 5.08) + (name "in2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -1.27 0) (length 5.08) + (name "in3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 1.27 180) (length 5.08) + (name "out" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:4_OR" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 3.81 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "4_OR" (id 1) (at 3.81 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "4_OR_0_1" + (arc (start -5.08 -6.35) (mid -3.81 0) (end -5.08 6.35) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -5.08 -6.35) + (xy 3.81 -6.35) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -5.08 6.35) + (xy 3.81 6.35) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -6.35) (mid 6.9463 -3.651) (end 8.89 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 8.89 0) (mid 7.0265 3.7162) (end 3.81 6.35) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "4_OR_1_1" + (pin input line (at -8.89 3.81 0) (length 5.08) + (name "in1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 1.27 0) (length 5.08) + (name "in2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -1.27 0) (length 5.08) + (name "in3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -3.81 0) (length 5.08) + (name "in4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "out" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 529.59 473.71) (diameter 0) (color 0 0 0 0) + (uuid 1234632e-59e9-42d8-825d-488f141b2300) + ) + (junction (at 532.13 250.19) (diameter 0) (color 0 0 0 0) + (uuid 15a4c39f-080e-477f-94b0-c3126c4a1bb5) + ) + (junction (at 532.13 342.9) (diameter 0) (color 0 0 0 0) + (uuid 16133076-d9bb-43b6-acb9-3b37937a8952) + ) + (junction (at 520.7 481.33) (diameter 0) (color 0 0 0 0) + (uuid 3272f7dc-82f7-4359-b056-b7f3a75feb75) + ) + (junction (at 604.52 351.79) (diameter 0) (color 0 0 0 0) + (uuid 40a58e02-6889-44a4-b5e1-03d7fe715719) + ) + (junction (at 535.94 289.56) (diameter 0) (color 0 0 0 0) + (uuid 58d4adbb-2d2d-4d1f-8dc6-defb421db8e6) + ) + (junction (at 541.02 421.64) (diameter 0) (color 0 0 0 0) + (uuid 73bdf70a-f704-49ce-a870-4d56549390b7) + ) + (junction (at 535.94 359.41) (diameter 0) (color 0 0 0 0) + (uuid 7e356b25-ef9e-4ef3-ada2-3a34b58448fe) + ) + (junction (at 528.32 289.56) (diameter 0) (color 0 0 0 0) + (uuid 83b68239-074d-43f0-8d9f-ae91a9eff872) + ) + (junction (at 539.75 237.49) (diameter 0) (color 0 0 0 0) + (uuid 8d902ed8-b492-4941-8de3-a88784ac712d) + ) + (junction (at 605.79 359.41) (diameter 0) (color 0 0 0 0) + (uuid 8e3f45f7-00e8-41ee-be04-995a8affbe24) + ) + (junction (at 524.51 392.43) (diameter 0) (color 0 0 0 0) + (uuid 97acab80-0afc-44f9-8226-d1377887ffc4) + ) + (junction (at 524.51 485.14) (diameter 0) (color 0 0 0 0) + (uuid 9b6abc73-e9bc-4a21-955f-dc54c17633e7) + ) + (junction (at 605.79 450.85) (diameter 0) (color 0 0 0 0) + (uuid 9efea84c-88d7-440a-893c-6bc20308e27c) + ) + (junction (at 539.75 330.2) (diameter 0) (color 0 0 0 0) + (uuid a012db1b-9373-4213-9f11-c27bd5fdf611) + ) + (junction (at 533.4 434.34) (diameter 0) (color 0 0 0 0) + (uuid a0eb3a84-d789-4f0e-bca8-e8f054ade4f6) + ) + (junction (at 535.94 266.7) (diameter 0) (color 0 0 0 0) + (uuid a61e5568-a5b0-4ac6-ac51-273bef0aca4d) + ) + (junction (at 528.32 356.87) (diameter 0) (color 0 0 0 0) + (uuid c4900db8-3da6-4481-b372-2545a631da2e) + ) + (junction (at 535.94 382.27) (diameter 0) (color 0 0 0 0) + (uuid c49ef356-8237-4950-a6f3-f20f27651bbf) + ) + (junction (at 520.7 389.89) (diameter 0) (color 0 0 0 0) + (uuid c556337b-55f0-43ee-b973-53ad0354f8eb) + ) + (junction (at 604.52 443.23) (diameter 0) (color 0 0 0 0) + (uuid c9e57c2e-ee03-4cd8-bef1-f5d34a5d0878) + ) + (junction (at 528.32 382.27) (diameter 0) (color 0 0 0 0) + (uuid ca40f0c6-ff6d-4205-9484-0a97255c58c0) + ) + (junction (at 529.59 448.31) (diameter 0) (color 0 0 0 0) + (uuid cc455fcd-84cc-4774-9ad7-8e15af136f0d) + ) + (junction (at 537.21 450.85) (diameter 0) (color 0 0 0 0) + (uuid ed6e7571-ac73-4cc4-8791-b19d935ab601) + ) + (junction (at 528.32 264.16) (diameter 0) (color 0 0 0 0) + (uuid f1058501-6144-4f4d-be8c-048dc3d76293) + ) + (junction (at 537.21 473.71) (diameter 0) (color 0 0 0 0) + (uuid f275d27a-c7c4-4cf2-b4bf-5345229f126f) + ) + + (no_connect (at 622.3 327.66) (uuid 23826623-bbee-43f0-bccd-084f9475c977)) + (no_connect (at 622.3 234.95) (uuid 6e21513b-86d6-46c4-a0e8-e8f15993d204)) + (no_connect (at 623.57 419.1) (uuid cc704640-dc0e-4b4d-bbc5-ac39be0978f7)) + + (wire (pts (xy 636.27 259.08) (xy 659.13 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00ec0a45-c085-4f27-b649-dbe04a047161) + ) + (wire (pts (xy 476.25 217.17) (xy 546.1 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02a1337e-ebc2-43af-91d7-73145dd483c1) + ) + (wire (pts (xy 528.32 289.56) (xy 528.32 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 051e0ff4-ab6c-4015-b907-2f6358c0947b) + ) + (wire (pts (xy 537.21 473.71) (xy 537.21 485.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06acb646-3bd5-4637-9991-040aafa1c4c7) + ) + (wire (pts (xy 574.04 250.19) (xy 574.04 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06cc1332-fae3-4493-b44e-c924b5c55b1b) + ) + (wire (pts (xy 575.31 425.45) (xy 577.85 425.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0994679d-ffba-4883-8545-a5ec8f00cfb1) + ) + (wire (pts (xy 533.4 473.71) (xy 533.4 472.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bb1d80b-7258-41b1-8f91-95f88968bc6f) + ) + (wire (pts (xy 532.13 312.42) (xy 546.1 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d5c6827-bf96-465e-99cc-d3720d85000c) + ) + (wire (pts (xy 574.04 241.3) (xy 576.58 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e0efca9-7d1e-401b-b362-d3ba30b61acd) + ) + (wire (pts (xy 605.79 359.41) (xy 622.3 359.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e9bedd4-5f02-4406-b79e-ab7e7331988e) + ) + (wire (pts (xy 604.52 443.23) (xy 604.52 528.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f98ae87-71f8-4b68-8bc7-2899c51a2f68) + ) + (wire (pts (xy 637.54 426.72) (xy 659.13 426.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10cf9bac-937c-448d-833d-4ff4c4abb5bd) + ) + (wire (pts (xy 546.1 342.9) (xy 532.13 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1358667e-e18d-4076-8b00-b1b326a8266f) + ) + (wire (pts (xy 533.4 403.86) (xy 547.37 403.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17a5144d-9c9a-4985-b8ce-1ad20b13b7af) + ) + (wire (pts (xy 604.52 259.08) (xy 604.52 351.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1caaa13a-c30f-4612-afd5-42df72b57b03) + ) + (wire (pts (xy 575.31 419.1) (xy 575.31 425.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e3ea9fb-26cd-4d61-9d78-1167c2d42186) + ) + (wire (pts (xy 478.79 232.41) (xy 546.1 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 216b11f1-0092-4fd9-9b4b-feb0689ca128) + ) + (wire (pts (xy 535.94 252.73) (xy 535.94 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2249bb63-8d19-4661-93e8-61b562f7df23) + ) + (wire (pts (xy 464.82 527.05) (xy 477.52 527.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22a0dfd8-ce2b-4dde-b271-a5bbd497de1f) + ) + (wire (pts (xy 568.96 419.1) (xy 575.31 419.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24545303-f833-4231-aeaf-7745d9a08d65) + ) + (wire (pts (xy 539.75 222.25) (xy 539.75 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2533a1fa-fe37-467e-b49c-1889d0f09746) + ) + (wire (pts (xy 637.54 443.23) (xy 661.67 443.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 283b4760-8b5c-4d3e-bfbc-79b0b0ba955a) + ) + (wire (pts (xy 547.37 434.34) (xy 533.4 434.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2923d6df-8444-478b-9fa0-322ae8798479) + ) + (wire (pts (xy 505.46 513.08) (xy 524.51 513.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2eab8cf1-31e2-4940-9f62-a24729b0d3ff) + ) + (wire (pts (xy 474.98 309.88) (xy 546.1 309.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fa9fd62-8d66-4816-938b-12670392dd75) + ) + (wire (pts (xy 535.94 345.44) (xy 535.94 359.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 318c5722-2020-4978-a128-cb17e7a76e16) + ) + (wire (pts (xy 576.58 312.42) (xy 576.58 331.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3254e4bb-8bc9-4eed-8ed2-2804aff00a6d) + ) + (wire (pts (xy 505.46 542.29) (xy 605.79 542.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3393d8e9-6501-4c2b-b269-cfba8e908005) + ) + (wire (pts (xy 546.1 345.44) (xy 535.94 345.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33e8d65d-b6d6-4fd5-8791-8571de02f02c) + ) + (wire (pts (xy 476.25 325.12) (xy 546.1 325.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40fd8bf7-89e6-4ec0-afad-d67753fe69b3) + ) + (wire (pts (xy 535.94 266.7) (xy 546.1 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 424bf39a-8a90-482e-9313-6f2e49dc14be) + ) + (wire (pts (xy 539.75 330.2) (xy 546.1 330.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 455d9590-46bb-46af-98d4-2ffc75ee16a0) + ) + (wire (pts (xy 575.31 434.34) (xy 575.31 427.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46f932c0-0dde-436f-893c-97a22bd27f4f) + ) + (wire (pts (xy 520.7 389.89) (xy 528.32 389.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4784cad0-b72a-48cc-9832-c15c0251f71e) + ) + (wire (pts (xy 464.82 542.29) (xy 476.25 542.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 490a2589-088d-4309-ba54-a4704498edd4) + ) + (wire (pts (xy 524.51 485.14) (xy 524.51 392.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 495400e8-c4db-46dd-b2a3-0f7d5fbc264a) + ) + (wire (pts (xy 529.59 473.71) (xy 533.4 473.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a1e9278-3d3a-4b0c-b6b6-fab8bfa7cb14) + ) + (wire (pts (xy 539.75 237.49) (xy 546.1 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ad23c78-23a8-4812-8179-7048fb287fa1) + ) + (wire (pts (xy 528.32 264.16) (xy 546.1 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bd320ee-deb6-4fc8-96a1-efcfba50951f) + ) + (wire (pts (xy 528.32 327.66) (xy 546.1 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e213e70-2d57-499e-a2ad-a847cf84f6dc) + ) + (wire (pts (xy 486.41 431.8) (xy 547.37 431.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e5cb9ca-157e-4cce-b62a-5e3c143b68cd) + ) + (wire (pts (xy 539.75 289.56) (xy 539.75 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ebd8a0a-f1fe-4f90-ba83-915a83274167) + ) + (wire (pts (xy 537.21 436.88) (xy 537.21 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 501de6a0-f08f-40ce-b818-851749a54f84) + ) + (wire (pts (xy 574.04 336.55) (xy 576.58 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51bf8e69-dc98-48dd-823e-16dafc5fbbf3) + ) + (wire (pts (xy 532.13 382.27) (xy 532.13 381)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 522d60bc-465e-463f-8a95-00e0b2da48e4) + ) + (wire (pts (xy 524.51 392.43) (xy 535.94 392.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 529ed9e2-cba4-49e3-9375-7db0c0f8a14d) + ) + (wire (pts (xy 567.69 234.95) (xy 574.04 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5801b3cc-a8ec-44c5-88e3-07a856e4adad) + ) + (wire (pts (xy 532.13 312.42) (xy 532.13 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58dfdfd8-f3c7-49b4-a6f5-9643fd104ea7) + ) + (wire (pts (xy 567.69 219.71) (xy 576.58 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5eabe112-edd7-4a4f-b85b-03ce14b17eae) + ) + (wire (pts (xy 535.94 382.27) (xy 535.94 392.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60aa7a81-85df-42ba-9187-d11d67425c0b) + ) + (wire (pts (xy 529.59 419.1) (xy 547.37 419.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69423c68-bb58-413e-a678-0eaafe458bd4) + ) + (wire (pts (xy 568.96 448.31) (xy 577.85 448.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c7320f6-3812-4d84-92bb-3b4ecb89f79e) + ) + (wire (pts (xy 546.1 250.19) (xy 532.13 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6cd39d9d-8240-4c72-acec-0e49e85001fd) + ) + (wire (pts (xy 605.79 450.85) (xy 623.57 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e89d425-c872-4db7-b223-619b87a91ca2) + ) + (wire (pts (xy 608.33 351.79) (xy 604.52 351.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 717527d3-a281-41c3-ae37-4b89581dbc22) + ) + (wire (pts (xy 478.79 247.65) (xy 546.1 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71aa9ab6-16ef-43ba-9660-5282df932ac8) + ) + (wire (pts (xy 539.75 330.2) (xy 539.75 365.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 745997fd-c001-4ab9-9d12-ccbd5c6549b6) + ) + (wire (pts (xy 568.96 403.86) (xy 577.85 403.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 757632b3-3722-4457-b9fd-b3084b76d540) + ) + (wire (pts (xy 529.59 419.1) (xy 529.59 448.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 761b97a2-c2a4-4336-844a-dba4fb4af5d6) + ) + (wire (pts (xy 599.44 335.28) (xy 608.33 335.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76c5a62c-f787-4ed5-b473-8222e6cd873e) + ) + (wire (pts (xy 535.94 289.56) (xy 535.94 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b48b9f5-35e3-4299-84bd-64b6fe71269b) + ) + (wire (pts (xy 605.79 359.41) (xy 605.79 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dfdd167-830f-4e00-a3a5-7ceba648c4d5) + ) + (wire (pts (xy 636.27 351.79) (xy 657.86 351.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e248583-74a5-4d82-8c4a-ec20c21d84f9) + ) + (wire (pts (xy 532.13 219.71) (xy 532.13 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f8164aa-9e14-444e-b4a8-357e19b9ed38) + ) + (wire (pts (xy 528.32 234.95) (xy 528.32 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fe2775e-e1b8-4a50-b98a-020de4e7b5f6) + ) + (wire (pts (xy 533.4 403.86) (xy 533.4 434.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8266d5da-be80-4cf3-9f4b-3460c51d1205) + ) + (wire (pts (xy 539.75 314.96) (xy 546.1 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8479f984-65b4-4055-b0f0-459e8d8cf9ab) + ) + (wire (pts (xy 537.21 473.71) (xy 541.02 473.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86594c16-75af-4330-9b10-495481dce033) + ) + (wire (pts (xy 532.13 219.71) (xy 546.1 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87317a4b-4c82-4caa-bec6-1fe3b07fa004) + ) + (wire (pts (xy 520.7 295.91) (xy 528.32 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87c13cd1-4af7-46a6-b44b-31296a84f2f6) + ) + (wire (pts (xy 568.96 434.34) (xy 575.31 434.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e6127e5-fa61-4b6d-997f-3912a953a339) + ) + (wire (pts (xy 599.44 242.57) (xy 608.33 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e913a24-0ca0-48aa-9b63-8b7a0b1849d6) + ) + (wire (pts (xy 500.38 528.32) (xy 604.52 528.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e9f2298-2ac6-40ad-997b-4647ea24e299) + ) + (wire (pts (xy 541.02 473.71) (xy 541.02 472.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91e7216a-7bee-4f62-b25f-99124775fa04) + ) + (wire (pts (xy 636.27 335.28) (xy 657.86 335.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 932d6cea-2d49-4aa4-a1b0-8c3a9701a783) + ) + (wire (pts (xy 529.59 473.71) (xy 529.59 481.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 939f85c0-5308-4421-9a6f-0def79451eb1) + ) + (wire (pts (xy 546.1 252.73) (xy 535.94 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96ce25b7-c18d-4cfb-92b5-14932c2a1bc8) + ) + (wire (pts (xy 463.55 513.08) (xy 476.25 513.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 988a10bf-1a0d-479b-a1e9-083309727fc0) + ) + (wire (pts (xy 520.7 497.84) (xy 520.7 481.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a26c88a-cd0b-4ea9-95b3-4b5793ab036d) + ) + (wire (pts (xy 541.02 421.64) (xy 541.02 457.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bc2dec9-3200-4838-ad74-df159d0dfb03) + ) + (wire (pts (xy 524.51 392.43) (xy 524.51 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9dde6fd7-31ed-4d4f-a8e1-089e406c1437) + ) + (wire (pts (xy 567.69 327.66) (xy 574.04 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f4b2be6-5ab5-47a5-93fd-8d76d7f0125a) + ) + (wire (pts (xy 539.75 237.49) (xy 539.75 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a329cccb-106c-4b30-b265-f1d25f621108) + ) + (wire (pts (xy 574.04 243.84) (xy 576.58 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5128a0e-9e2a-4a7a-9672-ef8c94e1ca9b) + ) + (wire (pts (xy 576.58 264.16) (xy 576.58 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a54bb1fc-c484-4fb7-8817-bc0b42a38a61) + ) + (wire (pts (xy 574.04 334.01) (xy 576.58 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5a9d668-9f16-410c-aedc-7f96f65b38e4) + ) + (wire (pts (xy 567.69 356.87) (xy 576.58 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6aed665-cb65-4dac-ba2c-f353e36fc4ae) + ) + (wire (pts (xy 505.46 497.84) (xy 520.7 497.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8c480be-ed68-44fd-aeff-949d6936711e) + ) + (wire (pts (xy 574.04 327.66) (xy 574.04 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab5c36ae-b194-4387-a9d8-860beffe334d) + ) + (wire (pts (xy 577.85 448.31) (xy 577.85 430.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab7e957f-2aa4-4bb0-ac8a-670e9b751f85) + ) + (wire (pts (xy 528.32 356.87) (xy 528.32 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aba12b18-0367-49e2-a6a1-872af2ab35ff) + ) + (wire (pts (xy 474.98 354.33) (xy 546.1 354.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aca8dbb9-203c-401e-bdeb-f65dc18f0df0) + ) + (wire (pts (xy 532.13 250.19) (xy 532.13 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b00c97ca-ef79-4a49-9903-047535ddb823) + ) + (wire (pts (xy 576.58 356.87) (xy 576.58 339.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0224ce0-ab52-4a00-8afd-d65e121466d1) + ) + (wire (pts (xy 476.25 340.36) (xy 546.1 340.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b02d6d12-a7d2-47ee-bbb8-46cb6c68a0da) + ) + (wire (pts (xy 541.02 421.64) (xy 547.37 421.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0da05d7-0ce9-4a35-88ba-f3646462b5cb) + ) + (wire (pts (xy 488.95 401.32) (xy 547.37 401.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2793d6d-3abb-4760-9eb1-70c30c3d1c99) + ) + (wire (pts (xy 535.94 359.41) (xy 535.94 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b52e698e-57f5-4e2c-a646-5cb6e05c0706) + ) + (wire (pts (xy 636.27 242.57) (xy 660.4 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b542b297-6cc5-4c49-9c44-81bc5f1646ee) + ) + (wire (pts (xy 535.94 266.7) (xy 535.94 289.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b662d0fc-fbb3-4641-87ad-f6c313a1fa3d) + ) + (wire (pts (xy 541.02 406.4) (xy 547.37 406.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7145112-c6be-4042-99a4-9cc654239a54) + ) + (wire (pts (xy 532.13 342.9) (xy 532.13 365.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b821081b-417c-4cf4-a9d9-ea74a92a7d24) + ) + (wire (pts (xy 567.69 250.19) (xy 574.04 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b951d39b-7622-4497-a2eb-cba19f228330) + ) + (wire (pts (xy 539.75 382.27) (xy 539.75 381)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb19dfb3-b756-4e88-a62a-707683a440a3) + ) + (wire (pts (xy 576.58 219.71) (xy 576.58 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb698de6-5140-4eaf-ad39-b408c2405c72) + ) + (wire (pts (xy 529.59 448.31) (xy 529.59 473.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb947268-a7e1-4df2-8211-bfdb45e4c560) + ) + (wire (pts (xy 535.94 359.41) (xy 546.1 359.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf154b30-e542-4900-b5af-0f49fa61f0dc) + ) + (wire (pts (xy 533.4 434.34) (xy 533.4 457.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf58b118-62ad-42af-8107-a251ed8f491a) + ) + (wire (pts (xy 537.21 450.85) (xy 537.21 473.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c51028e0-9e0b-405f-8e2b-5e1a1f4cd818) + ) + (wire (pts (xy 486.41 416.56) (xy 547.37 416.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7c68ec0-366c-4759-b9ed-f53327da0d3e) + ) + (wire (pts (xy 520.7 389.89) (xy 520.7 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cab25b92-2d62-4eb5-aa0d-18d14aca8da4) + ) + (wire (pts (xy 528.32 234.95) (xy 546.1 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbf05ab6-e149-4bb4-8f9b-565b14a216ac) + ) + (wire (pts (xy 567.69 342.9) (xy 574.04 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc2d1bc8-9493-4158-a330-70e1755bc407) + ) + (wire (pts (xy 605.79 450.85) (xy 605.79 359.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2fee047-532d-4dd8-aead-0856d7d566ff) + ) + (wire (pts (xy 575.31 427.99) (xy 577.85 427.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3c1e647-de82-49b2-b382-62bbc863a4d2) + ) + (wire (pts (xy 574.04 342.9) (xy 574.04 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6d3f8a3-376c-4aed-8b1c-b13061937fcc) + ) + (wire (pts (xy 532.13 289.56) (xy 532.13 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7214095-a043-42c7-9f90-6a20525e287c) + ) + (wire (pts (xy 539.75 222.25) (xy 546.1 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d86a059a-aed8-48f6-88dd-3d5da55947a6) + ) + (wire (pts (xy 539.75 314.96) (xy 539.75 330.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d894c95e-ba18-440e-bb09-97f187083b0e) + ) + (wire (pts (xy 520.7 481.33) (xy 520.7 389.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8f4872a-5b3a-4d81-8e93-94249d9850c7) + ) + (wire (pts (xy 524.51 485.14) (xy 537.21 485.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da15d7a6-63e0-4283-9161-e34b88c7f779) + ) + (wire (pts (xy 528.32 382.27) (xy 532.13 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd4446bb-1822-4850-b520-8356b180bf0b) + ) + (wire (pts (xy 535.94 382.27) (xy 539.75 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd92fd41-9254-427d-a404-15b630d04e6e) + ) + (wire (pts (xy 524.51 513.08) (xy 524.51 485.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2ca4d7f-25fc-4393-a6d9-d9a7381a73e2) + ) + (wire (pts (xy 529.59 448.31) (xy 547.37 448.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9d3ee62-5e07-413f-8212-190bdfbc46d8) + ) + (wire (pts (xy 487.68 445.77) (xy 547.37 445.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea034bf9-e24b-4e30-9630-cc9bc2780e13) + ) + (wire (pts (xy 604.52 443.23) (xy 609.6 443.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eaa5113d-7a07-4d9e-a10e-707655716a17) + ) + (wire (pts (xy 524.51 297.18) (xy 535.94 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eab1ac65-40d6-423d-a760-d7da5e8a87a4) + ) + (wire (pts (xy 547.37 436.88) (xy 537.21 436.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb7e3d8f-5bef-4d6d-b547-9eb686bef37a) + ) + (wire (pts (xy 600.71 426.72) (xy 609.6 426.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec20bd48-1b64-4897-912d-a3019a3e4033) + ) + (wire (pts (xy 476.25 261.62) (xy 546.1 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec8c68ef-2340-4bc9-b457-32601caca0a4) + ) + (wire (pts (xy 463.55 497.84) (xy 476.25 497.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed7b3641-1990-4796-b69b-94fb210d4e35) + ) + (wire (pts (xy 567.69 312.42) (xy 576.58 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1500502-1f20-454b-973b-ec5dd78a8833) + ) + (wire (pts (xy 541.02 406.4) (xy 541.02 421.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4868023-e68d-4a58-b67a-cc5953cc4d7e) + ) + (wire (pts (xy 528.32 289.56) (xy 532.13 289.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5259222-52c6-4cb9-8f91-cc36f35a8a92) + ) + (wire (pts (xy 520.7 481.33) (xy 529.59 481.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f534d063-8cd5-4108-a731-a51efba72886) + ) + (wire (pts (xy 605.79 542.29) (xy 605.79 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6bd5b0c-9194-4f80-b73f-144ba6c16f78) + ) + (wire (pts (xy 577.85 403.86) (xy 577.85 422.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7e82e40-5cf9-4765-b833-feb2f711f053) + ) + (wire (pts (xy 464.82 529.59) (xy 477.52 529.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7f0ba4c-cf6a-4605-afa0-f4f75efd057d) + ) + (wire (pts (xy 528.32 356.87) (xy 546.1 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f87c9f19-43bb-44ad-9343-1b0536c00452) + ) + (wire (pts (xy 574.04 234.95) (xy 574.04 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f87ec95d-70f9-40b9-b884-2f080ab0b132) + ) + (wire (pts (xy 537.21 450.85) (xy 547.37 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9ec3b6c-f201-4f43-949f-e33335eca251) + ) + (wire (pts (xy 604.52 259.08) (xy 608.33 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid faded30f-a434-47ec-83a1-ca0e0c421db2) + ) + (wire (pts (xy 528.32 327.66) (xy 528.32 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbe27436-e81a-408a-ac5f-a1553f3ee029) + ) + (wire (pts (xy 528.32 264.16) (xy 528.32 289.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc40e025-3595-416c-8a83-f6ccde4884b2) + ) + (wire (pts (xy 528.32 382.27) (xy 528.32 389.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc5385a5-d578-4963-8ed0-06eb8c3a5619) + ) + (wire (pts (xy 604.52 351.79) (xy 604.52 443.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd1e8754-1314-4d3e-95cf-fdf53dae98b9) + ) + (wire (pts (xy 535.94 289.56) (xy 539.75 289.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe1d18d9-5bb5-404e-a6b5-1c55c134c477) + ) + (wire (pts (xy 605.79 266.7) (xy 622.3 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe219661-8602-4786-939c-5db8feb5800c) + ) + (wire (pts (xy 567.69 264.16) (xy 576.58 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff76bebf-ed1f-463a-82f0-18a3fe4b7500) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 665.48 426.72 180) (unit 19) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 02ffd082-b540-4e98-add7-a5ea9763def6) + (property "Reference" "U1" (id 0) (at 669.29 426.085 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 669.29 428.625 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 665.48 426.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 665.48 426.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d39c2d88-1091-4ac0-9e5a-a006b8948de4)) + (pin "2" (uuid de89d4f5-ea6c-4ef8-a54e-4ceb53ea2ca0)) + (pin "3" (uuid caad4449-64e3-4ead-be1a-b124af3a8631)) + (pin "4" (uuid 0b9579f7-2936-417a-ab7b-a1bb9090fa98)) + (pin "5" (uuid 4d894660-4431-475b-b0ce-ba7edf16fe2e)) + (pin "6" (uuid 623e6fc4-7a19-4ad2-92bb-463e0cb3d6d8)) + (pin "7" (uuid 87f804fd-90f3-4a07-8a1d-d66e6f4b0a5f)) + (pin "8" (uuid 40836a6e-822b-4165-8b72-43190e3dc23d)) + (pin "9" (uuid 3a962a73-3e79-4917-bbb1-15144fde8836)) + (pin "10" (uuid 90744224-8d0f-46af-8610-95c47b12e0cb)) + (pin "11" (uuid a1069b29-ea61-4a8c-ad2f-c0657fe86d89)) + (pin "12" (uuid 6a7c5550-f1c7-4e3d-a13d-c8890e98cd81)) + (pin "13" (uuid f97ff749-27d0-4a9d-b3d0-a9e6a85c7ebd)) + (pin "14" (uuid d10f95e8-8a64-4904-929c-f12cad3a8889)) + (pin "15" (uuid 941d681b-7516-400c-aac1-a981a5725967)) + (pin "16" (uuid 8220c474-0f55-4ab4-9596-28c81e3aa3b4)) + (pin "17" (uuid 0a02c43e-20d5-4c69-ae23-77ad6c9486c7)) + (pin "18" (uuid be918d24-e51b-49cb-8cf8-38037912cb17)) + (pin "19" (uuid 255fb86a-0c07-4088-b2ee-f08b784b1154)) + (pin "20" (uuid 1ee6eb1b-96bc-402f-acae-c019009979f4)) + (pin "21" (uuid 0ce2b07d-00dc-431d-91c9-616f13162b96)) + (pin "22" (uuid 8b663861-8b2b-4d13-9225-f2cd2579dc8c)) + (pin "23" (uuid 8bc999ba-8277-46b0-bac5-04778224c7f7)) + (pin "24" (uuid 67596b21-3daf-4f36-9f4f-266fb2b56f0d)) + (pin "25" (uuid 6c299e29-742c-412d-b1e3-2dd10dcb2a37)) + (pin "26" (uuid 404a0d98-1da9-47a9-b90a-8a5c6b36bf31)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 554.99 251.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 03ad5d9a-57c3-4d4d-afb6-aa6cf85b76b4) + (property "Reference" "X3" (id 0) (at 556.998 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 556.998 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 554.99 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 554.99 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aa770fc2-913a-426a-8e1a-126d9d4668b5)) + (pin "2" (uuid d5493928-acdc-438b-8148-c9b04fab3e16)) + (pin "3" (uuid 699922d9-3450-4703-9ad7-0f0b213066f1)) + (pin "4" (uuid 55dd2ef2-95fa-4feb-a27f-de41cfc3856e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 472.44 232.41 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0c31166a-ff60-45aa-983b-7891ffbded3f) + (property "Reference" "U1" (id 0) (at 473.075 227.33 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 473.075 229.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 472.44 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 472.44 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fe100e17-4743-4ecd-aaea-79963d64b7ec)) + (pin "2" (uuid f3abc29e-3430-4c08-ac0f-a66bb578ac41)) + (pin "3" (uuid f275ab01-7bae-453b-a03a-e6cd88a9caff)) + (pin "4" (uuid 92d8fef8-3526-4a2c-b373-e9d9725a63e1)) + (pin "5" (uuid 6f89538a-5a42-4204-934a-d9fd15cc3157)) + (pin "6" (uuid 55dd38ff-bf7f-4ebe-9c24-7eb6b507da07)) + (pin "7" (uuid 3b307b80-5849-4c1f-8dc7-0c0c56b9404d)) + (pin "8" (uuid 71be3c97-6e90-41c3-88b7-fa1c53d29523)) + (pin "9" (uuid 83daf460-9234-4399-ae37-2b128e927e1d)) + (pin "10" (uuid 5b39b4a1-f2f8-4042-bb60-78cbbe97a534)) + (pin "11" (uuid 2b64dfc1-4869-4ce5-9900-58760a2cbe06)) + (pin "12" (uuid d26884af-fd7c-4dc4-87fe-56a92bb307f7)) + (pin "13" (uuid e4b7e55f-cf0c-4ba7-a42f-4465e9979e36)) + (pin "14" (uuid 9c91bd49-492d-4b46-ac26-168481ccbc5c)) + (pin "15" (uuid 4e936c65-5158-46d9-b473-fddaa179306f)) + (pin "16" (uuid 3c259433-2f3d-4898-ae45-474716e201fe)) + (pin "17" (uuid 2f0553ec-cc36-4dfd-bdf3-97a1d409df5b)) + (pin "18" (uuid fbc18b8f-244c-4759-b8e8-f1293ca789f0)) + (pin "19" (uuid 360d3983-8a2c-457c-af60-428e95b2b018)) + (pin "20" (uuid cfd45db4-8852-4d5b-8983-162ba8c9df48)) + (pin "21" (uuid da6dd2eb-df0d-42cc-8c03-eb4cea7e5da8)) + (pin "22" (uuid 84f372b2-9da4-47d9-8495-72538a042dfc)) + (pin "23" (uuid 62ac507a-6bf0-4d17-a827-20ad15209529)) + (pin "24" (uuid 49516feb-f378-4901-a75b-699410cdd409)) + (pin "25" (uuid e7958903-4119-4ef2-9ce9-dc1b7aa820bb)) + (pin "26" (uuid 44bcfee5-f612-466f-a46b-ae0f540a61db)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 666.75 242.57 180) (unit 23) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1454ddeb-3f6c-4fed-941c-f3458da983cd) + (property "Reference" "U1" (id 0) (at 670.56 241.935 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 670.56 244.475 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 666.75 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 666.75 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f5db400-6973-4786-9910-f31b9e482284)) + (pin "2" (uuid 1a9a6fe3-42f7-4c16-9f06-3e20b1cb1b2c)) + (pin "3" (uuid 2b5bf3db-0e5a-4260-8257-d21f113a9207)) + (pin "4" (uuid 34036627-808c-41c0-831e-5cbdac521914)) + (pin "5" (uuid eb0037ae-17e0-46a9-a414-60b9153351d7)) + (pin "6" (uuid 2d36b386-a328-4331-8def-7bf5a566b603)) + (pin "7" (uuid 4242fbba-992c-45a0-95cf-5b07d1790381)) + (pin "8" (uuid 0d2c51f6-9930-4035-ac37-8fbc40e718cc)) + (pin "9" (uuid 9c89f5f3-5e2a-4e60-9851-d9487039b037)) + (pin "10" (uuid b8ab94d4-11ce-4bd1-8397-5811cbe78b4e)) + (pin "11" (uuid f06eba8d-a4f4-463e-ab9f-6eb31afef435)) + (pin "12" (uuid d9367344-f9d3-4706-9cf9-7918c26c3356)) + (pin "13" (uuid e7e7bb10-4555-4fa7-b403-f323c898a5b0)) + (pin "14" (uuid d5f51167-0734-4943-a32b-b1e4bfa2b2d4)) + (pin "15" (uuid 131ac87b-cbd9-49d4-b28a-f284351fe996)) + (pin "16" (uuid 0b68c4a9-e50c-44d5-9338-a645f26f0ce4)) + (pin "17" (uuid 64cb5e32-d78c-4a89-9555-2924b8717dc0)) + (pin "18" (uuid 02135084-8402-4014-a9fd-4b7d004876e3)) + (pin "19" (uuid aede8690-c0d2-43ec-8a83-9f903dc74a6b)) + (pin "20" (uuid 6cfbc41f-9b1b-408e-bc83-774804b74e9b)) + (pin "21" (uuid e3a95aca-46d9-45db-96e1-433277531d25)) + (pin "22" (uuid 31bd0e3a-3502-43d7-b221-0a0d821eb125)) + (pin "23" (uuid 33469e26-a513-4298-aeaf-e2a2740ffc3a)) + (pin "24" (uuid 9fba6d13-8122-4e9f-919a-d334c3fdc28a)) + (pin "25" (uuid ebb33ead-8f7f-4d30-8592-37d8d48e8554)) + (pin "26" (uuid 28f20da9-0898-4866-99c5-18bedfdff05e)) + ) + + (symbol (lib_id "eSim_Subckt:4_OR") (at 585.47 335.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15188799-85a0-4abe-b47b-2a2ac7c8f31c) + (property "Reference" "X14" (id 0) (at 587.375 323.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "4_OR" (id 1) (at 587.375 327.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 585.47 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 585.47 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 41c022a7-71e8-4404-9e76-4d369c99af11)) + (pin "2" (uuid 910e4e6f-2962-4e81-89f9-7301b8ca3885)) + (pin "3" (uuid 584e2b85-ac87-4aa1-9dc0-130d9207c054)) + (pin "4" (uuid fc85b573-04ff-46aa-a737-229f30fa0790)) + (pin "5" (uuid 56720ee3-8b05-4bf7-9ee0-982c83625210)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 554.99 358.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1693e1f7-7b75-4ac9-9ded-bbc0968aab0c) + (property "Reference" "X8" (id 0) (at 556.998 347.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 556.998 351.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 554.99 358.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 554.99 358.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b36c2144-595a-42e9-b389-d59ca5168df2)) + (pin "2" (uuid c054a4fe-fb69-491d-a8ba-e292b76d21df)) + (pin "3" (uuid 4ae4a29f-20e3-4b77-8e13-4b6787cb5000)) + (pin "4" (uuid f84c076c-a2fa-4d79-bd3a-ea39284ee962)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 468.63 354.33 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1f8ff052-e6a6-4007-9f2f-ff0c3cca55aa) + (property "Reference" "U1" (id 0) (at 469.265 349.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 469.265 351.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 468.63 354.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 468.63 354.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9b992e6d-7656-4676-bed4-e73bde097b8d)) + (pin "2" (uuid 5100f09a-7ab3-49ad-b0b1-4993e8995f21)) + (pin "3" (uuid 0bb5af57-5469-43dc-9ee2-1afe6b054434)) + (pin "4" (uuid 70af22e7-cc43-43a4-8212-807fb05a7066)) + (pin "5" (uuid 98d0e3bd-676b-4937-b96f-10e9d2ed9548)) + (pin "6" (uuid 2be79ea3-7a7a-4b85-84b0-669399fb3d4e)) + (pin "7" (uuid 82b58d3e-2a22-4029-a924-52eab19f8890)) + (pin "8" (uuid 06efef66-db89-4b75-9851-5e7099c609f2)) + (pin "9" (uuid f61bfc40-0597-4dbe-955b-a3fc09ef55f1)) + (pin "10" (uuid 51dad3db-97e9-443c-b70f-250770fd25c3)) + (pin "11" (uuid ba8a480c-b718-493a-a5f5-4ab35f80d239)) + (pin "12" (uuid 2237e6d1-745d-4b8b-843a-ebea8bbc6569)) + (pin "13" (uuid e8ce39b8-8081-4bf3-a300-00006d866420)) + (pin "14" (uuid a49ab32c-2a6b-4719-97a0-3a1a6be1d3b2)) + (pin "15" (uuid e9eb0f54-c3a0-4165-a307-d5b66e4093c1)) + (pin "16" (uuid 1e21d94c-1aba-4cb5-bba3-e8f0b9d783bc)) + (pin "17" (uuid 5a279e8b-47c7-44a5-a52d-20ed59057600)) + (pin "18" (uuid eb5c9849-e3d7-4233-86aa-c4e88618c3d4)) + (pin "19" (uuid b19ecbe1-8272-4006-9f50-f555ae0dcdae)) + (pin "20" (uuid a680ba36-0455-4e98-adf7-32e4c9a029aa)) + (pin "21" (uuid 33e9b4f6-ba0e-4260-8173-419eba9bd833)) + (pin "22" (uuid 41b2815b-116e-4450-998e-72c4cbbae390)) + (pin "23" (uuid f5ac85a1-905f-4fcb-9895-a34165c01a44)) + (pin "24" (uuid 0f7c29dc-e9ca-4614-8dde-b3ee89a9bda3)) + (pin "25" (uuid da2bf6d9-88b2-49d9-8627-879c5d0ab630)) + (pin "26" (uuid fa8e51a5-e304-49b3-a04b-745234d58e0c)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 488.95 497.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 27141cd2-0196-45e5-9baf-2d6e88bd0f2e) + (property "Reference" "U2" (id 0) (at 490.855 487.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 490.855 491.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 488.95 497.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 488.95 497.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3dd0d01a-ca00-41c2-a041-df92be3ca6fe)) + (pin "2" (uuid a553bb2c-efaa-4422-898d-e5a78e2c10fb)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 556.26 435.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2962d051-7c87-4f5b-b77a-f2c194737547) + (property "Reference" "X11" (id 0) (at 558.268 425.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 558.268 429.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 556.26 435.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 556.26 435.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 31707048-5d92-4462-90cb-4c6c3c9bdd69)) + (pin "2" (uuid 852e34ba-ccc9-4c17-bdea-fff8c39f2969)) + (pin "3" (uuid 9751ae08-fed4-482c-b072-ad9b79cfa697)) + (pin "4" (uuid 6a328ecf-7495-4a2d-a03a-129b4775f902)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 458.47 542.29 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2beb8e2d-7de7-4e2e-8801-37becfad480e) + (property "Reference" "U1" (id 0) (at 459.105 537.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 459.105 539.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 458.47 542.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 458.47 542.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 39a82fbe-c5b8-4c9a-b949-df55b0b6790c)) + (pin "2" (uuid a5c21af3-c998-46d7-9db5-88ac19badbd7)) + (pin "3" (uuid 80008ce0-4708-433f-81c7-a6a392dfd1de)) + (pin "4" (uuid 12da99ab-9248-41a5-8b26-c63b866da98a)) + (pin "5" (uuid 79fc7ebc-48e3-47a7-8e52-843ca0a54ef3)) + (pin "6" (uuid 2a2ea359-2504-498d-8654-cd2286b0efcb)) + (pin "7" (uuid f9079246-ac28-4f79-8aa5-319bad45b368)) + (pin "8" (uuid fa34fe17-f6df-4b74-8bda-694a3708acc8)) + (pin "9" (uuid 73df9685-ead7-4f4a-8706-2d9d3366c4eb)) + (pin "10" (uuid 1c796a68-6242-45f8-a11a-aa042eb1f915)) + (pin "11" (uuid 50b1008b-f318-4920-a1c9-63bd108d5869)) + (pin "12" (uuid 2f1b4a7f-125f-409c-9dfc-664f39b65f77)) + (pin "13" (uuid 47947b2c-0d68-4f16-af6d-9e7e9007496a)) + (pin "14" (uuid 0d0b3d41-e120-4c9d-a3e6-ef26db7cc714)) + (pin "15" (uuid 5304957d-2f4b-40b7-8c40-7d51d7dbf3e5)) + (pin "16" (uuid 600f7b8a-0e24-4876-9289-df310b9f1e59)) + (pin "17" (uuid 711cc9d0-236d-4602-839e-ef67589a82ae)) + (pin "18" (uuid b69b1e24-9ef7-4c56-8b22-a8b72696d949)) + (pin "19" (uuid 43efdf12-5c02-4310-80f8-7b906183a657)) + (pin "20" (uuid 6d83b4ce-f4df-462f-be28-a7f6100da69c)) + (pin "21" (uuid 3782deac-6eb3-49ad-99a2-40780003aee7)) + (pin "22" (uuid 7be114fb-56cf-42e3-ab1f-8a7c5a2e88ff)) + (pin "23" (uuid 50fa2388-1250-4d4f-9060-6eeb4dec39b8)) + (pin "24" (uuid 891da9cc-b6e6-45e0-9a08-cee889aa6564)) + (pin "25" (uuid 4d6cf201-ca1a-4533-bc11-386cf36a7810)) + (pin "26" (uuid d6822027-84ee-4790-bbd0-85d9140f1cdb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 457.2 513.08 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 363fad4e-b198-49a3-8498-04fba65ad672) + (property "Reference" "U1" (id 0) (at 457.835 508 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 457.835 510.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 457.2 513.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 457.2 513.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d2646b07-2470-4ffc-8072-b4c00e4a341e)) + (pin "2" (uuid b449df37-d696-43f5-a5e2-012872df89e1)) + (pin "3" (uuid 4726874a-0370-4319-9111-e96982d9966b)) + (pin "4" (uuid 0cd0fe05-15bc-4d8a-bc30-1cd71776ddee)) + (pin "5" (uuid 4e4afba5-a30e-4f73-8941-d49f9ad7eba1)) + (pin "6" (uuid f52ddab2-e69d-48d3-8dfd-aa4a8bcaa074)) + (pin "7" (uuid dc736d73-165e-4fcd-bf6d-9f772aec9134)) + (pin "8" (uuid 05f7f5ed-c4dc-47fe-88ae-066ef0bc0563)) + (pin "9" (uuid d7c7823a-5a66-4c19-b891-82a190f4dc2a)) + (pin "10" (uuid aa207451-ab39-4e72-a5c2-4324a573e7b7)) + (pin "11" (uuid b9a10d01-5fb9-49e6-acd0-e2a39f5ff451)) + (pin "12" (uuid 63345b7e-cb3a-43de-b95b-adb7ded163a2)) + (pin "13" (uuid f62a9033-6fd5-459c-9683-0b920e4b86dd)) + (pin "14" (uuid 86d77f28-ba95-445d-89b1-0ca4685acb93)) + (pin "15" (uuid 082b02da-048d-4642-9787-233322ed6efa)) + (pin "16" (uuid ad739eed-f5de-416a-88cd-58fbbb1b509e)) + (pin "17" (uuid 358b7990-b739-4411-875d-e0ec3128c3f0)) + (pin "18" (uuid 05bfd47f-81b9-4325-ac47-bde4b974f0bd)) + (pin "19" (uuid 0254772b-27de-433e-a0ae-25cca5fbdb99)) + (pin "20" (uuid b92a69a8-c66d-4cd1-8c86-205b8c8ebd04)) + (pin "21" (uuid 3e9dbff6-6fd1-4f48-b93b-ebb41a18cea5)) + (pin "22" (uuid 631e83eb-2e5e-466b-af31-110e6580f778)) + (pin "23" (uuid a40a0590-1184-4ee9-8caf-7d2f4ec4c50d)) + (pin "24" (uuid 75f39ef1-4c17-47ea-88a8-30b6b7f2e8e9)) + (pin "25" (uuid c43a59a4-81d9-4029-a9b6-5dbe6a7f4904)) + (pin "26" (uuid bd40f3a7-78bd-409b-819a-4d2390b8578d)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 488.95 542.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 417d67a5-0464-48a7-b41a-63c7c76f0f62) + (property "Reference" "U5" (id 0) (at 490.855 532.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 490.855 535.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 488.95 542.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 488.95 542.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cc2432fa-c493-4869-a894-602e553823ba)) + (pin "2" (uuid 5fc7c725-631c-43d3-8fab-aceaa3902071)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 556.26 449.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45fe1f4a-be66-4e76-86f9-cd95d8c2bedf) + (property "Reference" "X12" (id 0) (at 558.268 439.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 558.268 443.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 556.26 449.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 556.26 449.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d80ea67e-e96d-4036-9524-e96a2939ba23)) + (pin "2" (uuid f26b289f-4bd0-42b2-be5f-c63bf3ba3e9f)) + (pin "3" (uuid 17a4f487-8dcb-4a58-b6f5-f55ef3a6fe3b)) + (pin "4" (uuid 59ccb33b-1c9b-4165-8210-03aabbfe68b6)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 622.3 344.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4757032d-999f-4b2e-b11a-a1d065b5199d) + (property "Reference" "U13" (id 0) (at 624.3194 327.66 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 624.3194 331.47 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 622.3 344.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 344.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9762d387-679a-4be4-a1d9-26bfc726955e)) + (pin "2" (uuid c19d2ca0-8657-4748-b37e-fc19ef2f4375)) + (pin "3" (uuid 9e1ea554-c545-46b8-9db8-9c2a2ba266b8)) + (pin "4" (uuid 1d5dd07a-c87e-4d89-a050-660fbd0be3a8)) + (pin "5" (uuid 1cdfe314-abc4-41e6-ac8b-9d56815de633)) + (pin "6" (uuid 5bc739ad-ecd2-443e-b825-2e5a51d7f124)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 556.26 405.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4ccf5102-7662-4e99-9a9f-b9f007c4bd1b) + (property "Reference" "X9" (id 0) (at 558.268 394.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 558.268 398.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 556.26 405.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 556.26 405.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d22bdeee-952b-4164-9d4a-96f9a27ee4cd)) + (pin "2" (uuid 6e74ebbf-4e05-43a4-ae53-987828b48029)) + (pin "3" (uuid f2a4ad2b-f843-490c-8d0c-f272a6a3e4da)) + (pin "4" (uuid d2418f02-38ec-4ab1-afd1-698be18a9338)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 554.99 265.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e392341-5eff-4a3d-8b18-edfa3761148a) + (property "Reference" "X4" (id 0) (at 556.998 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 556.998 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 554.99 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 554.99 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 04c1fe5d-76fc-43c9-a062-0448c0e4621e)) + (pin "2" (uuid 9bb9e9c1-120b-4a5e-8ab9-77533a77f679)) + (pin "3" (uuid 52e77ba8-a3ff-4675-b68a-530902b1841c)) + (pin "4" (uuid b89f1b05-ba7a-4368-87df-b592214ee607)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 541.02 464.82 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51b0108e-9636-4d37-92db-87f3b504e655) + (property "Reference" "U11" (id 0) (at 543.56 463.55 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 543.56 467.36 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 542.29 463.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 542.29 463.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 083073cc-ee0c-4012-988f-b843266efa5e)) + (pin "2" (uuid 2061f5d3-165e-4865-a374-2c9b3ea5dcfa)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 480.06 431.8 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 534671d5-56ab-4e4a-a1ec-8e35bcd311a9) + (property "Reference" "U1" (id 0) (at 480.695 426.72 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 480.695 429.26 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 480.06 431.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 480.06 431.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f119ff78-19e9-4afe-8f64-4cfd353b37cd)) + (pin "2" (uuid b76648e0-ef3f-4d1c-8841-652d834d41a8)) + (pin "3" (uuid ddb82e2f-a0ae-4ac6-acfb-0e5ed5f03896)) + (pin "4" (uuid 339e7ca2-1aae-4fc0-9927-c4c8f4042a3b)) + (pin "5" (uuid 5265557f-51c2-4b18-b77b-a0475c4475c8)) + (pin "6" (uuid 868507e1-bf58-483c-ad25-900a78db7599)) + (pin "7" (uuid 4d79e94d-9121-4955-a05d-5e0be74ac6eb)) + (pin "8" (uuid 16d4c236-a368-4855-b99c-7f1588fe181f)) + (pin "9" (uuid 7fcd2dc4-c647-476f-8b86-e6cd5ef7d066)) + (pin "10" (uuid 9ce80e47-a96f-4cb8-a5b8-54bd591b893e)) + (pin "11" (uuid 0aa130cb-c3aa-4220-937c-2aca18ea59e5)) + (pin "12" (uuid f6b61338-9ba3-40d5-8510-5b7ad7074e41)) + (pin "13" (uuid 30edf4f0-7850-447f-8e1c-fafeee89e773)) + (pin "14" (uuid ebd87933-20f8-47de-8909-847c1ce5c94c)) + (pin "15" (uuid 3e26c046-0e7f-40f0-907b-4798acf93bfd)) + (pin "16" (uuid 642177c1-04d0-4244-8171-790bcd64ef72)) + (pin "17" (uuid dfba5fbe-fabe-4997-b023-e87bb19d8e13)) + (pin "18" (uuid 87ec8dd2-07ab-4dae-a4db-1041ac777825)) + (pin "19" (uuid 41be6215-e349-449b-bee9-4e562fb8377f)) + (pin "20" (uuid 01992713-efde-4f4a-bc46-b3578c9bddb4)) + (pin "21" (uuid 37260a29-2d5a-4d54-9ad7-8aa951f5c3ef)) + (pin "22" (uuid 9547c068-f203-467e-a9cd-c13f87bda4c3)) + (pin "23" (uuid 7546fd1b-a9a4-4495-ac3b-885707d61982)) + (pin "24" (uuid 90b158f9-4856-4b4e-9fa9-d91191bcd29e)) + (pin "25" (uuid fd61e5a1-082b-4e93-8d50-041f560e6139)) + (pin "26" (uuid 602bfa8a-75f7-4c12-a2b1-ce5f4d8b2386)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 469.9 325.12 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 54b5b5a4-a7b2-41e2-8ae5-ec49a33a9db5) + (property "Reference" "U1" (id 0) (at 470.535 320.04 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 470.535 322.58 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 469.9 325.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 469.9 325.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 294f9bcc-a9b9-45bf-8d57-683fcdfccdf4)) + (pin "2" (uuid a079fa59-d30c-474f-b6bf-b85b19e5b0ca)) + (pin "3" (uuid 438be57b-e7a4-4e83-a13b-993690bed9a5)) + (pin "4" (uuid 00dee88a-4763-4e15-8965-49029f216f32)) + (pin "5" (uuid c53e4f05-8092-42d3-b303-3d322f5ba423)) + (pin "6" (uuid 7602c5c8-ed32-44de-8ac1-558d2bb97f79)) + (pin "7" (uuid e736a68e-86d1-4552-9acb-2764b63e7ff3)) + (pin "8" (uuid d85998dc-8e84-4212-b98f-c67a9e260126)) + (pin "9" (uuid 2fde1740-14b9-445c-b16e-5f511237baac)) + (pin "10" (uuid 8714a13e-2dec-4383-91ca-1895b6441f77)) + (pin "11" (uuid 6bc272f5-cd4f-44d3-a71c-9ef1a839d245)) + (pin "12" (uuid 53a5fdc4-b67e-4aee-bf9d-490d3fb59068)) + (pin "13" (uuid 9a37a517-fdd1-41da-a613-3c90ac45f486)) + (pin "14" (uuid 135e016d-9733-4df1-97c6-236a6444eaf0)) + (pin "15" (uuid 0f4346fe-7bbe-427a-bbbc-20c979a82afd)) + (pin "16" (uuid 4a0f076a-73f2-465f-99c7-0a6f95029fe0)) + (pin "17" (uuid 755045dd-6de8-45c0-8166-5d7b7ee83655)) + (pin "18" (uuid 2404668a-f29c-4b74-b66f-dde87273502c)) + (pin "19" (uuid 8dabf7d5-9705-4ff4-9633-f7faf10ee3c5)) + (pin "20" (uuid 5398ab90-b79a-44ac-8030-a31310f69865)) + (pin "21" (uuid 2565d006-8c78-4229-8382-d90a68f4dbd4)) + (pin "22" (uuid 982ef69a-4f2c-4913-a249-14efee176df6)) + (pin "23" (uuid c184f6cc-4825-43a9-b5e0-1d5db7ec482d)) + (pin "24" (uuid 9ab10ff2-fe91-4ce1-91d9-0dbd0273aaaf)) + (pin "25" (uuid 406f4805-5260-42dd-a8d2-b8f9f0375385)) + (pin "26" (uuid 0327d255-0a68-4dca-b002-69e5260179d9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 668.02 443.23 180) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 55c82406-3ae3-4b5f-a159-1a3769a4d523) + (property "Reference" "U1" (id 0) (at 671.83 442.595 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 671.83 445.135 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 668.02 443.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 668.02 443.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4cf186e6-002f-4411-bae7-f20e54750340)) + (pin "2" (uuid 60381668-1f5a-440b-9081-e52ce8214f1d)) + (pin "3" (uuid 1b6dc887-513d-4f2d-bcb0-6d3507c2d6b6)) + (pin "4" (uuid 69a97aad-2512-4720-891a-31c7f8b2c05b)) + (pin "5" (uuid da604075-c9de-4b42-92f5-54912238b302)) + (pin "6" (uuid 9aa1e594-a349-4b00-a2d1-824b1fb72742)) + (pin "7" (uuid eace139d-9d02-404e-abf0-b5fec7b4ecc2)) + (pin "8" (uuid 84ad344d-ed19-428b-b211-c07d1a4703f8)) + (pin "9" (uuid 6baa728d-f1a6-48f2-bc39-423804180549)) + (pin "10" (uuid 0cbc1644-b3c5-48a5-a3f3-f5da3ae2140e)) + (pin "11" (uuid 025843e8-814f-4de0-ae1e-ba3bbb483e61)) + (pin "12" (uuid 58ba4356-a0f1-4a0a-888c-22a089aaefa4)) + (pin "13" (uuid 8373d43a-3c89-4c1d-b9fc-c6b1039825e1)) + (pin "14" (uuid 473922a2-3614-43ce-9a94-1dbaa85eac2d)) + (pin "15" (uuid ee794932-3d04-4b74-8dee-fdd5edbb92bb)) + (pin "16" (uuid 9874a358-53d3-4f4c-b393-c4d2c9ed87a8)) + (pin "17" (uuid a0a1d63f-1c90-4581-a697-e4a6fe92dc6c)) + (pin "18" (uuid 7385c5d2-cbf1-4033-bedf-142665371d43)) + (pin "19" (uuid 443fa646-f73a-4eb9-8d40-05d3853be14c)) + (pin "20" (uuid 10d08749-cefc-4836-9798-b67fb33d16ec)) + (pin "21" (uuid 10f8971a-f7b8-4aac-8f46-54a795db8b23)) + (pin "22" (uuid 6501154b-da01-4f89-a4c3-e672db6dd09a)) + (pin "23" (uuid 76a47aeb-907c-4722-a73b-f4894b92a46a)) + (pin "24" (uuid 66b056fe-ea42-441b-9fbe-de8c591ac3cf)) + (pin "25" (uuid 34e2228a-2f34-4dee-a8ff-8dbe539f4e1c)) + (pin "26" (uuid 5db0a232-858e-43fb-9e79-6f4baeea6d02)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 458.47 529.59 0) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5660892e-a415-4e94-adaa-912b8e2aa8c4) + (property "Reference" "U1" (id 0) (at 459.105 524.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 459.105 527.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 458.47 529.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 458.47 529.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 96b805c8-79f0-496f-b178-cf26b21a4e41)) + (pin "2" (uuid b3a44a1f-48c2-4abd-9add-6454a4dbb055)) + (pin "3" (uuid 316841b4-244e-4a07-96ba-c0b2298ccc9f)) + (pin "4" (uuid 99230b1c-40ff-43d0-a817-2ff1baa35256)) + (pin "5" (uuid 2b4d00d6-68cb-4b3e-9537-15262a76d36c)) + (pin "6" (uuid f6658af8-f395-4b4e-a696-d33b99e9a240)) + (pin "7" (uuid d2c807dc-c6a0-43e9-9c6c-a52c8d43e3a2)) + (pin "8" (uuid 362b1575-8efd-4455-a40a-37c9f0e0a6ce)) + (pin "9" (uuid cfdf03e7-3371-4c15-aeb0-a33830e7b9dc)) + (pin "10" (uuid 640cc859-dcba-493e-8fd9-67149c932308)) + (pin "11" (uuid 23c1070d-2baa-44bf-84ab-7ceab2d1c6fc)) + (pin "12" (uuid e578e1b7-24ff-493e-9929-03f7df5dc308)) + (pin "13" (uuid 5b8f53a9-428b-4412-b499-c2e563646a2e)) + (pin "14" (uuid b0f98987-6584-4ac9-8113-7893634991bb)) + (pin "15" (uuid 87c451ab-1ca9-4580-83d0-7bf6ea876b2b)) + (pin "16" (uuid c7f74fcb-aa6d-4e42-a5fd-cd677147b352)) + (pin "17" (uuid 9181be27-2d90-41d0-97b0-c0a04c99fb0a)) + (pin "18" (uuid de5a6e5a-4685-49ea-99c8-a2809817d1c6)) + (pin "19" (uuid a4ec7aa4-b027-404a-9382-846078ddc034)) + (pin "20" (uuid 61a62509-0d2f-4323-a257-5fd2d95d243a)) + (pin "21" (uuid 38910ef7-1093-4516-80e9-04ce19e763c3)) + (pin "22" (uuid 812657bc-b9c1-4a2a-bf36-d3e9e4af2e14)) + (pin "23" (uuid e8d1f6f0-870d-441c-a905-d054060b9e19)) + (pin "24" (uuid b1f8e007-2dc2-49d0-9ff0-ed91d7140053)) + (pin "25" (uuid 74113f29-d756-48a7-ad4e-8ab6e63ecb3c)) + (pin "26" (uuid 663207e5-8aaa-45ab-a490-1eed3dd77d30)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 488.95 513.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 56fdd421-acf9-4562-a1d0-2a6b17500d65) + (property "Reference" "U3" (id 0) (at 490.855 502.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 490.855 506.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 488.95 513.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 488.95 513.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5ac5d3d9-da70-45c6-92ac-8d038dd66bc0)) + (pin "2" (uuid 000e10e4-fa8e-4f58-a489-8c3f7e16d7cf)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 554.99 328.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d5f8292-7911-4f3f-82c8-20b1b37cc797) + (property "Reference" "X6" (id 0) (at 556.998 318.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 556.998 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 554.99 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 554.99 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7010c090-0836-4d96-8be8-3d649358d197)) + (pin "2" (uuid ebfb128b-6851-4bcb-aa97-39a3f28b16ab)) + (pin "3" (uuid 75c2bfc2-ad49-4adf-97c7-aa7bc7741f08)) + (pin "4" (uuid 23328438-a440-4ccf-9ba8-a76fa506bfdb)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 539.75 280.67 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ed32f37-e2c4-4539-a1eb-4f507ef1d9c6) + (property "Reference" "U9" (id 0) (at 542.29 279.4 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 542.29 283.21 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 541.02 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a868a2db-637e-4116-834d-1e01b86c0284)) + (pin "2" (uuid 0754ff99-ab4f-43ba-9ee5-6fd873cd67e0)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 554.99 236.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6182a6ac-185e-49f4-a105-01a70908480a) + (property "Reference" "X2" (id 0) (at 556.998 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 556.998 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 554.99 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 554.99 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e879642-6090-4fd9-836a-b6db91988f9e)) + (pin "2" (uuid c73d11da-4963-418a-a4b2-1fde0acc046d)) + (pin "3" (uuid 22460df0-7108-4c23-901b-251acb603530)) + (pin "4" (uuid eb9ae638-e014-4781-8656-df488bb26402)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 554.99 220.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67718972-6350-471a-ac41-4a4d406ac9b3) + (property "Reference" "X1" (id 0) (at 556.998 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 556.998 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 554.99 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 554.99 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c64e2680-362e-4cc9-9ecf-3a16e21c23ae)) + (pin "2" (uuid bef302f0-6fe6-4371-aeb4-801eb90ea3b2)) + (pin "3" (uuid c8ffb18b-d7b3-4cd9-81f4-525350e67a74)) + (pin "4" (uuid 82c0c826-fae5-458c-9e6b-31487150d2e7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 472.44 247.65 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 69bd39d1-2ff0-41f4-a03f-6961d3877201) + (property "Reference" "U1" (id 0) (at 473.075 242.57 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 473.075 245.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 472.44 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 472.44 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b423b5de-dc72-41f5-b8da-8a19c0d07053)) + (pin "2" (uuid de6dff30-2b13-4069-b944-92f7e7372b17)) + (pin "3" (uuid 269557bd-850b-4070-8fa3-cbc6bf1ae5a3)) + (pin "4" (uuid e9dc69f9-432a-493a-898c-ed26106aa458)) + (pin "5" (uuid 0eea2f18-1435-4153-a1ac-fb372f35a75e)) + (pin "6" (uuid 6e1f962a-5501-4d42-8927-91884ec04444)) + (pin "7" (uuid 43215dc1-8fb7-47ac-97ab-7f745fd2f77b)) + (pin "8" (uuid 437368bd-5a90-4368-a4a3-8e3f77ccdc6d)) + (pin "9" (uuid 5f580a73-ac73-4a05-9795-34f7c0ee9564)) + (pin "10" (uuid 50de5c32-1222-4588-aa34-1a282a1ffd0f)) + (pin "11" (uuid bdd4378b-2a44-4ab9-b530-474fe8a8765b)) + (pin "12" (uuid aa6fbbf8-8310-47ba-823c-06da968d37a1)) + (pin "13" (uuid 1b2e085d-a049-43f2-b31a-30466cbb0bf7)) + (pin "14" (uuid 5fb37b4a-10f0-4416-80c1-ff6ad37573e3)) + (pin "15" (uuid 9c8132b9-3fb3-4e2e-aea6-25baa02f7379)) + (pin "16" (uuid cd49b341-1330-491d-8031-a4c8a874b143)) + (pin "17" (uuid b65fbe76-4ff9-4908-9299-5e41c0433e00)) + (pin "18" (uuid 2b7a610a-5439-4fd7-b63f-9052c68425cb)) + (pin "19" (uuid b8f246be-9737-4b72-88d9-76c5ae368e29)) + (pin "20" (uuid 589bf31c-2402-4ff5-b0bd-163fc7bd9cd5)) + (pin "21" (uuid 396f9601-4ca0-46ce-b822-7cb5542cac66)) + (pin "22" (uuid 08ac2311-3e67-4c8a-a6a9-d87f425bc0bf)) + (pin "23" (uuid b68a30fa-4c77-4590-ae0e-51169943e51b)) + (pin "24" (uuid faaee489-71b6-42ea-8bb7-4fbb76a915ba)) + (pin "25" (uuid 6f6f3f34-245e-4d8e-bf31-18de7df7523c)) + (pin "26" (uuid 332accb4-6c67-4019-acd8-3696adf45fb0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 482.6 401.32 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 78691f62-4336-4767-9724-3fa2f0b08dc8) + (property "Reference" "U1" (id 0) (at 483.235 396.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 483.235 398.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 482.6 401.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 482.6 401.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dcca24ce-5b42-49e1-b5a3-374aba87d24e)) + (pin "2" (uuid 1156f645-a27a-4708-bf65-f0401361fd11)) + (pin "3" (uuid cf2a1a55-5215-42ac-9048-e7bdd0be3c55)) + (pin "4" (uuid 87db76fc-7d90-4417-a29e-bba4e5fcc63e)) + (pin "5" (uuid 94fb835a-0933-4e4d-b631-c0a9867758af)) + (pin "6" (uuid 7fdedacd-dae4-4767-beb0-60de9e997dc4)) + (pin "7" (uuid d86c3517-a634-4d4f-a482-3c0ff40ff0a5)) + (pin "8" (uuid aeaa04a5-3de2-44c0-a48a-153c7bbb00c4)) + (pin "9" (uuid 6fa49f75-3b29-46ed-aca9-165e981c10c8)) + (pin "10" (uuid 56ba0b25-5a61-42cf-b2df-b23b91538d2e)) + (pin "11" (uuid 484e74f3-5f50-40db-95a3-e97d52aba2b5)) + (pin "12" (uuid e75a2b7f-177b-4110-b5f9-169b94f72ee1)) + (pin "13" (uuid 67c7cbb5-d113-4da8-9934-9c8286abc1b0)) + (pin "14" (uuid e49a7f79-1719-4904-94e7-7d45e7b4c7d9)) + (pin "15" (uuid 68ee99de-6eca-455e-8ed7-c91d1ad5afc7)) + (pin "16" (uuid c330b7bf-e11a-4ee9-8449-b22ed9a89afa)) + (pin "17" (uuid dd83cd3d-6595-47a1-a690-98ffe8dc48b8)) + (pin "18" (uuid 96291487-2776-4838-8d08-3058f3a0185e)) + (pin "19" (uuid f40236a2-e265-43c5-98f3-2052f75926b2)) + (pin "20" (uuid 4ee16b76-5246-4454-a3a6-d062e56c47db)) + (pin "21" (uuid 26631c5e-86d9-4cb6-ae0c-af616cc50e05)) + (pin "22" (uuid 9c9710c6-85d4-4b4d-ab96-29cb9ee666ca)) + (pin "23" (uuid f4f83545-23bb-4f70-b2b9-b567a7cb9cc4)) + (pin "24" (uuid 2d653f9d-3688-495b-b328-c4754ecb5f87)) + (pin "25" (uuid 0da4e874-d37e-4c2a-bcdd-34c9b89361ac)) + (pin "26" (uuid 1bf4eb49-cd78-4267-9fdb-c18976fac6cc)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 488.95 529.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ffd730a-64f1-4cb2-be80-09a689487168) + (property "Reference" "U4" (id 0) (at 488.95 520.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 488.95 524.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 488.95 529.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 488.95 529.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d20dd8fb-100f-4014-a785-0888b85ddb3d)) + (pin "2" (uuid b04784a5-c6c6-48de-a35f-78c61824f88d)) + (pin "3" (uuid cf4d4040-24ff-44cd-aad4-aa827d595111)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 622.3 251.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 842db722-5a40-4f63-8074-d2f92cd4f075) + (property "Reference" "U12" (id 0) (at 624.3194 234.95 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 624.3194 238.76 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 622.3 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9f76021a-a632-4825-9b70-6ef0686bfd8d)) + (pin "2" (uuid 98ceb3d0-3951-4665-963c-482d7397b3cb)) + (pin "3" (uuid 09dd1af0-714f-4b40-a2fa-96e796f73c7a)) + (pin "4" (uuid 51ec6627-0495-4f5d-b039-99ac4b6c5b09)) + (pin "5" (uuid 2e60bb6a-881b-4e3c-b413-5650b7e97772)) + (pin "6" (uuid da187005-0a7b-4e4b-ba1d-b6ec5b3c2f99)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 664.21 351.79 180) (unit 20) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 880c4353-8b04-4a5d-a8f3-6102283a266c) + (property "Reference" "U1" (id 0) (at 668.02 351.155 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 668.02 353.695 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 664.21 351.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 664.21 351.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b4eeb00d-3b56-4389-bbdf-e8c720b15841)) + (pin "2" (uuid dc124802-d76c-46bd-bc97-7fcdcdf0d278)) + (pin "3" (uuid 8f33d905-2292-4545-929d-f73bcd2f5168)) + (pin "4" (uuid ba982940-da7a-4530-a7cd-732872cabb7f)) + (pin "5" (uuid 48917acd-a1c4-4aed-99bb-129f2e035224)) + (pin "6" (uuid 2d2acebf-8e8b-443a-9681-218c0b1972b8)) + (pin "7" (uuid b471197a-a2c5-40ab-a8c7-f8e75a46e9d9)) + (pin "8" (uuid 8b29f2d6-3375-41bc-bacb-6d2063885df9)) + (pin "9" (uuid 0daf4dae-e4e6-4781-b971-e15b6feb0c20)) + (pin "10" (uuid 6dc36867-7694-49d8-9a20-51f1f1816c5f)) + (pin "11" (uuid 6e5ccf54-6294-499f-a02c-686ef5820d91)) + (pin "12" (uuid ba75f153-1887-437b-8b3a-23f31901b16b)) + (pin "13" (uuid ab14a6f9-379d-4c03-acb0-d774e9265a0e)) + (pin "14" (uuid c8a83214-51df-4d0c-b4f0-9212f18f3882)) + (pin "15" (uuid c8eba368-846e-4232-921c-ba89bf11ae7a)) + (pin "16" (uuid 86af2f9c-1131-447e-b59d-6b4d9da45651)) + (pin "17" (uuid 00b72a3d-3f27-4342-b022-89b7f1ccc80a)) + (pin "18" (uuid b366a294-4a61-45e0-a0b2-3f604e00f6ed)) + (pin "19" (uuid 2a00f54e-52c7-4252-a689-6ef507bb7446)) + (pin "20" (uuid 5cbc7157-b6a3-48fa-ba1a-aab980295ef3)) + (pin "21" (uuid 056f0385-ad11-45aa-b8f4-98d39e8eca26)) + (pin "22" (uuid 5c443ca2-e7c8-473a-9d08-e93c3dc0593a)) + (pin "23" (uuid f9b8d02b-452a-4cc7-9c4f-dbbd18a3d4a2)) + (pin "24" (uuid c927e229-9177-47ae-8709-b31b135d25f8)) + (pin "25" (uuid 395cbcd1-0f04-4312-856e-f4127495549b)) + (pin "26" (uuid c311578e-852c-4413-bb42-3a7b2bfeeb5c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 532.13 373.38 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 894729a7-f269-4f3c-b605-56017bc5bda5) + (property "Reference" "U7" (id 0) (at 534.67 372.11 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 534.67 375.92 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 533.4 372.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 533.4 372.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ebd2b0b6-571b-4d8c-9425-703ce402f169)) + (pin "2" (uuid 281cb300-bf1a-43c0-80f7-64e56ad9ec64)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 533.4 464.82 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 907f9914-1229-4852-a97c-c530d18113d2) + (property "Reference" "U8" (id 0) (at 535.94 463.55 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 535.94 467.36 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 534.67 463.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 534.67 463.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b5fb143c-e760-4f14-8073-d0b5bd652b4c)) + (pin "2" (uuid 0f09c4c3-d3c7-4615-9916-3bb5489946e8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 458.47 527.05 0) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 910809ee-d434-491c-9e06-d72bca255881) + (property "Reference" "U1" (id 0) (at 459.105 521.97 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 459.105 524.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 458.47 527.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 458.47 527.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eebd411a-40b3-4f18-837a-5644890db754)) + (pin "2" (uuid 4e1c858f-f4ae-48c6-89b1-75665041431b)) + (pin "3" (uuid 008e8bba-b30e-4b73-82e1-289750cf8346)) + (pin "4" (uuid a9b9d43c-11dc-46b2-8705-750b815fff76)) + (pin "5" (uuid 5e372a5c-e181-452b-b9fc-c765f0694036)) + (pin "6" (uuid 9c0ec093-f8c2-4795-a690-81661ab14757)) + (pin "7" (uuid 08f94e07-bd15-465b-aeb2-b569730f5e84)) + (pin "8" (uuid c21b8a80-435f-47ae-a2de-66977082fbd2)) + (pin "9" (uuid 7b608823-1f95-40b0-b062-a0ed6458d465)) + (pin "10" (uuid 31b71791-f2d4-440a-b088-51cdbbcdddf4)) + (pin "11" (uuid 382140a3-355a-4f0a-8f5e-eafa532febe3)) + (pin "12" (uuid 1ef03ffe-8868-42a0-adc8-408bf9de390d)) + (pin "13" (uuid 1c44269d-d067-47a4-9d65-83fc42b37e34)) + (pin "14" (uuid 9456726c-92c3-43db-9183-2882a5b10487)) + (pin "15" (uuid 2f037432-eca0-48f6-8d21-d909ae85ae90)) + (pin "16" (uuid ec5846ce-29d5-4973-8430-711e8ecebf9e)) + (pin "17" (uuid 90372b15-13ea-449b-b21f-02b0fd25b97c)) + (pin "18" (uuid 0e87159f-00f2-4e1f-b3c3-7d980facdadf)) + (pin "19" (uuid 13e04748-34db-4e37-9816-3e9b01d2a8cb)) + (pin "20" (uuid 1c2c767e-f8a1-479f-83fa-75fbcb9f4e14)) + (pin "21" (uuid 5bbcabdd-2b43-4700-973b-e9fb8c16bb8d)) + (pin "22" (uuid 74a0914d-4a9d-4995-b13f-a441f6f1a147)) + (pin "23" (uuid 2f8b13d9-e5ea-4c6d-9db9-ca1799970a51)) + (pin "24" (uuid 3cdff922-ed74-444b-87da-b2237ed4c210)) + (pin "25" (uuid f8f70140-d1d6-4310-bea3-67976e42b304)) + (pin "26" (uuid 567fff93-6db0-4f94-990c-1874c49cb86f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 665.48 259.08 180) (unit 22) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 916438a8-27d2-4ec6-a0b1-3e0ad6b08c7b) + (property "Reference" "U1" (id 0) (at 669.29 258.445 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 669.29 260.985 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 665.48 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 665.48 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dfac7bc2-ef5c-45a1-b3bf-976552a9e742)) + (pin "2" (uuid ac7088ce-7389-434c-b60f-abf902ebd873)) + (pin "3" (uuid f82daae2-91b5-4277-a563-d3720ef06a43)) + (pin "4" (uuid 445e971f-8ea3-4e3e-9a6f-b0122813462d)) + (pin "5" (uuid 1ec3f1f6-f03d-4a47-9008-b730ef8fb8c4)) + (pin "6" (uuid 3b1c3201-c6b6-4f78-8f8e-62f4f526677d)) + (pin "7" (uuid 97868653-c26d-4ca7-b734-4044d5b22366)) + (pin "8" (uuid 1207f7be-1aef-4fce-84c0-28557e822b5b)) + (pin "9" (uuid 5e5f1af3-b3fc-4a6e-ba18-47c2980f0232)) + (pin "10" (uuid 8b49fb61-fb45-4dfe-a004-edea804f016f)) + (pin "11" (uuid 8a8fa847-0acd-43e7-900a-574fdf81a3e7)) + (pin "12" (uuid df2e9d44-ad58-4fb5-9675-86e2d49ea173)) + (pin "13" (uuid f62e4f1b-a7a9-4df7-ac26-3b701ebaba5e)) + (pin "14" (uuid fc04f377-7cd5-4a87-ba5c-eb186fd732e6)) + (pin "15" (uuid 0f458136-7dcf-43cd-b7b4-1fcad27a9187)) + (pin "16" (uuid 2153df37-f9e6-49e1-9f83-274f1d8cc34a)) + (pin "17" (uuid 33966fa0-6c82-4c56-85ca-db288015060c)) + (pin "18" (uuid c8504e73-64b5-482b-a47e-f7e95b06be3f)) + (pin "19" (uuid 5d635f68-04dd-40bd-86c3-859017b9b5ae)) + (pin "20" (uuid 583d0db8-4695-4e14-981a-76eaa2c374a8)) + (pin "21" (uuid 4ac63389-f4e5-46e4-8d79-b0ad8897a700)) + (pin "22" (uuid da9bcf93-cd98-4d79-af24-79820f48b4b5)) + (pin "23" (uuid 9734026d-681d-4d2c-91dc-977de7224e28)) + (pin "24" (uuid 0b6f2102-cbb7-445f-8912-247a2c83000a)) + (pin "25" (uuid f05ee26f-29b2-481f-bbee-c18b14361dc9)) + (pin "26" (uuid ac096c33-364c-43d2-9f86-335350e360cd)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 469.9 217.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93d90225-5e46-4d52-8de0-cb8e56498f57) + (property "Reference" "U1" (id 0) (at 470.535 212.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 470.535 214.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 469.9 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 469.9 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d88762db-87ed-4913-82d2-acfb1aef4fd8)) + (pin "2" (uuid d4ad3008-22f1-4504-a836-aff0196182a1)) + (pin "3" (uuid 9708f2cb-ec8e-4c80-8c78-c7accf56ba38)) + (pin "4" (uuid 13e90692-756a-4667-af03-9c5b32b4792d)) + (pin "5" (uuid 21616e7a-4463-45ca-81f8-e80b0347881f)) + (pin "6" (uuid 6e10c951-0c5f-491e-8a5e-7982239fef14)) + (pin "7" (uuid 9f1a6dcc-5833-44e2-9911-a8612f7e0ce9)) + (pin "8" (uuid a9e31f29-cbbc-4e11-9051-c30ee29030eb)) + (pin "9" (uuid ac4b4432-1e30-44de-b1a3-135dac113cd0)) + (pin "10" (uuid 87e93126-5a4a-4504-a79b-0e6ae20222af)) + (pin "11" (uuid 41ad875a-b269-468a-b579-527efcba3fcc)) + (pin "12" (uuid 798f0008-d583-41d9-9ce3-af7c00620497)) + (pin "13" (uuid 42bd1489-f9bc-4daf-9bc3-d5c30d81231f)) + (pin "14" (uuid 01d8f41a-caa7-41d3-a73f-55ef10ff2bc0)) + (pin "15" (uuid 0fcf364b-17f8-4478-8fc3-8d1d09b98cd2)) + (pin "16" (uuid 0a302efc-9d19-400b-9fd5-ee9fd05c91c2)) + (pin "17" (uuid e92e000c-72ac-4d09-ac7a-3fba4d3104e3)) + (pin "18" (uuid 060036a6-9d22-44e8-8b70-8b55ff81a411)) + (pin "19" (uuid 320cba27-57ae-4a58-895f-b1f557eba611)) + (pin "20" (uuid 8c362db4-ef4c-469a-b308-648755fdaf9a)) + (pin "21" (uuid bb84964b-57e2-4bce-b0ae-20d3c5a8a791)) + (pin "22" (uuid 7aa62cf0-aa1c-46ec-8ee0-426da93575a3)) + (pin "23" (uuid 6f8c43f5-4711-4c0d-ba29-89d050684dc3)) + (pin "24" (uuid 41b3d626-ae24-4955-bd2a-be4dad5aeccd)) + (pin "25" (uuid f5611747-6c68-4025-887b-32b04e94f6c5)) + (pin "26" (uuid 4b0a912f-e380-4106-9771-ae01545fc2c9)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 554.99 313.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 949576a2-066a-4b75-bc74-190cad45aedc) + (property "Reference" "X5" (id 0) (at 556.998 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 556.998 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 554.99 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 554.99 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 88212b45-ef5e-47c4-a2ac-d5026071f60d)) + (pin "2" (uuid 1a58223d-a2f6-4e65-8309-f50836473352)) + (pin "3" (uuid 8fed910e-4452-40fa-ad07-6ee5320716b0)) + (pin "4" (uuid 1041276f-00b8-44a3-ad43-d014ef9e1017)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 554.99 344.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 96e81c67-80db-4386-b4d4-c891c93c56bf) + (property "Reference" "X7" (id 0) (at 556.998 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 556.998 337.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 554.99 344.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 554.99 344.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 60185d44-ae3b-42d9-ae92-45b6489ba402)) + (pin "2" (uuid 126cb32e-3b33-478a-865a-c5fd0268e42f)) + (pin "3" (uuid 1c887b8c-d935-421d-b34a-65e928190058)) + (pin "4" (uuid 239e1657-5c9f-4041-a5ae-c8d837606687)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 480.06 416.56 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a49a165-291e-4e66-98db-ff84b603c6dc) + (property "Reference" "U1" (id 0) (at 480.695 411.48 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 480.695 414.02 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 480.06 416.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 480.06 416.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a7b60b0f-9222-4a81-86a2-44a7c3f213c7)) + (pin "2" (uuid 9ceed4c1-ac48-46e3-b1ff-2d1d64db1eab)) + (pin "3" (uuid 9f540c45-9e93-4c66-a7c3-3c44f300ba9a)) + (pin "4" (uuid e903b827-6b80-4a33-a4f8-729bf142a0da)) + (pin "5" (uuid ee255a5d-1809-4768-b473-1a9e9f4d0476)) + (pin "6" (uuid aa886996-6da8-4a62-bac0-6d2248405776)) + (pin "7" (uuid cf5b63b7-6245-4023-9dfb-d6c4baedcb06)) + (pin "8" (uuid 90cf863b-073c-40ef-a937-563e24e63ee3)) + (pin "9" (uuid 9b9a8306-b249-4663-9541-030a666b8841)) + (pin "10" (uuid 724b1e71-ef58-43cc-a60b-b2b5b1179bdb)) + (pin "11" (uuid 620772c8-2cfc-4e5b-ac67-fd80fdb55308)) + (pin "12" (uuid 8fcea4bf-4ec4-4a62-980d-83e529e2eb69)) + (pin "13" (uuid 1145d1ac-c02e-4d3e-a22b-097957ed8d4d)) + (pin "14" (uuid a9f08397-db42-478f-a61b-cb2091a848d1)) + (pin "15" (uuid 7f171575-bdd4-4357-a7e3-11b2394dc290)) + (pin "16" (uuid dbf74cc1-643a-4206-b36b-137fcdf48eac)) + (pin "17" (uuid de188174-8322-42b8-9f5d-9f29ee0f4804)) + (pin "18" (uuid a7bc1922-71a8-40d3-8cdc-120b8d31150a)) + (pin "19" (uuid a0657ca2-d20a-47cd-a6e5-c413cad81525)) + (pin "20" (uuid 53269526-c6bb-4eb6-8018-d852f624fb17)) + (pin "21" (uuid cf7aa4b9-146b-4799-a357-df3f0bde5acb)) + (pin "22" (uuid 38680f0c-3b61-4ba9-a297-401bb82d1fae)) + (pin "23" (uuid 8ed60541-2818-4e4c-bb94-346a742729db)) + (pin "24" (uuid ecebabf1-8997-4977-aed6-f92efcafc534)) + (pin "25" (uuid c09e252f-a27a-417a-8de1-7a72b213436a)) + (pin "26" (uuid 032bab70-bbcf-4d70-ba5c-efcdb65fad83)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 469.9 340.36 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9f171cdf-68d7-4a02-b62d-6b889ea20858) + (property "Reference" "U1" (id 0) (at 470.535 335.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 470.535 337.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 469.9 340.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 469.9 340.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2dd3ccdf-76a0-4c99-b686-aa040e75847b)) + (pin "2" (uuid 259ddbb7-b1fe-43a7-802a-95cb4442d948)) + (pin "3" (uuid 30f32057-83c5-4580-824c-2751c309bf2c)) + (pin "4" (uuid 6fb7e2c3-4556-4b59-9840-5ad1148742f8)) + (pin "5" (uuid 3a6ad1c1-07fc-433c-b5e2-5fda2fff7bbc)) + (pin "6" (uuid e20ef17d-3517-450c-b406-3d185cdc20e5)) + (pin "7" (uuid 2d8c7655-d199-4a07-8b06-fd44b0f214e1)) + (pin "8" (uuid 010415da-fce6-4c6e-a541-ef26643098df)) + (pin "9" (uuid e38f68fd-0684-495c-8b8c-518139cfd73b)) + (pin "10" (uuid 253053a8-1808-4c10-86c1-e16dca41ded0)) + (pin "11" (uuid 7db02d33-82c5-4aae-bfcf-3453901cc3e1)) + (pin "12" (uuid ef4d176a-f164-46f1-8218-cd88045d1c22)) + (pin "13" (uuid 91c5a8dc-e123-4b68-b184-202843436275)) + (pin "14" (uuid 3715c430-88af-4b9f-a696-e721b9b5afb0)) + (pin "15" (uuid 2b372298-7181-4724-827e-f9ea72536b87)) + (pin "16" (uuid aa7beafd-7914-49a7-97be-398e0dc3c003)) + (pin "17" (uuid 22b897ba-40d2-4af2-ad59-6ea1a7820b6a)) + (pin "18" (uuid 37e5d17b-916f-47b3-8d99-3b8f8731f401)) + (pin "19" (uuid 39847c12-47c4-4a3f-9ed2-4026386eff56)) + (pin "20" (uuid 803cfb42-e327-4fdc-9201-5e43edf8d814)) + (pin "21" (uuid 4a3ee2a2-26b4-4f5c-803e-2ef4889c046c)) + (pin "22" (uuid e286ce28-08f4-4c68-a02a-3b24f70b8b5d)) + (pin "23" (uuid 835f9eea-6b33-480e-bd44-85b9a7164c74)) + (pin "24" (uuid 0e3188d6-20df-4fac-8556-b84ac25259cd)) + (pin "25" (uuid 5acf931d-37fb-460a-99cd-4e65d9470bd7)) + (pin "26" (uuid c15ba8e3-8dc7-40c0-9e26-7cd54d717a76)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 469.9 261.62 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9fbc8f37-0857-4fe9-bbb1-b36d9a9c11b7) + (property "Reference" "U1" (id 0) (at 470.535 256.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 470.535 259.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 469.9 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 469.9 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e5d9e219-0d56-46f8-848e-1a03c9705966)) + (pin "2" (uuid fe0ea411-1679-4eca-b109-ee0584f774c9)) + (pin "3" (uuid 84fa4058-51c0-4317-baee-4f2f9fd3d7a8)) + (pin "4" (uuid 3a803b54-c2b3-4794-8149-39ae751f92ef)) + (pin "5" (uuid e0882872-7710-4d4c-9e15-a4f92843b8e0)) + (pin "6" (uuid 7aa698b4-4f59-4f32-8295-9add3fc406d8)) + (pin "7" (uuid fce90323-2729-4c89-9262-51bd32697be9)) + (pin "8" (uuid 65837d41-3a23-45fc-8a3e-f51e436011a2)) + (pin "9" (uuid 668a0d7c-6834-4ce6-866c-19e01d173981)) + (pin "10" (uuid 0394699f-5d6f-4935-9c03-a8136f39fd64)) + (pin "11" (uuid 936d60cf-3ff5-48e2-8497-2dc3ba7c976f)) + (pin "12" (uuid ff7e8b7f-5301-4f33-bcda-fbbf8ebcacde)) + (pin "13" (uuid 3a231418-0650-4d87-8718-0476edcd8937)) + (pin "14" (uuid 2c9b720b-5aef-432a-b58a-7cb434d63121)) + (pin "15" (uuid a2f0e734-21d3-452b-9a44-8db228f5b46f)) + (pin "16" (uuid b0fabd6b-459a-469f-a704-50010af46257)) + (pin "17" (uuid 938b7ab7-f556-42a7-975f-7cfe53b2c087)) + (pin "18" (uuid 3cca1cc5-4406-4446-a6e1-69d68b2d722c)) + (pin "19" (uuid 036fc214-86a7-4e85-a34f-43c60c2924cc)) + (pin "20" (uuid 31a2e94d-965c-4bf7-b81a-698bcc02cc39)) + (pin "21" (uuid 1d66590c-3296-4bba-a1ca-2fd6bc474b78)) + (pin "22" (uuid f99699e3-b591-4ed9-9487-b711fdf44bea)) + (pin "23" (uuid 51b584ad-b9b7-458c-8a0b-f5953d1089f9)) + (pin "24" (uuid ef5b0187-b41c-496a-a72b-22c667fd3add)) + (pin "25" (uuid bbe4a21f-6d2a-4795-988a-8f423f510f59)) + (pin "26" (uuid 785236af-108c-4184-937b-dae14f4035bb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 664.21 335.28 180) (unit 21) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a95a3ef4-c984-43b6-a9dd-0020337c7c58) + (property "Reference" "U1" (id 0) (at 668.02 334.645 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 668.02 337.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 664.21 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 664.21 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 718d4f32-dc56-4923-ae4a-249adc29d1ad)) + (pin "2" (uuid 9821e3ce-a3cb-4a6f-9c3e-8a11333483bf)) + (pin "3" (uuid 34e23f6c-018d-46ea-b917-3139dd4706ce)) + (pin "4" (uuid 188ad98d-efc0-4a7a-9903-016db5ba135c)) + (pin "5" (uuid 6a4d20ee-2340-4ea3-adb3-fec5922e43b3)) + (pin "6" (uuid 829d8efa-bbed-4828-a630-cde2cd10ce4d)) + (pin "7" (uuid c9cbf57d-6503-47ac-8641-8311052fe625)) + (pin "8" (uuid f247ed27-d800-4408-9eb3-9e43f82a27cf)) + (pin "9" (uuid ebcdcae8-5b9f-4c10-acf2-e51d63cbe799)) + (pin "10" (uuid 112c7fa5-b2fb-4028-b182-d5a68daecb9b)) + (pin "11" (uuid 32f47876-c30f-420b-90d4-e4f02782a131)) + (pin "12" (uuid f55c451f-bc17-4bfc-9e61-ecda72214bd4)) + (pin "13" (uuid 6ca3a904-4669-4864-aef4-a389675d09ff)) + (pin "14" (uuid 30c2ea10-3ab3-462a-b845-b1813e1a6ca1)) + (pin "15" (uuid 3f203832-d617-4580-8796-352ddad65573)) + (pin "16" (uuid 9ef602bc-2084-4d64-861b-ccf8dd86ed24)) + (pin "17" (uuid 89827b9a-dccf-4153-ab94-8ab4579a46fc)) + (pin "18" (uuid 107491cb-3950-4421-ba67-053e209f2803)) + (pin "19" (uuid 1e8d8ab6-537e-45ec-9484-3a8acc9b1e9d)) + (pin "20" (uuid bd69d7ef-1559-4b67-9a4f-3368d205399b)) + (pin "21" (uuid 609f2db2-739c-4c7f-b07c-98ca481b8f41)) + (pin "22" (uuid 902b7cdf-e3d6-4da3-9448-2734cb038281)) + (pin "23" (uuid e73bc915-c074-4dd8-a4e8-140aff77dcb9)) + (pin "24" (uuid de7063a1-f083-4492-8617-6286f6e35459)) + (pin "25" (uuid 0b823c82-20fd-402d-9d52-89dad9b9c4c7)) + (pin "26" (uuid 6605a54c-6c89-41eb-976c-7054c3a20e21)) + ) + + (symbol (lib_id "eSim_Subckt:4_OR") (at 585.47 242.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab0de437-7918-4ad8-9250-24c4eda1e7c5) + (property "Reference" "X13" (id 0) (at 587.375 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "4_OR" (id 1) (at 587.375 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 585.47 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 585.47 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 004425ec-ef3c-443a-afcb-191e64cec67a)) + (pin "2" (uuid b9ee9c26-8149-404e-800a-869c6186b363)) + (pin "3" (uuid 0915299a-e3f3-4758-8775-a31c5d5feab3)) + (pin "4" (uuid 48efe574-3932-4f8d-bcd7-03cb7fcdb465)) + (pin "5" (uuid d0644ed9-195e-4846-a160-368a674a70fb)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 532.13 280.67 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b0737b7d-6a28-4710-ba26-6868a43c86e9) + (property "Reference" "U6" (id 0) (at 534.67 279.4 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 534.67 283.21 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 533.4 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 533.4 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aa0d0794-45b1-4c4d-abec-d4e3822f6b4e)) + (pin "2" (uuid fa91c6ea-6161-4e83-91a1-7a5f344d67bd)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 623.57 435.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba46f988-f95d-479d-982f-121c7596a8e9) + (property "Reference" "U14" (id 0) (at 625.5894 419.1 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 625.5894 422.91 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 623.57 435.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 623.57 435.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b5930810-6ad5-4591-9119-e1132dd0bfd2)) + (pin "2" (uuid 79ee6e77-8998-4141-a342-e6c7c152a70e)) + (pin "3" (uuid d40d4cb0-82d4-47af-8df3-ac28b8ad4f6c)) + (pin "4" (uuid fd22f76d-9bee-4686-a2ae-4c73bb54e089)) + (pin "5" (uuid 4658b1ef-174f-4c7d-b12b-13346da49874)) + (pin "6" (uuid 32885111-f077-4a48-badc-196bb6e22de1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 468.63 309.88 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ccc8790d-24ea-42c6-b6c2-db7256ef26b8) + (property "Reference" "U1" (id 0) (at 469.265 304.8 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 469.265 307.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 468.63 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 468.63 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 78132eea-9dfe-4792-8526-a76f3cb27d6e)) + (pin "2" (uuid bf424034-dd20-4894-b149-b190e6e3410f)) + (pin "3" (uuid 252d8dec-3f5c-43ec-97cd-3045aab18b1b)) + (pin "4" (uuid b51f305a-61d8-4f82-a7ac-3e14a8615c92)) + (pin "5" (uuid ec97c26f-47ad-478b-b76e-235a90f8d7b9)) + (pin "6" (uuid 617c9d01-a76b-44aa-b736-33cc81ffce52)) + (pin "7" (uuid 05badc4d-b6a7-4c6f-b0ad-159d7834c56b)) + (pin "8" (uuid d35847f4-b994-4161-89ce-f958cb5204aa)) + (pin "9" (uuid 6e65f1a9-688f-40a0-937c-ddeac9a18a50)) + (pin "10" (uuid 0e64dc14-26e4-453b-90dc-58538bde77c6)) + (pin "11" (uuid 9456e6ad-160d-4009-8375-ac3e6c407aea)) + (pin "12" (uuid 94b98f6d-2ee8-4f49-9cb9-4ba5cf8058e8)) + (pin "13" (uuid c5cff23a-6c98-4da2-8d2f-6edac716b0bb)) + (pin "14" (uuid a97bbc0c-bc82-4da2-9c28-829c340b8f82)) + (pin "15" (uuid f95213bd-ec22-431f-a2ab-14803d917276)) + (pin "16" (uuid 53b276bb-c705-4fba-a9b8-7f5d44790bc2)) + (pin "17" (uuid 57868f56-558a-4f30-ba92-2d9dd3042735)) + (pin "18" (uuid fcd472f0-2e93-428f-a3dd-3cc4df89e7de)) + (pin "19" (uuid b03ef277-e4ec-42b9-ab3f-9207ddd3e490)) + (pin "20" (uuid c8932be9-bb99-45a5-b1ec-d63bb1477ccb)) + (pin "21" (uuid 49a176b4-8544-4ef8-90a6-c4f04214d737)) + (pin "22" (uuid e75d9487-0610-4c68-83ed-95675b52318e)) + (pin "23" (uuid 559aa165-318b-49ee-8121-88fd5912e087)) + (pin "24" (uuid 553931bf-d017-4814-8ceb-2e541dd3b596)) + (pin "25" (uuid 9b0da914-f64c-4182-afd5-a58395b7aa29)) + (pin "26" (uuid 45150595-f8b1-4a3c-ad61-f6b8d52a514a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 539.75 373.38 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d455122d-47b7-4515-89c4-6bfa595c3c70) + (property "Reference" "U10" (id 0) (at 542.29 372.11 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "d_inverter" (id 1) (at 542.29 375.92 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 541.02 372.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 372.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fefcb294-68f3-4814-86e5-d29b69716cbc)) + (pin "2" (uuid 1f367cf1-4fe6-4fa7-b610-54e19b6d6616)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 556.26 420.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eed62509-86e8-4d5c-9042-2cf851de8cf4) + (property "Reference" "X10" (id 0) (at 558.268 410.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 558.268 414.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 556.26 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 556.26 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8692ec52-4496-4be9-971b-cda9ef130d11)) + (pin "2" (uuid e1182547-afe5-4de2-998a-de0a3778ea3e)) + (pin "3" (uuid d2dec61d-2a3a-4979-8786-a9bbdb197433)) + (pin "4" (uuid 65d3e8bd-02e0-407e-be8a-5bd12832da16)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 457.2 497.84 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f7da8c5c-f548-40a2-b26a-a46bd8ffc6ae) + (property "Reference" "U1" (id 0) (at 457.835 492.76 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 457.835 495.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 457.2 497.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 457.2 497.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8e795f19-64f6-487d-80f6-b3f2481fae90)) + (pin "2" (uuid e3c354ba-8aae-4af9-a0ac-dde705e79a27)) + (pin "3" (uuid 83009b54-790b-4053-8fda-9386442aa2a9)) + (pin "4" (uuid e6e000a4-e7e6-496e-a284-3439a522d700)) + (pin "5" (uuid 34a0d1a8-175e-49c6-92c4-aace80d46c72)) + (pin "6" (uuid 43f6111c-1c93-41f6-8794-e5ce286aa94e)) + (pin "7" (uuid 7b8436a2-0332-4c45-bfcb-68eb1cb7c655)) + (pin "8" (uuid 1e46cd22-a12f-493b-b5e9-e33c722a1763)) + (pin "9" (uuid 2d7f1534-46e1-4a56-bad8-54bae672f32c)) + (pin "10" (uuid 40514970-e335-4d8d-9a48-75432a7609e4)) + (pin "11" (uuid e263d7f3-7ec0-4a29-a315-b1e946751561)) + (pin "12" (uuid fa3304d5-2f04-4a2d-bd19-7bd064ef32a2)) + (pin "13" (uuid 9ce2f437-e5d9-4a64-aaba-87bd737c7e55)) + (pin "14" (uuid 7f984ef5-ae4e-415a-b860-8a46c58ffeb9)) + (pin "15" (uuid 7d4c4f66-504e-4c83-900c-28f8fb2a3902)) + (pin "16" (uuid 0cb0e716-91fc-4d6c-a42c-92baefea753e)) + (pin "17" (uuid 16fc52d8-f713-4395-8a26-bb87a8d9d2ee)) + (pin "18" (uuid 286c6b28-b785-4039-ab38-34df21e799ab)) + (pin "19" (uuid 81f8ad25-538f-4722-b100-240a0997f2e0)) + (pin "20" (uuid ddc6f266-dfae-499e-853f-8d46bef13f21)) + (pin "21" (uuid c5211acd-d2ab-4a01-879f-dacfd0236a9a)) + (pin "22" (uuid 3bca163c-ca57-4054-93aa-854e12e9b883)) + (pin "23" (uuid 2cb3295b-6ad0-4a66-98a1-72a928c12924)) + (pin "24" (uuid f6ef91d5-f483-4957-839a-13349c99cda2)) + (pin "25" (uuid 1e36d781-7e40-47b7-8445-193139293c95)) + (pin "26" (uuid e3260cc9-c5a3-460a-a3e7-e77cb2792e7f)) + ) + + (symbol (lib_id "eSim_Subckt:4_OR") (at 586.74 426.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fae3d84c-8753-4968-89a8-34ee9883648f) + (property "Reference" "X15" (id 0) (at 588.645 415.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "4_OR" (id 1) (at 588.645 419.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 586.74 426.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 586.74 426.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6919a86f-b097-4c4e-a1fb-5c77432af6d5)) + (pin "2" (uuid 954ff6da-046c-4317-8b09-1f14c3ff7242)) + (pin "3" (uuid 7ad209d9-ad6f-4059-9271-bf4e70b5ecd8)) + (pin "4" (uuid af9d20d7-e19a-4403-a758-f7d289f8f3e7)) + (pin "5" (uuid 046723b4-8b6b-43ba-a76f-3b4437ef258b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 481.33 445.77 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fd1a8568-3035-4f72-a0c4-87bd6555ac5c) + (property "Reference" "U1" (id 0) (at 481.965 440.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 481.965 443.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 481.33 445.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 481.33 445.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 00335fda-5b0c-4338-8b76-9e9f81edfa5d)) + (pin "2" (uuid f3213d3d-6087-4d60-b072-2abadd2e0cc6)) + (pin "3" (uuid 1fc5444e-c943-4575-bc3e-f2e017843d94)) + (pin "4" (uuid 4c793eff-113d-4fbb-8549-3832f4d1384a)) + (pin "5" (uuid 9c224810-682a-4610-b546-f1938db1cfa7)) + (pin "6" (uuid 688e7159-e3b3-4a1f-9ca6-a4e7cdc9303c)) + (pin "7" (uuid a340755e-24ca-477d-afd2-e48e06a67281)) + (pin "8" (uuid cfef0771-c224-4c83-a69e-b2b5a7911d6c)) + (pin "9" (uuid fe9ec316-330a-4feb-b2bf-c92a099ca740)) + (pin "10" (uuid 4ed3a16e-b417-4d3c-bb69-e83f2fb1a7e6)) + (pin "11" (uuid cca26912-1a97-4c8a-9cf7-018552219a74)) + (pin "12" (uuid 75adb613-be2e-4576-9d30-205fcfd23dc3)) + (pin "13" (uuid 0b1ded64-a397-4c1a-86cc-47f051d7b54e)) + (pin "14" (uuid 6ff74bd1-54b8-430b-9ab0-d8e717f07c52)) + (pin "15" (uuid 8a0ed663-ca46-48e3-ae60-21021163f0b3)) + (pin "16" (uuid 8cc6d510-1aeb-44be-b1bb-2bf65959ccbb)) + (pin "17" (uuid 09f3e2a0-72d9-4f2f-b949-5ba18cfdb171)) + (pin "18" (uuid 60a940c0-5b37-45cd-a075-7df12d3e922f)) + (pin "19" (uuid ccd6b6fc-0ebb-49bc-bb9c-ba9743d31e8c)) + (pin "20" (uuid 1f4d57ab-abd1-4119-9415-057193638ac9)) + (pin "21" (uuid 524be7cb-b4c6-42cf-9485-681afb4ed382)) + (pin "22" (uuid 542c7deb-2505-4d40-8517-a73537ce7c2b)) + (pin "23" (uuid 99d5282a-27b1-4c16-9c3b-38d1ae24efaf)) + (pin "24" (uuid 5168dbf4-8bf8-43f5-b4a8-878e2647c943)) + (pin "25" (uuid 348d6acb-a4b7-4c73-88ed-3d349690a882)) + (pin "26" (uuid 1fda835d-c13f-4a16-801f-deb11e31df60)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/93d90225-5e46-4d52-8de0-cb8e56498f57" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/0c31166a-ff60-45aa-983b-7891ffbded3f" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/69bd39d1-2ff0-41f4-a03f-6961d3877201" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/9fbc8f37-0857-4fe9-bbb1-b36d9a9c11b7" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/ccc8790d-24ea-42c6-b6c2-db7256ef26b8" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/54b5b5a4-a7b2-41e2-8ae5-ec49a33a9db5" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/9f171cdf-68d7-4a02-b62d-6b889ea20858" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/1f8ff052-e6a6-4007-9f2f-ff0c3cca55aa" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/78691f62-4336-4767-9724-3fa2f0b08dc8" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/9a49a165-291e-4e66-98db-ff84b603c6dc" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/534671d5-56ab-4e4a-a1ec-8e35bcd311a9" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/fd1a8568-3035-4f72-a0c4-87bd6555ac5c" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/2beb8e2d-7de7-4e2e-8801-37becfad480e" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/f7da8c5c-f548-40a2-b26a-a46bd8ffc6ae" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/363fad4e-b198-49a3-8498-04fba65ad672" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/910809ee-d434-491c-9e06-d72bca255881" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/5660892e-a415-4e94-adaa-912b8e2aa8c4" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/55c82406-3ae3-4b5f-a159-1a3769a4d523" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/02ffd082-b540-4e98-add7-a5ea9763def6" + (reference "U1") (unit 19) (value "PORT") (footprint "") + ) + (path "/880c4353-8b04-4a5d-a8f3-6102283a266c" + (reference "U1") (unit 20) (value "PORT") (footprint "") + ) + (path "/a95a3ef4-c984-43b6-a9dd-0020337c7c58" + (reference "U1") (unit 21) (value "PORT") (footprint "") + ) + (path "/916438a8-27d2-4ec6-a0b1-3e0ad6b08c7b" + (reference "U1") (unit 22) (value "PORT") (footprint "") + ) + (path "/1454ddeb-3f6c-4fed-941c-f3458da983cd" + (reference "U1") (unit 23) (value "PORT") (footprint "") + ) + (path "/27141cd2-0196-45e5-9baf-2d6e88bd0f2e" + (reference "U2") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/56fdd421-acf9-4562-a1d0-2a6b17500d65" + (reference "U3") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/7ffd730a-64f1-4cb2-be80-09a689487168" + (reference "U4") (unit 1) (value "d_or") (footprint "") + ) + (path "/417d67a5-0464-48a7-b41a-63c7c76f0f62" + (reference "U5") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/b0737b7d-6a28-4710-ba26-6868a43c86e9" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/894729a7-f269-4f3c-b605-56017bc5bda5" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/907f9914-1229-4852-a97c-c530d18113d2" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5ed32f37-e2c4-4539-a1eb-4f507ef1d9c6" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d455122d-47b7-4515-89c4-6bfa595c3c70" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/51b0108e-9636-4d37-92db-87f3b504e655" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/842db722-5a40-4f63-8074-d2f92cd4f075" + (reference "U12") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/4757032d-999f-4b2e-b11a-a1d065b5199d" + (reference "U13") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/ba46f988-f95d-479d-982f-121c7596a8e9" + (reference "U14") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/67718972-6350-471a-ac41-4a4d406ac9b3" + (reference "X1") (unit 1) (value "3_and") (footprint "") + ) + (path "/6182a6ac-185e-49f4-a105-01a70908480a" + (reference "X2") (unit 1) (value "3_and") (footprint "") + ) + (path "/03ad5d9a-57c3-4d4d-afb6-aa6cf85b76b4" + (reference "X3") (unit 1) (value "3_and") (footprint "") + ) + (path "/4e392341-5eff-4a3d-8b18-edfa3761148a" + (reference "X4") (unit 1) (value "3_and") (footprint "") + ) + (path "/949576a2-066a-4b75-bc74-190cad45aedc" + (reference "X5") (unit 1) (value "3_and") (footprint "") + ) + (path "/5d5f8292-7911-4f3f-82c8-20b1b37cc797" + (reference "X6") (unit 1) (value "3_and") (footprint "") + ) + (path "/96e81c67-80db-4386-b4d4-c891c93c56bf" + (reference "X7") (unit 1) (value "3_and") (footprint "") + ) + (path "/1693e1f7-7b75-4ac9-9ded-bbc0968aab0c" + (reference "X8") (unit 1) (value "3_and") (footprint "") + ) + (path "/4ccf5102-7662-4e99-9a9f-b9f007c4bd1b" + (reference "X9") (unit 1) (value "3_and") (footprint "") + ) + (path "/eed62509-86e8-4d5c-9042-2cf851de8cf4" + (reference "X10") (unit 1) (value "3_and") (footprint "") + ) + (path "/2962d051-7c87-4f5b-b77a-f2c194737547" + (reference "X11") (unit 1) (value "3_and") (footprint "") + ) + (path "/45fe1f4a-be66-4e76-86f9-cd95d8c2bedf" + (reference "X12") (unit 1) (value "3_and") (footprint "") + ) + (path "/ab0de437-7918-4ad8-9250-24c4eda1e7c5" + (reference "X13") (unit 1) (value "4_OR") (footprint "") + ) + (path "/15188799-85a0-4abe-b47b-2a2ac7c8f31c" + (reference "X14") (unit 1) (value "4_OR") (footprint "") + ) + (path "/fae3d84c-8753-4968-89a8-34ee9883648f" + (reference "X15") (unit 1) (value "4_OR") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.sub b/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.sub new file mode 100644 index 000000000..f296a192a --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156.sub @@ -0,0 +1,75 @@ +* Subcircuit IC_MC10E156 +.subckt IC_MC10E156 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ net-_u1-pad20_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ +.title kicad schematic +.include 3_and.sub +.include 4_OR.sub +* u14 net-_u14-pad1_ net-_u12-pad2_ unconnected-_u14-pad3_ net-_u12-pad4_ net-_u1-pad19_ net-_u1-pad18_ d_dlatch +x15 net-_x15-pad1_ net-_x10-pad4_ net-_x11-pad4_ net-_x12-pad4_ net-_u14-pad1_ 4_OR +* u13 net-_u13-pad1_ net-_u12-pad2_ unconnected-_u13-pad3_ net-_u12-pad4_ net-_u1-pad21_ net-_u1-pad20_ d_dlatch +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +x8 net-_u1-pad8_ net-_u2-pad2_ net-_u10-pad1_ net-_x14-pad4_ 3_and +* u9 net-_u10-pad1_ net-_u9-pad2_ d_inverter +* u6 net-_u2-pad2_ net-_u6-pad2_ d_inverter +x5 net-_u1-pad5_ net-_u7-pad2_ net-_u10-pad2_ net-_x14-pad1_ 3_and +x6 net-_u1-pad6_ net-_u2-pad2_ net-_u10-pad2_ net-_x14-pad2_ 3_and +x14 net-_x14-pad1_ net-_x14-pad2_ net-_x14-pad3_ net-_x14-pad4_ net-_u13-pad1_ 4_OR +x7 net-_u1-pad7_ net-_u7-pad2_ net-_u10-pad1_ net-_x14-pad3_ 3_and +* u3 net-_u1-pad15_ net-_u10-pad1_ d_buffer +* u2 net-_u1-pad14_ net-_u2-pad2_ d_buffer +* u5 net-_u1-pad13_ net-_u12-pad4_ d_buffer +* u4 net-_u1-pad16_ net-_u1-pad17_ net-_u12-pad2_ d_or +x12 net-_u1-pad12_ net-_u2-pad2_ net-_u10-pad1_ net-_x12-pad4_ 3_and +x11 net-_u1-pad11_ net-_u8-pad2_ net-_u10-pad1_ net-_x11-pad4_ 3_and +x9 net-_u1-pad9_ net-_u8-pad2_ net-_u11-pad2_ net-_x15-pad1_ 3_and +x10 net-_u1-pad10_ net-_u2-pad2_ net-_u11-pad2_ net-_x10-pad4_ 3_and +* u11 net-_u10-pad1_ net-_u11-pad2_ d_inverter +* u8 net-_u2-pad2_ net-_u8-pad2_ d_inverter +* u7 net-_u2-pad2_ net-_u7-pad2_ d_inverter +x4 net-_u1-pad4_ net-_u2-pad2_ net-_u10-pad1_ net-_x13-pad4_ 3_and +x3 net-_u1-pad3_ net-_u6-pad2_ net-_u10-pad1_ net-_x13-pad3_ 3_and +* u12 net-_u12-pad1_ net-_u12-pad2_ unconnected-_u12-pad3_ net-_u12-pad4_ net-_u1-pad23_ net-_u1-pad22_ d_dlatch +x13 net-_x1-pad4_ net-_x13-pad2_ net-_x13-pad3_ net-_x13-pad4_ net-_u12-pad1_ 4_OR +x1 net-_u1-pad1_ net-_u6-pad2_ net-_u9-pad2_ net-_x1-pad4_ 3_and +x2 net-_u1-pad2_ net-_u2-pad2_ net-_u9-pad2_ net-_x13-pad2_ 3_and +a1 net-_u14-pad1_ net-_u12-pad2_ unconnected-_u14-pad3_ net-_u12-pad4_ net-_u1-pad19_ net-_u1-pad18_ u14 +a2 net-_u13-pad1_ net-_u12-pad2_ unconnected-_u13-pad3_ net-_u12-pad4_ net-_u1-pad21_ net-_u1-pad20_ u13 +a3 net-_u10-pad1_ net-_u10-pad2_ u10 +a4 net-_u10-pad1_ net-_u9-pad2_ u9 +a5 net-_u2-pad2_ net-_u6-pad2_ u6 +a6 net-_u1-pad15_ net-_u10-pad1_ u3 +a7 net-_u1-pad14_ net-_u2-pad2_ u2 +a8 net-_u1-pad13_ net-_u12-pad4_ u5 +a9 [net-_u1-pad16_ net-_u1-pad17_ ] net-_u12-pad2_ u4 +a10 net-_u10-pad1_ net-_u11-pad2_ u11 +a11 net-_u2-pad2_ net-_u8-pad2_ u8 +a12 net-_u2-pad2_ net-_u7-pad2_ u7 +a13 net-_u12-pad1_ net-_u12-pad2_ unconnected-_u12-pad3_ net-_u12-pad4_ net-_u1-pad23_ net-_u1-pad22_ u12 +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u14 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u13 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u2 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u12 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Control Statements + +.ends IC_MC10E156 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156_Previous_Values.xml b/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156_Previous_Values.xml new file mode 100644 index 000000000..6438ee224 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/IC_MC10E156_Previous_Values.xml @@ -0,0 +1 @@ +d_dlatchd_dlatchd_inverterd_inverterd_inverterd_bufferd_bufferd_bufferd_ord_inverterd_inverterd_inverterd_dlatchC:\FOSSEE\eSim\library\SubcircuitLibrary\4_ORC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\4_ORC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\4_ORC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC10E156/README_IC_MC10E156.md b/library/SubcircuitLibrary/IC_MC10E156/README_IC_MC10E156.md new file mode 100644 index 000000000..3bfb34eec --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/README_IC_MC10E156.md @@ -0,0 +1,27 @@ +# IC_MC10E156 3-Bit 4:1 Multiplexer Latch + +IC_MC10E156 is a 28-pin IC. It is a high-speed 3-bit 4:1 multiplexer latch belonging to the ECL logic family. The device selects one of four 3-bit input channels based on two select lines and stores the selected data using integrated latch circuitry. + +## Usage/Examples + +- Data routing systems +- Communication equipment +- High-speed digital processing +- Multiplexed data transmission +- Test instrumentation +- Signal selection networks + +## Documentation + +To know the details of IC_MC10E156 please go through the documentation: [MC10E156 Datasheet](https://www.onsemi.com/pdf/datasheet/mc10e156-d.pdf) + +## Comments/Notes + +Please note this is a high-speed ECL logic IC. The subcircuit models the 4:1 multiplexer using d_mux4 and d_latch elements. The two select lines (SEL0, SEL1) determine which of the four data channels (a, b, c, d) is routed to the output latches. + +## Contributor + +Name: Santhosh C +Email: santhoshc.vlsi2024@citchennai.net +Year: 2026 +Position: FOSSEE eSim Intern 2026 diff --git a/library/SubcircuitLibrary/IC_MC10E156/analysis b/library/SubcircuitLibrary/IC_MC10E156/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC10E156/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC1556/D.lib b/library/SubcircuitLibrary/IC_MC1556/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/IC_MC1556/IC_MC1556-cache.lib b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556-cache.lib new file mode 100644 index 000000000..d80602ef3 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556-cache.lib @@ -0,0 +1,145 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_C +# +DEF eSim_C C 0 10 N Y 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_C" 25 -100 50 H V L CNN +F2 "" 38 -150 30 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS capacitor +$FPLIST + C_* +$ENDFPLIST +DRAW +P 2 0 1 20 -80 -30 80 -30 N +P 2 0 1 20 -80 30 80 30 N +X ~ 1 0 150 110 D 40 40 1 1 P +X ~ 2 0 -150 110 U 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_NPN +# +DEF eSim_NPN Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_NPN" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS BC547 Q2N2222 +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_PNP +# +DEF eSim_PNP Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_PNP" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 90 -70 70 -90 50 -50 90 -70 90 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.cir b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.cir new file mode 100644 index 000000000..4c0130baa --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.cir @@ -0,0 +1,56 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\IC_MC1556\IC_MC1556.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 04/19/26 13:16:21 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_NPN +Q3 Net-_Q3-Pad1_ Net-_Q1-Pad3_ Net-_Q3-Pad3_ eSim_PNP +R3 Net-_Q1-Pad1_ Net-_Q3-Pad3_ 1.5k +Q2 Net-_Q1-Pad3_ Net-_D4-Pad1_ Net-_Q2-Pad3_ eSim_NPN +R2 Net-_D1-Pad2_ Net-_Q1-Pad1_ 500 +Q7 Net-_Q7-Pad1_ Net-_Q10-Pad3_ Net-_Q7-Pad3_ eSim_PNP +R8 Net-_Q10-Pad1_ Net-_Q7-Pad3_ 1.5k +R7 Net-_D1-Pad2_ Net-_Q10-Pad1_ 500 +Q10 Net-_Q10-Pad1_ Net-_D1-Pad2_ Net-_Q10-Pad3_ eSim_PNP +Q6 Net-_Q18-Pad1_ Net-_Q3-Pad1_ Net-_Q4-Pad2_ eSim_NPN +Q4 Net-_Q3-Pad1_ Net-_Q4-Pad2_ Net-_D4-Pad2_ eSim_PNP +R4 Net-_D4-Pad2_ Net-_D4-Pad2_ 1k +R1 Net-_Q2-Pad3_ Net-_D4-Pad2_ 7.7k +D1 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +D2 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +Q5 Net-_D1-Pad1_ Net-_D3-Pad2_ Net-_Q5-Pad3_ eSim_PNP +R5 Net-_Q18-Pad1_ Net-_Q5-Pad3_ 4k +D3 Net-_D3-Pad1_ Net-_D3-Pad2_ eSim_Diode +R11 Net-_Q18-Pad1_ Net-_D3-Pad1_ 1k +R6 Net-_Q4-Pad2_ Net-_D4-Pad2_ 39k +Q8 Net-_Q7-Pad1_ Net-_Q4-Pad2_ Net-_D4-Pad2_ eSim_NPN +R9 Net-_D4-Pad2_ Net-_D4-Pad2_ 1k +R10 Net-_Q9-Pad3_ Net-_D4-Pad2_ 7.7k +Q9 Net-_Q10-Pad3_ Net-_D4-Pad1_ Net-_Q9-Pad3_ eSim_NPN +R12 Net-_D3-Pad2_ Net-_D4-Pad1_ 56k +D4 Net-_D4-Pad1_ Net-_D4-Pad2_ eSim_Diode +Q11 Net-_C1-Pad2_ Net-_Q11-Pad2_ Net-_D4-Pad2_ eSim_PNP +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 35pf +Q12 Net-_C1-Pad1_ Net-_C1-Pad2_ Net-_Q12-Pad3_ eSim_NPN +Q16 Net-_Q15-Pad3_ Net-_Q12-Pad3_ Net-_Q11-Pad2_ eSim_NPN +R13 Net-_Q12-Pad3_ Net-_D4-Pad2_ 39k +R16 Net-_Q11-Pad2_ Net-_D4-Pad2_ 50 +Q15 Net-_D5-Pad1_ Net-_D5-Pad2_ Net-_Q15-Pad3_ eSim_NPN +Q17 Net-_D4-Pad2_ Net-_Q15-Pad3_ Net-_Q17-Pad3_ eSim_PNP +Q19 Net-_D4-Pad2_ Net-_Q17-Pad3_ Net-_Q19-Pad3_ eSim_PNP +D6 Net-_D5-Pad1_ Net-_D6-Pad2_ eSim_Diode +D7 Net-_D6-Pad2_ Net-_D5-Pad1_ eSim_Diode +R18 Net-_D6-Pad2_ Net-_Q19-Pad3_ 50 +R17 Net-_Q18-Pad3_ Net-_D6-Pad2_ 30 +D5 Net-_D5-Pad1_ Net-_D5-Pad2_ eSim_Diode +Q18 Net-_Q18-Pad1_ Net-_Q14-Pad1_ Net-_Q18-Pad3_ eSim_NPN +Q14 Net-_Q14-Pad1_ Net-_C1-Pad1_ Net-_D5-Pad1_ eSim_NPN +R15 Net-_C1-Pad1_ Net-_Q14-Pad1_ 7.7k +Q13 Net-_C1-Pad1_ Net-_D3-Pad2_ Net-_Q13-Pad3_ eSim_PNP +R14 Net-_Q18-Pad1_ Net-_Q13-Pad3_ 1k +U1 Net-_D4-Pad2_ Net-_D1-Pad2_ Net-_Q1-Pad2_ Net-_D4-Pad2_ Net-_D4-Pad2_ Net-_D6-Pad2_ Net-_Q18-Pad1_ ? PORT + +.end diff --git a/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.cir.out b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.cir.out new file mode 100644 index 000000000..6cf1d80ed --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.cir.out @@ -0,0 +1,60 @@ +* c:\fossee\esim\library\subcircuitlibrary\ic_mc1556\ic_mc1556.cir + +.include NPN.lib +.include D.lib +.include PNP.lib +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +q3 net-_q3-pad1_ net-_q1-pad3_ net-_q3-pad3_ Q2N2907A +r3 net-_q1-pad1_ net-_q3-pad3_ 1.5k +q2 net-_q1-pad3_ net-_d4-pad1_ net-_q2-pad3_ Q2N2222 +r2 net-_d1-pad2_ net-_q1-pad1_ 500 +q7 net-_q7-pad1_ net-_q10-pad3_ net-_q7-pad3_ Q2N2907A +r8 net-_q10-pad1_ net-_q7-pad3_ 1.5k +r7 net-_d1-pad2_ net-_q10-pad1_ 500 +q10 net-_q10-pad1_ net-_d1-pad2_ net-_q10-pad3_ Q2N2907A +q6 net-_q18-pad1_ net-_q3-pad1_ net-_q4-pad2_ Q2N2222 +q4 net-_q3-pad1_ net-_q4-pad2_ net-_d4-pad2_ Q2N2907A +r4 net-_d4-pad2_ net-_d4-pad2_ 1k +r1 net-_q2-pad3_ net-_d4-pad2_ 7.7k +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +d2 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +q5 net-_d1-pad1_ net-_d3-pad2_ net-_q5-pad3_ Q2N2907A +r5 net-_q18-pad1_ net-_q5-pad3_ 4k +d3 net-_d3-pad1_ net-_d3-pad2_ 1N4148 +r11 net-_q18-pad1_ net-_d3-pad1_ 1k +r6 net-_q4-pad2_ net-_d4-pad2_ 39k +q8 net-_q7-pad1_ net-_q4-pad2_ net-_d4-pad2_ Q2N2222 +r9 net-_d4-pad2_ net-_d4-pad2_ 1k +r10 net-_q9-pad3_ net-_d4-pad2_ 7.7k +q9 net-_q10-pad3_ net-_d4-pad1_ net-_q9-pad3_ Q2N2222 +r12 net-_d3-pad2_ net-_d4-pad1_ 56k +d4 net-_d4-pad1_ net-_d4-pad2_ 1N4148 +q11 net-_c1-pad2_ net-_q11-pad2_ net-_d4-pad2_ Q2N2907A +c1 net-_c1-pad1_ net-_c1-pad2_ 35pf +q12 net-_c1-pad1_ net-_c1-pad2_ net-_q12-pad3_ Q2N2222 +q16 net-_q15-pad3_ net-_q12-pad3_ net-_q11-pad2_ Q2N2222 +r13 net-_q12-pad3_ net-_d4-pad2_ 39k +r16 net-_q11-pad2_ net-_d4-pad2_ 50 +q15 net-_d5-pad1_ net-_d5-pad2_ net-_q15-pad3_ Q2N2222 +q17 net-_d4-pad2_ net-_q15-pad3_ net-_q17-pad3_ Q2N2907A +q19 net-_d4-pad2_ net-_q17-pad3_ net-_q19-pad3_ Q2N2907A +d6 net-_d5-pad1_ net-_d6-pad2_ 1N4148 +d7 net-_d6-pad2_ net-_d5-pad1_ 1N4148 +r18 net-_d6-pad2_ net-_q19-pad3_ 50 +r17 net-_q18-pad3_ net-_d6-pad2_ 30 +d5 net-_d5-pad1_ net-_d5-pad2_ 1N4148 +q18 net-_q18-pad1_ net-_q14-pad1_ net-_q18-pad3_ Q2N2222 +q14 net-_q14-pad1_ net-_c1-pad1_ net-_d5-pad1_ Q2N2222 +r15 net-_c1-pad1_ net-_q14-pad1_ 7.7k +q13 net-_c1-pad1_ net-_d3-pad2_ net-_q13-pad3_ Q2N2907A +r14 net-_q18-pad1_ net-_q13-pad3_ 1k +* u1 net-_d4-pad2_ net-_d1-pad2_ net-_q1-pad2_ net-_d4-pad2_ net-_d4-pad2_ net-_d6-pad2_ net-_q18-pad1_ ? port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.pro b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.sch b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.sch new file mode 100644 index 000000000..83e3437eb --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.sch @@ -0,0 +1,895 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:IC_MC1556-cache +EELAYER 25 0 +EELAYER END +$Descr A3 16535 11693 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_NPN Q1 +U 1 1 69D24255 +P 3450 5150 +F 0 "Q1" H 3350 5200 50 0000 R CNN +F 1 "eSim_NPN" H 3400 5300 50 0000 R CNN +F 2 "" H 3650 5250 29 0000 C CNN +F 3 "" H 3450 5150 60 0000 C CNN + 1 3450 5150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_PNP Q3 +U 1 1 69D242CA +P 4550 5550 +F 0 "Q3" H 4450 5600 50 0000 R CNN +F 1 "eSim_PNP" H 4500 5700 50 0000 R CNN +F 2 "" H 4750 5650 29 0000 C CNN +F 3 "" H 4550 5550 60 0000 C CNN + 1 4550 5550 + 1 0 0 1 +$EndComp +$Comp +L resistor R3 +U 1 1 69D243D6 +P 4600 5000 +F 0 "R3" H 4650 5130 50 0000 C CNN +F 1 "1.5k" H 4650 4950 50 0000 C CNN +F 2 "" H 4650 4980 30 0000 C CNN +F 3 "" V 4650 5050 30 0000 C CNN + 1 4600 5000 + 0 1 1 0 +$EndComp +Wire Wire Line + 4650 5200 4650 5350 +Wire Wire Line + 4650 4900 4650 4700 +Wire Wire Line + 4650 5750 4650 7050 +Wire Wire Line + 3550 5350 3550 5900 +Wire Wire Line + 4350 5550 3550 5550 +Connection ~ 3550 5550 +$Comp +L eSim_NPN Q2 +U 1 1 69D24960 +P 3650 6100 +F 0 "Q2" H 3550 6150 50 0000 R CNN +F 1 "eSim_NPN" H 3600 6250 50 0000 R CNN +F 2 "" H 3850 6200 29 0000 C CNN +F 3 "" H 3650 6100 60 0000 C CNN + 1 3650 6100 + -1 0 0 -1 +$EndComp +Wire Wire Line + 3850 6100 6550 6100 +Wire Wire Line + 3550 4950 3550 4800 +Wire Wire Line + 3550 4800 4650 4800 +Connection ~ 4650 4800 +$Comp +L resistor R2 +U 1 1 69D24A08 +P 4600 4500 +F 0 "R2" H 4650 4630 50 0000 C CNN +F 1 "500" H 4650 4450 50 0000 C CNN +F 2 "" H 4650 4480 30 0000 C CNN +F 3 "" V 4650 4550 30 0000 C CNN + 1 4600 4500 + 0 1 1 0 +$EndComp +$Comp +L eSim_PNP Q7 +U 1 1 69D24A6E +P 5900 5550 +F 0 "Q7" H 5800 5600 50 0000 R CNN +F 1 "eSim_PNP" H 5850 5700 50 0000 R CNN +F 2 "" H 6100 5650 29 0000 C CNN +F 3 "" H 5900 5550 60 0000 C CNN + 1 5900 5550 + -1 0 0 1 +$EndComp +Wire Wire Line + 5800 5750 5800 5900 +$Comp +L resistor R8 +U 1 1 69D24AF0 +P 5750 5050 +F 0 "R8" H 5800 5180 50 0000 C CNN +F 1 "1.5k" H 5800 5000 50 0000 C CNN +F 2 "" H 5800 5030 30 0000 C CNN +F 3 "" V 5800 5100 30 0000 C CNN + 1 5750 5050 + 0 1 1 0 +$EndComp +Wire Wire Line + 5800 5350 5800 5250 +$Comp +L resistor R7 +U 1 1 69D24BB8 +P 5750 4450 +F 0 "R7" H 5800 4580 50 0000 C CNN +F 1 "500" H 5800 4400 50 0000 C CNN +F 2 "" H 5800 4430 30 0000 C CNN +F 3 "" V 5800 4500 30 0000 C CNN + 1 5750 4450 + 0 1 1 0 +$EndComp +Wire Wire Line + 5800 4950 5800 4650 +Wire Wire Line + 6850 5000 6850 4800 +Wire Wire Line + 6850 4800 5800 4800 +Connection ~ 5800 4800 +$Comp +L eSim_PNP Q10 +U 1 1 69D24C3C +P 6950 5200 +F 0 "Q10" H 6850 5250 50 0000 R CNN +F 1 "eSim_PNP" H 6900 5350 50 0000 R CNN +F 2 "" H 7150 5300 29 0000 C CNN +F 3 "" H 6950 5200 60 0000 C CNN + 1 6950 5200 + -1 0 0 -1 +$EndComp +Wire Wire Line + 7150 5200 7450 5200 +Wire Wire Line + 7450 5200 7450 4200 +Wire Wire Line + 7450 4200 3100 4200 +Wire Wire Line + 4650 4100 4650 4400 +Connection ~ 4650 4200 +Wire Wire Line + 5800 4100 5800 4350 +Connection ~ 5800 4200 +$Comp +L eSim_NPN Q6 +U 1 1 69D24D18 +P 5200 6550 +F 0 "Q6" H 5100 6600 50 0000 R CNN +F 1 "eSim_NPN" H 5150 6700 50 0000 R CNN +F 2 "" H 5400 6650 29 0000 C CNN +F 3 "" H 5200 6550 60 0000 C CNN + 1 5200 6550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4650 6550 5000 6550 +Connection ~ 4650 6550 +$Comp +L eSim_PNP Q4 +U 1 1 69D24E60 +P 4750 7250 +F 0 "Q4" H 4650 7300 50 0000 R CNN +F 1 "eSim_PNP" H 4700 7400 50 0000 R CNN +F 2 "" H 4950 7350 29 0000 C CNN +F 3 "" H 4750 7250 60 0000 C CNN + 1 4750 7250 + -1 0 0 -1 +$EndComp +$Comp +L resistor R4 +U 1 1 69D24F79 +P 4600 7650 +F 0 "R4" H 4650 7780 50 0000 C CNN +F 1 "1k" H 4650 7600 50 0000 C CNN +F 2 "" H 4650 7630 30 0000 C CNN +F 3 "" V 4650 7700 30 0000 C CNN + 1 4600 7650 + 0 1 1 0 +$EndComp +Wire Wire Line + 4650 7450 4650 7550 +Wire Wire Line + 4650 8100 4650 7850 +Wire Wire Line + 4650 7500 4250 7500 +Connection ~ 4650 7500 +Wire Wire Line + 3550 8100 9250 8100 +Wire Wire Line + 3550 8100 3550 8000 +$Comp +L resistor R1 +U 1 1 69D25149 +P 3500 7800 +F 0 "R1" H 3550 7930 50 0000 C CNN +F 1 "7.7k" H 3550 7750 50 0000 C CNN +F 2 "" H 3550 7780 30 0000 C CNN +F 3 "" V 3550 7850 30 0000 C CNN + 1 3500 7800 + 0 1 1 0 +$EndComp +Wire Wire Line + 3550 6300 3550 7700 +$Comp +L eSim_Diode D1 +U 1 1 69D2546A +P 4650 3950 +F 0 "D1" H 4650 4050 50 0000 C CNN +F 1 "eSim_Diode" H 4650 3850 50 0000 C CNN +F 2 "" H 4650 3950 60 0000 C CNN +F 3 "" H 4650 3950 60 0000 C CNN + 1 4650 3950 + 0 1 1 0 +$EndComp +$Comp +L eSim_Diode D2 +U 1 1 69D254F8 +P 5800 3950 +F 0 "D2" H 5800 4050 50 0000 C CNN +F 1 "eSim_Diode" H 5800 3850 50 0000 C CNN +F 2 "" H 5800 3950 60 0000 C CNN +F 3 "" H 5800 3950 60 0000 C CNN + 1 5800 3950 + 0 1 1 0 +$EndComp +Wire Wire Line + 4650 3800 4650 3650 +Wire Wire Line + 4650 3650 5800 3650 +Wire Wire Line + 5800 3650 5800 3800 +$Comp +L eSim_PNP Q5 +U 1 1 69D256DD +P 5200 3400 +F 0 "Q5" H 5100 3450 50 0000 R CNN +F 1 "eSim_PNP" H 5150 3550 50 0000 R CNN +F 2 "" H 5400 3500 29 0000 C CNN +F 3 "" H 5200 3400 60 0000 C CNN + 1 5200 3400 + -1 0 0 1 +$EndComp +Wire Wire Line + 5100 3600 5100 3650 +Connection ~ 5100 3650 +$Comp +L resistor R5 +U 1 1 69D25A8F +P 5050 2900 +F 0 "R5" H 5100 3030 50 0000 C CNN +F 1 "4k" H 5100 2850 50 0000 C CNN +F 2 "" H 5100 2880 30 0000 C CNN +F 3 "" V 5100 2950 30 0000 C CNN + 1 5050 2900 + 0 1 1 0 +$EndComp +Wire Wire Line + 5100 3100 5100 3200 +$Comp +L eSim_Diode D3 +U 1 1 69D25C5B +P 8850 3200 +F 0 "D3" H 8850 3300 50 0000 C CNN +F 1 "eSim_Diode" H 8850 3100 50 0000 C CNN +F 2 "" H 8850 3200 60 0000 C CNN +F 3 "" H 8850 3200 60 0000 C CNN + 1 8850 3200 + 0 1 1 0 +$EndComp +$Comp +L resistor R11 +U 1 1 69D25D32 +P 8800 2750 +F 0 "R11" H 8850 2880 50 0000 C CNN +F 1 "1k" H 8850 2700 50 0000 C CNN +F 2 "" H 8850 2730 30 0000 C CNN +F 3 "" V 8850 2800 30 0000 C CNN + 1 8800 2750 + 0 1 1 0 +$EndComp +Wire Wire Line + 5100 2800 5100 2600 +Wire Wire Line + 5100 2600 13150 2600 +Wire Wire Line + 8850 2950 8850 3050 +Wire Wire Line + 5400 3400 10250 3400 +Wire Wire Line + 8850 2600 8850 2650 +Wire Wire Line + 8850 3350 8850 4200 +Connection ~ 8850 3400 +Wire Wire Line + 5300 6750 5300 7500 +$Comp +L resistor R6 +U 1 1 69D2659F +P 5250 7600 +F 0 "R6" H 5300 7730 50 0000 C CNN +F 1 "39k" H 5300 7550 50 0000 C CNN +F 2 "" H 5300 7580 30 0000 C CNN +F 3 "" V 5300 7650 30 0000 C CNN + 1 5250 7600 + 0 1 1 0 +$EndComp +Wire Wire Line + 5300 8100 5300 7800 +Connection ~ 4650 8100 +Wire Wire Line + 4950 7250 5750 7250 +Connection ~ 5300 7250 +$Comp +L eSim_NPN Q8 +U 1 1 69D266D8 +P 5950 7250 +F 0 "Q8" H 5850 7300 50 0000 R CNN +F 1 "eSim_NPN" H 5900 7400 50 0000 R CNN +F 2 "" H 6150 7350 29 0000 C CNN +F 3 "" H 5950 7250 60 0000 C CNN + 1 5950 7250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6050 7450 6050 7550 +$Comp +L resistor R9 +U 1 1 69D26817 +P 6000 7650 +F 0 "R9" H 6050 7780 50 0000 C CNN +F 1 "1k" H 6050 7600 50 0000 C CNN +F 2 "" H 6050 7630 30 0000 C CNN +F 3 "" V 6050 7700 30 0000 C CNN + 1 6000 7650 + 0 1 1 0 +$EndComp +Wire Wire Line + 6050 7450 6350 7450 +Wire Wire Line + 6350 7450 6350 8200 +Wire Wire Line + 6050 8100 6050 7850 +Connection ~ 5300 8100 +Wire Wire Line + 6050 7050 6050 5900 +Wire Wire Line + 6050 5900 5800 5900 +Wire Wire Line + 6100 5550 6850 5550 +Wire Wire Line + 6850 5400 6850 6000 +Connection ~ 6850 5550 +$Comp +L resistor R10 +U 1 1 69D26CD4 +P 6950 7650 +F 0 "R10" H 7000 7780 50 0000 C CNN +F 1 "7.7k" H 7000 7600 50 0000 C CNN +F 2 "" H 7000 7630 30 0000 C CNN +F 3 "" V 7000 7700 30 0000 C CNN + 1 6950 7650 + 0 1 1 0 +$EndComp +Connection ~ 6350 8100 +Connection ~ 6050 8100 +Wire Wire Line + 7000 8100 7000 7850 +$Comp +L eSim_NPN Q9 +U 1 1 69D26EC1 +P 6750 6200 +F 0 "Q9" H 6650 6250 50 0000 R CNN +F 1 "eSim_NPN" H 6700 6350 50 0000 R CNN +F 2 "" H 6950 6300 29 0000 C CNN +F 3 "" H 6750 6200 60 0000 C CNN + 1 6750 6200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7000 7550 7000 6400 +Wire Wire Line + 7000 6400 6850 6400 +Wire Wire Line + 6550 6100 6550 6200 +$Comp +L resistor R12 +U 1 1 69D27583 +P 8800 4300 +F 0 "R12" H 8850 4430 50 0000 C CNN +F 1 "56k" H 8850 4250 50 0000 C CNN +F 2 "" H 8850 4280 30 0000 C CNN +F 3 "" V 8850 4350 30 0000 C CNN + 1 8800 4300 + 0 1 1 0 +$EndComp +Wire Wire Line + 8850 4500 8850 6750 +$Comp +L eSim_Diode D4 +U 1 1 69D27C2A +P 8850 6900 +F 0 "D4" H 8850 7000 50 0000 C CNN +F 1 "eSim_Diode" H 8850 6800 50 0000 C CNN +F 2 "" H 8850 6900 60 0000 C CNN +F 3 "" H 8850 6900 60 0000 C CNN + 1 8850 6900 + 0 1 1 0 +$EndComp +Wire Wire Line + 8850 8100 8850 7050 +Connection ~ 7000 8100 +$Comp +L eSim_PNP Q11 +U 1 1 69D2829F +P 9400 7150 +F 0 "Q11" H 9300 7200 50 0000 R CNN +F 1 "eSim_PNP" H 9350 7300 50 0000 R CNN +F 2 "" H 9600 7250 29 0000 C CNN +F 3 "" H 9400 7150 60 0000 C CNN + 1 9400 7150 + -1 0 0 -1 +$EndComp +Wire Wire Line + 9300 7350 9300 8050 +$Comp +L capacitor C1 +U 1 1 69D286C6 +P 9300 6250 +F 0 "C1" H 9325 6350 50 0000 L CNN +F 1 "35pf" H 9325 6150 50 0000 L CNN +F 2 "" H 9338 6100 30 0000 C CNN +F 3 "" H 9300 6250 60 0000 C CNN + 1 9300 6250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9300 6950 9300 6400 +Wire Wire Line + 9300 6100 9300 5850 +Wire Wire Line + 9300 5850 10450 5850 +$Comp +L eSim_NPN Q12 +U 1 1 69D2880F +P 10350 6600 +F 0 "Q12" H 10250 6650 50 0000 R CNN +F 1 "eSim_NPN" H 10300 6750 50 0000 R CNN +F 2 "" H 10550 6700 29 0000 C CNN +F 3 "" H 10350 6600 60 0000 C CNN + 1 10350 6600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q16 +U 1 1 69D2888C +P 11300 7050 +F 0 "Q16" H 11200 7100 50 0000 R CNN +F 1 "eSim_NPN" H 11250 7200 50 0000 R CNN +F 2 "" H 11500 7150 29 0000 C CNN +F 3 "" H 11300 7050 60 0000 C CNN + 1 11300 7050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 10450 3550 10450 6400 +Wire Wire Line + 10150 6600 9500 6600 +Wire Wire Line + 9500 6600 9500 6500 +Wire Wire Line + 9500 6500 9300 6500 +Connection ~ 9300 6500 +Wire Wire Line + 10450 6800 10450 7400 +Wire Wire Line + 11100 7050 10450 7050 +Connection ~ 10450 7050 +Wire Wire Line + 11400 7250 11400 7450 +$Comp +L resistor R13 +U 1 1 69D28B3C +P 10400 7500 +F 0 "R13" H 10450 7630 50 0000 C CNN +F 1 "39k" H 10450 7450 50 0000 C CNN +F 2 "" H 10450 7480 30 0000 C CNN +F 3 "" V 10450 7550 30 0000 C CNN + 1 10400 7500 + 0 1 1 0 +$EndComp +$Comp +L resistor R16 +U 1 1 69D28BF2 +P 11350 7550 +F 0 "R16" H 11400 7680 50 0000 C CNN +F 1 "50" H 11400 7500 50 0000 C CNN +F 2 "" H 11400 7530 30 0000 C CNN +F 3 "" V 11400 7600 30 0000 C CNN + 1 11350 7550 + 0 1 1 0 +$EndComp +Wire Wire Line + 9250 8050 13050 8050 +Wire Wire Line + 11400 8050 11400 7750 +Wire Wire Line + 10450 7700 10450 8050 +Connection ~ 10450 8050 +$Comp +L eSim_NPN Q15 +U 1 1 69D28D63 +P 11300 6350 +F 0 "Q15" H 11200 6400 50 0000 R CNN +F 1 "eSim_NPN" H 11250 6500 50 0000 R CNN +F 2 "" H 11500 6450 29 0000 C CNN +F 3 "" H 11300 6350 60 0000 C CNN + 1 11300 6350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_PNP Q17 +U 1 1 69D29077 +P 12050 6650 +F 0 "Q17" H 11950 6700 50 0000 R CNN +F 1 "eSim_PNP" H 12000 6800 50 0000 R CNN +F 2 "" H 12250 6750 29 0000 C CNN +F 3 "" H 12050 6650 60 0000 C CNN + 1 12050 6650 + 1 0 0 1 +$EndComp +Wire Wire Line + 11400 6550 11400 6850 +Wire Wire Line + 11850 6650 11400 6650 +Connection ~ 11400 6650 +Wire Wire Line + 12150 6450 12600 6450 +$Comp +L eSim_PNP Q19 +U 1 1 69D293C1 +P 12800 6450 +F 0 "Q19" H 12700 6500 50 0000 R CNN +F 1 "eSim_PNP" H 12750 6600 50 0000 R CNN +F 2 "" H 13000 6550 29 0000 C CNN +F 3 "" H 12800 6450 60 0000 C CNN + 1 12800 6450 + 1 0 0 1 +$EndComp +$Comp +L eSim_Diode D6 +U 1 1 69D294B9 +P 12200 5650 +F 0 "D6" H 12200 5750 50 0000 C CNN +F 1 "eSim_Diode" H 12200 5550 50 0000 C CNN +F 2 "" H 12200 5650 60 0000 C CNN +F 3 "" H 12200 5650 60 0000 C CNN + 1 12200 5650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Diode D7 +U 1 1 69D295F5 +P 12250 5200 +F 0 "D7" H 12250 5300 50 0000 C CNN +F 1 "eSim_Diode" H 12250 5100 50 0000 C CNN +F 2 "" H 12250 5200 60 0000 C CNN +F 3 "" H 12250 5200 60 0000 C CNN + 1 12250 5200 + -1 0 0 1 +$EndComp +$Comp +L resistor R18 +U 1 1 69D296D0 +P 12850 6000 +F 0 "R18" H 12900 6130 50 0000 C CNN +F 1 "50" H 12900 5950 50 0000 C CNN +F 2 "" H 12900 5980 30 0000 C CNN +F 3 "" V 12900 6050 30 0000 C CNN + 1 12850 6000 + 0 1 1 0 +$EndComp +Wire Wire Line + 12900 6200 12900 6250 +Wire Wire Line + 12900 4900 12900 5900 +Wire Wire Line + 12900 5650 12350 5650 +$Comp +L resistor R17 +U 1 1 69D29BAB +P 12850 4700 +F 0 "R17" H 12900 4830 50 0000 C CNN +F 1 "30" H 12900 4650 50 0000 C CNN +F 2 "" H 12900 4680 30 0000 C CNN +F 3 "" V 12900 4750 30 0000 C CNN + 1 12850 4700 + 0 1 1 0 +$EndComp +Wire Wire Line + 12400 5200 13050 5200 +Connection ~ 12900 5200 +Connection ~ 12900 5650 +Wire Wire Line + 11400 6150 11400 5650 +Wire Wire Line + 10850 5650 12050 5650 +$Comp +L eSim_Diode D5 +U 1 1 69D29DEF +P 10850 5850 +F 0 "D5" H 10850 5950 50 0000 C CNN +F 1 "eSim_Diode" H 10850 5750 50 0000 C CNN +F 2 "" H 10850 5850 60 0000 C CNN +F 3 "" H 10850 5850 60 0000 C CNN + 1 10850 5850 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q18 +U 1 1 69D29E91 +P 12800 4200 +F 0 "Q18" H 12700 4250 50 0000 R CNN +F 1 "eSim_NPN" H 12750 4350 50 0000 R CNN +F 2 "" H 13000 4300 29 0000 C CNN +F 3 "" H 12800 4200 60 0000 C CNN + 1 12800 4200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 12900 4400 12900 4600 +Wire Wire Line + 12900 2600 12900 4000 +Connection ~ 8850 2600 +Wire Wire Line + 10850 6000 10850 6350 +Wire Wire Line + 10850 6350 11100 6350 +Wire Wire Line + 10850 5050 10850 5700 +Connection ~ 11400 5650 +Wire Wire Line + 10850 5200 12100 5200 +Connection ~ 10850 5650 +$Comp +L eSim_NPN Q14 +U 1 1 69D2A59C +P 10750 4850 +F 0 "Q14" H 10650 4900 50 0000 R CNN +F 1 "eSim_NPN" H 10700 5000 50 0000 R CNN +F 2 "" H 10950 4950 29 0000 C CNN +F 3 "" H 10750 4850 60 0000 C CNN + 1 10750 4850 + 1 0 0 -1 +$EndComp +Connection ~ 10850 5200 +Wire Wire Line + 12600 4200 10850 4200 +Wire Wire Line + 10850 4000 10850 4650 +$Comp +L resistor R15 +U 1 1 69D2A7CE +P 10800 3800 +F 0 "R15" H 10850 3930 50 0000 C CNN +F 1 "7.7k" H 10850 3750 50 0000 C CNN +F 2 "" H 10850 3780 30 0000 C CNN +F 3 "" V 10850 3850 30 0000 C CNN + 1 10800 3800 + 0 1 1 0 +$EndComp +Connection ~ 10850 4200 +Wire Wire Line + 10850 3400 10850 3700 +Wire Wire Line + 10850 3550 10450 3550 +Connection ~ 10450 5850 +Wire Wire Line + 10550 4850 10450 4850 +Connection ~ 10450 4850 +$Comp +L eSim_PNP Q13 +U 1 1 69D2AB65 +P 10750 3200 +F 0 "Q13" H 10650 3250 50 0000 R CNN +F 1 "eSim_PNP" H 10700 3350 50 0000 R CNN +F 2 "" H 10950 3300 29 0000 C CNN +F 3 "" H 10750 3200 60 0000 C CNN + 1 10750 3200 + 1 0 0 1 +$EndComp +$Comp +L resistor R14 +U 1 1 69D2ACEF +P 10800 2750 +F 0 "R14" H 10850 2880 50 0000 C CNN +F 1 "1k" H 10850 2700 50 0000 C CNN +F 2 "" H 10850 2730 30 0000 C CNN +F 3 "" V 10850 2800 30 0000 C CNN + 1 10800 2750 + 0 1 1 0 +$EndComp +Wire Wire Line + 10850 2600 10850 2650 +Connection ~ 10850 2600 +Wire Wire Line + 10850 2950 10850 3000 +Connection ~ 10850 3550 +Wire Wire Line + 10250 3400 10250 3200 +Wire Wire Line + 10250 3200 10550 3200 +Wire Wire Line + 9600 7150 10150 7150 +Wire Wire Line + 10150 7150 10150 7300 +Wire Wire Line + 10150 7300 11400 7300 +Connection ~ 11400 7300 +Wire Wire Line + 12150 8050 12150 6850 +Connection ~ 11400 8050 +Wire Wire Line + 12900 8050 12900 6650 +Connection ~ 12150 8050 +Connection ~ 12900 8050 +Wire Wire Line + 5300 6350 5700 6350 +Wire Wire Line + 5700 6350 5700 6750 +Wire Wire Line + 5700 6750 8200 6750 +Wire Wire Line + 8200 6750 8200 2600 +Connection ~ 8200 2600 +Wire Wire Line + 6300 6100 6300 6500 +Wire Wire Line + 6300 6500 8850 6500 +Connection ~ 8850 6500 +Connection ~ 6300 6100 +Wire Wire Line + 4250 7500 4250 8250 +Connection ~ 4250 8100 +Wire Wire Line + 9250 8100 9250 8050 +Connection ~ 9300 8050 +Connection ~ 8850 8100 +Wire Wire Line + 3250 5150 3100 5150 +Connection ~ 12900 2600 +$Comp +L PORT U1 +U 1 1 69D2E0B3 +P 4000 8250 +F 0 "U1" H 4050 8350 30 0000 C CNN +F 1 "PORT" H 4000 8250 30 0000 C CNN +F 2 "" H 4000 8250 60 0000 C CNN +F 3 "" H 4000 8250 60 0000 C CNN + 1 4000 8250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 69D2E1BE +P 2850 4200 +F 0 "U1" H 2900 4300 30 0000 C CNN +F 1 "PORT" H 2850 4200 30 0000 C CNN +F 2 "" H 2850 4200 60 0000 C CNN +F 3 "" H 2850 4200 60 0000 C CNN + 2 2850 4200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 69D2E239 +P 2850 5150 +F 0 "U1" H 2900 5250 30 0000 C CNN +F 1 "PORT" H 2850 5150 30 0000 C CNN +F 2 "" H 2850 5150 60 0000 C CNN +F 3 "" H 2850 5150 60 0000 C CNN + 3 2850 5150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 69D2E2C6 +P 13300 8050 +F 0 "U1" H 13350 8150 30 0000 C CNN +F 1 "PORT" H 13300 8050 30 0000 C CNN +F 2 "" H 13300 8050 60 0000 C CNN +F 3 "" H 13300 8050 60 0000 C CNN + 4 13300 8050 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 69D2E34B +P 6100 8200 +F 0 "U1" H 6150 8300 30 0000 C CNN +F 1 "PORT" H 6100 8200 30 0000 C CNN +F 2 "" H 6100 8200 60 0000 C CNN +F 3 "" H 6100 8200 60 0000 C CNN + 5 6100 8200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 69D2E532 +P 13300 5200 +F 0 "U1" H 13350 5300 30 0000 C CNN +F 1 "PORT" H 13300 5200 30 0000 C CNN +F 2 "" H 13300 5200 60 0000 C CNN +F 3 "" H 13300 5200 60 0000 C CNN + 6 13300 5200 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 7 1 69D2E6EB +P 13400 2600 +F 0 "U1" H 13450 2700 30 0000 C CNN +F 1 "PORT" H 13400 2600 30 0000 C CNN +F 2 "" H 13400 2600 60 0000 C CNN +F 3 "" H 13400 2600 60 0000 C CNN + 7 13400 2600 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 69E39633 +P 13550 3900 +F 0 "U1" H 13600 4000 30 0000 C CNN +F 1 "PORT" H 13550 3900 30 0000 C CNN +F 2 "" H 13550 3900 60 0000 C CNN +F 3 "" H 13550 3900 60 0000 C CNN + 8 13550 3900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 13800 3900 14500 3900 +NoConn ~ 14500 3900 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.sub b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.sub new file mode 100644 index 000000000..0193a581c --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556.sub @@ -0,0 +1,54 @@ +* Subcircuit IC_MC1556 +.subckt IC_MC1556 net-_d4-pad2_ net-_d1-pad2_ net-_q1-pad2_ net-_d4-pad2_ net-_d4-pad2_ net-_d6-pad2_ net-_q18-pad1_ ? +* c:\fossee\esim\library\subcircuitlibrary\ic_mc1556\ic_mc1556.cir +.include NPN.lib +.include D.lib +.include PNP.lib +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +q3 net-_q3-pad1_ net-_q1-pad3_ net-_q3-pad3_ Q2N2907A +r3 net-_q1-pad1_ net-_q3-pad3_ 1.5k +q2 net-_q1-pad3_ net-_d4-pad1_ net-_q2-pad3_ Q2N2222 +r2 net-_d1-pad2_ net-_q1-pad1_ 500 +q7 net-_q7-pad1_ net-_q10-pad3_ net-_q7-pad3_ Q2N2907A +r8 net-_q10-pad1_ net-_q7-pad3_ 1.5k +r7 net-_d1-pad2_ net-_q10-pad1_ 500 +q10 net-_q10-pad1_ net-_d1-pad2_ net-_q10-pad3_ Q2N2907A +q6 net-_q18-pad1_ net-_q3-pad1_ net-_q4-pad2_ Q2N2222 +q4 net-_q3-pad1_ net-_q4-pad2_ net-_d4-pad2_ Q2N2907A +r4 net-_d4-pad2_ net-_d4-pad2_ 1k +r1 net-_q2-pad3_ net-_d4-pad2_ 7.7k +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +d2 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +q5 net-_d1-pad1_ net-_d3-pad2_ net-_q5-pad3_ Q2N2907A +r5 net-_q18-pad1_ net-_q5-pad3_ 4k +d3 net-_d3-pad1_ net-_d3-pad2_ 1N4148 +r11 net-_q18-pad1_ net-_d3-pad1_ 1k +r6 net-_q4-pad2_ net-_d4-pad2_ 39k +q8 net-_q7-pad1_ net-_q4-pad2_ net-_d4-pad2_ Q2N2222 +r9 net-_d4-pad2_ net-_d4-pad2_ 1k +r10 net-_q9-pad3_ net-_d4-pad2_ 7.7k +q9 net-_q10-pad3_ net-_d4-pad1_ net-_q9-pad3_ Q2N2222 +r12 net-_d3-pad2_ net-_d4-pad1_ 56k +d4 net-_d4-pad1_ net-_d4-pad2_ 1N4148 +q11 net-_c1-pad2_ net-_q11-pad2_ net-_d4-pad2_ Q2N2907A +c1 net-_c1-pad1_ net-_c1-pad2_ 35pf +q12 net-_c1-pad1_ net-_c1-pad2_ net-_q12-pad3_ Q2N2222 +q16 net-_q15-pad3_ net-_q12-pad3_ net-_q11-pad2_ Q2N2222 +r13 net-_q12-pad3_ net-_d4-pad2_ 39k +r16 net-_q11-pad2_ net-_d4-pad2_ 50 +q15 net-_d5-pad1_ net-_d5-pad2_ net-_q15-pad3_ Q2N2222 +q17 net-_d4-pad2_ net-_q15-pad3_ net-_q17-pad3_ Q2N2907A +q19 net-_d4-pad2_ net-_q17-pad3_ net-_q19-pad3_ Q2N2907A +d6 net-_d5-pad1_ net-_d6-pad2_ 1N4148 +d7 net-_d6-pad2_ net-_d5-pad1_ 1N4148 +r18 net-_d6-pad2_ net-_q19-pad3_ 50 +r17 net-_q18-pad3_ net-_d6-pad2_ 30 +d5 net-_d5-pad1_ net-_d5-pad2_ 1N4148 +q18 net-_q18-pad1_ net-_q14-pad1_ net-_q18-pad3_ Q2N2222 +q14 net-_q14-pad1_ net-_c1-pad1_ net-_d5-pad1_ Q2N2222 +r15 net-_c1-pad1_ net-_q14-pad1_ 7.7k +q13 net-_c1-pad1_ net-_d3-pad2_ net-_q13-pad3_ Q2N2907A +r14 net-_q18-pad1_ net-_q13-pad3_ 1k +* Control Statements + +.ends IC_MC1556 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC1556/IC_MC1556_Previous_Values.xml b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556_Previous_Values.xml new file mode 100644 index 000000000..7777ae9a8 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/IC_MC1556_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_MC1556/NPN.lib b/library/SubcircuitLibrary/IC_MC1556/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/IC_MC1556/PNP.lib b/library/SubcircuitLibrary/IC_MC1556/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/IC_MC1556/analysis b/library/SubcircuitLibrary/IC_MC1556/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_MC1556/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_NA53/IC_NA53.cir b/library/SubcircuitLibrary/IC_NA53/IC_NA53.cir new file mode 100644 index 000000000..db13d850c --- /dev/null +++ b/library/SubcircuitLibrary/IC_NA53/IC_NA53.cir @@ -0,0 +1,8 @@ +.title KiCad schematic +U6 Net-_U5-Pad3_ Net-_U1-Pad6_ d_inverter +U5 Net-_U4-Pad3_ Net-_U1-Pad5_ Net-_U5-Pad3_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ PORT +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U3-Pad3_ d_and +U4 Net-_U3-Pad3_ Net-_U1-Pad4_ Net-_U4-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/IC_NA53/IC_NA53.cir.out b/library/SubcircuitLibrary/IC_NA53/IC_NA53.cir.out new file mode 100644 index 000000000..5560a1b80 --- /dev/null +++ b/library/SubcircuitLibrary/IC_NA53/IC_NA53.cir.out @@ -0,0 +1,32 @@ +.title kicad schematic + +* u6 net-_u5-pad3_ net-_u1-pad6_ d_inverter +* u5 net-_u4-pad3_ net-_u1-pad5_ net-_u5-pad3_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ port +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u3-pad3_ d_and +* u4 net-_u3-pad3_ net-_u1-pad4_ net-_u4-pad3_ d_and +a1 net-_u5-pad3_ net-_u1-pad6_ u6 +a2 [net-_u4-pad3_ net-_u1-pad5_ ] net-_u5-pad3_ u5 +a3 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a4 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u3-pad3_ u3 +a5 [net-_u3-pad3_ net-_u1-pad4_ ] net-_u4-pad3_ u4 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_NA53/IC_NA53.kicad_sch b/library/SubcircuitLibrary/IC_NA53/IC_NA53.kicad_sch new file mode 100644 index 000000000..0852ed8ff --- /dev/null +++ b/library/SubcircuitLibrary/IC_NA53/IC_NA53.kicad_sch @@ -0,0 +1,728 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid c4a538d0-4c67-4251-b5f8-8c230a45627c) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (wire (pts (xy 118.11 81.28) (xy 118.11 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d737493-836c-4fa0-9075-74393cb82375) + ) + (wire (pts (xy 68.58 80.01) (xy 95.25 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18ecf6b3-d1b4-46d8-89e4-5d9e6b2de63c) + ) + (wire (pts (xy 68.58 102.87) (xy 171.45 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e69838f-3847-41fd-a84b-dc309e6739b4) + ) + (wire (pts (xy 68.58 95.25) (xy 147.32 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4928aa8b-2e69-4d02-aa3b-d181e897522b) + ) + (wire (pts (xy 144.78 87.63) (xy 147.32 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 536f51c9-9cf7-4561-8b24-e3b0f513c335) + ) + (wire (pts (xy 147.32 87.63) (xy 147.32 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 596d3f0b-3353-426d-a325-c29fc161b90a) + ) + (wire (pts (xy 170.18 93.98) (xy 171.45 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6323f933-724b-4872-9966-e747c53b12d8) + ) + (wire (pts (xy 194.31 101.6) (xy 200.66 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6947027a-2bac-4148-a206-694546fbfefd) + ) + (wire (pts (xy 215.9 101.6) (xy 223.52 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a612a01-bb29-43da-b731-63ee21a94d8f) + ) + (wire (pts (xy 118.11 86.36) (xy 121.92 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae77d098-741d-4077-9320-ca5fb3f119f7) + ) + (wire (pts (xy 68.58 88.9) (xy 121.92 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c12276d5-6d07-40fe-aaf8-1a336faea468) + ) + (wire (pts (xy 68.58 82.55) (xy 95.25 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcd7c485-5a39-4336-b524-0c26b9a44a0d) + ) + (wire (pts (xy 171.45 93.98) (xy 171.45 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc192a9c-0731-47a0-943f-3649323eb6f0) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 182.88 102.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 22ccd5cc-9d59-46d8-9e3d-419ce5559df9) + (property "Reference" "U5" (id 0) (at 182.88 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 182.88 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 182.88 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 25c2de5e-88a6-4744-8c54-64c3e610be54)) + (pin "2" (uuid abe6fd93-7012-4e8a-b686-0517b886f130)) + (pin "3" (uuid 5d3c078c-7a11-4f84-b265-7d41e2390a97)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 62.23 82.55 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26468975-06c5-419d-a9a4-a368127f6eec) + (property "Reference" "U1" (id 0) (at 62.865 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 62.865 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 62.23 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 62.23 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34c972a6-7f81-406e-ab72-c929de9de276)) + (pin "2" (uuid af75c9b4-01a3-4e9f-902d-5ebe764ec250)) + (pin "3" (uuid 456c95d7-ef43-4b0c-9c8b-13a28b786a65)) + (pin "4" (uuid e3b58d35-3b2f-45ab-9402-e9e7c3137ff1)) + (pin "5" (uuid 498eb59d-caa5-4249-b225-3ab58919e11d)) + (pin "6" (uuid 2c3373ed-a791-42be-82c3-9f5057729d15)) + (pin "7" (uuid 638ddc14-62e5-46c2-a79a-4ba3a4d3a3fe)) + (pin "8" (uuid 4521301d-4c39-41d6-a5c3-bd2e6e34400b)) + (pin "9" (uuid c9d174b8-b6e6-45c5-8bcb-14cef2716e24)) + (pin "10" (uuid 83edee8b-652b-4d83-a905-fb8ba1f7297e)) + (pin "11" (uuid 53e6f6ee-350a-48cb-b73e-23d8388921e1)) + (pin "12" (uuid 45799d48-ec07-48bb-b940-6d681dd5e513)) + (pin "13" (uuid 17e97f26-d725-4ad9-8cc3-085a69784b1b)) + (pin "14" (uuid 86ad7b1a-2f8f-4958-8460-53765e14c8f5)) + (pin "15" (uuid 529410df-3554-4973-ad62-c5ce00424c1d)) + (pin "16" (uuid 48f2376c-e6b6-4773-853d-44f6d24f5ecf)) + (pin "17" (uuid 3a76edd2-8668-4400-9eee-36acc7163d08)) + (pin "18" (uuid 1ce2044b-e5e0-4b5e-b7ff-ba89fdfbe19d)) + (pin "19" (uuid 60659549-e6ef-4dc0-a090-d86efa471b39)) + (pin "20" (uuid 56fbf8af-d0aa-4691-a6e2-9103fbeeb171)) + (pin "21" (uuid 7e557f61-eebf-4797-82ba-b13e5bc90892)) + (pin "22" (uuid 78b1f2d2-b264-4ab9-be95-dd43f6b3095e)) + (pin "23" (uuid 20275d4a-5439-4267-b617-1ccae679d9e1)) + (pin "24" (uuid bae2821f-1cab-4394-aea1-a24b7cf7220c)) + (pin "25" (uuid 7f4f8f20-69b4-4580-9089-42039fc21d8e)) + (pin "26" (uuid e6ca5a23-2bb2-40f8-8a28-1616ef9598a2)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 133.35 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b30c7a6-4ed7-42f2-a780-878ecf4fc681) + (property "Reference" "U3" (id 0) (at 133.35 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 133.35 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 133.35 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 08a1d4cd-9cf2-4746-8cf9-1f15f3748eaa)) + (pin "2" (uuid aaf2295b-706d-4c54-b4b3-1fb63e19b1a3)) + (pin "3" (uuid 748f431a-2934-45bb-8adf-5d50c58bc580)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 229.87 101.6 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 69d3174d-0cbe-4421-af2a-330292d46422) + (property "Reference" "U1" (id 0) (at 233.68 100.965 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 233.68 103.505 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 229.87 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 229.87 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9e215bc4-6989-4adb-a571-d22bf1f87269)) + (pin "2" (uuid 51f1d59b-f7d7-4cf6-88ab-857e5edb3801)) + (pin "3" (uuid 8b4a888a-5b15-4af4-ad07-0962bb7ac909)) + (pin "4" (uuid ce33a440-3e4a-41b0-8975-f00dd1ef48f9)) + (pin "5" (uuid ad07f2ba-4b2d-42ac-ae8c-0c0acf255b12)) + (pin "6" (uuid fef6f4a1-7646-4def-9d1b-b2a7a82d7194)) + (pin "7" (uuid 666b969b-77c8-48b8-8a18-d66f8309bccd)) + (pin "8" (uuid 38293ead-281a-4f6b-a658-06039c83d2ae)) + (pin "9" (uuid 95563805-4283-405b-849d-7bcca3ff4715)) + (pin "10" (uuid 50415ffb-9139-4018-8686-9c17feeca598)) + (pin "11" (uuid d1e0f5fb-a929-48c7-be7c-35df36e5530d)) + (pin "12" (uuid 38894c9f-e1c0-4bfd-867c-43e9bdeb719d)) + (pin "13" (uuid 0b1820a1-8926-4c21-87e9-462590c7b5a5)) + (pin "14" (uuid d1aff09f-12e2-41d5-ab54-5469d48a7ff0)) + (pin "15" (uuid cc02e1db-6d95-489d-b7a5-fe9a8f10df20)) + (pin "16" (uuid d3ace7a4-80cf-4025-aaa5-93f7fc2e00d7)) + (pin "17" (uuid a0f105fa-1117-42a4-bddf-e0eb9f165cac)) + (pin "18" (uuid e4d9c6ce-b6ea-444e-8d74-7dd5a9ed7a1a)) + (pin "19" (uuid 8f558b9f-bb1c-406c-9209-ae4af9ec8ee8)) + (pin "20" (uuid 33f90505-a873-4ad4-9c44-15f52e8dbcb6)) + (pin "21" (uuid a8075640-ec04-410d-8c7f-7f74cf312d06)) + (pin "22" (uuid fea58a46-a3e0-4d5e-a19d-ddb2168e5be0)) + (pin "23" (uuid b30c3d34-5efa-4e87-ae6e-7f98a871247c)) + (pin "24" (uuid 3ee1b1df-3aff-4418-bab7-0d10c9da76a6)) + (pin "25" (uuid 35ebc977-4543-4a33-b62e-591bbf5749f5)) + (pin "26" (uuid 5c431c45-9fcc-4016-8480-ff4960288508)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 62.23 88.9 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 868a80f9-37c0-401c-be11-7372451faccf) + (property "Reference" "U1" (id 0) (at 62.865 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 62.865 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 62.23 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 62.23 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 14373050-7573-4fd1-9fae-b26ee7310e66)) + (pin "2" (uuid a7f47132-c0b3-4727-a083-4897148927c5)) + (pin "3" (uuid 5adaaed6-9202-4412-b331-741bb8bbc33f)) + (pin "4" (uuid 95771237-0444-428d-a88e-05ba0e9ab3ce)) + (pin "5" (uuid 669f3683-733c-450f-b98e-136f591cac7c)) + (pin "6" (uuid ececef17-f2ee-4e1e-802f-6c1240abede7)) + (pin "7" (uuid 8953cbd8-204e-442b-8360-ed9d94cf0a9b)) + (pin "8" (uuid 4bd6ee40-87d7-4345-bfda-1f123eb89c85)) + (pin "9" (uuid de53bc66-a292-4bab-b716-053d63fec2ed)) + (pin "10" (uuid 2f069f72-902d-41c1-8a69-e83991b7f86d)) + (pin "11" (uuid c3d912ac-da39-4049-885f-6c2eac965a62)) + (pin "12" (uuid 0ff86560-fcec-409d-9d3e-013f97b02ba2)) + (pin "13" (uuid 56e09608-bc9b-49ed-b8b2-b150627ed117)) + (pin "14" (uuid f8012050-2f05-42c5-a1d0-ca104e211e3b)) + (pin "15" (uuid 4d42acf1-bf52-4db5-8d01-6b0ef04d37ca)) + (pin "16" (uuid 03a8b08c-0041-496e-afd7-8d6ef97e76e3)) + (pin "17" (uuid 01a522f4-f016-4ae9-a20c-ac62793e723d)) + (pin "18" (uuid 0f887be1-0873-4e4c-a703-482f8ddf5e1a)) + (pin "19" (uuid bccfb403-2b86-4a7a-b3ec-c742e2363d68)) + (pin "20" (uuid 17120f70-a1b4-4d30-8733-03b87dd32355)) + (pin "21" (uuid 001e1405-594f-417b-a4b5-cb686f0ac351)) + (pin "22" (uuid 948a7470-7c16-48c8-b702-b4791bde6343)) + (pin "23" (uuid a8b46adc-2c7c-483e-9b14-96953610939c)) + (pin "24" (uuid e8a84933-8674-485b-be90-74ae180eb1eb)) + (pin "25" (uuid e0280ab3-8a91-463a-b16a-fb73064d1f40)) + (pin "26" (uuid 4a5b111a-a47f-4db7-b2fa-56068e15ccdc)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 62.23 95.25 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8d874a86-6f15-4059-963d-ec744a16fd46) + (property "Reference" "U1" (id 0) (at 62.865 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 62.865 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 62.23 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 62.23 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 95479b8a-f804-47e3-b398-214be82b4043)) + (pin "2" (uuid caa775ea-df6d-49ff-b4c9-206a593ce7f9)) + (pin "3" (uuid 35589256-da87-463b-bdbd-7718e009ccb0)) + (pin "4" (uuid a2e87130-0e9a-47d2-9e77-2000e03dfa19)) + (pin "5" (uuid 95870982-c853-4e6e-81c5-433b1c895276)) + (pin "6" (uuid c732e683-c00f-4643-b8f0-a273f40286bb)) + (pin "7" (uuid 08fa47d1-68e7-4459-a03a-069c2afe5fbe)) + (pin "8" (uuid 2abbbe69-b1e6-4840-b22f-b5cdc97b410d)) + (pin "9" (uuid 8775a929-1172-4305-ae50-bc58d545cf41)) + (pin "10" (uuid 9ab40a74-07d5-4cc3-bbf4-2857e9231e76)) + (pin "11" (uuid fc5dc4b8-e0b0-485e-860a-feda30d309e6)) + (pin "12" (uuid f872c988-705c-4086-a35e-0a2b92e04641)) + (pin "13" (uuid 89529e10-2197-4db3-8dc1-b9c4aac0d14f)) + (pin "14" (uuid 5492d22e-a08b-4131-bda6-1e5b711292c5)) + (pin "15" (uuid c62f96d2-d761-44cc-a62e-96b18e447e44)) + (pin "16" (uuid cb65325d-80af-4a48-b31d-931277a4b708)) + (pin "17" (uuid 32be7ea3-37d3-48a9-9c39-d102c0477be7)) + (pin "18" (uuid db452e16-cfcf-4475-9920-ae273c2756a5)) + (pin "19" (uuid 821922bb-4b63-4b01-b817-555dfb98622e)) + (pin "20" (uuid 827eed9d-20f3-44c8-81c9-f9f14eec5109)) + (pin "21" (uuid bc1d5155-ebc4-47bd-b2ea-43849464364c)) + (pin "22" (uuid 7ac70fe5-df79-46a2-959a-8296a6cab130)) + (pin "23" (uuid f63a594b-ec36-4c81-94ca-b04c907a999c)) + (pin "24" (uuid 2ad55d4b-2f3d-4ba9-9d5b-53ff52fad127)) + (pin "25" (uuid 6433dcd6-966e-4d97-84bf-0d8dc258f80d)) + (pin "26" (uuid 68aceaec-9207-42a3-8d8a-ed08e7c23900)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 62.23 102.87 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 99fb9a5c-0771-4b1c-8e7b-8db426397e4e) + (property "Reference" "U1" (id 0) (at 62.865 97.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 62.865 100.33 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 62.23 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 62.23 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f5c4c84a-d269-4b62-899b-a2c1cb59dffa)) + (pin "2" (uuid dc8b7d54-ea2f-47b9-a35b-869b6cfacc69)) + (pin "3" (uuid 638ff95c-9de2-4a01-9fcf-f2e47c2b0663)) + (pin "4" (uuid 6820003d-56cc-4ceb-8ab8-2adc3179801b)) + (pin "5" (uuid 37153d22-a1b3-41d1-8e9a-068f7793430c)) + (pin "6" (uuid 2e7f1caa-f499-4a98-a817-a3df465030c5)) + (pin "7" (uuid a57e3b1f-8240-4464-a5f5-993e956a1832)) + (pin "8" (uuid 974bec0f-be52-43cd-8011-5b1946449d1d)) + (pin "9" (uuid f9da80bf-4482-4997-a613-99bef7de68c7)) + (pin "10" (uuid 9d60fdc8-e9f3-40de-8e43-fa5c71ceca05)) + (pin "11" (uuid 01f1c5e5-37a7-498b-8d3f-05046882fbab)) + (pin "12" (uuid 9c699802-4af9-4931-a5b8-3c4e1d97a8e0)) + (pin "13" (uuid e15181af-0ca5-4e3f-a5a7-824f26faa9fa)) + (pin "14" (uuid 90511e54-605e-4479-bd06-4dd1cc3dade1)) + (pin "15" (uuid cab8d617-52e4-4483-9033-629acb1bf749)) + (pin "16" (uuid d117b3b1-7223-471f-8bed-8825724aab8f)) + (pin "17" (uuid 74dd38c9-8f74-4c6c-8bd4-66556c424079)) + (pin "18" (uuid 23dd6ef8-90cb-4de9-b8c0-af2441c74562)) + (pin "19" (uuid 834e74aa-e45e-427b-96fd-298231dabbcd)) + (pin "20" (uuid 7c6ce1c8-c73c-4a8d-a047-5d0d3abbc0fa)) + (pin "21" (uuid cce919cd-bca7-4822-a46f-24e051731dca)) + (pin "22" (uuid a1404cb6-11fb-43be-8299-830b0d8c4402)) + (pin "23" (uuid 0cecd8b9-bd93-4121-ab7d-9db3ce1881cb)) + (pin "24" (uuid ee81e4d3-edab-4ba5-9b0c-cfa06e821f95)) + (pin "25" (uuid bc8a033f-a13e-4606-a826-950dbe290c59)) + (pin "26" (uuid 0c932e18-703b-4a32-a862-3bbd4dcc902b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 208.28 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9c6fd889-93d2-46ab-8dc7-339ff9320474) + (property "Reference" "U6" (id 0) (at 208.28 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 208.28 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 209.55 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f7dd04c-eb2b-4b20-97ef-6cfce8d3abd6)) + (pin "2" (uuid 4128d9e2-06dd-42b2-901d-e79e8e96c54c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 62.23 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a256a728-cbf3-47e5-be7e-7ee67baf2706) + (property "Reference" "U1" (id 0) (at 62.865 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 62.865 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 62.23 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 62.23 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 005ab47a-31c4-4832-b9ff-f88c72d5c6ea)) + (pin "2" (uuid 67768837-b233-4092-b8c3-691a50978808)) + (pin "3" (uuid dab2bc48-42cb-4fc1-8ead-2c415dc119f1)) + (pin "4" (uuid 4da77018-638b-432d-9d0e-8c3620a84b8e)) + (pin "5" (uuid 7a8137af-f225-4390-8983-d04cfe4a05e7)) + (pin "6" (uuid e3b616fc-e23b-493f-8f6b-3df529048df2)) + (pin "7" (uuid d8c77caf-0bab-4498-a620-d12576d1112e)) + (pin "8" (uuid 91160c9a-d05e-420c-9e18-b46675a598bc)) + (pin "9" (uuid d288a427-793d-4483-8c8f-a6d69d72c3e5)) + (pin "10" (uuid 6a475ee0-75a8-4599-84d7-1d9d3570b6db)) + (pin "11" (uuid cde9377f-09ab-4a87-8380-48c212b10f0b)) + (pin "12" (uuid 3b5d1900-22cc-4784-ab7e-5c71e7b69240)) + (pin "13" (uuid c2e2dad3-cdd7-4aaa-94cf-16f92d603f93)) + (pin "14" (uuid c6b86601-e7b4-43e2-b8de-093f75bdf3f3)) + (pin "15" (uuid 4f037a3d-a6fd-4a9f-a164-804bc74a86c3)) + (pin "16" (uuid cb962c22-66b9-4387-8232-7c24289002ae)) + (pin "17" (uuid 4d66bcce-89d5-4c03-b64b-55418099ef53)) + (pin "18" (uuid 10756082-81ed-4446-88f8-a28c6511240b)) + (pin "19" (uuid a4e64164-803f-4110-9a1a-6da432b9f193)) + (pin "20" (uuid 3f84ee35-972a-49a4-9520-452c0d9b68cc)) + (pin "21" (uuid 59714420-60f7-490b-8a1b-205924e88d4e)) + (pin "22" (uuid 5d930969-050c-4c59-9380-6ecabff50d16)) + (pin "23" (uuid 6e98e414-791b-4d31-973e-2fd1fa10f7df)) + (pin "24" (uuid 85739fbd-2b6b-40ee-8c4e-57227c73d8e4)) + (pin "25" (uuid b5536255-8d40-4380-ac91-604045429f12)) + (pin "26" (uuid a4465058-1ff1-450a-8a22-0fa789b7d79a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 158.75 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba43d1c3-c0e6-42ab-a3c3-67683fbf795a) + (property "Reference" "U4" (id 0) (at 158.75 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 158.75 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 158.75 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 158.75 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e176277f-987d-461b-bf4e-0a5e1c402cc1)) + (pin "2" (uuid 9ab5d320-c55f-41b6-8d12-b6104ccb2550)) + (pin "3" (uuid 3d4f55f6-dfe6-4d32-9f8d-ba8b9dff703d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d5a74fa1-6a5b-4dc9-b553-57dc82dca851) + (property "Reference" "U2" (id 0) (at 106.68 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a240a0d1-4a0a-4a03-8355-3826777d1366)) + (pin "2" (uuid 4110b885-a319-40c5-954f-fddfb5cf079d)) + (pin "3" (uuid 43ffcccc-2079-47d9-a063-c485ef20e9e9)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/a256a728-cbf3-47e5-be7e-7ee67baf2706" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/26468975-06c5-419d-a9a4-a368127f6eec" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/868a80f9-37c0-401c-be11-7372451faccf" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/8d874a86-6f15-4059-963d-ec744a16fd46" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/99fb9a5c-0771-4b1c-8e7b-8db426397e4e" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/69d3174d-0cbe-4421-af2a-330292d46422" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/d5a74fa1-6a5b-4dc9-b553-57dc82dca851" + (reference "U2") (unit 1) (value "d_and") (footprint "") + ) + (path "/3b30c7a6-4ed7-42f2-a780-878ecf4fc681" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/ba43d1c3-c0e6-42ab-a3c3-67683fbf795a" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/22ccd5cc-9d59-46d8-9e3d-419ce5559df9" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/9c6fd889-93d2-46ab-8dc7-339ff9320474" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IC_NA53/IC_NA53.sub b/library/SubcircuitLibrary/IC_NA53/IC_NA53.sub new file mode 100644 index 000000000..d111a2db3 --- /dev/null +++ b/library/SubcircuitLibrary/IC_NA53/IC_NA53.sub @@ -0,0 +1,26 @@ +* Subcircuit IC_NA53 +.subckt IC_NA53 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ +.title kicad schematic +* u6 net-_u5-pad3_ net-_u1-pad6_ d_inverter +* u5 net-_u4-pad3_ net-_u1-pad5_ net-_u5-pad3_ d_and +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u3-pad3_ d_and +* u4 net-_u3-pad3_ net-_u1-pad4_ net-_u4-pad3_ d_and +a1 net-_u5-pad3_ net-_u1-pad6_ u6 +a2 [net-_u4-pad3_ net-_u1-pad5_ ] net-_u5-pad3_ u5 +a3 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a4 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u3-pad3_ u3 +a5 [net-_u3-pad3_ net-_u1-pad4_ ] net-_u4-pad3_ u4 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends IC_NA53 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_NA53/IC_NA53_Previous_Values.xml b/library/SubcircuitLibrary/IC_NA53/IC_NA53_Previous_Values.xml new file mode 100644 index 000000000..ce07a4293 --- /dev/null +++ b/library/SubcircuitLibrary/IC_NA53/IC_NA53_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_inverterd_andd_andd_andd_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_NA53/README_IC_NA53.md b/library/SubcircuitLibrary/IC_NA53/README_IC_NA53.md new file mode 100644 index 000000000..d3c4d91bb --- /dev/null +++ b/library/SubcircuitLibrary/IC_NA53/README_IC_NA53.md @@ -0,0 +1,26 @@ +# IC_NA53 5-Input NAND Gate + +IC_NA53 is a 5-input NAND gate integrated circuit designed for implementing wide-input digital logic functions. The device performs the NAND operation on five independent input signals and generates a single output. + +## Usage/Examples + +- Combinational logic circuits +- Control logic implementation +- Digital processing systems +- Embedded system applications +- Logic function generation + +## Documentation + +To know the details of IC_NA53 please go through the documentation: [NA53 Datasheet](https://www.alldatasheet.com) + +## Comments/Notes + +Please note this is a digital CMOS IC. The subcircuit models the five-input NAND function using cascaded d_and gates followed by a d_inverter. The output remains LOW only when all five inputs are HIGH. + +## Contributor + +Name: Santhosh C +Email: santhoshc.vlsi2024@citchennai.net +Year: 2026 +Position: FOSSEE eSim Intern 2026 diff --git a/library/SubcircuitLibrary/IC_NA53/analysis b/library/SubcircuitLibrary/IC_NA53/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_NA53/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_OR73/IC_OR73.cir b/library/SubcircuitLibrary/IC_OR73/IC_OR73.cir new file mode 100644 index 000000000..2b96d61d1 --- /dev/null +++ b/library/SubcircuitLibrary/IC_OR73/IC_OR73.cir @@ -0,0 +1,9 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ PORT +U6 Net-_U4-Pad3_ Net-_U1-Pad7_ Net-_U6-Pad3_ d_or +U5 Net-_U2-Pad3_ Net-_U3-Pad3_ Net-_U5-Pad3_ d_or +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_or +U3 Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U3-Pad3_ d_or +U4 Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U4-Pad3_ d_or +U7 Net-_U5-Pad3_ Net-_U6-Pad3_ Net-_U1-Pad8_ d_or +.end diff --git a/library/SubcircuitLibrary/IC_OR73/IC_OR73.cir.out b/library/SubcircuitLibrary/IC_OR73/IC_OR73.cir.out new file mode 100644 index 000000000..b8d8461fd --- /dev/null +++ b/library/SubcircuitLibrary/IC_OR73/IC_OR73.cir.out @@ -0,0 +1,36 @@ +.title kicad schematic + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ port +* u6 net-_u4-pad3_ net-_u1-pad7_ net-_u6-pad3_ d_or +* u5 net-_u2-pad3_ net-_u3-pad3_ net-_u5-pad3_ d_or +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_or +* u3 net-_u1-pad3_ net-_u1-pad4_ net-_u3-pad3_ d_or +* u4 net-_u1-pad5_ net-_u1-pad6_ net-_u4-pad3_ d_or +* u7 net-_u5-pad3_ net-_u6-pad3_ net-_u1-pad8_ d_or +a1 [net-_u4-pad3_ net-_u1-pad7_ ] net-_u6-pad3_ u6 +a2 [net-_u2-pad3_ net-_u3-pad3_ ] net-_u5-pad3_ u5 +a3 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a4 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a5 [net-_u1-pad5_ net-_u1-pad6_ ] net-_u4-pad3_ u4 +a6 [net-_u5-pad3_ net-_u6-pad3_ ] net-_u1-pad8_ u7 +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u2 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u7 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IC_OR73/IC_OR73.kicad_sch b/library/SubcircuitLibrary/IC_OR73/IC_OR73.kicad_sch new file mode 100644 index 000000000..17b990a21 --- /dev/null +++ b/library/SubcircuitLibrary/IC_OR73/IC_OR73.kicad_sch @@ -0,0 +1,842 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 3a46cef2-bb41-4cab-859b-43b25d1035bb) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (wire (pts (xy 129.54 99.06) (xy 129.54 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c9d3f8c-6425-4a56-b6dd-672bd1895e68) + ) + (wire (pts (xy 95.25 64.77) (xy 106.68 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e492ce2-8f16-4a9d-a14e-eb9b8160832a) + ) + (wire (pts (xy 139.7 99.06) (xy 129.54 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2369ded7-a4be-4b57-a47f-4d0d5e3b0479) + ) + (wire (pts (xy 93.98 95.25) (xy 107.95 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 292f1604-a58b-4f90-b579-dd0c47d16438) + ) + (wire (pts (xy 130.81 96.52) (xy 139.7 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29e7f452-2346-41eb-932e-338ed4e0fec7) + ) + (wire (pts (xy 162.56 97.79) (xy 163.83 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4412748e-3069-4b3a-9e0d-bc920ffc5b78) + ) + (wire (pts (xy 106.68 77.47) (xy 93.98 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e953211-e642-4fba-9fc8-62f28d2f2aba) + ) + (wire (pts (xy 158.75 71.12) (xy 163.83 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 560392ae-f20f-411e-9fdf-8e668c593d13) + ) + (wire (pts (xy 129.54 63.5) (xy 135.89 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d8c70ef-2e17-41b9-8080-2aae6bcb04e0) + ) + (wire (pts (xy 163.83 71.12) (xy 163.83 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7346e82d-d7a1-47bc-8ff8-f07481b8ee3f) + ) + (wire (pts (xy 93.98 97.79) (xy 107.95 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7591f468-5ac9-489d-8fe5-99d22dcd37bc) + ) + (wire (pts (xy 186.69 82.55) (xy 196.85 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 868352cc-728f-4a06-99a7-954a5ec81b36) + ) + (wire (pts (xy 93.98 102.87) (xy 129.54 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 937a8ada-0159-4d94-85b3-c09fc6b4d922) + ) + (wire (pts (xy 135.89 78.74) (xy 135.89 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b69f49e-976a-46aa-b7db-b98be3f3fe9e) + ) + (wire (pts (xy 95.25 62.23) (xy 106.68 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa8782af-266c-43b5-aa0d-3994a46c4859) + ) + (wire (pts (xy 163.83 97.79) (xy 163.83 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d084a5f9-1331-447f-b042-d9a2c25056d7) + ) + (wire (pts (xy 135.89 63.5) (xy 135.89 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d52c3dec-644f-4f60-8a1d-60b7bedf43e8) + ) + (wire (pts (xy 129.54 78.74) (xy 135.89 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0b15a3c-1755-4438-a540-4313543edf17) + ) + (wire (pts (xy 93.98 80.01) (xy 106.68 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9d1ea66-9605-4b68-902e-bbe6a6ecd01b) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 118.11 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 008c681d-032f-4b62-938a-c9abf0f7527f) + (property "Reference" "U2" (id 0) (at 118.11 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 118.11 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 118.11 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 118.11 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4c410c18-b533-4cee-9d5d-d901cd0cbf6d)) + (pin "2" (uuid d89d336d-43a3-4cc0-b781-7c1520f558dc)) + (pin "3" (uuid c801af48-b779-4e4c-ab42-85bad46b725e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 87.63 80.01 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 038ac490-534d-41de-afac-55e7f1937725) + (property "Reference" "U1" (id 0) (at 88.265 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 88.265 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 87.63 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7951a9e7-bc55-4dd1-9ec7-b0d9e3d0026e)) + (pin "2" (uuid 061a3018-9008-4e79-864b-edc5f2136dd0)) + (pin "3" (uuid e3688bcf-0352-4151-92ff-8d5a1da84d95)) + (pin "4" (uuid f5ee74d8-77a5-4afe-8ca9-646ca8acb8d4)) + (pin "5" (uuid 994f18c4-51f8-43d7-b3d1-282bf7791f60)) + (pin "6" (uuid 523fc30f-dd20-4243-a111-4df21ae0f413)) + (pin "7" (uuid 40390c12-9507-4e52-96a3-4876feb1c0fd)) + (pin "8" (uuid ac55e273-47f5-4fdd-aa0d-dff02efe4d32)) + (pin "9" (uuid cbd8d4c3-f978-4060-97a8-e74c556e509e)) + (pin "10" (uuid d6885e9a-0d21-47e6-afe6-910786b52e20)) + (pin "11" (uuid 009ebfa6-7708-4237-bbb3-f884f0099644)) + (pin "12" (uuid 8bbbf10a-fe47-420d-8e2a-08adcacd351d)) + (pin "13" (uuid caa5e8e5-14ac-4809-bfda-9b8d4cab1779)) + (pin "14" (uuid 46c2c32c-0f1b-4125-ad05-30c4450f228e)) + (pin "15" (uuid 220e7a14-5780-4136-9049-d174be208a8c)) + (pin "16" (uuid dd7ccdbb-2fdb-42fc-bc91-9824c9acd2c3)) + (pin "17" (uuid 4d3d44cc-a370-4bd4-9786-7ec469ba094c)) + (pin "18" (uuid ae9b657a-a751-4e29-a904-60ae4efdc17f)) + (pin "19" (uuid 5699b27e-65f0-4cbc-a551-f03cea352c97)) + (pin "20" (uuid 6e830a16-0ebb-4b91-9ad9-cc05588677ff)) + (pin "21" (uuid 7c3e850b-06da-4ea4-903a-abada3f3778f)) + (pin "22" (uuid 071f8127-a4f6-432b-83e5-ab02453c2392)) + (pin "23" (uuid 1663d347-557f-4ebc-96d9-35411cdafebe)) + (pin "24" (uuid 17813ace-0363-4c43-ad26-3794869b932d)) + (pin "25" (uuid 9cd2a1c8-cc12-4d05-8ec9-f9ba3cf3e23f)) + (pin "26" (uuid 38262ccb-9bcb-4663-90d5-2b0fb47dda06)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 118.11 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 073b13dd-d43d-4147-9d65-d35298d8c605) + (property "Reference" "U3" (id 0) (at 118.11 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 118.11 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 118.11 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 118.11 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid de4a2222-bf2a-4562-baab-38dedc82fea8)) + (pin "2" (uuid 8675a0cc-8315-44e8-b967-6cfd2c6c8ebb)) + (pin "3" (uuid a6207ea0-521d-4572-8b0e-889718af4940)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 151.13 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13f253c8-88f6-4342-8c7d-9058e658fbad) + (property "Reference" "U6" (id 0) (at 151.13 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 151.13 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 151.13 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 151.13 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 37dd231c-7f98-468d-a3c5-25bb348cdee1)) + (pin "2" (uuid 75a9dffd-c596-4cdf-b9dd-a0b633f3438a)) + (pin "3" (uuid 61ba9c63-090b-4904-8ea4-0b926bb9a632)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 175.26 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 14773780-85e8-4dca-9bed-3bbe3006b338) + (property "Reference" "U7" (id 0) (at 175.26 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 175.26 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 552da83e-6f9f-419d-bdbf-768d9abc09a3)) + (pin "2" (uuid 163e95ef-63a1-4ce9-8bba-dd5581a2d39d)) + (pin "3" (uuid 62bfb993-138c-4c44-a87c-1ef6e12096b9)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 119.38 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1edc186b-80e9-4b8d-bfcc-71527eda4867) + (property "Reference" "U4" (id 0) (at 119.38 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 119.38 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 119.38 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 119.38 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 47da3d5c-5d20-4732-a3e2-5daa7c0b8a90)) + (pin "2" (uuid 8c12b0d2-f9f2-4e6c-b662-f484dd0f65fd)) + (pin "3" (uuid ef3ce57b-df04-48cc-b980-2496cc8b84fc)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 87.63 97.79 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4dc430fc-262b-48f0-bfa6-d7c4629907a6) + (property "Reference" "U1" (id 0) (at 88.265 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 88.265 95.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 87.63 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1c8f6ada-20d2-49ac-a2b2-c38b941e7ae0)) + (pin "2" (uuid 40f2c6b0-45dd-4534-833f-09cb28228cc8)) + (pin "3" (uuid ed989923-a66f-4654-a690-93f918a087e3)) + (pin "4" (uuid 45af4f2e-8589-4d17-afc7-b188e6c024a7)) + (pin "5" (uuid 6553dbab-8ff2-41f0-bfc2-fffc0f6e981c)) + (pin "6" (uuid eb06b984-27f8-4ce3-932e-236b45ecf084)) + (pin "7" (uuid 53b77885-1b3a-4009-8684-4d1edf2b1e34)) + (pin "8" (uuid 71ec96f8-a5a9-47b7-91d9-a37a323d8055)) + (pin "9" (uuid 61ece89c-6175-4d02-b823-2ab735e780ad)) + (pin "10" (uuid 36ffda5a-dc92-41fd-8471-d34cf2fef85c)) + (pin "11" (uuid 61085c9b-ed90-40d2-adbc-93952eb64666)) + (pin "12" (uuid c418b3d0-45c0-4844-bc86-85f7a41aef38)) + (pin "13" (uuid a67632dc-0ded-4d0c-808c-631a50aa6cc8)) + (pin "14" (uuid f3c5978f-2b41-477a-bc67-df3c4549bf79)) + (pin "15" (uuid 305536d4-c446-4cf9-a810-c7ee1ad4f9d0)) + (pin "16" (uuid 19ee7e42-36cd-4d9e-be7f-b521183309a9)) + (pin "17" (uuid f633ae57-af77-4649-a7d5-6e75bfffb41a)) + (pin "18" (uuid 09185170-3aab-43c1-9a8e-914504ee2dbb)) + (pin "19" (uuid 00d5588c-47eb-4e73-82ee-98dca37db57d)) + (pin "20" (uuid dc128193-256f-4b52-991c-d64ae7aebe6f)) + (pin "21" (uuid 0fcf352a-2e57-47ff-95d3-ffb54631c7cb)) + (pin "22" (uuid 5fa3c1c9-c484-4fa3-978d-56656a3f2577)) + (pin "23" (uuid 6cf05c44-f82b-47f0-977b-cda8ef75d81a)) + (pin "24" (uuid 91fbd760-276b-4081-a3d8-b897440d9f6c)) + (pin "25" (uuid 7eb573f5-fca3-43f2-81e6-ee9fce5c51f9)) + (pin "26" (uuid 4a8689c1-d5a1-4a0d-ae7c-da9266a159c0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 87.63 102.87 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a43843b-ec91-4c28-96ba-66aecfc47e0a) + (property "Reference" "U1" (id 0) (at 88.265 97.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 88.265 100.33 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 87.63 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f273e30-8fac-4833-a8fa-c634b9e4ff27)) + (pin "2" (uuid 868a8eb8-a111-4d98-9e50-914e3b70cf01)) + (pin "3" (uuid 113af744-556f-4285-b636-b73328fef818)) + (pin "4" (uuid 6a8e5b2b-dc21-44d3-a7a3-523a1b2f1c2c)) + (pin "5" (uuid e1c441f0-56b2-4648-81d0-f360cf0f2fe4)) + (pin "6" (uuid 1e0a008e-c7cf-4471-bdc3-cae08f63d944)) + (pin "7" (uuid 8b9691ff-2796-44cb-963f-583bd3fd65d3)) + (pin "8" (uuid a7898e1d-014e-4af8-af6d-ba15d45ead4e)) + (pin "9" (uuid 6d4041db-096f-4a4e-bf64-08c54d15421d)) + (pin "10" (uuid 7e16a11c-0b80-41e9-b09e-2f9ae57134d1)) + (pin "11" (uuid f0ef0dca-13fa-4207-9057-dd57670a10cd)) + (pin "12" (uuid 0c0d2a80-d0a1-4b6b-be72-d893652669ed)) + (pin "13" (uuid b0779cb5-d61c-45d6-84ff-5d45f57ee491)) + (pin "14" (uuid e5cd347a-976b-415a-8abe-9c015a5040f5)) + (pin "15" (uuid 9cc3c92b-a521-42a4-8289-948925dd45c0)) + (pin "16" (uuid efc5e2ab-4083-4e70-a65b-2db3929f4555)) + (pin "17" (uuid dda9f46a-ee79-40e3-a8dd-ffe8fcac9fd9)) + (pin "18" (uuid 6b677c61-f5ec-40e7-9286-e1fe92ad271d)) + (pin "19" (uuid 4e879827-2c6b-4ec9-ad2a-931bab778fd4)) + (pin "20" (uuid 8eecef0c-d091-4ab4-8738-1e9bad03438c)) + (pin "21" (uuid 62c1a88a-9747-44f5-963c-9d6e80f214f5)) + (pin "22" (uuid d1626f64-b06e-499d-b58e-84a062b04fc0)) + (pin "23" (uuid 73026faf-4c6b-4cac-8ee9-8a9d5dabd08b)) + (pin "24" (uuid 5f5945ea-ef09-443e-a005-4d22c307a4ba)) + (pin "25" (uuid 2cdd6992-d825-498f-ae46-64cb00614708)) + (pin "26" (uuid 452acd7d-d4bd-41ec-ae25-395d59a8d30b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 87.63 95.25 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 85676890-b110-445d-a3e6-4c501968b65f) + (property "Reference" "U1" (id 0) (at 88.265 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 88.265 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 87.63 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ea87a199-99a7-4d8a-8c06-0503eb25cc20)) + (pin "2" (uuid 60221bc9-d4df-4abc-b45a-b603ccd1a397)) + (pin "3" (uuid 918de39c-9425-4470-b336-426122d03135)) + (pin "4" (uuid 3b33c49d-f52e-4bf3-ac83-d44d3eb7ea5f)) + (pin "5" (uuid 5b60fe8f-be1b-4bfd-ae45-f19fc64c269c)) + (pin "6" (uuid 675be3fb-ecbb-465c-9cbe-d26a823c3689)) + (pin "7" (uuid 856e2f91-0f3d-4ec5-9766-069e7d785bf5)) + (pin "8" (uuid 5868f28d-45f7-4552-8026-e6632199ee65)) + (pin "9" (uuid a4af7d24-b8a5-4bc7-a9a1-213d7a13d9a2)) + (pin "10" (uuid 1e581e4a-7525-46b9-a175-72ecef16e1d7)) + (pin "11" (uuid 7c08cb7b-f08a-4350-8bd2-712075dba8b6)) + (pin "12" (uuid 37f81bc0-9c80-4805-9622-b3322fa847fa)) + (pin "13" (uuid f2dc8ef4-c73b-4506-b385-bce8d3ce07f1)) + (pin "14" (uuid 85477922-d8d9-4b6f-9d59-da4cfdbdb7a9)) + (pin "15" (uuid be684299-be9e-4ace-a4e7-49e05c2ea61d)) + (pin "16" (uuid 0e925376-368d-43ac-97dc-f61dfa14d25e)) + (pin "17" (uuid eb6c364b-3474-4d00-bdd5-ada3e75da67b)) + (pin "18" (uuid 0f3043ae-97ea-4b96-ac81-37346eee8532)) + (pin "19" (uuid 7f0da69d-2dab-422b-aace-bdb0b5dac711)) + (pin "20" (uuid cce6ce3d-6d66-415b-b301-6da7a1befe3f)) + (pin "21" (uuid 5e971b57-8979-44ea-98e0-0e3f4ef66a01)) + (pin "22" (uuid bc4a8814-464c-4d59-aebd-0087f4b350b9)) + (pin "23" (uuid b386a73d-48e8-46f2-a6fe-5d7213e34326)) + (pin "24" (uuid 9c85fb4e-a40f-4385-b6fa-4d4195ca2dbd)) + (pin "25" (uuid 6b525370-6af1-4823-a9e1-bc0853be601d)) + (pin "26" (uuid 2957572f-a09b-4df9-b567-85f88f3a3b22)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 88.9 64.77 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9d9a9f9c-747a-45ba-ab55-d05eb73ccc54) + (property "Reference" "U1" (id 0) (at 89.535 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 89.535 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 88.9 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 88.9 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 134e4540-8603-4a0c-a1ae-44fd886422c7)) + (pin "2" (uuid e9f80b7f-eb6d-41a7-8587-b315407315fa)) + (pin "3" (uuid a14acf63-ca13-4c6a-8d2a-d930bce18234)) + (pin "4" (uuid b083f9e1-2c62-422b-bc42-b5cf6537327c)) + (pin "5" (uuid f5c00b83-e936-4597-91c6-b2827fe86f9d)) + (pin "6" (uuid e0b06282-c938-474f-9708-acabf8834305)) + (pin "7" (uuid 6ef777ec-2a17-4bc1-a3ff-617ab4972ee2)) + (pin "8" (uuid 3495c257-53b4-4b45-a30f-3c2a88fe0841)) + (pin "9" (uuid e5458d6d-b2f2-4c68-a2e8-5e0861dbdd5f)) + (pin "10" (uuid 3879ab25-62eb-40c5-95c1-2c9e408ac9d6)) + (pin "11" (uuid 21650088-9bc4-4152-ac30-3104f17b9239)) + (pin "12" (uuid c945ef7b-8185-421b-a15b-420b2192dfc6)) + (pin "13" (uuid 4b33cc8c-3c8e-4b48-84cf-5c3a715b4c92)) + (pin "14" (uuid e1882912-16d9-4d88-98bf-cdefba13a655)) + (pin "15" (uuid 8879a7bf-d47d-41ad-81d6-52ae496fa5c2)) + (pin "16" (uuid 907d1e5b-5de6-44e8-b07c-a6d1abf618d1)) + (pin "17" (uuid 18d1b7e7-762c-4710-964a-d736bd8bc68a)) + (pin "18" (uuid bb9275ad-972b-417e-9dd0-e26441b651be)) + (pin "19" (uuid 96995266-e22b-42b3-949f-28859330411d)) + (pin "20" (uuid 03e8a66e-02f7-498e-b0fb-3f7fa517deca)) + (pin "21" (uuid fe081c63-aea1-4e73-8a4e-9169dd51d36c)) + (pin "22" (uuid 476f9148-5194-412b-afd8-ee94c70a922d)) + (pin "23" (uuid 4cacc032-0a61-465f-add4-65eecc17741b)) + (pin "24" (uuid df8f5234-9572-4342-b35c-44908bf22de6)) + (pin "25" (uuid 77ada694-5b4b-4bbb-96b7-923434ed8d72)) + (pin "26" (uuid 7b72c9d0-8fff-4075-a9e5-454d40fad6f6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 88.9 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c0ecc199-aa84-4f2f-88b1-e5abcb9bda8a) + (property "Reference" "U1" (id 0) (at 89.535 57.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 89.535 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 88.9 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 88.9 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 32f11853-3c97-472c-8d40-83c85602b9b0)) + (pin "2" (uuid bce77a95-32a3-43b0-90c1-d9c8da3fdee6)) + (pin "3" (uuid 3bf350b0-3441-43d9-836e-1efbb06ba19d)) + (pin "4" (uuid 62a603dc-43a8-4185-9ae6-8fa4cee4e53d)) + (pin "5" (uuid cda9eea4-6d7a-43ad-a71e-679f1206d2a6)) + (pin "6" (uuid 3c80f134-984e-494a-93b9-0d8c2163bf30)) + (pin "7" (uuid 1261220d-f6c5-4829-8fc6-2789b3e56917)) + (pin "8" (uuid 5674f1c2-bc3d-41bc-b541-f6a1694b5748)) + (pin "9" (uuid ed0cf36a-5148-46cc-884e-fe61a5a2c6ef)) + (pin "10" (uuid e6395668-856d-4a7c-8873-cc03df5a61d6)) + (pin "11" (uuid 780dd947-6ae8-4758-af49-e392ae2e0d9f)) + (pin "12" (uuid 2e4b6d68-85b1-4eb6-b9bf-26681f4d3439)) + (pin "13" (uuid ef83f841-3ba4-4ec5-b6d5-8ff9ac9c0e91)) + (pin "14" (uuid 3502d99b-4a8a-4cdb-9381-e72097a0311d)) + (pin "15" (uuid f82796e2-bed8-42d6-bede-7c689364f98a)) + (pin "16" (uuid 0670676c-bc46-445d-92f2-a83f86c1e78a)) + (pin "17" (uuid 48b14c8a-f41e-4bc0-9b00-003f6b49ccb3)) + (pin "18" (uuid 4044e6ce-621d-43b7-bd70-687801d29775)) + (pin "19" (uuid 573cec53-1619-47e1-8b2c-d8072383f379)) + (pin "20" (uuid 1edb1764-7470-45a5-96c2-2755cacc6552)) + (pin "21" (uuid 7e46f528-fac8-4cca-943d-f4b1078d3576)) + (pin "22" (uuid 4753cf55-36bd-4be8-aa83-1360ef6629b1)) + (pin "23" (uuid 1b3ead42-6487-4a3d-9009-d8653c038f64)) + (pin "24" (uuid bc80b1d8-9be6-470f-a2ef-fad5fba181e1)) + (pin "25" (uuid b87c61a3-ba84-4ef1-a204-00b30c2949b0)) + (pin "26" (uuid e42b4337-9f55-43bb-b5d8-0242e8f94218)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 203.2 82.55 180) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d50e9aa4-a2e2-4417-90d6-54ab5e2a1332) + (property "Reference" "U1" (id 0) (at 207.01 81.915 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 207.01 84.455 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 203.2 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 203.2 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1d7ee192-337a-4500-89fb-9d8c080278db)) + (pin "2" (uuid 6f354e74-8955-4c3d-85c2-e85bf45154cc)) + (pin "3" (uuid 60780c30-e667-4944-b04b-e1fc1452897d)) + (pin "4" (uuid 6876473f-eed6-4093-92c6-7d873e73d5b0)) + (pin "5" (uuid 0522b8fd-d667-4a15-ad42-83456ff966f3)) + (pin "6" (uuid faa83f53-19a5-4c13-80f1-929bd7cb73a5)) + (pin "7" (uuid 83533eb7-30aa-484d-9411-627b179fb529)) + (pin "8" (uuid eedce161-351e-4ca6-9cde-f68bf039c6c2)) + (pin "9" (uuid fecdc0fc-94cb-4834-b58c-d75f4b84298a)) + (pin "10" (uuid a63905cf-bd9b-4cc7-915d-6b832ac0d712)) + (pin "11" (uuid 7dc98960-7b9c-4024-b7f1-5e63c107d8a2)) + (pin "12" (uuid 0c28f8bb-1bf7-453c-a12d-6401752fd9d7)) + (pin "13" (uuid b40fd225-683f-40db-b483-5399e834e2ad)) + (pin "14" (uuid b300b199-1c8e-474f-9a24-d1a22fc7136c)) + (pin "15" (uuid 563c15ac-1974-47bd-8bbc-6512b9531e4c)) + (pin "16" (uuid 7da766f3-83bb-4dcc-aa15-5312c3fa671a)) + (pin "17" (uuid 625cb312-5373-4899-8e3e-1a07187165b7)) + (pin "18" (uuid 44fd9f97-2dfc-41fd-81e0-df106ba15a84)) + (pin "19" (uuid d98df233-7443-4ba1-8919-7bcb6158aa4b)) + (pin "20" (uuid 8aadde9d-6106-4753-bd76-7606b4b26481)) + (pin "21" (uuid 713400e2-0aeb-4b21-9f61-91d928018bbb)) + (pin "22" (uuid 2b573e9d-5845-44d8-9187-f3cb5491d154)) + (pin "23" (uuid a441ddd4-3eed-4321-b439-23020886765e)) + (pin "24" (uuid 1245e5b5-4807-4033-9e15-5b0e5ca4d90e)) + (pin "25" (uuid 25c2c2b7-46e9-4fdd-9f8b-09bbe25c2edf)) + (pin "26" (uuid 3053416b-5d7a-4f06-9196-c554c531efa9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 87.63 77.47 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f1344ca9-29b3-42b6-9258-bf92bf57a027) + (property "Reference" "U1" (id 0) (at 88.265 72.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 88.265 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 87.63 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid baee9ffd-5780-44ce-affe-df70851ed8ee)) + (pin "2" (uuid ccddca74-3cc0-4744-98da-fea31693e1e2)) + (pin "3" (uuid f7d30373-a365-490d-8350-9e1a841af62f)) + (pin "4" (uuid 1392aa47-b8cd-4905-8fdc-b533bd0a5df6)) + (pin "5" (uuid bcc22664-58ae-4471-bcf3-8c0705012009)) + (pin "6" (uuid b416aec5-cfee-433d-9a70-a80acea55e3d)) + (pin "7" (uuid 48af7c7c-84e0-4082-a1d5-2c6273eb438b)) + (pin "8" (uuid 9ef02b43-5972-4fa3-ab12-cd7f937f6e25)) + (pin "9" (uuid 2f1e3b3c-c760-401c-baa8-d7be26e80b14)) + (pin "10" (uuid 523100cd-93db-4d99-8987-1ca61c929ba6)) + (pin "11" (uuid 1e66e8ba-0010-46f7-bda2-45490e48243f)) + (pin "12" (uuid 0a1179fb-0877-4d23-8dd4-2f5a9b6b708f)) + (pin "13" (uuid 3ec89e8c-a710-4db2-b839-d6cd186545e6)) + (pin "14" (uuid 5cc1d7e1-59b7-403f-ae04-56bc2061e5c3)) + (pin "15" (uuid 391518b9-3199-4942-b47a-dd58c8ea69ad)) + (pin "16" (uuid 6150dde2-5d57-4c71-a866-a08fb1126e64)) + (pin "17" (uuid f8604a0d-6e22-4c4a-a5e9-d72fe650faa5)) + (pin "18" (uuid adcb515a-2c08-4706-a64c-b8009051cc8f)) + (pin "19" (uuid 38661541-53ac-4986-a0a1-b60d4ec58a4a)) + (pin "20" (uuid e0b2af13-e9a0-43a7-90dc-4f218489304d)) + (pin "21" (uuid 4fe81ce6-293f-4a42-a6f5-2b0292ccb584)) + (pin "22" (uuid 08e7a3c1-43a0-414f-a885-218d792d070f)) + (pin "23" (uuid bab3cb32-a1c3-431d-929c-b1377fcf773a)) + (pin "24" (uuid 9c214162-2360-4d19-aa85-eb4daaf29b82)) + (pin "25" (uuid d5979970-ab38-4c3b-bc8b-9951595d10d8)) + (pin "26" (uuid a4d0f0ed-c9ad-4ec9-bfe0-15d133bd739a)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 147.32 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f2108f83-e8ef-49a0-9fba-0a4e8a2d9ca5) + (property "Reference" "U5" (id 0) (at 147.32 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 147.32 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 147.32 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 147.32 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6746a6eb-79b3-4bc5-8e3d-2028544afb4c)) + (pin "2" (uuid ba6c567e-fdbf-409f-a178-7849d8e8ac38)) + (pin "3" (uuid 47d7c907-4819-49d9-a275-a9dc8dddaadb)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/c0ecc199-aa84-4f2f-88b1-e5abcb9bda8a" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/9d9a9f9c-747a-45ba-ab55-d05eb73ccc54" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/f1344ca9-29b3-42b6-9258-bf92bf57a027" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/038ac490-534d-41de-afac-55e7f1937725" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/85676890-b110-445d-a3e6-4c501968b65f" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/4dc430fc-262b-48f0-bfa6-d7c4629907a6" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/6a43843b-ec91-4c28-96ba-66aecfc47e0a" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/d50e9aa4-a2e2-4417-90d6-54ab5e2a1332" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/008c681d-032f-4b62-938a-c9abf0f7527f" + (reference "U2") (unit 1) (value "d_or") (footprint "") + ) + (path "/073b13dd-d43d-4147-9d65-d35298d8c605" + (reference "U3") (unit 1) (value "d_or") (footprint "") + ) + (path "/1edc186b-80e9-4b8d-bfcc-71527eda4867" + (reference "U4") (unit 1) (value "d_or") (footprint "") + ) + (path "/f2108f83-e8ef-49a0-9fba-0a4e8a2d9ca5" + (reference "U5") (unit 1) (value "d_or") (footprint "") + ) + (path "/13f253c8-88f6-4342-8c7d-9058e658fbad" + (reference "U6") (unit 1) (value "d_or") (footprint "") + ) + (path "/14773780-85e8-4dca-9bed-3bbe3006b338" + (reference "U7") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IC_OR73/IC_OR73.sub b/library/SubcircuitLibrary/IC_OR73/IC_OR73.sub new file mode 100644 index 000000000..34bfad633 --- /dev/null +++ b/library/SubcircuitLibrary/IC_OR73/IC_OR73.sub @@ -0,0 +1,30 @@ +* Subcircuit IC_OR73 +.subckt IC_OR73 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ +.title kicad schematic +* u6 net-_u4-pad3_ net-_u1-pad7_ net-_u6-pad3_ d_or +* u5 net-_u2-pad3_ net-_u3-pad3_ net-_u5-pad3_ d_or +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_or +* u3 net-_u1-pad3_ net-_u1-pad4_ net-_u3-pad3_ d_or +* u4 net-_u1-pad5_ net-_u1-pad6_ net-_u4-pad3_ d_or +* u7 net-_u5-pad3_ net-_u6-pad3_ net-_u1-pad8_ d_or +a1 [net-_u4-pad3_ net-_u1-pad7_ ] net-_u6-pad3_ u6 +a2 [net-_u2-pad3_ net-_u3-pad3_ ] net-_u5-pad3_ u5 +a3 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a4 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a5 [net-_u1-pad5_ net-_u1-pad6_ ] net-_u4-pad3_ u4 +a6 [net-_u5-pad3_ net-_u6-pad3_ ] net-_u1-pad8_ u7 +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u2 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u7 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends IC_OR73 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_OR73/IC_OR73_Previous_Values.xml b/library/SubcircuitLibrary/IC_OR73/IC_OR73_Previous_Values.xml new file mode 100644 index 000000000..01ee83234 --- /dev/null +++ b/library/SubcircuitLibrary/IC_OR73/IC_OR73_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_ord_ord_ord_ord_ord_or \ No newline at end of file diff --git a/library/SubcircuitLibrary/IC_OR73/README_IC_OR73.md b/library/SubcircuitLibrary/IC_OR73/README_IC_OR73.md new file mode 100644 index 000000000..cd151ea94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_OR73/README_IC_OR73.md @@ -0,0 +1,27 @@ +# IC_OR73 7-Input OR Gate with 3x Drive Strength + +IC_OR73 is a 7-input OR gate featuring enhanced 3x output drive capability. The device performs the logical OR operation on seven independent input signals and provides a single output with high fan-out support. + +## Usage/Examples + +- Logic combination circuits +- Digital control systems +- Signal aggregation networks +- High fan-out applications +- Embedded systems +- Industrial digital controllers + +## Documentation + +To know the details of IC_OR73 please go through the documentation: [OR73 Datasheet](https://www.alldatasheet.com) + +## Comments/Notes + +Please note this is a digital logic IC with enhanced drive capability. The subcircuit implements the seven-input OR function using a tree of d_or gates. The output becomes HIGH whenever any one of the seven inputs is HIGH. + +## Contributor + +Name: Santhosh C +Email: santhoshc.vlsi2024@citchennai.net +Year: 2026 +Position: FOSSEE eSim Intern 2026 diff --git a/library/SubcircuitLibrary/IC_OR73/analysis b/library/SubcircuitLibrary/IC_OR73/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IC_OR73/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IN74LV574/IN74LV574.cir b/library/SubcircuitLibrary/IN74LV574/IN74LV574.cir new file mode 100644 index 000000000..ac4647c6a --- /dev/null +++ b/library/SubcircuitLibrary/IN74LV574/IN74LV574.cir @@ -0,0 +1,37 @@ +.title KiCad schematic +U5 Net-_U4-Pad2_ Net-_U13-Pad2_ Net-_U1-Pad20_ unconnected-_U5-Pad4_ Net-_U5-Pad5_ unconnected-_U5-Pad6_ d_dff +U2 Net-_U1-Pad11_ Net-_U10-Pad2_ d_inverter +U3 Net-_U1-Pad1_ Net-_U13-Pad2_ d_buffer +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ unconnected-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ Net-_U1-Pad19_ Net-_U1-Pad20_ PORT +U21 Net-_U20-Pad2_ Net-_U13-Pad2_ Net-_U1-Pad20_ unconnected-_U21-Pad4_ Net-_U21-Pad5_ unconnected-_U21-Pad6_ d_dff +U14 Net-_U13-Pad5_ Net-_U10-Pad2_ Net-_U14-Pad3_ d_tristate +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_tristate +U6 Net-_U5-Pad5_ Net-_U10-Pad2_ Net-_U6-Pad3_ d_tristate +U9 Net-_U8-Pad2_ Net-_U13-Pad2_ Net-_U1-Pad20_ unconnected-_U9-Pad4_ Net-_U10-Pad1_ unconnected-_U9-Pad6_ d_dff +U13 Net-_U12-Pad2_ Net-_U13-Pad2_ Net-_U1-Pad20_ unconnected-_U13-Pad4_ Net-_U13-Pad5_ unconnected-_U13-Pad6_ d_dff +U8 Net-_U1-Pad3_ Net-_U8-Pad2_ d_buffer +U4 Net-_U1-Pad2_ Net-_U4-Pad2_ d_buffer +U29 Net-_U28-Pad2_ Net-_U13-Pad2_ Net-_U1-Pad20_ unconnected-_U29-Pad4_ Net-_U29-Pad5_ unconnected-_U29-Pad6_ d_dff +U25 Net-_U24-Pad2_ Net-_U13-Pad2_ Net-_U1-Pad20_ unconnected-_U25-Pad4_ Net-_U25-Pad5_ unconnected-_U25-Pad6_ d_dff +U26 Net-_U25-Pad5_ Net-_U10-Pad2_ Net-_U26-Pad3_ d_tristate +U22 Net-_U21-Pad5_ Net-_U10-Pad2_ Net-_U22-Pad3_ d_tristate +U23 Net-_U22-Pad3_ Net-_U1-Pad15_ d_inverter +U30 Net-_U29-Pad5_ Net-_U10-Pad2_ Net-_U30-Pad3_ d_tristate +U34 Net-_U33-Pad5_ Net-_U10-Pad2_ Net-_U34-Pad3_ d_tristate +U27 Net-_U26-Pad3_ Net-_U1-Pad14_ d_inverter +U31 Net-_U30-Pad3_ Net-_U1-Pad13_ d_inverter +U35 Net-_U34-Pad3_ Net-_U1-Pad12_ d_inverter +U17 Net-_U16-Pad2_ Net-_U13-Pad2_ Net-_U1-Pad20_ unconnected-_U17-Pad4_ Net-_U17-Pad5_ unconnected-_U17-Pad6_ d_dff +U16 Net-_U1-Pad5_ Net-_U16-Pad2_ d_buffer +U12 Net-_U1-Pad4_ Net-_U12-Pad2_ d_buffer +U20 Net-_U1-Pad6_ Net-_U20-Pad2_ d_buffer +U24 Net-_U1-Pad7_ Net-_U24-Pad2_ d_buffer +U32 Net-_U1-Pad9_ Net-_U32-Pad2_ d_buffer +U33 Net-_U32-Pad2_ Net-_U13-Pad2_ Net-_U1-Pad20_ unconnected-_U33-Pad4_ Net-_U33-Pad5_ unconnected-_U33-Pad6_ d_dff +U28 Net-_U1-Pad8_ Net-_U28-Pad2_ d_buffer +U18 Net-_U17-Pad5_ Net-_U10-Pad2_ Net-_U18-Pad3_ d_tristate +U19 Net-_U18-Pad3_ Net-_U1-Pad16_ d_inverter +U15 Net-_U14-Pad3_ Net-_U1-Pad17_ d_inverter +U11 Net-_U10-Pad3_ Net-_U1-Pad18_ d_inverter +U7 Net-_U6-Pad3_ Net-_U1-Pad19_ d_inverter +.end diff --git a/library/SubcircuitLibrary/IN74LV574/IN74LV574.cir.out b/library/SubcircuitLibrary/IN74LV574/IN74LV574.cir.out new file mode 100644 index 000000000..44e8cdd80 --- /dev/null +++ b/library/SubcircuitLibrary/IN74LV574/IN74LV574.cir.out @@ -0,0 +1,148 @@ +.title kicad schematic + +* u5 net-_u4-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ d_dff +* u2 net-_u1-pad11_ net-_u10-pad2_ d_inverter +* u3 net-_u1-pad1_ net-_u13-pad2_ d_buffer +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ unconnected-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ net-_u1-pad20_ port +* u21 net-_u20-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u21-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ d_dff +* u14 net-_u13-pad5_ net-_u10-pad2_ net-_u14-pad3_ d_tristate +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_tristate +* u6 net-_u5-pad5_ net-_u10-pad2_ net-_u6-pad3_ d_tristate +* u9 net-_u8-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u9-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ d_dff +* u13 net-_u12-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u13-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ d_dff +* u8 net-_u1-pad3_ net-_u8-pad2_ d_buffer +* u4 net-_u1-pad2_ net-_u4-pad2_ d_buffer +* u29 net-_u28-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u29-pad4_ net-_u29-pad5_ unconnected-_u29-pad6_ d_dff +* u25 net-_u24-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u25-pad4_ net-_u25-pad5_ unconnected-_u25-pad6_ d_dff +* u26 net-_u25-pad5_ net-_u10-pad2_ net-_u26-pad3_ d_tristate +* u22 net-_u21-pad5_ net-_u10-pad2_ net-_u22-pad3_ d_tristate +* u23 net-_u22-pad3_ net-_u1-pad15_ d_inverter +* u30 net-_u29-pad5_ net-_u10-pad2_ net-_u30-pad3_ d_tristate +* u34 net-_u33-pad5_ net-_u10-pad2_ net-_u34-pad3_ d_tristate +* u27 net-_u26-pad3_ net-_u1-pad14_ d_inverter +* u31 net-_u30-pad3_ net-_u1-pad13_ d_inverter +* u35 net-_u34-pad3_ net-_u1-pad12_ d_inverter +* u17 net-_u16-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_dff +* u16 net-_u1-pad5_ net-_u16-pad2_ d_buffer +* u12 net-_u1-pad4_ net-_u12-pad2_ d_buffer +* u20 net-_u1-pad6_ net-_u20-pad2_ d_buffer +* u24 net-_u1-pad7_ net-_u24-pad2_ d_buffer +* u32 net-_u1-pad9_ net-_u32-pad2_ d_buffer +* u33 net-_u32-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u33-pad4_ net-_u33-pad5_ unconnected-_u33-pad6_ d_dff +* u28 net-_u1-pad8_ net-_u28-pad2_ d_buffer +* u18 net-_u17-pad5_ net-_u10-pad2_ net-_u18-pad3_ d_tristate +* u19 net-_u18-pad3_ net-_u1-pad16_ d_inverter +* u15 net-_u14-pad3_ net-_u1-pad17_ d_inverter +* u11 net-_u10-pad3_ net-_u1-pad18_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad19_ d_inverter +a1 net-_u4-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ u5 +a2 net-_u1-pad11_ net-_u10-pad2_ u2 +a3 net-_u1-pad1_ net-_u13-pad2_ u3 +a4 net-_u20-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u21-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ u21 +a5 net-_u13-pad5_ net-_u10-pad2_ net-_u14-pad3_ u14 +a6 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ u10 +a7 net-_u5-pad5_ net-_u10-pad2_ net-_u6-pad3_ u6 +a8 net-_u8-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u9-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ u9 +a9 net-_u12-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u13-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ u13 +a10 net-_u1-pad3_ net-_u8-pad2_ u8 +a11 net-_u1-pad2_ net-_u4-pad2_ u4 +a12 net-_u28-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u29-pad4_ net-_u29-pad5_ unconnected-_u29-pad6_ u29 +a13 net-_u24-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u25-pad4_ net-_u25-pad5_ unconnected-_u25-pad6_ u25 +a14 net-_u25-pad5_ net-_u10-pad2_ net-_u26-pad3_ u26 +a15 net-_u21-pad5_ net-_u10-pad2_ net-_u22-pad3_ u22 +a16 net-_u22-pad3_ net-_u1-pad15_ u23 +a17 net-_u29-pad5_ net-_u10-pad2_ net-_u30-pad3_ u30 +a18 net-_u33-pad5_ net-_u10-pad2_ net-_u34-pad3_ u34 +a19 net-_u26-pad3_ net-_u1-pad14_ u27 +a20 net-_u30-pad3_ net-_u1-pad13_ u31 +a21 net-_u34-pad3_ net-_u1-pad12_ u35 +a22 net-_u16-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a23 net-_u1-pad5_ net-_u16-pad2_ u16 +a24 net-_u1-pad4_ net-_u12-pad2_ u12 +a25 net-_u1-pad6_ net-_u20-pad2_ u20 +a26 net-_u1-pad7_ net-_u24-pad2_ u24 +a27 net-_u1-pad9_ net-_u32-pad2_ u32 +a28 net-_u32-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u33-pad4_ net-_u33-pad5_ unconnected-_u33-pad6_ u33 +a29 net-_u1-pad8_ net-_u28-pad2_ u28 +a30 net-_u17-pad5_ net-_u10-pad2_ net-_u18-pad3_ u18 +a31 net-_u18-pad3_ net-_u1-pad16_ u19 +a32 net-_u14-pad3_ net-_u1-pad17_ u15 +a33 net-_u10-pad3_ net-_u1-pad18_ u11 +a34 net-_u6-pad3_ net-_u1-pad19_ u7 +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u5 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u21 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u14 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u10 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u9 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u13 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u8 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u29 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u25 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u26 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u22 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u30 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u34 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u27 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u35 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u17 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u16 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u12 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u20 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u24 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u32 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u33 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u28 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u18 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/IN74LV574/IN74LV574.kicad_sch b/library/SubcircuitLibrary/IN74LV574/IN74LV574.kicad_sch new file mode 100644 index 000000000..465e05732 --- /dev/null +++ b/library/SubcircuitLibrary/IN74LV574/IN74LV574.kicad_sch @@ -0,0 +1,2616 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 26be1944-de39-47fd-92a3-ca0905213c1c) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_tristate" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -6.35 6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at -5.08 11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_tristate_0_1" + (polyline + (pts + (xy -10.16 13.97) + (xy -10.16 3.81) + (xy 8.89 8.89) + (xy -10.16 13.97) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_tristate_1_1" + (pin input line (at -15.24 8.89 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -1.27 1.27 90) (length 4.9022) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 212.09 134.62) (diameter 0) (color 0 0 0 0) + (uuid 059fed47-c05c-44b6-8743-601081a772da) + ) + (junction (at 123.19 106.68) (diameter 0) (color 0 0 0 0) + (uuid 05e6896a-ad89-4d1e-a29c-1ae2c1a60db9) + ) + (junction (at 138.43 25.4) (diameter 0) (color 0 0 0 0) + (uuid 32c8e2d1-843c-4895-b4ce-1e96878af436) + ) + (junction (at 176.53 134.62) (diameter 0) (color 0 0 0 0) + (uuid 39b93f61-d66a-4945-8bc7-e726fd160794) + ) + (junction (at 175.26 25.4) (diameter 0) (color 0 0 0 0) + (uuid 4d7ddc97-8617-4b90-a4cd-7eeb6b1c1075) + ) + (junction (at 102.87 25.4) (diameter 0) (color 0 0 0 0) + (uuid 55fec203-b9dc-472c-8845-e2a2c95f83cc) + ) + (junction (at 287.02 25.4) (diameter 0) (color 0 0 0 0) + (uuid 59f3dff6-e466-4b12-a76f-07867ad4436b) + ) + (junction (at 49.53 106.68) (diameter 0) (color 0 0 0 0) + (uuid 5c65e630-c2bd-44de-a502-c717fa20d7e4) + ) + (junction (at 105.41 134.62) (diameter 0) (color 0 0 0 0) + (uuid 64acf078-d041-438f-82dc-b0f0d10ba6d6) + ) + (junction (at 210.82 25.4) (diameter 0) (color 0 0 0 0) + (uuid 72769df6-0c7a-48e6-8668-1d57c39e824a) + ) + (junction (at 231.14 106.68) (diameter 0) (color 0 0 0 0) + (uuid 8501bf4d-186f-4009-bade-dddf63eee6de) + ) + (junction (at 69.85 134.62) (diameter 0) (color 0 0 0 0) + (uuid 8fd5797f-89f3-40df-b85a-1383bad4b6e1) + ) + (junction (at 194.31 106.68) (diameter 0) (color 0 0 0 0) + (uuid 9fbe460d-e873-4e67-973c-b8736e96cd7f) + ) + (junction (at 158.75 106.68) (diameter 0) (color 0 0 0 0) + (uuid a7ac415d-7b6e-407c-b462-58edc4bbc1f9) + ) + (junction (at 248.92 25.4) (diameter 0) (color 0 0 0 0) + (uuid c8f915e2-3832-4e3e-b641-b85ff1937a81) + ) + (junction (at 66.04 25.4) (diameter 0) (color 0 0 0 0) + (uuid c92b78dd-dd5f-408d-935f-241caf76d7f4) + ) + (junction (at 248.92 134.62) (diameter 0) (color 0 0 0 0) + (uuid dae44801-0e75-412d-b5b3-812ee37f663f) + ) + (junction (at 85.09 106.68) (diameter 0) (color 0 0 0 0) + (uuid e08a1770-4609-44cf-8197-82465255a4b1) + ) + (junction (at 12.7 106.68) (diameter 0) (color 0 0 0 0) + (uuid e38cbe95-ba08-4ce5-9c39-b890c1138114) + ) + (junction (at 139.7 134.62) (diameter 0) (color 0 0 0 0) + (uuid fe308d15-1698-4396-8897-f76316dc14ff) + ) + (junction (at 30.48 134.62) (diameter 0) (color 0 0 0 0) + (uuid feb58636-37b6-4b42-b0a9-0f32d639a393) + ) + + (no_connect (at 300.99 64.77) (uuid 0212d865-f81a-4a7e-9fec-fd0d418f9584)) + (no_connect (at 30.48 72.39) (uuid 131decc6-b08b-406d-9def-81cb79052b9a)) + (no_connect (at 152.4 64.77) (uuid 2dec8357-3946-44e5-a422-9fdcd5fc98af)) + (no_connect (at 138.43 72.39) (uuid 3d66813e-7b1f-45b3-8964-2cb5cebeae87)) + (no_connect (at 80.01 64.77) (uuid 4e593a50-0fe4-409a-86ca-5e363893a2fa)) + (no_connect (at 210.82 72.39) (uuid 61488e3e-4999-47d3-b416-e8030ce8c40e)) + (no_connect (at 116.84 64.77) (uuid 78a802b9-b0bb-40d9-bf99-58d8029ab158)) + (no_connect (at 102.87 72.39) (uuid 7e726f8f-e25a-4c3c-b382-be420d95fa6a)) + (no_connect (at 44.45 64.77) (uuid 8f58e683-038c-4141-8811-2b9ffcb3c694)) + (no_connect (at 287.02 72.39) (uuid a4f5f40c-be08-497b-8b75-5fb3f3885f9b)) + (no_connect (at 66.04 72.39) (uuid ad3297a1-ed7c-47d5-a949-acf9a55c621a)) + (no_connect (at 224.79 64.77) (uuid b099e18a-5129-4cf6-8460-1b4d60b32d7a)) + (no_connect (at 262.89 64.77) (uuid b2717404-cf61-4c10-b999-fa9e913f6369)) + (no_connect (at 189.23 64.77) (uuid cd460a70-88bd-459b-9a60-c991bb3bdd5e)) + (no_connect (at 175.26 72.39) (uuid cfbac120-8813-40fa-a7c3-8ea8dde13b3d)) + (no_connect (at 248.92 72.39) (uuid f1b5d6c1-fd2b-4a48-bc03-25f71e895ada)) + + (wire (pts (xy 102.87 25.4) (xy 138.43 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02a5110f-b469-4a47-b396-597fbefd1d78) + ) + (wire (pts (xy 210.82 25.4) (xy 248.92 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 051e5673-053f-4051-ad11-dcf898340231) + ) + (wire (pts (xy 231.14 64.77) (xy 231.14 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07758bc0-bab1-4f5c-b3fb-c891e1f3b1f9) + ) + (wire (pts (xy 300.99 48.26) (xy 309.88 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0916be44-9b03-4637-8738-ac56e5de5176) + ) + (wire (pts (xy 154.94 191.77) (xy 154.94 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f4a8393-8a57-49df-91c1-7c4f28d979cb) + ) + (wire (pts (xy 147.32 161.29) (xy 139.7 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f9a40a4-682c-4f86-bc43-7eddad92c634) + ) + (wire (pts (xy 193.04 -7.62) (xy 193.04 11.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18807315-ba5d-496c-835c-053ca80be47f) + ) + (wire (pts (xy 49.53 106.68) (xy 85.09 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 191716cd-dd1e-4626-af15-4cfc5d9b6626) + ) + (wire (pts (xy 86.36 -7.62) (xy 86.36 13.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c2d224e-0608-434e-8448-d278e764e6e8) + ) + (wire (pts (xy 38.1 160.02) (xy 30.48 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fd6f23f-5a23-4c47-bcbe-f07f52d847df) + ) + (wire (pts (xy 88.9 64.77) (xy 85.09 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22cf5f73-7d7b-4f7d-8c2e-5dc3d4a69c51) + ) + (wire (pts (xy 30.48 134.62) (xy 69.85 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25da1375-3d6e-40c7-a572-27ac4b0e7d16) + ) + (wire (pts (xy 52.07 64.77) (xy 49.53 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d82ab1d-d400-4a7d-a82c-86bb8220bf14) + ) + (wire (pts (xy 105.41 134.62) (xy 139.7 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f9dd635-ecba-4791-9467-c645c3582535) + ) + (wire (pts (xy 267.97 40.64) (xy 267.97 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 302f8c3a-0c2d-40e8-a990-038df0e4e846) + ) + (wire (pts (xy 248.92 25.4) (xy 248.92 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36f9ee6c-88d0-4e3c-9680-d9bf9c279d1d) + ) + (wire (pts (xy 157.48 40.64) (xy 157.48 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 372ab3a6-c546-402c-86f1-85d22ee61de2) + ) + (wire (pts (xy 69.85 134.62) (xy 105.41 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3972c6ac-b5da-4a2d-b7f3-669f79b07059) + ) + (wire (pts (xy 326.39 35.56) (xy 326.39 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b9ef9f9-07be-4dbb-9b3a-c5bb87ceee3d) + ) + (wire (pts (xy 212.09 134.62) (xy 248.92 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c20fc14-a205-430e-b941-703a7d654f64) + ) + (wire (pts (xy 119.38 191.77) (xy 119.38 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 421d8945-9824-47f1-b4fe-5bd883db7eb2) + ) + (wire (pts (xy 66.04 25.4) (xy 66.04 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 426f5d91-4887-4e9a-a41e-bfe30123b90b) + ) + (wire (pts (xy 158.75 64.77) (xy 158.75 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4583ec56-761e-42bc-bbfb-0381890851d8) + ) + (wire (pts (xy 138.43 25.4) (xy 175.26 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 470d6874-3426-4e1c-8af1-8ecac7689264) + ) + (wire (pts (xy 194.31 64.77) (xy 194.31 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49037196-9cfe-4875-9965-4137e4795492) + ) + (wire (pts (xy 189.23 48.26) (xy 190.5 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49cc5ef6-4d54-415d-9126-dbcfebfd7b1a) + ) + (wire (pts (xy 175.26 25.4) (xy 210.82 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b19cef0-6901-440e-8898-f089a798a850) + ) + (wire (pts (xy 119.38 48.26) (xy 119.38 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ceb12be-5a44-472f-9f8e-a6a05a7058ea) + ) + (wire (pts (xy 287.02 25.4) (xy 287.02 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d9e4d7d-390d-444f-8332-a1e75b7ee74f) + ) + (wire (pts (xy 226.06 148.59) (xy 227.33 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50ab66ea-1ba5-49fc-b89c-fe2bcbdd0b27) + ) + (wire (pts (xy 16.51 48.26) (xy 12.7 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 568b7c68-cbce-4206-b133-71e7fc00e54f) + ) + (wire (pts (xy 292.1 165.1) (xy 292.1 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57f2031b-c07c-45c7-921a-478e493fd34b) + ) + (wire (pts (xy 85.09 106.68) (xy 123.19 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5871456e-1d8b-45d3-8802-10660171c96d) + ) + (wire (pts (xy 287.02 25.4) (xy 326.39 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59a0084e-c03d-4f16-a354-51ec2d21557f) + ) + (wire (pts (xy 139.7 134.62) (xy 176.53 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59da57fc-3f3b-4c05-8b1e-6025f6483d63) + ) + (wire (pts (xy 121.92 41.91) (xy 121.92 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cee1267-cd13-4ba0-a9ed-8e324dff5688) + ) + (wire (pts (xy 45.72 48.26) (xy 45.72 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e1614ac-87e5-478a-9bda-8211a229dac7) + ) + (wire (pts (xy 265.43 48.26) (xy 265.43 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f5a735b-1649-4d1c-a7a4-1d94e2773a78) + ) + (wire (pts (xy 273.05 48.26) (xy 267.97 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61d9e12f-68a4-4070-96f5-4513255d5891) + ) + (wire (pts (xy 139.7 134.62) (xy 139.7 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63f9113d-8415-468d-b8f9-4b22b146c69b) + ) + (wire (pts (xy 161.29 48.26) (xy 157.48 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 653e251e-8ad1-4081-988b-a4fdd35276e4) + ) + (wire (pts (xy 49.53 64.77) (xy 49.53 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65fb0001-374f-44b2-8958-f1dc311e0a9a) + ) + (wire (pts (xy 231.14 -7.62) (xy 231.14 11.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d9e663e-16e4-47f6-a364-aaab82d33b91) + ) + (wire (pts (xy 190.5 191.77) (xy 190.5 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 722cb7e0-d382-4fe4-8aa1-dffafc094fac) + ) + (wire (pts (xy 30.48 40.64) (xy 30.48 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 735b2239-6536-428f-902e-473d09717791) + ) + (wire (pts (xy 88.9 48.26) (xy 86.36 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74450ddc-ffc9-4578-bd4e-4a1a308d4b6f) + ) + (wire (pts (xy 154.94 48.26) (xy 154.94 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 772b9dc7-4e63-4bca-a8c6-8ca9a8fe8539) + ) + (wire (pts (xy 52.07 48.26) (xy 48.26 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a7fcce7-5e0d-4737-b3b3-7ff76ae708dd) + ) + (wire (pts (xy 124.46 48.26) (xy 121.92 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bb0f4c8-a953-4537-a060-4e0fca11298d) + ) + (wire (pts (xy 86.36 43.18) (xy 86.36 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c9ff560-eb38-4f31-bd7b-5d7d481a93c3) + ) + (wire (pts (xy 176.53 134.62) (xy 176.53 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8041290c-6ace-4a5d-a1c0-06becb92beab) + ) + (wire (pts (xy 231.14 106.68) (xy 273.05 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 888115bb-3163-4bfa-a1c2-cffb2cdc53a7) + ) + (wire (pts (xy 212.09 134.62) (xy 212.09 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ad7245a-dc73-49b3-aaba-84f67e4a4a0a) + ) + (wire (pts (xy 121.92 -7.62) (xy 121.92 12.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d577666-84c0-4b1e-928f-08fbf1c14dd2) + ) + (wire (pts (xy 12.7 64.77) (xy 12.7 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8de6153c-a64a-4d7e-bfbb-6fc17e22b74a) + ) + (wire (pts (xy 234.95 48.26) (xy 231.14 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fac3389-b8eb-4bf0-971d-ca9c5ed77863) + ) + (wire (pts (xy 190.5 48.26) (xy 190.5 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90f01446-5995-4f87-aa8e-0e074861819d) + ) + (wire (pts (xy 105.41 134.62) (xy 105.41 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9232dec4-7e0e-40da-8c8b-db04a56c3cdf) + ) + (wire (pts (xy 66.04 25.4) (xy 102.87 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 925c7fa9-c597-4d4a-8cf5-bc6e9f10889f) + ) + (wire (pts (xy 48.26 -6.35) (xy 48.26 15.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 929b0320-e03c-4605-8634-2ff566246e1b) + ) + (wire (pts (xy 267.97 -11.43) (xy 267.97 11.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95faa233-b54d-4312-b370-06cd961aa8db) + ) + (wire (pts (xy 12.7 106.68) (xy 49.53 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9607b243-d2b1-48e4-961e-4393021c7307) + ) + (wire (pts (xy 273.05 106.68) (xy 273.05 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97820231-f6c9-474b-b9c4-37d2af96f523) + ) + (wire (pts (xy 123.19 64.77) (xy 123.19 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ae8292c-16a7-4b1b-857b-416421f6f04f) + ) + (wire (pts (xy 74.93 160.02) (xy 69.85 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fc19cef-576e-4b55-83fa-4ad721d79419) + ) + (wire (pts (xy 82.55 48.26) (xy 82.55 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ff1ae6a-4479-4294-881d-4c68fef58460) + ) + (wire (pts (xy 12.7 -8.89) (xy 12.7 12.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a152c150-b717-4b70-a902-461dff2386dc) + ) + (wire (pts (xy 158.75 106.68) (xy 194.31 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1db483b-cbb9-46d7-8467-f7b11e0856c8) + ) + (wire (pts (xy 152.4 48.26) (xy 154.94 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5dcf8ac-e414-4b34-a649-35658edd7a13) + ) + (wire (pts (xy 309.88 195.58) (xy 309.88 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a664c9ff-eb05-4cd7-839b-2a2af29c3b28) + ) + (wire (pts (xy 12.7 41.91) (xy 12.7 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8791fbc-87cd-4688-8df2-8b59ae000e8a) + ) + (wire (pts (xy 176.53 134.62) (xy 212.09 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8b7596a-37c2-4f2a-b691-d2328893d3f3) + ) + (wire (pts (xy 193.04 40.64) (xy 193.04 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a959ea73-9fc0-4359-97fa-dbd88c00bc9e) + ) + (wire (pts (xy 123.19 106.68) (xy 158.75 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab53e511-2e6f-4d00-ae69-4b52b252e6b5) + ) + (wire (pts (xy 1.27 106.68) (xy 12.7 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid adbb5500-3e51-4779-b42a-26ae3b73480d) + ) + (wire (pts (xy 210.82 25.4) (xy 210.82 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae1ee36e-5512-4764-b044-97c2c543a423) + ) + (wire (pts (xy 248.92 134.62) (xy 292.1 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b01f2a77-414f-4d31-87fc-ad0d9f95db04) + ) + (wire (pts (xy 224.79 48.26) (xy 227.33 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0c70797-ac99-4b9c-a0ae-120cdc8c9e3b) + ) + (wire (pts (xy 234.95 64.77) (xy 231.14 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b26fb1c8-ae2e-4180-b1e6-6a84dfdec64f) + ) + (wire (pts (xy 157.48 -7.62) (xy 157.48 11.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4a19f67-a3ee-4e39-8f7e-db4601911872) + ) + (wire (pts (xy 111.76 161.29) (xy 105.41 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b56abc6f-2e0e-4edf-8f4e-791fcf4f4f29) + ) + (wire (pts (xy 16.51 64.77) (xy 12.7 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6460ead-d743-4bdf-879b-2305af8d2a4c) + ) + (wire (pts (xy -72.39 106.68) (xy -27.94 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8b385bf-bff4-4b46-a0de-b1ef504feeb8) + ) + (wire (pts (xy 309.88 48.26) (xy 309.88 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba435361-4ce0-4a60-8272-c38443f0b048) + ) + (wire (pts (xy 45.72 190.5) (xy 45.72 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdf69334-a9f3-416a-bbba-30077699be1a) + ) + (wire (pts (xy 161.29 64.77) (xy 158.75 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf5e6e54-2457-40e9-9bac-ad9e515e1359) + ) + (wire (pts (xy 226.06 193.04) (xy 226.06 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0b6dada-a8e4-449c-9243-d119e0388449) + ) + (wire (pts (xy 82.55 190.5) (xy 82.55 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c147299e-896f-4b26-b3c4-7bfaa0757f70) + ) + (wire (pts (xy 218.44 162.56) (xy 212.09 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3e4dddb-dc88-4110-b591-01ff7bc8c6b0) + ) + (wire (pts (xy 196.85 48.26) (xy 193.04 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c405e1b1-6634-4171-bc76-b9f5dd75bad0) + ) + (wire (pts (xy -72.39 134.62) (xy -26.67 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4d23194-7947-4312-9d2a-312d1658bcf5) + ) + (wire (pts (xy 30.48 25.4) (xy 66.04 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4d66935-e09f-4381-8dc9-615091db6997) + ) + (wire (pts (xy 116.84 48.26) (xy 119.38 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cabf16fc-b810-4b38-af8f-bb1db359b39b) + ) + (wire (pts (xy 257.81 161.29) (xy 248.92 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb70e88a-80df-47d2-b06c-71eb97ede886) + ) + (wire (pts (xy 175.26 25.4) (xy 175.26 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd6903c3-f88b-4800-b909-25dd52383eee) + ) + (wire (pts (xy 332.74 35.56) (xy 326.39 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5a831bf-80c2-4bb0-bed6-a65a88dc0720) + ) + (wire (pts (xy 322.58 20.32) (xy 339.09 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da2e5111-e33d-4698-9c6a-451b67b2b476) + ) + (wire (pts (xy 80.01 48.26) (xy 82.55 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc1609b6-620e-4c5b-88a2-34e9833da4c6) + ) + (wire (pts (xy 262.89 48.26) (xy 265.43 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc7872fc-2ba6-4c97-a28c-9206a2a8a780) + ) + (wire (pts (xy 227.33 48.26) (xy 227.33 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd49dd26-78c1-464f-b4bd-42e2d029fcb7) + ) + (wire (pts (xy 231.14 40.64) (xy 231.14 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de709f79-63ac-4a76-9e7e-0cd224e69b79) + ) + (wire (pts (xy 196.85 64.77) (xy 194.31 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df40aa53-3c06-44a0-8a57-1aab942c3c26) + ) + (wire (pts (xy 124.46 64.77) (xy 123.19 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0262236-7d7d-4574-86d8-96f6c5df81cb) + ) + (wire (pts (xy 102.87 25.4) (xy 102.87 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0400940-b657-4e72-90f7-de75ef8172a1) + ) + (wire (pts (xy -11.43 134.62) (xy 30.48 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e62887d7-f8a0-45b4-9d41-893501cdf005) + ) + (wire (pts (xy 85.09 64.77) (xy 85.09 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e69ecde1-0e3b-4da9-b200-1b383fe9f270) + ) + (wire (pts (xy 194.31 106.68) (xy 231.14 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7296f88-567e-4f74-8eda-68ccac93c4b0) + ) + (wire (pts (xy 265.43 191.77) (xy 265.43 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e83dc639-2d4d-4152-a29b-bf391cfe0d00) + ) + (wire (pts (xy 69.85 134.62) (xy 69.85 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e90ef14d-141e-4865-a8e1-813bba6990b4) + ) + (wire (pts (xy 30.48 160.02) (xy 30.48 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e964a9b0-e716-44aa-982d-aafa1d68dccf) + ) + (wire (pts (xy 48.26 44.45) (xy 48.26 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea50c705-44d6-46f9-a85a-3c81cb4b5c18) + ) + (wire (pts (xy 302.26 165.1) (xy 292.1 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eafb642a-dcb5-4627-abd0-b622f25ccdde) + ) + (wire (pts (xy 182.88 161.29) (xy 176.53 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb68045c-51a6-4984-8d8b-a0cdef2bebe0) + ) + (wire (pts (xy 248.92 161.29) (xy 248.92 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0cc4ae7-f819-41c0-a7fd-d03b5b9b6273) + ) + (wire (pts (xy 248.92 25.4) (xy 287.02 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2096886-0c01-4476-99ac-39e589ff9701) + ) + (wire (pts (xy 44.45 48.26) (xy 45.72 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid faa1745a-72bf-48ba-a8b5-e9a1add63598) + ) + (wire (pts (xy 138.43 25.4) (xy 138.43 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc445e34-ccdb-45c0-9cdd-628ce40b5bcb) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 226.06 233.68 90) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 021aef50-ba54-4446-8d68-88b332a955bf) + (property "Reference" "U1" (id 0) (at 228.6 232.41 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 228.6 234.95 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 226.06 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 226.06 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 32c1152a-36b6-481c-810d-de31c2d0f604)) + (pin "2" (uuid 3810ee54-c33a-45e2-b9fc-0c97cf154e62)) + (pin "3" (uuid b8db2990-0037-42a2-9b55-eae6c3101afb)) + (pin "4" (uuid fb59f47c-60c3-4fff-afff-b59b73a5b624)) + (pin "5" (uuid 32635e55-9a5e-494c-98ba-f89cc0f54577)) + (pin "6" (uuid 8007f743-5511-43ff-8cdf-deada2e519dc)) + (pin "7" (uuid 8b1a8863-8591-4dce-b9a8-dbd8ac105161)) + (pin "8" (uuid bf6a8a67-b497-4a3a-b722-e1864450911e)) + (pin "9" (uuid 9901ae8e-dc4e-4101-9eb5-744dfef8c396)) + (pin "10" (uuid cb3489a6-403c-42ba-8763-6e46466c1c53)) + (pin "11" (uuid a3f408c9-2dce-4d4a-8eac-61ea48deeb4b)) + (pin "12" (uuid ded4542a-8160-4237-a7b8-49f1073218e7)) + (pin "13" (uuid ac7dd7c3-42fc-4dac-8c70-9b29f4eb0ac6)) + (pin "14" (uuid 7b9f9396-95c3-4766-8d5f-563d0239f104)) + (pin "15" (uuid 7957f37c-6893-4679-9c6e-65790137424e)) + (pin "16" (uuid efa62542-dd05-40a8-841d-ab8ad4fae0b8)) + (pin "17" (uuid a0818c8a-bb2c-4b0d-83b7-3d65a1b383f4)) + (pin "18" (uuid 407e28d9-dae0-4f96-a938-9125fea17c65)) + (pin "19" (uuid 14bc079e-859f-41ff-bfff-11155a817d19)) + (pin "20" (uuid b896e392-0763-4151-bd82-f61f0d99a5e5)) + (pin "21" (uuid 72dd0918-316b-4280-a784-59e1b96a98e3)) + (pin "22" (uuid 3ae245be-4815-43be-829a-cdba5d89ce6f)) + (pin "23" (uuid d2550374-1e7f-4afc-95fe-bcb7cdc7cde0)) + (pin "24" (uuid acf373a5-5444-4ed3-8e98-6b860be76d71)) + (pin "25" (uuid 9f811d25-6263-41cf-9f66-7312c2c9cc44)) + (pin "26" (uuid 2a0e78db-80a8-4799-b484-8470fa266299)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 256.54 162.56 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 064b829f-0c56-4813-8cb6-92a64c76fa88) + (property "Reference" "U30" (id 0) (at 271.78 160.655 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 271.78 164.465 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 265.43 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 265.43 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 384ea842-39cb-41a4-b0d1-70e115a52a99)) + (pin "2" (uuid c82a6886-bf1a-4f07-9854-9aa6b7d91eec)) + (pin "3" (uuid e68782df-c165-4ae8-af3e-bb36d331da39)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 48.26 27.94 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e969653-230a-4290-ab60-41f0d3ef3e9e) + (property "Reference" "U8" (id 0) (at 54.61 28.575 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 54.61 32.385 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 48.26 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 48.26 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 13dcb30d-f3c4-44ed-9976-f8ff2877931e)) + (pin "2" (uuid fb6071f5-7c19-4be5-bdbb-e83032b5af14)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 82.55 231.14 90) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 11604497-a1bc-4211-af29-1e46b39d597d) + (property "Reference" "U1" (id 0) (at 85.09 229.87 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 85.09 232.41 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 82.55 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 746b8cc9-2ba6-4c66-8cfc-ea0caba7e9da)) + (pin "2" (uuid 3aa9df27-08e1-435a-8343-27b07209a4ba)) + (pin "3" (uuid e5cd793d-b5e8-483e-ab04-dfb2f93d9d07)) + (pin "4" (uuid 090136cd-f416-4725-b4cb-27235ba073e8)) + (pin "5" (uuid 0bc0b2ed-7b5f-4ec9-b88d-523633154a0c)) + (pin "6" (uuid 407f45b4-eba8-4fc8-b7a8-9becaa53b3fb)) + (pin "7" (uuid 9132178a-1ef5-4f1b-85fc-0b5ec57e3af9)) + (pin "8" (uuid 9d992014-7a37-4df2-8338-510f265d040d)) + (pin "9" (uuid c78bf694-f30a-47ca-914d-d456e1ff31cb)) + (pin "10" (uuid 23e3993c-9f18-40f8-bc6d-50b87fb2051c)) + (pin "11" (uuid 5a4fd523-468a-4d76-bc91-b69a1809131b)) + (pin "12" (uuid 9e49817f-a133-4897-8588-0071d4fd32f3)) + (pin "13" (uuid 784e14b5-7dfd-4db2-8ca3-57e6b9774775)) + (pin "14" (uuid 241c58d7-3191-4508-bc1d-94da60214d4b)) + (pin "15" (uuid f0701acf-4891-4924-ad17-7db1941eae60)) + (pin "16" (uuid 3bedf383-c69e-49e8-8d1b-e304e8e2a4d8)) + (pin "17" (uuid 780e16aa-688d-4e74-b5b7-481b638bae03)) + (pin "18" (uuid 9d374fdb-2a51-4330-90ef-c336cbb8621c)) + (pin "19" (uuid 891f20d3-6702-47eb-adb9-5d31c09cecf3)) + (pin "20" (uuid da9f92ee-cf4c-46e3-b638-f3c819efe08d)) + (pin "21" (uuid bfa8e914-a616-4943-a326-2b2659ed5366)) + (pin "22" (uuid 6d88339e-5435-4854-8200-46a56ba46519)) + (pin "23" (uuid 87c34cd0-1b42-4aab-81fc-fa95304bd1d1)) + (pin "24" (uuid 6fa32afc-b8be-48c8-9ce8-b942c636f43f)) + (pin "25" (uuid bcdbfccc-e68a-482f-a3b1-98c9eb1bc2d6)) + (pin "26" (uuid ee8f44fd-6d02-4ae5-b2c3-7864523a3bd9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 45.72 231.14 90) (unit 19) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 128f5a49-71c0-45e2-982f-0cc648606cd4) + (property "Reference" "U1" (id 0) (at 48.26 229.87 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 48.26 232.41 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 45.72 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 45.72 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 77434b89-2540-40a1-b3f1-43d7da07f325)) + (pin "2" (uuid bac9685d-5a43-4f9b-ba46-8908d4dadc74)) + (pin "3" (uuid 0beecceb-2381-4cb1-b7fe-a78c0e709dad)) + (pin "4" (uuid 46499b15-635c-46e0-b0fd-82c828bd2555)) + (pin "5" (uuid a4870e4f-2a86-4e62-ae82-3e8c5bfc4200)) + (pin "6" (uuid 0789d5a3-c8f6-48a1-9c0e-7fcfe48d4df6)) + (pin "7" (uuid c3469cee-d0d0-47c2-a84f-40e4936b119f)) + (pin "8" (uuid 5f7d088e-571c-48e1-adc2-cfb4686d371c)) + (pin "9" (uuid ccd9a911-630a-45fc-8702-b975513c87ff)) + (pin "10" (uuid 1f612427-59d0-4150-a629-c081fe078929)) + (pin "11" (uuid 894147ec-cbcd-472b-8a9b-f93fd8543b75)) + (pin "12" (uuid a3f06658-f4bc-4aae-883f-ed5d71dbfa52)) + (pin "13" (uuid 0f11646b-4600-443b-b8b8-441d73a3ce58)) + (pin "14" (uuid 58af72df-506f-4d15-a1f3-8a07338d58b9)) + (pin "15" (uuid 2e49d005-3ceb-49b6-b8d0-84f17fc5e55d)) + (pin "16" (uuid 51b0fbb9-8db3-4dfc-83a2-55f81d006cc2)) + (pin "17" (uuid 88ddc6ce-17a7-4f3d-9d31-b0bab4629a7d)) + (pin "18" (uuid d07835c7-73c5-40b0-a642-3839a08dc5b9)) + (pin "19" (uuid dc01fe75-bf18-4ee6-a983-82d1da9885c5)) + (pin "20" (uuid 81de8f65-3617-458f-bbb1-b86f3df782ce)) + (pin "21" (uuid a0d67b62-1efb-4089-b212-e4e566df4aac)) + (pin "22" (uuid 8016584f-188d-4cbf-b6b4-9551d3851853)) + (pin "23" (uuid c57680a8-158c-4582-a72f-0108de4918d7)) + (pin "24" (uuid 1ffd6f3a-da2f-43b2-960e-ec229e037615)) + (pin "25" (uuid fa7bac8e-6a64-4556-b302-9573d45b91e9)) + (pin "26" (uuid b27185fc-2ed2-45b3-b418-ed5179c46422)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 138.43 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 19d7a954-0d1a-4bd8-a9cf-5484e2564d11) + (property "Reference" "U17" (id 0) (at 140.4494 40.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 140.4494 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 138.43 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 138.43 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 928ff494-d2ea-4490-b8f3-a45396b16f5d)) + (pin "2" (uuid 1143132e-b145-47c4-9ca2-93748cd588fa)) + (pin "3" (uuid ec9ce4b1-fa88-4c8d-8f15-cfa78c763f10)) + (pin "4" (uuid 4ba787a8-1aba-44d2-a7ac-2734edf51089)) + (pin "5" (uuid 40547f7f-61c4-4c8f-a777-342d924937f1)) + (pin "6" (uuid 367a6a77-e534-4e00-8f6d-ff8fb6445eca)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 45.72 182.88 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1abc9c2a-802d-4f40-ba4e-a9d0bb130e4e) + (property "Reference" "U7" (id 0) (at 48.26 181.61 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 48.26 185.42 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 44.45 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 44.45 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 84062187-0de8-48a4-9941-7364ac416ea0)) + (pin "2" (uuid c2a078c5-3577-4a99-ac30-21a6abb00c9b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 309.88 187.96 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 1b152f34-0c61-44f7-aa9a-7a80db0fba95) + (property "Reference" "U35" (id 0) (at 312.42 186.69 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 312.42 278.13 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 308.61 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 308.61 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1f81f246-fc6c-411e-9bcf-da5cd285a69f)) + (pin "2" (uuid 5bd1f170-2d18-4a0e-8311-bd21fb464e61)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 30.48 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1cc1d726-b700-4b02-9795-cffb9ab66437) + (property "Reference" "U5" (id 0) (at 32.4994 40.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 32.4994 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 30.48 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 30.48 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c474e91d-20af-4a56-b62e-916eef10c749)) + (pin "2" (uuid 8f1815b9-e275-48f6-839d-3614fda7730d)) + (pin "3" (uuid 7b08de81-9eeb-49fe-ad46-907cc34c4968)) + (pin "4" (uuid 551d5ef7-82c4-4d79-8f4d-1512c5eb1455)) + (pin "5" (uuid 89a40e07-1a61-4a89-94a2-549ac5f38ffb)) + (pin "6" (uuid 501a94d6-2962-4146-b54e-4d61a852032d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 345.44 20.32 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1cd4d2d1-7a35-4127-b858-36647c1c1ddb) + (property "Reference" "U1" (id 0) (at 349.25 19.685 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 349.25 22.225 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 345.44 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 345.44 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 935ba295-420c-48a9-ba9e-877368b953b7)) + (pin "2" (uuid cc4eab94-0546-47e1-8719-efd4a0ca6ff8)) + (pin "3" (uuid 36496d6a-c0b0-4833-be48-db22d71b023a)) + (pin "4" (uuid d9d9d62d-4a9f-4250-9bd9-0776cd4652bd)) + (pin "5" (uuid a3bb30dd-6bca-4123-97e6-fc16560c56ee)) + (pin "6" (uuid f9ad76fe-e8a7-4e8a-a220-a62b8d9ae8e5)) + (pin "7" (uuid 9a206a45-90d8-414f-aa21-a2539c96b3eb)) + (pin "8" (uuid 210dcb7f-6e77-4652-9543-8d9e1a6db7d9)) + (pin "9" (uuid 0254e195-011e-4099-84ff-da3d275081e7)) + (pin "10" (uuid 246c6de6-ba15-44f8-961e-01c87bd99a9b)) + (pin "11" (uuid c5ac6562-d31e-4b0c-a564-503501eb2488)) + (pin "12" (uuid 33496323-4129-4e18-bf2d-a0e2d3570789)) + (pin "13" (uuid 1e8f62ec-fe88-48b3-8661-53dadf839f45)) + (pin "14" (uuid c33a4f59-97f8-4b7c-8814-8400d80b7ff3)) + (pin "15" (uuid 11fc593f-063d-48ed-917c-b75c75609127)) + (pin "16" (uuid fbd115bd-e6f8-4335-ad63-d9b79dc0d6e6)) + (pin "17" (uuid ca119728-d298-47ec-b941-335a50cac162)) + (pin "18" (uuid 8d5a28a1-0bc6-462a-a953-e33172807902)) + (pin "19" (uuid fa971e91-01e2-4cce-a077-407f0813774b)) + (pin "20" (uuid 6e7e35f5-2fa0-4dc1-8556-3ca5a82678a1)) + (pin "21" (uuid 4052878a-11c4-48d1-b81e-bb179256388c)) + (pin "22" (uuid bb25785c-7a4b-4423-82b1-1c4a69f071dc)) + (pin "23" (uuid 340e2bad-02c7-4de2-a14a-333723568ca0)) + (pin "24" (uuid 1623be7e-b62f-4505-b1a4-204716a86702)) + (pin "25" (uuid 749200fc-2489-44e0-a255-e7227ebaf501)) + (pin "26" (uuid 520a4983-6aad-48fd-a176-4ec0b80ec28b)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 102.87 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d9aadb4-8b9f-45b9-b76c-3d0b14e88827) + (property "Reference" "U13" (id 0) (at 104.8894 40.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 104.8894 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 102.87 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ba83dfb7-7e40-489b-9505-c450bedc8e3a)) + (pin "2" (uuid 976ed358-60f7-4b38-8f9a-5f715c365f6b)) + (pin "3" (uuid a4814211-dabc-4421-a718-b0045717e122)) + (pin "4" (uuid 17a9721d-4766-4a7b-8462-2c90d1e5f4d1)) + (pin "5" (uuid 7dee9c63-8495-45d9-9ffd-cba8dac72ac5)) + (pin "6" (uuid dab06a43-6980-43d5-8a6d-b8d7dce4456a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 119.38 232.41 90) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1f96f9a5-2615-4977-bc99-dd71166b6722) + (property "Reference" "U1" (id 0) (at 121.92 231.14 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 121.92 233.68 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 119.38 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 119.38 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 819fdfa1-7840-49aa-89f6-01725498c685)) + (pin "2" (uuid 6f7c9f66-cee6-4355-94ba-a7b7880dac1c)) + (pin "3" (uuid c0f1c706-7eb3-4d3b-ba9e-bde6aa0c096c)) + (pin "4" (uuid b79003f5-2c86-4338-869d-40016e80fc43)) + (pin "5" (uuid 7c11b64d-3bde-4ca0-9e30-f1fdff359139)) + (pin "6" (uuid 6f67a75c-af0e-4b46-8478-d9ad52c5be85)) + (pin "7" (uuid 3d962254-b148-46c1-ba64-de86c73aad77)) + (pin "8" (uuid 677a759f-8743-42ae-8341-933032f41409)) + (pin "9" (uuid 4fa1f3ee-4ee0-4be3-9d50-4f4cd8398e54)) + (pin "10" (uuid 969e7a08-c019-4b91-8f8b-3fe4df8f269a)) + (pin "11" (uuid 69910ff5-fcf8-487f-a083-c7b7de70c339)) + (pin "12" (uuid 01806653-28ee-4476-b961-7e6c6a664875)) + (pin "13" (uuid 514bbaaf-dc9a-4349-9a0a-dff8e48d4a5d)) + (pin "14" (uuid 7b6c833c-2f3a-461f-8e04-a6633d5d30da)) + (pin "15" (uuid 1eeb3966-46b5-495d-a07c-0a89730fb46c)) + (pin "16" (uuid 84020be0-c2d8-43f6-b38e-19b18a5af868)) + (pin "17" (uuid bfebb1b0-b768-48ce-b85d-cd556b1fc8eb)) + (pin "18" (uuid d9626266-b445-40e2-8907-e2e986571de1)) + (pin "19" (uuid a8f15610-e86e-4b73-a313-67b20067368e)) + (pin "20" (uuid 79d3cb0a-17bd-4b86-85d9-b1e67823fdab)) + (pin "21" (uuid 7031f2e9-4b92-4bcc-b6aa-4d605076b756)) + (pin "22" (uuid 7e5b2747-6391-47f7-b85e-2f9fa3a0708d)) + (pin "23" (uuid 31786727-677e-4372-930a-6f62769c1e8f)) + (pin "24" (uuid 644bfab1-cb72-4534-9bef-df83db8d9fb1)) + (pin "25" (uuid ece30672-081f-4786-9787-21121012158e)) + (pin "26" (uuid 3db32def-82e7-4931-a19f-1e90e5c939b3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 157.48 -13.97 270) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 21bcc4e3-51c2-4db8-aa3b-267fcb67d0e7) + (property "Reference" "U1" (id 0) (at 160.02 -13.97 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 160.02 -11.43 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 157.48 -13.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 157.48 -13.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9c6e96ad-fdbb-4a9a-b589-0b030057b811)) + (pin "2" (uuid a8bade6e-aa65-40f9-8d0c-9e96c94ebef6)) + (pin "3" (uuid a1e68067-277c-4e63-b23d-6700ce998f19)) + (pin "4" (uuid f186cb25-00c9-4437-8d66-49e5948bc05d)) + (pin "5" (uuid 310fcc11-ed76-4006-b7b5-da29e3007cea)) + (pin "6" (uuid 15ab50f7-0ae1-429f-abf6-5101557d3ab5)) + (pin "7" (uuid b6aee558-22ac-4505-9eab-2a10dfa53c14)) + (pin "8" (uuid cdecf484-ae14-49f0-92c9-7143ebdd07bc)) + (pin "9" (uuid 91f50829-42cd-4034-a9ce-e59ca11344b0)) + (pin "10" (uuid 296ced75-f36a-4235-bdd0-c80044d59d2e)) + (pin "11" (uuid 6b58ce09-3538-411d-88c2-bfe4e7d1562d)) + (pin "12" (uuid d07dadde-a83c-4934-b315-78348e4e9977)) + (pin "13" (uuid 0b47069b-0036-4e74-add9-a1d54ed588c9)) + (pin "14" (uuid 77a17269-ec2f-4628-8047-de396704fb9f)) + (pin "15" (uuid cc338381-16a0-4e86-9633-cce75f602a4b)) + (pin "16" (uuid e30089c6-eb42-4eb9-8c03-516104d86fd6)) + (pin "17" (uuid c39a6c39-2164-49f6-849a-00336a1b48a4)) + (pin "18" (uuid 47654699-5adc-4321-91bc-35f109982d34)) + (pin "19" (uuid fd69ca38-ad69-48a4-a1c9-e817b622dbcb)) + (pin "20" (uuid 81b33d7c-8866-4d6e-8608-353fb0559806)) + (pin "21" (uuid 7e952fed-594f-4ed1-87f1-58802b83371d)) + (pin "22" (uuid b258df14-1060-44a3-91a9-de0050153dee)) + (pin "23" (uuid 4d3b8668-a36c-4a57-9783-2ba04d50c55f)) + (pin "24" (uuid 6ea4b1d0-87ef-42e3-8bff-299a9da8892c)) + (pin "25" (uuid b1066ed6-608d-48dd-9b6e-b84de7eece2e)) + (pin "26" (uuid d6949ad7-3918-42f3-ac85-64c1526a2609)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 119.38 184.15 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26b7e030-bc4c-4148-a48f-8fd54836f3d2) + (property "Reference" "U15" (id 0) (at 121.92 182.88 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 121.92 186.69 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 118.11 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 118.11 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d3b1ab73-8149-4540-9a3d-04ba3cc4b337)) + (pin "2" (uuid 6159f72c-6b74-489f-849c-1ea41b5665c6)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 300.99 166.37 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 296f8772-e323-4174-ba20-c06adbba8318) + (property "Reference" "U34" (id 0) (at 316.23 164.465 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 316.23 168.275 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 309.88 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 309.88 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dcee56d6-dc67-41a4-9bf0-98f668270f85)) + (pin "2" (uuid f6143e40-ab38-4d6d-b5d5-93ff7d94ae23)) + (pin "3" (uuid a1a9598b-b6d1-4f58-ab83-c15190441b6d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 48.26 -12.7 270) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e5a85b8-efb0-4fda-b2c7-e5a31307d3ff) + (property "Reference" "U1" (id 0) (at 50.8 -12.7 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 50.8 -10.16 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 48.26 -12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 48.26 -12.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ff969f89-c9a0-429a-bb1f-44e7a9b91052)) + (pin "2" (uuid f5b4453b-35c8-4985-9b19-fee4fab1fe2e)) + (pin "3" (uuid 9e79e50f-86be-4834-b656-fa17a3513744)) + (pin "4" (uuid 4f4f3103-a1d3-4a4d-9f7d-a9076fbccc16)) + (pin "5" (uuid 9f69af2c-5024-45a4-b44f-35ed0edb37a7)) + (pin "6" (uuid 072baeff-a921-49fb-a3ef-79c43e3565f2)) + (pin "7" (uuid a29bfedf-7a17-4934-97cb-6002b7122ed4)) + (pin "8" (uuid 4bd19ba3-f60f-4ea6-87ee-de2700807ddf)) + (pin "9" (uuid 2632bb0b-2636-4c6b-974f-30e894bc1364)) + (pin "10" (uuid 3ca2ee50-d288-400d-b7d1-08f9520d8831)) + (pin "11" (uuid 8a6bdc19-c788-4878-88b1-f00361966f53)) + (pin "12" (uuid c6f73ff2-70f8-4c20-9b6e-72660d33df2e)) + (pin "13" (uuid 153edef7-78c9-466b-9fe6-d810a70f9139)) + (pin "14" (uuid 1678f9c3-e941-4e9f-9014-6a01c0855a78)) + (pin "15" (uuid 8939316e-1838-4398-9236-913611897b28)) + (pin "16" (uuid 143cc7d7-d284-4551-ada3-ba88aa76720a)) + (pin "17" (uuid 9af99ccd-dc3a-4c78-ab36-1eb35de84de4)) + (pin "18" (uuid 372304a7-a327-4afd-8b01-03cce9b62f46)) + (pin "19" (uuid ca26e06f-0344-44a3-98ce-40ade229005d)) + (pin "20" (uuid dd7a073e-630f-49fd-af97-a805b6fb7981)) + (pin "21" (uuid 01529c50-6f53-46e2-9f74-5dcb1c884ed9)) + (pin "22" (uuid e4291394-aa9e-45f5-aefc-b8b7cf02b5ca)) + (pin "23" (uuid 555fdf8e-2ac3-4754-8037-9b8548b5ffc6)) + (pin "24" (uuid 723beab5-d259-4368-9263-a14f68194221)) + (pin "25" (uuid 850ecc8c-d7f8-4034-992e-519534410bb5)) + (pin "26" (uuid a3d17aad-158f-4bc1-ad34-12ba0e0a4fb4)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 121.92 25.4 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 390a7721-b25d-4995-8e9a-a6ef43c17a87) + (property "Reference" "U16" (id 0) (at 128.27 26.035 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 128.27 29.845 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 121.92 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 121.92 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 29319bbd-31cf-42df-81fc-12a39a43206a)) + (pin "2" (uuid 5b9897ef-4eda-4762-8655-3d67e8549db3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -19.05 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3947e83e-f122-41e3-a5d4-7b58787f440e) + (property "Reference" "U2" (id 0) (at -19.05 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -19.05 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -17.78 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -17.78 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f283bb5-e1c5-47a6-a23a-5b3bf1b1cbd0)) + (pin "2" (uuid 13d40029-241a-4e4a-a150-9a3e6aa9c205)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 265.43 232.41 90) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a6f39e9-1f35-42ce-a707-fbb5e9c05850) + (property "Reference" "U1" (id 0) (at 267.97 231.14 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 267.97 233.68 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 265.43 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 265.43 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 565eee48-f038-4597-b4be-4e2b168fc3b0)) + (pin "2" (uuid 5d999758-194e-4fa7-ac92-d65e482f6d61)) + (pin "3" (uuid 35c7f73a-4c5b-4201-b88c-012bdf36d358)) + (pin "4" (uuid 9043f713-f6d4-4aeb-baa6-574cb03b12d7)) + (pin "5" (uuid 7d5a4fdb-00c1-452a-996d-1ae77d972d6f)) + (pin "6" (uuid f3009d47-ad7c-4ab8-8436-9e2ba43cb08d)) + (pin "7" (uuid 925f4cef-d72d-4e55-9782-7ca3b6877c87)) + (pin "8" (uuid 1aa2ab73-0437-48b4-acb8-701d4853d0a8)) + (pin "9" (uuid 376a6b52-c91a-49b1-a3b4-d4effa5b3f3e)) + (pin "10" (uuid 8ca9f3d2-fcf7-4375-9082-04553e45d7bb)) + (pin "11" (uuid 42536ccb-eb5f-407a-a85e-bd22b37b1e29)) + (pin "12" (uuid 8d06dcce-08e2-459c-bbfe-c78396e40814)) + (pin "13" (uuid fdd378e0-a6bf-4fc5-81b9-42addbcf9748)) + (pin "14" (uuid 48486b66-e327-47b2-9a0a-29a8a48b183f)) + (pin "15" (uuid 2066155c-b943-4601-b74a-b339b4cb07f1)) + (pin "16" (uuid 18362d39-da24-4740-9679-20d53ccc5ddb)) + (pin "17" (uuid 2203e843-3ea9-4d81-aa85-f77bad3be678)) + (pin "18" (uuid bfb70d60-2233-4cab-a0ba-c6f15f68455e)) + (pin "19" (uuid 81398ade-2563-4ca6-9522-84f8c7a33132)) + (pin "20" (uuid ffb21dbd-9e49-4e2b-9735-f40e87346f01)) + (pin "21" (uuid 28b01f9f-95fc-46c9-85af-171f840ef46a)) + (pin "22" (uuid e49967fb-f3cb-42b3-88f5-b05dcd9795b1)) + (pin "23" (uuid 253d57bc-2393-4c43-a93b-915bef174d3a)) + (pin "24" (uuid 006378ce-455d-4006-bee9-deecd66ded28)) + (pin "25" (uuid ac1b0d44-0a94-4675-b614-041939430bb5)) + (pin "26" (uuid e0c77b62-93bf-478f-85de-b827910dde27)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at -15.24 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3d2a45fe-d99e-47cb-bb91-c7df60112d87) + (property "Reference" "U3" (id 0) (at -13.335 95.4274 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at -13.335 99.2374 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -15.24 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -15.24 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e4e9ac0-997a-4b73-b8e0-fdf342dd4dbe)) + (pin "2" (uuid 5a172d1b-8f07-44e0-bca3-83a724c031ed)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 82.55 182.88 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 443a0da5-1e3b-4c9d-bbc9-c05356b248b3) + (property "Reference" "U11" (id 0) (at 85.09 181.61 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 85.09 185.42 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 81.28 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a44e961-50ce-43ef-9132-945db19be435)) + (pin "2" (uuid d93e6967-afd1-41a5-b160-e7a3cd05827a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 154.94 232.41 90) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 52ffb0ab-9ef7-49d4-9aea-fbde1de1b971) + (property "Reference" "U1" (id 0) (at 157.48 231.14 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 157.48 233.68 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 154.94 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 154.94 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 66541342-3b77-40ee-9ed3-20c3e12236a9)) + (pin "2" (uuid 44fafabd-b4c6-4153-80b5-0a84741008c0)) + (pin "3" (uuid 8f6d9793-017b-492a-a9cc-d8a6ca4be077)) + (pin "4" (uuid 1032ead9-a91f-4e12-afc9-431e1d572f63)) + (pin "5" (uuid 0a2dc288-a21a-4d96-a899-654c3860625e)) + (pin "6" (uuid 1191e1dc-4c06-484d-ad80-31ded542b89b)) + (pin "7" (uuid 27267a3c-3c51-448e-9df6-d90f7d519824)) + (pin "8" (uuid b64c7b14-6e93-43dd-9e53-6a92d010e7e9)) + (pin "9" (uuid 2dc1a6ef-4df9-4899-893f-037632a60669)) + (pin "10" (uuid de00f422-25d1-42a0-9fc0-d2f453598fb1)) + (pin "11" (uuid b86c66ce-486c-4785-807e-09ca5d3fd1f3)) + (pin "12" (uuid f19eca0b-99a1-4be3-bc49-302c22e81a51)) + (pin "13" (uuid 79fb7d45-e3e0-4d4a-bf37-4afba3617c17)) + (pin "14" (uuid 85eb9d16-ebce-4d4d-877e-cffee362e92a)) + (pin "15" (uuid b287c950-1a03-4bbc-a255-043d322cb934)) + (pin "16" (uuid 01981df0-ef6e-4f78-a701-86bf3874d638)) + (pin "17" (uuid af245a99-0230-4b54-90af-a96190c82a47)) + (pin "18" (uuid b879203d-4cb7-41c7-9104-b4b39807e10e)) + (pin "19" (uuid f917e270-0037-49e5-9ea5-d208018cc3b1)) + (pin "20" (uuid 5de282c5-a90b-4f43-babb-5f8c8e298c90)) + (pin "21" (uuid d37e0143-6d90-4d26-8174-d5eef1cbe135)) + (pin "22" (uuid 98c42f52-2698-4ca2-9998-8da8d6baf352)) + (pin "23" (uuid b856f472-733a-40af-a9aa-2af407d96c51)) + (pin "24" (uuid a6be5a17-5ead-445d-8e5b-18a18c30ed4d)) + (pin "25" (uuid 2caefd85-7fb7-449c-97dd-e1890199bb1d)) + (pin "26" (uuid 08187d88-6679-4ed3-a527-a0f363408b34)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 86.36 -13.97 270) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 669f69c2-5115-467c-857f-c1409ce1f1ee) + (property "Reference" "U1" (id 0) (at 88.9 -13.97 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 88.9 -11.43 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 86.36 -13.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 -13.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a0af118-8189-491c-af5b-19751afdda62)) + (pin "2" (uuid 4606e07e-a18f-4006-b4fc-a4307381155f)) + (pin "3" (uuid a7c21dfd-67e4-4250-8f12-b789ee33070b)) + (pin "4" (uuid 861e11cc-1dff-44d6-83ac-497d83bea21a)) + (pin "5" (uuid 6db97b3b-8318-410d-b4d7-d61c1b2060d5)) + (pin "6" (uuid 945732a6-5f2f-4827-8176-ac0e0b6ce4b1)) + (pin "7" (uuid 78916ceb-b66e-47e9-9eec-f7d74e0167fe)) + (pin "8" (uuid cb7e83b6-9b9a-4729-87a7-ece9e5bfe009)) + (pin "9" (uuid 0894ef1e-51e4-4f70-8504-7804dcd09966)) + (pin "10" (uuid e4fa8814-a2ea-4c63-accc-415505b5ee77)) + (pin "11" (uuid e96abc77-fcbe-48dd-91ff-064ccbaf7b55)) + (pin "12" (uuid 214b84f0-8861-4380-8b1b-5e9d21304485)) + (pin "13" (uuid 60d64046-1824-4ccd-8792-d3f4bb7ac55d)) + (pin "14" (uuid 16c88b86-4f89-48a6-9005-b52912ab9f71)) + (pin "15" (uuid 8021651c-5f50-4741-af36-1bcf0a0f724d)) + (pin "16" (uuid fd42590a-b724-493a-8c60-f04f9cae0e21)) + (pin "17" (uuid e4993f17-a473-4697-ab38-c6812d95a75a)) + (pin "18" (uuid 9ea1835b-17a9-4387-b714-a738a2892e97)) + (pin "19" (uuid fe8ab672-2576-4429-914d-6ecdda9e08f2)) + (pin "20" (uuid de789d1b-59dd-4747-8d61-0ef3c34a0e58)) + (pin "21" (uuid 1b02dd09-9eb8-47b4-b95f-679347af1a39)) + (pin "22" (uuid 21294806-6e82-406d-b92c-34ab7a8b36e1)) + (pin "23" (uuid 5c215290-e0db-4201-8a82-611ea7dabeba)) + (pin "24" (uuid 506aa3bd-fb01-473a-ba52-f96ac3ce1848)) + (pin "25" (uuid 75706aeb-19bf-44fb-9d4f-ee763024f1aa)) + (pin "26" (uuid 3a6465c9-f489-4582-a181-8899c4868a0c)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 231.14 24.13 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67a4989e-52d4-4331-aec0-59c174bc0b63) + (property "Reference" "U28" (id 0) (at 237.49 24.765 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 237.49 28.575 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 231.14 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 231.14 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 24331530-46ae-473d-8759-65adc5ee55bf)) + (pin "2" (uuid d56c354c-3eb1-4209-881a-961553026734)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 12.7 25.4 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 689e9eb4-e6a4-420f-88fd-9f1c8da662f4) + (property "Reference" "U4" (id 0) (at 19.05 26.035 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 19.05 29.845 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 12.7 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 12.7 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 366c4691-42a2-4f2c-873e-992cf2eef722)) + (pin "2" (uuid ab417b0c-4125-4186-b5af-4b0f16821fc6)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 248.92 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 696e7e77-1951-4ae0-bb93-35e1d0f3f76b) + (property "Reference" "U29" (id 0) (at 250.9394 40.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 250.9394 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 248.92 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 248.92 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 900dcd01-1c0d-4b91-b622-a37471754999)) + (pin "2" (uuid d45d00ca-a838-47cc-8cbd-b207a9f3b551)) + (pin "3" (uuid 36d3a854-2640-4a51-9406-8036cc0e64bb)) + (pin "4" (uuid 2edb4a0c-ba25-4ef5-a3f7-bcea1349c1e3)) + (pin "5" (uuid 67b0942d-ccb7-47a8-aee6-ba0933e94873)) + (pin "6" (uuid 152ba9fe-2048-4567-847c-4a92735f0788)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 210.82 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6b126a90-c716-4531-a1db-13a1d093234c) + (property "Reference" "U25" (id 0) (at 212.8394 40.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 212.8394 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 210.82 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 278c4c7a-58f3-4c32-b273-17d77f11d800)) + (pin "2" (uuid d3db7f0e-e720-47e0-a94b-60792dd75f68)) + (pin "3" (uuid c7e92a11-f960-4e00-a23d-50079cd6451e)) + (pin "4" (uuid 31c0cbdb-9f0d-43eb-b282-f2de2a015a56)) + (pin "5" (uuid 83d81d19-ec75-424f-8ccc-69b517ea97fd)) + (pin "6" (uuid d788ba42-6bbd-45ad-ad52-d3a7680213b4)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 175.26 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6f66366e-1686-4036-a39c-a4133f47b7b2) + (property "Reference" "U21" (id 0) (at 177.2794 40.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 177.2794 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 175.26 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f2c5f10-0b30-485b-897f-a6785dd88704)) + (pin "2" (uuid 49fccb0d-f552-41fa-9452-a055be7a4c5c)) + (pin "3" (uuid cefb16ba-0642-4fb4-8733-fe4f6edaa55e)) + (pin "4" (uuid 3399aa26-bf08-483f-bf58-438960c53f32)) + (pin "5" (uuid 0b10ba18-afc7-448e-b11c-0fb4f04dfcd8)) + (pin "6" (uuid 7a307fb9-8527-4de5-82d0-b98fec0fd6de)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 265.43 184.15 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7302aa59-66ba-4090-81ea-53a5a0a3ce06) + (property "Reference" "U31" (id 0) (at 267.97 182.88 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 267.97 186.69 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 264.16 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 264.16 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 36d9c34e-3b7e-43f5-a026-dc1c300d11d0)) + (pin "2" (uuid ebaee32b-5f47-4c4d-81c1-a2f11de1bfc1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 339.09 35.56 180) (unit 20) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ba9181c-c16d-4eda-9daa-6a66a84ae045) + (property "Reference" "U1" (id 0) (at 342.9 34.925 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 342.9 37.465 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 339.09 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid afdca986-4384-4e0f-ae7d-9b0166669e97)) + (pin "2" (uuid cd2b56c7-9500-46d2-9dd1-2d52f3148b07)) + (pin "3" (uuid 4688cf3c-5b55-424d-bf4e-92a090ad0ac2)) + (pin "4" (uuid cdff72b5-e71b-453a-88e6-76866586d74a)) + (pin "5" (uuid e7ce63bf-17ff-4253-beab-9c0eb04223f7)) + (pin "6" (uuid a9d8a399-aa95-47b8-93b8-b6af4edffa4a)) + (pin "7" (uuid d6dff682-d216-4aec-9401-6bcd44344026)) + (pin "8" (uuid 70494628-c5c3-4c5a-abf2-6ad6acbcba6c)) + (pin "9" (uuid de189002-d591-4e7c-bb9c-0925608e9732)) + (pin "10" (uuid d569f9d2-3590-4a5e-9ece-8aed685028a4)) + (pin "11" (uuid cc33bd4d-e0f7-4a5d-8688-83e1055db4bd)) + (pin "12" (uuid 8b722e8e-a0f2-4da1-a107-d668731791b3)) + (pin "13" (uuid 6673d47e-1399-4ef1-bedb-8036bc7305ab)) + (pin "14" (uuid 0ac351b8-99ff-4fb1-904c-888042d4679c)) + (pin "15" (uuid d56de802-0aea-422e-b3ae-c61fd27bc8d8)) + (pin "16" (uuid 9f900b18-c0f6-46b2-bbdd-fee9a6607ee6)) + (pin "17" (uuid 899ebe94-a5db-4d1e-89ab-90e778063fbf)) + (pin "18" (uuid df3bb9bd-c508-4970-bcbb-1a8353b35fa5)) + (pin "19" (uuid 3d87b4d2-5605-47a7-b09c-650a9a8af404)) + (pin "20" (uuid 9480547a-f314-4474-95a8-764ce79bab37)) + (pin "21" (uuid d358ccc4-3267-4e7c-841d-41f95b9ff1c3)) + (pin "22" (uuid 507fa7fb-85ab-4286-ba77-0c31de5258fe)) + (pin "23" (uuid 2e5bbf58-4f32-407e-9a16-09797f2c324f)) + (pin "24" (uuid 8f0ae47a-d05f-483f-ab5f-13c52bf269e6)) + (pin "25" (uuid 06e374ea-919c-4f30-b164-1028d2d1e89b)) + (pin "26" (uuid 6ea63e96-7b36-4aff-846c-ec3641081e94)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 36.83 161.29 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7cfa0d9c-b35f-4a30-bd6e-fe724ea3604e) + (property "Reference" "U6" (id 0) (at 52.07 159.385 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 52.07 163.195 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 45.72 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 45.72 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d6f9492a-ed17-4b1c-9aa6-6fac8e1712d4)) + (pin "2" (uuid 45ad4223-c51f-4c9e-8df6-960918ef0f49)) + (pin "3" (uuid f9b483bf-874d-4952-a832-1efb65bbed21)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 181.61 162.56 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7df8fc4c-f1f0-47d5-9e50-a85bd83a5c1d) + (property "Reference" "U22" (id 0) (at 196.85 160.655 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 196.85 164.465 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 190.5 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 190.5 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b0668d31-63d5-4bb6-b5ca-aacf48e5f37f)) + (pin "2" (uuid 797f48d6-a46b-460a-a804-667ca9dd597f)) + (pin "3" (uuid 6224931c-094b-4b62-9d21-393a300a41c4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 231.14 -13.97 270) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8069c54a-8ffa-4ecb-95cb-f633c878f44b) + (property "Reference" "U1" (id 0) (at 233.68 -13.97 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 233.68 -11.43 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 231.14 -13.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 231.14 -13.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 815f7fa1-cab8-4b14-a264-b432df1d12ba)) + (pin "2" (uuid f2fc5419-7b6f-45d7-9845-7f185961418c)) + (pin "3" (uuid 190d3a59-a4d1-4014-9d13-ab90d1521888)) + (pin "4" (uuid 3c6d2f4a-e002-4563-9b69-68ad86bfce52)) + (pin "5" (uuid 94d4c413-2e5f-4704-8b36-bf69353640b8)) + (pin "6" (uuid 807bde47-7baf-477f-a395-dca5189f1a1b)) + (pin "7" (uuid 4670937c-0666-48df-b175-b46e8055f00d)) + (pin "8" (uuid 0e917f2d-f71c-42e6-b664-29cfcdc284dd)) + (pin "9" (uuid 8ee57bd2-b9cd-4834-b973-8c002c20c782)) + (pin "10" (uuid d3377156-e8dc-4c9a-8b2a-3ee12e530d23)) + (pin "11" (uuid 2f3e42ae-6021-415b-a5f7-505f20f78e73)) + (pin "12" (uuid 5a09e932-92b4-4614-8680-095ff8ed0db1)) + (pin "13" (uuid 2671e90c-7eb6-49f1-b3a1-2f8c4b49c72d)) + (pin "14" (uuid ac01d6ff-cf89-4c52-825c-23db155abf70)) + (pin "15" (uuid 385dfdaa-a267-4d58-8b08-8357ed87c4d8)) + (pin "16" (uuid 71f64060-0864-4f66-a97a-7f7e5dd6e696)) + (pin "17" (uuid 598abf57-c8b8-4b5a-be45-2c413709e79d)) + (pin "18" (uuid 6fe4dc52-8cdc-4c55-a2cc-068204c94350)) + (pin "19" (uuid d377e768-d56b-4bb7-b2b4-91a398303761)) + (pin "20" (uuid 270dd956-857e-4c5d-b490-3f89910219d5)) + (pin "21" (uuid 82423386-edf2-4ced-a920-3fcfd6b06be0)) + (pin "22" (uuid cec5593e-d1e9-4cbd-a8ff-f6ec3178d65d)) + (pin "23" (uuid 3316d97f-772f-406a-9e03-9ed9bdf30599)) + (pin "24" (uuid ec2ebc4e-ab90-4977-a865-544fc2321d66)) + (pin "25" (uuid 9d28b9be-b3d4-4355-95fa-b58789b4371a)) + (pin "26" (uuid 77766c4c-7f9e-40be-a1e0-d8c99de470f5)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 287.02 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 82989f58-ea9f-4cb4-9874-847352d36e20) + (property "Reference" "U33" (id 0) (at 289.0394 40.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 289.0394 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 287.02 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 287.02 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ef775db1-30b3-4c21-9e92-0bd2b2c922e2)) + (pin "2" (uuid f8b394df-19b7-42de-9e7b-640f9463e0d5)) + (pin "3" (uuid be1465e3-0f05-4f1e-86ad-8385884310a8)) + (pin "4" (uuid 01cc4da2-1add-44f9-a299-3b7fa5a1cc6f)) + (pin "5" (uuid e4199a8f-cad6-4f45-9efc-11fa531bc9e4)) + (pin "6" (uuid febfdad2-8f16-4e76-b474-926a80301f6d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -78.74 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 86cfb152-3dd1-4f26-80f8-554c9dce550a) + (property "Reference" "U1" (id 0) (at -78.105 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -78.105 104.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -78.74 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -78.74 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b7ab593f-d80d-445d-824f-43b144ffa22c)) + (pin "2" (uuid c1f23949-ae83-4a66-8fb6-2bda73dd5dfe)) + (pin "3" (uuid 1759f628-926c-4800-8790-59e78ed2af6d)) + (pin "4" (uuid c7b99089-4d2f-4444-9b93-80cc3aa67252)) + (pin "5" (uuid 4a0ae9cb-3245-4f69-8bcd-2a33ebd2648b)) + (pin "6" (uuid b3e3ea15-86ff-4297-b4d5-efb9e3be4c83)) + (pin "7" (uuid e03d5d0c-5999-4083-a3e3-d82ac743e253)) + (pin "8" (uuid 3fd2d6e5-024c-4794-92b6-fab64b64c6fc)) + (pin "9" (uuid 10d99119-570e-4e93-94a2-61c84f0d23a9)) + (pin "10" (uuid 67346e88-6617-412c-a26a-a7eeccbdb91b)) + (pin "11" (uuid f4d57be4-7dc7-49c6-a040-03ddb9cfb970)) + (pin "12" (uuid 1c857f49-7a19-48f7-825b-ed16bd5681ec)) + (pin "13" (uuid 388999e9-3a47-476e-b9e9-52a270b671a8)) + (pin "14" (uuid 68d2049c-a465-42b4-bebb-78cfb4692da0)) + (pin "15" (uuid 75ec204c-2c66-4990-9d37-7d669594ddb3)) + (pin "16" (uuid f48d6117-af08-4ca7-a1c6-d328a8f88cfc)) + (pin "17" (uuid dd859c3d-7950-4e6e-b7e4-5ae46f312dc6)) + (pin "18" (uuid 5942a137-cb3a-4918-b704-e2488147ce90)) + (pin "19" (uuid b0e21df2-ba60-44e4-8448-04da9ce72363)) + (pin "20" (uuid 099a271d-90a6-470a-bc6b-934f47139cc6)) + (pin "21" (uuid e846109a-4a91-4111-a703-8d0bf7e3aff3)) + (pin "22" (uuid 3c23b529-f02f-4b90-9864-aa1e552f416b)) + (pin "23" (uuid 65676f35-ce24-4c87-ae2d-30a3b80ca8a7)) + (pin "24" (uuid 6279f5e6-0b86-40b4-94d6-96b3ae8c1942)) + (pin "25" (uuid 056bde40-40f7-4864-a5b3-9ed493dc037f)) + (pin "26" (uuid 27566faf-3ae6-4920-bcd2-c931adbfb7ca)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 190.5 184.15 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 86fd9100-a51d-4f15-a94a-687615a70ab3) + (property "Reference" "U23" (id 0) (at 193.04 182.88 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 193.04 186.69 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 189.23 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4b3f0099-551a-4e98-8dea-f4f989d7c838)) + (pin "2" (uuid fc67ea00-e133-425f-bd93-fb635f0a09fa)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 193.04 -13.97 270) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b6a3457-b498-4f3d-96db-859d2f66a9ce) + (property "Reference" "U1" (id 0) (at 195.58 -13.97 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 195.58 -11.43 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 193.04 -13.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 193.04 -13.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 853dfe0c-b779-4a27-a24d-82ae9c695129)) + (pin "2" (uuid d2a8a423-9433-47e9-a0e5-09979549be16)) + (pin "3" (uuid 712c0dec-a048-44f6-8963-5e4b37f3a770)) + (pin "4" (uuid fc16639a-ba8f-4364-991e-3117611cf233)) + (pin "5" (uuid fb087d2f-d2c8-46ed-b623-13e8444a6721)) + (pin "6" (uuid 841dc951-c8aa-4aa2-b01e-32f346f6d218)) + (pin "7" (uuid 109b1ea2-2684-44ae-8bd3-ce4c84ae8136)) + (pin "8" (uuid 341a3c52-8d3d-47f6-ac9b-1f86c8cfd4c5)) + (pin "9" (uuid 6b75c29e-23f5-4912-9f6c-04287699484b)) + (pin "10" (uuid bc529f27-e4dd-42a4-906a-6f41f8942c97)) + (pin "11" (uuid 255510fb-4f70-4dfe-8c58-0dee341a84dd)) + (pin "12" (uuid 564f72ba-c90a-4535-b4de-f353847ba294)) + (pin "13" (uuid d3335828-9fc2-4143-8fd2-d178f2f2e279)) + (pin "14" (uuid 672f0eb3-25bc-48c5-8101-e2b4629e817d)) + (pin "15" (uuid 9547e671-c88d-4f50-be90-566c4070cf8a)) + (pin "16" (uuid f8df4962-8f95-4cc7-862f-d72cb0f1fcf0)) + (pin "17" (uuid 8d69316c-6a4e-45c4-a48f-9bd35b3625ef)) + (pin "18" (uuid 0c0beb8b-785e-4243-8a83-321f98e99ff2)) + (pin "19" (uuid 10c93e6b-efa4-4061-acc6-b5dd6fdb582f)) + (pin "20" (uuid 0f763c4c-6835-44b0-8c66-b0899ca2cd78)) + (pin "21" (uuid 68051b2f-2aba-47b0-a4c7-388ab92d6240)) + (pin "22" (uuid e65f5139-1af4-48c6-ba7a-04351ce5135a)) + (pin "23" (uuid 6ba3a647-37b6-4893-bc14-7958b4d9fd0d)) + (pin "24" (uuid 3c36eaa0-e9a9-43f9-b532-064b7d1f86e1)) + (pin "25" (uuid 287ee475-3d9c-40ca-ab13-02cdd2e693ea)) + (pin "26" (uuid a679e1ef-4077-4f99-a8cd-16d7f32cbbe4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 154.94 184.15 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8c5feaad-eea6-4dab-908e-0b1ba76b6ba3) + (property "Reference" "U19" (id 0) (at 157.48 182.88 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 157.48 186.69 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 153.67 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 82b28d42-3128-4f6b-a15b-67ad5f9da7f3)) + (pin "2" (uuid 8ae698e2-f2f4-4816-ae8e-4747c027a464)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 193.04 24.13 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 96c6b936-d1ed-4278-94d5-ace3f9b99a2e) + (property "Reference" "U24" (id 0) (at 199.39 24.765 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 199.39 28.575 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 193.04 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 193.04 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid daeac276-7003-4c85-b837-81011836dc7a)) + (pin "2" (uuid 0d0b8e4d-5010-4bc4-9ab3-f00cddb8fc26)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 66.04 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9f4d13b6-cbaf-45b2-bc4c-d87d5872a9a7) + (property "Reference" "U9" (id 0) (at 68.0594 40.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 68.0594 44.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 66.04 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bec8489e-6b23-4672-b156-dca78b8a4cbf)) + (pin "2" (uuid 78386404-c5d3-4d8b-b283-e79f13f314be)) + (pin "3" (uuid 4e24bbcf-43c0-49c2-bb8f-2c385713fcb3)) + (pin "4" (uuid d7cf8f86-b37c-4cdd-9d92-965093a1e511)) + (pin "5" (uuid 2b344998-e3ce-428e-bd5f-2945744fe9ac)) + (pin "6" (uuid e79a6e5b-79ed-44d1-9fe8-03afd5c769e7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 309.88 233.68 90) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a0c866d4-97ca-437b-b270-ae4c843a5f1d) + (property "Reference" "U1" (id 0) (at 312.42 232.41 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 312.42 234.95 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 309.88 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 309.88 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 011ac386-80f7-4907-8559-af95e61a91bd)) + (pin "2" (uuid 42facf28-c369-4603-b744-e6eaf9f69565)) + (pin "3" (uuid a9263fbd-dca4-4f99-b6f4-f8ae3882035a)) + (pin "4" (uuid a174af47-48be-49d6-920b-4dabc5065237)) + (pin "5" (uuid 8cfdf2c9-f6a2-4169-940f-668a1c74f3b0)) + (pin "6" (uuid 3f40e10a-6c80-4473-89fa-c10e2cd70a56)) + (pin "7" (uuid c4047e37-c111-4aa4-8f69-d3388b22ce31)) + (pin "8" (uuid 8e343b90-bb89-42ea-bac7-2a56f744e46e)) + (pin "9" (uuid b76beadb-2489-42ee-8822-f052accef817)) + (pin "10" (uuid 55858956-8f02-4987-a9c5-c154bdb6f066)) + (pin "11" (uuid 9d0cf3fe-b268-4ad0-bfca-03b060b60db6)) + (pin "12" (uuid f9ae6b23-b88a-4967-aa8d-f89e1519a1e3)) + (pin "13" (uuid d631241c-7c2c-4cd2-9ba4-c354462f9eb2)) + (pin "14" (uuid c399a566-4f39-4cef-b508-61f1fdfce349)) + (pin "15" (uuid 618cdd5d-bf24-42ad-b13b-042999627495)) + (pin "16" (uuid c14f2849-a4ec-4bea-8de6-df6525dff6cc)) + (pin "17" (uuid 465cea97-b91a-4f22-8a0e-1efee1428b6c)) + (pin "18" (uuid 515d0e72-c1c6-4da9-b7d9-338bedbbad34)) + (pin "19" (uuid b542df4d-479d-4bea-8382-a6e6ad178da6)) + (pin "20" (uuid 9093a385-3c0c-4004-bc27-5a9eedd34bbe)) + (pin "21" (uuid 88feabaa-3258-49d4-b9c8-c51573f9a75a)) + (pin "22" (uuid 906079e7-6166-4165-9c9e-c0edd6703604)) + (pin "23" (uuid effbd7e4-6393-4ca1-b941-643fb9e42d7f)) + (pin "24" (uuid 30deacf1-9bae-495e-bc94-2a9485dae185)) + (pin "25" (uuid 86e6af7f-5344-46d4-bec7-a651169e8c9e)) + (pin "26" (uuid 1b657ff9-dcc8-42d7-be4d-baf4e7ad5e8c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 267.97 -17.78 270) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a2f4ffd2-efca-482b-9d9a-405e67c4bdc3) + (property "Reference" "U1" (id 0) (at 270.51 -17.78 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 270.51 -15.24 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 267.97 -17.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 -17.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d8d4cb0e-acdc-4793-927f-dfbd7b0eb726)) + (pin "2" (uuid 6a192e5f-59b5-42c2-96d5-30bd1f3684be)) + (pin "3" (uuid 2b2bdb5f-7f2b-4e17-b79b-023a6c0d230d)) + (pin "4" (uuid 3a3702ff-f69f-4af8-95de-164094bbf7b6)) + (pin "5" (uuid 38304173-d8ef-440c-b370-19eb200c1f69)) + (pin "6" (uuid 4eb87767-8763-42ab-a81e-6e27774aba50)) + (pin "7" (uuid c4a72c56-1426-45b0-a915-481d6fa80f52)) + (pin "8" (uuid 484f6c1f-58d1-40b3-a7ec-5206d9d6e76b)) + (pin "9" (uuid 7c98347c-7ad4-4ad3-bc21-6d098e2591ef)) + (pin "10" (uuid c4902868-8a07-4765-ada9-c221286b288e)) + (pin "11" (uuid fb1c3bd0-cbb6-4c49-bb9c-fcf6240809f4)) + (pin "12" (uuid e1fb0839-d41a-4824-a174-cac178bacb21)) + (pin "13" (uuid 92d8d3f6-0892-45ee-8ed8-2faf784af545)) + (pin "14" (uuid 11cb99ea-8e5f-45c2-a07f-06b992756ae7)) + (pin "15" (uuid 7b9bf1b4-5dcd-42f0-9d2f-e874b03ba95c)) + (pin "16" (uuid 117aa556-0911-417c-94df-07e67b38d0d3)) + (pin "17" (uuid 4d78cdc1-549c-4abb-bf5c-79d575fa5832)) + (pin "18" (uuid 6d63b8d1-71b7-404f-96cf-47b3b3ef8465)) + (pin "19" (uuid 5c02df94-cfa5-466d-b052-1a590ce24086)) + (pin "20" (uuid 69bc3099-989d-4d79-a7e0-29a083706b86)) + (pin "21" (uuid 9927feec-abc3-4798-9dca-059eb8a70c06)) + (pin "22" (uuid 70c93df9-6d89-4000-a5a4-a64e1e578654)) + (pin "23" (uuid bbf77d02-9c11-4234-842e-6c61118cac05)) + (pin "24" (uuid 90ec80b0-3758-4536-891d-5549cc6b1309)) + (pin "25" (uuid cceb2573-c0a5-4fdf-933a-0d0b0de5ed2e)) + (pin "26" (uuid c49357d3-04b1-47fd-8cbd-bfcbd43adc83)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 267.97 24.13 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid acde0654-b159-4242-9090-039fc1b4a151) + (property "Reference" "U32" (id 0) (at 274.32 24.765 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 274.32 28.575 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 267.97 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 16365f78-dbad-4a70-867d-2ba07590ca54)) + (pin "2" (uuid deb50e57-d576-4614-9f5d-8f09b5d75a18)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 217.17 163.83 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid acf433dc-5d95-403a-ad10-fd4c1b892370) + (property "Reference" "U26" (id 0) (at 232.41 161.925 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 232.41 165.735 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 226.06 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 226.06 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ef735681-31c2-4057-822c-a02b0ed10e39)) + (pin "2" (uuid 73b8f96b-3aa4-4f86-a558-19b8dcfb71db)) + (pin "3" (uuid a8426c77-cd2d-472f-ae1a-d972b29ee0bc)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 157.48 24.13 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid afc6559a-ae05-4e83-a89b-2a9362e7cb30) + (property "Reference" "U20" (id 0) (at 163.83 24.765 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 163.83 28.575 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 157.48 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 157.48 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2a159f0d-178f-4f91-be19-04a81adfe57d)) + (pin "2" (uuid 741490f3-9dc7-45c6-9a78-878970f2acea)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 73.66 161.29 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b12ecb77-6e96-40ed-837a-930d3d7be857) + (property "Reference" "U10" (id 0) (at 88.9 159.385 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 88.9 163.195 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 82.55 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8eb0b997-575c-49a3-9e70-bf88089ab9ef)) + (pin "2" (uuid 8718802e-fb3b-4abe-831f-97138ab0dab1)) + (pin "3" (uuid f578817f-ebd1-4cd0-9b41-df2c99d23b85)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 12.7 -15.24 270) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b668a415-9a07-489a-b478-5f94f8d065a6) + (property "Reference" "U1" (id 0) (at 15.24 -15.24 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 15.24 -12.7 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 12.7 -15.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 12.7 -15.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4fc8d5e6-0b6d-4fc3-a8c5-605b727267d8)) + (pin "2" (uuid 85a9892c-3e98-4cad-a04d-d21e4d75c5a6)) + (pin "3" (uuid a578c988-47e8-4164-b0af-88848ce277df)) + (pin "4" (uuid 48f0ee60-91bb-4b87-be68-04f1483797b9)) + (pin "5" (uuid 206649c9-401c-4d7a-bda1-d31920785698)) + (pin "6" (uuid a286e2d1-9e4b-412a-aba7-c02335f33c55)) + (pin "7" (uuid d98c1124-2f7c-4265-a48d-c7a3221caf92)) + (pin "8" (uuid 69ea9f1b-56f6-42f6-8829-687ada77b68f)) + (pin "9" (uuid 11591068-dab7-4ebb-a96c-33be528b3b7f)) + (pin "10" (uuid bacb7ca7-5599-4da5-8e85-2b7a2152ab12)) + (pin "11" (uuid 812e51df-56ab-4a76-b065-b0e7e4cf1fa5)) + (pin "12" (uuid 3f8455ce-158c-43de-ace9-439a1cd9f79d)) + (pin "13" (uuid d13b0cf3-11d9-43c7-94ff-1f0e751b187c)) + (pin "14" (uuid a1d7f6c6-330c-41ae-a513-7f2883a2b42c)) + (pin "15" (uuid 3c84fa62-3f3a-4983-9c02-ecdc2bc95f08)) + (pin "16" (uuid 5ce89311-6472-408f-b116-66a5f3398bea)) + (pin "17" (uuid 8a1ed801-84b8-4f69-bc4c-b0f9111526eb)) + (pin "18" (uuid c33a631d-93cc-45c6-b015-6843b7029713)) + (pin "19" (uuid cbd5f0e0-7c86-4fea-bd51-b0bd67da0188)) + (pin "20" (uuid 1b4b00ed-1b66-4084-8998-508e044fe59d)) + (pin "21" (uuid 08590b38-258b-487e-8363-8031f4a3e9c6)) + (pin "22" (uuid 609b1465-5291-44ae-ae46-6fd191a58343)) + (pin "23" (uuid 3c52ce22-594f-4c54-8afc-2cddc2b34fae)) + (pin "24" (uuid 0a86bab8-99ee-4733-98aa-c4b1208b4cc3)) + (pin "25" (uuid 495dca04-2e25-4f0b-aab0-b5d9bea7ac42)) + (pin "26" (uuid 8011d788-b385-44f0-a428-378901633130)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 190.5 232.41 90) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b867018b-2d01-4470-9dd0-4001006a21ad) + (property "Reference" "U1" (id 0) (at 193.04 231.14 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 193.04 233.68 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 190.5 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 190.5 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f7d51ce-0cc1-4912-8ffa-709b7346338b)) + (pin "2" (uuid f5841728-70d4-4053-98cf-d89d821f420f)) + (pin "3" (uuid 29563a84-85e8-4df8-a477-97578e08f094)) + (pin "4" (uuid 98a1e168-4705-487a-a5a9-5212f4a8fe4e)) + (pin "5" (uuid fdd27434-bef4-45bb-b46e-b2dd92b80091)) + (pin "6" (uuid af024e24-df8c-40ce-9058-be71edd50bf4)) + (pin "7" (uuid 292c5108-71f8-4fe8-b0e5-6d177182383c)) + (pin "8" (uuid 9937614c-fd31-4ae1-8c7a-bafc0d44cb0a)) + (pin "9" (uuid d2d51183-98a2-4c7b-86a0-7c6eb0262d03)) + (pin "10" (uuid 2009d07d-4a00-4573-87ba-cf9278fbb302)) + (pin "11" (uuid c28bbed4-0e49-4e40-bd6e-e6553c2d00e0)) + (pin "12" (uuid 2c9cfdae-fc93-45af-8a3b-f6ef5b505c78)) + (pin "13" (uuid e9aec7bb-ee78-4839-8c63-ae124faade0d)) + (pin "14" (uuid 0c6a4216-87f7-4727-a723-6a807e1137a3)) + (pin "15" (uuid 6620005a-d8a3-47d8-9f83-dee0b3b166c8)) + (pin "16" (uuid de761533-c974-485d-b027-b1ef2765e3e7)) + (pin "17" (uuid 2b54c05c-073b-4e08-94f7-ddb6c6cf7249)) + (pin "18" (uuid 3c957098-b01f-499d-8536-182f3866fe3c)) + (pin "19" (uuid f4d0ed1f-65fb-49a4-89bb-68cc4c9bceb2)) + (pin "20" (uuid 5ad63d96-ff82-4d23-90dc-3ceeb4843464)) + (pin "21" (uuid 24af4c7b-652d-474a-a9e9-60d9b7931ad2)) + (pin "22" (uuid 57ec26bc-e98c-45b8-88b6-c9d99174ddaf)) + (pin "23" (uuid ef9a3366-5737-456c-a1fa-4d0eb337c049)) + (pin "24" (uuid a11b4043-bd14-491a-b195-c56ce5d328c9)) + (pin "25" (uuid 93c9a657-34a3-4f8d-9849-eacbbbdba6a0)) + (pin "26" (uuid 602c0d5e-45e2-430e-bf6d-68ee594638cf)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 226.06 185.42 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b936f052-e722-43fa-a4fe-ef9efd621648) + (property "Reference" "U27" (id 0) (at 228.6 184.15 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 228.6 187.96 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 224.79 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 224.79 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 336f2ee4-e295-4444-b941-5ff3e9c6f1ee)) + (pin "2" (uuid 74c66271-8560-4e5d-a68a-2d27b2a7b2bc)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 110.49 162.56 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c248d337-46de-45db-ad0f-7ed094ad58ca) + (property "Reference" "U14" (id 0) (at 125.73 160.655 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 125.73 164.465 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 119.38 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 119.38 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dd2f5857-d783-4082-b155-86a1caa9cb2a)) + (pin "2" (uuid abbf1ac4-b3b4-4b02-9102-bc779e9fff74)) + (pin "3" (uuid 5e570d02-4117-4b74-a9b1-d681e761f81a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 121.92 -13.97 270) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3dbfc4b-8b45-463b-963d-cf83075199e8) + (property "Reference" "U1" (id 0) (at 124.46 -13.97 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 124.46 -11.43 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 121.92 -13.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 121.92 -13.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e21964e5-d64f-46e0-b36a-4f02b29ebef9)) + (pin "2" (uuid 67747dfd-630a-4876-a9b3-824f45c3a977)) + (pin "3" (uuid 3e420ce6-aa83-4cf5-a446-bf3cf1b20be3)) + (pin "4" (uuid 966f1396-4969-434b-9230-9a4392d2b31a)) + (pin "5" (uuid 01bd023a-42a9-40bc-bf21-08803041b720)) + (pin "6" (uuid 7bce0565-a246-4f20-8ace-db08b3824446)) + (pin "7" (uuid 7b50b3d8-d21d-476a-bbe1-6e325ec788ec)) + (pin "8" (uuid c487c732-cb14-4f38-9d30-5e11c455acb6)) + (pin "9" (uuid 3a4157b3-52c0-4d13-a6ca-12b0a4cf54d0)) + (pin "10" (uuid 432db84c-3bde-44d8-84d2-7a281dfc590a)) + (pin "11" (uuid 2806669d-3819-4259-ad07-3ea9123ed0ac)) + (pin "12" (uuid c3f680d0-68ca-4a6c-9af0-d0cb37b70598)) + (pin "13" (uuid 3b4168cd-3c6b-425c-b2ec-451b952d998c)) + (pin "14" (uuid a3044e51-6a6d-41b8-a816-9df182a52d87)) + (pin "15" (uuid 5300ef96-152a-4fd0-9643-cff9841948d4)) + (pin "16" (uuid d362153e-69c7-4ba5-a8d3-9fc8b05a655b)) + (pin "17" (uuid 5e384564-52bf-4bbd-b97a-a39442e0a80f)) + (pin "18" (uuid fc234d19-62bf-4fd9-8247-b4abc031dac3)) + (pin "19" (uuid e70bb879-43db-41e1-a6f9-a409d077c24b)) + (pin "20" (uuid 24322e9b-76d6-46d4-a63b-260e22d23b55)) + (pin "21" (uuid 6de027c2-077d-4f01-9396-ad678e990728)) + (pin "22" (uuid 0b1e26f3-1c38-407c-b5ea-ae081c8ebf79)) + (pin "23" (uuid e5b759dc-7126-40b6-9231-6d8ade703936)) + (pin "24" (uuid 35cf6f6a-a49e-41f3-89ea-ef38404533e6)) + (pin "25" (uuid d8292a59-7718-489b-a1f3-fea1dc5aa81f)) + (pin "26" (uuid df426ea6-735a-4680-b278-a12b8508082e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -78.74 134.62 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid df565139-d364-4033-a630-0ceb78789f0f) + (property "Reference" "U1" (id 0) (at -78.105 129.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -78.105 132.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -78.74 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -78.74 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6bc8bd97-b567-424a-b7eb-8e3522d503ab)) + (pin "2" (uuid 05419c42-9b2a-4bbd-a2d6-451aff5b8972)) + (pin "3" (uuid 897dd56e-cc4c-4c05-80c8-a2668ea2db83)) + (pin "4" (uuid 2f54ef06-5f4b-467a-a9b9-a0ea9be4d4bf)) + (pin "5" (uuid add6216a-6166-4f04-84df-be2115c155ad)) + (pin "6" (uuid 25deed3c-7ec7-45c7-9922-475c3b7ce82d)) + (pin "7" (uuid c6bcbcc5-7a6d-44f0-ba93-9b666eb23e96)) + (pin "8" (uuid b41bea27-4dec-4857-927a-013b62a55f51)) + (pin "9" (uuid eac9a328-dc6b-4ddf-8164-71e8f57609c4)) + (pin "10" (uuid c88a7c66-7f4b-4177-af6f-b78a39d72080)) + (pin "11" (uuid 5a3ab2f3-5ff1-411f-bc91-ca238cb07085)) + (pin "12" (uuid 0de7c33b-61fd-41c0-8bb8-f99c25b36b31)) + (pin "13" (uuid dba05554-71b6-4da7-bfb6-8630f6f6ccef)) + (pin "14" (uuid 14442e23-40f2-4161-9baa-e5bcd0ba5f51)) + (pin "15" (uuid 5c1d29ca-391c-469f-abbb-8ef167d99987)) + (pin "16" (uuid 60c225d6-3c6b-4b0d-8ad9-d8603e72c702)) + (pin "17" (uuid 68853b5d-3b7e-48cb-8767-21063ce1861b)) + (pin "18" (uuid 327bbcc2-d1bd-4be6-a958-6b407c1a55bd)) + (pin "19" (uuid e743fa37-37a9-4c29-98e4-a467be5f3d5b)) + (pin "20" (uuid d36a7dd9-e22b-44fb-b0c2-1ae375946b6e)) + (pin "21" (uuid 2e70abdd-6b2b-44be-bd96-2daa626d8652)) + (pin "22" (uuid 214aa942-b867-4f70-8cb7-ca093418b71d)) + (pin "23" (uuid ffc86f7f-abd4-4afa-8e6f-b6d32b7e3fe8)) + (pin "24" (uuid ca3f8768-6e4f-4198-9222-fd27b228a385)) + (pin "25" (uuid 844c4e75-0a02-4000-b271-5eccafcb44ea)) + (pin "26" (uuid 6f096df3-344a-46d1-bc15-413ce4edf566)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 86.36 26.67 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f032d634-5c84-497e-b901-f06a937d802a) + (property "Reference" "U12" (id 0) (at 92.71 27.305 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 92.71 31.115 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 86.36 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d1dc520d-8656-4227-bd0f-539c6fd79668)) + (pin "2" (uuid 0ce028eb-ce84-4152-9e9d-eaca5fea9171)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 146.05 162.56 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f91529a3-078f-47c9-9e8a-8ca30376562c) + (property "Reference" "U18" (id 0) (at 161.29 160.655 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tristate" (id 1) (at 161.29 164.465 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 154.94 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 154.94 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5b660938-a426-4e84-be59-085c6e995f95)) + (pin "2" (uuid 94e42611-a043-4edc-b4fe-7e2e5cc23abc)) + (pin "3" (uuid 8f8f89a8-f5e7-49fb-b875-dd4ab43b15ab)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/86cfb152-3dd1-4f26-80f8-554c9dce550a" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/b668a415-9a07-489a-b478-5f94f8d065a6" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/2e5a85b8-efb0-4fda-b2c7-e5a31307d3ff" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/669f69c2-5115-467c-857f-c1409ce1f1ee" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/d3dbfc4b-8b45-463b-963d-cf83075199e8" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/21bcc4e3-51c2-4db8-aa3b-267fcb67d0e7" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/8b6a3457-b498-4f3d-96db-859d2f66a9ce" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/8069c54a-8ffa-4ecb-95cb-f633c878f44b" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/a2f4ffd2-efca-482b-9d9a-405e67c4bdc3" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/1cd4d2d1-7a35-4127-b858-36647c1c1ddb" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/df565139-d364-4033-a630-0ceb78789f0f" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/a0c866d4-97ca-437b-b270-ae4c843a5f1d" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/3a6f39e9-1f35-42ce-a707-fbb5e9c05850" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/021aef50-ba54-4446-8d68-88b332a955bf" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/b867018b-2d01-4470-9dd0-4001006a21ad" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/52ffb0ab-9ef7-49d4-9aea-fbde1de1b971" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/1f96f9a5-2615-4977-bc99-dd71166b6722" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/11604497-a1bc-4211-af29-1e46b39d597d" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/128f5a49-71c0-45e2-982f-0cc648606cd4" + (reference "U1") (unit 19) (value "PORT") (footprint "") + ) + (path "/7ba9181c-c16d-4eda-9daa-6a66a84ae045" + (reference "U1") (unit 20) (value "PORT") (footprint "") + ) + (path "/3947e83e-f122-41e3-a5d4-7b58787f440e" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3d2a45fe-d99e-47cb-bb91-c7df60112d87" + (reference "U3") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/689e9eb4-e6a4-420f-88fd-9f1c8da662f4" + (reference "U4") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/1cc1d726-b700-4b02-9795-cffb9ab66437" + (reference "U5") (unit 1) (value "d_dff") (footprint "") + ) + (path "/7cfa0d9c-b35f-4a30-bd6e-fe724ea3604e" + (reference "U6") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/1abc9c2a-802d-4f40-ba4e-a9d0bb130e4e" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0e969653-230a-4290-ab60-41f0d3ef3e9e" + (reference "U8") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/9f4d13b6-cbaf-45b2-bc4c-d87d5872a9a7" + (reference "U9") (unit 1) (value "d_dff") (footprint "") + ) + (path "/b12ecb77-6e96-40ed-837a-930d3d7be857" + (reference "U10") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/443a0da5-1e3b-4c9d-bbc9-c05356b248b3" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f032d634-5c84-497e-b901-f06a937d802a" + (reference "U12") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/1d9aadb4-8b9f-45b9-b76c-3d0b14e88827" + (reference "U13") (unit 1) (value "d_dff") (footprint "") + ) + (path "/c248d337-46de-45db-ad0f-7ed094ad58ca" + (reference "U14") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/26b7e030-bc4c-4148-a48f-8fd54836f3d2" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/390a7721-b25d-4995-8e9a-a6ef43c17a87" + (reference "U16") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/19d7a954-0d1a-4bd8-a9cf-5484e2564d11" + (reference "U17") (unit 1) (value "d_dff") (footprint "") + ) + (path "/f91529a3-078f-47c9-9e8a-8ca30376562c" + (reference "U18") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/8c5feaad-eea6-4dab-908e-0b1ba76b6ba3" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/afc6559a-ae05-4e83-a89b-2a9362e7cb30" + (reference "U20") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/6f66366e-1686-4036-a39c-a4133f47b7b2" + (reference "U21") (unit 1) (value "d_dff") (footprint "") + ) + (path "/7df8fc4c-f1f0-47d5-9e50-a85bd83a5c1d" + (reference "U22") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/86fd9100-a51d-4f15-a94a-687615a70ab3" + (reference "U23") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/96c6b936-d1ed-4278-94d5-ace3f9b99a2e" + (reference "U24") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/6b126a90-c716-4531-a1db-13a1d093234c" + (reference "U25") (unit 1) (value "d_dff") (footprint "") + ) + (path "/acf433dc-5d95-403a-ad10-fd4c1b892370" + (reference "U26") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/b936f052-e722-43fa-a4fe-ef9efd621648" + (reference "U27") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/67a4989e-52d4-4331-aec0-59c174bc0b63" + (reference "U28") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/696e7e77-1951-4ae0-bb93-35e1d0f3f76b" + (reference "U29") (unit 1) (value "d_dff") (footprint "") + ) + (path "/064b829f-0c56-4813-8cb6-92a64c76fa88" + (reference "U30") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/7302aa59-66ba-4090-81ea-53a5a0a3ce06" + (reference "U31") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/acde0654-b159-4242-9090-039fc1b4a151" + (reference "U32") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/82989f58-ea9f-4cb4-9874-847352d36e20" + (reference "U33") (unit 1) (value "d_dff") (footprint "") + ) + (path "/296f8772-e323-4174-ba20-c06adbba8318" + (reference "U34") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/1b152f34-0c61-44f7-aa9a-7a80db0fba95" + (reference "U35") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/IN74LV574/IN74LV574.sub b/library/SubcircuitLibrary/IN74LV574/IN74LV574.sub new file mode 100644 index 000000000..aace7da37 --- /dev/null +++ b/library/SubcircuitLibrary/IN74LV574/IN74LV574.sub @@ -0,0 +1,142 @@ +* Subcircuit IN74LV574 +.subckt IN74LV574 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ unconnected-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ net-_u1-pad20_ +.title kicad schematic +* u5 net-_u4-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ d_dff +* u2 net-_u1-pad11_ net-_u10-pad2_ d_inverter +* u3 net-_u1-pad1_ net-_u13-pad2_ d_buffer +* u21 net-_u20-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u21-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ d_dff +* u14 net-_u13-pad5_ net-_u10-pad2_ net-_u14-pad3_ d_tristate +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_tristate +* u6 net-_u5-pad5_ net-_u10-pad2_ net-_u6-pad3_ d_tristate +* u9 net-_u8-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u9-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ d_dff +* u13 net-_u12-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u13-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ d_dff +* u8 net-_u1-pad3_ net-_u8-pad2_ d_buffer +* u4 net-_u1-pad2_ net-_u4-pad2_ d_buffer +* u29 net-_u28-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u29-pad4_ net-_u29-pad5_ unconnected-_u29-pad6_ d_dff +* u25 net-_u24-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u25-pad4_ net-_u25-pad5_ unconnected-_u25-pad6_ d_dff +* u26 net-_u25-pad5_ net-_u10-pad2_ net-_u26-pad3_ d_tristate +* u22 net-_u21-pad5_ net-_u10-pad2_ net-_u22-pad3_ d_tristate +* u23 net-_u22-pad3_ net-_u1-pad15_ d_inverter +* u30 net-_u29-pad5_ net-_u10-pad2_ net-_u30-pad3_ d_tristate +* u34 net-_u33-pad5_ net-_u10-pad2_ net-_u34-pad3_ d_tristate +* u27 net-_u26-pad3_ net-_u1-pad14_ d_inverter +* u31 net-_u30-pad3_ net-_u1-pad13_ d_inverter +* u35 net-_u34-pad3_ net-_u1-pad12_ d_inverter +* u17 net-_u16-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_dff +* u16 net-_u1-pad5_ net-_u16-pad2_ d_buffer +* u12 net-_u1-pad4_ net-_u12-pad2_ d_buffer +* u20 net-_u1-pad6_ net-_u20-pad2_ d_buffer +* u24 net-_u1-pad7_ net-_u24-pad2_ d_buffer +* u32 net-_u1-pad9_ net-_u32-pad2_ d_buffer +* u33 net-_u32-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u33-pad4_ net-_u33-pad5_ unconnected-_u33-pad6_ d_dff +* u28 net-_u1-pad8_ net-_u28-pad2_ d_buffer +* u18 net-_u17-pad5_ net-_u10-pad2_ net-_u18-pad3_ d_tristate +* u19 net-_u18-pad3_ net-_u1-pad16_ d_inverter +* u15 net-_u14-pad3_ net-_u1-pad17_ d_inverter +* u11 net-_u10-pad3_ net-_u1-pad18_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad19_ d_inverter +a1 net-_u4-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ u5 +a2 net-_u1-pad11_ net-_u10-pad2_ u2 +a3 net-_u1-pad1_ net-_u13-pad2_ u3 +a4 net-_u20-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u21-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ u21 +a5 net-_u13-pad5_ net-_u10-pad2_ net-_u14-pad3_ u14 +a6 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ u10 +a7 net-_u5-pad5_ net-_u10-pad2_ net-_u6-pad3_ u6 +a8 net-_u8-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u9-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ u9 +a9 net-_u12-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u13-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ u13 +a10 net-_u1-pad3_ net-_u8-pad2_ u8 +a11 net-_u1-pad2_ net-_u4-pad2_ u4 +a12 net-_u28-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u29-pad4_ net-_u29-pad5_ unconnected-_u29-pad6_ u29 +a13 net-_u24-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u25-pad4_ net-_u25-pad5_ unconnected-_u25-pad6_ u25 +a14 net-_u25-pad5_ net-_u10-pad2_ net-_u26-pad3_ u26 +a15 net-_u21-pad5_ net-_u10-pad2_ net-_u22-pad3_ u22 +a16 net-_u22-pad3_ net-_u1-pad15_ u23 +a17 net-_u29-pad5_ net-_u10-pad2_ net-_u30-pad3_ u30 +a18 net-_u33-pad5_ net-_u10-pad2_ net-_u34-pad3_ u34 +a19 net-_u26-pad3_ net-_u1-pad14_ u27 +a20 net-_u30-pad3_ net-_u1-pad13_ u31 +a21 net-_u34-pad3_ net-_u1-pad12_ u35 +a22 net-_u16-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a23 net-_u1-pad5_ net-_u16-pad2_ u16 +a24 net-_u1-pad4_ net-_u12-pad2_ u12 +a25 net-_u1-pad6_ net-_u20-pad2_ u20 +a26 net-_u1-pad7_ net-_u24-pad2_ u24 +a27 net-_u1-pad9_ net-_u32-pad2_ u32 +a28 net-_u32-pad2_ net-_u13-pad2_ net-_u1-pad20_ unconnected-_u33-pad4_ net-_u33-pad5_ unconnected-_u33-pad6_ u33 +a29 net-_u1-pad8_ net-_u28-pad2_ u28 +a30 net-_u17-pad5_ net-_u10-pad2_ net-_u18-pad3_ u18 +a31 net-_u18-pad3_ net-_u1-pad16_ u19 +a32 net-_u14-pad3_ net-_u1-pad17_ u15 +a33 net-_u10-pad3_ net-_u1-pad18_ u11 +a34 net-_u6-pad3_ net-_u1-pad19_ u7 +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u5 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u21 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u14 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u10 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u9 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u13 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u8 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u4 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u29 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u25 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u26 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u22 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u30 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u34 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u27 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u35 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u17 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u16 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u12 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u20 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u24 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u32 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u33 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u28 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u18 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends IN74LV574 \ No newline at end of file diff --git a/library/SubcircuitLibrary/IN74LV574/IN74LV574_Previous_Values.xml b/library/SubcircuitLibrary/IN74LV574/IN74LV574_Previous_Values.xml new file mode 100644 index 000000000..196ba4d67 --- /dev/null +++ b/library/SubcircuitLibrary/IN74LV574/IN74LV574_Previous_Values.xml @@ -0,0 +1 @@ +d_dffd_bufferd_inverterd_bufferd_bufferd_dffd_bufferd_dffd_bufferd_dffd_bufferd_bufferd_dffd_bufferd_bufferd_dffd_dffd_dffd_inverterd_tristated_inverterd_tristated_inverterd_tristated_tristated_inverterd_inverterd_tristated_tristated_inverterd_tristated_inverterd_inverterd_tristatetruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/IN74LV574/_autosave-IN74LV574.sch b/library/SubcircuitLibrary/IN74LV574/_autosave-IN74LV574.sch new file mode 100644 index 000000000..bf994c476 --- /dev/null +++ b/library/SubcircuitLibrary/IN74LV574/_autosave-IN74LV574.sch @@ -0,0 +1,886 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 500 4200 +Connection ~ 1200 5300 +Connection ~ 1950 4200 +Connection ~ 2600 1000 +Connection ~ 2750 5300 +Connection ~ 3350 4200 +Connection ~ 4050 1000 +Connection ~ 4150 5300 +Connection ~ 4850 4200 +Connection ~ 5450 1000 +Connection ~ 5500 5300 +Connection ~ 6250 4200 +Connection ~ 6900 1000 +Connection ~ 6950 5300 +Connection ~ 7650 4200 +Connection ~ 8300 1000 +Connection ~ 8350 5300 +Connection ~ 9100 4200 +Connection ~ 9800 1000 +Connection ~ 9800 5300 +Connection ~ 11300 1000 +NoConn ~ 1200 2850 +NoConn ~ 1750 2550 +NoConn ~ 2600 2850 +NoConn ~ 3150 2550 +NoConn ~ 4050 2850 +NoConn ~ 4600 2550 +NoConn ~ 5450 2850 +NoConn ~ 6000 2550 +NoConn ~ 6900 2850 +NoConn ~ 7450 2550 +NoConn ~ 8300 2850 +NoConn ~ 8850 2550 +NoConn ~ 9800 2850 +NoConn ~ 10350 2550 +NoConn ~ 11300 2850 +NoConn ~ 11850 2550 +Wire Wire Line + -2850 4200 -1100 4200 +Wire Wire Line + -2850 5300 -1050 5300 +Wire Wire Line + -450 5300 1200 5300 +Wire Wire Line + 50 4200 500 4200 +Wire Wire Line + 500 -300 500 500 +Wire Wire Line + 500 1650 500 1900 +Wire Wire Line + 500 2550 500 4200 +Wire Wire Line + 500 4200 1950 4200 +Wire Wire Line + 650 1900 500 1900 +Wire Wire Line + 650 2550 500 2550 +Wire Wire Line + 1200 1000 2600 1000 +Wire Wire Line + 1200 1600 1200 1000 +Wire Wire Line + 1200 5300 2750 5300 +Wire Wire Line + 1200 6300 1200 5300 +Wire Wire Line + 1500 6300 1200 6300 +Wire Wire Line + 1750 1900 1800 1900 +Wire Wire Line + 1800 1900 1800 5750 +Wire Wire Line + 1800 7500 1800 8850 +Wire Wire Line + 1900 -250 1900 600 +Wire Wire Line + 1900 1750 1900 1900 +Wire Wire Line + 1950 2550 1950 4200 +Wire Wire Line + 1950 4200 3350 4200 +Wire Wire Line + 2050 1900 1900 1900 +Wire Wire Line + 2050 2550 1950 2550 +Wire Wire Line + 2600 1000 2600 1600 +Wire Wire Line + 2600 1000 4050 1000 +Wire Wire Line + 2750 5300 2750 6300 +Wire Wire Line + 2750 5300 4150 5300 +Wire Wire Line + 2950 6300 2750 6300 +Wire Wire Line + 3150 1900 3250 1900 +Wire Wire Line + 3250 1900 3250 5750 +Wire Wire Line + 3250 7500 3250 8850 +Wire Wire Line + 3350 2550 3350 4200 +Wire Wire Line + 3350 4200 4850 4200 +Wire Wire Line + 3400 -300 3400 550 +Wire Wire Line + 3400 1700 3400 1900 +Wire Wire Line + 3500 1900 3400 1900 +Wire Wire Line + 3500 2550 3350 2550 +Wire Wire Line + 4050 1000 4050 1600 +Wire Wire Line + 4050 1000 5450 1000 +Wire Wire Line + 4150 5300 4150 6350 +Wire Wire Line + 4150 5300 5500 5300 +Wire Wire Line + 4400 6350 4150 6350 +Wire Wire Line + 4600 1900 4700 1900 +Wire Wire Line + 4700 1900 4700 5800 +Wire Wire Line + 4700 7550 4700 8900 +Wire Wire Line + 4800 -300 4800 500 +Wire Wire Line + 4800 1650 4800 1900 +Wire Wire Line + 4850 2550 4850 4200 +Wire Wire Line + 4850 4200 6250 4200 +Wire Wire Line + 4900 1900 4800 1900 +Wire Wire Line + 4900 2550 4850 2550 +Wire Wire Line + 5450 1000 5450 1600 +Wire Wire Line + 5450 1000 6900 1000 +Wire Wire Line + 5500 5300 5500 6350 +Wire Wire Line + 5500 5300 6950 5300 +Wire Wire Line + 5800 6350 5500 6350 +Wire Wire Line + 6000 1900 6100 1900 +Wire Wire Line + 6100 1900 6100 5800 +Wire Wire Line + 6100 7550 6100 8900 +Wire Wire Line + 6200 -300 6200 450 +Wire Wire Line + 6200 1600 6200 1900 +Wire Wire Line + 6250 2550 6250 4200 +Wire Wire Line + 6250 4200 7650 4200 +Wire Wire Line + 6350 1900 6200 1900 +Wire Wire Line + 6350 2550 6250 2550 +Wire Wire Line + 6900 1000 6900 1600 +Wire Wire Line + 6900 1000 8300 1000 +Wire Wire Line + 6950 5300 6950 6350 +Wire Wire Line + 6950 5300 8350 5300 +Wire Wire Line + 7200 6350 6950 6350 +Wire Wire Line + 7450 1900 7500 1900 +Wire Wire Line + 7500 1900 7500 5800 +Wire Wire Line + 7500 7550 7500 8900 +Wire Wire Line + 7600 -300 7600 450 +Wire Wire Line + 7600 1600 7600 1900 +Wire Wire Line + 7650 2550 7650 4200 +Wire Wire Line + 7650 4200 9100 4200 +Wire Wire Line + 7750 1900 7600 1900 +Wire Wire Line + 7750 2550 7650 2550 +Wire Wire Line + 8300 1000 8300 1600 +Wire Wire Line + 8300 1000 9800 1000 +Wire Wire Line + 8350 5300 8350 6400 +Wire Wire Line + 8350 5300 9800 5300 +Wire Wire Line + 8600 6400 8350 6400 +Wire Wire Line + 8850 1900 8950 1900 +Wire Wire Line + 8900 5850 8950 5850 +Wire Wire Line + 8900 7600 8900 8950 +Wire Wire Line + 8950 1900 8950 5850 +Wire Wire Line + 9100 -300 9100 450 +Wire Wire Line + 9100 1600 9100 1900 +Wire Wire Line + 9100 2550 9100 4200 +Wire Wire Line + 9100 4200 10750 4200 +Wire Wire Line + 9250 1900 9100 1900 +Wire Wire Line + 9250 2550 9100 2550 +Wire Wire Line + 9800 1000 9800 1600 +Wire Wire Line + 9800 1000 11300 1000 +Wire Wire Line + 9800 5300 11500 5300 +Wire Wire Line + 9800 6350 9800 5300 +Wire Wire Line + 10150 6350 9800 6350 +Wire Wire Line + 10350 1900 10450 1900 +Wire Wire Line + 10450 1900 10450 5800 +Wire Wire Line + 10450 7550 10450 8900 +Wire Wire Line + 10550 -450 10550 450 +Wire Wire Line + 10550 1600 10550 1900 +Wire Wire Line + 10750 1900 10550 1900 +Wire Wire Line + 10750 4200 10750 2550 +Wire Wire Line + 11300 1000 11300 1600 +Wire Wire Line + 11300 1000 12850 1000 +Wire Wire Line + 11500 6500 11500 5300 +Wire Wire Line + 11850 1900 12200 1900 +Wire Wire Line + 11900 6500 11500 6500 +Wire Wire Line + 12200 1900 12200 5950 +Wire Wire Line + 12200 7700 12200 8950 +Wire Wire Line + 12700 800 13350 800 +Wire Wire Line + 12850 1400 12850 1000 +Wire Wire Line + 13100 1400 12850 1400 +$Comp +L eSim_Miscellaneous:PORT U1 +U 1 1 00000000 +P -3100 4200 +F 0 "U1" H -3075 4400 30 0000 C CNN +F 1 "PORT" H -3075 4300 30 0000 C CNN +F 2 "" H -3100 4200 60 0000 C CNN +F 3 "" H -3100 4200 60 0000 C CNN + 1 -3100 4200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 11 1 00000000 +P -3100 5300 +F 0 "U1" H -3075 5500 30 0000 C CNN +F 1 "PORT" H -3075 5400 30 0000 C CNN +F 2 "" H -3100 5300 60 0000 C CNN +F 3 "" H -3100 5300 60 0000 C CNN + 11 -3100 5300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 2 1 00000000 +P 500 -550 +F 0 "U1" V 500 -450 30 0000 L CNN +F 1 "PORT" V 600 -450 30 0000 L CNN +F 2 "" H 500 -550 60 0000 C CNN +F 3 "" H 500 -550 60 0000 C CNN + 2 500 -550 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 19 1 00000000 +P 1800 9100 +F 0 "U1" V 1850 9000 30 0000 R CNN +F 1 "PORT" V 1750 9000 30 0000 R CNN +F 2 "" H 1800 9100 60 0000 C CNN +F 3 "" H 1800 9100 60 0000 C CNN + 19 1800 9100 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 3 1 00000000 +P 1900 -500 +F 0 "U1" V 1900 -400 30 0000 L CNN +F 1 "PORT" V 2000 -400 30 0000 L CNN +F 2 "" H 1900 -500 60 0000 C CNN +F 3 "" H 1900 -500 60 0000 C CNN + 3 1900 -500 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 18 1 00000000 +P 3250 9100 +F 0 "U1" V 3300 9000 30 0000 R CNN +F 1 "PORT" V 3200 9000 30 0000 R CNN +F 2 "" H 3250 9100 60 0000 C CNN +F 3 "" H 3250 9100 60 0000 C CNN + 18 3250 9100 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 4 1 00000000 +P 3400 -550 +F 0 "U1" V 3400 -450 30 0000 L CNN +F 1 "PORT" V 3500 -450 30 0000 L CNN +F 2 "" H 3400 -550 60 0000 C CNN +F 3 "" H 3400 -550 60 0000 C CNN + 4 3400 -550 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 17 1 00000000 +P 4700 9150 +F 0 "U1" V 4750 9050 30 0000 R CNN +F 1 "PORT" V 4650 9050 30 0000 R CNN +F 2 "" H 4700 9150 60 0000 C CNN +F 3 "" H 4700 9150 60 0000 C CNN + 17 4700 9150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 5 1 00000000 +P 4800 -550 +F 0 "U1" V 4800 -450 30 0000 L CNN +F 1 "PORT" V 4900 -450 30 0000 L CNN +F 2 "" H 4800 -550 60 0000 C CNN +F 3 "" H 4800 -550 60 0000 C CNN + 5 4800 -550 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 16 1 00000000 +P 6100 9150 +F 0 "U1" V 6150 9050 30 0000 R CNN +F 1 "PORT" V 6050 9050 30 0000 R CNN +F 2 "" H 6100 9150 60 0000 C CNN +F 3 "" H 6100 9150 60 0000 C CNN + 16 6100 9150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 6 1 00000000 +P 6200 -550 +F 0 "U1" V 6200 -450 30 0000 L CNN +F 1 "PORT" V 6300 -450 30 0000 L CNN +F 2 "" H 6200 -550 60 0000 C CNN +F 3 "" H 6200 -550 60 0000 C CNN + 6 6200 -550 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 15 1 00000000 +P 7500 9150 +F 0 "U1" V 7550 9050 30 0000 R CNN +F 1 "PORT" V 7450 9050 30 0000 R CNN +F 2 "" H 7500 9150 60 0000 C CNN +F 3 "" H 7500 9150 60 0000 C CNN + 15 7500 9150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 7 1 00000000 +P 7600 -550 +F 0 "U1" V 7600 -450 30 0000 L CNN +F 1 "PORT" V 7700 -450 30 0000 L CNN +F 2 "" H 7600 -550 60 0000 C CNN +F 3 "" H 7600 -550 60 0000 C CNN + 7 7600 -550 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 14 1 00000000 +P 8900 9200 +F 0 "U1" V 8950 9100 30 0000 R CNN +F 1 "PORT" V 8850 9100 30 0000 R CNN +F 2 "" H 8900 9200 60 0000 C CNN +F 3 "" H 8900 9200 60 0000 C CNN + 14 8900 9200 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 8 1 00000000 +P 9100 -550 +F 0 "U1" V 9100 -450 30 0000 L CNN +F 1 "PORT" V 9200 -450 30 0000 L CNN +F 2 "" H 9100 -550 60 0000 C CNN +F 3 "" H 9100 -550 60 0000 C CNN + 8 9100 -550 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 13 1 00000000 +P 10450 9150 +F 0 "U1" V 10500 9050 30 0000 R CNN +F 1 "PORT" V 10400 9050 30 0000 R CNN +F 2 "" H 10450 9150 60 0000 C CNN +F 3 "" H 10450 9150 60 0000 C CNN + 13 10450 9150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 9 1 00000000 +P 10550 -700 +F 0 "U1" V 10550 -600 30 0000 L CNN +F 1 "PORT" V 10650 -600 30 0000 L CNN +F 2 "" H 10550 -700 60 0000 C CNN +F 3 "" H 10550 -700 60 0000 C CNN + 9 10550 -700 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 12 1 00000000 +P 12200 9200 +F 0 "U1" V 12250 9100 30 0000 R CNN +F 1 "PORT" V 12150 9100 30 0000 R CNN +F 2 "" H 12200 9200 60 0000 C CNN +F 3 "" H 12200 9200 60 0000 C CNN + 12 12200 9200 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 20 1 00000000 +P 13350 1400 +F 0 "U1" H 13200 1375 30 0000 R CNN +F 1 "PORT" H 13200 1475 30 0000 R CNN +F 2 "" H 13350 1400 60 0000 C CNN +F 3 "" H 13350 1400 60 0000 C CNN + 20 13350 1400 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 10 1 00000000 +P 13600 800 +F 0 "U1" H 13450 775 30 0000 R CNN +F 1 "PORT" H 13450 875 30 0000 R CNN +F 2 "" H 13600 800 60 0000 C CNN +F 3 "" H 13600 800 60 0000 C CNN + 10 13600 800 + -1 0 0 1 +$EndComp +$Comp +L eSim_Digital:d_inverter U2 +U 1 1 00000000 +P -750 5300 +F 0 "U2" H -750 5550 60 0000 C CNN +F 1 "d_inverter" H -750 5400 60 0000 C CNN +F 2 "" H -700 5250 60 0000 C CNN +F 3 "" H -700 5250 60 0000 C CNN + 1 -750 5300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U7 +U 1 1 00000000 +P 1800 7200 +F 0 "U7" V 1750 7300 60 0000 L CNN +F 1 "d_inverter" V 1900 7300 60 0000 L CNN +F 2 "" H 1850 7150 60 0000 C CNN +F 3 "" H 1850 7150 60 0000 C CNN + 1 1800 7200 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_inverter U11 +U 1 1 00000000 +P 3250 7200 +F 0 "U11" V 3200 7300 60 0000 L CNN +F 1 "d_inverter" V 3350 7300 60 0000 L CNN +F 2 "" H 3300 7150 60 0000 C CNN +F 3 "" H 3300 7150 60 0000 C CNN + 1 3250 7200 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_inverter U15 +U 1 1 00000000 +P 4700 7250 +F 0 "U15" V 4650 7350 60 0000 L CNN +F 1 "d_inverter" V 4800 7350 60 0000 L CNN +F 2 "" H 4750 7200 60 0000 C CNN +F 3 "" H 4750 7200 60 0000 C CNN + 1 4700 7250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_inverter U19 +U 1 1 00000000 +P 6100 7250 +F 0 "U19" V 6050 7350 60 0000 L CNN +F 1 "d_inverter" V 6200 7350 60 0000 L CNN +F 2 "" H 6150 7200 60 0000 C CNN +F 3 "" H 6150 7200 60 0000 C CNN + 1 6100 7250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_inverter U23 +U 1 1 00000000 +P 7500 7250 +F 0 "U23" V 7450 7350 60 0000 L CNN +F 1 "d_inverter" V 7600 7350 60 0000 L CNN +F 2 "" H 7550 7200 60 0000 C CNN +F 3 "" H 7550 7200 60 0000 C CNN + 1 7500 7250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_inverter U27 +U 1 1 00000000 +P 8900 7300 +F 0 "U27" V 8850 7400 60 0000 L CNN +F 1 "d_inverter" V 9000 7400 60 0000 L CNN +F 2 "" H 8950 7250 60 0000 C CNN +F 3 "" H 8950 7250 60 0000 C CNN + 1 8900 7300 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_inverter U31 +U 1 1 00000000 +P 10450 7250 +F 0 "U31" V 10400 7350 60 0000 L CNN +F 1 "d_inverter" V 10550 7350 60 0000 L CNN +F 2 "" H 10500 7200 60 0000 C CNN +F 3 "" H 10500 7200 60 0000 C CNN + 1 10450 7250 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_inverter U35 +U 1 1 00000000 +P 12200 7400 +F 0 "U35" V 12150 7500 60 0000 L CNN +F 1 "d_inverter" V 15750 7500 60 0000 L CNN +F 2 "" H 12250 7350 60 0000 C CNN +F 3 "" H 12250 7350 60 0000 C CNN + 1 12200 7400 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U3 +U 1 1 00000000 +P -600 4200 +F 0 "U3" H -525 4643 60 0000 C CNN +F 1 "d_buffer" H -525 4493 60 0000 C CNN +F 2 "" H -600 4200 60 0000 C CNN +F 3 "" H -600 4200 60 0000 C CNN + 1 -600 4200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U4 +U 1 1 00000000 +P 500 1000 +F 0 "U4" V 525 1250 60 0000 L CNN +F 1 "d_buffer" V 675 1250 60 0000 L CNN +F 2 "" H 500 1000 60 0000 C CNN +F 3 "" H 500 1000 60 0000 C CNN + 1 500 1000 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U8 +U 1 1 00000000 +P 1900 1100 +F 0 "U8" V 1925 1350 60 0000 L CNN +F 1 "d_buffer" V 2075 1350 60 0000 L CNN +F 2 "" H 1900 1100 60 0000 C CNN +F 3 "" H 1900 1100 60 0000 C CNN + 1 1900 1100 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U12 +U 1 1 00000000 +P 3400 1050 +F 0 "U12" V 3425 1300 60 0000 L CNN +F 1 "d_buffer" V 3575 1300 60 0000 L CNN +F 2 "" H 3400 1050 60 0000 C CNN +F 3 "" H 3400 1050 60 0000 C CNN + 1 3400 1050 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U16 +U 1 1 00000000 +P 4800 1000 +F 0 "U16" V 4825 1250 60 0000 L CNN +F 1 "d_buffer" V 4975 1250 60 0000 L CNN +F 2 "" H 4800 1000 60 0000 C CNN +F 3 "" H 4800 1000 60 0000 C CNN + 1 4800 1000 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U20 +U 1 1 00000000 +P 6200 950 +F 0 "U20" V 6225 1200 60 0000 L CNN +F 1 "d_buffer" V 6375 1200 60 0000 L CNN +F 2 "" H 6200 950 60 0000 C CNN +F 3 "" H 6200 950 60 0000 C CNN + 1 6200 950 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U24 +U 1 1 00000000 +P 7600 950 +F 0 "U24" V 7625 1200 60 0000 L CNN +F 1 "d_buffer" V 7775 1200 60 0000 L CNN +F 2 "" H 7600 950 60 0000 C CNN +F 3 "" H 7600 950 60 0000 C CNN + 1 7600 950 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U28 +U 1 1 00000000 +P 9100 950 +F 0 "U28" V 9125 1200 60 0000 L CNN +F 1 "d_buffer" V 9275 1200 60 0000 L CNN +F 2 "" H 9100 950 60 0000 C CNN +F 3 "" H 9100 950 60 0000 C CNN + 1 9100 950 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_buffer U32 +U 1 1 00000000 +P 10550 950 +F 0 "U32" V 10575 1200 60 0000 L CNN +F 1 "d_buffer" V 10725 1200 60 0000 L CNN +F 2 "" H 10550 950 60 0000 C CNN +F 3 "" H 10550 950 60 0000 C CNN + 1 10550 950 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U6 +U 1 1 00000000 +P 1450 6350 +F 0 "U6" V 1375 6950 60 0000 L CNN +F 1 "d_tristate" V 1525 6950 60 0000 L CNN +F 2 "" H 1350 6700 60 0000 C CNN +F 3 "" H 1350 6700 60 0000 C CNN + 1 1450 6350 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U10 +U 1 1 00000000 +P 2900 6350 +F 0 "U10" V 2825 6950 60 0000 L CNN +F 1 "d_tristate" V 2975 6950 60 0000 L CNN +F 2 "" H 2800 6700 60 0000 C CNN +F 3 "" H 2800 6700 60 0000 C CNN + 1 2900 6350 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U14 +U 1 1 00000000 +P 4350 6400 +F 0 "U14" V 4275 7000 60 0000 L CNN +F 1 "d_tristate" V 4425 7000 60 0000 L CNN +F 2 "" H 4250 6750 60 0000 C CNN +F 3 "" H 4250 6750 60 0000 C CNN + 1 4350 6400 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U18 +U 1 1 00000000 +P 5750 6400 +F 0 "U18" V 5675 7000 60 0000 L CNN +F 1 "d_tristate" V 5825 7000 60 0000 L CNN +F 2 "" H 5650 6750 60 0000 C CNN +F 3 "" H 5650 6750 60 0000 C CNN + 1 5750 6400 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U22 +U 1 1 00000000 +P 7150 6400 +F 0 "U22" V 7075 7000 60 0000 L CNN +F 1 "d_tristate" V 7225 7000 60 0000 L CNN +F 2 "" H 7050 6750 60 0000 C CNN +F 3 "" H 7050 6750 60 0000 C CNN + 1 7150 6400 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U26 +U 1 1 00000000 +P 8550 6450 +F 0 "U26" V 8475 7050 60 0000 L CNN +F 1 "d_tristate" V 8625 7050 60 0000 L CNN +F 2 "" H 8450 6800 60 0000 C CNN +F 3 "" H 8450 6800 60 0000 C CNN + 1 8550 6450 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U30 +U 1 1 00000000 +P 10100 6400 +F 0 "U30" V 10025 7000 60 0000 L CNN +F 1 "d_tristate" V 10175 7000 60 0000 L CNN +F 2 "" H 10000 6750 60 0000 C CNN +F 3 "" H 10000 6750 60 0000 C CNN + 1 10100 6400 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_tristate U34 +U 1 1 00000000 +P 11850 6550 +F 0 "U34" V 11775 7150 60 0000 L CNN +F 1 "d_tristate" V 11925 7150 60 0000 L CNN +F 2 "" H 11750 6900 60 0000 C CNN +F 3 "" H 11750 6900 60 0000 C CNN + 1 11850 6550 + 0 1 1 0 +$EndComp +$Comp +L eSim_Digital:d_dff U5 +U 1 1 00000000 +P 1200 2250 +F 0 "U5" H 1280 2900 60 0000 L CNN +F 1 "d_dff" H 1280 2750 60 0000 L CNN +F 2 "" H 1200 2250 60 0000 C CNN +F 3 "" H 1200 2250 60 0000 C CNN + 1 1200 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U9 +U 1 1 00000000 +P 2600 2250 +F 0 "U9" H 2680 2900 60 0000 L CNN +F 1 "d_dff" H 2680 2750 60 0000 L CNN +F 2 "" H 2600 2250 60 0000 C CNN +F 3 "" H 2600 2250 60 0000 C CNN + 1 2600 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U13 +U 1 1 00000000 +P 4050 2250 +F 0 "U13" H 4130 2900 60 0000 L CNN +F 1 "d_dff" H 4130 2750 60 0000 L CNN +F 2 "" H 4050 2250 60 0000 C CNN +F 3 "" H 4050 2250 60 0000 C CNN + 1 4050 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U17 +U 1 1 00000000 +P 5450 2250 +F 0 "U17" H 5530 2900 60 0000 L CNN +F 1 "d_dff" H 5530 2750 60 0000 L CNN +F 2 "" H 5450 2250 60 0000 C CNN +F 3 "" H 5450 2250 60 0000 C CNN + 1 5450 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U21 +U 1 1 00000000 +P 6900 2250 +F 0 "U21" H 6980 2900 60 0000 L CNN +F 1 "d_dff" H 6980 2750 60 0000 L CNN +F 2 "" H 6900 2250 60 0000 C CNN +F 3 "" H 6900 2250 60 0000 C CNN + 1 6900 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U25 +U 1 1 00000000 +P 8300 2250 +F 0 "U25" H 8380 2900 60 0000 L CNN +F 1 "d_dff" H 8380 2750 60 0000 L CNN +F 2 "" H 8300 2250 60 0000 C CNN +F 3 "" H 8300 2250 60 0000 C CNN + 1 8300 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U29 +U 1 1 00000000 +P 9800 2250 +F 0 "U29" H 9880 2900 60 0000 L CNN +F 1 "d_dff" H 9880 2750 60 0000 L CNN +F 2 "" H 9800 2250 60 0000 C CNN +F 3 "" H 9800 2250 60 0000 C CNN + 1 9800 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_dff U33 +U 1 1 00000000 +P 11300 2250 +F 0 "U33" H 11380 2900 60 0000 L CNN +F 1 "d_dff" H 11380 2750 60 0000 L CNN +F 2 "" H 11300 2250 60 0000 C CNN +F 3 "" H 11300 2250 60 0000 C CNN + 1 11300 2250 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/IN74LV574/analysis b/library/SubcircuitLibrary/IN74LV574/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/IN74LV574/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/LM386N/D.lib b/library/SubcircuitLibrary/LM386N/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/LM386N/LM386N-cache.lib b/library/SubcircuitLibrary/LM386N/LM386N-cache.lib new file mode 100644 index 000000000..e44c8e713 --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/LM386N-cache.lib @@ -0,0 +1,160 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# PWR_FLAG +# +DEF PWR_FLAG #FLG 0 0 N N 1 F P +F0 "#FLG" 0 75 50 H I C CNN +F1 "PWR_FLAG" 0 150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +X pwr 1 0 0 0 U 50 50 0 0 w +P 6 0 1 0 0 0 0 50 -40 75 0 100 40 75 0 50 N +ENDDRAW +ENDDEF +# +# dc +# +DEF dc I 0 40 Y Y 1 F N +F0 "I" -200 100 60 H V C CNN +F1 "dc" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +P 2 0 1 0 0 -100 0 -100 N +P 2 0 1 0 0 100 -50 50 N +P 2 0 1 0 0 100 0 -100 N +P 2 0 1 0 0 100 50 50 N +X ~ 1 0 450 300 D 50 50 1 1 P +X ~ 2 0 -450 300 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_NPN +# +DEF eSim_NPN Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_NPN" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS BC547 Q2N2222 +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_PNP +# +DEF eSim_PNP Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_PNP" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 90 -70 70 -90 50 -50 90 -70 90 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/LM386N/LM386N.cir b/library/SubcircuitLibrary/LM386N/LM386N.cir new file mode 100644 index 000000000..c2910f851 --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/LM386N.cir @@ -0,0 +1,31 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\LM386N\LM386N.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/12/26 12:01:03 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +Q4 Net-_Q4-Pad1_ Net-_Q2-Pad1_ Net-_Q1-Pad1_ eSim_NPN +Q3 Net-_Q2-Pad1_ Net-_Q2-Pad1_ Net-_Q1-Pad1_ eSim_NPN +Q7 Net-_D2-Pad2_ Net-_Q4-Pad1_ Net-_Q1-Pad1_ eSim_NPN +Q10 Net-_Q10-Pad1_ Net-_Q10-Pad2_ Net-_Q1-Pad1_ eSim_NPN +Q6 Net-_Q1-Pad1_ Net-_Q6-Pad2_ Net-_Q5-Pad2_ eSim_PNP +Q5 Net-_Q4-Pad1_ Net-_Q5-Pad2_ Net-_Q5-Pad3_ eSim_PNP +Q2 Net-_Q2-Pad1_ Net-_Q1-Pad3_ Net-_Q2-Pad3_ eSim_PNP +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +R1 Net-_Q1-Pad2_ Net-_Q1-Pad1_ 50k +R4 Net-_R4-Pad1_ Net-_Q2-Pad3_ 150 +R5 Net-_Q5-Pad3_ Net-_R4-Pad1_ 1.35k +R3 Net-_Q2-Pad3_ Net-_R2-Pad1_ 15k +R2 Net-_R2-Pad1_ Net-_Q9-Pad1_ 15k +Q9 Net-_Q9-Pad1_ Net-_D1-Pad1_ Net-_Q10-Pad1_ eSim_NPN +Q8 Net-_Q10-Pad2_ Net-_D2-Pad2_ Net-_Q10-Pad1_ eSim_PNP +D2 Net-_D1-Pad2_ Net-_D2-Pad2_ eSim_Diode +R6 Net-_Q6-Pad2_ Net-_Q1-Pad1_ 50k +D1 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +R7 Net-_Q10-Pad1_ Net-_Q5-Pad3_ 15k +I1 Net-_D1-Pad1_ Net-_I1-Pad2_ 4mA +U1 Net-_Q5-Pad3_ Net-_Q1-Pad2_ Net-_Q6-Pad2_ Net-_Q1-Pad1_ Net-_Q10-Pad1_ Net-_Q9-Pad1_ Net-_R2-Pad1_ Net-_R4-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/LM386N/LM386N.cir.out b/library/SubcircuitLibrary/LM386N/LM386N.cir.out new file mode 100644 index 000000000..52671b031 --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/LM386N.cir.out @@ -0,0 +1,35 @@ +* c:\fossee\esim\library\subcircuitlibrary\lm386n\lm386n.cir + +.include D.lib +.include PNP.lib +.include NPN.lib +q4 net-_q4-pad1_ net-_q2-pad1_ net-_q1-pad1_ Q2N2222 +q3 net-_q2-pad1_ net-_q2-pad1_ net-_q1-pad1_ Q2N2222 +q7 net-_d2-pad2_ net-_q4-pad1_ net-_q1-pad1_ Q2N2222 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q1-pad1_ Q2N2222 +q6 net-_q1-pad1_ net-_q6-pad2_ net-_q5-pad2_ Q2N2907A +q5 net-_q4-pad1_ net-_q5-pad2_ net-_q5-pad3_ Q2N2907A +q2 net-_q2-pad1_ net-_q1-pad3_ net-_q2-pad3_ Q2N2907A +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +r1 net-_q1-pad2_ net-_q1-pad1_ 50k +r4 net-_r4-pad1_ net-_q2-pad3_ 150 +r5 net-_q5-pad3_ net-_r4-pad1_ 1.35k +r3 net-_q2-pad3_ net-_r2-pad1_ 15k +r2 net-_r2-pad1_ net-_q9-pad1_ 15k +q9 net-_q9-pad1_ net-_d1-pad1_ net-_q10-pad1_ Q2N2222 +q8 net-_q10-pad2_ net-_d2-pad2_ net-_q10-pad1_ Q2N2907A +d2 net-_d1-pad2_ net-_d2-pad2_ 1N4148 +r6 net-_q6-pad2_ net-_q1-pad1_ 50k +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +r7 net-_q10-pad1_ net-_q5-pad3_ 15k +i1 net-_d1-pad1_ net-_i1-pad2_ 4ma +* u1 net-_q5-pad3_ net-_q1-pad2_ net-_q6-pad2_ net-_q1-pad1_ net-_q10-pad1_ net-_q9-pad1_ net-_r2-pad1_ net-_r4-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/LM386N/LM386N.pro b/library/SubcircuitLibrary/LM386N/LM386N.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/LM386N.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/LM386N/LM386N.sch b/library/SubcircuitLibrary/LM386N/LM386N.sch new file mode 100644 index 000000000..91cba4873 --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/LM386N.sch @@ -0,0 +1,509 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:LM386N-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_NPN Q4 +U 1 1 69F5CB75 +P 5850 4500 +F 0 "Q4" H 5750 4550 50 0000 R CNN +F 1 "eSim_NPN" H 5800 4650 50 0000 R CNN +F 2 "" H 6050 4600 29 0000 C CNN +F 3 "" H 5850 4500 60 0000 C CNN + 1 5850 4500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q3 +U 1 1 69F5CBBA +P 2950 4500 +F 0 "Q3" H 2850 4550 50 0000 R CNN +F 1 "eSim_NPN" H 2900 4650 50 0000 R CNN +F 2 "" H 3150 4600 29 0000 C CNN +F 3 "" H 2950 4500 60 0000 C CNN + 1 2950 4500 + -1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q7 +U 1 1 69F5CC39 +P 8000 4450 +F 0 "Q7" H 7900 4500 50 0000 R CNN +F 1 "eSim_NPN" H 7950 4600 50 0000 R CNN +F 2 "" H 8200 4550 29 0000 C CNN +F 3 "" H 8000 4450 60 0000 C CNN + 1 8000 4450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q10 +U 1 1 69F5CC66 +P 9500 4450 +F 0 "Q10" H 9400 4500 50 0000 R CNN +F 1 "eSim_NPN" H 9450 4600 50 0000 R CNN +F 2 "" H 9700 4550 29 0000 C CNN +F 3 "" H 9500 4450 60 0000 C CNN + 1 9500 4450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3150 4500 5650 4500 +Wire Wire Line + 2850 4300 2850 3700 +Wire Wire Line + 2850 4000 3700 4000 +Wire Wire Line + 3700 4000 3700 4500 +Connection ~ 3700 4500 +Connection ~ 2850 4000 +Wire Wire Line + 2850 4700 2850 4950 +Wire Wire Line + 1550 4950 9750 4950 +Wire Wire Line + 5950 4950 5950 4700 +Wire Wire Line + 8100 4950 8100 4650 +Connection ~ 5950 4950 +Wire Wire Line + 9600 4950 9600 4650 +Connection ~ 8100 4950 +Wire Wire Line + 5950 4300 5950 3250 +Wire Wire Line + 5950 3800 7400 3800 +Wire Wire Line + 7400 3800 7400 4450 +Wire Wire Line + 7400 4450 7800 4450 +Connection ~ 5950 3800 +$Comp +L eSim_PNP Q6 +U 1 1 69F5CD9B +P 6700 3150 +F 0 "Q6" H 6600 3200 50 0000 R CNN +F 1 "eSim_PNP" H 6650 3300 50 0000 R CNN +F 2 "" H 6900 3250 29 0000 C CNN +F 3 "" H 6700 3150 60 0000 C CNN + 1 6700 3150 + -1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q5 +U 1 1 69F5CE1B +P 6050 3050 +F 0 "Q5" H 5950 3100 50 0000 R CNN +F 1 "eSim_PNP" H 6000 3200 50 0000 R CNN +F 2 "" H 6250 3150 29 0000 C CNN +F 3 "" H 6050 3050 60 0000 C CNN + 1 6050 3050 + -1 0 0 1 +$EndComp +Wire Wire Line + 6250 3050 6250 2950 +Wire Wire Line + 6250 2950 6600 2950 +Wire Wire Line + 6600 3350 6600 4950 +Connection ~ 6600 4950 +Wire Wire Line + 5950 2100 5950 2850 +$Comp +L eSim_PNP Q2 +U 1 1 69F5CF5F +P 2750 3500 +F 0 "Q2" H 2650 3550 50 0000 R CNN +F 1 "eSim_PNP" H 2700 3650 50 0000 R CNN +F 2 "" H 2950 3600 29 0000 C CNN +F 3 "" H 2750 3500 60 0000 C CNN + 1 2750 3500 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q1 +U 1 1 69F5D113 +P 1950 3650 +F 0 "Q1" H 1850 3700 50 0000 R CNN +F 1 "eSim_PNP" H 1900 3800 50 0000 R CNN +F 2 "" H 2150 3750 29 0000 C CNN +F 3 "" H 1950 3650 60 0000 C CNN + 1 1950 3650 + 1 0 0 1 +$EndComp +Wire Wire Line + 2050 3450 2550 3450 +Wire Wire Line + 2550 3450 2550 3500 +Wire Wire Line + 2050 3850 2050 4950 +Connection ~ 2850 4950 +Wire Wire Line + 1750 3650 1300 3650 +$Comp +L resistor R1 +U 1 1 69F5D1FA +P 1500 4050 +F 0 "R1" H 1550 4180 50 0000 C CNN +F 1 "50k" H 1550 4000 50 0000 C CNN +F 2 "" H 1550 4030 30 0000 C CNN +F 3 "" V 1550 4100 30 0000 C CNN + 1 1500 4050 + 0 1 1 0 +$EndComp +Wire Wire Line + 1550 3650 1550 3950 +Connection ~ 1550 3650 +Wire Wire Line + 1550 4250 1550 4950 +Connection ~ 2050 4950 +$Comp +L resistor R4 +U 1 1 69F5D78D +P 3300 3150 +F 0 "R4" H 3350 3280 50 0000 C CNN +F 1 "150" H 3350 3100 50 0000 C CNN +F 2 "" H 3350 3130 30 0000 C CNN +F 3 "" V 3350 3200 30 0000 C CNN + 1 3300 3150 + -1 0 0 1 +$EndComp +$Comp +L resistor R5 +U 1 1 69F5D813 +P 3800 3150 +F 0 "R5" H 3850 3280 50 0000 C CNN +F 1 "1.35k" H 3850 3100 50 0000 C CNN +F 2 "" H 3850 3130 30 0000 C CNN +F 3 "" V 3850 3200 30 0000 C CNN + 1 3800 3150 + -1 0 0 1 +$EndComp +$Comp +L resistor R3 +U 1 1 69F5D892 +P 2900 2750 +F 0 "R3" H 2950 2880 50 0000 C CNN +F 1 "15k" H 2950 2700 50 0000 C CNN +F 2 "" H 2950 2730 30 0000 C CNN +F 3 "" V 2950 2800 30 0000 C CNN + 1 2900 2750 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 3400 3200 3600 3200 +Wire Wire Line + 3100 3200 2850 3200 +Wire Wire Line + 2850 2850 2850 3300 +Wire Wire Line + 3900 3200 4250 3200 +Wire Wire Line + 4250 3200 4250 2500 +Wire Wire Line + 4250 2500 7250 2500 +Wire Wire Line + 3500 3200 3500 2750 +Connection ~ 3500 3200 +Connection ~ 5950 2500 +Connection ~ 2850 3200 +Wire Wire Line + 2850 2550 2850 1750 +$Comp +L resistor R2 +U 1 1 69F5DE97 +P 2900 1650 +F 0 "R2" H 2950 1780 50 0000 C CNN +F 1 "15k" H 2950 1600 50 0000 C CNN +F 2 "" H 2950 1630 30 0000 C CNN +F 3 "" V 2950 1700 30 0000 C CNN + 1 2900 1650 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 2850 650 2850 1450 +Wire Wire Line + 2850 650 9950 650 +$Comp +L eSim_NPN Q9 +U 1 1 69F5DFDB +P 9450 1750 +F 0 "Q9" H 9350 1800 50 0000 R CNN +F 1 "eSim_NPN" H 9400 1900 50 0000 R CNN +F 2 "" H 9650 1850 29 0000 C CNN +F 3 "" H 9450 1750 60 0000 C CNN + 1 9450 1750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9550 650 9550 1550 +$Comp +L eSim_PNP Q8 +U 1 1 69F5E14E +P 8800 3500 +F 0 "Q8" H 8700 3550 50 0000 R CNN +F 1 "eSim_PNP" H 8750 3650 50 0000 R CNN +F 2 "" H 9000 3600 29 0000 C CNN +F 3 "" H 8800 3500 60 0000 C CNN + 1 8800 3500 + 1 0 0 1 +$EndComp +$Comp +L eSim_Diode D2 +U 1 1 69F5E253 +P 8200 2550 +F 0 "D2" H 8200 2650 50 0000 C CNN +F 1 "eSim_Diode" H 8200 2450 50 0000 C CNN +F 2 "" H 8200 2550 60 0000 C CNN +F 3 "" H 8200 2550 60 0000 C CNN + 1 8200 2550 + 0 1 1 0 +$EndComp +$Comp +L resistor R6 +U 1 1 69F5E3B6 +P 7150 4200 +F 0 "R6" H 7200 4330 50 0000 C CNN +F 1 "50k" H 7200 4150 50 0000 C CNN +F 2 "" H 7200 4180 30 0000 C CNN +F 3 "" V 7200 4250 30 0000 C CNN + 1 7150 4200 + 0 1 1 0 +$EndComp +Wire Wire Line + 6900 3150 7500 3150 +Wire Wire Line + 7200 3150 7200 4100 +Wire Wire Line + 7200 4400 7200 4950 +Connection ~ 7200 4950 +Wire Wire Line + 9600 4250 9600 1950 +Wire Wire Line + 9600 1950 9550 1950 +Wire Wire Line + 8900 3300 8900 3000 +Wire Wire Line + 8900 3000 9600 3000 +Connection ~ 9600 3000 +Wire Wire Line + 8900 3700 8900 4450 +Wire Wire Line + 8900 4450 9300 4450 +Wire Wire Line + 8100 3250 8100 4250 +Wire Wire Line + 8100 3500 8600 3500 +Wire Wire Line + 8200 2700 8200 3250 +Wire Wire Line + 8200 3250 8100 3250 +Connection ~ 8100 3500 +$Comp +L eSim_Diode D1 +U 1 1 69F5EA99 +P 8200 2000 +F 0 "D1" H 8200 2100 50 0000 C CNN +F 1 "eSim_Diode" H 8200 1900 50 0000 C CNN +F 2 "" H 8200 2000 60 0000 C CNN +F 3 "" H 8200 2000 60 0000 C CNN + 1 8200 2000 + 0 1 1 0 +$EndComp +Wire Wire Line + 8200 1650 8200 1850 +Wire Wire Line + 8200 1750 9250 1750 +Wire Wire Line + 8200 2150 8200 2400 +$Comp +L resistor R7 +U 1 1 69F5ED9D +P 7450 2300 +F 0 "R7" H 7500 2430 50 0000 C CNN +F 1 "15k" H 7500 2250 50 0000 C CNN +F 2 "" H 7500 2280 30 0000 C CNN +F 3 "" V 7500 2350 30 0000 C CNN + 1 7450 2300 + -1 0 0 1 +$EndComp +Wire Wire Line + 7250 2500 7250 2350 +Wire Wire Line + 7550 2350 10200 2350 +Connection ~ 9600 2350 +$Comp +L dc I1 +U 1 1 69F5F2D4 +P 8200 1200 +F 0 "I1" H 8000 1300 60 0000 C CNN +F 1 "4mA" H 8000 1150 60 0000 C CNN +F 2 "R1" H 7900 1200 60 0000 C CNN +F 3 "" H 8200 1200 60 0000 C CNN + 1 8200 1200 + -1 0 0 1 +$EndComp +Connection ~ 8200 1750 +Connection ~ 9550 650 +$Comp +L PORT U1 +U 2 1 69F60297 +P 1050 3650 +F 0 "U1" H 1100 3750 30 0000 C CNN +F 1 "PORT" H 1050 3650 30 0000 C CNN +F 2 "" H 1050 3650 60 0000 C CNN +F 3 "" H 1050 3650 60 0000 C CNN + 2 1050 3650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 69F602FA +P 7750 3150 +F 0 "U1" H 7800 3250 30 0000 C CNN +F 1 "PORT" H 7750 3150 30 0000 C CNN +F 2 "" H 7750 3150 60 0000 C CNN +F 3 "" H 7750 3150 60 0000 C CNN + 3 7750 3150 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 69F6034D +P 10000 4950 +F 0 "U1" H 10050 5050 30 0000 C CNN +F 1 "PORT" H 10000 4950 30 0000 C CNN +F 2 "" H 10000 4950 60 0000 C CNN +F 3 "" H 10000 4950 60 0000 C CNN + 4 10000 4950 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 69F603F6 +P 10450 2350 +F 0 "U1" H 10500 2450 30 0000 C CNN +F 1 "PORT" H 10450 2350 30 0000 C CNN +F 2 "" H 10450 2350 60 0000 C CNN +F 3 "" H 10450 2350 60 0000 C CNN + 5 10450 2350 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 1 1 69F604A1 +P 5700 2100 +F 0 "U1" H 5750 2200 30 0000 C CNN +F 1 "PORT" H 5700 2100 30 0000 C CNN +F 2 "" H 5700 2100 60 0000 C CNN +F 3 "" H 5700 2100 60 0000 C CNN + 1 5700 2100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 69F60586 +P 10200 650 +F 0 "U1" H 10250 750 30 0000 C CNN +F 1 "PORT" H 10200 650 30 0000 C CNN +F 2 "" H 10200 650 60 0000 C CNN +F 3 "" H 10200 650 60 0000 C CNN + 6 10200 650 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 69F605F1 +P 3500 2500 +F 0 "U1" H 3550 2600 30 0000 C CNN +F 1 "PORT" H 3500 2500 30 0000 C CNN +F 2 "" H 3500 2500 60 0000 C CNN +F 3 "" H 3500 2500 60 0000 C CNN + 8 3500 2500 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 7 1 69F606D3 +P 1950 2100 +F 0 "U1" H 2000 2200 30 0000 C CNN +F 1 "PORT" H 1950 2100 30 0000 C CNN +F 2 "" H 1950 2100 60 0000 C CNN +F 3 "" H 1950 2100 60 0000 C CNN + 7 1950 2100 + 1 0 0 -1 +$EndComp +Connection ~ 7200 3150 +Connection ~ 9600 4950 +Wire Wire Line + 2850 2100 2200 2100 +Connection ~ 2850 2100 +Wire Wire Line + 8200 750 8400 750 +Wire Wire Line + 8400 750 8400 900 +$Comp +L PWR_FLAG #FLG01 +U 1 1 6A02DBDC +P 8600 900 +F 0 "#FLG01" H 8600 975 50 0001 C CNN +F 1 "PWR_FLAG" H 8600 1050 50 0000 C CNN +F 2 "" H 8600 900 50 0001 C CNN +F 3 "" H 8600 900 50 0001 C CNN + 1 8600 900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 8400 900 8600 900 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/LM386N/LM386N.sub b/library/SubcircuitLibrary/LM386N/LM386N.sub new file mode 100644 index 000000000..6395d8d12 --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/LM386N.sub @@ -0,0 +1,29 @@ +* Subcircuit LM386N +.subckt LM386N net-_q5-pad3_ net-_q1-pad2_ net-_q6-pad2_ net-_q1-pad1_ net-_q10-pad1_ net-_q9-pad1_ net-_r2-pad1_ net-_r4-pad1_ +* c:\fossee\esim\library\subcircuitlibrary\lm386n\lm386n.cir +.include D.lib +.include PNP.lib +.include NPN.lib +q4 net-_q4-pad1_ net-_q2-pad1_ net-_q1-pad1_ Q2N2222 +q3 net-_q2-pad1_ net-_q2-pad1_ net-_q1-pad1_ Q2N2222 +q7 net-_d2-pad2_ net-_q4-pad1_ net-_q1-pad1_ Q2N2222 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q1-pad1_ Q2N2222 +q6 net-_q1-pad1_ net-_q6-pad2_ net-_q5-pad2_ Q2N2907A +q5 net-_q4-pad1_ net-_q5-pad2_ net-_q5-pad3_ Q2N2907A +q2 net-_q2-pad1_ net-_q1-pad3_ net-_q2-pad3_ Q2N2907A +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +r1 net-_q1-pad2_ net-_q1-pad1_ 50k +r4 net-_r4-pad1_ net-_q2-pad3_ 150 +r5 net-_q5-pad3_ net-_r4-pad1_ 1.35k +r3 net-_q2-pad3_ net-_r2-pad1_ 15k +r2 net-_r2-pad1_ net-_q9-pad1_ 15k +q9 net-_q9-pad1_ net-_d1-pad1_ net-_q10-pad1_ Q2N2222 +q8 net-_q10-pad2_ net-_d2-pad2_ net-_q10-pad1_ Q2N2907A +d2 net-_d1-pad2_ net-_d2-pad2_ 1N4148 +r6 net-_q6-pad2_ net-_q1-pad1_ 50k +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +r7 net-_q10-pad1_ net-_q5-pad3_ 15k +i1 net-_d1-pad1_ net-_i1-pad2_ 4ma +* Control Statements + +.ends LM386N \ No newline at end of file diff --git a/library/SubcircuitLibrary/LM386N/LM386N_Previous_Values.xml b/library/SubcircuitLibrary/LM386N/LM386N_Previous_Values.xml new file mode 100644 index 000000000..ed4c4e56c --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/LM386N_Previous_Values.xml @@ -0,0 +1 @@ +4maC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/LM386N/NPN.lib b/library/SubcircuitLibrary/LM386N/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/LM386N/PNP.lib b/library/SubcircuitLibrary/LM386N/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/LM386N/analysis b/library/SubcircuitLibrary/LM386N/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/LM386N/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/LM3900/D.lib b/library/SubcircuitLibrary/LM3900/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/LM3900/LM3900-cache.lib b/library/SubcircuitLibrary/LM3900/LM3900-cache.lib new file mode 100644 index 000000000..fea7ae574 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900-cache.lib @@ -0,0 +1,147 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# dc +# +DEF dc I 0 40 Y Y 1 F N +F0 "I" -200 100 60 H V C CNN +F1 "dc" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +P 2 0 1 0 0 -100 0 -100 N +P 2 0 1 0 0 100 -50 50 N +P 2 0 1 0 0 100 0 -100 N +P 2 0 1 0 0 100 50 50 N +X ~ 1 0 450 300 D 50 50 1 1 P +X ~ 2 0 -450 300 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_C +# +DEF eSim_C C 0 10 N Y 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_C" 25 -100 50 H V L CNN +F2 "" 38 -150 30 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS capacitor +$FPLIST + C_* +$ENDFPLIST +DRAW +P 2 0 1 20 -80 -30 80 -30 N +P 2 0 1 20 -80 30 80 30 N +X ~ 1 0 150 110 D 40 40 1 1 P +X ~ 2 0 -150 110 U 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_NPN +# +DEF eSim_NPN Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_NPN" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS BC547 Q2N2222 +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_PNP +# +DEF eSim_PNP Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_PNP" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 90 -70 70 -90 50 -50 90 -70 90 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/LM3900/LM3900.cir b/library/SubcircuitLibrary/LM3900/LM3900.cir new file mode 100644 index 000000000..2de03b570 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900.cir @@ -0,0 +1,20 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\LM3900\LM3900.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/29/25 15:20:35 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +Q1 Net-_Q1-Pad1_ Net-_D1-Pad1_ Net-_C1-Pad2_ eSim_NPN +Q5 Net-_I1-Pad2_ Net-_I1-Pad1_ Net-_I2-Pad2_ eSim_NPN +Q2 Net-_C1-Pad1_ Net-_Q1-Pad1_ Net-_C1-Pad2_ eSim_NPN +Q4 Net-_C1-Pad2_ Net-_C1-Pad1_ Net-_I2-Pad2_ eSim_PNP +Q3 Net-_I2-Pad2_ Net-_C1-Pad1_ Net-_I1-Pad1_ eSim_PNP +D1 Net-_D1-Pad1_ Net-_C1-Pad2_ eSim_Diode +I2 Net-_C1-Pad2_ Net-_I2-Pad2_ 1.3m +I1 Net-_I1-Pad1_ Net-_I1-Pad2_ 200u +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 10p +U1 Net-_Q1-Pad1_ Net-_D1-Pad1_ Net-_I2-Pad2_ Net-_I1-Pad2_ Net-_C1-Pad2_ PORT + +.end diff --git a/library/SubcircuitLibrary/LM3900/LM3900.cir.out b/library/SubcircuitLibrary/LM3900/LM3900.cir.out new file mode 100644 index 000000000..394ca23a3 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900.cir.out @@ -0,0 +1,24 @@ +* c:\fossee\esim\library\subcircuitlibrary\lm3900\lm3900.cir + +.include PNP.lib +.include NPN.lib +.include D.lib +q1 net-_q1-pad1_ net-_d1-pad1_ net-_c1-pad2_ Q2N2222 +q5 net-_i1-pad2_ net-_i1-pad1_ net-_i2-pad2_ Q2N2222 +q2 net-_c1-pad1_ net-_q1-pad1_ net-_c1-pad2_ Q2N2222 +q4 net-_c1-pad2_ net-_c1-pad1_ net-_i2-pad2_ Q2N2907A +q3 net-_i2-pad2_ net-_c1-pad1_ net-_i1-pad1_ Q2N2907A +d1 net-_d1-pad1_ net-_c1-pad2_ 1N4148 +i2 net-_c1-pad2_ net-_i2-pad2_ 1.3m +i1 net-_i1-pad1_ net-_i1-pad2_ 200u +c1 net-_c1-pad1_ net-_c1-pad2_ 10p +* u1 net-_q1-pad1_ net-_d1-pad1_ net-_i2-pad2_ net-_i1-pad2_ net-_c1-pad2_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/LM3900/LM3900.pro b/library/SubcircuitLibrary/LM3900/LM3900.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/LM3900/LM3900.proj b/library/SubcircuitLibrary/LM3900/LM3900.proj new file mode 100644 index 000000000..21c9011d4 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900.proj @@ -0,0 +1 @@ +schematicFile LM3900.sch diff --git a/library/SubcircuitLibrary/LM3900/LM3900.sch b/library/SubcircuitLibrary/LM3900/LM3900.sch new file mode 100644 index 000000000..a7a7d4cb6 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900.sch @@ -0,0 +1,276 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:LM3900-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_NPN Q1 +U 1 1 6835ED47 +P 3300 4550 +F 0 "Q1" H 3200 4600 50 0000 R CNN +F 1 "eSim_NPN" H 3250 4700 50 0000 R CNN +F 2 "" H 3500 4650 29 0000 C CNN +F 3 "" H 3300 4550 60 0000 C CNN + 1 3300 4550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q5 +U 1 1 6835ED7F +P 5100 2650 +F 0 "Q5" H 5000 2700 50 0000 R CNN +F 1 "eSim_NPN" H 5050 2800 50 0000 R CNN +F 2 "" H 5300 2750 29 0000 C CNN +F 3 "" H 5100 2650 60 0000 C CNN + 1 5100 2650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q2 +U 1 1 6835EDA3 +P 3750 4050 +F 0 "Q2" H 3650 4100 50 0000 R CNN +F 1 "eSim_NPN" H 3700 4200 50 0000 R CNN +F 2 "" H 3950 4150 29 0000 C CNN +F 3 "" H 3750 4050 60 0000 C CNN + 1 3750 4050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_PNP Q4 +U 1 1 6835EDDD +P 4200 3650 +F 0 "Q4" H 4100 3700 50 0000 R CNN +F 1 "eSim_PNP" H 4150 3800 50 0000 R CNN +F 2 "" H 4400 3750 29 0000 C CNN +F 3 "" H 4200 3650 60 0000 C CNN + 1 4200 3650 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q3 +U 1 1 6835EE0A +P 4200 3000 +F 0 "Q3" H 4100 3050 50 0000 R CNN +F 1 "eSim_PNP" H 4150 3150 50 0000 R CNN +F 2 "" H 4400 3100 29 0000 C CNN +F 3 "" H 4200 3000 60 0000 C CNN + 1 4200 3000 + 1 0 0 1 +$EndComp +$Comp +L eSim_Diode D1 +U 1 1 6835EE44 +P 2900 4700 +F 0 "D1" H 2900 4800 50 0000 C CNN +F 1 "eSim_Diode" H 2900 4600 50 0000 C CNN +F 2 "" H 2900 4700 60 0000 C CNN +F 3 "" H 2900 4700 60 0000 C CNN + 1 2900 4700 + 0 1 1 0 +$EndComp +$Comp +L dc I2 +U 1 1 6835EE74 +P 5200 3900 +F 0 "I2" H 5000 4000 60 0000 C CNN +F 1 "1.3m" H 5000 3850 60 0000 C CNN +F 2 "R1" H 4900 3900 60 0000 C CNN +F 3 "" H 5200 3900 60 0000 C CNN + 1 5200 3900 + 1 0 0 1 +$EndComp +$Comp +L dc I1 +U 1 1 6835EEBA +P 4300 2200 +F 0 "I1" H 4100 2300 60 0000 C CNN +F 1 "200u" H 4100 2150 60 0000 C CNN +F 2 "R1" H 4000 2200 60 0000 C CNN +F 3 "" H 4300 2200 60 0000 C CNN + 1 4300 2200 + 1 0 0 1 +$EndComp +$Comp +L capacitor C1 +U 1 1 6835F4C8 +P 4050 4300 +F 0 "C1" H 4075 4400 50 0000 L CNN +F 1 "10p" H 4075 4200 50 0000 L CNN +F 2 "" H 4088 4150 30 0000 C CNN +F 3 "" H 4050 4300 60 0000 C CNN + 1 4050 4300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3400 4350 3400 4050 +Wire Wire Line + 2700 4050 3550 4050 +Wire Wire Line + 3850 3850 3850 3650 +Wire Wire Line + 3850 3650 4000 3650 +Wire Wire Line + 4300 3200 4300 3450 +Wire Wire Line + 4000 3650 4000 3000 +Wire Wire Line + 4300 2650 4300 2800 +Wire Wire Line + 4900 2650 4300 2650 +Wire Wire Line + 4300 1750 5350 1750 +Wire Wire Line + 5200 1750 5200 2450 +Connection ~ 5200 1750 +Wire Wire Line + 5200 2850 5200 3450 +Wire Wire Line + 2550 4550 3100 4550 +Wire Wire Line + 2900 4850 5200 4850 +Wire Wire Line + 3400 4850 3400 4750 +Wire Wire Line + 3850 4850 3850 4250 +Connection ~ 3400 4850 +Wire Wire Line + 4300 4850 4300 3850 +Connection ~ 3850 4850 +Wire Wire Line + 5200 4850 5200 4350 +Connection ~ 4300 4850 +Wire Wire Line + 4300 3300 5200 3300 +Connection ~ 5200 3300 +Connection ~ 4300 3300 +Wire Wire Line + 4050 4150 4050 3650 +Wire Wire Line + 4050 3650 3950 3650 +Connection ~ 3950 3650 +Wire Wire Line + 4050 4450 4050 4850 +Connection ~ 4050 4850 +Wire Wire Line + 2900 4950 2900 4850 +$Comp +L PORT U1 +U 1 1 6835FDE8 +P 2450 4050 +F 0 "U1" H 2500 4150 30 0000 C CNN +F 1 "PORT" H 2450 4050 30 0000 C CNN +F 2 "" H 2450 4050 60 0000 C CNN +F 3 "" H 2450 4050 60 0000 C CNN + 1 2450 4050 + 1 0 0 -1 +$EndComp +Connection ~ 2900 4550 +$Comp +L PORT U1 +U 3 1 6835FE7F +P 5750 3400 +F 0 "U1" H 5800 3500 30 0000 C CNN +F 1 "PORT" H 5750 3400 30 0000 C CNN +F 2 "" H 5750 3400 60 0000 C CNN +F 3 "" H 5750 3400 60 0000 C CNN + 3 5750 3400 + -1 0 0 -1 +$EndComp +Connection ~ 3400 4050 +$Comp +L PORT U1 +U 5 1 6835FEF1 +P 2400 4950 +F 0 "U1" H 2450 5050 30 0000 C CNN +F 1 "PORT" H 2400 4950 30 0000 C CNN +F 2 "" H 2400 4950 60 0000 C CNN +F 3 "" H 2400 4950 60 0000 C CNN + 5 2400 4950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5200 3400 5500 3400 +Connection ~ 5200 3400 +$Comp +L PORT U1 +U 4 1 6835FFC6 +P 5650 1950 +F 0 "U1" H 5700 2050 30 0000 C CNN +F 1 "PORT" H 5650 1950 30 0000 C CNN +F 2 "" H 5650 1950 60 0000 C CNN +F 3 "" H 5650 1950 60 0000 C CNN + 4 5650 1950 + -1 0 0 -1 +$EndComp +Wire Wire Line + 5350 1750 5350 1950 +Wire Wire Line + 5350 1950 5400 1950 +$Comp +L PORT U1 +U 2 1 68360C1F +P 2300 4550 +F 0 "U1" H 2350 4650 30 0000 C CNN +F 1 "PORT" H 2300 4550 30 0000 C CNN +F 2 "" H 2300 4550 60 0000 C CNN +F 3 "" H 2300 4550 60 0000 C CNN + 2 2300 4550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2650 4950 2900 4950 +Text Label 5300 3350 0 60 ~ 0 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/LM3900/LM3900.sub b/library/SubcircuitLibrary/LM3900/LM3900.sub new file mode 100644 index 000000000..d5849dff4 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900.sub @@ -0,0 +1,18 @@ +* Subcircuit LM3900 +.subckt LM3900 net-_q1-pad1_ net-_d1-pad1_ net-_i2-pad2_ net-_i1-pad2_ net-_c1-pad2_ +* c:\fossee\esim\library\subcircuitlibrary\lm3900\lm3900.cir +.include PNP.lib +.include NPN.lib +.include D.lib +q1 net-_q1-pad1_ net-_d1-pad1_ net-_c1-pad2_ Q2N2222 +q5 net-_i1-pad2_ net-_i1-pad1_ net-_i2-pad2_ Q2N2222 +q2 net-_c1-pad1_ net-_q1-pad1_ net-_c1-pad2_ Q2N2222 +q4 net-_c1-pad2_ net-_c1-pad1_ net-_i2-pad2_ Q2N2907A +q3 net-_i2-pad2_ net-_c1-pad1_ net-_i1-pad1_ Q2N2907A +d1 net-_d1-pad1_ net-_c1-pad2_ 1N4148 +i2 net-_c1-pad2_ net-_i2-pad2_ 1.3m +i1 net-_i1-pad1_ net-_i1-pad2_ 200u +c1 net-_c1-pad1_ net-_c1-pad2_ 10p +* Control Statements + +.ends LM3900 \ No newline at end of file diff --git a/library/SubcircuitLibrary/LM3900/LM3900_Previous_Values.xml b/library/SubcircuitLibrary/LM3900/LM3900_Previous_Values.xml new file mode 100644 index 000000000..d9c6cbb51 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900_Previous_Values.xml @@ -0,0 +1 @@ +1.3m200uC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/LM3900/LM3900_test-cache.lib b/library/SubcircuitLibrary/LM3900/LM3900_test-cache.lib new file mode 100644 index 000000000..6c5a94aea --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900_test-cache.lib @@ -0,0 +1,121 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# DC +# +DEF DC v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "DC" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 w +X - 2 0 -450 300 U 50 50 1 1 w +ENDDRAW +ENDDEF +# +# LM3900 +# +DEF LM3900 X 0 40 Y Y 1 F N +F0 "X" 0 -400 60 H V C CNN +F1 "LM3900" 0 500 60 H V C CNN +F2 "" 0 500 60 H I C CNN +F3 "" 0 500 60 H I C CNN +DRAW +P 4 0 1 0 200 0 -150 300 -150 -300 200 0 N +X inv 1 -350 150 200 R 50 50 1 1 I +X non_inv 2 -350 -100 200 R 50 50 1 1 I +X Out 3 400 0 200 L 50 50 1 1 O +X Vcc 4 50 300 200 D 50 50 1 1 I +X Gnd 5 50 -300 200 U 50 50 1 1 I +ENDDRAW +ENDDEF +# +# eSim_C +# +DEF eSim_C C 0 10 N Y 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_C" 25 -100 50 H V L CNN +F2 "" 38 -150 30 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS capacitor +$FPLIST + C_* +$ENDFPLIST +DRAW +P 2 0 1 20 -80 -30 80 -30 N +P 2 0 1 20 -80 30 80 30 N +X ~ 1 0 150 110 D 40 40 1 1 P +X ~ 2 0 -150 110 U 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_GND +# +DEF eSim_GND #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -250 50 H I C CNN +F1 "eSim_GND" 0 -150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N +X GND 1 0 0 0 D 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +# plot_v1 +# +DEF plot_v1 U 0 40 Y Y 1 F N +F0 "U" 0 500 60 H V C CNN +F1 "plot_v1" 200 350 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 0 500 100 0 1 0 N +X ~ ~ 0 200 200 U 50 50 1 1 I +ENDDRAW +ENDDEF +# +# sine +# +DEF sine v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "sine" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -50 0 50 1 1799 0 1 0 N 0 0 -100 0 +A 50 0 50 -1799 -1 0 1 0 N 0 0 100 0 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 0 1 1 I +X - 2 0 -450 300 U 50 0 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/LM3900/LM3900_test.cir b/library/SubcircuitLibrary/LM3900/LM3900_test.cir new file mode 100644 index 000000000..90ef51162 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900_test.cir @@ -0,0 +1,21 @@ +* C:\Users\pavithra\eSim-Workspace\LM3900_test\LM3900_test.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/29/25 15:21:32 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +R1 Net-_C1-Pad1_ Net-_R1-Pad2_ 10k +R2 Net-_R2-Pad1_ Net-_R2-Pad2_ 39k +R3 Net-_R1-Pad2_ Net-_C2-Pad2_ 100k +R4 out GND 10k +C1 Net-_C1-Pad1_ in 1u +C2 out Net-_C2-Pad2_ 1u +v1 in GND sine +v2 Net-_R2-Pad1_ GND DC +U2 out plot_v1 +U1 in plot_v1 +X1 Net-_R1-Pad2_ Net-_R2-Pad2_ Net-_C2-Pad2_ Net-_R2-Pad1_ GND LM3900 + +.end diff --git a/library/SubcircuitLibrary/LM3900/LM3900_test.cir.out b/library/SubcircuitLibrary/LM3900/LM3900_test.cir.out new file mode 100644 index 000000000..efd5ef2c0 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900_test.cir.out @@ -0,0 +1,24 @@ +* c:\users\pavithra\esim-workspace\lm3900_test\lm3900_test.cir + +.include LM3900.sub +r1 net-_c1-pad1_ net-_r1-pad2_ 10k +r2 net-_r2-pad1_ net-_r2-pad2_ 39k +r3 net-_r1-pad2_ net-_c2-pad2_ 100k +r4 out gnd 10k +c1 net-_c1-pad1_ in 1u +c2 out net-_c2-pad2_ 1u +v1 in gnd sine(0 10m 1k 0 0) +v2 net-_r2-pad1_ gnd dc 5 +* u2 out plot_v1 +* u1 in plot_v1 +x1 net-_r1-pad2_ net-_r2-pad2_ net-_c2-pad2_ net-_r2-pad1_ gnd LM3900 +.tran 10e-06 10e-03 0e-03 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(out) v(in) +.endc +.end diff --git a/library/SubcircuitLibrary/LM3900/LM3900_test.pro b/library/SubcircuitLibrary/LM3900/LM3900_test.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900_test.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/LM3900/LM3900_test.proj b/library/SubcircuitLibrary/LM3900/LM3900_test.proj new file mode 100644 index 000000000..a2215586a --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900_test.proj @@ -0,0 +1 @@ +schematicFile LM3900_test.sch diff --git a/library/SubcircuitLibrary/LM3900/LM3900_test.sch b/library/SubcircuitLibrary/LM3900/LM3900_test.sch new file mode 100644 index 000000000..9cec7f25d --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900_test.sch @@ -0,0 +1,277 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L resistor R1 +U 1 1 68382208 +P 4700 3450 +F 0 "R1" H 4750 3580 50 0000 C CNN +F 1 "10k" H 4750 3400 50 0000 C CNN +F 2 "" H 4750 3430 30 0000 C CNN +F 3 "" V 4750 3500 30 0000 C CNN + 1 4700 3450 + 1 0 0 -1 +$EndComp +$Comp +L resistor R2 +U 1 1 6838222B +P 4750 3700 +F 0 "R2" H 4800 3830 50 0000 C CNN +F 1 "39k" H 4800 3650 50 0000 C CNN +F 2 "" H 4800 3680 30 0000 C CNN +F 3 "" V 4800 3750 30 0000 C CNN + 1 4750 3700 + 1 0 0 -1 +$EndComp +$Comp +L resistor R3 +U 1 1 6838224D +P 5550 2850 +F 0 "R3" H 5600 2980 50 0000 C CNN +F 1 "100k" H 5600 2800 50 0000 C CNN +F 2 "" H 5600 2830 30 0000 C CNN +F 3 "" V 5600 2900 30 0000 C CNN + 1 5550 2850 + 1 0 0 -1 +$EndComp +$Comp +L resistor R4 +U 1 1 68382273 +P 6500 3900 +F 0 "R4" H 6550 4030 50 0000 C CNN +F 1 "10k" H 6550 3850 50 0000 C CNN +F 2 "" H 6550 3880 30 0000 C CNN +F 3 "" V 6550 3950 30 0000 C CNN + 1 6500 3900 + 0 1 1 0 +$EndComp +$Comp +L capacitor C1 +U 1 1 6838229D +P 4150 3400 +F 0 "C1" H 4175 3500 50 0000 L CNN +F 1 "1u" H 4175 3300 50 0000 L CNN +F 2 "" H 4188 3250 30 0000 C CNN +F 3 "" H 4150 3400 60 0000 C CNN + 1 4150 3400 + 0 1 1 0 +$EndComp +$Comp +L capacitor C2 +U 1 1 683822C6 +P 6150 3550 +F 0 "C2" H 6175 3650 50 0000 L CNN +F 1 "1u" H 6175 3450 50 0000 L CNN +F 2 "" H 6188 3400 30 0000 C CNN +F 3 "" H 6150 3550 60 0000 C CNN + 1 6150 3550 + 0 1 1 0 +$EndComp +$Comp +L sine v1 +U 1 1 683822F8 +P 3700 3850 +F 0 "v1" H 3500 3950 60 0000 C CNN +F 1 "sine" H 3500 3800 60 0000 C CNN +F 2 "R1" H 3400 3850 60 0000 C CNN +F 3 "" H 3700 3850 60 0000 C CNN + 1 3700 3850 + 1 0 0 -1 +$EndComp +$Comp +L DC v2 +U 1 1 6838232F +P 4400 4250 +F 0 "v2" H 4200 4350 60 0000 C CNN +F 1 "DC" H 4200 4200 60 0000 C CNN +F 2 "R1" H 4100 4250 60 0000 C CNN +F 3 "" H 4400 4250 60 0000 C CNN + 1 4400 4250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4650 3650 4400 3650 +Wire Wire Line + 4400 3100 4400 3800 +Wire Wire Line + 4950 3650 5100 3650 +Wire Wire Line + 4900 3400 5100 3400 +Wire Wire Line + 4300 3400 4600 3400 +Wire Wire Line + 3700 3400 4000 3400 +Wire Wire Line + 4400 3100 5500 3100 +Wire Wire Line + 5500 3100 5500 3250 +Connection ~ 4400 3650 +Wire Wire Line + 5850 3550 6000 3550 +Wire Wire Line + 6300 3550 6550 3550 +Wire Wire Line + 6550 3550 6550 3800 +$Comp +L eSim_GND #PWR01 +U 1 1 6838259D +P 6550 4300 +F 0 "#PWR01" H 6550 4050 50 0001 C CNN +F 1 "eSim_GND" H 6550 4150 50 0000 C CNN +F 2 "" H 6550 4300 50 0001 C CNN +F 3 "" H 6550 4300 50 0001 C CNN + 1 6550 4300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR02 +U 1 1 683825CA +P 3700 4500 +F 0 "#PWR02" H 3700 4250 50 0001 C CNN +F 1 "eSim_GND" H 3700 4350 50 0000 C CNN +F 2 "" H 3700 4500 50 0001 C CNN +F 3 "" H 3700 4500 50 0001 C CNN + 1 3700 4500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR03 +U 1 1 68382602 +P 5500 4000 +F 0 "#PWR03" H 5500 3750 50 0001 C CNN +F 1 "eSim_GND" H 5500 3850 50 0000 C CNN +F 2 "" H 5500 4000 50 0001 C CNN +F 3 "" H 5500 4000 50 0001 C CNN + 1 5500 4000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5500 4000 5500 3850 +Wire Wire Line + 3700 4300 3700 4500 +Wire Wire Line + 6550 4100 6550 4300 +$Comp +L eSim_GND #PWR04 +U 1 1 683827B5 +P 4400 4900 +F 0 "#PWR04" H 4400 4650 50 0001 C CNN +F 1 "eSim_GND" H 4400 4750 50 0000 C CNN +F 2 "" H 4400 4900 50 0001 C CNN +F 3 "" H 4400 4900 50 0001 C CNN + 1 4400 4900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4400 4700 4400 4900 +Wire Wire Line + 5050 3400 5050 2800 +Wire Wire Line + 5050 2800 5450 2800 +Connection ~ 5050 3400 +Wire Wire Line + 5750 2800 5950 2800 +Wire Wire Line + 5950 2800 5950 3550 +Connection ~ 5950 3550 +$Comp +L plot_v1 U2 +U 1 1 68382854 +P 6550 3500 +F 0 "U2" H 6550 4000 60 0000 C CNN +F 1 "plot_v1" H 6750 3850 60 0000 C CNN +F 2 "" H 6550 3500 60 0000 C CNN +F 3 "" H 6550 3500 60 0000 C CNN + 1 6550 3500 + 1 0 0 -1 +$EndComp +$Comp +L plot_v1 U1 +U 1 1 683828BD +P 3700 3500 +F 0 "U1" H 3700 4000 60 0000 C CNN +F 1 "plot_v1" H 3900 3850 60 0000 C CNN +F 2 "" H 3700 3500 60 0000 C CNN +F 3 "" H 3700 3500 60 0000 C CNN + 1 3700 3500 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3700 3300 3700 3400 +Wire Wire Line + 6550 3300 6550 3600 +Connection ~ 6550 3600 +Text GLabel 6450 3400 0 60 Input ~ 0 +out +Wire Wire Line + 6450 3400 6550 3400 +Connection ~ 6550 3400 +Text GLabel 3550 3350 0 60 Input ~ 0 +in +Wire Wire Line + 3550 3350 3700 3350 +Connection ~ 3700 3350 +$Comp +L LM3900 X1 +U 1 1 68382FF8 +P 5450 3550 +F 0 "X1" H 5450 3150 60 0000 C CNN +F 1 "LM3900" H 5450 4050 60 0000 C CNN +F 2 "" H 5450 4050 60 0001 C CNN +F 3 "" H 5450 4050 60 0001 C CNN + 1 5450 3550 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/LM3900/LM3900_test_Previous_Values.xml b/library/SubcircuitLibrary/LM3900/LM3900_test_Previous_Values.xml new file mode 100644 index 000000000..d6bd25985 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/LM3900_test_Previous_Values.xml @@ -0,0 +1 @@ +sine010m1kdc5C:\FOSSEE\eSim\library\SubcircuitLibrary\LM3900falsetruefalse1010010KHzKHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes01010msusms \ No newline at end of file diff --git a/library/SubcircuitLibrary/LM3900/NPN.lib b/library/SubcircuitLibrary/LM3900/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/LM3900/PNP.lib b/library/SubcircuitLibrary/LM3900/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/LM3900/analysis b/library/SubcircuitLibrary/LM3900/analysis new file mode 100644 index 000000000..6783e70d4 --- /dev/null +++ b/library/SubcircuitLibrary/LM3900/analysis @@ -0,0 +1 @@ +.tran 10e-06 10e-03 0e-03 \ No newline at end of file diff --git a/library/SubcircuitLibrary/LM760/D.lib b/library/SubcircuitLibrary/LM760/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/LM760/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/LM760/LM760.cir b/library/SubcircuitLibrary/LM760/LM760.cir new file mode 100644 index 000000000..1b956443f --- /dev/null +++ b/library/SubcircuitLibrary/LM760/LM760.cir @@ -0,0 +1,55 @@ +.title KiCad schematic +Q13 Net-_Q13-Pad1_ Net-_Q12-Pad1_ Net-_Q13-Pad3_ eSim_NPN +R8 Net-_Q16-Pad2_ Net-_Q9-Pad3_ 620 +Q9 Net-_Q4-Pad1_ unconnected-_Q9-Pad2_ Net-_Q9-Pad3_ eSim_NPN +R10 Net-_Q11-Pad1_ Net-_Q9-Pad3_ 620 +R11 Net-_Q12-Pad1_ Net-_Q9-Pad3_ 1050 +Q8 Net-_Q16-Pad2_ Net-_D1-Pad1_ Net-_Q10-Pad1_ eSim_NPN +Q11 Net-_Q11-Pad1_ Net-_D2-Pad1_ Net-_Q10-Pad1_ eSim_NPN +R14 Net-_Q13-Pad1_ Net-_Q4-Pad1_ 5000 +R15 Net-_Q16-Pad1_ Net-_Q4-Pad1_ 820 +Q15 Net-_Q13-Pad1_ Net-_Q13-Pad3_ Net-_Q15-Pad3_ eSim_NPN +D2 Net-_D2-Pad1_ Net-_D2-Pad2_ eSim_Diode +U3 Net-_D2-Pad2_ Net-_Q6-Pad3_ zener +Q10 Net-_Q10-Pad1_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_NPN +R9 Net-_R12-Pad1_ Net-_Q10-Pad3_ 100 +Q3 Net-_Q3-Pad1_ Net-_Q3-Pad2_ Net-_Q1-Pad3_ eSim_NPN +R4 Net-_R12-Pad1_ Net-_Q5-Pad3_ 350 +Q7 Net-_D2-Pad2_ Net-_Q10-Pad2_ Net-_Q7-Pad3_ eSim_NPN +R6 Net-_R12-Pad1_ Net-_Q7-Pad3_ 350 +Q5 Net-_D1-Pad2_ Net-_Q10-Pad2_ Net-_Q5-Pad3_ eSim_NPN +Q2 Net-_Q1-Pad3_ Net-_Q10-Pad2_ Net-_Q2-Pad3_ eSim_NPN +R2 Net-_R12-Pad1_ Net-_Q2-Pad3_ 350 +R7 Net-_D2-Pad1_ Net-_Q6-Pad3_ 10k +R5 Net-_D1-Pad1_ Net-_Q4-Pad3_ 10k +D1 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +Q6 Net-_Q4-Pad1_ Net-_Q3-Pad1_ Net-_Q6-Pad3_ eSim_NPN +R1 Net-_Q1-Pad1_ Net-_Q4-Pad1_ 1000 +R3 Net-_Q3-Pad1_ Net-_Q4-Pad1_ 1000 +Q4 Net-_Q4-Pad1_ Net-_Q1-Pad1_ Net-_Q4-Pad3_ eSim_NPN +U2 Net-_D1-Pad2_ Net-_Q4-Pad3_ zener +U1 Net-_Q3-Pad2_ Net-_Q1-Pad2_ Net-_R12-Pad1_ Net-_Q15-Pad3_ Net-_D3-Pad2_ Net-_D4-Pad2_ Net-_Q4-Pad1_ PORT +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_NPN +R17 Net-_R12-Pad1_ Net-_Q17-Pad3_ 350 +Q16 Net-_Q16-Pad1_ Net-_Q16-Pad2_ Net-_Q16-Pad3_ eSim_NPN +R16 Net-_Q10-Pad2_ Net-_Q15-Pad3_ 4400 +Q17 Net-_Q10-Pad2_ Net-_Q10-Pad2_ Net-_Q17-Pad3_ eSim_NPN +Q14 Net-_Q13-Pad3_ Net-_Q10-Pad2_ Net-_Q14-Pad3_ eSim_NPN +R13 Net-_R12-Pad1_ Net-_Q14-Pad3_ 4000 +R12 Net-_R12-Pad1_ Net-_Q12-Pad3_ 300 +Q18 Net-_Q16-Pad3_ Net-_Q16-Pad3_ Net-_Q15-Pad3_ eSim_NPN +Q12 Net-_Q12-Pad1_ Net-_Q10-Pad2_ Net-_Q12-Pad3_ eSim_NPN +R18 Net-_D3-Pad2_ Net-_Q16-Pad3_ 3900 +Q20 Net-_D3-Pad2_ Net-_Q16-Pad3_ Net-_Q15-Pad3_ eSim_NPN +D3 Net-_D3-Pad1_ Net-_D3-Pad2_ eSim_Diode +Q19 Net-_Q19-Pad1_ Net-_Q16-Pad1_ Net-_D3-Pad1_ eSim_NPN +Q23 Net-_Q23-Pad1_ Net-_Q21-Pad1_ Net-_D4-Pad1_ eSim_NPN +R22 Net-_Q23-Pad1_ Net-_Q4-Pad1_ 100 +D4 Net-_D4-Pad1_ Net-_D4-Pad2_ eSim_Diode +Q22 Net-_Q21-Pad3_ Net-_Q21-Pad3_ Net-_Q15-Pad3_ eSim_NPN +R21 Net-_D4-Pad2_ Net-_Q21-Pad3_ 3900 +Q24 Net-_D4-Pad2_ Net-_Q21-Pad3_ Net-_Q15-Pad3_ eSim_NPN +Q21 Net-_Q21-Pad1_ Net-_Q11-Pad1_ Net-_Q21-Pad3_ eSim_NPN +R20 Net-_Q21-Pad1_ Net-_Q4-Pad1_ 820 +R19 Net-_Q19-Pad1_ Net-_Q4-Pad1_ 100 +.end diff --git a/library/SubcircuitLibrary/LM760/LM760.cir.out b/library/SubcircuitLibrary/LM760/LM760.cir.out new file mode 100644 index 000000000..590ad0f42 --- /dev/null +++ b/library/SubcircuitLibrary/LM760/LM760.cir.out @@ -0,0 +1,72 @@ +.title kicad schematic + +.include D.lib +.include NPN.lib +q13 net-_q13-pad1_ net-_q12-pad1_ net-_q13-pad3_ Q2N2222 +r8 net-_q16-pad2_ net-_q9-pad3_ 620 +q9 net-_q4-pad1_ unconnected-_q9-pad2_ net-_q9-pad3_ Q2N2222 +r10 net-_q11-pad1_ net-_q9-pad3_ 620 +r11 net-_q12-pad1_ net-_q9-pad3_ 1050 +q8 net-_q16-pad2_ net-_d1-pad1_ net-_q10-pad1_ Q2N2222 +q11 net-_q11-pad1_ net-_d2-pad1_ net-_q10-pad1_ Q2N2222 +r14 net-_q13-pad1_ net-_q4-pad1_ 5000 +r15 net-_q16-pad1_ net-_q4-pad1_ 820 +q15 net-_q13-pad1_ net-_q13-pad3_ net-_q15-pad3_ Q2N2222 +d2 net-_d2-pad1_ net-_d2-pad2_ 1N4148 +* u3 net-_d2-pad2_ net-_q6-pad3_ zener +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +r9 net-_r12-pad1_ net-_q10-pad3_ 100 +q3 net-_q3-pad1_ net-_q3-pad2_ net-_q1-pad3_ Q2N2222 +r4 net-_r12-pad1_ net-_q5-pad3_ 350 +q7 net-_d2-pad2_ net-_q10-pad2_ net-_q7-pad3_ Q2N2222 +r6 net-_r12-pad1_ net-_q7-pad3_ 350 +q5 net-_d1-pad2_ net-_q10-pad2_ net-_q5-pad3_ Q2N2222 +q2 net-_q1-pad3_ net-_q10-pad2_ net-_q2-pad3_ Q2N2222 +r2 net-_r12-pad1_ net-_q2-pad3_ 350 +r7 net-_d2-pad1_ net-_q6-pad3_ 10k +r5 net-_d1-pad1_ net-_q4-pad3_ 10k +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +q6 net-_q4-pad1_ net-_q3-pad1_ net-_q6-pad3_ Q2N2222 +r1 net-_q1-pad1_ net-_q4-pad1_ 1000 +r3 net-_q3-pad1_ net-_q4-pad1_ 1000 +q4 net-_q4-pad1_ net-_q1-pad1_ net-_q4-pad3_ Q2N2222 +* u2 net-_d1-pad2_ net-_q4-pad3_ zener +* u1 net-_q3-pad2_ net-_q1-pad2_ net-_r12-pad1_ net-_q15-pad3_ net-_d3-pad2_ net-_d4-pad2_ net-_q4-pad1_ port +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +r17 net-_r12-pad1_ net-_q17-pad3_ 350 +q16 net-_q16-pad1_ net-_q16-pad2_ net-_q16-pad3_ Q2N2222 +r16 net-_q10-pad2_ net-_q15-pad3_ 4400 +q17 net-_q10-pad2_ net-_q10-pad2_ net-_q17-pad3_ Q2N2222 +q14 net-_q13-pad3_ net-_q10-pad2_ net-_q14-pad3_ Q2N2222 +r13 net-_r12-pad1_ net-_q14-pad3_ 4000 +r12 net-_r12-pad1_ net-_q12-pad3_ 300 +q18 net-_q16-pad3_ net-_q16-pad3_ net-_q15-pad3_ Q2N2222 +q12 net-_q12-pad1_ net-_q10-pad2_ net-_q12-pad3_ Q2N2222 +r18 net-_d3-pad2_ net-_q16-pad3_ 3900 +q20 net-_d3-pad2_ net-_q16-pad3_ net-_q15-pad3_ Q2N2222 +d3 net-_d3-pad1_ net-_d3-pad2_ 1N4148 +q19 net-_q19-pad1_ net-_q16-pad1_ net-_d3-pad1_ Q2N2222 +q23 net-_q23-pad1_ net-_q21-pad1_ net-_d4-pad1_ Q2N2222 +r22 net-_q23-pad1_ net-_q4-pad1_ 100 +d4 net-_d4-pad1_ net-_d4-pad2_ 1N4148 +q22 net-_q21-pad3_ net-_q21-pad3_ net-_q15-pad3_ Q2N2222 +r21 net-_d4-pad2_ net-_q21-pad3_ 3900 +q24 net-_d4-pad2_ net-_q21-pad3_ net-_q15-pad3_ Q2N2222 +q21 net-_q21-pad1_ net-_q11-pad1_ net-_q21-pad3_ Q2N2222 +r20 net-_q21-pad1_ net-_q4-pad1_ 820 +r19 net-_q19-pad1_ net-_q4-pad1_ 100 +a1 net-_d2-pad2_ net-_q6-pad3_ u3 +a2 net-_d1-pad2_ net-_q4-pad3_ u2 +* Schematic Name: zener, Ngspice Name: zener +.model u3 zener(v_breakdown=5.6 i_breakdown=2.0e-2 i_sat=1.0e-12 n_forward=1.0 limit_switch=FALSE ) +* Schematic Name: zener, Ngspice Name: zener +.model u2 zener(v_breakdown=5.6 i_breakdown=2.0e-2 i_sat=1.0e-12 n_forward=1.0 limit_switch=FALSE ) +.tran 1e-09 1e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/LM760/LM760.kicad_sch b/library/SubcircuitLibrary/LM760/LM760.kicad_sch new file mode 100644 index 000000000..a04b0d264 --- /dev/null +++ b/library/SubcircuitLibrary/LM760/LM760.kicad_sch @@ -0,0 +1,2878 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 72a32d31-5e77-426b-9744-70b7ae2474a1) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Analog:zener" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -1.27 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "zener" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "zener_0_1" + (polyline + (pts + (xy 2.54 -1.27) + (xy 1.27 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy 2.54 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy 3.81 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 0 -1.27) + (xy 2.54 0) + (xy 0 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "zener_1_1" + (pin input line (at -5.08 0 0) (length 5.08) + (name "~" (effects (font (size 1.0922 1.0922)))) + (number "IN" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.0922 1.0922)))) + (number "OUT" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_Diode" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "eSim_Diode" (id 1) (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "TO-???* *SingleDiode *_Diode_* *SingleDiode* D_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_Diode_0_0" + (text "A" (at -2.54 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (text "K" (at 2.54 1.27 0) + (effects (font (size 1.524 1.524))) + ) + ) + (symbol "eSim_Diode_0_1" + (polyline + (pts + (xy 1.27 1.27) + (xy 1.27 -1.27) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 1.27) + (xy 1.27 0) + (xy -1.27 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "eSim_Diode_1_1" + (pin passive line (at -3.81 0 0) (length 2.54) + (name "A" (effects (font (size 1.016 1.016)))) + (number "1" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 3.81 0 180) (length 2.54) + (name "K" (effects (font (size 1.016 1.016)))) + (number "2" (effects (font (size 1.016 1.016)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_NPN" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_NPN" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_NPN_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_NPN_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:resistor" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 1.27 3.302 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "resistor" (id 1) (at 1.27 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 1.27 -0.508 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 1.27 1.27 90) + (effects (font (size 0.762 0.762))) + ) + (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "resistor_0_1" + (rectangle (start 3.81 0.254) (end -1.27 2.286) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "resistor_1_1" + (pin passive line (at -2.54 1.27 0) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "1" (effects (font (size 1.524 1.524)))) + ) + (pin passive line (at 5.08 1.27 180) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "2" (effects (font (size 1.524 1.524)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 250.19 120.65) (diameter 0) (color 0 0 0 0) + (uuid 0392eb11-1a21-4635-a95d-c60bd7ad727b) + ) + (junction (at 226.06 24.13) (diameter 0) (color 0 0 0 0) + (uuid 06c4749d-1825-43ac-81c3-1560fb1ac3d1) + ) + (junction (at 250.19 200.66) (diameter 0) (color 0 0 0 0) + (uuid 0da8f33f-f5ab-41d1-9f22-ea1328a277cb) + ) + (junction (at 148.59 173.99) (diameter 0) (color 0 0 0 0) + (uuid 0f96b3f9-34e5-4cb3-b0ca-1e5fc3892d6e) + ) + (junction (at 358.14 91.44) (diameter 0) (color 0 0 0 0) + (uuid 168a3fb6-9437-4fd1-a4b3-d39d9316ece0) + ) + (junction (at 113.03 173.99) (diameter 0) (color 0 0 0 0) + (uuid 1f9ffa55-cfda-4049-9ee2-dd766cf2705f) + ) + (junction (at 250.19 163.83) (diameter 0) (color 0 0 0 0) + (uuid 208b619a-59ff-42f9-8b1e-51b70a8572e6) + ) + (junction (at 179.07 172.72) (diameter 0) (color 0 0 0 0) + (uuid 289ba84c-7841-402f-9ed9-1f38a7855605) + ) + (junction (at 306.07 83.82) (diameter 0) (color 0 0 0 0) + (uuid 2b023a27-7e32-4ed5-af5c-8eadab826f51) + ) + (junction (at 35.56 66.04) (diameter 0) (color 0 0 0 0) + (uuid 2b1bea62-61f7-4559-a1ab-e541e5979b4a) + ) + (junction (at 278.13 120.65) (diameter 0) (color 0 0 0 0) + (uuid 2c6e7d06-69f6-4423-886d-08a757373aa5) + ) + (junction (at 245.11 24.13) (diameter 0) (color 0 0 0 0) + (uuid 3928e7f2-64c4-4e7e-9c99-b333c6a4a3b1) + ) + (junction (at 377.19 24.13) (diameter 0) (color 0 0 0 0) + (uuid 4ac2a51d-bb9a-40d1-b1b6-0485dc5506c0) + ) + (junction (at 351.79 91.44) (diameter 0) (color 0 0 0 0) + (uuid 4be2b5bd-1fc9-4b57-a331-5563bdcbbdbb) + ) + (junction (at 307.34 120.65) (diameter 0) (color 0 0 0 0) + (uuid 5099dd68-8ddc-473d-b750-512daaadadbb) + ) + (junction (at 77.47 24.13) (diameter 0) (color 0 0 0 0) + (uuid 51cef856-b94b-49df-b551-b8605ae2137a) + ) + (junction (at 381 120.65) (diameter 0) (color 0 0 0 0) + (uuid 525b5511-f254-4657-a651-da787f344bee) + ) + (junction (at 381 81.28) (diameter 0) (color 0 0 0 0) + (uuid 56901407-fcaa-41fc-9512-3055540a9a44) + ) + (junction (at 85.09 173.99) (diameter 0) (color 0 0 0 0) + (uuid 59678097-e89b-4e6a-b5be-fec908dee662) + ) + (junction (at 207.01 106.68) (diameter 0) (color 0 0 0 0) + (uuid 5a4d566e-b7e3-45e2-b875-5e6c1be77de0) + ) + (junction (at 77.47 81.28) (diameter 0) (color 0 0 0 0) + (uuid 5db5d619-75f8-4361-8dd5-c7cc6b616d7c) + ) + (junction (at 54.61 24.13) (diameter 0) (color 0 0 0 0) + (uuid 5f37f712-690a-4bb2-9006-bcd699ae63cd) + ) + (junction (at 140.97 106.68) (diameter 0) (color 0 0 0 0) + (uuid 69ccdbc1-7b5d-4045-971a-19ee1f69fc0e) + ) + (junction (at 146.05 72.39) (diameter 0) (color 0 0 0 0) + (uuid 6cf1a62d-f57c-4eba-985b-f143e089654c) + ) + (junction (at 77.47 111.76) (diameter 0) (color 0 0 0 0) + (uuid 7713003f-e1a3-4718-a827-2cbb8a7f44ae) + ) + (junction (at 166.37 95.25) (diameter 0) (color 0 0 0 0) + (uuid 7fb9aeda-883b-42e7-b58b-21582038f270) + ) + (junction (at 130.81 77.47) (diameter 0) (color 0 0 0 0) + (uuid 85ca10c7-7cca-4653-aa4f-b7884046df32) + ) + (junction (at 245.11 53.34) (diameter 0) (color 0 0 0 0) + (uuid 8907218a-8295-493b-8e79-830280cc88a9) + ) + (junction (at 130.81 53.34) (diameter 0) (color 0 0 0 0) + (uuid 89083cfc-bc05-4d1a-a4cc-a692c555d848) + ) + (junction (at 271.78 92.71) (diameter 0) (color 0 0 0 0) + (uuid 8994ef24-e1a0-4d75-967d-53830f27e751) + ) + (junction (at 278.13 92.71) (diameter 0) (color 0 0 0 0) + (uuid 89f52750-1aff-4215-9400-8ca3039962b7) + ) + (junction (at 337.82 91.44) (diameter 0) (color 0 0 0 0) + (uuid 8a70ebfd-5644-41ad-809f-6c808a576ad0) + ) + (junction (at 337.82 46.99) (diameter 0) (color 0 0 0 0) + (uuid 8e62079b-7b7c-4094-9653-3260a816a088) + ) + (junction (at 130.81 24.13) (diameter 0) (color 0 0 0 0) + (uuid 919a76d8-efdf-474c-8fa3-8e75ba74e200) + ) + (junction (at 248.92 92.71) (diameter 0) (color 0 0 0 0) + (uuid 980d33a7-1217-4919-9e74-310fa489e217) + ) + (junction (at 355.6 120.65) (diameter 0) (color 0 0 0 0) + (uuid acbd614c-512c-47cc-9d3a-6560a6a0da5c) + ) + (junction (at 214.63 172.72) (diameter 0) (color 0 0 0 0) + (uuid b3dd1a52-262f-481c-b272-438f414453d4) + ) + (junction (at 77.47 200.66) (diameter 0) (color 0 0 0 0) + (uuid b6b40242-16ae-4c05-8216-4ac62f56340b) + ) + (junction (at 48.26 137.16) (diameter 0) (color 0 0 0 0) + (uuid b70088b5-0b05-48e1-a370-3cd59da9d9b4) + ) + (junction (at 113.03 123.19) (diameter 0) (color 0 0 0 0) + (uuid b8d77ab6-7ae2-4918-88ac-ba28cb830219) + ) + (junction (at 257.81 173.99) (diameter 0) (color 0 0 0 0) + (uuid ba15ca7c-333a-4dc3-a590-d9d5fff80e91) + ) + (junction (at 102.87 134.62) (diameter 0) (color 0 0 0 0) + (uuid c124d069-9d23-453a-ae42-efd1e7e19d1f) + ) + (junction (at 106.68 200.66) (diameter 0) (color 0 0 0 0) + (uuid c391f78d-ac32-48b3-b1ea-9be0eeef92f7) + ) + (junction (at 304.8 24.13) (diameter 0) (color 0 0 0 0) + (uuid c87bf240-1111-4231-88ef-1c5b747575f4) + ) + (junction (at 104.14 24.13) (diameter 0) (color 0 0 0 0) + (uuid d606dab6-7c9c-4a88-b2ef-8ee2953532ed) + ) + (junction (at 86.36 95.25) (diameter 0) (color 0 0 0 0) + (uuid d70724d9-c8e1-469b-8c19-282d9752816f) + ) + (junction (at 171.45 200.66) (diameter 0) (color 0 0 0 0) + (uuid d7cd5e50-a638-4ac1-86b8-6cc06429a12e) + ) + (junction (at 337.82 24.13) (diameter 0) (color 0 0 0 0) + (uuid d8dd6b8e-22f1-48d4-bcab-6f831c1e9bdb) + ) + (junction (at 146.05 53.34) (diameter 0) (color 0 0 0 0) + (uuid d9624bd9-97f4-4fbc-abcc-1af91860b947) + ) + (junction (at 381 83.82) (diameter 0) (color 0 0 0 0) + (uuid db2f9cd6-e889-41c8-8fe1-252da15fe959) + ) + (junction (at 233.68 86.36) (diameter 0) (color 0 0 0 0) + (uuid dc2376ef-ca3f-4fef-a5c5-0c0deaf254b1) + ) + (junction (at 306.07 80.01) (diameter 0) (color 0 0 0 0) + (uuid dc83e583-2501-437a-bb0f-967799dd98cf) + ) + (junction (at 104.14 102.87) (diameter 0) (color 0 0 0 0) + (uuid e18bf3b8-f8dd-467e-b0cd-e27be298d3f8) + ) + (junction (at 140.97 200.66) (diameter 0) (color 0 0 0 0) + (uuid e24a617c-a5c3-4d2e-81d3-934ce36078a3) + ) + (junction (at 54.61 43.18) (diameter 0) (color 0 0 0 0) + (uuid e320cc69-d727-4ffb-a16f-cd3df01c9495) + ) + (junction (at 208.28 200.66) (diameter 0) (color 0 0 0 0) + (uuid fe503c5f-471e-4387-a821-a19d5df74de8) + ) + + (wire (pts (xy 337.82 91.44) (xy 337.82 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00cf0b0a-f971-414b-8fca-feb71fb094ff) + ) + (wire (pts (xy 304.8 24.13) (xy 337.82 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 014e1ea1-972e-4300-99f3-2c31fefb6a7b) + ) + (wire (pts (xy 113.03 118.11) (xy 113.03 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0187945a-a0c4-4c75-bd06-7d97ff885601) + ) + (wire (pts (xy 226.06 24.13) (xy 226.06 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 020eb988-1a66-4b20-939d-9481656f9571) + ) + (wire (pts (xy 77.47 101.6) (xy 77.47 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03c10b83-e5f4-4a86-a11c-35c9d2105d1d) + ) + (wire (pts (xy 306.07 83.82) (xy 306.07 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 049e5b6e-9026-4822-ac78-c60ee6cbfe00) + ) + (wire (pts (xy 166.37 62.23) (xy 166.37 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06266073-acca-4a86-b5a9-7c53bf21e062) + ) + (wire (pts (xy 195.58 86.36) (xy 233.68 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07d46d3a-da71-4e48-a993-800b8777f08b) + ) + (wire (pts (xy 77.47 24.13) (xy 77.47 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09261ff3-fd16-4bbf-b393-4530fe695694) + ) + (wire (pts (xy 271.78 80.01) (xy 271.78 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ad1ba1d-3a30-4436-9e45-d95e8f2acff6) + ) + (wire (pts (xy 86.36 81.28) (xy 77.47 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0addc376-cd1c-4b7e-8b3d-50a690ee7db7) + ) + (wire (pts (xy 351.79 91.44) (xy 358.14 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0be32099-c57e-40f6-a47c-543ed38c6b78) + ) + (wire (pts (xy 86.36 92.71) (xy 86.36 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f1caa5d-3e86-4707-8f89-730c34463188) + ) + (wire (pts (xy 148.59 177.8) (xy 113.03 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12aaa8e8-ff0a-467f-b961-6c4613699d1f) + ) + (wire (pts (xy 195.58 106.68) (xy 195.58 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12d98c92-3864-4bfc-81e6-75eb854e4a7f) + ) + (wire (pts (xy 77.47 179.07) (xy 77.47 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 133a7422-c1eb-4ee0-b750-49473f6739a3) + ) + (wire (pts (xy 54.61 43.18) (xy 96.52 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14f656e5-cbba-4ff9-b38d-06581adb61eb) + ) + (wire (pts (xy 307.34 120.65) (xy 278.13 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 156d1899-4cff-430f-96e2-a11042b1e7ca) + ) + (wire (pts (xy 245.11 53.34) (xy 297.18 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 158b933b-b076-41de-86ed-314acbf6a866) + ) + (wire (pts (xy 111.76 88.9) (xy 111.76 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16291fd6-f48a-48c9-bf3d-781cf5768f8d) + ) + (wire (pts (xy 106.68 200.66) (xy 140.97 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16c2a8c8-7bc7-455e-bb7b-185b485d4c07) + ) + (wire (pts (xy 325.12 53.34) (xy 325.12 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 179cb2f8-53c0-40cb-88c2-a5a04aef789a) + ) + (wire (pts (xy 358.14 91.44) (xy 373.38 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a920a0f-526e-423d-9e53-588bc3e70bda) + ) + (wire (pts (xy 130.81 77.47) (xy 130.81 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1da20791-62e8-4021-9b79-fd18166e10ed) + ) + (wire (pts (xy 113.03 102.87) (xy 104.14 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 206e6073-b54a-4218-99ac-8c4445bb2192) + ) + (wire (pts (xy 195.58 106.68) (xy 207.01 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20d2b706-b599-47a4-a38c-e269cc983350) + ) + (wire (pts (xy 77.47 200.66) (xy 106.68 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 211cc955-8d0d-4c69-b638-d9c61ed3e246) + ) + (wire (pts (xy 111.76 95.25) (xy 86.36 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21efcba6-9a42-42a5-8d08-03c444713216) + ) + (wire (pts (xy 288.29 80.01) (xy 271.78 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22ef102b-51cb-4f84-8e8e-bbe395a6f7dc) + ) + (wire (pts (xy 372.11 46.99) (xy 337.82 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 232b4110-bdbf-467e-931e-2006e1199a11) + ) + (wire (pts (xy 102.87 134.62) (xy 102.87 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23498e3b-729f-4a47-91d2-812b6205d757) + ) + (wire (pts (xy 214.63 167.64) (xy 214.63 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 244c7da3-5dcc-4d55-be03-6af770a57586) + ) + (wire (pts (xy 355.6 99.06) (xy 358.14 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 264b2281-9198-4f7c-ac25-ce6153979f68) + ) + (wire (pts (xy 104.14 24.13) (xy 104.14 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26cb83f6-0939-4d84-945b-b2bbace4ae7e) + ) + (wire (pts (xy 278.13 111.76) (xy 278.13 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27d802cd-7e2a-49bc-95f8-be20e1d92ef9) + ) + (wire (pts (xy 148.59 173.99) (xy 148.59 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b5f3c5b-b524-4c7a-80f9-dc6b03cae97f) + ) + (wire (pts (xy 355.6 120.65) (xy 307.34 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2cbd44b7-baf2-4061-9b83-bc4f1a6b645d) + ) + (wire (pts (xy 85.09 173.99) (xy 85.09 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d53595e-ddd7-43fb-9d05-d379bf78e150) + ) + (wire (pts (xy 130.81 69.85) (xy 130.81 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e11a7ec-c502-4c53-a123-a44e2856d20e) + ) + (wire (pts (xy 55.88 177.8) (xy 55.88 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f6faa28-8264-4e31-b104-015cd59a5383) + ) + (wire (pts (xy 113.03 110.49) (xy 113.03 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 307f144b-67f9-4833-824f-37c1521597c3) + ) + (wire (pts (xy 250.19 157.48) (xy 250.19 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38ac90ad-1d08-4a10-a06d-02b51b050f7c) + ) + (wire (pts (xy 77.47 111.76) (xy 77.47 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b58475f-1ee9-407a-8c99-1c0c4998c5c2) + ) + (wire (pts (xy 146.05 72.39) (xy 146.05 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cf11c2e-2109-4dde-a9cf-c5ae73c0cf05) + ) + (wire (pts (xy 166.37 95.25) (xy 187.96 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d3354e2-7261-4887-b80a-da4841fa90e1) + ) + (wire (pts (xy 207.01 182.88) (xy 208.28 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d879047-2d64-4e1f-8f00-c3acf8a090a6) + ) + (wire (pts (xy 384.81 83.82) (xy 381 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3deab558-51bb-4f12-86c9-9cb6c84fff9e) + ) + (wire (pts (xy 147.32 93.98) (xy 147.32 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 400f813f-e41c-4379-a73c-a94dae9fb0fa) + ) + (wire (pts (xy 295.91 80.01) (xy 306.07 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 410b1629-fda9-48a2-817e-0b8e5b19c034) + ) + (wire (pts (xy 381 83.82) (xy 381 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43f98198-a269-44e9-b480-bc511a24e04c) + ) + (wire (pts (xy 355.6 109.22) (xy 355.6 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 448dbd59-3477-48c8-b0d7-c053c445f887) + ) + (wire (pts (xy 245.11 53.34) (xy 245.11 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44e1f013-6790-48b6-a518-ad88848e6728) + ) + (wire (pts (xy 140.97 193.04) (xy 140.97 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47337e82-d953-4c08-9f05-101307ecde0e) + ) + (wire (pts (xy 54.61 24.13) (xy 54.61 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48820873-c7fb-4503-87af-132bd7b9589a) + ) + (wire (pts (xy 233.68 101.6) (xy 233.68 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4922c710-dc4b-473b-afc6-86362602c8cb) + ) + (wire (pts (xy 358.14 99.06) (xy 358.14 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4980a824-729f-4856-a145-aabf996ef839) + ) + (wire (pts (xy 85.09 171.45) (xy 85.09 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a3e70e6-d7a1-4542-94d4-edfdbf15decc) + ) + (wire (pts (xy 250.19 190.5) (xy 250.19 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c5d07ca-f9cb-47d3-ae6e-97e0ab3856cd) + ) + (wire (pts (xy 337.82 104.14) (xy 347.98 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d2caa9c-218d-4705-aaef-b0cde7fefdf2) + ) + (wire (pts (xy 60.96 119.38) (xy 60.96 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e4d7277-4a44-4125-abff-02e681c92a10) + ) + (wire (pts (xy 104.14 102.87) (xy 104.14 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f41ba7b-c6c0-49cc-96a5-e65c67bfe57a) + ) + (wire (pts (xy 53.34 137.16) (xy 48.26 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5014398c-2405-4459-a76a-fd342349ea35) + ) + (wire (pts (xy 307.34 97.79) (xy 307.34 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 546fb06e-ad15-454e-ac96-b574605f2298) + ) + (wire (pts (xy 154.94 88.9) (xy 154.94 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56d7b8f3-3b55-4faf-ad27-20639e60c954) + ) + (wire (pts (xy 330.2 53.34) (xy 325.12 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57050011-a771-47b1-8447-017849fb0582) + ) + (wire (pts (xy 146.05 53.34) (xy 130.81 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 585e808b-eee8-4d17-a98b-0615eb173e59) + ) + (wire (pts (xy 321.31 83.82) (xy 306.07 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a66fa54-8122-4194-a441-b641a9687832) + ) + (wire (pts (xy 166.37 53.34) (xy 146.05 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b1aee7c-c036-452e-af1f-902656e0d06f) + ) + (wire (pts (xy 105.41 187.96) (xy 106.68 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b92ebff-58e4-4637-acb8-cd90e0514035) + ) + (wire (pts (xy 146.05 68.58) (xy 146.05 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e9b30c3-f878-422b-a2f8-8f42a1a21897) + ) + (wire (pts (xy 257.81 167.64) (xy 214.63 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5eb98aaa-791a-4ba5-b029-80a965e7dd90) + ) + (wire (pts (xy 379.73 55.88) (xy 379.73 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60044399-7b25-4032-a20a-ac87527a62b7) + ) + (wire (pts (xy 278.13 92.71) (xy 299.72 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 614717eb-0254-4a20-9a1f-77622e076ee2) + ) + (wire (pts (xy 147.32 106.68) (xy 140.97 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61837c6c-2950-4634-b2ff-d21a069690da) + ) + (wire (pts (xy 269.24 163.83) (xy 250.19 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62479545-3e90-4759-8502-50ee6cb08440) + ) + (wire (pts (xy 54.61 24.13) (xy 77.47 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 626b3f14-6e86-44f0-bdbb-77df2ef73ba6) + ) + (wire (pts (xy 381 96.52) (xy 381 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6359bd79-6388-41ef-81ca-2d07ffe84f59) + ) + (wire (pts (xy 35.56 66.04) (xy 69.85 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6470502f-022b-415c-989f-187e0e28dc1f) + ) + (wire (pts (xy 179.07 170.18) (xy 148.59 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67859eee-ff57-480c-9dc4-687428c72202) + ) + (wire (pts (xy 248.92 92.71) (xy 248.92 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68080513-e3da-4b7f-86ef-878f8664b9bd) + ) + (wire (pts (xy 85.09 177.8) (xy 55.88 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a3dde48-fe9e-40ee-a421-ae9c6ff99522) + ) + (wire (pts (xy 104.14 24.13) (xy 130.81 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a63fb47-9355-4688-b4d0-1ffdf3ddb15d) + ) + (wire (pts (xy 60.96 128.27) (xy 26.67 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6cb9897c-48fd-4e56-8a4e-13f1f28d0742) + ) + (wire (pts (xy 171.45 200.66) (xy 208.28 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 706d567a-ff75-46fe-b483-2b3cd86f245a) + ) + (wire (pts (xy 325.12 45.72) (xy 189.23 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73b0fa16-2665-4a3f-b27f-3af17ec7ae5d) + ) + (wire (pts (xy 226.06 24.13) (xy 245.11 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74fcf5ea-7ebf-4f11-b1cd-e82944505f37) + ) + (wire (pts (xy 123.19 88.9) (xy 111.76 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 766efbf6-76b2-4a77-bae6-fd7d0e7e079d) + ) + (wire (pts (xy 278.13 101.6) (xy 278.13 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78bbe6e5-ddea-4114-9c2d-6d3760172dff) + ) + (wire (pts (xy 86.36 107.95) (xy 86.36 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79b6ad51-2301-48de-93f0-7982373d5f73) + ) + (wire (pts (xy 113.03 133.35) (xy 113.03 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79f835d2-71b4-41e2-a51e-15f892b4452c) + ) + (wire (pts (xy 166.37 95.25) (xy 166.37 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a296bd1-ccea-4511-a1ed-45c34acf9b4f) + ) + (wire (pts (xy 189.23 45.72) (xy 189.23 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ab6f041-fbc8-4c8f-bd8e-b39653f528f4) + ) + (wire (pts (xy 245.11 24.13) (xy 304.8 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b12f284-eec7-43af-8663-f6065fed31da) + ) + (wire (pts (xy 250.19 179.07) (xy 250.19 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e07e663-c6af-4aa1-88bb-c5d56329b90d) + ) + (wire (pts (xy 248.92 82.55) (xy 248.92 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ef328fb-2fe1-4541-ac9a-d085c3fe5c33) + ) + (wire (pts (xy 154.94 123.19) (xy 113.03 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f7fe601-208b-4bb4-b811-03ea9cf79f74) + ) + (wire (pts (xy 304.8 35.56) (xy 304.8 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 815d3fd6-d3ed-4288-bcf1-06b5f0a28d01) + ) + (wire (pts (xy 106.68 195.58) (xy 106.68 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81b7fe27-eca8-4f8b-a9ca-466503f43389) + ) + (wire (pts (xy 207.01 167.64) (xy 207.01 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8772e298-be01-429b-acb3-1981a84cb650) + ) + (wire (pts (xy 214.63 172.72) (xy 214.63 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 888aec7a-0b44-46e6-bcdb-8c9a23a6c5a5) + ) + (wire (pts (xy 104.14 113.03) (xy 102.87 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88cb1fe9-f760-4b0f-9577-12c041bb18c8) + ) + (wire (pts (xy 34.29 137.16) (xy 48.26 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8af63175-e042-4044-a9f9-b2ea7479cbc9) + ) + (wire (pts (xy 140.97 106.68) (xy 140.97 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e3085ab-bcbe-4ebb-9e24-4d18bea95ddd) + ) + (wire (pts (xy 35.56 114.3) (xy 34.29 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ec007a3-081b-4065-81cb-f54c63746ce5) + ) + (wire (pts (xy 381 81.28) (xy 381 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f401cc8-796d-49de-8af6-55c5319e14a8) + ) + (wire (pts (xy 113.03 177.8) (xy 113.03 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 929f19f3-913c-48a1-b5d6-4bce0bbf2071) + ) + (wire (pts (xy 77.47 24.13) (xy 104.14 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94dea0d1-029b-4bea-bfd0-579665e99361) + ) + (wire (pts (xy 379.73 66.04) (xy 379.73 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94e5ccb0-a30f-4ab8-82e5-ca19c6f68794) + ) + (wire (pts (xy 233.68 120.65) (xy 250.19 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9518dac1-9c77-460f-9b61-2d971c8ef96a) + ) + (wire (pts (xy 321.31 135.89) (xy 321.31 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9653c653-2be3-4a72-b83c-311bed72209a) + ) + (wire (pts (xy 77.47 71.12) (xy 77.47 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97403174-9227-4416-987f-9912eb70304f) + ) + (wire (pts (xy 140.97 200.66) (xy 171.45 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98c954b0-7c85-4595-bd1b-cf4afe48eae4) + ) + (wire (pts (xy 207.01 106.68) (xy 226.06 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 999688b5-b77c-4e76-92af-e82e752bf354) + ) + (wire (pts (xy 77.47 195.58) (xy 77.47 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99ff8b64-b89a-4843-be89-87ac4342425f) + ) + (wire (pts (xy 250.19 120.65) (xy 250.19 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9caf7e66-c6a2-4d01-8bf7-4665cbe8543f) + ) + (wire (pts (xy 102.87 125.73) (xy 102.87 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cd2f778-8b61-4aaf-9fb5-78dc33500a23) + ) + (wire (pts (xy 250.19 163.83) (xy 250.19 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a02fc38d-a9cc-4511-838d-d3de8e5efcd9) + ) + (wire (pts (xy 130.81 24.13) (xy 130.81 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1474187-3237-40e1-ac10-46bca0ce8fa5) + ) + (wire (pts (xy 86.36 111.76) (xy 77.47 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1ed1e9a-9f6c-4392-b767-18fd309314f8) + ) + (wire (pts (xy 48.26 179.07) (xy 48.26 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2449ec0-9b9e-42d8-a927-19c7b73a9e6c) + ) + (wire (pts (xy 369.57 81.28) (xy 381 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3109818-c06f-4f6f-aaa8-25a6a9ed726b) + ) + (wire (pts (xy 381 81.28) (xy 381 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a613027d-cfef-481a-a1e9-b431b07bf265) + ) + (wire (pts (xy 179.07 175.26) (xy 214.63 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a615b629-ebaa-412a-a7bf-b8249b4dea3a) + ) + (wire (pts (xy 304.8 58.42) (xy 304.8 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7fc6d0a-b2b0-40cd-8ccc-29191e2f872d) + ) + (wire (pts (xy 271.78 92.71) (xy 278.13 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8c5735a-1c24-42f1-b0bd-0402af9b7772) + ) + (wire (pts (xy 245.11 36.83) (xy 245.11 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a971ccc4-c912-4ab7-926b-6e532c80211b) + ) + (wire (pts (xy 54.61 39.37) (xy 54.61 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab2069e9-fd54-4fcc-a66a-29ee62399b7f) + ) + (wire (pts (xy 208.28 200.66) (xy 250.19 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad105601-5394-4b8d-af0f-31cc766eafb6) + ) + (wire (pts (xy 102.87 168.91) (xy 105.41 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afe7f47d-04f4-40be-9e44-abf0ebe15d19) + ) + (wire (pts (xy 361.95 81.28) (xy 351.79 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3f96e86-ac4b-4642-9f9a-193a5316b67c) + ) + (wire (pts (xy 379.73 71.12) (xy 381 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5f2ec13-de49-442f-8d72-15400abce603) + ) + (wire (pts (xy 189.23 72.39) (xy 146.05 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6902baf-9725-430f-99fa-945c04513eb1) + ) + (wire (pts (xy 166.37 167.64) (xy 171.45 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7ca40c9-c19c-466f-b391-e246805da1ad) + ) + (wire (pts (xy 233.68 86.36) (xy 233.68 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b831b8e8-2678-4f9a-a4d6-091267d564bb) + ) + (wire (pts (xy 304.8 64.77) (xy 306.07 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9370dd0-274d-44b0-ab7f-19b8ff34a465) + ) + (wire (pts (xy 35.56 66.04) (xy 35.56 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9ad0e4c-633c-4c00-8a35-6a4e9851205e) + ) + (wire (pts (xy 337.82 35.56) (xy 337.82 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc96dd1d-a8e8-4a16-a43f-58dc4d08d6d0) + ) + (wire (pts (xy 306.07 87.63) (xy 307.34 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid beca76b0-bf11-4949-ad9d-046ba80806c6) + ) + (wire (pts (xy 53.34 124.46) (xy 53.34 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf0ea532-d9c6-4f95-8ba6-43b9accce85a) + ) + (wire (pts (xy 54.61 43.18) (xy 54.61 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfb7b006-8cde-4e53-99d8-901833114c1d) + ) + (wire (pts (xy 381 135.89) (xy 321.31 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1a9b2d4-5edf-4e02-93cb-df223ec7dc67) + ) + (wire (pts (xy 208.28 190.5) (xy 208.28 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2ace6dd-da65-40b0-9eaf-e0f29a41e82d) + ) + (wire (pts (xy 146.05 60.96) (xy 146.05 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2d736cb-2108-45ed-8591-b666a5a9f54f) + ) + (wire (pts (xy 113.03 173.99) (xy 113.03 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4664376-a2ee-428e-8a47-d43b8343311c) + ) + (wire (pts (xy 351.79 81.28) (xy 351.79 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4fe5b2b-3ee6-4470-8d83-36693cc5bbcd) + ) + (wire (pts (xy 130.81 77.47) (xy 241.3 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c51ff134-f347-4be9-a604-e70ca3ecee8e) + ) + (wire (pts (xy 113.03 123.19) (xy 113.03 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6987dd9-5220-4b1e-a97b-2fb23d47124b) + ) + (wire (pts (xy 306.07 72.39) (xy 306.07 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7229638-8087-466f-a854-ca0cd7256bc1) + ) + (wire (pts (xy 48.26 195.58) (xy 48.26 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7d8d35e-10c9-4d6b-91e3-061f2c8c3c4e) + ) + (wire (pts (xy 86.36 85.09) (xy 86.36 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c82269e5-1f56-40c4-bf15-5808f601e24c) + ) + (wire (pts (xy 250.19 200.66) (xy 280.67 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca199e1b-0f3d-4884-bad8-bff2692ec679) + ) + (wire (pts (xy 104.14 48.26) (xy 104.14 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc84a336-6c31-46b1-ba36-0ed24645f33f) + ) + (wire (pts (xy 278.13 120.65) (xy 250.19 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc8d97f5-3d80-45cd-aa2a-e6984f358840) + ) + (wire (pts (xy 269.24 173.99) (xy 269.24 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ccdb3052-c912-4d61-89b0-9baa9a8e9b67) + ) + (wire (pts (xy 337.82 46.99) (xy 337.82 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdfc0485-8377-4f4a-999d-23eb64e25544) + ) + (wire (pts (xy 304.8 24.13) (xy 304.8 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce571372-97f7-490e-8361-b5c01f82eb0a) + ) + (wire (pts (xy 372.11 60.96) (xy 372.11 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce9c0f70-deca-4268-929d-8053de557d11) + ) + (wire (pts (xy 86.36 95.25) (xy 86.36 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1e6c157-170d-468b-84bf-25a50ee79cbf) + ) + (wire (pts (xy 105.41 179.07) (xy 105.41 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3073f29-b067-4dfa-9ddb-f3a24503156f) + ) + (wire (pts (xy 54.61 114.3) (xy 53.34 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d40df185-27d5-4fe3-99e5-6c94ffbd5178) + ) + (wire (pts (xy 245.11 24.13) (xy 245.11 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4da479a-5db0-46c7-b3bf-b0edee100751) + ) + (wire (pts (xy 306.07 80.01) (xy 306.07 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d69d503f-3dac-4ac7-9ce7-5804693f13ba) + ) + (wire (pts (xy 171.45 177.8) (xy 171.45 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d718b4b4-fad1-4321-9313-5a919acc2315) + ) + (wire (pts (xy 233.68 111.76) (xy 233.68 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d71fa75e-8a2d-4da9-82b7-ba9a3a9ce6a2) + ) + (wire (pts (xy 130.81 48.26) (xy 130.81 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9f05141-b209-45a1-b33d-619244b87303) + ) + (wire (pts (xy 381 120.65) (xy 355.6 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da7390d9-dab9-4396-8ff3-8588ad64ed93) + ) + (wire (pts (xy 233.68 36.83) (xy 226.06 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dae60a37-8256-4130-8432-b4eefbc16ea1) + ) + (wire (pts (xy 179.07 172.72) (xy 179.07 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbb1352e-081d-4ec0-9b3e-a3fb31f7b39f) + ) + (wire (pts (xy 35.56 31.75) (xy 35.56 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd43fc32-372a-43f5-a1dd-96622e6541f1) + ) + (wire (pts (xy 34.29 124.46) (xy 34.29 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de1d4ae2-a3b2-4f79-a82c-37d127094558) + ) + (wire (pts (xy 48.26 200.66) (xy 77.47 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dfe2e34e-997b-46b0-9ca0-6c3cf90e006a) + ) + (wire (pts (xy 113.03 134.62) (xy 102.87 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e26f9fe8-5680-4eb7-b667-ced12442ff44) + ) + (wire (pts (xy 248.92 106.68) (xy 270.51 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2d64a1c-39c7-45a7-a487-7be613ea7807) + ) + (wire (pts (xy 146.05 83.82) (xy 147.32 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e460992b-a17e-46b3-adb0-d77251980385) + ) + (wire (pts (xy 130.81 53.34) (xy 130.81 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4ed6e61-bf6f-4af3-8d70-fafad7a42ef7) + ) + (wire (pts (xy 337.82 24.13) (xy 337.82 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e56e448c-04ab-4039-843d-202bb4249692) + ) + (wire (pts (xy 257.81 173.99) (xy 257.81 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e661f506-f525-477d-acb8-688a37ecb539) + ) + (wire (pts (xy 269.24 173.99) (xy 257.81 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6c40da7-513b-4e76-aea1-66abdf1615ca) + ) + (wire (pts (xy 337.82 58.42) (xy 337.82 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e71fabfe-93ec-4796-a779-020f4f4ae070) + ) + (wire (pts (xy 337.82 91.44) (xy 351.79 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8e2d102-b8ca-4b6a-b0a1-bf4df4129221) + ) + (wire (pts (xy 207.01 177.8) (xy 207.01 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eab22c78-723d-476e-964c-916ec4fab508) + ) + (wire (pts (xy 130.81 93.98) (xy 130.81 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb1dad87-d0cb-4e69-9731-768aa0487656) + ) + (wire (pts (xy 379.73 35.56) (xy 377.19 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebf1c05b-f0a0-41b8-b554-aaf54bd733fa) + ) + (wire (pts (xy 179.07 175.26) (xy 179.07 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eceadaac-93ab-4022-b523-920f5af8dfdc) + ) + (wire (pts (xy 77.47 81.28) (xy 77.47 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed70f810-c31b-427d-b8dc-28c1bac320bf) + ) + (wire (pts (xy 35.56 39.37) (xy 35.56 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef0a1bac-4b03-4e97-a2f7-efaefb1b7e35) + ) + (wire (pts (xy 130.81 24.13) (xy 226.06 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f073e0f0-a57f-466d-a4f9-86c58728f6cd) + ) + (wire (pts (xy 166.37 69.85) (xy 166.37 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0a5de03-8c3e-4100-864d-6f0b1803fee6) + ) + (wire (pts (xy 113.03 171.45) (xy 85.09 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f23e78e1-184e-4062-b085-01c9534bd74e) + ) + (wire (pts (xy 148.59 170.18) (xy 148.59 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5a90ec8-268d-48b4-a3e5-ea7bdd5a94d1) + ) + (wire (pts (xy 377.19 24.13) (xy 377.19 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f60116f4-bb8e-4bd8-9925-96f7f80f287b) + ) + (wire (pts (xy 35.56 24.13) (xy 54.61 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f69b9c53-6c62-4d11-90a2-ca423a322d2f) + ) + (wire (pts (xy 245.11 72.39) (xy 248.92 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6a35b55-0fd3-4158-a604-4f1f69259a4b) + ) + (wire (pts (xy 171.45 191.77) (xy 171.45 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6ef4bc4-4fcd-4060-bdb0-7dd77e75da2b) + ) + (wire (pts (xy 195.58 90.17) (xy 195.58 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7316f16-7d4f-4943-8db9-f6d26e99789f) + ) + (wire (pts (xy 337.82 24.13) (xy 377.19 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8373882-7136-40d1-b167-adba956c9294) + ) + (wire (pts (xy 384.81 85.09) (xy 384.81 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8db71a8-5d86-4097-9214-96043687ec5f) + ) + (wire (pts (xy 140.97 179.07) (xy 140.97 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa0f4e04-ab2d-4198-a97d-64fd3b9fc33f) + ) + (wire (pts (xy 248.92 92.71) (xy 271.78 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa213a0b-705c-4ad3-85ac-39590fb5e339) + ) + (wire (pts (xy 48.26 137.16) (xy 48.26 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdb53a20-905c-47c7-974f-00ce547f6daf) + ) + (wire (pts (xy 389.89 85.09) (xy 384.81 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffa365eb-074b-42fe-8a89-16f97d1fb4da) + ) + (wire (pts (xy 130.81 106.68) (xy 140.97 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffd549f3-63fd-4115-8163-63081759b37d) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 275.59 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 01c70fee-b8ae-4e74-ad2b-36e2ada64b9c) + (property "Reference" "Q18" (id 0) (at 280.67 105.4099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 280.67 107.9499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 280.67 104.14 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 275.59 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a68b086d-7120-4547-8c79-e3bcbf90379d)) + (pin "2" (uuid 338d5892-b234-490b-8967-8fe07289cad1)) + (pin "3" (uuid e5dec9a4-a11c-4a60-a143-c5c131bd5815)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 246.38 34.29 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0291814a-1894-4998-afde-d81bf8bdb3c8) + (property "Reference" "R15" (id 0) (at 247.65 31.7499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "820" (id 1) (at 247.65 34.2899 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 246.888 33.02 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 245.11 33.02 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 0fd38b22-7a0a-4f24-a4c7-9fbb0f01894f)) + (pin "2" (uuid 993a4916-b542-4a3d-9b08-fb108bda5873)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 132.08 67.31 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 031f06ca-3f7e-4e77-9b0c-0a5f363dd45a) + (property "Reference" "R8" (id 0) (at 133.35 64.7699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "620" (id 1) (at 133.35 67.3099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 132.588 66.04 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 130.81 66.04 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 8e3d305d-0f97-4210-bc07-aaee3f5b5aac)) + (pin "2" (uuid 2b00069e-d6b5-44bf-9f5b-aaba4bcb681b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 302.26 53.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04aafd04-955c-4464-9564-c5e2d5e94b6e) + (property "Reference" "Q19" (id 0) (at 307.34 52.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 307.34 54.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 307.34 50.8 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 302.26 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e86ef0f6-85b8-4a42-aa02-66c27c3de66e)) + (pin "2" (uuid f829b41c-8233-494c-9cf3-af03f4cd69d4)) + (pin "3" (uuid 50142bff-5c3a-4162-b561-7f6bd595d4dc)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 377.19 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0606e30c-cf67-4f0a-9433-88680eea1ac4) + (property "Reference" "Q23" (id 0) (at 382.27 59.6899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 382.27 62.2299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 382.27 58.42 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 377.19 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 07fe55c4-e3db-4c29-a827-276031a3bed4)) + (pin "2" (uuid 122ee13b-1f8e-450a-bb8b-d21d093c08c1)) + (pin "3" (uuid 0b97b464-1a1f-4ce8-897a-3c1e66fd98fb)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 36.83 36.83 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1936c200-5e4e-4c7a-88b2-9e2f93d04136) + (property "Reference" "R1" (id 0) (at 38.1 34.2899 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1000" (id 1) (at 38.1 36.8299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 37.338 35.56 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 35.56 35.56 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 8dd4818a-63fc-4db9-869c-53f17814475e)) + (pin "2" (uuid 1fad95e7-d544-4324-822e-79387ed67931)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 293.37 78.74 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1bd1dbb9-aef8-42e1-9800-10f1b92bbfec) + (property "Reference" "R18" (id 0) (at 292.1 73.66 0)) + (property "Value" "3900" (id 1) (at 292.1 76.2 0)) + (property "Footprint" "" (id 2) (at 292.1 78.232 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 292.1 80.01 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 2ff0baa2-8297-448e-ac26-22a85f6c2bed)) + (pin "2" (uuid 0dde1674-48a9-4f96-a61c-01c1c73ce0cb)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 339.09 33.02 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1f97be88-85d3-4c80-9cd7-8daafe208386) + (property "Reference" "R20" (id 0) (at 340.36 30.4799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "820" (id 1) (at 340.36 33.0199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 339.598 31.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 337.82 31.75 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 23bacba9-b79f-4bf5-91c1-0d7f6160962a)) + (pin "2" (uuid 09b98405-15dc-4592-8968-43f794d9d95d)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 49.53 193.04 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2214da53-f892-4e9d-9b61-4abd74a5b7d9) + (property "Reference" "R2" (id 0) (at 50.8 190.4999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "350" (id 1) (at 50.8 193.0399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 50.038 191.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 48.26 191.77 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 7006944a-70bc-48e6-a38d-5c67237e4e25)) + (pin "2" (uuid da0c6d4e-264d-4267-bcd1-fb42c29f1d81)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 173.99 172.72 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 237c4fc4-056c-4bd6-86d0-9bac8bcc66bc) + (property "Reference" "Q12" (id 0) (at 168.91 171.4499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 168.91 173.9899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 168.91 170.18 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 173.99 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be0de691-6085-4171-93b8-d2e7eb4f137d)) + (pin "2" (uuid 52577528-cf45-472f-b58e-76f92555c76a)) + (pin "3" (uuid a7cb7cf4-6d23-4227-83bc-af03472b28f6)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 335.28 53.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 271a04aa-c62c-4e69-afc2-e54e84e4c9cb) + (property "Reference" "Q21" (id 0) (at 340.36 52.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 340.36 54.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 340.36 50.8 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 335.28 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f6a7c2e-860c-4868-97ac-a9b61db21f83)) + (pin "2" (uuid ee3ebba3-1ffa-4b0c-b095-8fc7023aab0e)) + (pin "3" (uuid bf532333-5874-46d7-aeb0-ce9b889a29aa)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 209.55 172.72 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 27ae307d-01e1-4eaf-a1b2-009265089044) + (property "Reference" "Q14" (id 0) (at 204.47 171.4499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 204.47 173.9899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 204.47 170.18 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 209.55 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 12ab444a-f8a1-4bb1-8295-6c06710ac351)) + (pin "2" (uuid c2c6acf8-037a-40ba-9823-53fa55c6a282)) + (pin "3" (uuid ba1246f5-f7d7-4df0-bc4a-b567b3533781)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 396.24 85.09 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28883243-5687-4c50-ac4f-682e627d24a7) + (property "Reference" "U1" (id 0) (at 400.05 84.455 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 400.05 86.995 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 396.24 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 396.24 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 74664e96-6706-48fa-acb7-d2aa6e333bd0)) + (pin "2" (uuid 5b6ce5f2-d77c-4581-b4fd-e90a9c15500a)) + (pin "3" (uuid ae73977e-1103-4ede-9fc5-cd6a9ab53596)) + (pin "4" (uuid b9b93713-1252-40cd-8d84-105a253804f3)) + (pin "5" (uuid 5f89b086-1dcf-4b0d-ba6f-933b4b0716ae)) + (pin "6" (uuid 32ea1c0b-bb22-468a-bb9a-9948c302c4e2)) + (pin "7" (uuid ee6a699b-bba8-4b6c-b7be-1992eaa31d6c)) + (pin "8" (uuid 818dcd1b-6dbe-40e7-86ac-0405f295cc15)) + (pin "9" (uuid 725849ea-f4e8-4d7a-8f6e-a42758113154)) + (pin "10" (uuid 61696d64-336b-43b8-acf9-9e79aef5d315)) + (pin "11" (uuid 1a0432f4-009b-40b6-8998-f17dc614acbf)) + (pin "12" (uuid 757413fc-f857-483e-8e6a-7341884f0997)) + (pin "13" (uuid 28aee06f-0d0d-400b-aed5-3fbd5cdb46bb)) + (pin "14" (uuid 48ecbeaa-5b38-463a-a3c1-36ea38a6878e)) + (pin "15" (uuid 382c8888-af3e-4a81-bb77-4a511b40a1a4)) + (pin "16" (uuid 8b5b16b7-9771-45ba-960f-abbe13296a14)) + (pin "17" (uuid 40622025-3637-453b-9f96-09b9a736e300)) + (pin "18" (uuid 4d60b25e-b303-4334-9144-11ca40dd61fe)) + (pin "19" (uuid 6bc5f202-eaa5-4603-9248-b001a62b437f)) + (pin "20" (uuid 5eac3f45-c000-4eba-9a37-915d6b6d9ce8)) + (pin "21" (uuid a71544e7-d117-413d-a670-afa15e73b191)) + (pin "22" (uuid 7747fd02-2fc0-445a-af3c-2b54b821ea38)) + (pin "23" (uuid 3559a84f-4728-4348-bdbe-c1f103afc75e)) + (pin "24" (uuid d56e7c1d-4c7b-4e8e-a613-a667bdf09b4e)) + (pin "25" (uuid 5cf9989d-9616-4afa-b40d-4104ad1b98fd)) + (pin "26" (uuid dcd4c464-eb09-49f7-8f83-fae4635863bd)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 246.38 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3be6e654-a02d-49f9-8e75-44cd67ec2c39) + (property "Reference" "Q16" (id 0) (at 251.46 76.1999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 251.46 78.7399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 251.46 74.93 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 246.38 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 33dd98de-c939-4912-bbb6-aa2dbd398ae7)) + (pin "2" (uuid dd9292bd-60bc-4610-a2fa-a9212ae9911c)) + (pin "3" (uuid d9da8569-f253-4d0d-86c3-45adc2c49b21)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 142.24 190.5 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3e4d4837-cd8a-449a-a5e1-ad3bebea39ba) + (property "Reference" "R9" (id 0) (at 143.51 187.9599 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "100" (id 1) (at 143.51 190.4999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 142.748 189.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 140.97 189.23 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid cd8a1ed4-8b86-4c82-8e13-1298f7d3c76f)) + (pin "2" (uuid 2399839e-39fb-475e-93d1-bb92daae27ae)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 74.93 66.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3ecb14bd-6b3d-4215-a681-70db496fce92) + (property "Reference" "Q4" (id 0) (at 80.01 64.7699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 80.01 67.3099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 80.01 63.5 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 74.93 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad78ae21-d791-4755-aeef-a6ed13f0f8b2)) + (pin "2" (uuid 8ed2f938-92f8-4de4-81fb-9c653f6f1685)) + (pin "3" (uuid 659b58c0-d62a-44d6-a7ac-2b95d27c0579)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 55.88 119.38 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 42f728c1-d151-41a2-b0c1-57aa9ee6b01b) + (property "Reference" "Q3" (id 0) (at 50.8 118.1099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 50.8 120.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 50.8 116.84 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 55.88 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e463ec46-e5df-46ae-acc0-5e07a7bba9ab)) + (pin "2" (uuid 1b1ece45-4dfd-4235-a6f4-d1234d695719)) + (pin "3" (uuid 33a68f7f-6b2e-4569-99e8-8162c71c135e)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 31.75 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b0421c4-f5a0-42c7-bd64-b61f65c1b4fa) + (property "Reference" "Q1" (id 0) (at 36.83 118.1099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 36.83 120.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 36.83 116.84 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 31.75 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 98724a6c-5424-4cf9-b080-3096c1806356)) + (pin "2" (uuid 6b771672-bd28-4f91-bb32-01f8f74b5969)) + (pin "3" (uuid 71df6852-48aa-4f9c-9f13-c24b3c5815d2)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 143.51 173.99 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e02b360-1512-4c18-baa6-bf3279ec5ff9) + (property "Reference" "Q10" (id 0) (at 138.43 172.7199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 138.43 175.2599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 138.43 171.45 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 143.51 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bcf9c022-5f5b-473b-8c3c-5cd5bed32f5d)) + (pin "2" (uuid aa708ffd-4f33-4c2b-9d84-c38707d0e6dc)) + (pin "3" (uuid f7df8c63-dcdf-4feb-80a5-d45379272d78)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 78.74 193.04 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e02e510-1ac2-471b-acae-285101d850e5) + (property "Reference" "R4" (id 0) (at 80.01 190.4999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "350" (id 1) (at 80.01 193.0399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 79.248 191.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 77.47 191.77 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 54715a24-f7f1-45ef-85e4-0211201a872e)) + (pin "2" (uuid 7c85a563-8e0e-40b8-a3e7-9d5263a2d5f6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 387.35 120.65 180) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 514d99ee-8fab-47c6-a1c7-d39017fd7a10) + (property "Reference" "U1" (id 0) (at 391.16 120.015 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 391.16 122.555 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 387.35 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 387.35 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 688054ae-a6e2-4677-a201-55ee73c86715)) + (pin "2" (uuid f03837d8-8bec-4f03-b423-9a1ad26c1440)) + (pin "3" (uuid eb0488c5-4b6d-4b8f-a4b8-a01d1be3e59e)) + (pin "4" (uuid 263d2de8-6d9e-43c3-b3a8-28cb88524e46)) + (pin "5" (uuid 3daed3fa-763e-477e-be1f-0dc97768f1b8)) + (pin "6" (uuid c39a94c0-400b-4abe-bf40-7f9bd236c965)) + (pin "7" (uuid 1da1c6e7-2fe7-4b84-9448-a53e4059ece6)) + (pin "8" (uuid 34b33a3a-505b-4e00-8902-6ff00ea322a8)) + (pin "9" (uuid 7818af49-355b-4508-9ce4-607ad31d685a)) + (pin "10" (uuid 04edabf4-d15b-41c6-b221-1bc1157340b7)) + (pin "11" (uuid 22761b18-d634-4cfc-8cea-c680b7dda17d)) + (pin "12" (uuid 176558ca-981d-401b-9cf2-3445af9c3923)) + (pin "13" (uuid a4486fa6-1794-4901-8e1d-e456c9ed771f)) + (pin "14" (uuid 651acb7f-aaa6-4f7e-bc29-d3b98939a3ff)) + (pin "15" (uuid a45511a0-aa2a-40a9-86b8-ae080ab4bea5)) + (pin "16" (uuid c11bdf57-afdd-4cc0-862b-42da62b2f126)) + (pin "17" (uuid a35afeb2-e502-4107-b889-f45b3e67ae53)) + (pin "18" (uuid 72804a9a-db5b-4bf1-8a07-505b579b8eac)) + (pin "19" (uuid f7afc983-9810-443a-bdd7-810e4c581fbe)) + (pin "20" (uuid eb7efa0a-2cb3-47f1-a63f-e8679f0fb433)) + (pin "21" (uuid c16c2e1c-a220-459a-bd39-77a3f3e3d4cd)) + (pin "22" (uuid 8623fd39-e7a9-49a6-bef9-5831675dcc7a)) + (pin "23" (uuid 2195ac9b-fe03-44e4-96e3-c39d10ae98bc)) + (pin "24" (uuid efd8cae1-1271-4cfa-a085-b6c9b75ffea4)) + (pin "25" (uuid 13d242dd-22f9-4782-88f0-b3561ff73cf8)) + (pin "26" (uuid 2a908cff-ce97-48f1-8671-f476ce203bd0)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 231.14 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51f52c72-ed2e-4184-bb45-a2979d13795a) + (property "Reference" "Q15" (id 0) (at 236.22 105.4099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 236.22 107.9499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 236.22 104.14 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 231.14 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2c1bd09-1caa-47b0-8b77-405bad2c2b64)) + (pin "2" (uuid 7d399942-f146-43f7-aac0-29bd5fa9be79)) + (pin "3" (uuid 5036da3a-ca33-45b8-9bad-8f3b940a4c33)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 149.86 88.9 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5383cfe4-ab90-4d8b-ae24-c3591c2a1885) + (property "Reference" "Q11" (id 0) (at 144.78 87.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 144.78 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 144.78 86.36 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 149.86 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e953d34-e01e-4e63-903b-cd468d438fe3)) + (pin "2" (uuid c4e282d5-cd76-4d88-bbef-181ce57daba1)) + (pin "3" (uuid 0cde34b3-1e20-4c7d-bba4-60d24e2a8f47)) + ) + + (symbol (lib_id "eSim_Devices:eSim_Diode") (at 86.36 104.14 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 543b42bb-11ef-4d32-871e-f221877df49a) + (property "Reference" "D1" (id 0) (at 90.17 102.9243 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_Diode" (id 1) (at 90.17 105.4643 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 86.36 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a8075035-ab3e-4ec0-9ae2-59dddba3a180)) + (pin "2" (uuid dd346d99-b248-40c7-8043-5ef81006b64e)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 378.46 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5722c64d-c40c-4d31-a99f-b500dec89f8f) + (property "Reference" "Q24" (id 0) (at 383.54 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 383.54 92.7099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 383.54 88.9 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 378.46 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 20d77705-d202-4f62-81d0-aee5a8db9edf)) + (pin "2" (uuid 680a9ee2-69da-4aa0-8f7c-62a678d2f4a4)) + (pin "3" (uuid 02e313a2-1f7a-490c-8869-574655cc7970)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 55.88 36.83 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5a363e17-2130-46e6-9e20-48519c3d8e34) + (property "Reference" "R3" (id 0) (at 57.15 34.2899 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1000" (id 1) (at 57.15 36.8299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 56.388 35.56 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 54.61 35.56 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 6714876d-3945-4468-931a-ecea4bddbc3f)) + (pin "2" (uuid d8b9247d-ee97-45ea-93b8-ddc04f65bf64)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 209.55 187.96 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5cb7ac61-8f5f-4451-9523-d1c7833772cc) + (property "Reference" "R13" (id 0) (at 210.82 185.4199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "4000" (id 1) (at 210.82 187.9599 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 210.058 186.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 208.28 186.69 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 5b9d99e9-9c85-4607-b66f-1dd76c672989)) + (pin "2" (uuid 4028fc14-007b-4e7b-8daa-e28e536822cc)) + ) + + (symbol (lib_id "eSim_Devices:eSim_Diode") (at 113.03 129.54 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5dfbd291-08ad-4ee8-963e-187c3094ea94) + (property "Reference" "D2" (id 0) (at 116.84 128.3243 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_Diode" (id 1) (at 116.84 130.8643 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 113.03 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 113.03 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 774d39a6-666a-4a14-b45c-ca5db7ef10b0)) + (pin "2" (uuid 8ff5c789-e6d2-46ff-aa3c-fda5692326fb)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 107.95 173.99 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5f3bb3de-80ef-411e-a547-3f25d451dc6c) + (property "Reference" "Q7" (id 0) (at 102.87 172.7199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 102.87 175.2599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 102.87 171.45 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 107.95 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c19addeb-594d-47da-8145-0ebab4bacc6b)) + (pin "2" (uuid c002dea3-64b7-4b0b-9e19-823fe6447dbb)) + (pin "3" (uuid 963e014a-26de-4433-b1cd-6f47f858e9d5)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 193.04 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5f3f8002-a141-448e-8dc0-b91e32a9f3a7) + (property "Reference" "Q13" (id 0) (at 198.12 93.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 198.12 96.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 198.12 92.71 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 193.04 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f9617aa8-6003-4ca4-9069-91647858177f)) + (pin "2" (uuid 4bfbcfc6-236f-48d0-afbb-625b28d7723a)) + (pin "3" (uuid 4bfd02d7-3679-48dd-aa8a-001ebc703953)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 20.32 128.27 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 63695482-0b7a-4567-a271-5470513f3d4b) + (property "Reference" "U1" (id 0) (at 20.955 123.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 20.955 125.73 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 20.32 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 20.32 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6573f7b9-e140-4bb0-a5df-f97e6726d0ed)) + (pin "2" (uuid 8be96036-06d8-4d99-8cfa-d12d71bbed40)) + (pin "3" (uuid 65a76c19-7b4f-4633-bbdb-07a3164171f8)) + (pin "4" (uuid e390357a-e0e0-44fa-abb1-2d98f9a83c37)) + (pin "5" (uuid 662ae3a0-5b64-40b0-812e-7a5d8bce7130)) + (pin "6" (uuid 92087321-6910-4191-9546-feddd0e6b724)) + (pin "7" (uuid 3cfd982e-2012-486c-bb02-3637bfb9fced)) + (pin "8" (uuid e2a87cb1-0b7a-493e-b505-d3c578968440)) + (pin "9" (uuid 4bc2572f-a8d5-4d8f-b2b5-ab3d290c495f)) + (pin "10" (uuid 82c329b5-d868-4790-a4c5-eeeaa3edf1d5)) + (pin "11" (uuid 18466162-e9b7-4062-8bf4-11b07d26d175)) + (pin "12" (uuid 7b41bd8e-afb6-434d-8f30-2ae4eb1345c9)) + (pin "13" (uuid d904ee2b-96bd-46d4-9923-26beed5be6ec)) + (pin "14" (uuid d4fb5247-9f6f-4f7a-b76e-629ac29be1fe)) + (pin "15" (uuid bcfa9a70-ada2-4be4-93b1-f1369fc7210e)) + (pin "16" (uuid aede0658-5eac-4d06-9360-ee0690af325e)) + (pin "17" (uuid aa8ebf35-0cf3-4a25-b346-a6901cd6da59)) + (pin "18" (uuid 7c9a87d3-560f-4b8e-841d-dacc9f52fc9d)) + (pin "19" (uuid 2faccb35-9259-4449-80b2-7ed37e64a7a2)) + (pin "20" (uuid e4415685-5650-4292-92f4-e5f32ef4b245)) + (pin "21" (uuid 6222c239-51c6-4c88-b9b5-4ae76ac5b9d1)) + (pin "22" (uuid 72f1d08b-af95-407f-ace0-b4bf9fcecef6)) + (pin "23" (uuid 5b706214-37a1-4c79-bd6e-0ed7daa5e1ea)) + (pin "24" (uuid e6a3eada-5783-428b-8f2e-9ab7e8e2ec4c)) + (pin "25" (uuid e0316b16-2a7c-42d1-a8e4-0597474d59df)) + (pin "26" (uuid 868cd155-aeb0-4f22-a93e-146d252ef686)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 227.33 34.29 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6833e0ab-d16e-40d7-8970-2d4e8cc9714c) + (property "Reference" "R14" (id 0) (at 228.6 31.7499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "5000" (id 1) (at 228.6 34.2899 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 227.838 33.02 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 226.06 33.02 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 43463971-b14d-4bd6-ad62-f53609036fa2)) + (pin "2" (uuid 82b2507d-4b6f-4e88-8207-393e76a084e9)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 87.63 90.17 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7031188c-9e4c-414d-b28b-a52e3c046035) + (property "Reference" "R5" (id 0) (at 88.9 87.6299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 88.9 90.1699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 88.138 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 86.36 88.9 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid a6657c93-dd06-4c52-b7bc-a4bcba711494)) + (pin "2" (uuid 6a604a14-9f1c-4723-8e24-9883bec83af1)) + ) + + (symbol (lib_id "eSim_Analog:zener") (at 102.87 120.65 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 71eaa964-6a19-4904-8426-0a1e14c0e098) + (property "Reference" "U3" (id 0) (at 106.68 117.475 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "zener" (id 1) (at 106.68 121.285 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 102.87 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "IN" (uuid 5b9bad15-34d2-43d3-89b2-20062979656b)) + (pin "OUT" (uuid 4b275c90-0a1c-486f-8ca0-0515d9dd26f0)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 101.6 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 80a2e183-5561-4f12-8855-293afe0905c6) + (property "Reference" "Q6" (id 0) (at 106.68 41.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 106.68 44.4499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 106.68 40.64 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 101.6 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ffbed8dd-f8e9-46de-8645-63c2dffae425)) + (pin "2" (uuid bd49a096-663c-4942-8e4e-506cb3e5f825)) + (pin "3" (uuid d1a1d61f-f84e-4659-8418-862f9b85bbd7)) + ) + + (symbol (lib_id "eSim_Devices:eSim_Diode") (at 306.07 68.58 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 80f79b47-480b-48c4-a6e0-ed0cb1a49611) + (property "Reference" "D3" (id 0) (at 309.88 67.3643 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_Diode" (id 1) (at 309.88 69.9043 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 306.07 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 306.07 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d111aab5-ad39-4760-af0f-5a08ae48f57d)) + (pin "2" (uuid abe4ad98-8552-45fa-badb-8cf7ea6b3173)) + ) + + (symbol (lib_id "eSim_Analog:zener") (at 77.47 96.52 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 86f6503f-77e2-4975-97ad-6456bcb6bdf8) + (property "Reference" "U2" (id 0) (at 81.28 93.345 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "zener" (id 1) (at 81.28 97.155 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 77.47 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 77.47 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "IN" (uuid d0a9deeb-b7a8-410a-b3fd-61a0bd7d0209)) + (pin "OUT" (uuid 27d349b4-ce60-42a2-86f3-f4ebfa6c6ebd)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 367.03 80.01 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 87c77f9b-0d74-4245-b441-4935d7abadb0) + (property "Reference" "R21" (id 0) (at 365.76 74.93 0)) + (property "Value" "3900" (id 1) (at 365.76 77.47 0)) + (property "Footprint" "" (id 2) (at 365.76 79.502 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 365.76 81.28 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid a0e92d97-893e-4334-b704-7f0f2bc059de)) + (pin "2" (uuid 9dba0dcc-7d59-41d5-8f54-ebe82320f42c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 387.35 135.89 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93a5aa97-edd9-453b-aba1-f3108a4741db) + (property "Reference" "U1" (id 0) (at 391.16 135.255 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 391.16 137.795 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 387.35 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 387.35 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid db355c8a-e36a-461c-b23a-c0d8721b4ada)) + (pin "2" (uuid f48e9a7e-2f9d-4aed-82ad-bfe2e1ab001b)) + (pin "3" (uuid 1a936a69-1080-4699-ab52-f373c78be390)) + (pin "4" (uuid f428ea81-54ee-487a-980f-628961b63efd)) + (pin "5" (uuid 7e8b5fa8-bb06-4ce1-bf9d-492a8d95d405)) + (pin "6" (uuid 1f034893-c0ab-4071-97a9-392c5e6c0ced)) + (pin "7" (uuid a7862d44-38d0-43b0-93cc-5d559f535e25)) + (pin "8" (uuid a874714f-0a49-4e73-9862-572f12b493e2)) + (pin "9" (uuid 416aa174-ee0b-4147-9585-41175ab7ccdd)) + (pin "10" (uuid 9096f688-fb4f-41f2-a368-211ba029e9d0)) + (pin "11" (uuid 1aded35a-054f-464d-b52c-8cbd7b5d8001)) + (pin "12" (uuid a37dcee4-1885-49e8-bdbb-6ef99d2fa785)) + (pin "13" (uuid 2b742d8e-1658-43b8-9616-48a2aeafa317)) + (pin "14" (uuid 04b11385-12da-4b17-89e7-adc5fa9a3c22)) + (pin "15" (uuid fc3212d3-34ee-473a-aab6-968379a02e96)) + (pin "16" (uuid 083e9c0a-ccaf-4560-b7d0-3665a6aceccb)) + (pin "17" (uuid cc400e2f-559c-4778-82af-1661e5631e3d)) + (pin "18" (uuid 19dd919b-8303-419f-9189-b9a830f4a2a4)) + (pin "19" (uuid 20e440f4-e8ce-4fa5-b448-41b04702af8b)) + (pin "20" (uuid edb86c04-86b2-4d61-8845-42cfae481f6e)) + (pin "21" (uuid e41f0a67-d530-484f-bb3a-f14b5c23abcf)) + (pin "22" (uuid 3380a66d-b894-4029-a7a8-7a04bf3a8e3d)) + (pin "23" (uuid 67dc6c71-f8c2-4395-9aa1-9ff7be2c62d1)) + (pin "24" (uuid 7ea643e1-f93d-4700-a010-916ae4814884)) + (pin "25" (uuid b97646b1-c6a9-4e2a-9d3f-4c2e9e86f032)) + (pin "26" (uuid de255c96-b052-4e96-af93-71df654cfb23)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 378.46 33.02 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 96acb88c-e168-4a3e-944d-5aaa627ea14b) + (property "Reference" "R22" (id 0) (at 379.73 30.4799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "100" (id 1) (at 379.73 33.0199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 378.968 31.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 377.19 31.75 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 1d79a034-c01e-4e17-a874-bcbda7afa6aa)) + (pin "2" (uuid 34947a25-6a69-4f83-b7a2-bc4e7fafa168)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 252.73 173.99 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a9134f51-edcf-481d-bbb5-969136f46a34) + (property "Reference" "Q17" (id 0) (at 247.65 172.7199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 247.65 175.2599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 247.65 171.45 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 252.73 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cceeaadd-b3e5-43d1-bf29-7bed238f1cd1)) + (pin "2" (uuid d29835d4-f08f-458a-993e-2746ade486a4)) + (pin "3" (uuid d36e75b8-49a1-43c0-9b19-d18ba51a559d)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 251.46 187.96 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aac6252d-8ff9-47e7-8e36-556f75a2c53d) + (property "Reference" "R17" (id 0) (at 252.73 185.4199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "350" (id 1) (at 252.73 187.9599 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 251.968 186.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 250.19 186.69 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid e1b19904-c35b-4a18-b88b-4475bc895455)) + (pin "2" (uuid 0bc49819-1246-498a-b7b4-6e99756a8196)) + ) + + (symbol (lib_id "eSim_Devices:eSim_Diode") (at 381 74.93 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid affb622b-12f2-4a4e-a9f4-9386d0896e6c) + (property "Reference" "D4" (id 0) (at 384.81 73.7143 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_Diode" (id 1) (at 384.81 76.2543 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 381 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 381 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45cff56f-4faa-46c7-bec7-d0701f68f830)) + (pin "2" (uuid 1b287801-0f44-4cfd-8167-f32db6e5cf9c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 20.32 119.38 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b2bfd4ae-d14d-40f8-b4e9-7b370ed7ad98) + (property "Reference" "U1" (id 0) (at 20.955 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 20.955 116.84 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 20.32 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 20.32 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 268f3d5d-5fc6-4835-8a33-77fd87392b79)) + (pin "2" (uuid 928250e2-5c13-4b40-b887-f539828ad185)) + (pin "3" (uuid 274022f1-34e3-4bc9-85f4-ed0247666a07)) + (pin "4" (uuid ecc1286d-1dfc-4a32-95ab-fc17dec16404)) + (pin "5" (uuid 974abab6-0e1a-46a3-82e4-3ba14b20941f)) + (pin "6" (uuid 04537729-9291-4290-86bb-abf91ef25923)) + (pin "7" (uuid 4545f859-ea19-411a-96bc-9c597f79dda2)) + (pin "8" (uuid a27c6e43-50bc-4ea5-b122-ea3e22571009)) + (pin "9" (uuid 124e7b87-7963-474c-9334-5781bf49b659)) + (pin "10" (uuid fd455caf-5e04-4505-875f-d59859fbafb9)) + (pin "11" (uuid de5f5a70-7bb0-42dc-9021-b7834864524a)) + (pin "12" (uuid 6ea49a7a-3658-4c03-b9fa-17f2488a6e53)) + (pin "13" (uuid fb3f67c5-2ef0-416a-8896-e7a1acf07ca0)) + (pin "14" (uuid 76d86f87-ec6a-43fe-8349-35ef79b15da7)) + (pin "15" (uuid 0c1db22b-8858-4c36-a8de-834100bccf55)) + (pin "16" (uuid e02f492e-7c2f-4477-ad2e-3d5507d30e00)) + (pin "17" (uuid b7796b1b-8fb3-489e-ab5e-08cf467a9446)) + (pin "18" (uuid 0a158650-925f-4718-9975-72e80654f37e)) + (pin "19" (uuid 443bdbd6-fc56-4f24-b5c8-2172f4eb66a9)) + (pin "20" (uuid 27aa4153-85f2-4126-9c24-e09f86087373)) + (pin "21" (uuid 0be4896b-e36a-4976-84a6-e54fdb4c1788)) + (pin "22" (uuid 3a538a80-c12b-4996-ae21-2309b4de3281)) + (pin "23" (uuid 621ad992-e9fb-4269-825a-e9bdd1849421)) + (pin "24" (uuid 010a6e3b-2685-4927-bf9d-decdd40abdda)) + (pin "25" (uuid d5fce503-88c3-4900-a24d-762b5ef5d684)) + (pin "26" (uuid 30de204a-0102-47c4-b4f1-bdfc71631a62)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 133.35 43.18 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b372201e-8412-4f75-b212-236bd96b81df) + (property "Reference" "Q9" (id 0) (at 128.27 41.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 128.27 44.4499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 128.27 40.64 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 133.35 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5a1a5759-9c2f-4cb2-ab6b-d7879733df8b)) + (pin "2" (uuid 6b491be1-899e-47e5-8b72-b74d754da07f)) + (pin "3" (uuid cd70439e-cd76-46a5-8773-988f10b7f7ff)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 383.54 24.13 180) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b9df4513-5416-425e-98e7-d8ab6a7afd69) + (property "Reference" "U1" (id 0) (at 387.35 23.495 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 387.35 26.035 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 383.54 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 383.54 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 922ac87e-0302-4a88-b7b4-93a5d02cf737)) + (pin "2" (uuid 88d645a0-c93a-405a-b01c-2e15a3c73c34)) + (pin "3" (uuid 303b9fa2-c89d-46f8-91c2-3dc8202b88e7)) + (pin "4" (uuid 30ddea54-ce2a-48d4-a5cc-c729946fd71e)) + (pin "5" (uuid c1b68e60-2c08-4ba9-a75e-5aa3e40eb31a)) + (pin "6" (uuid 2afc316d-2689-4a4a-8181-9db6795b6d0e)) + (pin "7" (uuid f6b40dc0-3f92-42fb-ba45-0e94e2b591bb)) + (pin "8" (uuid 9a3612f4-78ff-4217-9865-135d78a41e46)) + (pin "9" (uuid 581c3797-11b4-4878-b42a-dc3ddbbbf39f)) + (pin "10" (uuid b6af0fd4-d2ea-4963-a69f-44f4fcb0c326)) + (pin "11" (uuid b051fa13-d0f1-4800-ae72-00696806f499)) + (pin "12" (uuid 726cee0c-ce3d-4821-8c23-5e54667ce31b)) + (pin "13" (uuid f770c4ca-8e2f-4d19-b05f-244642e64a5b)) + (pin "14" (uuid 7dbb7aad-9aae-401d-960c-da4dfd53105d)) + (pin "15" (uuid 6354b871-a6f9-474c-94a8-9c719416955b)) + (pin "16" (uuid c82b820e-8287-4024-b471-52f786736524)) + (pin "17" (uuid cc63d7bc-a954-4b63-b0e5-967ea1654295)) + (pin "18" (uuid 180e51b9-9986-4d11-96b8-0af90da3960c)) + (pin "19" (uuid 84992180-bf0d-4b73-b80b-ad96c15b3a06)) + (pin "20" (uuid 797e1e0d-07e1-4dd8-8aa8-6828dd229494)) + (pin "21" (uuid e9a27499-7eda-4384-89aa-f4963429f828)) + (pin "22" (uuid 6ff4ff28-e868-49f7-81ad-d15a7afa91e4)) + (pin "23" (uuid bdfb883d-4492-4866-b817-ef026f64981e)) + (pin "24" (uuid 5cee4937-68b8-473c-9c9b-e87e474f5060)) + (pin "25" (uuid 8d6af4a6-62ac-4ab5-9509-4fbd21b0cc30)) + (pin "26" (uuid 887b5ef4-933c-4414-b048-148b55519505)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 251.46 154.94 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid be09b1e7-f8d2-4fd1-a0f4-643339456cc1) + (property "Reference" "R16" (id 0) (at 252.73 152.3999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "4400" (id 1) (at 252.73 154.9399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 251.968 153.67 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 250.19 153.67 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 10b5a6b6-67c1-4d79-b3e5-02e14cbd1057)) + (pin "2" (uuid f488e3a7-c26e-4d2c-8dca-811b3be29612)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 304.8 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c26d519f-4e62-4f26-9d2f-9977f1164dea) + (property "Reference" "Q20" (id 0) (at 309.88 91.4399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 309.88 93.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 309.88 90.17 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 304.8 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1ba9776f-0219-41da-9fef-451dff0656b5)) + (pin "2" (uuid d307ad26-90dd-4cd5-a0f8-d7d5351b6f11)) + (pin "3" (uuid 40079d7e-f012-48a8-be92-8723bb872157)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 306.07 33.02 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c94dae7f-cec6-4a77-8ed2-8d4693960b86) + (property "Reference" "R19" (id 0) (at 307.34 30.4799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "100" (id 1) (at 307.34 33.0199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 306.578 31.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 304.8 31.75 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid afe6bcb7-ae40-4d5f-afdf-795d1a506e1e)) + (pin "2" (uuid abcf0209-8a2c-48b1-8d3e-e727ccd00fb5)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 147.32 66.04 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ce702b5d-1034-4049-8b1d-ffc0ad577e52) + (property "Reference" "R10" (id 0) (at 148.59 63.4999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "620" (id 1) (at 148.59 66.0399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 147.828 64.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 146.05 64.77 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid c4943efc-b2ee-473a-8244-e4b958cf6c95)) + (pin "2" (uuid d548241a-a563-4b18-ab74-8ce796af2881)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 128.27 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d067e4f5-87f0-4082-8524-f3dbf05d9ef7) + (property "Reference" "Q8" (id 0) (at 133.35 87.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 133.35 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 133.35 86.36 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 128.27 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59d9627f-6503-4807-8aee-2022b2d231b8)) + (pin "2" (uuid b1dba6b3-f7f0-4a2a-86df-554433d12e39)) + (pin "3" (uuid 46adcd81-4719-4cc9-b89c-6565aaa946e7)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 353.06 104.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2520726-a3a9-4bc2-84b6-67ee07d152d8) + (property "Reference" "Q22" (id 0) (at 358.14 102.8699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 358.14 105.4099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 358.14 101.6 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 353.06 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be536497-9470-4973-8984-735e8ad65188)) + (pin "2" (uuid c5398eaf-c46c-403a-a897-0147dbaf1ca7)) + (pin "3" (uuid 63dafdb8-9f83-4595-b7d7-9af7ed3620de)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 287.02 200.66 180) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da4924f3-b3f8-4fb1-abb2-bd3aeaead859) + (property "Reference" "U1" (id 0) (at 290.83 200.025 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 290.83 202.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 287.02 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 287.02 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2e0ac159-6dd4-40d2-b5e5-444daa4f5459)) + (pin "2" (uuid 5d02dafc-1aa8-4d1d-bb71-7b6325a95635)) + (pin "3" (uuid 4430deba-5f7a-487f-88d1-398506d87e91)) + (pin "4" (uuid 95b76189-17c9-4657-82e4-ff6ab9e5c526)) + (pin "5" (uuid 9cdf9d76-7578-41fe-b0a4-913ea24398db)) + (pin "6" (uuid 29a4b394-d9af-4886-ab0f-e4b6241abe2a)) + (pin "7" (uuid 75541952-bbb5-4901-aa2a-75782ad19a65)) + (pin "8" (uuid b0ef24a1-fe3e-4ef3-ac3a-c22436cc1c50)) + (pin "9" (uuid d84e2f9c-b1c8-44e0-88c5-602d9eec1ef0)) + (pin "10" (uuid fad1c0ca-928a-4b01-aff1-eddb03d7472e)) + (pin "11" (uuid 033fb262-1c3d-4192-bc18-3ccd9abec169)) + (pin "12" (uuid bcd5c7fb-28fd-45c2-8c7c-1fe05d6f8b2e)) + (pin "13" (uuid c8690da2-2101-4f3d-b2bc-2a6fbf51182f)) + (pin "14" (uuid 4f95e615-015a-48b6-a092-0ec9031a909e)) + (pin "15" (uuid 587df66e-aee3-4339-ace8-4a5c0fb423d0)) + (pin "16" (uuid 9e4bebb7-e027-4cbb-bfd5-72311440463b)) + (pin "17" (uuid 23c8f79b-aeee-4230-a0f7-0a701203bc01)) + (pin "18" (uuid 26114372-75f1-4a17-8dd7-b257c01551fd)) + (pin "19" (uuid 831743ba-877d-42eb-ae77-7cf452346e5b)) + (pin "20" (uuid a5fc8f53-748d-4a7d-9ab5-974e6ec21ef0)) + (pin "21" (uuid 0c0eec4d-ffef-4937-98ab-95c7c323614f)) + (pin "22" (uuid 3e643cb5-91f7-4734-8ade-3aeab17afa7e)) + (pin "23" (uuid 459a80ca-4eb4-4d23-9d0d-ce5b3274f575)) + (pin "24" (uuid 7e277c8b-5421-405a-8c23-a3a845f6e45c)) + (pin "25" (uuid e11a38c3-e06c-4d60-8ec1-9357d665aa53)) + (pin "26" (uuid 4d1c2cf5-58c5-4b98-9ac6-c660808d3e34)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 50.8 173.99 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dc412431-c7bc-433b-a1ac-56b4772c0c62) + (property "Reference" "Q2" (id 0) (at 45.72 172.7199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 45.72 175.2599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 45.72 171.45 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 50.8 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ef44dbe-0add-4d50-8126-7e8f321b1d37)) + (pin "2" (uuid af27091b-b41c-42e5-82a5-67da609873b5)) + (pin "3" (uuid 1a475e6a-b16e-41df-90e9-85f803ca7534)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 80.01 173.99 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e174e002-c4da-433e-bd37-cf372efde1d0) + (property "Reference" "Q5" (id 0) (at 74.93 172.7199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 74.93 175.2599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 74.93 171.45 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 80.01 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d9c2cfc3-b90d-45e4-baca-36cf1a813775)) + (pin "2" (uuid ba9aa953-2b0e-4786-a849-3010abc25d68)) + (pin "3" (uuid 0364656f-306b-48dd-a15d-a8b3296d1471)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 172.72 189.23 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ecf36003-d3db-4e5f-a4aa-3b2bb2c6216a) + (property "Reference" "R12" (id 0) (at 173.99 186.6899 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "300" (id 1) (at 173.99 189.2299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 173.228 187.96 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 171.45 187.96 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid bdca4298-b064-4f7f-a58c-4ed081d9e65c)) + (pin "2" (uuid 0338297c-e307-4896-a036-f70efce80863)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 167.64 67.31 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f3c3cd09-32da-4e87-844d-611c5e9e6ad8) + (property "Reference" "R11" (id 0) (at 168.91 64.7699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1050" (id 1) (at 168.91 67.3099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 168.148 66.04 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 166.37 66.04 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 26dec79e-d990-40ad-ae44-119dc255971f)) + (pin "2" (uuid 1973f7e8-a190-43ac-a1c5-0ffd82dca604)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 107.95 193.04 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f609e054-7999-44c1-bf1d-04bacae9795c) + (property "Reference" "R6" (id 0) (at 109.22 190.4999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "350" (id 1) (at 109.22 193.0399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 108.458 191.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 106.68 191.77 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 1929cbe7-f893-41c3-b8a4-523868910c81)) + (pin "2" (uuid 05c56873-a9ff-4052-9208-b581a0353009)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 114.3 115.57 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ffb4e3ed-e991-4c03-a0b1-7568dce69860) + (property "Reference" "R7" (id 0) (at 115.57 113.0299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 115.57 115.5699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 114.808 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 113.03 114.3 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 0eb935ee-d729-4809-972a-655d26865714)) + (pin "2" (uuid 19f4a902-f48c-44fa-9c06-7912e1e958fc)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/543b42bb-11ef-4d32-871e-f221877df49a" + (reference "D1") (unit 1) (value "eSim_Diode") (footprint "") + ) + (path "/5dfbd291-08ad-4ee8-963e-187c3094ea94" + (reference "D2") (unit 1) (value "eSim_Diode") (footprint "") + ) + (path "/80f79b47-480b-48c4-a6e0-ed0cb1a49611" + (reference "D3") (unit 1) (value "eSim_Diode") (footprint "") + ) + (path "/affb622b-12f2-4a4e-a9f4-9386d0896e6c" + (reference "D4") (unit 1) (value "eSim_Diode") (footprint "") + ) + (path "/4b0421c4-f5a0-42c7-bd64-b61f65c1b4fa" + (reference "Q1") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/dc412431-c7bc-433b-a1ac-56b4772c0c62" + (reference "Q2") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/42f728c1-d151-41a2-b0c1-57aa9ee6b01b" + (reference "Q3") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/3ecb14bd-6b3d-4215-a681-70db496fce92" + (reference "Q4") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/e174e002-c4da-433e-bd37-cf372efde1d0" + (reference "Q5") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/80a2e183-5561-4f12-8855-293afe0905c6" + (reference "Q6") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/5f3bb3de-80ef-411e-a547-3f25d451dc6c" + (reference "Q7") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d067e4f5-87f0-4082-8524-f3dbf05d9ef7" + (reference "Q8") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b372201e-8412-4f75-b212-236bd96b81df" + (reference "Q9") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/4e02b360-1512-4c18-baa6-bf3279ec5ff9" + (reference "Q10") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/5383cfe4-ab90-4d8b-ae24-c3591c2a1885" + (reference "Q11") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/237c4fc4-056c-4bd6-86d0-9bac8bcc66bc" + (reference "Q12") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/5f3f8002-a141-448e-8dc0-b91e32a9f3a7" + (reference "Q13") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/27ae307d-01e1-4eaf-a1b2-009265089044" + (reference "Q14") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/51f52c72-ed2e-4184-bb45-a2979d13795a" + (reference "Q15") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/3be6e654-a02d-49f9-8e75-44cd67ec2c39" + (reference "Q16") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/a9134f51-edcf-481d-bbb5-969136f46a34" + (reference "Q17") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/01c70fee-b8ae-4e74-ad2b-36e2ada64b9c" + (reference "Q18") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/04aafd04-955c-4464-9564-c5e2d5e94b6e" + (reference "Q19") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/c26d519f-4e62-4f26-9d2f-9977f1164dea" + (reference "Q20") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/271a04aa-c62c-4e69-afc2-e54e84e4c9cb" + (reference "Q21") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d2520726-a3a9-4bc2-84b6-67ee07d152d8" + (reference "Q22") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/0606e30c-cf67-4f0a-9433-88680eea1ac4" + (reference "Q23") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/5722c64d-c40c-4d31-a99f-b500dec89f8f" + (reference "Q24") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/1936c200-5e4e-4c7a-88b2-9e2f93d04136" + (reference "R1") (unit 1) (value "1000") (footprint "") + ) + (path "/2214da53-f892-4e9d-9b61-4abd74a5b7d9" + (reference "R2") (unit 1) (value "350") (footprint "") + ) + (path "/5a363e17-2130-46e6-9e20-48519c3d8e34" + (reference "R3") (unit 1) (value "1000") (footprint "") + ) + (path "/4e02e510-1ac2-471b-acae-285101d850e5" + (reference "R4") (unit 1) (value "350") (footprint "") + ) + (path "/7031188c-9e4c-414d-b28b-a52e3c046035" + (reference "R5") (unit 1) (value "10k") (footprint "") + ) + (path "/f609e054-7999-44c1-bf1d-04bacae9795c" + (reference "R6") (unit 1) (value "350") (footprint "") + ) + (path "/ffb4e3ed-e991-4c03-a0b1-7568dce69860" + (reference "R7") (unit 1) (value "10k") (footprint "") + ) + (path "/031f06ca-3f7e-4e77-9b0c-0a5f363dd45a" + (reference "R8") (unit 1) (value "620") (footprint "") + ) + (path "/3e4d4837-cd8a-449a-a5e1-ad3bebea39ba" + (reference "R9") (unit 1) (value "100") (footprint "") + ) + (path "/ce702b5d-1034-4049-8b1d-ffc0ad577e52" + (reference "R10") (unit 1) (value "620") (footprint "") + ) + (path "/f3c3cd09-32da-4e87-844d-611c5e9e6ad8" + (reference "R11") (unit 1) (value "1050") (footprint "") + ) + (path "/ecf36003-d3db-4e5f-a4aa-3b2bb2c6216a" + (reference "R12") (unit 1) (value "300") (footprint "") + ) + (path "/5cb7ac61-8f5f-4451-9523-d1c7833772cc" + (reference "R13") (unit 1) (value "4000") (footprint "") + ) + (path "/6833e0ab-d16e-40d7-8970-2d4e8cc9714c" + (reference "R14") (unit 1) (value "5000") (footprint "") + ) + (path "/0291814a-1894-4998-afde-d81bf8bdb3c8" + (reference "R15") (unit 1) (value "820") (footprint "") + ) + (path "/be09b1e7-f8d2-4fd1-a0f4-643339456cc1" + (reference "R16") (unit 1) (value "4400") (footprint "") + ) + (path "/aac6252d-8ff9-47e7-8e36-556f75a2c53d" + (reference "R17") (unit 1) (value "350") (footprint "") + ) + (path "/1bd1dbb9-aef8-42e1-9800-10f1b92bbfec" + (reference "R18") (unit 1) (value "3900") (footprint "") + ) + (path "/c94dae7f-cec6-4a77-8ed2-8d4693960b86" + (reference "R19") (unit 1) (value "100") (footprint "") + ) + (path "/1f97be88-85d3-4c80-9cd7-8daafe208386" + (reference "R20") (unit 1) (value "820") (footprint "") + ) + (path "/87c77f9b-0d74-4245-b441-4935d7abadb0" + (reference "R21") (unit 1) (value "3900") (footprint "") + ) + (path "/96acb88c-e168-4a3e-944d-5aaa627ea14b" + (reference "R22") (unit 1) (value "100") (footprint "") + ) + (path "/63695482-0b7a-4567-a271-5470513f3d4b" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/b2bfd4ae-d14d-40f8-b4e9-7b370ed7ad98" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/da4924f3-b3f8-4fb1-abb2-bd3aeaead859" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/514d99ee-8fab-47c6-a1c7-d39017fd7a10" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/93a5aa97-edd9-453b-aba1-f3108a4741db" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/28883243-5687-4c50-ac4f-682e627d24a7" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/b9df4513-5416-425e-98e7-d8ab6a7afd69" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/86f6503f-77e2-4975-97ad-6456bcb6bdf8" + (reference "U2") (unit 1) (value "zener") (footprint "") + ) + (path "/71eaa964-6a19-4904-8426-0a1e14c0e098" + (reference "U3") (unit 1) (value "zener") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/LM760/LM760.sub b/library/SubcircuitLibrary/LM760/LM760.sub new file mode 100644 index 000000000..b39cdcf86 --- /dev/null +++ b/library/SubcircuitLibrary/LM760/LM760.sub @@ -0,0 +1,66 @@ +* Subcircuit LM760 +.subckt LM760 net-_q3-pad2_ net-_q1-pad2_ net-_r12-pad1_ net-_q15-pad3_ net-_d3-pad2_ net-_d4-pad2_ net-_q4-pad1_ +.title kicad schematic +.include D.lib +.include NPN.lib +q13 net-_q13-pad1_ net-_q12-pad1_ net-_q13-pad3_ Q2N2222 +r8 net-_q16-pad2_ net-_q9-pad3_ 620 +q9 net-_q4-pad1_ unconnected-_q9-pad2_ net-_q9-pad3_ Q2N2222 +r10 net-_q11-pad1_ net-_q9-pad3_ 620 +r11 net-_q12-pad1_ net-_q9-pad3_ 1050 +q8 net-_q16-pad2_ net-_d1-pad1_ net-_q10-pad1_ Q2N2222 +q11 net-_q11-pad1_ net-_d2-pad1_ net-_q10-pad1_ Q2N2222 +r14 net-_q13-pad1_ net-_q4-pad1_ 5000 +r15 net-_q16-pad1_ net-_q4-pad1_ 820 +q15 net-_q13-pad1_ net-_q13-pad3_ net-_q15-pad3_ Q2N2222 +d2 net-_d2-pad1_ net-_d2-pad2_ 1N4148 +* u3 net-_d2-pad2_ net-_q6-pad3_ zener +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +r9 net-_r12-pad1_ net-_q10-pad3_ 100 +q3 net-_q3-pad1_ net-_q3-pad2_ net-_q1-pad3_ Q2N2222 +r4 net-_r12-pad1_ net-_q5-pad3_ 350 +q7 net-_d2-pad2_ net-_q10-pad2_ net-_q7-pad3_ Q2N2222 +r6 net-_r12-pad1_ net-_q7-pad3_ 350 +q5 net-_d1-pad2_ net-_q10-pad2_ net-_q5-pad3_ Q2N2222 +q2 net-_q1-pad3_ net-_q10-pad2_ net-_q2-pad3_ Q2N2222 +r2 net-_r12-pad1_ net-_q2-pad3_ 350 +r7 net-_d2-pad1_ net-_q6-pad3_ 10k +r5 net-_d1-pad1_ net-_q4-pad3_ 10k +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +q6 net-_q4-pad1_ net-_q3-pad1_ net-_q6-pad3_ Q2N2222 +r1 net-_q1-pad1_ net-_q4-pad1_ 1000 +r3 net-_q3-pad1_ net-_q4-pad1_ 1000 +q4 net-_q4-pad1_ net-_q1-pad1_ net-_q4-pad3_ Q2N2222 +* u2 net-_d1-pad2_ net-_q4-pad3_ zener +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +r17 net-_r12-pad1_ net-_q17-pad3_ 350 +q16 net-_q16-pad1_ net-_q16-pad2_ net-_q16-pad3_ Q2N2222 +r16 net-_q10-pad2_ net-_q15-pad3_ 4400 +q17 net-_q10-pad2_ net-_q10-pad2_ net-_q17-pad3_ Q2N2222 +q14 net-_q13-pad3_ net-_q10-pad2_ net-_q14-pad3_ Q2N2222 +r13 net-_r12-pad1_ net-_q14-pad3_ 4000 +r12 net-_r12-pad1_ net-_q12-pad3_ 300 +q18 net-_q16-pad3_ net-_q16-pad3_ net-_q15-pad3_ Q2N2222 +q12 net-_q12-pad1_ net-_q10-pad2_ net-_q12-pad3_ Q2N2222 +r18 net-_d3-pad2_ net-_q16-pad3_ 3900 +q20 net-_d3-pad2_ net-_q16-pad3_ net-_q15-pad3_ Q2N2222 +d3 net-_d3-pad1_ net-_d3-pad2_ 1N4148 +q19 net-_q19-pad1_ net-_q16-pad1_ net-_d3-pad1_ Q2N2222 +q23 net-_q23-pad1_ net-_q21-pad1_ net-_d4-pad1_ Q2N2222 +r22 net-_q23-pad1_ net-_q4-pad1_ 100 +d4 net-_d4-pad1_ net-_d4-pad2_ 1N4148 +q22 net-_q21-pad3_ net-_q21-pad3_ net-_q15-pad3_ Q2N2222 +r21 net-_d4-pad2_ net-_q21-pad3_ 3900 +q24 net-_d4-pad2_ net-_q21-pad3_ net-_q15-pad3_ Q2N2222 +q21 net-_q21-pad1_ net-_q11-pad1_ net-_q21-pad3_ Q2N2222 +r20 net-_q21-pad1_ net-_q4-pad1_ 820 +r19 net-_q19-pad1_ net-_q4-pad1_ 100 +a1 net-_d2-pad2_ net-_q6-pad3_ u3 +a2 net-_d1-pad2_ net-_q4-pad3_ u2 +* Schematic Name: zener, Ngspice Name: zener +.model u3 zener(v_breakdown=5.6 i_breakdown=2.0e-2 i_sat=1.0e-12 n_forward=1.0 limit_switch=FALSE ) +* Schematic Name: zener, Ngspice Name: zener +.model u2 zener(v_breakdown=5.6 i_breakdown=2.0e-2 i_sat=1.0e-12 n_forward=1.0 limit_switch=FALSE ) +* Control Statements + +.ends LM760 \ No newline at end of file diff --git a/library/SubcircuitLibrary/LM760/LM760_Previous_Values.xml b/library/SubcircuitLibrary/LM760/LM760_Previous_Values.xml new file mode 100644 index 000000000..9da27b283 --- /dev/null +++ b/library/SubcircuitLibrary/LM760/LM760_Previous_Values.xml @@ -0,0 +1 @@ +-5400n)5zenerzenerC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes011secnsus \ No newline at end of file diff --git a/library/SubcircuitLibrary/LM760/NPN.lib b/library/SubcircuitLibrary/LM760/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/LM760/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/LM760/_autosave-LM760.sch b/library/SubcircuitLibrary/LM760/_autosave-LM760.sch new file mode 100644 index 000000000..4de8ce8e2 --- /dev/null +++ b/library/SubcircuitLibrary/LM760/_autosave-LM760.sch @@ -0,0 +1,1130 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A3 16535 11693 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 1400 2600 +Connection ~ 1900 5400 +Connection ~ 2150 950 +Connection ~ 2150 1700 +Connection ~ 3050 950 +Connection ~ 3050 3200 +Connection ~ 3050 4400 +Connection ~ 3050 7900 +Connection ~ 3350 6850 +Connection ~ 3400 3750 +Connection ~ 4050 5300 +Connection ~ 4100 950 +Connection ~ 4100 4050 +Connection ~ 4200 7900 +Connection ~ 4450 4850 +Connection ~ 4450 6850 +Connection ~ 5150 950 +Connection ~ 5150 2100 +Connection ~ 5150 3050 +Connection ~ 5550 4200 +Connection ~ 5550 7900 +Connection ~ 5750 2100 +Connection ~ 5750 2850 +Connection ~ 5850 6850 +Connection ~ 6550 3750 +Connection ~ 6750 7900 +Connection ~ 7050 6800 +Connection ~ 8150 4200 +Connection ~ 8200 7900 +Connection ~ 8450 6800 +Connection ~ 8900 950 +Connection ~ 9200 3400 +Connection ~ 9650 950 +Connection ~ 9650 2100 +Connection ~ 9800 3650 +Connection ~ 9850 4750 +Connection ~ 9850 6450 +Connection ~ 9850 7900 +Connection ~ 10150 6850 +Connection ~ 10700 3650 +Connection ~ 10950 3650 +Connection ~ 10950 4750 +Connection ~ 12000 950 +Connection ~ 12050 3150 +Connection ~ 12050 3300 +Connection ~ 12100 4750 +Connection ~ 13300 950 +Connection ~ 13300 1850 +Connection ~ 13300 3600 +Connection ~ 13850 3600 +Connection ~ 14000 4750 +Connection ~ 14100 3600 +Connection ~ 14850 950 +Connection ~ 15000 3200 +Connection ~ 15000 3300 +Connection ~ 15000 4750 +Wire Wire Line + 1350 4900 1350 5400 +Wire Wire Line + 1350 5400 1900 5400 +Wire Wire Line + 1400 950 2150 950 +Wire Wire Line + 1400 1250 1400 950 +Wire Wire Line + 1400 1550 1400 2600 +Wire Wire Line + 1400 2600 1400 4500 +Wire Wire Line + 1400 2600 2750 2600 +Wire Wire Line + 1400 4500 1350 4500 +Wire Wire Line + 1900 5400 1900 6650 +Wire Wire Line + 1900 7050 1900 7400 +Wire Wire Line + 1900 7700 1900 7900 +Wire Wire Line + 1900 7900 3050 7900 +Wire Wire Line + 2100 4900 2100 5400 +Wire Wire Line + 2100 5400 1900 5400 +Wire Wire Line + 2150 950 2150 1250 +Wire Wire Line + 2150 950 3050 950 +Wire Wire Line + 2150 1550 2150 1700 +Wire Wire Line + 2150 1700 2150 4500 +Wire Wire Line + 2150 1700 3800 1700 +Wire Wire Line + 2150 4500 2100 4500 +Wire Wire Line + 2200 7000 2200 6850 +Wire Wire Line + 2400 4700 2400 5050 +Wire Wire Line + 2400 5050 1050 5050 +Wire Wire Line + 3050 950 3050 2400 +Wire Wire Line + 3050 950 4100 950 +Wire Wire Line + 3050 2800 3050 3200 +Wire Wire Line + 3050 3200 3050 3500 +Wire Wire Line + 3050 4000 3050 4400 +Wire Wire Line + 3050 4400 3050 6650 +Wire Wire Line + 3050 7050 3050 7400 +Wire Wire Line + 3050 7700 3050 7900 +Wire Wire Line + 3050 7900 4200 7900 +Wire Wire Line + 3350 6750 3350 6850 +Wire Wire Line + 3350 6850 3350 7000 +Wire Wire Line + 3350 7000 2200 7000 +Wire Wire Line + 3400 3200 3050 3200 +Wire Wire Line + 3400 3350 3400 3200 +Wire Wire Line + 3400 3650 3400 3750 +Wire Wire Line + 3400 3750 3400 3950 +Wire Wire Line + 3400 4250 3400 4400 +Wire Wire Line + 3400 4400 3050 4400 +Wire Wire Line + 4050 4950 4050 5300 +Wire Wire Line + 4050 5300 4050 6650 +Wire Wire Line + 4050 6650 4150 6650 +Wire Wire Line + 4100 950 4100 1500 +Wire Wire Line + 4100 950 5150 950 +Wire Wire Line + 4100 1900 4100 4050 +Wire Wire Line + 4100 4050 4100 4450 +Wire Wire Line + 4100 4450 4050 4450 +Wire Wire Line + 4150 7050 4150 7400 +Wire Wire Line + 4150 7400 4200 7400 +Wire Wire Line + 4200 7700 4200 7900 +Wire Wire Line + 4200 7900 5550 7900 +Wire Wire Line + 4400 3500 4400 3750 +Wire Wire Line + 4400 3750 3400 3750 +Wire Wire Line + 4450 4050 4100 4050 +Wire Wire Line + 4450 4350 4450 4050 +Wire Wire Line + 4450 4650 4450 4850 +Wire Wire Line + 4450 4850 4450 4950 +Wire Wire Line + 4450 5250 4450 5300 +Wire Wire Line + 4450 5300 4050 5300 +Wire Wire Line + 4450 6750 3350 6750 +Wire Wire Line + 4450 6850 4450 6750 +Wire Wire Line + 4450 7000 4450 6850 +Wire Wire Line + 4850 3500 4400 3500 +Wire Wire Line + 5150 950 5150 1500 +Wire Wire Line + 5150 950 8900 950 +Wire Wire Line + 5150 1900 5150 2100 +Wire Wire Line + 5150 2100 5150 2450 +Wire Wire Line + 5150 2750 5150 3050 +Wire Wire Line + 5150 3050 5150 3300 +Wire Wire Line + 5150 3050 9500 3050 +Wire Wire Line + 5150 3700 5150 4200 +Wire Wire Line + 5150 4200 5550 4200 +Wire Wire Line + 5550 4200 5550 6650 +Wire Wire Line + 5550 7050 5550 7300 +Wire Wire Line + 5550 7600 5550 7900 +Wire Wire Line + 5550 7900 6750 7900 +Wire Wire Line + 5750 2100 5150 2100 +Wire Wire Line + 5750 2400 5750 2100 +Wire Wire Line + 5750 2700 5750 2850 +Wire Wire Line + 5750 2850 5750 3300 +Wire Wire Line + 5750 3300 5800 3300 +Wire Wire Line + 5800 3700 5800 4200 +Wire Wire Line + 5800 4200 5550 4200 +Wire Wire Line + 5850 6700 5850 6850 +Wire Wire Line + 5850 6850 5850 7000 +Wire Wire Line + 5850 7000 4450 7000 +Wire Wire Line + 6100 3500 6100 4850 +Wire Wire Line + 6100 4850 4450 4850 +Wire Wire Line + 6550 2100 5750 2100 +Wire Wire Line + 6550 2450 6550 2100 +Wire Wire Line + 6550 2750 6550 3750 +Wire Wire Line + 6550 3750 6550 6600 +Wire Wire Line + 6550 3750 7400 3750 +Wire Wire Line + 6550 6600 6750 6600 +Wire Wire Line + 6750 7000 6750 7250 +Wire Wire Line + 6750 7550 6750 7900 +Wire Wire Line + 6750 7900 8200 7900 +Wire Wire Line + 7050 6700 5850 6700 +Wire Wire Line + 7050 6800 7050 6700 +Wire Wire Line + 7050 6900 7050 6800 +Wire Wire Line + 7050 6900 8450 6900 +Wire Wire Line + 7450 1800 7450 2850 +Wire Wire Line + 7450 2850 5750 2850 +Wire Wire Line + 7700 3400 9200 3400 +Wire Wire Line + 7700 3550 7700 3400 +Wire Wire Line + 7700 4200 7700 3950 +Wire Wire Line + 7700 4200 8150 4200 +Wire Wire Line + 8150 4200 8900 4200 +Wire Wire Line + 8150 6600 8150 4200 +Wire Wire Line + 8150 7000 8150 7200 +Wire Wire Line + 8150 7200 8200 7200 +Wire Wire Line + 8200 7500 8200 7900 +Wire Wire Line + 8200 7900 9850 7900 +Wire Wire Line + 8450 6600 8450 6800 +Wire Wire Line + 8450 6800 8450 6900 +Wire Wire Line + 8900 950 8900 1150 +Wire Wire Line + 8900 950 9650 950 +Wire Wire Line + 9200 1450 8900 1450 +Wire Wire Line + 9200 3400 9200 1450 +Wire Wire Line + 9200 4000 9200 3400 +Wire Wire Line + 9200 4400 9200 4750 +Wire Wire Line + 9200 4750 9850 4750 +Wire Wire Line + 9650 950 9650 1150 +Wire Wire Line + 9650 950 12000 950 +Wire Wire Line + 9650 1450 9650 2100 +Wire Wire Line + 9650 2100 9650 2850 +Wire Wire Line + 9650 2100 11700 2100 +Wire Wire Line + 9650 2850 9800 2850 +Wire Wire Line + 9800 3250 9800 3650 +Wire Wire Line + 9800 3650 9800 4200 +Wire Wire Line + 9800 3650 10700 3650 +Wire Wire Line + 9800 4200 10650 4200 +Wire Wire Line + 9850 4750 9850 5900 +Wire Wire Line + 9850 6200 9850 6450 +Wire Wire Line + 9850 6450 9850 6650 +Wire Wire Line + 9850 7050 9850 7200 +Wire Wire Line + 9850 7500 9850 7900 +Wire Wire Line + 9850 7900 11050 7900 +Wire Wire Line + 10150 6600 8450 6600 +Wire Wire Line + 10150 6850 10150 6600 +Wire Wire Line + 10600 6450 9850 6450 +Wire Wire Line + 10600 6850 10150 6850 +Wire Wire Line + 10600 6850 10600 6450 +Wire Wire Line + 10700 3150 10700 3650 +Wire Wire Line + 10700 3650 10950 3650 +Wire Wire Line + 10950 3650 11800 3650 +Wire Wire Line + 10950 4000 10950 3650 +Wire Wire Line + 10950 4400 10950 4750 +Wire Wire Line + 10950 4750 9850 4750 +Wire Wire Line + 11350 3150 10700 3150 +Wire Wire Line + 11650 3150 12050 3150 +Wire Wire Line + 12000 950 12000 1100 +Wire Wire Line + 12000 950 13300 950 +Wire Wire Line + 12000 1400 12000 1900 +Wire Wire Line + 12000 2300 12000 2550 +Wire Wire Line + 12000 2550 12050 2550 +Wire Wire Line + 12050 2850 12050 3150 +Wire Wire Line + 12050 3150 12050 3300 +Wire Wire Line + 12050 3300 12050 3450 +Wire Wire Line + 12050 3450 12100 3450 +Wire Wire Line + 12100 3850 12100 4750 +Wire Wire Line + 12100 4750 10950 4750 +Wire Wire Line + 12650 3300 12050 3300 +Wire Wire Line + 12650 5350 12650 3300 +Wire Wire Line + 12800 1800 7450 1800 +Wire Wire Line + 12800 2100 12800 1800 +Wire Wire Line + 13000 2100 12800 2100 +Wire Wire Line + 13300 950 13300 1100 +Wire Wire Line + 13300 950 14850 950 +Wire Wire Line + 13300 1400 13300 1850 +Wire Wire Line + 13300 1850 13300 1900 +Wire Wire Line + 13300 2300 13300 3600 +Wire Wire Line + 13300 3600 13300 4100 +Wire Wire Line + 13300 3600 13850 3600 +Wire Wire Line + 13300 4100 13700 4100 +Wire Wire Line + 13850 3200 13850 3600 +Wire Wire Line + 13850 3600 14100 3600 +Wire Wire Line + 14000 3900 14100 3900 +Wire Wire Line + 14000 4300 14000 4750 +Wire Wire Line + 14000 4750 12100 4750 +Wire Wire Line + 14100 3600 14700 3600 +Wire Wire Line + 14100 3900 14100 3600 +Wire Wire Line + 14250 3200 13850 3200 +Wire Wire Line + 14550 3200 15000 3200 +Wire Wire Line + 14650 1850 13300 1850 +Wire Wire Line + 14650 2400 14650 1850 +Wire Wire Line + 14850 950 14850 1100 +Wire Wire Line + 14950 1400 14850 1400 +Wire Wire Line + 14950 2200 14950 1400 +Wire Wire Line + 14950 2600 14950 2800 +Wire Wire Line + 14950 2800 15000 2800 +Wire Wire Line + 15000 3200 15000 3100 +Wire Wire Line + 15000 3200 15000 3300 +Wire Wire Line + 15000 3300 15000 3400 +Wire Wire Line + 15000 3800 15000 4750 +Wire Wire Line + 15000 4750 14000 4750 +Wire Wire Line + 15000 5350 12650 5350 +Wire Wire Line + 15150 3300 15000 3300 +Wire Wire Line + 15150 3350 15150 3300 +Wire Wire Line + 15350 3350 15150 3350 +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 1450 1450 +F 0 "R?" V 1550 1400 50 0000 R CNN +F 1 "1000" V 1450 1400 50 0000 R CNN +F 2 "" H 1500 1430 30 0000 C CNN +F 3 "" V 1500 1500 30 0000 C CNN + 1 1450 1450 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 1950 7600 +F 0 "R?" V 2050 7550 50 0000 R CNN +F 1 "350" V 1950 7550 50 0000 R CNN +F 2 "" H 2000 7580 30 0000 C CNN +F 3 "" V 2000 7650 30 0000 C CNN + 1 1950 7600 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 2200 1450 +F 0 "R?" V 2300 1400 50 0000 R CNN +F 1 "1000" V 2200 1400 50 0000 R CNN +F 2 "" H 2250 1430 30 0000 C CNN +F 3 "" V 2250 1500 30 0000 C CNN + 1 2200 1450 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 3100 7600 +F 0 "R?" V 3200 7550 50 0000 R CNN +F 1 "350" V 3100 7550 50 0000 R CNN +F 2 "" H 3150 7580 30 0000 C CNN +F 3 "" V 3150 7650 30 0000 C CNN + 1 3100 7600 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 3450 3550 +F 0 "R?" V 3550 3500 50 0000 R CNN +F 1 "10k" V 3450 3500 50 0000 R CNN +F 2 "" H 3500 3530 30 0000 C CNN +F 3 "" V 3500 3600 30 0000 C CNN + 1 3450 3550 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 4250 7600 +F 0 "R?" V 4350 7550 50 0000 R CNN +F 1 "350" V 4250 7550 50 0000 R CNN +F 2 "" H 4300 7580 30 0000 C CNN +F 3 "" V 4300 7650 30 0000 C CNN + 1 4250 7600 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 4500 4550 +F 0 "R?" V 4600 4500 50 0000 R CNN +F 1 "10k" V 4500 4500 50 0000 R CNN +F 2 "" H 4550 4530 30 0000 C CNN +F 3 "" V 4550 4600 30 0000 C CNN + 1 4500 4550 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 5200 2650 +F 0 "R?" V 5300 2600 50 0000 R CNN +F 1 "620" V 5200 2600 50 0000 R CNN +F 2 "" H 5250 2630 30 0000 C CNN +F 3 "" V 5250 2700 30 0000 C CNN + 1 5200 2650 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 5600 7500 +F 0 "R?" V 5700 7450 50 0000 R CNN +F 1 "100" V 5600 7450 50 0000 R CNN +F 2 "" H 5650 7480 30 0000 C CNN +F 3 "" V 5650 7550 30 0000 C CNN + 1 5600 7500 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 5800 2600 +F 0 "R?" V 5900 2550 50 0000 R CNN +F 1 "620" V 5800 2550 50 0000 R CNN +F 2 "" H 5850 2580 30 0000 C CNN +F 3 "" V 5850 2650 30 0000 C CNN + 1 5800 2600 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 6600 2650 +F 0 "R?" V 6700 2600 50 0000 R CNN +F 1 "1050" V 6600 2600 50 0000 R CNN +F 2 "" H 6650 2630 30 0000 C CNN +F 3 "" V 6650 2700 30 0000 C CNN + 1 6600 2650 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 6800 7450 +F 0 "R?" V 6900 7400 50 0000 R CNN +F 1 "300" V 6800 7400 50 0000 R CNN +F 2 "" H 6850 7430 30 0000 C CNN +F 3 "" V 6850 7500 30 0000 C CNN + 1 6800 7450 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 8250 7400 +F 0 "R?" V 8350 7350 50 0000 R CNN +F 1 "4000" V 8250 7350 50 0000 R CNN +F 2 "" H 8300 7380 30 0000 C CNN +F 3 "" V 8300 7450 30 0000 C CNN + 1 8250 7400 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 8950 1350 +F 0 "R?" V 9050 1300 50 0000 R CNN +F 1 "5000" V 8950 1300 50 0000 R CNN +F 2 "" H 9000 1330 30 0000 C CNN +F 3 "" V 9000 1400 30 0000 C CNN + 1 8950 1350 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 9700 1350 +F 0 "R?" V 9800 1300 50 0000 R CNN +F 1 "820" V 9700 1300 50 0000 R CNN +F 2 "" H 9750 1330 30 0000 C CNN +F 3 "" V 9750 1400 30 0000 C CNN + 1 9700 1350 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 9900 6100 +F 0 "R?" V 10000 6050 50 0000 R CNN +F 1 "4400" V 9900 6050 50 0000 R CNN +F 2 "" H 9950 6080 30 0000 C CNN +F 3 "" V 9950 6150 30 0000 C CNN + 1 9900 6100 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 9900 7400 +F 0 "R?" V 10000 7350 50 0000 R CNN +F 1 "350" V 9900 7350 50 0000 R CNN +F 2 "" H 9950 7380 30 0000 C CNN +F 3 "" V 9950 7450 30 0000 C CNN + 1 9900 7400 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 11550 3100 +F 0 "R?" H 11600 2900 50 0000 C CNN +F 1 "3900" H 11600 3000 50 0000 C CNN +F 2 "" H 11600 3080 30 0000 C CNN +F 3 "" V 11600 3150 30 0000 C CNN + 1 11550 3100 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 12050 1300 +F 0 "R?" V 12150 1250 50 0000 R CNN +F 1 "100" V 12050 1250 50 0000 R CNN +F 2 "" H 12100 1280 30 0000 C CNN +F 3 "" V 12100 1350 30 0000 C CNN + 1 12050 1300 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 13350 1300 +F 0 "R?" V 13450 1250 50 0000 R CNN +F 1 "820" V 13350 1250 50 0000 R CNN +F 2 "" H 13400 1280 30 0000 C CNN +F 3 "" V 13400 1350 30 0000 C CNN + 1 13350 1300 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 14450 3150 +F 0 "R?" H 14500 2950 50 0000 C CNN +F 1 "3900" H 14500 3050 50 0000 C CNN +F 2 "" H 14500 3130 30 0000 C CNN +F 3 "" V 14500 3200 30 0000 C CNN + 1 14450 3150 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 14900 1300 +F 0 "R?" V 15000 1250 50 0000 R CNN +F 1 "100" V 14900 1250 50 0000 R CNN +F 2 "" H 14950 1280 30 0000 C CNN +F 3 "" V 14950 1350 30 0000 C CNN + 1 14900 1300 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 3 1 00000000 +P 800 4700 +F 0 "U?" H 825 4900 30 0000 C CNN +F 1 "PORT" H 825 4800 30 0000 C CNN +F 2 "" H 800 4700 60 0000 C CNN +F 3 "" H 800 4700 60 0000 C CNN + 3 800 4700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 2 1 00000000 +P 800 5050 +F 0 "U?" H 825 5250 30 0000 C CNN +F 1 "PORT" H 825 5150 30 0000 C CNN +F 2 "" H 800 5050 60 0000 C CNN +F 3 "" H 800 5050 60 0000 C CNN + 2 800 5050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 4 1 00000000 +P 11300 7900 +F 0 "U?" H 11150 7875 30 0000 R CNN +F 1 "PORT" H 11150 7975 30 0000 R CNN +F 2 "" H 11300 7900 60 0000 C CNN +F 3 "" H 11300 7900 60 0000 C CNN + 4 11300 7900 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 8 1 00000000 +P 15100 950 +F 0 "U?" H 14950 925 30 0000 R CNN +F 1 "PORT" H 14950 1025 30 0000 R CNN +F 2 "" H 15100 950 60 0000 C CNN +F 3 "" H 15100 950 60 0000 C CNN + 8 15100 950 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 5 1 00000000 +P 15250 4750 +F 0 "U?" H 15100 4725 30 0000 R CNN +F 1 "PORT" H 15100 4825 30 0000 R CNN +F 2 "" H 15250 4750 60 0000 C CNN +F 3 "" H 15250 4750 60 0000 C CNN + 5 15250 4750 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 6 1 00000000 +P 15250 5350 +F 0 "U?" H 15100 5325 30 0000 R CNN +F 1 "PORT" H 15100 5425 30 0000 R CNN +F 2 "" H 15250 5350 60 0000 C CNN +F 3 "" H 15250 5350 60 0000 C CNN + 6 15250 5350 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 7 1 00000000 +P 15600 3350 +F 0 "U?" H 15450 3325 30 0000 R CNN +F 1 "PORT" H 15450 3425 30 0000 R CNN +F 2 "" H 15600 3350 60 0000 C CNN +F 3 "" H 15600 3350 60 0000 C CNN + 7 15600 3350 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_Diode D? +U 1 1 00000000 +P 3400 4100 +F 0 "D?" V 3352 4250 50 0000 L CNN +F 1 "eSim_Diode" V 3452 4250 50 0000 L CNN +F 2 "" H 3400 4100 60 0000 C CNN +F 3 "" H 3400 4100 60 0000 C CNN + 1 3400 4100 + 0 1 1 0 +$EndComp +$Comp +L eSim_Devices:eSim_Diode D? +U 1 1 00000000 +P 4450 5100 +F 0 "D?" V 4402 5250 50 0000 L CNN +F 1 "eSim_Diode" V 4502 5250 50 0000 L CNN +F 2 "" H 4450 5100 60 0000 C CNN +F 3 "" H 4450 5100 60 0000 C CNN + 1 4450 5100 + 0 1 1 0 +$EndComp +$Comp +L eSim_Devices:eSim_Diode D? +U 1 1 00000000 +P 12050 2700 +F 0 "D?" V 12002 2850 50 0000 L CNN +F 1 "eSim_Diode" V 12102 2850 50 0000 L CNN +F 2 "" H 12050 2700 60 0000 C CNN +F 3 "" H 12050 2700 60 0000 C CNN + 1 12050 2700 + 0 1 1 0 +$EndComp +$Comp +L eSim_Devices:eSim_Diode D? +U 1 1 00000000 +P 15000 2950 +F 0 "D?" V 14952 3100 50 0000 L CNN +F 1 "eSim_Diode" V 15052 3100 50 0000 L CNN +F 2 "" H 15000 2950 60 0000 C CNN +F 3 "" H 15000 2950 60 0000 C CNN + 1 15000 2950 + 0 1 1 0 +$EndComp +$Comp +L eSim_Analog:zener U? +U 1 1 00000000 +P 3050 3800 +F 0 "U?" V 3175 3650 60 0000 R CNN +F 1 "zener" V 3025 3650 60 0000 R CNN +F 2 "" H 3100 3800 60 0000 C CNN +F 3 "" H 3100 3800 60 0000 C CNN + 1 3050 3800 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Analog:zener U? +U 1 1 00000000 +P 4050 4750 +F 0 "U?" V 4175 4600 60 0000 R CNN +F 1 "zener" V 4025 4600 60 0000 R CNN +F 2 "" H 4100 4750 60 0000 C CNN +F 3 "" H 4100 4750 60 0000 C CNN + 1 4050 4750 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 1250 4700 +F 0 "Q?" H 1450 4750 50 0000 L CNN +F 1 "eSim_NPN" H 1450 4650 50 0000 L CNN +F 2 "" H 1450 4800 29 0000 C CNN +F 3 "" H 1250 4700 60 0000 C CNN + 1 1250 4700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 2000 6850 +F 0 "Q?" H 2200 6900 50 0000 L CNN +F 1 "eSim_NPN" H 2200 6800 50 0000 L CNN +F 2 "" H 2200 6950 29 0000 C CNN +F 3 "" H 2000 6850 60 0000 C CNN + 1 2000 6850 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 2200 4700 +F 0 "Q?" H 2400 4750 50 0000 L CNN +F 1 "eSim_NPN" H 2400 4650 50 0000 L CNN +F 2 "" H 2400 4800 29 0000 C CNN +F 3 "" H 2200 4700 60 0000 C CNN + 1 2200 4700 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 2950 2600 +F 0 "Q?" H 3150 2650 50 0000 L CNN +F 1 "eSim_NPN" H 3150 2550 50 0000 L CNN +F 2 "" H 3150 2700 29 0000 C CNN +F 3 "" H 2950 2600 60 0000 C CNN + 1 2950 2600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 3150 6850 +F 0 "Q?" H 3350 6900 50 0000 L CNN +F 1 "eSim_NPN" H 3350 6800 50 0000 L CNN +F 2 "" H 3350 6950 29 0000 C CNN +F 3 "" H 3150 6850 60 0000 C CNN + 1 3150 6850 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 4000 1700 +F 0 "Q?" H 4200 1750 50 0000 L CNN +F 1 "eSim_NPN" H 4200 1650 50 0000 L CNN +F 2 "" H 4200 1800 29 0000 C CNN +F 3 "" H 4000 1700 60 0000 C CNN + 1 4000 1700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 4250 6850 +F 0 "Q?" H 4450 6900 50 0000 L CNN +F 1 "eSim_NPN" H 4450 6800 50 0000 L CNN +F 2 "" H 4450 6950 29 0000 C CNN +F 3 "" H 4250 6850 60 0000 C CNN + 1 4250 6850 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 5050 3500 +F 0 "Q?" H 5250 3550 50 0000 L CNN +F 1 "eSim_NPN" H 5250 3450 50 0000 L CNN +F 2 "" H 5250 3600 29 0000 C CNN +F 3 "" H 5050 3500 60 0000 C CNN + 1 5050 3500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 5250 1700 +F 0 "Q?" H 5450 1750 50 0000 L CNN +F 1 "eSim_NPN" H 5450 1650 50 0000 L CNN +F 2 "" H 5450 1800 29 0000 C CNN +F 3 "" H 5250 1700 60 0000 C CNN + 1 5250 1700 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 5650 6850 +F 0 "Q?" H 5850 6900 50 0000 L CNN +F 1 "eSim_NPN" H 5850 6800 50 0000 L CNN +F 2 "" H 5850 6950 29 0000 C CNN +F 3 "" H 5650 6850 60 0000 C CNN + 1 5650 6850 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 5900 3500 +F 0 "Q?" H 6100 3550 50 0000 L CNN +F 1 "eSim_NPN" H 6100 3450 50 0000 L CNN +F 2 "" H 6100 3600 29 0000 C CNN +F 3 "" H 5900 3500 60 0000 C CNN + 1 5900 3500 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 6850 6800 +F 0 "Q?" H 7050 6850 50 0000 L CNN +F 1 "eSim_NPN" H 7050 6750 50 0000 L CNN +F 2 "" H 7050 6900 29 0000 C CNN +F 3 "" H 6850 6800 60 0000 C CNN + 1 6850 6800 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 7600 3750 +F 0 "Q?" H 7800 3800 50 0000 L CNN +F 1 "eSim_NPN" H 7800 3700 50 0000 L CNN +F 2 "" H 7800 3850 29 0000 C CNN +F 3 "" H 7600 3750 60 0000 C CNN + 1 7600 3750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 8250 6800 +F 0 "Q?" H 8450 6850 50 0000 L CNN +F 1 "eSim_NPN" H 8450 6750 50 0000 L CNN +F 2 "" H 8450 6900 29 0000 C CNN +F 3 "" H 8250 6800 60 0000 C CNN + 1 8250 6800 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 9100 4200 +F 0 "Q?" H 9300 4250 50 0000 L CNN +F 1 "eSim_NPN" H 9300 4150 50 0000 L CNN +F 2 "" H 9300 4300 29 0000 C CNN +F 3 "" H 9100 4200 60 0000 C CNN + 1 9100 4200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 9700 3050 +F 0 "Q?" H 9900 3100 50 0000 L CNN +F 1 "eSim_NPN" H 9900 3000 50 0000 L CNN +F 2 "" H 9900 3150 29 0000 C CNN +F 3 "" H 9700 3050 60 0000 C CNN + 1 9700 3050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 9950 6850 +F 0 "Q?" H 10150 6900 50 0000 L CNN +F 1 "eSim_NPN" H 10150 6800 50 0000 L CNN +F 2 "" H 10150 6950 29 0000 C CNN +F 3 "" H 9950 6850 60 0000 C CNN + 1 9950 6850 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 10850 4200 +F 0 "Q?" H 11050 4250 50 0000 L CNN +F 1 "eSim_NPN" H 11050 4150 50 0000 L CNN +F 2 "" H 11050 4300 29 0000 C CNN +F 3 "" H 10850 4200 60 0000 C CNN + 1 10850 4200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 11900 2100 +F 0 "Q?" H 12100 2150 50 0000 L CNN +F 1 "eSim_NPN" H 12100 2050 50 0000 L CNN +F 2 "" H 12100 2200 29 0000 C CNN +F 3 "" H 11900 2100 60 0000 C CNN + 1 11900 2100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 12000 3650 +F 0 "Q?" H 12200 3700 50 0000 L CNN +F 1 "eSim_NPN" H 12200 3600 50 0000 L CNN +F 2 "" H 12200 3750 29 0000 C CNN +F 3 "" H 12000 3650 60 0000 C CNN + 1 12000 3650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 13200 2100 +F 0 "Q?" H 13400 2150 50 0000 L CNN +F 1 "eSim_NPN" H 13400 2050 50 0000 L CNN +F 2 "" H 13400 2200 29 0000 C CNN +F 3 "" H 13200 2100 60 0000 C CNN + 1 13200 2100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 13900 4100 +F 0 "Q?" H 14100 4150 50 0000 L CNN +F 1 "eSim_NPN" H 14100 4050 50 0000 L CNN +F 2 "" H 14100 4200 29 0000 C CNN +F 3 "" H 13900 4100 60 0000 C CNN + 1 13900 4100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 14850 2400 +F 0 "Q?" H 15050 2450 50 0000 L CNN +F 1 "eSim_NPN" H 15050 2350 50 0000 L CNN +F 2 "" H 15050 2500 29 0000 C CNN +F 3 "" H 14850 2400 60 0000 C CNN + 1 14850 2400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 14900 3600 +F 0 "Q?" H 15100 3650 50 0000 L CNN +F 1 "eSim_NPN" H 15100 3550 50 0000 L CNN +F 2 "" H 15100 3700 29 0000 C CNN +F 3 "" H 14900 3600 60 0000 C CNN + 1 14900 3600 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/LM760/analysis b/library/SubcircuitLibrary/LM760/analysis new file mode 100644 index 000000000..c964a0dfc --- /dev/null +++ b/library/SubcircuitLibrary/LM760/analysis @@ -0,0 +1 @@ +.tran 1e-09 1e-06 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC10136/MC10136-cache.lib b/library/SubcircuitLibrary/MC10136/MC10136-cache.lib new file mode 100644 index 000000000..8466f131f --- /dev/null +++ b/library/SubcircuitLibrary/MC10136/MC10136-cache.lib @@ -0,0 +1,202 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_buffer +# +DEF d_buffer U 0 40 Y Y 1 F N +F0 "U" 0 -50 60 H V C CNN +F1 "d_buffer" 0 50 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +P 4 0 1 0 -300 200 -300 -200 450 0 -300 200 N +X IN 1 -500 0 200 R 50 50 1 1 I +X OUT 2 650 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_or +# +DEF d_or U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_or" 0 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_xor +# +DEF d_xor U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_xor" 50 100 47 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -350 50 180 -337 337 0 1 0 N -200 -50 -200 150 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 150 -50 -200 -50 N +P 2 0 1 0 150 150 -200 150 N +X IN1 1 -450 100 215 R 50 43 1 1 I +X IN2 2 -450 0 215 R 50 43 1 1 I +X OUT 3 450 50 200 L 50 39 1 1 O +ENDDRAW +ENDDEF +# +# tff_q0 +# +DEF tff_q0 U 0 40 Y Y 1 F N +F0 "U" 2850 1800 60 H V C CNN +F1 "tff_q0" 2850 2000 60 H V C CNN +F2 "" 2850 1950 60 H V C CNN +F3 "" 2850 1950 60 H V C CNN +DRAW +S 2350 2100 3350 1500 0 1 0 N +X CLK0 1 2150 1900 200 R 50 50 1 1 I +X T10 2 2150 1800 200 R 50 50 1 1 I +X Tn0 3 2150 1700 200 R 50 50 1 1 I +X Q00 4 3550 1900 200 L 50 50 1 1 O +X Q0bar0 5 3550 1800 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# tff_q1 +# +DEF tff_q1 U 0 40 Y Y 1 F N +F0 "U" 2850 1800 60 H V C CNN +F1 "tff_q1" 2850 2000 60 H V C CNN +F2 "" 2850 1950 60 H V C CNN +F3 "" 2850 1950 60 H V C CNN +DRAW +S 2350 2100 3350 1400 0 1 0 N +X CLK0 1 2150 1900 200 R 50 50 1 1 I +X T10 2 2150 1800 200 R 50 50 1 1 I +X T20 3 2150 1700 200 R 50 50 1 1 I +X Tn0 4 2150 1600 200 R 50 50 1 1 I +X Q10 5 3550 1900 200 L 50 50 1 1 O +X Q1bar0 6 3550 1800 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# tff_q2 +# +DEF tff_q2 U 0 40 Y Y 1 F N +F0 "U" 2850 1800 60 H V C CNN +F1 "tff_q2" 2850 2000 60 H V C CNN +F2 "" 2850 1950 60 H V C CNN +F3 "" 2850 1950 60 H V C CNN +DRAW +S 2350 2100 3350 1300 0 1 0 N +X CLK0 1 2150 1900 200 R 50 50 1 1 I +X T10 2 2150 1800 200 R 50 50 1 1 I +X T20 3 2150 1700 200 R 50 50 1 1 I +X T30 4 2150 1600 200 R 50 50 1 1 I +X Tn0 5 2150 1500 200 R 50 50 1 1 I +X Q20 6 3550 1900 200 L 50 50 1 1 O +X Q2bar0 7 3550 1800 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# tff_q3 +# +DEF tff_q3 U 0 40 Y Y 1 F N +F0 "U" 2850 1800 60 H V C CNN +F1 "tff_q3" 2850 2000 60 H V C CNN +F2 "" 2850 1950 60 H V C CNN +F3 "" 2850 1950 60 H V C CNN +DRAW +S 2350 2100 3350 1200 0 1 0 N +X CLK0 1 2150 1900 200 R 50 50 1 1 I +X T10 2 2150 1800 200 R 50 50 1 1 I +X T20 3 2150 1700 200 R 50 50 1 1 I +X T30 4 2150 1600 200 R 50 50 1 1 I +X T40 5 2150 1500 200 R 50 50 1 1 I +X Tn0 6 2150 1400 200 R 50 50 1 1 I +X Q30 7 3550 1900 200 L 50 50 1 1 O +X Q3bar0 8 3550 1800 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC10136/MC10136.cir b/library/SubcircuitLibrary/MC10136/MC10136.cir new file mode 100644 index 000000000..f3274ad46 --- /dev/null +++ b/library/SubcircuitLibrary/MC10136/MC10136.cir @@ -0,0 +1,50 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\MC10136\MC10136.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/12/26 16:52:11 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U12-Pad3_ d_or +U13 Net-_U12-Pad2_ Net-_U13-Pad2_ Net-_U13-Pad3_ d_or +U15 Net-_U12-Pad3_ Net-_U13-Pad3_ Net-_U11-Pad2_ d_xor +U18 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U18-Pad3_ d_or +U19 Net-_U12-Pad2_ Net-_U11-Pad6_ Net-_U19-Pad3_ d_or +U22 Net-_U18-Pad3_ Net-_U19-Pad3_ Net-_U20-Pad2_ d_xor +U24 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U24-Pad3_ d_or +U25 Net-_U12-Pad2_ Net-_U20-Pad7_ Net-_U25-Pad3_ d_or +U28 Net-_U24-Pad3_ Net-_U25-Pad3_ Net-_U28-Pad3_ d_xor +U9 Net-_U40-Pad12_ Net-_U14-Pad1_ Net-_U10-Pad1_ d_or +U14 Net-_U14-Pad1_ Net-_U13-Pad2_ Net-_U10-Pad2_ d_or +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_xor +U5 Net-_U1-Pad1_ Net-_U12-Pad1_ d_buffer +U4 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U14-Pad1_ d_or +U8 Net-_U14-Pad1_ Net-_U12-Pad2_ d_inverter +U6 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U6-Pad3_ d_or +U7 Net-_U6-Pad3_ Net-_U40-Pad10_ Net-_U3-Pad1_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ d_and +U3 Net-_U3-Pad1_ Net-_U1-Pad3_ Net-_U11-Pad3_ d_or +U2 Net-_U11-Pad1_ Net-_U11-Pad3_ Net-_U10-Pad3_ Net-_U2-Pad4_ Net-_U13-Pad2_ tff_q0 +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ Net-_U11-Pad4_ Net-_U11-Pad5_ Net-_U11-Pad6_ tff_q1 +U20 Net-_U11-Pad1_ Net-_U20-Pad2_ Net-_U11-Pad2_ Net-_U11-Pad3_ Net-_U20-Pad5_ Net-_U20-Pad6_ Net-_U20-Pad7_ tff_q2 +U29 Net-_U11-Pad1_ Net-_U28-Pad3_ Net-_U11-Pad2_ Net-_U20-Pad2_ Net-_U11-Pad3_ Net-_U29-Pad6_ Net-_U29-Pad7_ Net-_U29-Pad8_ tff_q3 +U21 Net-_U14-Pad1_ Net-_U11-Pad6_ Net-_U17-Pad2_ d_or +U17 Net-_U16-Pad3_ Net-_U17-Pad2_ Net-_U11-Pad4_ d_xor +U23 Net-_U23-Pad1_ Net-_U14-Pad1_ Net-_U23-Pad3_ d_or +U27 Net-_U14-Pad1_ Net-_U20-Pad7_ Net-_U26-Pad2_ d_or +U26 Net-_U23-Pad3_ Net-_U26-Pad2_ Net-_U20-Pad5_ d_xor +U32 Net-_U32-Pad1_ Net-_U14-Pad1_ Net-_U32-Pad3_ d_or +U35 Net-_U14-Pad1_ Net-_U29-Pad8_ Net-_U33-Pad2_ d_or +U33 Net-_U32-Pad3_ Net-_U33-Pad2_ Net-_U29-Pad6_ d_xor +U30 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U30-Pad3_ d_or +U31 Net-_U12-Pad2_ Net-_U29-Pad8_ Net-_U31-Pad3_ d_or +U34 Net-_U30-Pad3_ Net-_U31-Pad3_ Net-_U34-Pad3_ d_xor +U39 Net-_U34-Pad3_ Net-_U11-Pad2_ Net-_U38-Pad1_ d_or +U38 Net-_U38-Pad1_ Net-_U20-Pad2_ Net-_U37-Pad1_ d_or +U37 Net-_U37-Pad1_ Net-_U28-Pad3_ Net-_U36-Pad1_ d_or +U36 Net-_U36-Pad1_ Net-_U11-Pad3_ Net-_U36-Pad3_ d_or +U40 ? Net-_U20-Pad6_ Net-_U29-Pad7_ Net-_U36-Pad3_ Net-_U32-Pad1_ Net-_U23-Pad1_ Net-_U1-Pad2_ ? Net-_U1-Pad1_ Net-_U40-Pad10_ Net-_U16-Pad1_ Net-_U40-Pad12_ Net-_U11-Pad1_ Net-_U2-Pad4_ Net-_U11-Pad5_ ? PORT +U16 Net-_U16-Pad1_ Net-_U14-Pad1_ Net-_U16-Pad3_ d_or + +.end diff --git a/library/SubcircuitLibrary/MC10136/MC10136.cir.out b/library/SubcircuitLibrary/MC10136/MC10136.cir.out new file mode 100644 index 000000000..9784f3c58 --- /dev/null +++ b/library/SubcircuitLibrary/MC10136/MC10136.cir.out @@ -0,0 +1,168 @@ +* c:\fossee\esim\library\subcircuitlibrary\mc10136\mc10136.cir + +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_or +* u13 net-_u12-pad2_ net-_u13-pad2_ net-_u13-pad3_ d_or +* u15 net-_u12-pad3_ net-_u13-pad3_ net-_u11-pad2_ d_xor +* u18 net-_u12-pad1_ net-_u12-pad2_ net-_u18-pad3_ d_or +* u19 net-_u12-pad2_ net-_u11-pad6_ net-_u19-pad3_ d_or +* u22 net-_u18-pad3_ net-_u19-pad3_ net-_u20-pad2_ d_xor +* u24 net-_u12-pad1_ net-_u12-pad2_ net-_u24-pad3_ d_or +* u25 net-_u12-pad2_ net-_u20-pad7_ net-_u25-pad3_ d_or +* u28 net-_u24-pad3_ net-_u25-pad3_ net-_u28-pad3_ d_xor +* u9 net-_u40-pad12_ net-_u14-pad1_ net-_u10-pad1_ d_or +* u14 net-_u14-pad1_ net-_u13-pad2_ net-_u10-pad2_ d_or +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_xor +* u5 net-_u1-pad1_ net-_u12-pad1_ d_buffer +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u14-pad1_ d_or +* u8 net-_u14-pad1_ net-_u12-pad2_ d_inverter +* u6 net-_u1-pad1_ net-_u1-pad2_ net-_u6-pad3_ d_or +* u7 net-_u6-pad3_ net-_u40-pad10_ net-_u3-pad1_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ d_and +* u3 net-_u3-pad1_ net-_u1-pad3_ net-_u11-pad3_ d_or +* u2 net-_u11-pad1_ net-_u11-pad3_ net-_u10-pad3_ net-_u2-pad4_ net-_u13-pad2_ tff_q0 +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ net-_u11-pad4_ net-_u11-pad5_ net-_u11-pad6_ tff_q1 +* u20 net-_u11-pad1_ net-_u20-pad2_ net-_u11-pad2_ net-_u11-pad3_ net-_u20-pad5_ net-_u20-pad6_ net-_u20-pad7_ tff_q2 +* u29 net-_u11-pad1_ net-_u28-pad3_ net-_u11-pad2_ net-_u20-pad2_ net-_u11-pad3_ net-_u29-pad6_ net-_u29-pad7_ net-_u29-pad8_ tff_q3 +* u21 net-_u14-pad1_ net-_u11-pad6_ net-_u17-pad2_ d_or +* u17 net-_u16-pad3_ net-_u17-pad2_ net-_u11-pad4_ d_xor +* u23 net-_u23-pad1_ net-_u14-pad1_ net-_u23-pad3_ d_or +* u27 net-_u14-pad1_ net-_u20-pad7_ net-_u26-pad2_ d_or +* u26 net-_u23-pad3_ net-_u26-pad2_ net-_u20-pad5_ d_xor +* u32 net-_u32-pad1_ net-_u14-pad1_ net-_u32-pad3_ d_or +* u35 net-_u14-pad1_ net-_u29-pad8_ net-_u33-pad2_ d_or +* u33 net-_u32-pad3_ net-_u33-pad2_ net-_u29-pad6_ d_xor +* u30 net-_u12-pad1_ net-_u12-pad2_ net-_u30-pad3_ d_or +* u31 net-_u12-pad2_ net-_u29-pad8_ net-_u31-pad3_ d_or +* u34 net-_u30-pad3_ net-_u31-pad3_ net-_u34-pad3_ d_xor +* u39 net-_u34-pad3_ net-_u11-pad2_ net-_u38-pad1_ d_or +* u38 net-_u38-pad1_ net-_u20-pad2_ net-_u37-pad1_ d_or +* u37 net-_u37-pad1_ net-_u28-pad3_ net-_u36-pad1_ d_or +* u36 net-_u36-pad1_ net-_u11-pad3_ net-_u36-pad3_ d_or +* u40 ? net-_u20-pad6_ net-_u29-pad7_ net-_u36-pad3_ net-_u32-pad1_ net-_u23-pad1_ net-_u1-pad2_ ? net-_u1-pad1_ net-_u40-pad10_ net-_u16-pad1_ net-_u40-pad12_ net-_u11-pad1_ net-_u2-pad4_ net-_u11-pad5_ ? port +* u16 net-_u16-pad1_ net-_u14-pad1_ net-_u16-pad3_ d_or +a1 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a2 [net-_u12-pad2_ net-_u13-pad2_ ] net-_u13-pad3_ u13 +a3 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u11-pad2_ u15 +a4 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u18-pad3_ u18 +a5 [net-_u12-pad2_ net-_u11-pad6_ ] net-_u19-pad3_ u19 +a6 [net-_u18-pad3_ net-_u19-pad3_ ] net-_u20-pad2_ u22 +a7 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u24-pad3_ u24 +a8 [net-_u12-pad2_ net-_u20-pad7_ ] net-_u25-pad3_ u25 +a9 [net-_u24-pad3_ net-_u25-pad3_ ] net-_u28-pad3_ u28 +a10 [net-_u40-pad12_ net-_u14-pad1_ ] net-_u10-pad1_ u9 +a11 [net-_u14-pad1_ net-_u13-pad2_ ] net-_u10-pad2_ u14 +a12 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a13 net-_u1-pad1_ net-_u12-pad1_ u5 +a14 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u14-pad1_ u4 +a15 net-_u14-pad1_ net-_u12-pad2_ u8 +a16 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u6-pad3_ u6 +a17 [net-_u6-pad3_ net-_u40-pad10_ ] net-_u3-pad1_ u7 +a18 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u1-pad3_ u1 +a19 [net-_u3-pad1_ net-_u1-pad3_ ] net-_u11-pad3_ u3 +a20 [net-_u11-pad1_ ] [net-_u11-pad3_ ] [net-_u10-pad3_ ] [net-_u2-pad4_ ] [net-_u13-pad2_ ] u2 +a21 [net-_u11-pad1_ ] [net-_u11-pad2_ ] [net-_u11-pad3_ ] [net-_u11-pad4_ ] [net-_u11-pad5_ ] [net-_u11-pad6_ ] u11 +a22 [net-_u11-pad1_ ] [net-_u20-pad2_ ] [net-_u11-pad2_ ] [net-_u11-pad3_ ] [net-_u20-pad5_ ] [net-_u20-pad6_ ] [net-_u20-pad7_ ] u20 +a23 [net-_u11-pad1_ ] [net-_u28-pad3_ ] [net-_u11-pad2_ ] [net-_u20-pad2_ ] [net-_u11-pad3_ ] [net-_u29-pad6_ ] [net-_u29-pad7_ ] [net-_u29-pad8_ ] u29 +a24 [net-_u14-pad1_ net-_u11-pad6_ ] net-_u17-pad2_ u21 +a25 [net-_u16-pad3_ net-_u17-pad2_ ] net-_u11-pad4_ u17 +a26 [net-_u23-pad1_ net-_u14-pad1_ ] net-_u23-pad3_ u23 +a27 [net-_u14-pad1_ net-_u20-pad7_ ] net-_u26-pad2_ u27 +a28 [net-_u23-pad3_ net-_u26-pad2_ ] net-_u20-pad5_ u26 +a29 [net-_u32-pad1_ net-_u14-pad1_ ] net-_u32-pad3_ u32 +a30 [net-_u14-pad1_ net-_u29-pad8_ ] net-_u33-pad2_ u35 +a31 [net-_u32-pad3_ net-_u33-pad2_ ] net-_u29-pad6_ u33 +a32 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u30-pad3_ u30 +a33 [net-_u12-pad2_ net-_u29-pad8_ ] net-_u31-pad3_ u31 +a34 [net-_u30-pad3_ net-_u31-pad3_ ] net-_u34-pad3_ u34 +a35 [net-_u34-pad3_ net-_u11-pad2_ ] net-_u38-pad1_ u39 +a36 [net-_u38-pad1_ net-_u20-pad2_ ] net-_u37-pad1_ u38 +a37 [net-_u37-pad1_ net-_u28-pad3_ ] net-_u36-pad1_ u37 +a38 [net-_u36-pad1_ net-_u11-pad3_ ] net-_u36-pad3_ u36 +a39 [net-_u16-pad1_ net-_u14-pad1_ ] net-_u16-pad3_ u16 +* Schematic Name: d_or, NgSpice Name: d_or +.model u12 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u13 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u15 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u18 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u19 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u22 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u24 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u25 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u28 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u9 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u14 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u10 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, NgSpice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u1 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: tff_q0, NgSpice Name: tff_q0 +.model u2 tff_q0(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tff_q1, NgSpice Name: tff_q1 +.model u11 tff_q1(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tff_q2, NgSpice Name: tff_q2 +.model u20 tff_q2(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tff_q3, NgSpice Name: tff_q3 +.model u29 tff_q3(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u21 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u17 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u27 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u26 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u32 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u35 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u33 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u30 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u31 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u34 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u39 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u38 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u37 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u36 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u16 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC10136/MC10136.pro b/library/SubcircuitLibrary/MC10136/MC10136.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC10136/MC10136.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC10136/MC10136.sch b/library/SubcircuitLibrary/MC10136/MC10136.sch new file mode 100644 index 000000000..0ca5a0e2a --- /dev/null +++ b/library/SubcircuitLibrary/MC10136/MC10136.sch @@ -0,0 +1,1111 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:MC10136-cache +EELAYER 25 0 +EELAYER END +$Descr A1 33110 23386 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_or U12 +U 1 1 69E4CF07 +P 12850 4300 +F 0 "U12" H 12850 4300 60 0000 C CNN +F 1 "d_or" H 12850 4400 60 0000 C CNN +F 2 "" H 12850 4300 60 0000 C CNN +F 3 "" H 12850 4300 60 0000 C CNN + 1 12850 4300 + 1 0 0 -1 +$EndComp +$Comp +L d_or U13 +U 1 1 69E4CF9C +P 12850 5050 +F 0 "U13" H 12850 5050 60 0000 C CNN +F 1 "d_or" H 12850 5150 60 0000 C CNN +F 2 "" H 12850 5050 60 0000 C CNN +F 3 "" H 12850 5050 60 0000 C CNN + 1 12850 5050 + 1 0 0 -1 +$EndComp +$Comp +L d_xor U15 +U 1 1 69E4CFBE +P 14350 4600 +F 0 "U15" H 14350 4600 60 0000 C CNN +F 1 "d_xor" H 14400 4700 47 0000 C CNN +F 2 "" H 14350 4600 60 0000 C CNN +F 3 "" H 14350 4600 60 0000 C CNN + 1 14350 4600 + 1 0 0 -1 +$EndComp +$Comp +L d_or U18 +U 1 1 69E4D118 +P 15350 4250 +F 0 "U18" H 15350 4250 60 0000 C CNN +F 1 "d_or" H 15350 4350 60 0000 C CNN +F 2 "" H 15350 4250 60 0000 C CNN +F 3 "" H 15350 4250 60 0000 C CNN + 1 15350 4250 + 1 0 0 -1 +$EndComp +$Comp +L d_or U19 +U 1 1 69E4D11E +P 15350 5000 +F 0 "U19" H 15350 5000 60 0000 C CNN +F 1 "d_or" H 15350 5100 60 0000 C CNN +F 2 "" H 15350 5000 60 0000 C CNN +F 3 "" H 15350 5000 60 0000 C CNN + 1 15350 5000 + 1 0 0 -1 +$EndComp +$Comp +L d_xor U22 +U 1 1 69E4D124 +P 16850 4550 +F 0 "U22" H 16850 4550 60 0000 C CNN +F 1 "d_xor" H 16900 4650 47 0000 C CNN +F 2 "" H 16850 4550 60 0000 C CNN +F 3 "" H 16850 4550 60 0000 C CNN + 1 16850 4550 + 1 0 0 -1 +$EndComp +$Comp +L d_or U24 +U 1 1 69E4D356 +P 18050 4250 +F 0 "U24" H 18050 4250 60 0000 C CNN +F 1 "d_or" H 18050 4350 60 0000 C CNN +F 2 "" H 18050 4250 60 0000 C CNN +F 3 "" H 18050 4250 60 0000 C CNN + 1 18050 4250 + 1 0 0 -1 +$EndComp +$Comp +L d_or U25 +U 1 1 69E4D35C +P 18050 5000 +F 0 "U25" H 18050 5000 60 0000 C CNN +F 1 "d_or" H 18050 5100 60 0000 C CNN +F 2 "" H 18050 5000 60 0000 C CNN +F 3 "" H 18050 5000 60 0000 C CNN + 1 18050 5000 + 1 0 0 -1 +$EndComp +$Comp +L d_xor U28 +U 1 1 69E4D362 +P 19550 4550 +F 0 "U28" H 19550 4550 60 0000 C CNN +F 1 "d_xor" H 19600 4650 47 0000 C CNN +F 2 "" H 19550 4550 60 0000 C CNN +F 3 "" H 19550 4550 60 0000 C CNN + 1 19550 4550 + 1 0 0 -1 +$EndComp +$Comp +L d_or U9 +U 1 1 69E4D36C +P 12100 16600 +F 0 "U9" H 12100 16600 60 0000 C CNN +F 1 "d_or" H 12100 16700 60 0000 C CNN +F 2 "" H 12100 16600 60 0000 C CNN +F 3 "" H 12100 16600 60 0000 C CNN + 1 12100 16600 + 0 -1 -1 0 +$EndComp +$Comp +L d_or U14 +U 1 1 69E4D372 +P 12850 16600 +F 0 "U14" H 12850 16600 60 0000 C CNN +F 1 "d_or" H 12850 16700 60 0000 C CNN +F 2 "" H 12850 16600 60 0000 C CNN +F 3 "" H 12850 16600 60 0000 C CNN + 1 12850 16600 + 0 -1 -1 0 +$EndComp +$Comp +L d_xor U10 +U 1 1 69E4D378 +P 12400 15100 +F 0 "U10" H 12400 15100 60 0000 C CNN +F 1 "d_xor" H 12450 15200 47 0000 C CNN +F 2 "" H 12400 15100 60 0000 C CNN +F 3 "" H 12400 15100 60 0000 C CNN + 1 12400 15100 + 0 -1 -1 0 +$EndComp +$Comp +L d_buffer U5 +U 1 1 69E4D805 +P 10450 4500 +F 0 "U5" H 10450 4450 60 0000 C CNN +F 1 "d_buffer" H 10450 4550 60 0000 C CNN +F 2 "" H 10450 4500 60 0000 C CNN +F 3 "" H 10450 4500 60 0000 C CNN + 1 10450 4500 + 1 0 0 -1 +$EndComp +$Comp +L d_or U4 +U 1 1 69E4D943 +P 10400 5550 +F 0 "U4" H 10400 5550 60 0000 C CNN +F 1 "d_or" H 10400 5650 60 0000 C CNN +F 2 "" H 10400 5550 60 0000 C CNN +F 3 "" H 10400 5550 60 0000 C CNN + 1 10400 5550 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U8 +U 1 1 69E4D9D5 +P 11350 5500 +F 0 "U8" H 11350 5400 60 0000 C CNN +F 1 "d_inverter" H 11350 5650 60 0000 C CNN +F 2 "" H 11400 5450 60 0000 C CNN +F 3 "" H 11400 5450 60 0000 C CNN + 1 11350 5500 + 1 0 0 -1 +$EndComp +$Comp +L d_or U6 +U 1 1 69E4E35F +P 10450 6550 +F 0 "U6" H 10450 6550 60 0000 C CNN +F 1 "d_or" H 10450 6650 60 0000 C CNN +F 2 "" H 10450 6550 60 0000 C CNN +F 3 "" H 10450 6550 60 0000 C CNN + 1 10450 6550 + 1 0 0 -1 +$EndComp +$Comp +L d_and U7 +U 1 1 69E4E724 +P 10650 7800 +F 0 "U7" H 10650 7800 60 0000 C CNN +F 1 "d_and" H 10700 7900 60 0000 C CNN +F 2 "" H 10650 7800 60 0000 C CNN +F 3 "" H 10650 7800 60 0000 C CNN + 1 10650 7800 + 0 1 1 0 +$EndComp +$Comp +L d_and U1 +U 1 1 69E4E86E +P 9700 7850 +F 0 "U1" H 9700 7850 60 0000 C CNN +F 1 "d_and" H 9750 7950 60 0000 C CNN +F 2 "" H 9700 7850 60 0000 C CNN +F 3 "" H 9700 7850 60 0000 C CNN + 1 9700 7850 + 0 1 1 0 +$EndComp +$Comp +L d_or U3 +U 1 1 69E4E8E2 +P 10200 9150 +F 0 "U3" H 10200 9150 60 0000 C CNN +F 1 "d_or" H 10200 9250 60 0000 C CNN +F 2 "" H 10200 9150 60 0000 C CNN +F 3 "" H 10200 9150 60 0000 C CNN + 1 10200 9150 + 0 1 1 0 +$EndComp +$Comp +L tff_q0 U2 +U 1 1 69E4E0CB +P 10000 14750 +F 0 "U2" H 12850 16550 60 0000 C CNN +F 1 "tff_q0" H 12850 16750 60 0000 C CNN +F 2 "" H 12850 16700 60 0000 C CNN +F 3 "" H 12850 16700 60 0000 C CNN + 1 10000 14750 + 1 0 0 -1 +$EndComp +$Comp +L tff_q1 U11 +U 1 1 69E4E25E +P 12650 14650 +F 0 "U11" H 15500 16450 60 0000 C CNN +F 1 "tff_q1" H 15500 16650 60 0000 C CNN +F 2 "" H 15500 16600 60 0000 C CNN +F 3 "" H 15500 16600 60 0000 C CNN + 1 12650 14650 + 1 0 0 -1 +$EndComp +$Comp +L tff_q2 U20 +U 1 1 69E4E451 +P 15700 14600 +F 0 "U20" H 18550 16400 60 0000 C CNN +F 1 "tff_q2" H 18550 16600 60 0000 C CNN +F 2 "" H 18550 16550 60 0000 C CNN +F 3 "" H 18550 16550 60 0000 C CNN + 1 15700 14600 + 1 0 0 -1 +$EndComp +$Comp +L tff_q3 U29 +U 1 1 69E4E5B4 +P 20150 14450 +F 0 "U29" H 23000 16250 60 0000 C CNN +F 1 "tff_q3" H 23000 16450 60 0000 C CNN +F 2 "" H 23000 16400 60 0000 C CNN +F 3 "" H 23000 16400 60 0000 C CNN + 1 20150 14450 + 1 0 0 -1 +$EndComp +$Comp +L d_or U21 +U 1 1 69E50784 +P 15700 16600 +F 0 "U21" H 15700 16600 60 0000 C CNN +F 1 "d_or" H 15700 16700 60 0000 C CNN +F 2 "" H 15700 16600 60 0000 C CNN +F 3 "" H 15700 16600 60 0000 C CNN + 1 15700 16600 + 0 -1 -1 0 +$EndComp +$Comp +L d_xor U17 +U 1 1 69E5078A +P 15250 15100 +F 0 "U17" H 15250 15100 60 0000 C CNN +F 1 "d_xor" H 15300 15200 47 0000 C CNN +F 2 "" H 15250 15100 60 0000 C CNN +F 3 "" H 15250 15100 60 0000 C CNN + 1 15250 15100 + 0 -1 -1 0 +$EndComp +$Comp +L d_or U23 +U 1 1 69E50837 +P 17850 16550 +F 0 "U23" H 17850 16550 60 0000 C CNN +F 1 "d_or" H 17850 16650 60 0000 C CNN +F 2 "" H 17850 16550 60 0000 C CNN +F 3 "" H 17850 16550 60 0000 C CNN + 1 17850 16550 + 0 -1 -1 0 +$EndComp +$Comp +L d_or U27 +U 1 1 69E5083D +P 18600 16550 +F 0 "U27" H 18600 16550 60 0000 C CNN +F 1 "d_or" H 18600 16650 60 0000 C CNN +F 2 "" H 18600 16550 60 0000 C CNN +F 3 "" H 18600 16550 60 0000 C CNN + 1 18600 16550 + 0 -1 -1 0 +$EndComp +$Comp +L d_xor U26 +U 1 1 69E50843 +P 18150 15050 +F 0 "U26" H 18150 15050 60 0000 C CNN +F 1 "d_xor" H 18200 15150 47 0000 C CNN +F 2 "" H 18150 15050 60 0000 C CNN +F 3 "" H 18150 15050 60 0000 C CNN + 1 18150 15050 + 0 -1 -1 0 +$EndComp +$Comp +L d_or U32 +U 1 1 69E50988 +P 21700 16700 +F 0 "U32" H 21700 16700 60 0000 C CNN +F 1 "d_or" H 21700 16800 60 0000 C CNN +F 2 "" H 21700 16700 60 0000 C CNN +F 3 "" H 21700 16700 60 0000 C CNN + 1 21700 16700 + 0 -1 -1 0 +$EndComp +$Comp +L d_or U35 +U 1 1 69E5098E +P 22450 16700 +F 0 "U35" H 22450 16700 60 0000 C CNN +F 1 "d_or" H 22450 16800 60 0000 C CNN +F 2 "" H 22450 16700 60 0000 C CNN +F 3 "" H 22450 16700 60 0000 C CNN + 1 22450 16700 + 0 -1 -1 0 +$EndComp +$Comp +L d_xor U33 +U 1 1 69E50994 +P 22000 15200 +F 0 "U33" H 22000 15200 60 0000 C CNN +F 1 "d_xor" H 22050 15300 47 0000 C CNN +F 2 "" H 22000 15200 60 0000 C CNN +F 3 "" H 22000 15200 60 0000 C CNN + 1 22000 15200 + 0 -1 -1 0 +$EndComp +$Comp +L d_or U30 +U 1 1 69E53610 +P 20550 4200 +F 0 "U30" H 20550 4200 60 0000 C CNN +F 1 "d_or" H 20550 4300 60 0000 C CNN +F 2 "" H 20550 4200 60 0000 C CNN +F 3 "" H 20550 4200 60 0000 C CNN + 1 20550 4200 + 1 0 0 -1 +$EndComp +$Comp +L d_or U31 +U 1 1 69E53616 +P 20550 4950 +F 0 "U31" H 20550 4950 60 0000 C CNN +F 1 "d_or" H 20550 5050 60 0000 C CNN +F 2 "" H 20550 4950 60 0000 C CNN +F 3 "" H 20550 4950 60 0000 C CNN + 1 20550 4950 + 1 0 0 -1 +$EndComp +$Comp +L d_xor U34 +U 1 1 69E5361C +P 22050 4500 +F 0 "U34" H 22050 4500 60 0000 C CNN +F 1 "d_xor" H 22100 4600 47 0000 C CNN +F 2 "" H 22050 4500 60 0000 C CNN +F 3 "" H 22050 4500 60 0000 C CNN + 1 22050 4500 + 1 0 0 -1 +$EndComp +Wire Wire Line + 13300 4250 13900 4250 +Wire Wire Line + 13900 4250 13900 4500 +Wire Wire Line + 13300 5000 13900 5000 +Wire Wire Line + 13900 5000 13900 4600 +Wire Wire Line + 15800 4200 16400 4200 +Wire Wire Line + 16400 4200 16400 4450 +Wire Wire Line + 15800 4950 16400 4950 +Wire Wire Line + 16400 4950 16400 4550 +Wire Wire Line + 18500 4200 19100 4200 +Wire Wire Line + 19100 4200 19100 4450 +Wire Wire Line + 18500 4950 19100 4950 +Wire Wire Line + 19100 4950 19100 4550 +Wire Wire Line + 12050 16150 12050 15550 +Wire Wire Line + 12050 15550 12300 15550 +Wire Wire Line + 12800 16150 12800 15550 +Wire Wire Line + 12800 15550 12400 15550 +Wire Wire Line + 20100 4850 20100 4250 +Wire Wire Line + 20100 4250 20000 4250 +Wire Wire Line + 20000 4250 20000 3750 +Wire Wire Line + 20100 4200 20000 4200 +Connection ~ 20000 4200 +Wire Wire Line + 20000 3750 11900 3750 +Wire Wire Line + 20100 3900 20100 4100 +Wire Wire Line + 12150 3900 20100 3900 +Wire Wire Line + 17600 4250 17400 4250 +Wire Wire Line + 17400 3750 17400 4300 +Connection ~ 17400 3750 +Wire Wire Line + 17600 4900 17600 4300 +Wire Wire Line + 17600 4300 17400 4300 +Connection ~ 17400 4250 +Wire Wire Line + 17600 4150 17600 3900 +Connection ~ 17600 3900 +Wire Wire Line + 14900 4150 14900 3900 +Connection ~ 14900 3900 +Wire Wire Line + 14900 4250 14800 4250 +Wire Wire Line + 14800 3750 14800 4300 +Connection ~ 14800 3750 +Wire Wire Line + 14900 4900 14900 4300 +Wire Wire Line + 14900 4300 14800 4300 +Connection ~ 14800 4250 +Wire Wire Line + 11100 4500 11600 4500 +Wire Wire Line + 11600 4500 11600 4200 +Wire Wire Line + 11600 4200 12400 4200 +Wire Wire Line + 12150 3900 12150 4200 +Connection ~ 12150 4200 +Wire Wire Line + 12400 4300 11900 4300 +Wire Wire Line + 11900 3750 11900 5500 +Wire Wire Line + 11900 4950 12400 4950 +Connection ~ 11900 4300 +Wire Wire Line + 10850 5450 11050 5450 +Wire Wire Line + 11050 5450 11050 5500 +Wire Wire Line + 10850 5450 10850 5500 +Wire Wire Line + 11900 5500 11650 5500 +Connection ~ 11900 4950 +Wire Wire Line + 9550 4500 9950 4500 +Wire Wire Line + 9800 4500 9800 7400 +Wire Wire Line + 9800 5450 9950 5450 +Wire Wire Line + 9600 5550 9950 5550 +Wire Wire Line + 9800 6450 10000 6450 +Connection ~ 9800 5450 +Wire Wire Line + 9750 8300 9750 8700 +Wire Wire Line + 9750 8700 10200 8700 +Wire Wire Line + 10300 8700 10700 8700 +Wire Wire Line + 10700 8700 10700 8250 +Wire Wire Line + 10900 6500 10900 7350 +Wire Wire Line + 10900 7350 10750 7350 +Wire Wire Line + 10650 7350 10650 7100 +Wire Wire Line + 10650 7100 9450 7100 +Wire Wire Line + 9700 5550 9700 7400 +Wire Wire Line + 9700 6550 10000 6550 +Connection ~ 9700 5550 +Connection ~ 9700 6550 +Connection ~ 9800 6450 +Connection ~ 9800 4500 +Wire Wire Line + 10250 9600 10250 12950 +Wire Wire Line + 10250 12950 12150 12950 +Wire Wire Line + 12000 12950 12000 13550 +Wire Wire Line + 12000 13550 24200 13550 +Connection ~ 12000 12950 +Wire Wire Line + 14800 12950 14600 12950 +Wire Wire Line + 14600 12950 14600 13550 +Connection ~ 14600 13550 +Wire Wire Line + 17850 13000 17600 13000 +Wire Wire Line + 17600 13000 17600 13550 +Connection ~ 17600 13550 +Wire Wire Line + 22300 12950 22050 12950 +Wire Wire Line + 22050 12950 22050 13550 +Connection ~ 22050 13550 +Wire Wire Line + 13550 12850 13750 12850 +Wire Wire Line + 13750 12850 13750 17600 +Wire Wire Line + 16200 12750 16550 12750 +Wire Wire Line + 16550 12750 16550 17500 +Wire Wire Line + 19250 12700 19650 12700 +Wire Wire Line + 19650 12700 19650 17600 +Wire Wire Line + 23700 12550 24100 12550 +Wire Wire Line + 24100 12550 24100 17550 +Wire Wire Line + 14900 16150 14900 15550 +Wire Wire Line + 14900 15550 15150 15550 +Wire Wire Line + 15650 16150 15650 15550 +Wire Wire Line + 15650 15550 15250 15550 +Wire Wire Line + 17800 16100 17800 15500 +Wire Wire Line + 17800 15500 18050 15500 +Wire Wire Line + 18550 16100 18550 15500 +Wire Wire Line + 18550 15500 18150 15500 +Wire Wire Line + 21650 16250 21650 15650 +Wire Wire Line + 21650 15650 21900 15650 +Wire Wire Line + 22400 16250 22400 15650 +Wire Wire Line + 22400 15650 22000 15650 +Wire Wire Line + 12000 17050 12000 17600 +Wire Wire Line + 12100 17050 12100 17300 +Wire Wire Line + 12750 17300 12750 17050 +Connection ~ 12750 17300 +Wire Wire Line + 14850 17050 14850 17550 +Wire Wire Line + 15600 17300 15600 17050 +Connection ~ 15600 17300 +Wire Wire Line + 17750 17000 17750 17450 +Wire Wire Line + 17850 17300 17850 17000 +Wire Wire Line + 21700 17300 21700 17150 +Wire Wire Line + 11700 12850 12150 12850 +Wire Wire Line + 11700 12850 11700 13950 +Wire Wire Line + 10150 13950 21850 13950 +Wire Wire Line + 21850 13950 21850 12550 +Wire Wire Line + 21850 12550 22300 12550 +Connection ~ 11700 13950 +Wire Wire Line + 14800 12750 14400 12750 +Wire Wire Line + 14400 12750 14400 13950 +Connection ~ 14400 13950 +Wire Wire Line + 17850 12700 17300 12700 +Wire Wire Line + 17300 12700 17300 13950 +Connection ~ 17300 13950 +Wire Wire Line + 21000 4150 21600 4150 +Wire Wire Line + 21600 4150 21600 4400 +Wire Wire Line + 21000 4900 21600 4900 +Wire Wire Line + 21600 4900 21600 4500 +Wire Wire Line + 22500 4450 22500 6400 +Wire Wire Line + 20000 4500 20000 6300 +Wire Wire Line + 14800 4550 14800 6950 +Wire Wire Line + 17300 4500 17300 5950 +Wire Wire Line + 17300 5950 17200 5950 +Wire Wire Line + 14800 12850 14500 12850 +Wire Wire Line + 14500 12850 14500 6950 +Wire Wire Line + 14500 6950 26950 6950 +Connection ~ 14800 6950 +Wire Wire Line + 17850 12900 17550 12900 +Wire Wire Line + 17550 12900 17550 6950 +Connection ~ 17550 6950 +Wire Wire Line + 17850 12800 17800 12800 +Wire Wire Line + 17800 12800 17800 7400 +Wire Wire Line + 17800 7400 26800 7400 +Wire Wire Line + 17200 5950 17200 6550 +Wire Wire Line + 17200 6550 19250 6550 +Wire Wire Line + 19250 6550 19250 7400 +Connection ~ 19250 7400 +Wire Wire Line + 22300 12750 21650 12750 +Wire Wire Line + 21650 12750 21650 6950 +Connection ~ 21650 6950 +Wire Wire Line + 22300 12850 21050 12850 +Wire Wire Line + 21050 12850 21050 7400 +Connection ~ 21050 7400 +Wire Wire Line + 22300 12650 22150 12650 +Wire Wire Line + 22150 12650 22150 7950 +Wire Wire Line + 22150 7950 26400 7950 +Wire Wire Line + 20000 6300 22050 6300 +Wire Wire Line + 22050 6300 22050 7800 +Wire Wire Line + 22050 7800 22500 7800 +Wire Wire Line + 22500 7800 22500 7950 +Connection ~ 22500 7950 +Wire Wire Line + 12850 17050 13400 17050 +Wire Wire Line + 13400 17050 13400 13400 +Wire Wire Line + 13400 13400 13600 13400 +Wire Wire Line + 13600 13400 13600 5600 +Wire Wire Line + 13550 12950 13600 12950 +Connection ~ 13600 12950 +Wire Wire Line + 16400 17050 15700 17050 +Wire Wire Line + 16400 5400 16400 17050 +Wire Wire Line + 16400 5400 14900 5400 +Wire Wire Line + 14900 5400 14900 5000 +Wire Wire Line + 13600 5600 12400 5600 +Wire Wire Line + 12400 5600 12400 5050 +Wire Wire Line + 17600 5000 17600 5600 +Wire Wire Line + 17600 5600 19400 5600 +Wire Wire Line + 18600 17000 18600 17100 +Wire Wire Line + 18600 17100 19400 17100 +Wire Wire Line + 19400 17100 19400 5600 +Wire Wire Line + 19250 12800 19400 12800 +Connection ~ 19400 12800 +Wire Wire Line + 23850 17150 22450 17150 +Wire Wire Line + 23850 5400 23850 17150 +Wire Wire Line + 23700 12650 23850 12650 +Connection ~ 23850 12650 +Wire Wire Line + 23850 5400 20100 5400 +Wire Wire Line + 20100 5400 20100 4950 +Wire Wire Line + 12350 14650 12350 13250 +Wire Wire Line + 12350 13250 12150 13250 +Wire Wire Line + 12150 13250 12150 13050 +Wire Wire Line + 14800 13050 14800 14650 +Wire Wire Line + 14800 14650 15200 14650 +Wire Wire Line + 17850 13100 17850 14600 +Wire Wire Line + 17850 14600 18100 14600 +Wire Wire Line + 22300 13050 22300 14750 +Wire Wire Line + 22300 14750 21950 14750 +Wire Wire Line + 22500 6400 25900 6400 +Wire Wire Line + 25900 6400 25900 6350 +Wire Wire Line + 16200 12850 16400 12850 +Connection ~ 16400 12850 +$Comp +L d_or U39 +U 1 1 69E5C58A +P 26950 9150 +F 0 "U39" H 26950 9150 60 0000 C CNN +F 1 "d_or" H 26950 9250 60 0000 C CNN +F 2 "" H 26950 9150 60 0000 C CNN +F 3 "" H 26950 9150 60 0000 C CNN + 1 26950 9150 + 0 1 1 0 +$EndComp +Wire Wire Line + 25900 6350 27050 6350 +Wire Wire Line + 27050 6350 27050 8700 +Wire Wire Line + 26950 6950 26950 8700 +$Comp +L d_or U38 +U 1 1 69E5CB78 +P 26800 10300 +F 0 "U38" H 26800 10300 60 0000 C CNN +F 1 "d_or" H 26800 10400 60 0000 C CNN +F 2 "" H 26800 10300 60 0000 C CNN +F 3 "" H 26800 10300 60 0000 C CNN + 1 26800 10300 + 0 1 1 0 +$EndComp +Wire Wire Line + 26800 7400 26800 9850 +Wire Wire Line + 27000 9600 27000 9850 +Wire Wire Line + 27000 9850 26900 9850 +Wire Wire Line + 26400 7950 26400 11150 +$Comp +L d_or U37 +U 1 1 69E5D132 +P 26550 11650 +F 0 "U37" H 26550 11650 60 0000 C CNN +F 1 "d_or" H 26550 11750 60 0000 C CNN +F 2 "" H 26550 11650 60 0000 C CNN +F 3 "" H 26550 11650 60 0000 C CNN + 1 26550 11650 + 0 1 1 0 +$EndComp +Wire Wire Line + 26400 11150 26550 11150 +Wire Wire Line + 26550 11150 26550 11200 +Wire Wire Line + 26850 10750 26650 10750 +Wire Wire Line + 26650 10750 26650 11200 +Wire Wire Line + 24200 13550 24200 12400 +Wire Wire Line + 24200 12400 26300 12400 +Wire Wire Line + 26300 12400 26300 12550 +$Comp +L d_or U36 +U 1 1 69E5D7F9 +P 26300 13000 +F 0 "U36" H 26300 13000 60 0000 C CNN +F 1 "d_or" H 26300 13100 60 0000 C CNN +F 2 "" H 26300 13000 60 0000 C CNN +F 3 "" H 26300 13000 60 0000 C CNN + 1 26300 13000 + 0 1 1 0 +$EndComp +Wire Wire Line + 26600 12100 26600 12550 +Wire Wire Line + 26600 12550 26400 12550 +Wire Wire Line + 26350 13450 26350 17500 +$Comp +L PORT U40 +U 4 1 69E5E87D +P 26100 17500 +F 0 "U40" H 26150 17600 30 0000 C CNN +F 1 "PORT" H 26100 17500 30 0000 C CNN +F 2 "" H 26100 17500 60 0000 C CNN +F 3 "" H 26100 17500 60 0000 C CNN + 4 26100 17500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 6 1 69E5ECD8 +P 17500 17450 +F 0 "U40" H 17550 17550 30 0000 C CNN +F 1 "PORT" H 17500 17450 30 0000 C CNN +F 2 "" H 17500 17450 60 0000 C CNN +F 3 "" H 17500 17450 60 0000 C CNN + 6 17500 17450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 14 1 69E5ED4D +P 13500 17600 +F 0 "U40" H 13550 17700 30 0000 C CNN +F 1 "PORT" H 13500 17600 30 0000 C CNN +F 2 "" H 13500 17600 60 0000 C CNN +F 3 "" H 13500 17600 60 0000 C CNN + 14 13500 17600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 7 1 69E5EDC2 +P 9350 5550 +F 0 "U40" H 9400 5650 30 0000 C CNN +F 1 "PORT" H 9350 5550 30 0000 C CNN +F 2 "" H 9350 5550 60 0000 C CNN +F 3 "" H 9350 5550 60 0000 C CNN + 7 9350 5550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 8 1 69E5EF6E +P 28850 9550 +F 0 "U40" H 28900 9650 30 0000 C CNN +F 1 "PORT" H 28850 9550 30 0000 C CNN +F 2 "" H 28850 9550 60 0000 C CNN +F 3 "" H 28850 9550 60 0000 C CNN + 8 28850 9550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 16 1 69E5F084 +P 28850 9850 +F 0 "U40" H 28900 9950 30 0000 C CNN +F 1 "PORT" H 28850 9850 30 0000 C CNN +F 2 "" H 28850 9850 60 0000 C CNN +F 3 "" H 28850 9850 60 0000 C CNN + 16 28850 9850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 11 1 69E5F107 +P 14600 17550 +F 0 "U40" H 14650 17650 30 0000 C CNN +F 1 "PORT" H 14600 17550 30 0000 C CNN +F 2 "" H 14600 17550 60 0000 C CNN +F 3 "" H 14600 17550 60 0000 C CNN + 11 14600 17550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 10 1 69E5F26B +P 9200 7100 +F 0 "U40" H 9250 7200 30 0000 C CNN +F 1 "PORT" H 9200 7100 30 0000 C CNN +F 2 "" H 9200 7100 60 0000 C CNN +F 3 "" H 9200 7100 60 0000 C CNN + 10 9200 7100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 12 1 69E5F34C +P 11750 17600 +F 0 "U40" H 11800 17700 30 0000 C CNN +F 1 "PORT" H 11750 17600 30 0000 C CNN +F 2 "" H 11750 17600 60 0000 C CNN +F 3 "" H 11750 17600 60 0000 C CNN + 12 11750 17600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 2 1 69E5F493 +P 19400 17600 +F 0 "U40" H 19450 17700 30 0000 C CNN +F 1 "PORT" H 19400 17600 30 0000 C CNN +F 2 "" H 19400 17600 60 0000 C CNN +F 3 "" H 19400 17600 60 0000 C CNN + 2 19400 17600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 3 1 69E5F614 +P 23850 17550 +F 0 "U40" H 23900 17650 30 0000 C CNN +F 1 "PORT" H 23850 17550 30 0000 C CNN +F 2 "" H 23850 17550 60 0000 C CNN +F 3 "" H 23850 17550 60 0000 C CNN + 3 23850 17550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 15 1 69E5F6A7 +P 16300 17500 +F 0 "U40" H 16350 17600 30 0000 C CNN +F 1 "PORT" H 16300 17500 30 0000 C CNN +F 2 "" H 16300 17500 60 0000 C CNN +F 3 "" H 16300 17500 60 0000 C CNN + 15 16300 17500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 9 1 69E5F7E2 +P 9300 4500 +F 0 "U40" H 9350 4600 30 0000 C CNN +F 1 "PORT" H 9300 4500 30 0000 C CNN +F 2 "" H 9300 4500 60 0000 C CNN +F 3 "" H 9300 4500 60 0000 C CNN + 9 9300 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 1 1 69E5F869 +P 28850 10250 +F 0 "U40" H 28900 10350 30 0000 C CNN +F 1 "PORT" H 28850 10250 30 0000 C CNN +F 2 "" H 28850 10250 60 0000 C CNN +F 3 "" H 28850 10250 60 0000 C CNN + 1 28850 10250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U40 +U 13 1 69E5F9CA +P 9900 13950 +F 0 "U40" H 9950 14050 30 0000 C CNN +F 1 "PORT" H 9900 13950 30 0000 C CNN +F 2 "" H 9900 13950 60 0000 C CNN +F 3 "" H 9900 13950 60 0000 C CNN + 13 9900 13950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 29100 9550 29550 9550 +Wire Wire Line + 29100 9850 29550 9850 +Wire Wire Line + 29100 10250 29600 10250 +NoConn ~ 29550 9550 +NoConn ~ 29550 9850 +NoConn ~ 29600 10250 +Wire Wire Line + 12100 17300 22350 17300 +Wire Wire Line + 22350 17300 22350 17150 +Wire Wire Line + 14950 17050 14950 17300 +Connection ~ 14950 17300 +Connection ~ 17850 17300 +Connection ~ 21700 17300 +Wire Wire Line + 10950 5450 10950 6150 +Wire Wire Line + 10950 6150 14150 6150 +Wire Wire Line + 14150 6150 14150 17300 +Connection ~ 14150 17300 +Connection ~ 10950 5450 +Wire Wire Line + 18500 17000 18500 17300 +Connection ~ 18500 17300 +Wire Wire Line + 21600 17450 21650 17450 +Wire Wire Line + 21650 17450 21650 17400 +Wire Wire Line + 21650 17400 21600 17400 +Wire Wire Line + 21600 17400 21600 17150 +$Comp +L PORT U40 +U 5 1 6A027B48 +P 21350 17650 +F 0 "U40" H 21400 17750 30 0000 C CNN +F 1 "PORT" H 21350 17650 30 0000 C CNN +F 2 "" H 21350 17650 60 0000 C CNN +F 3 "" H 21350 17650 60 0000 C CNN + 5 21350 17650 + 1 0 0 -1 +$EndComp +Wire Wire Line + 21600 17650 21600 17450 +$Comp +L d_or U16 +U 1 1 6A031E79 +P 14950 16600 +F 0 "U16" H 14950 16600 60 0000 C CNN +F 1 "d_or" H 14950 16700 60 0000 C CNN +F 2 "" H 14950 16600 60 0000 C CNN +F 3 "" H 14950 16600 60 0000 C CNN + 1 14950 16600 + 0 -1 -1 0 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC10136/MC10136.sub b/library/SubcircuitLibrary/MC10136/MC10136.sub new file mode 100644 index 000000000..946cc4689 --- /dev/null +++ b/library/SubcircuitLibrary/MC10136/MC10136.sub @@ -0,0 +1,162 @@ +* Subcircuit MC10136 +.subckt MC10136 ? net-_u20-pad6_ net-_u29-pad7_ net-_u36-pad3_ net-_u32-pad1_ net-_u23-pad1_ net-_u1-pad2_ ? net-_u1-pad1_ net-_u40-pad10_ net-_u16-pad1_ net-_u40-pad12_ net-_u11-pad1_ net-_u2-pad4_ net-_u11-pad5_ ? +* c:\fossee\esim\library\subcircuitlibrary\mc10136\mc10136.cir +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_or +* u13 net-_u12-pad2_ net-_u13-pad2_ net-_u13-pad3_ d_or +* u15 net-_u12-pad3_ net-_u13-pad3_ net-_u11-pad2_ d_xor +* u18 net-_u12-pad1_ net-_u12-pad2_ net-_u18-pad3_ d_or +* u19 net-_u12-pad2_ net-_u11-pad6_ net-_u19-pad3_ d_or +* u22 net-_u18-pad3_ net-_u19-pad3_ net-_u20-pad2_ d_xor +* u24 net-_u12-pad1_ net-_u12-pad2_ net-_u24-pad3_ d_or +* u25 net-_u12-pad2_ net-_u20-pad7_ net-_u25-pad3_ d_or +* u28 net-_u24-pad3_ net-_u25-pad3_ net-_u28-pad3_ d_xor +* u9 net-_u40-pad12_ net-_u14-pad1_ net-_u10-pad1_ d_or +* u14 net-_u14-pad1_ net-_u13-pad2_ net-_u10-pad2_ d_or +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_xor +* u5 net-_u1-pad1_ net-_u12-pad1_ d_buffer +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u14-pad1_ d_or +* u8 net-_u14-pad1_ net-_u12-pad2_ d_inverter +* u6 net-_u1-pad1_ net-_u1-pad2_ net-_u6-pad3_ d_or +* u7 net-_u6-pad3_ net-_u40-pad10_ net-_u3-pad1_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ d_and +* u3 net-_u3-pad1_ net-_u1-pad3_ net-_u11-pad3_ d_or +* u2 net-_u11-pad1_ net-_u11-pad3_ net-_u10-pad3_ net-_u2-pad4_ net-_u13-pad2_ tff_q0 +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ net-_u11-pad4_ net-_u11-pad5_ net-_u11-pad6_ tff_q1 +* u20 net-_u11-pad1_ net-_u20-pad2_ net-_u11-pad2_ net-_u11-pad3_ net-_u20-pad5_ net-_u20-pad6_ net-_u20-pad7_ tff_q2 +* u29 net-_u11-pad1_ net-_u28-pad3_ net-_u11-pad2_ net-_u20-pad2_ net-_u11-pad3_ net-_u29-pad6_ net-_u29-pad7_ net-_u29-pad8_ tff_q3 +* u21 net-_u14-pad1_ net-_u11-pad6_ net-_u17-pad2_ d_or +* u17 net-_u16-pad3_ net-_u17-pad2_ net-_u11-pad4_ d_xor +* u23 net-_u23-pad1_ net-_u14-pad1_ net-_u23-pad3_ d_or +* u27 net-_u14-pad1_ net-_u20-pad7_ net-_u26-pad2_ d_or +* u26 net-_u23-pad3_ net-_u26-pad2_ net-_u20-pad5_ d_xor +* u32 net-_u32-pad1_ net-_u14-pad1_ net-_u32-pad3_ d_or +* u35 net-_u14-pad1_ net-_u29-pad8_ net-_u33-pad2_ d_or +* u33 net-_u32-pad3_ net-_u33-pad2_ net-_u29-pad6_ d_xor +* u30 net-_u12-pad1_ net-_u12-pad2_ net-_u30-pad3_ d_or +* u31 net-_u12-pad2_ net-_u29-pad8_ net-_u31-pad3_ d_or +* u34 net-_u30-pad3_ net-_u31-pad3_ net-_u34-pad3_ d_xor +* u39 net-_u34-pad3_ net-_u11-pad2_ net-_u38-pad1_ d_or +* u38 net-_u38-pad1_ net-_u20-pad2_ net-_u37-pad1_ d_or +* u37 net-_u37-pad1_ net-_u28-pad3_ net-_u36-pad1_ d_or +* u36 net-_u36-pad1_ net-_u11-pad3_ net-_u36-pad3_ d_or +* u16 net-_u16-pad1_ net-_u14-pad1_ net-_u16-pad3_ d_or +a1 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a2 [net-_u12-pad2_ net-_u13-pad2_ ] net-_u13-pad3_ u13 +a3 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u11-pad2_ u15 +a4 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u18-pad3_ u18 +a5 [net-_u12-pad2_ net-_u11-pad6_ ] net-_u19-pad3_ u19 +a6 [net-_u18-pad3_ net-_u19-pad3_ ] net-_u20-pad2_ u22 +a7 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u24-pad3_ u24 +a8 [net-_u12-pad2_ net-_u20-pad7_ ] net-_u25-pad3_ u25 +a9 [net-_u24-pad3_ net-_u25-pad3_ ] net-_u28-pad3_ u28 +a10 [net-_u40-pad12_ net-_u14-pad1_ ] net-_u10-pad1_ u9 +a11 [net-_u14-pad1_ net-_u13-pad2_ ] net-_u10-pad2_ u14 +a12 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a13 net-_u1-pad1_ net-_u12-pad1_ u5 +a14 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u14-pad1_ u4 +a15 net-_u14-pad1_ net-_u12-pad2_ u8 +a16 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u6-pad3_ u6 +a17 [net-_u6-pad3_ net-_u40-pad10_ ] net-_u3-pad1_ u7 +a18 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u1-pad3_ u1 +a19 [net-_u3-pad1_ net-_u1-pad3_ ] net-_u11-pad3_ u3 +a20 [net-_u11-pad1_ ] [net-_u11-pad3_ ] [net-_u10-pad3_ ] [net-_u2-pad4_ ] [net-_u13-pad2_ ] u2 +a21 [net-_u11-pad1_ ] [net-_u11-pad2_ ] [net-_u11-pad3_ ] [net-_u11-pad4_ ] [net-_u11-pad5_ ] [net-_u11-pad6_ ] u11 +a22 [net-_u11-pad1_ ] [net-_u20-pad2_ ] [net-_u11-pad2_ ] [net-_u11-pad3_ ] [net-_u20-pad5_ ] [net-_u20-pad6_ ] [net-_u20-pad7_ ] u20 +a23 [net-_u11-pad1_ ] [net-_u28-pad3_ ] [net-_u11-pad2_ ] [net-_u20-pad2_ ] [net-_u11-pad3_ ] [net-_u29-pad6_ ] [net-_u29-pad7_ ] [net-_u29-pad8_ ] u29 +a24 [net-_u14-pad1_ net-_u11-pad6_ ] net-_u17-pad2_ u21 +a25 [net-_u16-pad3_ net-_u17-pad2_ ] net-_u11-pad4_ u17 +a26 [net-_u23-pad1_ net-_u14-pad1_ ] net-_u23-pad3_ u23 +a27 [net-_u14-pad1_ net-_u20-pad7_ ] net-_u26-pad2_ u27 +a28 [net-_u23-pad3_ net-_u26-pad2_ ] net-_u20-pad5_ u26 +a29 [net-_u32-pad1_ net-_u14-pad1_ ] net-_u32-pad3_ u32 +a30 [net-_u14-pad1_ net-_u29-pad8_ ] net-_u33-pad2_ u35 +a31 [net-_u32-pad3_ net-_u33-pad2_ ] net-_u29-pad6_ u33 +a32 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u30-pad3_ u30 +a33 [net-_u12-pad2_ net-_u29-pad8_ ] net-_u31-pad3_ u31 +a34 [net-_u30-pad3_ net-_u31-pad3_ ] net-_u34-pad3_ u34 +a35 [net-_u34-pad3_ net-_u11-pad2_ ] net-_u38-pad1_ u39 +a36 [net-_u38-pad1_ net-_u20-pad2_ ] net-_u37-pad1_ u38 +a37 [net-_u37-pad1_ net-_u28-pad3_ ] net-_u36-pad1_ u37 +a38 [net-_u36-pad1_ net-_u11-pad3_ ] net-_u36-pad3_ u36 +a39 [net-_u16-pad1_ net-_u14-pad1_ ] net-_u16-pad3_ u16 +* Schematic Name: d_or, NgSpice Name: d_or +.model u12 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u13 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u15 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u18 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u19 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u22 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u24 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u25 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u28 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u9 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u14 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u10 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, NgSpice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u1 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: tff_q0, NgSpice Name: tff_q0 +.model u2 tff_q0(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tff_q1, NgSpice Name: tff_q1 +.model u11 tff_q1(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tff_q2, NgSpice Name: tff_q2 +.model u20 tff_q2(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tff_q3, NgSpice Name: tff_q3 +.model u29 tff_q3(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u21 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u17 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u27 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u26 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u32 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u35 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u33 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u30 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u31 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u34 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u39 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u38 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u37 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u36 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u16 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends MC10136 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC10136/MC10136_Previous_Values.xml b/library/SubcircuitLibrary/MC10136/MC10136_Previous_Values.xml new file mode 100644 index 000000000..008974214 --- /dev/null +++ b/library/SubcircuitLibrary/MC10136/MC10136_Previous_Values.xml @@ -0,0 +1 @@ +d_ord_ord_xord_ord_ord_xord_ord_ord_xord_ord_ord_xord_bufferd_ord_inverterd_ord_andd_andd_ortff_q0tff_q1tff_q2tff_q3d_ord_ord_xord_ord_ord_xord_ord_ord_xord_ord_ord_xord_ord_ord_ord_ortruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC10136/analysis b/library/SubcircuitLibrary/MC10136/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/MC10136/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B-cache.lib b/library/SubcircuitLibrary/MC14016B/MC14016B-cache.lib new file mode 100644 index 000000000..3b7d214a1 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B-cache.lib @@ -0,0 +1,128 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# dac_bridge_1 +# +DEF dac_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "dac_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# eSim_MOS_N +# +DEF eSim_MOS_N M 0 0 Y N 1 F N +F0 "M" 0 -150 50 H V R CNN +F1 "eSim_MOS_N" 100 -50 50 H V R CNN +F2 "" 300 -300 29 H V C CNN +F3 "" 100 -200 60 H V C CNN +ALIAS mosfet_n +DRAW +C 150 -200 111 0 1 10 N +P 2 0 1 10 130 -290 130 -250 N +P 2 0 1 0 130 -270 200 -270 N +P 2 0 1 10 130 -220 130 -180 N +P 2 0 1 0 130 -200 200 -200 N +P 2 0 1 10 130 -150 130 -110 N +P 2 0 1 0 130 -130 200 -130 N +P 2 0 1 0 200 -300 200 -270 N +P 2 0 1 0 200 -130 200 -100 N +P 3 0 1 10 110 -275 110 -125 110 -125 N +P 3 0 1 0 200 -200 300 -200 300 -250 N +P 4 0 1 0 140 -200 180 -215 180 -185 140 -200 F +X D 1 200 0 100 D 50 50 1 1 P +X G 2 -100 -200 210 R 50 50 1 1 P +X S 3 200 -400 100 U 50 50 1 1 P +X B 4 300 -350 98 U 47 47 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_P +# +DEF eSim_MOS_P M 0 0 Y N 1 F N +F0 "M" -50 50 50 H V R CNN +F1 "eSim_MOS_P" 50 150 50 H V R CNN +F2 "" 250 100 29 H V C CNN +F3 "" 50 0 60 H V C CNN +ALIAS mosfet_p +DRAW +C 100 0 111 0 1 10 N +P 2 0 1 0 80 -70 150 -70 N +P 2 0 1 10 80 -50 80 -90 N +P 2 0 1 0 80 0 150 0 N +P 2 0 1 10 80 20 80 -20 N +P 2 0 1 0 80 70 150 70 N +P 2 0 1 10 80 90 80 50 N +P 2 0 1 0 150 -70 150 -100 N +P 2 0 1 0 150 100 150 70 N +P 3 0 1 10 60 75 60 -75 60 -75 N +P 3 0 1 0 150 0 250 0 250 -50 N +P 4 0 1 0 140 0 100 -15 100 15 140 0 F +X D 1 150 200 100 D 50 50 1 1 P +X G 2 -150 0 210 R 50 50 1 1 P +X S 3 150 -200 100 U 50 50 1 1 P +X B 4 250 -150 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B.cir b/library/SubcircuitLibrary/MC14016B/MC14016B.cir new file mode 100644 index 000000000..8c317047f --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B.cir @@ -0,0 +1,17 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\MC14016B\MC14016B.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/23/25 15:06:49 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ d_inverter +U2 Net-_U1-Pad2_ Net-_U2-Pad2_ d_inverter +M1 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad4_ eSim_MOS_P +M2 Net-_M1-Pad1_ Net-_M2-Pad2_ Net-_M1-Pad3_ Net-_M2-Pad4_ eSim_MOS_N +U3 Net-_U2-Pad2_ Net-_M1-Pad2_ dac_bridge_1 +U5 Net-_M1-Pad3_ Net-_U1-Pad1_ Net-_M1-Pad1_ Net-_M1-Pad4_ Net-_M2-Pad4_ PORT +U4 Net-_U1-Pad2_ Net-_M2-Pad2_ dac_bridge_1 + +.end diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B.cir.out b/library/SubcircuitLibrary/MC14016B/MC14016B.cir.out new file mode 100644 index 000000000..42ed3c57a --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B.cir.out @@ -0,0 +1,32 @@ +* c:\fossee\esim\library\subcircuitlibrary\mc14016b\mc14016b.cir + +.include PMOS-5um.lib +.include NMOS-5um.lib +* u1 net-_u1-pad1_ net-_u1-pad2_ d_inverter +* u2 net-_u1-pad2_ net-_u2-pad2_ d_inverter +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad4_ mos_p W=100u L=100u M=1 +m2 net-_m1-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m2-pad4_ mos_n W=100u L=100u M=1 +* u3 net-_u2-pad2_ net-_m1-pad2_ dac_bridge_1 +* u5 net-_m1-pad3_ net-_u1-pad1_ net-_m1-pad1_ net-_m1-pad4_ net-_m2-pad4_ port +* u4 net-_u1-pad2_ net-_m2-pad2_ dac_bridge_1 +a1 net-_u1-pad1_ net-_u1-pad2_ u1 +a2 net-_u1-pad2_ net-_u2-pad2_ u2 +a3 [net-_u2-pad2_ ] [net-_m1-pad2_ ] u3 +a4 [net-_u1-pad2_ ] [net-_m2-pad2_ ] u4 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u1 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u3 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u4 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B.pro b/library/SubcircuitLibrary/MC14016B/MC14016B.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B.proj b/library/SubcircuitLibrary/MC14016B/MC14016B.proj new file mode 100644 index 000000000..fe3e0087c --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B.proj @@ -0,0 +1 @@ +schematicFile MC14016B.sch diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B.sch b/library/SubcircuitLibrary/MC14016B/MC14016B.sch new file mode 100644 index 000000000..b02290ac5 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B.sch @@ -0,0 +1,213 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:MC14016B-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_inverter U1 +U 1 1 68590916 +P 2650 3150 +F 0 "U1" H 2650 3050 60 0000 C CNN +F 1 "d_inverter" H 2650 3300 60 0000 C CNN +F 2 "" H 2700 3100 60 0000 C CNN +F 3 "" H 2700 3100 60 0000 C CNN + 1 2650 3150 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U2 +U 1 1 68590952 +P 3650 3150 +F 0 "U2" H 3650 3050 60 0000 C CNN +F 1 "d_inverter" H 3650 3300 60 0000 C CNN +F 2 "" H 3700 3100 60 0000 C CNN +F 3 "" H 3700 3100 60 0000 C CNN + 1 3650 3150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2950 3150 3350 3150 +$Comp +L eSim_MOS_P M1 +U 1 1 685909B0 +P 5800 3150 +F 0 "M1" H 5750 3200 50 0000 R CNN +F 1 "eSim_MOS_P" H 5850 3300 50 0000 R CNN +F 2 "" H 6050 3250 29 0000 C CNN +F 3 "" H 5850 3150 60 0000 C CNN + 1 5800 3150 + 0 1 1 0 +$EndComp +$Comp +L eSim_MOS_N M2 +U 1 1 68590A0A +P 6000 3950 +F 0 "M2" H 6000 3800 50 0000 R CNN +F 1 "eSim_MOS_N" H 6100 3900 50 0000 R CNN +F 2 "" H 6300 3650 29 0000 C CNN +F 3 "" H 6100 3750 60 0000 C CNN + 1 6000 3950 + 0 1 -1 0 +$EndComp +Wire Wire Line + 5600 3300 5600 3750 +Wire Wire Line + 6000 3300 6000 3750 +$Comp +L dac_bridge_1 U3 +U 1 1 68590B03 +P 4750 3200 +F 0 "U3" H 4750 3200 60 0000 C CNN +F 1 "dac_bridge_1" H 4750 3350 60 0000 C CNN +F 2 "" H 4750 3200 60 0000 C CNN +F 3 "" H 4750 3200 60 0000 C CNN + 1 4750 3200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3950 3150 4150 3150 +$Comp +L PORT U5 +U 2 1 68590BE8 +P 1900 3150 +F 0 "U5" H 1950 3250 30 0000 C CNN +F 1 "PORT" H 1900 3150 30 0000 C CNN +F 2 "" H 1900 3150 60 0000 C CNN +F 3 "" H 1900 3150 60 0000 C CNN + 2 1900 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U5 +U 1 1 68590C23 +P 4750 3550 +F 0 "U5" H 4800 3650 30 0000 C CNN +F 1 "PORT" H 4750 3550 30 0000 C CNN +F 2 "" H 4750 3550 60 0000 C CNN +F 3 "" H 4750 3550 60 0000 C CNN + 1 4750 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U5 +U 4 1 68590C48 +P 5300 3400 +F 0 "U5" H 5350 3500 30 0000 C CNN +F 1 "PORT" H 5300 3400 30 0000 C CNN +F 2 "" H 5300 3400 60 0000 C CNN +F 3 "" H 5300 3400 60 0000 C CNN + 4 5300 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U5 +U 3 1 68590C87 +P 6450 3500 +F 0 "U5" H 6500 3600 30 0000 C CNN +F 1 "PORT" H 6450 3500 30 0000 C CNN +F 2 "" H 6450 3500 60 0000 C CNN +F 3 "" H 6450 3500 60 0000 C CNN + 3 6450 3500 + -1 0 0 -1 +$EndComp +$Comp +L PORT U5 +U 5 1 68590CB0 +P 5300 3650 +F 0 "U5" H 5350 3750 30 0000 C CNN +F 1 "PORT" H 5300 3650 30 0000 C CNN +F 2 "" H 5300 3650 60 0000 C CNN +F 3 "" H 5300 3650 60 0000 C CNN + 5 5300 3650 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2150 3150 2350 3150 +$Comp +L dac_bridge_1 U4 +U 1 1 68592608 +P 4800 4300 +F 0 "U4" H 4800 4300 60 0000 C CNN +F 1 "dac_bridge_1" H 4800 4450 60 0000 C CNN +F 2 "" H 4800 4300 60 0000 C CNN +F 3 "" H 4800 4300 60 0000 C CNN + 1 4800 4300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5300 3150 5650 3150 +Wire Wire Line + 5650 3150 5650 3000 +Wire Wire Line + 5650 3000 5800 3000 +Wire Wire Line + 3200 3150 3200 4250 +Wire Wire Line + 3200 4250 4200 4250 +Connection ~ 3200 3150 +Wire Wire Line + 5350 4250 5800 4250 +Wire Wire Line + 5800 4250 5800 4050 +Wire Wire Line + 5550 3650 5650 3650 +Wire Wire Line + 5550 3400 5650 3400 +Wire Wire Line + 5000 3550 5600 3550 +Connection ~ 5600 3550 +Wire Wire Line + 6200 3500 6000 3500 +Connection ~ 6000 3500 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B.sub b/library/SubcircuitLibrary/MC14016B/MC14016B.sub new file mode 100644 index 000000000..abb10c93f --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B.sub @@ -0,0 +1,26 @@ +* Subcircuit MC14016B +.subckt MC14016B net-_m1-pad3_ net-_u1-pad1_ net-_m1-pad1_ net-_m1-pad4_ net-_m2-pad4_ +* c:\fossee\esim\library\subcircuitlibrary\mc14016b\mc14016b.cir +.include PMOS-5um.lib +.include NMOS-5um.lib +* u1 net-_u1-pad1_ net-_u1-pad2_ d_inverter +* u2 net-_u1-pad2_ net-_u2-pad2_ d_inverter +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad4_ mos_p W=100u L=100u M=1 +m2 net-_m1-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m2-pad4_ mos_n W=100u L=100u M=1 +* u3 net-_u2-pad2_ net-_m1-pad2_ dac_bridge_1 +* u4 net-_u1-pad2_ net-_m2-pad2_ dac_bridge_1 +a1 net-_u1-pad1_ net-_u1-pad2_ u1 +a2 net-_u1-pad2_ net-_u2-pad2_ u2 +a3 [net-_u2-pad2_ ] [net-_m1-pad2_ ] u3 +a4 [net-_u1-pad2_ ] [net-_m2-pad2_ ] u4 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u1 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u3 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u4 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Control Statements + +.ends MC14016B \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_Previous_Values.xml b/library/SubcircuitLibrary/MC14016B/MC14016B_Previous_Values.xml new file mode 100644 index 000000000..e8c909fcb --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_inverterdac_bridgeadc_bridgedac_bridgeC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_quad-cache.lib b/library/SubcircuitLibrary/MC14016B/MC14016B_quad-cache.lib new file mode 100644 index 000000000..6a4c4d1a0 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_quad-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# MC14016B_1 +# +DEF MC14016B_1 X 0 40 Y Y 1 F N +F0 "X" 0 -650 60 H V C CNN +F1 "MC14016B_1" 50 650 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 400 400 -400 0 1 0 N +X IN 1 -550 300 200 R 50 50 1 1 I +X CONTROL 2 -550 100 200 R 50 50 1 1 I +X OUT 3 -550 -250 200 R 50 50 1 1 O +X VDD 4 600 250 200 L 50 50 1 1 I +X GND 5 600 -200 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_quad.cir b/library/SubcircuitLibrary/MC14016B/MC14016B_quad.cir new file mode 100644 index 000000000..4ce43c410 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_quad.cir @@ -0,0 +1,15 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\MC14016B_quad\MC14016B_quad.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/24/25 11:44:09 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad1_ Net-_U1-Pad13_ Net-_U1-Pad2_ Net-_U1-Pad14_ Net-_U1-Pad7_ MC14016B_1 +X2 Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad3_ Net-_U1-Pad14_ Net-_U1-Pad7_ MC14016B_1 +X3 Net-_U1-Pad8_ Net-_U1-Pad6_ Net-_U1-Pad9_ Net-_U1-Pad14_ Net-_U1-Pad7_ MC14016B_1 +X4 Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad10_ Net-_U1-Pad14_ Net-_U1-Pad7_ MC14016B_1 +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ PORT + +.end diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_quad.cir.out b/library/SubcircuitLibrary/MC14016B/MC14016B_quad.cir.out new file mode 100644 index 000000000..d762fa9c2 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_quad.cir.out @@ -0,0 +1,17 @@ +* c:\fossee\esim\library\subcircuitlibrary\mc14016b_quad\mc14016b_quad.cir + +.include MC14016B.sub +x1 net-_u1-pad1_ net-_u1-pad13_ net-_u1-pad2_ net-_u1-pad14_ net-_u1-pad7_ MC14016B +x2 net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad3_ net-_u1-pad14_ net-_u1-pad7_ MC14016B +x3 net-_u1-pad8_ net-_u1-pad6_ net-_u1-pad9_ net-_u1-pad14_ net-_u1-pad7_ MC14016B +x4 net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad10_ net-_u1-pad14_ net-_u1-pad7_ MC14016B +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_quad.pro b/library/SubcircuitLibrary/MC14016B/MC14016B_quad.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_quad.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_quad.sch b/library/SubcircuitLibrary/MC14016B/MC14016B_quad.sch new file mode 100644 index 000000000..c5897efff --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_quad.sch @@ -0,0 +1,305 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:MC14016B_quad-cache +EELAYER 25 0 +EELAYER END +$Descr A1 33110 23386 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L MC14016B_1 X1 +U 1 1 685BC07B +P 21400 8300 +F 0 "X1" H 21400 7650 60 0000 C CNN +F 1 "MC14016B_1" H 21450 8950 60 0000 C CNN +F 2 "" H 21400 8300 60 0001 C CNN +F 3 "" H 21400 8300 60 0001 C CNN + 1 21400 8300 + 1 0 0 -1 +$EndComp +$Comp +L MC14016B_1 X2 +U 1 1 685BC0C0 +P 21400 9550 +F 0 "X2" H 21400 8900 60 0000 C CNN +F 1 "MC14016B_1" H 21450 10200 60 0000 C CNN +F 2 "" H 21400 9550 60 0001 C CNN +F 3 "" H 21400 9550 60 0001 C CNN + 1 21400 9550 + 1 0 0 -1 +$EndComp +$Comp +L MC14016B_1 X3 +U 1 1 685BC0F0 +P 21400 10700 +F 0 "X3" H 21400 10050 60 0000 C CNN +F 1 "MC14016B_1" H 21450 11350 60 0000 C CNN +F 2 "" H 21400 10700 60 0001 C CNN +F 3 "" H 21400 10700 60 0001 C CNN + 1 21400 10700 + 1 0 0 -1 +$EndComp +$Comp +L MC14016B_1 X4 +U 1 1 685BC1AF +P 21450 11900 +F 0 "X4" H 21450 11250 60 0000 C CNN +F 1 "MC14016B_1" H 21500 12550 60 0000 C CNN +F 2 "" H 21450 11900 60 0001 C CNN +F 3 "" H 21450 11900 60 0001 C CNN + 1 21450 11900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 22000 8050 22600 8050 +Wire Wire Line + 22500 8050 22500 11650 +Wire Wire Line + 22500 9300 22000 9300 +Wire Wire Line + 22500 10450 22000 10450 +Connection ~ 22500 9300 +Wire Wire Line + 22500 11650 22050 11650 +Connection ~ 22500 10450 +Wire Wire Line + 22750 12100 22050 12100 +Wire Wire Line + 22750 8500 22750 12100 +Wire Wire Line + 22750 10900 22000 10900 +Wire Wire Line + 22000 9750 22750 9750 +Connection ~ 22750 10900 +Wire Wire Line + 22000 8500 22850 8500 +Connection ~ 22750 9750 +$Comp +L PORT U1 +U 7 1 685BC5D2 +P 23100 8500 +F 0 "U1" H 23150 8600 30 0000 C CNN +F 1 "PORT" H 23100 8500 30 0000 C CNN +F 2 "" H 23100 8500 60 0000 C CNN +F 3 "" H 23100 8500 60 0000 C CNN + 7 23100 8500 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 685BC5F1 +P 20450 10400 +F 0 "U1" H 20500 10500 30 0000 C CNN +F 1 "PORT" H 20450 10400 30 0000 C CNN +F 2 "" H 20450 10400 60 0000 C CNN +F 3 "" H 20450 10400 60 0000 C CNN + 8 20450 10400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 685BC612 +P 20500 11600 +F 0 "U1" H 20550 11700 30 0000 C CNN +F 1 "PORT" H 20500 11600 30 0000 C CNN +F 2 "" H 20500 11600 60 0000 C CNN +F 3 "" H 20500 11600 60 0000 C CNN + 11 20500 11600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 685BC635 +P 20500 11800 +F 0 "U1" H 20550 11900 30 0000 C CNN +F 1 "PORT" H 20500 11800 30 0000 C CNN +F 2 "" H 20500 11800 60 0000 C CNN +F 3 "" H 20500 11800 60 0000 C CNN + 12 20500 11800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685BC65A +P 20450 8550 +F 0 "U1" H 20500 8650 30 0000 C CNN +F 1 "PORT" H 20450 8550 30 0000 C CNN +F 2 "" H 20450 8550 60 0000 C CNN +F 3 "" H 20450 8550 60 0000 C CNN + 2 20450 8550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 685BC681 +P 20450 10950 +F 0 "U1" H 20500 11050 30 0000 C CNN +F 1 "PORT" H 20450 10950 30 0000 C CNN +F 2 "" H 20450 10950 60 0000 C CNN +F 3 "" H 20450 10950 60 0000 C CNN + 9 20450 10950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 685BC6AA +P 20450 8200 +F 0 "U1" H 20500 8300 30 0000 C CNN +F 1 "PORT" H 20450 8200 30 0000 C CNN +F 2 "" H 20450 8200 60 0000 C CNN +F 3 "" H 20450 8200 60 0000 C CNN + 13 20450 8200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685BC6D5 +P 20400 9250 +F 0 "U1" H 20450 9350 30 0000 C CNN +F 1 "PORT" H 20400 9250 30 0000 C CNN +F 2 "" H 20400 9250 60 0000 C CNN +F 3 "" H 20400 9250 60 0000 C CNN + 4 20400 9250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685BC702 +P 20450 9800 +F 0 "U1" H 20500 9900 30 0000 C CNN +F 1 "PORT" H 20450 9800 30 0000 C CNN +F 2 "" H 20450 9800 60 0000 C CNN +F 3 "" H 20450 9800 60 0000 C CNN + 3 20450 9800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685BC735 +P 20450 8000 +F 0 "U1" H 20500 8100 30 0000 C CNN +F 1 "PORT" H 20450 8000 30 0000 C CNN +F 2 "" H 20450 8000 60 0000 C CNN +F 3 "" H 20450 8000 60 0000 C CNN + 1 20450 8000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685BC766 +P 20450 9450 +F 0 "U1" H 20500 9550 30 0000 C CNN +F 1 "PORT" H 20450 9450 30 0000 C CNN +F 2 "" H 20450 9450 60 0000 C CNN +F 3 "" H 20450 9450 60 0000 C CNN + 5 20450 9450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685BC79D +P 20500 10600 +F 0 "U1" H 20550 10700 30 0000 C CNN +F 1 "PORT" H 20500 10600 30 0000 C CNN +F 2 "" H 20500 10600 60 0000 C CNN +F 3 "" H 20500 10600 60 0000 C CNN + 6 20500 10600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 685BC7D2 +P 20500 12150 +F 0 "U1" H 20550 12250 30 0000 C CNN +F 1 "PORT" H 20500 12150 30 0000 C CNN +F 2 "" H 20500 12150 60 0000 C CNN +F 3 "" H 20500 12150 60 0000 C CNN + 10 20500 12150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 685BC809 +P 22850 8050 +F 0 "U1" H 22900 8150 30 0000 C CNN +F 1 "PORT" H 22850 8050 30 0000 C CNN +F 2 "" H 22850 8050 60 0000 C CNN +F 3 "" H 22850 8050 60 0000 C CNN + 14 22850 8050 + -1 0 0 -1 +$EndComp +Wire Wire Line + 20700 8200 20850 8200 +Wire Wire Line + 20700 8000 20850 8000 +Wire Wire Line + 20700 8550 20850 8550 +Wire Wire Line + 20700 9450 20850 9450 +Wire Wire Line + 20650 9250 20850 9250 +Wire Wire Line + 20700 9800 20850 9800 +Wire Wire Line + 20750 10600 20850 10600 +Wire Wire Line + 20700 10400 20850 10400 +Wire Wire Line + 20700 10950 20850 10950 +Wire Wire Line + 20750 11800 20900 11800 +Wire Wire Line + 20750 11600 20900 11600 +Wire Wire Line + 20750 12150 20900 12150 +Connection ~ 22750 8500 +Connection ~ 22500 8050 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_quad.sub b/library/SubcircuitLibrary/MC14016B/MC14016B_quad.sub new file mode 100644 index 000000000..23cf58569 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_quad.sub @@ -0,0 +1,11 @@ +* Subcircuit MC14016B_quad +.subckt MC14016B_quad net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ +* c:\fossee\esim\library\subcircuitlibrary\mc14016b_quad\mc14016b_quad.cir +.include MC14016B.sub +x1 net-_u1-pad1_ net-_u1-pad13_ net-_u1-pad2_ net-_u1-pad14_ net-_u1-pad7_ MC14016B +x2 net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad3_ net-_u1-pad14_ net-_u1-pad7_ MC14016B +x3 net-_u1-pad8_ net-_u1-pad6_ net-_u1-pad9_ net-_u1-pad14_ net-_u1-pad7_ MC14016B +x4 net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad10_ net-_u1-pad14_ net-_u1-pad7_ MC14016B +* Control Statements + +.ends MC14016B_quad \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_quad_Previous_Values.xml b/library/SubcircuitLibrary/MC14016B/MC14016B_quad_Previous_Values.xml new file mode 100644 index 000000000..b1c23cb67 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_quad_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_inverterdac_bridgedac_bridged_inverterd_inverterdac_bridgedac_bridged_inverterd_inverterdac_bridgedac_bridged_inverterd_inverterdac_bridgedac_bridgeC:\FOSSEE\eSim\library\SubcircuitLibrary\MC14016BC:\FOSSEE\eSim\library\SubcircuitLibrary\MC14016BC:\FOSSEE\eSim\library\SubcircuitLibrary\MC14016BC:\FOSSEE\eSim\library\SubcircuitLibrary\MC14016BtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_test-cache.lib b/library/SubcircuitLibrary/MC14016B/MC14016B_test-cache.lib new file mode 100644 index 000000000..2cafb8e4a --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_test-cache.lib @@ -0,0 +1,131 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# DC +# +DEF DC v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "DC" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 w +X - 2 0 -450 300 U 50 50 1 1 w +ENDDRAW +ENDDEF +# +# MC14016B +# +DEF MC14016B X 0 40 Y Y 1 F N +F0 "X" 0 -1100 60 H V C CNN +F1 "MC14016B" 50 1250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -400 950 500 -550 0 1 0 N +X IN_1 1 -600 800 200 R 50 50 1 1 I +X OUT_1 2 -600 600 200 R 50 50 1 1 O +X OUT_2 3 -600 400 200 R 50 50 1 1 O +X IN_2 4 -600 200 200 R 50 50 1 1 I +X CONT2 5 -600 0 200 R 50 50 1 1 I +X CONT3 6 -600 -200 200 R 50 50 1 1 I +X VSS 7 -600 -400 200 R 50 50 1 1 I +X IN_3 8 700 -400 200 L 50 50 1 1 I +X OUT_3 9 700 -200 200 L 50 50 1 1 O +X OUT_4 10 700 0 200 L 50 50 1 1 O +X IN_4 11 700 200 200 L 50 50 1 1 I +X CONT4 12 700 400 200 L 50 50 1 1 I +X CONT1 13 700 600 200 L 50 50 1 1 I +X VDD 14 700 800 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# adc_bridge_2 +# +DEF adc_bridge_2 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "adc_bridge_2" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -100 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X IN2 2 -600 -50 200 R 50 50 1 1 I +X OUT1 3 550 50 200 L 50 50 1 1 O +X OUT2 4 550 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# eSim_GND +# +DEF eSim_GND #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -250 50 H I C CNN +F1 "eSim_GND" 0 -150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N +X GND 1 0 0 0 D 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# plot_v1 +# +DEF plot_v1 U 0 40 Y Y 1 F N +F0 "U" 0 500 60 H V C CNN +F1 "plot_v1" 200 350 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 0 500 100 0 1 0 N +X ~ ~ 0 200 200 U 50 50 1 1 I +ENDDRAW +ENDDEF +# +# pulse +# +DEF pulse v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "pulse" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -25 -450 501 928 871 0 1 0 N -50 50 0 50 +A 25 400 451 -931 -868 0 1 0 N 0 -50 50 -50 +A 75 600 551 -926 -873 0 1 0 N 50 50 100 50 +A 350 0 403 -1728 1728 0 1 0 N -50 -50 -50 50 +A 450 0 453 1736 -1736 0 1 0 N 0 50 0 -50 +A 600 0 552 -1748 1748 0 1 0 N 50 -50 50 50 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 P +X - 2 0 -450 300 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# sine +# +DEF sine v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "sine" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -50 0 50 1 1799 0 1 0 N 0 0 -100 0 +A 50 0 50 -1799 -1 0 1 0 N 0 0 100 0 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 0 1 1 I +X - 2 0 -450 300 U 50 0 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_test.cir b/library/SubcircuitLibrary/MC14016B/MC14016B_test.cir new file mode 100644 index 000000000..74c2f828d --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_test.cir @@ -0,0 +1,26 @@ +* C:\Users\pavithra\eSim-Workspace\MC14016B_test\MC14016B_test.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/24/25 11:45:58 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +v3 in GND sine +v4 Net-_X1-Pad4_ GND sine +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ adc_bridge_2 +v1 Net-_U1-Pad1_ GND pulse +v2 Net-_U1-Pad2_ GND pulse +U3 out plot_v1 +v5 Net-_X1-Pad14_ GND DC +U6 cont Net-_U6-Pad2_ Net-_U6-Pad3_ Net-_U6-Pad4_ adc_bridge_2 +v9 cont GND pulse +v8 Net-_U6-Pad2_ GND pulse +U2 Net-_U2-Pad~_ plot_v1 +U4 Net-_U4-Pad~_ plot_v1 +U5 Net-_U5-Pad~_ plot_v1 +v6 Net-_X1-Pad8_ GND sine +v7 Net-_X1-Pad11_ GND sine +X1 in out Net-_U2-Pad~_ Net-_X1-Pad4_ Net-_U1-Pad3_ Net-_U1-Pad4_ GND Net-_X1-Pad8_ Net-_U5-Pad~_ Net-_U4-Pad~_ Net-_X1-Pad11_ Net-_U6-Pad4_ Net-_U6-Pad3_ Net-_X1-Pad14_ MC14016B + +.end diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_test.cir.out b/library/SubcircuitLibrary/MC14016B/MC14016B_test.cir.out new file mode 100644 index 000000000..5a9ba062c --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_test.cir.out @@ -0,0 +1,35 @@ +* c:\users\pavithra\esim-workspace\mc14016b_test\mc14016b_test.cir + +.include MC14016B_quad.sub +v3 in gnd sine(0 5 1k 0 0) +v4 net-_x1-pad4_ gnd sine(0 5 1k 0 0) +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ adc_bridge_2 +v1 net-_u1-pad1_ gnd pulse(0 5 0 0.1n 0.1n 1m 2m) +v2 net-_u1-pad2_ gnd pulse(0 5 0 0.1n 0.1n 1m 2m) +* u3 out plot_v1 +v5 net-_x1-pad14_ gnd dc 5 +* u6 cont net-_u6-pad2_ net-_u6-pad3_ net-_u6-pad4_ adc_bridge_2 +v9 cont gnd pulse(0 5 0 0.1n 0.1n 1m 2m) +v8 net-_u6-pad2_ gnd pulse(0 5 0 0.1n 0.1n 1m 2m) +* u2 net-_u2-pad_ plot_v1 +* u4 net-_u4-pad_ plot_v1 +* u5 net-_u5-pad_ plot_v1 +v6 net-_x1-pad8_ gnd sine(0 5 1k 0 0) +v7 net-_x1-pad11_ gnd sine(0 5 1k 0 0) +x1 in out net-_u2-pad_ net-_x1-pad4_ net-_u1-pad3_ net-_u1-pad4_ gnd net-_x1-pad8_ net-_u5-pad~_ net-_u4-pad_ net-_x1-pad11_ net-_u6-pad4_ net-_u6-pad3_ net-_x1-pad14_ MC14016B_quad +a1 [net-_u1-pad1_ net-_u1-pad2_ ] [net-_u1-pad3_ net-_u1-pad4_ ] u1 +a2 [cont net-_u6-pad2_ ] [net-_u6-pad3_ net-_u6-pad4_ ] u6 +* Schematic Name: adc_bridge_2, NgSpice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_2, NgSpice Name: adc_bridge +.model u6 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 1e-06 10e-03 0e-03 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(out)+6v(in)+12v(cont) +.endc +.end diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_test.pro b/library/SubcircuitLibrary/MC14016B/MC14016B_test.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_test.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_test.proj b/library/SubcircuitLibrary/MC14016B/MC14016B_test.proj new file mode 100644 index 000000000..2ef836be4 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_test.proj @@ -0,0 +1 @@ +schematicFile MC14016B_test.sch diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_test.sch b/library/SubcircuitLibrary/MC14016B/MC14016B_test.sch new file mode 100644 index 000000000..f812946e9 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_test.sch @@ -0,0 +1,431 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sine v3 +U 1 1 685A3BC7 +P 4350 3250 +F 0 "v3" H 4150 3350 60 0000 C CNN +F 1 "sine" H 4150 3200 60 0000 C CNN +F 2 "R1" H 4050 3250 60 0000 C CNN +F 3 "" H 4350 3250 60 0000 C CNN + 1 4350 3250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4350 2800 4800 2800 +$Comp +L sine v4 +U 1 1 685A3C08 +P 4550 3900 +F 0 "v4" H 4350 4000 60 0000 C CNN +F 1 "sine" H 4350 3850 60 0000 C CNN +F 2 "R1" H 4250 3900 60 0000 C CNN +F 3 "" H 4550 3900 60 0000 C CNN + 1 4550 3900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4550 3450 4550 3400 +Wire Wire Line + 4550 3400 4800 3400 +$Comp +L eSim_GND #PWR01 +U 1 1 685A3DD1 +P 4200 3750 +F 0 "#PWR01" H 4200 3500 50 0001 C CNN +F 1 "eSim_GND" H 4200 3600 50 0000 C CNN +F 2 "" H 4200 3750 50 0001 C CNN +F 3 "" H 4200 3750 50 0001 C CNN + 1 4200 3750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4200 3750 4200 3700 +Wire Wire Line + 4200 3700 4350 3700 +$Comp +L eSim_GND #PWR02 +U 1 1 685A3DF4 +P 4450 4350 +F 0 "#PWR02" H 4450 4100 50 0001 C CNN +F 1 "eSim_GND" H 4450 4200 50 0000 C CNN +F 2 "" H 4450 4350 50 0001 C CNN +F 3 "" H 4450 4350 50 0001 C CNN + 1 4450 4350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4450 4350 4550 4350 +$Comp +L eSim_GND #PWR03 +U 1 1 685A3F5C +P 4800 4100 +F 0 "#PWR03" H 4800 3850 50 0001 C CNN +F 1 "eSim_GND" H 4800 3950 50 0000 C CNN +F 2 "" H 4800 4100 50 0001 C CNN +F 3 "" H 4800 4100 50 0001 C CNN + 1 4800 4100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4800 4000 4800 4100 +$Comp +L adc_bridge_2 U1 +U 1 1 685A3F7A +P 3550 3600 +F 0 "U1" H 3550 3600 60 0000 C CNN +F 1 "adc_bridge_2" H 3550 3750 60 0000 C CNN +F 2 "" H 3550 3600 60 0000 C CNN +F 3 "" H 3550 3600 60 0000 C CNN + 1 3550 3600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4100 3550 4800 3550 +Wire Wire Line + 4800 3550 4800 3600 +Wire Wire Line + 4100 3650 4800 3650 +Wire Wire Line + 4800 3650 4800 3800 +$Comp +L pulse v1 +U 1 1 685A40D1 +P 2650 4000 +F 0 "v1" H 2450 4100 60 0000 C CNN +F 1 "pulse" H 2450 3950 60 0000 C CNN +F 2 "R1" H 2350 4000 60 0000 C CNN +F 3 "" H 2650 4000 60 0000 C CNN + 1 2650 4000 + 1 0 0 -1 +$EndComp +$Comp +L pulse v2 +U 1 1 685A4109 +P 2950 4250 +F 0 "v2" H 2750 4350 60 0000 C CNN +F 1 "pulse" H 2750 4200 60 0000 C CNN +F 2 "R1" H 2650 4250 60 0000 C CNN +F 3 "" H 2950 4250 60 0000 C CNN + 1 2950 4250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2950 3650 2950 3800 +Wire Wire Line + 2650 3550 2950 3550 +$Comp +L eSim_GND #PWR04 +U 1 1 685A4160 +P 2950 4800 +F 0 "#PWR04" H 2950 4550 50 0001 C CNN +F 1 "eSim_GND" H 2950 4650 50 0000 C CNN +F 2 "" H 2950 4800 50 0001 C CNN +F 3 "" H 2950 4800 50 0001 C CNN + 1 2950 4800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR05 +U 1 1 685A417D +P 2650 4550 +F 0 "#PWR05" H 2650 4300 50 0001 C CNN +F 1 "eSim_GND" H 2650 4400 50 0000 C CNN +F 2 "" H 2650 4550 50 0001 C CNN +F 3 "" H 2650 4550 50 0001 C CNN + 1 2650 4550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2650 4450 2650 4550 +Wire Wire Line + 2950 4700 2950 4800 +$Comp +L plot_v1 U3 +U 1 1 685A44FD +P 4700 3150 +F 0 "U3" H 4700 3650 60 0000 C CNN +F 1 "plot_v1" H 4900 3500 60 0000 C CNN +F 2 "" H 4700 3150 60 0000 C CNN +F 3 "" H 4700 3150 60 0000 C CNN + 1 4700 3150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4700 2950 4700 3000 +Wire Wire Line + 4700 3000 4800 3000 +Wire Wire Line + 4600 3100 4600 3200 +Wire Wire Line + 4600 3200 4800 3200 +$Comp +L DC v5 +U 1 1 685A47BA +P 6250 2350 +F 0 "v5" H 6050 2450 60 0000 C CNN +F 1 "DC" H 6050 2300 60 0000 C CNN +F 2 "R1" H 5950 2350 60 0000 C CNN +F 3 "" H 6250 2350 60 0000 C CNN + 1 6250 2350 + 1 0 0 1 +$EndComp +Wire Wire Line + 6250 2800 6100 2800 +$Comp +L eSim_GND #PWR06 +U 1 1 685A4833 +P 6400 1900 +F 0 "#PWR06" H 6400 1650 50 0001 C CNN +F 1 "eSim_GND" H 6400 1750 50 0000 C CNN +F 2 "" H 6400 1900 50 0001 C CNN +F 3 "" H 6400 1900 50 0001 C CNN + 1 6400 1900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6250 1900 6400 1900 +$Comp +L adc_bridge_2 U6 +U 1 1 685A487F +P 6850 3100 +F 0 "U6" H 6850 3100 60 0000 C CNN +F 1 "adc_bridge_2" H 6850 3250 60 0000 C CNN +F 2 "" H 6850 3100 60 0000 C CNN +F 3 "" H 6850 3100 60 0000 C CNN + 1 6850 3100 + -1 0 0 -1 +$EndComp +Wire Wire Line + 6300 3050 6100 3050 +Wire Wire Line + 6100 3050 6100 3000 +Wire Wire Line + 6300 3150 6100 3150 +Wire Wire Line + 6100 3150 6100 3200 +$Comp +L pulse v9 +U 1 1 685A4A5C +P 7850 3500 +F 0 "v9" H 7650 3600 60 0000 C CNN +F 1 "pulse" H 7650 3450 60 0000 C CNN +F 2 "R1" H 7550 3500 60 0000 C CNN +F 3 "" H 7850 3500 60 0000 C CNN + 1 7850 3500 + 1 0 0 -1 +$EndComp +$Comp +L pulse v8 +U 1 1 685A4CEA +P 7600 3700 +F 0 "v8" H 7400 3800 60 0000 C CNN +F 1 "pulse" H 7400 3650 60 0000 C CNN +F 2 "R1" H 7300 3700 60 0000 C CNN +F 3 "" H 7600 3700 60 0000 C CNN + 1 7600 3700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7450 3150 7600 3150 +Wire Wire Line + 7600 3150 7600 3250 +Wire Wire Line + 7450 3050 7850 3050 +$Comp +L eSim_GND #PWR07 +U 1 1 685A508F +P 7600 4300 +F 0 "#PWR07" H 7600 4050 50 0001 C CNN +F 1 "eSim_GND" H 7600 4150 50 0000 C CNN +F 2 "" H 7600 4300 50 0001 C CNN +F 3 "" H 7600 4300 50 0001 C CNN + 1 7600 4300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR08 +U 1 1 685A50BE +P 7850 4100 +F 0 "#PWR08" H 7850 3850 50 0001 C CNN +F 1 "eSim_GND" H 7850 3950 50 0000 C CNN +F 2 "" H 7850 4100 50 0001 C CNN +F 3 "" H 7850 4100 50 0001 C CNN + 1 7850 4100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7600 4150 7600 4300 +Wire Wire Line + 7850 3950 7850 4100 +$Comp +L plot_v1 U2 +U 1 1 685A455F +P 4600 3300 +F 0 "U2" H 4600 3800 60 0000 C CNN +F 1 "plot_v1" H 4800 3650 60 0000 C CNN +F 2 "" H 4600 3300 60 0000 C CNN +F 3 "" H 4600 3300 60 0000 C CNN + 1 4600 3300 + 1 0 0 -1 +$EndComp +$Comp +L plot_v1 U4 +U 1 1 685A5166 +P 6250 3800 +F 0 "U4" H 6250 4300 60 0000 C CNN +F 1 "plot_v1" H 6450 4150 60 0000 C CNN +F 2 "" H 6250 3800 60 0000 C CNN +F 3 "" H 6250 3800 60 0000 C CNN + 1 6250 3800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6100 3600 6250 3600 +$Comp +L plot_v1 U5 +U 1 1 685A51E6 +P 6350 4000 +F 0 "U5" H 6350 4500 60 0000 C CNN +F 1 "plot_v1" H 6550 4350 60 0000 C CNN +F 2 "" H 6350 4000 60 0000 C CNN +F 3 "" H 6350 4000 60 0000 C CNN + 1 6350 4000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6100 3800 6350 3800 +$Comp +L sine v6 +U 1 1 685A525D +P 6250 4450 +F 0 "v6" H 6050 4550 60 0000 C CNN +F 1 "sine" H 6050 4400 60 0000 C CNN +F 2 "R1" H 5950 4450 60 0000 C CNN +F 3 "" H 6250 4450 60 0000 C CNN + 1 6250 4450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6100 4000 6250 4000 +$Comp +L eSim_GND #PWR09 +U 1 1 685A52DF +P 6250 5000 +F 0 "#PWR09" H 6250 4750 50 0001 C CNN +F 1 "eSim_GND" H 6250 4850 50 0000 C CNN +F 2 "" H 6250 5000 50 0001 C CNN +F 3 "" H 6250 5000 50 0001 C CNN + 1 6250 5000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6250 4900 6250 5000 +$Comp +L sine v7 +U 1 1 685A5349 +P 6850 3900 +F 0 "v7" H 6650 4000 60 0000 C CNN +F 1 "sine" H 6650 3850 60 0000 C CNN +F 2 "R1" H 6550 3900 60 0000 C CNN +F 3 "" H 6850 3900 60 0000 C CNN + 1 6850 3900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6100 3400 6850 3400 +Wire Wire Line + 6850 3400 6850 3450 +$Comp +L eSim_GND #PWR010 +U 1 1 685A53D0 +P 6850 4450 +F 0 "#PWR010" H 6850 4200 50 0001 C CNN +F 1 "eSim_GND" H 6850 4300 50 0000 C CNN +F 2 "" H 6850 4450 50 0001 C CNN +F 3 "" H 6850 4450 50 0001 C CNN + 1 6850 4450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6850 4350 6850 4450 +Text GLabel 4450 2700 0 60 Input ~ 0 +in +Wire Wire Line + 4450 2700 4450 2800 +Connection ~ 4450 2800 +Text GLabel 7700 2900 0 60 Input ~ 0 +cont +Wire Wire Line + 7700 2900 7700 3050 +Connection ~ 7700 3050 +Text GLabel 4750 3050 0 60 Input ~ 0 +out +Wire Wire Line + 4750 3050 4750 3000 +Connection ~ 4750 3000 +$Comp +L MC14016B X1 +U 1 1 685A5D9F +P 5400 3600 +F 0 "X1" H 5400 2500 60 0000 C CNN +F 1 "MC14016B" H 5450 4850 60 0000 C CNN +F 2 "" H 5400 3600 60 0001 C CNN +F 3 "" H 5400 3600 60 0001 C CNN + 1 5400 3600 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC14016B/MC14016B_test_Previous_Values.xml b/library/SubcircuitLibrary/MC14016B/MC14016B_test_Previous_Values.xml new file mode 100644 index 000000000..f0bd5a163 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/MC14016B_test_Previous_Values.xml @@ -0,0 +1 @@ +sine051k0sine051k0pulse0500.1n0.1n1m2mpulse0500.1n0.1n1m2mdc5pulse0500.1n0.1n1m 2mpulse0500.1n0.1n1m2msine051k0sine05 1k0adc_bridgeadc_bridgeC:\FOSSEE\eSim\library\SubcircuitLibrary\MC14016B_quadtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0110msusms \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14016B/NMOS-5um.lib b/library/SubcircuitLibrary/MC14016B/NMOS-5um.lib new file mode 100644 index 000000000..a237e1fe3 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/NMOS-5um.lib @@ -0,0 +1,5 @@ +* 5um technology + +.model mos_n NMOS( Cgso=0.4n Tox=85n Vto=1 phi=0.7 ++ Level=1 ++ Mj=.5 UO=750 Cgdo=0.4n Gamma=1.4 LAMBDA=0.01 LD=0.7u JS=1u CJ=0.4m CJSW=0.8n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/MC14016B/PMOS-5um.lib b/library/SubcircuitLibrary/MC14016B/PMOS-5um.lib new file mode 100644 index 000000000..9c3ed9760 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/PMOS-5um.lib @@ -0,0 +1,5 @@ +*5um technology + +.model mos_p PMOS( Cgso=0.4n Tox=85n Vto=-1 phi=0.65 ++ Level=1 ++ Mj=.5 UO=250 Cgdo=0.4n Gamma=0.65 LAMBDA=0.03 LD=0.6u JS=1u CJ=0.18m CJSW=0.6n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/MC14016B/analysis b/library/SubcircuitLibrary/MC14016B/analysis new file mode 100644 index 000000000..b21a9e13b --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B/analysis @@ -0,0 +1 @@ +.tran 1e-06 10e-03 0e-03 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14016B_One/D.lib b/library/SubcircuitLibrary/MC14016B_One/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B-cache.lib b/library/SubcircuitLibrary/MC14016B_One/MC14016B-cache.lib new file mode 100644 index 000000000..3b7d214a1 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B-cache.lib @@ -0,0 +1,128 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# dac_bridge_1 +# +DEF dac_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "dac_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# eSim_MOS_N +# +DEF eSim_MOS_N M 0 0 Y N 1 F N +F0 "M" 0 -150 50 H V R CNN +F1 "eSim_MOS_N" 100 -50 50 H V R CNN +F2 "" 300 -300 29 H V C CNN +F3 "" 100 -200 60 H V C CNN +ALIAS mosfet_n +DRAW +C 150 -200 111 0 1 10 N +P 2 0 1 10 130 -290 130 -250 N +P 2 0 1 0 130 -270 200 -270 N +P 2 0 1 10 130 -220 130 -180 N +P 2 0 1 0 130 -200 200 -200 N +P 2 0 1 10 130 -150 130 -110 N +P 2 0 1 0 130 -130 200 -130 N +P 2 0 1 0 200 -300 200 -270 N +P 2 0 1 0 200 -130 200 -100 N +P 3 0 1 10 110 -275 110 -125 110 -125 N +P 3 0 1 0 200 -200 300 -200 300 -250 N +P 4 0 1 0 140 -200 180 -215 180 -185 140 -200 F +X D 1 200 0 100 D 50 50 1 1 P +X G 2 -100 -200 210 R 50 50 1 1 P +X S 3 200 -400 100 U 50 50 1 1 P +X B 4 300 -350 98 U 47 47 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_P +# +DEF eSim_MOS_P M 0 0 Y N 1 F N +F0 "M" -50 50 50 H V R CNN +F1 "eSim_MOS_P" 50 150 50 H V R CNN +F2 "" 250 100 29 H V C CNN +F3 "" 50 0 60 H V C CNN +ALIAS mosfet_p +DRAW +C 100 0 111 0 1 10 N +P 2 0 1 0 80 -70 150 -70 N +P 2 0 1 10 80 -50 80 -90 N +P 2 0 1 0 80 0 150 0 N +P 2 0 1 10 80 20 80 -20 N +P 2 0 1 0 80 70 150 70 N +P 2 0 1 10 80 90 80 50 N +P 2 0 1 0 150 -70 150 -100 N +P 2 0 1 0 150 100 150 70 N +P 3 0 1 10 60 75 60 -75 60 -75 N +P 3 0 1 0 150 0 250 0 250 -50 N +P 4 0 1 0 140 0 100 -15 100 15 140 0 F +X D 1 150 200 100 D 50 50 1 1 P +X G 2 -150 0 210 R 50 50 1 1 P +X S 3 150 -200 100 U 50 50 1 1 P +X B 4 250 -150 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B.cir b/library/SubcircuitLibrary/MC14016B_One/MC14016B.cir new file mode 100644 index 000000000..8c317047f --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B.cir @@ -0,0 +1,17 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\MC14016B\MC14016B.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/23/25 15:06:49 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ d_inverter +U2 Net-_U1-Pad2_ Net-_U2-Pad2_ d_inverter +M1 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad4_ eSim_MOS_P +M2 Net-_M1-Pad1_ Net-_M2-Pad2_ Net-_M1-Pad3_ Net-_M2-Pad4_ eSim_MOS_N +U3 Net-_U2-Pad2_ Net-_M1-Pad2_ dac_bridge_1 +U5 Net-_M1-Pad3_ Net-_U1-Pad1_ Net-_M1-Pad1_ Net-_M1-Pad4_ Net-_M2-Pad4_ PORT +U4 Net-_U1-Pad2_ Net-_M2-Pad2_ dac_bridge_1 + +.end diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B.cir.out b/library/SubcircuitLibrary/MC14016B_One/MC14016B.cir.out new file mode 100644 index 000000000..42ed3c57a --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B.cir.out @@ -0,0 +1,32 @@ +* c:\fossee\esim\library\subcircuitlibrary\mc14016b\mc14016b.cir + +.include PMOS-5um.lib +.include NMOS-5um.lib +* u1 net-_u1-pad1_ net-_u1-pad2_ d_inverter +* u2 net-_u1-pad2_ net-_u2-pad2_ d_inverter +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad4_ mos_p W=100u L=100u M=1 +m2 net-_m1-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m2-pad4_ mos_n W=100u L=100u M=1 +* u3 net-_u2-pad2_ net-_m1-pad2_ dac_bridge_1 +* u5 net-_m1-pad3_ net-_u1-pad1_ net-_m1-pad1_ net-_m1-pad4_ net-_m2-pad4_ port +* u4 net-_u1-pad2_ net-_m2-pad2_ dac_bridge_1 +a1 net-_u1-pad1_ net-_u1-pad2_ u1 +a2 net-_u1-pad2_ net-_u2-pad2_ u2 +a3 [net-_u2-pad2_ ] [net-_m1-pad2_ ] u3 +a4 [net-_u1-pad2_ ] [net-_m2-pad2_ ] u4 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u1 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u3 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u4 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B.pro b/library/SubcircuitLibrary/MC14016B_One/MC14016B.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B.sch b/library/SubcircuitLibrary/MC14016B_One/MC14016B.sch new file mode 100644 index 000000000..b02290ac5 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B.sch @@ -0,0 +1,213 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:MC14016B-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_inverter U1 +U 1 1 68590916 +P 2650 3150 +F 0 "U1" H 2650 3050 60 0000 C CNN +F 1 "d_inverter" H 2650 3300 60 0000 C CNN +F 2 "" H 2700 3100 60 0000 C CNN +F 3 "" H 2700 3100 60 0000 C CNN + 1 2650 3150 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U2 +U 1 1 68590952 +P 3650 3150 +F 0 "U2" H 3650 3050 60 0000 C CNN +F 1 "d_inverter" H 3650 3300 60 0000 C CNN +F 2 "" H 3700 3100 60 0000 C CNN +F 3 "" H 3700 3100 60 0000 C CNN + 1 3650 3150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2950 3150 3350 3150 +$Comp +L eSim_MOS_P M1 +U 1 1 685909B0 +P 5800 3150 +F 0 "M1" H 5750 3200 50 0000 R CNN +F 1 "eSim_MOS_P" H 5850 3300 50 0000 R CNN +F 2 "" H 6050 3250 29 0000 C CNN +F 3 "" H 5850 3150 60 0000 C CNN + 1 5800 3150 + 0 1 1 0 +$EndComp +$Comp +L eSim_MOS_N M2 +U 1 1 68590A0A +P 6000 3950 +F 0 "M2" H 6000 3800 50 0000 R CNN +F 1 "eSim_MOS_N" H 6100 3900 50 0000 R CNN +F 2 "" H 6300 3650 29 0000 C CNN +F 3 "" H 6100 3750 60 0000 C CNN + 1 6000 3950 + 0 1 -1 0 +$EndComp +Wire Wire Line + 5600 3300 5600 3750 +Wire Wire Line + 6000 3300 6000 3750 +$Comp +L dac_bridge_1 U3 +U 1 1 68590B03 +P 4750 3200 +F 0 "U3" H 4750 3200 60 0000 C CNN +F 1 "dac_bridge_1" H 4750 3350 60 0000 C CNN +F 2 "" H 4750 3200 60 0000 C CNN +F 3 "" H 4750 3200 60 0000 C CNN + 1 4750 3200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3950 3150 4150 3150 +$Comp +L PORT U5 +U 2 1 68590BE8 +P 1900 3150 +F 0 "U5" H 1950 3250 30 0000 C CNN +F 1 "PORT" H 1900 3150 30 0000 C CNN +F 2 "" H 1900 3150 60 0000 C CNN +F 3 "" H 1900 3150 60 0000 C CNN + 2 1900 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U5 +U 1 1 68590C23 +P 4750 3550 +F 0 "U5" H 4800 3650 30 0000 C CNN +F 1 "PORT" H 4750 3550 30 0000 C CNN +F 2 "" H 4750 3550 60 0000 C CNN +F 3 "" H 4750 3550 60 0000 C CNN + 1 4750 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U5 +U 4 1 68590C48 +P 5300 3400 +F 0 "U5" H 5350 3500 30 0000 C CNN +F 1 "PORT" H 5300 3400 30 0000 C CNN +F 2 "" H 5300 3400 60 0000 C CNN +F 3 "" H 5300 3400 60 0000 C CNN + 4 5300 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U5 +U 3 1 68590C87 +P 6450 3500 +F 0 "U5" H 6500 3600 30 0000 C CNN +F 1 "PORT" H 6450 3500 30 0000 C CNN +F 2 "" H 6450 3500 60 0000 C CNN +F 3 "" H 6450 3500 60 0000 C CNN + 3 6450 3500 + -1 0 0 -1 +$EndComp +$Comp +L PORT U5 +U 5 1 68590CB0 +P 5300 3650 +F 0 "U5" H 5350 3750 30 0000 C CNN +F 1 "PORT" H 5300 3650 30 0000 C CNN +F 2 "" H 5300 3650 60 0000 C CNN +F 3 "" H 5300 3650 60 0000 C CNN + 5 5300 3650 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2150 3150 2350 3150 +$Comp +L dac_bridge_1 U4 +U 1 1 68592608 +P 4800 4300 +F 0 "U4" H 4800 4300 60 0000 C CNN +F 1 "dac_bridge_1" H 4800 4450 60 0000 C CNN +F 2 "" H 4800 4300 60 0000 C CNN +F 3 "" H 4800 4300 60 0000 C CNN + 1 4800 4300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5300 3150 5650 3150 +Wire Wire Line + 5650 3150 5650 3000 +Wire Wire Line + 5650 3000 5800 3000 +Wire Wire Line + 3200 3150 3200 4250 +Wire Wire Line + 3200 4250 4200 4250 +Connection ~ 3200 3150 +Wire Wire Line + 5350 4250 5800 4250 +Wire Wire Line + 5800 4250 5800 4050 +Wire Wire Line + 5550 3650 5650 3650 +Wire Wire Line + 5550 3400 5650 3400 +Wire Wire Line + 5000 3550 5600 3550 +Connection ~ 5600 3550 +Wire Wire Line + 6200 3500 6000 3500 +Connection ~ 6000 3500 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B.sub b/library/SubcircuitLibrary/MC14016B_One/MC14016B.sub new file mode 100644 index 000000000..abb10c93f --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B.sub @@ -0,0 +1,26 @@ +* Subcircuit MC14016B +.subckt MC14016B net-_m1-pad3_ net-_u1-pad1_ net-_m1-pad1_ net-_m1-pad4_ net-_m2-pad4_ +* c:\fossee\esim\library\subcircuitlibrary\mc14016b\mc14016b.cir +.include PMOS-5um.lib +.include NMOS-5um.lib +* u1 net-_u1-pad1_ net-_u1-pad2_ d_inverter +* u2 net-_u1-pad2_ net-_u2-pad2_ d_inverter +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad4_ mos_p W=100u L=100u M=1 +m2 net-_m1-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m2-pad4_ mos_n W=100u L=100u M=1 +* u3 net-_u2-pad2_ net-_m1-pad2_ dac_bridge_1 +* u4 net-_u1-pad2_ net-_m2-pad2_ dac_bridge_1 +a1 net-_u1-pad1_ net-_u1-pad2_ u1 +a2 net-_u1-pad2_ net-_u2-pad2_ u2 +a3 [net-_u2-pad2_ ] [net-_m1-pad2_ ] u3 +a4 [net-_u1-pad2_ ] [net-_m2-pad2_ ] u4 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u1 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u3 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u4 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Control Statements + +.ends MC14016B \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B_Previous_Values.xml b/library/SubcircuitLibrary/MC14016B_One/MC14016B_Previous_Values.xml new file mode 100644 index 000000000..e8c909fcb --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_inverterdac_bridgeadc_bridgedac_bridgeC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B_one.proj b/library/SubcircuitLibrary/MC14016B_One/MC14016B_one.proj new file mode 100644 index 000000000..fe3e0087c --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B_one.proj @@ -0,0 +1 @@ +schematicFile MC14016B.sch diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest-cache.lib b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest-cache.lib new file mode 100644 index 000000000..924b1b3b5 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest-cache.lib @@ -0,0 +1,144 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# DC +# +DEF DC v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "DC" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 w +X - 2 0 -450 300 U 50 50 1 1 w +ENDDRAW +ENDDEF +# +# MC14016B_1 +# +DEF MC14016B_1 X 0 40 Y Y 1 F N +F0 "X" 0 -650 60 H V C CNN +F1 "MC14016B_1" 50 650 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 400 400 -400 0 1 0 N +X IN 1 -550 300 200 R 50 50 1 1 I +X CONTROL 2 -550 100 200 R 50 50 1 1 I +X OUT 3 -550 -250 200 R 50 50 1 1 O +X VDD 4 600 250 200 L 50 50 1 1 I +X GND 5 600 -200 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# adc_bridge_1 +# +DEF adc_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "adc_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_GND +# +DEF eSim_GND #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -250 50 H I C CNN +F1 "eSim_GND" 0 -150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N +X GND 1 0 0 0 D 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# plot_v1 +# +DEF plot_v1 U 0 40 Y Y 1 F N +F0 "U" 0 500 60 H V C CNN +F1 "plot_v1" 200 350 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 0 500 100 0 1 0 N +X ~ ~ 0 200 200 U 50 50 1 1 I +ENDDRAW +ENDDEF +# +# pulse +# +DEF pulse v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "pulse" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -25 -450 501 928 871 0 1 0 N -50 50 0 50 +A 25 400 451 -931 -868 0 1 0 N 0 -50 50 -50 +A 75 600 551 -926 -873 0 1 0 N 50 50 100 50 +A 350 0 403 -1728 1728 0 1 0 N -50 -50 -50 50 +A 450 0 453 1736 -1736 0 1 0 N 0 50 0 -50 +A 600 0 552 -1748 1748 0 1 0 N 50 -50 50 50 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 P +X - 2 0 -450 300 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# sine +# +DEF sine v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "sine" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -50 0 50 1 1799 0 1 0 N 0 0 -100 0 +A 50 0 50 -1799 -1 0 1 0 N 0 0 100 0 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 0 1 1 I +X - 2 0 -450 300 U 50 0 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.cir b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.cir new file mode 100644 index 000000000..33315cfaa --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.cir @@ -0,0 +1,22 @@ +* C:\Users\pavithra\eSim-Workspace\MC14016B_onetest\MC14016B_onetest.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/23/25 15:37:22 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 cont Net-_U2-Pad2_ adc_bridge_1 +v1 cont GND pulse +U3 cont plot_v1 +X1 in Net-_U2-Pad2_ out Net-_D1-Pad2_ GND MC14016B_1 +D3 in Net-_D1-Pad2_ eSim_Diode +D4 GND in eSim_Diode +v3 Net-_D1-Pad2_ GND DC +v2 in GND sine +U4 in plot_v1 +D1 out Net-_D1-Pad2_ eSim_Diode +D2 GND out eSim_Diode +U1 out plot_v1 + +.end diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.cir.out b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.cir.out new file mode 100644 index 000000000..a6da5e416 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.cir.out @@ -0,0 +1,29 @@ +* c:\users\pavithra\esim-workspace\mc14016b_onetest\mc14016b_onetest.cir + +.include MC14016B.sub +.include D.lib +* u2 cont net-_u2-pad2_ adc_bridge_1 +v1 cont gnd pulse(0 5 0 0.1n 0.1n 1m 2m) +* u3 cont plot_v1 +x1 in net-_u2-pad2_ out net-_d1-pad2_ gnd MC14016B +d3 in net-_d1-pad2_ 1N4148 +d4 gnd in 1N4148 +v3 net-_d1-pad2_ gnd dc 5 +v2 in gnd sine(0 5 1k 0 0) +* u4 in plot_v1 +d1 out net-_d1-pad2_ 1N4148 +d2 gnd out 1N4148 +* u1 out plot_v1 +a1 [cont ] [net-_u2-pad2_ ] u2 +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 1e-06 10e-03 0e-03 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(out) +6v(in)+12v(cont) +.endc +.end diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.pro b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.proj b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.proj new file mode 100644 index 000000000..8bce94bb8 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.proj @@ -0,0 +1 @@ +schematicFile MC14016B_onetest.sch diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.sch b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.sch new file mode 100644 index 000000000..f1b61e569 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest.sch @@ -0,0 +1,308 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:MC14016B_onetest-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L adc_bridge_1 U2 +U 1 1 68590F01 +P 4800 4950 +F 0 "U2" H 4800 4950 60 0000 C CNN +F 1 "adc_bridge_1" H 4800 5100 60 0000 C CNN +F 2 "" H 4800 4950 60 0000 C CNN +F 3 "" H 4800 4950 60 0000 C CNN + 1 4800 4950 + 1 0 0 -1 +$EndComp +$Comp +L pulse v1 +U 1 1 68590F45 +P 3950 5350 +F 0 "v1" H 3750 5450 60 0000 C CNN +F 1 "pulse" H 3750 5300 60 0000 C CNN +F 2 "R1" H 3650 5350 60 0000 C CNN +F 3 "" H 3950 5350 60 0000 C CNN + 1 3950 5350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR01 +U 1 1 68590F9C +P 3950 5900 +F 0 "#PWR01" H 3950 5650 50 0001 C CNN +F 1 "eSim_GND" H 3950 5750 50 0000 C CNN +F 2 "" H 3950 5900 50 0001 C CNN +F 3 "" H 3950 5900 50 0001 C CNN + 1 3950 5900 + 1 0 0 -1 +$EndComp +Text GLabel 3900 4850 0 60 Input ~ 0 +cont +$Comp +L plot_v1 U3 +U 1 1 685912DC +P 4150 5000 +F 0 "U3" H 4150 5500 60 0000 C CNN +F 1 "plot_v1" H 4350 5350 60 0000 C CNN +F 2 "" H 4150 5000 60 0000 C CNN +F 3 "" H 4150 5000 60 0000 C CNN + 1 4150 5000 + 1 0 0 -1 +$EndComp +Text GLabel 5350 3000 0 60 Input ~ 0 +in +Text GLabel 3750 3200 0 60 Input ~ 0 +out +$Comp +L MC14016B_1 X1 +U 1 1 6859297B +P 6000 3400 +F 0 "X1" H 6000 2750 60 0000 C CNN +F 1 "MC14016B_1" H 6050 4050 60 0000 C CNN +F 2 "" H 6000 3400 60 0001 C CNN +F 3 "" H 6000 3400 60 0001 C CNN + 1 6000 3400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Diode D3 +U 1 1 685929A9 +P 5150 2750 +F 0 "D3" H 5150 2850 50 0000 C CNN +F 1 "eSim_Diode" H 5150 2650 50 0000 C CNN +F 2 "" H 5150 2750 60 0000 C CNN +F 3 "" H 5150 2750 60 0000 C CNN + 1 5150 2750 + 0 1 -1 0 +$EndComp +$Comp +L eSim_Diode D4 +U 1 1 68592A10 +P 5150 3350 +F 0 "D4" H 5150 3450 50 0000 C CNN +F 1 "eSim_Diode" H 5150 3250 50 0000 C CNN +F 2 "" H 5150 3350 60 0000 C CNN +F 3 "" H 5150 3350 60 0000 C CNN + 1 5150 3350 + 0 1 -1 0 +$EndComp +$Comp +L eSim_GND #PWR02 +U 1 1 68592B24 +P 6950 3600 +F 0 "#PWR02" H 6950 3350 50 0001 C CNN +F 1 "eSim_GND" H 6950 3450 50 0000 C CNN +F 2 "" H 6950 3600 50 0001 C CNN +F 3 "" H 6950 3600 50 0001 C CNN + 1 6950 3600 + 1 0 0 -1 +$EndComp +$Comp +L DC v3 +U 1 1 68592BA8 +P 7000 2700 +F 0 "v3" H 6800 2800 60 0000 C CNN +F 1 "DC" H 6800 2650 60 0000 C CNN +F 2 "R1" H 6700 2700 60 0000 C CNN +F 3 "" H 7000 2700 60 0000 C CNN + 1 7000 2700 + 1 0 0 1 +$EndComp +$Comp +L eSim_GND #PWR03 +U 1 1 68592C20 +P 7150 2250 +F 0 "#PWR03" H 7150 2000 50 0001 C CNN +F 1 "eSim_GND" H 7150 2100 50 0000 C CNN +F 2 "" H 7150 2250 50 0001 C CNN +F 3 "" H 7150 2250 50 0001 C CNN + 1 7150 2250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3900 4850 4150 4850 +Wire Wire Line + 5150 2900 5150 3200 +Wire Wire Line + 4650 3100 5450 3100 +Connection ~ 5150 3100 +Wire Wire Line + 5150 3500 5150 3950 +Wire Wire Line + 5150 3950 6750 3950 +Wire Wire Line + 6750 3600 6750 4200 +Wire Wire Line + 6600 3600 6950 3600 +Connection ~ 6750 3600 +Wire Wire Line + 6600 3150 7000 3150 +Wire Wire Line + 7000 2250 7150 2250 +Wire Wire Line + 5150 2600 6700 2600 +Wire Wire Line + 6700 1900 6700 3150 +Connection ~ 6700 3150 +$Comp +L sine v2 +U 1 1 68592D40 +P 4650 3550 +F 0 "v2" H 4450 3650 60 0000 C CNN +F 1 "sine" H 4450 3500 60 0000 C CNN +F 2 "R1" H 4350 3550 60 0000 C CNN +F 3 "" H 4650 3550 60 0000 C CNN + 1 4650 3550 + 1 0 0 -1 +$EndComp +$Comp +L plot_v1 U4 +U 1 1 68592DC9 +P 5400 2700 +F 0 "U4" H 5400 3200 60 0000 C CNN +F 1 "plot_v1" H 5600 3050 60 0000 C CNN +F 2 "" H 5400 2700 60 0000 C CNN +F 3 "" H 5400 2700 60 0000 C CNN + 1 5400 2700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5400 2500 5400 3100 +Connection ~ 5400 3100 +Wire Wire Line + 5350 3000 5400 3000 +Connection ~ 5400 3000 +$Comp +L eSim_Diode D1 +U 1 1 68592F9A +P 4150 2800 +F 0 "D1" H 4150 2900 50 0000 C CNN +F 1 "eSim_Diode" H 4150 2700 50 0000 C CNN +F 2 "" H 4150 2800 60 0000 C CNN +F 3 "" H 4150 2800 60 0000 C CNN + 1 4150 2800 + 0 1 -1 0 +$EndComp +$Comp +L eSim_Diode D2 +U 1 1 68592FA0 +P 4150 3400 +F 0 "D2" H 4150 3500 50 0000 C CNN +F 1 "eSim_Diode" H 4150 3300 50 0000 C CNN +F 2 "" H 4150 3400 60 0000 C CNN +F 3 "" H 4150 3400 60 0000 C CNN + 1 4150 3400 + 0 1 -1 0 +$EndComp +Wire Wire Line + 4150 2950 4150 3250 +Wire Wire Line + 4150 3550 4150 4200 +Wire Wire Line + 4150 4200 6750 4200 +Connection ~ 6750 3950 +Wire Wire Line + 4150 2650 4150 1900 +Wire Wire Line + 4150 1900 6700 1900 +Connection ~ 6700 2600 +$Comp +L eSim_GND #PWR04 +U 1 1 68593ACF +P 4650 4100 +F 0 "#PWR04" H 4650 3850 50 0001 C CNN +F 1 "eSim_GND" H 4650 3950 50 0000 C CNN +F 2 "" H 4650 4100 50 0001 C CNN +F 3 "" H 4650 4100 50 0001 C CNN + 1 4650 4100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4650 4000 4650 4100 +Wire Wire Line + 5450 3650 4900 3650 +Wire Wire Line + 4900 3650 4900 3050 +Wire Wire Line + 4900 3050 3700 3050 +Connection ~ 4150 3050 +$Comp +L plot_v1 U1 +U 1 1 68594041 +P 3700 3250 +F 0 "U1" H 3700 3750 60 0000 C CNN +F 1 "plot_v1" H 3900 3600 60 0000 C CNN +F 2 "" H 3700 3250 60 0000 C CNN +F 3 "" H 3700 3250 60 0000 C CNN + 1 3700 3250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3750 3200 3850 3200 +Wire Wire Line + 3850 3200 3850 3050 +Connection ~ 3850 3050 +Wire Wire Line + 5350 4900 5350 3300 +Wire Wire Line + 5350 3300 5450 3300 +Wire Wire Line + 3950 4900 4200 4900 +Wire Wire Line + 3950 5800 3950 5900 +Wire Wire Line + 4150 4800 4150 4900 +Connection ~ 4150 4900 +Connection ~ 4150 4850 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest_Previous_Values.xml b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest_Previous_Values.xml new file mode 100644 index 000000000..6806df558 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/MC14016B_onetest_Previous_Values.xml @@ -0,0 +1 @@ +dc5sine051k0pulse0500.1n0.1n1m2madc_bridgeC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\SubcircuitLibrary\MC14016BtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0110msusms \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14016B_One/NMOS-5um.lib b/library/SubcircuitLibrary/MC14016B_One/NMOS-5um.lib new file mode 100644 index 000000000..a237e1fe3 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/NMOS-5um.lib @@ -0,0 +1,5 @@ +* 5um technology + +.model mos_n NMOS( Cgso=0.4n Tox=85n Vto=1 phi=0.7 ++ Level=1 ++ Mj=.5 UO=750 Cgdo=0.4n Gamma=1.4 LAMBDA=0.01 LD=0.7u JS=1u CJ=0.4m CJSW=0.8n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/MC14016B_One/PMOS-5um.lib b/library/SubcircuitLibrary/MC14016B_One/PMOS-5um.lib new file mode 100644 index 000000000..9c3ed9760 --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/PMOS-5um.lib @@ -0,0 +1,5 @@ +*5um technology + +.model mos_p PMOS( Cgso=0.4n Tox=85n Vto=-1 phi=0.65 ++ Level=1 ++ Mj=.5 UO=250 Cgdo=0.4n Gamma=0.65 LAMBDA=0.03 LD=0.6u JS=1u CJ=0.18m CJSW=0.6n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/MC14016B_One/analysis b/library/SubcircuitLibrary/MC14016B_One/analysis new file mode 100644 index 000000000..b21a9e13b --- /dev/null +++ b/library/SubcircuitLibrary/MC14016B_One/analysis @@ -0,0 +1 @@ +.tran 1e-06 10e-03 0e-03 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B-cache.lib b/library/SubcircuitLibrary/MC14076B/MC14076B-cache.lib new file mode 100644 index 000000000..8b4e4048e --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B-cache.lib @@ -0,0 +1,143 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_flip +# +DEF d_flip U 0 40 Y Y 1 F N +F0 "U" 2850 1800 60 H V C CNN +F1 "d_flip" 2850 2000 60 H V C CNN +F2 "" 2850 1950 60 H V C CNN +F3 "" 2850 1950 60 H V C CNN +DRAW +S 2350 2100 3350 1500 0 1 0 N +X d0 1 2150 1900 200 R 50 50 1 1 I +X clk0 2 2150 1800 200 R 50 50 1 1 I +X rst_n0 3 2150 1700 200 R 50 50 1 1 I +X q0 4 3550 1900 200 L 50 50 1 1 O +X q_bar0 5 3550 1800 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_nand +# +DEF d_nand U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nand" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_or +# +DEF d_or U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_or" 0 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# tristate_inverter +# +DEF tristate_inverter U 0 40 Y Y 1 F N +F0 "U" 2850 1800 60 H V C CNN +F1 "tristate_inverter" 2850 2000 60 H V C CNN +F2 "" 2850 1950 60 H V C CNN +F3 "" 2850 1950 60 H V C CNN +DRAW +S 2350 2100 3350 1600 0 1 0 N +X a0 1 2150 1900 200 R 50 50 1 1 I +X en0 2 2150 1800 200 R 50 50 1 1 I +X y0 3 3550 1900 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B.cir b/library/SubcircuitLibrary/MC14076B/MC14076B.cir new file mode 100644 index 000000000..b50d521a1 --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B.cir @@ -0,0 +1,37 @@ +* C:\Users\pavithra\eSim-Workspace\MC14076B\MC14076B.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/20/25 15:45:00 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U7 Net-_U19-Pad3_ Net-_U10-Pad2_ Net-_U10-Pad3_ Net-_U11-Pad1_ Net-_U24-Pad2_ d_flip +U19 Net-_U11-Pad3_ Net-_U12-Pad3_ Net-_U19-Pad3_ d_or +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_and +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U12-Pad3_ d_and +U5 Net-_U12-Pad2_ Net-_U11-Pad2_ d_inverter +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U12-Pad2_ d_nand +U8 Net-_U20-Pad3_ Net-_U10-Pad2_ Net-_U10-Pad3_ Net-_U13-Pad1_ Net-_U23-Pad2_ d_flip +U20 Net-_U13-Pad3_ Net-_U14-Pad3_ Net-_U20-Pad3_ d_or +U13 Net-_U13-Pad1_ Net-_U11-Pad2_ Net-_U13-Pad3_ d_and +U14 Net-_U14-Pad1_ Net-_U12-Pad2_ Net-_U14-Pad3_ d_and +U9 Net-_U21-Pad3_ Net-_U10-Pad2_ Net-_U10-Pad3_ Net-_U15-Pad1_ Net-_U25-Pad2_ d_flip +U21 Net-_U15-Pad3_ Net-_U16-Pad3_ Net-_U21-Pad3_ d_or +U15 Net-_U15-Pad1_ Net-_U11-Pad2_ Net-_U15-Pad3_ d_and +U16 Net-_U16-Pad1_ Net-_U12-Pad2_ Net-_U16-Pad3_ d_and +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ Net-_U10-Pad4_ Net-_U10-Pad5_ d_flip +U22 Net-_U17-Pad3_ Net-_U18-Pad3_ Net-_U10-Pad1_ d_or +U17 Net-_U10-Pad4_ Net-_U11-Pad2_ Net-_U17-Pad3_ d_and +U18 Net-_U18-Pad1_ Net-_U12-Pad2_ Net-_U18-Pad3_ d_and +U3 Net-_U27-Pad7_ Net-_U10-Pad2_ d_inverter +U4 Net-_U27-Pad15_ Net-_U10-Pad3_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ d_nand +U6 Net-_U1-Pad3_ Net-_U23-Pad1_ d_inverter +U24 Net-_U23-Pad1_ Net-_U24-Pad2_ Net-_U24-Pad3_ tristate_inverter +U23 Net-_U23-Pad1_ Net-_U23-Pad2_ Net-_U23-Pad3_ tristate_inverter +U25 Net-_U23-Pad1_ Net-_U25-Pad2_ Net-_U25-Pad3_ tristate_inverter +U26 Net-_U23-Pad1_ Net-_U10-Pad5_ Net-_U26-Pad3_ tristate_inverter +U27 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U24-Pad3_ Net-_U23-Pad3_ Net-_U25-Pad3_ Net-_U26-Pad3_ Net-_U27-Pad7_ ? Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U18-Pad1_ Net-_U16-Pad1_ Net-_U14-Pad1_ Net-_U12-Pad1_ Net-_U27-Pad15_ ? PORT + +.end diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B.cir.out b/library/SubcircuitLibrary/MC14076B/MC14076B.cir.out new file mode 100644 index 000000000..6eff3fe40 --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B.cir.out @@ -0,0 +1,116 @@ +* c:\fossee\esim\library\subcircuitlibrary\mc14076b\mc14076b.cir + +* u19 net-_u11-pad3_ net-_u12-pad3_ net-_u19-pad3_ d_or +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_and +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_and +* u5 net-_u12-pad2_ net-_u11-pad2_ d_inverter +* u2 net-_u2-pad1_ net-_u2-pad2_ net-_u12-pad2_ d_nand +* u20 net-_u13-pad3_ net-_u14-pad3_ net-_u20-pad3_ d_or +* u13 net-_u13-pad1_ net-_u11-pad2_ net-_u13-pad3_ d_and +* u14 net-_u14-pad1_ net-_u12-pad2_ net-_u14-pad3_ d_and +* u21 net-_u15-pad3_ net-_u16-pad3_ net-_u21-pad3_ d_or +* u15 net-_u15-pad1_ net-_u11-pad2_ net-_u15-pad3_ d_and +* u16 net-_u16-pad1_ net-_u12-pad2_ net-_u16-pad3_ d_and +* u22 net-_u17-pad3_ net-_u18-pad3_ net-_u10-pad1_ d_or +* u17 net-_u10-pad4_ net-_u11-pad2_ net-_u17-pad3_ d_and +* u18 net-_u18-pad1_ net-_u12-pad2_ net-_u18-pad3_ d_and +* u3 net-_u27-pad7_ net-_u10-pad2_ d_inverter +* u4 net-_u27-pad15_ net-_u10-pad3_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ d_nand +* u6 net-_u1-pad3_ net-_u23-pad1_ d_inverter +* u24 net-_u23-pad1_ net-_u24-pad2_ net-_u24-pad3_ tristate_inverter +* u23 net-_u23-pad1_ net-_u23-pad2_ net-_u23-pad3_ tristate_inverter +* u25 net-_u23-pad1_ net-_u25-pad2_ net-_u25-pad3_ tristate_inverter +* u26 net-_u23-pad1_ net-_u10-pad5_ net-_u26-pad3_ tristate_inverter +* u27 net-_u1-pad1_ net-_u1-pad2_ net-_u24-pad3_ net-_u23-pad3_ net-_u25-pad3_ net-_u26-pad3_ net-_u27-pad7_ ? net-_u2-pad1_ net-_u2-pad2_ net-_u18-pad1_ net-_u16-pad1_ net-_u14-pad1_ net-_u12-pad1_ net-_u27-pad15_ ? port +* u7 net-_u19-pad3_ net-_u10-pad2_ net-_u10-pad3_ net-_u11-pad1_ net-_u24-pad2_ d_flip +* u8 net-_u20-pad3_ net-_u10-pad2_ net-_u10-pad3_ net-_u13-pad1_ net-_u23-pad2_ d_flip +* u9 net-_u21-pad3_ net-_u10-pad2_ net-_u10-pad3_ net-_u15-pad1_ net-_u25-pad2_ d_flip +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ d_flip +a1 [net-_u11-pad3_ net-_u12-pad3_ ] net-_u19-pad3_ u19 +a2 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a3 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a4 net-_u12-pad2_ net-_u11-pad2_ u5 +a5 [net-_u2-pad1_ net-_u2-pad2_ ] net-_u12-pad2_ u2 +a6 [net-_u13-pad3_ net-_u14-pad3_ ] net-_u20-pad3_ u20 +a7 [net-_u13-pad1_ net-_u11-pad2_ ] net-_u13-pad3_ u13 +a8 [net-_u14-pad1_ net-_u12-pad2_ ] net-_u14-pad3_ u14 +a9 [net-_u15-pad3_ net-_u16-pad3_ ] net-_u21-pad3_ u21 +a10 [net-_u15-pad1_ net-_u11-pad2_ ] net-_u15-pad3_ u15 +a11 [net-_u16-pad1_ net-_u12-pad2_ ] net-_u16-pad3_ u16 +a12 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u10-pad1_ u22 +a13 [net-_u10-pad4_ net-_u11-pad2_ ] net-_u17-pad3_ u17 +a14 [net-_u18-pad1_ net-_u12-pad2_ ] net-_u18-pad3_ u18 +a15 net-_u27-pad7_ net-_u10-pad2_ u3 +a16 net-_u27-pad15_ net-_u10-pad3_ u4 +a17 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u1-pad3_ u1 +a18 net-_u1-pad3_ net-_u23-pad1_ u6 +a19 [net-_u23-pad1_ ] [net-_u24-pad2_ ] [net-_u24-pad3_ ] u24 +a20 [net-_u23-pad1_ ] [net-_u23-pad2_ ] [net-_u23-pad3_ ] u23 +a21 [net-_u23-pad1_ ] [net-_u25-pad2_ ] [net-_u25-pad3_ ] u25 +a22 [net-_u23-pad1_ ] [net-_u10-pad5_ ] [net-_u26-pad3_ ] u26 +a23 [net-_u19-pad3_ ] [net-_u10-pad2_ ] [net-_u10-pad3_ ] [net-_u11-pad1_ ] [net-_u24-pad2_ ] u7 +a24 [net-_u20-pad3_ ] [net-_u10-pad2_ ] [net-_u10-pad3_ ] [net-_u13-pad1_ ] [net-_u23-pad2_ ] u8 +a25 [net-_u21-pad3_ ] [net-_u10-pad2_ ] [net-_u10-pad3_ ] [net-_u15-pad1_ ] [net-_u25-pad2_ ] u9 +a26 [net-_u10-pad1_ ] [net-_u10-pad2_ ] [net-_u10-pad3_ ] [net-_u10-pad4_ ] [net-_u10-pad5_ ] u10 +* Schematic Name: d_or, NgSpice Name: d_or +.model u19 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u2 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u20 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u21 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u16 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u22 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u1 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: tristate_inverter, NgSpice Name: tristate_inverter +.model u24 tristate_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tristate_inverter, NgSpice Name: tristate_inverter +.model u23 tristate_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tristate_inverter, NgSpice Name: tristate_inverter +.model u25 tristate_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tristate_inverter, NgSpice Name: tristate_inverter +.model u26 tristate_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_flip, NgSpice Name: d_flip +.model u7 d_flip(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_flip, NgSpice Name: d_flip +.model u8 d_flip(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_flip, NgSpice Name: d_flip +.model u9 d_flip(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_flip, NgSpice Name: d_flip +.model u10 d_flip(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B.pro b/library/SubcircuitLibrary/MC14076B/MC14076B.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B.proj b/library/SubcircuitLibrary/MC14076B/MC14076B.proj new file mode 100644 index 000000000..19428788d --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B.proj @@ -0,0 +1 @@ +schematicFile MC14076B.sch diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B.sch b/library/SubcircuitLibrary/MC14076B/MC14076B.sch new file mode 100644 index 000000000..a40dff83f --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B.sch @@ -0,0 +1,701 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A1 33110 23386 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_flip U7 +U 1 1 6854FB03 +P 8800 8200 +F 0 "U7" H 11650 10000 60 0000 C CNN +F 1 "d_flip" H 11650 10200 60 0000 C CNN +F 2 "" H 11650 10150 60 0000 C CNN +F 3 "" H 11650 10150 60 0000 C CNN + 1 8800 8200 + 1 0 0 -1 +$EndComp +$Comp +L d_or U19 +U 1 1 6854FBB3 +P 10350 6350 +F 0 "U19" H 10350 6350 60 0000 C CNN +F 1 "d_or" H 10350 6450 60 0000 C CNN +F 2 "" H 10350 6350 60 0000 C CNN +F 3 "" H 10350 6350 60 0000 C CNN + 1 10350 6350 + 1 0 0 -1 +$EndComp +$Comp +L d_and U11 +U 1 1 6854FC08 +P 9300 6150 +F 0 "U11" H 9300 6150 60 0000 C CNN +F 1 "d_and" H 9350 6250 60 0000 C CNN +F 2 "" H 9300 6150 60 0000 C CNN +F 3 "" H 9300 6150 60 0000 C CNN + 1 9300 6150 + 1 0 0 -1 +$EndComp +$Comp +L d_and U12 +U 1 1 6854FC36 +P 9300 6550 +F 0 "U12" H 9300 6550 60 0000 C CNN +F 1 "d_and" H 9350 6650 60 0000 C CNN +F 2 "" H 9300 6550 60 0000 C CNN +F 3 "" H 9300 6550 60 0000 C CNN + 1 9300 6550 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U5 +U 1 1 6854FC8B +P 8300 7250 +F 0 "U5" H 8300 7150 60 0000 C CNN +F 1 "d_inverter" H 8300 7400 60 0000 C CNN +F 2 "" H 8350 7200 60 0000 C CNN +F 3 "" H 8350 7200 60 0000 C CNN + 1 8300 7250 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U2 +U 1 1 6854FE40 +P 7350 7300 +F 0 "U2" H 7350 7300 60 0000 C CNN +F 1 "d_nand" H 7400 7400 60 0000 C CNN +F 2 "" H 7350 7300 60 0000 C CNN +F 3 "" H 7350 7300 60 0000 C CNN + 1 7350 7300 + 1 0 0 -1 +$EndComp +$Comp +L d_flip U8 +U 1 1 685501A9 +P 8850 10100 +F 0 "U8" H 11700 11900 60 0000 C CNN +F 1 "d_flip" H 11700 12100 60 0000 C CNN +F 2 "" H 11700 12050 60 0000 C CNN +F 3 "" H 11700 12050 60 0000 C CNN + 1 8850 10100 + 1 0 0 -1 +$EndComp +$Comp +L d_or U20 +U 1 1 685501AF +P 10400 8250 +F 0 "U20" H 10400 8250 60 0000 C CNN +F 1 "d_or" H 10400 8350 60 0000 C CNN +F 2 "" H 10400 8250 60 0000 C CNN +F 3 "" H 10400 8250 60 0000 C CNN + 1 10400 8250 + 1 0 0 -1 +$EndComp +$Comp +L d_and U13 +U 1 1 685501B5 +P 9350 8050 +F 0 "U13" H 9350 8050 60 0000 C CNN +F 1 "d_and" H 9400 8150 60 0000 C CNN +F 2 "" H 9350 8050 60 0000 C CNN +F 3 "" H 9350 8050 60 0000 C CNN + 1 9350 8050 + 1 0 0 -1 +$EndComp +$Comp +L d_and U14 +U 1 1 685501BB +P 9350 8450 +F 0 "U14" H 9350 8450 60 0000 C CNN +F 1 "d_and" H 9400 8550 60 0000 C CNN +F 2 "" H 9350 8450 60 0000 C CNN +F 3 "" H 9350 8450 60 0000 C CNN + 1 9350 8450 + 1 0 0 -1 +$EndComp +$Comp +L d_flip U9 +U 1 1 68550998 +P 8900 11350 +F 0 "U9" H 11750 13150 60 0000 C CNN +F 1 "d_flip" H 11750 13350 60 0000 C CNN +F 2 "" H 11750 13300 60 0000 C CNN +F 3 "" H 11750 13300 60 0000 C CNN + 1 8900 11350 + 1 0 0 -1 +$EndComp +$Comp +L d_or U21 +U 1 1 6855099E +P 10450 9500 +F 0 "U21" H 10450 9500 60 0000 C CNN +F 1 "d_or" H 10450 9600 60 0000 C CNN +F 2 "" H 10450 9500 60 0000 C CNN +F 3 "" H 10450 9500 60 0000 C CNN + 1 10450 9500 + 1 0 0 -1 +$EndComp +$Comp +L d_and U15 +U 1 1 685509A4 +P 9400 9300 +F 0 "U15" H 9400 9300 60 0000 C CNN +F 1 "d_and" H 9450 9400 60 0000 C CNN +F 2 "" H 9400 9300 60 0000 C CNN +F 3 "" H 9400 9300 60 0000 C CNN + 1 9400 9300 + 1 0 0 -1 +$EndComp +$Comp +L d_and U16 +U 1 1 685509AA +P 9400 9700 +F 0 "U16" H 9400 9700 60 0000 C CNN +F 1 "d_and" H 9450 9800 60 0000 C CNN +F 2 "" H 9400 9700 60 0000 C CNN +F 3 "" H 9400 9700 60 0000 C CNN + 1 9400 9700 + 1 0 0 -1 +$EndComp +$Comp +L d_flip U10 +U 1 1 68550E16 +P 8900 12450 +F 0 "U10" H 11750 14250 60 0000 C CNN +F 1 "d_flip" H 11750 14450 60 0000 C CNN +F 2 "" H 11750 14400 60 0000 C CNN +F 3 "" H 11750 14400 60 0000 C CNN + 1 8900 12450 + 1 0 0 -1 +$EndComp +$Comp +L d_or U22 +U 1 1 68550E1C +P 10450 10600 +F 0 "U22" H 10450 10600 60 0000 C CNN +F 1 "d_or" H 10450 10700 60 0000 C CNN +F 2 "" H 10450 10600 60 0000 C CNN +F 3 "" H 10450 10600 60 0000 C CNN + 1 10450 10600 + 1 0 0 -1 +$EndComp +$Comp +L d_and U17 +U 1 1 68550E22 +P 9400 10400 +F 0 "U17" H 9400 10400 60 0000 C CNN +F 1 "d_and" H 9450 10500 60 0000 C CNN +F 2 "" H 9400 10400 60 0000 C CNN +F 3 "" H 9400 10400 60 0000 C CNN + 1 9400 10400 + 1 0 0 -1 +$EndComp +$Comp +L d_and U18 +U 1 1 68550E28 +P 9400 10800 +F 0 "U18" H 9400 10800 60 0000 C CNN +F 1 "d_and" H 9450 10900 60 0000 C CNN +F 2 "" H 9400 10800 60 0000 C CNN +F 3 "" H 9400 10800 60 0000 C CNN + 1 9400 10800 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U3 +U 1 1 68552637 +P 7400 8700 +F 0 "U3" H 7400 8600 60 0000 C CNN +F 1 "d_inverter" H 7400 8850 60 0000 C CNN +F 2 "" H 7450 8650 60 0000 C CNN +F 3 "" H 7450 8650 60 0000 C CNN + 1 7400 8700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 10800 6300 10950 6300 +Wire Wire Line + 9750 6500 9900 6500 +Wire Wire Line + 9900 6500 9900 6350 +Wire Wire Line + 9750 6100 9900 6100 +Wire Wire Line + 9900 6100 9900 6250 +Wire Wire Line + 8850 6050 8850 5900 +Wire Wire Line + 8850 5900 12350 5900 +Wire Wire Line + 12350 5900 12350 6300 +Wire Wire Line + 7800 7250 8000 7250 +Wire Wire Line + 8850 6550 7900 6550 +Wire Wire Line + 7900 6550 7900 10800 +Connection ~ 7900 7250 +Wire Wire Line + 10850 8200 11000 8200 +Wire Wire Line + 9800 8400 9950 8400 +Wire Wire Line + 9950 8400 9950 8250 +Wire Wire Line + 9800 8000 9950 8000 +Wire Wire Line + 9950 8000 9950 8150 +Wire Wire Line + 8900 7950 8900 7800 +Wire Wire Line + 8900 7800 12400 7800 +Wire Wire Line + 12400 7800 12400 8200 +Wire Wire Line + 8650 8050 8900 8050 +Wire Wire Line + 8850 6150 8650 6150 +Wire Wire Line + 8650 6150 8650 10400 +Wire Wire Line + 8600 7250 8650 7250 +Connection ~ 8650 7250 +Wire Wire Line + 7900 8450 8900 8450 +Wire Wire Line + 10900 9450 11050 9450 +Wire Wire Line + 9850 9650 10000 9650 +Wire Wire Line + 10000 9650 10000 9500 +Wire Wire Line + 9850 9250 10000 9250 +Wire Wire Line + 10000 9250 10000 9400 +Wire Wire Line + 8950 9200 8950 9050 +Wire Wire Line + 8950 9050 12450 9050 +Wire Wire Line + 12450 9050 12450 9450 +Wire Wire Line + 8650 9300 8950 9300 +Connection ~ 8650 8050 +Wire Wire Line + 7900 9700 8950 9700 +Connection ~ 7900 8450 +Wire Wire Line + 10900 10550 11050 10550 +Wire Wire Line + 9850 10750 10000 10750 +Wire Wire Line + 10000 10750 10000 10600 +Wire Wire Line + 9850 10350 10000 10350 +Wire Wire Line + 10000 10350 10000 10500 +Wire Wire Line + 8950 10300 8950 10150 +Wire Wire Line + 8950 10150 12450 10150 +Wire Wire Line + 12450 10150 12450 10550 +Wire Wire Line + 8650 10400 8950 10400 +Connection ~ 8650 9300 +Wire Wire Line + 7900 10800 8950 10800 +Connection ~ 7900 9700 +Wire Wire Line + 11000 8300 10850 8300 +Wire Wire Line + 10850 6400 10850 10650 +Wire Wire Line + 10850 9550 11050 9550 +Wire Wire Line + 10950 6400 10850 6400 +Connection ~ 10850 8300 +Wire Wire Line + 10850 10650 11050 10650 +Connection ~ 10850 9550 +Wire Wire Line + 7700 8700 10850 8700 +Connection ~ 10850 8700 +Wire Wire Line + 10950 6500 10950 11250 +Wire Wire Line + 10950 8400 11000 8400 +Wire Wire Line + 10950 9650 11050 9650 +Connection ~ 10950 8400 +Wire Wire Line + 10950 10750 11050 10750 +Connection ~ 10950 9650 +$Comp +L d_inverter U4 +U 1 1 68552F98 +P 7450 11250 +F 0 "U4" H 7450 11150 60 0000 C CNN +F 1 "d_inverter" H 7450 11400 60 0000 C CNN +F 2 "" H 7500 11200 60 0000 C CNN +F 3 "" H 7500 11200 60 0000 C CNN + 1 7450 11250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 10950 11250 7750 11250 +Connection ~ 10950 10750 +$Comp +L d_nand U1 +U 1 1 68553906 +P 7350 5400 +F 0 "U1" H 7350 5400 60 0000 C CNN +F 1 "d_nand" H 7400 5500 60 0000 C CNN +F 2 "" H 7350 5400 60 0000 C CNN +F 3 "" H 7350 5400 60 0000 C CNN + 1 7350 5400 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U6 +U 1 1 68553977 +P 8450 5350 +F 0 "U6" H 8450 5250 60 0000 C CNN +F 1 "d_inverter" H 8450 5500 60 0000 C CNN +F 2 "" H 8500 5300 60 0000 C CNN +F 3 "" H 8500 5300 60 0000 C CNN + 1 8450 5350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7800 5350 8150 5350 +$Comp +L tristate_inverter U24 +U 1 1 68553A2E +P 10550 8200 +F 0 "U24" H 13400 10000 60 0000 C CNN +F 1 "tristate_inverter" H 13400 10200 60 0000 C CNN +F 2 "" H 13400 10150 60 0000 C CNN +F 3 "" H 13400 10150 60 0000 C CNN + 1 10550 8200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 12350 6400 12700 6400 +$Comp +L tristate_inverter U23 +U 1 1 68553ECC +P 10500 10100 +F 0 "U23" H 13350 11900 60 0000 C CNN +F 1 "tristate_inverter" H 13350 12100 60 0000 C CNN +F 2 "" H 13350 12050 60 0000 C CNN +F 3 "" H 13350 12050 60 0000 C CNN + 1 10500 10100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 12400 8300 12650 8300 +$Comp +L tristate_inverter U25 +U 1 1 685544FF +P 10550 11350 +F 0 "U25" H 13400 13150 60 0000 C CNN +F 1 "tristate_inverter" H 13400 13350 60 0000 C CNN +F 2 "" H 13400 13300 60 0000 C CNN +F 3 "" H 13400 13300 60 0000 C CNN + 1 10550 11350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 12450 9550 12700 9550 +$Comp +L tristate_inverter U26 +U 1 1 6855461F +P 10600 12450 +F 0 "U26" H 13450 14250 60 0000 C CNN +F 1 "tristate_inverter" H 13450 14450 60 0000 C CNN +F 2 "" H 13450 14400 60 0000 C CNN +F 3 "" H 13450 14400 60 0000 C CNN + 1 10600 12450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 12450 10650 12750 10650 +Wire Wire Line + 8750 5350 12550 5350 +Wire Wire Line + 12550 5350 12550 10550 +Wire Wire Line + 12550 10550 12750 10550 +Wire Wire Line + 12700 9450 12550 9450 +Connection ~ 12550 9450 +Wire Wire Line + 12650 8200 12550 8200 +Connection ~ 12550 8200 +Wire Wire Line + 12700 6300 12550 6300 +Connection ~ 12550 6300 +$Comp +L PORT U27 +U 2 1 68555B35 +P 6350 5450 +F 0 "U27" H 6400 5550 30 0000 C CNN +F 1 "PORT" H 6350 5450 30 0000 C CNN +F 2 "" H 6350 5450 60 0000 C CNN +F 3 "" H 6350 5450 60 0000 C CNN + 2 6350 5450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 1 1 68555B80 +P 6350 5300 +F 0 "U27" H 6400 5400 30 0000 C CNN +F 1 "PORT" H 6350 5300 30 0000 C CNN +F 2 "" H 6350 5300 60 0000 C CNN +F 3 "" H 6350 5300 60 0000 C CNN + 1 6350 5300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 3 1 68555BCD +P 14550 6300 +F 0 "U27" H 14600 6400 30 0000 C CNN +F 1 "PORT" H 14550 6300 30 0000 C CNN +F 2 "" H 14550 6300 60 0000 C CNN +F 3 "" H 14550 6300 60 0000 C CNN + 3 14550 6300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 4 1 68555C22 +P 14550 8200 +F 0 "U27" H 14600 8300 30 0000 C CNN +F 1 "PORT" H 14550 8200 30 0000 C CNN +F 2 "" H 14550 8200 60 0000 C CNN +F 3 "" H 14550 8200 60 0000 C CNN + 4 14550 8200 + -1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 5 1 68555C7B +P 14600 9450 +F 0 "U27" H 14650 9550 30 0000 C CNN +F 1 "PORT" H 14600 9450 30 0000 C CNN +F 2 "" H 14600 9450 60 0000 C CNN +F 3 "" H 14600 9450 60 0000 C CNN + 5 14600 9450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 6 1 68555CCE +P 14650 10550 +F 0 "U27" H 14700 10650 30 0000 C CNN +F 1 "PORT" H 14650 10550 30 0000 C CNN +F 2 "" H 14650 10550 60 0000 C CNN +F 3 "" H 14650 10550 60 0000 C CNN + 6 14650 10550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 7 1 68555D2B +P 6650 8700 +F 0 "U27" H 6700 8800 30 0000 C CNN +F 1 "PORT" H 6650 8700 30 0000 C CNN +F 2 "" H 6650 8700 60 0000 C CNN +F 3 "" H 6650 8700 60 0000 C CNN + 7 6650 8700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 9 1 68555D86 +P 6500 7100 +F 0 "U27" H 6550 7200 30 0000 C CNN +F 1 "PORT" H 6500 7100 30 0000 C CNN +F 2 "" H 6500 7100 60 0000 C CNN +F 3 "" H 6500 7100 60 0000 C CNN + 9 6500 7100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 8 1 68555DE3 +P 14050 4850 +F 0 "U27" H 14100 4950 30 0000 C CNN +F 1 "PORT" H 14050 4850 30 0000 C CNN +F 2 "" H 14050 4850 60 0000 C CNN +F 3 "" H 14050 4850 60 0000 C CNN + 8 14050 4850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 11 1 68555E6C +P 8500 10700 +F 0 "U27" H 8550 10800 30 0000 C CNN +F 1 "PORT" H 8500 10700 30 0000 C CNN +F 2 "" H 8500 10700 60 0000 C CNN +F 3 "" H 8500 10700 60 0000 C CNN + 11 8500 10700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 10 1 68555EED +P 6500 7400 +F 0 "U27" H 6550 7500 30 0000 C CNN +F 1 "PORT" H 6500 7400 30 0000 C CNN +F 2 "" H 6500 7400 60 0000 C CNN +F 3 "" H 6500 7400 60 0000 C CNN + 10 6500 7400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 12 1 68555F60 +P 8250 9600 +F 0 "U27" H 8300 9700 30 0000 C CNN +F 1 "PORT" H 8250 9600 30 0000 C CNN +F 2 "" H 8250 9600 60 0000 C CNN +F 3 "" H 8250 9600 60 0000 C CNN + 12 8250 9600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 13 1 68555FC1 +P 8350 8350 +F 0 "U27" H 8400 8450 30 0000 C CNN +F 1 "PORT" H 8350 8350 30 0000 C CNN +F 2 "" H 8350 8350 60 0000 C CNN +F 3 "" H 8350 8350 60 0000 C CNN + 13 8350 8350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 14 1 68556028 +P 8300 6450 +F 0 "U27" H 8350 6550 30 0000 C CNN +F 1 "PORT" H 8300 6450 30 0000 C CNN +F 2 "" H 8300 6450 60 0000 C CNN +F 3 "" H 8300 6450 60 0000 C CNN + 14 8300 6450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 15 1 6855608F +P 6700 11250 +F 0 "U27" H 6750 11350 30 0000 C CNN +F 1 "PORT" H 6700 11250 30 0000 C CNN +F 2 "" H 6700 11250 60 0000 C CNN +F 3 "" H 6700 11250 60 0000 C CNN + 15 6700 11250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U27 +U 16 1 685560FA +P 14050 5150 +F 0 "U27" H 14100 5250 30 0000 C CNN +F 1 "PORT" H 14050 5150 30 0000 C CNN +F 2 "" H 14050 5150 60 0000 C CNN +F 3 "" H 14050 5150 60 0000 C CNN + 16 14050 5150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6600 5300 6900 5300 +Wire Wire Line + 6600 5450 6900 5450 +Wire Wire Line + 6900 5450 6900 5400 +Wire Wire Line + 14300 6300 14100 6300 +Wire Wire Line + 14300 8200 14050 8200 +Wire Wire Line + 14100 9450 14350 9450 +Wire Wire Line + 14400 10550 14150 10550 +Wire Wire Line + 6900 8700 7100 8700 +NoConn ~ 14300 4850 +Wire Wire Line + 6750 7100 6900 7100 +Wire Wire Line + 6900 7100 6900 7200 +Wire Wire Line + 6750 7400 6900 7400 +Wire Wire Line + 6900 7400 6900 7300 +Wire Wire Line + 8750 10700 8950 10700 +Wire Wire Line + 8500 9600 8950 9600 +Wire Wire Line + 8600 8350 8900 8350 +Wire Wire Line + 8550 6450 8850 6450 +NoConn ~ 14300 5150 +Wire Wire Line + 6950 11250 7150 11250 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B.sub b/library/SubcircuitLibrary/MC14076B/MC14076B.sub new file mode 100644 index 000000000..b4205b4d2 --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B.sub @@ -0,0 +1,110 @@ +* Subcircuit MC14076B +.subckt MC14076B net-_u1-pad1_ net-_u1-pad2_ net-_u24-pad3_ net-_u23-pad3_ net-_u25-pad3_ net-_u26-pad3_ net-_u27-pad7_ ? net-_u2-pad1_ net-_u2-pad2_ net-_u18-pad1_ net-_u16-pad1_ net-_u14-pad1_ net-_u12-pad1_ net-_u27-pad15_ ? +* c:\fossee\esim\library\subcircuitlibrary\mc14076b\mc14076b.cir +* u19 net-_u11-pad3_ net-_u12-pad3_ net-_u19-pad3_ d_or +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_and +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_and +* u5 net-_u12-pad2_ net-_u11-pad2_ d_inverter +* u2 net-_u2-pad1_ net-_u2-pad2_ net-_u12-pad2_ d_nand +* u20 net-_u13-pad3_ net-_u14-pad3_ net-_u20-pad3_ d_or +* u13 net-_u13-pad1_ net-_u11-pad2_ net-_u13-pad3_ d_and +* u14 net-_u14-pad1_ net-_u12-pad2_ net-_u14-pad3_ d_and +* u21 net-_u15-pad3_ net-_u16-pad3_ net-_u21-pad3_ d_or +* u15 net-_u15-pad1_ net-_u11-pad2_ net-_u15-pad3_ d_and +* u16 net-_u16-pad1_ net-_u12-pad2_ net-_u16-pad3_ d_and +* u22 net-_u17-pad3_ net-_u18-pad3_ net-_u10-pad1_ d_or +* u17 net-_u10-pad4_ net-_u11-pad2_ net-_u17-pad3_ d_and +* u18 net-_u18-pad1_ net-_u12-pad2_ net-_u18-pad3_ d_and +* u3 net-_u27-pad7_ net-_u10-pad2_ d_inverter +* u4 net-_u27-pad15_ net-_u10-pad3_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ d_nand +* u6 net-_u1-pad3_ net-_u23-pad1_ d_inverter +* u24 net-_u23-pad1_ net-_u24-pad2_ net-_u24-pad3_ tristate_inverter +* u23 net-_u23-pad1_ net-_u23-pad2_ net-_u23-pad3_ tristate_inverter +* u25 net-_u23-pad1_ net-_u25-pad2_ net-_u25-pad3_ tristate_inverter +* u26 net-_u23-pad1_ net-_u10-pad5_ net-_u26-pad3_ tristate_inverter +* u7 net-_u19-pad3_ net-_u10-pad2_ net-_u10-pad3_ net-_u11-pad1_ net-_u24-pad2_ d_flip +* u8 net-_u20-pad3_ net-_u10-pad2_ net-_u10-pad3_ net-_u13-pad1_ net-_u23-pad2_ d_flip +* u9 net-_u21-pad3_ net-_u10-pad2_ net-_u10-pad3_ net-_u15-pad1_ net-_u25-pad2_ d_flip +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ d_flip +a1 [net-_u11-pad3_ net-_u12-pad3_ ] net-_u19-pad3_ u19 +a2 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a3 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a4 net-_u12-pad2_ net-_u11-pad2_ u5 +a5 [net-_u2-pad1_ net-_u2-pad2_ ] net-_u12-pad2_ u2 +a6 [net-_u13-pad3_ net-_u14-pad3_ ] net-_u20-pad3_ u20 +a7 [net-_u13-pad1_ net-_u11-pad2_ ] net-_u13-pad3_ u13 +a8 [net-_u14-pad1_ net-_u12-pad2_ ] net-_u14-pad3_ u14 +a9 [net-_u15-pad3_ net-_u16-pad3_ ] net-_u21-pad3_ u21 +a10 [net-_u15-pad1_ net-_u11-pad2_ ] net-_u15-pad3_ u15 +a11 [net-_u16-pad1_ net-_u12-pad2_ ] net-_u16-pad3_ u16 +a12 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u10-pad1_ u22 +a13 [net-_u10-pad4_ net-_u11-pad2_ ] net-_u17-pad3_ u17 +a14 [net-_u18-pad1_ net-_u12-pad2_ ] net-_u18-pad3_ u18 +a15 net-_u27-pad7_ net-_u10-pad2_ u3 +a16 net-_u27-pad15_ net-_u10-pad3_ u4 +a17 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u1-pad3_ u1 +a18 net-_u1-pad3_ net-_u23-pad1_ u6 +a19 [net-_u23-pad1_ ] [net-_u24-pad2_ ] [net-_u24-pad3_ ] u24 +a20 [net-_u23-pad1_ ] [net-_u23-pad2_ ] [net-_u23-pad3_ ] u23 +a21 [net-_u23-pad1_ ] [net-_u25-pad2_ ] [net-_u25-pad3_ ] u25 +a22 [net-_u23-pad1_ ] [net-_u10-pad5_ ] [net-_u26-pad3_ ] u26 +a23 [net-_u19-pad3_ ] [net-_u10-pad2_ ] [net-_u10-pad3_ ] [net-_u11-pad1_ ] [net-_u24-pad2_ ] u7 +a24 [net-_u20-pad3_ ] [net-_u10-pad2_ ] [net-_u10-pad3_ ] [net-_u13-pad1_ ] [net-_u23-pad2_ ] u8 +a25 [net-_u21-pad3_ ] [net-_u10-pad2_ ] [net-_u10-pad3_ ] [net-_u15-pad1_ ] [net-_u25-pad2_ ] u9 +a26 [net-_u10-pad1_ ] [net-_u10-pad2_ ] [net-_u10-pad3_ ] [net-_u10-pad4_ ] [net-_u10-pad5_ ] u10 +* Schematic Name: d_or, NgSpice Name: d_or +.model u19 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u2 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u20 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u21 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u16 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u22 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u1 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: tristate_inverter, NgSpice Name: tristate_inverter +.model u24 tristate_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tristate_inverter, NgSpice Name: tristate_inverter +.model u23 tristate_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tristate_inverter, NgSpice Name: tristate_inverter +.model u25 tristate_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: tristate_inverter, NgSpice Name: tristate_inverter +.model u26 tristate_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_flip, NgSpice Name: d_flip +.model u7 d_flip(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_flip, NgSpice Name: d_flip +.model u8 d_flip(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_flip, NgSpice Name: d_flip +.model u9 d_flip(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Schematic Name: d_flip, NgSpice Name: d_flip +.model u10 d_flip(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 instance_id=1 ) +* Control Statements + +.ends MC14076B \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B_Previous_Values.xml b/library/SubcircuitLibrary/MC14076B/MC14076B_Previous_Values.xml new file mode 100644 index 000000000..dd87de853 --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B_Previous_Values.xml @@ -0,0 +1 @@ +d_flipd_ord_andd_andd_inverterd_nandd_flipd_ord_andd_andd_flipd_ord_andd_andd_flipd_ord_andd_andd_inverterd_inverterd_nandd_invertertristate_invertertristate_invertertristate_invertertristate_invertertruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B_test-cache.lib b/library/SubcircuitLibrary/MC14076B/MC14076B_test-cache.lib new file mode 100644 index 000000000..4098fce1e --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B_test-cache.lib @@ -0,0 +1,170 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# DC +# +DEF DC v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "DC" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 w +X - 2 0 -450 300 U 50 50 1 1 w +ENDDRAW +ENDDEF +# +# MC14076B +# +DEF MC14076B X 0 40 Y Y 1 F N +F0 "X" 0 -950 60 H V C CNN +F1 "MC14076B" 50 850 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -450 750 450 -750 0 1 0 N +X A 1 -650 650 200 R 50 50 1 1 I +X B 2 -650 500 200 R 50 50 1 1 I +X Q0 3 -650 300 200 R 50 50 1 1 O +X Q1 4 -650 100 200 R 50 50 1 1 O +X Q2 5 -650 -100 200 R 50 50 1 1 O +X Q3 6 -650 -300 200 R 50 50 1 1 O +X C 7 -650 -500 200 R 50 50 1 1 I +X VSS 8 -650 -700 200 R 50 50 1 1 I +X A 9 650 -700 200 L 50 50 1 1 I +X B 10 650 -500 200 L 50 50 1 1 I +X D3 11 650 -300 200 L 50 50 1 1 I +X D2 12 650 -100 200 L 50 50 1 1 I +X D1 13 650 100 200 L 50 50 1 1 I +X D0 14 650 300 200 L 50 50 1 1 I +X R 15 650 500 200 L 50 50 1 1 I +X VDD 16 650 650 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# adc_bridge_1 +# +DEF adc_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "adc_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# adc_bridge_2 +# +DEF adc_bridge_2 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "adc_bridge_2" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -100 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X IN2 2 -600 -50 200 R 50 50 1 1 I +X OUT1 3 550 50 200 L 50 50 1 1 O +X OUT2 4 550 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# adc_bridge_5 +# +DEF adc_bridge_5 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "adc_bridge_5" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -400 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X IN2 2 -600 -50 200 R 50 50 1 1 I +X IN3 3 -600 -150 200 R 50 50 1 1 I +X IN4 4 -600 -250 200 R 50 50 1 1 I +X IN5 5 -600 -350 200 R 50 50 1 1 I +X OUT1 6 550 50 200 L 50 50 1 1 O +X OUT2 7 550 -50 200 L 50 50 1 1 O +X OUT3 8 550 -150 200 L 50 50 1 1 O +X OUT4 9 550 -250 200 L 50 50 1 1 O +X OUT5 10 550 -350 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# dac_bridge_4 +# +DEF dac_bridge_4 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "dac_bridge_4" 0 300 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -350 350 350 -200 0 1 0 N +X IN1 1 -550 200 200 R 50 50 1 1 I +X IN2 2 -550 100 200 R 50 50 1 1 I +X IN3 3 -550 0 200 R 50 50 1 1 I +X IN4 4 -550 -100 200 R 50 50 1 1 I +X OUT1 5 550 200 200 L 50 50 1 1 O +X OUT2 6 550 100 200 L 50 50 1 1 O +X OUT3 7 550 0 200 L 50 50 1 1 O +X OUT4 8 550 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# eSim_GND +# +DEF eSim_GND #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -250 50 H I C CNN +F1 "eSim_GND" 0 -150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N +X GND 1 0 0 0 D 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# plot_v1 +# +DEF plot_v1 U 0 40 Y Y 1 F N +F0 "U" 0 500 60 H V C CNN +F1 "plot_v1" 200 350 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 0 500 100 0 1 0 N +X ~ ~ 0 200 200 U 50 50 1 1 I +ENDDRAW +ENDDEF +# +# pulse +# +DEF pulse v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "pulse" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -25 -450 501 928 871 0 1 0 N -50 50 0 50 +A 25 400 451 -931 -868 0 1 0 N 0 -50 50 -50 +A 75 600 551 -926 -873 0 1 0 N 50 50 100 50 +A 350 0 403 -1728 1728 0 1 0 N -50 -50 -50 50 +A 450 0 453 1736 -1736 0 1 0 N 0 50 0 -50 +A 600 0 552 -1748 1748 0 1 0 N 50 -50 50 50 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 P +X - 2 0 -450 300 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B_test.cir b/library/SubcircuitLibrary/MC14076B/MC14076B_test.cir new file mode 100644 index 000000000..3c5fe27e7 --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B_test.cir @@ -0,0 +1,38 @@ +* C:\Users\pavithra\eSim-Workspace\MC14076B_test\MC14076B_test.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/20/25 17:49:07 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U6 Net-_U6-Pad1_ Net-_U6-Pad2_ Net-_U6-Pad3_ Net-_U6-Pad4_ adc_bridge_2 +v1 Net-_U6-Pad1_ GND DC +v3 Net-_U6-Pad2_ GND DC +U8 Net-_U8-Pad1_ Net-_U8-Pad2_ Net-_U8-Pad3_ Net-_U8-Pad4_ W X Y Z dac_bridge_4 +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ Net-_U10-Pad4_ adc_bridge_2 +v6 Net-_U10-Pad1_ GND DC +v5 Net-_U10-Pad2_ GND DC +U11 RST A B C D Net-_U11-Pad6_ Net-_U11-Pad7_ Net-_U11-Pad8_ Net-_U11-Pad9_ Net-_U11-Pad10_ adc_bridge_5 +v7 D GND pulse +v8 C GND pulse +v9 B GND pulse +v10 A GND pulse +v11 RST GND pulse +U9 Net-_U9-Pad1_ Net-_U9-Pad2_ adc_bridge_1 +v4 Net-_U9-Pad1_ GND DC +U4 W plot_v1 +U2 X plot_v1 +U1 Y plot_v1 +U3 Z plot_v1 +U7 CLK Net-_U7-Pad2_ adc_bridge_1 +v2 CLK GND pulse +U5 CLK plot_v1 +U12 RST plot_v1 +U13 A plot_v1 +U14 B plot_v1 +U15 C plot_v1 +U16 D plot_v1 +X1 Net-_U6-Pad3_ Net-_U6-Pad4_ Net-_U8-Pad1_ Net-_U8-Pad2_ Net-_U8-Pad3_ Net-_U8-Pad4_ Net-_U7-Pad2_ GND Net-_U10-Pad4_ Net-_U10-Pad3_ Net-_U11-Pad10_ Net-_U11-Pad9_ Net-_U11-Pad8_ Net-_U11-Pad7_ Net-_U11-Pad6_ Net-_U9-Pad2_ MC14076B + +.end diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B_test.cir.out b/library/SubcircuitLibrary/MC14076B/MC14076B_test.cir.out new file mode 100644 index 000000000..14aa58df3 --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B_test.cir.out @@ -0,0 +1,59 @@ +* c:\users\pavithra\esim-workspace\mc14076b_test\mc14076b_test.cir + +.include MC14076B.sub +* u6 net-_u6-pad1_ net-_u6-pad2_ net-_u6-pad3_ net-_u6-pad4_ adc_bridge_2 +v1 net-_u6-pad1_ gnd dc 0 +v3 net-_u6-pad2_ gnd dc 0 +* u8 net-_u8-pad1_ net-_u8-pad2_ net-_u8-pad3_ net-_u8-pad4_ w x y z dac_bridge_4 +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ net-_u10-pad4_ adc_bridge_2 +v6 net-_u10-pad1_ gnd dc 0 +v5 net-_u10-pad2_ gnd dc 0 +* u11 rst a b c d net-_u11-pad6_ net-_u11-pad7_ net-_u11-pad8_ net-_u11-pad9_ net-_u11-pad10_ adc_bridge_5 +v7 d gnd pulse(0 5 50n 0.1n 0.1n 1m 9m) +v8 c gnd pulse(5 0 50n 0.1n 0.1n 2m 8m) +v9 b gnd pulse(0 5 50n 0.1n 0.1n 1m 9m) +v10 a gnd pulse(5 80n 2m 0.1n 0.1n 2m 8m) +v11 rst gnd pulse(0 5 0 0.1n 0.1n 4m 9m) +* u9 net-_u9-pad1_ net-_u9-pad2_ adc_bridge_1 +v4 net-_u9-pad1_ gnd dc 9 +* u4 w plot_v1 +* u2 x plot_v1 +* u1 y plot_v1 +* u3 z plot_v1 +* u7 clk net-_u7-pad2_ adc_bridge_1 +v2 clk gnd pulse(0 5 0 0.1n 0.1n 1m 2m) +* u5 clk plot_v1 +* u12 rst plot_v1 +* u13 a plot_v1 +* u14 b plot_v1 +* u15 c plot_v1 +* u16 d plot_v1 +x1 net-_u6-pad3_ net-_u6-pad4_ net-_u8-pad1_ net-_u8-pad2_ net-_u8-pad3_ net-_u8-pad4_ net-_u7-pad2_ gnd net-_u10-pad4_ net-_u10-pad3_ net-_u11-pad10_ net-_u11-pad9_ net-_u11-pad8_ net-_u11-pad7_ net-_u11-pad6_ net-_u9-pad2_ MC14076B +a1 [net-_u6-pad1_ net-_u6-pad2_ ] [net-_u6-pad3_ net-_u6-pad4_ ] u6 +a2 [net-_u8-pad1_ net-_u8-pad2_ net-_u8-pad3_ net-_u8-pad4_ ] [w x y z ] u8 +a3 [net-_u10-pad1_ net-_u10-pad2_ ] [net-_u10-pad3_ net-_u10-pad4_ ] u10 +a4 [rst a b c d ] [net-_u11-pad6_ net-_u11-pad7_ net-_u11-pad8_ net-_u11-pad9_ net-_u11-pad10_ ] u11 +a5 [net-_u9-pad1_ ] [net-_u9-pad2_ ] u9 +a6 [clk ] [net-_u7-pad2_ ] u7 +* Schematic Name: adc_bridge_2, NgSpice Name: adc_bridge +.model u6 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_4, NgSpice Name: dac_bridge +.model u8 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: adc_bridge_2, NgSpice Name: adc_bridge +.model u10 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_5, NgSpice Name: adc_bridge +.model u11 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u9 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u7 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 1e-06 10e-03 0e-03 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(w)+10v(x)+20 v(y)+30 v(z)+40v(clk)+50 v(rst)+60 v(a)+70 v(b)+80v(c)+90v(d) +.endc +.end diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B_test.pro b/library/SubcircuitLibrary/MC14076B/MC14076B_test.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B_test.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B_test.proj b/library/SubcircuitLibrary/MC14076B/MC14076B_test.proj new file mode 100644 index 000000000..78243dfc0 --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B_test.proj @@ -0,0 +1 @@ +schematicFile MC14076B_test.sch diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B_test.sch b/library/SubcircuitLibrary/MC14076B/MC14076B_test.sch new file mode 100644 index 000000000..f70383c66 --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B_test.sch @@ -0,0 +1,732 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:MC14076B_test-cache +EELAYER 25 0 +EELAYER END +$Descr A1 33110 23386 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L adc_bridge_2 U6 +U 1 1 685538BE +P 5000 3800 +F 0 "U6" H 5000 3800 60 0000 C CNN +F 1 "adc_bridge_2" H 5000 3950 60 0000 C CNN +F 2 "" H 5000 3800 60 0000 C CNN +F 3 "" H 5000 3800 60 0000 C CNN + 1 5000 3800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5550 3750 6350 3750 +Wire Wire Line + 6350 3750 6350 3700 +Wire Wire Line + 5550 3850 6350 3850 +$Comp +L DC v1 +U 1 1 685538EF +P 3850 4200 +F 0 "v1" H 3650 4300 60 0000 C CNN +F 1 "DC" H 3650 4150 60 0000 C CNN +F 2 "R1" H 3550 4200 60 0000 C CNN +F 3 "" H 3850 4200 60 0000 C CNN + 1 3850 4200 + 1 0 0 -1 +$EndComp +$Comp +L DC v3 +U 1 1 68553927 +P 4200 4300 +F 0 "v3" H 4000 4400 60 0000 C CNN +F 1 "DC" H 4000 4250 60 0000 C CNN +F 2 "R1" H 3900 4300 60 0000 C CNN +F 3 "" H 4200 4300 60 0000 C CNN + 1 4200 4300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3850 3750 4400 3750 +Wire Wire Line + 4200 3850 4400 3850 +$Comp +L eSim_GND #PWR01 +U 1 1 6855396C +P 4200 4900 +F 0 "#PWR01" H 4200 4650 50 0001 C CNN +F 1 "eSim_GND" H 4200 4750 50 0000 C CNN +F 2 "" H 4200 4900 50 0001 C CNN +F 3 "" H 4200 4900 50 0001 C CNN + 1 4200 4900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR02 +U 1 1 6855398A +P 3850 4750 +F 0 "#PWR02" H 3850 4500 50 0001 C CNN +F 1 "eSim_GND" H 3850 4600 50 0000 C CNN +F 2 "" H 3850 4750 50 0001 C CNN +F 3 "" H 3850 4750 50 0001 C CNN + 1 3850 4750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR03 +U 1 1 685539A1 +P 6200 5050 +F 0 "#PWR03" H 6200 4800 50 0001 C CNN +F 1 "eSim_GND" H 6200 4900 50 0000 C CNN +F 2 "" H 6200 5050 50 0001 C CNN +F 3 "" H 6200 5050 50 0001 C CNN + 1 6200 5050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6200 5050 6350 5050 +Wire Wire Line + 4200 4750 4200 4900 +Wire Wire Line + 3850 4650 3850 4750 +$Comp +L dac_bridge_4 U8 +U 1 1 685539E0 +P 5650 4450 +F 0 "U8" H 5650 4450 60 0000 C CNN +F 1 "dac_bridge_4" H 5650 4750 60 0000 C CNN +F 2 "" H 5650 4450 60 0000 C CNN +F 3 "" H 5650 4450 60 0000 C CNN + 1 5650 4450 + -1 0 0 -1 +$EndComp +Wire Wire Line + 6200 4250 6200 4050 +Wire Wire Line + 6200 4050 6350 4050 +Wire Wire Line + 6200 4350 6350 4350 +Wire Wire Line + 6350 4350 6350 4250 +Wire Wire Line + 6200 4450 6350 4450 +Wire Wire Line + 6200 4550 6350 4550 +Wire Wire Line + 6350 4550 6350 4650 +$Comp +L adc_bridge_2 U10 +U 1 1 68553AD2 +P 8400 4950 +F 0 "U10" H 8400 4950 60 0000 C CNN +F 1 "adc_bridge_2" H 8400 5100 60 0000 C CNN +F 2 "" H 8400 4950 60 0000 C CNN +F 3 "" H 8400 4950 60 0000 C CNN + 1 8400 4950 + -1 0 0 -1 +$EndComp +Wire Wire Line + 7650 4850 7850 4850 +Wire Wire Line + 7850 4850 7850 4900 +Wire Wire Line + 7650 5050 7850 5050 +Wire Wire Line + 7850 5050 7850 5000 +$Comp +L DC v6 +U 1 1 68553BA2 +P 9600 5350 +F 0 "v6" H 9400 5450 60 0000 C CNN +F 1 "DC" H 9400 5300 60 0000 C CNN +F 2 "R1" H 9300 5350 60 0000 C CNN +F 3 "" H 9600 5350 60 0000 C CNN + 1 9600 5350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9000 4900 9600 4900 +$Comp +L DC v5 +U 1 1 68553C76 +P 9150 5450 +F 0 "v5" H 8950 5550 60 0000 C CNN +F 1 "DC" H 8950 5400 60 0000 C CNN +F 2 "R1" H 8850 5450 60 0000 C CNN +F 3 "" H 9150 5450 60 0000 C CNN + 1 9150 5450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9000 5000 9150 5000 +$Comp +L eSim_GND #PWR04 +U 1 1 68553D86 +P 9150 6050 +F 0 "#PWR04" H 9150 5800 50 0001 C CNN +F 1 "eSim_GND" H 9150 5900 50 0000 C CNN +F 2 "" H 9150 6050 50 0001 C CNN +F 3 "" H 9150 6050 50 0001 C CNN + 1 9150 6050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR05 +U 1 1 68554020 +P 9600 5950 +F 0 "#PWR05" H 9600 5700 50 0001 C CNN +F 1 "eSim_GND" H 9600 5800 50 0000 C CNN +F 2 "" H 9600 5950 50 0001 C CNN +F 3 "" H 9600 5950 50 0001 C CNN + 1 9600 5950 + 1 0 0 -1 +$EndComp +$Comp +L adc_bridge_5 U11 +U 1 1 685543EE +P 8550 4200 +F 0 "U11" H 8550 4200 60 0000 C CNN +F 1 "adc_bridge_5" H 8550 4350 60 0000 C CNN +F 2 "" H 8550 4200 60 0000 C CNN +F 3 "" H 8550 4200 60 0000 C CNN + 1 8550 4200 + -1 0 0 -1 +$EndComp +Wire Wire Line + 8000 4550 7850 4550 +Wire Wire Line + 7850 4550 7850 4650 +Wire Wire Line + 7850 4650 7650 4650 +Wire Wire Line + 7650 4450 8000 4450 +Wire Wire Line + 7650 4250 7750 4250 +Wire Wire Line + 7750 4250 7750 4350 +Wire Wire Line + 7750 4350 8000 4350 +Wire Wire Line + 8000 4250 7800 4250 +Wire Wire Line + 7800 4250 7800 4050 +Wire Wire Line + 7800 4050 7650 4050 +Wire Wire Line + 7650 3850 8000 3850 +Wire Wire Line + 8000 3850 8000 4150 +$Comp +L pulse v7 +U 1 1 685548CF +P 9400 6850 +F 0 "v7" H 9200 6950 60 0000 C CNN +F 1 "pulse" H 9200 6800 60 0000 C CNN +F 2 "R1" H 9100 6850 60 0000 C CNN +F 3 "" H 9400 6850 60 0000 C CNN + 1 9400 6850 + 1 0 0 -1 +$EndComp +$Comp +L pulse v8 +U 1 1 68554963 +P 9900 4950 +F 0 "v8" H 9700 5050 60 0000 C CNN +F 1 "pulse" H 9700 4900 60 0000 C CNN +F 2 "R1" H 9600 4950 60 0000 C CNN +F 3 "" H 9900 4950 60 0000 C CNN + 1 9900 4950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9150 4450 9900 4450 +Wire Wire Line + 9900 4450 9900 4500 +$Comp +L pulse v9 +U 1 1 685549DC +P 10150 4800 +F 0 "v9" H 9950 4900 60 0000 C CNN +F 1 "pulse" H 9950 4750 60 0000 C CNN +F 2 "R1" H 9850 4800 60 0000 C CNN +F 3 "" H 10150 4800 60 0000 C CNN + 1 10150 4800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9150 4350 10150 4350 +$Comp +L pulse v10 +U 1 1 68554A51 +P 10400 4750 +F 0 "v10" H 10200 4850 60 0000 C CNN +F 1 "pulse" H 10200 4700 60 0000 C CNN +F 2 "R1" H 10100 4750 60 0000 C CNN +F 3 "" H 10400 4750 60 0000 C CNN + 1 10400 4750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9150 4250 10400 4250 +Wire Wire Line + 10400 4250 10400 4300 +$Comp +L pulse v11 +U 1 1 68554B71 +P 10700 4600 +F 0 "v11" H 10500 4700 60 0000 C CNN +F 1 "pulse" H 10500 4550 60 0000 C CNN +F 2 "R1" H 10400 4600 60 0000 C CNN +F 3 "" H 10700 4600 60 0000 C CNN + 1 10700 4600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9150 4150 10700 4150 +$Comp +L eSim_GND #PWR06 +U 1 1 68554E75 +P 9800 5600 +F 0 "#PWR06" H 9800 5350 50 0001 C CNN +F 1 "eSim_GND" H 9800 5450 50 0000 C CNN +F 2 "" H 9800 5600 50 0001 C CNN +F 3 "" H 9800 5600 50 0001 C CNN + 1 9800 5600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR07 +U 1 1 68554EAA +P 9900 5550 +F 0 "#PWR07" H 9900 5300 50 0001 C CNN +F 1 "eSim_GND" H 9900 5400 50 0000 C CNN +F 2 "" H 9900 5550 50 0001 C CNN +F 3 "" H 9900 5550 50 0001 C CNN + 1 9900 5550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR08 +U 1 1 68554EDF +P 10150 5400 +F 0 "#PWR08" H 10150 5150 50 0001 C CNN +F 1 "eSim_GND" H 10150 5250 50 0000 C CNN +F 2 "" H 10150 5400 50 0001 C CNN +F 3 "" H 10150 5400 50 0001 C CNN + 1 10150 5400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR09 +U 1 1 68554F14 +P 10400 5350 +F 0 "#PWR09" H 10400 5100 50 0001 C CNN +F 1 "eSim_GND" H 10400 5200 50 0000 C CNN +F 2 "" H 10400 5350 50 0001 C CNN +F 3 "" H 10400 5350 50 0001 C CNN + 1 10400 5350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR010 +U 1 1 68554F49 +P 10700 5200 +F 0 "#PWR010" H 10700 4950 50 0001 C CNN +F 1 "eSim_GND" H 10700 5050 50 0000 C CNN +F 2 "" H 10700 5200 50 0001 C CNN +F 3 "" H 10700 5200 50 0001 C CNN + 1 10700 5200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9900 5400 9900 5550 +Wire Wire Line + 10150 5250 10150 5400 +Wire Wire Line + 10400 5200 10400 5350 +Wire Wire Line + 10700 5050 10700 5200 +$Comp +L adc_bridge_1 U9 +U 1 1 68555813 +P 8300 3750 +F 0 "U9" H 8300 3750 60 0000 C CNN +F 1 "adc_bridge_1" H 8300 3900 60 0000 C CNN +F 2 "" H 8300 3750 60 0000 C CNN +F 3 "" H 8300 3750 60 0000 C CNN + 1 8300 3750 + -1 0 0 -1 +$EndComp +Wire Wire Line + 7650 3700 7750 3700 +$Comp +L DC v4 +U 1 1 6855589C +P 9050 3250 +F 0 "v4" H 8850 3350 60 0000 C CNN +F 1 "DC" H 8850 3200 60 0000 C CNN +F 2 "R1" H 8750 3250 60 0000 C CNN +F 3 "" H 9050 3250 60 0000 C CNN + 1 9050 3250 + 1 0 0 1 +$EndComp +Wire Wire Line + 8900 3700 9050 3700 +$Comp +L eSim_GND #PWR011 +U 1 1 6855597A +P 9200 2800 +F 0 "#PWR011" H 9200 2550 50 0001 C CNN +F 1 "eSim_GND" H 9200 2650 50 0000 C CNN +F 2 "" H 9200 2800 50 0001 C CNN +F 3 "" H 9200 2800 50 0001 C CNN + 1 9200 2800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9050 2800 9200 2800 +$Comp +L plot_v1 U4 +U 1 1 685559EB +P 4900 4450 +F 0 "U4" H 4900 4950 60 0000 C CNN +F 1 "plot_v1" H 5100 4800 60 0000 C CNN +F 2 "" H 4900 4450 60 0000 C CNN +F 3 "" H 4900 4450 60 0000 C CNN + 1 4900 4450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4900 4250 5100 4250 +$Comp +L plot_v1 U2 +U 1 1 68555A8F +P 4700 4500 +F 0 "U2" H 4700 5000 60 0000 C CNN +F 1 "plot_v1" H 4900 4850 60 0000 C CNN +F 2 "" H 4700 4500 60 0000 C CNN +F 3 "" H 4700 4500 60 0000 C CNN + 1 4700 4500 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4700 4300 4700 4350 +Wire Wire Line + 4700 4350 5100 4350 +$Comp +L plot_v1 U1 +U 1 1 68555B2D +P 4550 4700 +F 0 "U1" H 4550 5200 60 0000 C CNN +F 1 "plot_v1" H 4750 5050 60 0000 C CNN +F 2 "" H 4550 4700 60 0000 C CNN +F 3 "" H 4550 4700 60 0000 C CNN + 1 4550 4700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4550 4500 5000 4500 +Wire Wire Line + 5000 4500 5000 4450 +Wire Wire Line + 5000 4450 5100 4450 +$Comp +L plot_v1 U3 +U 1 1 68555BD0 +P 4700 5150 +F 0 "U3" H 4700 5650 60 0000 C CNN +F 1 "plot_v1" H 4900 5500 60 0000 C CNN +F 2 "" H 4700 5150 60 0000 C CNN +F 3 "" H 4700 5150 60 0000 C CNN + 1 4700 5150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4700 4950 5100 4950 +Wire Wire Line + 5100 4950 5100 4550 +$Comp +L adc_bridge_1 U7 +U 1 1 68555C75 +P 5100 5400 +F 0 "U7" H 5100 5400 60 0000 C CNN +F 1 "adc_bridge_1" H 5100 5550 60 0000 C CNN +F 2 "" H 5100 5400 60 0000 C CNN +F 3 "" H 5100 5400 60 0000 C CNN + 1 5100 5400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5650 5350 5650 4850 +Wire Wire Line + 5650 4850 6350 4850 +$Comp +L pulse v2 +U 1 1 68555D3A +P 4150 5800 +F 0 "v2" H 3950 5900 60 0000 C CNN +F 1 "pulse" H 3950 5750 60 0000 C CNN +F 2 "R1" H 3850 5800 60 0000 C CNN +F 3 "" H 4150 5800 60 0000 C CNN + 1 4150 5800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4150 5350 4500 5350 +$Comp +L eSim_GND #PWR012 +U 1 1 68556377 +P 4150 6400 +F 0 "#PWR012" H 4150 6150 50 0001 C CNN +F 1 "eSim_GND" H 4150 6250 50 0000 C CNN +F 2 "" H 4150 6400 50 0001 C CNN +F 3 "" H 4150 6400 50 0001 C CNN + 1 4150 6400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4150 6250 4150 6400 +$Comp +L plot_v1 U5 +U 1 1 68556446 +P 4900 6200 +F 0 "U5" H 4900 6700 60 0000 C CNN +F 1 "plot_v1" H 5100 6550 60 0000 C CNN +F 2 "" H 4900 6200 60 0000 C CNN +F 3 "" H 4900 6200 60 0000 C CNN + 1 4900 6200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4400 5350 4400 6000 +Wire Wire Line + 4400 6000 4900 6000 +Connection ~ 4400 5350 +$Comp +L plot_v1 U12 +U 1 1 68558D65 +P 9500 4100 +F 0 "U12" H 9500 4600 60 0000 C CNN +F 1 "plot_v1" H 9700 4450 60 0000 C CNN +F 2 "" H 9500 4100 60 0000 C CNN +F 3 "" H 9500 4100 60 0000 C CNN + 1 9500 4100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9500 3900 9500 4150 +Connection ~ 9500 4150 +$Comp +L plot_v1 U13 +U 1 1 685592FA +P 9850 4100 +F 0 "U13" H 9850 4600 60 0000 C CNN +F 1 "plot_v1" H 10050 4450 60 0000 C CNN +F 2 "" H 9850 4100 60 0000 C CNN +F 3 "" H 9850 4100 60 0000 C CNN + 1 9850 4100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9850 3900 9850 4250 +Connection ~ 9850 4250 +$Comp +L plot_v1 U14 +U 1 1 685593DD +P 10250 4100 +F 0 "U14" H 10250 4600 60 0000 C CNN +F 1 "plot_v1" H 10450 4450 60 0000 C CNN +F 2 "" H 10250 4100 60 0000 C CNN +F 3 "" H 10250 4100 60 0000 C CNN + 1 10250 4100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 10250 3900 10250 4200 +Wire Wire Line + 10250 4200 10000 4200 +Wire Wire Line + 10000 4200 10000 4350 +Connection ~ 10000 4350 +$Comp +L plot_v1 U15 +U 1 1 685594B5 +P 11150 4550 +F 0 "U15" H 11150 5050 60 0000 C CNN +F 1 "plot_v1" H 11350 4900 60 0000 C CNN +F 2 "" H 11150 4550 60 0000 C CNN +F 3 "" H 11150 4550 60 0000 C CNN + 1 11150 4550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9650 4450 9650 4400 +Wire Wire Line + 9650 4400 11150 4400 +Wire Wire Line + 11150 4400 11150 4350 +Connection ~ 9650 4450 +$Comp +L plot_v1 U16 +U 1 1 68559599 +P 10000 6600 +F 0 "U16" H 10000 7100 60 0000 C CNN +F 1 "plot_v1" H 10200 6950 60 0000 C CNN +F 2 "" H 10000 6600 60 0000 C CNN +F 3 "" H 10000 6600 60 0000 C CNN + 1 10000 6600 + 1 0 0 -1 +$EndComp +Text GLabel 9400 3950 0 60 Input ~ 0 +RST +Wire Wire Line + 9400 3950 9500 3950 +Connection ~ 9500 3950 +Text GLabel 9800 4050 0 60 Input ~ 0 +A +Wire Wire Line + 9800 4050 9850 4050 +Connection ~ 9850 4050 +Text GLabel 10200 4000 0 60 Input ~ 0 +B +Wire Wire Line + 10200 4000 10250 4000 +Connection ~ 10250 4000 +Text GLabel 10950 4250 0 60 Input ~ 0 +C +Wire Wire Line + 10950 4250 10950 4400 +Connection ~ 10950 4400 +Text GLabel 9900 6500 0 60 Input ~ 0 +D +Text GLabel 5150 4000 0 60 Input ~ 0 +W +Wire Wire Line + 5150 4000 5150 4200 +Wire Wire Line + 5150 4200 5050 4200 +Wire Wire Line + 5050 4200 5050 4250 +Connection ~ 5050 4250 +Text GLabel 4850 4250 0 60 Input ~ 0 +X +Wire Wire Line + 4850 4250 4850 4350 +Connection ~ 4850 4350 +Text GLabel 4450 4600 0 60 Input ~ 0 +Y +Wire Wire Line + 4450 4600 4600 4600 +Wire Wire Line + 4600 4600 4600 4500 +Connection ~ 4600 4500 +Text GLabel 4700 5100 0 60 Input ~ 0 +Z +Wire Wire Line + 4700 5100 4800 5100 +Wire Wire Line + 4800 5100 4800 4950 +Connection ~ 4800 4950 +Text GLabel 4600 6150 0 60 Input ~ 0 +CLK +Wire Wire Line + 4600 6150 4650 6150 +Wire Wire Line + 4650 6150 4650 6000 +Connection ~ 4650 6000 +Wire Wire Line + 9600 5800 9600 5950 +Wire Wire Line + 9150 5900 9150 6050 +$Comp +L eSim_GND #PWR013 +U 1 1 6855893A +P 9800 7350 +F 0 "#PWR013" H 9800 7100 50 0001 C CNN +F 1 "eSim_GND" H 9800 7200 50 0000 C CNN +F 2 "" H 9800 7350 50 0001 C CNN +F 3 "" H 9800 7350 50 0001 C CNN + 1 9800 7350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9800 7200 9800 7350 +Wire Wire Line + 9150 4550 9400 4550 +Wire Wire Line + 9400 4550 9400 6400 +Wire Wire Line + 9400 7300 9700 7300 +Wire Wire Line + 9700 7300 9700 7200 +Wire Wire Line + 9700 7200 9800 7200 +Wire Wire Line + 9400 6300 9700 6300 +Wire Wire Line + 9700 6300 9700 6400 +Wire Wire Line + 9700 6400 10000 6400 +Connection ~ 9400 6300 +Wire Wire Line + 9900 6500 9900 6400 +Connection ~ 9900 6400 +$Comp +L MC14076B X? +U 1 1 6855C3A2 +P 7000 4350 +F 0 "X?" H 7000 3400 60 0000 C CNN +F 1 "MC14076B" H 7050 5200 60 0000 C CNN +F 2 "" H 7000 4350 60 0001 C CNN +F 3 "" H 7000 4350 60 0001 C CNN + 1 7000 4350 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC14076B/MC14076B_test_Previous_Values.xml b/library/SubcircuitLibrary/MC14076B/MC14076B_test_Previous_Values.xml new file mode 100644 index 000000000..ee95fe450 --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/MC14076B_test_Previous_Values.xml @@ -0,0 +1 @@ +dc0dc0dc0dc0pulse0550n0.1n0.1n1m9mpulse5050n0.1n0.1n2m8mpulse0550n0.1n0.1n1m9mpulse580n2m0.1n0.1n2m8mpulse0500.1n0.1n4m9mdc9pulse0500.1n0.1n1m2madc_bridgedac_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeC:\FOSSEE\eSim\library\SubcircuitLibrary\MC14076BtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0110msusms \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14076B/analysis b/library/SubcircuitLibrary/MC14076B/analysis new file mode 100644 index 000000000..b21a9e13b --- /dev/null +++ b/library/SubcircuitLibrary/MC14076B/analysis @@ -0,0 +1 @@ +.tran 1e-06 10e-03 0e-03 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14521B/MC14521B.cir b/library/SubcircuitLibrary/MC14521B/MC14521B.cir new file mode 100644 index 000000000..f97e4245e --- /dev/null +++ b/library/SubcircuitLibrary/MC14521B/MC14521B.cir @@ -0,0 +1,27 @@ +.title KiCad schematic +U18 Net-_U10-Pad1_ Net-_U17-Pad5_ unconnected-_U18-Pad3_ Net-_U10-Pad4_ Net-_U18-Pad5_ unconnected-_U18-Pad6_ d_tff +U16 Net-_U10-Pad1_ Net-_U15-Pad5_ unconnected-_U16-Pad3_ Net-_U10-Pad4_ Net-_U16-Pad5_ unconnected-_U16-Pad6_ d_tff +U17 Net-_U10-Pad1_ Net-_U16-Pad5_ unconnected-_U17-Pad3_ Net-_U10-Pad4_ Net-_U17-Pad5_ unconnected-_U17-Pad6_ d_tff +U23 Net-_U10-Pad1_ Net-_U22-Pad5_ unconnected-_U23-Pad3_ Net-_U10-Pad4_ Net-_U23-Pad5_ unconnected-_U23-Pad6_ d_tff +U24 Net-_U10-Pad1_ Net-_U23-Pad5_ unconnected-_U24-Pad3_ Net-_U10-Pad4_ Net-_U24-Pad5_ unconnected-_U24-Pad6_ d_tff +U22 Net-_U10-Pad1_ Net-_U21-Pad5_ unconnected-_U22-Pad3_ Net-_U10-Pad4_ Net-_U22-Pad5_ unconnected-_U22-Pad6_ d_tff +U20 Net-_U10-Pad1_ Net-_U19-Pad5_ unconnected-_U20-Pad3_ Net-_U10-Pad4_ Net-_U20-Pad5_ unconnected-_U20-Pad6_ d_tff +U21 Net-_U10-Pad1_ Net-_U20-Pad5_ unconnected-_U21-Pad3_ Net-_U10-Pad4_ Net-_U21-Pad5_ unconnected-_U21-Pad6_ d_tff +U19 Net-_U10-Pad1_ Net-_U18-Pad5_ unconnected-_U19-Pad3_ Net-_U10-Pad4_ Net-_U19-Pad5_ unconnected-_U19-Pad6_ d_tff +U25 Net-_U10-Pad1_ Net-_U24-Pad5_ unconnected-_U25-Pad3_ Net-_U10-Pad4_ Net-_U25-Pad5_ unconnected-_U25-Pad6_ d_tff +U1 Net-_U2-Pad2_ Net-_U10-Pad4_ Net-_U10-Pad1_ Net-_U2-Pad5_ Net-_U3-Pad5_ Net-_U4-Pad5_ Net-_U5-Pad5_ Net-_U6-Pad5_ Net-_U7-Pad5_ Net-_U19-Pad5_ Net-_U20-Pad5_ Net-_U21-Pad5_ Net-_U22-Pad5_ Net-_U23-Pad5_ Net-_U24-Pad5_ Net-_U25-Pad5_ PORT +U14 Net-_U10-Pad1_ Net-_U13-Pad5_ unconnected-_U14-Pad3_ Net-_U10-Pad4_ Net-_U14-Pad5_ unconnected-_U14-Pad6_ d_tff +U15 Net-_U10-Pad1_ Net-_U14-Pad5_ unconnected-_U15-Pad3_ Net-_U10-Pad4_ Net-_U15-Pad5_ unconnected-_U15-Pad6_ d_tff +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ unconnected-_U10-Pad3_ Net-_U10-Pad4_ Net-_U10-Pad5_ unconnected-_U10-Pad6_ d_tff +U8 Net-_U10-Pad1_ Net-_U7-Pad5_ unconnected-_U8-Pad3_ Net-_U10-Pad4_ Net-_U8-Pad5_ unconnected-_U8-Pad6_ d_tff +U9 Net-_U10-Pad1_ Net-_U8-Pad5_ unconnected-_U9-Pad3_ Net-_U10-Pad4_ Net-_U10-Pad2_ unconnected-_U9-Pad6_ d_tff +U11 Net-_U10-Pad1_ Net-_U10-Pad5_ unconnected-_U11-Pad3_ Net-_U10-Pad4_ Net-_U11-Pad5_ unconnected-_U11-Pad6_ d_tff +U12 Net-_U10-Pad1_ Net-_U11-Pad5_ unconnected-_U12-Pad3_ Net-_U10-Pad4_ Net-_U12-Pad5_ unconnected-_U12-Pad6_ d_tff +U13 Net-_U10-Pad1_ Net-_U12-Pad5_ unconnected-_U13-Pad3_ Net-_U10-Pad4_ Net-_U13-Pad5_ unconnected-_U13-Pad6_ d_tff +U7 Net-_U10-Pad1_ Net-_U6-Pad5_ unconnected-_U7-Pad3_ Net-_U10-Pad4_ Net-_U7-Pad5_ unconnected-_U7-Pad6_ d_tff +U6 Net-_U10-Pad1_ Net-_U5-Pad5_ unconnected-_U6-Pad3_ Net-_U10-Pad4_ Net-_U6-Pad5_ unconnected-_U6-Pad6_ d_tff +U5 Net-_U10-Pad1_ Net-_U4-Pad5_ unconnected-_U5-Pad3_ Net-_U10-Pad4_ Net-_U5-Pad5_ unconnected-_U5-Pad6_ d_tff +U4 Net-_U10-Pad1_ Net-_U3-Pad5_ unconnected-_U4-Pad3_ Net-_U10-Pad4_ Net-_U4-Pad5_ unconnected-_U4-Pad6_ d_tff +U2 Net-_U10-Pad1_ Net-_U2-Pad2_ unconnected-_U2-Pad3_ Net-_U10-Pad4_ Net-_U2-Pad5_ unconnected-_U2-Pad6_ d_tff +U3 Net-_U10-Pad1_ Net-_U2-Pad5_ unconnected-_U3-Pad3_ Net-_U10-Pad4_ Net-_U3-Pad5_ unconnected-_U3-Pad6_ d_tff +.end diff --git a/library/SubcircuitLibrary/MC14521B/MC14521B.cir.out b/library/SubcircuitLibrary/MC14521B/MC14521B.cir.out new file mode 100644 index 000000000..bfb1dc37f --- /dev/null +++ b/library/SubcircuitLibrary/MC14521B/MC14521B.cir.out @@ -0,0 +1,108 @@ +.title kicad schematic + +* u18 net-_u10-pad1_ net-_u17-pad5_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ d_tff +* u16 net-_u10-pad1_ net-_u15-pad5_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ d_tff +* u17 net-_u10-pad1_ net-_u16-pad5_ unconnected-_u17-pad3_ net-_u10-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_tff +* u23 net-_u10-pad1_ net-_u22-pad5_ unconnected-_u23-pad3_ net-_u10-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ d_tff +* u24 net-_u10-pad1_ net-_u23-pad5_ unconnected-_u24-pad3_ net-_u10-pad4_ net-_u24-pad5_ unconnected-_u24-pad6_ d_tff +* u22 net-_u10-pad1_ net-_u21-pad5_ unconnected-_u22-pad3_ net-_u10-pad4_ net-_u22-pad5_ unconnected-_u22-pad6_ d_tff +* u20 net-_u10-pad1_ net-_u19-pad5_ unconnected-_u20-pad3_ net-_u10-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ d_tff +* u21 net-_u10-pad1_ net-_u20-pad5_ unconnected-_u21-pad3_ net-_u10-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ d_tff +* u19 net-_u10-pad1_ net-_u18-pad5_ unconnected-_u19-pad3_ net-_u10-pad4_ net-_u19-pad5_ unconnected-_u19-pad6_ d_tff +* u25 net-_u10-pad1_ net-_u24-pad5_ unconnected-_u25-pad3_ net-_u10-pad4_ net-_u25-pad5_ unconnected-_u25-pad6_ d_tff +* u1 net-_u2-pad2_ net-_u10-pad4_ net-_u10-pad1_ net-_u2-pad5_ net-_u3-pad5_ net-_u4-pad5_ net-_u5-pad5_ net-_u6-pad5_ net-_u7-pad5_ net-_u19-pad5_ net-_u20-pad5_ net-_u21-pad5_ net-_u22-pad5_ net-_u23-pad5_ net-_u24-pad5_ net-_u25-pad5_ port +* u14 net-_u10-pad1_ net-_u13-pad5_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_tff +* u15 net-_u10-pad1_ net-_u14-pad5_ unconnected-_u15-pad3_ net-_u10-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ d_tff +* u10 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ d_tff +* u8 net-_u10-pad1_ net-_u7-pad5_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u8-pad5_ unconnected-_u8-pad6_ d_tff +* u9 net-_u10-pad1_ net-_u8-pad5_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u10-pad2_ unconnected-_u9-pad6_ d_tff +* u11 net-_u10-pad1_ net-_u10-pad5_ unconnected-_u11-pad3_ net-_u10-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ d_tff +* u12 net-_u10-pad1_ net-_u11-pad5_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ d_tff +* u13 net-_u10-pad1_ net-_u12-pad5_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ d_tff +* u7 net-_u10-pad1_ net-_u6-pad5_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u7-pad5_ unconnected-_u7-pad6_ d_tff +* u6 net-_u10-pad1_ net-_u5-pad5_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u6-pad5_ unconnected-_u6-pad6_ d_tff +* u5 net-_u10-pad1_ net-_u4-pad5_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ d_tff +* u4 net-_u10-pad1_ net-_u3-pad5_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u4-pad5_ unconnected-_u4-pad6_ d_tff +* u2 net-_u10-pad1_ net-_u2-pad2_ unconnected-_u2-pad3_ net-_u10-pad4_ net-_u2-pad5_ unconnected-_u2-pad6_ d_tff +* u3 net-_u10-pad1_ net-_u2-pad5_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ d_tff +a1 net-_u10-pad1_ net-_u17-pad5_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ u18 +a2 net-_u10-pad1_ net-_u15-pad5_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ u16 +a3 net-_u10-pad1_ net-_u16-pad5_ unconnected-_u17-pad3_ net-_u10-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a4 net-_u10-pad1_ net-_u22-pad5_ unconnected-_u23-pad3_ net-_u10-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ u23 +a5 net-_u10-pad1_ net-_u23-pad5_ unconnected-_u24-pad3_ net-_u10-pad4_ net-_u24-pad5_ unconnected-_u24-pad6_ u24 +a6 net-_u10-pad1_ net-_u21-pad5_ unconnected-_u22-pad3_ net-_u10-pad4_ net-_u22-pad5_ unconnected-_u22-pad6_ u22 +a7 net-_u10-pad1_ net-_u19-pad5_ unconnected-_u20-pad3_ net-_u10-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ u20 +a8 net-_u10-pad1_ net-_u20-pad5_ unconnected-_u21-pad3_ net-_u10-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ u21 +a9 net-_u10-pad1_ net-_u18-pad5_ unconnected-_u19-pad3_ net-_u10-pad4_ net-_u19-pad5_ unconnected-_u19-pad6_ u19 +a10 net-_u10-pad1_ net-_u24-pad5_ unconnected-_u25-pad3_ net-_u10-pad4_ net-_u25-pad5_ unconnected-_u25-pad6_ u25 +a11 net-_u10-pad1_ net-_u13-pad5_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a12 net-_u10-pad1_ net-_u14-pad5_ unconnected-_u15-pad3_ net-_u10-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ u15 +a13 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ u10 +a14 net-_u10-pad1_ net-_u7-pad5_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u8-pad5_ unconnected-_u8-pad6_ u8 +a15 net-_u10-pad1_ net-_u8-pad5_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u10-pad2_ unconnected-_u9-pad6_ u9 +a16 net-_u10-pad1_ net-_u10-pad5_ unconnected-_u11-pad3_ net-_u10-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ u11 +a17 net-_u10-pad1_ net-_u11-pad5_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ u12 +a18 net-_u10-pad1_ net-_u12-pad5_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ u13 +a19 net-_u10-pad1_ net-_u6-pad5_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u7-pad5_ unconnected-_u7-pad6_ u7 +a20 net-_u10-pad1_ net-_u5-pad5_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u6-pad5_ unconnected-_u6-pad6_ u6 +a21 net-_u10-pad1_ net-_u4-pad5_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ u5 +a22 net-_u10-pad1_ net-_u3-pad5_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u4-pad5_ unconnected-_u4-pad6_ u4 +a23 net-_u10-pad1_ net-_u2-pad2_ unconnected-_u2-pad3_ net-_u10-pad4_ net-_u2-pad5_ unconnected-_u2-pad6_ u2 +a24 net-_u10-pad1_ net-_u2-pad5_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ u3 +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u18 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u16 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u17 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u23 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u24 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u22 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u20 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u21 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u19 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u25 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u14 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u15 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u10 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u8 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u9 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u11 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u12 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u13 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u7 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u6 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u5 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u4 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u2 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u3 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC14521B/MC14521B.kicad_sch b/library/SubcircuitLibrary/MC14521B/MC14521B.kicad_sch new file mode 100644 index 000000000..b52e05ac4 --- /dev/null +++ b/library/SubcircuitLibrary/MC14521B/MC14521B.kicad_sch @@ -0,0 +1,2691 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 1cece7f6-1e53-470b-b111-cd14b82baf2c) + + (paper "User" 1431.8 279.4) + + (lib_symbols + (symbol "eSim_Digital:d_tff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_tff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_tff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "T" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Out" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Nout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 840.74 168.91) (diameter 0) (color 0 0 0 0) + (uuid 03d2338b-464f-4a53-aa8f-2212587f8f4b) + ) + (junction (at 960.12 168.91) (diameter 0) (color 0 0 0 0) + (uuid 04e4a122-403d-4754-9bd9-4f47e6403550) + ) + (junction (at 905.51 130.81) (diameter 0) (color 0 0 0 0) + (uuid 07ff3a78-9919-44fc-90f4-3a8fb08352ee) + ) + (junction (at 590.55 130.81) (diameter 0) (color 0 0 0 0) + (uuid 0a881e26-fcdc-49da-8c43-982cfe44f6f2) + ) + (junction (at 899.16 142.24) (diameter 0) (color 0 0 0 0) + (uuid 0d350248-d93c-433f-a759-80014e0695aa) + ) + (junction (at 194.31 130.81) (diameter 0) (color 0 0 0 0) + (uuid 11353caf-f3f6-47cc-a12c-e36369ff9ab8) + ) + (junction (at 308.61 130.81) (diameter 0) (color 0 0 0 0) + (uuid 15acb759-4db5-4cbd-88a0-51b86d293f31) + ) + (junction (at 919.48 168.91) (diameter 0) (color 0 0 0 0) + (uuid 1c975ac2-1a52-405d-86f4-f83447e3fc34) + ) + (junction (at 984.25 130.81) (diameter 0) (color 0 0 0 0) + (uuid 1f1cdc15-4526-4535-b052-87dc38d27b02) + ) + (junction (at 468.63 130.81) (diameter 0) (color 0 0 0 0) + (uuid 20434ebd-fe21-47c7-ab46-b58d09d81225) + ) + (junction (at 351.79 130.81) (diameter 0) (color 0 0 0 0) + (uuid 26ba9e1b-137b-4463-8791-ad520d004e83) + ) + (junction (at 406.4 168.91) (diameter 0) (color 0 0 0 0) + (uuid 2a854b62-9aab-4856-b5d7-b3e5b4c5231b) + ) + (junction (at 826.77 130.81) (diameter 0) (color 0 0 0 0) + (uuid 2e0802ed-52df-42f0-8f00-d836b7debe24) + ) + (junction (at 1056.64 142.24) (diameter 0) (color 0 0 0 0) + (uuid 3368788f-bbcd-48af-98f7-ca58448d8449) + ) + (junction (at 387.35 130.81) (diameter 0) (color 0 0 0 0) + (uuid 33cde3a0-7ac8-4052-a28b-8e52be78306e) + ) + (junction (at 881.38 168.91) (diameter 0) (color 0 0 0 0) + (uuid 39be9b0c-b562-4f5f-a704-cfff8c9f9d1f) + ) + (junction (at 748.03 130.81) (diameter 0) (color 0 0 0 0) + (uuid 3b57574e-8f47-4c68-b1a9-9d0a9266fec0) + ) + (junction (at 273.05 130.81) (diameter 0) (color 0 0 0 0) + (uuid 3deed081-de1f-4c8d-81c3-8fff89672bf3) + ) + (junction (at 762 168.91) (diameter 0) (color 0 0 0 0) + (uuid 3e8db1ad-a3f7-40a2-9bdb-efb59adbfadf) + ) + (junction (at 941.07 130.81) (diameter 0) (color 0 0 0 0) + (uuid 40e46dc8-9709-43fe-99d3-81b419618f07) + ) + (junction (at 382.27 142.24) (diameter 0) (color 0 0 0 0) + (uuid 4301c8f7-02a9-46d0-95aa-52a62b2ddc7e) + ) + (junction (at 998.22 168.91) (diameter 0) (color 0 0 0 0) + (uuid 437d7bdf-e831-4888-b2ce-567019205c3f) + ) + (junction (at 935.99 142.24) (diameter 0) (color 0 0 0 0) + (uuid 43f1c643-ccac-4532-9073-750c46778df0) + ) + (junction (at 1019.81 130.81) (diameter 0) (color 0 0 0 0) + (uuid 45d41ceb-7b15-4a18-8b09-6bdd174a4baf) + ) + (junction (at 547.37 130.81) (diameter 0) (color 0 0 0 0) + (uuid 49d6bdaa-6c12-4b50-898e-05ac1e689431) + ) + (junction (at 626.11 130.81) (diameter 0) (color 0 0 0 0) + (uuid 4aaca8ca-2472-4efb-8f7c-7bfffd9751eb) + ) + (junction (at 669.29 130.81) (diameter 0) (color 0 0 0 0) + (uuid 4dc6b1e8-c49f-4338-af4c-d3c380920820) + ) + (junction (at 645.16 168.91) (diameter 0) (color 0 0 0 0) + (uuid 4fbb376a-4f4d-4e86-af29-9838ea4f5a2e) + ) + (junction (at 151.13 130.81) (diameter 0) (color 0 0 0 0) + (uuid 50b851d3-bec8-448a-a41a-cb9f349ec25d) + ) + (junction (at 683.26 168.91) (diameter 0) (color 0 0 0 0) + (uuid 50d82b35-8553-41f1-847b-a89e712dea8c) + ) + (junction (at 723.9 168.91) (diameter 0) (color 0 0 0 0) + (uuid 553acae0-b999-4554-a1b7-a4c488f4e89e) + ) + (junction (at 170.18 168.91) (diameter 0) (color 0 0 0 0) + (uuid 5bee60a7-4743-4f97-9302-2ac228389e7f) + ) + (junction (at 229.87 130.81) (diameter 0) (color 0 0 0 0) + (uuid 71c822ed-7227-4ed6-b5fd-d3767e8131bc) + ) + (junction (at 430.53 130.81) (diameter 0) (color 0 0 0 0) + (uuid 74d57a5a-6ba4-4f70-8018-9c40015faaf2) + ) + (junction (at 525.78 168.91) (diameter 0) (color 0 0 0 0) + (uuid 76f7947a-f1c7-4e68-935e-5027b8b2552e) + ) + (junction (at 783.59 130.81) (diameter 0) (color 0 0 0 0) + (uuid 78493753-734e-4eb3-8005-15639322a400) + ) + (junction (at 977.9 142.24) (diameter 0) (color 0 0 0 0) + (uuid 86bb9e45-2918-45ef-92ca-438af02bb496) + ) + (junction (at 566.42 168.91) (diameter 0) (color 0 0 0 0) + (uuid 9264d98e-c862-4461-908e-56211ba77532) + ) + (junction (at 287.02 168.91) (diameter 0) (color 0 0 0 0) + (uuid 99678e57-bc4b-4262-aa14-f10398f33152) + ) + (junction (at 604.52 168.91) (diameter 0) (color 0 0 0 0) + (uuid a190ec12-08ab-44ca-9d47-4b71ab32df56) + ) + (junction (at 1014.73 142.24) (diameter 0) (color 0 0 0 0) + (uuid a2975e4c-5d72-450c-b70a-9ad1a65627c1) + ) + (junction (at 208.28 168.91) (diameter 0) (color 0 0 0 0) + (uuid a965d49e-7ecd-4e3e-b869-374b11da2d24) + ) + (junction (at 248.92 168.91) (diameter 0) (color 0 0 0 0) + (uuid ac178c90-8468-4c54-856c-c75b41a73f61) + ) + (junction (at 327.66 168.91) (diameter 0) (color 0 0 0 0) + (uuid ca5566ca-0cb5-43f2-b20d-56d4eb065bce) + ) + (junction (at 345.44 142.24) (diameter 0) (color 0 0 0 0) + (uuid caa3d738-c926-48bb-bd73-b2a0058539d3) + ) + (junction (at 303.53 142.24) (diameter 0) (color 0 0 0 0) + (uuid d1828830-d4c4-4006-a469-81a068576aa0) + ) + (junction (at 802.64 168.91) (diameter 0) (color 0 0 0 0) + (uuid d84be397-b53a-4855-ba64-1518cec0d8f2) + ) + (junction (at 365.76 168.91) (diameter 0) (color 0 0 0 0) + (uuid d9aae076-af58-4e70-9ba2-9d405af022b0) + ) + (junction (at 266.7 142.24) (diameter 0) (color 0 0 0 0) + (uuid ddc902b3-c798-490f-8407-f539d633c8e7) + ) + (junction (at 187.96 142.24) (diameter 0) (color 0 0 0 0) + (uuid de7faef7-7a4b-4b94-8b2b-f8de9eaf98a0) + ) + (junction (at 444.5 168.91) (diameter 0) (color 0 0 0 0) + (uuid dfcd1d2c-79f0-4ab5-bdc8-9646d121e299) + ) + (junction (at 224.79 142.24) (diameter 0) (color 0 0 0 0) + (uuid e0ee0f66-d9f4-41ad-827a-8bfdc1e9c23a) + ) + (junction (at 862.33 130.81) (diameter 0) (color 0 0 0 0) + (uuid e670ff05-a93f-4774-9184-3cf393992ce8) + ) + (junction (at 857.25 142.24) (diameter 0) (color 0 0 0 0) + (uuid e7684c39-a920-439d-aec5-c4476b71cc9c) + ) + (junction (at 1038.86 168.91) (diameter 0) (color 0 0 0 0) + (uuid ec148780-2420-41a4-825a-4b0573bfb24d) + ) + (junction (at 704.85 130.81) (diameter 0) (color 0 0 0 0) + (uuid f1ea4032-12dd-48f1-86ac-7133d5a9a91b) + ) + (junction (at 487.68 168.91) (diameter 0) (color 0 0 0 0) + (uuid f42d6ba2-b5fe-45cf-ba4a-44841a7f6ac0) + ) + (junction (at 511.81 130.81) (diameter 0) (color 0 0 0 0) + (uuid f64d9062-c419-4f22-a9c8-de67f81b055f) + ) + + (no_connect (at 998.22 134.62) (uuid 040ba6fc-0bd3-491c-ab24-3f28e2c28425)) + (no_connect (at 974.09 158.75) (uuid 06a1ec30-7e21-48ea-af83-44469f5c6c7b)) + (no_connect (at 840.74 134.62) (uuid 08cdaad4-b209-4413-81d6-6fe2cea2e21b)) + (no_connect (at 248.92 134.62) (uuid 0c926ebe-5b25-43d8-8c47-2d95910c270e)) + (no_connect (at 300.99 158.75) (uuid 15117bb1-04ed-40cd-93e9-a80d77976082)) + (no_connect (at 287.02 134.62) (uuid 1e4b2329-93de-4e06-a315-31bdba7c360f)) + (no_connect (at 1012.19 158.75) (uuid 357641ad-21d6-4e4b-acfb-6542352b6f42)) + (no_connect (at 1090.93 158.75) (uuid 382103a1-2420-4932-9e7d-f293f185ed6d)) + (no_connect (at 895.35 158.75) (uuid 46a572ca-4e7a-4149-bd12-510a599f08d1)) + (no_connect (at 816.61 158.75) (uuid 5500f9ce-757c-4f04-b1b5-382f3da414bb)) + (no_connect (at 539.75 158.75) (uuid 5857da05-32c4-40d7-8c66-94452440b27f)) + (no_connect (at 379.73 158.75) (uuid 5bf17659-cac7-451e-a677-e8c89b151884)) + (no_connect (at 1076.96 134.62) (uuid 5e4a4fac-66c7-4cd5-ae94-060f76a6296b)) + (no_connect (at 566.42 134.62) (uuid 5f91440c-4cc1-48a9-8597-17b586c79166)) + (no_connect (at 881.38 134.62) (uuid 616b0d6e-9f34-4bd5-8425-29efbc29bba8)) + (no_connect (at 604.52 134.62) (uuid 675e24e5-f093-4781-a7f4-6c0530e57508)) + (no_connect (at 487.68 134.62) (uuid 6f14de7e-d6ba-4b05-98d4-ae744ce03596)) + (no_connect (at 960.12 134.62) (uuid 70c36970-128d-4261-bef0-c9026b39a007)) + (no_connect (at 645.16 134.62) (uuid 74175484-6450-417c-b688-8998fe6847f1)) + (no_connect (at 919.48 134.62) (uuid 74481b88-ced7-4ffb-8abd-7a7d8334a939)) + (no_connect (at 762 134.62) (uuid 76166e9f-23cf-4733-981f-255151a8be9d)) + (no_connect (at 170.18 134.62) (uuid 7e1b07c4-fb05-4eab-a231-d1c450b44673)) + (no_connect (at 723.9 134.62) (uuid 8138cb17-f6ba-45a7-8419-64a2c1b3dea8)) + (no_connect (at 444.5 134.62) (uuid 83aa508a-f820-4cb2-9b25-af32f754e272)) + (no_connect (at 406.4 134.62) (uuid 8a2e4436-48e8-4be2-b103-40f336675b59)) + (no_connect (at 697.23 158.75) (uuid 8badb453-584c-4175-b36c-b13c360b04dd)) + (no_connect (at 933.45 158.75) (uuid 8ca26976-35f8-4feb-bfaa-4db5f70da4fe)) + (no_connect (at 854.71 158.75) (uuid 8d897282-04c0-42fa-808c-c9b0689624d0)) + (no_connect (at 737.87 158.75) (uuid 91181a83-d7a8-4db7-8196-d8db54fd32ca)) + (no_connect (at 683.26 134.62) (uuid 91ae0695-6fbb-4951-9043-e62a1e884d8f)) + (no_connect (at 525.78 134.62) (uuid 945cd077-e76d-44dd-b5c7-d7e37395571d)) + (no_connect (at 327.66 134.62) (uuid 978dca45-8e1a-409c-b09e-5c26e0cdaf9b)) + (no_connect (at 341.63 158.75) (uuid 9c493b39-92c1-48fa-98c1-6b5a35d7a8e9)) + (no_connect (at 208.28 134.62) (uuid aa987eda-4335-47e2-8513-20bf03b3cd96)) + (no_connect (at 1052.83 158.75) (uuid b2e5b082-f39e-45b4-862f-9a93acb44f15)) + (no_connect (at 365.76 134.62) (uuid b4fdf5e2-7805-494f-96ad-96a493448b00)) + (no_connect (at 184.15 158.75) (uuid b5e798f9-5d56-40ec-aed3-1b25fccb3c68)) + (no_connect (at 458.47 158.75) (uuid be559c04-d96c-4e20-95f5-60f71a99b56c)) + (no_connect (at 659.13 158.75) (uuid bf60e549-1914-4682-b200-5f2677d88f26)) + (no_connect (at 501.65 158.75) (uuid c45018f4-2f1c-4d5c-9411-57260555e16a)) + (no_connect (at 420.37 158.75) (uuid c5227a67-1854-419e-99e7-526b9ea51a64)) + (no_connect (at 262.89 158.75) (uuid c70cbcd5-91f0-446d-b37a-75d9bf645719)) + (no_connect (at 222.25 158.75) (uuid d6d73d81-d4e7-4b8a-9bea-58eacd57c406)) + (no_connect (at 775.97 158.75) (uuid da038ec2-98ac-4ca9-8541-a8b36d1cc0a4)) + (no_connect (at 802.64 134.62) (uuid dacf3a50-a661-4393-98f5-cc070803a34f)) + (no_connect (at 618.49 158.75) (uuid ea3b191c-d49a-4cf8-acea-2b29a81ba385)) + (no_connect (at 580.39 158.75) (uuid eecebb8a-6b61-420f-82eb-34e336e934bd)) + (no_connect (at 1038.86 134.62) (uuid fff52922-f1a3-490f-ba35-c17b69ee8ed4)) + + (wire (pts (xy 1056.64 158.75) (xy 1062.99 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00166617-e302-42b7-b241-c34d5f64a44e) + ) + (wire (pts (xy 124.46 130.81) (xy 124.46 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00521c22-4b46-403d-b3d4-a06611d5f0e9) + ) + (wire (pts (xy 1076.96 168.91) (xy 1076.96 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00ba5f26-4b02-452e-be5f-b3ba60023ff5) + ) + (wire (pts (xy 539.75 142.24) (xy 542.29 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01547151-ab72-40c9-b190-46317ca15e16) + ) + (wire (pts (xy 857.25 118.11) (xy 1107.44 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 021f78e6-5073-4978-a087-c08502f8be1c) + ) + (wire (pts (xy 222.25 142.24) (xy 224.79 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02e7032f-534d-4270-8f22-4bee48f6f334) + ) + (wire (pts (xy 387.35 142.24) (xy 387.35 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03774a2f-2fcf-4e3b-943d-252c0cb78c55) + ) + (wire (pts (xy 899.16 158.75) (xy 905.51 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04754a9a-88cc-43e5-8f8c-42919ce50d23) + ) + (wire (pts (xy 287.02 168.91) (xy 327.66 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0529b7e0-0eed-451c-8241-54ac80c02097) + ) + (wire (pts (xy 194.31 130.81) (xy 229.87 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06e4e95e-249c-43a3-b967-23c91494fef4) + ) + (wire (pts (xy 327.66 168.91) (xy 365.76 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 089b539d-835a-421c-a6c4-bdb52c6d6d4f) + ) + (wire (pts (xy 977.9 158.75) (xy 984.25 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a397a97-487c-44dd-a7bf-6719ebd3e550) + ) + (wire (pts (xy 468.63 142.24) (xy 468.63 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a41b381-96e1-43e0-85d1-2de4a5935276) + ) + (wire (pts (xy 379.73 142.24) (xy 382.27 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a8ed7da-aa34-4ac3-a1b8-1ee527e4a2d6) + ) + (wire (pts (xy 604.52 168.91) (xy 604.52 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ab0a37b-2dba-416f-b6fc-b94f963adb8c) + ) + (wire (pts (xy 224.79 142.24) (xy 224.79 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c906411-562a-4946-acc3-a4691997c7ae) + ) + (wire (pts (xy 1104.9 120.65) (xy 1104.9 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e992434-0dbc-4877-867a-b81cb1a3d8ce) + ) + (wire (pts (xy 820.42 142.24) (xy 820.42 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f4ad6a4-4bfd-464e-b23a-7095ce93cc0a) + ) + (wire (pts (xy 308.61 142.24) (xy 313.69 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fcda046-156f-4499-8fa8-b7df9a0a3f76) + ) + (wire (pts (xy 194.31 130.81) (xy 194.31 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1038a5d2-ac09-464d-8f7f-4c8bdfdd9460) + ) + (wire (pts (xy 170.18 168.91) (xy 208.28 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 108e4fe3-9bf0-49e5-a8fa-89650c410802) + ) + (wire (pts (xy 783.59 142.24) (xy 788.67 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11351271-dc56-4b84-ab25-b60e5fc48b67) + ) + (wire (pts (xy 748.03 130.81) (xy 783.59 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1248b274-10eb-47cd-962d-31ffd5f659ab) + ) + (wire (pts (xy 248.92 168.91) (xy 287.02 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13eada92-b019-4bfc-89a3-db518cdf193a) + ) + (wire (pts (xy 229.87 142.24) (xy 234.95 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14525068-d84f-4c22-898e-b8bd31d7b8d9) + ) + (wire (pts (xy 580.39 142.24) (xy 584.2 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15d5be1d-bb27-4731-88f6-ca020811e2f0) + ) + (wire (pts (xy 683.26 168.91) (xy 683.26 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1653d755-8d30-4151-b1ee-700edcaf8855) + ) + (wire (pts (xy 669.29 130.81) (xy 704.85 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 197c1286-d687-4fb4-a04a-019e551a8e3f) + ) + (wire (pts (xy 1014.73 142.24) (xy 1014.73 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b8e6619-89dc-4c9f-8c1c-a43247e0684b) + ) + (wire (pts (xy 542.29 158.75) (xy 552.45 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1be5cba4-9ba0-445a-96f5-8ff123aedc4f) + ) + (wire (pts (xy 1106.17 119.38) (xy 899.16 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c12c5d8-5bbb-4010-8434-3ceb5adffae0) + ) + (wire (pts (xy 857.25 142.24) (xy 857.25 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21f87ca3-1cd0-471b-9c3e-b717de4dc95c) + ) + (wire (pts (xy 857.25 158.75) (xy 867.41 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22931f91-813a-4b84-ada9-2e12a9883309) + ) + (wire (pts (xy 487.68 168.91) (xy 487.68 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23862e1e-9fb3-467e-985f-e3fe23991452) + ) + (wire (pts (xy 273.05 130.81) (xy 273.05 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 248681e3-51f4-4031-9fb3-c9fc69825765) + ) + (wire (pts (xy 1019.81 142.24) (xy 1019.81 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24e70e69-3983-4925-9c48-c2b339e382e5) + ) + (wire (pts (xy 208.28 168.91) (xy 208.28 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 266be957-a295-4f1e-a2fc-43118ec419a2) + ) + (wire (pts (xy 941.07 142.24) (xy 946.15 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 288f3455-df52-4940-8ccf-14d941495772) + ) + (wire (pts (xy 406.4 168.91) (xy 406.4 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29831f0d-4f95-4ea9-aa26-1d8abc00cb4d) + ) + (wire (pts (xy 273.05 130.81) (xy 308.61 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29ee6354-0c06-449c-afe7-7507e9bc4ff2) + ) + (wire (pts (xy 802.64 168.91) (xy 840.74 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a1220d9-9ca9-446f-a58d-529c8518ba96) + ) + (wire (pts (xy 621.03 158.75) (xy 631.19 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b2f4805-3e73-4f31-9b12-2a72be6fa169) + ) + (wire (pts (xy 775.97 142.24) (xy 778.51 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bd1c75b-f6eb-4359-b4bd-4416e84d8302) + ) + (wire (pts (xy 683.26 168.91) (xy 723.9 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2dabf16f-c586-4c72-b157-43d2c2f403a2) + ) + (wire (pts (xy 723.9 168.91) (xy 723.9 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2eab2bfd-4960-4b9f-a3ee-b73a15dced97) + ) + (wire (pts (xy 303.53 142.24) (xy 303.53 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ec17c6d-e7b9-4f64-b195-ea6b5a06187b) + ) + (wire (pts (xy 1014.73 158.75) (xy 1024.89 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fd8cc50-6b64-46b2-b025-5e578ba6c986) + ) + (wire (pts (xy 187.96 142.24) (xy 187.96 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30a3fd81-663f-48a7-b9b7-e5da5e577fac) + ) + (wire (pts (xy 444.5 168.91) (xy 487.68 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30c2e4fb-3310-4efe-8450-ab811dec408c) + ) + (wire (pts (xy 430.53 130.81) (xy 430.53 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33edfed8-26dd-486e-a44f-1eea9b3dd795) + ) + (wire (pts (xy 919.48 168.91) (xy 960.12 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35da24b5-e5e7-4384-a981-8038ec789747) + ) + (wire (pts (xy 151.13 142.24) (xy 156.21 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38a341f7-7f6d-4800-9f95-660b51530df9) + ) + (wire (pts (xy 1104.9 162.56) (xy 1137.92 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39d29fc0-3eea-4c73-b821-02dab88becdf) + ) + (wire (pts (xy 287.02 168.91) (xy 287.02 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bccbab9-d26e-4572-9b3a-a98129e1f38f) + ) + (wire (pts (xy 895.35 142.24) (xy 899.16 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d6a06ad-a26d-48d9-9298-c269c26db724) + ) + (wire (pts (xy 854.71 142.24) (xy 857.25 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dfa9b97-f76d-40e3-b279-4c70d55dbfd0) + ) + (wire (pts (xy 208.28 168.91) (xy 248.92 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43a0cdcd-ea9e-4e04-a5c3-61ddeffeffca) + ) + (wire (pts (xy 941.07 142.24) (xy 941.07 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44ca3749-7e58-4b35-b53f-455bbdc7549d) + ) + (wire (pts (xy 505.46 142.24) (xy 505.46 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 457a9efd-37f5-4591-832f-be67dc7e99fc) + ) + (wire (pts (xy 458.47 142.24) (xy 461.01 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 476e1eef-8781-4a8f-a24c-55ef33704510) + ) + (wire (pts (xy 430.53 130.81) (xy 468.63 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48207fc3-9db2-4f53-be10-9aa208eace10) + ) + (wire (pts (xy 659.13 142.24) (xy 662.94 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4874ca21-9f5b-435b-8a87-96a1880221a3) + ) + (wire (pts (xy 935.99 142.24) (xy 935.99 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ab56614-1317-4002-b8f9-97a1adb06042) + ) + (wire (pts (xy 857.25 142.24) (xy 857.25 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b019365-a1de-4374-aa05-fb4dcca4b491) + ) + (wire (pts (xy 1038.86 168.91) (xy 1038.86 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b4fe793-3bb7-4060-a29f-7a9c6ca772ee) + ) + (wire (pts (xy 1107.44 118.11) (xy 1107.44 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b976d19-7400-47ef-b560-032bbfaf9751) + ) + (wire (pts (xy 224.79 106.68) (xy 224.79 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bf8c371-30d0-4646-ba69-1c1e2827466c) + ) + (wire (pts (xy 862.33 142.24) (xy 867.41 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c2b06e0-f563-4ddf-8fdf-11b5720ba737) + ) + (wire (pts (xy 124.46 130.81) (xy 151.13 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ca18fce-9f10-489a-b273-548d49cd876e) + ) + (wire (pts (xy 365.76 168.91) (xy 406.4 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f5cf635-95f6-457f-abd4-e6550b0bddbc) + ) + (wire (pts (xy 935.99 142.24) (xy 935.99 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ff49170-f93d-41b3-8863-3dc8478a82c7) + ) + (wire (pts (xy 266.7 105.41) (xy 266.7 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ff5b63f-05e3-4c14-b321-0f69b18726d9) + ) + (wire (pts (xy 224.79 158.75) (xy 234.95 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5115c55e-0c94-4dd2-8b56-f3d942cc79dd) + ) + (wire (pts (xy 723.9 168.91) (xy 762 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5306c2ce-1076-48c4-a0c8-93ab3d6fa4d6) + ) + (wire (pts (xy 1137.92 165.1) (xy 1103.63 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 533bff5a-40ad-4db7-9017-5040a8df8849) + ) + (wire (pts (xy 621.03 142.24) (xy 621.03 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 539575d9-18d4-4f8e-a773-c89c46baa659) + ) + (wire (pts (xy 351.79 130.81) (xy 387.35 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 554882d0-2650-4b5e-a5c8-b25328b46e08) + ) + (wire (pts (xy 1107.44 157.48) (xy 1137.92 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55f1391c-bb29-420e-b153-49c11601d277) + ) + (wire (pts (xy 229.87 142.24) (xy 229.87 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5624f9ea-7c18-4651-b436-9c9d21eb32ab) + ) + (wire (pts (xy 382.27 104.14) (xy 382.27 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56b393cb-f86d-4120-96f4-a03fa5b5de0a) + ) + (wire (pts (xy 881.38 168.91) (xy 881.38 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58b9d7de-6968-44b8-a1fe-ca3020fe546b) + ) + (wire (pts (xy 501.65 142.24) (xy 505.46 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5abb9081-d471-4bd0-9a1c-c758e202d80b) + ) + (wire (pts (xy 826.77 130.81) (xy 862.33 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b970781-0384-46b8-a6bd-bc8c76df2c27) + ) + (wire (pts (xy 420.37 142.24) (xy 424.18 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cea1684-f3c4-44dc-ae68-668c257c995b) + ) + (wire (pts (xy 704.85 130.81) (xy 748.03 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ddc440e-3231-47fd-aa8e-e7976c3a919b) + ) + (wire (pts (xy 1019.81 130.81) (xy 1062.99 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5eec3528-81ab-4f23-b709-152b6faead18) + ) + (wire (pts (xy 151.13 130.81) (xy 194.31 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62f8ad92-257c-4c4e-bece-dbc6d29469ca) + ) + (wire (pts (xy 387.35 142.24) (xy 392.43 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64f8cd5b-4fad-495e-ae9b-477127da8f5f) + ) + (wire (pts (xy 881.38 168.91) (xy 919.48 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65db259c-0dbc-4f4b-9417-d9a9cf20dfaf) + ) + (wire (pts (xy 1137.92 170.18) (xy 1101.09 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67058042-b75d-4e1d-a293-d0d75f976355) + ) + (wire (pts (xy 960.12 168.91) (xy 998.22 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67255cee-f102-4140-b39d-c8e45beac1fa) + ) + (wire (pts (xy 737.87 142.24) (xy 741.68 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 677f647d-f5e5-4d0a-bc12-2826dbdffe45) + ) + (wire (pts (xy 345.44 158.75) (xy 351.79 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68be16c0-ac1b-4784-986a-995a033d9d9b) + ) + (wire (pts (xy 626.11 142.24) (xy 631.19 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69a157fb-82b4-43b6-b8ce-97402296deed) + ) + (wire (pts (xy 1103.63 165.1) (xy 1103.63 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a59bba1-7eab-4832-ac2a-27a3ed5e32ff) + ) + (wire (pts (xy 704.85 142.24) (xy 704.85 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bbf57d2-6b59-4af1-bbc5-62bc55258eae) + ) + (wire (pts (xy 303.53 158.75) (xy 313.69 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c232ece-81c8-4179-b188-0b6329c4bfe0) + ) + (wire (pts (xy 905.51 130.81) (xy 941.07 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c675fa4-e27a-4821-bb3a-fb60f2a1d9bd) + ) + (wire (pts (xy 1056.64 142.24) (xy 1056.64 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c8d23d0-5ccd-42ac-a354-151efcf8dfda) + ) + (wire (pts (xy 1014.73 123.19) (xy 1102.36 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e085a06-364a-43dc-b148-3395a910c90b) + ) + (wire (pts (xy 351.79 130.81) (xy 351.79 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e6162a0-5188-4468-bc91-c4deeb91754d) + ) + (wire (pts (xy 699.77 158.75) (xy 709.93 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f44ed4a-bf70-41a5-962c-05cb8d4ae5bc) + ) + (wire (pts (xy 505.46 158.75) (xy 511.81 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71e19b1c-c96c-4a4a-bb4f-20554ded2b44) + ) + (wire (pts (xy 308.61 142.24) (xy 308.61 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 720142a8-1f15-448d-be6d-87d0ecdb8f9d) + ) + (wire (pts (xy 977.9 142.24) (xy 977.9 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 721e697a-691b-43f3-a664-de1bbc1899a6) + ) + (wire (pts (xy 110.49 158.75) (xy 156.21 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72dab277-b8fd-44c1-b02b-e05ab949e000) + ) + (wire (pts (xy 303.53 104.14) (xy 303.53 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73ba4d28-7033-4738-9c81-a662c4445a38) + ) + (wire (pts (xy 110.49 163.83) (xy 124.46 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74555253-a570-4de0-b418-5ec74d39fe10) + ) + (wire (pts (xy 229.87 130.81) (xy 273.05 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 770983f3-62be-426f-9414-e204200885c2) + ) + (wire (pts (xy 960.12 168.91) (xy 960.12 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b1488f4-57b7-4786-8971-c07e5d064e2e) + ) + (wire (pts (xy 424.18 142.24) (xy 424.18 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c8cd7c8-a1e5-489e-b10b-65f2eec597ee) + ) + (wire (pts (xy 905.51 130.81) (xy 905.51 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d21b366-9d0d-479b-acee-38a235c18f21) + ) + (wire (pts (xy 826.77 130.81) (xy 826.77 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f587792-33a6-4318-b869-012e955bc408) + ) + (wire (pts (xy 783.59 142.24) (xy 783.59 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81fb98ef-4146-4b60-b8d0-27c000ce29de) + ) + (wire (pts (xy 406.4 168.91) (xy 444.5 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83904d02-ba4d-44b9-9eb3-02b8355b5314) + ) + (wire (pts (xy 933.45 142.24) (xy 935.99 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 844fdaf4-2131-4974-afcc-20272227bfee) + ) + (wire (pts (xy 566.42 168.91) (xy 566.42 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 847b1511-6a4b-429f-89d8-96b1e3df9f56) + ) + (wire (pts (xy 840.74 168.91) (xy 881.38 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 859dbe09-d598-4686-8877-0e444479774c) + ) + (wire (pts (xy 662.94 142.24) (xy 662.94 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85e72057-d149-4979-98fc-0dcae3bdfa71) + ) + (wire (pts (xy 1099.82 172.72) (xy 1137.92 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85fa0efe-7612-4ffe-b834-4273431d02bc) + ) + (wire (pts (xy 1137.92 160.02) (xy 1106.17 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 862e7acc-0527-43c6-8bd3-5fb62ab7eb69) + ) + (wire (pts (xy 468.63 142.24) (xy 473.71 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8713b20e-c9ef-4eac-8308-3fd379f4381d) + ) + (wire (pts (xy 345.44 142.24) (xy 345.44 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 883b7ce7-dbbe-4305-ab5f-d44348454d60) + ) + (wire (pts (xy 590.55 130.81) (xy 626.11 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ee08aa6-d583-4120-a278-603a33df9573) + ) + (wire (pts (xy 741.68 142.24) (xy 741.68 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90aafc29-f2fa-4749-8ffc-43e9ddbfa8af) + ) + (wire (pts (xy 487.68 168.91) (xy 525.78 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 916ca5b4-542f-4dc3-bb4f-843c303cd7ec) + ) + (wire (pts (xy 984.25 130.81) (xy 1019.81 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91eed70d-a8f3-4968-8d56-ff41d50e10ca) + ) + (wire (pts (xy 468.63 130.81) (xy 511.81 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92025cc6-6bca-4f75-8be4-db5338acd5b6) + ) + (wire (pts (xy 778.51 158.75) (xy 788.67 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92fb87dd-a256-413a-8669-359f4873e637) + ) + (wire (pts (xy 1101.09 170.18) (xy 1101.09 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93c7a27f-626e-4863-b2ca-90a35dad76ba) + ) + (wire (pts (xy 778.51 142.24) (xy 778.51 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 960f910f-242e-49ab-b687-6ce972cd33cf) + ) + (wire (pts (xy 382.27 158.75) (xy 392.43 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96c24ec2-844e-480e-bff9-90de7974a694) + ) + (wire (pts (xy 984.25 130.81) (xy 984.25 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 971ae445-ce06-4528-94ac-e8ada3011184) + ) + (wire (pts (xy 669.29 130.81) (xy 669.29 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 987584e8-7ad8-41c5-9f70-83e4312ee9c8) + ) + (wire (pts (xy 802.64 168.91) (xy 802.64 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 987880b5-0529-4fb8-b112-f58748896db6) + ) + (wire (pts (xy 840.74 168.91) (xy 840.74 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 987af913-e406-4ff1-9c53-6f37f5121525) + ) + (wire (pts (xy 1099.82 142.24) (xy 1099.82 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98b70127-8832-4b46-b78b-674a45da2022) + ) + (wire (pts (xy 266.7 142.24) (xy 266.7 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c22d5ed-1325-49b3-9d58-d7f20f71444f) + ) + (wire (pts (xy 645.16 168.91) (xy 683.26 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c8b2629-2d12-48d4-bef3-8d2dcb792613) + ) + (wire (pts (xy 1102.36 123.19) (xy 1102.36 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cb45168-cfd2-477a-8cc5-4ed962e5104b) + ) + (wire (pts (xy 525.78 168.91) (xy 525.78 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e5be414-6987-461a-9d74-075c7395eb84) + ) + (wire (pts (xy 783.59 130.81) (xy 826.77 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ec60766-273b-4bd1-a206-031fa56f76b0) + ) + (wire (pts (xy 308.61 130.81) (xy 351.79 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ef1ba39-d656-4053-9383-4ae7b19b5d6f) + ) + (wire (pts (xy 899.16 119.38) (xy 899.16 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f9f92f5-4af0-4b89-ab35-5a811760c407) + ) + (wire (pts (xy 566.42 168.91) (xy 604.52 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0400647-abe4-4fa6-a167-b61df782d41e) + ) + (wire (pts (xy 1038.86 168.91) (xy 1076.96 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a09c202a-317c-437b-9f6b-2b2504d32fec) + ) + (wire (pts (xy 1019.81 142.24) (xy 1024.89 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1c3f5b7-a891-4a9d-888a-3f52def6b1d0) + ) + (wire (pts (xy 977.9 121.92) (xy 977.9 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6b87f74-a88d-4478-bdb2-eeea34da26b2) + ) + (wire (pts (xy 461.01 142.24) (xy 461.01 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7bc7526-295a-4b18-af0d-c1e6ea7845fd) + ) + (wire (pts (xy 998.22 168.91) (xy 1038.86 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab71f230-b8a3-4613-a69c-57b58f5d106f) + ) + (wire (pts (xy 156.21 161.29) (xy 156.21 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab7a9d16-8b7c-49d9-9330-7a033557d186) + ) + (wire (pts (xy 542.29 142.24) (xy 542.29 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abe28316-d89b-4408-ad7b-9cf946c328fa) + ) + (wire (pts (xy 1102.36 167.64) (xy 1137.92 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae74ade8-efa7-4688-8f02-43d01a1ef628) + ) + (wire (pts (xy 762 168.91) (xy 762 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0ed6d84-14af-4435-a987-6391b1bee713) + ) + (wire (pts (xy 444.5 168.91) (xy 444.5 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b19e968c-2266-4f5e-97d6-a4e67a3ff09a) + ) + (wire (pts (xy 704.85 142.24) (xy 709.93 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b50bd012-a226-4a99-94d2-2587a1c2bd19) + ) + (wire (pts (xy 1090.93 142.24) (xy 1099.82 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b570f900-45e5-44d9-8700-2bb7fa705273) + ) + (wire (pts (xy 604.52 168.91) (xy 645.16 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b843c7f8-9eda-4ca4-8e79-362d90998147) + ) + (wire (pts (xy 424.18 158.75) (xy 430.53 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8a10d24-9529-4127-8d8b-40170ffb2b08) + ) + (wire (pts (xy 1012.19 142.24) (xy 1014.73 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b981e3a0-dca0-49be-beb0-7b6833e750f9) + ) + (wire (pts (xy 327.66 168.91) (xy 327.66 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9ad6d58-a287-4333-b33f-d6618790c389) + ) + (wire (pts (xy 387.35 130.81) (xy 430.53 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bcea3d7f-b594-4c86-a9be-3177a6d29680) + ) + (wire (pts (xy 697.23 142.24) (xy 699.77 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bea4cd7f-3112-46bd-af2b-579ac34d1472) + ) + (wire (pts (xy 156.21 168.91) (xy 170.18 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0065746-f4d0-4506-9158-f800f7c842f2) + ) + (wire (pts (xy 699.77 142.24) (xy 699.77 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c00da636-aaed-4c5e-940e-2041e8056cf1) + ) + (wire (pts (xy 941.07 130.81) (xy 984.25 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6e0af23-4ca6-49b2-bf55-4ae1e2826c73) + ) + (wire (pts (xy 525.78 168.91) (xy 566.42 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8ceee61-0cb9-4245-8ad3-0b3e2f6fe7e4) + ) + (wire (pts (xy 974.09 142.24) (xy 977.9 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9a810cd-687f-4142-b46e-22354ba01850) + ) + (wire (pts (xy 584.2 142.24) (xy 584.2 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9ac8d41-4aa3-4154-b4a9-8e43b6548579) + ) + (wire (pts (xy 511.81 130.81) (xy 547.37 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb29e3bb-93ab-4c9e-b8db-8162e71e1d15) + ) + (wire (pts (xy 862.33 130.81) (xy 905.51 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc005927-fcda-4e4d-8da0-e680167513e5) + ) + (wire (pts (xy 762 168.91) (xy 802.64 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc455030-3500-47c0-893e-f46c28b84c0b) + ) + (wire (pts (xy 584.2 158.75) (xy 590.55 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce249bfe-11a1-4551-a24b-6a6a65a5ba00) + ) + (wire (pts (xy 300.99 142.24) (xy 303.53 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ceafb8f9-05ba-41de-a02c-caa3bcc272ec) + ) + (wire (pts (xy 590.55 130.81) (xy 590.55 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d00d3cbe-03f0-42a5-8a4d-97cd8bb4f392) + ) + (wire (pts (xy 547.37 142.24) (xy 552.45 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0bc4829-5188-466f-82ce-44f242e8d445) + ) + (wire (pts (xy 998.22 168.91) (xy 998.22 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d273322b-fa54-4bba-8789-8525a005a999) + ) + (wire (pts (xy 1056.64 124.46) (xy 1056.64 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d276bb8e-6958-44d3-a8ee-3a0b191f0f86) + ) + (wire (pts (xy 341.63 142.24) (xy 345.44 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2b2afa1-d732-4ee9-93e4-131a5905ab85) + ) + (wire (pts (xy 935.99 120.65) (xy 1104.9 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d361d3e2-a1f4-43b1-bf56-f5f36ef002ab) + ) + (wire (pts (xy 511.81 130.81) (xy 511.81 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d381a566-a4a5-46f9-9b6b-4ac9aa9da1a7) + ) + (wire (pts (xy 645.16 168.91) (xy 645.16 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3cd09d4-51ca-496e-ad28-fa9a2a06538f) + ) + (wire (pts (xy 170.18 168.91) (xy 170.18 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d50b6bdd-ac0f-4ec5-8138-54fcc634b9e5) + ) + (wire (pts (xy 187.96 107.95) (xy 187.96 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7ce0b04-2fa8-4a12-ae64-28b37bfb4f8f) + ) + (wire (pts (xy 184.15 142.24) (xy 187.96 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7de45d7-6106-4e57-aff9-eacfb89e4f1c) + ) + (wire (pts (xy 899.16 142.24) (xy 899.16 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7e8d059-0fc3-4285-bb96-23a0c835c1b7) + ) + (wire (pts (xy 461.01 158.75) (xy 473.71 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dac9adda-98f4-4df4-a044-2fb821a14384) + ) + (wire (pts (xy 618.49 142.24) (xy 621.03 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid daeca264-6a69-40c4-822e-5d18f0e20873) + ) + (wire (pts (xy 662.94 158.75) (xy 669.29 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid deb55bfd-a909-48b6-9986-9a6cd3c25bcf) + ) + (wire (pts (xy 816.61 142.24) (xy 820.42 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ded02d01-b17b-4644-a9f8-aa65ae1196e7) + ) + (wire (pts (xy 547.37 130.81) (xy 590.55 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df044553-3158-438e-af5e-7a8064270097) + ) + (wire (pts (xy 187.96 158.75) (xy 194.31 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0333ec5-46a8-40f8-82d5-8866f87ae0a6) + ) + (wire (pts (xy 977.9 121.92) (xy 1103.63 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e11f894d-a0ec-4add-9597-064e98acaa3b) + ) + (wire (pts (xy 262.89 142.24) (xy 266.7 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1afd8f4-787d-45b8-86a2-f5e67f6d1799) + ) + (wire (pts (xy 547.37 142.24) (xy 547.37 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1b632ec-a649-4c6e-9e41-2416ccbdf33a) + ) + (wire (pts (xy 1014.73 142.24) (xy 1014.73 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e504d61c-9838-4fe1-8bc8-b1e5f9ad27ca) + ) + (wire (pts (xy 748.03 130.81) (xy 748.03 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6894573-9b8e-492d-a278-ada563ae7987) + ) + (wire (pts (xy 151.13 142.24) (xy 151.13 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8b1d4fe-3cc5-4ad3-a4c9-15942e2809be) + ) + (wire (pts (xy 1052.83 142.24) (xy 1056.64 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8ce72d9-ce1b-40b0-9b16-231d99b17de5) + ) + (wire (pts (xy 1062.99 130.81) (xy 1062.99 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ead94880-682f-4d10-9c36-430ac90b2c54) + ) + (wire (pts (xy 248.92 168.91) (xy 248.92 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eada5939-65ea-412d-b84b-26c1b7447fec) + ) + (wire (pts (xy 110.49 161.29) (xy 156.21 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eca9dc9f-028e-4812-85d1-f70c42b10e74) + ) + (wire (pts (xy 266.7 158.75) (xy 273.05 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed92a1f2-ad5b-467f-95b4-9730df7bbc0e) + ) + (wire (pts (xy 1056.64 124.46) (xy 1101.09 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f05ae8dd-440d-4f05-8cea-23b7bf32a3fa) + ) + (wire (pts (xy 919.48 168.91) (xy 919.48 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2652522-8381-4018-a72a-c2739ffb4d08) + ) + (wire (pts (xy 365.76 168.91) (xy 365.76 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f294def6-e6ce-482e-a11d-03eb8da6485c) + ) + (wire (pts (xy 626.11 142.24) (xy 626.11 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3134bf7-afa5-4f86-8d12-a6a11c5b9e56) + ) + (wire (pts (xy 820.42 158.75) (xy 826.77 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3581b1a-b57b-4512-9491-dd0614074255) + ) + (wire (pts (xy 862.33 142.24) (xy 862.33 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3a0ee41-933b-4d40-998a-356c07a2e0de) + ) + (wire (pts (xy 626.11 130.81) (xy 669.29 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4124fe7-efe9-4143-b75c-4da8844a9458) + ) + (wire (pts (xy 382.27 142.24) (xy 382.27 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f538cbd1-6fa2-4c60-a5ec-0b8a861b6578) + ) + (wire (pts (xy 741.68 158.75) (xy 748.03 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f56c9381-9e38-4ae3-9948-1c36ccafed76) + ) + (wire (pts (xy 345.44 104.14) (xy 345.44 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f800f6ab-1267-4185-bd24-3aa80fcf66ff) + ) + (wire (pts (xy 1106.17 160.02) (xy 1106.17 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9cf7afc-3558-4a0c-8005-c80294b72523) + ) + (wire (pts (xy 935.99 158.75) (xy 946.15 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc1119b9-9ae6-46d5-8ef2-113da105643d) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 382.27 97.79 270) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06e9e6c5-954b-454c-befc-06542fca77ae) + (property "Reference" "U1" (id 0) (at 384.81 97.79 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 384.81 100.33 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 382.27 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 382.27 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7647b3aa-547f-4f06-a68f-eaf92977ae9c)) + (pin "2" (uuid 9a601e8e-38c2-4a5c-8fee-476747db76f3)) + (pin "3" (uuid 166ac35f-e95b-4110-9ce1-d96bab96cd4a)) + (pin "4" (uuid fe5899ba-1f46-4e48-88a3-e9fbbbd2f457)) + (pin "5" (uuid b492ab28-acf8-4543-adbc-735eb6876bc5)) + (pin "6" (uuid 707400d7-fa95-4df9-ab82-4a19e514d7be)) + (pin "7" (uuid 7f44f501-922d-4347-9057-bfb2accd8d78)) + (pin "8" (uuid f50e71d6-cb6a-44fb-b902-81679c116779)) + (pin "9" (uuid 029f73f4-20fd-4512-bfce-c184c41e23cb)) + (pin "10" (uuid 209e7cb8-292f-4359-86da-8e3c67e83d82)) + (pin "11" (uuid 3ae4e61c-41bb-406d-bb96-2e48c0d24c64)) + (pin "12" (uuid c43f423f-e73f-4546-863e-049a3bbd3d78)) + (pin "13" (uuid d753e586-0758-4211-9c31-847663460c5d)) + (pin "14" (uuid 7804b014-947e-474a-97a0-c986ebcae528)) + (pin "15" (uuid e1809b38-0e4e-4e69-b402-d59937d2f30b)) + (pin "16" (uuid 5cc106d1-7082-44ef-abcf-1a8345e9779c)) + (pin "17" (uuid e701e5aa-2ef1-49dd-a65b-7a04381798af)) + (pin "18" (uuid 288d9849-d807-4af7-ae9d-5e245ebf57a2)) + (pin "19" (uuid 68cbb488-f2a1-434d-97ce-c416748912e8)) + (pin "20" (uuid 06758d47-2c67-40f0-9e83-940a53789eae)) + (pin "21" (uuid 055fdf1c-0be2-47e0-97cd-b206315d500d)) + (pin "22" (uuid 6090fea7-fe96-4a63-ad47-cb39760e95cb)) + (pin "23" (uuid d60d40b2-f093-4bb0-8db5-fb181bc3694d)) + (pin "24" (uuid 16e811c1-13f6-4419-9f7f-3ac005fb3374)) + (pin "25" (uuid 4d24fc83-0fbf-4877-82e2-76effa59cd3c)) + (pin "26" (uuid 7615cc4e-9856-47d5-a705-b7e69b3578bc)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 170.18 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 083ebe98-f338-47c1-8d44-98e60fc27b7c) + (property "Reference" "U2" (id 0) (at 172.1994 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 172.1994 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 170.18 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d0e5dfd-747d-499f-be9a-c4dc5ef25f66)) + (pin "2" (uuid 08651406-3c4f-424d-afe8-17867665dbda)) + (pin "3" (uuid 8fd0999e-55e9-4ce7-838b-68d967ff4000)) + (pin "4" (uuid 8462655e-a34c-4529-8689-db2023b732be)) + (pin "5" (uuid 4d5c3952-3210-4882-a528-0be96dcfa759)) + (pin "6" (uuid aa6f20c1-e642-4bea-a958-cea6b559094b)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 208.28 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1675ab51-73b5-404f-b91d-4b1cc7ee5bcf) + (property "Reference" "U3" (id 0) (at 210.2994 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 210.2994 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 208.28 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 208.28 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a7cd9d42-84d5-4bd4-86c1-3f81c93b742d)) + (pin "2" (uuid 36d038cd-c88b-42c2-9f1a-c5c5786d5790)) + (pin "3" (uuid 2ed50def-b3ee-4e34-963f-546636e1c828)) + (pin "4" (uuid 473205d0-f8b8-4308-8990-b23b62c9012f)) + (pin "5" (uuid 547a305e-8a8f-424e-aa03-648bef45b097)) + (pin "6" (uuid 91148748-79d1-4b08-82c3-e3fb1a3f1b70)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 487.68 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17bceff9-442e-418a-8070-eccb6e0b6a16) + (property "Reference" "U10" (id 0) (at 489.6994 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 489.6994 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 487.68 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 487.68 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b08202e5-4592-41ea-8168-add3f8a7a5ab)) + (pin "2" (uuid 5ce9c4f9-ef42-41b5-96cf-2f6ea05b1d36)) + (pin "3" (uuid 620184d2-f85c-40c6-8ab1-3c1183ef8511)) + (pin "4" (uuid 05098e58-ae0b-409c-9a21-1d28a589d6d4)) + (pin "5" (uuid 2cf6e5e6-648a-49a3-9250-a915e2f8d830)) + (pin "6" (uuid db6a7a9a-e646-46e4-b165-78b9d7584597)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 762 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17da891b-d67f-4e48-b24d-8714c89442b2) + (property "Reference" "U17" (id 0) (at 764.0194 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 764.0194 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 762 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 762 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bf69b9d4-e387-45a9-bc4f-d2791b19b866)) + (pin "2" (uuid 88f858da-943e-4af5-9a92-972c35bd65e0)) + (pin "3" (uuid 20257c60-eeed-4d1c-a38f-4d93ee862241)) + (pin "4" (uuid 8e8f3d7f-b8bb-46ca-853f-6fd991808db7)) + (pin "5" (uuid 8c81c97a-278e-4c1c-8cf3-1be426f356a7)) + (pin "6" (uuid 5f1e3636-5bff-4450-bd9b-24ace2cb5e21)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 881.38 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 188e1bfa-bdaf-421c-871f-1729d7860102) + (property "Reference" "U20" (id 0) (at 883.3994 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 883.3994 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 881.38 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 881.38 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6c60e564-e435-4e41-9170-d535a9a82572)) + (pin "2" (uuid 9271d76d-0173-4b94-90d1-0d0134747154)) + (pin "3" (uuid 16f67777-a851-484a-a00f-fae73f6a0444)) + (pin "4" (uuid 830d2b6b-311e-47b9-9035-352bc45e30d8)) + (pin "5" (uuid 454b1499-c7fc-452b-85af-4fff51bcee76)) + (pin "6" (uuid 6fc1795a-739f-48c0-9afe-f0a06d9efcff)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 998.22 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 18c82ab3-7fe1-47b3-9654-2d8e51bc9e83) + (property "Reference" "U23" (id 0) (at 1000.2394 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 1000.2394 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 998.22 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 998.22 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9da03677-e9a9-4bf3-b72c-a5582dbca804)) + (pin "2" (uuid 39999192-4199-49ae-ae5b-4b455f890887)) + (pin "3" (uuid 120aaa22-2e47-45ca-860f-d44039e75bc3)) + (pin "4" (uuid e9b83265-f979-496b-a0c3-60f9ec26bbe2)) + (pin "5" (uuid b79b6f79-7cf2-4475-9deb-606e831e73bc)) + (pin "6" (uuid 6fc5a15f-2e44-4134-98e0-b653e8609690)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1144.27 170.18 180) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b6282c2-9707-4a25-8f78-66d0dcaf68f1) + (property "Reference" "U1" (id 0) (at 1148.08 169.545 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1148.08 172.085 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1144.27 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1144.27 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6920c7ff-488f-4130-bb72-ac30afb64985)) + (pin "2" (uuid 4840718f-0b09-4d13-a351-554effcd267e)) + (pin "3" (uuid c73b1a89-db20-4516-9bf3-979f4149559f)) + (pin "4" (uuid f036c69d-578c-4ca2-824d-2d8f3ae5ce18)) + (pin "5" (uuid c06209fb-1047-4c96-9474-f4f62e17ed76)) + (pin "6" (uuid f0963021-f9bf-4299-86e1-1ca068f08e4d)) + (pin "7" (uuid 5b6ecd4f-60eb-4798-aa8c-e32904ffb1af)) + (pin "8" (uuid 4f604ac8-19be-424c-81e9-28def8d88b18)) + (pin "9" (uuid 8dc5ce32-6675-40fb-93cf-126cf20b07ed)) + (pin "10" (uuid 6d99842e-2015-45bd-8cca-0dbe4cd34962)) + (pin "11" (uuid f9e3abfe-5374-4855-bb53-92ddfa492991)) + (pin "12" (uuid d33dae59-7edd-439c-b237-56c76dde1382)) + (pin "13" (uuid 99a2ec32-f177-4301-a18b-06f84222d027)) + (pin "14" (uuid 625099f9-fe21-4109-afd9-74b5c00a3b09)) + (pin "15" (uuid bf30126b-16bb-4aee-ad31-dab9443dd4ed)) + (pin "16" (uuid e22a31e5-567c-4140-a291-c5af7fb40b9e)) + (pin "17" (uuid 2543917c-0d97-480d-b27c-4f25a48fe077)) + (pin "18" (uuid 4c9f80af-4723-4a09-a54f-ee44f9073942)) + (pin "19" (uuid 9185e8c5-c85d-404c-8871-5507f863e61a)) + (pin "20" (uuid 3d3b61da-09ba-4f8e-ac18-1d524b8a62e4)) + (pin "21" (uuid a9d48257-3efa-49bf-9cd1-42da64d9d283)) + (pin "22" (uuid 8d4f6dc5-19c3-4f39-80e0-f84417d90eea)) + (pin "23" (uuid f77f3986-3c5f-4d9c-a567-d4bc508dc22d)) + (pin "24" (uuid 460013df-b212-4d24-8fc5-19aa913d0f65)) + (pin "25" (uuid f1a31ed1-69fe-4991-984c-85cff4752ad2)) + (pin "26" (uuid 9d1d1b42-d98d-4dac-8e0d-ab5729df604c)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 444.5 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 25c92279-301b-406e-9269-cf2befdcd1e8) + (property "Reference" "U9" (id 0) (at 446.5194 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 446.5194 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 444.5 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 444.5 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ea06b61-a898-4de9-8c51-2adbd80efee1)) + (pin "2" (uuid 6c0d8681-b7e5-416b-9857-7706e9a382a8)) + (pin "3" (uuid 7126447b-c5d4-4458-83ea-9013e8ebd576)) + (pin "4" (uuid fc5688ec-2577-47ea-aa5a-3b4938d28d74)) + (pin "5" (uuid 254e5b02-eaa3-4036-81c0-637c1cbe40c2)) + (pin "6" (uuid 6ee520b0-da5a-4339-8ee7-b0f7e3c36718)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 104.14 163.83 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3046752e-11b1-475a-86f6-ac829a31f1e4) + (property "Reference" "U1" (id 0) (at 104.775 158.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 104.775 161.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 104.14 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 104.14 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cd20c087-5aa5-436f-8e73-f0c7bfd06209)) + (pin "2" (uuid 1bacc60d-635c-4686-a4b1-d05597799135)) + (pin "3" (uuid 567e156e-c942-465c-8194-82a6144b09af)) + (pin "4" (uuid 19926576-f5c8-4476-a66f-b6063450af25)) + (pin "5" (uuid eb44da53-fa88-49f6-96f3-03aac5e2a042)) + (pin "6" (uuid aff46f80-2af9-4373-a769-af58a46575b6)) + (pin "7" (uuid cfccf512-8738-4686-af2a-30bc7f6f447f)) + (pin "8" (uuid a7204f27-82c7-4f14-a8c9-d5d63b1b3993)) + (pin "9" (uuid ef1b8f20-2e99-4a76-a153-e5688816d602)) + (pin "10" (uuid 45b8a131-acc7-4adc-a0de-a1beaa46be98)) + (pin "11" (uuid 285406c0-be8b-47f4-ab14-6a5c714acc53)) + (pin "12" (uuid cca2409c-e668-4bf3-9daa-f69fd2579d6f)) + (pin "13" (uuid b9e3004f-1011-49b5-b40a-98d62b066449)) + (pin "14" (uuid 6346f7f3-3eb6-4677-a677-468b8a8d0f19)) + (pin "15" (uuid 6bf80b31-4c8c-4f43-8481-0f7c08797025)) + (pin "16" (uuid 8f2a2d40-7e40-4b48-a1b4-d4d9a27c5097)) + (pin "17" (uuid 0a19d296-729f-47c0-911f-1f8e57305822)) + (pin "18" (uuid 782e5df9-afd5-40f2-953a-9fedd8b577b1)) + (pin "19" (uuid 93c73ad5-08dc-4c71-9ce9-bfc1a3d5ab92)) + (pin "20" (uuid 68ba1289-ed69-4962-b1b1-532815c5d3e3)) + (pin "21" (uuid a18befae-8eb7-4f45-a371-0d375fa4bb70)) + (pin "22" (uuid 44f62e1f-018d-49f1-bafe-46eb7455c85a)) + (pin "23" (uuid cdb6f80b-97a5-4b08-a056-7b0a2a842a4b)) + (pin "24" (uuid ba1affc6-e38a-4762-bee1-958b014da083)) + (pin "25" (uuid 5c17dd6e-d3fe-4fa0-ac4f-d9cc9d1627af)) + (pin "26" (uuid ccdc7761-f421-4717-8725-83d69277ad83)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1144.27 160.02 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 328ffa3a-b5e8-40bf-a091-968e604a03cc) + (property "Reference" "U1" (id 0) (at 1148.08 159.385 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1148.08 161.925 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1144.27 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1144.27 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cb551de0-7c93-439c-95b9-359d32426cda)) + (pin "2" (uuid 75e097e4-1949-4cd4-9434-55e45202325b)) + (pin "3" (uuid a328cdb9-a51c-4a87-9b06-2b372c3569e5)) + (pin "4" (uuid b9f8b16b-af58-4c1d-b4e2-2190afff5ca9)) + (pin "5" (uuid 68b42972-0231-4cac-82dc-357c62f0a8d9)) + (pin "6" (uuid b8c73090-37ce-4639-8b5d-dcbe0077f932)) + (pin "7" (uuid a5616889-3193-4c64-b6c7-d70241f8f41c)) + (pin "8" (uuid 588bfb20-367b-40bf-8fff-dd6259f988fb)) + (pin "9" (uuid aae82049-ffe6-42c6-baf1-12d6b4186a2b)) + (pin "10" (uuid 38b6f8fd-b1ac-4779-9717-59cc44377600)) + (pin "11" (uuid 85375c44-efd6-4bdc-bf4e-b1cb3e758073)) + (pin "12" (uuid 725de291-844d-4561-a926-2845704fc927)) + (pin "13" (uuid 03f86bde-e7c3-40fe-b6c7-f2eff95ffe1d)) + (pin "14" (uuid 79e40c90-a9ee-43e9-930f-2bfad99ab893)) + (pin "15" (uuid d458ab73-611d-4f63-8cf0-06a83548c116)) + (pin "16" (uuid 88e96430-11b6-4ff8-8d73-6f18184b377b)) + (pin "17" (uuid 0d5cb7bf-eba2-4390-8ecb-f7328586fcd7)) + (pin "18" (uuid fd31c65c-42b2-49ee-b47e-b6ace4c17b2f)) + (pin "19" (uuid fdb11735-b6e1-4095-98ae-ce988c87f44a)) + (pin "20" (uuid 77bb1f11-8dcf-46e4-9488-940ee985d94c)) + (pin "21" (uuid c9250050-5259-4981-a489-8a2edb3b8617)) + (pin "22" (uuid 246085f5-9544-48c7-81a9-23b0e2366177)) + (pin "23" (uuid 98cb8a3b-3f36-4a73-a7fd-b14920f11f73)) + (pin "24" (uuid 12bfc267-968d-406c-aab1-afaad48f7f26)) + (pin "25" (uuid 28b4e108-c181-4b7d-9280-991b82dcfef4)) + (pin "26" (uuid de0e6931-56f2-4667-bba2-4e26274bf356)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 406.4 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4223c6d1-068f-45e8-9f9d-ede0d2cb8c32) + (property "Reference" "U8" (id 0) (at 408.4194 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 408.4194 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 406.4 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 406.4 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dad52a39-9826-47c4-a2b7-9e523b2a520b)) + (pin "2" (uuid 03fe7eb3-2ed9-431f-ab3d-75eb8ddc069c)) + (pin "3" (uuid 82351354-b449-4336-b7be-8fa4519a58ca)) + (pin "4" (uuid 3299034f-cb2b-4616-8895-fc51b750d448)) + (pin "5" (uuid 46c9eeb9-a47a-41ea-b371-da757510e151)) + (pin "6" (uuid 3afe836f-2950-4908-a5e0-a10c7fb29a83)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 566.42 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4489a7a3-3209-4840-af8d-2a91f804b597) + (property "Reference" "U12" (id 0) (at 568.4394 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 568.4394 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 566.42 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 566.42 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid abfff5b3-0c2e-4dd6-9e19-c6c764fafee9)) + (pin "2" (uuid bc798f49-23d1-491b-81c8-eb92a19b278b)) + (pin "3" (uuid e52c8738-5aa1-4072-aa4a-1b5b4a56621b)) + (pin "4" (uuid e7fbede7-491a-4dcf-afaa-7833e37f4318)) + (pin "5" (uuid 3acdd110-2581-4b93-b650-a997fc5c3e7d)) + (pin "6" (uuid 90828e87-e534-44b2-8e1c-459ec8b5cd26)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 919.48 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 448a9f23-3959-4a90-8e1d-23f668ef2a23) + (property "Reference" "U21" (id 0) (at 921.4994 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 921.4994 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 919.48 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 919.48 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6604920c-df7e-4a26-ba7d-4bd3cfadb26a)) + (pin "2" (uuid 61877ce1-eee6-4253-9bc9-a3759f07ce2f)) + (pin "3" (uuid 6917cb22-b7cf-4f4c-b228-98355475fb62)) + (pin "4" (uuid 3b024938-9939-49e1-ba5c-e4034b6a0e97)) + (pin "5" (uuid 299d2ea9-a45b-4a75-b106-52e4c0fdf13e)) + (pin "6" (uuid 3cb2edd6-beb4-418a-aeab-a58347c3365d)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 723.9 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b50d8a0-05c6-4475-bfa9-fd6a74516e6d) + (property "Reference" "U16" (id 0) (at 725.9194 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 725.9194 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 723.9 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 723.9 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f7fe8d2c-20ba-4c45-aa49-0460c2a14e69)) + (pin "2" (uuid faa787f9-853e-4c2e-b97b-5658e4fc295a)) + (pin "3" (uuid e863de8b-8122-4d91-94ea-06768ebb9df9)) + (pin "4" (uuid f5b8e90b-f640-492a-8bb4-e9a7fdad5d73)) + (pin "5" (uuid f32cd134-e112-4d06-968d-930e2be17543)) + (pin "6" (uuid 052bfcea-a9ba-42a8-9ce6-0d963364d8c0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1144.27 165.1 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4da12b63-3e09-4c99-8379-401e12377634) + (property "Reference" "U1" (id 0) (at 1148.08 164.465 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1148.08 167.005 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1144.27 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1144.27 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 82d6f4f1-0d06-4cef-98e5-5629c44849e3)) + (pin "2" (uuid b247e525-7ee0-4dc5-aef2-e4e2fbe2d03f)) + (pin "3" (uuid 53189e36-fdac-4b31-8df0-2a01fb5b51e9)) + (pin "4" (uuid 7f83321e-d135-400f-b7cc-9033498fbbbf)) + (pin "5" (uuid 87806fc6-0730-4bbd-9e7a-993f1563911f)) + (pin "6" (uuid 6d44649d-064c-474b-bb77-74d369c007c5)) + (pin "7" (uuid bf9db74a-1203-454b-8487-883b57848cc2)) + (pin "8" (uuid 7c86c03e-30f0-487a-9bb7-9d1acc346033)) + (pin "9" (uuid 45b78548-1fd6-40b9-815f-3cb10810428f)) + (pin "10" (uuid 38aaaefc-57ac-4ddd-a3e4-0f3d6bc85c26)) + (pin "11" (uuid b671f315-0f2f-4c7c-abcc-4115b4d32058)) + (pin "12" (uuid 60d2bc32-ecd0-4226-8fed-17c0d43bc851)) + (pin "13" (uuid 286ae868-3b70-48f4-97ce-08bd70f28d3d)) + (pin "14" (uuid 01697b09-3fa8-46f1-a5c1-87249273f2a5)) + (pin "15" (uuid 27ca3fde-9189-4b8e-bc56-bf4897ded612)) + (pin "16" (uuid b448c883-cca6-412d-b2f5-8036b1a79ec3)) + (pin "17" (uuid 1f8dffbb-21b1-4cd4-8091-b1f551c06f6c)) + (pin "18" (uuid 2ce64bee-c7a7-4c71-999f-5cab230b3b3b)) + (pin "19" (uuid 852bc769-d9cd-45d0-bbf7-88f90ecdb9ac)) + (pin "20" (uuid 8386475b-52f0-4ea2-b17d-2f54127167f1)) + (pin "21" (uuid 86e32319-5afd-42cc-b1fc-48bb899099e8)) + (pin "22" (uuid 5f476158-1dff-4fc8-a260-edbe4469f75a)) + (pin "23" (uuid a8d41865-d97b-431b-8a79-635e1727513a)) + (pin "24" (uuid 838a98ea-7cf4-41b1-bbab-ff15c15c0a43)) + (pin "25" (uuid 8f804ec4-55af-4956-b726-0316d1cabb75)) + (pin "26" (uuid c107f7f4-3aaa-4bba-81fb-28bde9a2f498)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 287.02 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4edcdea8-e433-4ba1-9a97-84e682ceefec) + (property "Reference" "U5" (id 0) (at 289.0394 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 289.0394 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 287.02 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 287.02 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 47b22985-57f6-47b7-b4bb-c6d4577fbd60)) + (pin "2" (uuid ebc5a421-ee3e-43b6-aafb-539813bca17d)) + (pin "3" (uuid 624fae86-6653-4998-8cbc-a7865a678edb)) + (pin "4" (uuid e7a0ceae-48eb-425b-8f09-58e59a12232a)) + (pin "5" (uuid bf500cfc-dba6-46d4-9901-094652c4082a)) + (pin "6" (uuid dc1b1676-fbc4-43d3-8640-73cf0b32a775)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 345.44 97.79 270) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 55703133-dc39-4310-9873-58724cd913c1) + (property "Reference" "U1" (id 0) (at 347.98 97.79 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 347.98 100.33 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 345.44 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 345.44 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6525fea6-0f27-4482-97fa-7209fc495940)) + (pin "2" (uuid 3a2ec938-6097-4d55-b4ee-b037ebc19d78)) + (pin "3" (uuid a9f27162-cdeb-403f-b92f-14535f98f503)) + (pin "4" (uuid 259b9896-5f9c-4e21-a6ef-97677b545e48)) + (pin "5" (uuid 88ed04ac-54d0-4b2d-9515-943694f9b651)) + (pin "6" (uuid 7196ce19-94be-4696-9e9b-08cb88c8ece3)) + (pin "7" (uuid f4c2acc5-9cbf-4ce0-9863-2611f7c7f2fd)) + (pin "8" (uuid a3a01d18-088d-4740-a458-e21b201ebdb0)) + (pin "9" (uuid 53c4b624-b197-4340-97f6-d97dfce983d9)) + (pin "10" (uuid 93656a7a-7e7b-428a-bb81-d0641a53905a)) + (pin "11" (uuid a45a5c7f-9b71-4a26-aaf5-bd47551a3ce4)) + (pin "12" (uuid 705fb767-4bfb-4da7-8a95-15a4d7c06307)) + (pin "13" (uuid 402edc79-5527-46c7-bd07-b49d7bd92cc8)) + (pin "14" (uuid bf6025e2-b2c8-4288-bafa-79845a5ae301)) + (pin "15" (uuid 7888f4eb-6fce-47a8-94c1-fd5fe746e159)) + (pin "16" (uuid a99f70fe-0650-40a4-97df-6097dc00d061)) + (pin "17" (uuid 01b24f69-17bd-4b46-a605-1dedad9b7df6)) + (pin "18" (uuid 904a70ef-bead-4740-86ea-0b34e27ed863)) + (pin "19" (uuid 34a7b004-36a9-4b53-8af4-d902351eea2f)) + (pin "20" (uuid a2b767ef-41f6-435d-ac24-21fc41832a63)) + (pin "21" (uuid e67c1f22-813c-49cd-ade9-b7f862e72b54)) + (pin "22" (uuid b4cf4732-de95-455b-8b56-f07fd5949b7c)) + (pin "23" (uuid 10f9eed1-0c42-4d6c-bb49-c6a20843ef50)) + (pin "24" (uuid a90a97a9-e620-4696-a923-13190d6ea089)) + (pin "25" (uuid c2a86c5b-e7f0-46a8-b9ec-3a91bf9ccb4d)) + (pin "26" (uuid ffaf4f79-dadc-455d-a231-b07089cbf6e8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1144.27 162.56 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 57b3e28a-8a36-4554-8330-bbe600a77327) + (property "Reference" "U1" (id 0) (at 1148.08 161.925 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1148.08 164.465 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1144.27 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1144.27 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e22fcc2e-5c84-49ca-a5d3-86cd391ebe24)) + (pin "2" (uuid 4845be2e-af20-418e-8ca4-8b3bc0ba6eeb)) + (pin "3" (uuid 58083ec1-4580-4d99-bbdc-41ccc3ce4718)) + (pin "4" (uuid ad0290ab-3b7d-49b1-91d7-e007d7b1f4a0)) + (pin "5" (uuid 3f0425eb-d677-4ce8-bbdb-a8624167d2c0)) + (pin "6" (uuid 0da05b1f-cc88-4038-8c66-7960eb028129)) + (pin "7" (uuid a5bc98e3-ffe0-45c2-b268-6013cd54ca77)) + (pin "8" (uuid 6b483fc7-c8f3-48a2-94ca-34d2b457beb2)) + (pin "9" (uuid 95c872f2-48db-4f06-8082-dafe91aa49b1)) + (pin "10" (uuid 8eccfacb-fdd4-450c-a8de-163261dab723)) + (pin "11" (uuid 2e10bdea-7ff2-47b6-906f-43de9bf17b13)) + (pin "12" (uuid adfcbd55-3f02-46ee-b9ac-19076d783b3c)) + (pin "13" (uuid 620e4973-bbdd-4c1f-a980-4fcc5d6d59da)) + (pin "14" (uuid ef6dcef1-9bc5-4650-899a-ab0ec026a49c)) + (pin "15" (uuid 5f7ce8e3-18bf-42e2-8727-9ac5dfb5e4cc)) + (pin "16" (uuid d313e146-421e-4f77-a8de-73201880af87)) + (pin "17" (uuid 19d11435-940e-46c7-bbe1-6ddc330fdc4a)) + (pin "18" (uuid c033f6de-2c50-4034-809e-79229b56e472)) + (pin "19" (uuid 605dfddf-29f2-4f6f-87ad-c0032a5b04e5)) + (pin "20" (uuid ddab8213-8672-432b-8ed1-83903c0c2e5d)) + (pin "21" (uuid 4282bc42-aa11-4d2d-898d-1bb9a0f3ecce)) + (pin "22" (uuid 1690c2bb-79f5-415d-b2c0-ef21eb3023a9)) + (pin "23" (uuid 4c2886ad-94e9-4cdc-9940-3a519452f98a)) + (pin "24" (uuid 47f2481c-a560-40f0-8f1b-80dc3b144f73)) + (pin "25" (uuid 48e4cadd-e7fa-4607-a3cb-c6ce516a994d)) + (pin "26" (uuid 356a6aa0-76d7-418f-90b1-3f0f710ca2d2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 104.14 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 62d73063-647a-45d0-8ba6-a73da2bdb9df) + (property "Reference" "U1" (id 0) (at 104.775 153.67 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 104.775 156.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 104.14 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 104.14 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d85e18de-59cc-43d8-a37b-1f751e852adf)) + (pin "2" (uuid 248f9fbf-5135-4a26-a283-5f3e84693245)) + (pin "3" (uuid 8a29234f-54bd-4e6e-817f-be9ae12c80f4)) + (pin "4" (uuid 0d994a80-6e05-4f73-852e-df5e190728c5)) + (pin "5" (uuid 52925e3e-839d-4f26-bb09-cfbf6d5c5013)) + (pin "6" (uuid 65e620d3-05d3-475f-a02d-de527b0803f4)) + (pin "7" (uuid 0458dbef-c678-4ca7-9b47-c0339906b61f)) + (pin "8" (uuid 0c3b15a6-9694-4066-8b0c-f80129fb7c6c)) + (pin "9" (uuid e0729a3b-4f1f-4ebb-99c6-257434f2c489)) + (pin "10" (uuid 3ef55d09-aefd-4c6e-94d7-985a54faef96)) + (pin "11" (uuid db70d468-28d0-48b9-9fd5-737acc75dff3)) + (pin "12" (uuid 73b266c4-ed73-445d-998a-7485a5bcd0c6)) + (pin "13" (uuid 11845fc8-2f57-4e2f-9377-46c99ae0fd7d)) + (pin "14" (uuid a2bb278a-e6a7-4c7a-8429-427ccc015d3c)) + (pin "15" (uuid 3a47569a-05fd-4918-a832-8026074bd7ed)) + (pin "16" (uuid 021c94c5-3373-4edd-a9f2-6013b6ea0295)) + (pin "17" (uuid 4e663422-d325-42b3-bb13-9bd5eb0813ad)) + (pin "18" (uuid 7b333b93-56ae-42d5-a3de-a96443f2d69f)) + (pin "19" (uuid c7e325c6-0965-406d-9c54-55515b007736)) + (pin "20" (uuid 0ee87ada-87ed-4e58-8fed-d76687b9d533)) + (pin "21" (uuid f8662235-4410-4d26-8c36-b0f55526f9c4)) + (pin "22" (uuid 4ba541c2-f571-4376-a599-19175dd45b59)) + (pin "23" (uuid 4b880570-ca63-4447-b196-86b6834589f5)) + (pin "24" (uuid 6b4f4978-7709-4fe9-89c0-dc1011bd1b72)) + (pin "25" (uuid 5bcbad60-731c-42e1-b6a8-b3765cfd0d61)) + (pin "26" (uuid 88ef5661-b7f2-48c4-bdbb-72c03dc34b06)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1144.27 172.72 180) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6627552b-1fcf-43dd-b133-88a5c7eed0ed) + (property "Reference" "U1" (id 0) (at 1148.08 172.085 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1148.08 174.625 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1144.27 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1144.27 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2d6515a7-7cc4-4866-8b2d-5e6c9a54cdaa)) + (pin "2" (uuid cd08038d-18c4-4bd0-a237-93bacb476783)) + (pin "3" (uuid 814241c5-b06c-41e6-94eb-6882bd2d3e2c)) + (pin "4" (uuid 286c6b68-4b81-4813-9cc9-fbfefda04853)) + (pin "5" (uuid 30f551d1-77a2-434e-9a72-5abc780d3ca6)) + (pin "6" (uuid 7739efd5-41da-4d1c-898d-813a449e5e90)) + (pin "7" (uuid 794e6320-56ff-4dd7-9253-2aba42325491)) + (pin "8" (uuid 4e654bc1-8c78-4bb9-a487-8a90faf2f4f4)) + (pin "9" (uuid 482d8267-8483-4a00-b540-c6163b3d0e7f)) + (pin "10" (uuid 53819b49-d94b-4b12-9957-1f21fe97b910)) + (pin "11" (uuid 91411886-990f-48b8-8a25-49a6fd1d80c5)) + (pin "12" (uuid bb88a31c-bdb2-461e-bf9d-ac22070a7552)) + (pin "13" (uuid e941e5cc-3a12-4fab-ac79-078478063a77)) + (pin "14" (uuid d3700780-61ec-4a2d-b87f-7a6e2a5ce2ab)) + (pin "15" (uuid 3d0d750d-f6f5-4372-9592-cc670b14d7c5)) + (pin "16" (uuid 33fb6810-246b-4a97-803f-f2bdf80b2a7d)) + (pin "17" (uuid 16950a98-036d-488d-8901-698aae9c3dfa)) + (pin "18" (uuid bc7ee50c-e6e7-4345-84f5-143a09417e56)) + (pin "19" (uuid c5bb7998-114e-4c33-bb9b-0e20717adad3)) + (pin "20" (uuid 33c81b4c-03b1-47d4-9925-b1d8e6283fb5)) + (pin "21" (uuid e840953e-1411-429d-9e36-1afe58a62ec8)) + (pin "22" (uuid 4cc9a122-aa2a-4116-aa0d-1ce28cbda1dd)) + (pin "23" (uuid 82f95ffa-0a10-43c6-aaff-6bb4447cc481)) + (pin "24" (uuid 913a4b45-f798-4890-8634-af8a886b2ac0)) + (pin "25" (uuid 681c3445-1f8e-4f5a-aaf7-3989fba0f3cc)) + (pin "26" (uuid 590665e4-484a-4367-9871-0ea456563b7c)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 365.76 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 69d2d411-6de6-4a83-a222-2f2c8fb52e04) + (property "Reference" "U7" (id 0) (at 367.7794 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 367.7794 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 365.76 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 365.76 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f2919b9f-34d7-40a9-8066-5989ca5f5dfd)) + (pin "2" (uuid 701bbe7a-c37c-40ae-b23c-ef6f4e34a708)) + (pin "3" (uuid 55389ef7-4b08-4c13-8715-6ad401ce09f4)) + (pin "4" (uuid 46187201-27d8-4e50-a464-d741bcb21bf6)) + (pin "5" (uuid 752da756-2254-4d9d-af4c-ddd1fc0667a7)) + (pin "6" (uuid e261f1af-4f92-4c45-b2cd-b58027eb776c)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 840.74 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 71f7ba97-6aa3-497b-8295-04b1d013c92d) + (property "Reference" "U19" (id 0) (at 842.7594 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 842.7594 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 840.74 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 840.74 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8e4ba827-f6db-44a8-b0de-1fc1fa78c65a)) + (pin "2" (uuid f6411562-1978-4de8-89ef-e8d904b01f08)) + (pin "3" (uuid f1e4e195-8292-46ec-98fb-9e1ee04f8576)) + (pin "4" (uuid 152b2313-8dd4-43ce-a502-76c475854c9c)) + (pin "5" (uuid b2d40970-933f-4467-b80f-402493fc8c99)) + (pin "6" (uuid 521d737f-3eaa-4f4e-af68-7707c9b34b0c)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 645.16 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 885fd8df-736c-45ad-9f90-7bb22257e351) + (property "Reference" "U14" (id 0) (at 647.1794 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 647.1794 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 645.16 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 645.16 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cec3b0dd-fed2-477e-ae7e-b777a40949b1)) + (pin "2" (uuid 671b1e14-158d-4d08-9ad0-6c8e5688cbbc)) + (pin "3" (uuid 866bb0aa-c46c-4346-9ec1-78fc834feecb)) + (pin "4" (uuid 8facc68a-317d-465a-b1c0-fcd7489ca70f)) + (pin "5" (uuid 64a34891-66d4-415d-90d2-c69e8ed778fb)) + (pin "6" (uuid 8706171a-5a76-4dc4-9b4c-944e8e75b7f0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 303.53 97.79 270) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 889d8cc5-bf85-421a-8bf3-5c8af3a85241) + (property "Reference" "U1" (id 0) (at 306.07 97.79 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 306.07 100.33 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 303.53 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 303.53 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bdb88028-2383-42f0-81cc-123ca1f00121)) + (pin "2" (uuid d68b6713-423d-454a-8d79-1879a345f6ef)) + (pin "3" (uuid 1e5d35cc-4b66-4e06-b25c-c190cd254f7f)) + (pin "4" (uuid a7325f13-d591-48b2-8be0-c2356358be87)) + (pin "5" (uuid 0215bea5-3120-4f3c-b65b-f1d159713888)) + (pin "6" (uuid b4456db8-41b1-4288-97c4-d6e4c66aca01)) + (pin "7" (uuid 0c97157a-356f-452a-914e-dfaabe23227d)) + (pin "8" (uuid f6465b54-7530-4cff-ad17-b7673f9ff0a5)) + (pin "9" (uuid bda69f08-79f9-47f0-8081-666ca6c9a23a)) + (pin "10" (uuid 5a432733-aa6c-4d18-a8ab-f8735bccce3b)) + (pin "11" (uuid 662fe52c-04a0-49de-95fd-91b44ed5bb5a)) + (pin "12" (uuid 99ccaf97-9bae-460b-b002-02872706baee)) + (pin "13" (uuid 91e4f4ec-e577-4fcf-9608-89c4178758c8)) + (pin "14" (uuid 756ec3cd-cd19-493d-a9f5-da073af9ae4a)) + (pin "15" (uuid 7a4c9411-6a4c-4607-b14c-e9d48965b0f7)) + (pin "16" (uuid d88db76a-a2f9-4f85-9ca8-30f407ee9bc1)) + (pin "17" (uuid 49d85355-476f-4d49-8089-40db144eb81c)) + (pin "18" (uuid 371faa0b-4508-4f4b-ad1b-5ccf171cb100)) + (pin "19" (uuid f0479758-0823-49cb-953e-f217c3e0f506)) + (pin "20" (uuid a8e1a73e-1817-4c88-a23a-1d7c9dbbe04d)) + (pin "21" (uuid 3540b98b-f512-40f0-9c0c-71e4ae5c1563)) + (pin "22" (uuid 4e8997a4-9eb7-4267-8a44-f6e238e13d99)) + (pin "23" (uuid 921b5199-21b4-4b87-99a2-bf70db8da595)) + (pin "24" (uuid e5eb2625-9114-4973-8d8f-441a63074a98)) + (pin "25" (uuid 3bc1ca62-f65b-47ae-8f36-3e133f0341c2)) + (pin "26" (uuid 24fa7ee1-65d9-419c-9056-2bece656f87f)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 1076.96 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a9aa00cd-3f13-466e-b1f8-f1a3964e57f7) + (property "Reference" "U25" (id 0) (at 1078.9794 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 1078.9794 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 1076.96 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1076.96 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c779457c-31b8-4a05-80dc-fb01b86e6234)) + (pin "2" (uuid 8977405f-d5f7-4913-8c43-67291edfc812)) + (pin "3" (uuid 57e7bbbb-e4cd-47bb-88fb-c246602124fd)) + (pin "4" (uuid 3ebf3de9-86fa-48e0-8ca3-a5b98a003bb1)) + (pin "5" (uuid a866e842-00e7-44f1-bca4-431e5edfadae)) + (pin "6" (uuid 173bb17c-e696-4d59-b2c7-a008922c8a94)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 104.14 161.29 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aceb114f-5fa2-4800-ad5d-39c33a6a3fa4) + (property "Reference" "U1" (id 0) (at 104.775 156.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 104.775 158.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 104.14 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 104.14 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e9fa4b2e-5aad-4a38-b9a2-e1591df8145c)) + (pin "2" (uuid 44e79ea2-e8f4-4da9-82db-266f1a5ff489)) + (pin "3" (uuid 966d8d18-9037-423a-9e09-a1b9fc3dcd6b)) + (pin "4" (uuid c89fe59c-5ab3-43e5-a7f2-1ed13f8e60b1)) + (pin "5" (uuid 953d804f-a3a9-4cfd-aa5e-02c4b05fb303)) + (pin "6" (uuid 4954542b-af8d-4a54-9230-7704861fec27)) + (pin "7" (uuid d12e951d-aae5-4fd6-b766-db8863a828be)) + (pin "8" (uuid dd0a714b-0fb8-4f7b-952b-c64fe64843f9)) + (pin "9" (uuid 1d2ac7a1-6829-4d21-aa73-454fd1c3a875)) + (pin "10" (uuid 49b7daee-1f3c-457c-9f24-468920eab80e)) + (pin "11" (uuid 674fc8a8-33ab-4d1c-9144-731cca6f372e)) + (pin "12" (uuid adae60bb-51b4-48ba-9e62-8d358e8a5447)) + (pin "13" (uuid ce9cf9cc-ae42-4b52-8a5b-322dc1710cfb)) + (pin "14" (uuid d8fc6e82-ee7a-40ae-9cc0-755b7f68af96)) + (pin "15" (uuid 1f0566fb-1512-4a6a-8328-c84c773e1845)) + (pin "16" (uuid c529d665-bb7a-40e7-ab95-383ca19a246a)) + (pin "17" (uuid 85cbe76b-7414-489c-812f-fe90a3360763)) + (pin "18" (uuid 38b589d9-d2a3-40a7-9bb2-5e5eeafaccf5)) + (pin "19" (uuid 4e7a2d20-2e34-470e-a29b-a3a4b9f4aed6)) + (pin "20" (uuid dd76b59f-f015-4596-932b-cf33a2cdfda8)) + (pin "21" (uuid 0d15d27e-9a6e-483f-b6f4-5a44ed1fd42f)) + (pin "22" (uuid abb2ef5f-bc4e-474e-bc5d-9d9bc2d53ea5)) + (pin "23" (uuid 568b0524-da90-4fb9-a739-4517bbfc1089)) + (pin "24" (uuid 3483ed0c-667d-4165-a7b9-eb53b1bf9d2a)) + (pin "25" (uuid 5295b2f2-fb1a-4025-8bac-c737fe7ff74c)) + (pin "26" (uuid 39c935fa-1d3b-429e-8b70-75a02dea75aa)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 1038.86 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b03318a0-c49f-4b2a-9db9-93a95225d87f) + (property "Reference" "U24" (id 0) (at 1040.8794 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 1040.8794 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 1038.86 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1038.86 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d6ee209c-5f11-420f-b555-dc447ca0f065)) + (pin "2" (uuid b0a3aec8-1109-4149-9f32-8a1b149ab0ef)) + (pin "3" (uuid 46ea81b7-2f32-423a-8059-7dee517516f2)) + (pin "4" (uuid ec4079d8-57f1-401a-ad32-6ab4d7d62588)) + (pin "5" (uuid fd44fecf-50a2-4e4d-b03b-8a12a485561e)) + (pin "6" (uuid 4666b969-261a-49bd-84ee-8707a28a77c7)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 683.26 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b94e6cce-ac0d-4aba-9965-9819f7135112) + (property "Reference" "U15" (id 0) (at 685.2794 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 685.2794 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 683.26 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 683.26 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e69809a0-6e8d-4216-9bdc-5e36b39b42e4)) + (pin "2" (uuid 8160af49-4b1f-4f00-bb3a-4dd13f58fc21)) + (pin "3" (uuid cf1feafb-2e2f-43c1-9c09-a02c4a441a6c)) + (pin "4" (uuid dea628d3-c09b-410d-85d4-daa135e6c5c0)) + (pin "5" (uuid 6f7bff17-b9d8-49e5-974f-509723be0039)) + (pin "6" (uuid 28b9892e-00d4-4dbd-8567-179c263f8858)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1144.27 157.48 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c0d00853-c884-4a28-b649-16868b2aceff) + (property "Reference" "U1" (id 0) (at 1148.08 156.845 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1148.08 159.385 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1144.27 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1144.27 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 78ad1433-1452-46bb-8817-54886d0e26eb)) + (pin "2" (uuid effff69b-2c95-47d6-90b0-e5824611cfe0)) + (pin "3" (uuid 01b2a193-9688-4a7c-b4db-b392c95e5fe2)) + (pin "4" (uuid 88d44afa-6f25-413d-915f-7d3079017686)) + (pin "5" (uuid 7ad0387e-997e-4806-b7a6-c373d555ac6d)) + (pin "6" (uuid bc477b66-f417-4a94-91fd-b1ef891170f7)) + (pin "7" (uuid 8272b900-08f9-4808-928c-31120252a0bd)) + (pin "8" (uuid 50f79021-16c1-4acf-b01e-7cbfdee47ce4)) + (pin "9" (uuid 85730a2e-b683-49c4-bc44-0aa7f8448777)) + (pin "10" (uuid 350c8b64-b5e9-4628-a50f-64b30ad5165e)) + (pin "11" (uuid a9ea7365-80e1-4d37-834d-a27fc2450ee8)) + (pin "12" (uuid 474b37bf-6fd4-43c6-9cd0-a45391fa038a)) + (pin "13" (uuid 3f080104-c6ca-4ff1-96ef-df60e4a1d0f8)) + (pin "14" (uuid a63b562a-9093-49f2-89d3-f85eea960e63)) + (pin "15" (uuid cb331c23-1917-47a7-a962-16ae460df69c)) + (pin "16" (uuid 6897cb71-2456-47ff-b216-cda93a0d88cd)) + (pin "17" (uuid faceff4a-a1ee-423c-8f78-a9401e77714c)) + (pin "18" (uuid 184e5058-1dd2-4ac1-a078-e8044e7dc7ef)) + (pin "19" (uuid bc160124-247d-464d-afd6-942fce584303)) + (pin "20" (uuid 4258553d-9e10-46f8-9732-3b1b051bd82b)) + (pin "21" (uuid e2258c0a-1ba9-4a76-b845-ec31c22a3a4f)) + (pin "22" (uuid 9ddc2a16-26b5-4650-a1ec-f8b7bac9d213)) + (pin "23" (uuid fa6622c6-4430-4c8e-8e14-5909b4460bd1)) + (pin "24" (uuid c0fe84b3-b915-4ed6-a083-e743fb040b4d)) + (pin "25" (uuid f61e4bea-0c39-4db8-9522-a48b66fd249d)) + (pin "26" (uuid cdd22b16-1307-4c5d-b65b-7f8e5978436d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 224.79 100.33 270) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c2005fe8-27e7-4b79-8168-c599d13337b1) + (property "Reference" "U1" (id 0) (at 227.33 100.33 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 227.33 102.87 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 224.79 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 224.79 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17994bd6-acb9-4dcc-a6aa-5736b3eb432a)) + (pin "2" (uuid 50e4db64-5d9b-4f04-aad7-91af309c04f2)) + (pin "3" (uuid 19d165c8-63d2-47a8-83bf-f7d3bb818092)) + (pin "4" (uuid f40547b3-f265-4bd3-8e93-859148ef0fec)) + (pin "5" (uuid d450b6f5-f7ce-4279-b120-0c3d60c3251c)) + (pin "6" (uuid 2982d084-7c45-4e65-bbe9-7fd79e2f3498)) + (pin "7" (uuid bf044199-dc2f-4fc2-8a9b-9214a0d498a9)) + (pin "8" (uuid cc8cdcf6-98f1-4019-a1f5-6280db329625)) + (pin "9" (uuid 016b0852-f6dd-4530-ad59-a86ec6debb47)) + (pin "10" (uuid 37db69c4-fd74-4fac-a253-fb690161d9ef)) + (pin "11" (uuid ce672b90-ef1e-4164-8499-2fb7f68f2efa)) + (pin "12" (uuid a853b25a-a576-47cf-bc07-57b3078e25b5)) + (pin "13" (uuid 350a8f39-54ab-4f68-aae3-2b7df655e1f2)) + (pin "14" (uuid 69d272de-cb99-41c2-b896-afd3f49f018a)) + (pin "15" (uuid 4fb54e47-ecd3-45b6-be55-99f7b02fe408)) + (pin "16" (uuid ff4c850c-9528-473c-a293-8dc6bd2503fc)) + (pin "17" (uuid a3e90783-d546-4394-8e1e-a39cc8c51cf3)) + (pin "18" (uuid 32ac35e1-cbbc-4121-a447-85db24a4d2ef)) + (pin "19" (uuid 9302c48f-be10-475a-890c-884cda90c0a8)) + (pin "20" (uuid d9fab8ed-40b1-4ce2-bce6-37f2d275d275)) + (pin "21" (uuid 8e714556-0bef-4c26-a9f2-eeb76b2129e5)) + (pin "22" (uuid ff1b3791-a3c8-4019-8f45-21f200bb5dbd)) + (pin "23" (uuid aab3ebc0-a596-428e-9664-38cfe5f30ff9)) + (pin "24" (uuid bb77c2de-7a69-4ce0-b0db-54c8019e7527)) + (pin "25" (uuid 516ea7db-439e-4c74-b262-346b677f582a)) + (pin "26" (uuid d942b6b6-ecb5-44a8-ad56-c7a540f854c2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1144.27 167.64 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c5d12c41-b7d2-440c-9f44-7e385e4092f5) + (property "Reference" "U1" (id 0) (at 1148.08 167.005 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1148.08 169.545 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1144.27 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1144.27 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 04c78131-9773-409b-964d-dd4d30578d31)) + (pin "2" (uuid fe1ade8f-2152-4cfd-befd-56efbf7c81e4)) + (pin "3" (uuid 2e56fabb-517e-4651-9723-7b39e55b9a4c)) + (pin "4" (uuid 83bc25da-b8fd-410d-af21-eb87999afb07)) + (pin "5" (uuid c347b99d-b878-41b9-9842-f7427f9902ab)) + (pin "6" (uuid bc16230c-357e-45c1-a041-74b681ce06d8)) + (pin "7" (uuid b2f379cc-9098-4e26-93ab-f1d139276d7d)) + (pin "8" (uuid 5ad9546c-95b8-49e9-8160-aa9916ffb10b)) + (pin "9" (uuid d144fca2-256b-4fb2-ace6-48646a8deacd)) + (pin "10" (uuid bdbfb392-1a1b-4899-99ff-0536abc51e79)) + (pin "11" (uuid 10c580c2-95f9-4a39-a3be-c1e1f5858e2b)) + (pin "12" (uuid 71bab88a-c2cf-4125-b644-c93fa080e7a0)) + (pin "13" (uuid d0500076-f417-4016-8ee4-21c2659e3957)) + (pin "14" (uuid 1e1d99d4-54f4-4db0-a350-7d5167d040c3)) + (pin "15" (uuid 07ea8b99-5145-4d4f-bad9-1682e8e78a93)) + (pin "16" (uuid b8d61534-edfe-484a-82ad-a05ff1a3a305)) + (pin "17" (uuid c32a0321-5c09-4915-89e7-440295bcaff8)) + (pin "18" (uuid 8eb80b3e-d039-4007-bdd3-2b09db30f7c4)) + (pin "19" (uuid c9268f4c-a62c-4c84-ab94-9195e2eb83c0)) + (pin "20" (uuid 86665cdb-49c2-4576-9c20-e1a48f34b863)) + (pin "21" (uuid c1707f3a-024b-41ed-816c-baa980175285)) + (pin "22" (uuid 7a82357a-e362-42bf-964e-f2104686c299)) + (pin "23" (uuid cb8ed45e-6322-45c0-aa34-485531810137)) + (pin "24" (uuid eadceff6-fa1c-4b9b-b053-d9e8ff5fcbf4)) + (pin "25" (uuid 5ee6b98f-875a-4035-9973-e59c20b44d96)) + (pin "26" (uuid 8bdc545f-6582-4d67-8fa1-c0e42b715e77)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 266.7 99.06 270) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c9120906-ca54-4eae-8076-46fce1d1f693) + (property "Reference" "U1" (id 0) (at 269.24 99.06 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 269.24 101.6 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 266.7 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 266.7 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4cdcbdeb-3c8b-4c62-b192-52f8c40fd8c7)) + (pin "2" (uuid 5203004f-6b02-441b-89c1-0217f4700979)) + (pin "3" (uuid 7aa275a2-ea73-4bb5-92b5-67a1cc6e392b)) + (pin "4" (uuid 94d3b178-46b0-4b99-8053-8c2f0064cb8d)) + (pin "5" (uuid 41f8d4de-256d-452b-9abe-0d9c7a0bbb5f)) + (pin "6" (uuid f83248f3-c01e-411a-b3d0-e7b38afe0924)) + (pin "7" (uuid 47474b57-b8a6-46e4-8c41-aab40a951c94)) + (pin "8" (uuid d4a66ed6-b996-42f9-a8d6-7f1bdc2a4a93)) + (pin "9" (uuid c65ef337-59bc-4fbf-ae23-36797147edf7)) + (pin "10" (uuid 701910fa-de27-4d99-98fa-73b54f14dc75)) + (pin "11" (uuid e81f925c-86cc-436c-af13-4ec93eadde36)) + (pin "12" (uuid 4adba643-e16b-4e5e-b3c6-89d898c9ed75)) + (pin "13" (uuid cdc913c1-69fe-4e97-a10a-e1a9155ca0db)) + (pin "14" (uuid e573ca14-bf65-46af-a58e-77434f90d4d5)) + (pin "15" (uuid 5c4717a9-5756-4b09-a0f4-887cdb7d7b1e)) + (pin "16" (uuid abc4516e-6581-400b-9792-d471480fc0fa)) + (pin "17" (uuid b00cf37d-4008-4129-81af-710188710e21)) + (pin "18" (uuid 7e0104b3-5f82-4573-b515-b669b3564b44)) + (pin "19" (uuid f2b2460a-e798-45ef-86d3-c1c657ed6587)) + (pin "20" (uuid af67f8af-8a38-4142-93d4-debad912353c)) + (pin "21" (uuid 1a638f68-fdb7-492f-9f06-c01d83d0e1bf)) + (pin "22" (uuid 6e556a9b-b416-45aa-b0e1-6639967b5b97)) + (pin "23" (uuid 4991be3d-1e57-4be9-8aea-350bc5fcbfa2)) + (pin "24" (uuid 0ddac2f5-8d24-46d8-94c1-709e6d113a6a)) + (pin "25" (uuid 88ec240a-035b-4231-a1f8-5e3b498f40cb)) + (pin "26" (uuid 5485117a-cbf0-47b4-ab42-0eb694cd20c9)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 525.78 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc55d4e6-e5a0-4951-a9da-0ed25a8d9d3f) + (property "Reference" "U11" (id 0) (at 527.7994 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 527.7994 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 525.78 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 525.78 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cc0c2631-f6f8-4942-9e2b-6cfee334a896)) + (pin "2" (uuid 5c2cb2af-87eb-41cb-b95e-b169d07f69f7)) + (pin "3" (uuid d21e5733-5711-40d3-a421-18e132a15480)) + (pin "4" (uuid 05d41d7d-e0f0-46d3-8689-15ae9250e721)) + (pin "5" (uuid 2f621dd5-fe99-42b9-89f6-80f4409e97af)) + (pin "6" (uuid 963de1d9-f96e-4efe-ba93-5ac9f95c160d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 187.96 101.6 270) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3efc055-adba-4f45-9497-a8187e1e2182) + (property "Reference" "U1" (id 0) (at 190.5 101.6 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 190.5 104.14 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 187.96 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17e74145-eed7-4720-9f77-ff0242929bdd)) + (pin "2" (uuid 3e8605d6-3182-4aba-b4b1-40a11301f1cf)) + (pin "3" (uuid c5d8e03f-7850-494f-9799-9da604724049)) + (pin "4" (uuid 96f4a98d-c237-409d-990a-a3cd3f3bcf35)) + (pin "5" (uuid d897b31e-c038-4e6a-9a1f-1a771291d59d)) + (pin "6" (uuid 17c7bb71-c4e1-4632-b62c-88a6f19efe60)) + (pin "7" (uuid d5a8c7e9-c3bd-429b-8cb4-c7f793150b83)) + (pin "8" (uuid 1abab002-73dc-4f6b-9a91-6409799236db)) + (pin "9" (uuid 5e3d5cea-b15c-439c-a342-5e99ea315d8b)) + (pin "10" (uuid f4c90bcf-c5c2-4314-b3af-d7588031647c)) + (pin "11" (uuid 30ce9d64-bae3-4c45-b57a-3f0452c4295c)) + (pin "12" (uuid cde425c8-021a-46b0-8085-1f56edc71379)) + (pin "13" (uuid 68f823a2-5213-4a6e-9966-1f462e05346b)) + (pin "14" (uuid 499085b3-a204-4110-a33f-4412e74c60f1)) + (pin "15" (uuid 935e24d2-52db-4ff9-96d0-bb8c4f96f47c)) + (pin "16" (uuid f332bb27-bca7-44cc-8a92-cfa4f9eca980)) + (pin "17" (uuid 22db2cf2-22ac-4752-bec6-388a3bfed2c2)) + (pin "18" (uuid bd83e01b-683a-44ee-bc62-ec7f21839320)) + (pin "19" (uuid b209482d-41af-4691-89ba-bb2e44dbf8c2)) + (pin "20" (uuid ab6cdb51-d3e0-4487-85c5-699f6bd65361)) + (pin "21" (uuid d18fdb7c-0473-4fab-bb5d-b925388d2231)) + (pin "22" (uuid 1afaae68-e606-4ef8-b461-0ecd293e6cfe)) + (pin "23" (uuid 2a7278ea-0c95-4668-b683-a91514eaf7ca)) + (pin "24" (uuid 7adcc8fe-1a98-4095-a50d-58399737ed76)) + (pin "25" (uuid db5f3b06-2cab-4aec-af53-b2eb5876d92f)) + (pin "26" (uuid 04e7dee4-2943-4ae5-ac07-f551eb3d21b1)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 604.52 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d7ab1cb1-41d2-4be1-9570-37dca0bfe92b) + (property "Reference" "U13" (id 0) (at 606.5394 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 606.5394 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 604.52 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 604.52 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a5b493f4-d7c4-43da-aeaa-5c68ccf0e22e)) + (pin "2" (uuid 6490f82d-eaa6-4a21-8ad6-9856dae8277d)) + (pin "3" (uuid 636f947d-6bbf-487b-9c59-ef32853f83c1)) + (pin "4" (uuid 9cfdd009-eb3f-4548-a464-e074220aa6d1)) + (pin "5" (uuid 25d817e3-3ec9-48cc-a411-be40ab84e7f6)) + (pin "6" (uuid 70c7f9ad-80fd-4128-b041-b1f2397b2b0b)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 802.64 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2530075-c5fa-4eb2-bc5e-6ba0b9f859bc) + (property "Reference" "U18" (id 0) (at 804.6594 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 804.6594 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 802.64 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 802.64 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f738e0a-3527-4667-85e8-cfbb057505d1)) + (pin "2" (uuid 91fa10c3-d60a-48cd-bb44-5af013fe0107)) + (pin "3" (uuid 4695d3e9-1a67-49f8-a086-c11b03e0d93d)) + (pin "4" (uuid e8f598cc-8ad4-4e2a-a2f5-da93a07d223f)) + (pin "5" (uuid bd5e196e-a759-4542-a780-ea58176c6041)) + (pin "6" (uuid a6d38805-4bdf-432a-ac90-fabe96c4e80f)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 960.12 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed0d5c12-1aa0-4629-afab-e01d3b8c9f50) + (property "Reference" "U22" (id 0) (at 962.1394 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 962.1394 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 960.12 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 960.12 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a34b41e-0468-4cd3-ba04-63d036bb5fb4)) + (pin "2" (uuid c2a06b9d-cd2f-4c19-902a-51569321ff9f)) + (pin "3" (uuid 03ff49ad-ba7b-40c4-b8ec-b6daa180b14a)) + (pin "4" (uuid 709910ae-6e9b-4b29-a816-80255146eb01)) + (pin "5" (uuid f5b71ceb-daed-4399-871e-3889dfa7e187)) + (pin "6" (uuid 28e86888-4be4-4853-b42a-bed44f57b59d)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 327.66 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fc13bb47-affb-4ab8-ad4d-e26561c295d3) + (property "Reference" "U6" (id 0) (at 329.6794 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 329.6794 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 327.66 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 327.66 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1e213de4-bc84-45d7-93a2-6950d90f2669)) + (pin "2" (uuid 7245af2d-0a1f-47a0-b3b9-377cca81c06c)) + (pin "3" (uuid 9af86570-16f0-4493-b3b6-02e2fb0afe82)) + (pin "4" (uuid 0864a54d-b004-4444-a721-143faee91df8)) + (pin "5" (uuid e4728783-d638-4bc7-a199-c72677e4061b)) + (pin "6" (uuid e47c6c90-d821-4158-a1fd-54be04a6db65)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 248.92 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fff0f42a-d551-4b9e-b364-2e46f321e545) + (property "Reference" "U4" (id 0) (at 250.9394 134.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 250.9394 138.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 248.92 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 248.92 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc973bce-c3a6-49b8-9ab8-1d645333fe36)) + (pin "2" (uuid 661c4eb1-5afc-4cd0-b6b2-ee20150cc4c5)) + (pin "3" (uuid 7c198295-b0ba-4a62-8cc4-f49c5e311530)) + (pin "4" (uuid 9211b754-90dc-4ab3-84ff-41ad7b647b87)) + (pin "5" (uuid 498aacea-2320-42d5-9775-f2ee270e82a7)) + (pin "6" (uuid 375d9ca1-6008-4adb-9656-32f8f80e82c5)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/62d73063-647a-45d0-8ba6-a73da2bdb9df" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/aceb114f-5fa2-4800-ad5d-39c33a6a3fa4" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/3046752e-11b1-475a-86f6-ac829a31f1e4" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/d3efc055-adba-4f45-9497-a8187e1e2182" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/c2005fe8-27e7-4b79-8168-c599d13337b1" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/c9120906-ca54-4eae-8076-46fce1d1f693" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/889d8cc5-bf85-421a-8bf3-5c8af3a85241" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/55703133-dc39-4310-9873-58724cd913c1" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/06e9e6c5-954b-454c-befc-06542fca77ae" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/c0d00853-c884-4a28-b649-16868b2aceff" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/328ffa3a-b5e8-40bf-a091-968e604a03cc" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/57b3e28a-8a36-4554-8330-bbe600a77327" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/4da12b63-3e09-4c99-8379-401e12377634" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/c5d12c41-b7d2-440c-9f44-7e385e4092f5" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/1b6282c2-9707-4a25-8f78-66d0dcaf68f1" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/6627552b-1fcf-43dd-b133-88a5c7eed0ed" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/083ebe98-f338-47c1-8d44-98e60fc27b7c" + (reference "U2") (unit 1) (value "d_tff") (footprint "") + ) + (path "/1675ab51-73b5-404f-b91d-4b1cc7ee5bcf" + (reference "U3") (unit 1) (value "d_tff") (footprint "") + ) + (path "/fff0f42a-d551-4b9e-b364-2e46f321e545" + (reference "U4") (unit 1) (value "d_tff") (footprint "") + ) + (path "/4edcdea8-e433-4ba1-9a97-84e682ceefec" + (reference "U5") (unit 1) (value "d_tff") (footprint "") + ) + (path "/fc13bb47-affb-4ab8-ad4d-e26561c295d3" + (reference "U6") (unit 1) (value "d_tff") (footprint "") + ) + (path "/69d2d411-6de6-4a83-a222-2f2c8fb52e04" + (reference "U7") (unit 1) (value "d_tff") (footprint "") + ) + (path "/4223c6d1-068f-45e8-9f9d-ede0d2cb8c32" + (reference "U8") (unit 1) (value "d_tff") (footprint "") + ) + (path "/25c92279-301b-406e-9269-cf2befdcd1e8" + (reference "U9") (unit 1) (value "d_tff") (footprint "") + ) + (path "/17bceff9-442e-418a-8070-eccb6e0b6a16" + (reference "U10") (unit 1) (value "d_tff") (footprint "") + ) + (path "/cc55d4e6-e5a0-4951-a9da-0ed25a8d9d3f" + (reference "U11") (unit 1) (value "d_tff") (footprint "") + ) + (path "/4489a7a3-3209-4840-af8d-2a91f804b597" + (reference "U12") (unit 1) (value "d_tff") (footprint "") + ) + (path "/d7ab1cb1-41d2-4be1-9570-37dca0bfe92b" + (reference "U13") (unit 1) (value "d_tff") (footprint "") + ) + (path "/885fd8df-736c-45ad-9f90-7bb22257e351" + (reference "U14") (unit 1) (value "d_tff") (footprint "") + ) + (path "/b94e6cce-ac0d-4aba-9965-9819f7135112" + (reference "U15") (unit 1) (value "d_tff") (footprint "") + ) + (path "/4b50d8a0-05c6-4475-bfa9-fd6a74516e6d" + (reference "U16") (unit 1) (value "d_tff") (footprint "") + ) + (path "/17da891b-d67f-4e48-b24d-8714c89442b2" + (reference "U17") (unit 1) (value "d_tff") (footprint "") + ) + (path "/e2530075-c5fa-4eb2-bc5e-6ba0b9f859bc" + (reference "U18") (unit 1) (value "d_tff") (footprint "") + ) + (path "/71f7ba97-6aa3-497b-8295-04b1d013c92d" + (reference "U19") (unit 1) (value "d_tff") (footprint "") + ) + (path "/188e1bfa-bdaf-421c-871f-1729d7860102" + (reference "U20") (unit 1) (value "d_tff") (footprint "") + ) + (path "/448a9f23-3959-4a90-8e1d-23f668ef2a23" + (reference "U21") (unit 1) (value "d_tff") (footprint "") + ) + (path "/ed0d5c12-1aa0-4629-afab-e01d3b8c9f50" + (reference "U22") (unit 1) (value "d_tff") (footprint "") + ) + (path "/18c82ab3-7fe1-47b3-9654-2d8e51bc9e83" + (reference "U23") (unit 1) (value "d_tff") (footprint "") + ) + (path "/b03318a0-c49f-4b2a-9db9-93a95225d87f" + (reference "U24") (unit 1) (value "d_tff") (footprint "") + ) + (path "/a9aa00cd-3f13-466e-b1f8-f1a3964e57f7" + (reference "U25") (unit 1) (value "d_tff") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/MC14521B/MC14521B.sub b/library/SubcircuitLibrary/MC14521B/MC14521B.sub new file mode 100644 index 000000000..3bc7b1ce3 --- /dev/null +++ b/library/SubcircuitLibrary/MC14521B/MC14521B.sub @@ -0,0 +1,102 @@ +* Subcircuit MC14521B +.subckt MC14521B net-_u2-pad2_ net-_u10-pad4_ net-_u10-pad1_ net-_u2-pad5_ net-_u3-pad5_ net-_u4-pad5_ net-_u5-pad5_ net-_u6-pad5_ net-_u7-pad5_ net-_u19-pad5_ net-_u20-pad5_ net-_u21-pad5_ net-_u22-pad5_ net-_u23-pad5_ net-_u24-pad5_ net-_u25-pad5_ +.title kicad schematic +* u18 net-_u10-pad1_ net-_u17-pad5_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ d_tff +* u16 net-_u10-pad1_ net-_u15-pad5_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ d_tff +* u17 net-_u10-pad1_ net-_u16-pad5_ unconnected-_u17-pad3_ net-_u10-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_tff +* u23 net-_u10-pad1_ net-_u22-pad5_ unconnected-_u23-pad3_ net-_u10-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ d_tff +* u24 net-_u10-pad1_ net-_u23-pad5_ unconnected-_u24-pad3_ net-_u10-pad4_ net-_u24-pad5_ unconnected-_u24-pad6_ d_tff +* u22 net-_u10-pad1_ net-_u21-pad5_ unconnected-_u22-pad3_ net-_u10-pad4_ net-_u22-pad5_ unconnected-_u22-pad6_ d_tff +* u20 net-_u10-pad1_ net-_u19-pad5_ unconnected-_u20-pad3_ net-_u10-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ d_tff +* u21 net-_u10-pad1_ net-_u20-pad5_ unconnected-_u21-pad3_ net-_u10-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ d_tff +* u19 net-_u10-pad1_ net-_u18-pad5_ unconnected-_u19-pad3_ net-_u10-pad4_ net-_u19-pad5_ unconnected-_u19-pad6_ d_tff +* u25 net-_u10-pad1_ net-_u24-pad5_ unconnected-_u25-pad3_ net-_u10-pad4_ net-_u25-pad5_ unconnected-_u25-pad6_ d_tff +* u14 net-_u10-pad1_ net-_u13-pad5_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_tff +* u15 net-_u10-pad1_ net-_u14-pad5_ unconnected-_u15-pad3_ net-_u10-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ d_tff +* u10 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ d_tff +* u8 net-_u10-pad1_ net-_u7-pad5_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u8-pad5_ unconnected-_u8-pad6_ d_tff +* u9 net-_u10-pad1_ net-_u8-pad5_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u10-pad2_ unconnected-_u9-pad6_ d_tff +* u11 net-_u10-pad1_ net-_u10-pad5_ unconnected-_u11-pad3_ net-_u10-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ d_tff +* u12 net-_u10-pad1_ net-_u11-pad5_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ d_tff +* u13 net-_u10-pad1_ net-_u12-pad5_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ d_tff +* u7 net-_u10-pad1_ net-_u6-pad5_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u7-pad5_ unconnected-_u7-pad6_ d_tff +* u6 net-_u10-pad1_ net-_u5-pad5_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u6-pad5_ unconnected-_u6-pad6_ d_tff +* u5 net-_u10-pad1_ net-_u4-pad5_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ d_tff +* u4 net-_u10-pad1_ net-_u3-pad5_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u4-pad5_ unconnected-_u4-pad6_ d_tff +* u2 net-_u10-pad1_ net-_u2-pad2_ unconnected-_u2-pad3_ net-_u10-pad4_ net-_u2-pad5_ unconnected-_u2-pad6_ d_tff +* u3 net-_u10-pad1_ net-_u2-pad5_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ d_tff +a1 net-_u10-pad1_ net-_u17-pad5_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ u18 +a2 net-_u10-pad1_ net-_u15-pad5_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ u16 +a3 net-_u10-pad1_ net-_u16-pad5_ unconnected-_u17-pad3_ net-_u10-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a4 net-_u10-pad1_ net-_u22-pad5_ unconnected-_u23-pad3_ net-_u10-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ u23 +a5 net-_u10-pad1_ net-_u23-pad5_ unconnected-_u24-pad3_ net-_u10-pad4_ net-_u24-pad5_ unconnected-_u24-pad6_ u24 +a6 net-_u10-pad1_ net-_u21-pad5_ unconnected-_u22-pad3_ net-_u10-pad4_ net-_u22-pad5_ unconnected-_u22-pad6_ u22 +a7 net-_u10-pad1_ net-_u19-pad5_ unconnected-_u20-pad3_ net-_u10-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ u20 +a8 net-_u10-pad1_ net-_u20-pad5_ unconnected-_u21-pad3_ net-_u10-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ u21 +a9 net-_u10-pad1_ net-_u18-pad5_ unconnected-_u19-pad3_ net-_u10-pad4_ net-_u19-pad5_ unconnected-_u19-pad6_ u19 +a10 net-_u10-pad1_ net-_u24-pad5_ unconnected-_u25-pad3_ net-_u10-pad4_ net-_u25-pad5_ unconnected-_u25-pad6_ u25 +a11 net-_u10-pad1_ net-_u13-pad5_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a12 net-_u10-pad1_ net-_u14-pad5_ unconnected-_u15-pad3_ net-_u10-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ u15 +a13 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ u10 +a14 net-_u10-pad1_ net-_u7-pad5_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u8-pad5_ unconnected-_u8-pad6_ u8 +a15 net-_u10-pad1_ net-_u8-pad5_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u10-pad2_ unconnected-_u9-pad6_ u9 +a16 net-_u10-pad1_ net-_u10-pad5_ unconnected-_u11-pad3_ net-_u10-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ u11 +a17 net-_u10-pad1_ net-_u11-pad5_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ u12 +a18 net-_u10-pad1_ net-_u12-pad5_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ u13 +a19 net-_u10-pad1_ net-_u6-pad5_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u7-pad5_ unconnected-_u7-pad6_ u7 +a20 net-_u10-pad1_ net-_u5-pad5_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u6-pad5_ unconnected-_u6-pad6_ u6 +a21 net-_u10-pad1_ net-_u4-pad5_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ u5 +a22 net-_u10-pad1_ net-_u3-pad5_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u4-pad5_ unconnected-_u4-pad6_ u4 +a23 net-_u10-pad1_ net-_u2-pad2_ unconnected-_u2-pad3_ net-_u10-pad4_ net-_u2-pad5_ unconnected-_u2-pad6_ u2 +a24 net-_u10-pad1_ net-_u2-pad5_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ u3 +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u18 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u16 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u17 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u23 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u24 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u22 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u20 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u21 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u19 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u25 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u14 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u15 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u10 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u8 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u9 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u11 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u12 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u13 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u7 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u6 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u5 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u4 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u2 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u3 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Control Statements + +.ends MC14521B \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14521B/MC14521B_Previous_Values.xml b/library/SubcircuitLibrary/MC14521B/MC14521B_Previous_Values.xml new file mode 100644 index 000000000..e53d718f9 --- /dev/null +++ b/library/SubcircuitLibrary/MC14521B/MC14521B_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tff \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14521B/analysis b/library/SubcircuitLibrary/MC14521B/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/MC14521B/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14530B/MC14530B.cir b/library/SubcircuitLibrary/MC14530B/MC14530B.cir new file mode 100644 index 000000000..3dedb95e0 --- /dev/null +++ b/library/SubcircuitLibrary/MC14530B/MC14530B.cir @@ -0,0 +1,53 @@ +.title KiCad schematic +U25 Net-_U25-Pad1_ /E1 Net-_U25-Pad3_ d_and +U24 Net-_U13-Pad1_ /E1 Net-_U24-Pad3_ d_and +U22 Net-_U22-Pad1_ /E1 Net-_U22-Pad3_ d_and +U23 Net-_U23-Pad1_ Net-_U23-Pad2_ Net-_U23-Pad3_ d_or +U26 Net-_U10-Pad3_ /E1 Net-_U26-Pad3_ d_and +U28 Net-_U10-Pad3_ /D1 Net-_U28-Pad3_ d_and +U27 Net-_U11-Pad3_ /E1 Net-_U27-Pad3_ d_and +U30 Net-_U15-Pad1_ /E2 Net-_U30-Pad3_ d_and +U31 Net-_U14-Pad3_ /E2 Net-_U31-Pad3_ d_and +U29 Net-_U12-Pad3_ Net-_U13-Pad3_ Net-_U29-Pad3_ d_or +U32 Net-_U16-Pad3_ /D2 Net-_U32-Pad3_ d_and +U8 Net-_U12-Pad1_ /C1 Net-_U23-Pad1_ d_and +U9 /C1 /D1 Net-_U25-Pad1_ d_and +U11 /B1 /D1 Net-_U11-Pad3_ d_and +U10 /B1 /C1 Net-_U10-Pad3_ d_and +U7 Net-_U12-Pad1_ /D1 Net-_U23-Pad2_ d_and +U6 /A1 /D1 Net-_U22-Pad1_ d_and +U12 Net-_U12-Pad1_ /E1 Net-_U12-Pad3_ d_and +U13 Net-_U13-Pad1_ /D1 Net-_U13-Pad3_ d_and +U14 /A2 /D2 Net-_U14-Pad3_ d_and +U15 Net-_U15-Pad1_ /D2 Net-_U15-Pad3_ d_and +U16 /B2 /C2 Net-_U16-Pad3_ d_and +U4 /A2 /C2 Net-_U15-Pad1_ d_and +U5 /A2 /B2 Net-_U17-Pad1_ d_and +U2 /A1 /B1 Net-_U12-Pad1_ d_and +U3 /A1 /C1 Net-_U13-Pad1_ d_and +U37 Net-_U21-Pad3_ Net-_U15-Pad3_ Net-_U37-Pad3_ d_or +U35 Net-_U19-Pad3_ /E2 Net-_U35-Pad3_ d_and +U36 Net-_U20-Pad3_ /E2 Net-_U36-Pad3_ d_and +U33 Net-_U16-Pad3_ /E2 Net-_U33-Pad3_ d_and +U34 Net-_U17-Pad3_ Net-_U18-Pad3_ Net-_U34-Pad3_ d_or +U43 Net-_U32-Pad3_ Net-_U33-Pad3_ Net-_U43-Pad3_ d_or +U42 Net-_U30-Pad3_ Net-_U31-Pad3_ Net-_U42-Pad3_ d_or +U39 Net-_U28-Pad3_ Net-_U26-Pad3_ Net-_U39-Pad3_ d_or +U38 Net-_U24-Pad3_ Net-_U22-Pad3_ Net-_U38-Pad3_ d_or +U41 Net-_U23-Pad3_ Net-_U29-Pad3_ Net-_U41-Pad3_ d_or +U40 Net-_U27-Pad3_ Net-_U25-Pad3_ Net-_U40-Pad3_ d_or +U45 Net-_U34-Pad3_ Net-_U37-Pad3_ Net-_U45-Pad3_ d_or +U44 Net-_U35-Pad3_ Net-_U36-Pad3_ Net-_U44-Pad3_ d_or +U49 Net-_U44-Pad3_ Net-_U45-Pad3_ Net-_U49-Pad3_ d_or +U48 Net-_U42-Pad3_ Net-_U43-Pad3_ Net-_U48-Pad3_ d_or +U46 Net-_U38-Pad3_ Net-_U39-Pad3_ Net-_U46-Pad3_ d_or +U47 Net-_U40-Pad3_ Net-_U41-Pad3_ Net-_U47-Pad3_ d_or +U51 Net-_U48-Pad3_ Net-_U49-Pad3_ Net-_U1-Pad12_ d_or +U1 /A1 /A2 /B1 /B2 /C1 /C2 /D1 /D2 /E1 /E2 Net-_U1-Pad11_ Net-_U1-Pad12_ PORT +U50 Net-_U46-Pad3_ Net-_U47-Pad3_ Net-_U1-Pad11_ d_or +U17 Net-_U17-Pad1_ /C2 Net-_U17-Pad3_ d_and +U18 Net-_U17-Pad1_ /D2 Net-_U18-Pad3_ d_and +U20 /C2 /D2 Net-_U20-Pad3_ d_and +U19 /B2 /D2 Net-_U19-Pad3_ d_and +U21 Net-_U17-Pad1_ /E2 Net-_U21-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/MC14530B/MC14530B.cir.out b/library/SubcircuitLibrary/MC14530B/MC14530B.cir.out new file mode 100644 index 000000000..303848408 --- /dev/null +++ b/library/SubcircuitLibrary/MC14530B/MC14530B.cir.out @@ -0,0 +1,212 @@ +.title kicad schematic + +* u25 net-_u25-pad1_ /e1 net-_u25-pad3_ d_and +* u24 net-_u13-pad1_ /e1 net-_u24-pad3_ d_and +* u22 net-_u22-pad1_ /e1 net-_u22-pad3_ d_and +* u23 net-_u23-pad1_ net-_u23-pad2_ net-_u23-pad3_ d_or +* u26 net-_u10-pad3_ /e1 net-_u26-pad3_ d_and +* u28 net-_u10-pad3_ /d1 net-_u28-pad3_ d_and +* u27 net-_u11-pad3_ /e1 net-_u27-pad3_ d_and +* u30 net-_u15-pad1_ /e2 net-_u30-pad3_ d_and +* u31 net-_u14-pad3_ /e2 net-_u31-pad3_ d_and +* u29 net-_u12-pad3_ net-_u13-pad3_ net-_u29-pad3_ d_or +* u32 net-_u16-pad3_ /d2 net-_u32-pad3_ d_and +* u8 net-_u12-pad1_ /c1 net-_u23-pad1_ d_and +* u9 /c1 /d1 net-_u25-pad1_ d_and +* u11 /b1 /d1 net-_u11-pad3_ d_and +* u10 /b1 /c1 net-_u10-pad3_ d_and +* u7 net-_u12-pad1_ /d1 net-_u23-pad2_ d_and +* u6 /a1 /d1 net-_u22-pad1_ d_and +* u12 net-_u12-pad1_ /e1 net-_u12-pad3_ d_and +* u13 net-_u13-pad1_ /d1 net-_u13-pad3_ d_and +* u14 /a2 /d2 net-_u14-pad3_ d_and +* u15 net-_u15-pad1_ /d2 net-_u15-pad3_ d_and +* u16 /b2 /c2 net-_u16-pad3_ d_and +* u4 /a2 /c2 net-_u15-pad1_ d_and +* u5 /a2 /b2 net-_u17-pad1_ d_and +* u2 /a1 /b1 net-_u12-pad1_ d_and +* u3 /a1 /c1 net-_u13-pad1_ d_and +* u37 net-_u21-pad3_ net-_u15-pad3_ net-_u37-pad3_ d_or +* u35 net-_u19-pad3_ /e2 net-_u35-pad3_ d_and +* u36 net-_u20-pad3_ /e2 net-_u36-pad3_ d_and +* u33 net-_u16-pad3_ /e2 net-_u33-pad3_ d_and +* u34 net-_u17-pad3_ net-_u18-pad3_ net-_u34-pad3_ d_or +* u43 net-_u32-pad3_ net-_u33-pad3_ net-_u43-pad3_ d_or +* u42 net-_u30-pad3_ net-_u31-pad3_ net-_u42-pad3_ d_or +* u39 net-_u28-pad3_ net-_u26-pad3_ net-_u39-pad3_ d_or +* u38 net-_u24-pad3_ net-_u22-pad3_ net-_u38-pad3_ d_or +* u41 net-_u23-pad3_ net-_u29-pad3_ net-_u41-pad3_ d_or +* u40 net-_u27-pad3_ net-_u25-pad3_ net-_u40-pad3_ d_or +* u45 net-_u34-pad3_ net-_u37-pad3_ net-_u45-pad3_ d_or +* u44 net-_u35-pad3_ net-_u36-pad3_ net-_u44-pad3_ d_or +* u49 net-_u44-pad3_ net-_u45-pad3_ net-_u49-pad3_ d_or +* u48 net-_u42-pad3_ net-_u43-pad3_ net-_u48-pad3_ d_or +* u46 net-_u38-pad3_ net-_u39-pad3_ net-_u46-pad3_ d_or +* u47 net-_u40-pad3_ net-_u41-pad3_ net-_u47-pad3_ d_or +* u51 net-_u48-pad3_ net-_u49-pad3_ net-_u1-pad12_ d_or +* u1 /a1 /a2 /b1 /b2 /c1 /c2 /d1 /d2 /e1 /e2 net-_u1-pad11_ net-_u1-pad12_ port +* u50 net-_u46-pad3_ net-_u47-pad3_ net-_u1-pad11_ d_or +* u17 net-_u17-pad1_ /c2 net-_u17-pad3_ d_and +* u18 net-_u17-pad1_ /d2 net-_u18-pad3_ d_and +* u20 /c2 /d2 net-_u20-pad3_ d_and +* u19 /b2 /d2 net-_u19-pad3_ d_and +* u21 net-_u17-pad1_ /e2 net-_u21-pad3_ d_and +a1 [net-_u25-pad1_ /e1 ] net-_u25-pad3_ u25 +a2 [net-_u13-pad1_ /e1 ] net-_u24-pad3_ u24 +a3 [net-_u22-pad1_ /e1 ] net-_u22-pad3_ u22 +a4 [net-_u23-pad1_ net-_u23-pad2_ ] net-_u23-pad3_ u23 +a5 [net-_u10-pad3_ /e1 ] net-_u26-pad3_ u26 +a6 [net-_u10-pad3_ /d1 ] net-_u28-pad3_ u28 +a7 [net-_u11-pad3_ /e1 ] net-_u27-pad3_ u27 +a8 [net-_u15-pad1_ /e2 ] net-_u30-pad3_ u30 +a9 [net-_u14-pad3_ /e2 ] net-_u31-pad3_ u31 +a10 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u29-pad3_ u29 +a11 [net-_u16-pad3_ /d2 ] net-_u32-pad3_ u32 +a12 [net-_u12-pad1_ /c1 ] net-_u23-pad1_ u8 +a13 [/c1 /d1 ] net-_u25-pad1_ u9 +a14 [/b1 /d1 ] net-_u11-pad3_ u11 +a15 [/b1 /c1 ] net-_u10-pad3_ u10 +a16 [net-_u12-pad1_ /d1 ] net-_u23-pad2_ u7 +a17 [/a1 /d1 ] net-_u22-pad1_ u6 +a18 [net-_u12-pad1_ /e1 ] net-_u12-pad3_ u12 +a19 [net-_u13-pad1_ /d1 ] net-_u13-pad3_ u13 +a20 [/a2 /d2 ] net-_u14-pad3_ u14 +a21 [net-_u15-pad1_ /d2 ] net-_u15-pad3_ u15 +a22 [/b2 /c2 ] net-_u16-pad3_ u16 +a23 [/a2 /c2 ] net-_u15-pad1_ u4 +a24 [/a2 /b2 ] net-_u17-pad1_ u5 +a25 [/a1 /b1 ] net-_u12-pad1_ u2 +a26 [/a1 /c1 ] net-_u13-pad1_ u3 +a27 [net-_u21-pad3_ net-_u15-pad3_ ] net-_u37-pad3_ u37 +a28 [net-_u19-pad3_ /e2 ] net-_u35-pad3_ u35 +a29 [net-_u20-pad3_ /e2 ] net-_u36-pad3_ u36 +a30 [net-_u16-pad3_ /e2 ] net-_u33-pad3_ u33 +a31 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u34-pad3_ u34 +a32 [net-_u32-pad3_ net-_u33-pad3_ ] net-_u43-pad3_ u43 +a33 [net-_u30-pad3_ net-_u31-pad3_ ] net-_u42-pad3_ u42 +a34 [net-_u28-pad3_ net-_u26-pad3_ ] net-_u39-pad3_ u39 +a35 [net-_u24-pad3_ net-_u22-pad3_ ] net-_u38-pad3_ u38 +a36 [net-_u23-pad3_ net-_u29-pad3_ ] net-_u41-pad3_ u41 +a37 [net-_u27-pad3_ net-_u25-pad3_ ] net-_u40-pad3_ u40 +a38 [net-_u34-pad3_ net-_u37-pad3_ ] net-_u45-pad3_ u45 +a39 [net-_u35-pad3_ net-_u36-pad3_ ] net-_u44-pad3_ u44 +a40 [net-_u44-pad3_ net-_u45-pad3_ ] net-_u49-pad3_ u49 +a41 [net-_u42-pad3_ net-_u43-pad3_ ] net-_u48-pad3_ u48 +a42 [net-_u38-pad3_ net-_u39-pad3_ ] net-_u46-pad3_ u46 +a43 [net-_u40-pad3_ net-_u41-pad3_ ] net-_u47-pad3_ u47 +a44 [net-_u48-pad3_ net-_u49-pad3_ ] net-_u1-pad12_ u51 +a45 [net-_u46-pad3_ net-_u47-pad3_ ] net-_u1-pad11_ u50 +a46 [net-_u17-pad1_ /c2 ] net-_u17-pad3_ u17 +a47 [net-_u17-pad1_ /d2 ] net-_u18-pad3_ u18 +a48 [/c2 /d2 ] net-_u20-pad3_ u20 +a49 [/b2 /d2 ] net-_u19-pad3_ u19 +a50 [net-_u17-pad1_ /e2 ] net-_u21-pad3_ u21 +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u30 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u31 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u29 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u32 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u16 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u37 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u35 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u36 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u33 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u34 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u43 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u42 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u39 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u38 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u41 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u40 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u45 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u44 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u49 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u48 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u46 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u47 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u51 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u50 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC14530B/MC14530B.kicad_sch b/library/SubcircuitLibrary/MC14530B/MC14530B.kicad_sch new file mode 100644 index 000000000..bd32baed9 --- /dev/null +++ b/library/SubcircuitLibrary/MC14530B/MC14530B.kicad_sch @@ -0,0 +1,3111 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid a8979f34-b428-4a5c-b45b-3e55338818af) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 144.78 142.24) (diameter 0) (color 0 0 0 0) + (uuid 030bc497-5003-4706-982d-643493c598f3) + ) + (junction (at 223.52 104.14) (diameter 0) (color 0 0 0 0) + (uuid 0329bde5-c0e0-4a5d-88e2-187ada25ef5b) + ) + (junction (at 143.51 203.2) (diameter 0) (color 0 0 0 0) + (uuid 0e81fd16-2b09-4849-9807-896645765740) + ) + (junction (at 143.51 215.9) (diameter 0) (color 0 0 0 0) + (uuid 63eeec60-2eac-46bf-81ee-bec8088c7fed) + ) + (junction (at 245.11 190.5) (diameter 0) (color 0 0 0 0) + (uuid 9edf7cdc-e8e8-48a3-83d9-525f0d48a842) + ) + (junction (at 132.08 111.76) (diameter 0) (color 0 0 0 0) + (uuid f00eddfd-c47d-46c7-8200-c8b0da80176f) + ) + (junction (at 146.05 127) (diameter 0) (color 0 0 0 0) + (uuid fc9a0a0d-65bb-4dd8-9b01-13ecab388478) + ) + (junction (at 132.08 69.85) (diameter 0) (color 0 0 0 0) + (uuid fccc93ca-baf6-40ea-bd21-45e20dcb978c) + ) + + (wire (pts (xy 412.75 88.9) (xy 412.75 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0147c23a-0ff3-43cf-9ec8-5ac33cb7ff55) + ) + (wire (pts (xy 143.51 203.2) (xy 175.26 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 029bbc5b-0b77-4b1b-863b-ec69b7d3c100) + ) + (wire (pts (xy 250.19 134.62) (xy 256.54 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 033b849a-1a97-4f39-b262-2f2970c468ea) + ) + (wire (pts (xy 222.25 129.54) (xy 222.25 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04099c6f-c1c3-4cb3-9818-c7631ff15cf7) + ) + (wire (pts (xy 279.4 59.69) (xy 307.34 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04a6837a-bbfa-4e02-9408-ad66d2439646) + ) + (wire (pts (xy 220.98 148.59) (xy 256.54 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09d43f21-ae82-4a6d-923c-26b1ef2743ab) + ) + (wire (pts (xy 149.86 128.27) (xy 149.86 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0de6983d-286d-4fe9-8ed2-3f27daf4e144) + ) + (wire (pts (xy 419.1 214.63) (xy 424.18 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f91799b-c8cc-4ed6-893c-445956473664) + ) + (wire (pts (xy 419.1 205.74) (xy 419.1 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10b0de60-19b0-44e6-840c-30a15f9ab31f) + ) + (wire (pts (xy 373.38 123.19) (xy 373.38 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 137f574c-1d10-49ba-b2d4-4a197f1fd1c8) + ) + (wire (pts (xy 400.05 88.9) (xy 412.75 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14675b8d-eb52-4cde-ab6a-0a2f7446dc8a) + ) + (wire (pts (xy 146.05 143.51) (xy 175.26 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 160bac8c-829a-4d14-9321-067b74bce2d8) + ) + (wire (pts (xy 307.34 59.69) (xy 307.34 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 180ff284-8931-43e6-a49f-1f02bde656c0) + ) + (wire (pts (xy 250.19 88.9) (xy 256.54 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18193ef5-222b-4ae7-8d95-640432e33f86) + ) + (wire (pts (xy 284.48 262.89) (xy 318.77 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a8208d9-e9ec-4dab-af0a-b7eb0f7dea7b) + ) + (wire (pts (xy 198.12 71.12) (xy 228.6 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1aa20c70-b2d0-4827-9772-65d9cf53d9e9) + ) + (wire (pts (xy 132.08 54.61) (xy 175.26 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cf905de-43b1-4869-a10a-142b2011fc4a) + ) + (wire (pts (xy 223.52 132.08) (xy 256.54 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1de1f4a1-3fe2-4def-941e-87e8672e29a3) + ) + (wire (pts (xy 283.21 248.92) (xy 320.04 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 211461fe-378a-4db5-b89e-fc2f7529fb64) + ) + (wire (pts (xy 217.17 173.99) (xy 217.17 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 212c1a15-0f59-428b-9805-008e47b29223) + ) + (wire (pts (xy 147.32 270.51) (xy 147.32 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21978404-9b27-43d2-b2d4-c25622adfc80) + ) + (wire (pts (xy 254 234.95) (xy 260.35 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22addaf5-3c6d-4222-8776-be97dba6302c) + ) + (wire (pts (xy 132.08 111.76) (xy 132.08 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 252a810a-77a3-454b-88f2-e62248d47486) + ) + (wire (pts (xy 316.23 44.45) (xy 316.23 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25812e3e-26bb-44d7-84b1-96f5c88611c6) + ) + (wire (pts (xy 250.19 86.36) (xy 250.19 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2587b884-8982-4fc3-af54-84f49e4101b9) + ) + (wire (pts (xy 309.88 133.35) (xy 309.88 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 266f2525-4548-4fa8-85e4-4a2c85f62878) + ) + (wire (pts (xy 168.91 41.91) (xy 175.26 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b4c5432-f3bf-4477-883c-882cc0f52db1) + ) + (wire (pts (xy 198.12 204.47) (xy 242.57 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c210d45-0222-4907-a031-752a6ae76df4) + ) + (wire (pts (xy 373.38 106.68) (xy 378.46 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c39beb4-c7be-4ddd-be2b-f3be1ca14df6) + ) + (wire (pts (xy 419.1 222.25) (xy 419.1 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f17e20b-241c-4110-8b04-231abebe9f83) + ) + (wire (pts (xy 198.12 232.41) (xy 260.35 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f9f9ad3-a57c-4b43-9403-2e4afacefddd) + ) + (wire (pts (xy 355.6 104.14) (xy 378.46 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30ba83cd-1f01-4a04-9934-007e903a7097) + ) + (wire (pts (xy 325.12 147.32) (xy 325.12 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3349178b-15bc-44e1-871c-6c7c40a4a2cd) + ) + (wire (pts (xy 245.11 203.2) (xy 245.11 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33f2d260-7c3c-486e-9195-97e7789bc80c) + ) + (wire (pts (xy 351.79 83.82) (xy 355.6 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3560dc93-f447-4740-a21a-35eb1e1b7d1d) + ) + (wire (pts (xy 351.79 106.68) (xy 355.6 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3788b058-0b0d-40c4-9e5a-f6bc9e9a6eb2) + ) + (wire (pts (xy 412.75 97.79) (xy 417.83 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37e4b48b-f430-49a7-922f-702e727d3dbf) + ) + (wire (pts (xy 280.67 161.29) (xy 328.93 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 398e45ea-2d3b-472a-be26-7e99ad453fbb) + ) + (wire (pts (xy 198.12 40.64) (xy 250.19 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a932ed5-8822-4db6-9e84-3532b076962d) + ) + (wire (pts (xy 143.51 157.48) (xy 143.51 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3afee12b-9262-4dfd-88b9-9f4e4b9cfd6f) + ) + (wire (pts (xy 325.12 124.46) (xy 330.2 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b82acec-66d7-41d0-92f1-15bc472b950d) + ) + (wire (pts (xy 198.12 158.75) (xy 218.44 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e89f893-22c8-447c-8c61-ebd0d643b9c4) + ) + (wire (pts (xy 168.91 115.57) (xy 175.26 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ebae459-0ac7-44e1-bd40-9ee5332d47c9) + ) + (wire (pts (xy 318.77 238.76) (xy 336.55 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4021faf2-f7c6-428a-8a76-4c9f24264231) + ) + (wire (pts (xy 245.11 189.23) (xy 245.11 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4138a1a0-20b0-4062-bd58-27be245f544b) + ) + (wire (pts (xy 250.19 114.3) (xy 250.19 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 415a6da2-d675-41ca-bac3-7e097df25e04) + ) + (wire (pts (xy 144.78 142.24) (xy 144.78 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 417081ec-f666-453d-b72b-b6243eb83fab) + ) + (wire (pts (xy 144.78 138.43) (xy 219.71 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43634e69-0692-4f43-98c3-d5f90c616d32) + ) + (wire (pts (xy 149.86 270.51) (xy 149.86 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4547582a-9f61-4f3f-b073-a7f981eb2955) + ) + (wire (pts (xy 256.54 262.89) (xy 256.54 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4806a1ce-f828-459e-8eea-5fbe062bf325) + ) + (wire (pts (xy 307.34 121.92) (xy 330.2 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f542b24-92f5-4b90-b41f-bb831693a430) + ) + (wire (pts (xy 250.19 121.92) (xy 256.54 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51111497-b58f-4f8f-b956-3a4582719def) + ) + (wire (pts (xy 168.91 264.16) (xy 175.26 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51713812-609f-4513-af37-d9314654d297) + ) + (wire (pts (xy 283.21 233.68) (xy 317.5 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51df1968-c524-4162-b60d-1b9a9e99ae18) + ) + (wire (pts (xy 355.6 106.68) (xy 355.6 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 524aaaa1-409a-4689-9f51-3ec847fe0911) + ) + (wire (pts (xy 198.12 189.23) (xy 245.11 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52f5c268-f0c3-456a-ac7b-0a0623fe39e8) + ) + (wire (pts (xy 168.91 72.39) (xy 175.26 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5318e3b4-4137-424d-b70d-9c56d0459d54) + ) + (wire (pts (xy 279.4 74.93) (xy 314.96 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55b64ed4-7e3b-451c-b4a5-3b35004ec997) + ) + (wire (pts (xy 327.66 185.42) (xy 334.01 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55c175e6-0df7-45b4-b05b-0e77a054b11e) + ) + (wire (pts (xy 256.54 261.62) (xy 261.62 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57b232aa-7ec8-40b9-8882-164e86823a60) + ) + (wire (pts (xy 379.73 223.52) (xy 379.73 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57e0ce55-5524-43b5-a60d-d699a75867e7) + ) + (wire (pts (xy 223.52 104.14) (xy 256.54 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58f1b59e-c217-4aef-9a4c-999522ce4146) + ) + (wire (pts (xy 311.15 105.41) (xy 311.15 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59d371bf-089b-4f7f-90f4-6d0a068b00cd) + ) + (wire (pts (xy 419.1 212.09) (xy 424.18 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a611749-8b7d-4a97-ae68-9b8103b3eb2c) + ) + (wire (pts (xy 168.91 190.5) (xy 175.26 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c4c497a-c109-48bc-b07c-c42d8002c9f6) + ) + (wire (pts (xy 412.75 105.41) (xy 412.75 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c8305c7-8dc2-44f2-9dae-ecfe474ed835) + ) + (wire (pts (xy 355.6 90.17) (xy 355.6 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ce8d12e-c356-4016-ac0d-16f36888bd42) + ) + (wire (pts (xy 143.51 261.62) (xy 175.26 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d41fd6a-16f1-4e1f-a5db-fa64e60209b9) + ) + (wire (pts (xy 109.22 270.51) (xy 109.22 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dbaf9d4-904c-4d69-baec-cbabd1724a9a) + ) + (wire (pts (xy 279.4 120.65) (xy 312.42 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f49b1e5-0217-4809-a10c-cb25cf0eb35d) + ) + (wire (pts (xy 372.11 87.63) (xy 377.19 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60106cc4-03e3-4dae-814d-47813fc90b32) + ) + (wire (pts (xy 223.52 99.06) (xy 223.52 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60c41fb4-9bc7-4b86-9840-a3451084c85d) + ) + (wire (pts (xy 119.38 270.51) (xy 119.38 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61db0443-99f7-451e-86e3-bcb7e1c6d3b2) + ) + (wire (pts (xy 168.91 113.03) (xy 175.26 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 648fcb6e-d1b1-4e73-88a8-4c058156431d) + ) + (wire (pts (xy 280.67 176.53) (xy 327.66 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 654d2721-9f3d-4244-ae86-4169bd46a1f5) + ) + (wire (pts (xy 198.12 173.99) (xy 217.17 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66c39bfc-27ac-47c3-905d-2ec90cb518c1) + ) + (wire (pts (xy 121.92 270.51) (xy 121.92 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6770eab0-e459-480b-a141-3bb8139c75d0) + ) + (wire (pts (xy 146.05 127) (xy 146.05 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68cbdf04-a137-4ab9-8e91-c481ff487714) + ) + (wire (pts (xy 168.91 97.79) (xy 175.26 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 698532be-04e6-4c5d-8c7e-6761c781a68c) + ) + (wire (pts (xy 143.51 261.62) (xy 143.51 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69ac59a8-64fd-4ac0-8f63-e7750918d6ea) + ) + (wire (pts (xy 132.08 69.85) (xy 132.08 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a25f2f5-a9ec-407c-87ec-cadd38af0a6f) + ) + (wire (pts (xy 219.71 138.43) (xy 219.71 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6be89b58-db20-4a4c-be5b-e8ea999a6558) + ) + (wire (pts (xy 318.77 241.3) (xy 336.55 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d0804fe-da10-42ec-bc61-e3e67148e3f8) + ) + (wire (pts (xy 198.12 86.36) (xy 250.19 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f8cf241-1881-42ff-922b-d7dad1db84e5) + ) + (wire (pts (xy 372.11 67.31) (xy 372.11 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71a6586b-89e1-4a5a-be18-6128ace9c391) + ) + (wire (pts (xy 168.91 160.02) (xy 175.26 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 729cd266-6175-471e-9cab-7c3851b89771) + ) + (wire (pts (xy 318.77 241.3) (xy 318.77 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 735c2c2e-5645-4d71-ade3-7d1ca42b36b1) + ) + (wire (pts (xy 312.42 120.65) (xy 312.42 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 736ce1d8-618b-4d22-95bc-df501a3c60a8) + ) + (wire (pts (xy 250.19 43.18) (xy 256.54 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 743f159d-48ed-429c-a54a-94fa9ead14fb) + ) + (wire (pts (xy 361.95 207.01) (xy 383.54 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76ce1f1d-410e-45f6-803a-1a1505ff64c9) + ) + (wire (pts (xy 353.06 123.19) (xy 373.38 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77b2a383-02a2-45bf-bf87-cf1ae93a8f5f) + ) + (wire (pts (xy 97.79 143.51) (xy 104.14 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77cfd824-b58d-4df9-b2b5-8277e7e0084f) + ) + (wire (pts (xy 114.3 270.51) (xy 114.3 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a008302-98ad-4e26-8719-3c851a44bcea) + ) + (wire (pts (xy 245.11 190.5) (xy 257.81 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a8db4d2-ac76-4d69-8b72-1b62997c8853) + ) + (wire (pts (xy 132.08 69.85) (xy 175.26 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c1e2fd5-3c06-4527-9a1d-12c369ba52af) + ) + (wire (pts (xy 330.2 199.39) (xy 335.28 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ce0e5c8-b205-4236-a66b-8abdb5dc91c0) + ) + (wire (pts (xy 356.87 184.15) (xy 378.46 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f3ae896-fac9-466e-beab-6e7797c078f9) + ) + (wire (pts (xy 222.25 146.05) (xy 256.54 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f567c8c-97f0-4299-a63d-5855a85e24cb) + ) + (wire (pts (xy 227.33 60.96) (xy 256.54 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fc60143-5c9a-4b98-b7e5-8e67a3bf52af) + ) + (wire (pts (xy 203.2 220.98) (xy 203.2 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8136e4c9-d570-4416-b21a-c86694c726e2) + ) + (wire (pts (xy 149.86 111.76) (xy 132.08 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82aa5671-546d-4434-a919-af9e5702c006) + ) + (wire (pts (xy 361.95 220.98) (xy 384.81 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 836021b3-810e-4e29-acf8-c87eafdb5bb3) + ) + (wire (pts (xy 146.05 127) (xy 146.05 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8538c174-ff6f-4303-836d-b0ca064ba645) + ) + (wire (pts (xy 308.61 90.17) (xy 308.61 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 874b234e-5b67-4c7f-b83f-1e523e74e7b4) + ) + (wire (pts (xy 279.4 147.32) (xy 325.12 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87baa8f2-c36c-4850-861e-cc98ed11a00f) + ) + (wire (pts (xy 250.19 119.38) (xy 256.54 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b2be9fb-1947-4390-935e-b2438403d93c) + ) + (wire (pts (xy 279.4 44.45) (xy 316.23 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b9717a8-fce6-4b04-8632-81819a286d02) + ) + (wire (pts (xy 251.46 205.74) (xy 257.81 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b98ee39-8686-4fc8-85f6-cd065fd65988) + ) + (wire (pts (xy 317.5 222.25) (xy 335.28 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c5bfe04-5d44-40ca-b3ba-df590e76ea88) + ) + (wire (pts (xy 361.95 223.52) (xy 361.95 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d33bab1-3311-453b-a81f-325d72c1d6f9) + ) + (wire (pts (xy 279.4 133.35) (xy 309.88 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f5f8efb-49ab-4b24-a3a0-61c4f25f491b) + ) + (wire (pts (xy 312.42 105.41) (xy 328.93 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f77b782-60ca-4ec0-a76d-ac37bc2c189b) + ) + (wire (pts (xy 328.93 161.29) (xy 328.93 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f8b2b5f-3b51-4c60-a4a1-2c675c08c95e) + ) + (wire (pts (xy 355.6 90.17) (xy 377.19 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fb36a07-ddf9-458e-985e-21cf9a817255) + ) + (wire (pts (xy 358.14 200.66) (xy 361.95 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90edf03f-3435-4c75-a2e0-7d3b310b84ad) + ) + (wire (pts (xy 279.4 90.17) (xy 308.61 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90f5e42a-ac8b-44ef-9ec4-1e96339f8a29) + ) + (wire (pts (xy 281.94 219.71) (xy 318.77 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91912de6-51fd-4522-9d58-aa7501c5f432) + ) + (wire (pts (xy 106.68 270.51) (xy 106.68 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93f53f2c-5b03-4dcc-a74d-475a173983d2) + ) + (wire (pts (xy 127 111.76) (xy 132.08 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96e8e0d0-9273-4abe-a23b-6526e3b06b74) + ) + (wire (pts (xy 116.84 270.51) (xy 116.84 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96ebdd81-1c10-462a-b03d-957702c46933) + ) + (wire (pts (xy 168.91 157.48) (xy 175.26 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97f828b8-08ed-4380-8f4f-e953cd45f91f) + ) + (wire (pts (xy 314.96 74.93) (xy 314.96 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9804aaa7-402c-46f2-92e9-1b07b56468b7) + ) + (wire (pts (xy 198.12 262.89) (xy 256.54 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99727f4c-3635-49b9-92bc-50264e4c7f20) + ) + (wire (pts (xy 168.91 57.15) (xy 175.26 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c4643d7-8a49-4cd3-be2b-26cd9bbabfa5) + ) + (wire (pts (xy 231.14 76.2) (xy 231.14 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d056cd0-92b0-4e08-8d96-9f6d0c1a1d41) + ) + (wire (pts (xy 378.46 204.47) (xy 383.54 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d6d6fea-e892-46d4-84ed-592d64a72bea) + ) + (wire (pts (xy 320.04 224.79) (xy 335.28 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f976b88-8191-41e3-8a6f-8193381c9599) + ) + (wire (pts (xy 127 142.24) (xy 144.78 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0dd6dc3-a7c5-4226-8002-cec1f8dd6fe3) + ) + (wire (pts (xy 361.95 207.01) (xy 361.95 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1b4f0db-c200-45b1-ab98-f22faa380fce) + ) + (wire (pts (xy 97.79 158.75) (xy 104.14 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3272c7a-d8eb-45c1-afee-56ce83ab3ee0) + ) + (wire (pts (xy 168.91 175.26) (xy 175.26 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a364df05-2a7f-484e-b06d-4c0740e6f681) + ) + (wire (pts (xy 203.2 220.98) (xy 259.08 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5e32d0a-70e0-499f-b95e-20a236abb29d) + ) + (wire (pts (xy 308.61 107.95) (xy 328.93 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8e3c8df-7c82-44eb-b3a0-e5c03dd307b8) + ) + (wire (pts (xy 144.78 142.24) (xy 144.78 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8ea4ad3-9feb-4087-9ffa-ada49c5c5f3b) + ) + (wire (pts (xy 330.2 201.93) (xy 335.28 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a94775d9-0b54-4296-97cc-13d471a002e6) + ) + (wire (pts (xy 97.79 113.03) (xy 104.14 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9faf43d-694d-4dbe-8047-c2de59e3a200) + ) + (wire (pts (xy 328.93 182.88) (xy 334.01 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aaa4f8b2-a0ab-4d07-b4ba-0e6837ec28ef) + ) + (wire (pts (xy 144.78 172.72) (xy 175.26 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab1849be-2915-4855-a302-afdf0f67eda1) + ) + (wire (pts (xy 350.52 67.31) (xy 372.11 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac8b1bc2-3395-4ddb-9b2f-9c230ac771bb) + ) + (wire (pts (xy 198.12 247.65) (xy 260.35 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad715aca-3348-4890-b773-a12e50cfcc16) + ) + (wire (pts (xy 257.81 203.2) (xy 245.11 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid adee60e9-1aa0-4655-8899-b983259531a1) + ) + (wire (pts (xy 251.46 162.56) (xy 257.81 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0e41e1d-7bc6-4c71-a7c3-aaa2b975a54f) + ) + (wire (pts (xy 401.32 105.41) (xy 412.75 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b356e967-4082-4913-985e-d315a3e27432) + ) + (wire (pts (xy 406.4 205.74) (xy 419.1 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b38f23c4-cbc4-4c4d-aa9f-19c20805ee9e) + ) + (wire (pts (xy 250.19 40.64) (xy 250.19 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3a647e9-4278-45cd-a757-42147dfa9f3b) + ) + (wire (pts (xy 250.19 91.44) (xy 256.54 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b54716fd-9eb0-4432-92d2-8628bb1312f7) + ) + (wire (pts (xy 217.17 264.16) (xy 261.62 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b98c7741-1e43-4cb5-97cf-d220e651f08d) + ) + (wire (pts (xy 168.91 248.92) (xy 175.26 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b993270e-4dec-4335-9bcc-2afe9fa654b3) + ) + (wire (pts (xy 314.96 66.04) (xy 327.66 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be172663-eee7-41a4-91a6-99c4f2487154) + ) + (wire (pts (xy 280.67 204.47) (xy 330.2 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bec7ddbf-2426-4379-a480-c3e454386fe0) + ) + (wire (pts (xy 318.77 219.71) (xy 318.77 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1ea8411-5b42-4a87-927f-79b1484739b8) + ) + (wire (pts (xy 97.79 156.21) (xy 104.14 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2e55d76-a736-4523-92a6-635294efa963) + ) + (wire (pts (xy 198.12 99.06) (xy 223.52 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c444ca23-d0c6-4589-a651-55dd24fd475e) + ) + (wire (pts (xy 111.76 270.51) (xy 111.76 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9e6be01-1049-4d6d-877a-a2a9cc2e0a2c) + ) + (wire (pts (xy 168.91 130.81) (xy 175.26 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc3cfa72-200f-45c2-9c37-2d4da6e4c434) + ) + (wire (pts (xy 254 250.19) (xy 260.35 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc47e528-7490-40cf-87e9-9edabf65f916) + ) + (wire (pts (xy 228.6 58.42) (xy 256.54 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdfc0960-977f-49c7-87fe-d10f59a6b728) + ) + (wire (pts (xy 279.4 105.41) (xy 311.15 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cee10e53-ebf5-402c-bf33-cadaab27f40f) + ) + (wire (pts (xy 330.2 191.77) (xy 330.2 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d141b92f-6740-43ec-b873-5df9c15dd005) + ) + (wire (pts (xy 168.91 246.38) (xy 175.26 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1ff1477-c1e7-480e-a3b8-4137c9aba797) + ) + (wire (pts (xy 228.6 71.12) (xy 228.6 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2353440-2dac-4e9f-b0ec-14e699300879) + ) + (wire (pts (xy 168.91 205.74) (xy 175.26 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3514fc2-fa74-49ba-b866-50e1153dbfa8) + ) + (wire (pts (xy 198.12 217.17) (xy 203.2 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d478deb9-413a-440f-86a4-16b1c55434b2) + ) + (wire (pts (xy 124.46 270.51) (xy 124.46 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5bf846b-3dbe-421c-89df-771cfef55e50) + ) + (wire (pts (xy 198.12 55.88) (xy 227.33 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6b5e727-f59d-447f-9943-689c46f345d5) + ) + (wire (pts (xy 168.91 39.37) (xy 175.26 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d70ee924-ab13-4c0d-b15e-8ee5bd4b5bae) + ) + (wire (pts (xy 219.71 160.02) (xy 257.81 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d836d923-ca46-4ed4-b857-33d338d5abb2) + ) + (wire (pts (xy 168.91 233.68) (xy 175.26 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d947f671-575d-4e2f-b1d4-2f61b5632fa1) + ) + (wire (pts (xy 359.41 240.03) (xy 379.73 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9eea0d3-5aff-4a72-b469-ca78a5ffaa3c) + ) + (wire (pts (xy 218.44 158.75) (xy 218.44 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc181b63-8ae6-4410-a649-e52968bf40ec) + ) + (wire (pts (xy 168.91 231.14) (xy 175.26 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc5085bb-f8b4-4269-bc7f-51d58e8e6d7b) + ) + (wire (pts (xy 97.79 140.97) (xy 104.14 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc52a958-f59d-4ea3-91fe-4ae218f49af2) + ) + (wire (pts (xy 407.67 222.25) (xy 419.1 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcd11348-474d-4584-8444-ab7e8def66d8) + ) + (wire (pts (xy 127 157.48) (xy 143.51 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de99e2d2-b1e9-4517-825f-472e2e2e42e7) + ) + (wire (pts (xy 146.05 76.2) (xy 231.14 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e034559c-4915-455f-810d-af5c9c018e03) + ) + (wire (pts (xy 127 127) (xy 146.05 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1a0cfe9-980c-41fc-bc33-ee8b188efa02) + ) + (wire (pts (xy 412.75 95.25) (xy 417.83 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2528aa5-2dc3-4046-b26d-367211de310d) + ) + (wire (pts (xy 97.79 128.27) (xy 104.14 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3bbfd06-ad5f-4332-8ff1-bb4066d8c8d5) + ) + (wire (pts (xy 242.57 218.44) (xy 259.08 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e466e97a-cbf0-4a72-bbb1-57c182a17096) + ) + (wire (pts (xy 198.12 144.78) (xy 220.98 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7137a03-bcb7-48c2-9415-efb880e1a3ac) + ) + (wire (pts (xy 280.67 191.77) (xy 330.2 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7de5856-75b9-409b-8cc9-653a7aec5eae) + ) + (wire (pts (xy 311.15 85.09) (xy 328.93 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9c2ec7a-73fd-42f1-9ba1-bcbd86f29f41) + ) + (wire (pts (xy 97.79 110.49) (xy 104.14 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9ce5af5-2357-4bf8-b54e-35658c25f1b6) + ) + (wire (pts (xy 330.2 204.47) (xy 330.2 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9e41901-efec-435b-ac38-a656c7d27ac5) + ) + (wire (pts (xy 220.98 148.59) (xy 220.98 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb8589fe-0fa3-4510-88c4-b7dcd57e9996) + ) + (wire (pts (xy 358.14 223.52) (xy 361.95 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb919c31-cca2-4f4c-89cd-800fa9a7f14e) + ) + (wire (pts (xy 168.91 87.63) (xy 175.26 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec23dac9-f94f-4e9e-a003-72fa0ae50cd2) + ) + (wire (pts (xy 242.57 204.47) (xy 242.57 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecfa3dfa-78e8-44d0-a19b-3c36448f4592) + ) + (wire (pts (xy 250.19 76.2) (xy 256.54 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed58c7b6-963b-42b7-b4ee-c97b55885d86) + ) + (wire (pts (xy 320.04 224.79) (xy 320.04 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edeb1390-9a7b-4d2d-a46e-aff6e17cf516) + ) + (wire (pts (xy 223.52 132.08) (xy 223.52 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef28f91a-e4dd-4b7c-9da9-4b74c0ad603d) + ) + (wire (pts (xy 327.66 176.53) (xy 327.66 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef6d0451-7374-4d7d-9ea9-fe7a4762c0f5) + ) + (wire (pts (xy 231.14 73.66) (xy 256.54 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef71f9ba-970b-4626-9932-1e368524e646) + ) + (wire (pts (xy 149.86 128.27) (xy 175.26 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eff87f42-4e4f-417f-837d-94432763410a) + ) + (wire (pts (xy 316.23 68.58) (xy 327.66 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f017bb99-6dd3-4f98-b613-c5d682eeda13) + ) + (wire (pts (xy 168.91 100.33) (xy 175.26 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0ff4040-bc2d-4fe2-b568-77fccca98f60) + ) + (wire (pts (xy 378.46 184.15) (xy 378.46 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f330b3af-fc1c-45f3-8c72-c2bccf9900d0) + ) + (wire (pts (xy 168.91 146.05) (xy 175.26 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f34c811a-6ccf-491b-b708-d621871aade7) + ) + (wire (pts (xy 250.19 45.72) (xy 256.54 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5235bd1-7324-4b0c-a99b-09322a7268a4) + ) + (wire (pts (xy 250.19 106.68) (xy 256.54 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5a4d185-17f3-46b1-b600-8e96f6a92d2d) + ) + (wire (pts (xy 251.46 177.8) (xy 257.81 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7aeceeb-7fee-4b85-9640-0281f4213c75) + ) + (wire (pts (xy 317.5 233.68) (xy 317.5 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f80c2335-54c5-4ce7-96b0-a43c33b6b34d) + ) + (wire (pts (xy 309.88 82.55) (xy 328.93 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f82f327a-79e2-42f4-b89d-e6bb6b5d97fa) + ) + (wire (pts (xy 168.91 85.09) (xy 175.26 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8af0c10-a13a-4a3e-abe9-0df8f46ab9ec) + ) + (wire (pts (xy 251.46 193.04) (xy 257.81 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f995c25f-2ff7-42cc-b043-25521c315b4b) + ) + (wire (pts (xy 168.91 187.96) (xy 175.26 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9a41082-c453-4857-84b4-9c5b9988ea54) + ) + (wire (pts (xy 143.51 215.9) (xy 143.51 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc2a5561-b3bb-4cc5-8b6b-d00852877409) + ) + (wire (pts (xy 143.51 215.9) (xy 175.26 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc9d1090-8163-4924-a1d3-f6c4c37caa60) + ) + (wire (pts (xy 227.33 55.88) (xy 227.33 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd2b390a-3302-4072-9ffc-dbfbf2db26b1) + ) + (wire (pts (xy 379.73 223.52) (xy 384.81 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdbef300-37d3-4fb9-8fbc-38d3f60c2d32) + ) + (wire (pts (xy 218.44 175.26) (xy 257.81 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdfa9307-39fd-44be-8044-7921d23b17a6) + ) + (wire (pts (xy 198.12 114.3) (xy 250.19 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe457240-7c83-4fca-85cc-d75606999e85) + ) + (wire (pts (xy 198.12 129.54) (xy 222.25 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe51d277-92ae-49a6-b2f3-a8805d6e5dc9) + ) + (wire (pts (xy 97.79 125.73) (xy 104.14 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid febbde97-59b1-41d1-b1c4-080520bad387) + ) + (wire (pts (xy 168.91 218.44) (xy 175.26 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff706619-90c9-4acd-9744-b6ed6f0d1df1) + ) + + (label "B1" (at 100.33 113.03 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0014cc54-5d38-4581-8ba8-9e2414414cb5) + ) + (label "E2" (at 254 205.74 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 020a5d00-4662-4d30-a425-f05f1b591b16) + ) + (label "C1" (at 171.45 72.39 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 09205b25-2015-4a97-b172-b7924457dd07) + ) + (label "D1" (at 171.45 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0966d69b-5f98-4d51-bb86-0b6d2f762ad7) + ) + (label "A1" (at 171.45 39.37 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0a549b00-d136-4b9a-a9f0-7f2b3d8f5241) + ) + (label "A2" (at 100.33 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0c65eeaa-621c-4f99-9a45-1ce82a38dd2e) + ) + (label "C1" (at 171.45 100.33 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0e466f0a-5af7-4298-99b0-b0d7ea1b14be) + ) + (label "D1" (at 170.18 115.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 12001c20-987d-4027-9ec8-6968b5f12a76) + ) + (label "A1" (at 100.33 125.73 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1c2d94ee-313a-40f2-a29d-f07e585c0051) + ) + (label "B1" (at 171.45 113.03 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1de9393f-2f82-4fab-861b-863777108c12) + ) + (label "D2" (at 171.45 218.44 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1fe92e84-7a9b-43ae-a102-2c5c247e14e4) + ) + (label "E2" (at 171.45 264.16 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 250420ab-2a87-4111-8927-64f047d3145e) + ) + (label "E1" (at 252.73 45.72 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2fc9d72d-3230-45d4-b95f-bf9373494683) + ) + (label "E1" (at 147.32 273.05 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 30b08123-1041-4e76-88ff-b4575fbaee68) + ) + (label "D1" (at 171.45 41.91 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 31688fe2-65fe-4c19-bbfe-7a84b4425d2a) + ) + (label "D1" (at 121.92 273.05 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3edc8d92-5055-4f90-8848-0b70cc7bca45) + ) + (label "C1" (at 171.45 85.09 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3ee87a75-63d1-49b0-9056-079d8f575dd3) + ) + (label "D2" (at 171.45 248.92 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 425674ea-57a7-4e27-9dd4-727773cd5516) + ) + (label "C2" (at 171.45 205.74 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4ca573fb-2a9e-49e0-b2f4-543d604f51bf) + ) + (label "E2" (at 254 177.8 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 51d46755-01c9-4f04-a3c4-7101e4b37bd0) + ) + (label "C1" (at 116.84 273.05 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 55c195e1-7bb8-47f2-9a8f-0e3d593bdd16) + ) + (label "A2" (at 109.22 273.05 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5b7d8554-c631-4173-8fbf-949e6094188d) + ) + (label "D2" (at 254 193.04 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5c90c1da-b207-4997-add2-613ef649a066) + ) + (label "A2" (at 100.33 156.21 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 67ce74d0-c910-4d88-a044-c9039baeeaaf) + ) + (label "B1" (at 171.45 97.79 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6d53deb1-2732-4fa8-924e-a526be679f3b) + ) + (label "D1" (at 252.73 134.62 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6ff6e3fc-9eca-42b4-9f2c-c58c003cdd65) + ) + (label "B2" (at 171.45 231.14 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 78a91d4f-e536-486c-b1aa-5417441c480a) + ) + (label "E1" (at 252.73 121.92 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7a1fc0e9-3a27-4392-a353-096407f79334) + ) + (label "A1" (at 106.68 273.05 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 80d97f52-0964-4dfb-a584-da8787f9aed2) + ) + (label "E2" (at 149.86 273.05 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 89ed61f3-9c32-4962-b619-e8aca6a8102b) + ) + (label "C2" (at 119.38 273.05 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8e9d186f-e45d-4f48-8b5d-328e485bc669) + ) + (label "B2" (at 100.33 158.75 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 91bc1073-ef6c-413b-8ab9-003d0928e70c) + ) + (label "C1" (at 100.33 128.27 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9919d75c-2db3-4572-bc83-1356b67855ca) + ) + (label "D2" (at 171.45 160.02 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9f47a8d5-a5f0-4731-b4a8-f61bc298e41e) + ) + (label "D1" (at 171.45 57.15 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9fda3069-0c8b-4e97-b61b-69325ed06349) + ) + (label "E1" (at 252.73 106.68 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a8a975b0-cec3-4868-ab22-5feb67123c19) + ) + (label "E2" (at 256.5478 250.19 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b664d921-ba58-498a-b5d9-51c929d85773) + ) + (label "D1" (at 171.45 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b89d5440-5728-4a52-a080-d4405137a0f8) + ) + (label "D2" (at 171.45 233.68 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b99c153e-8792-4938-82cc-dd60ea6a56fa) + ) + (label "D2" (at 171.45 175.26 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid cf31d6c9-1358-4bf2-a0a5-9c037585f8f5) + ) + (label "E2" (at 256.54 234.95 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d0599b92-588f-44f1-b459-052295e1e139) + ) + (label "B2" (at 114.3 273.05 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d2cc98da-a50a-4776-92b6-0310ebfabd1e) + ) + (label "D2" (at 124.46 273.05 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e2006289-1fdf-4d9d-a691-c0da4b781af2) + ) + (label "A1" (at 100.33 110.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e21e96c2-0319-4025-a494-a74c3481d62c) + ) + (label "E1" (at 252.73 76.2 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e24d20ad-8b87-41e9-98d4-336111976999) + ) + (label "B2" (at 171.45 187.96 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e2c9a6db-3a34-4f21-8944-24492043b4de) + ) + (label "E2" (at 254 162.56 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e65388fa-bbfb-4bc1-ada8-560fc0b08baa) + ) + (label "C2" (at 171.45 190.5 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ebcd9504-3415-4676-bf28-b619c722cda3) + ) + (label "E1" (at 252.73 91.44 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ec9c31ea-6048-4c89-921d-fb29d2ec3848) + ) + (label "A2" (at 171.45 157.48 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f26885a1-8d17-455b-a985-61bc544c59ae) + ) + (label "E1" (at 171.45 130.81 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f2b298d1-d62a-4384-8802-725eed70b74d) + ) + (label "B1" (at 111.76 273.05 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f5b223e2-c013-4bd7-8c77-73f0f343e8a1) + ) + (label "C2" (at 100.33 143.51 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f5b5bc63-08b4-43d5-81a5-d83868f0dbd1) + ) + (label "C2" (at 171.45 246.38 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fd78cb3d-7be9-45af-a2ae-a47dc3814094) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 106.68 280.67 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 01c94947-114b-4bf4-a5ce-271938fc939c) + (property "Reference" "U1" (id 0) (at 109.22 279.4 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 109.22 281.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 106.68 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d07e2073-9bb1-41ca-af75-51502a400cec)) + (pin "2" (uuid eb186bd3-d968-435e-9fdc-58592d6ca2b5)) + (pin "3" (uuid 8d0c8984-1183-4e63-8909-0052c150feac)) + (pin "4" (uuid 4d5b1098-c5d2-4c44-acb7-77bfa4dae8ce)) + (pin "5" (uuid 35048f0e-bbdc-4dc2-8701-c240bc0fb03e)) + (pin "6" (uuid bf510a6d-5f6e-4448-bca8-1d34c3ff36e3)) + (pin "7" (uuid a460b7d8-4a91-4046-a892-bd67c1db3804)) + (pin "8" (uuid ebfdb6c2-19b0-4b41-9ff2-f33f127692b3)) + (pin "9" (uuid bafb41f7-fd53-4a53-8557-fb4d65f0c51a)) + (pin "10" (uuid 5f15a796-416f-4080-b0ee-9a8dfae20e1e)) + (pin "11" (uuid 04881738-979a-4a9b-9119-88ec4172d6e3)) + (pin "12" (uuid 4a9e1b17-941a-4f21-9e75-75ab2af9b398)) + (pin "13" (uuid 30a33eb0-c8a8-48cf-908c-800d618e71df)) + (pin "14" (uuid 16465941-ddfa-4aa2-97aa-55078bb268ce)) + (pin "15" (uuid 51f95b49-6151-4ad0-9f31-0f6918b9b6bf)) + (pin "16" (uuid 6103560d-2f98-4e7e-a6f2-22833e279813)) + (pin "17" (uuid b7477fa3-9114-4ade-a371-ce2ebd4e17f9)) + (pin "18" (uuid 020cb445-54ea-4ef6-a70e-187acd607abc)) + (pin "19" (uuid 52dfec5d-5f49-40c7-b655-263ac60205d1)) + (pin "20" (uuid 0cea244f-732e-44b9-81cb-5eb03cc6a7ea)) + (pin "21" (uuid 8be7207b-198b-46d8-8a17-9b7a8370a860)) + (pin "22" (uuid 5d510168-33f6-459c-80d9-95934053ceef)) + (pin "23" (uuid 20c97e7b-a786-4675-b04c-5b9ac06e52db)) + (pin "24" (uuid 31a67082-4411-4dd0-96b9-60a6767f445e)) + (pin "25" (uuid 53b56f18-9485-4e8b-ab54-4a4eea1e5619)) + (pin "26" (uuid fd361df2-e24a-4e45-8075-c07fb5952569)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 270.51 220.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 03b6c68b-622d-4e57-9b80-f1b3a86d5118) + (property "Reference" "U34" (id 0) (at 270.51 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 270.51 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 270.51 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 270.51 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 12c8e4b0-6456-4188-b4c3-c1de21d784bc)) + (pin "2" (uuid d202afc6-3e9f-4d69-9073-02f79ddfe74e)) + (pin "3" (uuid 2de2360b-1d89-4b54-b724-0d45301b6d3b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 271.78 234.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 128976be-2e70-4668-8869-15cc1d085d0d) + (property "Reference" "U35" (id 0) (at 271.78 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 271.78 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 271.78 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6be43c30-11c0-41df-837b-b794e476e224)) + (pin "2" (uuid b910297f-7540-4dd0-b249-365c838d4fa2)) + (pin "3" (uuid 32dc2bdf-8a65-4137-87a7-6a288d32a258)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 341.63 124.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 149b6cd9-dc37-4b0b-8b12-681803cf21db) + (property "Reference" "U41" (id 0) (at 341.63 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 341.63 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 341.63 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 341.63 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ba681c2a-3eb5-447f-b703-f4815df3696a)) + (pin "2" (uuid e40cc58f-bd7f-4b0f-b4cf-e7e5cf41baa5)) + (pin "3" (uuid b0573dd0-5f92-45cd-98a3-8bdcfd85ea50)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 346.71 201.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1e8c1f40-86e9-47c8-b124-7f06defd4309) + (property "Reference" "U43" (id 0) (at 346.71 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 346.71 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 346.71 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 346.71 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ccaebad3-2115-48c6-88f1-53ab9fd1d1bb)) + (pin "2" (uuid f64c596e-6625-45b9-a703-220419c3955f)) + (pin "3" (uuid c5079598-9101-426a-895a-a59b009c090e)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 267.97 148.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 231f0448-7039-4f62-ab4f-b909a6cbdd25) + (property "Reference" "U29" (id 0) (at 267.97 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 267.97 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 267.97 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2f17abc1-c096-4d13-94e6-66104c8a2434)) + (pin "2" (uuid 829623ba-cb91-4328-80f7-653133d237d2)) + (pin "3" (uuid 9a966e35-4a68-4ec8-80de-b55abaac2bd4)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 396.24 223.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2dc7a79b-8433-4ab7-95d5-7cb7fcac4b03) + (property "Reference" "U49" (id 0) (at 396.24 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 396.24 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 396.24 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 396.24 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c8896c78-ee99-45dd-8435-d6258af7d094)) + (pin "2" (uuid cb7db81f-0a98-4f3d-9832-50bc98a8a4e4)) + (pin "3" (uuid 71791a21-acb0-4f97-81a9-c8e8f5981153)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 267.97 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e31ea17-8ca2-4801-9592-52407548bdb3) + (property "Reference" "U22" (id 0) (at 267.97 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 267.97 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 267.97 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2dd9734f-f56c-4433-852e-f4e1a6330e24)) + (pin "2" (uuid 73f46f3e-f431-4ba9-8be4-5f5913539b7b)) + (pin "3" (uuid 25c8617a-4a72-45e5-b2a3-8c6bf8658d88)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 121.92 280.67 90) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 30c32d45-1559-4b39-b5a3-23d79c68a0c8) + (property "Reference" "U1" (id 0) (at 124.46 279.4 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 124.46 281.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 121.92 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 121.92 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0bafc558-165b-4c82-ae9f-b914a424c4fc)) + (pin "2" (uuid 97db3947-4e59-4966-a99c-29eef3464fff)) + (pin "3" (uuid b9f17598-51d3-4337-a20a-87438a54f198)) + (pin "4" (uuid 8d5e835a-536c-4c59-8475-bcade5ebfb16)) + (pin "5" (uuid e16b8e73-c0f2-4758-ab9b-6e55546a2a5a)) + (pin "6" (uuid fe4c4ad9-3081-4fe3-a7fd-c7f14f109fd6)) + (pin "7" (uuid 49cf8fb1-1231-4fa9-8fee-72c0dd623fe6)) + (pin "8" (uuid 23623fec-f77a-4d58-8133-577a40a081a1)) + (pin "9" (uuid 8c103b5e-79b7-444b-9354-883f4065382d)) + (pin "10" (uuid a68dfa7a-b197-484a-9bf7-dd483924c92e)) + (pin "11" (uuid be1d7124-b8c8-413d-9247-56725d3c2d65)) + (pin "12" (uuid 2ad8a396-8b22-47b4-a270-5f67d3e450c6)) + (pin "13" (uuid ffd15de2-e84d-4a0b-9f53-955f4907f029)) + (pin "14" (uuid a8dc1a51-7110-4310-b697-8571c1d478ab)) + (pin "15" (uuid c57cc88f-7820-437a-8593-172d87df6458)) + (pin "16" (uuid a45c6289-6c18-4ef5-b8ca-d8e8b2ecefb1)) + (pin "17" (uuid ff44246f-e556-43d5-a638-3bba02dc7dc8)) + (pin "18" (uuid 8a4d21ad-e832-487a-b53e-dd95bfb200b7)) + (pin "19" (uuid dcd3fa53-c0c5-421d-890a-09d2810f97ee)) + (pin "20" (uuid 30a9d72a-7b63-4dd0-b1cb-46084308cf4b)) + (pin "21" (uuid 9791abae-6644-4f86-9207-630558bf3caf)) + (pin "22" (uuid 31034183-c384-4f60-8c0a-ff4e6e78dbfc)) + (pin "23" (uuid 36180e8c-ce54-475f-a47f-ddf73385069d)) + (pin "24" (uuid 5395aed6-1fb0-4fb7-b66b-5b2820dd9009)) + (pin "25" (uuid d7364723-b38b-48cc-84ed-84994055acd3)) + (pin "26" (uuid 2679a77d-06ce-4397-a72b-926f573ca41f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 267.97 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 33d7f6c2-33d8-45af-8e0c-25176acf53cb) + (property "Reference" "U27" (id 0) (at 267.97 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 267.97 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 267.97 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f11f421e-d06f-4f2b-9466-488bc3c46041)) + (pin "2" (uuid c318925a-6de6-456a-b4a5-a0a66c406a30)) + (pin "3" (uuid 944bdd1b-1d9c-4e27-8db3-c2a5e36977f9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 233.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 43d55af8-8425-42a0-b397-fe4f6f78e390) + (property "Reference" "U19" (id 0) (at 186.69 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 42bb85f9-30e0-4feb-bc1e-b973600d314b)) + (pin "2" (uuid 5d2dd1ec-cec5-43f7-a71e-193279e0798a)) + (pin "3" (uuid f2821d42-0a5b-4096-bbf1-3f2a04bb8a03)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 340.36 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45333bea-69a1-4534-9d4f-29dc4205d38f) + (property "Reference" "U39" (id 0) (at 340.36 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 340.36 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 340.36 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 340.36 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4145baac-a034-4b31-8abb-041f504b4a8a)) + (pin "2" (uuid ed701bfb-2b7b-4867-a8f7-56599c069e7b)) + (pin "3" (uuid f4f3467c-686f-4425-bfe0-5c29f7306f6e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45728fa6-bbd5-4b91-aebe-615789bd1b9f) + (property "Reference" "U9" (id 0) (at 186.69 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fdb83f71-4e80-4de3-971e-58a6dc2f187e)) + (pin "2" (uuid c7452cd0-6928-4c1a-9923-70a8d85e681a)) + (pin "3" (uuid 06506e88-eaef-40fa-ba05-951671a067b2)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 394.97 207.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4775856d-6e9b-470c-a3df-dc8f2f8b974d) + (property "Reference" "U48" (id 0) (at 394.97 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 394.97 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 394.97 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 394.97 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87eb8b38-9500-4c44-84c0-7eb1b85c6a67)) + (pin "2" (uuid 100a05dd-355e-4d4b-9770-63499f2ae76d)) + (pin "3" (uuid 127721ec-4663-43cf-8cc2-ed49cad66a61)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 109.22 280.67 90) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 525343dc-5351-42bf-b0d7-d2aa3353f123) + (property "Reference" "U1" (id 0) (at 111.76 279.4 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 111.76 281.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 109.22 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid abf4cb17-6144-43a4-9621-558d569b7920)) + (pin "2" (uuid 1166fdb8-d26f-471f-b39d-1884786944c8)) + (pin "3" (uuid 0531d764-1f56-4d04-b232-49bea73ed11e)) + (pin "4" (uuid 7458e5dc-4160-41c5-accb-0f9dad851304)) + (pin "5" (uuid 11f70b51-5514-4efd-b01a-47eaaedb3db3)) + (pin "6" (uuid d9561429-5c5d-422a-865a-05b5f683a8c5)) + (pin "7" (uuid 391d91e1-f6f9-449a-b812-440dfe98a0f4)) + (pin "8" (uuid 6bb836b8-5817-4564-a7d1-d3013c88311d)) + (pin "9" (uuid 27581fed-4f8b-430d-9d52-4217566805ff)) + (pin "10" (uuid 3a58b486-10af-4492-a2c4-64104030cf00)) + (pin "11" (uuid e487db0b-7f2b-4f5c-a92a-8e72d2dc179e)) + (pin "12" (uuid f2435d7c-3e76-4187-ba7a-a64efaf204f6)) + (pin "13" (uuid 13a77e87-cc24-4c64-aef8-b8ae20e76b52)) + (pin "14" (uuid ec9dd185-b981-4b5c-bc48-d53b811fb313)) + (pin "15" (uuid 46bf2432-e681-495c-9b7a-fd31801ae55a)) + (pin "16" (uuid ee540b27-2448-4782-81cf-e1aaa1a2b3e4)) + (pin "17" (uuid 8a89b888-ed9b-4b0a-81dd-090ede252605)) + (pin "18" (uuid e5bd1367-941e-457b-9868-40c5c554c65c)) + (pin "19" (uuid d177979e-0a2a-4ed5-aa84-ae158bbc2ee7)) + (pin "20" (uuid a3dd3167-25f6-42c5-a768-ae9a36a88595)) + (pin "21" (uuid 06d446fa-6d7d-45cd-9a4f-a7ba7837d1ae)) + (pin "22" (uuid a36c0924-91ca-465c-9354-02eee0b5e913)) + (pin "23" (uuid a46cf87b-4cc0-47bb-92e5-f740ef4e9236)) + (pin "24" (uuid 4caa2b80-3b7c-42ed-9bf4-4751079a580d)) + (pin "25" (uuid 58a0bef1-51ee-4761-9000-1f012e792737)) + (pin "26" (uuid 40369b42-dc4c-4388-8c55-c98c5153342f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 280.67 90) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 542f9479-9ac0-4f69-be78-ce8463415dc2) + (property "Reference" "U1" (id 0) (at 119.38 279.4 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 119.38 281.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 116.84 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 83e4d620-e5ed-46e2-95fc-a05d6813e7e9)) + (pin "2" (uuid a5c00813-1011-4652-a338-c9250e3d5a9a)) + (pin "3" (uuid 4779cb3b-9462-4937-b285-8436c2de6322)) + (pin "4" (uuid 88d9cdcc-41f5-4de1-b340-48253a43322a)) + (pin "5" (uuid e07db8ad-72a1-48ee-b79a-a8bb0999a21f)) + (pin "6" (uuid ffc87b88-1735-492f-b20b-6f8bb80ad9f6)) + (pin "7" (uuid d299ccdb-9602-40c4-8e18-d7f89ab2390b)) + (pin "8" (uuid 19736e43-b470-4936-aafd-960c8c6628d4)) + (pin "9" (uuid ec8cc30e-89d3-42ee-bc27-f09754ae8be3)) + (pin "10" (uuid 78c0191b-77e9-4285-85e4-95c5e7a6c60b)) + (pin "11" (uuid 732f63a4-0ca2-4da0-8b15-5563e9846541)) + (pin "12" (uuid 7c457121-fcc8-498b-9de4-c8246a623252)) + (pin "13" (uuid e4001539-2194-427d-a7b8-969f1df79c51)) + (pin "14" (uuid 1f3daabc-1541-4edc-9e55-a7daa1af962f)) + (pin "15" (uuid 35ef65bb-eed8-4467-9fd2-84219d103a92)) + (pin "16" (uuid 2fefa2c8-0d24-41d9-a46c-a2d24407a6ea)) + (pin "17" (uuid 2def04bc-479c-47c5-a9d2-341f8693d10f)) + (pin "18" (uuid c37f18e8-2254-492a-8e0e-a2a2916a5549)) + (pin "19" (uuid 0c00eb76-635b-4788-bc70-9f8ea87a322a)) + (pin "20" (uuid 2fe757b5-03f9-4453-b136-736456d307f6)) + (pin "21" (uuid 84eaa336-1a72-4e0f-a9a5-b7838678f391)) + (pin "22" (uuid 70671ca8-d2bf-4b9b-88be-4f7969f2c503)) + (pin "23" (uuid 7abe1ef7-4e30-436d-93c6-6db8369a6af5)) + (pin "24" (uuid a5e758c5-29a3-4d59-8642-1e3fd38a6d19)) + (pin "25" (uuid 14307f7f-1941-402a-8177-18101bec5eff)) + (pin "26" (uuid 959b24f0-263d-48d5-b031-f0438198f307)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 269.24 162.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 552df7b9-886a-463e-9c82-9684321b2845) + (property "Reference" "U30" (id 0) (at 269.24 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 269.24 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 269.24 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 269.24 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 69d289fd-76d8-433e-b860-52ab8124d82d)) + (pin "2" (uuid fee8a486-efcc-4fd5-9a9d-f8d396246f22)) + (pin "3" (uuid 6c37d932-42a2-4c2d-9556-68c7cd14dda4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 175.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d330704-e504-4070-9536-893c7655e595) + (property "Reference" "U15" (id 0) (at 186.69 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76ab01f2-a5ae-4029-8221-08d7e2980a5b)) + (pin "2" (uuid c22382d2-7669-414f-b01b-5ef0caafe07b)) + (pin "3" (uuid 025abdeb-d1c1-4eaa-999c-b65240868504)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 124.46 280.67 90) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d804d37-1012-4cc0-ae90-733f6504644e) + (property "Reference" "U1" (id 0) (at 127 279.4 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 127 281.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 124.46 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 124.46 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 12a944cf-29a9-499b-a30c-148347e818a9)) + (pin "2" (uuid 6a2696fc-d328-4d79-bc3f-55da44643bf6)) + (pin "3" (uuid c178301c-89ae-4540-8321-b19e8725710d)) + (pin "4" (uuid b0ad7e93-4ebe-46a9-b868-926f5a3dad73)) + (pin "5" (uuid 48123939-1340-4b08-9da1-95c080876277)) + (pin "6" (uuid 1fad2285-763a-413c-9073-44b5e5630baf)) + (pin "7" (uuid 3b07e77c-cdde-4a36-8882-018a0531b256)) + (pin "8" (uuid ca6c1728-7310-4931-97ac-8fe68329092e)) + (pin "9" (uuid b516c74c-9e58-4790-98b7-c4b1326e170c)) + (pin "10" (uuid f5e25b9c-8f3a-4000-b9da-df4ae7230660)) + (pin "11" (uuid d125d265-89a0-4085-9709-ff9848f88b67)) + (pin "12" (uuid 4542bb8d-3a8b-451d-a6fd-53bda246541c)) + (pin "13" (uuid 14a3de8b-5370-4816-b172-f2590fc231af)) + (pin "14" (uuid 7fcaa188-2cc0-4a55-a409-5909f6dce97a)) + (pin "15" (uuid b11a79e4-3ba2-435d-b497-0a271c157764)) + (pin "16" (uuid 843239a0-7379-4efd-9fb3-8f468ea10d27)) + (pin "17" (uuid 998bd7cb-7a47-426f-b2ee-4e1e48954b48)) + (pin "18" (uuid f8f7e470-3d6e-4820-b49f-e7ad716c7bf8)) + (pin "19" (uuid de84c003-c3c6-4d59-a688-ccd9dde19925)) + (pin "20" (uuid 95d0c8d8-f3de-489f-be89-1582600ea93e)) + (pin "21" (uuid 4d40095b-25c8-4569-87a0-53bd48f2a473)) + (pin "22" (uuid 518cde85-371e-42d0-97eb-24839fb96674)) + (pin "23" (uuid c9f37d0b-2d9b-47a7-acd1-7c06db31cb87)) + (pin "24" (uuid 12a90139-d43d-4328-909a-bcc5fa2ca358)) + (pin "25" (uuid 7c96fd6b-8ff0-414f-8b32-e5a36aa9e92d)) + (pin "26" (uuid 75f90413-c48a-46fd-bb12-02c7b17cef47)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 130.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 640f5578-81ee-4c92-92e2-800c8f8218de) + (property "Reference" "U12" (id 0) (at 186.69 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53017068-417f-4eac-bf3b-a8a8c08f8254)) + (pin "2" (uuid 10246df2-6930-4124-b421-d9e6ac773343)) + (pin "3" (uuid 284e1faa-6184-4595-a699-ef5bee4d21aa)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 115.57 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a61a902-6708-4324-974c-fdd8046a33d1) + (property "Reference" "U2" (id 0) (at 115.57 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 115.57 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 115.57 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 115.57 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 542792d4-0029-423c-80ab-8dd7ecad8e70)) + (pin "2" (uuid 2add42ec-0603-4286-ae99-51fc2606b8db)) + (pin "3" (uuid d6079b41-5214-4982-9dd5-3f5811d9a473)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 119.38 280.67 90) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6c9eb1ac-c32d-4e9c-aa79-f5bd9be009af) + (property "Reference" "U1" (id 0) (at 121.92 279.4 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 121.92 281.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 119.38 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 119.38 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 39d739ff-0b90-46bb-946b-8d23c4069606)) + (pin "2" (uuid 88c90dc8-46df-48ac-9647-b09a696171a3)) + (pin "3" (uuid 0bbd6184-f1b0-4938-98a9-401b5375b3ad)) + (pin "4" (uuid de50d38e-294f-468f-a49f-d01b9e65fb84)) + (pin "5" (uuid e81f8011-03c1-4eb4-a72f-4ef838e553da)) + (pin "6" (uuid fb5b1d74-f21f-42fc-8012-df04be37746e)) + (pin "7" (uuid b8187042-c24e-461f-b1b6-2e98a0206a00)) + (pin "8" (uuid 76339d6b-9ffc-4a37-92c8-969143448309)) + (pin "9" (uuid 11db1101-892e-4884-8383-84e263c43906)) + (pin "10" (uuid 2bf3366a-7e12-4527-ac6a-29a2d4c4d15f)) + (pin "11" (uuid 672c7d4c-a1f7-4964-8225-ab91aa539483)) + (pin "12" (uuid 9665679f-f43f-43e7-b790-59c8893279c5)) + (pin "13" (uuid ce1b1acf-ebf9-42dc-97d9-1a07f2f25f1a)) + (pin "14" (uuid 6a60c672-66ab-4ff7-accf-972f6b5e2073)) + (pin "15" (uuid 62592989-d48e-4994-bd24-c7b8797a0331)) + (pin "16" (uuid 560da2fb-684d-491f-8bac-89f1da84bb48)) + (pin "17" (uuid acb98977-afce-474f-acaa-956a658cda35)) + (pin "18" (uuid a19a8683-2501-47b7-9c63-3438670ea3d0)) + (pin "19" (uuid 97221120-6f59-4802-a4bc-3ca05df6863e)) + (pin "20" (uuid 2b221f82-6931-41f4-ad20-7ed9267b6559)) + (pin "21" (uuid 0c87d91d-a66d-4d64-b957-c445678e4cac)) + (pin "22" (uuid 786c37f5-2c0b-4600-9430-5b531bf267d9)) + (pin "23" (uuid eb7e3b21-de38-47b7-8a75-523e25383281)) + (pin "24" (uuid 6867ab68-b0a6-411c-9306-38fb4d7600ac)) + (pin "25" (uuid 2ebbf735-53b7-4eab-8c45-279f546f23f1)) + (pin "26" (uuid 434bad3b-cd4f-4745-ad05-e21c93645cff)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 267.97 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d222275-f668-4d6e-9343-c46324a39bbb) + (property "Reference" "U28" (id 0) (at 267.97 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 267.97 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 267.97 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b1f003be-d074-4e4e-b92b-c62b5df2d363)) + (pin "2" (uuid dbc32a01-0205-491c-bd94-367d17fc729e)) + (pin "3" (uuid 0197532a-37d6-4d77-8706-44e01d4a9093)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 115.57 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 79f16b8c-afc3-44e8-a74f-e2d8834d4f1f) + (property "Reference" "U5" (id 0) (at 115.57 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 115.57 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 115.57 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 115.57 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c784fa11-c86e-4c68-8fa4-61694849f605)) + (pin "2" (uuid 4248bc08-fb78-412d-9038-f4c897958153)) + (pin "3" (uuid fadfc11c-2511-4dd8-a835-4cc5af5de042)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 346.71 224.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ad40e7c-1266-49d5-ae17-89434a4d6b7e) + (property "Reference" "U44" (id 0) (at 346.71 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 346.71 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 346.71 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 346.71 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 433b8c82-7294-45d7-8603-4a0ae4849717)) + (pin "2" (uuid a9fb9e74-28da-4a40-b987-7d0be18ff548)) + (pin "3" (uuid 25465c9b-d1ee-414a-9ae2-4cff3df2beeb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7b2682eb-625d-4898-979b-74480fcc260c) + (property "Reference" "U7" (id 0) (at 186.69 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ccfac9eb-d9ed-45e3-a818-a8216a9eca9b)) + (pin "2" (uuid 70697229-7881-43d4-ad55-89ce7c2fd057)) + (pin "3" (uuid b448241d-3851-4fd2-873d-be0e6bf06534)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 435.61 214.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f586e66-6d52-4d0e-afd4-ec36011dbd9e) + (property "Reference" "U51" (id 0) (at 435.61 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 435.61 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 435.61 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 435.61 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 78e693cf-ab88-4147-a0ec-42cba88995b3)) + (pin "2" (uuid 6a78c1ca-9444-49fe-aa57-478299032996)) + (pin "3" (uuid 1f8b5f47-9d44-485a-be45-51e44e17da23)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 267.97 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8df47cd3-bca6-40cb-b6d6-4db940aa23ee) + (property "Reference" "U24" (id 0) (at 267.97 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 267.97 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 267.97 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1d3b4449-8357-4629-8bad-cc6ebf5269a9)) + (pin "2" (uuid 361e7a28-cb76-4ec0-92d4-dfed4adeb3a9)) + (pin "3" (uuid 3bc102bd-7ccf-49b0-bc6f-d09f1759055d)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 267.97 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8dff2bb2-d80d-4140-816d-6c16401e5f76) + (property "Reference" "U23" (id 0) (at 267.97 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 267.97 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 267.97 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59670c5e-2f5d-4fdc-ad32-52788115dac2)) + (pin "2" (uuid 146d9492-a945-4835-a0b5-aafb9d0668e9)) + (pin "3" (uuid e5075b24-a5ee-41b3-9613-dd9bffafbcaf)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 111.76 280.67 90) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f8d4ff9-5862-41d8-b08b-df77b5d885f4) + (property "Reference" "U1" (id 0) (at 114.3 279.4 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 114.3 281.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 111.76 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 111.76 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 74a499bf-0a73-4911-9e10-9acbe905ea31)) + (pin "2" (uuid 173b7def-891c-41ea-a264-037f1d9e465a)) + (pin "3" (uuid ba5ac695-8dc8-4751-9fd0-d34968e703bd)) + (pin "4" (uuid e9d56ad4-495b-4d74-9749-e501f82a1524)) + (pin "5" (uuid 8c80c16f-3b30-4a48-b90d-855a688a021f)) + (pin "6" (uuid 85f921e0-8ce5-4727-b670-2374e1504c37)) + (pin "7" (uuid 013202a1-b520-43de-aab3-cdb14086a7d1)) + (pin "8" (uuid 7e2beb11-d9e5-4f3a-8d4f-a27375cfd6a2)) + (pin "9" (uuid f6ab0e25-75ca-4efa-8e08-4e9041b4a11d)) + (pin "10" (uuid 08168028-76ab-4a2a-a51a-e612b8541a8c)) + (pin "11" (uuid 2a583d5a-a72c-433f-97cd-0e97a239743b)) + (pin "12" (uuid 0bfa3371-13d2-44b3-a103-a52cbbc34bb6)) + (pin "13" (uuid 13928c3a-f0e1-42e5-9678-fb8e9841343f)) + (pin "14" (uuid 06612298-1b47-4693-9526-2196920ac098)) + (pin "15" (uuid 04822eb8-c7dc-4abd-85d6-b7503466231d)) + (pin "16" (uuid 18691fa9-08da-48ca-9ff7-efe77068c3cc)) + (pin "17" (uuid ebf113d0-4494-49aa-9ba2-f4ae1a6dc541)) + (pin "18" (uuid 8646c86d-82cc-4730-a06c-4bc91d19016c)) + (pin "19" (uuid 7f4d0434-ad8a-4a4e-9c80-1cdbb7a8f422)) + (pin "20" (uuid 3db50646-2db7-4696-bb10-642c9dd8a963)) + (pin "21" (uuid 277b0c4a-0a99-433e-a54a-d4396e58158e)) + (pin "22" (uuid 58ca557d-1867-42ac-b51f-1ec68521b82c)) + (pin "23" (uuid 987d3074-1730-4156-80a6-fbbfa7bdece3)) + (pin "24" (uuid 1515b4a0-94f6-4ab7-950d-f5687fd62145)) + (pin "25" (uuid 27abf9ea-eaa1-4f6e-a754-7d29759a6884)) + (pin "26" (uuid bd5eea73-0eb0-4c76-9d72-0c10dc853cbf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 115.57 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 92cdec32-7b0a-4b2f-af76-21621a374fed) + (property "Reference" "U3" (id 0) (at 115.57 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 115.57 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 115.57 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 115.57 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 88834b8d-330f-4305-8744-8f12242bc036)) + (pin "2" (uuid 99ab5423-a857-4357-921e-a36474509cd9)) + (pin "3" (uuid a5b7c534-2ae3-4ddb-9469-5fc16ea71742)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 248.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 936ead7e-ad65-42d7-ad41-f99b978bbf1a) + (property "Reference" "U20" (id 0) (at 186.69 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e70760e-bf12-4e76-a644-0c925c33bf3e)) + (pin "2" (uuid 9c9f0e0b-555f-426a-8d56-7e6ab7c3fffe)) + (pin "3" (uuid 9d75b661-6090-4df3-bf33-c28cd6880c8f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 269.24 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 949f8848-402d-47a4-8da2-e337c310c8fc) + (property "Reference" "U31" (id 0) (at 269.24 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 269.24 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 269.24 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 269.24 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aaf8bf0b-1b03-42e6-8361-e7f269d11013)) + (pin "2" (uuid 6e91a865-13f7-45ab-8620-a8eba80bd720)) + (pin "3" (uuid 728b8b4b-f68b-47c5-aaa4-38b7e1b69224)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 115.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 98d0d485-c463-41c7-be50-11b196242b06) + (property "Reference" "U11" (id 0) (at 186.69 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5e05b23a-3d1e-4ab0-a756-9bd746121089)) + (pin "2" (uuid f5f1dc31-7ae4-477a-b6bb-53bbdbbd1d2b)) + (pin "3" (uuid 24f99f00-4a84-47f8-b5b3-d751a9c61f48)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 114.3 280.67 90) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a15c830a-9409-4aab-8d49-2e124ce1b710) + (property "Reference" "U1" (id 0) (at 116.84 279.4 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 116.84 281.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 114.3 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 114.3 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 21b5a0f0-4933-4694-80e6-3937409bcfc3)) + (pin "2" (uuid a13d31a8-88fd-43d9-a2ed-29ce0450a7cd)) + (pin "3" (uuid b1a51def-3e37-4585-a101-88312bb4ccf3)) + (pin "4" (uuid 04f563f3-7e5e-4a4d-b803-cce55b5557ec)) + (pin "5" (uuid 70fda7dd-f760-4530-9c8c-e2ef232c808f)) + (pin "6" (uuid 71a0eab3-927e-4c60-81a9-31afe7a94d3f)) + (pin "7" (uuid e8b5697b-a567-4773-90b4-8e3390d1be25)) + (pin "8" (uuid 031dae27-3489-4a2d-b1a1-586751c0311e)) + (pin "9" (uuid b4afaaa0-6595-460a-99db-30b0172b54aa)) + (pin "10" (uuid c8bfe64a-128c-4c49-be43-38ab3287b33f)) + (pin "11" (uuid f2b923f8-9278-4b39-9fe8-9505014da7c1)) + (pin "12" (uuid 3e4533c1-cb8e-4266-9034-635f4aed5ca5)) + (pin "13" (uuid 396bd2af-0cbb-49a2-b5ec-cd88987ad7ba)) + (pin "14" (uuid 6da4f9f7-eb20-491c-a537-11da3749dc7d)) + (pin "15" (uuid 18c69d35-70de-40ad-b315-db4d23335752)) + (pin "16" (uuid cdad7537-8c60-49f0-9cba-369ec9392f83)) + (pin "17" (uuid f0f460ae-9e20-45fd-a734-a83934549eed)) + (pin "18" (uuid 0590e8eb-c649-4bc4-8b86-3331635d593e)) + (pin "19" (uuid 85f9fa9a-8fcf-4c00-aca8-6bc920ad50fc)) + (pin "20" (uuid 155681d1-cffa-4626-ad2e-31ab9dcca488)) + (pin "21" (uuid 8cdb3a97-fe83-4d00-9807-f0a9ea6ddf3a)) + (pin "22" (uuid 9e696afc-2ba1-48ac-a0d8-7cc9a3f151fe)) + (pin "23" (uuid 56d2a033-8c5e-418e-95cd-25c977dc4d8c)) + (pin "24" (uuid 4e7e5396-4ddf-4534-9f03-f5155854e7be)) + (pin "25" (uuid 98592d04-99bc-4a1f-845b-7258ef6ccaad)) + (pin "26" (uuid ce0d14a8-eda8-4c3f-b521-c0f109d30590)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 149.86 280.67 90) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a25b011a-9999-4427-a12c-c0cbdcd37ee8) + (property "Reference" "U1" (id 0) (at 152.4 279.4 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 152.4 281.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 149.86 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9aac982a-1833-46b7-9e0d-b68e2b7da078)) + (pin "2" (uuid 1cbc7cdb-ebc4-4a07-b1c5-0037e15c27a4)) + (pin "3" (uuid 0f8738d4-6574-4e23-a512-da1ff72b7002)) + (pin "4" (uuid 6cf432e1-fc60-4964-b5f2-87c93bda47b7)) + (pin "5" (uuid 60177d8d-5ad0-4744-b623-279842b49563)) + (pin "6" (uuid 0d17511c-e64c-4bb6-99b3-fb495a690711)) + (pin "7" (uuid 66a75c05-e1a3-4cd7-ae0b-c3afc2ac3715)) + (pin "8" (uuid e82ccc9a-7299-40ca-990a-afadcc60211e)) + (pin "9" (uuid 1f8663b1-a558-417b-99b0-9f89dfcafa0d)) + (pin "10" (uuid b480d8e5-df52-4a44-8034-d75af43b4e1a)) + (pin "11" (uuid 91e54fe4-bba5-4588-8750-94c24fb877d0)) + (pin "12" (uuid df477b49-052a-4965-b027-081204732d8d)) + (pin "13" (uuid d6e4c071-c8de-4094-8646-0dec0a826889)) + (pin "14" (uuid 35cddcfc-ab1c-4593-aa01-1a0923506399)) + (pin "15" (uuid 860fdfce-5099-414e-bbba-c6949039377b)) + (pin "16" (uuid 717980ad-43bd-4966-9db7-fda1329bc81c)) + (pin "17" (uuid 5c08456c-9436-46df-857b-19fb1378dabc)) + (pin "18" (uuid f08557d8-5a82-4a1d-9977-cfb85558277c)) + (pin "19" (uuid 021bfbb5-9415-458d-9cf0-e1d8d7aaa199)) + (pin "20" (uuid 38f28188-5636-46e5-b496-81ffba40930e)) + (pin "21" (uuid 50747705-b673-4ec9-9629-67fe586b19ec)) + (pin "22" (uuid 87ca65b5-4dc6-47c1-b595-f9b417bcc628)) + (pin "23" (uuid a005609f-51ab-4b82-b5d9-7cc2198d5abb)) + (pin "24" (uuid 5ff8b8db-c03f-4eeb-ac69-af72022ac03d)) + (pin "25" (uuid e1fb23cc-6a63-45f0-99d7-16b29dc7c950)) + (pin "26" (uuid c61d1817-533f-4a66-a673-0d10a661109a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 41.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a2a7319b-2990-440f-85ca-7ced352babca) + (property "Reference" "U6" (id 0) (at 186.69 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid defc47f1-916b-407a-a95b-89be1bda85f2)) + (pin "2" (uuid c0daf2af-fa7c-481a-bd66-ed650037b7e4)) + (pin "3" (uuid a5b927ce-0d1f-44b2-a4ab-e5d7db7a4013)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 347.98 241.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aa3acd55-ceef-4da0-bfd4-c852d72c8e6b) + (property "Reference" "U45" (id 0) (at 347.98 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 347.98 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 347.98 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 347.98 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a4d8c5f9-38eb-4985-93e9-be6393216d3d)) + (pin "2" (uuid 5e2f8d2a-60fd-4150-9763-bb8c8baed295)) + (pin "3" (uuid 88c1f98a-9a4d-470e-91bf-a1faea4637c6)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 345.44 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aada54dd-34dc-4d18-9e6d-147af254d605) + (property "Reference" "U42" (id 0) (at 345.44 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 345.44 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 345.44 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 345.44 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1df6ea2d-9e50-4096-b04d-01d6abd05111)) + (pin "2" (uuid a4106671-832d-44e0-a20a-c3c44b1045e1)) + (pin "3" (uuid 27570968-9c30-49eb-a361-047854ffbc93)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b2a1a2c6-ab9e-46a2-8275-7903da9e2a73) + (property "Reference" "U8" (id 0) (at 186.69 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aeb932d3-3328-4f6f-ae58-55fdd6ab7eb7)) + (pin "2" (uuid 2081a12a-797e-44d8-9616-5e6369b4b232)) + (pin "3" (uuid 64bd6f38-fbbd-41c5-aced-ca122780dcb6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 115.57 143.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b8edb8aa-cb0a-48fb-9c3b-da6661599f97) + (property "Reference" "U4" (id 0) (at 115.57 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 115.57 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 115.57 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 115.57 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dc384705-d6b3-4d08-b3e0-54a6b38a40e6)) + (pin "2" (uuid 7c0edafe-0656-4b85-b4cd-7a533f04d548)) + (pin "3" (uuid 2bcaf179-f062-41f7-bb30-1a0f22fd3921)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 264.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bd48c860-61fb-4d16-959b-a027e39392f6) + (property "Reference" "U21" (id 0) (at 186.69 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 449057f4-f25f-4503-ba75-3ee017ee3b42)) + (pin "2" (uuid 9d26e7d0-dac1-4240-86fd-94b4c1bdf9ae)) + (pin "3" (uuid caa02124-98cb-4099-98ef-6cba24e75c72)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 339.09 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c829fa3f-8e21-47de-92eb-9ac9c3b73867) + (property "Reference" "U38" (id 0) (at 339.09 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 339.09 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 339.09 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fb674db8-ce47-4002-8e9e-15f9d30689ec)) + (pin "2" (uuid de3d29f6-1b6c-4cc1-ab70-b34fde33c2fb)) + (pin "3" (uuid fc1e2ed5-e316-454b-bf92-bec8b56d09aa)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 388.62 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ced9c2c8-aa1e-434d-a52e-93458ee3e081) + (property "Reference" "U46" (id 0) (at 388.62 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 388.62 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 388.62 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 388.62 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bbe98729-39e9-4f4b-b5a0-cf42d872a146)) + (pin "2" (uuid cc306d9c-60e0-47bf-956c-cade4e362583)) + (pin "3" (uuid 9069407e-42d1-42e3-bbab-c1b4ba22cba3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 160.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf7d6f78-e94c-4ca9-9e3d-582681732cbb) + (property "Reference" "U14" (id 0) (at 186.69 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2054de0b-1aec-4ff1-8d6c-0604cbbac4f3)) + (pin "2" (uuid d750ea68-6a83-4248-b91d-7e710af84331)) + (pin "3" (uuid e8e9bb4f-1cd6-4cb6-9e78-282472826c8a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 218.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cfc2edde-7744-4100-9f25-37f249f6ca11) + (property "Reference" "U18" (id 0) (at 186.69 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d9da0a69-f1cc-40ae-a9ff-d779c39f8cdc)) + (pin "2" (uuid 68f4c335-61eb-4424-8958-c9d9a285d2b8)) + (pin "3" (uuid a16f14a9-532e-4bf3-9054-a6ed8e26c824)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d1bf79c4-22db-4db2-b42a-6fae500f3a31) + (property "Reference" "U13" (id 0) (at 186.69 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 744c19fa-7d83-46c9-a221-0628a51f7183)) + (pin "2" (uuid c1a0aacf-d856-452d-a86a-b68ea3f34e3a)) + (pin "3" (uuid 0c98d5f8-66f4-439f-a5fa-6732cdea9106)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 267.97 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d42b5424-13fb-4ffd-ae8a-c619fb2f4752) + (property "Reference" "U25" (id 0) (at 267.97 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 267.97 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 267.97 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 762462a7-fc95-4db2-9212-dee352b91e83)) + (pin "2" (uuid bb861f05-cf43-4777-8e1b-ea51bc2e1904)) + (pin "3" (uuid 3ef82f15-7ad0-4987-8274-731cb2176ad2)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 271.78 250.19 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dc7a02e1-5da3-4853-ae59-59730944c0f5) + (property "Reference" "U36" (id 0) (at 271.78 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 271.78 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 271.78 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e9dc570-cb01-46de-ab2d-323c3206ba7c)) + (pin "2" (uuid 77dbc1ec-2e41-4234-9ac2-e52fa3149f8a)) + (pin "3" (uuid 6008ee66-ea88-4f5a-84d2-b8d9e8dc6b07)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 269.24 205.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5b4942f-aff4-4bd9-9939-77733922a51f) + (property "Reference" "U33" (id 0) (at 269.24 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 269.24 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 269.24 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 269.24 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 288cbffc-7dd2-426e-a2fd-4d31d6706f53)) + (pin "2" (uuid 9afac0de-27df-411e-897d-84198f88cb81)) + (pin "3" (uuid cad0915b-bc24-4d8b-9203-d06db5bd3633)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e817ddc0-9f98-42a5-95eb-5180e20cc58b) + (property "Reference" "U10" (id 0) (at 186.69 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 86c518f9-4871-4429-9534-cc2712e22ce1)) + (pin "2" (uuid 3f8573c6-8b9a-46aa-8256-c6162a16a9e3)) + (pin "3" (uuid 935a24a9-8425-483b-9af9-a1ed770f34ef)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 273.05 264.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9465584-05e5-4e86-a61c-55aa60fec948) + (property "Reference" "U37" (id 0) (at 273.05 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 273.05 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 273.05 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 273.05 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9600f37c-0e82-4769-b17e-c0f056fbb625)) + (pin "2" (uuid aa02c8a0-cc9b-4c20-a13b-f86b2fe2d167)) + (pin "3" (uuid 2bdccf50-b64a-48f8-81b2-6b5ea2f12e67)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 269.24 193.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ee0d356a-32cb-42b4-b8f7-f9dcf864bbef) + (property "Reference" "U32" (id 0) (at 269.24 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 269.24 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 269.24 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 269.24 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dbc1bae4-d23b-47ae-97db-5e439fa8d42f)) + (pin "2" (uuid e8432411-4ca1-4700-9219-26308b35a82a)) + (pin "3" (uuid 5b18829e-0ff2-4a20-86b3-3b0f5dd4c754)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 267.97 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f13d3180-5117-4285-a565-f3ee0ecdbe46) + (property "Reference" "U26" (id 0) (at 267.97 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 267.97 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 267.97 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17921877-367d-4cbd-a0b0-c554bc73b6e5)) + (pin "2" (uuid dbec3ab5-890e-4436-baa7-4316fd44bc90)) + (pin "3" (uuid 6a19b898-d2c6-4c01-b09c-8ea76bd6fa4a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 205.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f14cbd45-7f5d-4bbd-b78e-a4f8e3e69d3e) + (property "Reference" "U17" (id 0) (at 186.69 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ddb8dea6-76d3-4751-8ede-68143a93da86)) + (pin "2" (uuid a32699cd-7333-4b6e-b931-e5a41a03b63e)) + (pin "3" (uuid 4045a5db-200c-41b0-a051-507a8025e128)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 429.26 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f2900a0f-1fd2-40bf-a623-f7e6a661fe0b) + (property "Reference" "U50" (id 0) (at 429.26 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 429.26 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 429.26 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 429.26 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5dbb0c56-4d0b-4a9d-87b3-68b693dc2651)) + (pin "2" (uuid 049f2727-a0d8-4649-adcb-68d08c4d43ed)) + (pin "3" (uuid ae09cfef-386a-43fc-a762-78936b41014a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 147.32 280.67 90) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f3ff80ae-92ff-4e6e-97b9-1f6acf80e90b) + (property "Reference" "U1" (id 0) (at 149.86 279.4 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 149.86 281.94 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 147.32 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 147.32 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid baffb7dc-150f-4ff7-9eb0-776b11eb9b19)) + (pin "2" (uuid 15deb7b0-1065-4f4e-bdde-d895d09a61c9)) + (pin "3" (uuid 848b12ce-988c-4ebf-b9c4-e99833e62694)) + (pin "4" (uuid b5d147d3-8dc2-4d35-80af-128ed9ac5d69)) + (pin "5" (uuid bec3228d-8ca6-418e-9a17-6c1267a5e930)) + (pin "6" (uuid 5b4e8b2f-f024-4079-a50b-d97c45bec42f)) + (pin "7" (uuid 030fddef-e4ad-4c7d-baba-ef6b44cdc1ef)) + (pin "8" (uuid c130b997-5ef4-43cf-99c6-914ae9d197d5)) + (pin "9" (uuid 20413730-a21b-4818-8889-212ca7a36e2b)) + (pin "10" (uuid 48725a17-89c7-4975-844b-ca3a388f2144)) + (pin "11" (uuid de32b773-0c9f-42c7-b521-e16d82b819c2)) + (pin "12" (uuid 2c3626bf-4e9d-41e6-9ee3-8bb247df8178)) + (pin "13" (uuid 5d39d495-f308-4919-945a-9295e9a7a9e1)) + (pin "14" (uuid cafd9ec2-eb02-4fe9-ad09-1f64af8b266c)) + (pin "15" (uuid b2b821a8-f9cc-41fc-a835-f732cf4c12ee)) + (pin "16" (uuid fae746c8-68d2-4383-8a68-8bc2a7af6d26)) + (pin "17" (uuid 4b198ea8-f681-4077-a36d-2b01bb80517e)) + (pin "18" (uuid 57f7a59f-65a3-4dfd-8775-7ae6d004ca78)) + (pin "19" (uuid 71675d04-6472-4866-abea-85725e7a0e5f)) + (pin "20" (uuid 230c6e71-b62f-4d8e-ba4b-dffe0154a4c1)) + (pin "21" (uuid 063ecb52-f2d6-45a5-9f19-685d4e1cfa47)) + (pin "22" (uuid cfd967bc-ed1f-417a-bc68-99fa54ce0aa6)) + (pin "23" (uuid 61a6eeef-041b-45b1-991a-359aae455a34)) + (pin "24" (uuid 814d8898-e02e-4139-92eb-4ea3de9d3cf1)) + (pin "25" (uuid 379292c6-6d69-4224-8403-6e37ed98bff7)) + (pin "26" (uuid 743f2220-5ab1-48e9-bd42-f0bf2f841baa)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 389.89 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f81f4a32-c859-4f9d-a7ba-b6e502e097dd) + (property "Reference" "U47" (id 0) (at 389.89 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 389.89 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 389.89 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 389.89 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cd142a71-4c6b-475b-8766-409a815f8e4d)) + (pin "2" (uuid bf4e6e5a-12d8-4fe4-91a7-eae666d938b8)) + (pin "3" (uuid 259796f9-ab24-4495-84fb-b830efec7c28)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 453.39 213.36 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9bb4c85-77f5-40f9-bcc7-9a9dab3c699d) + (property "Reference" "U1" (id 0) (at 457.2 212.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 457.2 215.265 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 453.39 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid db123fb0-6cc5-43a6-b869-377ece136c4d)) + (pin "2" (uuid 6931c5a1-8ded-4935-b61d-dd44779e5530)) + (pin "3" (uuid 1f8dd867-83c7-4e82-a1af-89d3c51c203a)) + (pin "4" (uuid d783e493-a0b1-4f9a-8ca6-1468fe7b4370)) + (pin "5" (uuid 04f0a789-0621-456c-911c-bc3a7f9c34a9)) + (pin "6" (uuid 4d7d10b0-9ab9-4270-81d4-ee4574ed9e7a)) + (pin "7" (uuid d33bd20e-073b-4b86-b423-a6c1576ca537)) + (pin "8" (uuid 49104da4-c06d-4aa6-a914-96690e875a7c)) + (pin "9" (uuid 287731df-af72-4b9b-a1e5-402209c8d8e6)) + (pin "10" (uuid 2082f4f4-cdba-4d51-b5a6-4d6347eeaa3d)) + (pin "11" (uuid 94874134-dce5-4b4c-800a-760c30df98f8)) + (pin "12" (uuid 8de30d3c-cc9f-498f-9c7a-cd07c62e504e)) + (pin "13" (uuid e518d803-7e8a-4506-8ac0-2fbfa264622a)) + (pin "14" (uuid ce2a88ec-9dd1-456f-b62d-1d81777901c7)) + (pin "15" (uuid 5b4e546d-334e-431b-afce-0244a8923233)) + (pin "16" (uuid 2cafdc8e-d046-4ad5-997f-79af6e625cc2)) + (pin "17" (uuid e22673b2-776e-46b2-80f2-d7a4122bd1c5)) + (pin "18" (uuid adb65787-2347-47c5-a840-e599e975886b)) + (pin "19" (uuid aa330c82-c3dd-41be-8444-da6dd931a088)) + (pin "20" (uuid 715226b7-260b-4115-8daf-9aa8a4a2d1c9)) + (pin "21" (uuid ae54b9b4-9f59-4d0b-b2aa-35e664e35085)) + (pin "22" (uuid 3dc6d678-7f14-4fe5-9633-d79968fe289e)) + (pin "23" (uuid a589b010-024f-4863-a264-dd83455a237b)) + (pin "24" (uuid ec00d91e-497e-4783-b35f-5db72955a0a1)) + (pin "25" (uuid 7c12e705-a2cb-4380-98b8-efe746843071)) + (pin "26" (uuid a0f5be98-5e04-4936-8c3b-21c3709bbd16)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 340.36 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fd23e7f7-0784-4554-ad25-ea07fc2851ad) + (property "Reference" "U40" (id 0) (at 340.36 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 340.36 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 340.36 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 340.36 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 73c40714-8936-4329-aa1a-5afbaa31db16)) + (pin "2" (uuid 8a8277aa-8c80-468b-948a-0aec23d562f3)) + (pin "3" (uuid b584deb8-1543-4df3-9cab-0540a1a4ac37)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 186.69 190.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ff3af13c-95a1-4e6b-be1d-ecd09c1ba3d6) + (property "Reference" "U16" (id 0) (at 186.69 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 186.69 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2176ed94-702f-48ba-8f71-e98845a9d0c9)) + (pin "2" (uuid b4349202-243c-445a-a384-f27cf6c2f745)) + (pin "3" (uuid 544a52c8-7035-4f09-9e2f-7c8ff14f03d4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 447.04 96.52 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ff6a658e-b5a5-4e89-93ce-9d9e3ea04763) + (property "Reference" "U1" (id 0) (at 450.85 95.885 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 450.85 98.425 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 447.04 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 447.04 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cbcbb725-07b5-4836-900b-0cc2bded29cd)) + (pin "2" (uuid 56c58760-3519-4bee-9ad7-78f05d86848b)) + (pin "3" (uuid 25b928dc-54d1-4135-ac55-3717d983b620)) + (pin "4" (uuid 862b9e2d-158c-4976-b8f0-d75e1e7f85cd)) + (pin "5" (uuid 724f0f5d-d1ad-412e-88b8-eb49c372c882)) + (pin "6" (uuid b9a984e0-7127-4858-b55a-76c87ab43eaf)) + (pin "7" (uuid 505390e8-dfa9-4085-b47a-210bb2ff399c)) + (pin "8" (uuid 6c3a8095-2117-4a60-a798-e9adfc3fbcbb)) + (pin "9" (uuid 8e072883-ed1c-4b16-80f4-153375b09930)) + (pin "10" (uuid 068a3289-3f29-424a-90b6-2dcebe2b2d83)) + (pin "11" (uuid 6cf21f38-3d6a-4a93-8434-7dd13699613b)) + (pin "12" (uuid 4b70b9f3-ae25-43d6-8844-9123cf1a2025)) + (pin "13" (uuid f37d7509-c335-4949-827c-7341dc39edb9)) + (pin "14" (uuid b48386af-1c8e-4d84-9957-8b191789dd2e)) + (pin "15" (uuid a3f99630-e76a-4f1b-86b3-0156206b759a)) + (pin "16" (uuid 3038065d-fbeb-4eaa-b3d0-439fb163b04b)) + (pin "17" (uuid 3d88aa58-b0cf-48cb-a44e-b5705d749fa4)) + (pin "18" (uuid 7389c1cd-0a8f-4dbd-b5cc-9b61978eed48)) + (pin "19" (uuid edee7b6e-aae7-4efd-8cb5-10175f751c51)) + (pin "20" (uuid 53a262af-a80d-4f77-af96-bbb5eec2792c)) + (pin "21" (uuid d8d0fcd3-1bd3-45c2-b756-b218ea6e2d4f)) + (pin "22" (uuid 50410eb3-3ae3-43f1-9f80-68662ce95eb1)) + (pin "23" (uuid a0544f59-5800-4b7e-8d76-6e168153be20)) + (pin "24" (uuid 53ff77fc-45eb-42a8-a850-20f418899ea1)) + (pin "25" (uuid 3d44ae13-f9f8-47b4-8c72-987fb445160f)) + (pin "26" (uuid d4699839-d7fd-4e0e-ab17-37979fa805a2)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/01c94947-114b-4bf4-a5ce-271938fc939c" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/525343dc-5351-42bf-b0d7-d2aa3353f123" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/8f8d4ff9-5862-41d8-b08b-df77b5d885f4" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/a15c830a-9409-4aab-8d49-2e124ce1b710" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/542f9479-9ac0-4f69-be78-ce8463415dc2" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/6c9eb1ac-c32d-4e9c-aa79-f5bd9be009af" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/30c32d45-1559-4b39-b5a3-23d79c68a0c8" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/5d804d37-1012-4cc0-ae90-733f6504644e" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/f3ff80ae-92ff-4e6e-97b9-1f6acf80e90b" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/a25b011a-9999-4427-a12c-c0cbdcd37ee8" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/ff6a658e-b5a5-4e89-93ce-9d9e3ea04763" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/f9bb4c85-77f5-40f9-bcc7-9a9dab3c699d" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/6a61a902-6708-4324-974c-fdd8046a33d1" + (reference "U2") (unit 1) (value "d_and") (footprint "") + ) + (path "/92cdec32-7b0a-4b2f-af76-21621a374fed" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/b8edb8aa-cb0a-48fb-9c3b-da6661599f97" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/79f16b8c-afc3-44e8-a74f-e2d8834d4f1f" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/a2a7319b-2990-440f-85ca-7ced352babca" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/7b2682eb-625d-4898-979b-74480fcc260c" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/b2a1a2c6-ab9e-46a2-8275-7903da9e2a73" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/45728fa6-bbd5-4b91-aebe-615789bd1b9f" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/e817ddc0-9f98-42a5-95eb-5180e20cc58b" + (reference "U10") (unit 1) (value "d_and") (footprint "") + ) + (path "/98d0d485-c463-41c7-be50-11b196242b06" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/640f5578-81ee-4c92-92e2-800c8f8218de" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/d1bf79c4-22db-4db2-b42a-6fae500f3a31" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + (path "/cf7d6f78-e94c-4ca9-9e3d-582681732cbb" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/5d330704-e504-4070-9536-893c7655e595" + (reference "U15") (unit 1) (value "d_and") (footprint "") + ) + (path "/ff3af13c-95a1-4e6b-be1d-ecd09c1ba3d6" + (reference "U16") (unit 1) (value "d_and") (footprint "") + ) + (path "/f14cbd45-7f5d-4bbd-b78e-a4f8e3e69d3e" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/cfc2edde-7744-4100-9f25-37f249f6ca11" + (reference "U18") (unit 1) (value "d_and") (footprint "") + ) + (path "/43d55af8-8425-42a0-b397-fe4f6f78e390" + (reference "U19") (unit 1) (value "d_and") (footprint "") + ) + (path "/936ead7e-ad65-42d7-ad41-f99b978bbf1a" + (reference "U20") (unit 1) (value "d_and") (footprint "") + ) + (path "/bd48c860-61fb-4d16-959b-a027e39392f6" + (reference "U21") (unit 1) (value "d_and") (footprint "") + ) + (path "/2e31ea17-8ca2-4801-9592-52407548bdb3" + (reference "U22") (unit 1) (value "d_and") (footprint "") + ) + (path "/8dff2bb2-d80d-4140-816d-6c16401e5f76" + (reference "U23") (unit 1) (value "d_or") (footprint "") + ) + (path "/8df47cd3-bca6-40cb-b6d6-4db940aa23ee" + (reference "U24") (unit 1) (value "d_and") (footprint "") + ) + (path "/d42b5424-13fb-4ffd-ae8a-c619fb2f4752" + (reference "U25") (unit 1) (value "d_and") (footprint "") + ) + (path "/f13d3180-5117-4285-a565-f3ee0ecdbe46" + (reference "U26") (unit 1) (value "d_and") (footprint "") + ) + (path "/33d7f6c2-33d8-45af-8e0c-25176acf53cb" + (reference "U27") (unit 1) (value "d_and") (footprint "") + ) + (path "/6d222275-f668-4d6e-9343-c46324a39bbb" + (reference "U28") (unit 1) (value "d_and") (footprint "") + ) + (path "/231f0448-7039-4f62-ab4f-b909a6cbdd25" + (reference "U29") (unit 1) (value "d_or") (footprint "") + ) + (path "/552df7b9-886a-463e-9c82-9684321b2845" + (reference "U30") (unit 1) (value "d_and") (footprint "") + ) + (path "/949f8848-402d-47a4-8da2-e337c310c8fc" + (reference "U31") (unit 1) (value "d_and") (footprint "") + ) + (path "/ee0d356a-32cb-42b4-b8f7-f9dcf864bbef" + (reference "U32") (unit 1) (value "d_and") (footprint "") + ) + (path "/e5b4942f-aff4-4bd9-9939-77733922a51f" + (reference "U33") (unit 1) (value "d_and") (footprint "") + ) + (path "/03b6c68b-622d-4e57-9b80-f1b3a86d5118" + (reference "U34") (unit 1) (value "d_or") (footprint "") + ) + (path "/128976be-2e70-4668-8869-15cc1d085d0d" + (reference "U35") (unit 1) (value "d_and") (footprint "") + ) + (path "/dc7a02e1-5da3-4853-ae59-59730944c0f5" + (reference "U36") (unit 1) (value "d_and") (footprint "") + ) + (path "/e9465584-05e5-4e86-a61c-55aa60fec948" + (reference "U37") (unit 1) (value "d_or") (footprint "") + ) + (path "/c829fa3f-8e21-47de-92eb-9ac9c3b73867" + (reference "U38") (unit 1) (value "d_or") (footprint "") + ) + (path "/45333bea-69a1-4534-9d4f-29dc4205d38f" + (reference "U39") (unit 1) (value "d_or") (footprint "") + ) + (path "/fd23e7f7-0784-4554-ad25-ea07fc2851ad" + (reference "U40") (unit 1) (value "d_or") (footprint "") + ) + (path "/149b6cd9-dc37-4b0b-8b12-681803cf21db" + (reference "U41") (unit 1) (value "d_or") (footprint "") + ) + (path "/aada54dd-34dc-4d18-9e6d-147af254d605" + (reference "U42") (unit 1) (value "d_or") (footprint "") + ) + (path "/1e8c1f40-86e9-47c8-b124-7f06defd4309" + (reference "U43") (unit 1) (value "d_or") (footprint "") + ) + (path "/7ad40e7c-1266-49d5-ae17-89434a4d6b7e" + (reference "U44") (unit 1) (value "d_or") (footprint "") + ) + (path "/aa3acd55-ceef-4da0-bfd4-c852d72c8e6b" + (reference "U45") (unit 1) (value "d_or") (footprint "") + ) + (path "/ced9c2c8-aa1e-434d-a52e-93458ee3e081" + (reference "U46") (unit 1) (value "d_or") (footprint "") + ) + (path "/f81f4a32-c859-4f9d-a7ba-b6e502e097dd" + (reference "U47") (unit 1) (value "d_or") (footprint "") + ) + (path "/4775856d-6e9b-470c-a3df-dc8f2f8b974d" + (reference "U48") (unit 1) (value "d_or") (footprint "") + ) + (path "/2dc7a79b-8433-4ab7-95d5-7cb7fcac4b03" + (reference "U49") (unit 1) (value "d_or") (footprint "") + ) + (path "/f2900a0f-1fd2-40bf-a623-f7e6a661fe0b" + (reference "U50") (unit 1) (value "d_or") (footprint "") + ) + (path "/7f586e66-6d52-4d0e-afd4-ec36011dbd9e" + (reference "U51") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/MC14530B/MC14530B.sub b/library/SubcircuitLibrary/MC14530B/MC14530B.sub new file mode 100644 index 000000000..ed8b34d30 --- /dev/null +++ b/library/SubcircuitLibrary/MC14530B/MC14530B.sub @@ -0,0 +1,206 @@ +* Subcircuit MC14530B +.subckt MC14530B /a1 /a2 /b1 /b2 /c1 /c2 /d1 /d2 /e1 /e2 net-_u1-pad11_ net-_u1-pad12_ +.title kicad schematic +* u25 net-_u25-pad1_ /e1 net-_u25-pad3_ d_and +* u24 net-_u13-pad1_ /e1 net-_u24-pad3_ d_and +* u22 net-_u22-pad1_ /e1 net-_u22-pad3_ d_and +* u23 net-_u23-pad1_ net-_u23-pad2_ net-_u23-pad3_ d_or +* u26 net-_u10-pad3_ /e1 net-_u26-pad3_ d_and +* u28 net-_u10-pad3_ /d1 net-_u28-pad3_ d_and +* u27 net-_u11-pad3_ /e1 net-_u27-pad3_ d_and +* u30 net-_u15-pad1_ /e2 net-_u30-pad3_ d_and +* u31 net-_u14-pad3_ /e2 net-_u31-pad3_ d_and +* u29 net-_u12-pad3_ net-_u13-pad3_ net-_u29-pad3_ d_or +* u32 net-_u16-pad3_ /d2 net-_u32-pad3_ d_and +* u8 net-_u12-pad1_ /c1 net-_u23-pad1_ d_and +* u9 /c1 /d1 net-_u25-pad1_ d_and +* u11 /b1 /d1 net-_u11-pad3_ d_and +* u10 /b1 /c1 net-_u10-pad3_ d_and +* u7 net-_u12-pad1_ /d1 net-_u23-pad2_ d_and +* u6 /a1 /d1 net-_u22-pad1_ d_and +* u12 net-_u12-pad1_ /e1 net-_u12-pad3_ d_and +* u13 net-_u13-pad1_ /d1 net-_u13-pad3_ d_and +* u14 /a2 /d2 net-_u14-pad3_ d_and +* u15 net-_u15-pad1_ /d2 net-_u15-pad3_ d_and +* u16 /b2 /c2 net-_u16-pad3_ d_and +* u4 /a2 /c2 net-_u15-pad1_ d_and +* u5 /a2 /b2 net-_u17-pad1_ d_and +* u2 /a1 /b1 net-_u12-pad1_ d_and +* u3 /a1 /c1 net-_u13-pad1_ d_and +* u37 net-_u21-pad3_ net-_u15-pad3_ net-_u37-pad3_ d_or +* u35 net-_u19-pad3_ /e2 net-_u35-pad3_ d_and +* u36 net-_u20-pad3_ /e2 net-_u36-pad3_ d_and +* u33 net-_u16-pad3_ /e2 net-_u33-pad3_ d_and +* u34 net-_u17-pad3_ net-_u18-pad3_ net-_u34-pad3_ d_or +* u43 net-_u32-pad3_ net-_u33-pad3_ net-_u43-pad3_ d_or +* u42 net-_u30-pad3_ net-_u31-pad3_ net-_u42-pad3_ d_or +* u39 net-_u28-pad3_ net-_u26-pad3_ net-_u39-pad3_ d_or +* u38 net-_u24-pad3_ net-_u22-pad3_ net-_u38-pad3_ d_or +* u41 net-_u23-pad3_ net-_u29-pad3_ net-_u41-pad3_ d_or +* u40 net-_u27-pad3_ net-_u25-pad3_ net-_u40-pad3_ d_or +* u45 net-_u34-pad3_ net-_u37-pad3_ net-_u45-pad3_ d_or +* u44 net-_u35-pad3_ net-_u36-pad3_ net-_u44-pad3_ d_or +* u49 net-_u44-pad3_ net-_u45-pad3_ net-_u49-pad3_ d_or +* u48 net-_u42-pad3_ net-_u43-pad3_ net-_u48-pad3_ d_or +* u46 net-_u38-pad3_ net-_u39-pad3_ net-_u46-pad3_ d_or +* u47 net-_u40-pad3_ net-_u41-pad3_ net-_u47-pad3_ d_or +* u51 net-_u48-pad3_ net-_u49-pad3_ net-_u1-pad12_ d_or +* u50 net-_u46-pad3_ net-_u47-pad3_ net-_u1-pad11_ d_or +* u17 net-_u17-pad1_ /c2 net-_u17-pad3_ d_and +* u18 net-_u17-pad1_ /d2 net-_u18-pad3_ d_and +* u20 /c2 /d2 net-_u20-pad3_ d_and +* u19 /b2 /d2 net-_u19-pad3_ d_and +* u21 net-_u17-pad1_ /e2 net-_u21-pad3_ d_and +a1 [net-_u25-pad1_ /e1 ] net-_u25-pad3_ u25 +a2 [net-_u13-pad1_ /e1 ] net-_u24-pad3_ u24 +a3 [net-_u22-pad1_ /e1 ] net-_u22-pad3_ u22 +a4 [net-_u23-pad1_ net-_u23-pad2_ ] net-_u23-pad3_ u23 +a5 [net-_u10-pad3_ /e1 ] net-_u26-pad3_ u26 +a6 [net-_u10-pad3_ /d1 ] net-_u28-pad3_ u28 +a7 [net-_u11-pad3_ /e1 ] net-_u27-pad3_ u27 +a8 [net-_u15-pad1_ /e2 ] net-_u30-pad3_ u30 +a9 [net-_u14-pad3_ /e2 ] net-_u31-pad3_ u31 +a10 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u29-pad3_ u29 +a11 [net-_u16-pad3_ /d2 ] net-_u32-pad3_ u32 +a12 [net-_u12-pad1_ /c1 ] net-_u23-pad1_ u8 +a13 [/c1 /d1 ] net-_u25-pad1_ u9 +a14 [/b1 /d1 ] net-_u11-pad3_ u11 +a15 [/b1 /c1 ] net-_u10-pad3_ u10 +a16 [net-_u12-pad1_ /d1 ] net-_u23-pad2_ u7 +a17 [/a1 /d1 ] net-_u22-pad1_ u6 +a18 [net-_u12-pad1_ /e1 ] net-_u12-pad3_ u12 +a19 [net-_u13-pad1_ /d1 ] net-_u13-pad3_ u13 +a20 [/a2 /d2 ] net-_u14-pad3_ u14 +a21 [net-_u15-pad1_ /d2 ] net-_u15-pad3_ u15 +a22 [/b2 /c2 ] net-_u16-pad3_ u16 +a23 [/a2 /c2 ] net-_u15-pad1_ u4 +a24 [/a2 /b2 ] net-_u17-pad1_ u5 +a25 [/a1 /b1 ] net-_u12-pad1_ u2 +a26 [/a1 /c1 ] net-_u13-pad1_ u3 +a27 [net-_u21-pad3_ net-_u15-pad3_ ] net-_u37-pad3_ u37 +a28 [net-_u19-pad3_ /e2 ] net-_u35-pad3_ u35 +a29 [net-_u20-pad3_ /e2 ] net-_u36-pad3_ u36 +a30 [net-_u16-pad3_ /e2 ] net-_u33-pad3_ u33 +a31 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u34-pad3_ u34 +a32 [net-_u32-pad3_ net-_u33-pad3_ ] net-_u43-pad3_ u43 +a33 [net-_u30-pad3_ net-_u31-pad3_ ] net-_u42-pad3_ u42 +a34 [net-_u28-pad3_ net-_u26-pad3_ ] net-_u39-pad3_ u39 +a35 [net-_u24-pad3_ net-_u22-pad3_ ] net-_u38-pad3_ u38 +a36 [net-_u23-pad3_ net-_u29-pad3_ ] net-_u41-pad3_ u41 +a37 [net-_u27-pad3_ net-_u25-pad3_ ] net-_u40-pad3_ u40 +a38 [net-_u34-pad3_ net-_u37-pad3_ ] net-_u45-pad3_ u45 +a39 [net-_u35-pad3_ net-_u36-pad3_ ] net-_u44-pad3_ u44 +a40 [net-_u44-pad3_ net-_u45-pad3_ ] net-_u49-pad3_ u49 +a41 [net-_u42-pad3_ net-_u43-pad3_ ] net-_u48-pad3_ u48 +a42 [net-_u38-pad3_ net-_u39-pad3_ ] net-_u46-pad3_ u46 +a43 [net-_u40-pad3_ net-_u41-pad3_ ] net-_u47-pad3_ u47 +a44 [net-_u48-pad3_ net-_u49-pad3_ ] net-_u1-pad12_ u51 +a45 [net-_u46-pad3_ net-_u47-pad3_ ] net-_u1-pad11_ u50 +a46 [net-_u17-pad1_ /c2 ] net-_u17-pad3_ u17 +a47 [net-_u17-pad1_ /d2 ] net-_u18-pad3_ u18 +a48 [/c2 /d2 ] net-_u20-pad3_ u20 +a49 [/b2 /d2 ] net-_u19-pad3_ u19 +a50 [net-_u17-pad1_ /e2 ] net-_u21-pad3_ u21 +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u30 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u31 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u29 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u32 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u16 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u37 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u35 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u36 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u33 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u34 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u43 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u42 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u39 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u38 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u41 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u40 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u45 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u44 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u49 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u48 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u46 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u47 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u51 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u50 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends MC14530B \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14530B/MC14530B_Previous_Values.xml b/library/SubcircuitLibrary/MC14530B/MC14530B_Previous_Values.xml new file mode 100644 index 000000000..39378d1c4 --- /dev/null +++ b/library/SubcircuitLibrary/MC14530B/MC14530B_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_andd_andd_andd_ord_andd_andd_andd_andd_andd_ord_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_ord_andd_andd_andd_ord_ord_ord_ord_ord_ord_ord_ord_ord_ord_ord_ord_ord_ord_ord_andd_andd_andd_andd_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14530B/analysis b/library/SubcircuitLibrary/MC14530B/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/MC14530B/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14560B/3_and-cache.lib b/library/SubcircuitLibrary/MC14560B/3_and-cache.lib new file mode 100644 index 000000000..af0586415 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/3_and-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14560B/3_and.cir b/library/SubcircuitLibrary/MC14560B/3_and.cir new file mode 100644 index 000000000..ba296cf01 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/3_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\3_and\3_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/26/19 18:42:57 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad4_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT + +.end diff --git a/library/SubcircuitLibrary/MC14560B/3_and.cir.out b/library/SubcircuitLibrary/MC14560B/3_and.cir.out new file mode 100644 index 000000000..d7cf79a07 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/3_and.cir.out @@ -0,0 +1,20 @@ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC14560B/3_and.pro b/library/SubcircuitLibrary/MC14560B/3_and.pro new file mode 100644 index 000000000..00597a5ad --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/3_and.pro @@ -0,0 +1,43 @@ +update=05/31/19 15:26:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=eSim_Analog +LibName2=eSim_Devices +LibName3=eSim_Digital +LibName4=eSim_Hybrid +LibName5=eSim_Miscellaneous +LibName6=eSim_Plot +LibName7=eSim_Power +LibName8=eSim_User +LibName9=eSim_Sources +LibName10=eSim_Subckt diff --git a/library/SubcircuitLibrary/MC14560B/3_and.sch b/library/SubcircuitLibrary/MC14560B/3_and.sch new file mode 100644 index 000000000..d6ac89f95 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/3_and.sch @@ -0,0 +1,130 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:3_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U2 +U 1 1 5C9A24D8 +P 4250 2700 +F 0 "U2" H 4250 2700 60 0000 C CNN +F 1 "d_and" H 4300 2800 60 0000 C CNN +F 2 "" H 4250 2700 60 0000 C CNN +F 3 "" H 4250 2700 60 0000 C CNN + 1 4250 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 5C9A2538 +P 5150 2900 +F 0 "U3" H 5150 2900 60 0000 C CNN +F 1 "d_and" H 5200 3000 60 0000 C CNN +F 2 "" H 5150 2900 60 0000 C CNN +F 3 "" H 5150 2900 60 0000 C CNN + 1 5150 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 5C9A259A +P 3050 2600 +F 0 "U1" H 3100 2700 30 0000 C CNN +F 1 "PORT" H 3050 2600 30 0000 C CNN +F 2 "" H 3050 2600 60 0000 C CNN +F 3 "" H 3050 2600 60 0000 C CNN + 1 3050 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A25D9 +P 3050 2800 +F 0 "U1" H 3100 2900 30 0000 C CNN +F 1 "PORT" H 3050 2800 30 0000 C CNN +F 2 "" H 3050 2800 60 0000 C CNN +F 3 "" H 3050 2800 60 0000 C CNN + 2 3050 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A260A +P 3050 3100 +F 0 "U1" H 3100 3200 30 0000 C CNN +F 1 "PORT" H 3050 3100 30 0000 C CNN +F 2 "" H 3050 3100 60 0000 C CNN +F 3 "" H 3050 3100 60 0000 C CNN + 3 3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2637 +P 6900 2850 +F 0 "U1" H 6950 2950 30 0000 C CNN +F 1 "PORT" H 6900 2850 30 0000 C CNN +F 2 "" H 6900 2850 60 0000 C CNN +F 3 "" H 6900 2850 60 0000 C CNN + 4 6900 2850 + -1 0 0 1 +$EndComp +Wire Wire Line + 4700 2650 4700 2800 +Wire Wire Line + 5600 2850 6650 2850 +Wire Wire Line + 3800 2600 3300 2600 +Wire Wire Line + 3800 2700 3300 2700 +Wire Wire Line + 3300 2700 3300 2800 +Wire Wire Line + 3300 3100 4700 3100 +Wire Wire Line + 4700 3100 4700 2900 +Text Notes 3500 2600 0 60 ~ 12 +in1 +Text Notes 3450 2800 0 60 ~ 12 +in2\n +Text Notes 3500 3100 0 60 ~ 12 +in3 +Text Notes 6100 2850 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC14560B/3_and.sub b/library/SubcircuitLibrary/MC14560B/3_and.sub new file mode 100644 index 000000000..3d9120bb6 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/3_and.sub @@ -0,0 +1,14 @@ +* Subcircuit 3_and +.subckt 3_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14560B/3_and_Previous_Values.xml b/library/SubcircuitLibrary/MC14560B/3_and_Previous_Values.xml new file mode 100644 index 000000000..abc5faaae --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/3_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14560B/4_and-cache.lib b/library/SubcircuitLibrary/MC14560B/4_and-cache.lib new file mode 100644 index 000000000..60f1a83d4 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/4_and-cache.lib @@ -0,0 +1,79 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and-RESCUE-4_and +# +DEF 3_and-RESCUE-4_and X 0 40 Y Y 1 F N +F0 "X" 900 300 60 H V C CNN +F1 "3_and-RESCUE-4_and" 950 500 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 950 400 158 716 -716 0 1 0 N 1000 550 1000 250 +P 2 0 1 0 650 550 1000 550 N +P 3 0 1 0 650 550 650 250 1000 250 N +X in1 1 450 500 200 R 50 50 1 1 I +X in2 2 450 400 200 R 50 50 1 1 I +X in3 3 450 300 200 R 50 50 1 1 I +X out 4 1300 400 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14560B/4_and-rescue.lib b/library/SubcircuitLibrary/MC14560B/4_and-rescue.lib new file mode 100644 index 000000000..e38330518 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/4_and-rescue.lib @@ -0,0 +1,22 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and-RESCUE-4_and +# +DEF 3_and-RESCUE-4_and X 0 40 Y Y 1 F N +F0 "X" 900 300 60 H V C CNN +F1 "3_and-RESCUE-4_and" 950 500 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 950 400 158 716 -716 0 1 0 N 1000 550 1000 250 +P 2 0 1 0 650 550 1000 550 N +P 3 0 1 0 650 550 650 250 1000 250 N +X in1 1 450 500 200 R 50 50 1 1 I +X in2 2 450 400 200 R 50 50 1 1 I +X in3 3 450 300 200 R 50 50 1 1 I +X out 4 1300 400 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14560B/4_and.cir b/library/SubcircuitLibrary/MC14560B/4_and.cir new file mode 100644 index 000000000..fdf2e1074 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/4_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\4_and\4_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/01/19 13:09:58 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U2-Pad1_ 3_and +U2 Net-_U2-Pad1_ Net-_U1-Pad4_ Net-_U1-Pad5_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ PORT + +.end diff --git a/library/SubcircuitLibrary/MC14560B/4_and.cir.out b/library/SubcircuitLibrary/MC14560B/4_and.cir.out new file mode 100644 index 000000000..f40e5bc62 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/4_and.cir.out @@ -0,0 +1,18 @@ +* c:\users\malli\esim\src\subcircuitlibrary\4_and\4_and.cir + +.include 3_and.sub +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u2-pad1_ 3_and +* u2 net-_u2-pad1_ net-_u1-pad4_ net-_u1-pad5_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ port +a1 [net-_u2-pad1_ net-_u1-pad4_ ] net-_u1-pad5_ u2 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC14560B/4_and.pro b/library/SubcircuitLibrary/MC14560B/4_and.pro new file mode 100644 index 000000000..b13a0a825 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/4_and.pro @@ -0,0 +1,57 @@ +update=Wed Mar 18 19:54:24 2020 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=4_and-rescue +LibName2=texas +LibName3=intel +LibName4=audio +LibName5=interface +LibName6=digital-audio +LibName7=philips +LibName8=display +LibName9=cypress +LibName10=siliconi +LibName11=opto +LibName12=atmel +LibName13=contrib +LibName14=valves +LibName15=eSim_Analog +LibName16=eSim_Devices +LibName17=eSim_Digital +LibName18=eSim_Hybrid +LibName19=eSim_Miscellaneous +LibName20=eSim_Plot +LibName21=eSim_Power +LibName22=eSim_Sources +LibName23=eSim_Subckt +LibName24=eSim_User diff --git a/library/SubcircuitLibrary/MC14560B/4_and.sch b/library/SubcircuitLibrary/MC14560B/4_and.sch new file mode 100644 index 000000000..f5e8febdc --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/4_and.sch @@ -0,0 +1,151 @@ +EESchema Schematic File Version 2 +LIBS:4_and-rescue +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:4_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 3_and-RESCUE-4_and X1 +U 1 1 5C9A2915 +P 3700 3500 +F 0 "X1" H 4600 3800 60 0000 C CNN +F 1 "3_and" H 4650 4000 60 0000 C CNN +F 2 "" H 3700 3500 60 0000 C CNN +F 3 "" H 3700 3500 60 0000 C CNN + 1 3700 3500 + 1 0 0 -1 +$EndComp +$Comp +L d_and U2 +U 1 1 5C9A2940 +P 5450 3400 +F 0 "U2" H 5450 3400 60 0000 C CNN +F 1 "d_and" H 5500 3500 60 0000 C CNN +F 2 "" H 5450 3400 60 0000 C CNN +F 3 "" H 5450 3400 60 0000 C CNN + 1 5450 3400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5000 3100 5000 3300 +Wire Wire Line + 4150 3000 4150 2700 +Wire Wire Line + 4150 2700 3200 2700 +Wire Wire Line + 4150 3100 4000 3100 +Wire Wire Line + 4000 3100 4000 3000 +Wire Wire Line + 4000 3000 3200 3000 +Wire Wire Line + 4150 3200 4150 3300 +Wire Wire Line + 4150 3300 3250 3300 +Wire Wire Line + 5000 3400 5000 3550 +Wire Wire Line + 5000 3550 3250 3550 +Wire Wire Line + 5900 3350 6500 3350 +$Comp +L PORT U1 +U 1 1 5C9A29B1 +P 2950 2700 +F 0 "U1" H 3000 2800 30 0000 C CNN +F 1 "PORT" H 2950 2700 30 0000 C CNN +F 2 "" H 2950 2700 60 0000 C CNN +F 3 "" H 2950 2700 60 0000 C CNN + 1 2950 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A29E9 +P 2950 3000 +F 0 "U1" H 3000 3100 30 0000 C CNN +F 1 "PORT" H 2950 3000 30 0000 C CNN +F 2 "" H 2950 3000 60 0000 C CNN +F 3 "" H 2950 3000 60 0000 C CNN + 2 2950 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A2A0D +P 3000 3300 +F 0 "U1" H 3050 3400 30 0000 C CNN +F 1 "PORT" H 3000 3300 30 0000 C CNN +F 2 "" H 3000 3300 60 0000 C CNN +F 3 "" H 3000 3300 60 0000 C CNN + 3 3000 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2A3C +P 3000 3550 +F 0 "U1" H 3050 3650 30 0000 C CNN +F 1 "PORT" H 3000 3550 30 0000 C CNN +F 2 "" H 3000 3550 60 0000 C CNN +F 3 "" H 3000 3550 60 0000 C CNN + 4 3000 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 5C9A2A68 +P 6750 3350 +F 0 "U1" H 6800 3450 30 0000 C CNN +F 1 "PORT" H 6750 3350 30 0000 C CNN +F 2 "" H 6750 3350 60 0000 C CNN +F 3 "" H 6750 3350 60 0000 C CNN + 5 6750 3350 + -1 0 0 1 +$EndComp +Text Notes 3450 2650 0 60 ~ 12 +in1 +Text Notes 3450 2950 0 60 ~ 12 +in2 +Text Notes 3500 3300 0 60 ~ 12 +in3 +Text Notes 3500 3550 0 60 ~ 12 +in4 +Text Notes 6150 3350 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC14560B/4_and.sub b/library/SubcircuitLibrary/MC14560B/4_and.sub new file mode 100644 index 000000000..8663f37e6 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/4_and.sub @@ -0,0 +1,12 @@ +* Subcircuit 4_and +.subckt 4_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ +* c:\users\malli\esim\src\subcircuitlibrary\4_and\4_and.cir +.include 3_and.sub +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u2-pad1_ 3_and +* u2 net-_u2-pad1_ net-_u1-pad4_ net-_u1-pad5_ d_and +a1 [net-_u2-pad1_ net-_u1-pad4_ ] net-_u1-pad5_ u2 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 4_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14560B/4_and_Previous_Values.xml b/library/SubcircuitLibrary/MC14560B/4_and_Previous_Values.xml new file mode 100644 index 000000000..f2ba0130e --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/4_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andC:\Users\malli\eSim\src\SubcircuitLibrary\3_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14560B/MC14560B-cache.lib b/library/SubcircuitLibrary/MC14560B/MC14560B-cache.lib new file mode 100644 index 000000000..680d7b47d --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/MC14560B-cache.lib @@ -0,0 +1,168 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and +# +DEF 3_and X 0 40 Y Y 1 F N +F0 "X" 100 -50 60 H V C CNN +F1 "3_and" 150 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 150 50 158 716 -716 0 1 0 N 200 200 200 -100 +P 2 0 1 0 -150 200 200 200 N +P 3 0 1 0 -150 200 -150 -100 200 -100 N +X in1 1 -350 150 200 R 50 50 1 1 I +X in2 2 -350 50 200 R 50 50 1 1 I +X in3 3 -350 -50 200 R 50 50 1 1 I +X out 4 500 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 4_and +# +DEF 4_and X 0 40 Y Y 1 F N +F0 "X" 50 -50 60 H V C CNN +F1 "4_and" 100 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 100 0 206 760 -760 0 1 0 N 150 200 150 -200 +P 2 0 1 0 -200 200 150 200 N +P 4 0 1 0 -200 200 -200 -200 50 -200 150 -200 N +X in1 1 -400 150 200 R 50 50 1 1 I +X in2 2 -400 50 200 R 50 50 1 1 I +X in3 3 -400 -50 200 R 50 50 1 1 I +X in4 4 -400 -150 200 R 50 50 1 1 I +X out 5 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_nand +# +DEF d_nand U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nand" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_nor +# +DEF d_nor U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nor" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_xor +# +DEF d_xor U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_xor" 50 100 47 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -350 50 180 -337 337 0 1 0 N -200 -50 -200 150 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 150 -50 -200 -50 N +P 2 0 1 0 150 150 -200 150 N +X IN1 1 -450 100 215 R 50 43 1 1 I +X IN2 2 -450 0 215 R 50 43 1 1 I +X OUT 3 450 50 200 L 50 39 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC14560B/MC14560B.cir b/library/SubcircuitLibrary/MC14560B/MC14560B.cir new file mode 100644 index 000000000..8eac4591d --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/MC14560B.cir @@ -0,0 +1,81 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\MC14560B\MC14560B.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/04/25 23:36:10 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U3 Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U10-Pad1_ d_nand +U9 Net-_U1-Pad5_ Net-_U10-Pad1_ Net-_U17-Pad1_ d_and +U10 Net-_U10-Pad1_ Net-_U1-Pad6_ Net-_U10-Pad3_ d_and +U17 Net-_U17-Pad1_ Net-_U10-Pad3_ Net-_U17-Pad3_ d_nor +U2 Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U2-Pad3_ d_nand +U7 Net-_U1-Pad3_ Net-_U2-Pad3_ Net-_U16-Pad1_ d_and +U8 Net-_U2-Pad3_ Net-_U1-Pad4_ Net-_U16-Pad2_ d_and +U16 Net-_U16-Pad1_ Net-_U16-Pad2_ Net-_U16-Pad3_ d_nor +U70 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U14-Pad1_ d_nand +U5 Net-_U1-Pad1_ Net-_U14-Pad1_ Net-_U15-Pad1_ d_and +U6 Net-_U14-Pad1_ Net-_U1-Pad2_ Net-_U15-Pad2_ d_and +U15 Net-_U15-Pad1_ Net-_U15-Pad2_ Net-_U15-Pad3_ d_nor +U4 Net-_U1-Pad15_ Net-_U1-Pad14_ Net-_U11-Pad2_ d_nand +U11 Net-_U1-Pad15_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_and +U12 Net-_U11-Pad2_ Net-_U1-Pad14_ Net-_U12-Pad3_ d_and +U18 Net-_U11-Pad3_ Net-_U12-Pad3_ Net-_U18-Pad3_ d_nor +U13 Net-_U11-Pad2_ Net-_U13-Pad2_ d_inverter +U14 Net-_U14-Pad1_ Net-_U14-Pad2_ d_inverter +U26 Net-_U1-Pad7_ Net-_U18-Pad3_ Net-_U26-Pad3_ d_nand +U29 Net-_U1-Pad7_ Net-_U26-Pad3_ Net-_U29-Pad3_ d_and +U30 Net-_U26-Pad3_ Net-_U18-Pad3_ Net-_U30-Pad3_ d_and +U36 Net-_U29-Pad3_ Net-_U30-Pad3_ Net-_U1-Pad13_ d_nor +U20 Net-_U18-Pad3_ Net-_U20-Pad2_ d_inverter +U19 Net-_U15-Pad3_ Net-_U19-Pad2_ d_inverter +U21 Net-_U16-Pad3_ Net-_U21-Pad2_ d_inverter +U27 Net-_U1-Pad7_ Net-_U20-Pad2_ Net-_U27-Pad3_ d_and +U25 Net-_U13-Pad2_ Net-_U25-Pad2_ d_inverter +U31 Net-_U27-Pad3_ Net-_U25-Pad2_ Net-_U31-Pad3_ d_nor +U34 Net-_U31-Pad3_ Net-_U19-Pad2_ Net-_U34-Pad3_ d_xor +U40 Net-_U34-Pad3_ Net-_U40-Pad2_ d_inverter +X3 Net-_U1-Pad7_ Net-_U20-Pad2_ Net-_U19-Pad2_ Net-_U32-Pad1_ 3_and +U23 Net-_U13-Pad2_ Net-_U19-Pad2_ Net-_U23-Pad3_ d_and +U24 Net-_U14-Pad2_ Net-_U24-Pad2_ d_inverter +U32 Net-_U32-Pad1_ Net-_U23-Pad3_ Net-_U32-Pad3_ d_nor +U37 Net-_U32-Pad3_ Net-_U24-Pad2_ Net-_U37-Pad3_ d_nor +U41 Net-_U37-Pad3_ Net-_U21-Pad2_ Net-_U41-Pad3_ d_xor +X1 Net-_U13-Pad2_ Net-_U19-Pad2_ Net-_U21-Pad2_ Net-_U28-Pad2_ 3_and +U22 Net-_U14-Pad2_ Net-_U21-Pad2_ Net-_U22-Pad3_ d_and +U28 Net-_U28-Pad1_ Net-_U28-Pad2_ Net-_U28-Pad3_ d_nor +U33 Net-_U28-Pad3_ Net-_U22-Pad3_ Net-_U33-Pad3_ d_nor +X2 Net-_U1-Pad7_ Net-_U20-Pad2_ Net-_U19-Pad2_ Net-_U21-Pad2_ Net-_U28-Pad1_ 4_and +X5 Net-_U2-Pad3_ Net-_U33-Pad3_ Net-_U38-Pad3_ Net-_U44-Pad1_ 3_and +U35 Net-_U33-Pad3_ Net-_U2-Pad3_ Net-_U35-Pad3_ d_nand +U38 Net-_U35-Pad3_ Net-_U38-Pad2_ Net-_U38-Pad3_ d_nand +X4 Net-_U33-Pad3_ Net-_U2-Pad3_ Net-_U10-Pad1_ Net-_U43-Pad1_ 3_and +U39 Net-_U38-Pad2_ Net-_U10-Pad1_ Net-_U39-Pad3_ d_and +U43 Net-_U43-Pad1_ Net-_U39-Pad3_ Net-_U43-Pad3_ d_nor +U42 Net-_U38-Pad3_ Net-_U17-Pad3_ Net-_U42-Pad3_ d_and +U44 Net-_U44-Pad1_ Net-_U42-Pad3_ Net-_U44-Pad3_ d_nor +U45 Net-_U44-Pad3_ Net-_U45-Pad2_ d_inverter +U46 Net-_U43-Pad3_ Net-_U46-Pad2_ d_inverter +X8 Net-_U34-Pad3_ Net-_U44-Pad3_ Net-_U46-Pad2_ Net-_U57-Pad1_ 3_and +U49 Net-_U40-Pad2_ Net-_U45-Pad2_ Net-_U49-Pad3_ d_and +U50 Net-_U41-Pad3_ Net-_U45-Pad2_ Net-_U50-Pad3_ d_and +U51 Net-_U40-Pad2_ Net-_U43-Pad3_ Net-_U51-Pad3_ d_and +U57 Net-_U57-Pad1_ Net-_U49-Pad3_ Net-_U57-Pad3_ d_nor +U58 Net-_U50-Pad3_ Net-_U51-Pad3_ Net-_U58-Pad3_ d_nor +U61 Net-_U57-Pad3_ Net-_U58-Pad3_ Net-_U1-Pad12_ d_nor +U47 Net-_U46-Pad2_ Net-_U44-Pad3_ Net-_U47-Pad3_ d_and +X7 Net-_U34-Pad3_ Net-_U41-Pad3_ Net-_U46-Pad2_ Net-_U55-Pad1_ 3_and +U55 Net-_U55-Pad1_ Net-_U47-Pad3_ Net-_U1-Pad9_ d_nor +U48 Net-_U40-Pad2_ Net-_U43-Pad3_ Net-_U48-Pad3_ d_and +X6 Net-_U34-Pad3_ Net-_U41-Pad3_ Net-_U45-Pad2_ Net-_U56-Pad1_ 3_and +U56 Net-_U56-Pad1_ Net-_U48-Pad3_ Net-_U56-Pad3_ d_nor +U60 Net-_U56-Pad3_ Net-_U1-Pad10_ d_inverter +U53 Net-_U34-Pad3_ Net-_U45-Pad2_ Net-_U53-Pad3_ d_and +U54 Net-_U40-Pad2_ Net-_U43-Pad3_ Net-_U54-Pad3_ d_and +U52 Net-_U41-Pad3_ Net-_U46-Pad2_ Net-_U52-Pad3_ d_and +U59 Net-_U52-Pad3_ Net-_U53-Pad3_ Net-_U59-Pad3_ d_nor +U62 Net-_U59-Pad3_ Net-_U54-Pad3_ Net-_U1-Pad11_ d_nor +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ PORT + +.end diff --git a/library/SubcircuitLibrary/MC14560B/MC14560B.cir.out b/library/SubcircuitLibrary/MC14560B/MC14560B.cir.out new file mode 100644 index 000000000..fc3b725de --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/MC14560B.cir.out @@ -0,0 +1,270 @@ +* c:\fossee\esim\library\subcircuitlibrary\mc14560b\mc14560b.cir + +.include 3_and.sub +.include 4_and.sub +* u3 net-_u1-pad5_ net-_u1-pad6_ net-_u10-pad1_ d_nand +* u9 net-_u1-pad5_ net-_u10-pad1_ net-_u17-pad1_ d_and +* u10 net-_u10-pad1_ net-_u1-pad6_ net-_u10-pad3_ d_and +* u17 net-_u17-pad1_ net-_u10-pad3_ net-_u17-pad3_ d_nor +* u2 net-_u1-pad3_ net-_u1-pad4_ net-_u2-pad3_ d_nand +* u7 net-_u1-pad3_ net-_u2-pad3_ net-_u16-pad1_ d_and +* u8 net-_u2-pad3_ net-_u1-pad4_ net-_u16-pad2_ d_and +* u16 net-_u16-pad1_ net-_u16-pad2_ net-_u16-pad3_ d_nor +* u70 net-_u1-pad1_ net-_u1-pad2_ net-_u14-pad1_ d_nand +* u5 net-_u1-pad1_ net-_u14-pad1_ net-_u15-pad1_ d_and +* u6 net-_u14-pad1_ net-_u1-pad2_ net-_u15-pad2_ d_and +* u15 net-_u15-pad1_ net-_u15-pad2_ net-_u15-pad3_ d_nor +* u4 net-_u1-pad15_ net-_u1-pad14_ net-_u11-pad2_ d_nand +* u11 net-_u1-pad15_ net-_u11-pad2_ net-_u11-pad3_ d_and +* u12 net-_u11-pad2_ net-_u1-pad14_ net-_u12-pad3_ d_and +* u18 net-_u11-pad3_ net-_u12-pad3_ net-_u18-pad3_ d_nor +* u13 net-_u11-pad2_ net-_u13-pad2_ d_inverter +* u14 net-_u14-pad1_ net-_u14-pad2_ d_inverter +* u26 net-_u1-pad7_ net-_u18-pad3_ net-_u26-pad3_ d_nand +* u29 net-_u1-pad7_ net-_u26-pad3_ net-_u29-pad3_ d_and +* u30 net-_u26-pad3_ net-_u18-pad3_ net-_u30-pad3_ d_and +* u36 net-_u29-pad3_ net-_u30-pad3_ net-_u1-pad13_ d_nor +* u20 net-_u18-pad3_ net-_u20-pad2_ d_inverter +* u19 net-_u15-pad3_ net-_u19-pad2_ d_inverter +* u21 net-_u16-pad3_ net-_u21-pad2_ d_inverter +* u27 net-_u1-pad7_ net-_u20-pad2_ net-_u27-pad3_ d_and +* u25 net-_u13-pad2_ net-_u25-pad2_ d_inverter +* u31 net-_u27-pad3_ net-_u25-pad2_ net-_u31-pad3_ d_nor +* u34 net-_u31-pad3_ net-_u19-pad2_ net-_u34-pad3_ d_xor +* u40 net-_u34-pad3_ net-_u40-pad2_ d_inverter +x3 net-_u1-pad7_ net-_u20-pad2_ net-_u19-pad2_ net-_u32-pad1_ 3_and +* u23 net-_u13-pad2_ net-_u19-pad2_ net-_u23-pad3_ d_and +* u24 net-_u14-pad2_ net-_u24-pad2_ d_inverter +* u32 net-_u32-pad1_ net-_u23-pad3_ net-_u32-pad3_ d_nor +* u37 net-_u32-pad3_ net-_u24-pad2_ net-_u37-pad3_ d_nor +* u41 net-_u37-pad3_ net-_u21-pad2_ net-_u41-pad3_ d_xor +x1 net-_u13-pad2_ net-_u19-pad2_ net-_u21-pad2_ net-_u28-pad2_ 3_and +* u22 net-_u14-pad2_ net-_u21-pad2_ net-_u22-pad3_ d_and +* u28 net-_u28-pad1_ net-_u28-pad2_ net-_u28-pad3_ d_nor +* u33 net-_u28-pad3_ net-_u22-pad3_ net-_u33-pad3_ d_nor +x2 net-_u1-pad7_ net-_u20-pad2_ net-_u19-pad2_ net-_u21-pad2_ net-_u28-pad1_ 4_and +x5 net-_u2-pad3_ net-_u33-pad3_ net-_u38-pad3_ net-_u44-pad1_ 3_and +* u35 net-_u33-pad3_ net-_u2-pad3_ net-_u35-pad3_ d_nand +* u38 net-_u35-pad3_ net-_u38-pad2_ net-_u38-pad3_ d_nand +x4 net-_u33-pad3_ net-_u2-pad3_ net-_u10-pad1_ net-_u43-pad1_ 3_and +* u39 net-_u38-pad2_ net-_u10-pad1_ net-_u39-pad3_ d_and +* u43 net-_u43-pad1_ net-_u39-pad3_ net-_u43-pad3_ d_nor +* u42 net-_u38-pad3_ net-_u17-pad3_ net-_u42-pad3_ d_and +* u44 net-_u44-pad1_ net-_u42-pad3_ net-_u44-pad3_ d_nor +* u45 net-_u44-pad3_ net-_u45-pad2_ d_inverter +* u46 net-_u43-pad3_ net-_u46-pad2_ d_inverter +x8 net-_u34-pad3_ net-_u44-pad3_ net-_u46-pad2_ net-_u57-pad1_ 3_and +* u49 net-_u40-pad2_ net-_u45-pad2_ net-_u49-pad3_ d_and +* u50 net-_u41-pad3_ net-_u45-pad2_ net-_u50-pad3_ d_and +* u51 net-_u40-pad2_ net-_u43-pad3_ net-_u51-pad3_ d_and +* u57 net-_u57-pad1_ net-_u49-pad3_ net-_u57-pad3_ d_nor +* u58 net-_u50-pad3_ net-_u51-pad3_ net-_u58-pad3_ d_nor +* u61 net-_u57-pad3_ net-_u58-pad3_ net-_u1-pad12_ d_nor +* u47 net-_u46-pad2_ net-_u44-pad3_ net-_u47-pad3_ d_and +x7 net-_u34-pad3_ net-_u41-pad3_ net-_u46-pad2_ net-_u55-pad1_ 3_and +* u55 net-_u55-pad1_ net-_u47-pad3_ net-_u1-pad9_ d_nor +* u48 net-_u40-pad2_ net-_u43-pad3_ net-_u48-pad3_ d_and +x6 net-_u34-pad3_ net-_u41-pad3_ net-_u45-pad2_ net-_u56-pad1_ 3_and +* u56 net-_u56-pad1_ net-_u48-pad3_ net-_u56-pad3_ d_nor +* u60 net-_u56-pad3_ net-_u1-pad10_ d_inverter +* u53 net-_u34-pad3_ net-_u45-pad2_ net-_u53-pad3_ d_and +* u54 net-_u40-pad2_ net-_u43-pad3_ net-_u54-pad3_ d_and +* u52 net-_u41-pad3_ net-_u46-pad2_ net-_u52-pad3_ d_and +* u59 net-_u52-pad3_ net-_u53-pad3_ net-_u59-pad3_ d_nor +* u62 net-_u59-pad3_ net-_u54-pad3_ net-_u1-pad11_ d_nor +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ port +a1 [net-_u1-pad5_ net-_u1-pad6_ ] net-_u10-pad1_ u3 +a2 [net-_u1-pad5_ net-_u10-pad1_ ] net-_u17-pad1_ u9 +a3 [net-_u10-pad1_ net-_u1-pad6_ ] net-_u10-pad3_ u10 +a4 [net-_u17-pad1_ net-_u10-pad3_ ] net-_u17-pad3_ u17 +a5 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u2-pad3_ u2 +a6 [net-_u1-pad3_ net-_u2-pad3_ ] net-_u16-pad1_ u7 +a7 [net-_u2-pad3_ net-_u1-pad4_ ] net-_u16-pad2_ u8 +a8 [net-_u16-pad1_ net-_u16-pad2_ ] net-_u16-pad3_ u16 +a9 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u14-pad1_ u70 +a10 [net-_u1-pad1_ net-_u14-pad1_ ] net-_u15-pad1_ u5 +a11 [net-_u14-pad1_ net-_u1-pad2_ ] net-_u15-pad2_ u6 +a12 [net-_u15-pad1_ net-_u15-pad2_ ] net-_u15-pad3_ u15 +a13 [net-_u1-pad15_ net-_u1-pad14_ ] net-_u11-pad2_ u4 +a14 [net-_u1-pad15_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a15 [net-_u11-pad2_ net-_u1-pad14_ ] net-_u12-pad3_ u12 +a16 [net-_u11-pad3_ net-_u12-pad3_ ] net-_u18-pad3_ u18 +a17 net-_u11-pad2_ net-_u13-pad2_ u13 +a18 net-_u14-pad1_ net-_u14-pad2_ u14 +a19 [net-_u1-pad7_ net-_u18-pad3_ ] net-_u26-pad3_ u26 +a20 [net-_u1-pad7_ net-_u26-pad3_ ] net-_u29-pad3_ u29 +a21 [net-_u26-pad3_ net-_u18-pad3_ ] net-_u30-pad3_ u30 +a22 [net-_u29-pad3_ net-_u30-pad3_ ] net-_u1-pad13_ u36 +a23 net-_u18-pad3_ net-_u20-pad2_ u20 +a24 net-_u15-pad3_ net-_u19-pad2_ u19 +a25 net-_u16-pad3_ net-_u21-pad2_ u21 +a26 [net-_u1-pad7_ net-_u20-pad2_ ] net-_u27-pad3_ u27 +a27 net-_u13-pad2_ net-_u25-pad2_ u25 +a28 [net-_u27-pad3_ net-_u25-pad2_ ] net-_u31-pad3_ u31 +a29 [net-_u31-pad3_ net-_u19-pad2_ ] net-_u34-pad3_ u34 +a30 net-_u34-pad3_ net-_u40-pad2_ u40 +a31 [net-_u13-pad2_ net-_u19-pad2_ ] net-_u23-pad3_ u23 +a32 net-_u14-pad2_ net-_u24-pad2_ u24 +a33 [net-_u32-pad1_ net-_u23-pad3_ ] net-_u32-pad3_ u32 +a34 [net-_u32-pad3_ net-_u24-pad2_ ] net-_u37-pad3_ u37 +a35 [net-_u37-pad3_ net-_u21-pad2_ ] net-_u41-pad3_ u41 +a36 [net-_u14-pad2_ net-_u21-pad2_ ] net-_u22-pad3_ u22 +a37 [net-_u28-pad1_ net-_u28-pad2_ ] net-_u28-pad3_ u28 +a38 [net-_u28-pad3_ net-_u22-pad3_ ] net-_u33-pad3_ u33 +a39 [net-_u33-pad3_ net-_u2-pad3_ ] net-_u35-pad3_ u35 +a40 [net-_u35-pad3_ net-_u38-pad2_ ] net-_u38-pad3_ u38 +a41 [net-_u38-pad2_ net-_u10-pad1_ ] net-_u39-pad3_ u39 +a42 [net-_u43-pad1_ net-_u39-pad3_ ] net-_u43-pad3_ u43 +a43 [net-_u38-pad3_ net-_u17-pad3_ ] net-_u42-pad3_ u42 +a44 [net-_u44-pad1_ net-_u42-pad3_ ] net-_u44-pad3_ u44 +a45 net-_u44-pad3_ net-_u45-pad2_ u45 +a46 net-_u43-pad3_ net-_u46-pad2_ u46 +a47 [net-_u40-pad2_ net-_u45-pad2_ ] net-_u49-pad3_ u49 +a48 [net-_u41-pad3_ net-_u45-pad2_ ] net-_u50-pad3_ u50 +a49 [net-_u40-pad2_ net-_u43-pad3_ ] net-_u51-pad3_ u51 +a50 [net-_u57-pad1_ net-_u49-pad3_ ] net-_u57-pad3_ u57 +a51 [net-_u50-pad3_ net-_u51-pad3_ ] net-_u58-pad3_ u58 +a52 [net-_u57-pad3_ net-_u58-pad3_ ] net-_u1-pad12_ u61 +a53 [net-_u46-pad2_ net-_u44-pad3_ ] net-_u47-pad3_ u47 +a54 [net-_u55-pad1_ net-_u47-pad3_ ] net-_u1-pad9_ u55 +a55 [net-_u40-pad2_ net-_u43-pad3_ ] net-_u48-pad3_ u48 +a56 [net-_u56-pad1_ net-_u48-pad3_ ] net-_u56-pad3_ u56 +a57 net-_u56-pad3_ net-_u1-pad10_ u60 +a58 [net-_u34-pad3_ net-_u45-pad2_ ] net-_u53-pad3_ u53 +a59 [net-_u40-pad2_ net-_u43-pad3_ ] net-_u54-pad3_ u54 +a60 [net-_u41-pad3_ net-_u46-pad2_ ] net-_u52-pad3_ u52 +a61 [net-_u52-pad3_ net-_u53-pad3_ ] net-_u59-pad3_ u59 +a62 [net-_u59-pad3_ net-_u54-pad3_ ] net-_u1-pad11_ u62 +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u3 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u17 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u2 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u16 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u70 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u15 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u4 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u18 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u26 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u29 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u30 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u36 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u31 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u34 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u40 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u32 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u37 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u41 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u28 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u33 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u35 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u38 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u39 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u43 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u42 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u44 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u45 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u46 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u50 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u51 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u57 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u58 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u61 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u47 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u55 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u48 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u56 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u60 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u53 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u54 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u52 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u59 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u62 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 250e-03 10e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC14560B/MC14560B.pro b/library/SubcircuitLibrary/MC14560B/MC14560B.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/MC14560B.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC14560B/MC14560B.sch b/library/SubcircuitLibrary/MC14560B/MC14560B.sch new file mode 100644 index 000000000..a94a23bab --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/MC14560B.sch @@ -0,0 +1,1571 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:nbcd_adder-cache +EELAYER 25 0 +EELAYER END +$Descr A1 33110 23386 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_nand U3 +U 1 1 6868181D +P 12300 11000 +F 0 "U3" H 12300 11000 60 0000 C CNN +F 1 "d_nand" H 12350 11100 60 0000 C CNN +F 2 "" H 12300 11000 60 0000 C CNN +F 3 "" H 12300 11000 60 0000 C CNN + 1 12300 11000 + 1 0 0 -1 +$EndComp +$Comp +L d_and U9 +U 1 1 6868181E +P 13400 10650 +F 0 "U9" H 13400 10650 60 0000 C CNN +F 1 "d_and" H 13450 10750 60 0000 C CNN +F 2 "" H 13400 10650 60 0000 C CNN +F 3 "" H 13400 10650 60 0000 C CNN + 1 13400 10650 + 1 0 0 -1 +$EndComp +$Comp +L d_and U10 +U 1 1 6868181F +P 13400 11250 +F 0 "U10" H 13400 11250 60 0000 C CNN +F 1 "d_and" H 13450 11350 60 0000 C CNN +F 2 "" H 13400 11250 60 0000 C CNN +F 3 "" H 13400 11250 60 0000 C CNN + 1 13400 11250 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U17 +U 1 1 68681820 +P 14600 10900 +F 0 "U17" H 14600 10900 60 0000 C CNN +F 1 "d_nor" H 14650 11000 60 0000 C CNN +F 2 "" H 14600 10900 60 0000 C CNN +F 3 "" H 14600 10900 60 0000 C CNN + 1 14600 10900 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U2 +U 1 1 68681821 +P 12300 9900 +F 0 "U2" H 12300 9900 60 0000 C CNN +F 1 "d_nand" H 12350 10000 60 0000 C CNN +F 2 "" H 12300 9900 60 0000 C CNN +F 3 "" H 12300 9900 60 0000 C CNN + 1 12300 9900 + 1 0 0 -1 +$EndComp +$Comp +L d_and U7 +U 1 1 68681822 +P 13400 9550 +F 0 "U7" H 13400 9550 60 0000 C CNN +F 1 "d_and" H 13450 9650 60 0000 C CNN +F 2 "" H 13400 9550 60 0000 C CNN +F 3 "" H 13400 9550 60 0000 C CNN + 1 13400 9550 + 1 0 0 -1 +$EndComp +$Comp +L d_and U8 +U 1 1 68681823 +P 13400 10150 +F 0 "U8" H 13400 10150 60 0000 C CNN +F 1 "d_and" H 13450 10250 60 0000 C CNN +F 2 "" H 13400 10150 60 0000 C CNN +F 3 "" H 13400 10150 60 0000 C CNN + 1 13400 10150 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U16 +U 1 1 68681824 +P 14600 9800 +F 0 "U16" H 14600 9800 60 0000 C CNN +F 1 "d_nor" H 14650 9900 60 0000 C CNN +F 2 "" H 14600 9800 60 0000 C CNN +F 3 "" H 14600 9800 60 0000 C CNN + 1 14600 9800 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U70 +U 1 1 68681825 +P 12300 8100 +F 0 "U70" H 12300 8100 60 0000 C CNN +F 1 "d_nand" H 12350 8200 60 0000 C CNN +F 2 "" H 12300 8100 60 0000 C CNN +F 3 "" H 12300 8100 60 0000 C CNN + 1 12300 8100 + 1 0 0 -1 +$EndComp +$Comp +L d_and U5 +U 1 1 68681826 +P 13400 7750 +F 0 "U5" H 13400 7750 60 0000 C CNN +F 1 "d_and" H 13450 7850 60 0000 C CNN +F 2 "" H 13400 7750 60 0000 C CNN +F 3 "" H 13400 7750 60 0000 C CNN + 1 13400 7750 + 1 0 0 -1 +$EndComp +$Comp +L d_and U6 +U 1 1 68681827 +P 13400 8350 +F 0 "U6" H 13400 8350 60 0000 C CNN +F 1 "d_and" H 13450 8450 60 0000 C CNN +F 2 "" H 13400 8350 60 0000 C CNN +F 3 "" H 13400 8350 60 0000 C CNN + 1 13400 8350 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U15 +U 1 1 68681828 +P 14600 8000 +F 0 "U15" H 14600 8000 60 0000 C CNN +F 1 "d_nor" H 14650 8100 60 0000 C CNN +F 2 "" H 14600 8000 60 0000 C CNN +F 3 "" H 14600 8000 60 0000 C CNN + 1 14600 8000 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U4 +U 1 1 68681829 +P 12400 6700 +F 0 "U4" H 12400 6700 60 0000 C CNN +F 1 "d_nand" H 12450 6800 60 0000 C CNN +F 2 "" H 12400 6700 60 0000 C CNN +F 3 "" H 12400 6700 60 0000 C CNN + 1 12400 6700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U11 +U 1 1 6868182A +P 13500 6350 +F 0 "U11" H 13500 6350 60 0000 C CNN +F 1 "d_and" H 13550 6450 60 0000 C CNN +F 2 "" H 13500 6350 60 0000 C CNN +F 3 "" H 13500 6350 60 0000 C CNN + 1 13500 6350 + 1 0 0 -1 +$EndComp +$Comp +L d_and U12 +U 1 1 6868182B +P 13500 6950 +F 0 "U12" H 13500 6950 60 0000 C CNN +F 1 "d_and" H 13550 7050 60 0000 C CNN +F 2 "" H 13500 6950 60 0000 C CNN +F 3 "" H 13500 6950 60 0000 C CNN + 1 13500 6950 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U18 +U 1 1 6868182C +P 14700 6600 +F 0 "U18" H 14700 6600 60 0000 C CNN +F 1 "d_nor" H 14750 6700 60 0000 C CNN +F 2 "" H 14700 6600 60 0000 C CNN +F 3 "" H 14700 6600 60 0000 C CNN + 1 14700 6600 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U13 +U 1 1 6868182D +P 13500 7250 +F 0 "U13" H 13500 7150 60 0000 C CNN +F 1 "d_inverter" H 13500 7400 60 0000 C CNN +F 2 "" H 13550 7200 60 0000 C CNN +F 3 "" H 13550 7200 60 0000 C CNN + 1 13500 7250 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U14 +U 1 1 6868182E +P 13500 8750 +F 0 "U14" H 13500 8650 60 0000 C CNN +F 1 "d_inverter" H 13500 8900 60 0000 C CNN +F 2 "" H 13550 8700 60 0000 C CNN +F 3 "" H 13550 8700 60 0000 C CNN + 1 13500 8750 + 1 0 0 -1 +$EndComp +Text Notes 11850 6200 0 60 ~ 0 +a1 +Text Notes 11900 7100 0 60 ~ 0 +b1 +Text Notes 11800 7550 0 60 ~ 0 +a2 +Text Notes 11800 8500 0 60 ~ 0 +b2 +Text Notes 11750 9350 0 60 ~ 0 +a3 +Text Notes 11800 10300 0 60 ~ 0 +b3 +Text Notes 11800 10500 0 60 ~ 0 +a4 +Text Notes 11750 11400 0 60 ~ 0 +b4 +$Comp +L d_nand U26 +U 1 1 6868182F +P 17150 6450 +F 0 "U26" H 17150 6450 60 0000 C CNN +F 1 "d_nand" H 17200 6550 60 0000 C CNN +F 2 "" H 17150 6450 60 0000 C CNN +F 3 "" H 17150 6450 60 0000 C CNN + 1 17150 6450 + 1 0 0 -1 +$EndComp +$Comp +L d_and U29 +U 1 1 68681830 +P 18250 6100 +F 0 "U29" H 18250 6100 60 0000 C CNN +F 1 "d_and" H 18300 6200 60 0000 C CNN +F 2 "" H 18250 6100 60 0000 C CNN +F 3 "" H 18250 6100 60 0000 C CNN + 1 18250 6100 + 1 0 0 -1 +$EndComp +$Comp +L d_and U30 +U 1 1 68681831 +P 18250 6700 +F 0 "U30" H 18250 6700 60 0000 C CNN +F 1 "d_and" H 18300 6800 60 0000 C CNN +F 2 "" H 18250 6700 60 0000 C CNN +F 3 "" H 18250 6700 60 0000 C CNN + 1 18250 6700 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U36 +U 1 1 68681832 +P 19450 6350 +F 0 "U36" H 19450 6350 60 0000 C CNN +F 1 "d_nor" H 19500 6450 60 0000 C CNN +F 2 "" H 19450 6350 60 0000 C CNN +F 3 "" H 19450 6350 60 0000 C CNN + 1 19450 6350 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U20 +U 1 1 68681833 +P 15550 6950 +F 0 "U20" H 15550 6850 60 0000 C CNN +F 1 "d_inverter" H 15550 7100 60 0000 C CNN +F 2 "" H 15600 6900 60 0000 C CNN +F 3 "" H 15600 6900 60 0000 C CNN + 1 15550 6950 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U19 +U 1 1 68681834 +P 15500 7950 +F 0 "U19" H 15500 7850 60 0000 C CNN +F 1 "d_inverter" H 15500 8100 60 0000 C CNN +F 2 "" H 15550 7900 60 0000 C CNN +F 3 "" H 15550 7900 60 0000 C CNN + 1 15500 7950 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U21 +U 1 1 68681835 +P 15600 9750 +F 0 "U21" H 15600 9650 60 0000 C CNN +F 1 "d_inverter" H 15600 9900 60 0000 C CNN +F 2 "" H 15650 9700 60 0000 C CNN +F 3 "" H 15650 9700 60 0000 C CNN + 1 15600 9750 + 1 0 0 -1 +$EndComp +$Comp +L d_and U27 +U 1 1 68681836 +P 17150 7100 +F 0 "U27" H 17150 7100 60 0000 C CNN +F 1 "d_and" H 17200 7200 60 0000 C CNN +F 2 "" H 17150 7100 60 0000 C CNN +F 3 "" H 17150 7100 60 0000 C CNN + 1 17150 7100 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U25 +U 1 1 68681837 +P 17050 7500 +F 0 "U25" H 17050 7400 60 0000 C CNN +F 1 "d_inverter" H 17050 7650 60 0000 C CNN +F 2 "" H 17100 7450 60 0000 C CNN +F 3 "" H 17100 7450 60 0000 C CNN + 1 17050 7500 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U31 +U 1 1 68681838 +P 18400 7350 +F 0 "U31" H 18400 7350 60 0000 C CNN +F 1 "d_nor" H 18450 7450 60 0000 C CNN +F 2 "" H 18400 7350 60 0000 C CNN +F 3 "" H 18400 7350 60 0000 C CNN + 1 18400 7350 + 1 0 0 -1 +$EndComp +$Comp +L d_xor U34 +U 1 1 68681839 +P 19200 7850 +F 0 "U34" H 19200 7850 60 0000 C CNN +F 1 "d_xor" H 19250 7950 47 0000 C CNN +F 2 "" H 19200 7850 60 0000 C CNN +F 3 "" H 19200 7850 60 0000 C CNN + 1 19200 7850 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U40 +U 1 1 6868183A +P 20150 7550 +F 0 "U40" H 20150 7450 60 0000 C CNN +F 1 "d_inverter" H 20150 7700 60 0000 C CNN +F 2 "" H 20200 7500 60 0000 C CNN +F 3 "" H 20200 7500 60 0000 C CNN + 1 20150 7550 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X3 +U 1 1 6868183B +P 16950 8550 +F 0 "X3" H 17050 8500 60 0000 C CNN +F 1 "3_and" H 17100 8700 60 0000 C CNN +F 2 "" H 16950 8550 60 0000 C CNN +F 3 "" H 16950 8550 60 0000 C CNN + 1 16950 8550 + 1 0 0 -1 +$EndComp +$Comp +L d_and U23 +U 1 1 6868183C +P 17000 8900 +F 0 "U23" H 17000 8900 60 0000 C CNN +F 1 "d_and" H 17050 9000 60 0000 C CNN +F 2 "" H 17000 8900 60 0000 C CNN +F 3 "" H 17000 8900 60 0000 C CNN + 1 17000 8900 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U24 +U 1 1 6868183D +P 17000 9200 +F 0 "U24" H 17000 9100 60 0000 C CNN +F 1 "d_inverter" H 17000 9350 60 0000 C CNN +F 2 "" H 17050 9150 60 0000 C CNN +F 3 "" H 17050 9150 60 0000 C CNN + 1 17000 9200 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U32 +U 1 1 6868183E +P 18400 8800 +F 0 "U32" H 18400 8800 60 0000 C CNN +F 1 "d_nor" H 18450 8900 60 0000 C CNN +F 2 "" H 18400 8800 60 0000 C CNN +F 3 "" H 18400 8800 60 0000 C CNN + 1 18400 8800 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U37 +U 1 1 6868183F +P 19450 9200 +F 0 "U37" H 19450 9200 60 0000 C CNN +F 1 "d_nor" H 19500 9300 60 0000 C CNN +F 2 "" H 19450 9200 60 0000 C CNN +F 3 "" H 19450 9200 60 0000 C CNN + 1 19450 9200 + 1 0 0 -1 +$EndComp +$Comp +L d_xor U41 +U 1 1 68681840 +P 20500 9500 +F 0 "U41" H 20500 9500 60 0000 C CNN +F 1 "d_xor" H 20550 9600 47 0000 C CNN +F 2 "" H 20500 9500 60 0000 C CNN +F 3 "" H 20500 9500 60 0000 C CNN + 1 20500 9500 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X1 +U 1 1 68681841 +P 16850 11050 +F 0 "X1" H 16950 11000 60 0000 C CNN +F 1 "3_and" H 17000 11200 60 0000 C CNN +F 2 "" H 16850 11050 60 0000 C CNN +F 3 "" H 16850 11050 60 0000 C CNN + 1 16850 11050 + 1 0 0 -1 +$EndComp +$Comp +L d_and U22 +U 1 1 68681842 +P 16900 11600 +F 0 "U22" H 16900 11600 60 0000 C CNN +F 1 "d_and" H 16950 11700 60 0000 C CNN +F 2 "" H 16900 11600 60 0000 C CNN +F 3 "" H 16900 11600 60 0000 C CNN + 1 16900 11600 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U28 +U 1 1 68681843 +P 18100 10700 +F 0 "U28" H 18100 10700 60 0000 C CNN +F 1 "d_nor" H 18150 10800 60 0000 C CNN +F 2 "" H 18100 10700 60 0000 C CNN +F 3 "" H 18100 10700 60 0000 C CNN + 1 18100 10700 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U33 +U 1 1 68681844 +P 19150 11250 +F 0 "U33" H 19150 11250 60 0000 C CNN +F 1 "d_nor" H 19200 11350 60 0000 C CNN +F 2 "" H 19150 11250 60 0000 C CNN +F 3 "" H 19150 11250 60 0000 C CNN + 1 19150 11250 + 1 0 0 -1 +$EndComp +$Comp +L 4_and X2 +U 1 1 68681845 +P 16900 10500 +F 0 "X2" H 16950 10450 60 0000 C CNN +F 1 "4_and" H 17000 10600 60 0000 C CNN +F 2 "" H 16900 10500 60 0000 C CNN +F 3 "" H 16900 10500 60 0000 C CNN + 1 16900 10500 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X5 +U 1 1 68681846 +P 20550 11850 +F 0 "X5" H 20650 11800 60 0000 C CNN +F 1 "3_and" H 20700 12000 60 0000 C CNN +F 2 "" H 20550 11850 60 0000 C CNN +F 3 "" H 20550 11850 60 0000 C CNN + 1 20550 11850 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U35 +U 1 1 68681847 +P 19350 12400 +F 0 "U35" H 19350 12400 60 0000 C CNN +F 1 "d_nand" H 19400 12500 60 0000 C CNN +F 2 "" H 19350 12400 60 0000 C CNN +F 3 "" H 19350 12400 60 0000 C CNN + 1 19350 12400 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U38 +U 1 1 68681848 +P 19800 12850 +F 0 "U38" H 19800 12850 60 0000 C CNN +F 1 "d_nand" H 19850 12950 60 0000 C CNN +F 2 "" H 19800 12850 60 0000 C CNN +F 3 "" H 19800 12850 60 0000 C CNN + 1 19800 12850 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X4 +U 1 1 68681849 +P 19950 13700 +F 0 "X4" H 20050 13650 60 0000 C CNN +F 1 "3_and" H 20100 13850 60 0000 C CNN +F 2 "" H 19950 13700 60 0000 C CNN +F 3 "" H 19950 13700 60 0000 C CNN + 1 19950 13700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U39 +U 1 1 6868184A +P 20050 14200 +F 0 "U39" H 20050 14200 60 0000 C CNN +F 1 "d_and" H 20100 14300 60 0000 C CNN +F 2 "" H 20050 14200 60 0000 C CNN +F 3 "" H 20050 14200 60 0000 C CNN + 1 20050 14200 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U43 +U 1 1 6868184B +P 21150 13900 +F 0 "U43" H 21150 13900 60 0000 C CNN +F 1 "d_nor" H 21200 14000 60 0000 C CNN +F 2 "" H 21150 13900 60 0000 C CNN +F 3 "" H 21150 13900 60 0000 C CNN + 1 21150 13900 + 1 0 0 -1 +$EndComp +$Comp +L d_and U42 +U 1 1 6868184C +P 20950 13300 +F 0 "U42" H 20950 13300 60 0000 C CNN +F 1 "d_and" H 21000 13400 60 0000 C CNN +F 2 "" H 20950 13300 60 0000 C CNN +F 3 "" H 20950 13300 60 0000 C CNN + 1 20950 13300 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U44 +U 1 1 6868184D +P 21900 12400 +F 0 "U44" H 21900 12400 60 0000 C CNN +F 1 "d_nor" H 21950 12500 60 0000 C CNN +F 2 "" H 21900 12400 60 0000 C CNN +F 3 "" H 21900 12400 60 0000 C CNN + 1 21900 12400 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U45 +U 1 1 6868184E +P 23300 12350 +F 0 "U45" H 23300 12250 60 0000 C CNN +F 1 "d_inverter" H 23300 12500 60 0000 C CNN +F 2 "" H 23350 12300 60 0000 C CNN +F 3 "" H 23350 12300 60 0000 C CNN + 1 23300 12350 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U46 +U 1 1 6868184F +P 23550 13850 +F 0 "U46" H 23550 13750 60 0000 C CNN +F 1 "d_inverter" H 23550 14000 60 0000 C CNN +F 2 "" H 23600 13800 60 0000 C CNN +F 3 "" H 23600 13800 60 0000 C CNN + 1 23550 13850 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X8 +U 1 1 68681850 +P 26200 6150 +F 0 "X8" H 26300 6100 60 0000 C CNN +F 1 "3_and" H 26350 6300 60 0000 C CNN +F 2 "" H 26200 6150 60 0000 C CNN +F 3 "" H 26200 6150 60 0000 C CNN + 1 26200 6150 + 1 0 0 -1 +$EndComp +$Comp +L d_and U49 +U 1 1 68681851 +P 26350 6500 +F 0 "U49" H 26350 6500 60 0000 C CNN +F 1 "d_and" H 26400 6600 60 0000 C CNN +F 2 "" H 26350 6500 60 0000 C CNN +F 3 "" H 26350 6500 60 0000 C CNN + 1 26350 6500 + 1 0 0 -1 +$EndComp +$Comp +L d_and U50 +U 1 1 68681852 +P 26350 6800 +F 0 "U50" H 26350 6800 60 0000 C CNN +F 1 "d_and" H 26400 6900 60 0000 C CNN +F 2 "" H 26350 6800 60 0000 C CNN +F 3 "" H 26350 6800 60 0000 C CNN + 1 26350 6800 + 1 0 0 -1 +$EndComp +$Comp +L d_and U51 +U 1 1 68681853 +P 26350 7100 +F 0 "U51" H 26350 7100 60 0000 C CNN +F 1 "d_and" H 26400 7200 60 0000 C CNN +F 2 "" H 26350 7100 60 0000 C CNN +F 3 "" H 26350 7100 60 0000 C CNN + 1 26350 7100 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U57 +U 1 1 68681854 +P 27450 6300 +F 0 "U57" H 27450 6300 60 0000 C CNN +F 1 "d_nor" H 27500 6400 60 0000 C CNN +F 2 "" H 27450 6300 60 0000 C CNN +F 3 "" H 27450 6300 60 0000 C CNN + 1 27450 6300 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U58 +U 1 1 68681855 +P 27450 7000 +F 0 "U58" H 27450 7000 60 0000 C CNN +F 1 "d_nor" H 27500 7100 60 0000 C CNN +F 2 "" H 27450 7000 60 0000 C CNN +F 3 "" H 27450 7000 60 0000 C CNN + 1 27450 7000 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U61 +U 1 1 68681856 +P 28550 6650 +F 0 "U61" H 28550 6650 60 0000 C CNN +F 1 "d_nor" H 28600 6750 60 0000 C CNN +F 2 "" H 28550 6650 60 0000 C CNN +F 3 "" H 28550 6650 60 0000 C CNN + 1 28550 6650 + 1 0 0 -1 +$EndComp +$Comp +L d_and U47 +U 1 1 68681857 +P 26100 12250 +F 0 "U47" H 26100 12250 60 0000 C CNN +F 1 "d_and" H 26150 12350 60 0000 C CNN +F 2 "" H 26100 12250 60 0000 C CNN +F 3 "" H 26100 12250 60 0000 C CNN + 1 26100 12250 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X7 +U 1 1 68681858 +P 26100 11750 +F 0 "X7" H 26200 11700 60 0000 C CNN +F 1 "3_and" H 26250 11900 60 0000 C CNN +F 2 "" H 26100 11750 60 0000 C CNN +F 3 "" H 26100 11750 60 0000 C CNN + 1 26100 11750 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U55 +U 1 1 68681859 +P 27200 12000 +F 0 "U55" H 27200 12000 60 0000 C CNN +F 1 "d_nor" H 27250 12100 60 0000 C CNN +F 2 "" H 27200 12000 60 0000 C CNN +F 3 "" H 27200 12000 60 0000 C CNN + 1 27200 12000 + 1 0 0 -1 +$EndComp +$Comp +L d_and U48 +U 1 1 6868185A +P 26200 10750 +F 0 "U48" H 26200 10750 60 0000 C CNN +F 1 "d_and" H 26250 10850 60 0000 C CNN +F 2 "" H 26200 10750 60 0000 C CNN +F 3 "" H 26200 10750 60 0000 C CNN + 1 26200 10750 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X6 +U 1 1 6868185B +P 26100 10350 +F 0 "X6" H 26200 10300 60 0000 C CNN +F 1 "3_and" H 26250 10500 60 0000 C CNN +F 2 "" H 26100 10350 60 0000 C CNN +F 3 "" H 26100 10350 60 0000 C CNN + 1 26100 10350 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U56 +U 1 1 6868185C +P 27300 10550 +F 0 "U56" H 27300 10550 60 0000 C CNN +F 1 "d_nor" H 27350 10650 60 0000 C CNN +F 2 "" H 27300 10550 60 0000 C CNN +F 3 "" H 27300 10550 60 0000 C CNN + 1 27300 10550 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U60 +U 1 1 6868185D +P 28450 10500 +F 0 "U60" H 28450 10400 60 0000 C CNN +F 1 "d_inverter" H 28450 10650 60 0000 C CNN +F 2 "" H 28500 10450 60 0000 C CNN +F 3 "" H 28500 10450 60 0000 C CNN + 1 28450 10500 + 1 0 0 -1 +$EndComp +$Comp +L d_and U53 +U 1 1 6868185E +P 26350 8750 +F 0 "U53" H 26350 8750 60 0000 C CNN +F 1 "d_and" H 26400 8850 60 0000 C CNN +F 2 "" H 26350 8750 60 0000 C CNN +F 3 "" H 26350 8750 60 0000 C CNN + 1 26350 8750 + 1 0 0 -1 +$EndComp +$Comp +L d_and U54 +U 1 1 6868185F +P 26350 9200 +F 0 "U54" H 26350 9200 60 0000 C CNN +F 1 "d_and" H 26400 9300 60 0000 C CNN +F 2 "" H 26350 9200 60 0000 C CNN +F 3 "" H 26350 9200 60 0000 C CNN + 1 26350 9200 + 1 0 0 -1 +$EndComp +$Comp +L d_and U52 +U 1 1 68681860 +P 26350 8350 +F 0 "U52" H 26350 8350 60 0000 C CNN +F 1 "d_and" H 26400 8450 60 0000 C CNN +F 2 "" H 26350 8350 60 0000 C CNN +F 3 "" H 26350 8350 60 0000 C CNN + 1 26350 8350 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U59 +U 1 1 68681861 +P 27550 8500 +F 0 "U59" H 27550 8500 60 0000 C CNN +F 1 "d_nor" H 27600 8600 60 0000 C CNN +F 2 "" H 27550 8500 60 0000 C CNN +F 3 "" H 27550 8500 60 0000 C CNN + 1 27550 8500 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U62 +U 1 1 68681862 +P 28600 8950 +F 0 "U62" H 28600 8950 60 0000 C CNN +F 1 "d_nor" H 28650 9050 60 0000 C CNN +F 2 "" H 28600 8950 60 0000 C CNN +F 3 "" H 28600 8950 60 0000 C CNN + 1 28600 8950 + 1 0 0 -1 +$EndComp +Text Notes 27400 12250 0 60 ~ 0 +cout\n +Text Notes 28550 10750 0 60 ~ 0 +s4\n +Text Notes 28600 9200 0 60 ~ 0 +s3 +Text Notes 28600 6850 0 60 ~ 0 +s2 +Text Notes 28450 5850 0 60 ~ 0 +s1 +Text Notes 11800 5850 0 60 ~ 0 +cin\n +$Comp +L PORT U1 +U 1 1 68688E74 +P 8700 7650 +F 0 "U1" H 8750 7750 30 0000 C CNN +F 1 "PORT" H 8700 7650 30 0000 C CNN +F 2 "" H 8700 7650 60 0000 C CNN +F 3 "" H 8700 7650 60 0000 C CNN + 1 8700 7650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 6868905E +P 8750 8350 +F 0 "U1" H 8800 8450 30 0000 C CNN +F 1 "PORT" H 8750 8350 30 0000 C CNN +F 2 "" H 8750 8350 60 0000 C CNN +F 3 "" H 8750 8350 60 0000 C CNN + 2 8750 8350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68689117 +P 11050 9450 +F 0 "U1" H 11100 9550 30 0000 C CNN +F 1 "PORT" H 11050 9450 30 0000 C CNN +F 2 "" H 11050 9450 60 0000 C CNN +F 3 "" H 11050 9450 60 0000 C CNN + 3 11050 9450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68689257 +P 8050 10150 +F 0 "U1" H 8100 10250 30 0000 C CNN +F 1 "PORT" H 8050 10150 30 0000 C CNN +F 2 "" H 8050 10150 60 0000 C CNN +F 3 "" H 8050 10150 60 0000 C CNN + 4 8050 10150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68689432 +P 8150 10550 +F 0 "U1" H 8200 10650 30 0000 C CNN +F 1 "PORT" H 8150 10550 30 0000 C CNN +F 2 "" H 8150 10550 60 0000 C CNN +F 3 "" H 8150 10550 60 0000 C CNN + 5 8150 10550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68689509 +P 8200 11250 +F 0 "U1" H 8250 11350 30 0000 C CNN +F 1 "PORT" H 8200 11250 30 0000 C CNN +F 2 "" H 8200 11250 60 0000 C CNN +F 3 "" H 8200 11250 60 0000 C CNN + 6 8200 11250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 68689A0E +P 9100 5950 +F 0 "U1" H 9150 6050 30 0000 C CNN +F 1 "PORT" H 9100 5950 30 0000 C CNN +F 2 "" H 9100 5950 60 0000 C CNN +F 3 "" H 9100 5950 60 0000 C CNN + 7 9100 5950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 68689ADD +P 29850 11950 +F 0 "U1" H 29900 12050 30 0000 C CNN +F 1 "PORT" H 29850 11950 30 0000 C CNN +F 2 "" H 29850 11950 60 0000 C CNN +F 3 "" H 29850 11950 60 0000 C CNN + 9 29850 11950 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 10 1 6868A40A +P 29400 10500 +F 0 "U1" H 29450 10600 30 0000 C CNN +F 1 "PORT" H 29400 10500 30 0000 C CNN +F 2 "" H 29400 10500 60 0000 C CNN +F 3 "" H 29400 10500 60 0000 C CNN + 10 29400 10500 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 11 1 6868A4DB +P 29700 8900 +F 0 "U1" H 29750 9000 30 0000 C CNN +F 1 "PORT" H 29700 8900 30 0000 C CNN +F 2 "" H 29700 8900 60 0000 C CNN +F 3 "" H 29700 8900 60 0000 C CNN + 11 29700 8900 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 12 1 6868A68C +P 30200 6600 +F 0 "U1" H 30250 6700 30 0000 C CNN +F 1 "PORT" H 30200 6600 30 0000 C CNN +F 2 "" H 30200 6600 60 0000 C CNN +F 3 "" H 30200 6600 60 0000 C CNN + 12 30200 6600 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 13 1 6868A890 +P 30350 5700 +F 0 "U1" H 30400 5800 30 0000 C CNN +F 1 "PORT" H 30350 5700 30 0000 C CNN +F 2 "" H 30350 5700 60 0000 C CNN +F 3 "" H 30350 5700 60 0000 C CNN + 13 30350 5700 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 14 1 6868C268 +P 8700 6950 +F 0 "U1" H 8750 7050 30 0000 C CNN +F 1 "PORT" H 8700 6950 30 0000 C CNN +F 2 "" H 8700 6950 60 0000 C CNN +F 3 "" H 8700 6950 60 0000 C CNN + 14 8700 6950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 6868C9D2 +P 8550 6250 +F 0 "U1" H 8600 6350 30 0000 C CNN +F 1 "PORT" H 8550 6250 30 0000 C CNN +F 2 "" H 8550 6250 60 0000 C CNN +F 3 "" H 8550 6250 60 0000 C CNN + 15 8550 6250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 12950 10650 12750 10650 +Wire Wire Line + 12750 10650 12750 14200 +Wire Wire Line + 12750 11150 12950 11150 +Connection ~ 12750 10950 +Wire Wire Line + 13850 10600 14150 10600 +Wire Wire Line + 14150 10600 14150 10800 +Wire Wire Line + 14150 10900 14150 11200 +Wire Wire Line + 14150 11200 13850 11200 +Wire Wire Line + 11750 10900 11850 10900 +Wire Wire Line + 11750 10900 11750 10550 +Wire Wire Line + 8400 10550 12950 10550 +Wire Wire Line + 11850 11000 11750 11000 +Wire Wire Line + 11750 11000 11750 11250 +Wire Wire Line + 8450 11250 12950 11250 +Wire Wire Line + 12950 9550 12750 9550 +Wire Wire Line + 12750 9550 12750 10250 +Wire Wire Line + 12750 10050 12950 10050 +Connection ~ 12750 9850 +Wire Wire Line + 13850 9500 14150 9500 +Wire Wire Line + 14150 9500 14150 9700 +Wire Wire Line + 14150 9800 14150 10100 +Wire Wire Line + 14150 10100 13850 10100 +Wire Wire Line + 11750 9800 11850 9800 +Wire Wire Line + 11750 9800 11750 9450 +Wire Wire Line + 11850 9900 11750 9900 +Wire Wire Line + 11750 9900 11750 10150 +Wire Wire Line + 8300 10150 12950 10150 +Wire Wire Line + 12950 7750 12750 7750 +Wire Wire Line + 12750 7750 12750 8750 +Wire Wire Line + 12750 8250 12950 8250 +Connection ~ 12750 8050 +Wire Wire Line + 13850 7700 14150 7700 +Wire Wire Line + 14150 7700 14150 7900 +Wire Wire Line + 14150 8000 14150 8300 +Wire Wire Line + 14150 8300 13850 8300 +Wire Wire Line + 11750 8000 11850 8000 +Wire Wire Line + 11750 8000 11750 7650 +Wire Wire Line + 8950 7650 12950 7650 +Wire Wire Line + 11850 8100 11750 8100 +Wire Wire Line + 11750 8100 11750 8350 +Wire Wire Line + 9000 8350 12950 8350 +Wire Wire Line + 13050 6350 12850 6350 +Wire Wire Line + 12850 6350 12850 7250 +Wire Wire Line + 12850 6850 13050 6850 +Connection ~ 12850 6650 +Wire Wire Line + 13950 6300 14250 6300 +Wire Wire Line + 14250 6300 14250 6500 +Wire Wire Line + 14250 6600 14250 6900 +Wire Wire Line + 14250 6900 13950 6900 +Wire Wire Line + 11850 6600 11950 6600 +Wire Wire Line + 11850 6600 11850 6250 +Wire Wire Line + 8800 6250 13050 6250 +Wire Wire Line + 11950 6700 11850 6700 +Wire Wire Line + 11850 6700 11850 6950 +Wire Wire Line + 8950 6950 13050 6950 +Wire Wire Line + 12850 7250 13200 7250 +Connection ~ 12850 6850 +Wire Wire Line + 12750 8750 13200 8750 +Connection ~ 12750 8250 +Wire Wire Line + 17800 6100 17600 6100 +Wire Wire Line + 17600 6100 17600 6600 +Wire Wire Line + 17600 6600 17800 6600 +Connection ~ 17600 6400 +Wire Wire Line + 18700 6050 19000 6050 +Wire Wire Line + 19000 6050 19000 6250 +Wire Wire Line + 19000 6350 19000 6650 +Wire Wire Line + 19000 6650 18700 6650 +Wire Wire Line + 16600 6350 16700 6350 +Wire Wire Line + 16600 6350 16600 6000 +Wire Wire Line + 16300 6000 17800 6000 +Wire Wire Line + 16700 6450 16600 6450 +Wire Wire Line + 16600 6450 16600 6700 +Wire Wire Line + 15300 6700 17800 6700 +Wire Wire Line + 15050 7950 15200 7950 +Wire Wire Line + 15050 9750 15300 9750 +Wire Wire Line + 15150 6550 15300 6550 +Wire Wire Line + 15300 6550 15300 6700 +Connection ~ 16600 6700 +Wire Wire Line + 16300 5950 16300 10350 +Wire Wire Line + 16300 7000 16700 7000 +Connection ~ 16600 6000 +Wire Wire Line + 15850 6950 15850 7100 +Wire Wire Line + 15850 7100 16700 7100 +Wire Wire Line + 13800 7250 16750 7250 +Wire Wire Line + 16750 7250 16750 7500 +Wire Wire Line + 17600 7050 17950 7050 +Wire Wire Line + 17950 7050 17950 7250 +Wire Wire Line + 17950 7350 17950 7500 +Wire Wire Line + 17950 7500 17350 7500 +Wire Wire Line + 18850 7300 18850 7600 +Wire Wire Line + 18850 7600 18750 7600 +Wire Wire Line + 18750 7600 18750 7750 +Wire Wire Line + 15800 7950 18750 7950 +Wire Wire Line + 18750 7950 18750 7850 +Wire Wire Line + 19650 7800 19650 7550 +Wire Wire Line + 19650 7550 19850 7550 +Wire Wire Line + 15250 6950 15250 6550 +Connection ~ 15250 6550 +Wire Wire Line + 16300 8400 16600 8400 +Connection ~ 16300 7000 +Wire Wire Line + 16200 7100 16200 10450 +Wire Wire Line + 16200 8500 16600 8500 +Connection ~ 16200 7100 +Wire Wire Line + 16100 7950 16100 11000 +Wire Wire Line + 16100 8600 16600 8600 +Connection ~ 16100 7950 +Wire Wire Line + 15950 7250 15950 10900 +Wire Wire Line + 15950 8800 16550 8800 +Connection ~ 15950 7250 +Wire Wire Line + 16100 8900 16550 8900 +Connection ~ 16100 8600 +Wire Wire Line + 13800 8750 15800 8750 +Wire Wire Line + 15800 8750 15800 9200 +Wire Wire Line + 15800 9200 16700 9200 +Wire Wire Line + 17450 8500 17950 8500 +Wire Wire Line + 17950 8500 17950 8700 +Wire Wire Line + 17450 8850 17950 8850 +Wire Wire Line + 17950 8850 17950 8800 +Wire Wire Line + 17300 9200 19000 9200 +Wire Wire Line + 18850 8750 18850 9100 +Wire Wire Line + 18850 9100 19000 9100 +Wire Wire Line + 19900 9150 20050 9150 +Wire Wire Line + 20050 9150 20050 9400 +Wire Wire Line + 15900 9750 20050 9750 +Wire Wire Line + 20050 9750 20050 9500 +Wire Wire Line + 16300 10350 16500 10350 +Connection ~ 16300 8400 +Wire Wire Line + 16200 10450 16500 10450 +Connection ~ 16200 8500 +Wire Wire Line + 16100 10550 16500 10550 +Connection ~ 16100 8900 +Wire Wire Line + 16000 9750 16000 11600 +Wire Wire Line + 16000 10650 16500 10650 +Connection ~ 16000 9750 +Wire Wire Line + 15950 10900 16500 10900 +Connection ~ 15950 8800 +Wire Wire Line + 16100 11000 16500 11000 +Connection ~ 16100 10550 +Wire Wire Line + 16000 11100 16500 11100 +Connection ~ 16000 10650 +Wire Wire Line + 16050 9200 16050 11500 +Wire Wire Line + 16050 11500 16450 11500 +Connection ~ 16050 9200 +Wire Wire Line + 16000 11600 16450 11600 +Connection ~ 16000 11100 +Wire Wire Line + 17400 10500 17650 10500 +Wire Wire Line + 17650 10500 17650 10600 +Wire Wire Line + 17350 11000 17650 11000 +Wire Wire Line + 17650 11000 17650 10700 +Wire Wire Line + 18550 10650 18550 11150 +Wire Wire Line + 18550 11150 18700 11150 +Wire Wire Line + 17350 11550 18550 11550 +Wire Wire Line + 18550 11550 18550 11250 +Wire Wire Line + 18550 11250 18700 11250 +Wire Wire Line + 12750 10250 20200 10250 +Wire Wire Line + 20200 10250 20200 11700 +Connection ~ 12750 10050 +Wire Wire Line + 19600 11200 19950 11200 +Wire Wire Line + 19950 11200 19950 11800 +Wire Wire Line + 18600 11800 20200 11800 +Wire Wire Line + 18900 11800 18900 12300 +Connection ~ 19950 11800 +Wire Wire Line + 20200 11500 18800 11500 +Wire Wire Line + 18800 11500 18800 13650 +Wire Wire Line + 18800 12400 18900 12400 +Connection ~ 20200 11500 +Wire Wire Line + 19600 14100 18950 14100 +Wire Wire Line + 18950 14100 18950 12850 +Wire Wire Line + 20200 11900 20200 12050 +Wire Wire Line + 20200 12050 20350 12050 +Wire Wire Line + 20350 12050 20350 13200 +Wire Wire Line + 20350 12800 20250 12800 +Wire Wire Line + 20350 13200 20500 13200 +Connection ~ 20350 12800 +Wire Wire Line + 15050 10850 15050 13300 +Wire Wire Line + 15050 13300 20500 13300 +Wire Wire Line + 21050 11800 21450 11800 +Wire Wire Line + 21450 11800 21450 12300 +Wire Wire Line + 21450 12400 21450 13250 +Wire Wire Line + 21450 13250 21400 13250 +Wire Wire Line + 18600 11800 18600 13550 +Wire Wire Line + 18600 13550 19600 13550 +Connection ~ 18900 11800 +Wire Wire Line + 18800 13650 19600 13650 +Connection ~ 18800 12400 +Wire Wire Line + 19600 13750 19350 13750 +Wire Wire Line + 19350 13750 19350 14200 +Wire Wire Line + 12750 14200 19600 14200 +Connection ~ 12750 11150 +Connection ~ 19350 14200 +Wire Wire Line + 20450 13650 20700 13650 +Wire Wire Line + 20700 13650 20700 13800 +Wire Wire Line + 20700 13900 20700 14150 +Wire Wire Line + 20700 14150 20500 14150 +Wire Wire Line + 22350 12350 23000 12350 +Wire Wire Line + 21600 13850 23250 13850 +Wire Wire Line + 25500 12250 25650 12250 +Wire Wire Line + 25500 6100 25500 12600 +Wire Wire Line + 25500 12600 22550 12600 +Wire Wire Line + 22550 12600 22550 12350 +Connection ~ 22550 12350 +Wire Wire Line + 25650 12150 25400 12150 +Wire Wire Line + 25400 6200 25400 13850 +Wire Wire Line + 25400 13850 23850 13850 +Wire Wire Line + 25750 11800 25400 11800 +Connection ~ 25400 12150 +Wire Wire Line + 20950 9450 25150 9450 +Wire Wire Line + 25150 6700 25150 11700 +Wire Wire Line + 25150 11700 25750 11700 +Wire Wire Line + 19650 7700 19900 7700 +Wire Wire Line + 19900 7700 19900 9050 +Wire Wire Line + 19900 9050 25050 9050 +Wire Wire Line + 25050 6000 25050 11600 +Wire Wire Line + 25050 11600 25750 11600 +Connection ~ 19650 7700 +Wire Wire Line + 26600 11700 26750 11700 +Wire Wire Line + 26750 11700 26750 11900 +Wire Wire Line + 26750 12000 26750 12200 +Wire Wire Line + 26750 12200 26550 12200 +Wire Wire Line + 25750 10750 22750 10750 +Wire Wire Line + 22750 7100 22750 13850 +Connection ~ 22750 13850 +Wire Wire Line + 20450 7550 24900 7550 +Wire Wire Line + 24900 6400 24900 10650 +Wire Wire Line + 24900 10650 25750 10650 +Wire Wire Line + 25750 10400 23950 10400 +Wire Wire Line + 23950 6500 23950 12350 +Wire Wire Line + 23950 12350 23600 12350 +Wire Wire Line + 25750 10300 25150 10300 +Connection ~ 25150 10300 +Wire Wire Line + 25750 10200 25050 10200 +Connection ~ 25050 10200 +Wire Wire Line + 26600 10300 26850 10300 +Wire Wire Line + 26850 10300 26850 10450 +Wire Wire Line + 26850 10550 26850 10700 +Wire Wire Line + 26850 10700 26650 10700 +Wire Wire Line + 27750 10500 28150 10500 +Wire Wire Line + 25900 9200 22750 9200 +Connection ~ 22750 10750 +Wire Wire Line + 25900 9100 25200 9100 +Wire Wire Line + 25200 9100 25200 8950 +Wire Wire Line + 25200 8950 24900 8950 +Connection ~ 24900 8950 +Wire Wire Line + 25900 8750 23950 8750 +Connection ~ 23950 10400 +Wire Wire Line + 25050 8650 25900 8650 +Connection ~ 25050 9050 +Wire Wire Line + 25900 8350 25400 8350 +Connection ~ 25400 11800 +Wire Wire Line + 25150 8250 25900 8250 +Connection ~ 25150 9450 +Wire Wire Line + 26800 8300 27100 8300 +Wire Wire Line + 27100 8300 27100 8400 +Wire Wire Line + 26800 8700 27100 8700 +Wire Wire Line + 27100 8700 27100 8500 +Wire Wire Line + 26800 9150 28150 9150 +Wire Wire Line + 28150 9150 28150 8950 +Wire Wire Line + 28000 8450 28150 8450 +Wire Wire Line + 28150 8450 28150 8850 +Wire Wire Line + 25900 7100 22750 7100 +Connection ~ 22750 9200 +Wire Wire Line + 25900 7000 24900 7000 +Connection ~ 24900 7550 +Wire Wire Line + 23950 6800 25900 6800 +Connection ~ 23950 8750 +Wire Wire Line + 25900 6500 23950 6500 +Connection ~ 23950 6800 +Wire Wire Line + 25900 6700 25150 6700 +Connection ~ 25150 8250 +Wire Wire Line + 24900 6400 25900 6400 +Connection ~ 24900 7000 +Wire Wire Line + 25400 6200 25850 6200 +Connection ~ 25400 8350 +Wire Wire Line + 25500 6100 25850 6100 +Connection ~ 25500 12250 +Wire Wire Line + 25050 6000 25850 6000 +Connection ~ 25050 8650 +Wire Wire Line + 26700 6100 27000 6100 +Wire Wire Line + 27000 6100 27000 6200 +Wire Wire Line + 27000 6300 27000 6450 +Wire Wire Line + 27000 6450 26800 6450 +Wire Wire Line + 26800 6750 27000 6750 +Wire Wire Line + 27000 6750 27000 6900 +Wire Wire Line + 27000 7000 27000 7050 +Wire Wire Line + 27000 7050 26800 7050 +Wire Wire Line + 27900 6250 28100 6250 +Wire Wire Line + 28100 6250 28100 6550 +Wire Wire Line + 28100 6650 28100 6950 +Wire Wire Line + 28100 6950 27900 6950 +Wire Wire Line + 9350 5950 16300 5950 +Connection ~ 16300 6000 +Wire Wire Line + 19900 6300 19900 5700 +Wire Wire Line + 19900 5700 30100 5700 +Connection ~ 11850 6250 +Connection ~ 11850 6950 +Connection ~ 11750 7650 +Connection ~ 11750 8350 +Connection ~ 11750 10150 +Connection ~ 11750 10550 +Connection ~ 11750 11250 +Wire Wire Line + 29000 6600 29950 6600 +Wire Wire Line + 27650 11950 29600 11950 +Wire Wire Line + 19800 12350 19950 12350 +Wire Wire Line + 19950 12350 19950 12600 +Wire Wire Line + 19950 12600 19250 12600 +Wire Wire Line + 19250 12600 19250 12750 +Wire Wire Line + 19250 12750 19350 12750 +Wire Wire Line + 29450 8900 29050 8900 +Wire Wire Line + 29150 10500 28750 10500 +Wire Wire Line + 11300 9450 12950 9450 +Connection ~ 11750 9450 +Wire Wire Line + 18950 12850 19350 12850 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC14560B/MC14560B.sub b/library/SubcircuitLibrary/MC14560B/MC14560B.sub new file mode 100644 index 000000000..6a54b13a8 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/MC14560B.sub @@ -0,0 +1,264 @@ +* Subcircuit MC14560B +.subckt MC14560B net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ +* c:\fossee\esim\library\subcircuitlibrary\mc14560b\mc14560b.cir +.include 3_and.sub +.include 4_and.sub +* u3 net-_u1-pad5_ net-_u1-pad6_ net-_u10-pad1_ d_nand +* u9 net-_u1-pad5_ net-_u10-pad1_ net-_u17-pad1_ d_and +* u10 net-_u10-pad1_ net-_u1-pad6_ net-_u10-pad3_ d_and +* u17 net-_u17-pad1_ net-_u10-pad3_ net-_u17-pad3_ d_nor +* u2 net-_u1-pad3_ net-_u1-pad4_ net-_u2-pad3_ d_nand +* u7 net-_u1-pad3_ net-_u2-pad3_ net-_u16-pad1_ d_and +* u8 net-_u2-pad3_ net-_u1-pad4_ net-_u16-pad2_ d_and +* u16 net-_u16-pad1_ net-_u16-pad2_ net-_u16-pad3_ d_nor +* u70 net-_u1-pad1_ net-_u1-pad2_ net-_u14-pad1_ d_nand +* u5 net-_u1-pad1_ net-_u14-pad1_ net-_u15-pad1_ d_and +* u6 net-_u14-pad1_ net-_u1-pad2_ net-_u15-pad2_ d_and +* u15 net-_u15-pad1_ net-_u15-pad2_ net-_u15-pad3_ d_nor +* u4 net-_u1-pad15_ net-_u1-pad14_ net-_u11-pad2_ d_nand +* u11 net-_u1-pad15_ net-_u11-pad2_ net-_u11-pad3_ d_and +* u12 net-_u11-pad2_ net-_u1-pad14_ net-_u12-pad3_ d_and +* u18 net-_u11-pad3_ net-_u12-pad3_ net-_u18-pad3_ d_nor +* u13 net-_u11-pad2_ net-_u13-pad2_ d_inverter +* u14 net-_u14-pad1_ net-_u14-pad2_ d_inverter +* u26 net-_u1-pad7_ net-_u18-pad3_ net-_u26-pad3_ d_nand +* u29 net-_u1-pad7_ net-_u26-pad3_ net-_u29-pad3_ d_and +* u30 net-_u26-pad3_ net-_u18-pad3_ net-_u30-pad3_ d_and +* u36 net-_u29-pad3_ net-_u30-pad3_ net-_u1-pad13_ d_nor +* u20 net-_u18-pad3_ net-_u20-pad2_ d_inverter +* u19 net-_u15-pad3_ net-_u19-pad2_ d_inverter +* u21 net-_u16-pad3_ net-_u21-pad2_ d_inverter +* u27 net-_u1-pad7_ net-_u20-pad2_ net-_u27-pad3_ d_and +* u25 net-_u13-pad2_ net-_u25-pad2_ d_inverter +* u31 net-_u27-pad3_ net-_u25-pad2_ net-_u31-pad3_ d_nor +* u34 net-_u31-pad3_ net-_u19-pad2_ net-_u34-pad3_ d_xor +* u40 net-_u34-pad3_ net-_u40-pad2_ d_inverter +x3 net-_u1-pad7_ net-_u20-pad2_ net-_u19-pad2_ net-_u32-pad1_ 3_and +* u23 net-_u13-pad2_ net-_u19-pad2_ net-_u23-pad3_ d_and +* u24 net-_u14-pad2_ net-_u24-pad2_ d_inverter +* u32 net-_u32-pad1_ net-_u23-pad3_ net-_u32-pad3_ d_nor +* u37 net-_u32-pad3_ net-_u24-pad2_ net-_u37-pad3_ d_nor +* u41 net-_u37-pad3_ net-_u21-pad2_ net-_u41-pad3_ d_xor +x1 net-_u13-pad2_ net-_u19-pad2_ net-_u21-pad2_ net-_u28-pad2_ 3_and +* u22 net-_u14-pad2_ net-_u21-pad2_ net-_u22-pad3_ d_and +* u28 net-_u28-pad1_ net-_u28-pad2_ net-_u28-pad3_ d_nor +* u33 net-_u28-pad3_ net-_u22-pad3_ net-_u33-pad3_ d_nor +x2 net-_u1-pad7_ net-_u20-pad2_ net-_u19-pad2_ net-_u21-pad2_ net-_u28-pad1_ 4_and +x5 net-_u2-pad3_ net-_u33-pad3_ net-_u38-pad3_ net-_u44-pad1_ 3_and +* u35 net-_u33-pad3_ net-_u2-pad3_ net-_u35-pad3_ d_nand +* u38 net-_u35-pad3_ net-_u38-pad2_ net-_u38-pad3_ d_nand +x4 net-_u33-pad3_ net-_u2-pad3_ net-_u10-pad1_ net-_u43-pad1_ 3_and +* u39 net-_u38-pad2_ net-_u10-pad1_ net-_u39-pad3_ d_and +* u43 net-_u43-pad1_ net-_u39-pad3_ net-_u43-pad3_ d_nor +* u42 net-_u38-pad3_ net-_u17-pad3_ net-_u42-pad3_ d_and +* u44 net-_u44-pad1_ net-_u42-pad3_ net-_u44-pad3_ d_nor +* u45 net-_u44-pad3_ net-_u45-pad2_ d_inverter +* u46 net-_u43-pad3_ net-_u46-pad2_ d_inverter +x8 net-_u34-pad3_ net-_u44-pad3_ net-_u46-pad2_ net-_u57-pad1_ 3_and +* u49 net-_u40-pad2_ net-_u45-pad2_ net-_u49-pad3_ d_and +* u50 net-_u41-pad3_ net-_u45-pad2_ net-_u50-pad3_ d_and +* u51 net-_u40-pad2_ net-_u43-pad3_ net-_u51-pad3_ d_and +* u57 net-_u57-pad1_ net-_u49-pad3_ net-_u57-pad3_ d_nor +* u58 net-_u50-pad3_ net-_u51-pad3_ net-_u58-pad3_ d_nor +* u61 net-_u57-pad3_ net-_u58-pad3_ net-_u1-pad12_ d_nor +* u47 net-_u46-pad2_ net-_u44-pad3_ net-_u47-pad3_ d_and +x7 net-_u34-pad3_ net-_u41-pad3_ net-_u46-pad2_ net-_u55-pad1_ 3_and +* u55 net-_u55-pad1_ net-_u47-pad3_ net-_u1-pad9_ d_nor +* u48 net-_u40-pad2_ net-_u43-pad3_ net-_u48-pad3_ d_and +x6 net-_u34-pad3_ net-_u41-pad3_ net-_u45-pad2_ net-_u56-pad1_ 3_and +* u56 net-_u56-pad1_ net-_u48-pad3_ net-_u56-pad3_ d_nor +* u60 net-_u56-pad3_ net-_u1-pad10_ d_inverter +* u53 net-_u34-pad3_ net-_u45-pad2_ net-_u53-pad3_ d_and +* u54 net-_u40-pad2_ net-_u43-pad3_ net-_u54-pad3_ d_and +* u52 net-_u41-pad3_ net-_u46-pad2_ net-_u52-pad3_ d_and +* u59 net-_u52-pad3_ net-_u53-pad3_ net-_u59-pad3_ d_nor +* u62 net-_u59-pad3_ net-_u54-pad3_ net-_u1-pad11_ d_nor +a1 [net-_u1-pad5_ net-_u1-pad6_ ] net-_u10-pad1_ u3 +a2 [net-_u1-pad5_ net-_u10-pad1_ ] net-_u17-pad1_ u9 +a3 [net-_u10-pad1_ net-_u1-pad6_ ] net-_u10-pad3_ u10 +a4 [net-_u17-pad1_ net-_u10-pad3_ ] net-_u17-pad3_ u17 +a5 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u2-pad3_ u2 +a6 [net-_u1-pad3_ net-_u2-pad3_ ] net-_u16-pad1_ u7 +a7 [net-_u2-pad3_ net-_u1-pad4_ ] net-_u16-pad2_ u8 +a8 [net-_u16-pad1_ net-_u16-pad2_ ] net-_u16-pad3_ u16 +a9 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u14-pad1_ u70 +a10 [net-_u1-pad1_ net-_u14-pad1_ ] net-_u15-pad1_ u5 +a11 [net-_u14-pad1_ net-_u1-pad2_ ] net-_u15-pad2_ u6 +a12 [net-_u15-pad1_ net-_u15-pad2_ ] net-_u15-pad3_ u15 +a13 [net-_u1-pad15_ net-_u1-pad14_ ] net-_u11-pad2_ u4 +a14 [net-_u1-pad15_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a15 [net-_u11-pad2_ net-_u1-pad14_ ] net-_u12-pad3_ u12 +a16 [net-_u11-pad3_ net-_u12-pad3_ ] net-_u18-pad3_ u18 +a17 net-_u11-pad2_ net-_u13-pad2_ u13 +a18 net-_u14-pad1_ net-_u14-pad2_ u14 +a19 [net-_u1-pad7_ net-_u18-pad3_ ] net-_u26-pad3_ u26 +a20 [net-_u1-pad7_ net-_u26-pad3_ ] net-_u29-pad3_ u29 +a21 [net-_u26-pad3_ net-_u18-pad3_ ] net-_u30-pad3_ u30 +a22 [net-_u29-pad3_ net-_u30-pad3_ ] net-_u1-pad13_ u36 +a23 net-_u18-pad3_ net-_u20-pad2_ u20 +a24 net-_u15-pad3_ net-_u19-pad2_ u19 +a25 net-_u16-pad3_ net-_u21-pad2_ u21 +a26 [net-_u1-pad7_ net-_u20-pad2_ ] net-_u27-pad3_ u27 +a27 net-_u13-pad2_ net-_u25-pad2_ u25 +a28 [net-_u27-pad3_ net-_u25-pad2_ ] net-_u31-pad3_ u31 +a29 [net-_u31-pad3_ net-_u19-pad2_ ] net-_u34-pad3_ u34 +a30 net-_u34-pad3_ net-_u40-pad2_ u40 +a31 [net-_u13-pad2_ net-_u19-pad2_ ] net-_u23-pad3_ u23 +a32 net-_u14-pad2_ net-_u24-pad2_ u24 +a33 [net-_u32-pad1_ net-_u23-pad3_ ] net-_u32-pad3_ u32 +a34 [net-_u32-pad3_ net-_u24-pad2_ ] net-_u37-pad3_ u37 +a35 [net-_u37-pad3_ net-_u21-pad2_ ] net-_u41-pad3_ u41 +a36 [net-_u14-pad2_ net-_u21-pad2_ ] net-_u22-pad3_ u22 +a37 [net-_u28-pad1_ net-_u28-pad2_ ] net-_u28-pad3_ u28 +a38 [net-_u28-pad3_ net-_u22-pad3_ ] net-_u33-pad3_ u33 +a39 [net-_u33-pad3_ net-_u2-pad3_ ] net-_u35-pad3_ u35 +a40 [net-_u35-pad3_ net-_u38-pad2_ ] net-_u38-pad3_ u38 +a41 [net-_u38-pad2_ net-_u10-pad1_ ] net-_u39-pad3_ u39 +a42 [net-_u43-pad1_ net-_u39-pad3_ ] net-_u43-pad3_ u43 +a43 [net-_u38-pad3_ net-_u17-pad3_ ] net-_u42-pad3_ u42 +a44 [net-_u44-pad1_ net-_u42-pad3_ ] net-_u44-pad3_ u44 +a45 net-_u44-pad3_ net-_u45-pad2_ u45 +a46 net-_u43-pad3_ net-_u46-pad2_ u46 +a47 [net-_u40-pad2_ net-_u45-pad2_ ] net-_u49-pad3_ u49 +a48 [net-_u41-pad3_ net-_u45-pad2_ ] net-_u50-pad3_ u50 +a49 [net-_u40-pad2_ net-_u43-pad3_ ] net-_u51-pad3_ u51 +a50 [net-_u57-pad1_ net-_u49-pad3_ ] net-_u57-pad3_ u57 +a51 [net-_u50-pad3_ net-_u51-pad3_ ] net-_u58-pad3_ u58 +a52 [net-_u57-pad3_ net-_u58-pad3_ ] net-_u1-pad12_ u61 +a53 [net-_u46-pad2_ net-_u44-pad3_ ] net-_u47-pad3_ u47 +a54 [net-_u55-pad1_ net-_u47-pad3_ ] net-_u1-pad9_ u55 +a55 [net-_u40-pad2_ net-_u43-pad3_ ] net-_u48-pad3_ u48 +a56 [net-_u56-pad1_ net-_u48-pad3_ ] net-_u56-pad3_ u56 +a57 net-_u56-pad3_ net-_u1-pad10_ u60 +a58 [net-_u34-pad3_ net-_u45-pad2_ ] net-_u53-pad3_ u53 +a59 [net-_u40-pad2_ net-_u43-pad3_ ] net-_u54-pad3_ u54 +a60 [net-_u41-pad3_ net-_u46-pad2_ ] net-_u52-pad3_ u52 +a61 [net-_u52-pad3_ net-_u53-pad3_ ] net-_u59-pad3_ u59 +a62 [net-_u59-pad3_ net-_u54-pad3_ ] net-_u1-pad11_ u62 +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u3 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u17 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u2 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u16 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u70 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u15 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u4 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u18 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u26 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u29 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u30 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u36 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u31 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u34 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u40 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u32 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u37 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u41 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u28 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u33 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u35 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u38 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u39 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u43 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u42 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u44 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u45 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u46 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u50 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u51 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u57 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u58 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u61 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u47 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u55 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u48 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u56 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u60 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u53 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u54 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u52 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u59 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u62 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends MC14560B \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14560B/MC14560B_Previous_Values.xml b/library/SubcircuitLibrary/MC14560B/MC14560B_Previous_Values.xml new file mode 100644 index 000000000..8e2e40529 --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/MC14560B_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes025010secmssecd_nandd_andd_andd_nord_nandd_andd_andd_nord_nandd_andd_andd_nord_nandd_andd_andd_nord_inverterd_inverterd_nandd_andd_andd_nord_inverterd_inverterd_inverterd_andd_inverterd_nord_xord_inverterd_andd_inverterd_nord_nord_xord_andd_nord_nord_nandd_nandd_andd_nord_andd_nord_inverterd_inverterd_andd_andd_andd_nord_nord_nord_andd_nord_andd_nord_inverterd_andd_andd_andd_nord_norC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\4_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14560B/analysis b/library/SubcircuitLibrary/MC14560B/analysis new file mode 100644 index 000000000..0a6c83b5a --- /dev/null +++ b/library/SubcircuitLibrary/MC14560B/analysis @@ -0,0 +1 @@ +.tran 250e-03 10e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14561B/MC14561B.cir b/library/SubcircuitLibrary/MC14561B/MC14561B.cir new file mode 100644 index 000000000..c2829c169 --- /dev/null +++ b/library/SubcircuitLibrary/MC14561B/MC14561B.cir @@ -0,0 +1,11 @@ +.title KiCad schematic +U2 Net-_U1-Pad4_ Net-_U2-Pad2_ d_inverter +U3 Net-_U1-Pad3_ Net-_U3-Pad2_ d_buffer +U5 Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U5-Pad3_ d_and +U4 Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_U4-Pad3_ d_xor +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_U1-Pad8_ PORT +U6 Net-_U1-Pad2_ Net-_U6-Pad2_ d_buffer +U9 Net-_U5-Pad3_ Net-_U6-Pad2_ Net-_U1-Pad8_ d_and +U7 Net-_U1-Pad1_ Net-_U1-Pad5_ d_inverter +U8 Net-_U2-Pad2_ Net-_U4-Pad3_ Net-_U1-Pad7_ d_and +.end diff --git a/library/SubcircuitLibrary/MC14561B/MC14561B.cir.out b/library/SubcircuitLibrary/MC14561B/MC14561B.cir.out new file mode 100644 index 000000000..1b0d97678 --- /dev/null +++ b/library/SubcircuitLibrary/MC14561B/MC14561B.cir.out @@ -0,0 +1,44 @@ +.title kicad schematic + +* u2 net-_u1-pad4_ net-_u2-pad2_ d_inverter +* u3 net-_u1-pad3_ net-_u3-pad2_ d_buffer +* u5 net-_u2-pad2_ net-_u3-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad3_ net-_u1-pad2_ net-_u4-pad3_ d_xor +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad8_ port +* u6 net-_u1-pad2_ net-_u6-pad2_ d_buffer +* u9 net-_u5-pad3_ net-_u6-pad2_ net-_u1-pad8_ d_and +* u7 net-_u1-pad1_ net-_u1-pad5_ d_inverter +* u8 net-_u2-pad2_ net-_u4-pad3_ net-_u1-pad7_ d_and +a1 net-_u1-pad4_ net-_u2-pad2_ u2 +a2 net-_u1-pad3_ net-_u3-pad2_ u3 +a3 [net-_u2-pad2_ net-_u3-pad2_ ] net-_u5-pad3_ u5 +a4 [net-_u1-pad3_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a5 net-_u1-pad2_ net-_u6-pad2_ u6 +a6 [net-_u5-pad3_ net-_u6-pad2_ ] net-_u1-pad8_ u9 +a7 net-_u1-pad1_ net-_u1-pad5_ u7 +a8 [net-_u2-pad2_ net-_u4-pad3_ ] net-_u1-pad7_ u8 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u4 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u6 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC14561B/MC14561B.kicad_sch b/library/SubcircuitLibrary/MC14561B/MC14561B.kicad_sch new file mode 100644 index 000000000..2e0b5d19a --- /dev/null +++ b/library/SubcircuitLibrary/MC14561B/MC14561B.kicad_sch @@ -0,0 +1,1108 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 359934b3-018e-4826-adfd-c5db7b534cb9) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_xor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_xor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -5.08 -1.27) (mid -4.3109 1.27) (end -5.08 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.27) + (xy -5.08 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 3.81) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_xor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.0922 1.0922)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.0922 1.0922)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 0.9906 0.9906)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 92.71 78.74) (diameter 0) (color 0 0 0 0) + (uuid c9ce08c9-ebab-4415-bf4e-6fa5059606bd) + ) + (junction (at 97.79 71.12) (diameter 0) (color 0 0 0 0) + (uuid e0f3169e-b776-4230-8f3d-209cd47f60bd) + ) + (junction (at 104.14 63.5) (diameter 0) (color 0 0 0 0) + (uuid f3107eed-6dd0-4ff9-ab32-e47532637d41) + ) + (junction (at 162.56 71.12) (diameter 0) (color 0 0 0 0) + (uuid f9fee622-839b-4fc0-834c-815106c38fb3) + ) + + (wire (pts (xy 162.56 71.12) (xy 232.41 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00a33d61-2e03-4cf8-aedf-fb4bd5e1f94d) + ) + (wire (pts (xy 85.09 78.74) (xy 92.71 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07b932b4-a2b0-4d01-ad4d-0c90b19c779d) + ) + (wire (pts (xy 204.47 35.56) (xy 264.16 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09b19ba4-92b8-48bc-9e16-d2d4b444fdfc) + ) + (wire (pts (xy 43.18 63.5) (xy 104.14 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0cf8090f-802c-4997-8738-e3b18a9d00f4) + ) + (wire (pts (xy 162.56 71.12) (xy 104.14 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11c5d301-fdab-49c7-8692-4dea4cd9a5a2) + ) + (wire (pts (xy 256.54 68.58) (xy 256.54 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1799bc87-9dbb-4291-b21b-35500bb04683) + ) + (wire (pts (xy 92.71 78.74) (xy 127 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b3c56ab-7ed7-4cd6-b139-2889e918cfbc) + ) + (wire (pts (xy 41.91 35.56) (xy 189.23 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ded6b0a-77c3-4798-924c-19d50e714d5b) + ) + (wire (pts (xy 149.86 91.44) (xy 191.77 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22719d66-e31b-4421-9754-4886a5a20a93) + ) + (wire (pts (xy 162.56 101.6) (xy 162.56 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f1e79da-1eb0-4d8d-9c0e-71c85669e98b) + ) + (wire (pts (xy 261.62 49.53) (xy 261.62 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31676037-8b58-4bc9-8211-273f863a2c8a) + ) + (wire (pts (xy 232.41 49.53) (xy 261.62 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4101e9f6-cd14-45a8-ae04-1458d587f6f2) + ) + (wire (pts (xy 208.28 62.23) (xy 259.08 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 479dd4fc-d19a-46d4-8270-6e218dc83166) + ) + (wire (pts (xy 184.15 63.5) (xy 185.42 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4eaf81ce-3485-461e-9f73-853d8e700990) + ) + (wire (pts (xy 259.08 62.23) (xy 259.08 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50819d83-73ac-43a0-bdf8-5c2f845a3bef) + ) + (wire (pts (xy 41.91 35.56) (xy 41.91 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51218b36-1191-4f6c-a7a2-adf1e41e501e) + ) + (wire (pts (xy 92.71 52.07) (xy 92.71 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d86fba0-f209-42dc-95b5-274280712839) + ) + (wire (pts (xy 97.79 71.12) (xy 97.79 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64415e7e-6009-4584-9260-d06d0e12f656) + ) + (wire (pts (xy 127 78.74) (xy 127 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64ae649c-5117-48d1-aad4-8c6d6a2fb417) + ) + (wire (pts (xy 44.45 95.25) (xy 41.91 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6999b933-42d9-42a8-9f99-521cb85f6870) + ) + (wire (pts (xy 97.79 60.96) (xy 127 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74cac522-7313-466a-a7f1-4222933c6c27) + ) + (wire (pts (xy 232.41 71.12) (xy 232.41 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8253cf39-2cd6-4415-a1a6-662c9d910d67) + ) + (wire (pts (xy 264.16 35.56) (xy 264.16 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88f30092-4e4d-4191-8d42-3b1073a31c39) + ) + (wire (pts (xy 184.15 62.23) (xy 184.15 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89a83a69-d7c5-4777-9c21-b6fdd0036e17) + ) + (wire (pts (xy 191.77 91.44) (xy 191.77 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a975005-0022-4aa9-b9ca-83dcb6adb3c5) + ) + (wire (pts (xy 44.45 71.12) (xy 97.79 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c6af30c-60ca-497e-acad-e530f38df168) + ) + (wire (pts (xy 149.86 62.23) (xy 184.15 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7468737-1ca0-4504-b59f-00e78444d861) + ) + (wire (pts (xy 185.42 52.07) (xy 92.71 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9ff314e-7f8e-4811-b124-7065b4012ad3) + ) + (wire (pts (xy 214.63 100.33) (xy 246.38 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac403b92-d702-4a20-8c59-8f1c95f333b2) + ) + (wire (pts (xy 246.38 100.33) (xy 246.38 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afda910c-be7c-446a-b4f3-47779eef0b91) + ) + (wire (pts (xy 246.38 68.58) (xy 256.54 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4521f0e-51b0-4ce2-806d-021f46d7ec69) + ) + (wire (pts (xy 44.45 71.12) (xy 44.45 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b620060b-4c62-4b34-a7b6-113a69dcf119) + ) + (wire (pts (xy 104.14 71.12) (xy 104.14 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf00dd27-ef03-43c5-b477-2ffa4570bac3) + ) + (wire (pts (xy 43.18 92.71) (xy 41.91 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c010c784-4431-4c2a-9aa2-cb0076de084b) + ) + (wire (pts (xy 43.18 63.5) (xy 43.18 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbb64477-d27a-4e17-9bc6-fa43524eb078) + ) + (wire (pts (xy 41.91 97.79) (xy 46.99 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d114ea2a-0f9f-44f0-90c1-1e91128e3f86) + ) + (wire (pts (xy 46.99 78.74) (xy 69.85 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd330d65-c816-46f1-92b8-e8df00f18c59) + ) + (wire (pts (xy 104.14 63.5) (xy 127 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5008d59-9159-4496-b6df-b209cedea2f7) + ) + (wire (pts (xy 185.42 60.96) (xy 185.42 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e722d764-c563-4253-ab89-6f1e709d564c) + ) + (wire (pts (xy 97.79 92.71) (xy 97.79 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3342f4b-9fb9-466f-89d2-63952794e2ed) + ) + (wire (pts (xy 46.99 97.79) (xy 46.99 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe999b26-6176-4d49-a933-7fb11b04c67f) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 138.43 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 035e00d1-7f2a-437c-983d-8afc5191c157) + (property "Reference" "U5" (id 0) (at 138.43 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 138.43 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 138.43 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 138.43 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cfeb8298-dbe4-4397-9ea6-1aff030c604b)) + (pin "2" (uuid e952023e-4e3b-4850-9819-eb2f54e0b7fa)) + (pin "3" (uuid 320caf41-3798-49fe-af0f-cf338fed8ace)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 77.47 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04377789-344d-4a67-86a7-22a7459e74e4) + (property "Reference" "U2" (id 0) (at 77.47 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 77.47 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 78.74 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 78.74 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4dfeb965-adca-47a2-8c88-d7757ddec502)) + (pin "2" (uuid c2eee1b3-9d94-446c-b4b1-af4d6fa539aa)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 97.79 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 23bea16a-a09e-4388-b70a-53ee75819d60) + (property "Reference" "U1" (id 0) (at 36.195 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 95.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 89aac47e-f7cc-48b8-b0b2-1d685738baa6)) + (pin "2" (uuid a0b0b956-68d3-4a00-9e16-6aa970f68e71)) + (pin "3" (uuid 152e6adf-7346-4699-a277-bcd4db5b1307)) + (pin "4" (uuid d46869cf-e02b-4053-8ad9-62a811697075)) + (pin "5" (uuid 58079077-fd32-420d-88dc-b370a72bfd29)) + (pin "6" (uuid 35e6b139-398a-4f1c-9d69-5389fbe70d9f)) + (pin "7" (uuid 504d8635-1a07-44bc-aaa2-b40956bcf744)) + (pin "8" (uuid ab6a2d24-8aa4-4bed-8487-8011537b125e)) + (pin "9" (uuid 7c09b1dd-4c7e-43bd-bc05-2b51b75e971f)) + (pin "10" (uuid c1259412-61dc-4737-bc25-44eaf3fd8b14)) + (pin "11" (uuid 6fd8e195-308c-4e3c-9c3f-1c524c751ac4)) + (pin "12" (uuid 97d66431-6ce5-48d7-aec4-b4038742db2a)) + (pin "13" (uuid 93f485be-9fc7-4577-b0f7-ff7809474176)) + (pin "14" (uuid 38743ca6-17f5-40a2-9e30-ba61a0010acd)) + (pin "15" (uuid b3d2026f-d617-4fa8-894a-3c42b0e609cd)) + (pin "16" (uuid edd89022-908a-4ed8-8565-79e27de45afb)) + (pin "17" (uuid 76a52c61-5fd0-4d03-8054-1eadbeab2f41)) + (pin "18" (uuid a4cc6e6f-b19a-43cd-8bab-21b3c8fafe2b)) + (pin "19" (uuid e2248d50-24fb-4391-abdf-7bbbac2f1d6a)) + (pin "20" (uuid 2fd27792-b2c7-4c11-b3c2-a19fa9cbd131)) + (pin "21" (uuid ed510e87-b91e-4803-b913-6ce791399976)) + (pin "22" (uuid 21968f34-4689-47ee-9023-a7b29f992878)) + (pin "23" (uuid f5290410-416a-48fd-a08f-fe8ab9b66be3)) + (pin "24" (uuid f9d75097-012f-418f-b6f6-3e34b988c7ec)) + (pin "25" (uuid 81b46d58-0ea5-41b2-9a4b-9ebe1615dd4b)) + (pin "26" (uuid baf18f3f-9c1c-4f85-8ce4-d92de70c167f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 92.71 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2ca42dea-f63a-4428-8307-d67b7067ef15) + (property "Reference" "U1" (id 0) (at 36.195 87.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 121db2ea-8140-483e-976b-b9a0dca55a52)) + (pin "2" (uuid 239683d0-cfbc-41e1-aab7-448c26796b05)) + (pin "3" (uuid e6e68e99-67e6-4785-a078-a7af3042cfd8)) + (pin "4" (uuid 083653b0-3352-47c9-9647-9a06eebc8fcd)) + (pin "5" (uuid 43d74bd9-17fe-46b9-a067-fd9245512c11)) + (pin "6" (uuid 744a3beb-3a6c-4c9d-bc8a-16ed611035c2)) + (pin "7" (uuid 422db2b5-7ac1-4dd5-ae69-5dd69aa61c30)) + (pin "8" (uuid 029fd9ac-373e-46f0-b476-bd5694cbb02f)) + (pin "9" (uuid c0a5e39b-ad30-4848-ab63-1a903abc8ebd)) + (pin "10" (uuid dd3209fd-de91-4112-9ed7-4cc790d6cb45)) + (pin "11" (uuid 615ef76e-1380-42c8-96d7-374023b12a6b)) + (pin "12" (uuid 76c9609f-9b5e-4b3b-ba00-12e63f54170d)) + (pin "13" (uuid f02f565c-32ab-4dc6-bc41-8016efc3fc73)) + (pin "14" (uuid d00650d2-8696-45b1-8ba8-6f70b764832b)) + (pin "15" (uuid 6c13a7d2-52ab-4b6b-82a4-729fe5969542)) + (pin "16" (uuid c81760b2-03a5-4323-9e7c-06608e5a5203)) + (pin "17" (uuid 73f21c9f-3d9b-48b9-8002-7c5025613899)) + (pin "18" (uuid 3c80b3b7-49a3-459c-8344-4772136cc15b)) + (pin "19" (uuid 1106bdd3-f8ef-4877-a834-ee5f6199f8f3)) + (pin "20" (uuid a89fda94-21dd-452c-9087-ab24ec2a8806)) + (pin "21" (uuid 70e7016c-2e63-4724-9286-53302ea03376)) + (pin "22" (uuid 7b334468-b606-4245-968a-eae018ce1c9e)) + (pin "23" (uuid 8871ea88-0398-41ce-97aa-708fe9f3800d)) + (pin "24" (uuid da59be3d-b21c-406e-9bf7-a0a47fecd3f4)) + (pin "25" (uuid fe58d422-df87-48da-97f6-896f51810b61)) + (pin "26" (uuid f3c39274-3dae-43ce-a5a6-fc2369d8ded1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 264.16 78.74 90) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38647086-594e-4480-b93f-4c1bd56c97f1) + (property "Reference" "U1" (id 0) (at 266.7 77.47 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 266.7 80.01 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 264.16 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 264.16 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a80eafd1-a09f-4683-8a34-7ed7a25195fb)) + (pin "2" (uuid 5ecc3549-48d0-4569-8226-8991a753584e)) + (pin "3" (uuid fd9945ee-0b7d-48bb-a0d8-4721760619cb)) + (pin "4" (uuid 72e72f4b-ed62-4809-be4f-d84d0d204c2e)) + (pin "5" (uuid 9e5ec7f4-9f89-49bc-9dd3-bbcd2961b571)) + (pin "6" (uuid b48a7223-9139-4d0c-af91-91a44396e40e)) + (pin "7" (uuid f867ba4f-ede5-4c4b-832d-831d83975ef0)) + (pin "8" (uuid f0af7ed3-ec3d-4075-882a-cae93a2cdada)) + (pin "9" (uuid 850e8877-3bee-40b8-bb5c-0ffa1d12c331)) + (pin "10" (uuid 363c240a-0864-48c8-bcb3-51588d839774)) + (pin "11" (uuid 42dcff52-6ab1-444f-9fbe-948df9b94ccd)) + (pin "12" (uuid 6e93dc84-e03c-45ec-88b3-283c776c4ea5)) + (pin "13" (uuid db8d2f15-21bf-4a7d-8b04-523b9d2a3cf1)) + (pin "14" (uuid e2089140-2e2a-463c-aca1-4975c174aab2)) + (pin "15" (uuid 3e21bbb4-8d5f-434f-ab9f-a68010a1cce0)) + (pin "16" (uuid a14dbde1-00fc-45a5-ac72-000be47fa497)) + (pin "17" (uuid 76f107d8-1131-402e-9196-c21dc49d4284)) + (pin "18" (uuid d882b230-2c57-48fe-a910-82cc454ea629)) + (pin "19" (uuid 7dd15a75-c182-417e-8f85-10aeec3d87d9)) + (pin "20" (uuid 3e00228d-4af3-4abb-bc9c-d5a8c7f09e4e)) + (pin "21" (uuid 20fa54dd-a34f-4e16-936e-af3c944e30c7)) + (pin "22" (uuid cb83aee1-2bc8-4060-8eee-ba48a5f5241b)) + (pin "23" (uuid fc73fbb3-aae9-4fc8-917a-8603ab8308c1)) + (pin "24" (uuid 69231291-8ee2-4ddd-9646-95c240fd2edc)) + (pin "25" (uuid c083a847-0161-4f29-8def-9026c1d43ae9)) + (pin "26" (uuid 61494976-fba6-42c6-9275-f8fddee45c10)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 110.49 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 414298a3-3a6c-4437-8d11-aa420d2d38db) + (property "Reference" "U3" (id 0) (at 112.395 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 112.395 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 110.49 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fbb70c3e-9173-4719-8d68-28bfb72c384c)) + (pin "2" (uuid c576d717-8e68-4678-8ca5-2b8486737411)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 261.62 78.74 90) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 603ee269-f9f9-45b7-b21e-a7399148a05a) + (property "Reference" "U1" (id 0) (at 264.16 77.47 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 80.01 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 261.62 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 261.62 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7bcd0878-2d67-43b6-a382-68eb3f93ec92)) + (pin "2" (uuid 3db05e67-12d4-4d49-a45d-d2564d95ae79)) + (pin "3" (uuid 6b033e17-7ca4-4db2-bec3-fd9b725581ae)) + (pin "4" (uuid 633b0bef-b658-45e4-839c-7bcb457cc357)) + (pin "5" (uuid 21e8cd89-dc0d-4459-bd73-34a4bdb7c585)) + (pin "6" (uuid 94f5c575-6a4c-4733-bb9e-14016a7d5e1d)) + (pin "7" (uuid bc26cd83-217e-4401-80a6-dec99023113f)) + (pin "8" (uuid 4d01b2da-9c7f-44f6-b9f7-354495feb2e9)) + (pin "9" (uuid ff969a95-76d2-4983-ac3f-7051682c95fc)) + (pin "10" (uuid a252fe58-927f-49db-9ec4-aa635d3186c8)) + (pin "11" (uuid 9c4a35f0-60dd-4893-bf58-533dea8451d7)) + (pin "12" (uuid 144035ed-20ca-48cd-a999-8f44b9d0d817)) + (pin "13" (uuid 6a085d8a-d3c1-4c34-a76d-8167611041de)) + (pin "14" (uuid 710007fd-6b13-441a-810d-70bb2876ce00)) + (pin "15" (uuid 2700ab6a-7251-46e8-872a-b3cb7a4adac2)) + (pin "16" (uuid 548774f6-e6c0-445f-873c-0e2f81d48bfc)) + (pin "17" (uuid 3d95ca2c-9d97-4141-9ada-ad0f8e570079)) + (pin "18" (uuid 297b3455-b820-4a4f-9e83-b9fb7762566a)) + (pin "19" (uuid 0cd73fc4-99a9-4e79-89a8-5d2786d60fc6)) + (pin "20" (uuid 2f6d8585-92b5-4c68-8df2-2708fe6fae5e)) + (pin "21" (uuid 00e5bf91-19c8-463e-9551-2fb6a4d62b8a)) + (pin "22" (uuid ca6573d3-49aa-4bee-8a2f-b642b0bd0321)) + (pin "23" (uuid 0929e819-28fa-47ad-8787-b307139f89c5)) + (pin "24" (uuid 6b0c4044-0e3d-4c59-92b5-c0175c1e1a66)) + (pin "25" (uuid 73832554-88ff-4d26-a8c3-baa0b0873fc9)) + (pin "26" (uuid f7d42024-283a-47d2-b26c-d0f92f2e7a77)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67e8d88e-89e0-46c3-b7d7-b513dbf6f6ec) + (property "Reference" "U1" (id 0) (at 36.195 85.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 87.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid df02f1f8-52ca-4417-b2f3-4889ad0fc973)) + (pin "2" (uuid a0438d46-aca8-4422-bd34-7760d96b3910)) + (pin "3" (uuid 5bdaee1d-0f6e-4098-80e1-4b13ab86d338)) + (pin "4" (uuid 4f79e568-a5e3-49ad-b246-7d7e9b5f22d3)) + (pin "5" (uuid aecc9b64-16e4-415e-9f9d-597bbab642a3)) + (pin "6" (uuid 487ee8c1-a04c-461d-a6cd-2d1857d409ae)) + (pin "7" (uuid f63649df-07e4-4291-a968-68cc691d12c0)) + (pin "8" (uuid 8e6f4706-3270-425a-90d5-654effdc6241)) + (pin "9" (uuid 85145d31-bce1-447c-a3d7-f45041f9ffb8)) + (pin "10" (uuid e58b6362-6320-4712-96ce-4148518b2c11)) + (pin "11" (uuid 7aac13d5-3ef6-4015-9cd2-3d79e3fbdb0a)) + (pin "12" (uuid c8e5b7ad-79bc-4717-95b6-d8fc6cdabb2b)) + (pin "13" (uuid eda13358-70e6-4dda-8ee8-c7a5b329a8c3)) + (pin "14" (uuid f01f17ab-c62c-4e77-8340-200f651c020d)) + (pin "15" (uuid e4bdd50a-8f9d-4d1e-a657-8507ebb9ed8c)) + (pin "16" (uuid 747b66c4-855f-4e5e-9ac5-4c6fe538747d)) + (pin "17" (uuid 2ccda901-9493-416b-9c21-38a0be9ae2d6)) + (pin "18" (uuid 19f73674-5f05-4f53-bc6a-03fab090316d)) + (pin "19" (uuid e1f6f57c-52f1-4c8f-a03e-3ec1240b03e9)) + (pin "20" (uuid cee8cb87-edc2-46e2-a9b1-8da13b015789)) + (pin "21" (uuid 1a0b80b0-8845-4a51-849e-8137325d75b2)) + (pin "22" (uuid 5a564e7c-7227-46ea-883b-a1c944e665c3)) + (pin "23" (uuid b609b184-ea15-4b20-ab2e-4c320a82d6e4)) + (pin "24" (uuid 08daa3f7-a2d7-41f3-8844-966a1f81e9a8)) + (pin "25" (uuid 7c957922-2a25-49f1-83e6-b8319ccbaa22)) + (pin "26" (uuid 432053dd-82c4-4218-a1f8-87ae660fab81)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 196.85 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9526369c-b3cc-4d32-b762-7f078602634f) + (property "Reference" "U8" (id 0) (at 196.85 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 196.85 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 196.85 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c68143af-d08e-4da6-ad63-a29a1d55fbef)) + (pin "2" (uuid b9ef1d83-3944-4468-92b0-019a839bf19b)) + (pin "3" (uuid c674692f-99f1-468f-9b11-aeccbfe2f0f0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 196.85 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 97c36ddf-8e52-4712-94e6-8a3a85ed7813) + (property "Reference" "U7" (id 0) (at 196.85 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 196.85 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5eca6128-a58e-4750-9098-68338bb0ba98)) + (pin "2" (uuid b71e7b01-7377-4638-ae99-d7069a81911b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 256.54 78.74 90) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a0a86731-e693-4288-9387-4f40e88a5a9b) + (property "Reference" "U1" (id 0) (at 259.08 77.47 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 259.08 80.01 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 256.54 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 256.54 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c52a0cc0-f3ff-450a-a25e-b38c3d677b1b)) + (pin "2" (uuid 8d0bb852-9063-4810-9386-06d0a497e6d7)) + (pin "3" (uuid c34458ed-ddac-47e1-94ff-512e072d7589)) + (pin "4" (uuid 1aff2274-cf66-4b3c-9c59-b120f20a459d)) + (pin "5" (uuid 1595a376-a2fb-408e-9094-142df359a86e)) + (pin "6" (uuid c0823575-d41d-4e3b-83e2-76f4cdb789ea)) + (pin "7" (uuid 0387fe1f-2079-47fe-b483-25a844afa6f5)) + (pin "8" (uuid 99988dfb-b609-4ef1-b721-6e51b317e746)) + (pin "9" (uuid 06a6060e-a1cd-48d9-b4fd-3fbecc9409db)) + (pin "10" (uuid cde08f07-9419-40d4-9f1e-cb391235ee97)) + (pin "11" (uuid af64b866-9348-4ebc-b6b8-e645fc571bd3)) + (pin "12" (uuid fd196142-1d43-480f-b90f-32f53f12fda2)) + (pin "13" (uuid 4b2ebdb1-98b8-4f9d-9d91-8af941f144ff)) + (pin "14" (uuid 9679ccba-d35e-46b0-974f-3b5a3c1e522b)) + (pin "15" (uuid fea593e4-2b59-4658-bda5-f307cf444530)) + (pin "16" (uuid 10710a89-f1ac-4992-843d-be7c471ab97b)) + (pin "17" (uuid 00a132d4-3fbd-4506-9f40-ae44601e6cc5)) + (pin "18" (uuid 249c8f41-316d-4924-9e39-3acab46156e5)) + (pin "19" (uuid 2473d4ea-f97c-414d-9e5d-50a21cdbf079)) + (pin "20" (uuid e9fbcff7-1421-40d2-b192-5ce76ab51878)) + (pin "21" (uuid 91997f3c-096f-404d-83c7-27b77d17b54f)) + (pin "22" (uuid ded54f84-e7db-46ac-9e31-b4adc37d1830)) + (pin "23" (uuid 80e27128-443a-41e0-b23b-668ada43a5d3)) + (pin "24" (uuid 14bfc20e-e3a6-4102-b5b6-a3cff9f9261c)) + (pin "25" (uuid fc87d523-30a2-4e02-9b8a-8b0f51e8027a)) + (pin "26" (uuid e372b5d9-96f3-4060-9df6-39b375d02ea6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 95.25 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a8f74232-6c07-4993-aff1-3001e1450245) + (property "Reference" "U1" (id 0) (at 36.195 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 989c698f-23ae-4da5-9196-87f4edce01a5)) + (pin "2" (uuid e0600b41-d53d-4e84-8d8a-e435bbcd1dbc)) + (pin "3" (uuid 6bf32f83-cbae-4645-b106-2ffbe4468033)) + (pin "4" (uuid 4d80d112-b01a-469f-a082-17f1581a02b0)) + (pin "5" (uuid 39212a70-d141-4467-8888-679ae7c50969)) + (pin "6" (uuid d8a3b32b-c6e6-461c-b74a-1e64efa12541)) + (pin "7" (uuid abdc894c-efed-4b17-9518-8f09b62ff833)) + (pin "8" (uuid 7cf0db28-12c8-43be-8efe-742247789a26)) + (pin "9" (uuid 80a7d18f-12a5-4bc2-b660-e9e3d15f3804)) + (pin "10" (uuid 63a57c34-c38b-4690-85b6-a360adf9f217)) + (pin "11" (uuid 2d365a04-64be-41a4-8930-e770f34f1d04)) + (pin "12" (uuid ccaf57b6-0846-4892-bb67-17ce7c5b5c51)) + (pin "13" (uuid 7545d59e-fea6-419c-9f94-7ab216beed9e)) + (pin "14" (uuid 79f1b029-f35d-4a20-8e51-202593ede0d3)) + (pin "15" (uuid c80b2d23-7383-4e1a-be39-cf27f400c30a)) + (pin "16" (uuid 31aecc3e-84fa-479e-9654-5eaac80e3f01)) + (pin "17" (uuid fe3b25c1-2ce5-44ff-af2c-06dd44fb0994)) + (pin "18" (uuid 88302416-bdfb-4805-b290-7d50457fa582)) + (pin "19" (uuid 173dd065-a34f-46b0-aa6f-8f41607ee622)) + (pin "20" (uuid 7c50ef70-dc95-4a7f-986e-2c5faeaf3851)) + (pin "21" (uuid 03994c10-0269-4159-b9ec-0334402c1c26)) + (pin "22" (uuid b32dfc3e-7d97-4688-b57e-75060e899705)) + (pin "23" (uuid 013ff8b2-31ea-4c96-8eaa-66cfba6bc04f)) + (pin "24" (uuid efad3390-e232-4ab9-bf2e-e2e9dfd6fd39)) + (pin "25" (uuid e0199949-1bbb-4d8d-adf7-1753a9c24206)) + (pin "26" (uuid dda56417-b21a-4332-a6dd-a611c277e425)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 138.43 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab2c3625-ade6-441f-ab5d-35f02397025c) + (property "Reference" "U4" (id 0) (at 138.43 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 138.43 57.15 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 138.43 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 138.43 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d8338224-a3d4-4cc7-b1c0-40a1ca4253cf)) + (pin "2" (uuid 1104d77f-91bf-4d80-82cf-ba317a65ec84)) + (pin "3" (uuid 1796667e-9106-4d2b-be8e-0d808a2261b5)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 175.26 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ca6fe9f8-f747-44a4-b325-9944d2c804c7) + (property "Reference" "U6" (id 0) (at 177.165 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 177.165 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b7caf132-54aa-4ded-81a9-6cac9fa56bf3)) + (pin "2" (uuid 314c5b36-244b-4add-bfa0-8507d221c30c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 203.2 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dc8f2e01-2086-4d05-9dcb-2a86829e670a) + (property "Reference" "U9" (id 0) (at 203.2 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 203.2 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 203.2 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 203.2 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d2d6804-edfe-4fd9-a747-84cb74232d8c)) + (pin "2" (uuid be5a2d1c-2c95-4e6f-94e5-4bf34a22834c)) + (pin "3" (uuid a81c19e3-c193-4067-98cd-5b2c05c70b64)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 259.08 78.74 90) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2dbdbf0-cbdf-4397-b8e1-27ffffa0cdcd) + (property "Reference" "U1" (id 0) (at 261.62 77.47 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 261.62 80.01 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 259.08 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 259.08 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae0ed2d2-2dd2-4f61-a6a7-96619cf60754)) + (pin "2" (uuid 5925c71a-b9b2-4001-b385-76544cb86b99)) + (pin "3" (uuid 4f91e411-ea24-42d4-ae39-843ff2c53205)) + (pin "4" (uuid 63d294a9-a6a1-4bd1-a93c-c32775fe3c2b)) + (pin "5" (uuid 91fb2cbb-76ee-44a6-a05c-11bf3844e7a8)) + (pin "6" (uuid 26238e76-f415-4a12-b37b-2642e535902b)) + (pin "7" (uuid 760332ac-4a77-4132-9043-689440041832)) + (pin "8" (uuid f3061a59-2a2e-48c2-83be-be5c24f85247)) + (pin "9" (uuid 121ada5b-9247-489e-8e29-414ee4fbaaa4)) + (pin "10" (uuid c4e5d2e6-c248-4edc-8767-560a5debbe73)) + (pin "11" (uuid 1102c65c-f502-469b-942d-3778819c6276)) + (pin "12" (uuid 2a2734ba-5df0-48dd-bcbc-14f07e36b931)) + (pin "13" (uuid 5698090d-f7a7-46f7-9ecf-f10ff327e1be)) + (pin "14" (uuid e07982f7-2784-4e90-938c-897e9f68290e)) + (pin "15" (uuid d309e85b-cadd-4b03-812d-3e28744ad142)) + (pin "16" (uuid 2fa3daf7-74ae-4fcd-8aeb-84b04d610379)) + (pin "17" (uuid 5c1e599c-6e18-406a-8e89-40a0bdd1c073)) + (pin "18" (uuid 3021ebc0-6be1-4293-80fc-cb814e596ae2)) + (pin "19" (uuid 3373d51d-9d5e-4d20-9526-52e730680405)) + (pin "20" (uuid b2e695d5-7b95-477a-8a9b-1030136bd0a7)) + (pin "21" (uuid b4162476-2c6b-470b-b96d-90c169724771)) + (pin "22" (uuid a1e7c3c2-5a97-4757-a7c6-91f94f950052)) + (pin "23" (uuid 8be02bc1-0e46-4ab5-9c67-fae013c90eda)) + (pin "24" (uuid 2acc3c04-0308-4f7d-8d9f-9325a3fe3523)) + (pin "25" (uuid d13ad332-38ab-4fd3-b76c-dd81983f51ce)) + (pin "26" (uuid 51f15064-4c91-4d5a-83c3-2b5cb08c6e00)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/67e8d88e-89e0-46c3-b7d7-b513dbf6f6ec" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/2ca42dea-f63a-4428-8307-d67b7067ef15" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/a8f74232-6c07-4993-aff1-3001e1450245" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/23bea16a-a09e-4388-b70a-53ee75819d60" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/38647086-594e-4480-b93f-4c1bd56c97f1" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/603ee269-f9f9-45b7-b21e-a7399148a05a" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/e2dbdbf0-cbdf-4397-b8e1-27ffffa0cdcd" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/a0a86731-e693-4288-9387-4f40e88a5a9b" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/04377789-344d-4a67-86a7-22a7459e74e4" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/414298a3-3a6c-4437-8d11-aa420d2d38db" + (reference "U3") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/ab2c3625-ade6-441f-ab5d-35f02397025c" + (reference "U4") (unit 1) (value "d_xor") (footprint "") + ) + (path "/035e00d1-7f2a-437c-983d-8afc5191c157" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/ca6fe9f8-f747-44a4-b325-9944d2c804c7" + (reference "U6") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/97c36ddf-8e52-4712-94e6-8a3a85ed7813" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9526369c-b3cc-4d32-b762-7f078602634f" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/dc8f2e01-2086-4d05-9dcb-2a86829e670a" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/MC14561B/MC14561B.sub b/library/SubcircuitLibrary/MC14561B/MC14561B.sub new file mode 100644 index 000000000..6a3304d16 --- /dev/null +++ b/library/SubcircuitLibrary/MC14561B/MC14561B.sub @@ -0,0 +1,38 @@ +* Subcircuit MC14561B +.subckt MC14561B net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad8_ +.title kicad schematic +* u2 net-_u1-pad4_ net-_u2-pad2_ d_inverter +* u3 net-_u1-pad3_ net-_u3-pad2_ d_buffer +* u5 net-_u2-pad2_ net-_u3-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad3_ net-_u1-pad2_ net-_u4-pad3_ d_xor +* u6 net-_u1-pad2_ net-_u6-pad2_ d_buffer +* u9 net-_u5-pad3_ net-_u6-pad2_ net-_u1-pad8_ d_and +* u7 net-_u1-pad1_ net-_u1-pad5_ d_inverter +* u8 net-_u2-pad2_ net-_u4-pad3_ net-_u1-pad7_ d_and +a1 net-_u1-pad4_ net-_u2-pad2_ u2 +a2 net-_u1-pad3_ net-_u3-pad2_ u3 +a3 [net-_u2-pad2_ net-_u3-pad2_ ] net-_u5-pad3_ u5 +a4 [net-_u1-pad3_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a5 net-_u1-pad2_ net-_u6-pad2_ u6 +a6 [net-_u5-pad3_ net-_u6-pad2_ ] net-_u1-pad8_ u9 +a7 net-_u1-pad1_ net-_u1-pad5_ u7 +a8 [net-_u2-pad2_ net-_u4-pad3_ ] net-_u1-pad7_ u8 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u4 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u6 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends MC14561B \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14561B/MC14561B_Previous_Values.xml b/library/SubcircuitLibrary/MC14561B/MC14561B_Previous_Values.xml new file mode 100644 index 000000000..53403f755 --- /dev/null +++ b/library/SubcircuitLibrary/MC14561B/MC14561B_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_bufferd_andd_xord_bufferd_andd_inverterd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC14561B/analysis b/library/SubcircuitLibrary/MC14561B/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/MC14561B/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC33171/D.lib b/library/SubcircuitLibrary/MC33171/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/MC33171/MC33171-cache.lib b/library/SubcircuitLibrary/MC33171/MC33171-cache.lib new file mode 100644 index 000000000..7ef67af75 --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/MC33171-cache.lib @@ -0,0 +1,158 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# PWR_FLAG +# +DEF PWR_FLAG #FLG 0 0 N N 1 F P +F0 "#FLG" 0 75 50 H I C CNN +F1 "PWR_FLAG" 0 150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +X pwr 1 0 0 0 U 50 50 0 0 w +P 6 0 1 0 0 0 0 50 -40 75 0 100 40 75 0 50 N +ENDDRAW +ENDDEF +# +# eSim_C +# +DEF eSim_C C 0 10 N Y 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_C" 25 -100 50 H V L CNN +F2 "" 38 -150 30 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS capacitor +$FPLIST + C_* +$ENDFPLIST +DRAW +P 2 0 1 20 -80 -30 80 -30 N +P 2 0 1 20 -80 30 80 30 N +X ~ 1 0 150 110 D 40 40 1 1 P +X ~ 2 0 -150 110 U 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_NPN +# +DEF eSim_NPN Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_NPN" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS BC547 Q2N2222 +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_PNP +# +DEF eSim_PNP Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_PNP" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 90 -70 70 -90 50 -50 90 -70 90 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC33171/MC33171.cir b/library/SubcircuitLibrary/MC33171/MC33171.cir new file mode 100644 index 000000000..249e9525d --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/MC33171.cir @@ -0,0 +1,43 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\MC33171\MC33171.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/16/26 11:42:47 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +Q7 Net-_C2-Pad2_ Net-_D1-Pad1_ Net-_Q7-Pad3_ eSim_NPN +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +Q4 Net-_Q3-Pad3_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +Q6 Net-_Q6-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +Q9 Net-_Q11-Pad3_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +Q12 Net-_Q10-Pad3_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +Q14 Net-_D2-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +Q2 Net-_Q10-Pad1_ Net-_Q1-Pad1_ Net-_Q1-Pad2_ eSim_PNP +Q3 Net-_Q10-Pad1_ Net-_Q3-Pad2_ Net-_Q3-Pad3_ eSim_PNP +Q8 Net-_C2-Pad2_ Net-_Q11-Pad3_ Net-_C1-Pad1_ eSim_PNP +Q5 Net-_D1-Pad1_ Net-_Q3-Pad3_ Net-_C1-Pad2_ eSim_PNP +R1 Net-_Q6-Pad1_ Net-_C1-Pad2_ 30M +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 86pf +R3 Net-_Q6-Pad1_ Net-_C1-Pad1_ 50K +Q11 Net-_Q10-Pad1_ Net-_Q11-Pad2_ Net-_Q11-Pad3_ eSim_PNP +R4 Net-_Q7-Pad3_ Net-_Q10-Pad1_ 200 +D1 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +R2 Net-_D1-Pad2_ Net-_Q10-Pad1_ 200 +Q13 Net-_D2-Pad1_ Net-_Q10-Pad3_ Net-_Q13-Pad3_ eSim_NPN +Q10 Net-_Q10-Pad1_ Net-_C2-Pad2_ Net-_Q10-Pad3_ eSim_PNP +Q16 Net-_D2-Pad2_ Net-_Q13-Pad3_ Net-_Q10-Pad1_ eSim_NPN +Q18 Net-_C2-Pad1_ Net-_Q13-Pad3_ Net-_Q10-Pad1_ eSim_NPN +R5 Net-_Q13-Pad3_ Net-_Q10-Pad1_ 22 +D2 Net-_D2-Pad1_ Net-_D2-Pad2_ eSim_Diode +Q15 Net-_Q1-Pad3_ Net-_D2-Pad1_ Net-_C2-Pad1_ eSim_NPN +Q17 Net-_D2-Pad1_ Net-_C2-Pad1_ Net-_Q17-Pad3_ eSim_NPN +R6 Net-_C2-Pad1_ Net-_D2-Pad2_ 2.5k +R7 Net-_Q17-Pad3_ Net-_C2-Pad1_ 2.5k +D3 Net-_C2-Pad1_ Net-_D2-Pad2_ eSim_Diode +R8 Net-_Q19-Pad3_ Net-_Q17-Pad3_ 37 +Q19 Net-_Q19-Pad1_ Net-_C2-Pad1_ Net-_Q19-Pad3_ eSim_PNP +C2 Net-_C2-Pad1_ Net-_C2-Pad2_ 15pf +U1 Net-_D1-Pad2_ Net-_Q3-Pad2_ Net-_Q11-Pad2_ Net-_Q10-Pad1_ Net-_Q7-Pad3_ Net-_Q17-Pad3_ Net-_Q1-Pad3_ ? PORT + +.end diff --git a/library/SubcircuitLibrary/MC33171/MC33171.cir.out b/library/SubcircuitLibrary/MC33171/MC33171.cir.out new file mode 100644 index 000000000..172c6081a --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/MC33171.cir.out @@ -0,0 +1,47 @@ +* c:\fossee\esim\library\subcircuitlibrary\mc33171\mc33171.cir + +.include D.lib +.include NPN.lib +.include PNP.lib +q7 net-_c2-pad2_ net-_d1-pad1_ net-_q7-pad3_ Q2N2222 +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q4 net-_q3-pad3_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q6 net-_q6-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q9 net-_q11-pad3_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q12 net-_q10-pad3_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q14 net-_d2-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q2 net-_q10-pad1_ net-_q1-pad1_ net-_q1-pad2_ Q2N2907A +q3 net-_q10-pad1_ net-_q3-pad2_ net-_q3-pad3_ Q2N2907A +q8 net-_c2-pad2_ net-_q11-pad3_ net-_c1-pad1_ Q2N2907A +q5 net-_d1-pad1_ net-_q3-pad3_ net-_c1-pad2_ Q2N2907A +r1 net-_q6-pad1_ net-_c1-pad2_ 30m +c1 net-_c1-pad1_ net-_c1-pad2_ 86pf +r3 net-_q6-pad1_ net-_c1-pad1_ 50k +q11 net-_q10-pad1_ net-_q11-pad2_ net-_q11-pad3_ Q2N2907A +r4 net-_q7-pad3_ net-_q10-pad1_ 200 +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +r2 net-_d1-pad2_ net-_q10-pad1_ 200 +q13 net-_d2-pad1_ net-_q10-pad3_ net-_q13-pad3_ Q2N2222 +q10 net-_q10-pad1_ net-_c2-pad2_ net-_q10-pad3_ Q2N2907A +q16 net-_d2-pad2_ net-_q13-pad3_ net-_q10-pad1_ Q2N2222 +q18 net-_c2-pad1_ net-_q13-pad3_ net-_q10-pad1_ Q2N2222 +r5 net-_q13-pad3_ net-_q10-pad1_ 22 +d2 net-_d2-pad1_ net-_d2-pad2_ 1N4148 +q15 net-_q1-pad3_ net-_d2-pad1_ net-_c2-pad1_ Q2N2222 +q17 net-_d2-pad1_ net-_c2-pad1_ net-_q17-pad3_ Q2N2222 +r6 net-_c2-pad1_ net-_d2-pad2_ 2.5k +r7 net-_q17-pad3_ net-_c2-pad1_ 2.5k +d3 net-_c2-pad1_ net-_d2-pad2_ 1N4148 +r8 net-_q19-pad3_ net-_q17-pad3_ 37 +q19 net-_q19-pad1_ net-_c2-pad1_ net-_q19-pad3_ Q2N2907A +c2 net-_c2-pad1_ net-_c2-pad2_ 15pf +* u1 net-_d1-pad2_ net-_q3-pad2_ net-_q11-pad2_ net-_q10-pad1_ net-_q7-pad3_ net-_q17-pad3_ net-_q1-pad3_ ? port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC33171/MC33171.pro b/library/SubcircuitLibrary/MC33171/MC33171.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/MC33171.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC33171/MC33171.sch b/library/SubcircuitLibrary/MC33171/MC33171.sch new file mode 100644 index 000000000..12b3c7f74 --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/MC33171.sch @@ -0,0 +1,777 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A2 23386 16535 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_NPN Q7 +U 1 1 6A080151 +P 9100 8350 +F 0 "Q7" H 9000 8400 50 0000 R CNN +F 1 "eSim_NPN" H 9050 8500 50 0000 R CNN +F 2 "" H 9300 8450 29 0000 C CNN +F 3 "" H 9100 8350 60 0000 C CNN + 1 9100 8350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_PNP Q1 +U 1 1 6A080178 +P 6000 4950 +F 0 "Q1" H 5900 5000 50 0000 R CNN +F 1 "eSim_PNP" H 5950 5100 50 0000 R CNN +F 2 "" H 6200 5050 29 0000 C CNN +F 3 "" H 6000 4950 60 0000 C CNN + 1 6000 4950 + -1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q4 +U 1 1 6A080281 +P 7400 4950 +F 0 "Q4" H 7300 5000 50 0000 R CNN +F 1 "eSim_PNP" H 7350 5100 50 0000 R CNN +F 2 "" H 7600 5050 29 0000 C CNN +F 3 "" H 7400 4950 60 0000 C CNN + 1 7400 4950 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q6 +U 1 1 6A080306 +P 8600 4950 +F 0 "Q6" H 8500 5000 50 0000 R CNN +F 1 "eSim_PNP" H 8550 5100 50 0000 R CNN +F 2 "" H 8800 5050 29 0000 C CNN +F 3 "" H 8600 4950 60 0000 C CNN + 1 8600 4950 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q9 +U 1 1 6A080366 +P 9700 4950 +F 0 "Q9" H 9600 5000 50 0000 R CNN +F 1 "eSim_PNP" H 9650 5100 50 0000 R CNN +F 2 "" H 9900 5050 29 0000 C CNN +F 3 "" H 9700 4950 60 0000 C CNN + 1 9700 4950 + -1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q12 +U 1 1 6A0803BF +P 11100 4900 +F 0 "Q12" H 11000 4950 50 0000 R CNN +F 1 "eSim_PNP" H 11050 5050 50 0000 R CNN +F 2 "" H 11300 5000 29 0000 C CNN +F 3 "" H 11100 4900 60 0000 C CNN + 1 11100 4900 + -1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q14 +U 1 1 6A08040D +P 12450 4900 +F 0 "Q14" H 12350 4950 50 0000 R CNN +F 1 "eSim_PNP" H 12400 5050 50 0000 R CNN +F 2 "" H 12650 5000 29 0000 C CNN +F 3 "" H 12450 4900 60 0000 C CNN + 1 12450 4900 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q2 +U 1 1 6A0806B0 +P 6850 5650 +F 0 "Q2" H 6750 5700 50 0000 R CNN +F 1 "eSim_PNP" H 6800 5800 50 0000 R CNN +F 2 "" H 7050 5750 29 0000 C CNN +F 3 "" H 6850 5650 60 0000 C CNN + 1 6850 5650 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q3 +U 1 1 6A08070E +P 7300 6250 +F 0 "Q3" H 7200 6300 50 0000 R CNN +F 1 "eSim_PNP" H 7250 6400 50 0000 R CNN +F 2 "" H 7500 6350 29 0000 C CNN +F 3 "" H 7300 6250 60 0000 C CNN + 1 7300 6250 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q8 +U 1 1 6A0807EC +P 9300 6300 +F 0 "Q8" H 9200 6350 50 0000 R CNN +F 1 "eSim_PNP" H 9250 6450 50 0000 R CNN +F 2 "" H 9500 6400 29 0000 C CNN +F 3 "" H 9300 6300 60 0000 C CNN + 1 9300 6300 + -1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q5 +U 1 1 6A080842 +P 8100 6350 +F 0 "Q5" H 8000 6400 50 0000 R CNN +F 1 "eSim_PNP" H 8050 6500 50 0000 R CNN +F 2 "" H 8300 6450 29 0000 C CNN +F 3 "" H 8100 6350 60 0000 C CNN + 1 8100 6350 + 1 0 0 1 +$EndComp +$Comp +L resistor R1 +U 1 1 6A08087A +P 8150 5750 +F 0 "R1" H 8200 5880 50 0000 C CNN +F 1 "30M" H 8200 5700 50 0000 C CNN +F 2 "" H 8200 5730 30 0000 C CNN +F 3 "" V 8200 5800 30 0000 C CNN + 1 8150 5750 + 0 1 1 0 +$EndComp +$Comp +L capacitor C1 +U 1 1 6A0808B3 +P 8700 5750 +F 0 "C1" H 8725 5850 50 0000 L CNN +F 1 "86pf" H 8725 5650 50 0000 L CNN +F 2 "" H 8738 5600 30 0000 C CNN +F 3 "" H 8700 5750 60 0000 C CNN + 1 8700 5750 + 0 1 1 0 +$EndComp +$Comp +L resistor R3 +U 1 1 6A0809A6 +P 9150 5750 +F 0 "R3" H 9200 5880 50 0000 C CNN +F 1 "50K" H 9200 5700 50 0000 C CNN +F 2 "" H 9200 5730 30 0000 C CNN +F 3 "" V 9200 5800 30 0000 C CNN + 1 9150 5750 + 0 1 1 0 +$EndComp +$Comp +L eSim_PNP Q11 +U 1 1 6A080FDC +P 10900 6100 +F 0 "Q11" H 10800 6150 50 0000 R CNN +F 1 "eSim_PNP" H 10850 6250 50 0000 R CNN +F 2 "" H 11100 6200 29 0000 C CNN +F 3 "" H 10900 6100 60 0000 C CNN + 1 10900 6100 + -1 0 0 1 +$EndComp +$Comp +L resistor R4 +U 1 1 6A081799 +P 9150 8900 +F 0 "R4" H 9200 9030 50 0000 C CNN +F 1 "200" H 9200 8850 50 0000 C CNN +F 2 "" H 9200 8880 30 0000 C CNN +F 3 "" V 9200 8950 30 0000 C CNN + 1 9150 8900 + 0 1 1 0 +$EndComp +$Comp +L eSim_Diode D1 +U 1 1 6A08187A +P 8450 8650 +F 0 "D1" H 8450 8750 50 0000 C CNN +F 1 "eSim_Diode" H 8450 8550 50 0000 C CNN +F 2 "" H 8450 8650 60 0000 C CNN +F 3 "" H 8450 8650 60 0000 C CNN + 1 8450 8650 + 0 1 1 0 +$EndComp +$Comp +L resistor R2 +U 1 1 6A0819B0 +P 8400 9000 +F 0 "R2" H 8450 9130 50 0000 C CNN +F 1 "200" H 8450 8950 50 0000 C CNN +F 2 "" H 8450 8980 30 0000 C CNN +F 3 "" V 8450 9050 30 0000 C CNN + 1 8400 9000 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q13 +U 1 1 6A081FA1 +P 12000 7550 +F 0 "Q13" H 11900 7600 50 0000 R CNN +F 1 "eSim_NPN" H 11950 7700 50 0000 R CNN +F 2 "" H 12200 7650 29 0000 C CNN +F 3 "" H 12000 7550 60 0000 C CNN + 1 12000 7550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_PNP Q10 +U 1 1 6A082031 +P 9900 7900 +F 0 "Q10" H 9800 7950 50 0000 R CNN +F 1 "eSim_PNP" H 9850 8050 50 0000 R CNN +F 2 "" H 10100 8000 29 0000 C CNN +F 3 "" H 9900 7900 60 0000 C CNN + 1 9900 7900 + 1 0 0 1 +$EndComp +$Comp +L eSim_NPN Q16 +U 1 1 6A0823DD +P 13100 7800 +F 0 "Q16" H 13000 7850 50 0000 R CNN +F 1 "eSim_NPN" H 13050 7950 50 0000 R CNN +F 2 "" H 13300 7900 29 0000 C CNN +F 3 "" H 13100 7800 60 0000 C CNN + 1 13100 7800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q18 +U 1 1 6A08243C +P 13900 7800 +F 0 "Q18" H 13800 7850 50 0000 R CNN +F 1 "eSim_NPN" H 13850 7950 50 0000 R CNN +F 2 "" H 14100 7900 29 0000 C CNN +F 3 "" H 13900 7800 60 0000 C CNN + 1 13900 7800 + 1 0 0 -1 +$EndComp +$Comp +L resistor R5 +U 1 1 6A0828E3 +P 12600 8450 +F 0 "R5" H 12650 8580 50 0000 C CNN +F 1 "22" H 12650 8400 50 0000 C CNN +F 2 "" H 12650 8430 30 0000 C CNN +F 3 "" V 12650 8500 30 0000 C CNN + 1 12600 8450 + 0 1 1 0 +$EndComp +$Comp +L eSim_Diode D2 +U 1 1 6A082D30 +P 12550 5550 +F 0 "D2" H 12550 5650 50 0000 C CNN +F 1 "eSim_Diode" H 12550 5450 50 0000 C CNN +F 2 "" H 12550 5550 60 0000 C CNN +F 3 "" H 12550 5550 60 0000 C CNN + 1 12550 5550 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q15 +U 1 1 6A0831FF +P 12950 5250 +F 0 "Q15" H 12850 5300 50 0000 R CNN +F 1 "eSim_NPN" H 12900 5400 50 0000 R CNN +F 2 "" H 13150 5350 29 0000 C CNN +F 3 "" H 12950 5250 60 0000 C CNN + 1 12950 5250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q17 +U 1 1 6A0832ED +P 13800 5700 +F 0 "Q17" H 13700 5750 50 0000 R CNN +F 1 "eSim_NPN" H 13750 5850 50 0000 R CNN +F 2 "" H 14000 5800 29 0000 C CNN +F 3 "" H 13800 5700 60 0000 C CNN + 1 13800 5700 + 1 0 0 -1 +$EndComp +$Comp +L resistor R6 +U 1 1 6A083718 +P 12850 5950 +F 0 "R6" H 12900 6080 50 0000 C CNN +F 1 "2.5k" H 12900 5900 50 0000 C CNN +F 2 "" H 12900 5930 30 0000 C CNN +F 3 "" V 12900 6000 30 0000 C CNN + 1 12850 5950 + -1 0 0 1 +$EndComp +$Comp +L resistor R7 +U 1 1 6A083877 +P 13500 6000 +F 0 "R7" H 13550 6130 50 0000 C CNN +F 1 "2.5k" H 13550 5950 50 0000 C CNN +F 2 "" H 13550 5980 30 0000 C CNN +F 3 "" V 13550 6050 30 0000 C CNN + 1 13500 6000 + -1 0 0 1 +$EndComp +$Comp +L eSim_Diode D3 +U 1 1 6A083903 +P 12800 6450 +F 0 "D3" H 12800 6550 50 0000 C CNN +F 1 "eSim_Diode" H 12800 6350 50 0000 C CNN +F 2 "" H 12800 6450 60 0000 C CNN +F 3 "" H 12800 6450 60 0000 C CNN + 1 12800 6450 + -1 0 0 1 +$EndComp +$Comp +L resistor R8 +U 1 1 6A083F96 +P 13950 6900 +F 0 "R8" H 14000 7030 50 0000 C CNN +F 1 "37" H 14000 6850 50 0000 C CNN +F 2 "" H 14000 6880 30 0000 C CNN +F 3 "" V 14000 6950 30 0000 C CNN + 1 13950 6900 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_PNP Q19 +U 1 1 6A08477C +P 14700 7300 +F 0 "Q19" H 14600 7350 50 0000 R CNN +F 1 "eSim_PNP" H 14650 7450 50 0000 R CNN +F 2 "" H 14900 7400 29 0000 C CNN +F 3 "" H 14700 7300 60 0000 C CNN + 1 14700 7300 + 1 0 0 1 +$EndComp +$Comp +L capacitor C2 +U 1 1 6A084A23 +P 12350 6950 +F 0 "C2" H 12375 7050 50 0000 L CNN +F 1 "15pf" H 12375 6850 50 0000 L CNN +F 2 "" H 12388 6800 30 0000 C CNN +F 3 "" H 12350 6950 60 0000 C CNN + 1 12350 6950 + 0 1 1 0 +$EndComp +Connection ~ 8450 8350 +Connection ~ 5900 5650 +Wire Wire Line + 6650 5650 5900 5650 +Wire Wire Line + 5900 5150 5900 5850 +Wire Wire Line + 14800 7500 14800 7650 +Wire Wire Line + 14500 7200 14500 7300 +Connection ~ 13050 7200 +Wire Wire Line + 13000 7200 14500 7200 +Wire Wire Line + 13000 6950 13000 7200 +Wire Wire Line + 12500 6950 13000 6950 +Connection ~ 9200 7000 +Wire Wire Line + 12200 7000 12200 6950 +Wire Wire Line + 9200 7000 12200 7000 +Wire Wire Line + 14800 7000 14800 7100 +Wire Wire Line + 13900 7000 14800 7000 +Connection ~ 13900 6050 +Wire Wire Line + 13600 6050 14200 6050 +Wire Wire Line + 13900 5900 13900 6700 +Wire Wire Line + 13300 6000 13300 6050 +Connection ~ 13050 6000 +Wire Wire Line + 12950 6000 13300 6000 +Wire Wire Line + 14000 7450 14000 7600 +Wire Wire Line + 13050 7450 14000 7450 +Connection ~ 12550 6450 +Wire Wire Line + 12650 6450 12550 6450 +Connection ~ 12550 6000 +Wire Wire Line + 12650 6000 12550 6000 +Wire Wire Line + 12550 7600 13200 7600 +Wire Wire Line + 12550 5700 12550 7600 +Connection ~ 13050 5700 +Wire Wire Line + 13600 5700 13050 5700 +Wire Wire Line + 13050 5450 13050 7450 +Connection ~ 12700 5250 +Wire Wire Line + 12700 5500 13900 5500 +Wire Wire Line + 12700 5250 12700 5500 +Connection ~ 12550 4450 +Wire Wire Line + 13050 4450 13050 5050 +Connection ~ 12550 5250 +Wire Wire Line + 12100 5250 12750 5250 +Wire Wire Line + 12100 7350 12100 5250 +Wire Wire Line + 12550 5100 12550 5400 +Connection ~ 12650 9400 +Wire Wire Line + 12650 8650 12650 9400 +Connection ~ 13200 9400 +Wire Wire Line + 14000 9400 14000 8000 +Connection ~ 10000 9400 +Wire Wire Line + 13200 9400 13200 8000 +Connection ~ 12650 7750 +Wire Wire Line + 12650 7750 12650 8350 +Connection ~ 12800 7750 +Wire Wire Line + 13700 8050 13700 7800 +Wire Wire Line + 12800 8050 13700 8050 +Wire Wire Line + 12800 7750 12800 8050 +Wire Wire Line + 12900 7750 12900 7800 +Wire Wire Line + 12100 7750 12900 7750 +Connection ~ 11550 7550 +Wire Wire Line + 11550 5500 11550 7550 +Wire Wire Line + 11000 5500 11550 5500 +Wire Wire Line + 11000 5100 11000 5500 +Wire Wire Line + 10000 7550 11800 7550 +Wire Wire Line + 10000 7700 10000 7550 +Connection ~ 9200 9400 +Wire Wire Line + 10000 9400 10000 8100 +Connection ~ 9200 7900 +Wire Wire Line + 9700 7900 9200 7900 +Connection ~ 8450 9400 +Wire Wire Line + 9200 9400 9200 9100 +Wire Wire Line + 6950 9400 15200 9400 +Wire Wire Line + 8450 9200 8450 9400 +Connection ~ 9200 8750 +Wire Wire Line + 9000 8750 9000 9600 +Wire Wire Line + 9200 8750 9000 8750 +Connection ~ 8450 8850 +Wire Wire Line + 8150 8850 8150 9550 +Wire Wire Line + 8450 8850 8150 8850 +Wire Wire Line + 9200 8550 9200 8800 +Wire Wire Line + 8450 8800 8450 8900 +Wire Wire Line + 8200 8350 8900 8350 +Wire Wire Line + 8450 8500 8450 8350 +Connection ~ 8800 6750 +Connection ~ 6950 7550 +Wire Wire Line + 8800 7550 6950 7550 +Wire Wire Line + 8800 6750 8800 7550 +Wire Wire Line + 6950 5850 6950 9400 +Wire Wire Line + 11100 7100 5600 7100 +Wire Wire Line + 11100 6100 11100 7100 +Wire Wire Line + 8200 6550 8200 8350 +Wire Wire Line + 9200 6500 9200 8150 +Wire Wire Line + 10800 6750 10800 6300 +Connection ~ 9600 5800 +Wire Wire Line + 10800 5800 10800 5900 +Wire Wire Line + 9600 5800 10800 5800 +Wire Wire Line + 9600 6300 9600 5150 +Wire Wire Line + 9500 6300 9600 6300 +Wire Wire Line + 7100 6250 5600 6250 +Wire Wire Line + 7400 6750 10800 6750 +Wire Wire Line + 7400 6450 7400 6750 +Connection ~ 7400 5800 +Wire Wire Line + 7900 5800 7400 5800 +Wire Wire Line + 7900 6350 7900 5800 +Wire Wire Line + 7500 5350 7500 5150 +Wire Wire Line + 7400 5350 7500 5350 +Wire Wire Line + 7400 6050 7400 5350 +Connection ~ 9200 6050 +Wire Wire Line + 8950 6050 9200 6050 +Wire Wire Line + 8950 5750 8950 6050 +Wire Wire Line + 8850 5750 8950 5750 +Connection ~ 8200 6050 +Wire Wire Line + 8450 5750 8550 5750 +Wire Wire Line + 8450 6050 8450 5750 +Wire Wire Line + 8200 6050 8450 6050 +Connection ~ 8700 5450 +Wire Wire Line + 8700 5150 8700 5450 +Wire Wire Line + 9200 5450 9200 5650 +Wire Wire Line + 8200 5450 9200 5450 +Wire Wire Line + 8200 5650 8200 5450 +Wire Wire Line + 9200 6100 9200 5950 +Wire Wire Line + 8200 6150 8200 5950 +Connection ~ 6950 4950 +Wire Wire Line + 6950 4950 6950 5450 +Connection ~ 8400 5250 +Wire Wire Line + 7200 4950 7200 5250 +Connection ~ 9900 5250 +Wire Wire Line + 8400 4950 8400 5250 +Wire Wire Line + 11300 5250 11300 4900 +Wire Wire Line + 7200 5250 11300 5250 +Wire Wire Line + 9900 4950 9900 5250 +Wire Wire Line + 11300 4900 12250 4900 +Connection ~ 11000 4450 +Wire Wire Line + 11000 4700 11000 4450 +Connection ~ 9600 4450 +Wire Wire Line + 9600 4750 9600 4450 +Connection ~ 8700 4450 +Wire Wire Line + 8700 4750 8700 4450 +Connection ~ 7500 4450 +Wire Wire Line + 7500 4750 7500 4450 +Wire Wire Line + 12550 4450 12550 4700 +Wire Wire Line + 5900 4450 15200 4450 +Wire Wire Line + 5900 4750 5900 4450 +Wire Wire Line + 6200 4950 7200 4950 +Connection ~ 13050 4450 +Connection ~ 14000 9400 +$Comp +L PORT U1 +U 4 1 6A089601 +P 15200 9650 +F 0 "U1" H 15250 9750 30 0000 C CNN +F 1 "PORT" H 15200 9650 30 0000 C CNN +F 2 "" H 15200 9650 60 0000 C CNN +F 3 "" H 15200 9650 60 0000 C CNN + 4 15200 9650 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 5 1 6A089908 +P 8750 9600 +F 0 "U1" H 8800 9700 30 0000 C CNN +F 1 "PORT" H 8750 9600 30 0000 C CNN +F 2 "" H 8750 9600 60 0000 C CNN +F 3 "" H 8750 9600 60 0000 C CNN + 5 8750 9600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 6A089A61 +P 14450 6050 +F 0 "U1" H 14500 6150 30 0000 C CNN +F 1 "PORT" H 14450 6050 30 0000 C CNN +F 2 "" H 14450 6050 60 0000 C CNN +F 3 "" H 14450 6050 60 0000 C CNN + 6 14450 6050 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 6A089C2E +P 4600 5300 +F 0 "U1" H 4650 5400 30 0000 C CNN +F 1 "PORT" H 4600 5300 30 0000 C CNN +F 2 "" H 4600 5300 60 0000 C CNN +F 3 "" H 4600 5300 60 0000 C CNN + 8 4600 5300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 6A089C99 +P 7900 9550 +F 0 "U1" H 7950 9650 30 0000 C CNN +F 1 "PORT" H 7900 9550 30 0000 C CNN +F 2 "" H 7900 9550 60 0000 C CNN +F 3 "" H 7900 9550 60 0000 C CNN + 1 7900 9550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6A089E61 +P 5350 7100 +F 0 "U1" H 5400 7200 30 0000 C CNN +F 1 "PORT" H 5350 7100 30 0000 C CNN +F 2 "" H 5350 7100 60 0000 C CNN +F 3 "" H 5350 7100 60 0000 C CNN + 3 5350 7100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 6A089ED4 +P 5350 6250 +F 0 "U1" H 5400 6350 30 0000 C CNN +F 1 "PORT" H 5350 6250 30 0000 C CNN +F 2 "" H 5350 6250 60 0000 C CNN +F 3 "" H 5350 6250 60 0000 C CNN + 2 5350 6250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 6A089F4B +P 15450 4450 +F 0 "U1" H 15500 4550 30 0000 C CNN +F 1 "PORT" H 15450 4450 30 0000 C CNN +F 2 "" H 15450 4450 60 0000 C CNN +F 3 "" H 15450 4450 60 0000 C CNN + 7 15450 4450 + -1 0 0 1 +$EndComp +Wire Wire Line + 4850 5300 5100 5300 +NoConn ~ 5100 5300 +Wire Wire Line + 12950 6450 13050 6450 +Connection ~ 13050 6450 +$Comp +L PWR_FLAG #FLG01 +U 1 1 6A08EB45 +P 5650 5800 +F 0 "#FLG01" H 5650 5875 50 0001 C CNN +F 1 "PWR_FLAG" H 5650 5950 50 0000 C CNN +F 2 "" H 5650 5800 50 0001 C CNN +F 3 "" H 5650 5800 50 0001 C CNN + 1 5650 5800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5650 5800 5650 5850 +Wire Wire Line + 5650 5850 5900 5850 +$Comp +L PWR_FLAG #FLG02 +U 1 1 6A08F029 +P 15200 7600 +F 0 "#FLG02" H 15200 7675 50 0001 C CNN +F 1 "PWR_FLAG" H 15200 7750 50 0000 C CNN +F 2 "" H 15200 7600 50 0001 C CNN +F 3 "" H 15200 7600 50 0001 C CNN + 1 15200 7600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 14800 7650 15200 7650 +Wire Wire Line + 15200 7650 15200 7600 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC33171/MC33171.sub b/library/SubcircuitLibrary/MC33171/MC33171.sub new file mode 100644 index 000000000..6c9c2ca39 --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/MC33171.sub @@ -0,0 +1,41 @@ +* Subcircuit MC33171 +.subckt MC33171 net-_d1-pad2_ net-_q3-pad2_ net-_q11-pad2_ net-_q10-pad1_ net-_q7-pad3_ net-_q17-pad3_ net-_q1-pad3_ ? +* c:\fossee\esim\library\subcircuitlibrary\mc33171\mc33171.cir +.include D.lib +.include NPN.lib +.include PNP.lib +q7 net-_c2-pad2_ net-_d1-pad1_ net-_q7-pad3_ Q2N2222 +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q4 net-_q3-pad3_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q6 net-_q6-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q9 net-_q11-pad3_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q12 net-_q10-pad3_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q14 net-_d2-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q2 net-_q10-pad1_ net-_q1-pad1_ net-_q1-pad2_ Q2N2907A +q3 net-_q10-pad1_ net-_q3-pad2_ net-_q3-pad3_ Q2N2907A +q8 net-_c2-pad2_ net-_q11-pad3_ net-_c1-pad1_ Q2N2907A +q5 net-_d1-pad1_ net-_q3-pad3_ net-_c1-pad2_ Q2N2907A +r1 net-_q6-pad1_ net-_c1-pad2_ 30m +c1 net-_c1-pad1_ net-_c1-pad2_ 86pf +r3 net-_q6-pad1_ net-_c1-pad1_ 50k +q11 net-_q10-pad1_ net-_q11-pad2_ net-_q11-pad3_ Q2N2907A +r4 net-_q7-pad3_ net-_q10-pad1_ 200 +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +r2 net-_d1-pad2_ net-_q10-pad1_ 200 +q13 net-_d2-pad1_ net-_q10-pad3_ net-_q13-pad3_ Q2N2222 +q10 net-_q10-pad1_ net-_c2-pad2_ net-_q10-pad3_ Q2N2907A +q16 net-_d2-pad2_ net-_q13-pad3_ net-_q10-pad1_ Q2N2222 +q18 net-_c2-pad1_ net-_q13-pad3_ net-_q10-pad1_ Q2N2222 +r5 net-_q13-pad3_ net-_q10-pad1_ 22 +d2 net-_d2-pad1_ net-_d2-pad2_ 1N4148 +q15 net-_q1-pad3_ net-_d2-pad1_ net-_c2-pad1_ Q2N2222 +q17 net-_d2-pad1_ net-_c2-pad1_ net-_q17-pad3_ Q2N2222 +r6 net-_c2-pad1_ net-_d2-pad2_ 2.5k +r7 net-_q17-pad3_ net-_c2-pad1_ 2.5k +d3 net-_c2-pad1_ net-_d2-pad2_ 1N4148 +r8 net-_q19-pad3_ net-_q17-pad3_ 37 +q19 net-_q19-pad1_ net-_c2-pad1_ net-_q19-pad3_ Q2N2907A +c2 net-_c2-pad1_ net-_c2-pad2_ 15pf +* Control Statements + +.ends MC33171 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC33171/MC33171_Previous_Values.xml b/library/SubcircuitLibrary/MC33171/MC33171_Previous_Values.xml new file mode 100644 index 000000000..181d66bf6 --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/MC33171_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperessecsecsecC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.lib \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC33171/NPN.lib b/library/SubcircuitLibrary/MC33171/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/MC33171/PNP.lib b/library/SubcircuitLibrary/MC33171/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/MC33171/analysis b/library/SubcircuitLibrary/MC33171/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/MC33171/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC3340/D.lib b/library/SubcircuitLibrary/MC3340/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/MC3340/MC3340-cache.lib b/library/SubcircuitLibrary/MC3340/MC3340-cache.lib new file mode 100644 index 000000000..6615a3fcb --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340-cache.lib @@ -0,0 +1,120 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_GND +# +DEF eSim_GND #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -250 50 H I C CNN +F1 "eSim_GND" 0 -150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N +X GND 1 0 0 0 D 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# eSim_NPN +# +DEF eSim_NPN Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_NPN" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS BC547 Q2N2222 +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC3340/MC3340.cir b/library/SubcircuitLibrary/MC3340/MC3340.cir new file mode 100644 index 000000000..04864799d --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340.cir @@ -0,0 +1,40 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\MC3340\MC3340.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/05/25 17:24:07 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +R1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ 5.1K +R2 Net-_Q1-Pad2_ GND 4.7K +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_NPN +R3 Net-_Q1-Pad3_ Net-_Q2-Pad2_ 750 +R4 Net-_Q2-Pad2_ GND 10K +Q2 Net-_Q1-Pad1_ Net-_Q2-Pad2_ Net-_Q2-Pad3_ eSim_NPN +R6 Net-_Q1-Pad3_ Net-_Q3-Pad2_ 750 +R7 Net-_Q3-Pad2_ Net-_R7-Pad2_ 3.9K +Q3 Net-_Q1-Pad1_ Net-_Q3-Pad2_ Net-_Q3-Pad3_ eSim_NPN +R8 Net-_Q1-Pad1_ Net-_R5-Pad2_ 5.1K +Q4 Net-_Q1-Pad1_ Net-_Q3-Pad3_ Net-_Q4-Pad3_ eSim_NPN +Q6 Net-_Q10-Pad2_ Net-_Q2-Pad3_ Net-_Q4-Pad3_ eSim_NPN +Q7 Net-_Q1-Pad1_ Net-_Q2-Pad3_ Net-_Q7-Pad3_ eSim_NPN +Q9 Net-_Q9-Pad1_ Net-_Q3-Pad3_ Net-_Q7-Pad3_ eSim_NPN +R13 Net-_Q1-Pad1_ Net-_Q9-Pad1_ 6.2k +Q10 Net-_Q1-Pad1_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_NPN +R15 Net-_Q10-Pad3_ GND 5.1k +R16 Net-_Q1-Pad1_ Net-_D1-Pad1_ 5.1k +R11 Net-_Q2-Pad3_ GND 5.1k +R14 Net-_Q3-Pad3_ GND 5.1k +R18 Net-_R18-Pad1_ Net-_Q10-Pad3_ 200 +D1 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +R17 Net-_D1-Pad2_ GND 510 +Q8 Net-_Q7-Pad3_ Net-_D1-Pad1_ Net-_Q8-Pad3_ eSim_NPN +R12 Net-_Q8-Pad3_ GND 1.5k +Q5 Net-_Q4-Pad3_ Net-_Q5-Pad2_ Net-_Q5-Pad3_ eSim_NPN +R10 Net-_Q5-Pad3_ GND 1.3k +R5 Net-_Q5-Pad2_ Net-_R5-Pad2_ 20K +R9 Net-_R5-Pad2_ GND 510 +U1 Net-_Q5-Pad2_ Net-_R7-Pad2_ ? ? ? Net-_Q10-Pad2_ Net-_R18-Pad1_ Net-_Q1-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/MC3340/MC3340.cir.out b/library/SubcircuitLibrary/MC3340/MC3340.cir.out new file mode 100644 index 000000000..aaddad9d0 --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340.cir.out @@ -0,0 +1,43 @@ +* c:\fossee\esim\library\subcircuitlibrary\mc3340\mc3340.cir + +.include D.lib +.include NPN.lib +r1 net-_q1-pad1_ net-_q1-pad2_ 5.1k +r2 net-_q1-pad2_ gnd 4.7k +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +r3 net-_q1-pad3_ net-_q2-pad2_ 750 +r4 net-_q2-pad2_ gnd 10k +q2 net-_q1-pad1_ net-_q2-pad2_ net-_q2-pad3_ Q2N2222 +r6 net-_q1-pad3_ net-_q3-pad2_ 750 +r7 net-_q3-pad2_ net-_r7-pad2_ 3.9k +q3 net-_q1-pad1_ net-_q3-pad2_ net-_q3-pad3_ Q2N2222 +r8 net-_q1-pad1_ net-_r5-pad2_ 5.1k +q4 net-_q1-pad1_ net-_q3-pad3_ net-_q4-pad3_ Q2N2222 +q6 net-_q10-pad2_ net-_q2-pad3_ net-_q4-pad3_ Q2N2222 +q7 net-_q1-pad1_ net-_q2-pad3_ net-_q7-pad3_ Q2N2222 +q9 net-_q9-pad1_ net-_q3-pad3_ net-_q7-pad3_ Q2N2222 +r13 net-_q1-pad1_ net-_q9-pad1_ 6.2k +q10 net-_q1-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +r15 net-_q10-pad3_ gnd 5.1k +r16 net-_q1-pad1_ net-_d1-pad1_ 5.1k +r11 net-_q2-pad3_ gnd 5.1k +r14 net-_q3-pad3_ gnd 5.1k +r18 net-_r18-pad1_ net-_q10-pad3_ 200 +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +r17 net-_d1-pad2_ gnd 510 +q8 net-_q7-pad3_ net-_d1-pad1_ net-_q8-pad3_ Q2N2222 +r12 net-_q8-pad3_ gnd 1.5k +q5 net-_q4-pad3_ net-_q5-pad2_ net-_q5-pad3_ Q2N2222 +r10 net-_q5-pad3_ gnd 1.3k +r5 net-_q5-pad2_ net-_r5-pad2_ 20k +r9 net-_r5-pad2_ gnd 510 +* u1 net-_q5-pad2_ net-_r7-pad2_ ? ? ? net-_q10-pad2_ net-_r18-pad1_ net-_q1-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MC3340/MC3340.pro b/library/SubcircuitLibrary/MC3340/MC3340.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC3340/MC3340.proj b/library/SubcircuitLibrary/MC3340/MC3340.proj new file mode 100644 index 000000000..8ac98f15e --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340.proj @@ -0,0 +1 @@ +schematicFile MC3340.sch diff --git a/library/SubcircuitLibrary/MC3340/MC3340.sch b/library/SubcircuitLibrary/MC3340/MC3340.sch new file mode 100644 index 000000000..9a72dc614 --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340.sch @@ -0,0 +1,715 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L resistor R1 +U 1 1 6840219C +P 1900 1850 +F 0 "R1" H 1950 1980 50 0000 C CNN +F 1 "5.1K" H 1950 1800 50 0000 C CNN +F 2 "" H 1950 1830 30 0000 C CNN +F 3 "" V 1950 1900 30 0000 C CNN + 1 1900 1850 + 0 1 1 0 +$EndComp +$Comp +L resistor R2 +U 1 1 684022BB +P 1900 2400 +F 0 "R2" H 1950 2530 50 0000 C CNN +F 1 "4.7K" H 1950 2350 50 0000 C CNN +F 2 "" H 1950 2380 30 0000 C CNN +F 3 "" V 1950 2450 30 0000 C CNN + 1 1900 2400 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q1 +U 1 1 684022DD +P 2500 2200 +F 0 "Q1" H 2400 2250 50 0000 R CNN +F 1 "eSim_NPN" H 2450 2350 50 0000 R CNN +F 2 "" H 2700 2300 29 0000 C CNN +F 3 "" H 2500 2200 60 0000 C CNN + 1 2500 2200 + 1 0 0 -1 +$EndComp +$Comp +L resistor R3 +U 1 1 68402320 +P 2800 2750 +F 0 "R3" H 2850 2880 50 0000 C CNN +F 1 "750" H 2850 2700 50 0000 C CNN +F 2 "" H 2850 2730 30 0000 C CNN +F 3 "" V 2850 2800 30 0000 C CNN + 1 2800 2750 + 0 1 1 0 +$EndComp +$Comp +L resistor R4 +U 1 1 68402512 +P 2800 3300 +F 0 "R4" H 2850 3430 50 0000 C CNN +F 1 "10K" H 2850 3250 50 0000 C CNN +F 2 "" H 2850 3280 30 0000 C CNN +F 3 "" V 2850 3350 30 0000 C CNN + 1 2800 3300 + 0 1 1 0 +$EndComp +$Comp +L eSim_GND #PWR01 +U 1 1 6840255A +P 1950 2800 +F 0 "#PWR01" H 1950 2550 50 0001 C CNN +F 1 "eSim_GND" H 1950 2650 50 0000 C CNN +F 2 "" H 1950 2800 50 0001 C CNN +F 3 "" H 1950 2800 50 0001 C CNN + 1 1950 2800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR02 +U 1 1 684025CC +P 2850 3650 +F 0 "#PWR02" H 2850 3400 50 0001 C CNN +F 1 "eSim_GND" H 2850 3500 50 0000 C CNN +F 2 "" H 2850 3650 50 0001 C CNN +F 3 "" H 2850 3650 50 0001 C CNN + 1 2850 3650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q2 +U 1 1 684025F7 +P 3400 3100 +F 0 "Q2" H 3300 3150 50 0000 R CNN +F 1 "eSim_NPN" H 3350 3250 50 0000 R CNN +F 2 "" H 3600 3200 29 0000 C CNN +F 3 "" H 3400 3100 60 0000 C CNN + 1 3400 3100 + 1 0 0 -1 +$EndComp +$Comp +L resistor R6 +U 1 1 684027FF +P 3850 2750 +F 0 "R6" H 3900 2880 50 0000 C CNN +F 1 "750" H 3900 2700 50 0000 C CNN +F 2 "" H 3900 2730 30 0000 C CNN +F 3 "" V 3900 2800 30 0000 C CNN + 1 3850 2750 + 0 1 1 0 +$EndComp +$Comp +L resistor R7 +U 1 1 6840283A +P 3850 3350 +F 0 "R7" H 3900 3480 50 0000 C CNN +F 1 "3.9K" H 3900 3300 50 0000 C CNN +F 2 "" H 3900 3330 30 0000 C CNN +F 3 "" V 3900 3400 30 0000 C CNN + 1 3850 3350 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q3 +U 1 1 684028AE +P 4450 3050 +F 0 "Q3" H 4350 3100 50 0000 R CNN +F 1 "eSim_NPN" H 4400 3200 50 0000 R CNN +F 2 "" H 4650 3150 29 0000 C CNN +F 3 "" H 4450 3050 60 0000 C CNN + 1 4450 3050 + 1 0 0 -1 +$EndComp +$Comp +L resistor R8 +U 1 1 6840290F +P 4100 1650 +F 0 "R8" H 4150 1780 50 0000 C CNN +F 1 "5.1K" H 4150 1600 50 0000 C CNN +F 2 "" H 4150 1630 30 0000 C CNN +F 3 "" V 4150 1700 30 0000 C CNN + 1 4100 1650 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q4 +U 1 1 68402ECE +P 5000 3350 +F 0 "Q4" H 4900 3400 50 0000 R CNN +F 1 "eSim_NPN" H 4950 3500 50 0000 R CNN +F 2 "" H 5200 3450 29 0000 C CNN +F 3 "" H 5000 3350 60 0000 C CNN + 1 5000 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q6 +U 1 1 68402F17 +P 5650 3350 +F 0 "Q6" H 5550 3400 50 0000 R CNN +F 1 "eSim_NPN" H 5600 3500 50 0000 R CNN +F 2 "" H 5850 3450 29 0000 C CNN +F 3 "" H 5650 3350 60 0000 C CNN + 1 5650 3350 + -1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q7 +U 1 1 68403375 +P 6550 3350 +F 0 "Q7" H 6450 3400 50 0000 R CNN +F 1 "eSim_NPN" H 6500 3500 50 0000 R CNN +F 2 "" H 6750 3450 29 0000 C CNN +F 3 "" H 6550 3350 60 0000 C CNN + 1 6550 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q9 +U 1 1 6840337B +P 7200 3350 +F 0 "Q9" H 7100 3400 50 0000 R CNN +F 1 "eSim_NPN" H 7150 3500 50 0000 R CNN +F 2 "" H 7400 3450 29 0000 C CNN +F 3 "" H 7200 3350 60 0000 C CNN + 1 7200 3350 + -1 0 0 -1 +$EndComp +$Comp +L resistor R13 +U 1 1 68403469 +P 7050 1550 +F 0 "R13" H 7100 1680 50 0000 C CNN +F 1 "6.2k" H 7100 1500 50 0000 C CNN +F 2 "" H 7100 1530 30 0000 C CNN +F 3 "" V 7100 1600 30 0000 C CNN + 1 7050 1550 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q10 +U 1 1 6840352A +P 7550 2050 +F 0 "Q10" H 7450 2100 50 0000 R CNN +F 1 "eSim_NPN" H 7500 2200 50 0000 R CNN +F 2 "" H 7750 2150 29 0000 C CNN +F 3 "" H 7550 2050 60 0000 C CNN + 1 7550 2050 + 1 0 0 -1 +$EndComp +$Comp +L resistor R15 +U 1 1 68403613 +P 7600 2500 +F 0 "R15" H 7650 2630 50 0000 C CNN +F 1 "5.1k" H 7650 2450 50 0000 C CNN +F 2 "" H 7650 2480 30 0000 C CNN +F 3 "" V 7650 2550 30 0000 C CNN + 1 7600 2500 + 0 1 1 0 +$EndComp +$Comp +L eSim_GND #PWR03 +U 1 1 684036A1 +P 7650 2850 +F 0 "#PWR03" H 7650 2600 50 0001 C CNN +F 1 "eSim_GND" H 7650 2700 50 0000 C CNN +F 2 "" H 7650 2850 50 0001 C CNN +F 3 "" H 7650 2850 50 0001 C CNN + 1 7650 2850 + 1 0 0 -1 +$EndComp +$Comp +L resistor R16 +U 1 1 6840371B +P 8000 1600 +F 0 "R16" H 8050 1730 50 0000 C CNN +F 1 "5.1k" H 8050 1550 50 0000 C CNN +F 2 "" H 8050 1580 30 0000 C CNN +F 3 "" V 8050 1650 30 0000 C CNN + 1 8000 1600 + 0 1 1 0 +$EndComp +$Comp +L resistor R11 +U 1 1 68403A34 +P 6050 3800 +F 0 "R11" H 6100 3930 50 0000 C CNN +F 1 "5.1k" H 6100 3750 50 0000 C CNN +F 2 "" H 6100 3780 30 0000 C CNN +F 3 "" V 6100 3850 30 0000 C CNN + 1 6050 3800 + 0 1 1 0 +$EndComp +$Comp +L eSim_GND #PWR04 +U 1 1 68403B9A +P 6100 4200 +F 0 "#PWR04" H 6100 3950 50 0001 C CNN +F 1 "eSim_GND" H 6100 4050 50 0000 C CNN +F 2 "" H 6100 4200 50 0001 C CNN +F 3 "" H 6100 4200 50 0001 C CNN + 1 6100 4200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 1950 2050 1950 2300 +Wire Wire Line + 2300 2200 1950 2200 +Connection ~ 1950 2200 +Wire Wire Line + 1950 1750 1950 1400 +Wire Wire Line + 1950 1400 8250 1400 +Wire Wire Line + 2600 1400 2600 2000 +Wire Wire Line + 2600 2400 3900 2400 +Wire Wire Line + 2850 2400 2850 2650 +Wire Wire Line + 2850 2950 2850 3200 +Wire Wire Line + 1950 2600 1950 2800 +Wire Wire Line + 2850 3500 2850 3650 +Wire Wire Line + 3200 3100 2850 3100 +Connection ~ 2850 3100 +Wire Wire Line + 3500 1400 3500 2900 +Connection ~ 2600 1400 +Wire Wire Line + 3900 2400 3900 2650 +Connection ~ 2850 2400 +Wire Wire Line + 3900 2950 3900 3250 +Wire Wire Line + 4250 3050 3900 3050 +Connection ~ 3900 3050 +Wire Wire Line + 4150 1400 4150 1550 +Connection ~ 3500 1400 +Wire Wire Line + 4550 1400 4550 2850 +Connection ~ 4150 1400 +Wire Wire Line + 4550 3250 4550 3600 +Wire Wire Line + 4550 3350 4800 3350 +Wire Wire Line + 5100 1400 5100 3150 +Connection ~ 4550 1400 +Wire Wire Line + 5100 3550 5550 3550 +Wire Wire Line + 6650 3550 7100 3550 +Wire Wire Line + 5850 3350 6350 3350 +Wire Wire Line + 6650 1400 6650 3150 +Connection ~ 5100 1400 +Wire Wire Line + 7100 1750 7100 3150 +Wire Wire Line + 7100 1400 7100 1450 +Connection ~ 6650 1400 +Wire Wire Line + 5550 3150 5550 2050 +Wire Wire Line + 5550 2050 7350 2050 +Wire Wire Line + 7650 1400 7650 1850 +Connection ~ 7100 1400 +Wire Wire Line + 7650 2250 7650 2400 +Wire Wire Line + 7650 2700 7650 2850 +Wire Wire Line + 8050 1400 8050 1500 +Connection ~ 7650 1400 +Wire Wire Line + 6100 3350 6100 3700 +Connection ~ 6100 3350 +Wire Wire Line + 6100 4000 6100 4200 +Wire Wire Line + 3500 3300 3500 3650 +Wire Wire Line + 3500 3650 6100 3650 +Connection ~ 6100 3650 +$Comp +L resistor R14 +U 1 1 68403CD1 +P 7450 3800 +F 0 "R14" H 7500 3930 50 0000 C CNN +F 1 "5.1k" H 7500 3750 50 0000 C CNN +F 2 "" H 7500 3780 30 0000 C CNN +F 3 "" V 7500 3850 30 0000 C CNN + 1 7450 3800 + 0 1 1 0 +$EndComp +Wire Wire Line + 7400 3350 7500 3350 +Wire Wire Line + 7500 3350 7500 3700 +$Comp +L eSim_GND #PWR05 +U 1 1 68403D83 +P 7500 4150 +F 0 "#PWR05" H 7500 3900 50 0001 C CNN +F 1 "eSim_GND" H 7500 4000 50 0000 C CNN +F 2 "" H 7500 4150 50 0001 C CNN +F 3 "" H 7500 4150 50 0001 C CNN + 1 7500 4150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7500 4000 7500 4150 +Wire Wire Line + 4550 3600 7500 3600 +Connection ~ 7500 3600 +Connection ~ 4550 3350 +$Comp +L resistor R18 +U 1 1 68403E61 +P 8050 2250 +F 0 "R18" H 8100 2380 50 0000 C CNN +F 1 "200" H 8100 2200 50 0000 C CNN +F 2 "" H 8100 2230 30 0000 C CNN +F 3 "" V 8100 2300 30 0000 C CNN + 1 8050 2250 + -1 0 0 1 +$EndComp +Wire Wire Line + 7850 2300 7650 2300 +Connection ~ 7650 2300 +$Comp +L eSim_Diode D1 +U 1 1 68403F41 +P 8050 4500 +F 0 "D1" H 8050 4600 50 0000 C CNN +F 1 "eSim_Diode" H 8050 4400 50 0000 C CNN +F 2 "" H 8050 4500 60 0000 C CNN +F 3 "" H 8050 4500 60 0000 C CNN + 1 8050 4500 + 0 1 1 0 +$EndComp +$Comp +L resistor R17 +U 1 1 6840556F +P 8000 5100 +F 0 "R17" H 8050 5230 50 0000 C CNN +F 1 "510" H 8050 5050 50 0000 C CNN +F 2 "" H 8050 5080 30 0000 C CNN +F 3 "" V 8050 5150 30 0000 C CNN + 1 8000 5100 + 0 1 1 0 +$EndComp +$Comp +L eSim_GND #PWR06 +U 1 1 68405630 +P 8050 5550 +F 0 "#PWR06" H 8050 5300 50 0001 C CNN +F 1 "eSim_GND" H 8050 5400 50 0000 C CNN +F 2 "" H 8050 5550 50 0001 C CNN +F 3 "" H 8050 5550 50 0001 C CNN + 1 8050 5550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q8 +U 1 1 684056D5 +P 7000 4650 +F 0 "Q8" H 6900 4700 50 0000 R CNN +F 1 "eSim_NPN" H 6950 4800 50 0000 R CNN +F 2 "" H 7200 4750 29 0000 C CNN +F 3 "" H 7000 4650 60 0000 C CNN + 1 7000 4650 + -1 0 0 -1 +$EndComp +Wire Wire Line + 6900 4450 6900 3550 +Connection ~ 6900 3550 +$Comp +L resistor R12 +U 1 1 68405826 +P 6850 5150 +F 0 "R12" H 6900 5280 50 0000 C CNN +F 1 "1.5k" H 6900 5100 50 0000 C CNN +F 2 "" H 6900 5130 30 0000 C CNN +F 3 "" V 6900 5200 30 0000 C CNN + 1 6850 5150 + 0 1 1 0 +$EndComp +$Comp +L eSim_GND #PWR07 +U 1 1 68405897 +P 6900 5550 +F 0 "#PWR07" H 6900 5300 50 0001 C CNN +F 1 "eSim_GND" H 6900 5400 50 0000 C CNN +F 2 "" H 6900 5550 50 0001 C CNN +F 3 "" H 6900 5550 50 0001 C CNN + 1 6900 5550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6900 4850 6900 5050 +Wire Wire Line + 6900 5350 6900 5550 +Wire Wire Line + 8050 1800 8050 4350 +Wire Wire Line + 8050 4650 8050 5000 +Wire Wire Line + 8050 5300 8050 5550 +Wire Wire Line + 7200 4650 7800 4650 +Wire Wire Line + 7800 4650 7800 4050 +Wire Wire Line + 7800 4050 8050 4050 +Connection ~ 8050 4050 +$Comp +L eSim_NPN Q5 +U 1 1 68407F71 +P 5200 4900 +F 0 "Q5" H 5100 4950 50 0000 R CNN +F 1 "eSim_NPN" H 5150 5050 50 0000 R CNN +F 2 "" H 5400 5000 29 0000 C CNN +F 3 "" H 5200 4900 60 0000 C CNN + 1 5200 4900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5300 4700 5300 3550 +Connection ~ 5300 3550 +$Comp +L resistor R10 +U 1 1 684085F9 +P 5250 5400 +F 0 "R10" H 5300 5530 50 0000 C CNN +F 1 "1.3k" H 5300 5350 50 0000 C CNN +F 2 "" H 5300 5380 30 0000 C CNN +F 3 "" V 5300 5450 30 0000 C CNN + 1 5250 5400 + 0 1 1 0 +$EndComp +$Comp +L eSim_GND #PWR08 +U 1 1 68408672 +P 5300 5800 +F 0 "#PWR08" H 5300 5550 50 0001 C CNN +F 1 "eSim_GND" H 5300 5650 50 0000 C CNN +F 2 "" H 5300 5800 50 0001 C CNN +F 3 "" H 5300 5800 50 0001 C CNN + 1 5300 5800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5300 5600 5300 5800 +Wire Wire Line + 5300 5100 5300 5300 +$Comp +L resistor R5 +U 1 1 684087D0 +P 3650 5200 +F 0 "R5" H 3700 5330 50 0000 C CNN +F 1 "20K" H 3700 5150 50 0000 C CNN +F 2 "" H 3700 5180 30 0000 C CNN +F 3 "" V 3700 5250 30 0000 C CNN + 1 3650 5200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3550 5150 3550 4900 +Wire Wire Line + 3350 4900 5000 4900 +Wire Wire Line + 4150 1850 4150 5350 +Wire Wire Line + 4150 5150 3850 5150 +$Comp +L resistor R9 +U 1 1 6840B887 +P 4100 5450 +F 0 "R9" H 4150 5580 50 0000 C CNN +F 1 "510" H 4150 5400 50 0000 C CNN +F 2 "" H 4150 5430 30 0000 C CNN +F 3 "" V 4150 5500 30 0000 C CNN + 1 4100 5450 + 0 1 1 0 +$EndComp +Connection ~ 4150 5150 +$Comp +L eSim_GND #PWR09 +U 1 1 6840B990 +P 4150 5800 +F 0 "#PWR09" H 4150 5550 50 0001 C CNN +F 1 "eSim_GND" H 4150 5650 50 0000 C CNN +F 2 "" H 4150 5800 50 0001 C CNN +F 3 "" H 4150 5800 50 0001 C CNN + 1 4150 5800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4150 5650 4150 5800 +$Comp +L PORT U1 +U 1 1 68417B8A +P 3100 4900 +F 0 "U1" H 3150 5000 30 0000 C CNN +F 1 "PORT" H 3100 4900 30 0000 C CNN +F 2 "" H 3100 4900 60 0000 C CNN +F 3 "" H 3100 4900 60 0000 C CNN + 1 3100 4900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68417C0B +P 3550 3850 +F 0 "U1" H 3600 3950 30 0000 C CNN +F 1 "PORT" H 3550 3850 30 0000 C CNN +F 2 "" H 3550 3850 60 0000 C CNN +F 3 "" H 3550 3850 60 0000 C CNN + 2 3550 3850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68417CA4 +P 2050 5250 +F 0 "U1" H 2100 5350 30 0000 C CNN +F 1 "PORT" H 2050 5250 30 0000 C CNN +F 2 "" H 2050 5250 60 0000 C CNN +F 3 "" H 2050 5250 60 0000 C CNN + 3 2050 5250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68417D3F +P 2050 5500 +F 0 "U1" H 2100 5600 30 0000 C CNN +F 1 "PORT" H 2050 5500 30 0000 C CNN +F 2 "" H 2050 5500 60 0000 C CNN +F 3 "" H 2050 5500 60 0000 C CNN + 4 2050 5500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68417E3C +P 2050 5750 +F 0 "U1" H 2100 5850 30 0000 C CNN +F 1 "PORT" H 2050 5750 30 0000 C CNN +F 2 "" H 2050 5750 60 0000 C CNN +F 3 "" H 2050 5750 60 0000 C CNN + 5 2050 5750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68417E9B +P 8550 1900 +F 0 "U1" H 8600 2000 30 0000 C CNN +F 1 "PORT" H 8550 1900 30 0000 C CNN +F 2 "" H 8550 1900 60 0000 C CNN +F 3 "" H 8550 1900 60 0000 C CNN + 6 8550 1900 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 68417F12 +P 8550 2300 +F 0 "U1" H 8600 2400 30 0000 C CNN +F 1 "PORT" H 8550 2300 30 0000 C CNN +F 2 "" H 8550 2300 60 0000 C CNN +F 3 "" H 8550 2300 60 0000 C CNN + 7 8550 2300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 68417F7D +P 8500 1400 +F 0 "U1" H 8550 1500 30 0000 C CNN +F 1 "PORT" H 8500 1400 30 0000 C CNN +F 2 "" H 8500 1400 60 0000 C CNN +F 3 "" H 8500 1400 60 0000 C CNN + 8 8500 1400 + -1 0 0 -1 +$EndComp +Connection ~ 3550 4900 +Wire Wire Line + 3900 3550 3900 3850 +Wire Wire Line + 3900 3850 3800 3850 +NoConn ~ 2300 5250 +NoConn ~ 2300 5500 +NoConn ~ 2300 5750 +Wire Wire Line + 8300 1900 7200 1900 +Wire Wire Line + 7200 1900 7200 2050 +Connection ~ 7200 2050 +Connection ~ 8050 1400 +Wire Wire Line + 8300 2300 8150 2300 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC3340/MC3340.sub b/library/SubcircuitLibrary/MC3340/MC3340.sub new file mode 100644 index 000000000..c36548bf1 --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340.sub @@ -0,0 +1,37 @@ +* Subcircuit MC3340 +.subckt MC3340 net-_q5-pad2_ net-_r7-pad2_ ? ? ? net-_q10-pad2_ net-_r18-pad1_ net-_q1-pad1_ +* c:\fossee\esim\library\subcircuitlibrary\mc3340\mc3340.cir +.include D.lib +.include NPN.lib +r1 net-_q1-pad1_ net-_q1-pad2_ 5.1k +r2 net-_q1-pad2_ gnd 4.7k +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +r3 net-_q1-pad3_ net-_q2-pad2_ 750 +r4 net-_q2-pad2_ gnd 10k +q2 net-_q1-pad1_ net-_q2-pad2_ net-_q2-pad3_ Q2N2222 +r6 net-_q1-pad3_ net-_q3-pad2_ 750 +r7 net-_q3-pad2_ net-_r7-pad2_ 3.9k +q3 net-_q1-pad1_ net-_q3-pad2_ net-_q3-pad3_ Q2N2222 +r8 net-_q1-pad1_ net-_r5-pad2_ 5.1k +q4 net-_q1-pad1_ net-_q3-pad3_ net-_q4-pad3_ Q2N2222 +q6 net-_q10-pad2_ net-_q2-pad3_ net-_q4-pad3_ Q2N2222 +q7 net-_q1-pad1_ net-_q2-pad3_ net-_q7-pad3_ Q2N2222 +q9 net-_q9-pad1_ net-_q3-pad3_ net-_q7-pad3_ Q2N2222 +r13 net-_q1-pad1_ net-_q9-pad1_ 6.2k +q10 net-_q1-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +r15 net-_q10-pad3_ gnd 5.1k +r16 net-_q1-pad1_ net-_d1-pad1_ 5.1k +r11 net-_q2-pad3_ gnd 5.1k +r14 net-_q3-pad3_ gnd 5.1k +r18 net-_r18-pad1_ net-_q10-pad3_ 200 +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +r17 net-_d1-pad2_ gnd 510 +q8 net-_q7-pad3_ net-_d1-pad1_ net-_q8-pad3_ Q2N2222 +r12 net-_q8-pad3_ gnd 1.5k +q5 net-_q4-pad3_ net-_q5-pad2_ net-_q5-pad3_ Q2N2222 +r10 net-_q5-pad3_ gnd 1.3k +r5 net-_q5-pad2_ net-_r5-pad2_ 20k +r9 net-_r5-pad2_ gnd 510 +* Control Statements + +.ends MC3340 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC3340/MC3340_Previous_Values.xml b/library/SubcircuitLibrary/MC3340/MC3340_Previous_Values.xml new file mode 100644 index 000000000..a4a0ecf99 --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC3340/MC3340_test-cache.lib b/library/SubcircuitLibrary/MC3340/MC3340_test-cache.lib new file mode 100644 index 000000000..2eee24ecb --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340_test-cache.lib @@ -0,0 +1,126 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# DC +# +DEF DC v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "DC" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 w +X - 2 0 -450 300 U 50 50 1 1 w +ENDDRAW +ENDDEF +# +# MC3340 +# +DEF MC3340 X 0 40 Y Y 1 F N +F0 "X" 0 -500 60 H V C CNN +F1 "MC3340" 0 600 60 H V C CNN +F2 "" 0 600 60 H I C CNN +F3 "" 0 600 60 H I C CNN +DRAW +P 4 0 1 0 -250 300 -250 -350 500 0 -250 300 N +X A 1 -450 0 200 R 50 50 1 1 I +X B 2 -150 -500 200 U 50 50 1 1 I +X C 3 0 -450 200 U 50 50 1 1 W +X D 4 150 -350 200 U 50 50 1 1 N +X E 5 300 -300 200 U 50 50 1 1 N +X F 6 400 -250 200 U 50 50 1 1 P +X G 7 700 0 200 L 50 50 1 1 O +X H 8 50 350 200 D 50 50 1 1 W +ENDDRAW +ENDDEF +# +# eSim_CP1 +# +DEF eSim_CP1 C 0 10 N N 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_CP1" 25 -100 50 H V L CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +ALIAS capacitor_polarised +$FPLIST + CP_* +$ENDFPLIST +DRAW +A 0 -150 128 1287 513 0 1 20 N -80 -50 80 -50 +P 2 0 1 20 -80 30 80 30 N +P 2 0 1 0 -70 90 -30 90 N +P 2 0 1 0 -50 70 -50 110 N +X ~ 1 0 150 110 D 50 50 1 1 P +X ~ 2 0 -150 130 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_GND +# +DEF eSim_GND #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -250 50 H I C CNN +F1 "eSim_GND" 0 -150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N +X GND 1 0 0 0 D 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +# plot_v1 +# +DEF plot_v1 U 0 40 Y Y 1 F N +F0 "U" 0 500 60 H V C CNN +F1 "plot_v1" 200 350 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 0 500 100 0 1 0 N +X ~ ~ 0 200 200 U 50 50 1 1 I +ENDDRAW +ENDDEF +# +# sine +# +DEF sine v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "sine" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -50 0 50 1 1799 0 1 0 N 0 0 -100 0 +A 50 0 50 -1799 -1 0 1 0 N 0 0 100 0 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 0 1 1 I +X - 2 0 -450 300 U 50 0 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MC3340/MC3340_test.cir b/library/SubcircuitLibrary/MC3340/MC3340_test.cir new file mode 100644 index 000000000..483510fe7 --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340_test.cir @@ -0,0 +1,20 @@ +* C:\Users\pavithra\eSim-Workspace\MC3340_test\MC3340_test.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/05/25 11:08:05 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_C1-Pad1_ Net-_C2-Pad1_ GND ? ? Net-_C3-Pad2_ out Net-_X1-Pad8_ MC3340 +C1 Net-_C1-Pad1_ in 1u +v1 in GND sine +C2 Net-_C2-Pad1_ GND 50u +R1 Net-_C2-Pad1_ GND 50k +C3 GND Net-_C3-Pad2_ 620p +U1 out plot_v1 +U2 in plot_v1 +R2 Net-_C1-Pad1_ GND 100k +v2 Net-_X1-Pad8_ GND DC + +.end diff --git a/library/SubcircuitLibrary/MC3340/MC3340_test.cir.out b/library/SubcircuitLibrary/MC3340/MC3340_test.cir.out new file mode 100644 index 000000000..37e8ac1a5 --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340_test.cir.out @@ -0,0 +1,24 @@ +* c:\users\pavithra\esim-workspace\mc3340_test\mc3340_test.cir + +.include MC3340.sub +x1 net-_c1-pad1_ net-_c2-pad1_ gnd ? ? net-_c3-pad2_ out net-_x1-pad8_ MC3340 +c1 net-_c1-pad1_ in 1u +v1 in gnd sine(0 0.4 1000 0 0) +c2 net-_c2-pad1_ gnd 50u +r1 net-_c2-pad1_ gnd 50k +c3 gnd net-_c3-pad2_ 620p +* u1 out plot_v1 +* u2 in plot_v1 +r2 net-_c1-pad1_ gnd 100k +v2 net-_x1-pad8_ gnd dc 12 +.tran 1e-06 10e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(out) +plot v(in) +.endc +.end diff --git a/library/SubcircuitLibrary/MC3340/MC3340_test.pro b/library/SubcircuitLibrary/MC3340/MC3340_test.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340_test.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MC3340/MC3340_test.proj b/library/SubcircuitLibrary/MC3340/MC3340_test.proj new file mode 100644 index 000000000..05f38fe8e --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340_test.proj @@ -0,0 +1 @@ +schematicFile MC3340_test.sch diff --git a/library/SubcircuitLibrary/MC3340/MC3340_test.sch b/library/SubcircuitLibrary/MC3340/MC3340_test.sch new file mode 100644 index 000000000..b3886f74b --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340_test.sch @@ -0,0 +1,257 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L MC3340 X1 +U 1 1 684032A2 +P 5400 3300 +F 0 "X1" H 5400 2800 60 0000 C CNN +F 1 "MC3340" H 5750 3550 60 0000 C CNN +F 2 "" H 5400 3900 60 0001 C CNN +F 3 "" H 5400 3900 60 0001 C CNN + 1 5400 3300 + 1 0 0 -1 +$EndComp +$Comp +L capacitor_polarised C1 +U 1 1 68403397 +P 4400 3300 +F 0 "C1" H 4425 3400 50 0000 L CNN +F 1 "1u" H 4425 3200 50 0000 L CNN +F 2 "" H 4400 3300 50 0001 C CNN +F 3 "" H 4400 3300 50 0001 C CNN + 1 4400 3300 + 0 1 1 0 +$EndComp +$Comp +L sine v1 +U 1 1 68403533 +P 4250 4100 +F 0 "v1" H 4050 4200 60 0000 C CNN +F 1 "sine" H 4050 4050 60 0000 C CNN +F 2 "R1" H 3950 4100 60 0000 C CNN +F 3 "" H 4250 4100 60 0000 C CNN + 1 4250 4100 + 1 0 0 -1 +$EndComp +$Comp +L capacitor_polarised C2 +U 1 1 68403666 +P 5050 4250 +F 0 "C2" H 5075 4350 50 0000 L CNN +F 1 "50u" H 5075 4150 50 0000 L CNN +F 2 "" H 5050 4250 50 0001 C CNN +F 3 "" H 5050 4250 50 0001 C CNN + 1 5050 4250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR01 +U 1 1 6840394D +P 5400 4800 +F 0 "#PWR01" H 5400 4550 50 0001 C CNN +F 1 "eSim_GND" H 5400 4650 50 0000 C CNN +F 2 "" H 5400 4800 50 0001 C CNN +F 3 "" H 5400 4800 50 0001 C CNN + 1 5400 4800 + 1 0 0 -1 +$EndComp +$Comp +L resistor R1 +U 1 1 68403F36 +P 5200 5000 +F 0 "R1" H 5250 5130 50 0000 C CNN +F 1 "50k" H 5250 4950 50 0000 C CNN +F 2 "" H 5250 4980 30 0000 C CNN +F 3 "" V 5250 5050 30 0000 C CNN + 1 5200 5000 + 0 1 1 0 +$EndComp +$Comp +L eSim_GND #PWR02 +U 1 1 68403FF4 +P 5250 5300 +F 0 "#PWR02" H 5250 5050 50 0001 C CNN +F 1 "eSim_GND" H 5250 5150 50 0000 C CNN +F 2 "" H 5250 5300 50 0001 C CNN +F 3 "" H 5250 5300 50 0001 C CNN + 1 5250 5300 + 1 0 0 -1 +$EndComp +$Comp +L capacitor_polarised C3 +U 1 1 6840431E +P 5800 4150 +F 0 "C3" H 5825 4250 50 0000 L CNN +F 1 "620p" H 5825 4050 50 0000 L CNN +F 2 "" H 5800 4150 50 0001 C CNN +F 3 "" H 5800 4150 50 0001 C CNN + 1 5800 4150 + 1 0 0 1 +$EndComp +$Comp +L plot_v1 U1 +U 1 1 68404541 +P 6250 3350 +F 0 "U1" H 6250 3850 60 0000 C CNN +F 1 "plot_v1" H 6450 3700 60 0000 C CNN +F 2 "" H 6250 3350 60 0000 C CNN +F 3 "" H 6250 3350 60 0000 C CNN + 1 6250 3350 + 1 0 0 -1 +$EndComp +Text GLabel 6450 3250 2 60 Input ~ 0 +out +$Comp +L plot_v1 U2 +U 1 1 68404A11 +P 3600 3800 +F 0 "U2" H 3600 4300 60 0000 C CNN +F 1 "plot_v1" H 3800 4150 60 0000 C CNN +F 2 "" H 3600 3800 60 0000 C CNN +F 3 "" H 3600 3800 60 0000 C CNN + 1 3600 3800 + 1 0 0 -1 +$EndComp +Text GLabel 3700 3800 0 60 Input ~ 0 +in +Wire Wire Line + 5450 2850 5450 2950 +Wire Wire Line + 4550 3300 4950 3300 +Wire Wire Line + 4250 3300 4250 3650 +Wire Wire Line + 5050 4100 5250 4100 +Wire Wire Line + 5250 3800 5250 4900 +Wire Wire Line + 5050 4400 5050 4650 +Wire Wire Line + 4250 4650 5800 4650 +Wire Wire Line + 5400 3750 5400 4800 +Connection ~ 5400 4650 +Connection ~ 5250 4100 +Wire Wire Line + 5250 5200 5250 5300 +Wire Wire Line + 5800 4000 5800 3550 +Wire Wire Line + 5800 4650 5800 4300 +Wire Wire Line + 6250 3300 6100 3300 +Wire Wire Line + 6250 3150 6250 3300 +Wire Wire Line + 6250 3250 6450 3250 +Connection ~ 6250 3250 +Wire Wire Line + 4250 4550 4250 4650 +Connection ~ 5050 4650 +Wire Wire Line + 3600 3600 4250 3600 +Wire Wire Line + 4250 3600 4250 3550 +Connection ~ 4250 3550 +Wire Wire Line + 3700 3800 3850 3800 +Wire Wire Line + 3850 3800 3850 3600 +Connection ~ 3850 3600 +$Comp +L resistor R2 +U 1 1 68413101 +P 4650 4000 +F 0 "R2" H 4700 4130 50 0000 C CNN +F 1 "100k" H 4700 3950 50 0000 C CNN +F 2 "" H 4700 3980 30 0000 C CNN +F 3 "" V 4700 4050 30 0000 C CNN + 1 4650 4000 + 0 1 1 0 +$EndComp +Wire Wire Line + 4700 3900 4700 3300 +Wire Wire Line + 4700 3300 4750 3300 +Connection ~ 4750 3300 +Wire Wire Line + 4700 4200 4700 4650 +Connection ~ 4700 4650 +$Comp +L DC v2 +U 1 1 6841325C +P 5450 2400 +F 0 "v2" H 5250 2500 60 0000 C CNN +F 1 "DC" H 5250 2350 60 0000 C CNN +F 2 "R1" H 5150 2400 60 0000 C CNN +F 3 "" H 5450 2400 60 0000 C CNN + 1 5450 2400 + 1 0 0 1 +$EndComp +$Comp +L eSim_GND #PWR03 +U 1 1 6841330C +P 5700 1950 +F 0 "#PWR03" H 5700 1700 50 0001 C CNN +F 1 "eSim_GND" H 5700 1800 50 0000 C CNN +F 2 "" H 5700 1950 50 0001 C CNN +F 3 "" H 5700 1950 50 0001 C CNN + 1 5700 1950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5450 1950 5700 1950 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MC3340/MC3340_test_Previous_Values.xml b/library/SubcircuitLibrary/MC3340/MC3340_test_Previous_Values.xml new file mode 100644 index 000000000..825ffca38 --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/MC3340_test_Previous_Values.xml @@ -0,0 +1 @@ +sine00.4100000dc12C:\FOSSEE\eSim\library\SubcircuitLibrary\MC3340truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0110secusms \ No newline at end of file diff --git a/library/SubcircuitLibrary/MC3340/NPN.lib b/library/SubcircuitLibrary/MC3340/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/MC3340/analysis b/library/SubcircuitLibrary/MC3340/analysis new file mode 100644 index 000000000..4ccdff53b --- /dev/null +++ b/library/SubcircuitLibrary/MC3340/analysis @@ -0,0 +1 @@ +.tran 1e-06 10e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MIC4422/D.lib b/library/SubcircuitLibrary/MIC4422/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/MIC4422/MIC4422-cache.lib b/library/SubcircuitLibrary/MIC4422/MIC4422-cache.lib new file mode 100644 index 000000000..5e8f52268 --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/MIC4422-cache.lib @@ -0,0 +1,219 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# PWR_FLAG +# +DEF PWR_FLAG #FLG 0 0 N N 1 F P +F0 "#FLG" 0 75 50 H I C CNN +F1 "PWR_FLAG" 0 150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +X pwr 1 0 0 0 U 50 50 0 0 w +P 6 0 1 0 0 0 0 50 -40 75 0 100 40 75 0 50 N +ENDDRAW +ENDDEF +# +# adc_bridge_1 +# +DEF adc_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "adc_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# dac_bridge_1 +# +DEF dac_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "dac_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# dc +# +DEF dc I 0 40 Y Y 1 F N +F0 "I" -200 100 60 H V C CNN +F1 "dc" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +P 2 0 1 0 0 -100 0 -100 N +P 2 0 1 0 0 100 -50 50 N +P 2 0 1 0 0 100 0 -100 N +P 2 0 1 0 0 100 50 50 N +X ~ 1 0 450 300 D 50 50 1 1 P +X ~ 2 0 -450 300 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_N +# +DEF eSim_MOS_N M 0 0 Y N 1 F N +F0 "M" 0 -150 50 H V R CNN +F1 "eSim_MOS_N" 100 -50 50 H V R CNN +F2 "" 300 -300 29 H V C CNN +F3 "" 100 -200 60 H V C CNN +ALIAS mosfet_n +DRAW +C 150 -200 111 0 1 10 N +P 2 0 1 10 130 -290 130 -250 N +P 2 0 1 0 130 -270 200 -270 N +P 2 0 1 10 130 -220 130 -180 N +P 2 0 1 0 130 -200 200 -200 N +P 2 0 1 10 130 -150 130 -110 N +P 2 0 1 0 130 -130 200 -130 N +P 2 0 1 0 200 -300 200 -270 N +P 2 0 1 0 200 -130 200 -100 N +P 3 0 1 10 110 -275 110 -125 110 -125 N +P 3 0 1 0 200 -200 300 -200 300 -250 N +P 4 0 1 0 140 -200 180 -215 180 -185 140 -200 F +X D 1 200 0 100 D 50 50 1 1 P +X G 2 -100 -200 210 R 50 50 1 1 P +X S 3 200 -400 100 U 50 50 1 1 P +X B 4 300 -350 98 U 47 47 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_P +# +DEF eSim_MOS_P M 0 0 Y N 1 F N +F0 "M" -50 50 50 H V R CNN +F1 "eSim_MOS_P" 50 150 50 H V R CNN +F2 "" 250 100 29 H V C CNN +F3 "" 50 0 60 H V C CNN +ALIAS mosfet_p +DRAW +C 100 0 111 0 1 10 N +P 2 0 1 0 80 -70 150 -70 N +P 2 0 1 10 80 -50 80 -90 N +P 2 0 1 0 80 0 150 0 N +P 2 0 1 10 80 20 80 -20 N +P 2 0 1 0 80 70 150 70 N +P 2 0 1 10 80 90 80 50 N +P 2 0 1 0 150 -70 150 -100 N +P 2 0 1 0 150 100 150 70 N +P 3 0 1 10 60 75 60 -75 60 -75 N +P 3 0 1 0 150 0 250 0 250 -50 N +P 4 0 1 0 140 0 100 -15 100 15 140 0 F +X D 1 150 200 100 D 50 50 1 1 P +X G 2 -150 0 210 R 50 50 1 1 P +X S 3 150 -200 100 U 50 50 1 1 P +X B 4 250 -150 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/MIC4422/MIC4422.cir b/library/SubcircuitLibrary/MIC4422/MIC4422.cir new file mode 100644 index 000000000..8ac8ea505 --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/MIC4422.cir @@ -0,0 +1,30 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\MIC4422\MIC4422.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/17/26 01:23:35 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +D1 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +R1 Net-_D1-Pad1_ Net-_D2-Pad2_ 2k +M1 Net-_I1-Pad1_ Net-_D2-Pad2_ Net-_D2-Pad1_ Net-_D2-Pad1_ mosfet_n +M2 Net-_I1-Pad1_ Net-_M2-Pad2_ Net-_I2-Pad1_ Net-_I2-Pad1_ mosfet_p +M4 Net-_D1-Pad2_ Net-_M3-Pad2_ Net-_D3-Pad2_ Net-_D1-Pad2_ mosfet_p +M3 Net-_D3-Pad2_ Net-_M3-Pad2_ Net-_M3-Pad3_ Net-_M3-Pad3_ mosfet_n +D3 Net-_D2-Pad1_ Net-_D3-Pad2_ eSim_Diode +D2 Net-_D2-Pad1_ Net-_D2-Pad2_ eSim_Diode +U3 Net-_U2-Pad2_ Net-_U3-Pad2_ d_inverter +U4 Net-_U4-Pad1_ Net-_U4-Pad2_ d_inverter +I1 Net-_I1-Pad1_ Net-_I1-Pad2_ 0.1mA +I2 Net-_I2-Pad1_ Net-_I1-Pad2_ 0.3mA +U1 Net-_D1-Pad2_ Net-_D1-Pad1_ ? Net-_M3-Pad3_ Net-_M3-Pad3_ Net-_D3-Pad2_ Net-_D3-Pad2_ Net-_D1-Pad2_ PORT +U2 Net-_M2-Pad2_ Net-_U2-Pad2_ adc_bridge_1 +U6 Net-_U3-Pad2_ Net-_U5-Pad1_ dac_bridge_1 +U5 Net-_U5-Pad1_ Net-_U4-Pad1_ adc_bridge_1 +U7 Net-_U4-Pad2_ Net-_M3-Pad2_ dac_bridge_1 +U9 Net-_U8-Pad2_ Net-_U10-Pad1_ d_inverter +U8 Net-_I1-Pad1_ Net-_U8-Pad2_ adc_bridge_1 +U10 Net-_U10-Pad1_ Net-_M2-Pad2_ dac_bridge_1 + +.end diff --git a/library/SubcircuitLibrary/MIC4422/MIC4422.cir.out b/library/SubcircuitLibrary/MIC4422/MIC4422.cir.out new file mode 100644 index 000000000..aa22f8d2f --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/MIC4422.cir.out @@ -0,0 +1,61 @@ +* c:\fossee\esim\library\subcircuitlibrary\mic4422\mic4422.cir + +.include D.lib +.include PMOS-180nm.lib +.include NMOS-180nm.lib +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +r1 net-_d1-pad1_ net-_d2-pad2_ 2k +m1 net-_i1-pad1_ net-_d2-pad2_ net-_d2-pad1_ net-_d2-pad1_ CMOSN W=100u L=100u M=1 +m2 net-_i1-pad1_ net-_m2-pad2_ net-_i2-pad1_ net-_i2-pad1_ CMOSP W=100u L=100u M=1 +m4 net-_d1-pad2_ net-_m3-pad2_ net-_d3-pad2_ net-_d1-pad2_ CMOSP W=100u L=100u M=1 +m3 net-_d3-pad2_ net-_m3-pad2_ net-_m3-pad3_ net-_m3-pad3_ CMOSN W=100u L=100u M=1 +d3 net-_d2-pad1_ net-_d3-pad2_ 1N4148 +d2 net-_d2-pad1_ net-_d2-pad2_ 1N4148 +* u3 net-_u2-pad2_ net-_u3-pad2_ d_inverter +* u4 net-_u4-pad1_ net-_u4-pad2_ d_inverter +i1 net-_i1-pad1_ net-_d1-pad2_ 0.1ma +i2 net-_i2-pad1_ net-_d1-pad2_ 0.3ma +* u1 net-_d1-pad2_ net-_d1-pad1_ ? net-_m3-pad3_ net-_m3-pad3_ net-_d3-pad2_ net-_d3-pad2_ net-_d1-pad2_ port +* u2 net-_m2-pad2_ net-_u2-pad2_ adc_bridge_1 +* u6 net-_u3-pad2_ net-_u5-pad1_ dac_bridge_1 +* u5 net-_u5-pad1_ net-_u4-pad1_ adc_bridge_1 +* u7 net-_u4-pad2_ net-_m3-pad2_ dac_bridge_1 +* u9 net-_u8-pad2_ net-_u10-pad1_ d_inverter +* u8 net-_i1-pad1_ net-_u8-pad2_ adc_bridge_1 +* u10 net-_u10-pad1_ net-_m2-pad2_ dac_bridge_1 +a1 net-_u2-pad2_ net-_u3-pad2_ u3 +a2 net-_u4-pad1_ net-_u4-pad2_ u4 +a3 [net-_m2-pad2_ ] [net-_u2-pad2_ ] u2 +a4 [net-_u3-pad2_ ] [net-_u5-pad1_ ] u6 +a5 [net-_u5-pad1_ ] [net-_u4-pad1_ ] u5 +a6 [net-_u4-pad2_ ] [net-_m3-pad2_ ] u7 +a7 net-_u8-pad2_ net-_u10-pad1_ u9 +a8 [net-_i1-pad1_ ] [net-_u8-pad2_ ] u8 +a9 [net-_u10-pad1_ ] [net-_m2-pad2_ ] u10 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u6 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u7 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u10 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/MIC4422/MIC4422.pro b/library/SubcircuitLibrary/MIC4422/MIC4422.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/MIC4422.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/MIC4422/MIC4422.sch b/library/SubcircuitLibrary/MIC4422/MIC4422.sch new file mode 100644 index 000000000..4543cf959 --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/MIC4422.sch @@ -0,0 +1,558 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:MIC4422-cache +EELAYER 25 0 +EELAYER END +$Descr A3 16535 11693 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_Diode D1 +U 1 1 6A086560 +P 4300 5300 +F 0 "D1" H 4300 5400 50 0000 C CNN +F 1 "eSim_Diode" H 4300 5200 50 0000 C CNN +F 2 "" H 4300 5300 60 0000 C CNN +F 3 "" H 4300 5300 60 0000 C CNN + 1 4300 5300 + 0 -1 -1 0 +$EndComp +$Comp +L resistor R1 +U 1 1 6A08659A +P 4650 5750 +F 0 "R1" H 4700 5880 50 0000 C CNN +F 1 "2k" H 4700 5700 50 0000 C CNN +F 2 "" H 4700 5730 30 0000 C CNN +F 3 "" V 4700 5800 30 0000 C CNN + 1 4650 5750 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_n M1 +U 1 1 6A0865C9 +P 5550 5500 +F 0 "M1" H 5550 5350 50 0000 R CNN +F 1 "mosfet_n" H 5650 5450 50 0000 R CNN +F 2 "" H 5850 5200 29 0000 C CNN +F 3 "" H 5650 5300 60 0000 C CNN + 1 5550 5500 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_p M2 +U 1 1 6A086610 +P 7050 4800 +F 0 "M2" H 7000 4850 50 0000 R CNN +F 1 "mosfet_p" H 7100 4950 50 0000 R CNN +F 2 "" H 7300 4900 29 0000 C CNN +F 3 "" H 7100 4800 60 0000 C CNN + 1 7050 4800 + -1 0 0 1 +$EndComp +$Comp +L mosfet_p M4 +U 1 1 6A086696 +P 10900 5000 +F 0 "M4" H 10850 5050 50 0000 R CNN +F 1 "mosfet_p" H 10950 5150 50 0000 R CNN +F 2 "" H 11150 5100 29 0000 C CNN +F 3 "" H 10950 5000 60 0000 C CNN + 1 10900 5000 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_n M3 +U 1 1 6A0866E8 +P 10800 5900 +F 0 "M3" H 10800 5750 50 0000 R CNN +F 1 "mosfet_n" H 10900 5850 50 0000 R CNN +F 2 "" H 11100 5600 29 0000 C CNN +F 3 "" H 10900 5700 60 0000 C CNN + 1 10800 5900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Diode D3 +U 1 1 6A086785 +P 11450 6150 +F 0 "D3" H 11450 6250 50 0000 C CNN +F 1 "eSim_Diode" H 11450 6050 50 0000 C CNN +F 2 "" H 11450 6150 60 0000 C CNN +F 3 "" H 11450 6150 60 0000 C CNN + 1 11450 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D2 +U 1 1 6A0868CF +P 5200 6050 +F 0 "D2" H 5200 6150 50 0000 C CNN +F 1 "eSim_Diode" H 5200 5950 50 0000 C CNN +F 2 "" H 5200 6050 60 0000 C CNN +F 3 "" H 5200 6050 60 0000 C CNN + 1 5200 6050 + 0 -1 -1 0 +$EndComp +$Comp +L d_inverter U3 +U 1 1 6A086BC6 +P 9100 5000 +F 0 "U3" H 9100 4900 60 0000 C CNN +F 1 "d_inverter" H 9100 5150 60 0000 C CNN +F 2 "" H 9150 4950 60 0000 C CNN +F 3 "" H 9150 4950 60 0000 C CNN + 1 9100 5000 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U4 +U 1 1 6A086CA6 +P 10000 5450 +F 0 "U4" H 10000 5350 60 0000 C CNN +F 1 "d_inverter" H 10000 5600 60 0000 C CNN +F 2 "" H 10050 5400 60 0000 C CNN +F 3 "" H 10050 5400 60 0000 C CNN + 1 10000 5450 + 1 0 0 -1 +$EndComp +$Comp +L dc I1 +U 1 1 6A0873C9 +P 5150 4750 +F 0 "I1" H 4950 4850 60 0000 C CNN +F 1 "0.1mA" H 4950 4700 60 0000 C CNN +F 2 "R1" H 4850 4750 60 0000 C CNN +F 3 "" H 5150 4750 60 0000 C CNN + 1 5150 4750 + -1 0 0 1 +$EndComp +$Comp +L dc I2 +U 1 1 6A087540 +P 6300 4750 +F 0 "I2" H 6100 4850 60 0000 C CNN +F 1 "0.3mA" H 6100 4700 60 0000 C CNN +F 2 "R1" H 6000 4750 60 0000 C CNN +F 3 "" H 6300 4750 60 0000 C CNN + 1 6300 4750 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 2 1 6A087D6A +P 3450 5700 +F 0 "U1" H 3500 5800 30 0000 C CNN +F 1 "PORT" H 3450 5700 30 0000 C CNN +F 2 "" H 3450 5700 60 0000 C CNN +F 3 "" H 3450 5700 60 0000 C CNN + 2 3450 5700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6A087E05 +P 2500 5450 +F 0 "U1" H 2550 5550 30 0000 C CNN +F 1 "PORT" H 2500 5450 30 0000 C CNN +F 2 "" H 2500 5450 60 0000 C CNN +F 3 "" H 2500 5450 60 0000 C CNN + 3 2500 5450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 6A087E53 +P 12600 5050 +F 0 "U1" H 12650 5150 30 0000 C CNN +F 1 "PORT" H 12600 5050 30 0000 C CNN +F 2 "" H 12600 5050 60 0000 C CNN +F 3 "" H 12600 5050 60 0000 C CNN + 6 12600 5050 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 6A087EFC +P 11000 6800 +F 0 "U1" H 11050 6900 30 0000 C CNN +F 1 "PORT" H 11000 6800 30 0000 C CNN +F 2 "" H 11000 6800 60 0000 C CNN +F 3 "" H 11000 6800 60 0000 C CNN + 4 11000 6800 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 5 1 6A08828D +P 10400 6600 +F 0 "U1" H 10450 6700 30 0000 C CNN +F 1 "PORT" H 10400 6600 30 0000 C CNN +F 2 "" H 10400 6600 60 0000 C CNN +F 3 "" H 10400 6600 60 0000 C CNN + 5 10400 6600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 6A088342 +P 12650 5400 +F 0 "U1" H 12700 5500 30 0000 C CNN +F 1 "PORT" H 12650 5400 30 0000 C CNN +F 2 "" H 12650 5400 60 0000 C CNN +F 3 "" H 12650 5400 60 0000 C CNN + 7 12650 5400 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 6A0883EF +P 10100 3650 +F 0 "U1" H 10150 3750 30 0000 C CNN +F 1 "PORT" H 10100 3650 30 0000 C CNN +F 2 "" H 10100 3650 60 0000 C CNN +F 3 "" H 10100 3650 60 0000 C CNN + 8 10100 3650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 6A088488 +P 11700 4500 +F 0 "U1" H 11750 4600 30 0000 C CNN +F 1 "PORT" H 11700 4500 30 0000 C CNN +F 2 "" H 11700 4500 60 0000 C CNN +F 3 "" H 11700 4500 60 0000 C CNN + 1 11700 4500 + 0 -1 -1 0 +$EndComp +NoConn ~ 3050 5450 +$Comp +L adc_bridge_1 U2 +U 1 1 6A08B52D +P 8400 4550 +F 0 "U2" H 8400 4550 60 0000 C CNN +F 1 "adc_bridge_1" H 8400 4700 60 0000 C CNN +F 2 "" H 8400 4550 60 0000 C CNN +F 3 "" H 8400 4550 60 0000 C CNN + 1 8400 4550 + 1 0 0 -1 +$EndComp +$Comp +L dac_bridge_1 U6 +U 1 1 6A08B5DC +P 9800 4700 +F 0 "U6" H 9800 4700 60 0000 C CNN +F 1 "dac_bridge_1" H 9800 4850 60 0000 C CNN +F 2 "" H 9800 4700 60 0000 C CNN +F 3 "" H 9800 4700 60 0000 C CNN + 1 9800 4700 + 1 0 0 -1 +$EndComp +$Comp +L adc_bridge_1 U5 +U 1 1 6A08BDE4 +P 9050 5500 +F 0 "U5" H 9050 5500 60 0000 C CNN +F 1 "adc_bridge_1" H 9050 5650 60 0000 C CNN +F 2 "" H 9050 5500 60 0000 C CNN +F 3 "" H 9050 5500 60 0000 C CNN + 1 9050 5500 + 1 0 0 -1 +$EndComp +$Comp +L dac_bridge_1 U7 +U 1 1 6A08C0D2 +P 9800 5950 +F 0 "U7" H 9800 5950 60 0000 C CNN +F 1 "dac_bridge_1" H 9800 6100 60 0000 C CNN +F 2 "" H 9800 5950 60 0000 C CNN +F 3 "" H 9800 5950 60 0000 C CNN + 1 9800 5950 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U9 +U 1 1 6A08F75F +P 7400 6000 +F 0 "U9" H 7400 5900 60 0000 C CNN +F 1 "d_inverter" H 7400 6150 60 0000 C CNN +F 2 "" H 7450 5950 60 0000 C CNN +F 3 "" H 7450 5950 60 0000 C CNN + 1 7400 6000 + 1 0 0 -1 +$EndComp +$Comp +L adc_bridge_1 U8 +U 1 1 6A08F7BC +P 6550 5750 +F 0 "U8" H 6550 5750 60 0000 C CNN +F 1 "adc_bridge_1" H 6550 5900 60 0000 C CNN +F 2 "" H 6550 5750 60 0000 C CNN +F 3 "" H 6550 5750 60 0000 C CNN + 1 6550 5750 + 1 0 0 -1 +$EndComp +$Comp +L dac_bridge_1 U10 +U 1 1 6A08F806 +P 8400 6300 +F 0 "U10" H 8400 6300 60 0000 C CNN +F 1 "dac_bridge_1" H 8400 6450 60 0000 C CNN +F 2 "" H 8400 6300 60 0000 C CNN +F 3 "" H 8400 6300 60 0000 C CNN + 1 8400 6300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4300 5450 4300 5700 +Wire Wire Line + 3700 5700 4550 5700 +Wire Wire Line + 4850 5700 5450 5700 +Connection ~ 4300 5700 +Wire Wire Line + 5750 5200 5750 5500 +Wire Wire Line + 5200 5900 5200 5700 +Connection ~ 5200 5700 +Wire Wire Line + 5200 6200 5200 6450 +Wire Wire Line + 5200 6450 11400 6450 +Wire Wire Line + 5750 5900 5750 6450 +Connection ~ 5750 6450 +Wire Wire Line + 4300 5150 4300 4150 +Wire Wire Line + 6900 5000 6900 5400 +Connection ~ 6900 5400 +Wire Wire Line + 10750 5000 10750 5900 +Wire Wire Line + 10750 5900 10700 5900 +Wire Wire Line + 10700 5900 10700 6100 +Wire Wire Line + 10550 5400 10750 5400 +Connection ~ 10750 5400 +Wire Wire Line + 11050 5200 11050 5900 +Wire Wire Line + 11050 5900 11000 5900 +Wire Wire Line + 11050 3800 11050 4800 +Wire Wire Line + 11150 5150 11150 5250 +Wire Wire Line + 11150 5250 11350 5250 +Wire Wire Line + 11350 5250 11350 4700 +Wire Wire Line + 11350 4700 11050 4700 +Connection ~ 11050 4700 +Wire Wire Line + 11000 6300 11000 6550 +Wire Wire Line + 11100 6250 11100 6400 +Wire Wire Line + 11050 5400 12400 5400 +Connection ~ 11050 5400 +Wire Wire Line + 11500 5050 11500 6000 +Wire Wire Line + 11500 6000 11450 6000 +Connection ~ 11500 5400 +Wire Wire Line + 11450 6300 11450 6750 +Wire Wire Line + 6300 5200 6300 5250 +Wire Wire Line + 6300 5250 6600 5250 +Wire Wire Line + 6600 5250 6600 4550 +Wire Wire Line + 6600 4550 6900 4550 +Wire Wire Line + 6900 4550 6900 4600 +Wire Wire Line + 6800 4650 6800 4550 +Connection ~ 6800 4550 +Wire Wire Line + 5150 5200 5750 5200 +Connection ~ 5750 5400 +Wire Wire Line + 5150 4300 5150 4250 +Wire Wire Line + 6300 4250 6300 4300 +Wire Wire Line + 11500 5050 12350 5050 +Wire Wire Line + 2750 5450 3050 5450 +Wire Wire Line + 5850 5850 5850 6450 +Connection ~ 5850 6450 +Wire Wire Line + 8050 4700 7800 4700 +Wire Wire Line + 7800 4700 7800 4500 +Wire Wire Line + 8950 4500 8950 4700 +Wire Wire Line + 8950 4700 8800 4700 +Wire Wire Line + 8800 4700 8800 5000 +Wire Wire Line + 9200 4650 9200 4800 +Wire Wire Line + 9200 4800 9400 4800 +Wire Wire Line + 9400 4800 9400 5000 +Wire Wire Line + 10350 5200 10350 4650 +Wire Wire Line + 8450 5200 10350 5200 +Wire Wire Line + 9700 5450 9600 5450 +Wire Wire Line + 10300 5450 10400 5450 +Wire Wire Line + 10400 5450 10400 5650 +Wire Wire Line + 10400 5650 9200 5650 +Wire Wire Line + 9200 5650 9200 5900 +Wire Wire Line + 10350 5900 10550 5900 +Wire Wire Line + 10550 5900 10550 5400 +Wire Wire Line + 10900 4150 10900 3900 +Wire Wire Line + 10900 3900 11700 3900 +Wire Wire Line + 11050 3800 10450 3800 +Wire Wire Line + 10450 3800 10450 3650 +Connection ~ 11050 3900 +Wire Wire Line + 10450 3650 10350 3650 +Wire Wire Line + 11700 3900 11700 4250 +Wire Wire Line + 11100 6400 11000 6400 +Connection ~ 11000 6400 +Wire Wire Line + 11400 6450 11400 6750 +Wire Wire Line + 11400 6750 11450 6750 +Wire Wire Line + 11000 6500 10650 6500 +Wire Wire Line + 10650 6500 10650 6600 +Connection ~ 11000 6500 +Wire Wire Line + 5150 4250 6300 4250 +Wire Wire Line + 5750 5400 7150 5400 +Wire Wire Line + 7150 5400 7150 5500 +Wire Wire Line + 7150 5500 5950 5500 +Wire Wire Line + 5950 5500 5950 5700 +Wire Wire Line + 7100 5700 7100 6000 +Wire Wire Line + 7700 6000 7700 6250 +Wire Wire Line + 7700 6250 7800 6250 +Wire Wire Line + 8950 6250 8950 5900 +Wire Wire Line + 8950 5900 7750 5900 +Wire Wire Line + 7750 5900 7750 5550 +Wire Wire Line + 7750 5550 7450 5550 +Wire Wire Line + 7450 5550 7450 5400 +Wire Wire Line + 7450 5400 8050 5400 +Wire Wire Line + 8050 5400 8050 4700 +Wire Wire Line + 8450 5200 8450 5450 +Wire Wire Line + 7200 4800 7400 4800 +Wire Wire Line + 7400 4800 7400 5250 +Wire Wire Line + 7400 5250 8050 5250 +Connection ~ 8050 5250 +Wire Wire Line + 4300 4150 10900 4150 +Connection ~ 5700 4250 +Wire Wire Line + 5700 4300 5700 4250 +$Comp +L PWR_FLAG #FLG01 +U 1 1 6A08D8CD +P 5700 4300 +F 0 "#FLG01" H 5700 4375 50 0001 C CNN +F 1 "PWR_FLAG" H 5700 4450 50 0000 C CNN +F 2 "" H 5700 4300 50 0001 C CNN +F 3 "" H 5700 4300 50 0001 C CNN + 1 5700 4300 + -1 0 0 1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/MIC4422/MIC4422.sub b/library/SubcircuitLibrary/MIC4422/MIC4422.sub new file mode 100644 index 000000000..c191dc0c9 --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/MIC4422.sub @@ -0,0 +1,55 @@ +* Subcircuit MIC4422 +.subckt MIC4422 net-_d1-pad2_ net-_d1-pad1_ ? net-_m3-pad3_ net-_m3-pad3_ net-_d3-pad2_ net-_d3-pad2_ net-_d1-pad2_ +* c:\fossee\esim\library\subcircuitlibrary\mic4422\mic4422.cir +.include D.lib +.include PMOS-180nm.lib +.include NMOS-180nm.lib +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +r1 net-_d1-pad1_ net-_d2-pad2_ 2k +m1 net-_i1-pad1_ net-_d2-pad2_ net-_d2-pad1_ net-_d2-pad1_ CMOSN W=100u L=100u M=1 +m2 net-_i1-pad1_ net-_m2-pad2_ net-_i2-pad1_ net-_i2-pad1_ CMOSP W=100u L=100u M=1 +m4 net-_d1-pad2_ net-_m3-pad2_ net-_d3-pad2_ net-_d1-pad2_ CMOSP W=100u L=100u M=1 +m3 net-_d3-pad2_ net-_m3-pad2_ net-_m3-pad3_ net-_m3-pad3_ CMOSN W=100u L=100u M=1 +d3 net-_d2-pad1_ net-_d3-pad2_ 1N4148 +d2 net-_d2-pad1_ net-_d2-pad2_ 1N4148 +* u3 net-_u2-pad2_ net-_u3-pad2_ d_inverter +* u4 net-_u4-pad1_ net-_u4-pad2_ d_inverter +i1 net-_i1-pad1_ net-_d1-pad2_ 0.1ma +i2 net-_i2-pad1_ net-_d1-pad2_ 0.3ma +* u2 net-_m2-pad2_ net-_u2-pad2_ adc_bridge_1 +* u6 net-_u3-pad2_ net-_u5-pad1_ dac_bridge_1 +* u5 net-_u5-pad1_ net-_u4-pad1_ adc_bridge_1 +* u7 net-_u4-pad2_ net-_m3-pad2_ dac_bridge_1 +* u9 net-_u8-pad2_ net-_u10-pad1_ d_inverter +* u8 net-_i1-pad1_ net-_u8-pad2_ adc_bridge_1 +* u10 net-_u10-pad1_ net-_m2-pad2_ dac_bridge_1 +a1 net-_u2-pad2_ net-_u3-pad2_ u3 +a2 net-_u4-pad1_ net-_u4-pad2_ u4 +a3 [net-_m2-pad2_ ] [net-_u2-pad2_ ] u2 +a4 [net-_u3-pad2_ ] [net-_u5-pad1_ ] u6 +a5 [net-_u5-pad1_ ] [net-_u4-pad1_ ] u5 +a6 [net-_u4-pad2_ ] [net-_m3-pad2_ ] u7 +a7 net-_u8-pad2_ net-_u10-pad1_ u9 +a8 [net-_i1-pad1_ ] [net-_u8-pad2_ ] u8 +a9 [net-_u10-pad1_ ] [net-_m2-pad2_ ] u10 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u6 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u7 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u10 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Control Statements + +.ends MIC4422 \ No newline at end of file diff --git a/library/SubcircuitLibrary/MIC4422/MIC4422_Previous_Values.xml b/library/SubcircuitLibrary/MIC4422/MIC4422_Previous_Values.xml new file mode 100644 index 000000000..99f06cd53 --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/MIC4422_Previous_Values.xml @@ -0,0 +1 @@ +0.1m0.3m0.1ma0.3mad_inverterd_inverteradc_bridgedac_bridgeadc_bridgedac_bridged_inverteradc_bridgedac_bridgeC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/MIC4422/NMOS-180nm.lib b/library/SubcircuitLibrary/MIC4422/NMOS-180nm.lib new file mode 100644 index 000000000..51e9b1196 --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/NMOS-180nm.lib @@ -0,0 +1,13 @@ +.model CMOSN NMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=2.3549E17 VTH0=0.3823463 K1=0.5810697 ++ K2=4.774618E-3 K3=0.0431669 K3B=1.1498346 W0=1E-7 NLX=1.910552E-7 DVT0W=0 DVT1W=0 DVT2W=0 ++ DVT0=1.2894824 DVT1=0.3622063 DVT2=0.0713729 U0=280.633249 UA=-1.208537E-9 UB=2.158625E-18 ++ UC=5.342807E-11 VSAT=9.366802E4 A0=1.7593146 AGS=0.3939741 B0=-6.413949E-9 B1=-1E-7 KETA=-5.180424E-4 ++ A1=0 A2=1 RDSW=105.5517558 PRWG=0.5 PRWB=-0.1998871 WR=1 WINT=7.904732E-10 LINT=1.571424E-8 XL=0 ++ XW=-1E-8 DWG=1.297221E-9 DWB=1.479041E-9 VOFF=-0.0955434 NFACTOR=2.4358891 CIT=0 CDSC=2.4E-4 CDSCD=0 ++ CDSCB=0 ETA0=3.104851E-3 ETAB=-2.512384E-5 DSUB=0.0167075 PCLM=0.8073191 PDIBLC1=0.1666161 PDIBLC2=3.112892E-3 ++ PDIBLCB=-0.1 DROUT=0.7875618 PSCBE1=8E10 PSCBE2=9.213635E-10 PVAG=3.85243E-3 DELTA=0.01 RSH=6.7 MOBMOD=1 ++ PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 ++ WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 CGDO=7.08E-10 CGSO=7.08E-10 CGBO=1E-12 ++ CJ=9.68858E-4 PB=0.8 MJ=0.3864502 CJSW=2.512138E-10 PBSW=0.809286 MJSW=0.1060414 CJSWG=3.3E-10 PBSWG=0.809286 ++ MJSWG=0.1060414 CF=0 PVTH0=-1.192722E-3 PRDSW=-5 PK2=6.450505E-5 WKETA=-4.27294E-4 LKETA=-0.0104078 ++ PU0=6.3268729 PUA=2.226552E-11 PUB=0 PVSAT=969.1480157 PETA0=1E-4 PKETA=-1.049509E-3) diff --git a/library/SubcircuitLibrary/MIC4422/PMOS-180nm.lib b/library/SubcircuitLibrary/MIC4422/PMOS-180nm.lib new file mode 100644 index 000000000..032b5b95e --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/PMOS-180nm.lib @@ -0,0 +1,11 @@ +.model CMOSP PMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=4.1589E17 VTH0=-0.3938813 K1=0.5479015 ++ K2=0.0360586 K3=0.0993095 K3B=5.7086622 W0=1E-6 NLX=1.313191E-7 DVT0W=0 DVT1W=0 DVT2W=0 DVT0=0.4911363 ++ DVT1=0.2227356 DVT2=0.1 U0=115.6852975 UA=1.505832E-9 UB=1E-21 UC=-1E-10 VSAT=1.329694E5 A0=1.7590478 ++ AGS=0.3641621 B0=3.427126E-7 B1=1.062928E-6 KETA=0.0134667 A1=0.6859506 A2=0.3506788 RDSW=168.5705677 ++ PRWG=0.5 PRWB=-0.4987371 WR=1 WINT=0 LINT=3.028832E-8 XL=0 XW=-1E-8 DWG=-2.349633E-8 DWB=-7.152486E-9 ++ VOFF=-0.0994037 NFACTOR=1.9424315 CIT=0 CDSC=2.4E-4 CDSCD=0 CDSCB=0 ETA0=0.0608072 ETAB=-0.0426148 ++ DSUB=0.7343015 PCLM=3.2579974 PDIBLC1=7.229527E-6 PDIBLC2=0.025389 PDIBLCB=-1E-3 DROUT=0 PSCBE1=1.454878E10 ++ PSCBE2=4.202027E-9 PVAG=15 DELTA=0.01 RSH=7.8 MOBMOD=1 PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 ++ UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 ++ CGDO=6.32E-10 CGSO=6.32E-10 CGBO=1E-12 CJ=1.172138E-3 PB=0.8421173 MJ=0.4109788 CJSW=2.242609E-10 PBSW=0.8 + MJSW=0.3752089 CJSWG=4.22E-10 PBSWG=0.8 MJSWG=0.3752089 CF=0 PVTH0=1.888482E-3 PRDSW=11.5315407 PK2=1.559399E-3 ++ WKETA=0.0319301 LKETA=2.955547E-3 PU0=-1.1105313 PUA=-4.62102E-11 PUB=1E-21 PVSAT=50 PETA0=1E-4 PKETA=-4.346368E-3) diff --git a/library/SubcircuitLibrary/MIC4422/analysis b/library/SubcircuitLibrary/MIC4422/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/MIC4422/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.cir new file mode 100644 index 000000000..7187b312d --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.cir @@ -0,0 +1,35 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ PORT +U23 Net-_U19-Pad3_ Net-_U1-Pad10_ d_inverter +U22 Net-_U18-Pad3_ Net-_U1-Pad9_ d_inverter +X2 Net-_U1-Pad2_ Net-_U3-Pad1_ 74HC14 +X1 Net-_U1-Pad1_ Net-_U2-Pad1_ 74HC14 +U18 Net-_U10-Pad2_ Net-_U14-Pad2_ Net-_U18-Pad3_ d_and +X3 Net-_U1-Pad3_ Net-_U4-Pad1_ 74HC14 +X4 Net-_U1-Pad4_ Net-_U5-Pad1_ 74HC14 +U19 Net-_U11-Pad2_ Net-_U15-Pad2_ Net-_U19-Pad3_ d_and +U4 Net-_U4-Pad1_ Net-_U11-Pad1_ adc_bridge_1 +U5 Net-_U5-Pad1_ Net-_U15-Pad1_ adc_bridge_1 +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ d_inverter +U15 Net-_U15-Pad1_ Net-_U15-Pad2_ d_inverter +U3 Net-_U3-Pad1_ Net-_U14-Pad1_ adc_bridge_1 +U14 Net-_U14-Pad1_ Net-_U14-Pad2_ d_inverter +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ d_inverter +U2 Net-_U2-Pad1_ Net-_U10-Pad1_ adc_bridge_1 +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ d_inverter +U16 Net-_U16-Pad1_ Net-_U16-Pad2_ d_inverter +X7 Net-_U1-Pad7_ Net-_U8-Pad1_ 74HC14 +X8 Net-_U1-Pad8_ Net-_U9-Pad1_ 74HC14 +U7 Net-_U7-Pad1_ Net-_U16-Pad1_ adc_bridge_1 +U6 Net-_U6-Pad1_ Net-_U12-Pad1_ adc_bridge_1 +X5 Net-_U1-Pad5_ Net-_U6-Pad1_ 74HC14 +X6 Net-_U1-Pad6_ Net-_U7-Pad1_ 74HC14 +U25 Net-_U21-Pad3_ Net-_U1-Pad12_ d_inverter +U21 Net-_U13-Pad2_ Net-_U17-Pad2_ Net-_U21-Pad3_ d_and +U20 Net-_U12-Pad2_ Net-_U16-Pad2_ Net-_U20-Pad3_ d_and +U24 Net-_U20-Pad3_ Net-_U1-Pad11_ d_inverter +U17 Net-_U17-Pad1_ Net-_U17-Pad2_ d_inverter +U9 Net-_U9-Pad1_ Net-_U17-Pad1_ adc_bridge_1 +U8 Net-_U8-Pad1_ Net-_U13-Pad1_ adc_bridge_1 +U13 Net-_U13-Pad1_ Net-_U13-Pad2_ d_inverter +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.cir.out new file mode 100644 index 000000000..30cf556d2 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.cir.out @@ -0,0 +1,117 @@ +.title kicad schematic + +.include 74HC14.sub +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ port +* u23 net-_u19-pad3_ net-_u1-pad10_ d_inverter +* u22 net-_u18-pad3_ net-_u1-pad9_ d_inverter +x2 net-_u1-pad2_ net-_u3-pad1_ 74HC14 +x1 net-_u1-pad1_ net-_u2-pad1_ 74HC14 +* u18 net-_u10-pad2_ net-_u14-pad2_ net-_u18-pad3_ d_and +x3 net-_u1-pad3_ net-_u4-pad1_ 74HC14 +x4 net-_u1-pad4_ net-_u5-pad1_ 74HC14 +* u19 net-_u11-pad2_ net-_u15-pad2_ net-_u19-pad3_ d_and +* u4 net-_u4-pad1_ net-_u11-pad1_ adc_bridge_1 +* u5 net-_u5-pad1_ net-_u15-pad1_ adc_bridge_1 +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +* u15 net-_u15-pad1_ net-_u15-pad2_ d_inverter +* u3 net-_u3-pad1_ net-_u14-pad1_ adc_bridge_1 +* u14 net-_u14-pad1_ net-_u14-pad2_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u2 net-_u2-pad1_ net-_u10-pad1_ adc_bridge_1 +* u12 net-_u12-pad1_ net-_u12-pad2_ d_inverter +* u16 net-_u16-pad1_ net-_u16-pad2_ d_inverter +x7 net-_u1-pad7_ net-_u8-pad1_ 74HC14 +x8 net-_u1-pad8_ net-_u9-pad1_ 74HC14 +* u7 net-_u7-pad1_ net-_u16-pad1_ adc_bridge_1 +* u6 net-_u6-pad1_ net-_u12-pad1_ adc_bridge_1 +x5 net-_u1-pad5_ net-_u6-pad1_ 74HC14 +x6 net-_u1-pad6_ net-_u7-pad1_ 74HC14 +* u25 net-_u21-pad3_ net-_u1-pad12_ d_inverter +* u21 net-_u13-pad2_ net-_u17-pad2_ net-_u21-pad3_ d_and +* u20 net-_u12-pad2_ net-_u16-pad2_ net-_u20-pad3_ d_and +* u24 net-_u20-pad3_ net-_u1-pad11_ d_inverter +* u17 net-_u17-pad1_ net-_u17-pad2_ d_inverter +* u9 net-_u9-pad1_ net-_u17-pad1_ adc_bridge_1 +* u8 net-_u8-pad1_ net-_u13-pad1_ adc_bridge_1 +* u13 net-_u13-pad1_ net-_u13-pad2_ d_inverter +a1 net-_u19-pad3_ net-_u1-pad10_ u23 +a2 net-_u18-pad3_ net-_u1-pad9_ u22 +a3 [net-_u10-pad2_ net-_u14-pad2_ ] net-_u18-pad3_ u18 +a4 [net-_u11-pad2_ net-_u15-pad2_ ] net-_u19-pad3_ u19 +a5 [net-_u4-pad1_ ] [net-_u11-pad1_ ] u4 +a6 [net-_u5-pad1_ ] [net-_u15-pad1_ ] u5 +a7 net-_u11-pad1_ net-_u11-pad2_ u11 +a8 net-_u15-pad1_ net-_u15-pad2_ u15 +a9 [net-_u3-pad1_ ] [net-_u14-pad1_ ] u3 +a10 net-_u14-pad1_ net-_u14-pad2_ u14 +a11 net-_u10-pad1_ net-_u10-pad2_ u10 +a12 [net-_u2-pad1_ ] [net-_u10-pad1_ ] u2 +a13 net-_u12-pad1_ net-_u12-pad2_ u12 +a14 net-_u16-pad1_ net-_u16-pad2_ u16 +a15 [net-_u7-pad1_ ] [net-_u16-pad1_ ] u7 +a16 [net-_u6-pad1_ ] [net-_u12-pad1_ ] u6 +a17 net-_u21-pad3_ net-_u1-pad12_ u25 +a18 [net-_u13-pad2_ net-_u17-pad2_ ] net-_u21-pad3_ u21 +a19 [net-_u12-pad2_ net-_u16-pad2_ ] net-_u20-pad3_ u20 +a20 net-_u20-pad3_ net-_u1-pad11_ u24 +a21 net-_u17-pad1_ net-_u17-pad2_ u17 +a22 [net-_u9-pad1_ ] [net-_u17-pad1_ ] u9 +a23 [net-_u8-pad1_ ] [net-_u13-pad1_ ] u8 +a24 net-_u13-pad1_ net-_u13-pad2_ u13 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u22 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u7 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u6 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u9 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.kicad_sch new file mode 100644 index 000000000..5934257c6 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.kicad_sch @@ -0,0 +1,1749 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 30a92472-f0bc-43fa-919d-53eb4fe7b45b) + + (paper "User" 431.8 379.4) + + (lib_symbols + (symbol "74HC14_1" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "74HC14_1" (id 1) (at 1.27 3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "74HC14_1_0_1" + (rectangle (start -1.27 1.27) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.27) + (xy 2.54 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 1.27) + (xy -2.54 1.27) + (xy -1.27 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 6.35 0) + (xy -3.81 5.08) + (xy -3.81 -5.08) + (xy 6.35 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 7.62 0) (radius 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "74HC14_1_1_1" + (pin input line (at -6.35 0 0) (length 2.54) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 0 180) (length 2.54) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (wire (pts (xy 223.52 100.33) (xy 240.03 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0437e8c9-caef-46da-8e91-d7d0a4e92e6b) + ) + (wire (pts (xy 240.03 140.97) (xy 240.03 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c9be063-f6d0-49c4-8c20-58fa28925bce) + ) + (wire (pts (xy 262.89 241.3) (xy 269.24 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44ad30de-5900-40f0-984a-56ce9c05f594) + ) + (wire (pts (xy 160.02 74.93) (xy 170.18 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ac334d4-cc99-47be-92a5-f0586ccc55c3) + ) + (wire (pts (xy 160.02 100.33) (xy 171.45 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56f2f641-bb9b-45b3-9f22-8bff102fa815) + ) + (wire (pts (xy 200.66 201.93) (xy 208.28 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58e373e6-c2d4-424f-9d28-3935d298c5d8) + ) + (wire (pts (xy 160.02 252.73) (xy 171.45 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6149272c-7234-49f2-a422-2b3779095ac2) + ) + (wire (pts (xy 200.66 227.33) (xy 205.74 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f738bff-6d83-401e-b374-1b5912283c45) + ) + (wire (pts (xy 262.89 88.9) (xy 269.24 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76aff494-33b2-4d0f-857c-d79924a67c56) + ) + (wire (pts (xy 200.66 125.73) (xy 205.74 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e8b538a-c18c-4ba2-a17e-1d930d157704) + ) + (wire (pts (xy 220.98 74.93) (xy 240.03 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 817ab622-122d-49a1-825e-926d3c5c5dfe) + ) + (wire (pts (xy 240.03 125.73) (xy 240.03 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86fde2a7-a526-46f6-a4b6-a327e6f0a26f) + ) + (wire (pts (xy 160.02 176.53) (xy 171.45 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 960c0076-65e7-42c8-8725-66ea3dad5c5b) + ) + (wire (pts (xy 240.03 176.53) (xy 240.03 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98a2aa38-2fce-483e-b875-03d2475898f9) + ) + (wire (pts (xy 160.02 151.13) (xy 171.45 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9956e514-0103-4e3e-8674-215bb306113c) + ) + (wire (pts (xy 262.89 139.7) (xy 269.24 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0b3a8b8-c356-47d3-9ca2-006dc3aff003) + ) + (wire (pts (xy 240.03 90.17) (xy 240.03 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a29f99cd-33ef-4365-9efe-b169870d4b29) + ) + (wire (pts (xy 240.03 191.77) (xy 240.03 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3716890-d035-40b1-af3b-5af5d74ac4b3) + ) + (wire (pts (xy 240.03 74.93) (xy 240.03 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5568e83-c751-4056-90e0-b2507946a082) + ) + (wire (pts (xy 223.52 151.13) (xy 240.03 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7d57030-cf78-41eb-bd93-5052fca259a0) + ) + (wire (pts (xy 220.98 176.53) (xy 240.03 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8005af7-b2cb-427b-b71b-44b105614b0c) + ) + (wire (pts (xy 223.52 252.73) (xy 240.03 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af2e46a9-ae89-44d4-80b7-d439ef894447) + ) + (wire (pts (xy 200.66 151.13) (xy 208.28 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2bd5fef-a99a-4fd7-b451-a7ac29cbdf5a) + ) + (wire (pts (xy 200.66 252.73) (xy 208.28 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3bc67de-e665-4b6b-9833-41cbf19dff0e) + ) + (wire (pts (xy 240.03 242.57) (xy 240.03 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb32ac8e-6c89-419f-a1a3-07dddb76aff6) + ) + (wire (pts (xy 220.98 227.33) (xy 240.03 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7d33bd6-2995-4bea-9142-90b8e6a79555) + ) + (wire (pts (xy 240.03 227.33) (xy 240.03 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce9ead9a-0bff-4683-a3f0-972e03c568f6) + ) + (wire (pts (xy 220.98 125.73) (xy 240.03 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2b9c2d9-9e39-4c3d-a6a8-7187aea5a39b) + ) + (wire (pts (xy 223.52 201.93) (xy 240.03 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d59a0827-f52b-481d-b457-23884228260d) + ) + (wire (pts (xy 200.66 176.53) (xy 205.74 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d66e3149-b03e-44c5-9682-75dae96da7fe) + ) + (wire (pts (xy 200.66 100.33) (xy 208.28 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df0db295-49c5-4b99-9b3b-e4bde8d392d0) + ) + (wire (pts (xy 160.02 201.93) (xy 171.45 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df3e3316-5c71-4316-b57e-38c9d1b00499) + ) + (wire (pts (xy 262.89 190.5) (xy 269.24 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6d1a261-1cbb-472d-bbc8-3965e5b3719f) + ) + (wire (pts (xy 160.02 125.73) (xy 171.45 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee95d30d-ba21-4493-9128-9601bde5db6c) + ) + (wire (pts (xy 160.02 227.33) (xy 171.45 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb60f1d4-795a-4717-b8f5-37a0ad7c0438) + ) + (wire (pts (xy 199.39 74.93) (xy 205.74 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff534808-899b-4c04-a72e-a1613a8cf18c) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 186.69 228.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 05ab74a3-c471-4e2b-b942-25b108ac701a) + (property "Reference" "U8" (id 0) (at 186.055 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 186.055 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45c8fbaa-f22b-47df-a154-935569a6bc54)) + (pin "2" (uuid 65766c6d-57bd-413e-b736-8d5c24acd934)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 290.83 139.7 0) (mirror y) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0eb1435f-5af3-416c-9135-e5dee1b41a90) + (property "Reference" "U1" (id 0) (at 294.64 139.065 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 294.64 141.605 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 290.83 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 290.83 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9cbc7772-4ef2-4bc2-9670-f3865b614e56)) + (pin "2" (uuid fd4d89d1-0bad-4e8b-b14b-39d77e424ad1)) + (pin "3" (uuid ffaaf045-fa96-4308-b361-5d67af72ab77)) + (pin "4" (uuid caa9fe79-345b-4426-88b8-c309491814ed)) + (pin "5" (uuid 4429bed1-8fa9-4cb9-b179-6ffd653a9a02)) + (pin "6" (uuid 3db5c188-1a14-4904-bed0-1521972055e5)) + (pin "7" (uuid 1a36bdf7-bade-4c62-a390-644143be14d1)) + (pin "8" (uuid 8224c4a8-8035-4450-a68f-b709ea5c7618)) + (pin "9" (uuid 2945d2e5-3f5a-4f43-b638-b91f5bf97b2c)) + (pin "10" (uuid 4c0cd3d2-a53d-4b57-8b3e-16492e3a3cf0)) + (pin "11" (uuid 4fe5e83a-6240-43c3-a745-173f5b89012c)) + (pin "12" (uuid e6a6063f-b974-4d4b-9652-c462bfdb72e4)) + (pin "13" (uuid a5cbc587-30ed-4763-9d2e-bc7528328a3a)) + (pin "14" (uuid 3ee35bca-73d0-49c9-9056-3755e7d991ab)) + (pin "15" (uuid 7eaef74b-4222-4d3a-a1d9-1865c25b7981)) + (pin "16" (uuid 495123ed-3e8c-4548-a269-1e0f8fc5a423)) + (pin "17" (uuid cd76ffda-6d09-45fd-a99c-72ca585233e0)) + (pin "18" (uuid 85770a56-3b64-410b-bd0a-9149ee9ba09d)) + (pin "19" (uuid edd85101-c9ea-4f7e-aec2-a49a0e0b54f4)) + (pin "20" (uuid 43bc7ea5-c597-48c5-998e-27f4b827f1b1)) + (pin "21" (uuid eb9600b9-4e99-4710-98a7-d81ec4e8bcbf)) + (pin "22" (uuid 9f4dda67-d83d-4a74-a960-a7940a9ce18f)) + (pin "23" (uuid 5189076f-4a72-4dc4-b1e5-0237b9c63279)) + (pin "24" (uuid c4fbf148-4738-4ca9-a547-d8f9295d6ba9)) + (pin "25" (uuid d07914b0-8ef5-48bb-b888-af78e56dad07)) + (pin "26" (uuid 0a6930fe-288c-4dd3-992d-c7e56aab003d)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 186.69 203.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 11bd97e4-5749-4ab7-b17a-f89a601110e0) + (property "Reference" "U7" (id 0) (at 186.055 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 186.055 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a43e857e-a3d1-4bd2-a100-5faa76d0614e)) + (pin "2" (uuid 9f2e344f-9173-49cd-b7db-8ab641e64aad)) + ) + + (symbol (lib_name "74HC14_1") (lib_id "eSim_Subckt:74HC14") (at 148.59 252.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15897b41-0693-44a9-ba9e-cca321c12b3e) + (property "Reference" "X8" (id 0) (at 151.13 242.57 0)) + (property "Value" "74HC14" (id 1) (at 151.13 245.11 0)) + (property "Footprint" "" (id 2) (at 148.59 252.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 252.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9a9d2193-315a-4cbb-b5fc-8c16360b2e48)) + (pin "2" (uuid aa3e0eb6-ecf7-4d0c-bbe9-d179855ca186)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 186.69 254 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1dfac24b-91c0-4bee-a811-7bcb492da111) + (property "Reference" "U9" (id 0) (at 186.055 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 186.055 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 254 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0741d96e-de26-4f0a-bda2-0267bfb725dd)) + (pin "2" (uuid 97a8ce8b-eaec-4663-b73f-6e7558143951)) + ) + + (symbol (lib_name "74HC14_1") (lib_id "eSim_Subckt:74HC14") (at 148.59 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 22252555-4449-4ff1-aa2b-654511fe34bd) + (property "Reference" "X3" (id 0) (at 151.13 115.57 0)) + (property "Value" "74HC14" (id 1) (at 151.13 118.11 0)) + (property "Footprint" "" (id 2) (at 148.59 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7f060f4d-1d16-4732-9126-3323c5a12815)) + (pin "2" (uuid d64912d8-ecff-488e-8259-ad8abdf39308)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 213.36 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2c1ef70b-f2c3-4f4c-a410-89a6b5675368) + (property "Reference" "U11" (id 0) (at 213.36 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 213.36 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 214.63 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a14a9610-ce8d-4267-aa39-7226d07b8d6f)) + (pin "2" (uuid 9df7b58a-d9c1-4cf3-94b3-3f3f410487f6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 215.9 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2ee03f55-916f-402e-a821-191323c4b592) + (property "Reference" "U14" (id 0) (at 215.9 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 215.9 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 217.17 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ca1dc45a-7dc5-4d1e-a6e4-2b0dc41262d1)) + (pin "2" (uuid 09ad58b8-7bd9-43d7-977f-eda6927738f8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 201.93 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3952f498-3c9f-47f4-b89a-166ee84c5ab2) + (property "Reference" "U1" (id 0) (at 136.525 196.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 136.525 199.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 135.89 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c53fdaf5-3f00-40d1-a930-217938ea0f9b)) + (pin "2" (uuid e47edba7-9d60-494d-9f46-31399c79af1a)) + (pin "3" (uuid b89541a4-a61b-4fa8-8a8c-2d1b43c7a9d2)) + (pin "4" (uuid 03f80a11-8cd5-494c-ac19-f412f8e68cb4)) + (pin "5" (uuid b78c527d-f48d-4796-848a-8204026932f8)) + (pin "6" (uuid 7625f188-6a53-4b3a-a083-11014d68f494)) + (pin "7" (uuid 05233816-d023-4496-bfcd-f8adf5a1c531)) + (pin "8" (uuid 814a7df5-c986-4c92-a3d7-afa6abf0bdde)) + (pin "9" (uuid bc95a667-015d-4e35-8faa-d1f39a84dd1c)) + (pin "10" (uuid bab4fe15-fe14-4fe9-b579-7009bdcbb315)) + (pin "11" (uuid 4a64ab83-9059-44e5-be0d-c525cf9092e8)) + (pin "12" (uuid b192df8e-abe1-4d24-a199-8097b0c0ccdd)) + (pin "13" (uuid 8d643d93-0834-4322-812b-21deefdc8075)) + (pin "14" (uuid 371a40ca-68eb-43e8-9a63-8106ba017f0e)) + (pin "15" (uuid a12094c7-88a9-4afa-81cf-5ed134f870db)) + (pin "16" (uuid b2945c90-af11-4a37-b52e-54efd40fd1c3)) + (pin "17" (uuid a4b7c388-53c2-468a-b364-0f34de054b16)) + (pin "18" (uuid d1b47fac-e440-4775-89ad-d60241975ea4)) + (pin "19" (uuid 00ddbcd2-ba51-464b-8301-e3323a64d769)) + (pin "20" (uuid 0975c92d-d22d-4f27-95d7-2d6df00f5c89)) + (pin "21" (uuid a76f9257-0ee8-4a2b-a076-fe71ff7b635c)) + (pin "22" (uuid 40851a01-ac5a-4ad8-b2d5-8747bd771bb8)) + (pin "23" (uuid 25f6f963-a2d3-4968-b2f0-5770e2139860)) + (pin "24" (uuid f919cadb-0ec4-432e-ab05-6ee5a4238552)) + (pin "25" (uuid 7b9f9292-28cc-4134-ab72-2dbe5741fd35)) + (pin "26" (uuid 4b4ee10d-9f30-44dc-85a6-babeab5eadb0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 100.33 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c7cac72-aea8-46d6-811f-b112289cbe9c) + (property "Reference" "U1" (id 0) (at 136.525 95.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 136.525 97.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 135.89 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 85bc9e4e-ddb7-477b-bd38-8e08e13424f3)) + (pin "2" (uuid 628d8e32-8bce-4b82-a8ac-495c2fe7c30c)) + (pin "3" (uuid e9cc7e97-d630-4b43-95f5-a9d39f3abd8c)) + (pin "4" (uuid bdce30b1-6f2a-4115-978c-3faa9bdc2fad)) + (pin "5" (uuid 05a82cb4-fa27-4965-90e8-711f5f8680a6)) + (pin "6" (uuid fa32ff97-f04e-48f8-b9e7-bef4f1565150)) + (pin "7" (uuid ed0cdfdb-e1d9-44d6-a674-5e9540ebee54)) + (pin "8" (uuid e1de1d7e-2812-4624-8882-112fe9782892)) + (pin "9" (uuid fdb44bcb-6065-4a9e-b94d-c6e82174583c)) + (pin "10" (uuid c51c9416-894c-4c15-a058-ef6bceece45a)) + (pin "11" (uuid 84424fee-4f6d-4f97-a41a-7df34daae691)) + (pin "12" (uuid 17c4e176-7378-492b-b1d6-fb3816082119)) + (pin "13" (uuid 8820b1bc-3d0b-4a98-adb2-a8be027ad372)) + (pin "14" (uuid 96645bd2-3d57-49ee-9134-c150221bf818)) + (pin "15" (uuid 467cec25-066c-4bbd-917a-86496d0e0a19)) + (pin "16" (uuid ad1816fd-02a7-451b-8e83-742eab4fbc52)) + (pin "17" (uuid 653be03a-824a-46eb-ad23-902cc474b4e3)) + (pin "18" (uuid a410b1c0-a7af-4717-ad7b-8d2b3ffaa248)) + (pin "19" (uuid 36b3de87-85b3-43da-8e0f-38089c0e4da6)) + (pin "20" (uuid d2847cc1-a870-4d6d-b01b-8e95dc74bf0e)) + (pin "21" (uuid f30d7925-ec4c-4b23-95bd-7b1ec1967c82)) + (pin "22" (uuid a58a55e1-58a1-4b7b-b429-cd5dacd95d22)) + (pin "23" (uuid fc241446-bdad-4514-8b00-435c75f9ba2d)) + (pin "24" (uuid b72d5ffd-847c-4cc3-9afb-c42506bfb5e2)) + (pin "25" (uuid 20154341-a448-4006-bbe9-478577a8ecd2)) + (pin "26" (uuid eed2515c-fbf6-4393-a537-90b2a3498fc8)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 186.69 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 41823ef1-f85f-49bd-9b46-7a4f30c28975) + (property "Reference" "U4" (id 0) (at 186.055 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 186.055 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6560d43d-0ddf-4bb1-bbdb-0feb7a7ac17c)) + (pin "2" (uuid 8b54c5f7-f3e1-46d3-8e1e-d77235803c4b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 276.86 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 41c508d6-5473-45bf-9c06-ad5690fdb77d) + (property "Reference" "U22" (id 0) (at 276.86 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 276.86 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 278.13 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8406fc08-72ef-45c9-bfc2-b77e7ecd64e0)) + (pin "2" (uuid e4282deb-ef96-480a-921b-3bfea3b24d74)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 290.83 190.5 0) (mirror y) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 43e50505-5e1a-4c8f-aa5d-3b4e3ea6efb4) + (property "Reference" "U1" (id 0) (at 294.64 189.865 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 294.64 192.405 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 290.83 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 290.83 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e60870b7-b1df-459f-90ab-d4d2f504c972)) + (pin "2" (uuid 26f449a4-b595-4b51-9bdb-3b156883a296)) + (pin "3" (uuid 1a68a042-ae50-46be-9b54-f6ddc6f781b7)) + (pin "4" (uuid c7edd6c6-8ffb-4466-b205-d6626af46daf)) + (pin "5" (uuid b1812550-e3ef-456c-8b4f-be693a31b014)) + (pin "6" (uuid 38fd24de-f121-468a-a119-584cab6d37e0)) + (pin "7" (uuid c60c298f-3b63-4a96-89e4-5578285bd7bb)) + (pin "8" (uuid 724652ce-f652-4cca-af66-d66c2934a429)) + (pin "9" (uuid 0f18bfd9-f7ee-492c-b464-be4f83388c56)) + (pin "10" (uuid c4192d82-a12a-4b76-ad51-5679b2fd3aeb)) + (pin "11" (uuid b74ebf8a-b5dc-4eb9-b140-2c8d73b52d0a)) + (pin "12" (uuid 34f9bd62-1592-4210-90e5-d4668bcc67aa)) + (pin "13" (uuid 46933939-0a6b-4ad1-a1fd-a44b8836dbe3)) + (pin "14" (uuid a71ff550-c152-45c6-8de7-fe523877183b)) + (pin "15" (uuid 3c5c82a1-27d9-4f44-a858-dbfcf6d5d79f)) + (pin "16" (uuid d627f180-f58c-4761-b3c9-ca7e5488b0a9)) + (pin "17" (uuid cd7b02a3-c72f-4457-a608-b61ca17f29ea)) + (pin "18" (uuid 5397db66-656d-4155-8b8d-49e710c607fa)) + (pin "19" (uuid 64ad2c69-f21b-4112-92c9-d8e7e535a5ff)) + (pin "20" (uuid 4ca7501b-f011-4f58-9156-b0627bedfae1)) + (pin "21" (uuid 90675c98-c40a-4846-b9c5-4dab742cf16d)) + (pin "22" (uuid 6fcc2e6e-2cbc-4b5a-84c4-b1ee13e15e71)) + (pin "23" (uuid 748acd88-06db-4452-9800-c84495456b74)) + (pin "24" (uuid 1f8ca545-1bb2-4958-8641-15f698aa58e5)) + (pin "25" (uuid 2245c696-5cfd-4a9e-b581-db5be442cc7b)) + (pin "26" (uuid 5a711b29-b80c-47a7-8c0c-6d1986bf64e1)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 185.42 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 49843ffb-5637-4f50-8b54-32dedf126d4b) + (property "Reference" "U2" (id 0) (at 184.785 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 184.785 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 185.42 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 185.42 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 56bf58c4-ee70-42d3-b45e-2225518ea66a)) + (pin "2" (uuid d52ca7d2-3551-4b2b-90d6-da76cc46468d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4d04535f-599d-497c-8e4c-00e8cb627717) + (property "Reference" "U1" (id 0) (at 136.525 69.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 136.525 72.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 135.89 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e8571c0c-51ec-4697-9ede-e9d3ef44cd2c)) + (pin "2" (uuid cba73458-6859-47b0-ab7d-602f5b6f58e1)) + (pin "3" (uuid 66c6e1f0-b044-49d3-8157-66fd01a376be)) + (pin "4" (uuid f72bbac7-d8f9-4811-8263-1119db0e72ce)) + (pin "5" (uuid 941866ce-830e-43c7-9a90-62e0e90c320d)) + (pin "6" (uuid 180bfcf9-4c58-45ef-a09d-051a25ae4092)) + (pin "7" (uuid 60031ff6-af18-485a-ae1c-930064a58be2)) + (pin "8" (uuid 2fe3c822-dc1b-40e1-a8c5-aeeed4edd8f4)) + (pin "9" (uuid 3fa12ea2-618f-41d0-89c8-77af433a66c0)) + (pin "10" (uuid c8d82e10-8f30-43e3-9c55-46d3c69e8f33)) + (pin "11" (uuid 53b39cf8-20fc-4bc6-bf14-b61fe2702a6f)) + (pin "12" (uuid fa8f1a4e-8ffb-43bb-9df5-ec3e3c2d8b97)) + (pin "13" (uuid 2624e2d8-ce5d-438d-adb1-eb2ecebfe441)) + (pin "14" (uuid 8e15627a-fd4a-47a8-91e5-fdb16493efaa)) + (pin "15" (uuid 7362a6c0-c3bd-44ea-9a94-c2747cf927cf)) + (pin "16" (uuid 6b9a91f9-0695-49e3-97ae-e56a3b995ca2)) + (pin "17" (uuid 029912ef-e3e4-487c-b224-8c64ce1805a0)) + (pin "18" (uuid f3024b21-0f8c-406d-9933-30a14e21e330)) + (pin "19" (uuid a730d786-809b-4a45-bc98-42c5e89cac5c)) + (pin "20" (uuid 5a0505e5-fe5a-4314-826f-0ba73c8c38ab)) + (pin "21" (uuid 7bf602e6-2287-4210-b6a1-c68b45d6f832)) + (pin "22" (uuid ed9b16e4-ec8b-4e16-9b08-df90c6dc1139)) + (pin "23" (uuid b7b2864d-3254-4043-9552-2ccaf63b95e4)) + (pin "24" (uuid ae8d7798-48a4-479a-a8c2-5ab319b22fb5)) + (pin "25" (uuid 9b0fe241-3872-47ee-95a9-e06fbfe5f626)) + (pin "26" (uuid 1ed616e9-e089-4227-8986-644c5cf2b8ba)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 290.83 241.3 0) (mirror y) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51725a60-308b-4098-9c8b-7e36a2d69361) + (property "Reference" "U1" (id 0) (at 294.64 240.665 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 294.64 243.205 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 290.83 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 290.83 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid edcb9e4d-26d3-45d3-82e5-f7ba3f7e4f3c)) + (pin "2" (uuid a564e627-fb97-4cc1-a225-fd2b986be0a6)) + (pin "3" (uuid 0b0c5b11-69a3-4be5-a0e0-e435b7e3ab23)) + (pin "4" (uuid 8cc9a91a-cecc-4db1-880e-7a06d4d7b6f1)) + (pin "5" (uuid 31dd5d5a-d9e2-4094-a389-52dd13e69bfc)) + (pin "6" (uuid b5b8a0ea-e635-4b33-8dcf-4da225a64a25)) + (pin "7" (uuid 65f23c91-df99-4359-b03c-a6f8a6ec8d59)) + (pin "8" (uuid b6e20a10-f189-41d3-8924-3dca8f6730ae)) + (pin "9" (uuid 96239917-88c9-4592-8aaf-8fa5b2baedd2)) + (pin "10" (uuid 0b150b4b-dcaf-46b6-a193-45cd70729598)) + (pin "11" (uuid 2b32b76e-4896-40ed-8c3e-2e35002c9e12)) + (pin "12" (uuid 90ad8c32-6a47-49ad-a06d-227e6768c173)) + (pin "13" (uuid c1c63ded-621a-4b79-8539-a7d4f35f4052)) + (pin "14" (uuid 2c9067cf-7dbc-408c-9e1d-5997d032e3af)) + (pin "15" (uuid 477f9b4d-9b13-4d66-9eda-fc4d7de94df6)) + (pin "16" (uuid fc9fe298-f26e-4820-93a6-828a2ae9ffe0)) + (pin "17" (uuid af82aa10-4940-4a14-b049-eac69678f460)) + (pin "18" (uuid 043dc4e1-4e0d-4e34-9eef-fdfad683a273)) + (pin "19" (uuid 0b0e3bf5-a7a4-4efb-b03b-2ed213c72631)) + (pin "20" (uuid 5853419c-9779-4ac9-aa9f-5b973b5c5a3f)) + (pin "21" (uuid 30572e36-9057-4383-b53a-3e65d575ae82)) + (pin "22" (uuid 2a28d02d-e88e-4622-a1e2-13cc2107cef9)) + (pin "23" (uuid 0dc5df55-75b8-492a-a480-2236c65ffa6e)) + (pin "24" (uuid 5e6a58b1-a4d0-47a9-bfd9-41f03f0a554c)) + (pin "25" (uuid 30549aa1-e6b8-417b-8881-96f7718fc764)) + (pin "26" (uuid 1ae420ca-67b4-4497-947e-73fb8f0658bf)) + ) + + (symbol (lib_name "74HC14_1") (lib_id "eSim_Subckt:74HC14") (at 148.59 201.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5249816b-ba34-4237-9b27-51de604e90d9) + (property "Reference" "X6" (id 0) (at 151.13 191.77 0)) + (property "Value" "74HC14" (id 1) (at 151.13 194.31 0)) + (property "Footprint" "" (id 2) (at 148.59 201.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 201.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3a9d3eb5-d3a0-4236-ae74-f42ff0a1b67e)) + (pin "2" (uuid c1ffdab6-5f12-4d05-bf0b-c5c04d2472cf)) + ) + + (symbol (lib_name "74HC14_1") (lib_id "eSim_Subckt:74HC14") (at 148.59 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6ed9279d-510d-4f67-87e5-b4dbdc66fa06) + (property "Reference" "X5" (id 0) (at 151.13 166.37 0)) + (property "Value" "74HC14" (id 1) (at 151.13 168.91 0)) + (property "Footprint" "" (id 2) (at 148.59 176.53 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 176.53 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5fa6d3ee-0ce3-4519-81e1-3dbdca2fb559)) + (pin "2" (uuid e3a240f8-481d-4aa8-92b9-49089561b417)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 215.9 252.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 70b14815-5ef8-4441-a152-20ba20cc398a) + (property "Reference" "U17" (id 0) (at 215.9 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 215.9 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 217.17 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 254 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53823a8d-b012-42e0-aa70-86754dd3bc70)) + (pin "2" (uuid 6862f238-7437-46bf-af59-d2c7885e115c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 125.73 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7cd9399c-2680-4fa3-b50b-d4ad95170259) + (property "Reference" "U1" (id 0) (at 136.525 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 136.525 123.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 135.89 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1746fd48-1c22-49a5-a791-c14c46af3458)) + (pin "2" (uuid 76eae5c6-597e-4f02-889a-897a4716b9af)) + (pin "3" (uuid e7c9100e-9fbb-46f6-a3ca-8661e85fa1f8)) + (pin "4" (uuid 04aeebc8-5670-4207-946d-17b347d283f6)) + (pin "5" (uuid 8bbe9c51-07c6-4b2d-920a-1196f4edc30c)) + (pin "6" (uuid e8dead21-31da-48c1-b945-dc2468f2d3c1)) + (pin "7" (uuid 71222e04-61f0-443f-8ada-26b3016f5cb2)) + (pin "8" (uuid 300fb1ca-452d-457e-b92f-20414aad04d5)) + (pin "9" (uuid 8d64267b-4d2b-4473-b894-75c64537f560)) + (pin "10" (uuid ac1d43fe-3687-4c7f-9001-18beb8356c80)) + (pin "11" (uuid e2556363-69b9-4890-b882-7444f88b9db4)) + (pin "12" (uuid 7165b15b-91c1-4af4-b3a7-607edabc1fad)) + (pin "13" (uuid 6bb7a262-77bb-47f2-be08-b3099c0a4e64)) + (pin "14" (uuid a12d9ee6-d06a-4f9b-8a66-606e980236f3)) + (pin "15" (uuid 418ae0b2-61c5-4fd2-993c-f5d1b3d74bf9)) + (pin "16" (uuid db5bce13-3a7d-473d-9ced-7bb315c11006)) + (pin "17" (uuid 825f722e-a69f-41bf-8062-8249c54e7cf9)) + (pin "18" (uuid 53840e92-60bc-4562-a319-ceb609f1f42a)) + (pin "19" (uuid 9a6b4bf2-3980-4ad7-ad1a-12e2693cc88a)) + (pin "20" (uuid b31a3841-25a5-43dd-8976-96bcc0587e82)) + (pin "21" (uuid b40d05f4-9b6d-4e82-81a1-0bd55ec60ba9)) + (pin "22" (uuid 75f2aa04-6835-4b46-bdde-4cf84c3c10c2)) + (pin "23" (uuid 4e9e74c7-3fce-4aa1-ba53-59bed5db0ccf)) + (pin "24" (uuid 3affbfb7-4c7b-43b8-83ea-01bc956615e6)) + (pin "25" (uuid fd09c5d2-4c70-4023-8cca-1738b593c4bf)) + (pin "26" (uuid ef971a40-c083-489c-848e-7d88c37cc944)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 290.83 88.9 0) (mirror y) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 85ca024d-270d-4b5b-8b7b-4a4c7353b85c) + (property "Reference" "U1" (id 0) (at 294.64 88.265 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 294.64 90.805 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 290.83 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 290.83 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d4f8062e-9091-4a2d-952e-fd3293919b90)) + (pin "2" (uuid 8e39afed-2fd5-413a-be05-35dc5a699cb3)) + (pin "3" (uuid 66cf9aff-fcad-403d-9058-1af2055bb7fd)) + (pin "4" (uuid d8c020c1-338a-441d-b3b8-1e051b853b32)) + (pin "5" (uuid fa77cea5-72b7-4ecf-9155-12d8d415ad27)) + (pin "6" (uuid 008f5ab0-683e-4ee1-8772-d63cec39dce3)) + (pin "7" (uuid e013df83-c119-46b2-814a-869fc0748581)) + (pin "8" (uuid e1a2c946-83a5-4ee6-8904-523f13ea8505)) + (pin "9" (uuid a2a8f13b-555a-4d78-abc6-85923bb87471)) + (pin "10" (uuid 20c3ad5c-25f2-4386-9733-656b370bff84)) + (pin "11" (uuid f93b1a88-4608-4e20-9bba-7cdc6ab936f5)) + (pin "12" (uuid 46e62391-8081-40d4-a051-5b3f1d4b5d86)) + (pin "13" (uuid 853b60b5-8669-4825-a33d-5c9a189af502)) + (pin "14" (uuid 1cca1b7b-fcbc-49b7-85ec-b50e94b7ecb2)) + (pin "15" (uuid 7022f01a-c0a7-4989-a4ba-67405b83330d)) + (pin "16" (uuid 1099f186-27eb-4b1d-a174-64a2d0c0d801)) + (pin "17" (uuid ea072297-a828-4f38-916d-b4a692ef0f13)) + (pin "18" (uuid b404f163-2a2d-41b8-a987-28a67ac4ea28)) + (pin "19" (uuid d981ad50-b22c-443b-867c-e8f5da8797cd)) + (pin "20" (uuid d2dbc5c3-60e9-4afa-b5fc-309f2562b28a)) + (pin "21" (uuid 6964967c-c17c-4f9c-88cd-e682e7036f79)) + (pin "22" (uuid cdacf34d-520f-41f1-817f-5f2d0e2ead2f)) + (pin "23" (uuid 8891310e-e0cd-4205-85c5-5629cd4d5abd)) + (pin "24" (uuid 9ef98256-8c9d-4de8-84d4-1e447df4fe24)) + (pin "25" (uuid 837787d8-c517-4857-975d-849bd6b8c1a7)) + (pin "26" (uuid 759baa86-56bf-400c-9191-b15eded2bd62)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 251.46 191.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 958ee24d-c0b1-4ac4-b643-e9d01306442b) + (property "Reference" "U20" (id 0) (at 251.46 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 251.46 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 251.46 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 251.46 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8b1abadb-075e-456d-b1e9-26119ae13a0d)) + (pin "2" (uuid c01f64ca-5353-428d-ab15-a9bfe3c8d050)) + (pin "3" (uuid f1ae80c0-8747-4aa2-b7be-69b7f8225bb8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 227.33 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a14eae4-547f-414e-b2b4-c29c7feb9b17) + (property "Reference" "U1" (id 0) (at 136.525 222.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 136.525 224.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 135.89 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 090169c1-2fd9-48d7-a963-8057079655b0)) + (pin "2" (uuid 016f241f-56ca-4de2-8422-ca9b04063c90)) + (pin "3" (uuid 89d0237c-0956-4399-9634-6864bbae1e45)) + (pin "4" (uuid 7aa0541e-d23d-472f-a843-ba81aee6be64)) + (pin "5" (uuid 2ec1ddf4-dc0e-4c5b-9ade-3cbc4657f90f)) + (pin "6" (uuid 28f6bb9c-54ea-4f26-94eb-ab6dda74ed00)) + (pin "7" (uuid d1330adf-8e29-478e-86b5-9a447550c300)) + (pin "8" (uuid eebeebd0-c3fd-4060-a81a-1fc0b3d08e30)) + (pin "9" (uuid fe2ae94f-a6cc-499c-b16e-e31f2e08e974)) + (pin "10" (uuid aa7afbfa-b9c6-464a-a2ea-22912fc22400)) + (pin "11" (uuid 1e8d316a-0b55-4ace-b471-ff53a04291d5)) + (pin "12" (uuid 9d7da081-493d-4bd9-b4a7-54df1d731814)) + (pin "13" (uuid 34e131bf-95ff-4af2-bd78-a1553c975a68)) + (pin "14" (uuid d5d53d8b-2a0f-467c-bf67-52c0d7510459)) + (pin "15" (uuid e7e9875e-b085-48d2-b236-5233d0d695f2)) + (pin "16" (uuid 705ef94a-a668-42c4-abc2-17389968d8f3)) + (pin "17" (uuid f5067627-afd1-49f7-af77-22abbad1c310)) + (pin "18" (uuid 3af083d4-0365-4ed6-9192-e4fadd94b30f)) + (pin "19" (uuid 2e64964a-294c-4d9b-9d20-531f65d85fe2)) + (pin "20" (uuid f502d099-719a-4eea-aa73-1afd5be70391)) + (pin "21" (uuid ca4f74a5-dbb4-4a87-b6b9-fd8479756b0a)) + (pin "22" (uuid 929883d5-6850-4726-a685-7fc8193afff6)) + (pin "23" (uuid aa266c6e-0627-4368-8f83-394f67a9f98f)) + (pin "24" (uuid c712099a-d72f-4d3e-bb78-4cd87351daaf)) + (pin "25" (uuid 2265ff39-07e9-4c6c-a605-41ef41a14014)) + (pin "26" (uuid 8523c3d3-d135-409a-a6cd-853528f6f266)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 151.13 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a79624a-7d32-4e80-ba23-bd7c394bb18b) + (property "Reference" "U1" (id 0) (at 136.525 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 136.525 148.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 135.89 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 119307e8-8ec7-4d37-91db-9c92010ef163)) + (pin "2" (uuid 871c120a-d210-4a70-9e43-563914347d1e)) + (pin "3" (uuid 4fa7f619-0ec3-4808-9320-ab5f0dcad636)) + (pin "4" (uuid 514acfc7-86ba-43bb-abaf-1302d903635e)) + (pin "5" (uuid de083431-4be1-4f12-a190-404bc59c6520)) + (pin "6" (uuid 2a93ab80-029e-4d5f-ba99-74488b168512)) + (pin "7" (uuid 6793121e-9d4b-4f63-b403-5292920743bd)) + (pin "8" (uuid 39be7600-4c49-4294-951a-b12ec03027d9)) + (pin "9" (uuid 2b884dbc-985e-4705-9ba9-b943d67e7237)) + (pin "10" (uuid 40dfe177-8042-4f8d-b7a4-ca4d0755facb)) + (pin "11" (uuid 8c20528c-378c-4fc9-9cf7-7dca40ed9539)) + (pin "12" (uuid 660f92a7-11e0-47c8-bffd-2783cf43c2b1)) + (pin "13" (uuid fd6a82f3-2008-4ec0-b426-054ca5fa516e)) + (pin "14" (uuid ead1141a-825a-4d33-a6a0-330f7937e550)) + (pin "15" (uuid 66d27bc4-0813-4331-a15a-c240c7f6ab5f)) + (pin "16" (uuid 01bcee7d-f4ec-476d-86ec-20256ee7c6d9)) + (pin "17" (uuid f0522e71-760c-4959-9885-61071f9bd7de)) + (pin "18" (uuid 201af6b4-c1c6-42f1-9150-c2a5eeab561d)) + (pin "19" (uuid 58dfffdf-f9a6-4064-9844-94e9fb709f73)) + (pin "20" (uuid b4d4ee0a-57c8-4c52-ba5e-e5d13db422d2)) + (pin "21" (uuid 016b621b-37ba-41c4-aa5f-0e8279d36a22)) + (pin "22" (uuid 6d173d54-31e5-4323-96c2-d033e4aa2639)) + (pin "23" (uuid 5168c501-94ab-4c04-be9e-06906f2f12b5)) + (pin "24" (uuid e78d2797-2875-4107-bfdb-0b8350f3521f)) + (pin "25" (uuid eba50ad6-efb2-4fe4-8bdc-1a1490551df5)) + (pin "26" (uuid eb159207-9255-4d86-a9f7-e839c9f58c2c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 276.86 190.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9c88f605-4ea0-41ea-91cb-b5211fd0165d) + (property "Reference" "U24" (id 0) (at 276.86 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 276.86 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 278.13 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 94411f70-5442-4410-9d88-17e2f7461929)) + (pin "2" (uuid f06547c3-28a1-4b0d-b27f-4efdc33579f4)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 186.69 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9fd92483-f756-4d56-9c09-dfcbddb09e67) + (property "Reference" "U6" (id 0) (at 186.055 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 186.055 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 127e19bd-01c0-4241-8f42-ebdd4fc004d1)) + (pin "2" (uuid 5ea959fd-f21f-45b2-b84f-37f0fc82b399)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 252.73 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a6d135cb-43a5-432b-8162-6ba9e38cbb0c) + (property "Reference" "U1" (id 0) (at 136.525 247.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 136.525 250.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 135.89 252.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 252.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4597e9b2-21dc-4a95-aada-0c2a5efad689)) + (pin "2" (uuid e3af6987-045f-47fa-8407-5e2744333afc)) + (pin "3" (uuid 426e6898-511c-4eec-a3c1-cd447d066b2c)) + (pin "4" (uuid 719fe468-1da7-46fa-a114-78b5aa3c33e8)) + (pin "5" (uuid 74052f84-b47d-4743-9d45-6a46713a7d96)) + (pin "6" (uuid 2b23a212-86fe-4c38-93bc-4b18a5eafd9f)) + (pin "7" (uuid 05cea2e2-c272-4656-9472-43bf76a840fc)) + (pin "8" (uuid b47e2ced-e750-41fc-bab4-71719154e78e)) + (pin "9" (uuid 35ca1f92-a08f-4783-a727-b9a88f8e13fd)) + (pin "10" (uuid 9ae709eb-c560-4698-9aaa-14bbefd1f114)) + (pin "11" (uuid 911dd343-b8f7-457f-8ed3-c4bf4bdec0e3)) + (pin "12" (uuid 26354c28-a495-4bb0-992a-877a70fa68eb)) + (pin "13" (uuid 37241572-117e-4fc8-9f21-5462781b8b6e)) + (pin "14" (uuid 58278efe-7636-437b-82b7-ed790e1da854)) + (pin "15" (uuid a7c9b5c7-366d-4439-af6f-002ab501c5c9)) + (pin "16" (uuid e11cf8ec-e515-43e2-8195-b503fb2d1878)) + (pin "17" (uuid ff664ed2-e948-4852-a702-7b8381a1aeae)) + (pin "18" (uuid e97ba5c9-d73f-4dda-9679-ae5f22d9f97d)) + (pin "19" (uuid 006df3e7-3ab9-4706-8ec8-a6c84268fe0e)) + (pin "20" (uuid 7efa656a-ae8a-47f4-b1a6-a31f9bf28d6d)) + (pin "21" (uuid f440f4d9-88dc-4caa-a204-cced29793472)) + (pin "22" (uuid 546e9ae6-d95e-4ab6-8803-257e4f3497c7)) + (pin "23" (uuid 791d8f00-1636-4384-a759-f6e342c93612)) + (pin "24" (uuid c94f7b34-3c83-4708-a102-e3526be9f56b)) + (pin "25" (uuid 440db7b5-898a-423c-91d9-50fa0100273a)) + (pin "26" (uuid 6e154308-3c37-4e22-9331-0a9586fd005a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 251.46 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a77d85c1-9a5f-4996-a2d2-3224297f8e1b) + (property "Reference" "U18" (id 0) (at 251.46 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 251.46 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 251.46 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 251.46 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 083b56e8-680f-4812-aace-a2fa03655b82)) + (pin "2" (uuid 3f222737-6079-480e-8a8d-07a23a8690b9)) + (pin "3" (uuid ee944643-d893-4899-ac69-d293bf8a3076)) + ) + + (symbol (lib_name "74HC14_1") (lib_id "eSim_Subckt:74HC14") (at 148.59 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a872d7fe-a60d-4e38-a9ac-c1094d1ca1b6) + (property "Reference" "X2" (id 0) (at 151.13 90.17 0)) + (property "Value" "74HC14" (id 1) (at 151.13 92.71 0)) + (property "Footprint" "" (id 2) (at 148.59 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 699b6228-27d5-4cdd-82bf-a830a647c17a)) + (pin "2" (uuid 296653a7-005e-4928-bd46-4bdf76a2039a)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 186.69 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab5334d9-5c49-4c86-bf5d-5b506e4ed8a0) + (property "Reference" "U5" (id 0) (at 186.055 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 186.055 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b709dcf8-0755-4a58-b909-e96de526dc2d)) + (pin "2" (uuid c211e6a2-7b1b-4efd-97b1-9572d3202307)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 213.36 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid adbbaff5-6475-481f-9a11-d459069f80b8) + (property "Reference" "U12" (id 0) (at 213.36 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 213.36 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 214.63 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a7e6267e-9aff-4b4f-93ee-d424e3b5fe4f)) + (pin "2" (uuid f6bc37f6-4a97-4126-b4c3-87019a559b6a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 251.46 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b878f6f7-bf3e-43ce-9729-f0d8ef8bc10c) + (property "Reference" "U19" (id 0) (at 251.46 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 251.46 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 251.46 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 251.46 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8e9d26a3-76dd-40ad-88f3-2703fcc7fc15)) + (pin "2" (uuid d4aff430-8e6f-461c-8d46-27c05e17b533)) + (pin "3" (uuid 58c5ee88-89fb-4f33-8ec6-86e62109cb7f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 213.36 227.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid be3add60-82ec-44e6-851e-50e396d14990) + (property "Reference" "U13" (id 0) (at 213.36 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 213.36 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 214.63 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b137548e-0637-48f3-8b60-9c6687ecd385)) + (pin "2" (uuid d97af6dd-b964-4a62-a525-a7421780ec70)) + ) + + (symbol (lib_name "74HC14_1") (lib_id "eSim_Subckt:74HC14") (at 148.59 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c09cab14-c827-450a-98bd-448b2e57e843) + (property "Reference" "X1" (id 0) (at 151.13 64.77 0)) + (property "Value" "74HC14" (id 1) (at 151.13 67.31 0)) + (property "Footprint" "" (id 2) (at 148.59 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fbbbd91e-598d-4a94-a113-cfb061a540a8)) + (pin "2" (uuid 72603e8e-0908-410c-a9c0-da824d704c44)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 215.9 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c85116bc-d8c8-4962-80ff-62dcb3197bfb) + (property "Reference" "U15" (id 0) (at 215.9 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 215.9 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 217.17 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a975239-5d18-4fef-9baa-174066cb3411)) + (pin "2" (uuid 570fa039-c790-4e54-82ac-a1bb34bc9897)) + ) + + (symbol (lib_name "74HC14_1") (lib_id "eSim_Subckt:74HC14") (at 148.59 227.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ce810134-4c39-4264-a118-33091a12a903) + (property "Reference" "X7" (id 0) (at 151.13 217.17 0)) + (property "Value" "74HC14" (id 1) (at 151.13 219.71 0)) + (property "Footprint" "" (id 2) (at 148.59 227.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 227.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5981b853-f3a8-4b19-ba8f-3a2a4b9e165a)) + (pin "2" (uuid 6c63527e-4aaf-43ba-9293-6e4f2624f5d2)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 186.69 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e35039a0-c2ac-475d-8041-7a4cb7e6e9fb) + (property "Reference" "U3" (id 0) (at 186.055 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 186.055 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 186.69 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 23c14b84-dcf8-429b-8dd2-6b03a93799f6)) + (pin "2" (uuid c88774b7-2fb7-4a8e-b546-3d27ca854ef0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 276.86 241.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e696f07d-5957-4257-b70c-f574dcb83ffd) + (property "Reference" "U25" (id 0) (at 276.86 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 276.86 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 278.13 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e57cd288-b16d-4395-b3ed-79211e71ba6b)) + (pin "2" (uuid 3c74018c-9050-4bcc-85d9-a2faa9399264)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 215.9 201.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e7e5c11e-fac5-4cc1-a712-03def84c8a8b) + (property "Reference" "U16" (id 0) (at 215.9 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 215.9 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 217.17 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8cf34647-a9f2-4bd1-b111-c918cba52eb6)) + (pin "2" (uuid 2e311be2-ca39-4e27-be82-7428f16fef30)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 176.53 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eae0d880-8427-4256-b5ed-77cb4d64b903) + (property "Reference" "U1" (id 0) (at 136.525 171.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 136.525 173.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 135.89 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b35cd2d9-48cb-4a88-8679-969742b01e81)) + (pin "2" (uuid a760626b-7bd7-47ee-8e68-c2a303893fe2)) + (pin "3" (uuid 3fa34beb-decc-4ff2-a432-548e9887c18f)) + (pin "4" (uuid 4392c4ac-2878-46db-ad7d-345be77ee3ed)) + (pin "5" (uuid 0f114639-d700-4fb9-8da5-09ccb0a05cfc)) + (pin "6" (uuid 96ffb290-8bef-49dd-a3f8-a2151aa05798)) + (pin "7" (uuid 2354eb3f-faa6-421e-913b-3ed1626c3cdc)) + (pin "8" (uuid 1e21b476-07b4-4452-95d6-26cca6276b60)) + (pin "9" (uuid 739ddeac-4c17-43ce-92d4-14b98772c951)) + (pin "10" (uuid 8dc94383-95ec-488c-868c-c6a42da35a61)) + (pin "11" (uuid c0f44db5-d579-45e3-a672-22746a237320)) + (pin "12" (uuid e6322f7f-65d7-459f-a618-333c849b4c9e)) + (pin "13" (uuid a99ad263-b7b9-499b-b68c-b5f98d7aaa68)) + (pin "14" (uuid c00c4957-1a2c-43bf-8855-a109e46ad0ba)) + (pin "15" (uuid ae19f07e-a869-49e2-a1af-55b1499ed0f9)) + (pin "16" (uuid 44bdd467-b32c-4840-9620-349c983898e1)) + (pin "17" (uuid 3a421762-52d6-46ae-ac9f-8392e6796812)) + (pin "18" (uuid 50bb25be-a180-44ce-aaa2-cd0746b2a28b)) + (pin "19" (uuid a898c5d8-ad67-4865-82d7-cc268ef3eb25)) + (pin "20" (uuid 6a962461-e890-4e54-aca5-69d1750b71d0)) + (pin "21" (uuid a2e631f2-f9ea-4b88-936f-81ae798338fa)) + (pin "22" (uuid 61842789-5f36-44c3-a601-4dfcefd771d6)) + (pin "23" (uuid 3f4c4877-06c2-41c6-80cf-cf6b4a7e51ca)) + (pin "24" (uuid b619c8ac-7c58-4c6c-b099-fcf42d99f30e)) + (pin "25" (uuid 69358952-005f-4024-a598-3feb80facf49)) + (pin "26" (uuid e34d6b71-2b28-4979-8950-f6ed6eb702b6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 213.36 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed2c89f8-1443-4109-b002-fa102db0adb0) + (property "Reference" "U10" (id 0) (at 213.36 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 213.36 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 214.63 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9bd0559d-1a82-42d4-b556-7d78472ab3b2)) + (pin "2" (uuid de484343-977e-4355-8b9e-1f1c00f88887)) + ) + + (symbol (lib_name "74HC14_1") (lib_id "eSim_Subckt:74HC14") (at 148.59 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eff1eb25-1bdc-450f-ba5b-307f2c553f94) + (property "Reference" "X4" (id 0) (at 151.13 140.97 0)) + (property "Value" "74HC14" (id 1) (at 151.13 143.51 0)) + (property "Footprint" "" (id 2) (at 148.59 151.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 151.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 63319f62-2822-4274-a381-734da5c4c08b)) + (pin "2" (uuid 2fef8186-07d3-4f4f-a9d7-e1c22b67c8aa)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 276.86 139.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f419fa0c-5436-4817-869b-b71f004e0f31) + (property "Reference" "U23" (id 0) (at 276.86 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 276.86 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 278.13 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e007050b-7f1a-4b1c-8682-680d9389b928)) + (pin "2" (uuid 8070fdd5-6403-42a7-8066-f579afa97624)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 251.46 242.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb908d28-9314-4391-8c1e-f14cbe536583) + (property "Reference" "U21" (id 0) (at 251.46 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 251.46 237.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 251.46 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 251.46 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2f6a7c2c-8173-4a5e-946d-563dc59a1a87)) + (pin "2" (uuid ca476caf-aecd-4c4c-a9cc-7c34b8007d63)) + (pin "3" (uuid e3bd088c-e69e-4afa-8e38-5a10285074d5)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/4d04535f-599d-497c-8e4c-00e8cb627717" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/3c7cac72-aea8-46d6-811f-b112289cbe9c" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/7cd9399c-2680-4fa3-b50b-d4ad95170259" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/9a79624a-7d32-4e80-ba23-bd7c394bb18b" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/eae0d880-8427-4256-b5ed-77cb4d64b903" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/3952f498-3c9f-47f4-b89a-166ee84c5ab2" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/9a14eae4-547f-414e-b2b4-c29c7feb9b17" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/a6d135cb-43a5-432b-8162-6ba9e38cbb0c" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/85ca024d-270d-4b5b-8b7b-4a4c7353b85c" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/0eb1435f-5af3-416c-9135-e5dee1b41a90" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/43e50505-5e1a-4c8f-aa5d-3b4e3ea6efb4" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/51725a60-308b-4098-9c8b-7e36a2d69361" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/49843ffb-5637-4f50-8b54-32dedf126d4b" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/e35039a0-c2ac-475d-8041-7a4cb7e6e9fb" + (reference "U3") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/41823ef1-f85f-49bd-9b46-7a4f30c28975" + (reference "U4") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/ab5334d9-5c49-4c86-bf5d-5b506e4ed8a0" + (reference "U5") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/9fd92483-f756-4d56-9c09-dfcbddb09e67" + (reference "U6") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/11bd97e4-5749-4ab7-b17a-f89a601110e0" + (reference "U7") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/05ab74a3-c471-4e2b-b942-25b108ac701a" + (reference "U8") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/1dfac24b-91c0-4bee-a811-7bcb492da111" + (reference "U9") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/ed2c89f8-1443-4109-b002-fa102db0adb0" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2c1ef70b-f2c3-4f4c-a410-89a6b5675368" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/adbbaff5-6475-481f-9a11-d459069f80b8" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/be3add60-82ec-44e6-851e-50e396d14990" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2ee03f55-916f-402e-a821-191323c4b592" + (reference "U14") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c85116bc-d8c8-4962-80ff-62dcb3197bfb" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e7e5c11e-fac5-4cc1-a712-03def84c8a8b" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/70b14815-5ef8-4441-a152-20ba20cc398a" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a77d85c1-9a5f-4996-a2d2-3224297f8e1b" + (reference "U18") (unit 1) (value "d_and") (footprint "") + ) + (path "/b878f6f7-bf3e-43ce-9729-f0d8ef8bc10c" + (reference "U19") (unit 1) (value "d_and") (footprint "") + ) + (path "/958ee24d-c0b1-4ac4-b643-e9d01306442b" + (reference "U20") (unit 1) (value "d_and") (footprint "") + ) + (path "/fb908d28-9314-4391-8c1e-f14cbe536583" + (reference "U21") (unit 1) (value "d_and") (footprint "") + ) + (path "/41c508d6-5473-45bf-9c06-ad5690fdb77d" + (reference "U22") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f419fa0c-5436-4817-869b-b71f004e0f31" + (reference "U23") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9c88f605-4ea0-41ea-91cb-b5211fd0165d" + (reference "U24") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e696f07d-5957-4257-b70c-f574dcb83ffd" + (reference "U25") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c09cab14-c827-450a-98bd-448b2e57e843" + (reference "X1") (unit 1) (value "74HC14") (footprint "") + ) + (path "/a872d7fe-a60d-4e38-a9ac-c1094d1ca1b6" + (reference "X2") (unit 1) (value "74HC14") (footprint "") + ) + (path "/22252555-4449-4ff1-aa2b-654511fe34bd" + (reference "X3") (unit 1) (value "74HC14") (footprint "") + ) + (path "/eff1eb25-1bdc-450f-ba5b-307f2c553f94" + (reference "X4") (unit 1) (value "74HC14") (footprint "") + ) + (path "/6ed9279d-510d-4f67-87e5-b4dbdc66fa06" + (reference "X5") (unit 1) (value "74HC14") (footprint "") + ) + (path "/5249816b-ba34-4237-9b27-51de604e90d9" + (reference "X6") (unit 1) (value "74HC14") (footprint "") + ) + (path "/ce810134-4c39-4264-a118-33091a12a903" + (reference "X7") (unit 1) (value "74HC14") (footprint "") + ) + (path "/15897b41-0693-44a9-ba9e-cca321c12b3e" + (reference "X8") (unit 1) (value "74HC14") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.sub new file mode 100644 index 000000000..d01621030 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132.sub @@ -0,0 +1,111 @@ +* Subcircuit 74HC132 +.subckt 74HC132 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ +.title kicad schematic +.include 74HC14.sub +* u23 net-_u19-pad3_ net-_u1-pad10_ d_inverter +* u22 net-_u18-pad3_ net-_u1-pad9_ d_inverter +x2 net-_u1-pad2_ net-_u3-pad1_ 74HC14 +x1 net-_u1-pad1_ net-_u2-pad1_ 74HC14 +* u18 net-_u10-pad2_ net-_u14-pad2_ net-_u18-pad3_ d_and +x3 net-_u1-pad3_ net-_u4-pad1_ 74HC14 +x4 net-_u1-pad4_ net-_u5-pad1_ 74HC14 +* u19 net-_u11-pad2_ net-_u15-pad2_ net-_u19-pad3_ d_and +* u4 net-_u4-pad1_ net-_u11-pad1_ adc_bridge_1 +* u5 net-_u5-pad1_ net-_u15-pad1_ adc_bridge_1 +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +* u15 net-_u15-pad1_ net-_u15-pad2_ d_inverter +* u3 net-_u3-pad1_ net-_u14-pad1_ adc_bridge_1 +* u14 net-_u14-pad1_ net-_u14-pad2_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u2 net-_u2-pad1_ net-_u10-pad1_ adc_bridge_1 +* u12 net-_u12-pad1_ net-_u12-pad2_ d_inverter +* u16 net-_u16-pad1_ net-_u16-pad2_ d_inverter +x7 net-_u1-pad7_ net-_u8-pad1_ 74HC14 +x8 net-_u1-pad8_ net-_u9-pad1_ 74HC14 +* u7 net-_u7-pad1_ net-_u16-pad1_ adc_bridge_1 +* u6 net-_u6-pad1_ net-_u12-pad1_ adc_bridge_1 +x5 net-_u1-pad5_ net-_u6-pad1_ 74HC14 +x6 net-_u1-pad6_ net-_u7-pad1_ 74HC14 +* u25 net-_u21-pad3_ net-_u1-pad12_ d_inverter +* u21 net-_u13-pad2_ net-_u17-pad2_ net-_u21-pad3_ d_and +* u20 net-_u12-pad2_ net-_u16-pad2_ net-_u20-pad3_ d_and +* u24 net-_u20-pad3_ net-_u1-pad11_ d_inverter +* u17 net-_u17-pad1_ net-_u17-pad2_ d_inverter +* u9 net-_u9-pad1_ net-_u17-pad1_ adc_bridge_1 +* u8 net-_u8-pad1_ net-_u13-pad1_ adc_bridge_1 +* u13 net-_u13-pad1_ net-_u13-pad2_ d_inverter +a1 net-_u19-pad3_ net-_u1-pad10_ u23 +a2 net-_u18-pad3_ net-_u1-pad9_ u22 +a3 [net-_u10-pad2_ net-_u14-pad2_ ] net-_u18-pad3_ u18 +a4 [net-_u11-pad2_ net-_u15-pad2_ ] net-_u19-pad3_ u19 +a5 [net-_u4-pad1_ ] [net-_u11-pad1_ ] u4 +a6 [net-_u5-pad1_ ] [net-_u15-pad1_ ] u5 +a7 net-_u11-pad1_ net-_u11-pad2_ u11 +a8 net-_u15-pad1_ net-_u15-pad2_ u15 +a9 [net-_u3-pad1_ ] [net-_u14-pad1_ ] u3 +a10 net-_u14-pad1_ net-_u14-pad2_ u14 +a11 net-_u10-pad1_ net-_u10-pad2_ u10 +a12 [net-_u2-pad1_ ] [net-_u10-pad1_ ] u2 +a13 net-_u12-pad1_ net-_u12-pad2_ u12 +a14 net-_u16-pad1_ net-_u16-pad2_ u16 +a15 [net-_u7-pad1_ ] [net-_u16-pad1_ ] u7 +a16 [net-_u6-pad1_ ] [net-_u12-pad1_ ] u6 +a17 net-_u21-pad3_ net-_u1-pad12_ u25 +a18 [net-_u13-pad2_ net-_u17-pad2_ ] net-_u21-pad3_ u21 +a19 [net-_u12-pad2_ net-_u16-pad2_ ] net-_u20-pad3_ u20 +a20 net-_u20-pad3_ net-_u1-pad11_ u24 +a21 net-_u17-pad1_ net-_u17-pad2_ u17 +a22 [net-_u9-pad1_ ] [net-_u17-pad1_ ] u9 +a23 [net-_u8-pad1_ ] [net-_u13-pad1_ ] u8 +a24 net-_u13-pad1_ net-_u13-pad2_ u13 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u22 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u7 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u6 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u9 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends 74HC132 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132_Previous_Values.xml new file mode 100644 index 000000000..ed4ebb4a5 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC132_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_andd_andd_inverterd_andd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_andd_andadc_bridgeadc_bridged_inverteradc_bridged_inverteradc_bridged_inverteradc_bridgeadc_bridged_inverterd_andd_andd_inverteradc_bridgeadc_bridged_inverterC:\FOSSEE\eSim\library\SubcircuitLibrary\74HC14C:\FOSSEE\eSim\library\SubcircuitLibrary\74HC14C:\FOSSEE\eSim\library\SubcircuitLibrary\74HC14C:\FOSSEE\eSim\library\SubcircuitLibrary\74HC14C:\FOSSEE\eSim\library\SubcircuitLibrary\74HC14C:\FOSSEE\eSim\library\SubcircuitLibrary\74HC14C:\FOSSEE\eSim\library\SubcircuitLibrary\74HC14C:\FOSSEE\eSim\library\SubcircuitLibrary\74HC14truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.cir new file mode 100644 index 000000000..b0891ae93 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.cir @@ -0,0 +1,13 @@ +.title KiCad schematic +M6 VDD Net-_M1-Pad1_ Net-_M1-Pad3_ GND eSim_MOS_N +M5 Net-_M3-Pad3_ Net-_M1-Pad1_ GND VDD eSim_MOS_P +M2 Net-_M1-Pad3_ IN GND GND eSim_MOS_N +M1 Net-_M1-Pad1_ IN Net-_M1-Pad3_ GND eSim_MOS_N +v1 VDD GND DC +U4 VDD plot_v1 +U3 Net-_M1-Pad1_ plot_v1 +U1 IN Net-_M1-Pad1_ PORT +M4 Net-_M3-Pad3_ IN Net-_M1-Pad1_ VDD eSim_MOS_P +M3 VDD IN Net-_M3-Pad3_ VDD eSim_MOS_P +U2 IN plot_v1 +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.cir.out new file mode 100644 index 000000000..72ea5f795 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.cir.out @@ -0,0 +1,27 @@ +.title kicad schematic + +.include PMOS-180nm.lib +.include NMOS-180nm.lib +m6 vdd net-_m1-pad1_ net-_m1-pad3_ gnd CMOSN W=100u L=100u M=1 +m5 net-_m3-pad3_ net-_m1-pad1_ gnd vdd CMOSP W=100u L=100u M=1 +m2 net-_m1-pad3_ in gnd gnd CMOSN W=100u L=100u M=1 +m1 net-_m1-pad1_ in net-_m1-pad3_ gnd CMOSN W=100u L=100u M=1 +v1 vdd gnd dc 5 +* u4 vdd plot_v1 +* u3 net-_m1-pad1_ plot_v1 +* u1 in net-_m1-pad1_ port +m4 net-_m3-pad3_ in net-_m1-pad1_ vdd CMOSP W=100u L=100u M=1 +m3 vdd in net-_m3-pad3_ vdd CMOSP W=100u L=100u M=1 +* u2 in plot_v1 +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(vdd) +plot v(net-_m1-pad1_) +plot v(in) +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.kicad_sch new file mode 100644 index 000000000..15f5d07fe --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.kicad_sch @@ -0,0 +1,1198 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 7b156a1c-a5c5-4582-b230-deee60f0a7e4) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Devices:eSim_MOS_N" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "M" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 2.54 -1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 7.62 -7.62 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 2.54 -5.08 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_MOS_N_0_1" + (polyline + (pts + (xy 3.302 -7.366) + (xy 3.302 -6.35) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -6.858) + (xy 5.08 -6.858) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -5.588) + (xy 3.302 -4.572) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -5.08) + (xy 5.08 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.81) + (xy 3.302 -2.794) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.302) + (xy 5.08 -3.302) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -7.62) + (xy 5.08 -6.858) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -3.302) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.794 -6.985) + (xy 2.794 -3.175) + (xy 2.794 -3.175) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -5.08) + (xy 7.62 -5.08) + (xy 7.62 -6.35) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 -5.08) + (xy 4.572 -5.461) + (xy 4.572 -4.699) + (xy 3.556 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 3.81 -5.08) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_MOS_N_1_1" + (pin passive line (at 5.08 0 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 -5.08 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -10.16 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -8.89 90) (length 2.4892) + (name "B" (effects (font (size 1.1938 1.1938)))) + (number "4" (effects (font (size 1.1938 1.1938)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_MOS_P" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "M" (id 0) (at -1.27 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_MOS_P" (id 1) (at 1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 6.35 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 1.27 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_MOS_P_0_1" + (polyline + (pts + (xy 2.032 -1.778) + (xy 3.81 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 -1.27) + (xy 2.032 -2.286) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 0) + (xy 3.81 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 0.508) + (xy 2.032 -0.508) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 1.778) + (xy 3.81 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 2.286) + (xy 2.032 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.778) + (xy 3.81 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 2.54) + (xy 3.81 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.524 1.905) + (xy 1.524 -1.905) + (xy 1.524 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 0) + (xy 6.35 0) + (xy 6.35 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 0) + (xy 2.54 -0.381) + (xy 2.54 0.381) + (xy 3.556 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 2.54 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_MOS_P_1_1" + (pin passive line (at 3.81 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -3.81 0 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 6.35 -3.81 90) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "DC" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DC_0_1" + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DC_1_1" + (pin power_out line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 124.46 73.66) (diameter 0) (color 0 0 0 0) + (uuid 00c0ab32-5491-43c6-8cc2-4bbdccdc1786) + ) + (junction (at 124.46 86.36) (diameter 0) (color 0 0 0 0) + (uuid 05bd416b-f41a-4f01-93f0-45b772905eb3) + ) + (junction (at 148.59 114.3) (diameter 0) (color 0 0 0 0) + (uuid 2519cbac-f01f-4b97-b571-308f45f14444) + ) + (junction (at 124.46 100.33) (diameter 0) (color 0 0 0 0) + (uuid 301a8929-b270-4696-8c51-5c470cdb2d26) + ) + (junction (at 224.79 74.93) (diameter 0) (color 0 0 0 0) + (uuid 352b3fe1-3278-4fe1-9c32-77b8c4447551) + ) + (junction (at 148.59 134.62) (diameter 0) (color 0 0 0 0) + (uuid 3ea68544-0957-4048-884d-d6def70cb803) + ) + (junction (at 148.59 41.91) (diameter 0) (color 0 0 0 0) + (uuid 41fcf617-e17f-4f8a-8572-54291db3b31b) + ) + (junction (at 148.59 135.89) (diameter 0) (color 0 0 0 0) + (uuid 5b47c4c8-0a1c-4c7b-9d6b-58166a44f26b) + ) + (junction (at 148.59 44.45) (diameter 0) (color 0 0 0 0) + (uuid 759c04f3-8ad2-4c2b-83eb-dd96d2be4354) + ) + (junction (at 165.1 41.91) (diameter 0) (color 0 0 0 0) + (uuid 81cd1f03-86c5-426c-99c1-3c5178491220) + ) + (junction (at 200.66 87.63) (diameter 0) (color 0 0 0 0) + (uuid 91f38a25-e5b6-4e5d-b196-8ed6c1396d89) + ) + (junction (at 148.59 87.63) (diameter 0) (color 0 0 0 0) + (uuid aa8a341d-a2a9-42c9-8a9d-e5737ea4347e) + ) + (junction (at 181.61 87.63) (diameter 0) (color 0 0 0 0) + (uuid c595cc9f-0556-414d-81cd-7a860a633008) + ) + (junction (at 148.59 63.5) (diameter 0) (color 0 0 0 0) + (uuid d614823d-439e-4664-9604-d822808525e3) + ) + (junction (at 148.59 132.08) (diameter 0) (color 0 0 0 0) + (uuid f192b6d1-13a7-45b4-88c3-1ffc5067adb6) + ) + (junction (at 110.49 86.36) (diameter 0) (color 0 0 0 0) + (uuid f9c27ed4-42ce-4053-8f9f-ef3587e3270c) + ) + + (wire (pts (xy 148.59 134.62) (xy 148.59 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0204e9a7-790b-4f84-a58f-f704909fdbec) + ) + (wire (pts (xy 177.8 135.89) (xy 148.59 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06ed6370-3d86-4ffc-9023-5c90c295444a) + ) + (wire (pts (xy 148.59 132.08) (xy 151.13 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08edea5f-b5b0-445f-a31d-a119f5de3616) + ) + (wire (pts (xy 124.46 86.36) (xy 124.46 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0aea314e-1696-4247-bfd4-9ae51917bfe8) + ) + (wire (pts (xy 185.42 41.91) (xy 165.1 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fd089a3-727c-4df4-af7e-680b30db104f) + ) + (wire (pts (xy 148.59 63.5) (xy 148.59 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1927ea7a-1e55-4269-82f4-c8c632b1af2a) + ) + (wire (pts (xy 148.59 87.63) (xy 148.59 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28201400-3b4a-4057-821e-76c628b67392) + ) + (wire (pts (xy 148.59 129.54) (xy 148.59 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35d2ec43-91e4-4008-8e65-38713c02a7d9) + ) + (wire (pts (xy 148.59 132.08) (xy 148.59 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36c81a78-2854-44d0-88c1-ee7559f39baa) + ) + (wire (pts (xy 148.59 63.5) (xy 176.53 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39e14064-4b2c-4f33-ac5c-d673440af45e) + ) + (wire (pts (xy 162.56 54.61) (xy 162.56 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 409ea937-6869-4aa4-ad6a-eb0601902381) + ) + (wire (pts (xy 124.46 124.46) (xy 140.97 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c276723-a427-43f1-bdcb-6fd13d2d212c) + ) + (wire (pts (xy 185.42 41.91) (xy 185.42 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f4d889c-8a28-4d2b-ba27-8beb62b9ff4e) + ) + (wire (pts (xy 165.1 41.91) (xy 148.59 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50af8aea-de38-4c31-a051-36f62249b2d6) + ) + (wire (pts (xy 181.61 71.12) (xy 181.61 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53a0f5f5-f6fe-4174-8d86-abacaaf1d762) + ) + (wire (pts (xy 186.69 63.5) (xy 200.66 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54ffc823-a488-419d-b153-fc2b6f473ab0) + ) + (wire (pts (xy 151.13 104.14) (xy 153.67 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5df1f817-5beb-4287-a470-a2932aa8f22f) + ) + (wire (pts (xy 151.13 54.61) (xy 162.56 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 619d4c1f-7697-4010-ade1-162f97e32a60) + ) + (wire (pts (xy 148.59 135.89) (xy 148.59 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65b5a9cd-137a-4e7e-869e-ae70d7e8326e) + ) + (wire (pts (xy 124.46 100.33) (xy 124.46 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 692b8325-1729-48cf-9f3a-ef83bd27d879) + ) + (wire (pts (xy 148.59 55.88) (xy 148.59 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a789436-4ea7-4c46-abb3-d52d81d8354c) + ) + (wire (pts (xy 186.69 114.3) (xy 200.66 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f3b4ed6-c551-4774-9953-f18d30f2da4e) + ) + (wire (pts (xy 151.13 128.27) (xy 151.13 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8270a371-4f94-43dd-a63f-7ad88b6c9abc) + ) + (wire (pts (xy 124.46 73.66) (xy 140.97 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f0312e2-b30e-47dd-bc7b-eea08bcadb0a) + ) + (wire (pts (xy 177.8 116.84) (xy 177.8 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97e732ce-e969-4092-aba2-a4555be011b3) + ) + (wire (pts (xy 124.46 50.8) (xy 140.97 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9953d962-3b69-462e-b3a3-6c89205c173e) + ) + (wire (pts (xy 200.66 87.63) (xy 203.2 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e55942b-76fa-434b-a7c2-fa2f49935751) + ) + (wire (pts (xy 148.59 38.1) (xy 148.59 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a06f0632-9284-48c1-886b-32762f2b7e55) + ) + (wire (pts (xy 224.79 68.58) (xy 224.79 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a139d2fb-1220-4343-b41f-195a303b6e0b) + ) + (wire (pts (xy 148.59 114.3) (xy 148.59 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4d2cfff-ecbc-4d9d-85d8-a48c4fcaf763) + ) + (wire (pts (xy 165.1 77.47) (xy 165.1 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a88f68ff-8c14-49f4-8a70-9c0f2b0e4e1e) + ) + (wire (pts (xy 124.46 50.8) (xy 124.46 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa4f8f68-ff2d-4889-9e8f-1235a1606fb4) + ) + (wire (pts (xy 162.56 44.45) (xy 148.59 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab981ade-87d2-412d-8d94-07006cf73af1) + ) + (wire (pts (xy 148.59 78.74) (xy 148.59 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1e18f67-3b9e-4c39-a4c0-a667320c993e) + ) + (wire (pts (xy 181.61 87.63) (xy 200.66 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2ee2725-01db-4899-bd98-5e4a25f0aa8c) + ) + (wire (pts (xy 124.46 100.33) (xy 140.97 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd6225fd-4695-4a4c-8561-214bd8756283) + ) + (wire (pts (xy 153.67 134.62) (xy 148.59 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c143be09-182b-4f94-9202-cab07411dbaf) + ) + (wire (pts (xy 148.59 41.91) (xy 148.59 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c528d0d5-3c5f-45fc-ae60-eb329732fd0c) + ) + (wire (pts (xy 148.59 105.41) (xy 148.59 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d223d9a1-0e34-40b2-88f4-eda07c6f72f2) + ) + (wire (pts (xy 106.68 86.36) (xy 110.49 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d828502a-d9ba-4a98-8d21-3e7c8741bb4d) + ) + (wire (pts (xy 148.59 87.63) (xy 181.61 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcc9939f-06c4-4d42-8ca0-b84842973fa0) + ) + (wire (pts (xy 153.67 104.14) (xy 153.67 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1f510d2-2bc2-4081-b243-c61e8f118511) + ) + (wire (pts (xy 181.61 87.63) (xy 181.61 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9c69f7a-4e28-4d83-9175-a66ad50badd6) + ) + (wire (pts (xy 148.59 44.45) (xy 148.59 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed09760e-21b7-4ace-8ec3-fb500a62d514) + ) + (wire (pts (xy 151.13 77.47) (xy 165.1 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1d1dcd4-7b40-4383-b002-d2d285283710) + ) + (wire (pts (xy 148.59 114.3) (xy 176.53 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9833a32-feec-432b-8f3f-105916259318) + ) + (wire (pts (xy 110.49 86.36) (xy 124.46 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd410e82-ee67-4a89-933e-86c4fe386bee) + ) + (wire (pts (xy 224.79 74.93) (xy 224.79 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid feaa5576-af79-4e49-a56e-d3115f8e6dd3) + ) + (wire (pts (xy 124.46 73.66) (xy 124.46 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff3b71a8-e7ce-4b76-a62c-550d5c0ba5b6) + ) + + (global_label "VDD" (shape input) (at 224.79 68.58 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 23e48910-2331-4297-be6e-de77810ddc81) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 230.8317 68.5006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "VDD" (shape input) (at 200.66 114.3 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4ba1f395-c656-4132-aac1-7407ef899119) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 206.7017 114.2206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "VDD" (shape input) (at 148.59 38.1 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 50c1e23b-c332-4a29-a6e6-7cfa653a69e0) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 154.6317 38.0206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "IN" (shape input) (at 114.3 86.36 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid bc3bac96-6cd7-4d5d-bd63-e25069d25cfe) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.2206 82.0117 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 148.59 138.43 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0e25c67e-a80f-46e6-b60b-58a42ef42f56) + (property "Reference" "#PWR01" (id 0) (at 148.59 144.78 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 153.67 138.43 0)) + (property "Footprint" "" (id 2) (at 148.59 138.43 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 138.43 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fe9f33a8-6a75-4127-bab8-1a3bef8acfd9)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_P") (at 144.78 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ee0d985-18f1-4351-a7cd-c7ca851219ee) + (property "Reference" "M4" (id 0) (at 152.4 72.3899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_P" (id 1) (at 152.4 74.9299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 151.13 71.12 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 146.05 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 301b5821-e27c-46d5-8593-52531caa0328)) + (pin "2" (uuid 0bac7a62-88fd-49a5-b2bd-4ee397ceba91)) + (pin "3" (uuid 0b21f349-8647-4699-8876-717c30c05e4d)) + (pin "4" (uuid 6044d31f-aae7-48a1-b802-bcbaa7d3e39b)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 224.79 102.87 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 60e40a96-d60d-41b5-be07-ee8a7c465b92) + (property "Reference" "#PWR03" (id 0) (at 224.79 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 229.87 102.87 0)) + (property "Footprint" "" (id 2) (at 224.79 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 224.79 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d8771193-654b-416d-8857-471ab532371e)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 200.66 63.5 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 6edb4d13-6b72-4ea2-8eff-af860c669a28) + (property "Reference" "#PWR02" (id 0) (at 200.66 69.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 205.74 63.5 0)) + (property "Footprint" "" (id 2) (at 200.66 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 200.66 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4e059179-cd50-45ca-a25b-ed708f321b17)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 186.69 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ec71b4f-a9d0-436f-8814-ca4d101bf896) + (property "Reference" "M6" (id 0) (at 181.61 119.38 90)) + (property "Value" "eSim_MOS_N" (id 1) (at 181.61 121.92 90)) + (property "Footprint" "" (id 2) (at 179.07 116.84 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 181.61 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 01cd0767-129d-473b-813a-eb4cac235aae)) + (pin "2" (uuid 6a0cf19a-91d4-473e-ae6c-51af1462369d)) + (pin "3" (uuid 02a0f831-b95c-4f2c-a93f-66fb4a0ce151)) + (pin "4" (uuid eaaf61c2-ff17-4a3b-b28c-5066639384c0)) + ) + + (symbol (lib_id "eSim_Sources:DC") (at 224.79 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8a936d85-3ede-4595-9b8d-24eb8fbc181b) + (property "Reference" "v1" (id 0) (at 229.87 88.265 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "DC" (id 1) (at 229.87 92.075 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 229.87 95.885 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 224.79 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1fa045aa-a125-424f-ac06-1b6246b0c308)) + (pin "2" (uuid d0c51a9a-27a5-412d-9cae-55313cf2a037)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 87.63 0) (mirror y) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9868f107-8f9d-4d89-b527-eefd317dff1a) + (property "Reference" "U1" (id 0) (at 213.36 86.995 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 213.36 89.535 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 209.55 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 259dbd0e-fc7e-4090-8c5d-9af7ee066273)) + (pin "2" (uuid aef1d91c-14c0-42d9-b3c8-8ced3b9b3a0c)) + (pin "3" (uuid 4e32adc8-28fe-4434-8da3-f55457f47810)) + (pin "4" (uuid f619e1c2-5ab8-4fc9-ae6b-72e3234f5e2e)) + (pin "5" (uuid c4c9ad8a-98a3-4b10-9bbf-15da3d90aabb)) + (pin "6" (uuid 5d597276-4d68-41d6-8142-cfdcb8b7248a)) + (pin "7" (uuid 22d91e17-6b29-4c15-ba48-f6026b8b8a41)) + (pin "8" (uuid e2ae3cb4-63e4-4a46-a0c3-4e78827e16a7)) + (pin "9" (uuid 30862ec2-a2f3-4f99-8373-eafd246b28f0)) + (pin "10" (uuid dae1e5ea-4a36-4d27-ad38-71bc0822a3c5)) + (pin "11" (uuid 67c7a44e-aa1c-42c7-9e7f-5dcda9b912d7)) + (pin "12" (uuid eae33e79-261a-45ef-823f-d84b20637a85)) + (pin "13" (uuid 00cacff5-016d-484e-8b04-be40e79fcd19)) + (pin "14" (uuid 1934f73f-767a-4701-9b00-7163c66c7b9a)) + (pin "15" (uuid 292e6234-5f74-4f3a-ac93-297050b1010f)) + (pin "16" (uuid b0749a1a-654d-4e92-ac40-93e48ac2642c)) + (pin "17" (uuid 55b4a5e6-599c-48e8-af9b-66a1924591b5)) + (pin "18" (uuid aba37ab2-cb22-40e1-825a-c8d4411f2076)) + (pin "19" (uuid f104cced-bbb3-4c2c-8565-6362f7a1a216)) + (pin "20" (uuid 865ca267-146d-451b-b5ef-2d9f001cdf7c)) + (pin "21" (uuid d009a6ec-4fc4-45e6-8350-634130e97352)) + (pin "22" (uuid ef246b6f-137b-407d-adea-537347831d50)) + (pin "23" (uuid 3f88a835-c24e-4d00-a073-e552c3d95e50)) + (pin "24" (uuid ee67e0b5-0d9b-4c22-ac47-5d42b218827b)) + (pin "25" (uuid 39cc394b-925f-46e5-bb54-c624651a478e)) + (pin "26" (uuid c1a3cb0a-ce79-4265-86b1-d2f71aa1f95f)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 219.71 74.93 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e8a2419-fd57-40e5-a8ec-e1935aee4d3d) + (property "Reference" "U4" (id 0) (at 236.22 73.66 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 236.22 77.47 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 219.71 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 219.71 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid c62aa992-f235-42ec-9192-c9ebfb5ea77f)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 200.66 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab61ebce-f309-468a-98e3-645458750542) + (property "Reference" "U3" (id 0) (at 204.47 78.74 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 204.47 82.55 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 200.66 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 88372d15-4acc-46e6-a715-862ec6b64d39)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 143.51 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8d80220-9434-46cb-844d-9111ff8e3858) + (property "Reference" "M2" (id 0) (at 152.4 123.1899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 152.4 125.7299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 151.13 127 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 146.05 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e0eca88d-c1e7-472b-b74d-62b847ffdfeb)) + (pin "2" (uuid 8beb110e-3ac6-43d5-984a-636f8c9168d9)) + (pin "3" (uuid 62000f16-40c0-4598-9a66-4bece80d7ad8)) + (pin "4" (uuid 81bfae87-19f0-4511-af61-1ae262705882)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_P") (at 144.78 50.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c9b31279-5bb5-4e17-b3ca-95ad4848e8ce) + (property "Reference" "M3" (id 0) (at 152.4 49.5299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_P" (id 1) (at 152.4 52.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 151.13 48.26 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 146.05 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d26ba84e-076d-4aa6-8c31-74664d884fd0)) + (pin "2" (uuid cee6fd4a-afea-44e3-b350-eb999f792d67)) + (pin "3" (uuid b2a17087-2b0e-4b8c-b2ea-49814ae7712d)) + (pin "4" (uuid 541b4103-e241-4fe5-8729-07566a33ac3f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_P") (at 181.61 67.31 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dba397a7-a3f0-42c1-84c7-6e2701fef6e8) + (property "Reference" "M5" (id 0) (at 181.61 55.88 90)) + (property "Value" "eSim_MOS_P" (id 1) (at 181.61 58.42 90)) + (property "Footprint" "" (id 2) (at 179.07 60.96 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 181.61 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 344349fc-2a26-4dd5-bad7-a2662c5eef92)) + (pin "2" (uuid ff03f810-de2d-4a47-ab34-1a96ecc520d3)) + (pin "3" (uuid d6a7f5cd-a7cd-4ce6-9d35-fa5ac6906118)) + (pin "4" (uuid 54ad7f2c-2ff8-4de7-8aa5-d5204922056d)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 110.49 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dd6e14a5-d4cd-4f1a-ba97-70da22ee1497) + (property "Reference" "U2" (id 0) (at 114.3 77.47 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 114.3 81.28 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 110.49 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 0355fe5d-2535-4459-acbb-3e9d85089c75)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e7be151e-5c6b-4cdf-ae4f-09ee2a9eb06e) + (property "Reference" "U1" (id 0) (at 100.965 81.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5a1447e2-0cc6-4d36-a30c-ba9c354684b6)) + (pin "2" (uuid 063bcd5f-f8fc-4bb1-bea7-6df091632ad7)) + (pin "3" (uuid dea5ac59-09f9-44c0-9a7c-2f888628b252)) + (pin "4" (uuid ee00200d-8369-4d38-9abc-856778850b06)) + (pin "5" (uuid 29024919-5595-4793-93fc-a95bb4f64662)) + (pin "6" (uuid 5f6c71b8-6df2-4165-a202-9406a986ac59)) + (pin "7" (uuid b87b30bb-c085-4d03-8935-1c3cafddc825)) + (pin "8" (uuid 29a154a4-7e48-48e5-a89b-f77e6b9e1078)) + (pin "9" (uuid 5e4a06e0-3164-49dd-b0b9-595b026e8924)) + (pin "10" (uuid 35d86226-5039-4d20-85a7-4584a36c812d)) + (pin "11" (uuid b0d3efd7-a4fb-4dce-9b65-8bf5403d43ae)) + (pin "12" (uuid 8514cb5d-e070-41b7-93f7-bebc44ff4933)) + (pin "13" (uuid f7fb1b95-1296-4cb9-9a08-6ddf02d3aff4)) + (pin "14" (uuid 41e9fdfb-eb31-41b6-9f1f-4538caa6278f)) + (pin "15" (uuid b28f16f0-c751-4754-9b9d-a3f9aaa79629)) + (pin "16" (uuid 5077453a-081d-408f-b869-582716ded2c0)) + (pin "17" (uuid cd69b6b8-e399-4489-bda1-7b16b9cc5ed9)) + (pin "18" (uuid 16c57ae6-8beb-4a10-a805-acb9e63ffa43)) + (pin "19" (uuid 05475b55-a8b4-45ee-9a82-ab7ef2d29e31)) + (pin "20" (uuid 608744af-9b1d-44de-bdfd-b67738ab9121)) + (pin "21" (uuid 0f92876d-d445-4484-90d3-e2a7b98432d4)) + (pin "22" (uuid 4d27d35d-5a3c-4d03-b8cf-ec22360f6215)) + (pin "23" (uuid 91205fe3-5d45-42b5-849f-67274021a06a)) + (pin "24" (uuid 57948f8c-3f99-49f7-918d-4b020dec021c)) + (pin "25" (uuid b1abcb65-cbf3-46a3-978a-a13e38cf0da3)) + (pin "26" (uuid 8e8961d0-b651-4929-a64e-2f352702d7ad)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 143.51 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f918c644-c8c6-4d04-9930-80ef7f9bee64) + (property "Reference" "M1" (id 0) (at 152.4 99.0599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 152.4 101.5999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 151.13 102.87 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 146.05 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 499e0ac0-e359-4b13-8253-a7c2b8435263)) + (pin "2" (uuid d68a2876-7728-4353-ba55-931d44191a9b)) + (pin "3" (uuid 4d8ae5fb-acb8-4f7f-be90-7f8fb317c001)) + (pin "4" (uuid 00c98136-5cea-4a9a-9573-6df091fa4cb4)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/0e25c67e-a80f-46e6-b60b-58a42ef42f56" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/6edb4d13-6b72-4ea2-8eff-af860c669a28" + (reference "#PWR02") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/60e40a96-d60d-41b5-be07-ee8a7c465b92" + (reference "#PWR03") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/f918c644-c8c6-4d04-9930-80ef7f9bee64" + (reference "M1") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/c8d80220-9434-46cb-844d-9111ff8e3858" + (reference "M2") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/c9b31279-5bb5-4e17-b3ca-95ad4848e8ce" + (reference "M3") (unit 1) (value "eSim_MOS_P") (footprint "") + ) + (path "/5ee0d985-18f1-4351-a7cd-c7ca851219ee" + (reference "M4") (unit 1) (value "eSim_MOS_P") (footprint "") + ) + (path "/dba397a7-a3f0-42c1-84c7-6e2701fef6e8" + (reference "M5") (unit 1) (value "eSim_MOS_P") (footprint "") + ) + (path "/7ec71b4f-a9d0-436f-8814-ca4d101bf896" + (reference "M6") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/e7be151e-5c6b-4cdf-ae4f-09ee2a9eb06e" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/9868f107-8f9d-4d89-b527-eefd317dff1a" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/dd6e14a5-d4cd-4f1a-ba97-70da22ee1497" + (reference "U2") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/ab61ebce-f309-468a-98e3-645458750542" + (reference "U3") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/9e8a2419-fd57-40e5-a8ec-e1935aee4d3d" + (reference "U4") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/8a936d85-3ede-4595-9b8d-24eb8fbc181b" + (reference "v1") (unit 1) (value "DC") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.sub new file mode 100644 index 000000000..64d1f7b95 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14.sub @@ -0,0 +1,18 @@ +* Subcircuit 74HC14 +.subckt 74HC14 in net-_m1-pad1_ +.title kicad schematic +.include PMOS-180nm.lib +.include NMOS-180nm.lib +m6 vdd net-_m1-pad1_ net-_m1-pad3_ gnd CMOSN W=100u L=100u M=1 +m5 net-_m3-pad3_ net-_m1-pad1_ gnd vdd CMOSP W=100u L=100u M=1 +m2 net-_m1-pad3_ in gnd gnd CMOSN W=100u L=100u M=1 +m1 net-_m1-pad1_ in net-_m1-pad3_ gnd CMOSN W=100u L=100u M=1 +v1 vdd gnd dc 5 +* u4 vdd plot_v1 +* u3 net-_m1-pad1_ plot_v1 +m4 net-_m3-pad3_ in net-_m1-pad1_ vdd CMOSP W=100u L=100u M=1 +m3 vdd in net-_m3-pad3_ vdd CMOSP W=100u L=100u M=1 +* u2 in plot_v1 +* Control Statements + +.ends 74HC14 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14_Previous_Values.xml new file mode 100644 index 000000000..da4052ed2 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/74HC14_Previous_Values.xml @@ -0,0 +1 @@ +dc5C:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/NMOS-180nm.lib b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/NMOS-180nm.lib new file mode 100644 index 000000000..51e9b1196 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/NMOS-180nm.lib @@ -0,0 +1,13 @@ +.model CMOSN NMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=2.3549E17 VTH0=0.3823463 K1=0.5810697 ++ K2=4.774618E-3 K3=0.0431669 K3B=1.1498346 W0=1E-7 NLX=1.910552E-7 DVT0W=0 DVT1W=0 DVT2W=0 ++ DVT0=1.2894824 DVT1=0.3622063 DVT2=0.0713729 U0=280.633249 UA=-1.208537E-9 UB=2.158625E-18 ++ UC=5.342807E-11 VSAT=9.366802E4 A0=1.7593146 AGS=0.3939741 B0=-6.413949E-9 B1=-1E-7 KETA=-5.180424E-4 ++ A1=0 A2=1 RDSW=105.5517558 PRWG=0.5 PRWB=-0.1998871 WR=1 WINT=7.904732E-10 LINT=1.571424E-8 XL=0 ++ XW=-1E-8 DWG=1.297221E-9 DWB=1.479041E-9 VOFF=-0.0955434 NFACTOR=2.4358891 CIT=0 CDSC=2.4E-4 CDSCD=0 ++ CDSCB=0 ETA0=3.104851E-3 ETAB=-2.512384E-5 DSUB=0.0167075 PCLM=0.8073191 PDIBLC1=0.1666161 PDIBLC2=3.112892E-3 ++ PDIBLCB=-0.1 DROUT=0.7875618 PSCBE1=8E10 PSCBE2=9.213635E-10 PVAG=3.85243E-3 DELTA=0.01 RSH=6.7 MOBMOD=1 ++ PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 ++ WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 CGDO=7.08E-10 CGSO=7.08E-10 CGBO=1E-12 ++ CJ=9.68858E-4 PB=0.8 MJ=0.3864502 CJSW=2.512138E-10 PBSW=0.809286 MJSW=0.1060414 CJSWG=3.3E-10 PBSWG=0.809286 ++ MJSWG=0.1060414 CF=0 PVTH0=-1.192722E-3 PRDSW=-5 PK2=6.450505E-5 WKETA=-4.27294E-4 LKETA=-0.0104078 ++ PU0=6.3268729 PUA=2.226552E-11 PUB=0 PVSAT=969.1480157 PETA0=1E-4 PKETA=-1.049509E-3) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/PMOS-180nm.lib b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/PMOS-180nm.lib new file mode 100644 index 000000000..032b5b95e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/PMOS-180nm.lib @@ -0,0 +1,11 @@ +.model CMOSP PMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=4.1589E17 VTH0=-0.3938813 K1=0.5479015 ++ K2=0.0360586 K3=0.0993095 K3B=5.7086622 W0=1E-6 NLX=1.313191E-7 DVT0W=0 DVT1W=0 DVT2W=0 DVT0=0.4911363 ++ DVT1=0.2227356 DVT2=0.1 U0=115.6852975 UA=1.505832E-9 UB=1E-21 UC=-1E-10 VSAT=1.329694E5 A0=1.7590478 ++ AGS=0.3641621 B0=3.427126E-7 B1=1.062928E-6 KETA=0.0134667 A1=0.6859506 A2=0.3506788 RDSW=168.5705677 ++ PRWG=0.5 PRWB=-0.4987371 WR=1 WINT=0 LINT=3.028832E-8 XL=0 XW=-1E-8 DWG=-2.349633E-8 DWB=-7.152486E-9 ++ VOFF=-0.0994037 NFACTOR=1.9424315 CIT=0 CDSC=2.4E-4 CDSCD=0 CDSCB=0 ETA0=0.0608072 ETAB=-0.0426148 ++ DSUB=0.7343015 PCLM=3.2579974 PDIBLC1=7.229527E-6 PDIBLC2=0.025389 PDIBLCB=-1E-3 DROUT=0 PSCBE1=1.454878E10 ++ PSCBE2=4.202027E-9 PVAG=15 DELTA=0.01 RSH=7.8 MOBMOD=1 PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 ++ UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 ++ CGDO=6.32E-10 CGSO=6.32E-10 CGBO=1E-12 CJ=1.172138E-3 PB=0.8421173 MJ=0.4109788 CJSW=2.242609E-10 PBSW=0.8 + MJSW=0.3752089 CJSWG=4.22E-10 PBSWG=0.8 MJSWG=0.3752089 CF=0 PVTH0=1.888482E-3 PRDSW=11.5315407 PK2=1.559399E-3 ++ WKETA=0.0319301 LKETA=2.955547E-3 PU0=-1.1105313 PUA=-4.62102E-11 PUB=1E-21 PVSAT=50 PETA0=1E-4 PKETA=-4.346368E-3) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/analysis b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/analysis new file mode 100644 index 000000000..af548eb1e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC132/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 100e-06 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and-cache.lib b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and-cache.lib new file mode 100644 index 000000000..af0586415 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.cir new file mode 100644 index 000000000..ba296cf01 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\3_and\3_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/26/19 18:42:57 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad4_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT + +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.cir.out new file mode 100644 index 000000000..d7cf79a07 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.cir.out @@ -0,0 +1,20 @@ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.pro b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.pro new file mode 100644 index 000000000..00597a5ad --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.pro @@ -0,0 +1,43 @@ +update=05/31/19 15:26:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=eSim_Analog +LibName2=eSim_Devices +LibName3=eSim_Digital +LibName4=eSim_Hybrid +LibName5=eSim_Miscellaneous +LibName6=eSim_Plot +LibName7=eSim_Power +LibName8=eSim_User +LibName9=eSim_Sources +LibName10=eSim_Subckt diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.sch new file mode 100644 index 000000000..d6ac89f95 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.sch @@ -0,0 +1,130 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:3_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U2 +U 1 1 5C9A24D8 +P 4250 2700 +F 0 "U2" H 4250 2700 60 0000 C CNN +F 1 "d_and" H 4300 2800 60 0000 C CNN +F 2 "" H 4250 2700 60 0000 C CNN +F 3 "" H 4250 2700 60 0000 C CNN + 1 4250 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 5C9A2538 +P 5150 2900 +F 0 "U3" H 5150 2900 60 0000 C CNN +F 1 "d_and" H 5200 3000 60 0000 C CNN +F 2 "" H 5150 2900 60 0000 C CNN +F 3 "" H 5150 2900 60 0000 C CNN + 1 5150 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 5C9A259A +P 3050 2600 +F 0 "U1" H 3100 2700 30 0000 C CNN +F 1 "PORT" H 3050 2600 30 0000 C CNN +F 2 "" H 3050 2600 60 0000 C CNN +F 3 "" H 3050 2600 60 0000 C CNN + 1 3050 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A25D9 +P 3050 2800 +F 0 "U1" H 3100 2900 30 0000 C CNN +F 1 "PORT" H 3050 2800 30 0000 C CNN +F 2 "" H 3050 2800 60 0000 C CNN +F 3 "" H 3050 2800 60 0000 C CNN + 2 3050 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A260A +P 3050 3100 +F 0 "U1" H 3100 3200 30 0000 C CNN +F 1 "PORT" H 3050 3100 30 0000 C CNN +F 2 "" H 3050 3100 60 0000 C CNN +F 3 "" H 3050 3100 60 0000 C CNN + 3 3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2637 +P 6900 2850 +F 0 "U1" H 6950 2950 30 0000 C CNN +F 1 "PORT" H 6900 2850 30 0000 C CNN +F 2 "" H 6900 2850 60 0000 C CNN +F 3 "" H 6900 2850 60 0000 C CNN + 4 6900 2850 + -1 0 0 1 +$EndComp +Wire Wire Line + 4700 2650 4700 2800 +Wire Wire Line + 5600 2850 6650 2850 +Wire Wire Line + 3800 2600 3300 2600 +Wire Wire Line + 3800 2700 3300 2700 +Wire Wire Line + 3300 2700 3300 2800 +Wire Wire Line + 3300 3100 4700 3100 +Wire Wire Line + 4700 3100 4700 2900 +Text Notes 3500 2600 0 60 ~ 12 +in1 +Text Notes 3450 2800 0 60 ~ 12 +in2\n +Text Notes 3500 3100 0 60 ~ 12 +in3 +Text Notes 6100 2850 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.sub new file mode 100644 index 000000000..3d9120bb6 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and.sub @@ -0,0 +1,14 @@ +* Subcircuit 3_and +.subckt 3_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and_Previous_Values.xml new file mode 100644 index 000000000..abc5faaae --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/3_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.cir new file mode 100644 index 000000000..f9f7ca2a6 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.cir @@ -0,0 +1,47 @@ +.title KiCad schematic +U32 Net-_U24-Pad3_ Net-_U1-Pad9_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ PORT +U31 Net-_U23-Pad3_ Net-_U1-Pad8_ d_inverter +U30 Net-_U22-Pad3_ Net-_U1-Pad7_ d_inverter +U16 Net-_U16-Pad1_ Net-_U16-Pad2_ d_inverter +U17 Net-_U17-Pad1_ Net-_U17-Pad2_ d_inverter +U22 Net-_U14-Pad2_ Net-_U13-Pad2_ Net-_U22-Pad3_ d_nor +U23 Net-_U15-Pad2_ Net-_U13-Pad2_ Net-_U23-Pad3_ d_nor +U25 Net-_U17-Pad2_ Net-_U13-Pad2_ Net-_U25-Pad3_ d_nor +U24 Net-_U16-Pad2_ Net-_U13-Pad2_ Net-_U24-Pad3_ d_nor +U26 Net-_U18-Pad2_ Net-_U13-Pad2_ Net-_U26-Pad3_ d_nor +U14 Net-_U14-Pad1_ Net-_U14-Pad2_ d_inverter +U15 Net-_U15-Pad1_ Net-_U15-Pad2_ d_inverter +U18 Net-_U18-Pad1_ Net-_U18-Pad2_ d_inverter +U33 Net-_U25-Pad3_ Net-_U1-Pad10_ d_inverter +U34 Net-_U26-Pad3_ Net-_U1-Pad11_ d_inverter +U4 Net-_U1-Pad2_ Net-_U10-Pad1_ d_inverter +U9 Net-_U3-Pad2_ Net-_U10-Pad2_ unconnected-_U9-Pad3_ unconnected-_U9-Pad4_ Net-_U9-Pad5_ Net-_U9-Pad6_ d_dlatch +U3 Net-_U1-Pad1_ Net-_U3-Pad2_ d_inverter +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ unconnected-_U10-Pad3_ unconnected-_U10-Pad4_ Net-_U10-Pad5_ Net-_U10-Pad6_ d_dlatch +U2 Net-_U1-Pad5_ Net-_U2-Pad2_ d_inverter +U7 Net-_U1-Pad6_ Net-_U12-Pad2_ d_inverter +U8 Net-_U2-Pad2_ Net-_U12-Pad1_ d_inverter +U11 Net-_U11-Pad1_ Net-_U10-Pad2_ unconnected-_U11-Pad3_ unconnected-_U11-Pad4_ Net-_U11-Pad5_ Net-_U11-Pad6_ d_dlatch +U5 Net-_U1-Pad3_ Net-_U11-Pad1_ d_inverter +U6 Net-_U1-Pad4_ Net-_U10-Pad2_ d_inverter +U29 Net-_U21-Pad2_ Net-_U13-Pad2_ Net-_U29-Pad3_ d_nor +U28 Net-_U20-Pad2_ Net-_U13-Pad2_ Net-_U28-Pad3_ d_nor +U27 Net-_U19-Pad2_ Net-_U13-Pad2_ Net-_U27-Pad3_ d_nor +U21 Net-_U21-Pad1_ Net-_U21-Pad2_ d_inverter +X8 Net-_U11-Pad5_ Net-_U10-Pad5_ Net-_U9-Pad5_ Net-_U21-Pad1_ 3_and +X7 Net-_U9-Pad6_ Net-_U10-Pad5_ Net-_U11-Pad5_ Net-_U20-Pad1_ 3_and +U20 Net-_U20-Pad1_ Net-_U20-Pad2_ d_inverter +U19 Net-_U19-Pad1_ Net-_U19-Pad2_ d_inverter +U35 Net-_U27-Pad3_ Net-_U1-Pad12_ d_inverter +U36 Net-_U28-Pad3_ Net-_U1-Pad13_ d_inverter +U37 Net-_U29-Pad3_ Net-_U1-Pad14_ d_inverter +X6 Net-_U11-Pad5_ Net-_U10-Pad6_ Net-_U9-Pad5_ Net-_U19-Pad1_ 3_and +X5 Net-_U9-Pad6_ Net-_U10-Pad6_ Net-_U11-Pad5_ Net-_U18-Pad1_ 3_and +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U12-Pad3_ d_nor +U13 Net-_U12-Pad3_ Net-_U13-Pad2_ d_inverter +X4 Net-_U11-Pad6_ Net-_U10-Pad5_ Net-_U9-Pad5_ Net-_U17-Pad1_ 3_and +X1 Net-_U9-Pad6_ Net-_U10-Pad6_ Net-_U11-Pad6_ Net-_U14-Pad1_ 3_and +X3 Net-_U9-Pad6_ Net-_U10-Pad5_ Net-_U11-Pad6_ Net-_U16-Pad1_ 3_and +X2 Net-_U11-Pad6_ Net-_U10-Pad6_ Net-_U9-Pad5_ Net-_U15-Pad1_ 3_and +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.cir.out new file mode 100644 index 000000000..0ece8cc18 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.cir.out @@ -0,0 +1,165 @@ +.title kicad schematic + +.include 3_and.sub +* u32 net-_u24-pad3_ net-_u1-pad9_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ port +* u31 net-_u23-pad3_ net-_u1-pad8_ d_inverter +* u30 net-_u22-pad3_ net-_u1-pad7_ d_inverter +* u16 net-_u16-pad1_ net-_u16-pad2_ d_inverter +* u17 net-_u17-pad1_ net-_u17-pad2_ d_inverter +* u22 net-_u14-pad2_ net-_u13-pad2_ net-_u22-pad3_ d_nor +* u23 net-_u15-pad2_ net-_u13-pad2_ net-_u23-pad3_ d_nor +* u25 net-_u17-pad2_ net-_u13-pad2_ net-_u25-pad3_ d_nor +* u24 net-_u16-pad2_ net-_u13-pad2_ net-_u24-pad3_ d_nor +* u26 net-_u18-pad2_ net-_u13-pad2_ net-_u26-pad3_ d_nor +* u14 net-_u14-pad1_ net-_u14-pad2_ d_inverter +* u15 net-_u15-pad1_ net-_u15-pad2_ d_inverter +* u18 net-_u18-pad1_ net-_u18-pad2_ d_inverter +* u33 net-_u25-pad3_ net-_u1-pad10_ d_inverter +* u34 net-_u26-pad3_ net-_u1-pad11_ d_inverter +* u4 net-_u1-pad2_ net-_u10-pad1_ d_inverter +* u9 net-_u3-pad2_ net-_u10-pad2_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u9-pad5_ net-_u9-pad6_ d_dlatch +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ unconnected-_u10-pad4_ net-_u10-pad5_ net-_u10-pad6_ d_dlatch +* u2 net-_u1-pad5_ net-_u2-pad2_ d_inverter +* u7 net-_u1-pad6_ net-_u12-pad2_ d_inverter +* u8 net-_u2-pad2_ net-_u12-pad1_ d_inverter +* u11 net-_u11-pad1_ net-_u10-pad2_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ net-_u11-pad6_ d_dlatch +* u5 net-_u1-pad3_ net-_u11-pad1_ d_inverter +* u6 net-_u1-pad4_ net-_u10-pad2_ d_inverter +* u29 net-_u21-pad2_ net-_u13-pad2_ net-_u29-pad3_ d_nor +* u28 net-_u20-pad2_ net-_u13-pad2_ net-_u28-pad3_ d_nor +* u27 net-_u19-pad2_ net-_u13-pad2_ net-_u27-pad3_ d_nor +* u21 net-_u21-pad1_ net-_u21-pad2_ d_inverter +x8 net-_u11-pad5_ net-_u10-pad5_ net-_u9-pad5_ net-_u21-pad1_ 3_and +x7 net-_u9-pad6_ net-_u10-pad5_ net-_u11-pad5_ net-_u20-pad1_ 3_and +* u20 net-_u20-pad1_ net-_u20-pad2_ d_inverter +* u19 net-_u19-pad1_ net-_u19-pad2_ d_inverter +* u35 net-_u27-pad3_ net-_u1-pad12_ d_inverter +* u36 net-_u28-pad3_ net-_u1-pad13_ d_inverter +* u37 net-_u29-pad3_ net-_u1-pad14_ d_inverter +x6 net-_u11-pad5_ net-_u10-pad6_ net-_u9-pad5_ net-_u19-pad1_ 3_and +x5 net-_u9-pad6_ net-_u10-pad6_ net-_u11-pad5_ net-_u18-pad1_ 3_and +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_nor +* u13 net-_u12-pad3_ net-_u13-pad2_ d_inverter +x4 net-_u11-pad6_ net-_u10-pad5_ net-_u9-pad5_ net-_u17-pad1_ 3_and +x1 net-_u9-pad6_ net-_u10-pad6_ net-_u11-pad6_ net-_u14-pad1_ 3_and +x3 net-_u9-pad6_ net-_u10-pad5_ net-_u11-pad6_ net-_u16-pad1_ 3_and +x2 net-_u11-pad6_ net-_u10-pad6_ net-_u9-pad5_ net-_u15-pad1_ 3_and +a1 net-_u24-pad3_ net-_u1-pad9_ u32 +a2 net-_u23-pad3_ net-_u1-pad8_ u31 +a3 net-_u22-pad3_ net-_u1-pad7_ u30 +a4 net-_u16-pad1_ net-_u16-pad2_ u16 +a5 net-_u17-pad1_ net-_u17-pad2_ u17 +a6 [net-_u14-pad2_ net-_u13-pad2_ ] net-_u22-pad3_ u22 +a7 [net-_u15-pad2_ net-_u13-pad2_ ] net-_u23-pad3_ u23 +a8 [net-_u17-pad2_ net-_u13-pad2_ ] net-_u25-pad3_ u25 +a9 [net-_u16-pad2_ net-_u13-pad2_ ] net-_u24-pad3_ u24 +a10 [net-_u18-pad2_ net-_u13-pad2_ ] net-_u26-pad3_ u26 +a11 net-_u14-pad1_ net-_u14-pad2_ u14 +a12 net-_u15-pad1_ net-_u15-pad2_ u15 +a13 net-_u18-pad1_ net-_u18-pad2_ u18 +a14 net-_u25-pad3_ net-_u1-pad10_ u33 +a15 net-_u26-pad3_ net-_u1-pad11_ u34 +a16 net-_u1-pad2_ net-_u10-pad1_ u4 +a17 net-_u3-pad2_ net-_u10-pad2_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u9-pad5_ net-_u9-pad6_ u9 +a18 net-_u1-pad1_ net-_u3-pad2_ u3 +a19 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ unconnected-_u10-pad4_ net-_u10-pad5_ net-_u10-pad6_ u10 +a20 net-_u1-pad5_ net-_u2-pad2_ u2 +a21 net-_u1-pad6_ net-_u12-pad2_ u7 +a22 net-_u2-pad2_ net-_u12-pad1_ u8 +a23 net-_u11-pad1_ net-_u10-pad2_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ net-_u11-pad6_ u11 +a24 net-_u1-pad3_ net-_u11-pad1_ u5 +a25 net-_u1-pad4_ net-_u10-pad2_ u6 +a26 [net-_u21-pad2_ net-_u13-pad2_ ] net-_u29-pad3_ u29 +a27 [net-_u20-pad2_ net-_u13-pad2_ ] net-_u28-pad3_ u28 +a28 [net-_u19-pad2_ net-_u13-pad2_ ] net-_u27-pad3_ u27 +a29 net-_u21-pad1_ net-_u21-pad2_ u21 +a30 net-_u20-pad1_ net-_u20-pad2_ u20 +a31 net-_u19-pad1_ net-_u19-pad2_ u19 +a32 net-_u27-pad3_ net-_u1-pad12_ u35 +a33 net-_u28-pad3_ net-_u1-pad13_ u36 +a34 net-_u29-pad3_ net-_u1-pad14_ u37 +a35 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a36 net-_u12-pad3_ net-_u13-pad2_ u13 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u32 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u30 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u22 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u23 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u25 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u24 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u26 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u33 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u34 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u9 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u10 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u11 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u29 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u28 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u27 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u35 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u36 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u37 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u12 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.kicad_sch new file mode 100644 index 000000000..9be41968c --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.kicad_sch @@ -0,0 +1,2562 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid dd38fcea-5cc8-48a3-9f29-94a0ae3dc0be) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_dlatch" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dlatch" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dlatch_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dlatch_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -7.62 0) (length 5.08) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Subckt:3_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 2.54 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 3.81 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "3_and_0_1" + (polyline + (pts + (xy -3.81 5.08) + (xy 5.08 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 5.08) + (xy -3.81 -2.54) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 5.08 -2.54) (mid 7.8261 1.27) (end 5.08 5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "3_and_1_1" + (pin input line (at -8.89 3.81 0) (length 5.08) + (name "in1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 1.27 0) (length 5.08) + (name "in2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -1.27 0) (length 5.08) + (name "in3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 1.27 180) (length 5.08) + (name "out" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 146.05 81.28) (diameter 0) (color 0 0 0 0) + (uuid 23193ed5-1a68-4a50-84f6-5b0010518819) + ) + (junction (at 203.2 57.15) (diameter 0) (color 0 0 0 0) + (uuid 2e01256e-e2f1-4cca-b4a0-a633fbbd7ef9) + ) + (junction (at 129.54 107.95) (diameter 0) (color 0 0 0 0) + (uuid 3634dcb1-85da-43ff-a1a8-0895595ccda3) + ) + (junction (at 119.38 95.25) (diameter 0) (color 0 0 0 0) + (uuid 37a21f1a-2707-4ff8-a066-0448671e1892) + ) + (junction (at 72.39 81.28) (diameter 0) (color 0 0 0 0) + (uuid 3839e628-d68b-470a-b4af-52e42bb81917) + ) + (junction (at 203.2 95.25) (diameter 0) (color 0 0 0 0) + (uuid 3d73be6b-4185-4b7b-8e82-b964a1657f73) + ) + (junction (at 203.2 44.45) (diameter 0) (color 0 0 0 0) + (uuid 53e726de-02a1-43ca-891e-f6d48df922df) + ) + (junction (at 146.05 80.01) (diameter 0) (color 0 0 0 0) + (uuid 55acaf51-c012-41d0-859f-e2e3978328eb) + ) + (junction (at 119.38 44.45) (diameter 0) (color 0 0 0 0) + (uuid 563b314e-b7f3-4a79-a100-db782e9e4c0a) + ) + (junction (at 124.46 67.31) (diameter 0) (color 0 0 0 0) + (uuid 5d1b0012-be0b-4d3e-9a6a-0262ad5741db) + ) + (junction (at 146.05 41.91) (diameter 0) (color 0 0 0 0) + (uuid 5dc83ab9-03b6-47be-89fa-e67a005036a4) + ) + (junction (at 203.2 82.55) (diameter 0) (color 0 0 0 0) + (uuid 6bf373e3-92fb-48f3-a77b-4631ff4e7404) + ) + (junction (at 129.54 102.87) (diameter 0) (color 0 0 0 0) + (uuid 6ccffae4-6dba-4744-8cf8-7a9fc5ebdfeb) + ) + (junction (at 134.62 39.37) (diameter 0) (color 0 0 0 0) + (uuid 7ea31ae9-0270-492f-b726-616bc1e1ebbb) + ) + (junction (at 203.2 120.65) (diameter 0) (color 0 0 0 0) + (uuid 7f7eb836-3db3-4241-92b5-5d670c57a5de) + ) + (junction (at 134.62 64.77) (diameter 0) (color 0 0 0 0) + (uuid 80208e95-9ef1-4c84-a50b-18b2a8887504) + ) + (junction (at 124.46 64.77) (diameter 0) (color 0 0 0 0) + (uuid 85dd7fd5-d47b-40a5-8c66-75042dd83993) + ) + (junction (at 138.43 43.18) (diameter 0) (color 0 0 0 0) + (uuid 9c75ae22-c0f8-4587-a843-dcb8973fd2b9) + ) + (junction (at 138.43 52.07) (diameter 0) (color 0 0 0 0) + (uuid 9ec5197e-d97b-4cff-a047-da5a0a2a337c) + ) + (junction (at 124.46 105.41) (diameter 0) (color 0 0 0 0) + (uuid a13e8a54-56a9-48a6-8d2a-ddea5346c9ae) + ) + (junction (at 134.62 57.15) (diameter 0) (color 0 0 0 0) + (uuid a7407111-c612-42f5-bec9-cd233c24c909) + ) + (junction (at 72.39 119.38) (diameter 0) (color 0 0 0 0) + (uuid c50ec2ae-aedf-4d48-a605-8ec64177fd55) + ) + (junction (at 129.54 90.17) (diameter 0) (color 0 0 0 0) + (uuid cf3ca6e5-f3bf-4bda-b47b-2dd0ae00622e) + ) + (junction (at 119.38 69.85) (diameter 0) (color 0 0 0 0) + (uuid d9ada49c-518c-4416-89c8-f47fde73b11a) + ) + (junction (at 203.2 107.95) (diameter 0) (color 0 0 0 0) + (uuid dc642504-ae85-4e63-8274-29b03776dba9) + ) + (junction (at 138.43 77.47) (diameter 0) (color 0 0 0 0) + (uuid f6042597-58d3-49f1-b69e-459ab300edcb) + ) + (junction (at 203.2 69.85) (diameter 0) (color 0 0 0 0) + (uuid fd4d1422-7e9a-49e0-8830-f3d6e3839009) + ) + + (no_connect (at 88.9 88.9) (uuid 6a466c4a-90de-4759-8680-15f060393ba0)) + (no_connect (at 88.9 95.25) (uuid 898a3d7c-4ad8-4d9d-9a08-5fcf323e50c3)) + (no_connect (at 88.9 57.15) (uuid 8d729efd-8ba5-48df-94cf-e093f5e15eaa)) + (no_connect (at 88.9 50.8) (uuid 9698ace2-39ce-4b12-b5c1-05cc24af36bd)) + (no_connect (at 88.9 19.05) (uuid a7a6384d-915a-4308-ad98-6a040715b068)) + (no_connect (at 88.9 127) (uuid b8a919a6-1eac-417c-a76d-4ed04185570f)) + + (wire (pts (xy 195.58 118.11) (xy 209.55 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 003687e2-ad5b-42c4-8a62-ad80c5aa5ca4) + ) + (wire (pts (xy 195.58 67.31) (xy 209.55 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00a241f7-b900-42e2-af78-c8461fe0db74) + ) + (wire (pts (xy 232.41 81.28) (xy 238.76 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01faad5f-a642-42f0-af00-64cac6194e41) + ) + (wire (pts (xy 102.87 43.18) (xy 138.43 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 036bc3bd-ebc1-457b-aaa8-5861525f8e47) + ) + (wire (pts (xy 72.39 81.28) (xy 72.39 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 048a04b7-6bfb-4997-a822-6f2f3010f458) + ) + (wire (pts (xy 118.11 147.32) (xy 124.46 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05438eb0-0166-4b47-85a0-dc7618ef1af4) + ) + (wire (pts (xy 138.43 52.07) (xy 158.75 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b5e4d25-e45a-4a7e-9964-14d2c675741d) + ) + (wire (pts (xy 203.2 57.15) (xy 209.55 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d994e2d-9b7c-4676-93b2-b21ae765f81b) + ) + (wire (pts (xy 134.62 64.77) (xy 134.62 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ee46bea-6409-427c-9752-6fc369fb8034) + ) + (wire (pts (xy 195.58 105.41) (xy 209.55 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f2319cb-8412-47a1-900a-da991a6767b6) + ) + (wire (pts (xy 129.54 82.55) (xy 129.54 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14c70402-ff74-4375-a9f4-c1ed0e62c2c9) + ) + (wire (pts (xy 232.41 93.98) (xy 238.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17677f2d-f00d-4e1f-a4fd-983315a4a0f1) + ) + (wire (pts (xy 124.46 67.31) (xy 124.46 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 194f261a-a81a-4dbc-8ac7-71853a630f34) + ) + (wire (pts (xy 74.93 43.18) (xy 72.39 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cc0fbf7-8efb-455f-b71f-07100ffcd14b) + ) + (wire (pts (xy 203.2 120.65) (xy 203.2 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d02c163-f9b8-4c27-9020-c112984ee648) + ) + (wire (pts (xy 124.46 67.31) (xy 158.75 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d3b2bbc-d491-40f2-aed1-02f10a9b90b9) + ) + (wire (pts (xy 129.54 107.95) (xy 129.54 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e7050a3-34cf-4edf-9f9a-db93988f9b21) + ) + (wire (pts (xy 203.2 82.55) (xy 203.2 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23aaeabf-ceb7-47f1-a081-6be6f063f9d2) + ) + (wire (pts (xy 44.45 64.77) (xy 54.61 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2458a761-4a95-4944-8880-0775ecd4f67a) + ) + (wire (pts (xy 203.2 69.85) (xy 203.2 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 298cc457-34a8-47c1-9790-8a2f424b6727) + ) + (wire (pts (xy 129.54 115.57) (xy 129.54 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 314fe216-441b-4e9d-ba3e-bfdc6163e60c) + ) + (wire (pts (xy 203.2 69.85) (xy 209.55 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 344aa685-e2fd-462e-855c-59e707eb1f17) + ) + (wire (pts (xy 69.85 64.77) (xy 74.93 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39db6da0-b2c9-4098-9944-dab831ccaf56) + ) + (wire (pts (xy 232.41 43.18) (xy 238.76 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a4103e2-13b4-4d14-829e-1f28d90c7f34) + ) + (wire (pts (xy 44.45 102.87) (xy 54.61 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c656781-72b5-4966-9fb9-781367b18d1d) + ) + (wire (pts (xy 138.43 77.47) (xy 158.75 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c9e769b-db6c-4f35-a7ad-f909a20aada4) + ) + (wire (pts (xy 69.85 26.67) (xy 74.93 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43c4142e-02e3-4b52-afc2-9bf7300e32b8) + ) + (wire (pts (xy 124.46 105.41) (xy 158.75 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 472771eb-f382-4822-bc4b-9fd70b807b76) + ) + (wire (pts (xy 124.46 64.77) (xy 102.87 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b457e8f-4fbc-4f89-8d44-a035757de730) + ) + (wire (pts (xy 146.05 81.28) (xy 146.05 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bcd76e6-3683-4f50-8ad2-864722a53835) + ) + (wire (pts (xy 95.25 158.75) (xy 95.25 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c977cb9-69ea-4f13-bf01-65bd247c0b2f) + ) + (wire (pts (xy 203.2 107.95) (xy 209.55 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cb897e0-df5c-45b4-a636-f96c07f24dc4) + ) + (wire (pts (xy 124.46 105.41) (xy 124.46 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51d93565-6798-4cad-a6c1-0cf38320e8f4) + ) + (wire (pts (xy 232.41 106.68) (xy 238.76 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54e63ad4-279e-4014-9907-f55d7179c510) + ) + (wire (pts (xy 134.62 39.37) (xy 134.62 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57e53e49-d364-4783-9043-4276048e8d9f) + ) + (wire (pts (xy 44.45 26.67) (xy 54.61 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a1e49fb-2f78-4f90-a9fd-a9f6c07e3770) + ) + (wire (pts (xy 203.2 44.45) (xy 209.55 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c12c771-d15b-4450-9a8c-25d7ab2102ac) + ) + (wire (pts (xy 72.39 43.18) (xy 72.39 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e574d3b-1cda-4b99-9eb3-500b0478c26e) + ) + (wire (pts (xy 146.05 41.91) (xy 146.05 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65156bee-5c70-4349-9188-59e9bd802cfe) + ) + (wire (pts (xy 69.85 102.87) (xy 74.93 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 656812a6-9c29-49a6-87dc-9f331ad236d6) + ) + (wire (pts (xy 138.43 26.67) (xy 138.43 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66af1d35-a5e4-45e2-b471-b5e8d643d6d0) + ) + (wire (pts (xy 44.45 158.75) (xy 63.5 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 679f6cc3-70c9-468f-beef-f5b6ea76097c) + ) + (wire (pts (xy 119.38 69.85) (xy 119.38 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68c9fea5-008a-4532-b197-9db39ed3f593) + ) + (wire (pts (xy 232.41 68.58) (xy 238.76 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a15b560-1559-4ec8-9a41-aaabeaa61b8f) + ) + (wire (pts (xy 158.75 120.65) (xy 119.38 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7160d227-fb72-4c41-b071-fd6d8ccab8f4) + ) + (wire (pts (xy 158.75 69.85) (xy 119.38 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71a2bc7b-4e0c-4b6c-9dbd-62e4948f3824) + ) + (wire (pts (xy 44.45 119.38) (xy 54.61 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71ec0379-2306-4883-8699-7846c1e429ff) + ) + (wire (pts (xy 146.05 92.71) (xy 146.05 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 734c3830-60ec-4236-b342-4b1165dbc52f) + ) + (wire (pts (xy 203.2 31.75) (xy 209.55 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77547407-812e-4218-a78f-1d9b91c6c3e1) + ) + (wire (pts (xy 195.58 29.21) (xy 209.55 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78f59303-a6b8-49b1-bb8a-47bb0f91ffdd) + ) + (wire (pts (xy 158.75 115.57) (xy 129.54 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79f0d4fc-f54c-4f75-8552-f8a28e8c1515) + ) + (wire (pts (xy 158.75 118.11) (xy 124.46 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bc88386-e92a-40d9-8f73-809d7c804c99) + ) + (wire (pts (xy 138.43 77.47) (xy 138.43 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86f0743d-91ca-4190-936e-13d88bae83df) + ) + (wire (pts (xy 139.7 147.32) (xy 203.2 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8832fcc0-a1db-459d-8e6e-973d8b2fbb13) + ) + (wire (pts (xy 124.46 54.61) (xy 158.75 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 895c0571-c47d-4700-b066-aa284c711ad8) + ) + (wire (pts (xy 158.75 44.45) (xy 119.38 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8961a320-7b03-48a8-b4b0-e37d2eee75ca) + ) + (wire (pts (xy 129.54 107.95) (xy 158.75 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a26c930-a1c1-4109-a50d-9ba1ac58e3cf) + ) + (wire (pts (xy 102.87 81.28) (xy 146.05 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a548de9-b898-4a23-afd4-602a9fcd1947) + ) + (wire (pts (xy 119.38 95.25) (xy 119.38 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b1946be-2bb5-4440-9f66-4f8791727268) + ) + (wire (pts (xy 158.75 102.87) (xy 138.43 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ba4a1f1-30e6-435f-8fa1-0adaedd8a5c0) + ) + (wire (pts (xy 232.41 30.48) (xy 238.76 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c3e0a9d-f866-4dfa-bc4d-fa464f813fb9) + ) + (wire (pts (xy 134.62 57.15) (xy 158.75 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c5502c7-bddd-4374-abfb-8a1ff1b18005) + ) + (wire (pts (xy 158.75 31.75) (xy 134.62 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c871a6e-8bb3-4d1d-bf58-de43d4a73a09) + ) + (wire (pts (xy 72.39 119.38) (xy 74.93 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 921a9a92-e0d0-424d-9013-bc4319142c54) + ) + (wire (pts (xy 129.54 102.87) (xy 102.87 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93d0c86e-4011-4335-823c-92a2d23d0109) + ) + (wire (pts (xy 124.46 118.11) (xy 124.46 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97dc98c7-9677-4683-96f3-d0a6b788bc77) + ) + (wire (pts (xy 134.62 64.77) (xy 158.75 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9aa33d7a-80a6-4f90-a81c-ae864d18fc59) + ) + (wire (pts (xy 102.87 119.38) (xy 134.62 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b162ee3-37cc-4eaf-a9ff-2701c210239a) + ) + (wire (pts (xy 232.41 119.38) (xy 238.76 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bde0f8e-8e30-4b58-a8b9-61626976bdb5) + ) + (wire (pts (xy 203.2 82.55) (xy 209.55 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cf76415-45be-4f7b-8de8-74f489727884) + ) + (wire (pts (xy 146.05 41.91) (xy 158.75 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e6432b1-997f-4eb3-8fb9-d2aad626e57e) + ) + (wire (pts (xy 138.43 26.67) (xy 158.75 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ec32bb8-1983-44dc-a409-07f2dfa296f3) + ) + (wire (pts (xy 146.05 80.01) (xy 146.05 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a547cf3e-80a6-4b7e-be82-3371f7427653) + ) + (wire (pts (xy 146.05 29.21) (xy 158.75 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a94837fb-aec0-4582-a4a8-50ab8bc12d53) + ) + (wire (pts (xy 203.2 57.15) (xy 203.2 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aea662e3-0353-486e-b150-f136ad71a789) + ) + (wire (pts (xy 195.58 92.71) (xy 209.55 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b387800c-1c08-43fa-943e-be8399b03e09) + ) + (wire (pts (xy 203.2 107.95) (xy 203.2 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b41e7630-0a40-44cb-8b4a-c7b7df47b629) + ) + (wire (pts (xy 195.58 80.01) (xy 209.55 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b51e9b5d-9285-4fdb-ab36-9401e98df470) + ) + (wire (pts (xy 134.62 57.15) (xy 134.62 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6210fb6-8c6b-4c4e-b635-4353ff74732c) + ) + (wire (pts (xy 119.38 95.25) (xy 158.75 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb8e52e9-b891-4968-b9fa-4c486e7339b4) + ) + (wire (pts (xy 119.38 26.67) (xy 119.38 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bca32203-7c84-4884-bcaf-251b39664ea2) + ) + (wire (pts (xy 138.43 52.07) (xy 138.43 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid beaea172-b404-4ca1-953d-95015eb5a3c6) + ) + (wire (pts (xy 134.62 39.37) (xy 158.75 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bff6814d-d089-4255-a7db-817b9d47b7d9) + ) + (wire (pts (xy 203.2 95.25) (xy 209.55 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c17be6f4-904f-4661-beb2-9b15b23f0155) + ) + (wire (pts (xy 134.62 31.75) (xy 134.62 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2b97a80-5bcf-4125-961c-631307e86390) + ) + (wire (pts (xy 78.74 158.75) (xy 95.25 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c338ad2f-9d0b-4f90-b4fd-f8b767c99507) + ) + (wire (pts (xy 119.38 44.45) (xy 119.38 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cad276f7-3730-4ef3-a505-f06c001a328c) + ) + (wire (pts (xy 158.75 82.55) (xy 129.54 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbc89b37-0dbb-41fd-964c-9925168bfe1c) + ) + (wire (pts (xy 195.58 41.91) (xy 209.55 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc5ac0ed-033b-45dd-8062-e09b1f52a73b) + ) + (wire (pts (xy 129.54 90.17) (xy 158.75 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d251bc5a-9787-48b8-ae37-ebf0810fedbc) + ) + (wire (pts (xy 158.75 92.71) (xy 146.05 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6775eba-1670-4620-aa7c-df00842f69e9) + ) + (wire (pts (xy 67.31 146.05) (xy 72.39 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d77cc51c-c9b2-4da0-aa42-45090a8e350d) + ) + (wire (pts (xy 44.45 146.05) (xy 52.07 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db1b9df1-dd27-4aa6-b65e-a067521741db) + ) + (wire (pts (xy 203.2 44.45) (xy 203.2 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db3b824c-d5ef-43dd-90e8-dbfb65bc9762) + ) + (wire (pts (xy 195.58 54.61) (xy 209.55 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dba8532e-94cf-4a33-aef5-fd5e6009e75a) + ) + (wire (pts (xy 203.2 147.32) (xy 203.2 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1453140-8d06-44d9-bd57-d1d78690779f) + ) + (wire (pts (xy 129.54 90.17) (xy 129.54 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e38dcd32-3214-4d85-9bf2-5ec88c90e315) + ) + (wire (pts (xy 124.46 54.61) (xy 124.46 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6af26f6-c4be-4bbf-96e0-b585628ca5be) + ) + (wire (pts (xy 119.38 26.67) (xy 102.87 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6e4b47e-8d99-4b9b-a200-1243c6bfc928) + ) + (wire (pts (xy 69.85 119.38) (xy 72.39 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7c77f65-333e-4935-866e-2a00b8bd64f3) + ) + (wire (pts (xy 203.2 120.65) (xy 209.55 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb325d5b-8cec-451c-9e63-0f97fad353c7) + ) + (wire (pts (xy 203.2 95.25) (xy 203.2 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecefbaba-7add-4507-a2e9-6609572f1a77) + ) + (wire (pts (xy 146.05 80.01) (xy 158.75 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed43ec04-0f46-4098-a850-bdb556867232) + ) + (wire (pts (xy 232.41 55.88) (xy 238.76 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eef73955-a749-45cc-8cd3-109aad6a01ff) + ) + (wire (pts (xy 87.63 146.05) (xy 95.25 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0ba3415-19da-4f1b-9e85-bf35236092af) + ) + (wire (pts (xy 138.43 43.18) (xy 138.43 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3748412-bc8c-4730-89cd-e3dd52488420) + ) + (wire (pts (xy 72.39 81.28) (xy 74.93 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9772246-d6b8-4f54-9885-d4bebbf811c4) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 220.98 69.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 035c9ffd-452a-42ca-9815-be9f3aab0bb6) + (property "Reference" "U25" (id 0) (at 220.98 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 220.98 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 220.98 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0c1a9ac6-e039-4539-8302-e061df46f9f6)) + (pin "2" (uuid 18005268-2523-4f90-8c2e-8e9add67da5c)) + (pin "3" (uuid ef421a7a-dd04-412e-b665-ab2b6176e641)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 246.38 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 08c34d7d-7665-4781-9694-47a675db6f6d) + (property "Reference" "U33" (id 0) (at 246.38 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 246.38 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 247.65 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 247.65 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a231916c-d4f2-4636-a8c6-c21ea16c8173)) + (pin "2" (uuid cc8eaeaf-3eb8-4de4-92ad-738e084bef4b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 38.1 119.38 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 129661cc-d2e5-4cca-81af-9c1d457048a9) + (property "Reference" "U1" (id 0) (at 38.735 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 38.735 116.84 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 38.1 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5fb026e4-3d4a-4d85-a323-89a02b6237e1)) + (pin "2" (uuid c68bab79-118e-4c6e-a9e1-d7f333938045)) + (pin "3" (uuid c536f84a-a1cd-4e98-9dca-5d4af2d185d9)) + (pin "4" (uuid a3c15501-cd45-400f-8f89-de76eb898bcf)) + (pin "5" (uuid b272fd77-7d9a-449b-9490-ee1b8a2921d0)) + (pin "6" (uuid f545da38-f48d-400f-a65c-06029a6b1c1e)) + (pin "7" (uuid 80767119-1df2-45a8-ae1e-d608eb44eb88)) + (pin "8" (uuid 4c2d86a1-8e1b-4b5d-9d3d-9312dbf2ab79)) + (pin "9" (uuid 84dee517-2717-4454-8cc0-97555b71a2aa)) + (pin "10" (uuid 9759f0b2-73dc-442d-b3d6-b9df5e9f4f04)) + (pin "11" (uuid 3513bcd3-cfa9-4d02-ba06-36edc4ed45e7)) + (pin "12" (uuid 7892b882-bc63-479f-a7c1-3f9da0d9a471)) + (pin "13" (uuid e13ab4c2-7f06-40dc-809d-83ff51394e3e)) + (pin "14" (uuid 29df0f88-e116-4211-8f6c-ca9cefb07503)) + (pin "15" (uuid b119106d-9bae-4221-9f0c-204c85393747)) + (pin "16" (uuid 14fdfec2-6149-424e-9f84-5648d5cfd906)) + (pin "17" (uuid 90513475-aa3d-41fe-900f-7ec2c479217a)) + (pin "18" (uuid 8a2743dd-da05-4938-8018-b650bbbb3160)) + (pin "19" (uuid baf16f0e-c416-4522-a102-38c4755b66d9)) + (pin "20" (uuid 5dcdb77e-ca76-4e89-b090-6c11c721a9ab)) + (pin "21" (uuid d971d596-4d20-468e-bd78-683cb94be92f)) + (pin "22" (uuid a948bbc6-fef7-4684-8207-8a71563de922)) + (pin "23" (uuid 8336698b-3048-4693-8754-8ed850288c56)) + (pin "24" (uuid fa4fb733-d887-4988-9b17-26663dd0f075)) + (pin "25" (uuid 7d782888-3562-470b-84bf-4eb71935046a)) + (pin "26" (uuid 4838015e-5624-449b-9fbc-1d4b565886a0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 246.38 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 167a878f-9d8c-4771-9972-bf0e88037558) + (property "Reference" "U34" (id 0) (at 246.38 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 246.38 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 247.65 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 247.65 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6dd0eeba-7c09-47c7-a0bf-8acfb85a69ee)) + (pin "2" (uuid d0bddbfc-71c6-4649-9c1a-02b0d4dec5e3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 246.38 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 184a7a4c-ee88-47ed-8011-aadd3f777cec) + (property "Reference" "U31" (id 0) (at 246.38 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 246.38 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 247.65 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 247.65 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 36af80d7-eb44-48a1-8b66-ea3cac2be68f)) + (pin "2" (uuid 629ef870-219b-44af-b279-23cb2efa30b9)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 246.38 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1bacd3e8-e17e-420b-bb70-18a684d0e26a) + (property "Reference" "U37" (id 0) (at 246.38 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 246.38 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 247.65 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 247.65 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3cb879aa-cddd-4796-8591-6ddf72ad09a6)) + (pin "2" (uuid 6606cfea-e0ae-4f68-ae3d-eeb5b03a2d5f)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 220.98 31.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1dd937d4-d60f-43ee-abcc-811bdf0c8de2) + (property "Reference" "U22" (id 0) (at 220.98 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 220.98 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 220.98 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2247cac0-095a-460b-a3fd-55d61f1856c5)) + (pin "2" (uuid 6dc80cb8-da11-4bd5-a84b-4758c8c400ea)) + (pin "3" (uuid 66d442a6-4533-422a-bdd9-36b748efd7cb)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 167.64 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1e4998fd-cc10-40ce-a152-9735f1c563b3) + (property "Reference" "X3" (id 0) (at 169.648 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 169.648 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 77eb7a66-a143-4322-a848-776051c9f22f)) + (pin "2" (uuid fb0772f4-0c1c-450f-b698-0e2e964561be)) + (pin "3" (uuid ccae0499-55d7-4b09-b8cc-f83a18c1a997)) + (pin "4" (uuid 74d417dc-54ff-4a75-9339-7586d622663b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 187.96 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1f1f9fa1-4f7c-47a9-8717-097c82574a51) + (property "Reference" "U19" (id 0) (at 187.96 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 187.96 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 189.23 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 93abd350-e0b5-40a3-802f-218bac2c81fc)) + (pin "2" (uuid 4d73ad44-3a8e-496b-bc8c-af50de83ded6)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 167.64 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1f87ba4d-3595-4112-b1ca-72bc5e4059a0) + (property "Reference" "X2" (id 0) (at 169.648 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 169.648 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3de03ff6-f5eb-442b-b43a-52ede473d72d)) + (pin "2" (uuid 0175558c-e161-4cce-b4dd-0a26146fb1a2)) + (pin "3" (uuid c17f2294-91ed-4739-91ff-8afd48883639)) + (pin "4" (uuid 08c7c3cf-5594-4932-9208-ea16a95b121e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 38.1 158.75 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 24a96fbe-ffc0-425a-ac9b-1240fada8701) + (property "Reference" "U1" (id 0) (at 38.735 153.67 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 38.735 156.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 38.1 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 879592f9-5803-457c-9229-a6580e13809c)) + (pin "2" (uuid 703d69fb-75b1-49d0-9314-7fb82af0b168)) + (pin "3" (uuid 6af7abf5-a691-4e8c-b582-cf540e4b555a)) + (pin "4" (uuid 2a8709c1-d8d1-47f2-946f-2a2e8efd58c8)) + (pin "5" (uuid abe87966-3eb0-420a-ae11-9e54137a0217)) + (pin "6" (uuid 93a962b4-f0d8-44b4-94b7-2add045b731d)) + (pin "7" (uuid 3148490c-c2d2-413f-aea8-1648478c4f78)) + (pin "8" (uuid b5513fb5-46ec-4137-8950-91b63a6d0e47)) + (pin "9" (uuid f94483ba-0289-4955-9efe-43917a059302)) + (pin "10" (uuid 566d23e9-51d6-4c7d-926f-607b733018c3)) + (pin "11" (uuid 97511375-2a96-4426-ab22-0e7d5fd6ab44)) + (pin "12" (uuid f5581304-720a-473f-a8c1-77fafbb63d31)) + (pin "13" (uuid 3691eebb-884c-497f-a711-6dc777fa8efb)) + (pin "14" (uuid 21fb1688-0531-4b4f-9ab1-83a37e1ec00f)) + (pin "15" (uuid 053391b5-19d4-4713-8b68-ffc9803ebba7)) + (pin "16" (uuid 1589eb75-af39-409e-b409-203565c7c13e)) + (pin "17" (uuid ad3e92cd-dcf0-4e78-890f-486b4943561a)) + (pin "18" (uuid 72434b01-cb73-46b8-bda7-82721820a024)) + (pin "19" (uuid b1767d19-7830-4df9-a234-764d3b4bffac)) + (pin "20" (uuid 068e4b6c-1b65-4838-8770-d41a2898fab5)) + (pin "21" (uuid 5dfcac4a-c391-4d40-8305-5c70ec4983d2)) + (pin "22" (uuid 0dcdc7fa-b56b-4d27-860a-54671a115ce7)) + (pin "23" (uuid 1721a9bf-d993-41c9-83e3-da6fb72966f7)) + (pin "24" (uuid e605f016-5e1a-430b-af61-6e66f7a35002)) + (pin "25" (uuid 53851adf-2f3d-4c5f-af16-c70bc9302690)) + (pin "26" (uuid c10e2a15-15d5-4f08-99fe-85b489cccedb)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 246.38 30.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 279adc03-19ea-43ae-9170-8b5468d29a57) + (property "Reference" "U30" (id 0) (at 246.38 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 246.38 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 247.65 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 247.65 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b6e8d9fd-2a4f-43de-870a-c53dddde82c5)) + (pin "2" (uuid e5d7b492-4e0c-4422-b905-0a07a22678a1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 260.35 119.38 0) (mirror y) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 322f0a1b-3bff-427a-a1b9-20b8d58d0978) + (property "Reference" "U1" (id 0) (at 264.16 118.745 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 121.285 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 260.35 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 260.35 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8190cd47-8bf8-4b39-b36d-de4be03247a5)) + (pin "2" (uuid 45129a48-bea8-49da-9683-9647e31b926e)) + (pin "3" (uuid 6ef37a67-128d-4431-bc2b-f8cc2678b3c7)) + (pin "4" (uuid def077f3-1033-4246-bd84-e7047d14c74c)) + (pin "5" (uuid 483dd5f6-7a64-41ce-8d2b-7ffa919169c4)) + (pin "6" (uuid 98543ca4-f375-4467-a4f8-581a7a46ca1f)) + (pin "7" (uuid 5ff5fd4d-47d1-45d1-ae67-1f5d1e453c5b)) + (pin "8" (uuid 4f1ebab4-db3a-4985-b7b8-a5b80dc62b2e)) + (pin "9" (uuid fc51260e-a125-41db-9082-1fa86b807f91)) + (pin "10" (uuid 9350dd5e-8887-459e-ac3c-77e58e7a6a39)) + (pin "11" (uuid fe3fb75c-e3ca-4085-ba64-f660497429cb)) + (pin "12" (uuid e26c774b-da06-4584-823a-a95ac68d1fb7)) + (pin "13" (uuid 4035aae4-61ec-42ba-86c8-137e8d67bd21)) + (pin "14" (uuid 73df341a-40b9-4cbd-aa97-71e5b207e6f7)) + (pin "15" (uuid c024767f-c360-49e9-a55c-f57b664dc5ad)) + (pin "16" (uuid c60a4382-adb3-47ae-9773-dfc090985194)) + (pin "17" (uuid a9ef87a8-a79e-4511-afef-5a95085891f9)) + (pin "18" (uuid fa78f308-ce5c-46fe-9b3a-f5cc47609d26)) + (pin "19" (uuid 999e9589-9dc3-455d-bca6-5d0cab394b84)) + (pin "20" (uuid 6490ab51-698c-4d0b-a88c-27d6d5284a76)) + (pin "21" (uuid 8d696c5a-e0fa-47eb-8f17-fb74cae4fc40)) + (pin "22" (uuid acf11059-a2d0-4802-ad9a-76caa49e7b6a)) + (pin "23" (uuid e3e3aba7-b5e6-4842-99cd-0ad549624a67)) + (pin "24" (uuid 42c64cc8-6ac7-4df2-a760-5d7f07e3d54e)) + (pin "25" (uuid 6e5083bf-0a66-4322-8ae8-8b26b26cec02)) + (pin "26" (uuid 23c14f1e-5db4-4295-9452-766d79082722)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 260.35 30.48 0) (mirror y) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3e041e99-c4b1-495b-bdac-cb5ac927ac54) + (property "Reference" "U1" (id 0) (at 264.16 29.845 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 32.385 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 260.35 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 260.35 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f8ff0066-c667-4d93-ab49-14287c4a5e0e)) + (pin "2" (uuid 448b17a6-a585-4f0f-be00-44c0410b27a4)) + (pin "3" (uuid 6eec304f-aea1-4f84-a771-7ee43545ef98)) + (pin "4" (uuid 3459946d-3b63-48ff-aa95-575dc1575c77)) + (pin "5" (uuid 016275c4-2ed5-4ecb-a3a7-6c3cdb8d3c1b)) + (pin "6" (uuid 5c6e7234-393b-461a-afe4-fe5243a51633)) + (pin "7" (uuid 122842b0-f14f-44e4-8644-b547efe3483e)) + (pin "8" (uuid c7764245-4a3c-4316-a2e7-d9bb8699ff72)) + (pin "9" (uuid 5595e4cb-340e-418f-8233-dd79173e3360)) + (pin "10" (uuid ed151fb8-c847-46d0-8795-9272220f41c7)) + (pin "11" (uuid 5379a599-4dd3-48f1-a193-99a03f3eee56)) + (pin "12" (uuid a17a2b88-221e-4219-9a38-79bb1ce8ebdf)) + (pin "13" (uuid c2642c79-9428-4963-a1b5-7c573e01bf47)) + (pin "14" (uuid 9c7e0dde-b5c5-4889-97e4-78da4d526baf)) + (pin "15" (uuid c626b3dd-00d9-4df6-b3d1-1869eaa4b641)) + (pin "16" (uuid 0cbb73eb-f4d3-45a1-ac04-4533f8eac043)) + (pin "17" (uuid 5a928d86-7595-4af4-b5d4-31b89d32941d)) + (pin "18" (uuid 054c6e97-8615-4d7d-a345-ea411500c809)) + (pin "19" (uuid 291bed5b-1883-40e1-b9d9-04a983a9f692)) + (pin "20" (uuid aee9eda4-2056-4089-abdc-d1e48e762e9a)) + (pin "21" (uuid 8fbea21f-adbe-46e5-86b6-fad3bbe21073)) + (pin "22" (uuid e2915117-66ff-4340-ad43-2523c84b4c37)) + (pin "23" (uuid 3ec1b784-3f6b-4cf8-9780-ff44eb4935fc)) + (pin "24" (uuid 77f44840-5ad6-48d2-b58b-1a7184c363ce)) + (pin "25" (uuid dfc8fe20-dc66-451b-97fb-926e8115070d)) + (pin "26" (uuid 38dca291-cc78-422b-912d-0626aff06b35)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 71.12 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3ec9f751-5f09-4acc-8494-09cfb6ff61ad) + (property "Reference" "U7" (id 0) (at 71.12 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 71.12 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 72.39 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 70afa26a-66eb-439c-a550-a64ec3a1f74c)) + (pin "2" (uuid 62b17177-e434-49b2-9cfa-b2315726fc87)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 167.64 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 40d4a5e3-acda-4c19-9a28-96b3f135d0fe) + (property "Reference" "X7" (id 0) (at 169.648 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 169.648 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b31c6669-c7f5-46fe-9a17-050cf2944c90)) + (pin "2" (uuid 459b99e8-12f0-4e85-b05a-840df13f131e)) + (pin "3" (uuid ba260a21-d34c-47cb-a903-5cf5806a9ef9)) + (pin "4" (uuid 04bb9fca-b04d-4183-81de-5218933d294b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 38.1 26.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 47ecfcdb-83b1-4510-a421-01f38fecb7c6) + (property "Reference" "U1" (id 0) (at 38.735 21.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 38.735 24.13 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 38.1 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0663de4d-1526-41e6-b912-841513041add)) + (pin "2" (uuid 9d8cf16d-d729-453d-9643-ed01c190a32b)) + (pin "3" (uuid 551cffc8-d394-448c-9cbb-3db4a05d9ba6)) + (pin "4" (uuid ceeef419-db33-491c-a479-f0cace80d799)) + (pin "5" (uuid 0cfa3ade-bae0-4027-83de-014bd764a5ab)) + (pin "6" (uuid 43dbb9a7-7933-487e-9fc6-449e3fa7efe6)) + (pin "7" (uuid 0fe92798-9094-4923-b727-a2a1cf84131d)) + (pin "8" (uuid bfc0ef89-9853-4e46-8792-0854df6e13c6)) + (pin "9" (uuid 0c89151c-169b-49d3-8a6b-2a7edb1ef948)) + (pin "10" (uuid a27b8d55-13ca-49a6-8db9-9e1b10ad561f)) + (pin "11" (uuid fa98f73d-9e8f-44a6-b325-536b09e7ef58)) + (pin "12" (uuid 1cdb21e9-c33e-4e66-8ca4-a3084f7b8003)) + (pin "13" (uuid 60a7bdd0-046d-4ade-8864-dd61b6093df5)) + (pin "14" (uuid 1a805f5e-4b63-41df-820e-0bd7b2086e94)) + (pin "15" (uuid 804562c8-db30-47e3-80ff-8bc5dea3dd06)) + (pin "16" (uuid 43057dd3-2540-4f4a-b6e7-4ebcab98e1a6)) + (pin "17" (uuid bb013cb5-984f-4ed4-9448-885546f71004)) + (pin "18" (uuid 25fb1f97-44de-42f5-90cf-3c410c8b9080)) + (pin "19" (uuid a52c763b-8a08-4656-8e7e-ac5f20dc4e68)) + (pin "20" (uuid 5bc36d38-9f1d-440b-9a9a-c1b47f9f6fb4)) + (pin "21" (uuid 81121d0a-d38f-4693-801f-0b65df30cd67)) + (pin "22" (uuid bdc7e8f3-4752-49af-a38a-1a302fbf0b1d)) + (pin "23" (uuid ffa27d6e-68c3-42ad-a20d-67aaf7876079)) + (pin "24" (uuid 89cf2643-d118-4669-a6c4-e5748a916f90)) + (pin "25" (uuid 29293897-efc3-4161-b972-f939c1bc5c74)) + (pin "26" (uuid 78bccde6-9b4a-40bc-af67-5dcad91c32f6)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 88.9 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 49fc3833-cbfc-40ba-b1fa-1248daf8120c) + (property "Reference" "U10" (id 0) (at 90.9194 57.15 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 90.9194 60.96 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 88.9 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 88.9 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0543255a-b404-40eb-9127-e45c756e1a13)) + (pin "2" (uuid b52042d2-ef04-42bb-a423-d6383e488ab9)) + (pin "3" (uuid f26c6c15-b433-4afb-be70-8938b22456ba)) + (pin "4" (uuid 43f04310-6a01-4064-81f1-9a3fa41801e5)) + (pin "5" (uuid 20ae5f80-7167-492f-86be-031b37639b73)) + (pin "6" (uuid c5c007b9-f2e9-45ef-ace3-92e7a8de0f63)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 246.38 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b8166d9-8aa9-4acd-8819-098d330c634b) + (property "Reference" "U32" (id 0) (at 246.38 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 246.38 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 247.65 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 247.65 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2bf5ceaf-725c-459f-a99d-3e0bdf018ee4)) + (pin "2" (uuid b272bfd6-c70e-4fcd-ac0c-20afa75ebaa1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 59.69 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d4d27dc-74e5-4ef7-b942-056dad1e8aca) + (property "Reference" "U2" (id 0) (at 59.69 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 59.69 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 60.96 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 60.96 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dd67df35-8f91-49a4-8225-ec4989b0ddd0)) + (pin "2" (uuid 5ad190f2-014b-4c2d-afa3-a801483b302b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 187.96 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 60279264-eaf7-46c1-b1cb-3948eb512afd) + (property "Reference" "U21" (id 0) (at 187.96 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 187.96 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 189.23 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a872673-1988-4f80-b503-16b7ff58daaf)) + (pin "2" (uuid f200e116-1f53-4c4a-85d0-a6c4be7b76b5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 62.23 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 63f7dd2f-a939-42d0-a847-09dcb8cfacf8) + (property "Reference" "U4" (id 0) (at 62.23 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 62.23 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 63.5 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 858a5f09-5918-455e-b81b-26137abc1df0)) + (pin "2" (uuid 6c62ca8b-9fc3-46fe-874b-96b9a8ef01ce)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 187.96 41.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68da7bf3-0699-4ae5-8064-5244fbd78d78) + (property "Reference" "U15" (id 0) (at 187.96 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 187.96 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 189.23 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a0369cb-5306-4c5d-ac3c-17449177db7d)) + (pin "2" (uuid e43392c1-9c67-4da7-b216-d627f5d458c7)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 220.98 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 694df509-47df-472e-b4d2-24412318aac1) + (property "Reference" "U24" (id 0) (at 220.98 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 220.98 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 220.98 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3d3ad9b3-d3b6-4ad3-aedb-a6329d30e5e0)) + (pin "2" (uuid 17269bf2-156d-4abc-854e-f20cbb96355e)) + (pin "3" (uuid 63153d36-1808-4375-b66c-5ce2606695eb)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 187.96 29.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d0809a4-e556-4414-bde4-35ae09d2fa52) + (property "Reference" "U14" (id 0) (at 187.96 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 187.96 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 189.23 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2cd0e4f3-f30e-46cd-8446-590d1890bc22)) + (pin "2" (uuid 19e7f001-d799-4c3f-a524-b898c4c99711)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 106.68 148.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e63f7a2-2769-463b-b9c0-0905e8a07d36) + (property "Reference" "U12" (id 0) (at 106.68 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 106.68 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid de9fe0ab-9ca9-47dc-889a-2b3fe905ed38)) + (pin "2" (uuid 83bd93cb-f52f-4138-a945-f0001ec18d85)) + (pin "3" (uuid 4201189e-81fa-4f81-9a34-61d922b18349)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 187.96 105.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 722f6fe6-c6ff-4841-8cf8-966382c79dd4) + (property "Reference" "U20" (id 0) (at 187.96 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 187.96 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 189.23 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d06f6d03-6f88-4b18-b983-b2ee4ae0fa13)) + (pin "2" (uuid 72469011-d391-4bf9-8e63-a1eb8c401ac7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 38.1 146.05 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7d359469-8b02-4722-a1f6-4a7b53338d45) + (property "Reference" "U1" (id 0) (at 38.735 140.97 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 38.735 143.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 38.1 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 444ff293-c9eb-46c0-96c9-94a2012fc066)) + (pin "2" (uuid 7daccce3-d995-4891-b9e1-5a69dd2a34f8)) + (pin "3" (uuid 23111bdd-8959-4583-aa8f-955637e22f72)) + (pin "4" (uuid 0ea817af-15a9-4553-9ae8-242c449bfc6b)) + (pin "5" (uuid 6d97cdf7-f1b7-4818-b705-d110bbe9bed4)) + (pin "6" (uuid 86d46c55-28bf-4269-b048-0944f0f0fb87)) + (pin "7" (uuid aca2b5e3-a1b3-407f-9982-887e194ed7c1)) + (pin "8" (uuid 5ec188bf-82f4-469a-a787-c6be7974921d)) + (pin "9" (uuid aa2c842e-bb81-4ff7-b9cc-ebe33ca47738)) + (pin "10" (uuid 5690a24a-fb9a-406a-b9d9-bb57e3701230)) + (pin "11" (uuid 509b5e2f-aa0c-4a1d-811f-ef0d911f9ba3)) + (pin "12" (uuid 3db9e1ff-182d-462d-b692-b97772a5bd43)) + (pin "13" (uuid 046ee808-92a5-41a4-8f54-0df5499c575d)) + (pin "14" (uuid 24ae8329-e3f4-491e-9740-0f8f975c52ea)) + (pin "15" (uuid b8e1334c-3bc5-4322-ba5e-da2d86b42aae)) + (pin "16" (uuid 82b5cd64-116c-44b9-b2f4-9207a0527f3b)) + (pin "17" (uuid cb196990-0f28-4089-be38-dc6d65afc52c)) + (pin "18" (uuid 175b7a39-a34d-448d-b298-a78553981e61)) + (pin "19" (uuid e4ce5ee1-1fbc-495a-b214-f6e532aa9517)) + (pin "20" (uuid b89e5644-49c5-4ef9-95c4-b00d1b94bad0)) + (pin "21" (uuid 9eaa9b56-d258-4894-9648-0aadcb10f96e)) + (pin "22" (uuid 42800f39-74b1-4a43-aa1e-429d8d9964bf)) + (pin "23" (uuid 516e9441-169a-490a-afc8-e99f0d5921b9)) + (pin "24" (uuid 0bdff83c-c59e-41be-8381-5cebb194ebe4)) + (pin "25" (uuid c0732ee2-2a13-4832-8d2e-1e2d5f5461d2)) + (pin "26" (uuid 4c841472-5e99-403b-96f2-05448aed689c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 260.35 68.58 0) (mirror y) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 83ae8e4f-0f5d-453d-bedb-5d0861668d3e) + (property "Reference" "U1" (id 0) (at 264.16 67.945 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 70.485 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 260.35 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 260.35 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0b347329-f89b-4bcf-8973-5ddf18d5a862)) + (pin "2" (uuid 84af5dd5-3e4d-4224-929a-c057dc2983cf)) + (pin "3" (uuid 3fa3b27b-d441-40e3-a501-47c0147ba9db)) + (pin "4" (uuid 0d0f164c-c69d-42e0-9d25-3674fa965924)) + (pin "5" (uuid e7c83b08-7c46-4165-a7e7-292b2bc88923)) + (pin "6" (uuid 2f9bb0fd-6cd9-4434-b430-0ef52af008e1)) + (pin "7" (uuid 4be87434-a577-460a-b777-e20272f22ada)) + (pin "8" (uuid 375c78b3-e1e3-41af-a1ca-8450d84e7eb8)) + (pin "9" (uuid 91cda9d6-cb29-4218-8b94-ba56b10e78cb)) + (pin "10" (uuid 21d3c4f0-d711-44f7-9c75-cb5d5f36b6cf)) + (pin "11" (uuid b579928e-2a80-41ac-8dc0-5d199633609e)) + (pin "12" (uuid e5fda78f-85c6-4efc-aa3e-e3a41c8c7b1f)) + (pin "13" (uuid 3f349e01-03cf-4475-abb8-c046084545cd)) + (pin "14" (uuid 67461312-423f-4ae5-8956-2e88e60330b6)) + (pin "15" (uuid 1821aba4-5881-433c-b2d3-712ffcd01fcc)) + (pin "16" (uuid 9d43c4df-1b2d-4793-892a-b211fe59fe7e)) + (pin "17" (uuid e7c01688-a9e5-4265-ac82-3885802290d4)) + (pin "18" (uuid c1ca2217-99e0-4c1e-99fe-f78046ba5761)) + (pin "19" (uuid cdaa4677-cc23-40c1-afee-53b3fa5ba0cf)) + (pin "20" (uuid 95ba720d-3ae9-479f-924b-d7b16aaccbff)) + (pin "21" (uuid 0e243ce6-e913-4be5-9f35-2bfcb31c8529)) + (pin "22" (uuid 376fad64-c1c8-4fc9-8bcb-aa62177af6e4)) + (pin "23" (uuid dcf5d761-0d4a-4c54-bdde-9c82cc94d2c4)) + (pin "24" (uuid 748c0058-50c2-48bd-b595-6cc2c40029fd)) + (pin "25" (uuid 76da74af-5c1d-4c7a-84cc-89748ba29ad5)) + (pin "26" (uuid 067b478c-a6e5-46af-80cd-d166da54c210)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 260.35 81.28 0) (mirror y) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 84871142-8db4-4b3b-8731-9cd64653b44d) + (property "Reference" "U1" (id 0) (at 264.16 80.645 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 260.35 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 260.35 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fbe5ff9d-2bb4-4864-accc-f8a89c1e8c2a)) + (pin "2" (uuid 7905e1ca-06b5-416d-84d3-9c0c32cbe584)) + (pin "3" (uuid d50143c5-e488-461e-a24a-680434c3f8ea)) + (pin "4" (uuid 25cd337e-4c20-4d1c-8213-69f08c50394b)) + (pin "5" (uuid 42904876-1ef3-4f39-8530-bd21bf0aad5b)) + (pin "6" (uuid e28e13d6-7970-4f07-ad6e-77e177808a01)) + (pin "7" (uuid c2efb7b3-079e-43a7-8f54-b8e25f599c96)) + (pin "8" (uuid 4bde2d6e-5b78-4f32-b2c4-1b4e1bcd9b36)) + (pin "9" (uuid df36ce63-26f3-4b7e-8b72-06f24bfa68e6)) + (pin "10" (uuid 37236179-49c4-4c32-af33-1ade2415477f)) + (pin "11" (uuid 4ccd24e9-246d-41d9-aa25-45a8ab660dfa)) + (pin "12" (uuid e36062ca-2cf2-493b-be8e-0c4e73671f4b)) + (pin "13" (uuid 7a74bbf3-0263-4634-ac0d-817583d6bf10)) + (pin "14" (uuid 6a792161-0b19-4a6e-a21f-9aad3815ece9)) + (pin "15" (uuid 4e2e1628-c047-4fce-b481-2ba012ca55f6)) + (pin "16" (uuid ffd6fe7e-d072-42ed-9fc1-4fd9c909300a)) + (pin "17" (uuid 43f4bd02-e153-41b8-8fbf-dbdc5d1892c9)) + (pin "18" (uuid f46ad690-fb2a-4cc2-85da-0323126d262c)) + (pin "19" (uuid 1893683c-9dc1-49a3-ad7b-58cf8213d78b)) + (pin "20" (uuid 9b735c73-acf9-45de-b186-040c70ac93b8)) + (pin "21" (uuid aa7fa25e-6833-424b-a4f1-73c34334d516)) + (pin "22" (uuid 191bee38-0455-4917-83c9-7de4ae80a762)) + (pin "23" (uuid 0d6dcbc5-402d-4e1e-803f-772d85deba2d)) + (pin "24" (uuid 63a713cf-7bbf-4093-b649-308eab40865e)) + (pin "25" (uuid f7342718-0d9f-42e0-8e9b-23e09a0df428)) + (pin "26" (uuid daeb5a69-e7f8-4d22-ba4e-ec0af250e7d6)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 167.64 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 88115f1d-54fb-491f-8f81-9d14fc02c092) + (property "Reference" "X8" (id 0) (at 169.648 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 169.648 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9e6a594f-d35e-495e-a8cd-b55c1588311b)) + (pin "2" (uuid 15c9f841-3a2e-4647-84db-ea613e76ef11)) + (pin "3" (uuid 159a0324-bcc0-4c02-8511-6240fbfec260)) + (pin "4" (uuid daf62cad-0589-4df5-8077-cd5f65a0cfb6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 80.01 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8aa6d9ce-c623-48d5-acfb-94ac528ab8d7) + (property "Reference" "U8" (id 0) (at 80.01 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 80.01 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 940b90cc-59fc-407f-9d97-81700d6f39ee)) + (pin "2" (uuid 14b9a14e-43c3-44f2-aed8-901a89b44bcd)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 167.64 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 92b0f0ce-7882-4df8-beff-9db22b94e1d6) + (property "Reference" "X4" (id 0) (at 169.648 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 169.648 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 773ee9c3-61ef-489e-ab43-e2f2fd9153fc)) + (pin "2" (uuid a3ad9f6b-08c2-4f59-95f4-57eed79380bc)) + (pin "3" (uuid adf2ffc6-adb4-46c1-82f1-4364d90e719a)) + (pin "4" (uuid 04e059b1-972a-49e0-bd9a-a9fcc0c2cf7d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 187.96 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 96f50f84-a3e5-4da3-a2c4-dcff06364b9e) + (property "Reference" "U18" (id 0) (at 187.96 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 187.96 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 189.23 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f30c75f3-d2cd-4774-80d0-89ec907d1f8a)) + (pin "2" (uuid a550c31c-645c-48b6-910d-f116d9fd1f85)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 132.08 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 983a944a-0a83-4806-b639-7597c4faf0cf) + (property "Reference" "U13" (id 0) (at 132.08 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 132.08 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 133.35 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 051969b7-477f-4386-9d68-835f261f19d2)) + (pin "2" (uuid ebe88b53-3c5d-4353-9341-450ff50b3dfc)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 88.9 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 98d40208-8747-415c-9a17-513748c625bd) + (property "Reference" "U9" (id 0) (at 90.9194 19.05 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 90.9194 22.86 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 88.9 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 88.9 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e5556c9d-281b-4927-8fef-f3be8b564f99)) + (pin "2" (uuid 58d9483a-3614-429c-a8d4-40f3c2c85229)) + (pin "3" (uuid a989d23a-de6a-435b-b005-816cc9dfcf10)) + (pin "4" (uuid 4c2745be-08ee-4920-8261-15a8e50c913e)) + (pin "5" (uuid 4a892392-0b37-41e5-8149-c74af234a9e5)) + (pin "6" (uuid cc558ede-f1c0-4966-844d-d39bb3ac8eda)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 246.38 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9d6784b9-9ecf-4dd0-b6c8-9463eed88aed) + (property "Reference" "U35" (id 0) (at 246.38 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 246.38 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 247.65 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 247.65 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 03857add-b063-4b0c-b697-adc9299d60b6)) + (pin "2" (uuid 30773af6-df5b-4d74-b06f-69ba6dca9e12)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 220.98 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9ee4293b-91da-4474-ba71-c51a582eabf7) + (property "Reference" "U27" (id 0) (at 220.98 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 220.98 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 220.98 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b0abe2ee-3e0f-4fb1-a668-af6a850ece1c)) + (pin "2" (uuid 6f3a797d-5579-4323-8737-9ff02fe172e2)) + (pin "3" (uuid a3e6bdd4-8127-4703-80d2-da2aae98141b)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 220.98 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a0e05ba1-027d-464c-829f-5ffec7500f90) + (property "Reference" "U23" (id 0) (at 220.98 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 220.98 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 220.98 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f7fe7517-9271-4c14-b6b7-eda34b0ac257)) + (pin "2" (uuid bfddb632-a7a8-4782-959c-47669ee5cd88)) + (pin "3" (uuid 849d340d-eae0-408b-a95b-61c6ab418548)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 220.98 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a81c3ad6-4788-4179-9e22-d521725a94c8) + (property "Reference" "U29" (id 0) (at 220.98 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 220.98 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 220.98 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f9653d6b-881a-4fb5-aef1-cd4428e68b4f)) + (pin "2" (uuid 17ce6dfc-3502-435b-b6b7-09c6668c2cbb)) + (pin "3" (uuid 438375e0-79ed-4124-ac1e-4b1b752bcd77)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 246.38 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a9621edc-2deb-455c-83a1-6b1d6e1cc11d) + (property "Reference" "U36" (id 0) (at 246.38 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 246.38 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 247.65 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 247.65 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 05e77716-2a02-4749-b7b7-d61147bf3467)) + (pin "2" (uuid 0b9cebef-697a-4707-a880-624c9007dbf1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 260.35 43.18 0) (mirror y) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid adbc142c-c1c1-4013-b038-e9dc0e490a4a) + (property "Reference" "U1" (id 0) (at 264.16 42.545 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 45.085 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 260.35 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 260.35 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2a1802c4-24bc-45ff-afe2-46922fc1b8c7)) + (pin "2" (uuid 34d0bba0-d831-4e78-993f-b4d7ff068ef3)) + (pin "3" (uuid f6219233-0386-44b6-abc7-2e049a4aa6c2)) + (pin "4" (uuid b942f99f-fc02-43f0-a48a-6c65b57459e8)) + (pin "5" (uuid 9b2fad45-f525-454a-81fa-c82b394f8a92)) + (pin "6" (uuid 66f4d08e-6183-41a5-b305-718d2f05c19d)) + (pin "7" (uuid 737193fb-e29a-4df6-ac70-8d424a96cfc3)) + (pin "8" (uuid 36bd877d-e313-4c1c-b076-3ebce9c4da84)) + (pin "9" (uuid b5f8bfa4-93a7-45ed-97e5-fe7e14de008f)) + (pin "10" (uuid 475b8dfa-eb50-4e85-ae9b-80b5e6986f7d)) + (pin "11" (uuid eca72d56-efc7-4b9d-a611-9e84a77426b5)) + (pin "12" (uuid a2d9b100-63ad-40bb-bbce-70065815f5f0)) + (pin "13" (uuid 821831ae-6530-42f5-a76a-a53b1563f6a0)) + (pin "14" (uuid a53306b6-6595-4582-8393-9b180277c367)) + (pin "15" (uuid f161d2ff-a2e2-46a2-962f-c134afa9a490)) + (pin "16" (uuid ce1e075e-eb2f-4686-8050-2a9719e81b76)) + (pin "17" (uuid 8d3df393-c8c4-46b3-87a5-84c5c6e1ef70)) + (pin "18" (uuid 470bcf48-0ffc-4811-8f32-c4fe840f1c38)) + (pin "19" (uuid 283fd5ce-669e-4f70-b04f-98deca2e70bd)) + (pin "20" (uuid d9d595a5-6f91-4772-9ea4-007eacc140c5)) + (pin "21" (uuid a47f3155-c2a0-4a55-8932-7568e1ad33d4)) + (pin "22" (uuid e6cd7d72-6257-45de-8cc9-35e7a37f604e)) + (pin "23" (uuid c5a664b5-811c-48c9-8ddd-13317d57f176)) + (pin "24" (uuid 205bf609-bc38-4100-a399-70ab46ed482c)) + (pin "25" (uuid b4060290-4152-44b8-b1a0-2d24d7e64cb6)) + (pin "26" (uuid bb35725d-ae79-4eb0-940a-49168e3a8c11)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 62.23 26.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aed21504-65e9-4232-9f3d-172332714cb9) + (property "Reference" "U3" (id 0) (at 62.23 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 62.23 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 63.5 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7792aa76-e018-4d95-a72d-f4a3bba9664d)) + (pin "2" (uuid 8606b27a-b6f9-4bf8-9dee-7155e70b5934)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 62.23 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b3a4a712-37b4-4824-b9fa-099314889f32) + (property "Reference" "U6" (id 0) (at 62.23 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 62.23 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 63.5 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5f3e81bc-0cdc-41d5-be38-42138c11a42b)) + (pin "2" (uuid d50e646e-55b3-430e-a412-b0b1f82d802a)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 167.64 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b6d3ac0d-c9f7-46af-86d9-6e2c2908a5c9) + (property "Reference" "X5" (id 0) (at 169.648 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 169.648 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e641d81-56e1-4547-affd-548e6be724c5)) + (pin "2" (uuid 74ad35b3-4a24-4a2b-a796-07ab46f6487b)) + (pin "3" (uuid 54f1c32e-a1e7-4ccc-879c-e7b032305b93)) + (pin "4" (uuid 181c08e2-23a2-454f-9b01-8d066f69d4d2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 38.1 102.87 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b8acf17d-f2de-4ef5-baaf-add8517adaa5) + (property "Reference" "U1" (id 0) (at 38.735 97.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 38.735 100.33 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 38.1 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6b95b36e-b478-492e-9c30-e22528f417e5)) + (pin "2" (uuid 52b374ac-f153-4e02-85fc-8a7e0b46053b)) + (pin "3" (uuid 351ab107-48e5-4a31-a956-2830ca7865bd)) + (pin "4" (uuid 6ac81610-ac62-472d-be0b-e993d86a15e2)) + (pin "5" (uuid 23849f50-3964-473a-8d32-1ad9853b9ccd)) + (pin "6" (uuid c30996ef-3150-4db9-a90e-74204519e4c1)) + (pin "7" (uuid ee2bf5b3-611b-4ae6-bdd1-f7502c05a76f)) + (pin "8" (uuid ec28c7ec-c717-4093-91e7-a3a7a701688c)) + (pin "9" (uuid 074fb62d-00d3-47c6-8e65-8325d6105031)) + (pin "10" (uuid dd59feb1-eab0-4ab2-bf25-6f39bcfbb3db)) + (pin "11" (uuid 57da83db-2a28-4d41-b39a-1cfaf57b4738)) + (pin "12" (uuid 03c302a5-a82d-44bd-8c96-d2e3a05bcd3d)) + (pin "13" (uuid 118616fc-80bd-420e-b219-fccf9cf95adc)) + (pin "14" (uuid 77a93f39-263a-4028-ab47-02f2d5492940)) + (pin "15" (uuid 6f51fa5e-563b-409a-bbcb-91962407fcaa)) + (pin "16" (uuid 8b0e8810-ef25-4b7e-901c-c990c96c0cad)) + (pin "17" (uuid 034633d0-7a6f-4ac7-b307-33335957de36)) + (pin "18" (uuid 660ea9ab-d2de-43bf-9f0f-d31893f25aec)) + (pin "19" (uuid c0381af2-a691-4825-8a46-8e7e69deede5)) + (pin "20" (uuid 260dfc01-51c8-44ac-9ab9-70f75fc8a0e0)) + (pin "21" (uuid c919ab57-014b-4a99-ba90-04f921bcaa90)) + (pin "22" (uuid 8c70b748-760c-4fc1-9760-5be1fc3afea7)) + (pin "23" (uuid f2c6b606-ab20-4bd4-824b-59902af222ac)) + (pin "24" (uuid de3c993a-03b7-489d-abd6-e1e0d429db25)) + (pin "25" (uuid f13ec9f4-5c1a-4d93-87fd-08a09c4b62f1)) + (pin "26" (uuid 97b5c930-d11a-4856-a090-77caa55965d6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 62.23 102.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c0bafb2e-b9ed-48d9-b4a6-967df7c9118c) + (property "Reference" "U5" (id 0) (at 62.23 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 62.23 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 63.5 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0c318c71-8bbf-4337-9956-89ee955d02af)) + (pin "2" (uuid 8eb5eff6-bd96-42b5-8eec-5e16f7a811b3)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 220.98 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c24734d3-067d-482a-9731-25a7bdc73d09) + (property "Reference" "U26" (id 0) (at 220.98 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 220.98 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 220.98 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 893d3369-48dc-46a4-afc0-cf367ffbeb42)) + (pin "2" (uuid 7a1530d3-ce1b-4cd2-809a-65f820e96063)) + (pin "3" (uuid a1b39535-5e3d-40f4-92cc-58dd374e5010)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 167.64 30.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c42f40ec-21d5-4de8-b417-477c1a8a38e5) + (property "Reference" "X1" (id 0) (at 169.648 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 169.648 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a712c84-e296-43f4-b9ee-7a8f4e33fcce)) + (pin "2" (uuid 1e46c32a-e2c0-48c1-9ae7-5ce9babcdedc)) + (pin "3" (uuid 2f5bd9be-a714-424f-a138-565f27ce7a44)) + (pin "4" (uuid 6c358ce9-7186-4fcf-9c05-d835ce8f2e96)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 260.35 106.68 0) (mirror y) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8e9be71-86cf-439f-b573-f2fc5d7163d5) + (property "Reference" "U1" (id 0) (at 264.16 106.045 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 108.585 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 260.35 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 260.35 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5e07d72e-4e6f-4043-8166-6f76d9bcdac0)) + (pin "2" (uuid 20cd371e-4472-4551-b355-657b5a97d86c)) + (pin "3" (uuid fec5554f-51e1-45f4-9283-ac1dec95c155)) + (pin "4" (uuid e6754d62-e5e8-46bc-a4c9-6ac8cf604a12)) + (pin "5" (uuid b3b19a0f-d627-4af5-8261-9270831155f5)) + (pin "6" (uuid 9adadd20-5a09-44b1-be74-0dbc22698e6b)) + (pin "7" (uuid 4a18adf9-b334-4ce0-931a-f56cb24465a3)) + (pin "8" (uuid ae443e9f-877f-441e-8b5e-8cd85e92bb09)) + (pin "9" (uuid 1715360c-b9f9-4035-9d0c-ac163c601265)) + (pin "10" (uuid b0fb3b0b-f027-4396-8296-e16f9e39fc6e)) + (pin "11" (uuid 2957dbb0-022a-4afb-a63a-e66c335d3a08)) + (pin "12" (uuid b08e8069-3dcb-40ff-9efd-98ed91be9f13)) + (pin "13" (uuid e0156ba1-5218-47d6-afd2-90d302c2a027)) + (pin "14" (uuid e2dcd8ff-ffc7-44ca-b1d7-d94915b49720)) + (pin "15" (uuid 93d1b856-c5c6-4136-8e3c-c1e4be66e949)) + (pin "16" (uuid 621d861c-2459-441f-9a46-1a65bd2a6dc4)) + (pin "17" (uuid 575f38b5-a955-432e-8399-66b2058c8342)) + (pin "18" (uuid 323558c6-ca27-4f25-a672-bea53435557e)) + (pin "19" (uuid ffad409e-d39c-4f18-8d41-88250bd09f03)) + (pin "20" (uuid 240e120d-7a60-449a-976b-2641100c06dd)) + (pin "21" (uuid 7f3d8da8-e660-477a-8312-690e9ee4b712)) + (pin "22" (uuid 4699708d-9216-463e-a19e-5cb123f61f50)) + (pin "23" (uuid 4376c67c-56fd-4539-a2e7-c29d97f7d70e)) + (pin "24" (uuid 40ffc3dd-a7b6-4c4a-94b6-11c9add7dc6b)) + (pin "25" (uuid 43b670f5-7df3-4ece-8b00-b13649cc39d2)) + (pin "26" (uuid a0265aed-6135-4535-93f3-ed51ba69e782)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 88.9 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dac17e9e-1ac8-4bde-b3d9-328b28a6a165) + (property "Reference" "U11" (id 0) (at 90.9194 95.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 90.9194 99.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 88.9 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 88.9 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c3c9f0e0-b6d1-42c7-bfcc-d0c8bf2ab976)) + (pin "2" (uuid d9e5e23c-b62a-4dff-8922-39361cd3fe2b)) + (pin "3" (uuid aa52b201-c52b-42b0-b14a-a0005c9267cc)) + (pin "4" (uuid f25b1bab-f445-4c2f-b2be-c8d61e952e1a)) + (pin "5" (uuid 64bca509-3041-4792-9fbf-24c20fac6e30)) + (pin "6" (uuid 4aa5563f-53fb-4575-9af0-2b9a2243fe4b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 260.35 55.88 0) (mirror y) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db331f81-0f17-407a-b447-ed9b1cf68d00) + (property "Reference" "U1" (id 0) (at 264.16 55.245 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 57.785 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 260.35 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 260.35 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 67a75d55-304a-4c98-a144-65ccb654df46)) + (pin "2" (uuid 191cbf83-2e2a-4cb9-97ba-e8ccb668b2e2)) + (pin "3" (uuid 1041ca2e-4a8b-4bde-a880-5325d1502732)) + (pin "4" (uuid 01b4616d-78a4-4054-b25a-6bfdfa0a6817)) + (pin "5" (uuid 0dc6d98e-ae11-4399-9a8f-4831ac572f2d)) + (pin "6" (uuid a081742c-176a-441f-b3a0-b422a7286a78)) + (pin "7" (uuid 39119e48-3ad3-4b47-b62e-99325b47215a)) + (pin "8" (uuid 3c22a1ef-3134-4abd-b1ef-e5bdc2d313dd)) + (pin "9" (uuid a78663b3-2ae6-470a-9373-bbc49b13d69f)) + (pin "10" (uuid f53bf843-20ab-4c39-817e-336b1ea7e1a8)) + (pin "11" (uuid 18316bc9-9e22-4111-b525-ad8cd40347f2)) + (pin "12" (uuid 223f8f43-0737-455c-a198-2293c253bec1)) + (pin "13" (uuid 7ad8a9aa-67b5-4379-9e6f-e9561afec54b)) + (pin "14" (uuid 0983012d-3006-4595-aff3-34e2a4711805)) + (pin "15" (uuid 3ecc0a87-1c6d-4c83-bd72-f0820ffffa2d)) + (pin "16" (uuid 26ffd0c8-f34a-419b-8434-0cab828d3731)) + (pin "17" (uuid 2fe2ea69-83a1-4c48-925f-7cb05873a970)) + (pin "18" (uuid d9763807-134e-4dc9-962c-a8cdfe1f2619)) + (pin "19" (uuid 7870f337-fafe-4794-a430-b7e02e933452)) + (pin "20" (uuid f2a301c2-eb05-4a02-8805-8506f2b5d544)) + (pin "21" (uuid 54833e70-14a4-4cf2-a6d6-66dd47c64aa7)) + (pin "22" (uuid 24a242b5-57b7-43fb-986f-09e26fbec90d)) + (pin "23" (uuid cf16f5aa-b45b-4f54-a907-beb7f6c6734c)) + (pin "24" (uuid 8bffae60-0838-4e5f-b66f-8a4ecb70c5a8)) + (pin "25" (uuid 924093a6-467e-4e7d-b3e7-de262d1aea78)) + (pin "26" (uuid 5fa75fd3-b42e-4710-911c-e17f31d94832)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 38.1 64.77 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid de18d946-8941-483a-b462-85d1ac8e6bf8) + (property "Reference" "U1" (id 0) (at 38.735 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 38.735 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 38.1 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 051e8fba-41a6-489e-875a-47f3767b1e83)) + (pin "2" (uuid ae11ddca-61cd-4090-88e4-8bc082614dc5)) + (pin "3" (uuid 2fc36d23-e5ac-4a73-b515-14b2c7898ef1)) + (pin "4" (uuid b9d6a29c-5d0b-41ad-ac6e-5a92f5a03805)) + (pin "5" (uuid 43a6135e-e69e-4744-96f6-23b88ac19154)) + (pin "6" (uuid c5f93b0e-193d-4003-8bbd-d3b7f67a6061)) + (pin "7" (uuid f35782ca-b918-4eac-8f5d-4f5082d7b86b)) + (pin "8" (uuid 3b25764e-ebb7-4beb-a09a-3d971dc8ee14)) + (pin "9" (uuid 240ee5f4-2b6b-4048-acc9-d12c9bbe2f39)) + (pin "10" (uuid f31746bb-3bc4-48b7-98f2-537c0de27206)) + (pin "11" (uuid d283f34f-ab0d-4bfd-9c8e-31a65be9149a)) + (pin "12" (uuid 186b53b2-518d-4f4e-a75e-d9dccd8c7596)) + (pin "13" (uuid 5aa223e7-7740-48c4-a627-4e08db3d8706)) + (pin "14" (uuid 568df897-5545-4442-84ae-d74952029105)) + (pin "15" (uuid 5a2ccd36-ca8a-41c3-991b-b58f3e07b49c)) + (pin "16" (uuid 9eabb287-690f-475e-9552-837b7689ee47)) + (pin "17" (uuid 61e8d652-941a-439b-8738-9d796af14db2)) + (pin "18" (uuid 9a54e683-98cb-4503-a5b8-bfc85d241cef)) + (pin "19" (uuid af587c03-7a5c-49d9-8556-3ccf016d9c09)) + (pin "20" (uuid fc140fc4-c6ae-45d8-85c8-f46181e2bd20)) + (pin "21" (uuid c47ac7ad-7fd2-4467-badb-83b18a8ca759)) + (pin "22" (uuid 985446d8-d1ae-4d47-bc09-7895c7e627a0)) + (pin "23" (uuid 7c444386-4cc6-4ccb-b57c-91075b6031cf)) + (pin "24" (uuid d04d1fd8-6d18-417d-9188-d28e26766671)) + (pin "25" (uuid c0cb8903-bc79-44f9-80eb-1e5050bab648)) + (pin "26" (uuid 35feeed2-e6c9-49f8-8b86-358aec769dc8)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 187.96 67.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e34c8108-0d36-453e-874e-43dc65b8db8d) + (property "Reference" "U17" (id 0) (at 187.96 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 187.96 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 189.23 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4488716a-586c-4b6c-b4ab-edfc1a1b532d)) + (pin "2" (uuid 43dd2f33-9552-4c4c-bf43-ebf9f2b571fc)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 220.98 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e734dd98-513d-4416-8acb-addbecd27524) + (property "Reference" "U28" (id 0) (at 220.98 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 220.98 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 220.98 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b4c66072-26d9-4987-ac87-cfc4c3eff9e4)) + (pin "2" (uuid 1e36dad1-bcec-4125-9988-a31dc9931098)) + (pin "3" (uuid f2794540-2845-4b64-84d0-20e65d570ae2)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 167.64 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ede3dfe1-aa5f-49c7-84e8-c80f92808d2e) + (property "Reference" "X6" (id 0) (at 169.648 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 169.648 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5f7dabad-6888-4c83-aa2d-2b2739147f01)) + (pin "2" (uuid 4a136e17-e12a-47f2-988d-c0bb1d117d97)) + (pin "3" (uuid e0d817a0-3331-4141-a5fb-2f7ce2dd0dd1)) + (pin "4" (uuid 511d71e1-47ac-49e5-97c9-86d339b1956b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 187.96 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f4ed9438-f607-4d95-ab26-a5ddc85b0b06) + (property "Reference" "U16" (id 0) (at 187.96 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 187.96 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 189.23 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 189.23 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2bc7ad0f-d9dd-4784-bbc8-34aaa460b8b7)) + (pin "2" (uuid db7f5621-12bf-43c2-8d3d-96d238b7c999)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 260.35 93.98 0) (mirror y) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f53fbe47-0fcb-4a34-8fc8-65dd17d0c212) + (property "Reference" "U1" (id 0) (at 264.16 93.345 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 95.885 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 260.35 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 260.35 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 28a05e72-cf20-4be7-a16c-4e300fc06a5b)) + (pin "2" (uuid 2b9cccd5-bafe-4444-8657-3a16f169d156)) + (pin "3" (uuid e11cc74d-367d-4278-ae1f-83a4607dc0a4)) + (pin "4" (uuid 5c59cb32-e72b-4f65-b2c5-621129ce5f9d)) + (pin "5" (uuid abf521fb-e5b3-4625-a6a7-5c47da84eacc)) + (pin "6" (uuid 81122723-6771-4d64-a5ea-e1a64a705f99)) + (pin "7" (uuid 3b42583c-1dea-4129-903a-8afc1e79022f)) + (pin "8" (uuid c474d1fa-6aae-4111-8d64-0579545b45e7)) + (pin "9" (uuid 74683a0d-f49e-4cce-afad-01cf2706a099)) + (pin "10" (uuid 4e56047d-b70c-4c21-8bae-207645d92ef9)) + (pin "11" (uuid 14040342-7676-4919-b2b6-0e6f2d66c29c)) + (pin "12" (uuid 4720ad31-a750-4f73-8cad-12c383cc2c2e)) + (pin "13" (uuid d71700e5-46ab-40cf-8bc8-60805aa7e5af)) + (pin "14" (uuid 8941c507-045d-4885-bdf1-6e729a91b185)) + (pin "15" (uuid 130b2b7a-77db-46f6-a906-81fffa0e442d)) + (pin "16" (uuid 845ff13e-1e70-49d8-b509-53f810e1ce6f)) + (pin "17" (uuid 347f3220-5952-4262-ac43-3ed547676eb8)) + (pin "18" (uuid 69c225a1-a8a7-4d24-9f0d-d0e9eb770e33)) + (pin "19" (uuid 354bf647-9c44-4c52-8627-5a0e5f710e0a)) + (pin "20" (uuid 9d12da77-d75c-43e9-9b0b-c4b52cf1d388)) + (pin "21" (uuid e7398edf-7f1e-43ee-8578-fa787601da24)) + (pin "22" (uuid 102d6bad-d4ec-481e-ab6f-c7860aaea408)) + (pin "23" (uuid 74220d34-49cc-4721-8186-f108f487f464)) + (pin "24" (uuid 9ced8c19-612f-4296-b510-7a5cefbefb76)) + (pin "25" (uuid cee6253b-82d1-457e-a016-255ffa7041b3)) + (pin "26" (uuid d501b03c-b8ce-445c-a9d8-1034bdee53ab)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/47ecfcdb-83b1-4510-a421-01f38fecb7c6" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/de18d946-8941-483a-b462-85d1ac8e6bf8" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/b8acf17d-f2de-4ef5-baaf-add8517adaa5" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/129661cc-d2e5-4cca-81af-9c1d457048a9" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/7d359469-8b02-4722-a1f6-4a7b53338d45" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/24a96fbe-ffc0-425a-ac9b-1240fada8701" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/3e041e99-c4b1-495b-bdac-cb5ac927ac54" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/adbc142c-c1c1-4013-b038-e9dc0e490a4a" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/db331f81-0f17-407a-b447-ed9b1cf68d00" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/83ae8e4f-0f5d-453d-bedb-5d0861668d3e" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/84871142-8db4-4b3b-8731-9cd64653b44d" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/f53fbe47-0fcb-4a34-8fc8-65dd17d0c212" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/c8e9be71-86cf-439f-b573-f2fc5d7163d5" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/322f0a1b-3bff-427a-a1b9-20b8d58d0978" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/5d4d27dc-74e5-4ef7-b942-056dad1e8aca" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/aed21504-65e9-4232-9f3d-172332714cb9" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/63f7dd2f-a939-42d0-a847-09dcb8cfacf8" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c0bafb2e-b9ed-48d9-b4a6-967df7c9118c" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b3a4a712-37b4-4824-b9fa-099314889f32" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3ec9f751-5f09-4acc-8494-09cfb6ff61ad" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/8aa6d9ce-c623-48d5-acfb-94ac528ab8d7" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/98d40208-8747-415c-9a17-513748c625bd" + (reference "U9") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/49fc3833-cbfc-40ba-b1fa-1248daf8120c" + (reference "U10") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/dac17e9e-1ac8-4bde-b3d9-328b28a6a165" + (reference "U11") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/6e63f7a2-2769-463b-b9c0-0905e8a07d36" + (reference "U12") (unit 1) (value "d_nor") (footprint "") + ) + (path "/983a944a-0a83-4806-b639-7597c4faf0cf" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/6d0809a4-e556-4414-bde4-35ae09d2fa52" + (reference "U14") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/68da7bf3-0699-4ae5-8064-5244fbd78d78" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f4ed9438-f607-4d95-ab26-a5ddc85b0b06" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e34c8108-0d36-453e-874e-43dc65b8db8d" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/96f50f84-a3e5-4da3-a2c4-dcff06364b9e" + (reference "U18") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1f1f9fa1-4f7c-47a9-8717-097c82574a51" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/722f6fe6-c6ff-4841-8cf8-966382c79dd4" + (reference "U20") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/60279264-eaf7-46c1-b1cb-3948eb512afd" + (reference "U21") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1dd937d4-d60f-43ee-abcc-811bdf0c8de2" + (reference "U22") (unit 1) (value "d_nor") (footprint "") + ) + (path "/a0e05ba1-027d-464c-829f-5ffec7500f90" + (reference "U23") (unit 1) (value "d_nor") (footprint "") + ) + (path "/694df509-47df-472e-b4d2-24412318aac1" + (reference "U24") (unit 1) (value "d_nor") (footprint "") + ) + (path "/035c9ffd-452a-42ca-9815-be9f3aab0bb6" + (reference "U25") (unit 1) (value "d_nor") (footprint "") + ) + (path "/c24734d3-067d-482a-9731-25a7bdc73d09" + (reference "U26") (unit 1) (value "d_nor") (footprint "") + ) + (path "/9ee4293b-91da-4474-ba71-c51a582eabf7" + (reference "U27") (unit 1) (value "d_nor") (footprint "") + ) + (path "/e734dd98-513d-4416-8acb-addbecd27524" + (reference "U28") (unit 1) (value "d_nor") (footprint "") + ) + (path "/a81c3ad6-4788-4179-9e22-d521725a94c8" + (reference "U29") (unit 1) (value "d_nor") (footprint "") + ) + (path "/279adc03-19ea-43ae-9170-8b5468d29a57" + (reference "U30") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/184a7a4c-ee88-47ed-8011-aadd3f777cec" + (reference "U31") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4b8166d9-8aa9-4acd-8819-098d330c634b" + (reference "U32") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/08c34d7d-7665-4781-9694-47a675db6f6d" + (reference "U33") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/167a878f-9d8c-4771-9972-bf0e88037558" + (reference "U34") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9d6784b9-9ecf-4dd0-b6c8-9463eed88aed" + (reference "U35") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a9621edc-2deb-455c-83a1-6b1d6e1cc11d" + (reference "U36") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1bacd3e8-e17e-420b-bb70-18a684d0e26a" + (reference "U37") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c42f40ec-21d5-4de8-b417-477c1a8a38e5" + (reference "X1") (unit 1) (value "3_and") (footprint "") + ) + (path "/1f87ba4d-3595-4112-b1ca-72bc5e4059a0" + (reference "X2") (unit 1) (value "3_and") (footprint "") + ) + (path "/1e4998fd-cc10-40ce-a152-9735f1c563b3" + (reference "X3") (unit 1) (value "3_and") (footprint "") + ) + (path "/92b0f0ce-7882-4df8-beff-9db22b94e1d6" + (reference "X4") (unit 1) (value "3_and") (footprint "") + ) + (path "/b6d3ac0d-c9f7-46af-86d9-6e2c2908a5c9" + (reference "X5") (unit 1) (value "3_and") (footprint "") + ) + (path "/ede3dfe1-aa5f-49c7-84e8-c80f92808d2e" + (reference "X6") (unit 1) (value "3_and") (footprint "") + ) + (path "/40d4a5e3-acda-4c19-9a28-96b3f135d0fe" + (reference "X7") (unit 1) (value "3_and") (footprint "") + ) + (path "/88115f1d-54fb-491f-8f81-9d14fc02c092" + (reference "X8") (unit 1) (value "3_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.sub new file mode 100644 index 000000000..e82b684e7 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137.sub @@ -0,0 +1,159 @@ +* Subcircuit 74HC137 +.subckt 74HC137 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ +.title kicad schematic +.include 3_and.sub +* u32 net-_u24-pad3_ net-_u1-pad9_ d_inverter +* u31 net-_u23-pad3_ net-_u1-pad8_ d_inverter +* u30 net-_u22-pad3_ net-_u1-pad7_ d_inverter +* u16 net-_u16-pad1_ net-_u16-pad2_ d_inverter +* u17 net-_u17-pad1_ net-_u17-pad2_ d_inverter +* u22 net-_u14-pad2_ net-_u13-pad2_ net-_u22-pad3_ d_nor +* u23 net-_u15-pad2_ net-_u13-pad2_ net-_u23-pad3_ d_nor +* u25 net-_u17-pad2_ net-_u13-pad2_ net-_u25-pad3_ d_nor +* u24 net-_u16-pad2_ net-_u13-pad2_ net-_u24-pad3_ d_nor +* u26 net-_u18-pad2_ net-_u13-pad2_ net-_u26-pad3_ d_nor +* u14 net-_u14-pad1_ net-_u14-pad2_ d_inverter +* u15 net-_u15-pad1_ net-_u15-pad2_ d_inverter +* u18 net-_u18-pad1_ net-_u18-pad2_ d_inverter +* u33 net-_u25-pad3_ net-_u1-pad10_ d_inverter +* u34 net-_u26-pad3_ net-_u1-pad11_ d_inverter +* u4 net-_u1-pad2_ net-_u10-pad1_ d_inverter +* u9 net-_u3-pad2_ net-_u10-pad2_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u9-pad5_ net-_u9-pad6_ d_dlatch +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ unconnected-_u10-pad4_ net-_u10-pad5_ net-_u10-pad6_ d_dlatch +* u2 net-_u1-pad5_ net-_u2-pad2_ d_inverter +* u7 net-_u1-pad6_ net-_u12-pad2_ d_inverter +* u8 net-_u2-pad2_ net-_u12-pad1_ d_inverter +* u11 net-_u11-pad1_ net-_u10-pad2_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ net-_u11-pad6_ d_dlatch +* u5 net-_u1-pad3_ net-_u11-pad1_ d_inverter +* u6 net-_u1-pad4_ net-_u10-pad2_ d_inverter +* u29 net-_u21-pad2_ net-_u13-pad2_ net-_u29-pad3_ d_nor +* u28 net-_u20-pad2_ net-_u13-pad2_ net-_u28-pad3_ d_nor +* u27 net-_u19-pad2_ net-_u13-pad2_ net-_u27-pad3_ d_nor +* u21 net-_u21-pad1_ net-_u21-pad2_ d_inverter +x8 net-_u11-pad5_ net-_u10-pad5_ net-_u9-pad5_ net-_u21-pad1_ 3_and +x7 net-_u9-pad6_ net-_u10-pad5_ net-_u11-pad5_ net-_u20-pad1_ 3_and +* u20 net-_u20-pad1_ net-_u20-pad2_ d_inverter +* u19 net-_u19-pad1_ net-_u19-pad2_ d_inverter +* u35 net-_u27-pad3_ net-_u1-pad12_ d_inverter +* u36 net-_u28-pad3_ net-_u1-pad13_ d_inverter +* u37 net-_u29-pad3_ net-_u1-pad14_ d_inverter +x6 net-_u11-pad5_ net-_u10-pad6_ net-_u9-pad5_ net-_u19-pad1_ 3_and +x5 net-_u9-pad6_ net-_u10-pad6_ net-_u11-pad5_ net-_u18-pad1_ 3_and +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_nor +* u13 net-_u12-pad3_ net-_u13-pad2_ d_inverter +x4 net-_u11-pad6_ net-_u10-pad5_ net-_u9-pad5_ net-_u17-pad1_ 3_and +x1 net-_u9-pad6_ net-_u10-pad6_ net-_u11-pad6_ net-_u14-pad1_ 3_and +x3 net-_u9-pad6_ net-_u10-pad5_ net-_u11-pad6_ net-_u16-pad1_ 3_and +x2 net-_u11-pad6_ net-_u10-pad6_ net-_u9-pad5_ net-_u15-pad1_ 3_and +a1 net-_u24-pad3_ net-_u1-pad9_ u32 +a2 net-_u23-pad3_ net-_u1-pad8_ u31 +a3 net-_u22-pad3_ net-_u1-pad7_ u30 +a4 net-_u16-pad1_ net-_u16-pad2_ u16 +a5 net-_u17-pad1_ net-_u17-pad2_ u17 +a6 [net-_u14-pad2_ net-_u13-pad2_ ] net-_u22-pad3_ u22 +a7 [net-_u15-pad2_ net-_u13-pad2_ ] net-_u23-pad3_ u23 +a8 [net-_u17-pad2_ net-_u13-pad2_ ] net-_u25-pad3_ u25 +a9 [net-_u16-pad2_ net-_u13-pad2_ ] net-_u24-pad3_ u24 +a10 [net-_u18-pad2_ net-_u13-pad2_ ] net-_u26-pad3_ u26 +a11 net-_u14-pad1_ net-_u14-pad2_ u14 +a12 net-_u15-pad1_ net-_u15-pad2_ u15 +a13 net-_u18-pad1_ net-_u18-pad2_ u18 +a14 net-_u25-pad3_ net-_u1-pad10_ u33 +a15 net-_u26-pad3_ net-_u1-pad11_ u34 +a16 net-_u1-pad2_ net-_u10-pad1_ u4 +a17 net-_u3-pad2_ net-_u10-pad2_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u9-pad5_ net-_u9-pad6_ u9 +a18 net-_u1-pad1_ net-_u3-pad2_ u3 +a19 net-_u10-pad1_ net-_u10-pad2_ unconnected-_u10-pad3_ unconnected-_u10-pad4_ net-_u10-pad5_ net-_u10-pad6_ u10 +a20 net-_u1-pad5_ net-_u2-pad2_ u2 +a21 net-_u1-pad6_ net-_u12-pad2_ u7 +a22 net-_u2-pad2_ net-_u12-pad1_ u8 +a23 net-_u11-pad1_ net-_u10-pad2_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ net-_u11-pad6_ u11 +a24 net-_u1-pad3_ net-_u11-pad1_ u5 +a25 net-_u1-pad4_ net-_u10-pad2_ u6 +a26 [net-_u21-pad2_ net-_u13-pad2_ ] net-_u29-pad3_ u29 +a27 [net-_u20-pad2_ net-_u13-pad2_ ] net-_u28-pad3_ u28 +a28 [net-_u19-pad2_ net-_u13-pad2_ ] net-_u27-pad3_ u27 +a29 net-_u21-pad1_ net-_u21-pad2_ u21 +a30 net-_u20-pad1_ net-_u20-pad2_ u20 +a31 net-_u19-pad1_ net-_u19-pad2_ u19 +a32 net-_u27-pad3_ net-_u1-pad12_ u35 +a33 net-_u28-pad3_ net-_u1-pad13_ u36 +a34 net-_u29-pad3_ net-_u1-pad14_ u37 +a35 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a36 net-_u12-pad3_ net-_u13-pad2_ u13 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u32 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u30 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u22 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u23 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u25 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u24 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u26 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u33 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u34 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u9 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u10 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u11 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u29 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u28 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u27 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u35 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u36 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u37 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u12 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends 74HC137 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137_Previous_Values.xml new file mode 100644 index 000000000..b2b9a8032 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/74HC137_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secususd_inverterd_inverterd_inverterd_inverterd_inverterd_nord_nord_nord_nord_nord_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_dlatchd_inverterd_dlatchd_inverterd_inverterd_inverterd_dlatchd_inverterd_inverterd_nord_nord_nord_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_nord_inverterC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/analysis b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/analysis new file mode 100644 index 000000000..af548eb1e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC137/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 100e-06 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.cir new file mode 100644 index 000000000..b0891ae93 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.cir @@ -0,0 +1,13 @@ +.title KiCad schematic +M6 VDD Net-_M1-Pad1_ Net-_M1-Pad3_ GND eSim_MOS_N +M5 Net-_M3-Pad3_ Net-_M1-Pad1_ GND VDD eSim_MOS_P +M2 Net-_M1-Pad3_ IN GND GND eSim_MOS_N +M1 Net-_M1-Pad1_ IN Net-_M1-Pad3_ GND eSim_MOS_N +v1 VDD GND DC +U4 VDD plot_v1 +U3 Net-_M1-Pad1_ plot_v1 +U1 IN Net-_M1-Pad1_ PORT +M4 Net-_M3-Pad3_ IN Net-_M1-Pad1_ VDD eSim_MOS_P +M3 VDD IN Net-_M3-Pad3_ VDD eSim_MOS_P +U2 IN plot_v1 +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.cir.out new file mode 100644 index 000000000..72ea5f795 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.cir.out @@ -0,0 +1,27 @@ +.title kicad schematic + +.include PMOS-180nm.lib +.include NMOS-180nm.lib +m6 vdd net-_m1-pad1_ net-_m1-pad3_ gnd CMOSN W=100u L=100u M=1 +m5 net-_m3-pad3_ net-_m1-pad1_ gnd vdd CMOSP W=100u L=100u M=1 +m2 net-_m1-pad3_ in gnd gnd CMOSN W=100u L=100u M=1 +m1 net-_m1-pad1_ in net-_m1-pad3_ gnd CMOSN W=100u L=100u M=1 +v1 vdd gnd dc 5 +* u4 vdd plot_v1 +* u3 net-_m1-pad1_ plot_v1 +* u1 in net-_m1-pad1_ port +m4 net-_m3-pad3_ in net-_m1-pad1_ vdd CMOSP W=100u L=100u M=1 +m3 vdd in net-_m3-pad3_ vdd CMOSP W=100u L=100u M=1 +* u2 in plot_v1 +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(vdd) +plot v(net-_m1-pad1_) +plot v(in) +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.kicad_sch new file mode 100644 index 000000000..ed1bb698a --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.kicad_sch @@ -0,0 +1,1198 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 693d5d45-cc46-4c22-90e4-4346fe897658) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Devices:eSim_MOS_N" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "M" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 2.54 -1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 7.62 -7.62 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 2.54 -5.08 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_MOS_N_0_1" + (polyline + (pts + (xy 3.302 -7.366) + (xy 3.302 -6.35) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -6.858) + (xy 5.08 -6.858) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -5.588) + (xy 3.302 -4.572) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -5.08) + (xy 5.08 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.81) + (xy 3.302 -2.794) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.302) + (xy 5.08 -3.302) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -7.62) + (xy 5.08 -6.858) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -3.302) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.794 -6.985) + (xy 2.794 -3.175) + (xy 2.794 -3.175) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -5.08) + (xy 7.62 -5.08) + (xy 7.62 -6.35) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 -5.08) + (xy 4.572 -5.461) + (xy 4.572 -4.699) + (xy 3.556 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 3.81 -5.08) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_MOS_N_1_1" + (pin passive line (at 5.08 0 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 -5.08 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -10.16 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -8.89 90) (length 2.4892) + (name "B" (effects (font (size 1.1938 1.1938)))) + (number "4" (effects (font (size 1.1938 1.1938)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_MOS_P" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "M" (id 0) (at -1.27 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_MOS_P" (id 1) (at 1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 6.35 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 1.27 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_MOS_P_0_1" + (polyline + (pts + (xy 2.032 -1.778) + (xy 3.81 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 -1.27) + (xy 2.032 -2.286) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 0) + (xy 3.81 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 0.508) + (xy 2.032 -0.508) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 1.778) + (xy 3.81 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 2.286) + (xy 2.032 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.778) + (xy 3.81 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 2.54) + (xy 3.81 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.524 1.905) + (xy 1.524 -1.905) + (xy 1.524 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 0) + (xy 6.35 0) + (xy 6.35 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 0) + (xy 2.54 -0.381) + (xy 2.54 0.381) + (xy 3.556 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 2.54 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_MOS_P_1_1" + (pin passive line (at 3.81 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -3.81 0 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 6.35 -3.81 90) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "DC" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DC_0_1" + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DC_1_1" + (pin power_out line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 124.46 73.66) (diameter 0) (color 0 0 0 0) + (uuid 00c0ab32-5491-43c6-8cc2-4bbdccdc1786) + ) + (junction (at 124.46 86.36) (diameter 0) (color 0 0 0 0) + (uuid 05bd416b-f41a-4f01-93f0-45b772905eb3) + ) + (junction (at 148.59 114.3) (diameter 0) (color 0 0 0 0) + (uuid 2519cbac-f01f-4b97-b571-308f45f14444) + ) + (junction (at 124.46 100.33) (diameter 0) (color 0 0 0 0) + (uuid 301a8929-b270-4696-8c51-5c470cdb2d26) + ) + (junction (at 224.79 74.93) (diameter 0) (color 0 0 0 0) + (uuid 352b3fe1-3278-4fe1-9c32-77b8c4447551) + ) + (junction (at 148.59 134.62) (diameter 0) (color 0 0 0 0) + (uuid 3ea68544-0957-4048-884d-d6def70cb803) + ) + (junction (at 148.59 41.91) (diameter 0) (color 0 0 0 0) + (uuid 41fcf617-e17f-4f8a-8572-54291db3b31b) + ) + (junction (at 148.59 135.89) (diameter 0) (color 0 0 0 0) + (uuid 5b47c4c8-0a1c-4c7b-9d6b-58166a44f26b) + ) + (junction (at 148.59 44.45) (diameter 0) (color 0 0 0 0) + (uuid 759c04f3-8ad2-4c2b-83eb-dd96d2be4354) + ) + (junction (at 165.1 41.91) (diameter 0) (color 0 0 0 0) + (uuid 81cd1f03-86c5-426c-99c1-3c5178491220) + ) + (junction (at 200.66 87.63) (diameter 0) (color 0 0 0 0) + (uuid 91f38a25-e5b6-4e5d-b196-8ed6c1396d89) + ) + (junction (at 148.59 87.63) (diameter 0) (color 0 0 0 0) + (uuid aa8a341d-a2a9-42c9-8a9d-e5737ea4347e) + ) + (junction (at 181.61 87.63) (diameter 0) (color 0 0 0 0) + (uuid c595cc9f-0556-414d-81cd-7a860a633008) + ) + (junction (at 148.59 63.5) (diameter 0) (color 0 0 0 0) + (uuid d614823d-439e-4664-9604-d822808525e3) + ) + (junction (at 148.59 132.08) (diameter 0) (color 0 0 0 0) + (uuid f192b6d1-13a7-45b4-88c3-1ffc5067adb6) + ) + (junction (at 110.49 86.36) (diameter 0) (color 0 0 0 0) + (uuid f9c27ed4-42ce-4053-8f9f-ef3587e3270c) + ) + + (wire (pts (xy 148.59 134.62) (xy 148.59 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0204e9a7-790b-4f84-a58f-f704909fdbec) + ) + (wire (pts (xy 177.8 135.89) (xy 148.59 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06ed6370-3d86-4ffc-9023-5c90c295444a) + ) + (wire (pts (xy 148.59 132.08) (xy 151.13 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08edea5f-b5b0-445f-a31d-a119f5de3616) + ) + (wire (pts (xy 124.46 86.36) (xy 124.46 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0aea314e-1696-4247-bfd4-9ae51917bfe8) + ) + (wire (pts (xy 185.42 41.91) (xy 165.1 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fd089a3-727c-4df4-af7e-680b30db104f) + ) + (wire (pts (xy 148.59 63.5) (xy 148.59 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1927ea7a-1e55-4269-82f4-c8c632b1af2a) + ) + (wire (pts (xy 148.59 87.63) (xy 148.59 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28201400-3b4a-4057-821e-76c628b67392) + ) + (wire (pts (xy 148.59 129.54) (xy 148.59 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35d2ec43-91e4-4008-8e65-38713c02a7d9) + ) + (wire (pts (xy 148.59 132.08) (xy 148.59 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36c81a78-2854-44d0-88c1-ee7559f39baa) + ) + (wire (pts (xy 148.59 63.5) (xy 176.53 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39e14064-4b2c-4f33-ac5c-d673440af45e) + ) + (wire (pts (xy 162.56 54.61) (xy 162.56 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 409ea937-6869-4aa4-ad6a-eb0601902381) + ) + (wire (pts (xy 124.46 124.46) (xy 140.97 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c276723-a427-43f1-bdcb-6fd13d2d212c) + ) + (wire (pts (xy 185.42 41.91) (xy 185.42 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f4d889c-8a28-4d2b-ba27-8beb62b9ff4e) + ) + (wire (pts (xy 165.1 41.91) (xy 148.59 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50af8aea-de38-4c31-a051-36f62249b2d6) + ) + (wire (pts (xy 181.61 71.12) (xy 181.61 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53a0f5f5-f6fe-4174-8d86-abacaaf1d762) + ) + (wire (pts (xy 186.69 63.5) (xy 200.66 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54ffc823-a488-419d-b153-fc2b6f473ab0) + ) + (wire (pts (xy 151.13 104.14) (xy 153.67 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5df1f817-5beb-4287-a470-a2932aa8f22f) + ) + (wire (pts (xy 151.13 54.61) (xy 162.56 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 619d4c1f-7697-4010-ade1-162f97e32a60) + ) + (wire (pts (xy 148.59 135.89) (xy 148.59 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65b5a9cd-137a-4e7e-869e-ae70d7e8326e) + ) + (wire (pts (xy 124.46 100.33) (xy 124.46 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 692b8325-1729-48cf-9f3a-ef83bd27d879) + ) + (wire (pts (xy 148.59 55.88) (xy 148.59 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a789436-4ea7-4c46-abb3-d52d81d8354c) + ) + (wire (pts (xy 186.69 114.3) (xy 200.66 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f3b4ed6-c551-4774-9953-f18d30f2da4e) + ) + (wire (pts (xy 151.13 128.27) (xy 151.13 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8270a371-4f94-43dd-a63f-7ad88b6c9abc) + ) + (wire (pts (xy 124.46 73.66) (xy 140.97 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f0312e2-b30e-47dd-bc7b-eea08bcadb0a) + ) + (wire (pts (xy 177.8 116.84) (xy 177.8 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97e732ce-e969-4092-aba2-a4555be011b3) + ) + (wire (pts (xy 124.46 50.8) (xy 140.97 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9953d962-3b69-462e-b3a3-6c89205c173e) + ) + (wire (pts (xy 200.66 87.63) (xy 203.2 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e55942b-76fa-434b-a7c2-fa2f49935751) + ) + (wire (pts (xy 148.59 38.1) (xy 148.59 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a06f0632-9284-48c1-886b-32762f2b7e55) + ) + (wire (pts (xy 224.79 68.58) (xy 224.79 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a139d2fb-1220-4343-b41f-195a303b6e0b) + ) + (wire (pts (xy 148.59 114.3) (xy 148.59 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4d2cfff-ecbc-4d9d-85d8-a48c4fcaf763) + ) + (wire (pts (xy 165.1 77.47) (xy 165.1 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a88f68ff-8c14-49f4-8a70-9c0f2b0e4e1e) + ) + (wire (pts (xy 124.46 50.8) (xy 124.46 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa4f8f68-ff2d-4889-9e8f-1235a1606fb4) + ) + (wire (pts (xy 162.56 44.45) (xy 148.59 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab981ade-87d2-412d-8d94-07006cf73af1) + ) + (wire (pts (xy 148.59 78.74) (xy 148.59 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1e18f67-3b9e-4c39-a4c0-a667320c993e) + ) + (wire (pts (xy 181.61 87.63) (xy 200.66 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2ee2725-01db-4899-bd98-5e4a25f0aa8c) + ) + (wire (pts (xy 124.46 100.33) (xy 140.97 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd6225fd-4695-4a4c-8561-214bd8756283) + ) + (wire (pts (xy 153.67 134.62) (xy 148.59 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c143be09-182b-4f94-9202-cab07411dbaf) + ) + (wire (pts (xy 148.59 41.91) (xy 148.59 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c528d0d5-3c5f-45fc-ae60-eb329732fd0c) + ) + (wire (pts (xy 148.59 105.41) (xy 148.59 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d223d9a1-0e34-40b2-88f4-eda07c6f72f2) + ) + (wire (pts (xy 106.68 86.36) (xy 110.49 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d828502a-d9ba-4a98-8d21-3e7c8741bb4d) + ) + (wire (pts (xy 148.59 87.63) (xy 181.61 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcc9939f-06c4-4d42-8ca0-b84842973fa0) + ) + (wire (pts (xy 153.67 104.14) (xy 153.67 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1f510d2-2bc2-4081-b243-c61e8f118511) + ) + (wire (pts (xy 181.61 87.63) (xy 181.61 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9c69f7a-4e28-4d83-9175-a66ad50badd6) + ) + (wire (pts (xy 148.59 44.45) (xy 148.59 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed09760e-21b7-4ace-8ec3-fb500a62d514) + ) + (wire (pts (xy 151.13 77.47) (xy 165.1 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1d1dcd4-7b40-4383-b002-d2d285283710) + ) + (wire (pts (xy 148.59 114.3) (xy 176.53 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9833a32-feec-432b-8f3f-105916259318) + ) + (wire (pts (xy 110.49 86.36) (xy 124.46 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd410e82-ee67-4a89-933e-86c4fe386bee) + ) + (wire (pts (xy 224.79 74.93) (xy 224.79 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid feaa5576-af79-4e49-a56e-d3115f8e6dd3) + ) + (wire (pts (xy 124.46 73.66) (xy 124.46 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff3b71a8-e7ce-4b76-a62c-550d5c0ba5b6) + ) + + (global_label "VDD" (shape input) (at 224.79 68.58 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 23e48910-2331-4297-be6e-de77810ddc81) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 230.8317 68.5006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "VDD" (shape input) (at 200.66 114.3 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4ba1f395-c656-4132-aac1-7407ef899119) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 206.7017 114.2206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "VDD" (shape input) (at 148.59 38.1 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 50c1e23b-c332-4a29-a6e6-7cfa653a69e0) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 154.6317 38.0206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "IN" (shape input) (at 114.3 86.36 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid bc3bac96-6cd7-4d5d-bd63-e25069d25cfe) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.2206 82.0117 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 148.59 138.43 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0e25c67e-a80f-46e6-b60b-58a42ef42f56) + (property "Reference" "#PWR01" (id 0) (at 148.59 144.78 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 153.67 138.43 0)) + (property "Footprint" "" (id 2) (at 148.59 138.43 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 138.43 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fe9f33a8-6a75-4127-bab8-1a3bef8acfd9)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_P") (at 144.78 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ee0d985-18f1-4351-a7cd-c7ca851219ee) + (property "Reference" "M4" (id 0) (at 152.4 72.3899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_P" (id 1) (at 152.4 74.9299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 151.13 71.12 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 146.05 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 301b5821-e27c-46d5-8593-52531caa0328)) + (pin "2" (uuid 0bac7a62-88fd-49a5-b2bd-4ee397ceba91)) + (pin "3" (uuid 0b21f349-8647-4699-8876-717c30c05e4d)) + (pin "4" (uuid 6044d31f-aae7-48a1-b802-bcbaa7d3e39b)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 224.79 102.87 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 60e40a96-d60d-41b5-be07-ee8a7c465b92) + (property "Reference" "#PWR03" (id 0) (at 224.79 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 229.87 102.87 0)) + (property "Footprint" "" (id 2) (at 224.79 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 224.79 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d8771193-654b-416d-8857-471ab532371e)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 200.66 63.5 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 6edb4d13-6b72-4ea2-8eff-af860c669a28) + (property "Reference" "#PWR02" (id 0) (at 200.66 69.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 205.74 63.5 0)) + (property "Footprint" "" (id 2) (at 200.66 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 200.66 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4e059179-cd50-45ca-a25b-ed708f321b17)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 186.69 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ec71b4f-a9d0-436f-8814-ca4d101bf896) + (property "Reference" "M6" (id 0) (at 181.61 119.38 90)) + (property "Value" "eSim_MOS_N" (id 1) (at 181.61 121.92 90)) + (property "Footprint" "" (id 2) (at 179.07 116.84 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 181.61 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 01cd0767-129d-473b-813a-eb4cac235aae)) + (pin "2" (uuid 6a0cf19a-91d4-473e-ae6c-51af1462369d)) + (pin "3" (uuid 02a0f831-b95c-4f2c-a93f-66fb4a0ce151)) + (pin "4" (uuid eaaf61c2-ff17-4a3b-b28c-5066639384c0)) + ) + + (symbol (lib_id "eSim_Sources:DC") (at 224.79 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8a936d85-3ede-4595-9b8d-24eb8fbc181b) + (property "Reference" "v1" (id 0) (at 229.87 88.265 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "DC" (id 1) (at 229.87 92.075 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 229.87 95.885 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 224.79 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1fa045aa-a125-424f-ac06-1b6246b0c308)) + (pin "2" (uuid d0c51a9a-27a5-412d-9cae-55313cf2a037)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 209.55 87.63 0) (mirror y) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9868f107-8f9d-4d89-b527-eefd317dff1a) + (property "Reference" "U1" (id 0) (at 213.36 86.995 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 213.36 89.535 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 209.55 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 209.55 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 259dbd0e-fc7e-4090-8c5d-9af7ee066273)) + (pin "2" (uuid aef1d91c-14c0-42d9-b3c8-8ced3b9b3a0c)) + (pin "3" (uuid 4e32adc8-28fe-4434-8da3-f55457f47810)) + (pin "4" (uuid f619e1c2-5ab8-4fc9-ae6b-72e3234f5e2e)) + (pin "5" (uuid c4c9ad8a-98a3-4b10-9bbf-15da3d90aabb)) + (pin "6" (uuid 5d597276-4d68-41d6-8142-cfdcb8b7248a)) + (pin "7" (uuid 22d91e17-6b29-4c15-ba48-f6026b8b8a41)) + (pin "8" (uuid e2ae3cb4-63e4-4a46-a0c3-4e78827e16a7)) + (pin "9" (uuid 30862ec2-a2f3-4f99-8373-eafd246b28f0)) + (pin "10" (uuid dae1e5ea-4a36-4d27-ad38-71bc0822a3c5)) + (pin "11" (uuid 67c7a44e-aa1c-42c7-9e7f-5dcda9b912d7)) + (pin "12" (uuid eae33e79-261a-45ef-823f-d84b20637a85)) + (pin "13" (uuid 00cacff5-016d-484e-8b04-be40e79fcd19)) + (pin "14" (uuid 1934f73f-767a-4701-9b00-7163c66c7b9a)) + (pin "15" (uuid 292e6234-5f74-4f3a-ac93-297050b1010f)) + (pin "16" (uuid b0749a1a-654d-4e92-ac40-93e48ac2642c)) + (pin "17" (uuid 55b4a5e6-599c-48e8-af9b-66a1924591b5)) + (pin "18" (uuid aba37ab2-cb22-40e1-825a-c8d4411f2076)) + (pin "19" (uuid f104cced-bbb3-4c2c-8565-6362f7a1a216)) + (pin "20" (uuid 865ca267-146d-451b-b5ef-2d9f001cdf7c)) + (pin "21" (uuid d009a6ec-4fc4-45e6-8350-634130e97352)) + (pin "22" (uuid ef246b6f-137b-407d-adea-537347831d50)) + (pin "23" (uuid 3f88a835-c24e-4d00-a073-e552c3d95e50)) + (pin "24" (uuid ee67e0b5-0d9b-4c22-ac47-5d42b218827b)) + (pin "25" (uuid 39cc394b-925f-46e5-bb54-c624651a478e)) + (pin "26" (uuid c1a3cb0a-ce79-4265-86b1-d2f71aa1f95f)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 219.71 74.93 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e8a2419-fd57-40e5-a8ec-e1935aee4d3d) + (property "Reference" "U4" (id 0) (at 236.22 73.66 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 236.22 77.47 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 219.71 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 219.71 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid c62aa992-f235-42ec-9192-c9ebfb5ea77f)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 200.66 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab61ebce-f309-468a-98e3-645458750542) + (property "Reference" "U3" (id 0) (at 204.47 78.74 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 204.47 82.55 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 200.66 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 88372d15-4acc-46e6-a715-862ec6b64d39)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 143.51 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8d80220-9434-46cb-844d-9111ff8e3858) + (property "Reference" "M2" (id 0) (at 152.4 123.1899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 152.4 125.7299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 151.13 127 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 146.05 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e0eca88d-c1e7-472b-b74d-62b847ffdfeb)) + (pin "2" (uuid 8beb110e-3ac6-43d5-984a-636f8c9168d9)) + (pin "3" (uuid 62000f16-40c0-4598-9a66-4bece80d7ad8)) + (pin "4" (uuid 81bfae87-19f0-4511-af61-1ae262705882)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_P") (at 144.78 50.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c9b31279-5bb5-4e17-b3ca-95ad4848e8ce) + (property "Reference" "M3" (id 0) (at 152.4 49.5299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_P" (id 1) (at 152.4 52.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 151.13 48.26 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 146.05 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d26ba84e-076d-4aa6-8c31-74664d884fd0)) + (pin "2" (uuid cee6fd4a-afea-44e3-b350-eb999f792d67)) + (pin "3" (uuid b2a17087-2b0e-4b8c-b2ea-49814ae7712d)) + (pin "4" (uuid 541b4103-e241-4fe5-8729-07566a33ac3f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_P") (at 181.61 67.31 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dba397a7-a3f0-42c1-84c7-6e2701fef6e8) + (property "Reference" "M5" (id 0) (at 181.61 55.88 90)) + (property "Value" "eSim_MOS_P" (id 1) (at 181.61 58.42 90)) + (property "Footprint" "" (id 2) (at 179.07 60.96 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 181.61 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 344349fc-2a26-4dd5-bad7-a2662c5eef92)) + (pin "2" (uuid ff03f810-de2d-4a47-ab34-1a96ecc520d3)) + (pin "3" (uuid d6a7f5cd-a7cd-4ce6-9d35-fa5ac6906118)) + (pin "4" (uuid 54ad7f2c-2ff8-4de7-8aa5-d5204922056d)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 110.49 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dd6e14a5-d4cd-4f1a-ba97-70da22ee1497) + (property "Reference" "U2" (id 0) (at 114.3 77.47 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 114.3 81.28 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 110.49 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 0355fe5d-2535-4459-acbb-3e9d85089c75)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e7be151e-5c6b-4cdf-ae4f-09ee2a9eb06e) + (property "Reference" "U1" (id 0) (at 100.965 81.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5a1447e2-0cc6-4d36-a30c-ba9c354684b6)) + (pin "2" (uuid 063bcd5f-f8fc-4bb1-bea7-6df091632ad7)) + (pin "3" (uuid dea5ac59-09f9-44c0-9a7c-2f888628b252)) + (pin "4" (uuid ee00200d-8369-4d38-9abc-856778850b06)) + (pin "5" (uuid 29024919-5595-4793-93fc-a95bb4f64662)) + (pin "6" (uuid 5f6c71b8-6df2-4165-a202-9406a986ac59)) + (pin "7" (uuid b87b30bb-c085-4d03-8935-1c3cafddc825)) + (pin "8" (uuid 29a154a4-7e48-48e5-a89b-f77e6b9e1078)) + (pin "9" (uuid 5e4a06e0-3164-49dd-b0b9-595b026e8924)) + (pin "10" (uuid 35d86226-5039-4d20-85a7-4584a36c812d)) + (pin "11" (uuid b0d3efd7-a4fb-4dce-9b65-8bf5403d43ae)) + (pin "12" (uuid 8514cb5d-e070-41b7-93f7-bebc44ff4933)) + (pin "13" (uuid f7fb1b95-1296-4cb9-9a08-6ddf02d3aff4)) + (pin "14" (uuid 41e9fdfb-eb31-41b6-9f1f-4538caa6278f)) + (pin "15" (uuid b28f16f0-c751-4754-9b9d-a3f9aaa79629)) + (pin "16" (uuid 5077453a-081d-408f-b869-582716ded2c0)) + (pin "17" (uuid cd69b6b8-e399-4489-bda1-7b16b9cc5ed9)) + (pin "18" (uuid 16c57ae6-8beb-4a10-a805-acb9e63ffa43)) + (pin "19" (uuid 05475b55-a8b4-45ee-9a82-ab7ef2d29e31)) + (pin "20" (uuid 608744af-9b1d-44de-bdfd-b67738ab9121)) + (pin "21" (uuid 0f92876d-d445-4484-90d3-e2a7b98432d4)) + (pin "22" (uuid 4d27d35d-5a3c-4d03-b8cf-ec22360f6215)) + (pin "23" (uuid 91205fe3-5d45-42b5-849f-67274021a06a)) + (pin "24" (uuid 57948f8c-3f99-49f7-918d-4b020dec021c)) + (pin "25" (uuid b1abcb65-cbf3-46a3-978a-a13e38cf0da3)) + (pin "26" (uuid 8e8961d0-b651-4929-a64e-2f352702d7ad)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 143.51 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f918c644-c8c6-4d04-9930-80ef7f9bee64) + (property "Reference" "M1" (id 0) (at 152.4 99.0599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 152.4 101.5999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 151.13 102.87 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 146.05 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 499e0ac0-e359-4b13-8253-a7c2b8435263)) + (pin "2" (uuid d68a2876-7728-4353-ba55-931d44191a9b)) + (pin "3" (uuid 4d8ae5fb-acb8-4f7f-be90-7f8fb317c001)) + (pin "4" (uuid 00c98136-5cea-4a9a-9573-6df091fa4cb4)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/0e25c67e-a80f-46e6-b60b-58a42ef42f56" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/6edb4d13-6b72-4ea2-8eff-af860c669a28" + (reference "#PWR02") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/60e40a96-d60d-41b5-be07-ee8a7c465b92" + (reference "#PWR03") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/f918c644-c8c6-4d04-9930-80ef7f9bee64" + (reference "M1") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/c8d80220-9434-46cb-844d-9111ff8e3858" + (reference "M2") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/c9b31279-5bb5-4e17-b3ca-95ad4848e8ce" + (reference "M3") (unit 1) (value "eSim_MOS_P") (footprint "") + ) + (path "/5ee0d985-18f1-4351-a7cd-c7ca851219ee" + (reference "M4") (unit 1) (value "eSim_MOS_P") (footprint "") + ) + (path "/dba397a7-a3f0-42c1-84c7-6e2701fef6e8" + (reference "M5") (unit 1) (value "eSim_MOS_P") (footprint "") + ) + (path "/7ec71b4f-a9d0-436f-8814-ca4d101bf896" + (reference "M6") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/e7be151e-5c6b-4cdf-ae4f-09ee2a9eb06e" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/9868f107-8f9d-4d89-b527-eefd317dff1a" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/dd6e14a5-d4cd-4f1a-ba97-70da22ee1497" + (reference "U2") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/ab61ebce-f309-468a-98e3-645458750542" + (reference "U3") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/9e8a2419-fd57-40e5-a8ec-e1935aee4d3d" + (reference "U4") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/8a936d85-3ede-4595-9b8d-24eb8fbc181b" + (reference "v1") (unit 1) (value "DC") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.sub new file mode 100644 index 000000000..64d1f7b95 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14.sub @@ -0,0 +1,18 @@ +* Subcircuit 74HC14 +.subckt 74HC14 in net-_m1-pad1_ +.title kicad schematic +.include PMOS-180nm.lib +.include NMOS-180nm.lib +m6 vdd net-_m1-pad1_ net-_m1-pad3_ gnd CMOSN W=100u L=100u M=1 +m5 net-_m3-pad3_ net-_m1-pad1_ gnd vdd CMOSP W=100u L=100u M=1 +m2 net-_m1-pad3_ in gnd gnd CMOSN W=100u L=100u M=1 +m1 net-_m1-pad1_ in net-_m1-pad3_ gnd CMOSN W=100u L=100u M=1 +v1 vdd gnd dc 5 +* u4 vdd plot_v1 +* u3 net-_m1-pad1_ plot_v1 +m4 net-_m3-pad3_ in net-_m1-pad1_ vdd CMOSP W=100u L=100u M=1 +m3 vdd in net-_m3-pad3_ vdd CMOSP W=100u L=100u M=1 +* u2 in plot_v1 +* Control Statements + +.ends 74HC14 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14_Previous_Values.xml new file mode 100644 index 000000000..da4052ed2 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/74HC14_Previous_Values.xml @@ -0,0 +1 @@ +dc5C:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/NMOS-180nm.lib b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/NMOS-180nm.lib new file mode 100644 index 000000000..51e9b1196 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/NMOS-180nm.lib @@ -0,0 +1,13 @@ +.model CMOSN NMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=2.3549E17 VTH0=0.3823463 K1=0.5810697 ++ K2=4.774618E-3 K3=0.0431669 K3B=1.1498346 W0=1E-7 NLX=1.910552E-7 DVT0W=0 DVT1W=0 DVT2W=0 ++ DVT0=1.2894824 DVT1=0.3622063 DVT2=0.0713729 U0=280.633249 UA=-1.208537E-9 UB=2.158625E-18 ++ UC=5.342807E-11 VSAT=9.366802E4 A0=1.7593146 AGS=0.3939741 B0=-6.413949E-9 B1=-1E-7 KETA=-5.180424E-4 ++ A1=0 A2=1 RDSW=105.5517558 PRWG=0.5 PRWB=-0.1998871 WR=1 WINT=7.904732E-10 LINT=1.571424E-8 XL=0 ++ XW=-1E-8 DWG=1.297221E-9 DWB=1.479041E-9 VOFF=-0.0955434 NFACTOR=2.4358891 CIT=0 CDSC=2.4E-4 CDSCD=0 ++ CDSCB=0 ETA0=3.104851E-3 ETAB=-2.512384E-5 DSUB=0.0167075 PCLM=0.8073191 PDIBLC1=0.1666161 PDIBLC2=3.112892E-3 ++ PDIBLCB=-0.1 DROUT=0.7875618 PSCBE1=8E10 PSCBE2=9.213635E-10 PVAG=3.85243E-3 DELTA=0.01 RSH=6.7 MOBMOD=1 ++ PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 ++ WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 CGDO=7.08E-10 CGSO=7.08E-10 CGBO=1E-12 ++ CJ=9.68858E-4 PB=0.8 MJ=0.3864502 CJSW=2.512138E-10 PBSW=0.809286 MJSW=0.1060414 CJSWG=3.3E-10 PBSWG=0.809286 ++ MJSWG=0.1060414 CF=0 PVTH0=-1.192722E-3 PRDSW=-5 PK2=6.450505E-5 WKETA=-4.27294E-4 LKETA=-0.0104078 ++ PU0=6.3268729 PUA=2.226552E-11 PUB=0 PVSAT=969.1480157 PETA0=1E-4 PKETA=-1.049509E-3) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/PMOS-180nm.lib b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/PMOS-180nm.lib new file mode 100644 index 000000000..032b5b95e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/PMOS-180nm.lib @@ -0,0 +1,11 @@ +.model CMOSP PMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=4.1589E17 VTH0=-0.3938813 K1=0.5479015 ++ K2=0.0360586 K3=0.0993095 K3B=5.7086622 W0=1E-6 NLX=1.313191E-7 DVT0W=0 DVT1W=0 DVT2W=0 DVT0=0.4911363 ++ DVT1=0.2227356 DVT2=0.1 U0=115.6852975 UA=1.505832E-9 UB=1E-21 UC=-1E-10 VSAT=1.329694E5 A0=1.7590478 ++ AGS=0.3641621 B0=3.427126E-7 B1=1.062928E-6 KETA=0.0134667 A1=0.6859506 A2=0.3506788 RDSW=168.5705677 ++ PRWG=0.5 PRWB=-0.4987371 WR=1 WINT=0 LINT=3.028832E-8 XL=0 XW=-1E-8 DWG=-2.349633E-8 DWB=-7.152486E-9 ++ VOFF=-0.0994037 NFACTOR=1.9424315 CIT=0 CDSC=2.4E-4 CDSCD=0 CDSCB=0 ETA0=0.0608072 ETAB=-0.0426148 ++ DSUB=0.7343015 PCLM=3.2579974 PDIBLC1=7.229527E-6 PDIBLC2=0.025389 PDIBLCB=-1E-3 DROUT=0 PSCBE1=1.454878E10 ++ PSCBE2=4.202027E-9 PVAG=15 DELTA=0.01 RSH=7.8 MOBMOD=1 PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 ++ UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 ++ CGDO=6.32E-10 CGSO=6.32E-10 CGBO=1E-12 CJ=1.172138E-3 PB=0.8421173 MJ=0.4109788 CJSW=2.242609E-10 PBSW=0.8 + MJSW=0.3752089 CJSWG=4.22E-10 PBSWG=0.8 MJSWG=0.3752089 CF=0 PVTH0=1.888482E-3 PRDSW=11.5315407 PK2=1.559399E-3 ++ WKETA=0.0319301 LKETA=2.955547E-3 PU0=-1.1105313 PUA=-4.62102E-11 PUB=1E-21 PVSAT=50 PETA0=1E-4 PKETA=-4.346368E-3) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/analysis b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/analysis new file mode 100644 index 000000000..af548eb1e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC14/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 100e-06 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.cir new file mode 100644 index 000000000..ec7333eed --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.cir @@ -0,0 +1,22 @@ +.title KiCad schematic +U12 Net-_U12-Pad1_ Net-_U1-Pad10_ d_inverter +X8 Net-_U1-Pad10_ Net-_U4-Pad3_ Net-_U8-Pad1_ TRISTATE +X4 Net-_U1-Pad6_ Net-_U4-Pad3_ Net-_U12-Pad1_ TRISTATE +U7 Net-_U7-Pad1_ Net-_U1-Pad5_ d_inverter +X7 Net-_U1-Pad9_ Net-_U4-Pad3_ Net-_U7-Pad1_ TRISTATE +U8 Net-_U8-Pad1_ Net-_U1-Pad6_ d_inverter +U5 Net-_U5-Pad1_ Net-_U1-Pad3_ d_inverter +X1 Net-_U1-Pad3_ Net-_U4-Pad3_ Net-_U9-Pad1_ TRISTATE +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ PORT +U4 Net-_U3-Pad2_ Net-_U2-Pad2_ Net-_U4-Pad3_ d_and +U3 Net-_U1-Pad1_ Net-_U3-Pad2_ d_buffer +U2 Net-_U1-Pad2_ Net-_U2-Pad2_ d_inverter +X6 Net-_U1-Pad8_ Net-_U4-Pad3_ Net-_U6-Pad1_ TRISTATE +U11 Net-_U11-Pad1_ Net-_U1-Pad9_ d_inverter +X3 Net-_U1-Pad5_ Net-_U4-Pad3_ Net-_U11-Pad1_ TRISTATE +U6 Net-_U6-Pad1_ Net-_U1-Pad4_ d_inverter +U9 Net-_U9-Pad1_ Net-_U1-Pad7_ d_inverter +X5 Net-_U1-Pad7_ Net-_U4-Pad3_ Net-_U5-Pad1_ TRISTATE +X2 Net-_U1-Pad4_ Net-_U4-Pad3_ Net-_U10-Pad1_ TRISTATE +U10 Net-_U10-Pad1_ Net-_U1-Pad8_ d_inverter +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.cir.out new file mode 100644 index 000000000..f5d928fad --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.cir.out @@ -0,0 +1,65 @@ +.title kicad schematic + +.include TRISTATE.sub +* u12 net-_u12-pad1_ net-_u1-pad10_ d_inverter +x8 net-_u1-pad10_ net-_u4-pad3_ net-_u8-pad1_ TRISTATE +x4 net-_u1-pad6_ net-_u4-pad3_ net-_u12-pad1_ TRISTATE +* u7 net-_u7-pad1_ net-_u1-pad5_ d_inverter +x7 net-_u1-pad9_ net-_u4-pad3_ net-_u7-pad1_ TRISTATE +* u8 net-_u8-pad1_ net-_u1-pad6_ d_inverter +* u5 net-_u5-pad1_ net-_u1-pad3_ d_inverter +x1 net-_u1-pad3_ net-_u4-pad3_ net-_u9-pad1_ TRISTATE +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ port +* u4 net-_u3-pad2_ net-_u2-pad2_ net-_u4-pad3_ d_and +* u3 net-_u1-pad1_ net-_u3-pad2_ d_buffer +* u2 net-_u1-pad2_ net-_u2-pad2_ d_inverter +x6 net-_u1-pad8_ net-_u4-pad3_ net-_u6-pad1_ TRISTATE +* u11 net-_u11-pad1_ net-_u1-pad9_ d_inverter +x3 net-_u1-pad5_ net-_u4-pad3_ net-_u11-pad1_ TRISTATE +* u6 net-_u6-pad1_ net-_u1-pad4_ d_inverter +* u9 net-_u9-pad1_ net-_u1-pad7_ d_inverter +x5 net-_u1-pad7_ net-_u4-pad3_ net-_u5-pad1_ TRISTATE +x2 net-_u1-pad4_ net-_u4-pad3_ net-_u10-pad1_ TRISTATE +* u10 net-_u10-pad1_ net-_u1-pad8_ d_inverter +a1 net-_u12-pad1_ net-_u1-pad10_ u12 +a2 net-_u7-pad1_ net-_u1-pad5_ u7 +a3 net-_u8-pad1_ net-_u1-pad6_ u8 +a4 net-_u5-pad1_ net-_u1-pad3_ u5 +a5 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u4-pad3_ u4 +a6 net-_u1-pad1_ net-_u3-pad2_ u3 +a7 net-_u1-pad2_ net-_u2-pad2_ u2 +a8 net-_u11-pad1_ net-_u1-pad9_ u11 +a9 net-_u6-pad1_ net-_u1-pad4_ u6 +a10 net-_u9-pad1_ net-_u1-pad7_ u9 +a11 net-_u10-pad1_ net-_u1-pad8_ u10 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.kicad_sch new file mode 100644 index 000000000..8d4630cff --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.kicad_sch @@ -0,0 +1,1506 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 7df293f1-3ed3-4f40-8c0f-a5a5ec281890) + + (paper "User" 431.8 379.4) + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Subckt:TRISTATE" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TRISTATE" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TRISTATE_0_1" + (polyline + (pts + (xy -5.08 3.81) + (xy -5.08 -3.81) + (xy 8.89 0) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "TRISTATE_1_1" + (pin input line (at -7.62 0 0) (length 2.54) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -5.08 90) (length 2.54) + (name "OE" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 0 180) (length 2.54) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 199.39 83.82) (diameter 0) (color 0 0 0 0) + (uuid 0e4c7007-a784-41b8-92a6-78646591e174) + ) + (junction (at 205.74 228.6) (diameter 0) (color 0 0 0 0) + (uuid 1484758d-e515-4cd9-a11a-4cfadafa0ca1) + ) + (junction (at 250.19 177.8) (diameter 0) (color 0 0 0 0) + (uuid 16d7b908-a40a-4780-a481-5809fe4a33bb) + ) + (junction (at 250.19 76.2) (diameter 0) (color 0 0 0 0) + (uuid 1a7a1c46-7d9f-45bd-8def-6e26f1f3309b) + ) + (junction (at 199.39 135.89) (diameter 0) (color 0 0 0 0) + (uuid 537cf19a-bea6-43a7-b14e-aa5e5e04b925) + ) + (junction (at 199.39 237.49) (diameter 0) (color 0 0 0 0) + (uuid 5d35f575-5e53-4ca4-9a5a-feede7d25212) + ) + (junction (at 205.74 177.8) (diameter 0) (color 0 0 0 0) + (uuid 6f4fc57a-6484-4b16-a889-513a7af6dc7b) + ) + (junction (at 199.39 185.42) (diameter 0) (color 0 0 0 0) + (uuid 72dad9c7-aa72-4342-91ec-baccae2714b1) + ) + (junction (at 205.74 76.2) (diameter 0) (color 0 0 0 0) + (uuid 788563f2-1e6f-498f-9c97-67a5af2a98a1) + ) + (junction (at 199.39 165.1) (diameter 0) (color 0 0 0 0) + (uuid 7f6e0b64-2f85-4129-8b65-87c7eb0f5235) + ) + (junction (at 250.19 228.6) (diameter 0) (color 0 0 0 0) + (uuid 804feced-9da0-49eb-80f0-71972580ce79) + ) + (junction (at 199.39 213.36) (diameter 0) (color 0 0 0 0) + (uuid baada8b9-2e26-454c-9069-8eb30ae2616b) + ) + (junction (at 199.39 114.3) (diameter 0) (color 0 0 0 0) + (uuid c93c5f36-a90b-43af-b00f-05b0d026fd99) + ) + (junction (at 205.74 127) (diameter 0) (color 0 0 0 0) + (uuid ca337ff6-b3e0-43aa-ad5f-6636948e640c) + ) + (junction (at 250.19 127) (diameter 0) (color 0 0 0 0) + (uuid ef991683-93ec-4c32-84c6-6dd166cf0c5d) + ) + + (wire (pts (xy 218.44 135.89) (xy 199.39 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 004f14a0-8add-4783-9044-ad01a8af3d1a) + ) + (wire (pts (xy 237.49 257.81) (xy 237.49 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 026a870d-05e2-4916-9138-cde1ffce9314) + ) + (wire (pts (xy 250.19 101.6) (xy 250.19 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 065e3733-c068-44a3-8dae-80ab8e4f17c6) + ) + (wire (pts (xy 250.19 252.73) (xy 245.11 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a8cc132-76b9-4e84-941e-06f07d66abcc) + ) + (wire (pts (xy 148.59 68.58) (xy 148.59 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ac2327a-c36c-4856-8e3d-f51725027751) + ) + (wire (pts (xy 172.72 228.6) (xy 205.74 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bc0f33d-114d-4c0d-bef5-f47de8407269) + ) + (wire (pts (xy 199.39 213.36) (xy 199.39 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0db27381-486a-4d56-b4d2-298e5bddb2c0) + ) + (wire (pts (xy 172.72 127) (xy 205.74 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f92ad75-a9ea-4036-8c46-7625a5fbabd5) + ) + (wire (pts (xy 210.82 101.6) (xy 205.74 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cffef91-0271-4925-a8ec-8c260e047185) + ) + (wire (pts (xy 172.72 177.8) (xy 205.74 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2380d1ca-1d3a-4171-a32e-ab4e657a8bed) + ) + (wire (pts (xy 250.19 203.2) (xy 245.11 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27b655be-9a26-4992-b248-1473ee8806f3) + ) + (wire (pts (xy 250.19 152.4) (xy 245.11 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29a28fb2-70d9-4f17-bb31-27fa072eb4cc) + ) + (wire (pts (xy 205.74 127) (xy 205.74 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 376b1b3e-3942-4206-867b-f3cb7d7c920c) + ) + (wire (pts (xy 245.11 177.8) (xy 250.19 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39203e6c-c452-48c5-8ab8-c7fcd0b8b33e) + ) + (wire (pts (xy 210.82 152.4) (xy 205.74 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b3844cb-e236-43e3-94eb-3a1e1945f75b) + ) + (wire (pts (xy 205.74 252.73) (xy 205.74 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43dc3a25-5ba0-4953-95de-584f2f05ebc7) + ) + (wire (pts (xy 250.19 76.2) (xy 274.32 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4775fee8-b6b0-4c88-a6c7-c69d55fbf985) + ) + (wire (pts (xy 237.49 208.28) (xy 237.49 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f78c8b4-3ba5-409b-a1a9-114b1f2e8955) + ) + (wire (pts (xy 250.19 127) (xy 250.19 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53c4966a-4cc2-4f8f-8786-170c3e548ec5) + ) + (wire (pts (xy 250.19 127) (xy 274.32 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5462bd3d-0370-4b56-afb7-a7ceb4a1cebf) + ) + (wire (pts (xy 210.82 252.73) (xy 205.74 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58d23944-fd2c-4c22-ae24-f7363c14876f) + ) + (wire (pts (xy 218.44 182.88) (xy 218.44 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61110f38-1234-4a05-80e6-f0cd05ffb3fd) + ) + (wire (pts (xy 250.19 228.6) (xy 274.32 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64bf049f-cfbc-43c4-a5c0-d4e6a2017e3c) + ) + (wire (pts (xy 148.59 74.93) (xy 113.03 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64c14311-b527-4a63-ad21-a4e8693e24dc) + ) + (wire (pts (xy 218.44 132.08) (xy 218.44 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ce6fcbd-1912-4558-b349-0f3745ae37bf) + ) + (wire (pts (xy 218.44 81.28) (xy 218.44 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a84c203-d2be-49f5-a6b3-451a4f02fff6) + ) + (wire (pts (xy 237.49 157.48) (xy 237.49 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c2a95e1-fd58-450b-b522-47fe1b302433) + ) + (wire (pts (xy 199.39 135.89) (xy 199.39 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fd409cd-f34e-424e-9e58-fcd905c77a6f) + ) + (wire (pts (xy 218.44 237.49) (xy 199.39 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8027fbec-f96e-4143-b0f6-82ad4bf76a15) + ) + (wire (pts (xy 237.49 262.89) (xy 199.39 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80daadf3-110a-43fa-9bae-1f43db651d61) + ) + (wire (pts (xy 237.49 114.3) (xy 199.39 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82645e49-9ca5-4fb4-8342-fc9eeda6d127) + ) + (wire (pts (xy 199.39 114.3) (xy 199.39 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87e7167d-4985-4831-b429-452ca497296b) + ) + (wire (pts (xy 205.74 177.8) (xy 210.82 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a43f668-ee48-43ee-85c3-e82cdeb8ffea) + ) + (wire (pts (xy 237.49 213.36) (xy 199.39 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f8e927b-d0a4-47ea-bc88-6b0a78bb3657) + ) + (wire (pts (xy 250.19 203.2) (xy 250.19 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91dc2ae8-ff8b-47e4-8afc-a9846118bb0f) + ) + (wire (pts (xy 205.74 76.2) (xy 205.74 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91e47be8-c7d0-43d7-b3a5-a03a57826a65) + ) + (wire (pts (xy 199.39 185.42) (xy 199.39 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94d65e19-eb52-40b2-b546-3e117f48fdd5) + ) + (wire (pts (xy 237.49 106.68) (xy 237.49 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96e2657b-118a-44a9-b6e7-31e45d716fd5) + ) + (wire (pts (xy 245.11 127) (xy 250.19 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97a328b3-71f8-49c6-be2a-657de5aa23f5) + ) + (wire (pts (xy 205.74 228.6) (xy 210.82 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f410a7f-3cab-4a62-9f5e-701ddbb83bbb) + ) + (wire (pts (xy 245.11 76.2) (xy 250.19 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ffa493a-5c8b-4c32-becf-80671cfe0af9) + ) + (wire (pts (xy 245.11 228.6) (xy 250.19 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0614497-4694-450d-bc33-627d9d91b9d5) + ) + (wire (pts (xy 199.39 67.31) (xy 199.39 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6dbe974-a8fa-4dcd-bc67-7b9f6879cbb2) + ) + (wire (pts (xy 218.44 233.68) (xy 218.44 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae48839a-2f4f-43bd-9daf-d79ea6535baf) + ) + (wire (pts (xy 250.19 101.6) (xy 245.11 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b03043e3-3286-4870-8078-3acfbb186106) + ) + (wire (pts (xy 205.74 76.2) (xy 210.82 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1780b85-0c2a-43f7-876e-9c53d397b635) + ) + (wire (pts (xy 218.44 185.42) (xy 199.39 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1862683-ed90-44c8-a9a9-95b4e4444979) + ) + (wire (pts (xy 218.44 83.82) (xy 199.39 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b326b017-aae9-4905-b5ac-5e1f5ccb9336) + ) + (wire (pts (xy 148.59 59.69) (xy 148.59 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be856b21-c25f-4fcf-a3ac-1b5b47be9a35) + ) + (wire (pts (xy 250.19 228.6) (xy 250.19 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfe7d68c-8ba7-4d6a-bff2-dbc58f5c86ce) + ) + (wire (pts (xy 199.39 83.82) (xy 199.39 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c668339c-2731-4c88-bba0-87ec2abf652c) + ) + (wire (pts (xy 172.72 76.2) (xy 205.74 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7cc47f0-4076-4f10-9e36-8e9d4f5b964a) + ) + (wire (pts (xy 205.74 177.8) (xy 205.74 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cccbe8b5-f910-4b67-9b8f-ce2a943b0c92) + ) + (wire (pts (xy 199.39 165.1) (xy 199.39 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdb53654-5070-42c6-b90e-29e5add21c5e) + ) + (wire (pts (xy 127 59.69) (xy 148.59 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d55016a1-6b0a-48e9-aea0-34a64a2f812c) + ) + (wire (pts (xy 171.45 67.31) (xy 199.39 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e37f731f-5769-4d8d-911a-24bb660fa52f) + ) + (wire (pts (xy 199.39 237.49) (xy 199.39 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e74ad86b-499f-4e01-a045-d565947ae0ec) + ) + (wire (pts (xy 210.82 203.2) (xy 205.74 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8d6e837-2c78-475b-9d45-df6099fc79df) + ) + (wire (pts (xy 250.19 177.8) (xy 274.32 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef0b0419-0825-4213-a667-5e0ccbe04cd7) + ) + (wire (pts (xy 199.39 165.1) (xy 237.49 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2ad49f2-7843-44c2-9d76-d4841b1a15e6) + ) + (wire (pts (xy 205.74 127) (xy 210.82 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9f77c03-aa07-43d8-aabc-7eb371c0f45e) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 105.41 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06f69270-4701-427a-bae9-21b202d455c8) + (property "Reference" "U2" (id 0) (at 105.41 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 105.41 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bacd3512-99d5-466d-9dcf-78ba5242f267)) + (pin "2" (uuid 7712d818-2e23-471d-834e-58760b8c9fdf)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 237.49 101.6 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0b05dc8e-c8ec-4ad7-aea8-52b9f97e0cea) + (property "Reference" "X5" (id 0) (at 235.585 92.71 0)) + (property "Value" "TRISTATE" (id 1) (at 235.585 95.25 0)) + (property "Footprint" "" (id 2) (at 237.49 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 237.49 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b2d0dd4f-0227-4d37-87c1-697fc8303995)) + (pin "2" (uuid 7c14a0ed-d4cd-49f2-8122-631cd99b7778)) + (pin "2" (uuid 216cd8d3-2053-4587-a986-26deb42c7ba1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 237.49 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 10a37778-bf65-483c-b81f-48e8a6f70884) + (property "Reference" "U9" (id 0) (at 237.49 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 237.49 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 238.76 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 238.76 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4af1a03a-2aae-4d9c-96bd-c86e97abe527)) + (pin "2" (uuid 20a35323-0253-42fc-aee3-849e5534178d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 166.37 228.6 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1a467860-81d9-45b0-94dd-ca92539fc86a) + (property "Reference" "U1" (id 0) (at 167.005 223.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 167.005 226.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 166.37 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e4b5082-4f28-44bf-be21-ddac77767d82)) + (pin "2" (uuid fb5f6b80-359c-41de-800f-0b6d4e81ec0a)) + (pin "3" (uuid 9d827b43-d03f-4edd-84f6-13b2126f324f)) + (pin "4" (uuid b2b28894-f7be-4346-9d90-f9542dd56ef5)) + (pin "5" (uuid 62f82eb5-b3d5-4e4d-8d8a-1b7208d9af72)) + (pin "6" (uuid f5aee434-7a09-47e0-b9d9-cfe21686e2f3)) + (pin "7" (uuid 51dc5504-0f76-40e7-936a-647171a9f975)) + (pin "8" (uuid 57664ce7-1165-496c-8a56-6738416e30b5)) + (pin "9" (uuid 354b5ecc-925c-4858-8291-c9a5ab02e288)) + (pin "10" (uuid f018cf65-9e02-4a31-9c7a-3778b3ddaa11)) + (pin "11" (uuid ff810aba-926b-4567-93a2-0e8373f18937)) + (pin "12" (uuid 121e7159-8739-4b82-b711-2f06b6e2f985)) + (pin "13" (uuid 93ff6af7-5811-40ee-9574-491bb3564f38)) + (pin "14" (uuid d70468c8-f2df-4336-a86e-233860a4e82c)) + (pin "15" (uuid a5cc513e-1fc0-49f3-8fef-d0aaeec4e399)) + (pin "16" (uuid 5ea2746c-f78d-4ae0-a25a-826f76fe5eea)) + (pin "17" (uuid dcd452df-697b-476d-af0f-e63021608835)) + (pin "18" (uuid 406539c2-b7b0-4025-96b1-9d389fe54bd1)) + (pin "19" (uuid a0a47360-70f6-4b6c-b602-d904cf27aa9a)) + (pin "20" (uuid 3eb667b6-41f4-48ae-8c88-f3f7d0901649)) + (pin "21" (uuid 557243d4-6ac5-4128-bbbd-da43c4985ffa)) + (pin "22" (uuid be0d13f8-3c3a-45f4-9227-6359f34a6ce2)) + (pin "23" (uuid 7df5337e-2798-488c-9431-f07cd3f31162)) + (pin "24" (uuid a83270c3-f617-4f80-b2b7-4e95b88f342b)) + (pin "25" (uuid d4c0fa04-47a4-4d26-b109-a00a741bab87)) + (pin "26" (uuid e6164fda-e187-4d57-85da-d8862c0ee77c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 218.44 152.4 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 201357a8-e52b-4e8d-a18e-4fb01821d6f1) + (property "Reference" "U6" (id 0) (at 218.44 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 218.44 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 217.17 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3cc6af94-a8b0-4646-8421-c43f2377c83f)) + (pin "2" (uuid 8a97c646-bd69-43b2-8be3-3e687f1eaa26)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 280.67 177.8 0) (mirror y) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 22291a41-8889-474c-9692-81e3f483a5d5) + (property "Reference" "U1" (id 0) (at 284.48 177.165 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 284.48 179.705 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 280.67 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 280.67 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2fc5d495-170d-43ee-8046-24a0da5762ca)) + (pin "2" (uuid 38836a77-8a74-4c8a-b76a-4a01190e18a1)) + (pin "3" (uuid 706653da-7238-40e6-975c-5258ef7b0476)) + (pin "4" (uuid f7e8ed47-7f84-4934-8cda-91661dc0de7c)) + (pin "5" (uuid 9881f5ac-a408-4fdd-80ff-7196c84de492)) + (pin "6" (uuid b950b64e-619a-4faa-ac3c-95a998d72cca)) + (pin "7" (uuid 2e69dd74-0e3f-4071-a76f-a05d61d998bf)) + (pin "8" (uuid 6d7109c3-ba97-41f9-9c02-9747611d604b)) + (pin "9" (uuid 9230459c-9a47-4056-adad-62ca680b8236)) + (pin "10" (uuid 47686125-5a74-4335-b423-8c5eae6dcc19)) + (pin "11" (uuid f1deee5e-dcf4-4e9c-80f8-b86f3f8d84a5)) + (pin "12" (uuid c9ffcff7-76b6-4f10-850d-d78a5ca8ff79)) + (pin "13" (uuid 2f79e55d-bf78-4358-a046-46f55e120cf0)) + (pin "14" (uuid 98b584c7-6df0-4e8b-bc12-237260cabc7b)) + (pin "15" (uuid cd28903e-be03-4844-83bf-bd15987da51c)) + (pin "16" (uuid 818ddd36-67bd-4476-9edc-43780e0482a5)) + (pin "17" (uuid 4a726806-3cc1-45a7-9ab8-c6c598d259aa)) + (pin "18" (uuid 884d556a-44cc-4bea-b27f-dc241b228e1b)) + (pin "19" (uuid d398bc23-573e-4016-97b5-71824ddae52e)) + (pin "20" (uuid 1334b04f-4dd3-4446-91b3-985aa2a46e6d)) + (pin "21" (uuid 4c19df67-a8d1-4d6b-b93e-f392a91b900a)) + (pin "22" (uuid 1cb6a946-fa67-4f46-ae92-9a733a5a8588)) + (pin "23" (uuid 6142160c-fb00-40c0-8a27-6879b481a8e3)) + (pin "24" (uuid f5402779-9ad1-49e7-80cc-e62e14d2e190)) + (pin "25" (uuid e616b28f-8081-4cb5-bf9e-130af6a5706f)) + (pin "26" (uuid 6683a2ca-aa7f-4967-b31f-02a0bb894ce3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 160.02 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3682b6b4-969c-4541-80d7-cd23f6951acb) + (property "Reference" "U4" (id 0) (at 160.02 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 160.02 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 160.02 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 160.02 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4e3b5ec9-b648-49ae-a5cf-9b2151c02463)) + (pin "2" (uuid 2930c86c-214b-4d4f-a624-825e58229d83)) + (pin "3" (uuid 69dcf201-68c3-4c1e-832e-d99ffa705514)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 237.49 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c373766-25b8-402d-9b8c-a3de1e5aa50e) + (property "Reference" "U11" (id 0) (at 237.49 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 237.49 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 238.76 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 238.76 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e58747b-2293-4079-a086-cfb8bb4d5a63)) + (pin "2" (uuid bda600d2-127a-4f68-af29-dadcb9a45c51)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 218.44 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 546b04cd-674a-48cf-8f10-1bc217037c68) + (property "Reference" "X1" (id 0) (at 220.345 67.31 0)) + (property "Value" "TRISTATE" (id 1) (at 220.345 69.85 0)) + (property "Footprint" "" (id 2) (at 218.44 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 218.44 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 44f38863-ca35-4a25-8ebe-42ae5a36a050)) + (pin "2" (uuid 78c33c89-bfb7-4a9a-b4d9-3c64d40c5bab)) + (pin "2" (uuid 6fcf16c8-466b-49e1-9fbe-e998feac9f40)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 280.67 228.6 0) (mirror y) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 55b46cf9-83f4-4b60-819e-07e27740e653) + (property "Reference" "U1" (id 0) (at 284.48 227.965 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 284.48 230.505 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 280.67 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 280.67 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5136890c-27ca-4ff8-a5e4-f45366e75fe9)) + (pin "2" (uuid 0c8259d8-9398-4c05-9d38-0fd6e0b1e413)) + (pin "3" (uuid 48420900-0ac7-4d0b-8bf9-9b499d7ba3b3)) + (pin "4" (uuid 089168e8-0b62-4b6d-b998-5e9d06e0b35c)) + (pin "5" (uuid 817578f9-aba1-44fe-abde-e569035bf7a1)) + (pin "6" (uuid bfac37ea-3a3e-4747-ac52-ac672fcc5c9e)) + (pin "7" (uuid fe1ed182-fd7c-45ae-8ca3-0d688d95e1c3)) + (pin "8" (uuid 5cee0ee7-fa66-42d4-b09b-2350b244451f)) + (pin "9" (uuid 4f63c451-8cf7-4441-b3e1-6b42395a974d)) + (pin "10" (uuid d43cafee-9293-4dc3-8650-e15e19133410)) + (pin "11" (uuid 255f88b8-6aa2-46c6-babc-315d55bc51c4)) + (pin "12" (uuid 9d1e3d96-e35d-46d6-a234-a54218765c7d)) + (pin "13" (uuid 810d4c44-0221-40b4-ab4d-0de24fab95c3)) + (pin "14" (uuid fd2bc879-8ff5-4b0e-8649-3f76f52a0a57)) + (pin "15" (uuid 9952ba2d-d53c-4466-9ead-dbfac023645d)) + (pin "16" (uuid 73610d66-21e7-46cb-b313-5d03509b19f3)) + (pin "17" (uuid d4980d1e-75fc-4118-b978-c94965157ffd)) + (pin "18" (uuid 70e2ca61-3e70-4d6f-9f4e-495e035a53ad)) + (pin "19" (uuid 2bf46e55-f8f9-4ef5-b339-1e84340d722b)) + (pin "20" (uuid d946b803-06d8-4bf2-846e-73989c315a60)) + (pin "21" (uuid 358dd212-fd3d-429f-8dc5-6b8be212524a)) + (pin "22" (uuid 365de8a1-4842-4900-a341-4ab006cbc85d)) + (pin "23" (uuid 429a4165-6b9b-4dd3-b6b6-411fb7f8ebf2)) + (pin "24" (uuid 16a0f748-27e3-4eae-ae73-fed57fdf6077)) + (pin "25" (uuid 3d10d177-600f-401d-b685-9ee7b4138ab0)) + (pin "26" (uuid 86443947-503b-4cad-91a1-7ada87235f91)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 91.44 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a703a40-744c-45eb-ae5c-68e48604c2a0) + (property "Reference" "U1" (id 0) (at 92.075 54.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 92.075 57.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 91.44 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 91.44 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e47dd38-a4da-4f4b-9c95-5d00671eb495)) + (pin "2" (uuid 5979e9c2-e707-4281-93ff-e5fbc93f4e94)) + (pin "3" (uuid 068d1a34-9fc5-4d73-a954-906122b54303)) + (pin "4" (uuid 9926b760-f73e-4a04-a730-c511db05fef0)) + (pin "5" (uuid dadc0335-99d5-49c1-9985-f37f5c2b0baa)) + (pin "6" (uuid 4ce1875b-85ac-42da-a151-f2060a344888)) + (pin "7" (uuid 50ef1473-d358-4d26-9e08-ae9d04d38b90)) + (pin "8" (uuid b51ce2d0-1f70-4e0c-bd54-83adef6ca4ec)) + (pin "9" (uuid e2f136bf-0b2b-47fe-936f-a30317ce4acd)) + (pin "10" (uuid e6ecfea6-3a43-4aab-9c3f-67a6b19733af)) + (pin "11" (uuid 97cbe1dc-7264-4026-a5fb-f1c92972a4a3)) + (pin "12" (uuid ed42379b-7ac4-4ce1-a9aa-8c57851e0e06)) + (pin "13" (uuid b882518a-990b-4e73-bdb4-e8502cd41cf7)) + (pin "14" (uuid 070e7953-de35-4d4c-b982-0ea7c912d6e4)) + (pin "15" (uuid d74a8a33-220c-407f-a8c4-31251f2064bc)) + (pin "16" (uuid e820b040-476b-4b0a-8c5e-4f3ba932f230)) + (pin "17" (uuid 353c59ad-4fc8-4094-a61f-19e5df67c91d)) + (pin "18" (uuid 5bf36e51-617f-4158-be13-d72eb6d525af)) + (pin "19" (uuid cbd292e3-745d-40ae-9da5-b8b1fc970c5e)) + (pin "20" (uuid 783526d2-5e45-45da-97a7-4456a6ed9622)) + (pin "21" (uuid 13535eff-9f78-4814-8273-8245f0140a69)) + (pin "22" (uuid cd114012-a350-4516-859c-d92c8a5dffd4)) + (pin "23" (uuid f84b550b-5124-4e44-8084-cb6c4b080d95)) + (pin "24" (uuid 0625a89d-1620-4ebf-b0b7-15982b9e4075)) + (pin "25" (uuid b4e5f34f-928b-48a0-9e67-f5bc021ba6f8)) + (pin "26" (uuid 1a4f94c7-8591-4b19-b912-724a294d8782)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 218.44 228.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e94031f-fd5e-434d-b7e1-f6752cb674de) + (property "Reference" "X4" (id 0) (at 220.345 219.71 0)) + (property "Value" "TRISTATE" (id 1) (at 220.345 222.25 0)) + (property "Footprint" "" (id 2) (at 218.44 228.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 218.44 228.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c1ee5131-27ae-4194-bb1e-33ac8314e290)) + (pin "2" (uuid 0e374a32-4c9c-499e-9ffb-8e662449b96c)) + (pin "2" (uuid 81cafbf7-52ba-4885-9449-e96abd38b9db)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 218.44 252.73 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 83a85f83-21f0-45db-b036-57e4491e9ec2) + (property "Reference" "U8" (id 0) (at 218.44 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 218.44 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 217.17 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 254 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5b004e8b-f373-47b4-a987-9940f8b4d9ec)) + (pin "2" (uuid 8bcf8351-4bfe-4795-8dc1-4352fbc45657)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 218.44 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f0dbab5-2ea2-486c-af1d-806557d01ab6) + (property "Reference" "X3" (id 0) (at 220.345 168.91 0)) + (property "Value" "TRISTATE" (id 1) (at 220.345 171.45 0)) + (property "Footprint" "" (id 2) (at 218.44 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 218.44 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2e948537-9569-4a15-bd59-8017a9b2abfa)) + (pin "2" (uuid 3cd6731e-4b0b-49cc-9a24-7707824ce00b)) + (pin "2" (uuid b99f1ad5-ad11-41f3-8aaf-6d9a1a9e8a2c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 218.44 203.2 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a30fd921-a33a-4d33-a7b9-da812d7e45d4) + (property "Reference" "U7" (id 0) (at 218.44 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 218.44 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 217.17 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a614747-dbd0-4fb0-87da-5df588588aad)) + (pin "2" (uuid 9efcbc5c-7e0d-42b7-b474-826111bbf8ef)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 166.37 177.8 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5dce4f9-b5d1-4d1a-9570-e524408847ed) + (property "Reference" "U1" (id 0) (at 167.005 172.72 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 167.005 175.26 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 166.37 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 18dd48e3-2d4e-4d73-9588-2f3188006bd0)) + (pin "2" (uuid 5a8f0085-c442-4a6b-b2b5-56996c7f88c4)) + (pin "3" (uuid a15a7ae3-4c3c-44a0-8aaf-dca4b1757d5e)) + (pin "4" (uuid 6e3a2e0d-97a9-453b-9752-836f1af918c1)) + (pin "5" (uuid 8261d51b-f0db-45d6-b961-87f347dbbc24)) + (pin "6" (uuid d81b1228-8af7-4788-975f-35083199e171)) + (pin "7" (uuid 972de2dc-715a-45bf-984f-bdc12675e65a)) + (pin "8" (uuid 1869ae35-0ed9-44c3-bd57-00c79664e68c)) + (pin "9" (uuid 8192965d-03ad-4ccc-b9bc-ddddf2ac646e)) + (pin "10" (uuid 058902ab-5d78-42bb-b1a7-3fa87fb0f45e)) + (pin "11" (uuid fa91e687-9a58-44c3-89c9-f16e0c616665)) + (pin "12" (uuid 93005ce7-5836-4873-ac60-ca2962e76e89)) + (pin "13" (uuid 16c48900-20ea-42cd-b9aa-0d946661fe67)) + (pin "14" (uuid 25ce58a3-72d4-467d-8410-5d1a853037d1)) + (pin "15" (uuid 3056b14d-58dd-48b3-8f89-303384cae119)) + (pin "16" (uuid 596be8fb-82d0-4a75-8f45-b867c7043e7a)) + (pin "17" (uuid 10e5b5fc-d1a8-48dd-ad5a-fb03932d6119)) + (pin "18" (uuid 2edc395b-44e0-4958-b7b6-747ae0c5d7de)) + (pin "19" (uuid 8a1931c5-d6f3-485a-bffb-77761b3ecfb7)) + (pin "20" (uuid 3ce29c29-6e2e-4f48-9e7c-1cf48b33bb51)) + (pin "21" (uuid 4e21e5b2-407c-4fe3-8668-d117b1dc106f)) + (pin "22" (uuid dbd68a1e-61bd-4ad2-b927-07c7eed61e90)) + (pin "23" (uuid b06cbf09-2e5d-4637-a565-14380abf1da6)) + (pin "24" (uuid 107dacbd-fa2b-4ac1-8fd7-e0e7502c2372)) + (pin "25" (uuid ba04e896-4212-4d16-9490-a637b0adfd96)) + (pin "26" (uuid eee27cf5-965f-4bb0-859b-a58368e58d6e)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 237.49 252.73 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a6a6fc67-e2db-4f72-ad0a-327c9cfe50b5) + (property "Reference" "X8" (id 0) (at 235.585 243.84 0)) + (property "Value" "TRISTATE" (id 1) (at 235.585 246.38 0)) + (property "Footprint" "" (id 2) (at 237.49 252.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 237.49 252.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c496739b-3e29-490e-9e84-1d6405b700aa)) + (pin "2" (uuid f3a789b9-0a42-4661-a349-2ed15fe98d13)) + (pin "2" (uuid 7d44aad9-d500-4344-9532-d0af05071b16)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 91.44 74.93 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a93ff117-64c0-426c-a4c6-a6a431041cd7) + (property "Reference" "U1" (id 0) (at 92.075 69.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 92.075 72.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 91.44 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 91.44 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid abda8685-7f4f-4935-ac69-2d2eede318a7)) + (pin "2" (uuid b213b808-58e0-47d2-8dcb-467742bf0464)) + (pin "3" (uuid 878745be-b430-4cde-9c4e-a4337f2ed65a)) + (pin "4" (uuid 5fe433c2-15d5-47c6-9cda-baeec5fa8b15)) + (pin "5" (uuid 57e5e1cb-cf48-40a4-89fa-cb89b50bd796)) + (pin "6" (uuid ca91a595-ce8b-405b-a8c1-0c4ac0aea307)) + (pin "7" (uuid e9b92ce2-1cc0-410e-a1d6-d648b08c8701)) + (pin "8" (uuid a9409d8d-10b2-41bb-94af-3f9ed184e425)) + (pin "9" (uuid 3358d635-4553-42ad-b97d-898f79b5fdc5)) + (pin "10" (uuid 085422c5-0bcd-429c-9ae0-a1d2699ba520)) + (pin "11" (uuid 52d31d52-8aad-4f5d-9364-aa0a8e2e5666)) + (pin "12" (uuid e1c46e9c-dd90-48b3-b780-06c752ca6d95)) + (pin "13" (uuid 96b07eb6-fc22-4119-9a29-d8e2a450ddd1)) + (pin "14" (uuid 21f45015-e34f-4d82-a091-252b017fed49)) + (pin "15" (uuid 2a040c0b-82b2-47ff-a674-52642ac146ef)) + (pin "16" (uuid 8d5146ed-65db-49c1-92f2-1f7898396fbc)) + (pin "17" (uuid e265cb50-aec8-4333-a28b-3c0f1658a28c)) + (pin "18" (uuid e33a5118-a75d-42cc-8bf0-2810c41196e6)) + (pin "19" (uuid cddd4b2e-5855-437a-906f-2d30d0d8bab2)) + (pin "20" (uuid 5606dbca-a0e8-4f61-b805-b0d1eca5713f)) + (pin "21" (uuid ef2c2839-1be1-4be4-b554-d7bb354f1fa5)) + (pin "22" (uuid 203872e3-69c9-4be6-a522-05405b0e56dd)) + (pin "23" (uuid b1f930ca-7539-444b-89b2-f52b75cca25c)) + (pin "24" (uuid 41666c41-d0e5-4dcd-bb99-db398af55941)) + (pin "25" (uuid 9fd3f605-e10c-4321-a638-32b95d52091f)) + (pin "26" (uuid 58e74ccd-d844-4693-8eec-890f21025855)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 280.67 127 0) (mirror y) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b321444d-19cc-4971-bac1-1dc04debef52) + (property "Reference" "U1" (id 0) (at 284.48 126.365 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 284.48 128.905 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 280.67 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 280.67 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 91dfb72b-85c7-4a63-9841-dca3c7978efc)) + (pin "2" (uuid 9610b15b-5715-4512-81c8-aa2e76cdfeb4)) + (pin "3" (uuid 3af80c20-9f8a-443e-8002-e727cbe010d2)) + (pin "4" (uuid 33f95fec-479b-4003-8feb-a34b8e6f4128)) + (pin "5" (uuid 99996515-592d-4b07-b73a-ddd851e52c44)) + (pin "6" (uuid 65a2bbe1-fd64-4793-ba2e-a6ec7a0fded1)) + (pin "7" (uuid e457cc01-1a27-465c-97b2-35695229122b)) + (pin "8" (uuid 11838db7-8c3f-4243-a603-67691ae42a20)) + (pin "9" (uuid f9f48d47-62cf-468e-8c47-77482689ee87)) + (pin "10" (uuid 640b5eff-905a-4202-a9a0-4270b5b101f6)) + (pin "11" (uuid c9b7fae1-be1f-47a7-b6af-224670330982)) + (pin "12" (uuid faca717f-7ada-49f2-a6a5-71df05d258a2)) + (pin "13" (uuid a50f5cc6-0f23-4d3d-8d19-50ebe7bbb802)) + (pin "14" (uuid 9b5b2b96-7a66-411f-9a8b-2958f5af7840)) + (pin "15" (uuid 0e837a99-3e1c-4385-bf53-0e3ea61307eb)) + (pin "16" (uuid 65844eac-6a2e-4dc8-8ecc-8a929e281e16)) + (pin "17" (uuid 7fd9989e-b712-44a5-9c07-1915bcf96b1a)) + (pin "18" (uuid 30856b5b-861c-4ebe-b8b4-be66bb69f33f)) + (pin "19" (uuid 451c0a1b-538e-409f-a584-2ddf395cd401)) + (pin "20" (uuid 2f761cc6-4f7a-421d-b530-e7a5528ba948)) + (pin "21" (uuid 2a90eebb-c769-4130-8850-a0776b1c25b2)) + (pin "22" (uuid 9067698f-29d9-42e4-a6ac-3b2d0ff3e2b6)) + (pin "23" (uuid 38f59a0a-9206-4395-afac-b304efe49153)) + (pin "24" (uuid 7c691454-f1fe-4bc1-816a-67f183163468)) + (pin "25" (uuid a7782462-539c-4e72-95fc-c2585a958829)) + (pin "26" (uuid 9c0d276f-0386-47d1-875f-eea6db05285b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 237.49 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c299d337-c43d-4ddc-bfc4-c0b83703b951) + (property "Reference" "U10" (id 0) (at 237.49 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 237.49 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 238.76 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 238.76 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 422eae97-2e04-4337-bea6-601e6190b8f5)) + (pin "2" (uuid feb1b623-1c36-47ce-b28f-dd4a4af0b195)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 237.49 152.4 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8e6593e-ead6-42c2-b404-34458744d843) + (property "Reference" "X6" (id 0) (at 235.585 143.51 0)) + (property "Value" "TRISTATE" (id 1) (at 235.585 146.05 0)) + (property "Footprint" "" (id 2) (at 237.49 152.4 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 237.49 152.4 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 77426109-00d0-4c30-9820-f2fb8ead640d)) + (pin "2" (uuid 58823868-00bf-440a-b775-9574f7587cd7)) + (pin "2" (uuid 22045bdc-9def-4ade-b5e5-9e7ba56f5a1a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 166.37 127 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf2720ef-f6d0-4f1a-bce2-11a4742cd265) + (property "Reference" "U1" (id 0) (at 167.005 121.92 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 167.005 124.46 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 166.37 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d6eb82e1-45b3-44d2-9e11-1bcfa93c78a4)) + (pin "2" (uuid 2fc34c16-0c91-4f03-8483-49db8eda931e)) + (pin "3" (uuid c53a3d0f-bb0d-4d56-9118-84a1c5df9d03)) + (pin "4" (uuid 10c82639-e8b8-4638-8c40-41f62ff68139)) + (pin "5" (uuid 6453a617-ce94-4b1b-9b66-f9a88efa1d5f)) + (pin "6" (uuid e05ba7ae-5de1-44eb-911f-740d31833654)) + (pin "7" (uuid 4c8c4d6d-d531-4317-a778-483fe4c24649)) + (pin "8" (uuid b4bdb597-743c-46e9-a359-6ce9028a99c7)) + (pin "9" (uuid 49d42282-ed8d-4356-a2cd-b77e0bf635de)) + (pin "10" (uuid 5f13839c-b2fc-484c-a5f3-2e093db2e0b9)) + (pin "11" (uuid cd5a6ca8-fcc9-452b-983a-d5aa6eac7fb6)) + (pin "12" (uuid cca16bfc-8edb-4073-a610-3c69490f1ccd)) + (pin "13" (uuid 96f3f153-23a9-419e-949e-35aedbf7b330)) + (pin "14" (uuid 47c64869-a250-4ae1-82b2-61900d376ac5)) + (pin "15" (uuid f7473cf5-2f3e-486f-8eb7-49867859038b)) + (pin "16" (uuid 3e88057d-d7f9-43c3-a6f6-01ac6d49dc9e)) + (pin "17" (uuid 87b81c80-03ef-4e51-a83e-378ee83d96c2)) + (pin "18" (uuid c53d6474-c883-4ab4-8e9c-894b6f0d9b16)) + (pin "19" (uuid d9d37871-9eae-46e8-87ee-1bb550074ce8)) + (pin "20" (uuid 0808a0de-d4f8-4e68-94a8-2eb89ab25e11)) + (pin "21" (uuid 4f488a8f-d4a4-46e8-b37d-0eeb0114622b)) + (pin "22" (uuid c39d93d4-01a5-4abb-a611-72e729a27227)) + (pin "23" (uuid 2857d75a-4330-45f0-8960-723ebdba457a)) + (pin "24" (uuid 7abf4bc2-70cb-4168-98a9-4e1336ee85f9)) + (pin "25" (uuid 5d989dc2-cfa2-4d5d-a89e-5e7af55e5776)) + (pin "26" (uuid 34f12a5f-4dd4-4ca9-83f6-6cbf238df80e)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 237.49 203.2 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d31e6001-14b4-4190-8e1b-671453528c0e) + (property "Reference" "X7" (id 0) (at 235.585 194.31 0)) + (property "Value" "TRISTATE" (id 1) (at 235.585 196.85 0)) + (property "Footprint" "" (id 2) (at 237.49 203.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 237.49 203.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6aef724d-e5a1-446a-ad14-e294e0257b3c)) + (pin "2" (uuid a20eb76d-bb90-4bc6-ac2f-e884022a2367)) + (pin "2" (uuid e28c4a9e-7c74-4a94-9907-2281f7907cb0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 237.49 228.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d522e6de-712e-4314-92ac-5417a03d1983) + (property "Reference" "U12" (id 0) (at 237.49 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 237.49 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 238.76 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 238.76 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ed16e1b-33fc-4b2f-a272-1945bd9bc040)) + (pin "2" (uuid 3e87a4a3-4fe5-4118-89fe-9b2395b0dcc2)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 218.44 101.6 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e39ab781-4dc7-46fc-95aa-5857fbbabd2b) + (property "Reference" "U5" (id 0) (at 218.44 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 218.44 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 217.17 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5a55af64-5179-4b42-9f7d-303075b807c1)) + (pin "2" (uuid 43763819-1de0-46dd-a4a0-f915719382ad)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 166.37 76.2 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5af195a-e05f-4ab6-b668-c09829a292db) + (property "Reference" "U1" (id 0) (at 167.005 71.12 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 167.005 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 166.37 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c3a6342c-f555-4b43-9b57-7bb857ba41f3)) + (pin "2" (uuid 48fa6dc3-60d1-418c-ba3f-ef0c922ec1bf)) + (pin "3" (uuid 5cd0c1fb-d67d-41dc-8d8b-e24da337e8ac)) + (pin "4" (uuid f9582b0f-967b-4956-9b00-0bf4f263c329)) + (pin "5" (uuid 371f075d-e318-4cbc-a539-aa7613b97e45)) + (pin "6" (uuid 8a98ab14-bafb-4300-b87e-c91a87ba5090)) + (pin "7" (uuid 655920af-d424-45b5-9129-f4728a0bc874)) + (pin "8" (uuid 48545df9-d4d7-454a-86cb-5692036eb2a5)) + (pin "9" (uuid 66d1be22-5bd4-42d4-b934-03b7791600d5)) + (pin "10" (uuid 71d946f0-7464-4681-96a2-0ed91e2e885e)) + (pin "11" (uuid 42514c9f-7ee6-49ff-bc48-a8116302ccb2)) + (pin "12" (uuid 92ae7e97-56d9-4d4c-afac-3c9e148625c8)) + (pin "13" (uuid 14c35aac-6248-4171-9c0d-f59d4ca58784)) + (pin "14" (uuid 3cfdda25-237a-4d90-9dcf-3f98d4713577)) + (pin "15" (uuid b59389d8-17a7-44b2-8b60-ad7e1a3ccf2d)) + (pin "16" (uuid d5fec33f-6545-49f2-9ffd-0a8af3edc004)) + (pin "17" (uuid 565b86fb-ad86-4636-80de-0d15763dacca)) + (pin "18" (uuid f3665319-1884-4cc6-8784-124f7b36e6a3)) + (pin "19" (uuid 76e839e9-c8a7-4bbb-8484-eadc9754a17c)) + (pin "20" (uuid 8a66c586-3916-4381-82be-6a1edf9b6193)) + (pin "21" (uuid ef99a77a-91f1-4e3e-a538-5dd6d64daae3)) + (pin "22" (uuid 5cde73c6-4df4-4c85-a8b2-05772712abb1)) + (pin "23" (uuid 82cb57ea-4c18-48e1-ac5b-4576e5ec3932)) + (pin "24" (uuid 4edc9fc1-a352-4e0c-9583-9488e273a7af)) + (pin "25" (uuid 1a16ce34-88a9-47a8-b5c9-63c5fdffe37a)) + (pin "26" (uuid 04304243-4067-48a6-aa7f-5f35c2b9304b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 280.67 76.2 0) (mirror y) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9f81e15-ffda-402b-b089-4161626a1dc2) + (property "Reference" "U1" (id 0) (at 284.48 75.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 284.48 78.105 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 280.67 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 280.67 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 83a12b75-d435-435e-af64-9c9633a6270f)) + (pin "2" (uuid 9c94b80e-b4c4-4257-9f7a-6deb26c41ca9)) + (pin "3" (uuid 7d793a5e-e63c-43ed-bc5c-1ad83f0355ba)) + (pin "4" (uuid 8bce6087-ed49-4840-a135-f2b2ca3796a1)) + (pin "5" (uuid f6881cbd-b025-4d73-a428-6ebf5e6bc731)) + (pin "6" (uuid 2f5fe9d2-0ff2-46a1-b8e7-55879849f92c)) + (pin "7" (uuid aedcb01c-554e-4714-8a82-db3a2ea907bf)) + (pin "8" (uuid 05bd9bd9-99ec-463b-9381-6d2745bc31b8)) + (pin "9" (uuid b51227b6-7235-4399-90f0-d63730ad33b7)) + (pin "10" (uuid 762e7e1f-6126-4eab-982c-ed0f8ac60178)) + (pin "11" (uuid ece57ff3-e2e7-4503-971f-b9ef4627c1cf)) + (pin "12" (uuid f4d04a02-1eed-499a-9d4a-6c7d72bf89fa)) + (pin "13" (uuid db75f5c9-db52-4eb3-89db-8b92e43db02d)) + (pin "14" (uuid a93c7639-5987-4869-a38d-62003abfaa84)) + (pin "15" (uuid af872d2e-fb24-4fad-9968-378021fec0ad)) + (pin "16" (uuid 7cca39a6-528f-4fac-8e6c-a5ac57c586d4)) + (pin "17" (uuid 6156d369-a4ae-479e-8376-205abb8d6bd8)) + (pin "18" (uuid bb82ce4c-2613-4f6e-8e4c-2a70576fb490)) + (pin "19" (uuid d2aa2465-d28e-4076-8360-786409c232c5)) + (pin "20" (uuid 25647e05-c59a-4a05-8af5-67a65c34a965)) + (pin "21" (uuid ed18c4ea-a427-4718-9cb4-edc57ef6b0c7)) + (pin "22" (uuid 9a996650-2e08-471c-84c4-7ada9571bb00)) + (pin "23" (uuid 82547802-0bdd-40bb-814b-1ac637cd65d1)) + (pin "24" (uuid 7cd158bf-152e-4b31-a516-6e41e639b0a4)) + (pin "25" (uuid 547fd143-2535-4e26-a0a3-7b6a95e636e2)) + (pin "26" (uuid 6d86a598-5872-4d5d-aa18-713ad8c35eaa)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 218.44 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f88e6069-41fe-4fdf-af56-dc8b0080d96b) + (property "Reference" "X2" (id 0) (at 220.345 118.11 0)) + (property "Value" "TRISTATE" (id 1) (at 220.345 120.65 0)) + (property "Footprint" "" (id 2) (at 218.44 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 218.44 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 44182bdb-2389-4d9a-9091-a21ed75a6e4a)) + (pin "2" (uuid ab9e6df2-b09f-4202-8dfc-d3575368dbf7)) + (pin "2" (uuid dae5a531-297a-469c-a94d-81144910e1ce)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 110.49 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb2a8ef7-974f-4481-982e-139981d8803e) + (property "Reference" "U3" (id 0) (at 112.395 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 112.395 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 110.49 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 110.49 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 37559277-3de5-498f-b868-5c780207bb41)) + (pin "2" (uuid 039195ac-3645-4abf-adae-cdda5cd1df82)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/6a703a40-744c-45eb-ae5c-68e48604c2a0" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/a93ff117-64c0-426c-a4c6-a6a431041cd7" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/e5af195a-e05f-4ab6-b668-c09829a292db" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/cf2720ef-f6d0-4f1a-bce2-11a4742cd265" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/a5dce4f9-b5d1-4d1a-9570-e524408847ed" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/1a467860-81d9-45b0-94dd-ca92539fc86a" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/e9f81e15-ffda-402b-b089-4161626a1dc2" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/b321444d-19cc-4971-bac1-1dc04debef52" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/22291a41-8889-474c-9692-81e3f483a5d5" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/55b46cf9-83f4-4b60-819e-07e27740e653" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/06f69270-4701-427a-bae9-21b202d455c8" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/fb2a8ef7-974f-4481-982e-139981d8803e" + (reference "U3") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/3682b6b4-969c-4541-80d7-cd23f6951acb" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/e39ab781-4dc7-46fc-95aa-5857fbbabd2b" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/201357a8-e52b-4e8d-a18e-4fb01821d6f1" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a30fd921-a33a-4d33-a7b9-da812d7e45d4" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/83a85f83-21f0-45db-b036-57e4491e9ec2" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/10a37778-bf65-483c-b81f-48e8a6f70884" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c299d337-c43d-4ddc-bfc4-c0b83703b951" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3c373766-25b8-402d-9b8c-a3de1e5aa50e" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d522e6de-712e-4314-92ac-5417a03d1983" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/546b04cd-674a-48cf-8f10-1bc217037c68" + (reference "X1") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/f88e6069-41fe-4fdf-af56-dc8b0080d96b" + (reference "X2") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/8f0dbab5-2ea2-486c-af1d-806557d01ab6" + (reference "X3") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/6e94031f-fd5e-434d-b7e1-f6752cb674de" + (reference "X4") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/0b05dc8e-c8ec-4ad7-aea8-52b9f97e0cea" + (reference "X5") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/c8e6593e-ead6-42c2-b404-34458744d843" + (reference "X6") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/d31e6001-14b4-4190-8e1b-671453528c0e" + (reference "X7") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/a6a6fc67-e2db-4f72-ad0a-327c9cfe50b5" + (reference "X8") (unit 1) (value "TRISTATE") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.sub new file mode 100644 index 000000000..4c5cf5a74 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242.sub @@ -0,0 +1,59 @@ +* Subcircuit 74HC242 +.subckt 74HC242 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ +.title kicad schematic +.include TRISTATE.sub +* u12 net-_u12-pad1_ net-_u1-pad10_ d_inverter +x8 net-_u1-pad10_ net-_u4-pad3_ net-_u8-pad1_ TRISTATE +x4 net-_u1-pad6_ net-_u4-pad3_ net-_u12-pad1_ TRISTATE +* u7 net-_u7-pad1_ net-_u1-pad5_ d_inverter +x7 net-_u1-pad9_ net-_u4-pad3_ net-_u7-pad1_ TRISTATE +* u8 net-_u8-pad1_ net-_u1-pad6_ d_inverter +* u5 net-_u5-pad1_ net-_u1-pad3_ d_inverter +x1 net-_u1-pad3_ net-_u4-pad3_ net-_u9-pad1_ TRISTATE +* u4 net-_u3-pad2_ net-_u2-pad2_ net-_u4-pad3_ d_and +* u3 net-_u1-pad1_ net-_u3-pad2_ d_buffer +* u2 net-_u1-pad2_ net-_u2-pad2_ d_inverter +x6 net-_u1-pad8_ net-_u4-pad3_ net-_u6-pad1_ TRISTATE +* u11 net-_u11-pad1_ net-_u1-pad9_ d_inverter +x3 net-_u1-pad5_ net-_u4-pad3_ net-_u11-pad1_ TRISTATE +* u6 net-_u6-pad1_ net-_u1-pad4_ d_inverter +* u9 net-_u9-pad1_ net-_u1-pad7_ d_inverter +x5 net-_u1-pad7_ net-_u4-pad3_ net-_u5-pad1_ TRISTATE +x2 net-_u1-pad4_ net-_u4-pad3_ net-_u10-pad1_ TRISTATE +* u10 net-_u10-pad1_ net-_u1-pad8_ d_inverter +a1 net-_u12-pad1_ net-_u1-pad10_ u12 +a2 net-_u7-pad1_ net-_u1-pad5_ u7 +a3 net-_u8-pad1_ net-_u1-pad6_ u8 +a4 net-_u5-pad1_ net-_u1-pad3_ u5 +a5 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u4-pad3_ u4 +a6 net-_u1-pad1_ net-_u3-pad2_ u3 +a7 net-_u1-pad2_ net-_u2-pad2_ u2 +a8 net-_u11-pad1_ net-_u1-pad9_ u11 +a9 net-_u6-pad1_ net-_u1-pad4_ u6 +a10 net-_u9-pad1_ net-_u1-pad7_ u9 +a11 net-_u10-pad1_ net-_u1-pad8_ u10 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends 74HC242 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242_Previous_Values.xml new file mode 100644 index 000000000..759bfc379 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/74HC242_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secususd_inverterd_inverterd_inverterd_inverterd_andd_bufferd_inverterd_inverterd_inverterd_inverterd_inverterC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATE \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.cir new file mode 100644 index 000000000..caac1cdde --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.cir @@ -0,0 +1,10 @@ +.title KiCad schematic +v1 Net-_U2-Pad1_ GND DC +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ PORT +U5 Net-_U3-Pad2_ Net-_U2-Pad2_ Net-_U5-Pad3_ d_and +U4 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U4-Pad3_ d_and +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ adc_bridge_1 +U3 Net-_U1-Pad1_ Net-_U3-Pad2_ d_inverter +U7 Net-_U6-Pad3_ Net-_U1-Pad3_ d_buffer +U6 Net-_U4-Pad3_ Net-_U5-Pad3_ Net-_U6-Pad3_ d_or +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.cir.out new file mode 100644 index 000000000..ed8bfe9ca --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.cir.out @@ -0,0 +1,37 @@ +.title kicad schematic + +v1 net-_u2-pad1_ gnd dc 0 +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ port +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.kicad_sch new file mode 100644 index 000000000..5238469a9 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.kicad_sch @@ -0,0 +1,926 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 6fc943a8-97d8-4111-93e9-49bb4a164911) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "DC" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DC_0_1" + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DC_1_1" + (pin power_out line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 111.76 93.98) (diameter 0) (color 0 0 0 0) + (uuid 14ad2087-2eee-431b-8842-3056e26a34e8) + ) + + (wire (pts (xy 111.76 93.98) (xy 109.22 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 163f5430-84cc-4a80-8e5f-6f2a5f27f6b7) + ) + (wire (pts (xy 135.89 109.22) (xy 134.62 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26a2e51d-f8c9-4603-977a-ec3441476833) + ) + (wire (pts (xy 116.84 95.25) (xy 116.84 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31a0d277-7413-4301-8b23-2d4c654bd540) + ) + (wire (pts (xy 111.76 69.85) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 454df123-e845-4d03-8c39-7a0fc517b763) + ) + (wire (pts (xy 111.76 69.85) (xy 138.43 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56f10ce4-3616-4390-9a32-7b62234bf80f) + ) + (wire (pts (xy 227.33 83.82) (xy 229.87 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58a0316b-fdad-40e3-96f7-cb28e4b5690b) + ) + (wire (pts (xy 114.3 72.39) (xy 138.43 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a1f4464-c616-4a33-82f9-8dd8ebfb0a8c) + ) + (wire (pts (xy 102.87 109.22) (xy 105.41 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a2a2aba-beae-4a0a-9586-601cd854cbd0) + ) + (wire (pts (xy 161.29 96.52) (xy 161.29 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e0ecf4a-5933-465a-9bc3-1b74f4efaf29) + ) + (wire (pts (xy 114.3 96.52) (xy 114.3 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b403cfa-1a57-4ee1-b716-cf37e8d9a005) + ) + (wire (pts (xy 259.08 83.82) (xy 261.62 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dbc0d1f-7850-4943-8d03-441ae7413488) + ) + (wire (pts (xy 198.12 83.82) (xy 194.31 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81e2c941-f56c-4b6a-b07e-98f1f9c7c54a) + ) + (wire (pts (xy 109.22 96.52) (xy 114.3 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92b18b87-08f1-4557-b338-e1b8d2e6c64d) + ) + (wire (pts (xy 171.45 82.55) (xy 161.29 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5e9c456-8d3d-429d-9282-26751c5dbd39) + ) + (wire (pts (xy 135.89 97.79) (xy 135.89 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1b4e869-1d4c-4bf4-a93c-d9d36305f47d) + ) + (wire (pts (xy 116.84 93.98) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c61e6996-3647-45c1-ad4c-4c25bf5a03b5) + ) + (wire (pts (xy 135.89 97.79) (xy 138.43 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4d7b8aa-b9bc-44c8-8cb9-e9095b546025) + ) + (wire (pts (xy 161.29 85.09) (xy 171.45 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d790d0d5-c2f2-4059-9cd2-798d5e59687f) + ) + (wire (pts (xy 132.08 95.25) (xy 138.43 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea77a532-5894-4db8-ae63-80cc28fe33af) + ) + (wire (pts (xy 161.29 82.55) (xy 161.29 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edb5b706-046a-4168-bc90-2be18d66c339) + ) + + (symbol (lib_id "eSim_Sources:DC") (at 91.44 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28d3271f-0b04-4869-b592-25b6a93cf6fc) + (property "Reference" "v1" (id 0) (at 94.615 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "DC" (id 1) (at 90.805 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 86.995 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 91.44 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c6852dc-8445-4298-a6db-0adfbc24ef15)) + (pin "2" (uuid c3c580f8-8d30-4cfb-8027-0cf8425f5205)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 102.87 96.52 0) (mirror x) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38309441-1575-4a2b-944e-764f9fe4894f) + (property "Reference" "U1" (id 0) (at 99.06 95.885 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 99.06 98.425 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fabc537-ea69-46a4-ba6c-0ec84d4cec14)) + (pin "2" (uuid d8dd5360-1679-4365-8ef5-1eef35533f7e)) + (pin "3" (uuid d881c90a-2dac-40c2-9a6f-52da84d0cae8)) + (pin "4" (uuid 0f3bf5d2-8a1b-4ec4-9c42-3856da9b6cb0)) + (pin "5" (uuid 1d897643-dd4b-4941-8747-67b9f05a55de)) + (pin "6" (uuid 6a7e5ae9-bd32-437a-a8c1-eca8831711e2)) + (pin "7" (uuid de4bacfe-1d00-410c-aa1a-d3a2b35b450a)) + (pin "8" (uuid e066b15e-8a93-457b-8a8b-a3d5ae1d5d03)) + (pin "9" (uuid c9c7f6cf-50b4-4096-8281-34b7facb581d)) + (pin "10" (uuid 18665738-4b00-4bba-82cf-e88f22b0471d)) + (pin "11" (uuid f3963046-8d96-4d91-81cd-d14d28544785)) + (pin "12" (uuid 70f92d44-4d8c-4eaf-b2a8-656224365c86)) + (pin "13" (uuid d1196a57-a14f-4b34-adb6-45247031a4d6)) + (pin "14" (uuid 9b7f82d9-2457-4e65-8df7-4e9ff22b39d7)) + (pin "15" (uuid b4c2b962-baaf-40a3-a6b2-1a50ac4da997)) + (pin "16" (uuid 6d7334c7-4e62-4f8b-b5dc-d4bb5287fa8f)) + (pin "17" (uuid abcda22c-abb5-4904-ad85-837b69cd1101)) + (pin "18" (uuid 3fcb2300-dd9e-4a9b-bf0c-2718d9ad6c03)) + (pin "19" (uuid b3a922e0-6519-4bad-93a6-ea37b22bba7e)) + (pin "20" (uuid 472ab7fc-b431-423c-825b-85bdec91808a)) + (pin "21" (uuid 3fd15d5b-3f55-4ec7-bc49-baf57841d2a9)) + (pin "22" (uuid 6bea1ad1-c0e8-4ebb-8246-55cea9c4ca6a)) + (pin "23" (uuid 1c7c7456-fa8f-42ad-ac95-fc738203a6ce)) + (pin "24" (uuid 86cab9cb-b4c1-4e09-825a-132e0bd48750)) + (pin "25" (uuid 0d657127-0db9-450f-82e8-9ffd8a63319a)) + (pin "26" (uuid da4babff-0abb-4869-8346-2672ab1f0017)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 182.88 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48d85cf5-29c1-4f7d-a57e-7b0b69dda574) + (property "Reference" "U6" (id 0) (at 182.88 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 182.88 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4803f9b9-3d9a-4a0e-99e6-0ac59d11de26)) + (pin "2" (uuid 3ce86b27-8c78-4024-9902-7dcccacd7b73)) + (pin "3" (uuid b980b222-0af3-4a60-a3f8-ff1fce4d8999)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 210.82 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48f857eb-4e87-4806-ba4b-646581a37ea2) + (property "Reference" "U7" (id 0) (at 212.725 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 212.725 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f271f174-3439-48da-b056-89a32e36b380)) + (pin "2" (uuid d19fcac4-704f-4df1-b54e-8d4ccf233d8c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 267.97 83.82 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f87ee9d-1a36-4aec-bb00-f8fc24fa2328) + (property "Reference" "U1" (id 0) (at 271.78 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 271.78 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 267.97 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a9cf5e93-05cb-4cbc-8550-f7fe9d78069d)) + (pin "2" (uuid da25feda-dd50-4d21-9670-7c845cc6a349)) + (pin "3" (uuid 44fc7a64-ebda-4f38-92ba-88276337a604)) + (pin "4" (uuid f92e041c-8c0c-48ee-b591-06ec70abe4cd)) + (pin "5" (uuid 7932597d-04dc-4353-8129-ab3aeec8fc84)) + (pin "6" (uuid da1dded5-6865-4682-a456-828706448bef)) + (pin "7" (uuid 6d49815a-f6f8-4fcf-8ba2-2cdc6311c549)) + (pin "8" (uuid 347a1f5f-3cda-4313-99d8-c2a289db132e)) + (pin "9" (uuid 768f90fa-9460-4bb6-97a4-ab394ff229bc)) + (pin "10" (uuid b4cf2cf5-38e4-4e66-a173-349f6c368102)) + (pin "11" (uuid 99e36901-663c-4c66-abe5-eb98576c8789)) + (pin "12" (uuid f2c598ab-bf2a-4800-abb6-3e0fea1f2649)) + (pin "13" (uuid 92a688aa-be93-4c70-847f-be5bfd696262)) + (pin "14" (uuid cd155f93-a81a-48e5-8ddc-57c97df60bae)) + (pin "15" (uuid c4ffe564-7e2e-4d23-99cc-35da40290654)) + (pin "16" (uuid 92ad5362-52f7-4a61-b99d-5e125b5e2083)) + (pin "17" (uuid c86cdd0e-f764-496b-a46b-cd576f890c42)) + (pin "18" (uuid 5d38d459-46e9-4284-84d9-d584d0419dd3)) + (pin "19" (uuid b102cd55-86e0-4ff3-9425-7b0ac613cff0)) + (pin "20" (uuid 82c84431-fd8e-4769-aebb-d75d6afdd9d4)) + (pin "21" (uuid 2d8c3796-9040-422f-bf14-4983d56cc3c4)) + (pin "22" (uuid f4a7ff4b-3170-43e0-ad8d-52a0336464b2)) + (pin "23" (uuid ceb16e80-ae7a-4059-a457-76f88bf107b2)) + (pin "24" (uuid 843c46f2-cf76-4ae5-ba92-c24c18f88cb3)) + (pin "25" (uuid 25572e1a-67c2-4d60-8112-405d60eff7ba)) + (pin "26" (uuid 46a322ed-4e54-4956-a123-a3da09b63880)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1c9e468-be3e-44dd-bf35-9066d1a0e3d2) + (property "Reference" "U5" (id 0) (at 149.86 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4124cb3a-6b00-4e90-80b3-17f9788d220b)) + (pin "2" (uuid d7844aea-e454-4b8b-a5d3-58c650c0d3f3)) + (pin "3" (uuid d2a4f899-5bc4-49dc-9c0a-f82fbfac1c00)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b383818c-4c81-4888-8c80-f39a0b1bf9fb) + (property "Reference" "U4" (id 0) (at 149.86 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6581f4bd-969a-4a52-bf34-34d6e24a433a)) + (pin "2" (uuid 15113e0d-971e-4b81-8359-540fdab0e1aa)) + (pin "3" (uuid c4c6c493-2ab2-4f2e-a773-4f891eead381)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 109.22 87.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba26b670-cee4-4e62-aace-e814c833fd02) + (property "Reference" "U1" (id 0) (at 111.76 87.63 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 111.76 90.17 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 63080624-0ec0-4ae5-89ef-af345042af17)) + (pin "2" (uuid 99ceb699-2891-48db-9745-cb55b3645be8)) + (pin "3" (uuid 6657d604-f5bd-489d-af28-4f3f7b46b567)) + (pin "4" (uuid 0915377e-fef2-4b60-ba68-25802610ea15)) + (pin "5" (uuid 120f4c38-18f2-4e5d-963c-afdac9a3a876)) + (pin "6" (uuid 809be297-aded-4798-bd9f-577c6dfd6178)) + (pin "7" (uuid 39773969-16bb-4965-a4f9-2e82476ccbd7)) + (pin "8" (uuid 1dae0184-17bd-4a01-a90a-40cdefca5d3f)) + (pin "9" (uuid 52f50196-1ee5-46bf-8bf8-f2385c5a69fe)) + (pin "10" (uuid bb9b7048-b168-42f6-bfc2-f4b4aa0bbd9a)) + (pin "11" (uuid b187e2ab-c334-4152-b8c0-3b5e498907ff)) + (pin "12" (uuid 1c9bdb4a-d154-47b3-8b81-de451353fde3)) + (pin "13" (uuid 7eaf8d8b-7fb0-4c9c-944c-b00e3826fc50)) + (pin "14" (uuid 52f5e559-0d9d-4452-a2e2-27d8999c2139)) + (pin "15" (uuid a91512b6-3c7b-42db-9d52-25d4c9a79436)) + (pin "16" (uuid fa77a93f-a43d-49ea-aa29-648d3d6025bb)) + (pin "17" (uuid e8b1dd48-dc04-4c5d-81e4-3af1236fce17)) + (pin "18" (uuid de9c62bf-3c52-4227-9cd3-f4a1f283a2ba)) + (pin "19" (uuid 8bad02cb-7684-4e83-8678-5abc26d1a89a)) + (pin "20" (uuid a7eea872-efce-4e12-8da2-52b19ad6d380)) + (pin "21" (uuid f241a1ee-3551-4be9-92e4-97d1ebc38af8)) + (pin "22" (uuid 79bb6641-9713-4b40-8616-f9182ab9c079)) + (pin "23" (uuid a2bcac0d-12cb-4fad-b934-ba601f9ca54f)) + (pin "24" (uuid 8b968e16-97d5-44b3-8bdf-9a360f8fa18d)) + (pin "25" (uuid dd87e7a1-a6b3-4a50-abb8-a247d0e5c1be)) + (pin "26" (uuid 02d1ede5-5527-4efe-b251-abc0d57bcfec)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 120.65 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8483095-cae6-476c-bd77-f779e93a393e) + (property "Reference" "U2" (id 0) (at 120.015 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 120.015 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ea3cef5-47c4-4031-b109-073353e2f1a8)) + (pin "2" (uuid 8a6e56e6-64bc-44e0-9b1f-561b6ab4ef26)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 245.11 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da856a49-8d85-459f-9fdc-ead362122aeb) + (property "Reference" "U8" (id 0) (at 244.475 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 244.475 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 245.11 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 245.11 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 91b9c0f9-e0fc-4829-8d5b-d8f8057ee59c)) + (pin "2" (uuid 26a9d54d-43f3-4aa3-8ed9-712e8abd47e3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 124.46 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8d0de2d-4efb-48db-9053-78ac24343ec6) + (property "Reference" "U3" (id 0) (at 124.46 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 124.46 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f31cf58b-9a25-4938-b10d-4d0f096b69a8)) + (pin "2" (uuid 364c3335-2d15-43ce-8697-9d3c6e4d95e7)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 80.01 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb45b5f1-df6f-43ee-882f-46b8fbfe058f) + (property "Reference" "#PWR01" (id 0) (at 73.66 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 74.93 109.22 0)) + (property "Footprint" "" (id 2) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4533b25d-acec-4f28-966f-010cbada9d57)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/fb45b5f1-df6f-43ee-882f-46b8fbfe058f" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/ba26b670-cee4-4e62-aace-e814c833fd02" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/38309441-1575-4a2b-944e-764f9fe4894f" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/7f87ee9d-1a36-4aec-bb00-f8fc24fa2328" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/c8483095-cae6-476c-bd77-f779e93a393e" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/e8d0de2d-4efb-48db-9053-78ac24343ec6" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b383818c-4c81-4888-8c80-f39a0b1bf9fb" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/a1c9e468-be3e-44dd-bf35-9066d1a0e3d2" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/48d85cf5-29c1-4f7d-a57e-7b0b69dda574" + (reference "U6") (unit 1) (value "d_or") (footprint "") + ) + (path "/48f857eb-4e87-4806-ba4b-646581a37ea2" + (reference "U7") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/da856a49-8d85-459f-9fdc-ead362122aeb" + (reference "U8") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/28d3271f-0b04-4869-b592-25b6a93cf6fc" + (reference "v1") (unit 1) (value "DC") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.sub new file mode 100644 index 000000000..c75fb0786 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE.sub @@ -0,0 +1,31 @@ +* Subcircuit TRISTATE +.subckt TRISTATE net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ +.title kicad schematic +v1 net-_u2-pad1_ gnd dc 0 +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends TRISTATE \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE_Previous_Values.xml new file mode 100644 index 000000000..5ef3761ac --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/TRISTATE_Previous_Values.xml @@ -0,0 +1 @@ +dc0d_bufferd_ord_andd_andadc_bridged_inverterdac_bridgetruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/_autosave-74HC242.sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/_autosave-74HC242.sch new file mode 100644 index 000000000..c7485aa3a --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/_autosave-74HC242.sch @@ -0,0 +1,320 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr User 17000 14937 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 5050 3500 +Connection ~ 5050 5500 +Connection ~ 5050 7400 +Connection ~ 5300 8000 +Connection ~ 7050 2000 +Connection ~ 7050 4000 +Connection ~ 7050 6000 +Connection ~ 7050 8000 +Wire Wire Line + 2200 1350 3050 1350 +Wire Wire Line + 3050 1350 3050 1600 +Wire Wire Line + 3050 1700 3050 1950 +Wire Wire Line + 3050 1950 1650 1950 +Wire Wire Line + 3300 18600 5550 18600 +Wire Wire Line + 3950 1650 5050 1650 +Wire Wire Line + 4000 2000 5500 2000 +Wire Wire Line + 4000 4000 5500 4000 +Wire Wire Line + 4000 6000 5500 6000 +Wire Wire Line + 4000 8000 5300 8000 +Wire Wire Line + 5050 1650 5050 3500 +Wire Wire Line + 5050 3500 5050 5500 +Wire Wire Line + 5050 5500 5050 7400 +Wire Wire Line + 5050 5500 6550 5500 +Wire Wire Line + 5050 7400 5050 9350 +Wire Wire Line + 5300 8000 5500 8000 +Wire Wire Line + 5300 8950 5300 8000 +Wire Wire Line + 5500 8950 5300 8950 +Wire Wire Line + 6550 3200 6550 3500 +Wire Wire Line + 6550 3500 5050 3500 +Wire Wire Line + 6550 5200 6550 5500 +Wire Wire Line + 6550 7200 6550 7400 +Wire Wire Line + 6550 7400 5050 7400 +Wire Wire Line + 6550 9150 6550 9350 +Wire Wire Line + 6550 9350 5050 9350 +Wire Wire Line + 6850 2000 7050 2000 +Wire Wire Line + 6850 4000 7050 4000 +Wire Wire Line + 6850 6000 7050 6000 +Wire Wire Line + 6850 8000 7050 8000 +Wire Wire Line + 7050 2000 8000 2000 +Wire Wire Line + 7050 3000 6850 3000 +Wire Wire Line + 7050 3000 7050 2000 +Wire Wire Line + 7050 4000 7050 5000 +Wire Wire Line + 7050 4000 8000 4000 +Wire Wire Line + 7050 5000 6850 5000 +Wire Wire Line + 7050 6000 8000 6000 +Wire Wire Line + 7050 7000 6850 7000 +Wire Wire Line + 7050 7000 7050 6000 +Wire Wire Line + 7050 8000 7050 8950 +Wire Wire Line + 7050 8000 8000 8000 +Wire Wire Line + 7050 8950 6850 8950 +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 1350 1950 +F 0 "U?" H 1350 2200 60 0000 C CNN +F 1 "d_inverter" H 1350 2050 60 0000 C CNN +F 2 "" H 1400 1900 60 0000 C CNN +F 3 "" H 1400 1900 60 0000 C CNN + 1 1350 1950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 5800 3000 +F 0 "U?" H 5800 3250 60 0000 C CNN +F 1 "d_inverter" H 5800 3100 60 0000 C CNN +F 2 "" H 5850 2950 60 0000 C CNN +F 3 "" H 5850 2950 60 0000 C CNN + 1 5800 3000 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 5800 5000 +F 0 "U?" H 5800 5250 60 0000 C CNN +F 1 "d_inverter" H 5800 5100 60 0000 C CNN +F 2 "" H 5850 4950 60 0000 C CNN +F 3 "" H 5850 4950 60 0000 C CNN + 1 5800 5000 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 5800 7000 +F 0 "U?" H 5800 7250 60 0000 C CNN +F 1 "d_inverter" H 5800 7100 60 0000 C CNN +F 2 "" H 5850 6950 60 0000 C CNN +F 3 "" H 5850 6950 60 0000 C CNN + 1 5800 7000 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 5800 8950 +F 0 "U?" H 5800 9200 60 0000 C CNN +F 1 "d_inverter" H 5800 9050 60 0000 C CNN +F 2 "" H 5850 8900 60 0000 C CNN +F 3 "" H 5850 8900 60 0000 C CNN + 1 5800 8950 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 6550 2000 +F 0 "U?" H 6550 2250 60 0000 C CNN +F 1 "d_inverter" H 6550 2100 60 0000 C CNN +F 2 "" H 6600 1950 60 0000 C CNN +F 3 "" H 6600 1950 60 0000 C CNN + 1 6550 2000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 6550 4000 +F 0 "U?" H 6550 4250 60 0000 C CNN +F 1 "d_inverter" H 6550 4100 60 0000 C CNN +F 2 "" H 6600 3950 60 0000 C CNN +F 3 "" H 6600 3950 60 0000 C CNN + 1 6550 4000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 6550 6000 +F 0 "U?" H 6550 6250 60 0000 C CNN +F 1 "d_inverter" H 6550 6100 60 0000 C CNN +F 2 "" H 6600 5950 60 0000 C CNN +F 3 "" H 6600 5950 60 0000 C CNN + 1 6550 6000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 6550 8000 +F 0 "U?" H 6550 8250 60 0000 C CNN +F 1 "d_inverter" H 6550 8100 60 0000 C CNN +F 2 "" H 6600 7950 60 0000 C CNN +F 3 "" H 6600 7950 60 0000 C CNN + 1 6550 8000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 3500 1700 +F 0 "U?" H 3500 2050 60 0000 C CNN +F 1 "d_and" H 3500 1900 60 0000 C CNN +F 2 "" H 3500 1700 60 0000 C CNN +F 3 "" H 3500 1700 60 0000 C CNN + 1 3500 1700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 5800 2000 +F 0 "X?" H 5875 2350 50 0000 C CNN +F 1 "TRISTATE" H 5875 2250 50 0000 C CNN +F 2 "" H 5800 2000 50 0001 C CNN +F 3 "" H 5800 2000 50 0001 C CNN + 1 5800 2000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 5800 4000 +F 0 "X?" H 5875 4350 50 0000 C CNN +F 1 "TRISTATE" H 5875 4250 50 0000 C CNN +F 2 "" H 5800 4000 50 0001 C CNN +F 3 "" H 5800 4000 50 0001 C CNN + 1 5800 4000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 5800 6000 +F 0 "X?" H 5875 6350 50 0000 C CNN +F 1 "TRISTATE" H 5875 6250 50 0000 C CNN +F 2 "" H 5800 6000 50 0001 C CNN +F 3 "" H 5800 6000 50 0001 C CNN + 1 5800 6000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 5800 8000 +F 0 "X?" H 5875 8350 50 0000 C CNN +F 1 "TRISTATE" H 5875 8250 50 0000 C CNN +F 2 "" H 5800 8000 50 0001 C CNN +F 3 "" H 5800 8000 50 0001 C CNN + 1 5800 8000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 6550 3000 +F 0 "X?" H 6625 3350 50 0000 C CNN +F 1 "TRISTATE" H 6625 3250 50 0000 C CNN +F 2 "" H 6550 3000 50 0001 C CNN +F 3 "" H 6550 3000 50 0001 C CNN + 1 6550 3000 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 6550 5000 +F 0 "X?" H 6625 5350 50 0000 C CNN +F 1 "TRISTATE" H 6625 5250 50 0000 C CNN +F 2 "" H 6550 5000 50 0001 C CNN +F 3 "" H 6550 5000 50 0001 C CNN + 1 6550 5000 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 6550 7000 +F 0 "X?" H 6625 7350 50 0000 C CNN +F 1 "TRISTATE" H 6625 7250 50 0000 C CNN +F 2 "" H 6550 7000 50 0001 C CNN +F 3 "" H 6550 7000 50 0001 C CNN + 1 6550 7000 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 6550 8950 +F 0 "X?" H 6625 9300 50 0000 C CNN +F 1 "TRISTATE" H 6625 9200 50 0000 C CNN +F 2 "" H 6550 8950 50 0001 C CNN +F 3 "" H 6550 8950 50 0001 C CNN + 1 6550 8950 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U? +U 1 1 00000000 +P 1550 1350 +F 0 "U?" H 1625 1750 60 0000 C CNN +F 1 "d_buffer" H 1625 1600 60 0000 C CNN +F 2 "" H 1550 1350 60 0000 C CNN +F 3 "" H 1550 1350 60 0000 C CNN + 1 1550 1350 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/analysis b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/analysis new file mode 100644 index 000000000..af548eb1e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC242/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 100e-06 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and-cache.lib b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and-cache.lib new file mode 100644 index 000000000..af0586415 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.cir new file mode 100644 index 000000000..ba296cf01 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\3_and\3_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/26/19 18:42:57 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad4_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT + +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.cir.out new file mode 100644 index 000000000..d7cf79a07 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.cir.out @@ -0,0 +1,20 @@ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.pro b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.pro new file mode 100644 index 000000000..00597a5ad --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.pro @@ -0,0 +1,43 @@ +update=05/31/19 15:26:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=eSim_Analog +LibName2=eSim_Devices +LibName3=eSim_Digital +LibName4=eSim_Hybrid +LibName5=eSim_Miscellaneous +LibName6=eSim_Plot +LibName7=eSim_Power +LibName8=eSim_User +LibName9=eSim_Sources +LibName10=eSim_Subckt diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.sch new file mode 100644 index 000000000..d6ac89f95 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.sch @@ -0,0 +1,130 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:3_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U2 +U 1 1 5C9A24D8 +P 4250 2700 +F 0 "U2" H 4250 2700 60 0000 C CNN +F 1 "d_and" H 4300 2800 60 0000 C CNN +F 2 "" H 4250 2700 60 0000 C CNN +F 3 "" H 4250 2700 60 0000 C CNN + 1 4250 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 5C9A2538 +P 5150 2900 +F 0 "U3" H 5150 2900 60 0000 C CNN +F 1 "d_and" H 5200 3000 60 0000 C CNN +F 2 "" H 5150 2900 60 0000 C CNN +F 3 "" H 5150 2900 60 0000 C CNN + 1 5150 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 5C9A259A +P 3050 2600 +F 0 "U1" H 3100 2700 30 0000 C CNN +F 1 "PORT" H 3050 2600 30 0000 C CNN +F 2 "" H 3050 2600 60 0000 C CNN +F 3 "" H 3050 2600 60 0000 C CNN + 1 3050 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A25D9 +P 3050 2800 +F 0 "U1" H 3100 2900 30 0000 C CNN +F 1 "PORT" H 3050 2800 30 0000 C CNN +F 2 "" H 3050 2800 60 0000 C CNN +F 3 "" H 3050 2800 60 0000 C CNN + 2 3050 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A260A +P 3050 3100 +F 0 "U1" H 3100 3200 30 0000 C CNN +F 1 "PORT" H 3050 3100 30 0000 C CNN +F 2 "" H 3050 3100 60 0000 C CNN +F 3 "" H 3050 3100 60 0000 C CNN + 3 3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2637 +P 6900 2850 +F 0 "U1" H 6950 2950 30 0000 C CNN +F 1 "PORT" H 6900 2850 30 0000 C CNN +F 2 "" H 6900 2850 60 0000 C CNN +F 3 "" H 6900 2850 60 0000 C CNN + 4 6900 2850 + -1 0 0 1 +$EndComp +Wire Wire Line + 4700 2650 4700 2800 +Wire Wire Line + 5600 2850 6650 2850 +Wire Wire Line + 3800 2600 3300 2600 +Wire Wire Line + 3800 2700 3300 2700 +Wire Wire Line + 3300 2700 3300 2800 +Wire Wire Line + 3300 3100 4700 3100 +Wire Wire Line + 4700 3100 4700 2900 +Text Notes 3500 2600 0 60 ~ 12 +in1 +Text Notes 3450 2800 0 60 ~ 12 +in2\n +Text Notes 3500 3100 0 60 ~ 12 +in3 +Text Notes 6100 2850 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.sub new file mode 100644 index 000000000..3d9120bb6 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and.sub @@ -0,0 +1,14 @@ +* Subcircuit 3_and +.subckt 3_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and_Previous_Values.xml new file mode 100644 index 000000000..abc5faaae --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/3_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.cir new file mode 100644 index 000000000..46b773bf2 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.cir @@ -0,0 +1,33 @@ +.title KiCad schematic +X1 Net-_U3-Pad2_ Net-_U13-Pad2_ Net-_U11-Pad2_ Net-_U4-Pad2_ 3_and +U4 Net-_U4-Pad1_ Net-_U4-Pad2_ Net-_U4-Pad3_ d_or +X2 Net-_U5-Pad2_ Net-_U13-Pad2_ Net-_U10-Pad2_ Net-_U4-Pad1_ 3_and +X4 Net-_U7-Pad2_ Net-_U12-Pad2_ Net-_U11-Pad2_ Net-_U8-Pad2_ 3_and +X5 Net-_U9-Pad2_ Net-_U12-Pad2_ Net-_U10-Pad2_ Net-_U8-Pad1_ 3_and +X3 Net-_U6-Pad3_ Net-_U2-Pad2_ Net-_U1-Pad13_ TRISTATE +U8 Net-_U8-Pad1_ Net-_U8-Pad2_ Net-_U6-Pad1_ d_or +U6 Net-_U6-Pad1_ Net-_U4-Pad3_ Net-_U6-Pad3_ d_or +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ PORT +X6 Net-_U11-Pad2_ Net-_U13-Pad2_ Net-_U14-Pad2_ Net-_U15-Pad2_ 3_and +X9 Net-_U11-Pad2_ Net-_U12-Pad2_ Net-_U18-Pad2_ Net-_U19-Pad2_ 3_and +X7 Net-_U10-Pad2_ Net-_U13-Pad2_ Net-_U16-Pad2_ Net-_U15-Pad1_ 3_and +X8 Net-_U17-Pad3_ Net-_U21-Pad2_ Net-_U1-Pad14_ TRISTATE +U17 Net-_U17-Pad1_ Net-_U15-Pad3_ Net-_U17-Pad3_ d_or +U15 Net-_U15-Pad1_ Net-_U15-Pad2_ Net-_U15-Pad3_ d_or +X10 Net-_U10-Pad2_ Net-_U12-Pad2_ Net-_U20-Pad2_ Net-_U19-Pad1_ 3_and +U19 Net-_U19-Pad1_ Net-_U19-Pad2_ Net-_U17-Pad1_ d_or +U16 Net-_U1-Pad9_ Net-_U16-Pad2_ d_buffer +U14 Net-_U1-Pad8_ Net-_U14-Pad2_ d_buffer +U18 Net-_U1-Pad10_ Net-_U18-Pad2_ d_buffer +U20 Net-_U1-Pad11_ Net-_U20-Pad2_ d_buffer +U21 Net-_U1-Pad12_ Net-_U21-Pad2_ d_inverter +U11 Net-_U10-Pad2_ Net-_U11-Pad2_ d_inverter +U10 Net-_U1-Pad6_ Net-_U10-Pad2_ d_inverter +U12 Net-_U1-Pad7_ Net-_U12-Pad2_ d_inverter +U13 Net-_U12-Pad2_ Net-_U13-Pad2_ d_inverter +U3 Net-_U1-Pad2_ Net-_U3-Pad2_ d_buffer +U5 Net-_U1-Pad3_ Net-_U5-Pad2_ d_buffer +U2 Net-_U1-Pad1_ Net-_U2-Pad2_ d_inverter +U9 Net-_U1-Pad5_ Net-_U9-Pad2_ d_buffer +U7 Net-_U1-Pad4_ Net-_U7-Pad2_ d_buffer +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.cir.out new file mode 100644 index 000000000..b0bf52a24 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.cir.out @@ -0,0 +1,104 @@ +.title kicad schematic + +.include TRISTATE.sub +.include 3_and.sub +x1 net-_u3-pad2_ net-_u13-pad2_ net-_u11-pad2_ net-_u4-pad2_ 3_and +* u4 net-_u4-pad1_ net-_u4-pad2_ net-_u4-pad3_ d_or +x2 net-_u5-pad2_ net-_u13-pad2_ net-_u10-pad2_ net-_u4-pad1_ 3_and +x4 net-_u7-pad2_ net-_u12-pad2_ net-_u11-pad2_ net-_u8-pad2_ 3_and +x5 net-_u9-pad2_ net-_u12-pad2_ net-_u10-pad2_ net-_u8-pad1_ 3_and +x3 net-_u6-pad3_ net-_u2-pad2_ net-_u1-pad13_ TRISTATE +* u8 net-_u8-pad1_ net-_u8-pad2_ net-_u6-pad1_ d_or +* u6 net-_u6-pad1_ net-_u4-pad3_ net-_u6-pad3_ d_or +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ port +x6 net-_u11-pad2_ net-_u13-pad2_ net-_u14-pad2_ net-_u15-pad2_ 3_and +x9 net-_u11-pad2_ net-_u12-pad2_ net-_u18-pad2_ net-_u19-pad2_ 3_and +x7 net-_u10-pad2_ net-_u13-pad2_ net-_u16-pad2_ net-_u15-pad1_ 3_and +x8 net-_u17-pad3_ net-_u21-pad2_ net-_u1-pad14_ TRISTATE +* u17 net-_u17-pad1_ net-_u15-pad3_ net-_u17-pad3_ d_or +* u15 net-_u15-pad1_ net-_u15-pad2_ net-_u15-pad3_ d_or +x10 net-_u10-pad2_ net-_u12-pad2_ net-_u20-pad2_ net-_u19-pad1_ 3_and +* u19 net-_u19-pad1_ net-_u19-pad2_ net-_u17-pad1_ d_or +* u16 net-_u1-pad9_ net-_u16-pad2_ d_buffer +* u14 net-_u1-pad8_ net-_u14-pad2_ d_buffer +* u18 net-_u1-pad10_ net-_u18-pad2_ d_buffer +* u20 net-_u1-pad11_ net-_u20-pad2_ d_buffer +* u21 net-_u1-pad12_ net-_u21-pad2_ d_inverter +* u11 net-_u10-pad2_ net-_u11-pad2_ d_inverter +* u10 net-_u1-pad6_ net-_u10-pad2_ d_inverter +* u12 net-_u1-pad7_ net-_u12-pad2_ d_inverter +* u13 net-_u12-pad2_ net-_u13-pad2_ d_inverter +* u3 net-_u1-pad2_ net-_u3-pad2_ d_buffer +* u5 net-_u1-pad3_ net-_u5-pad2_ d_buffer +* u2 net-_u1-pad1_ net-_u2-pad2_ d_inverter +* u9 net-_u1-pad5_ net-_u9-pad2_ d_buffer +* u7 net-_u1-pad4_ net-_u7-pad2_ d_buffer +a1 [net-_u4-pad1_ net-_u4-pad2_ ] net-_u4-pad3_ u4 +a2 [net-_u8-pad1_ net-_u8-pad2_ ] net-_u6-pad1_ u8 +a3 [net-_u6-pad1_ net-_u4-pad3_ ] net-_u6-pad3_ u6 +a4 [net-_u17-pad1_ net-_u15-pad3_ ] net-_u17-pad3_ u17 +a5 [net-_u15-pad1_ net-_u15-pad2_ ] net-_u15-pad3_ u15 +a6 [net-_u19-pad1_ net-_u19-pad2_ ] net-_u17-pad1_ u19 +a7 net-_u1-pad9_ net-_u16-pad2_ u16 +a8 net-_u1-pad8_ net-_u14-pad2_ u14 +a9 net-_u1-pad10_ net-_u18-pad2_ u18 +a10 net-_u1-pad11_ net-_u20-pad2_ u20 +a11 net-_u1-pad12_ net-_u21-pad2_ u21 +a12 net-_u10-pad2_ net-_u11-pad2_ u11 +a13 net-_u1-pad6_ net-_u10-pad2_ u10 +a14 net-_u1-pad7_ net-_u12-pad2_ u12 +a15 net-_u12-pad2_ net-_u13-pad2_ u13 +a16 net-_u1-pad2_ net-_u3-pad2_ u3 +a17 net-_u1-pad3_ net-_u5-pad2_ u5 +a18 net-_u1-pad1_ net-_u2-pad2_ u2 +a19 net-_u1-pad5_ net-_u9-pad2_ u9 +a20 net-_u1-pad4_ net-_u7-pad2_ u7 +* Schematic Name: d_or, Ngspice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u8 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u17 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u15 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u19 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u16 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u14 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u18 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u20 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.kicad_sch new file mode 100644 index 000000000..3ed4f9794 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.kicad_sch @@ -0,0 +1,2126 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid ae03da90-7838-4388-a1f9-3a8018621227) + + (paper "User" 431.8 379.4) + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Subckt:3_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 2.54 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 3.81 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "3_and_0_1" + (polyline + (pts + (xy -3.81 5.08) + (xy 5.08 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 5.08) + (xy -3.81 -2.54) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 5.08 -2.54) (mid 7.8261 1.27) (end 5.08 5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "3_and_1_1" + (pin input line (at -8.89 3.81 0) (length 5.08) + (name "in1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 1.27 0) (length 5.08) + (name "in2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -1.27 0) (length 5.08) + (name "in3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 1.27 180) (length 5.08) + (name "out" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:TRISTATE" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TRISTATE" (id 1) (at 0 1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TRISTATE_0_1" + (polyline + (pts + (xy -5.08 3.81) + (xy -5.08 -3.81) + (xy 7.62 0) + (xy -5.08 5.08) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "TRISTATE_1_1" + (pin input line (at -7.62 0 0) (length 2.54) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -5.08 90) (length 2.54) + (name "OE" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 0 180) (length 2.54) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 256.54 140.97) (diameter 0) (color 0 0 0 0) + (uuid 04315e62-7229-4b32-98a7-39e4bb61f2b2) + ) + (junction (at 215.9 100.33) (diameter 0) (color 0 0 0 0) + (uuid 357e6da7-c9df-405c-abd0-287b4fddb127) + ) + (junction (at 162.56 127) (diameter 0) (color 0 0 0 0) + (uuid 37ca5ed8-6482-4c2d-a2f1-b2dbcad6a198) + ) + (junction (at 172.72 129.54) (diameter 0) (color 0 0 0 0) + (uuid 519e6087-717a-48cc-9383-ab4334669839) + ) + (junction (at 198.12 148.59) (diameter 0) (color 0 0 0 0) + (uuid 5d6b7302-4997-4606-979b-c2e69bf7c26a) + ) + (junction (at 222.25 140.97) (diameter 0) (color 0 0 0 0) + (uuid 641f743c-cfd2-4261-854c-80a97f62f941) + ) + (junction (at 246.38 148.59) (diameter 0) (color 0 0 0 0) + (uuid 6cbf6ae7-8791-4b54-a6a2-b7ab7183de79) + ) + (junction (at 187.96 140.97) (diameter 0) (color 0 0 0 0) + (uuid 7416301e-63ab-43d5-b17f-543a8549c55a) + ) + (junction (at 231.14 127) (diameter 0) (color 0 0 0 0) + (uuid 76c5e700-12bf-47cd-9f28-d0aa915bdd1d) + ) + (junction (at 203.2 100.33) (diameter 0) (color 0 0 0 0) + (uuid 81cc7f60-c0f2-40d9-80fd-d91460a2d94e) + ) + (junction (at 185.42 148.59) (diameter 0) (color 0 0 0 0) + (uuid 8877e945-0a21-4dc0-9e40-e04713204bdc) + ) + (junction (at 215.9 127) (diameter 0) (color 0 0 0 0) + (uuid 8cfcdf91-9da8-49da-b60f-7ee334310942) + ) + (junction (at 233.68 129.54) (diameter 0) (color 0 0 0 0) + (uuid a257056e-bbe1-44df-a050-7d6ec7aa37e5) + ) + (junction (at 203.2 129.54) (diameter 0) (color 0 0 0 0) + (uuid fd3c4da8-676c-41c3-b533-cb96cab0ac01) + ) + + (wire (pts (xy 236.22 181.61) (xy 236.22 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 008b03a6-8f24-4293-8731-2f246d4806ce) + ) + (wire (pts (xy 182.88 207.01) (xy 171.45 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08a3cf97-e639-45ed-85f3-97d26d41c193) + ) + (wire (pts (xy 246.38 148.59) (xy 246.38 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09db7254-e71c-4fac-a518-239ec1c6c0b5) + ) + (wire (pts (xy 160.02 156.21) (xy 160.02 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b0d940d-a886-4f23-922b-2af8deb83edb) + ) + (wire (pts (xy 251.46 250.19) (xy 251.46 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13a67ffd-fa22-4e51-a369-6fcf80ecb314) + ) + (wire (pts (xy 149.86 177.8) (xy 154.94 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 144a106d-7f23-4df4-9dcc-f6cacdf000fb) + ) + (wire (pts (xy 269.24 140.97) (xy 269.24 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1670ebda-89dd-41c8-b48a-de8c4a58458b) + ) + (wire (pts (xy 157.48 177.8) (xy 162.56 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2227a91d-4d9f-4b63-80de-7b748097af5c) + ) + (wire (pts (xy 231.14 127) (xy 243.84 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22eb2555-97c5-44f9-885f-e99a3fc29013) + ) + (wire (pts (xy 149.86 127) (xy 162.56 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29626187-55fc-4e89-9406-ea5c97159615) + ) + (wire (pts (xy 237.49 204.47) (xy 237.49 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2adc8432-e758-49a7-9b9a-1738a9194412) + ) + (wire (pts (xy 175.26 140.97) (xy 187.96 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b03437e-fa57-4d3d-a05d-8cddf062c697) + ) + (wire (pts (xy 256.54 140.97) (xy 256.54 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f84da44-148c-4ce1-8212-6d804066f0d9) + ) + (wire (pts (xy 252.73 207.01) (xy 264.16 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ff63b3d-2c1c-4491-bf07-bfaab3929ec6) + ) + (wire (pts (xy 154.94 177.8) (xy 154.94 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 323975d5-2daf-4b54-9593-0ee89847f21e) + ) + (wire (pts (xy 203.2 100.33) (xy 203.2 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35e85e2d-f836-4c05-a21e-41f6a2f106f7) + ) + (wire (pts (xy 222.25 140.97) (xy 222.25 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 361b10b1-7618-4bfd-a412-5d272c52a009) + ) + (wire (pts (xy 147.32 129.54) (xy 147.32 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 370277fd-1787-48dc-80d1-c613a3528ff4) + ) + (wire (pts (xy 160.02 148.59) (xy 185.42 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37b64d94-efeb-427e-9743-2278d1994dc1) + ) + (wire (pts (xy 165.1 109.22) (xy 165.1 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4382add7-47f4-4d13-bd77-96b870e8e4ff) + ) + (wire (pts (xy 162.56 127) (xy 215.9 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 493e1898-9ac8-4325-83ec-4da18f9b03a3) + ) + (wire (pts (xy 265.43 181.61) (xy 265.43 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a285462-8ab0-40ff-a63b-3e0b1be67d20) + ) + (wire (pts (xy 139.7 240.03) (xy 165.1 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d4370d2-f3e7-4c1e-bd5c-12031fd04335) + ) + (wire (pts (xy 266.7 109.22) (xy 266.7 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4de29b08-0ad0-453a-8b3f-7482a4d1a6e8) + ) + (wire (pts (xy 251.46 229.87) (xy 251.46 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 532b8fea-6e01-4a5d-93fb-6578351b6eb7) + ) + (wire (pts (xy 198.12 148.59) (xy 198.12 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 574a2be8-46cc-4cd0-9ca7-823c1c3eab6a) + ) + (wire (pts (xy 203.2 95.25) (xy 203.2 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59d11682-af7f-47f6-b5e0-c574af282f1c) + ) + (wire (pts (xy 243.84 127) (xy 243.84 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e2d3e30-01be-469d-a756-52a250b88016) + ) + (wire (pts (xy 222.25 140.97) (xy 256.54 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ec3169f-e890-4c82-bbe0-ae5c6f80c784) + ) + (wire (pts (xy 184.15 177.8) (xy 187.96 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 627dc389-d314-416a-9686-5d0a06992b12) + ) + (wire (pts (xy 259.08 129.54) (xy 233.68 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62bf1827-d913-4f07-a540-d6d3c6ad41ae) + ) + (wire (pts (xy 215.9 127) (xy 231.14 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6717279c-69b1-4664-ac23-74e243f0deef) + ) + (wire (pts (xy 187.96 140.97) (xy 187.96 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 672bdbb9-7d81-4955-b5d7-cfcfa94e0e76) + ) + (wire (pts (xy 185.42 148.59) (xy 185.42 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6802aeae-6ef9-4334-b010-67c25da07381) + ) + (wire (pts (xy 172.72 129.54) (xy 147.32 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7206bc29-4746-45bf-9938-a99947a1d9f6) + ) + (wire (pts (xy 185.42 148.59) (xy 198.12 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72dbddf4-9c4f-4e42-ad7a-cb2111c882c5) + ) + (wire (pts (xy 181.61 177.8) (xy 181.61 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 730cbecd-3c7b-474c-ac2f-e17993879c64) + ) + (wire (pts (xy 241.3 109.22) (xy 241.3 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 731ce7ca-e44d-46f6-b769-80f5b6620e0f) + ) + (wire (pts (xy 157.48 181.61) (xy 157.48 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 773f7e6b-8fd2-461d-9626-42283fad59b9) + ) + (wire (pts (xy 262.89 181.61) (xy 262.89 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 776cdab5-165c-44e2-8b1d-448e5bae8c68) + ) + (wire (pts (xy 238.76 177.8) (xy 243.84 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77f2eb46-1cff-4635-9391-b9e319bc7e43) + ) + (wire (pts (xy 198.12 148.59) (xy 246.38 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78d38703-5648-445a-afa3-321cbf685594) + ) + (wire (pts (xy 149.86 156.21) (xy 149.86 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 798d8ee8-10e1-40b5-9026-010629c4b8cd) + ) + (wire (pts (xy 256.54 240.03) (xy 279.4 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a60d735-0c7c-4abb-8cbb-b6c640354e6f) + ) + (wire (pts (xy 237.49 207.01) (xy 250.19 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80c08c4a-dc39-4d4c-900d-3d5d27e71153) + ) + (wire (pts (xy 228.6 109.22) (xy 228.6 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8150260c-355c-4bd1-a09d-c84d04ad50b5) + ) + (wire (pts (xy 156.21 207.01) (xy 168.91 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ac60019-ff14-4ccf-bf72-7610be895704) + ) + (wire (pts (xy 170.18 250.19) (xy 170.18 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bf05ef4-098b-4304-8d21-369b0820599e) + ) + (wire (pts (xy 264.16 207.01) (xy 264.16 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c62fff9-246d-4f7a-b4ef-cf561e938d71) + ) + (wire (pts (xy 172.72 129.54) (xy 172.72 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a10955db-60f7-41ab-9f52-783e04186488) + ) + (wire (pts (xy 152.4 109.22) (xy 152.4 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4115ae8-6cb6-4c3f-b759-d1c7e51b8ba2) + ) + (wire (pts (xy 256.54 177.8) (xy 262.89 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a88b235a-a5d9-418c-b2ba-2d6bfd2b4c34) + ) + (wire (pts (xy 215.9 120.65) (xy 215.9 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4892017-de54-4f5a-bfcf-869e9a226031) + ) + (wire (pts (xy 203.2 129.54) (xy 233.68 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b54da8d4-f09e-450f-84f5-31bb6d2261ce) + ) + (wire (pts (xy 233.68 129.54) (xy 233.68 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b91714ec-8f05-4d6c-a541-cc9e0b36d5e1) + ) + (wire (pts (xy 162.56 156.21) (xy 162.56 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b92537bd-1776-4247-a3fd-c81891128e5b) + ) + (wire (pts (xy 215.9 95.25) (xy 215.9 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbca53e9-ec87-4de6-9c62-8efae1c0690a) + ) + (wire (pts (xy 279.4 240.03) (xy 279.4 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid beacc25c-2240-4eda-9ab4-9cc214bd1dbc) + ) + (wire (pts (xy 139.7 95.25) (xy 139.7 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c37acd45-0045-4d3d-88c0-fa2061f66263) + ) + (wire (pts (xy 170.18 229.87) (xy 170.18 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5496195-1da5-45ac-9c46-0923bef03754) + ) + (wire (pts (xy 265.43 177.8) (xy 269.24 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5ddc71a-0835-4326-a278-e9909c8909a7) + ) + (wire (pts (xy 198.12 100.33) (xy 203.2 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6fcba05-602e-49b2-85e2-75c8127dc64e) + ) + (wire (pts (xy 231.14 127) (xy 231.14 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7d0e6f1-0ca6-48c4-972a-461fa2e26bc9) + ) + (wire (pts (xy 175.26 177.8) (xy 181.61 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c84c8aad-c42e-44bd-9983-8999d433201b) + ) + (wire (pts (xy 222.25 100.33) (xy 215.9 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbd74cfe-a883-452f-a959-ca5746e37d78) + ) + (wire (pts (xy 177.8 109.22) (xy 177.8 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ccc2e095-5ff4-46ce-9da7-98073c8d2b34) + ) + (wire (pts (xy 271.78 148.59) (xy 271.78 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce199cfa-9990-4d19-a8f3-e748c5946c13) + ) + (wire (pts (xy 231.14 177.8) (xy 236.22 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf5db129-c816-43ea-b5bd-c4e0c16587ed) + ) + (wire (pts (xy 182.88 204.47) (xy 182.88 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7daef4f-5938-41c1-b16f-21b5a6f36abe) + ) + (wire (pts (xy 187.96 140.97) (xy 222.25 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7e7658c-bdd2-4094-a8f6-d650cfd620da) + ) + (wire (pts (xy 256.54 140.97) (xy 269.24 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8f66d1c-d8a6-4f35-8c05-8157569b11d0) + ) + (wire (pts (xy 259.08 156.21) (xy 259.08 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da2cf52b-730c-4552-a443-68b1d6c7825a) + ) + (wire (pts (xy 190.5 109.22) (xy 190.5 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db6124c5-9e14-4f4d-a2e7-a0544a0af3f6) + ) + (wire (pts (xy 156.21 204.47) (xy 156.21 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e37ef019-590f-4bb9-a368-d35a434e97b7) + ) + (wire (pts (xy 203.2 120.65) (xy 203.2 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e56b726c-2f08-434a-8f7c-68cbfb11744d) + ) + (wire (pts (xy 254 109.22) (xy 254 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea2065d4-88ed-4e93-b25b-b9bc55be0a7f) + ) + (wire (pts (xy 172.72 129.54) (xy 203.2 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea7a5393-abf5-4955-99ff-47533c5171da) + ) + (wire (pts (xy 175.26 156.21) (xy 175.26 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec4f0f9d-570e-4172-a61b-f641f82a3879) + ) + (wire (pts (xy 238.76 181.61) (xy 238.76 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee657df0-3e74-42d5-b0ee-2f71f8da7d47) + ) + (wire (pts (xy 184.15 181.61) (xy 184.15 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid efb17860-3956-4cc2-9484-bfefa50ed7ca) + ) + (wire (pts (xy 246.38 148.59) (xy 271.78 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f14a6f2e-d28a-4261-a8ad-880d0e6bdc7e) + ) + (wire (pts (xy 215.9 100.33) (xy 215.9 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6f141f0-70ed-4b67-ade1-5ec117a4b96f) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 228.6 73.66 270) (unit 8) + (in_bom yes) (on_board yes) + (uuid 0075f22f-023b-4d51-8ecd-c1ed282ef919) + (property "Reference" "U1" (id 0) (at 231.14 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 231.14 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 228.6 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f0188c05-d94f-4900-b3e3-5df12b73b292)) + (pin "2" (uuid 48c3f0af-e7b3-454d-9c2f-4bb459877dbc)) + (pin "3" (uuid 2c91cfaa-21e7-4574-8ffb-d918cc883558)) + (pin "4" (uuid cef40bb4-f48f-4e28-968f-0d344fea9f50)) + (pin "5" (uuid e078c1d1-ee9c-4533-a710-9d124d9336bc)) + (pin "6" (uuid ce71cbf9-41d2-4150-a122-ad30bd5ea578)) + (pin "7" (uuid cb475321-d2dd-464e-ad42-70a3bddb2a3f)) + (pin "8" (uuid a00d6386-aea0-4549-9071-164c0cc0c6fb)) + (pin "9" (uuid 5cb00f9d-f315-4889-b2b3-d2406e71fbd4)) + (pin "10" (uuid 0ff1649d-1216-466e-9d1c-60e2838ce3d3)) + (pin "11" (uuid d9a9ed67-86fa-4ebd-ba1c-4efef81968c9)) + (pin "12" (uuid 77554a64-fcec-4fce-b7c7-a31db4ff478d)) + (pin "13" (uuid dad832a2-2eab-4021-bb14-12ecb3a2807f)) + (pin "14" (uuid b6b5f330-5d09-4e0f-a9df-ab87862f7ecf)) + (pin "15" (uuid 474da0e5-7d6c-4682-9702-131a6e386c9f)) + (pin "16" (uuid def607a9-90ce-416c-a45c-7b8373e99fb0)) + (pin "17" (uuid 12596356-fd64-4e93-ae1f-617b2aa010cf)) + (pin "18" (uuid 33d4a8c7-00c7-4f05-8f4e-88e5079d7421)) + (pin "19" (uuid c2f47c40-d66a-4b18-b75a-bf2683c97144)) + (pin "20" (uuid 3fbcde1d-7b11-4930-9c3e-3ac04c91206e)) + (pin "21" (uuid 26149864-26cd-4fd0-b00e-e27e3ae3ea15)) + (pin "22" (uuid 22feb812-a36e-43b9-99c3-12e5130b0e34)) + (pin "23" (uuid 8187c358-3d2a-421f-b3e6-2f729f32853f)) + (pin "24" (uuid 2f7b7dad-812f-4d78-a8ec-07605e09c415)) + (pin "25" (uuid 8721e557-ed9c-4352-85af-959c3e940db8)) + (pin "26" (uuid e91221b3-464e-427f-9c26-cfd866b9cee0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 170.18 257.81 90) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06ab66eb-b30e-4045-b838-f0270cf0ccba) + (property "Reference" "U1" (id 0) (at 172.72 256.54 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 172.72 259.08 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 170.18 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e80240d3-3f02-4dfd-bae5-a72069feea13)) + (pin "2" (uuid 4788d616-eed5-407f-b2ef-c0ec3caf85c1)) + (pin "3" (uuid d349290f-996a-4904-a234-5477b60309a8)) + (pin "4" (uuid 3323faae-2380-4aff-b3da-1578f59d0063)) + (pin "5" (uuid 94967154-5ec4-4a1a-9226-9999a4da71cf)) + (pin "6" (uuid 16df38e1-71c4-494c-b757-2068cd4efa04)) + (pin "7" (uuid 6e1496b1-7830-4171-bd72-b92eea953199)) + (pin "8" (uuid d6778134-8d9d-4b7a-a019-28376dd7ee25)) + (pin "9" (uuid 46d93190-37e5-4f8e-a2bf-19882415eecd)) + (pin "10" (uuid f510d83d-922d-41bb-a9a1-7f54fe192ce8)) + (pin "11" (uuid 81359dec-b15e-4acf-ae30-fe333da5f779)) + (pin "12" (uuid 3dd0f519-ade9-408f-8c27-f577b2e6d1ee)) + (pin "13" (uuid 8fdda43b-9981-49a6-a6a4-b9bc637140df)) + (pin "14" (uuid dc681603-fe40-48ce-8885-3ce3b70edc57)) + (pin "15" (uuid 447992db-c562-4dd6-adcf-6b507b63b52d)) + (pin "16" (uuid 833836ad-4f1f-48eb-85a6-9030622972ed)) + (pin "17" (uuid 2f6383e5-ad7e-4f07-ba5f-ca90ed3dd287)) + (pin "18" (uuid 21b252fc-d705-4948-8e23-967e59be649c)) + (pin "19" (uuid f647bc9a-dbce-44d8-ba06-3d3f6b1410ca)) + (pin "20" (uuid f6e0a131-c23a-498d-8c1a-6c623d758376)) + (pin "21" (uuid 13d40fb5-5886-41b0-8c1d-0f697ddd53e8)) + (pin "22" (uuid 09dee364-70e9-456b-bc66-bb082a74c24d)) + (pin "23" (uuid 3bf69b82-bc82-4ac4-a712-ab614cabcd97)) + (pin "24" (uuid 5256e862-ea78-4951-9fae-077c8b9331b9)) + (pin "25" (uuid 03be7f1d-0f26-4207-85e0-714d8043efaf)) + (pin "26" (uuid 0813dfb1-c329-49f8-bb49-211a80dfaadc)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 229.87 165.1 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 07f2c2a0-ff4f-4ab3-b120-b86e4342510f) + (property "Reference" "X6" (id 0) (at 236.22 165.838 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "3_and" (id 1) (at 236.22 169.648 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 229.87 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 229.87 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f418ba7d-f372-4d06-804b-712249db7cf1)) + (pin "2" (uuid b0cb0c0b-12bb-4330-99cb-ba4589f5f6b9)) + (pin "3" (uuid a920c317-0e5e-4d6a-8406-4beece43aba6)) + (pin "4" (uuid 9ce77c5a-0564-4608-ba9d-37c84d0e7988)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 266.7 73.66 270) (unit 11) + (in_bom yes) (on_board yes) + (uuid 0dcbe605-da4a-4fd7-9bf7-c07c16b43b85) + (property "Reference" "U1" (id 0) (at 269.24 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 269.24 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 266.7 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 266.7 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6963bfb5-b9b4-4cdb-94ea-b37c1fc89207)) + (pin "2" (uuid f9c1ecf2-8709-4094-86be-6f6af1bbe188)) + (pin "3" (uuid e52e1bd7-7842-4db2-ada1-175991ea0c35)) + (pin "4" (uuid 7aaffded-6002-4ed6-a935-7a9ab7a6b064)) + (pin "5" (uuid beb52cda-6e61-46a6-97fb-0b30778a90ed)) + (pin "6" (uuid 29922abc-64d3-4ff8-a667-045e1f1f54ba)) + (pin "7" (uuid d11c5272-f12c-4e53-9017-8ba64e549faf)) + (pin "8" (uuid 84473b8d-795e-4f75-a063-9791d771ef8b)) + (pin "9" (uuid 10e2c1de-5db9-4043-87da-56374c274385)) + (pin "10" (uuid 0d65a53d-ad15-49f1-9510-a2e2150f7030)) + (pin "11" (uuid db96f62f-e0ac-463a-a7db-73a1ca8d0baf)) + (pin "12" (uuid a648f799-4832-428d-adb9-df689c5cc577)) + (pin "13" (uuid 3a79b1c0-0042-4162-9d60-d80fbe8bb591)) + (pin "14" (uuid 60785b65-30b2-414b-b6c3-454c91f81110)) + (pin "15" (uuid 510d3d4c-4052-4543-999f-ead641a16d41)) + (pin "16" (uuid ce108ed2-c8d0-4cd2-84d7-ada349c762f3)) + (pin "17" (uuid 6ff757c8-0de3-4576-a4c8-dcd6492095e8)) + (pin "18" (uuid cb69a4f5-fdad-425c-8174-eff794be6c02)) + (pin "19" (uuid 4e673880-d0a4-4873-a2c7-0f1761925d13)) + (pin "20" (uuid c63ed98d-0c8e-4e26-8384-bb0cba785d2a)) + (pin "21" (uuid fd0946d5-b418-4ef1-94c0-89eea8541bc2)) + (pin "22" (uuid 06d92f49-af50-4d33-a962-bd14aed8cb48)) + (pin "23" (uuid 23ff87b0-4069-4c65-8584-1dd9d593867c)) + (pin "24" (uuid 413539b8-03e8-424a-a531-1654c8a315ec)) + (pin "25" (uuid 2e31ef9b-d93c-46e1-90a9-134550572b4e)) + (pin "26" (uuid 31d680ab-bff2-44af-bfd5-e9312b5c22b9)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 267.97 165.1 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1a0951f1-1e71-436c-8e02-e7958085f205) + (property "Reference" "X10" (id 0) (at 274.32 165.838 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "3_and" (id 1) (at 274.32 169.648 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 267.97 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f8ec64be-f206-46f9-9cc6-54a7c1f4f4ce)) + (pin "2" (uuid 988e47ec-272b-4d86-9447-9646b441cc83)) + (pin "3" (uuid 4809cefa-c2db-4b00-9255-eb8dc412cd5b)) + (pin "4" (uuid 2587f571-2eeb-4931-a0d7-143eb11d3bcd)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 203.2 73.66 270) (unit 6) + (in_bom yes) (on_board yes) + (uuid 1f558742-8abb-4c07-b089-8d4f51474d5d) + (property "Reference" "U1" (id 0) (at 205.74 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 205.74 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 203.2 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 203.2 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c8d7546-bd61-49aa-8cbd-246286bee98a)) + (pin "2" (uuid 0751d801-750d-4b11-9c15-3fe7c89220c5)) + (pin "3" (uuid 59db20d9-5833-4b6d-9bd4-2bb190e3d5e0)) + (pin "4" (uuid c1370a50-540f-4ee5-9d2a-e52bcb9edbd5)) + (pin "5" (uuid 11b4a4bf-ca3d-4dde-a854-9505020c46e1)) + (pin "6" (uuid adaac0f9-3e6c-44ce-bd67-362c1cb8a06a)) + (pin "7" (uuid fb324b11-3821-4a72-8beb-97f4c94cf6df)) + (pin "8" (uuid 98a30a3e-028e-481e-98e1-045558351e0a)) + (pin "9" (uuid 6e44cfe6-e677-45b2-b73e-f4e3419ff7a8)) + (pin "10" (uuid cf59e90e-4641-44e0-8b44-73b2a592c6b0)) + (pin "11" (uuid f247c4fe-bb19-49f0-b922-0a0cd44d879c)) + (pin "12" (uuid ba6d374a-d8f0-4873-9040-0e3f70e3420c)) + (pin "13" (uuid 9d332357-c77e-4901-8286-3e69fcfe1353)) + (pin "14" (uuid 89a2b34c-4ee5-4419-9d9e-cfb7218e2bdd)) + (pin "15" (uuid e6b73aa8-611f-4fb6-8843-ccbdc20bade2)) + (pin "16" (uuid f7619cff-c37c-4aba-a549-1ef6a9c02d8c)) + (pin "17" (uuid 418da277-286e-4e99-8b59-da575f63a266)) + (pin "18" (uuid e85c7923-7cc0-4d2f-bd09-0887c1b09122)) + (pin "19" (uuid 7c856468-fa0d-428d-9415-fcd8a79aa26d)) + (pin "20" (uuid e6fb8502-2fbc-4347-bda7-03bba50f5d77)) + (pin "21" (uuid 4ec4b56e-af1e-40cf-9b22-daaaeaf92291)) + (pin "22" (uuid fa53780f-c9e3-42d9-a955-3833953114c3)) + (pin "23" (uuid 08527d0e-c268-4de0-8bf7-8a072ca39fe2)) + (pin "24" (uuid 32197d09-c416-4779-b819-6a923daab799)) + (pin "25" (uuid a3e9e065-75fd-4dc0-9e71-cb7f6e6b51b1)) + (pin "26" (uuid e575c3e6-728c-41d8-98cc-235c355757b5)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 152.4 92.71 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 212a3ea5-d0bc-457c-95d1-608a66e7bd37) + (property "Reference" "U3" (id 0) (at 158.75 93.345 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 158.75 97.155 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 152.4 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 152.4 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5ea63da8-523e-4490-a671-8499b6b2b470)) + (pin "2" (uuid c3b83b51-861b-456d-880d-f27e4ca37205)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 236.22 193.04 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2892cc51-919e-4a3d-8def-5cc4a0d144f7) + (property "Reference" "U15" (id 0) (at 241.3 191.77 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_or" (id 1) (at 241.3 195.58 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 236.22 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 236.22 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 492f53b4-054e-49a3-b42b-e2036746043b)) + (pin "2" (uuid 0bdaaf91-ce71-4150-ac7d-2d28dda4a840)) + (pin "3" (uuid f9b05559-22f3-4dfe-ae9f-b50fd7222dd5)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 254 92.71 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2927bd64-09b0-4838-87b3-23f1a8cf5f80) + (property "Reference" "U18" (id 0) (at 260.35 93.345 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 260.35 97.155 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 254 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 69217d34-c57d-4b23-ac60-c146c5fa6053)) + (pin "2" (uuid bc609cb5-5431-4d29-880f-3a4a995ab599)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 148.59 165.1 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2a4d672d-9aff-4dc2-be45-c5fc30781866) + (property "Reference" "X1" (id 0) (at 154.94 165.838 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "3_and" (id 1) (at 154.94 169.648 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 148.59 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 148.59 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 20a2bee3-e139-4336-95fd-0bde9a9e2c2b)) + (pin "2" (uuid e4cda9ed-3ad0-4d82-8ea6-0d80fd2182e8)) + (pin "3" (uuid e8526b3b-48dd-42f8-b435-d571069b92f7)) + (pin "4" (uuid 438ef0c4-2f18-433a-ad04-ec9ac0a03012)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 241.3 73.66 270) (unit 9) + (in_bom yes) (on_board yes) + (uuid 2df517c2-e14f-4f56-b233-123cf7b74d5d) + (property "Reference" "U1" (id 0) (at 243.84 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 243.84 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 241.3 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b417c5e0-eec9-4f4d-8892-d313795beb61)) + (pin "2" (uuid 7bf36e83-c0f3-41be-879c-80bb9701a87c)) + (pin "3" (uuid f4b75aac-b1ff-414d-9d83-1f6c10abc422)) + (pin "4" (uuid d3bdfd20-4715-418a-9503-f2f5a213e293)) + (pin "5" (uuid 87fdbbeb-e330-48fa-83a2-9efaa8a075e8)) + (pin "6" (uuid a875ec1e-89a8-4e75-906a-9dc748f48acd)) + (pin "7" (uuid 7963739c-33f2-4138-9f81-b240d94096f5)) + (pin "8" (uuid 64000c02-3e3a-4f04-98c3-b5716bb1e65e)) + (pin "9" (uuid a28bb0fa-c4b5-483b-b789-ecbdf754fa59)) + (pin "10" (uuid a439a7b6-82a1-4ed5-a26f-23a6e0f43767)) + (pin "11" (uuid 2e115907-803b-4e4b-9dee-86832ea824ec)) + (pin "12" (uuid bee7fd06-4337-47bc-9198-f6af3d1e67f6)) + (pin "13" (uuid df3a8f33-9290-4d21-ac18-68582ad71dfb)) + (pin "14" (uuid bec852e5-4416-49fc-bfef-3e50b49858eb)) + (pin "15" (uuid a75e9c34-9d78-4f40-88cb-5b0bbcd84f85)) + (pin "16" (uuid 144d8d62-c7c5-4e0d-8ffb-cc2bd1ee8e98)) + (pin "17" (uuid 5a488aa1-43dc-4965-8c4d-c314acce9990)) + (pin "18" (uuid 73826897-1ca1-408d-8734-5e526c47592a)) + (pin "19" (uuid 182bac80-4171-4ec1-9d53-f43e9c5b164a)) + (pin "20" (uuid 99a54beb-f298-4ba9-a5d9-0377dc590d08)) + (pin "21" (uuid d5ce45af-94c1-4c37-8897-ab17f32d018e)) + (pin "22" (uuid 8eca9d94-442b-473b-a93b-d0801ecc920c)) + (pin "23" (uuid a34c8c3d-a34d-42de-a107-b24ac2989e7a)) + (pin "24" (uuid 7b54fb44-f582-4977-9d4a-579f28801734)) + (pin "25" (uuid cef48967-5205-40cd-880d-c63eca089c9f)) + (pin "26" (uuid 0287b188-8cd1-435d-98a5-449b9862f166)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 215.9 113.03 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 36f5dd23-dd48-4e62-93b5-b9727bcd6151) + (property "Reference" "U13" (id 0) (at 218.44 111.76 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 218.44 115.57 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 214.63 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a6a87a4b-25cf-46ef-89b8-068bc923d84d)) + (pin "2" (uuid 03ed74f9-b9d6-4645-a081-67bd4b72f4b3)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 250.19 218.44 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4258d33c-c2e2-452c-900e-d0a869824bb1) + (property "Reference" "U17" (id 0) (at 255.27 217.17 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_or" (id 1) (at 255.27 220.98 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 250.19 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 250.19 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f87759a-3e93-4c57-a992-b2c06b7aadef)) + (pin "2" (uuid 863a9b7d-33d4-4495-90fd-6ba988cbd459)) + (pin "3" (uuid 169dbb3f-81e9-479f-a936-2ffb7fddc10a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 177.8 73.66 270) (unit 4) + (in_bom yes) (on_board yes) + (uuid 44c64112-b1fa-44d0-8d61-fea4f40b56b8) + (property "Reference" "U1" (id 0) (at 180.34 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 180.34 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 177.8 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 177.8 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad052f98-97d4-4073-8637-281fc8ae181a)) + (pin "2" (uuid e958421a-fbc8-474e-9ed0-3f07eb2677c8)) + (pin "3" (uuid b4c81e42-6d3d-4252-b219-9d371f07df07)) + (pin "4" (uuid 6f52eeaf-6f84-4349-95a1-808d24748c50)) + (pin "5" (uuid 2b9c0e4e-9f1d-4076-ad59-3edfdc4d1cd1)) + (pin "6" (uuid 131ab631-f91f-4805-970b-93a870e466f0)) + (pin "7" (uuid a098ddce-1786-4792-968d-ab96671910d2)) + (pin "8" (uuid de7e86f4-ccd9-48f8-9c29-2d2fc8c93b81)) + (pin "9" (uuid 5612edf3-9a9e-4f61-a601-434406e0c5fe)) + (pin "10" (uuid 465ac78d-ed96-4640-a960-d947189a290b)) + (pin "11" (uuid fd4e1180-de94-46ef-ac41-f76d7b10ed3e)) + (pin "12" (uuid a8141221-51a0-4346-a46b-a19e2945e356)) + (pin "13" (uuid d4efb1fa-bf38-47b0-9513-8820c5584af7)) + (pin "14" (uuid 9ed942e4-ff16-4a94-a169-3585042d7fbe)) + (pin "15" (uuid 4c515b22-72f7-4074-bb78-7696e2c61ac1)) + (pin "16" (uuid e0759e86-626d-4454-a103-14190fddd426)) + (pin "17" (uuid ca186b3e-10e5-4608-8e03-e026fca56966)) + (pin "18" (uuid 0c7ea7e4-113b-4c16-960e-c93df9b645e3)) + (pin "19" (uuid 10bbcbac-ba5b-408a-8808-45560af890cb)) + (pin "20" (uuid 3022c8aa-7b09-4536-8591-10bab2468ce4)) + (pin "21" (uuid 0b5d15d9-8e04-4ca9-8bcb-42b5a080cdf3)) + (pin "22" (uuid 8f07e89f-5442-42ef-bf65-a2c1d6bfc7e6)) + (pin "23" (uuid bc9d4c71-8b65-4015-87cc-964809294634)) + (pin "24" (uuid 67dc7c8a-e8a9-4aea-8fa3-baa4c887c8bf)) + (pin "25" (uuid 7ec6b519-e50c-4083-a3c6-5cc7071cd25c)) + (pin "26" (uuid 5793085f-cbbd-4a19-b6e2-8818cbfa938e)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 255.27 165.1 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 49151818-4b92-4132-9e30-2d9f2eb0dd9f) + (property "Reference" "X9" (id 0) (at 261.62 165.838 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "3_and" (id 1) (at 261.62 169.648 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 255.27 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 255.27 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7a71c31-ccac-4c33-bc88-d95840750f07)) + (pin "2" (uuid f78cc2ac-4ada-46df-a037-77694aecd889)) + (pin "3" (uuid 6591279b-80e9-4b69-84b3-b001b58f8b4f)) + (pin "4" (uuid aa2a4692-de83-4341-9ccb-4a687899a5e2)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 139.7 87.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4d408920-2abf-4410-9db6-95c9248bb71f) + (property "Reference" "U2" (id 0) (at 142.24 86.36 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 142.24 90.17 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 138.43 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 138.43 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4841a930-8f58-4a01-a824-bd72fce89834)) + (pin "2" (uuid c2d7e335-f11b-43e8-af4c-165df7eb5e13)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 203.2 113.03 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 517bbd04-bfd4-4c28-86f9-d741231888f2) + (property "Reference" "U11" (id 0) (at 205.74 111.76 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 205.74 115.57 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 201.93 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 201.93 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e8c8bdac-79f3-4393-9c29-3eca5edb8204)) + (pin "2" (uuid c1245d01-d6d9-4469-a05e-dc0ec582cf93)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 215.9 73.66 270) (unit 7) + (in_bom yes) (on_board yes) + (uuid 5410494f-51f8-4c82-8fcd-146b27867900) + (property "Reference" "U1" (id 0) (at 218.44 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 218.44 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 215.9 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 215.9 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 85ddafd0-aefa-4475-82cc-ab3f956d2b5b)) + (pin "2" (uuid 6a893227-99b4-4bde-9c99-c47202300f5b)) + (pin "3" (uuid 903789fd-ccbc-4ec2-b97d-b70232fad6b2)) + (pin "4" (uuid fbd21075-9c32-49b5-9e24-a20bd459b91c)) + (pin "5" (uuid 5909c498-79ba-44a7-b7b2-c4617dda9033)) + (pin "6" (uuid 62017fe6-11fb-4c62-9c97-89c79cc6554c)) + (pin "7" (uuid e05e8b31-2de7-45a8-b0d7-b5e4da2c5179)) + (pin "8" (uuid f742eb2a-564d-4522-be5b-1b5ae8543200)) + (pin "9" (uuid 792843f8-550e-43c4-baf2-88210f7cb44f)) + (pin "10" (uuid 75b8a6a7-db62-45e5-aeef-fe068906aa4b)) + (pin "11" (uuid 5885b674-430c-4a0b-ad1d-3b570a3f4b77)) + (pin "12" (uuid 9bc69a53-c42c-4c0e-9caa-e3513914b8c1)) + (pin "13" (uuid abf06aed-a6c8-47ca-8a8b-d70753a36fe2)) + (pin "14" (uuid 6751587f-a25a-416a-a426-173d58078553)) + (pin "15" (uuid a0f6f229-fe05-4c7d-91e7-11e03902ff37)) + (pin "16" (uuid 3da047ed-5977-4b55-a319-0ef4d8c8511e)) + (pin "17" (uuid 5823d01a-9bfa-4298-ada4-a63d945ae43d)) + (pin "18" (uuid 268d27f0-6f94-4b03-b9b1-bc23e6a37474)) + (pin "19" (uuid 918518ed-28a4-4f97-8f08-36918e482807)) + (pin "20" (uuid 0338c799-917c-47ab-99f6-c8b628848f43)) + (pin "21" (uuid 69271600-d82c-41cf-844e-bb894af48e25)) + (pin "22" (uuid 73ae58b0-2499-43d6-9732-3c3a59a9344a)) + (pin "23" (uuid e40a747f-3f5b-4043-81a4-b324eaf5e4ec)) + (pin "24" (uuid 25a53b1b-a560-4826-b266-68cf09819863)) + (pin "25" (uuid 3f561149-c455-4b23-80fd-0b23ec6c6f6c)) + (pin "26" (uuid 54d21593-b611-4d99-8d3f-1bf757779d76)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 165.1 73.66 270) (unit 3) + (in_bom yes) (on_board yes) + (uuid 54d6ecda-a2d9-42fb-8431-e7d31eb72553) + (property "Reference" "U1" (id 0) (at 167.64 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 167.64 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 165.1 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 165.1 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 66265368-fa58-4415-ae15-5ceb6a7055fd)) + (pin "2" (uuid bb249ea2-57da-4140-b993-6c1573d3063a)) + (pin "3" (uuid 3a9681c1-efa5-4988-bd0a-37a883c9d53e)) + (pin "4" (uuid cadedfde-360c-4be3-8197-afe4cf4cd2d8)) + (pin "5" (uuid c454e2d4-0bc2-4b97-a15a-259b349e5fa9)) + (pin "6" (uuid 6b4c801f-313d-4222-a645-ddc657cc6378)) + (pin "7" (uuid c386e5f2-01c8-4445-b8e6-30bb2571dedb)) + (pin "8" (uuid eb269a1f-7808-4e3b-bf63-c9c3ffb05106)) + (pin "9" (uuid d212875b-a73f-4b88-8a6c-3d51d2e4f28d)) + (pin "10" (uuid 573d9e91-8ce7-4c03-9e7d-ca0c81574239)) + (pin "11" (uuid 13bca151-6e73-4407-b700-61d31d4a16d2)) + (pin "12" (uuid 1b948249-8ed2-4ec4-883a-7f28cee8c482)) + (pin "13" (uuid 27c1b7d3-4e49-4c51-8320-b03f728b1c41)) + (pin "14" (uuid 6bf0c0ff-1f87-4b5e-be54-8d28a5d1b09f)) + (pin "15" (uuid a006fb14-a5d9-444e-be50-a63a1f5957dd)) + (pin "16" (uuid 38ee832d-e957-4a26-a74b-070c6573a95c)) + (pin "17" (uuid 257a7c1c-4a22-4089-a4a2-c625e57d6d49)) + (pin "18" (uuid 15f6d18f-0b35-4f8f-b343-729932f4e14d)) + (pin "19" (uuid 4c4f9db3-b171-45a7-a1e8-12cdc446cc1a)) + (pin "20" (uuid f40dc0ef-7184-494d-a38c-bf9237b0004b)) + (pin "21" (uuid 69b82b83-4b47-483f-ae70-ef124d6f50a1)) + (pin "22" (uuid fecd0e1b-7ff0-4316-9eef-44dd5a64a3d8)) + (pin "23" (uuid fe20dbe4-6dbb-4f8e-b46e-f2ccf17ef048)) + (pin "24" (uuid d681db19-11a9-4f58-983b-95d56ac92eae)) + (pin "25" (uuid 33ff4411-85f9-4a77-a2ff-7b274d6bd19b)) + (pin "26" (uuid cd69cd9c-5f1f-421b-b1b3-32d306d37107)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 251.46 240.03 90) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 556b3344-9f35-4043-8c1a-8d3fbc807b90) + (property "Reference" "X8" (id 0) (at 245.11 240.0299 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 245.11 242.5699 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 251.46 240.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 251.46 240.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 98c48b8d-9bf2-43e4-b345-fc154e508424)) + (pin "2" (uuid 059a6ce4-7cab-4b2d-bffc-9007481d61ab)) + (pin "3" (uuid 81d187cc-e5a1-4084-a62d-8d3676a7292d)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 177.8 92.71 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ac45c85-ebbc-4a4f-8ed1-9f9dc90505f2) + (property "Reference" "U7" (id 0) (at 184.15 93.345 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 184.15 97.155 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 177.8 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 177.8 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b45ca4be-276c-4677-9311-7d733a0237b2)) + (pin "2" (uuid aede718c-04f0-4de6-9b68-ec697b9184b2)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 154.94 193.04 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 61096a23-f0c2-40cd-9f09-9888cc6c7eae) + (property "Reference" "U4" (id 0) (at 160.02 191.77 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_or" (id 1) (at 160.02 195.58 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 154.94 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 154.94 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8ca3ee01-aef6-4ade-b4ba-76f8651ace2d)) + (pin "2" (uuid 659c20dc-0604-4869-b401-776f1b772c59)) + (pin "3" (uuid 5f817964-67be-4fc6-b72d-0a42e7151562)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 228.6 92.71 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7004ffe4-1914-4838-89b2-84fc133b05ff) + (property "Reference" "U14" (id 0) (at 234.95 93.345 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 234.95 97.155 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 228.6 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4fd0ec94-d63a-4efe-8f07-0d4de9be570f)) + (pin "2" (uuid 4e9ddc21-3549-4e0c-ab03-43e8823fef0d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 254 73.66 270) (unit 10) + (in_bom yes) (on_board yes) + (uuid 73952cac-4249-48fb-9dc8-06bd95dfbbbc) + (property "Reference" "U1" (id 0) (at 256.54 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 256.54 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 254 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 50e2279a-fe9c-4d8a-82a2-42d0d97231fc)) + (pin "2" (uuid ba5eb6f2-2b8e-45ac-85a0-6bd3b54b89e8)) + (pin "3" (uuid bc9bae2f-d631-471d-9620-ba591f9e2e14)) + (pin "4" (uuid 42692398-6d25-49da-b4ba-e6860c7740fd)) + (pin "5" (uuid c9457824-7424-4723-ac4b-0393f8fa21d5)) + (pin "6" (uuid 4e9ea04b-fa03-4884-b0b3-337432e875c9)) + (pin "7" (uuid 67ca29d7-81d0-4a67-b394-c21de6702811)) + (pin "8" (uuid 15c1d93c-2334-41f3-be7b-3a362a037ed5)) + (pin "9" (uuid a7d79b5b-a212-4a45-b6ef-715db450e07d)) + (pin "10" (uuid 808f1f6b-2a89-4fab-befe-9ade2360d48e)) + (pin "11" (uuid 4b02c75b-ffab-478c-ad52-d5ab918e1dbd)) + (pin "12" (uuid bc417c40-2c28-42ba-b9c0-1fb9ab2b0fc6)) + (pin "13" (uuid fbb4a2ea-a086-407e-989c-4413eb6198fb)) + (pin "14" (uuid 667de6d4-c8d6-4b82-b0a2-55de3b1e67f6)) + (pin "15" (uuid 6f1a463c-dcb0-428e-be31-d6ba24c5da4b)) + (pin "16" (uuid 1a82cc7e-51df-46f5-ba52-4dc0dca1bca6)) + (pin "17" (uuid 8d867b4f-a7c5-42d5-a579-623ce51db2a7)) + (pin "18" (uuid 609f49c4-0b2e-4ae7-9a1a-78ceddec312e)) + (pin "19" (uuid 6be5d253-5a28-4bfd-9f9b-d2592619416d)) + (pin "20" (uuid 03fa74d1-a717-4034-bf88-deb260b46d82)) + (pin "21" (uuid b888633c-843a-44c6-8168-9e555ab01b79)) + (pin "22" (uuid 8a3fbe2c-4a36-4aab-93bd-f3511cbb253d)) + (pin "23" (uuid 16cc57ab-7827-4950-affa-d67b1ca1f37e)) + (pin "24" (uuid b094535f-6207-4b53-b2a1-2c4618426e1e)) + (pin "25" (uuid d03257f5-461a-4770-a1b8-00a20335e24c)) + (pin "26" (uuid 800e2396-e2ba-4e73-9cb2-db0e42cca453)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 266.7 92.71 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 765dd7bc-0bcb-4cc1-a519-6a21cedbd351) + (property "Reference" "U20" (id 0) (at 273.05 93.345 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 273.05 97.155 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 266.7 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 266.7 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1b1b496f-b276-4375-8099-eff628b6903b)) + (pin "2" (uuid 745b902f-ed7e-44e4-9268-a1c1fe922729)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 190.5 92.71 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 77d40bfb-d0b4-4263-a7d0-2b057e83a465) + (property "Reference" "U9" (id 0) (at 196.85 93.345 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 196.85 97.155 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 190.5 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 190.5 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid af1edacb-27a8-4cb8-9a74-ad3d14a2cc4a)) + (pin "2" (uuid e2db848a-4979-46e1-bc3e-6386299ab87e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 139.7 73.66 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 79048248-89a2-4195-8ed3-c2efc45265fe) + (property "Reference" "U1" (id 0) (at 142.24 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 142.24 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 139.7 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7a79bb19-ce31-4d03-9bcd-6552c9345ac8)) + (pin "2" (uuid 8fa1805a-789c-4d21-9ac6-34d6b72b23f3)) + (pin "3" (uuid f7af52ee-370b-40fb-b067-d66e76214006)) + (pin "4" (uuid 2af4edf9-6dd8-4814-a8d5-2f52e769c1ba)) + (pin "5" (uuid ca5c7f95-8f19-4abc-aff9-7dda84c374de)) + (pin "6" (uuid d41640e9-a291-4652-ac9f-8188bec05584)) + (pin "7" (uuid 1d74a8cd-db97-4797-97ab-1e78f26b85e3)) + (pin "8" (uuid c37a3bcf-3963-40cf-8c0d-b80c5ca4bbc6)) + (pin "9" (uuid 7cd9a622-be17-486c-ab7e-f82c9dcf6233)) + (pin "10" (uuid 2a4dd1d2-16c0-4537-9541-c99f399a3c27)) + (pin "11" (uuid c367f229-fd66-409a-834c-bbde7bba0b84)) + (pin "12" (uuid 7285a231-f2ee-43b4-85b7-733d10990faa)) + (pin "13" (uuid d6886747-c557-4281-b9b5-13455f965c0d)) + (pin "14" (uuid a6f85d07-5c5c-4363-a351-d09776d0ae5c)) + (pin "15" (uuid 28e17fc5-d196-4f30-9c05-35378c33c1e1)) + (pin "16" (uuid b0cc3ca2-b1fd-410b-a832-221afed43e88)) + (pin "17" (uuid 61d7455f-6a91-4247-bc9d-fde3c30c3560)) + (pin "18" (uuid 266f1f37-2df4-4e08-866f-b1e84c5d104c)) + (pin "19" (uuid 6552dac3-e3d5-4105-8de7-075513e0587d)) + (pin "20" (uuid 052bcd89-a056-40f5-998c-a89ecf4a0885)) + (pin "21" (uuid 7452f24a-1f11-4c3d-afd8-0444a2268d85)) + (pin "22" (uuid 43f38886-947d-4d16-9c94-6efb086fb358)) + (pin "23" (uuid 19f14259-9ac7-441a-bc20-499e4776653b)) + (pin "24" (uuid 6d252dc1-c94e-4a39-b4fe-c5d3424babf8)) + (pin "25" (uuid f1b3d400-003e-4e1e-a366-5c1aa375c0d7)) + (pin "26" (uuid d417a61d-2d21-4e3d-a491-dc630f2af6ff)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 242.57 165.1 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a2066da-5294-4317-b07b-a805a11b4e02) + (property "Reference" "X7" (id 0) (at 248.92 165.838 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "3_and" (id 1) (at 248.92 169.648 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 242.57 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 242.57 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1903c526-dc3f-4546-8f3b-86fbcd91f21e)) + (pin "2" (uuid 9bc03760-cba4-4f00-9aa8-2354fda1522e)) + (pin "3" (uuid 98cc8cea-2b09-41fe-b538-70af9e5e38f4)) + (pin "4" (uuid e5ae3e2d-6484-46bd-9d13-f4bdc3d4e560)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 262.89 193.04 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 919e1e3b-2839-4d9e-9dbc-9acaa411d426) + (property "Reference" "U19" (id 0) (at 267.97 191.77 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_or" (id 1) (at 267.97 195.58 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 262.89 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 262.89 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 69d69bd4-7eba-4033-8709-3f03c2ee9c78)) + (pin "2" (uuid eceec211-aaa9-4d84-9d23-21f741cb1613)) + (pin "3" (uuid e9cc5a32-29d3-4984-a75a-de0da73e5fac)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 241.3 92.71 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9935c054-63e5-4140-9fa6-ba488495ca80) + (property "Reference" "U16" (id 0) (at 247.65 93.345 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 247.65 97.155 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 241.3 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 99c15846-69e1-4418-916e-9bdda3b0b5cd)) + (pin "2" (uuid 4522194a-247f-4869-bf9e-b62e7ba79673)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 170.18 240.03 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a111b4e1-17a3-4d17-89e0-bb83d13d0687) + (property "Reference" "X3" (id 0) (at 176.53 240.0299 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 176.53 242.5699 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 170.18 240.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 170.18 240.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid eb4a77f1-26cb-4fec-bd79-12bdc1db6518)) + (pin "2" (uuid d4469d6e-af08-416a-8e99-c9139c7be3e8)) + (pin "3" (uuid 1bdfd73e-3ea5-47c7-9e4e-7225ac26d886)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 165.1 92.71 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5ccec0c-0b04-40ea-b508-ae6afb5611fb) + (property "Reference" "U5" (id 0) (at 171.45 93.345 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_buffer" (id 1) (at 171.45 97.155 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 165.1 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 165.1 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 75228acc-4164-436e-a37c-e3358a418808)) + (pin "2" (uuid 2996f943-2224-4caf-9faa-e22531cde2fc)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 181.61 193.04 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ae5817a7-8d2e-4e76-99e8-8bb91fd48d12) + (property "Reference" "U8" (id 0) (at 186.69 191.77 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_or" (id 1) (at 186.69 195.58 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 181.61 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 070e3850-7197-4a88-b114-c1742e9b8fb7)) + (pin "2" (uuid 79b81576-a4d2-4361-aab8-68b759b713b0)) + (pin "3" (uuid 715e13d7-2013-4885-aba2-88aa5688c908)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 251.46 257.81 90) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b316fd84-0db1-4140-b4fc-2705abb738a1) + (property "Reference" "U1" (id 0) (at 254 256.54 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 254 259.08 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 251.46 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 251.46 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a270a0d9-2e56-4007-b995-53bcdcbb067c)) + (pin "2" (uuid 499627d8-5b2e-4d01-a62c-dde87ea5d1a0)) + (pin "3" (uuid 0fb2faac-6629-4704-a254-1b6f41559646)) + (pin "4" (uuid 51efc31f-d96d-4e7d-9f47-0a74aa2287f6)) + (pin "5" (uuid d38ed1d6-31a6-40cc-81ed-2b8ce8cf65b6)) + (pin "6" (uuid cd5090d9-3c6f-4b9a-bb90-2da64b1caa19)) + (pin "7" (uuid 6137812b-ee41-49bd-b257-b73b318c3652)) + (pin "8" (uuid 1882a585-dcf5-4c6d-90a3-e5727fd0b23f)) + (pin "9" (uuid 97b0bb54-236b-41f0-bb6b-5be405cbc376)) + (pin "10" (uuid cc465864-e327-4d9b-95ab-4154058b7c2a)) + (pin "11" (uuid e3c6b348-6515-41ec-8bed-33d6df91e6a8)) + (pin "12" (uuid fe070983-579f-46fd-ba48-f8adfa7086c8)) + (pin "13" (uuid de782942-c2a8-4824-8a7a-23ae02ffe2f0)) + (pin "14" (uuid 7b31b21b-6cf9-4488-b09f-4d97c18bc4c8)) + (pin "15" (uuid 6530a299-119a-431e-a1da-017a5cf5c1e2)) + (pin "16" (uuid 8eff8715-7a6c-44ef-bbdd-379a3a97e130)) + (pin "17" (uuid 0b600569-f019-47ea-938c-778a2fac1eab)) + (pin "18" (uuid c6665866-ef85-4829-9c4e-6df50390cdef)) + (pin "19" (uuid af015d53-2aa6-403c-b76b-b268ca61aff6)) + (pin "20" (uuid 1fa40d9b-3d14-4777-9103-57d5632b4bac)) + (pin "21" (uuid 5d4ff751-c4b7-4b23-9439-539886083faf)) + (pin "22" (uuid a4fa3f76-c604-4dd0-9922-096aeaf42b16)) + (pin "23" (uuid cc202c1f-5a4f-4664-ba25-1c897783d379)) + (pin "24" (uuid d5ed507f-04d4-439f-b713-6945c87070e4)) + (pin "25" (uuid 9003377b-320c-42ae-ace9-1e80eaf0df7e)) + (pin "26" (uuid 47469ffe-0d9c-41a1-a542-914e713181b7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 190.5 73.66 270) (unit 5) + (in_bom yes) (on_board yes) + (uuid b9b121d2-d03d-4cea-8737-a50b69677652) + (property "Reference" "U1" (id 0) (at 193.04 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 193.04 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 190.5 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 190.5 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 83795bf6-e268-4e77-84f1-eb49d22c4988)) + (pin "2" (uuid e48107e5-3dcd-48f3-827c-f16ca616b7e4)) + (pin "3" (uuid 23bd2980-b775-4f53-b137-fc93a0574a4b)) + (pin "4" (uuid 9ec28601-e863-42c2-9e70-7e42d2c3e1c1)) + (pin "5" (uuid 53968b02-ca32-415b-ad94-9d8fdc613abf)) + (pin "6" (uuid e42c7d7f-eb3d-468d-8e06-21f0f35821fa)) + (pin "7" (uuid 4e1675c3-ed6a-488c-92fc-5e5fe0ed4923)) + (pin "8" (uuid b1f9f06b-d2df-4313-8439-b6b2dff2d0b3)) + (pin "9" (uuid 1054e8ca-68cc-4cbf-bbb3-95253119cb9e)) + (pin "10" (uuid 643f0ac9-3f75-4301-b892-7925b8d8ced7)) + (pin "11" (uuid 78901d88-597b-4fe9-864e-b166984d1622)) + (pin "12" (uuid 76d0c880-fd8e-413b-a641-87052b592834)) + (pin "13" (uuid c3d83124-24f5-4a46-ba49-95b57c79b877)) + (pin "14" (uuid 6921eb6e-07f2-45e4-b4ef-1d5704dab47b)) + (pin "15" (uuid eee34e09-0520-4d98-b4f3-62638c8c5a19)) + (pin "16" (uuid 05ec4145-50a4-4b50-bc8a-8adb69c00345)) + (pin "17" (uuid 22b4d572-a499-41e1-bc4b-a183b1f43f56)) + (pin "18" (uuid 6af101bd-e0e2-42a7-809c-4584535f8621)) + (pin "19" (uuid e236f0d8-a407-4d3e-9e20-600dda289bb8)) + (pin "20" (uuid ba8138cd-2c13-4cca-b2b4-8cab6eb7cdb6)) + (pin "21" (uuid b1d9d298-7289-48f7-b0ec-643383238638)) + (pin "22" (uuid d5aff896-cc5c-4c09-850d-5c213f0a9b8e)) + (pin "23" (uuid e6ddf8c8-ceff-4418-86c9-6d675102910d)) + (pin "24" (uuid 0a95f02f-d86f-45f7-bbe5-297d2573dbf5)) + (pin "25" (uuid 6fdf9a8e-724a-41d9-baf3-e902004b9815)) + (pin "26" (uuid 4e6c2982-2a77-46e4-ac8b-a20231c81e2e)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 186.69 165.1 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c00d76e6-5344-4a55-8085-c92c70a46c09) + (property "Reference" "X5" (id 0) (at 193.04 165.838 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "3_and" (id 1) (at 193.04 169.648 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 186.69 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 186.69 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 19ea927e-9c6f-407b-bd24-1a218ec94876)) + (pin "2" (uuid 30b95f62-37f6-44bf-895e-62fc350d37eb)) + (pin "3" (uuid f501f9f9-57ba-4c11-87fd-163e9d24ee00)) + (pin "4" (uuid 551ba2e9-3af5-4d6a-a261-e8193da5e744)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 203.2 87.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c0e2707c-31c5-4335-8a3c-e2cf848b81fc) + (property "Reference" "U10" (id 0) (at 205.74 86.36 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 205.74 90.17 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 201.93 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 201.93 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b158748a-838e-4289-941d-cfcbbbc0f434)) + (pin "2" (uuid eb9f2c79-c9b2-4c43-bd0f-3316acaaf872)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 279.4 73.66 270) (unit 12) + (in_bom yes) (on_board yes) + (uuid dc801edf-ce95-464c-89a5-babb02dd4c47) + (property "Reference" "U1" (id 0) (at 281.94 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 281.94 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 279.4 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid deb3c5a8-5cee-472f-a6e3-64a5e8239100)) + (pin "2" (uuid 62664ffe-1568-40d2-9123-7aa67cff1b74)) + (pin "3" (uuid 30b44b9d-6c3e-4263-9e63-f08ebe02f870)) + (pin "4" (uuid 6e88486e-7775-44b7-9c05-c11cc42c56d0)) + (pin "5" (uuid 07f9f85d-8a36-4cea-bc13-5bb9561738ad)) + (pin "6" (uuid 33a5357f-1f24-4987-aeae-4b14d667ad7f)) + (pin "7" (uuid 2018e610-1f7a-451b-b548-b443bb913445)) + (pin "8" (uuid 2b71e1e4-92b6-4ee5-8f02-2243041720d7)) + (pin "9" (uuid 83b4ea90-2516-4af8-838a-7f38834108d7)) + (pin "10" (uuid 5ee6c896-c534-4616-94b2-fe9b9f6f354c)) + (pin "11" (uuid 19727bbf-4d37-4165-9f85-a2ebfc1405c5)) + (pin "12" (uuid 2f258934-452a-44ca-b3e5-58d23028ba84)) + (pin "13" (uuid 08bc12fe-8e56-46bf-b9ff-ead63d7d6673)) + (pin "14" (uuid 96fd8939-a866-4859-9dc4-85e964ffc5a6)) + (pin "15" (uuid 618d3835-d6e5-4d3a-a86c-730b5f867ad0)) + (pin "16" (uuid b80af436-8448-4320-817d-be7febe94b86)) + (pin "17" (uuid 3a06f448-faf3-442b-9d41-a82e1303af36)) + (pin "18" (uuid f148ed1d-743a-46a1-ad3c-95175e23a546)) + (pin "19" (uuid e1acc34a-9af4-4795-a7b8-c140ee8ca490)) + (pin "20" (uuid 1810ef52-971e-4d36-b12a-a8b90022366f)) + (pin "21" (uuid 823ea2aa-fed3-4d40-96d1-219672be9b64)) + (pin "22" (uuid b8c38d20-78f2-483a-a9d2-b2b72db812aa)) + (pin "23" (uuid 67467038-655f-4039-b0cd-717325f0724a)) + (pin "24" (uuid 19bb8add-f729-4085-8073-6f4143083ca7)) + (pin "25" (uuid 0d17f3a7-6e9a-4fe3-b0c3-7804196f040e)) + (pin "26" (uuid 38fb8520-e5b7-4fcb-b1b1-ef2419fc70a6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 279.4 87.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ddcb9452-3efa-47c2-8a0c-19b9b37ec742) + (property "Reference" "U21" (id 0) (at 281.94 86.36 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 281.94 90.17 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 278.13 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c5171449-8876-4721-8215-699cdef77179)) + (pin "2" (uuid ae3f9a5d-a650-4c4e-b85c-1f953e1d9df5)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 168.91 218.44 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8849189-b436-4889-b093-e89d1f48bc3c) + (property "Reference" "U6" (id 0) (at 173.99 217.17 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_or" (id 1) (at 173.99 220.98 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 168.91 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 24c9347c-e7b7-4b79-b35d-1c7c348e7693)) + (pin "2" (uuid 38d4928a-5b83-4101-ab6e-8a6a2c618cc9)) + (pin "3" (uuid 587da99c-7bd0-4b10-8b73-463cc4f7ec17)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 161.29 165.1 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e92df182-30ee-4292-8449-5465d6b08b04) + (property "Reference" "X2" (id 0) (at 167.64 165.838 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "3_and" (id 1) (at 167.64 169.648 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 161.29 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 161.29 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c724336c-e0dd-43d8-b398-bfc73d26b450)) + (pin "2" (uuid 550a2e9d-987e-4324-81ba-9414a5f987c7)) + (pin "3" (uuid 1caa058f-758a-495f-9886-70e791b0b83e)) + (pin "4" (uuid ca793e38-29f5-419a-ab79-7c2644f44745)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 173.99 165.1 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ead980b4-a12b-46a9-9fb5-5a985f7360ad) + (property "Reference" "X4" (id 0) (at 180.34 165.838 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "3_and" (id 1) (at 180.34 169.648 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 173.99 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 173.99 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a10cbac8-36fd-44ad-9cbb-e094e2afd4fc)) + (pin "2" (uuid bf8b52f4-b9a2-44da-b544-7afbf4fbf097)) + (pin "3" (uuid 389754b1-e4aa-4ba6-8a05-3c1571526a83)) + (pin "4" (uuid 6d74e48d-9033-4643-a943-977911f145d6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 215.9 87.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f5df2149-7650-4071-ac2f-9e9bd6dd88d0) + (property "Reference" "U12" (id 0) (at 218.44 86.36 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 218.44 90.17 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 214.63 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid acf811ed-1430-4ac0-b6d2-c82e08f9dfb1)) + (pin "2" (uuid 720d99f7-0603-428d-bdd1-643d8b8c00f2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 152.4 73.66 270) (unit 2) + (in_bom yes) (on_board yes) + (uuid f9c1805e-0288-4123-bc84-2fcbefc7a069) + (property "Reference" "U1" (id 0) (at 154.94 73.66 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 154.94 76.2 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 152.4 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 152.4 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e7f02d51-d61c-43a5-bbe2-03c959cd04d1)) + (pin "2" (uuid 130f902e-12ac-46fe-923f-c14e5fc3c241)) + (pin "3" (uuid b19c14a7-0144-4257-861b-41802c611f3f)) + (pin "4" (uuid 05948029-0c63-4f0e-ac75-618a1e270399)) + (pin "5" (uuid 2deb3494-e82f-426c-8549-aff15efbae59)) + (pin "6" (uuid da86b5d9-5e41-423f-b5d7-d19b28fea129)) + (pin "7" (uuid ebcae99a-034c-4cb0-b4cb-e8c050efb8f1)) + (pin "8" (uuid ec1dd400-d7b0-47bf-9f75-d6c5d3d2c4ee)) + (pin "9" (uuid 888ca431-65fc-4860-8c39-23bd01366b89)) + (pin "10" (uuid 54e97ca1-10ec-4c4d-a96c-8fcd773e6e4d)) + (pin "11" (uuid c7fb4ac4-7683-4bfc-a0a4-589a6204ab8e)) + (pin "12" (uuid 2ae58a0b-d01c-4de2-8734-016202e6b636)) + (pin "13" (uuid 9f357e16-460a-42f4-a0ab-7d87614e0c7e)) + (pin "14" (uuid d2498c48-dbaf-4e70-8672-87426cc7fae4)) + (pin "15" (uuid 7dcb5ccc-50bd-42e1-9046-4f5405e61fba)) + (pin "16" (uuid 6f743475-4709-4edb-b9ce-facaff628454)) + (pin "17" (uuid 3d37133d-b00e-4427-a309-4e37a5548273)) + (pin "18" (uuid 9398aeeb-3f83-4a22-abcd-3a1c2657c404)) + (pin "19" (uuid dbf628fd-5168-4edc-80da-41579f36b84d)) + (pin "20" (uuid a9426ec3-1246-48e5-bff9-6b70966b65a2)) + (pin "21" (uuid e6e25801-14ff-47ff-8d90-ff626b3c9c86)) + (pin "22" (uuid 7eb0ff21-7db1-4dad-805f-4812ce11f643)) + (pin "23" (uuid c93713ca-b1b0-4782-ad94-fadc18a557a0)) + (pin "24" (uuid 0550408d-d24f-4599-9942-e1f0af4e9c40)) + (pin "25" (uuid 1e35097b-71be-45e8-906f-a2cddc7bf6f5)) + (pin "26" (uuid 04478526-1c72-4c57-aa01-01e09fbbacaa)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/79048248-89a2-4195-8ed3-c2efc45265fe" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/f9c1805e-0288-4123-bc84-2fcbefc7a069" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/54d6ecda-a2d9-42fb-8431-e7d31eb72553" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/44c64112-b1fa-44d0-8d61-fea4f40b56b8" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/b9b121d2-d03d-4cea-8737-a50b69677652" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/1f558742-8abb-4c07-b089-8d4f51474d5d" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/5410494f-51f8-4c82-8fcd-146b27867900" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/0075f22f-023b-4d51-8ecd-c1ed282ef919" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/2df517c2-e14f-4f56-b233-123cf7b74d5d" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/73952cac-4249-48fb-9dc8-06bd95dfbbbc" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/0dcbe605-da4a-4fd7-9bf7-c07c16b43b85" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/dc801edf-ce95-464c-89a5-babb02dd4c47" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/06ab66eb-b30e-4045-b838-f0270cf0ccba" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/b316fd84-0db1-4140-b4fc-2705abb738a1" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/4d408920-2abf-4410-9db6-95c9248bb71f" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/212a3ea5-d0bc-457c-95d1-608a66e7bd37" + (reference "U3") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/61096a23-f0c2-40cd-9f09-9888cc6c7eae" + (reference "U4") (unit 1) (value "d_or") (footprint "") + ) + (path "/a5ccec0c-0b04-40ea-b508-ae6afb5611fb" + (reference "U5") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/e8849189-b436-4889-b093-e89d1f48bc3c" + (reference "U6") (unit 1) (value "d_or") (footprint "") + ) + (path "/5ac45c85-ebbc-4a4f-8ed1-9f9dc90505f2" + (reference "U7") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/ae5817a7-8d2e-4e76-99e8-8bb91fd48d12" + (reference "U8") (unit 1) (value "d_or") (footprint "") + ) + (path "/77d40bfb-d0b4-4263-a7d0-2b057e83a465" + (reference "U9") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/c0e2707c-31c5-4335-8a3c-e2cf848b81fc" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/517bbd04-bfd4-4c28-86f9-d741231888f2" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f5df2149-7650-4071-ac2f-9e9bd6dd88d0" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/36f5dd23-dd48-4e62-93b5-b9727bcd6151" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7004ffe4-1914-4838-89b2-84fc133b05ff" + (reference "U14") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/2892cc51-919e-4a3d-8def-5cc4a0d144f7" + (reference "U15") (unit 1) (value "d_or") (footprint "") + ) + (path "/9935c054-63e5-4140-9fa6-ba488495ca80" + (reference "U16") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/4258d33c-c2e2-452c-900e-d0a869824bb1" + (reference "U17") (unit 1) (value "d_or") (footprint "") + ) + (path "/2927bd64-09b0-4838-87b3-23f1a8cf5f80" + (reference "U18") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/919e1e3b-2839-4d9e-9dbc-9acaa411d426" + (reference "U19") (unit 1) (value "d_or") (footprint "") + ) + (path "/765dd7bc-0bcb-4cc1-a519-6a21cedbd351" + (reference "U20") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/ddcb9452-3efa-47c2-8a0c-19b9b37ec742" + (reference "U21") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2a4d672d-9aff-4dc2-be45-c5fc30781866" + (reference "X1") (unit 1) (value "3_and") (footprint "") + ) + (path "/e92df182-30ee-4292-8449-5465d6b08b04" + (reference "X2") (unit 1) (value "3_and") (footprint "") + ) + (path "/a111b4e1-17a3-4d17-89e0-bb83d13d0687" + (reference "X3") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/ead980b4-a12b-46a9-9fb5-5a985f7360ad" + (reference "X4") (unit 1) (value "3_and") (footprint "") + ) + (path "/c00d76e6-5344-4a55-8085-c92c70a46c09" + (reference "X5") (unit 1) (value "3_and") (footprint "") + ) + (path "/07f2c2a0-ff4f-4ab3-b120-b86e4342510f" + (reference "X6") (unit 1) (value "3_and") (footprint "") + ) + (path "/7a2066da-5294-4317-b07b-a805a11b4e02" + (reference "X7") (unit 1) (value "3_and") (footprint "") + ) + (path "/556b3344-9f35-4043-8c1a-8d3fbc807b90" + (reference "X8") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/49151818-4b92-4132-9e30-2d9f2eb0dd9f" + (reference "X9") (unit 1) (value "3_and") (footprint "") + ) + (path "/1a0951f1-1e71-436c-8e02-e7958085f205" + (reference "X10") (unit 1) (value "3_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.sub new file mode 100644 index 000000000..75513934a --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253.sub @@ -0,0 +1,98 @@ +* Subcircuit 74HC253 +.subckt 74HC253 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ +.title kicad schematic +.include TRISTATE.sub +.include 3_and.sub +x1 net-_u3-pad2_ net-_u13-pad2_ net-_u11-pad2_ net-_u4-pad2_ 3_and +* u4 net-_u4-pad1_ net-_u4-pad2_ net-_u4-pad3_ d_or +x2 net-_u5-pad2_ net-_u13-pad2_ net-_u10-pad2_ net-_u4-pad1_ 3_and +x4 net-_u7-pad2_ net-_u12-pad2_ net-_u11-pad2_ net-_u8-pad2_ 3_and +x5 net-_u9-pad2_ net-_u12-pad2_ net-_u10-pad2_ net-_u8-pad1_ 3_and +x3 net-_u6-pad3_ net-_u2-pad2_ net-_u1-pad13_ TRISTATE +* u8 net-_u8-pad1_ net-_u8-pad2_ net-_u6-pad1_ d_or +* u6 net-_u6-pad1_ net-_u4-pad3_ net-_u6-pad3_ d_or +x6 net-_u11-pad2_ net-_u13-pad2_ net-_u14-pad2_ net-_u15-pad2_ 3_and +x9 net-_u11-pad2_ net-_u12-pad2_ net-_u18-pad2_ net-_u19-pad2_ 3_and +x7 net-_u10-pad2_ net-_u13-pad2_ net-_u16-pad2_ net-_u15-pad1_ 3_and +x8 net-_u17-pad3_ net-_u21-pad2_ net-_u1-pad14_ TRISTATE +* u17 net-_u17-pad1_ net-_u15-pad3_ net-_u17-pad3_ d_or +* u15 net-_u15-pad1_ net-_u15-pad2_ net-_u15-pad3_ d_or +x10 net-_u10-pad2_ net-_u12-pad2_ net-_u20-pad2_ net-_u19-pad1_ 3_and +* u19 net-_u19-pad1_ net-_u19-pad2_ net-_u17-pad1_ d_or +* u16 net-_u1-pad9_ net-_u16-pad2_ d_buffer +* u14 net-_u1-pad8_ net-_u14-pad2_ d_buffer +* u18 net-_u1-pad10_ net-_u18-pad2_ d_buffer +* u20 net-_u1-pad11_ net-_u20-pad2_ d_buffer +* u21 net-_u1-pad12_ net-_u21-pad2_ d_inverter +* u11 net-_u10-pad2_ net-_u11-pad2_ d_inverter +* u10 net-_u1-pad6_ net-_u10-pad2_ d_inverter +* u12 net-_u1-pad7_ net-_u12-pad2_ d_inverter +* u13 net-_u12-pad2_ net-_u13-pad2_ d_inverter +* u3 net-_u1-pad2_ net-_u3-pad2_ d_buffer +* u5 net-_u1-pad3_ net-_u5-pad2_ d_buffer +* u2 net-_u1-pad1_ net-_u2-pad2_ d_inverter +* u9 net-_u1-pad5_ net-_u9-pad2_ d_buffer +* u7 net-_u1-pad4_ net-_u7-pad2_ d_buffer +a1 [net-_u4-pad1_ net-_u4-pad2_ ] net-_u4-pad3_ u4 +a2 [net-_u8-pad1_ net-_u8-pad2_ ] net-_u6-pad1_ u8 +a3 [net-_u6-pad1_ net-_u4-pad3_ ] net-_u6-pad3_ u6 +a4 [net-_u17-pad1_ net-_u15-pad3_ ] net-_u17-pad3_ u17 +a5 [net-_u15-pad1_ net-_u15-pad2_ ] net-_u15-pad3_ u15 +a6 [net-_u19-pad1_ net-_u19-pad2_ ] net-_u17-pad1_ u19 +a7 net-_u1-pad9_ net-_u16-pad2_ u16 +a8 net-_u1-pad8_ net-_u14-pad2_ u14 +a9 net-_u1-pad10_ net-_u18-pad2_ u18 +a10 net-_u1-pad11_ net-_u20-pad2_ u20 +a11 net-_u1-pad12_ net-_u21-pad2_ u21 +a12 net-_u10-pad2_ net-_u11-pad2_ u11 +a13 net-_u1-pad6_ net-_u10-pad2_ u10 +a14 net-_u1-pad7_ net-_u12-pad2_ u12 +a15 net-_u12-pad2_ net-_u13-pad2_ u13 +a16 net-_u1-pad2_ net-_u3-pad2_ u3 +a17 net-_u1-pad3_ net-_u5-pad2_ u5 +a18 net-_u1-pad1_ net-_u2-pad2_ u2 +a19 net-_u1-pad5_ net-_u9-pad2_ u9 +a20 net-_u1-pad4_ net-_u7-pad2_ u7 +* Schematic Name: d_or, Ngspice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u8 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u17 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u15 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u19 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u16 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u14 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u18 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u20 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u3 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u5 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends 74HC253 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253_Previous_Values.xml new file mode 100644 index 000000000..f0824ba22 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/74HC253_Previous_Values.xml @@ -0,0 +1 @@ +d_ord_ord_ord_ord_ord_ord_bufferd_bufferd_bufferd_bufferd_inverterd_inverterd_inverterd_bufferd_inverterd_inverterd_bufferd_inverterd_bufferd_bufferC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.cir new file mode 100644 index 000000000..caac1cdde --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.cir @@ -0,0 +1,10 @@ +.title KiCad schematic +v1 Net-_U2-Pad1_ GND DC +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ PORT +U5 Net-_U3-Pad2_ Net-_U2-Pad2_ Net-_U5-Pad3_ d_and +U4 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U4-Pad3_ d_and +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ adc_bridge_1 +U3 Net-_U1-Pad1_ Net-_U3-Pad2_ d_inverter +U7 Net-_U6-Pad3_ Net-_U1-Pad3_ d_buffer +U6 Net-_U4-Pad3_ Net-_U5-Pad3_ Net-_U6-Pad3_ d_or +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.cir.out new file mode 100644 index 000000000..ed8bfe9ca --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.cir.out @@ -0,0 +1,37 @@ +.title kicad schematic + +v1 net-_u2-pad1_ gnd dc 0 +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ port +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.kicad_sch new file mode 100644 index 000000000..c03c33cbc --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.kicad_sch @@ -0,0 +1,870 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 4b6fb2e0-7f99-4c67-bdf2-57d8d333a12d) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "DC" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DC_0_1" + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DC_1_1" + (pin power_out line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 111.76 93.98) (diameter 0) (color 0 0 0 0) + (uuid 14ad2087-2eee-431b-8842-3056e26a34e8) + ) + + (wire (pts (xy 111.76 93.98) (xy 109.22 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 163f5430-84cc-4a80-8e5f-6f2a5f27f6b7) + ) + (wire (pts (xy 135.89 109.22) (xy 134.62 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26a2e51d-f8c9-4603-977a-ec3441476833) + ) + (wire (pts (xy 116.84 95.25) (xy 116.84 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31a0d277-7413-4301-8b23-2d4c654bd540) + ) + (wire (pts (xy 111.76 69.85) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 454df123-e845-4d03-8c39-7a0fc517b763) + ) + (wire (pts (xy 111.76 69.85) (xy 138.43 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56f10ce4-3616-4390-9a32-7b62234bf80f) + ) + (wire (pts (xy 227.33 83.82) (xy 234.95 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58a0316b-fdad-40e3-96f7-cb28e4b5690b) + ) + (wire (pts (xy 114.3 72.39) (xy 138.43 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a1f4464-c616-4a33-82f9-8dd8ebfb0a8c) + ) + (wire (pts (xy 102.87 109.22) (xy 105.41 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a2a2aba-beae-4a0a-9586-601cd854cbd0) + ) + (wire (pts (xy 161.29 96.52) (xy 161.29 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e0ecf4a-5933-465a-9bc3-1b74f4efaf29) + ) + (wire (pts (xy 114.3 96.52) (xy 114.3 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b403cfa-1a57-4ee1-b716-cf37e8d9a005) + ) + (wire (pts (xy 198.12 83.82) (xy 194.31 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81e2c941-f56c-4b6a-b07e-98f1f9c7c54a) + ) + (wire (pts (xy 109.22 96.52) (xy 114.3 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92b18b87-08f1-4557-b338-e1b8d2e6c64d) + ) + (wire (pts (xy 171.45 82.55) (xy 161.29 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5e9c456-8d3d-429d-9282-26751c5dbd39) + ) + (wire (pts (xy 135.89 97.79) (xy 135.89 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1b4e869-1d4c-4bf4-a93c-d9d36305f47d) + ) + (wire (pts (xy 116.84 93.98) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c61e6996-3647-45c1-ad4c-4c25bf5a03b5) + ) + (wire (pts (xy 135.89 97.79) (xy 138.43 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4d7b8aa-b9bc-44c8-8cb9-e9095b546025) + ) + (wire (pts (xy 161.29 85.09) (xy 171.45 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d790d0d5-c2f2-4059-9cd2-798d5e59687f) + ) + (wire (pts (xy 132.08 95.25) (xy 138.43 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea77a532-5894-4db8-ae63-80cc28fe33af) + ) + (wire (pts (xy 161.29 82.55) (xy 161.29 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edb5b706-046a-4168-bc90-2be18d66c339) + ) + + (symbol (lib_id "eSim_Sources:DC") (at 91.44 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28d3271f-0b04-4869-b592-25b6a93cf6fc) + (property "Reference" "v1" (id 0) (at 94.615 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "DC" (id 1) (at 90.805 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 86.995 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 91.44 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c6852dc-8445-4298-a6db-0adfbc24ef15)) + (pin "2" (uuid c3c580f8-8d30-4cfb-8027-0cf8425f5205)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 102.87 96.52 0) (mirror x) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38309441-1575-4a2b-944e-764f9fe4894f) + (property "Reference" "U1" (id 0) (at 99.06 95.885 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 99.06 98.425 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fabc537-ea69-46a4-ba6c-0ec84d4cec14)) + (pin "2" (uuid d8dd5360-1679-4365-8ef5-1eef35533f7e)) + (pin "3" (uuid d881c90a-2dac-40c2-9a6f-52da84d0cae8)) + (pin "4" (uuid 0f3bf5d2-8a1b-4ec4-9c42-3856da9b6cb0)) + (pin "5" (uuid 1d897643-dd4b-4941-8747-67b9f05a55de)) + (pin "6" (uuid 6a7e5ae9-bd32-437a-a8c1-eca8831711e2)) + (pin "7" (uuid de4bacfe-1d00-410c-aa1a-d3a2b35b450a)) + (pin "8" (uuid e066b15e-8a93-457b-8a8b-a3d5ae1d5d03)) + (pin "9" (uuid c9c7f6cf-50b4-4096-8281-34b7facb581d)) + (pin "10" (uuid 18665738-4b00-4bba-82cf-e88f22b0471d)) + (pin "11" (uuid f3963046-8d96-4d91-81cd-d14d28544785)) + (pin "12" (uuid 70f92d44-4d8c-4eaf-b2a8-656224365c86)) + (pin "13" (uuid d1196a57-a14f-4b34-adb6-45247031a4d6)) + (pin "14" (uuid 9b7f82d9-2457-4e65-8df7-4e9ff22b39d7)) + (pin "15" (uuid b4c2b962-baaf-40a3-a6b2-1a50ac4da997)) + (pin "16" (uuid 6d7334c7-4e62-4f8b-b5dc-d4bb5287fa8f)) + (pin "17" (uuid abcda22c-abb5-4904-ad85-837b69cd1101)) + (pin "18" (uuid 3fcb2300-dd9e-4a9b-bf0c-2718d9ad6c03)) + (pin "19" (uuid b3a922e0-6519-4bad-93a6-ea37b22bba7e)) + (pin "20" (uuid 472ab7fc-b431-423c-825b-85bdec91808a)) + (pin "21" (uuid 3fd15d5b-3f55-4ec7-bc49-baf57841d2a9)) + (pin "22" (uuid 6bea1ad1-c0e8-4ebb-8246-55cea9c4ca6a)) + (pin "23" (uuid 1c7c7456-fa8f-42ad-ac95-fc738203a6ce)) + (pin "24" (uuid 86cab9cb-b4c1-4e09-825a-132e0bd48750)) + (pin "25" (uuid 0d657127-0db9-450f-82e8-9ffd8a63319a)) + (pin "26" (uuid da4babff-0abb-4869-8346-2672ab1f0017)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 182.88 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48d85cf5-29c1-4f7d-a57e-7b0b69dda574) + (property "Reference" "U6" (id 0) (at 182.88 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 182.88 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4803f9b9-3d9a-4a0e-99e6-0ac59d11de26)) + (pin "2" (uuid 3ce86b27-8c78-4024-9902-7dcccacd7b73)) + (pin "3" (uuid b980b222-0af3-4a60-a3f8-ff1fce4d8999)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 210.82 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48f857eb-4e87-4806-ba4b-646581a37ea2) + (property "Reference" "U7" (id 0) (at 212.725 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 212.725 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f271f174-3439-48da-b056-89a32e36b380)) + (pin "2" (uuid d19fcac4-704f-4df1-b54e-8d4ccf233d8c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 241.3 83.82 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f87ee9d-1a36-4aec-bb00-f8fc24fa2328) + (property "Reference" "U1" (id 0) (at 245.11 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 245.11 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 241.3 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a9cf5e93-05cb-4cbc-8550-f7fe9d78069d)) + (pin "2" (uuid da25feda-dd50-4d21-9670-7c845cc6a349)) + (pin "3" (uuid 44fc7a64-ebda-4f38-92ba-88276337a604)) + (pin "4" (uuid f92e041c-8c0c-48ee-b591-06ec70abe4cd)) + (pin "5" (uuid 7932597d-04dc-4353-8129-ab3aeec8fc84)) + (pin "6" (uuid da1dded5-6865-4682-a456-828706448bef)) + (pin "7" (uuid 6d49815a-f6f8-4fcf-8ba2-2cdc6311c549)) + (pin "8" (uuid 347a1f5f-3cda-4313-99d8-c2a289db132e)) + (pin "9" (uuid 768f90fa-9460-4bb6-97a4-ab394ff229bc)) + (pin "10" (uuid b4cf2cf5-38e4-4e66-a173-349f6c368102)) + (pin "11" (uuid 99e36901-663c-4c66-abe5-eb98576c8789)) + (pin "12" (uuid f2c598ab-bf2a-4800-abb6-3e0fea1f2649)) + (pin "13" (uuid 92a688aa-be93-4c70-847f-be5bfd696262)) + (pin "14" (uuid cd155f93-a81a-48e5-8ddc-57c97df60bae)) + (pin "15" (uuid c4ffe564-7e2e-4d23-99cc-35da40290654)) + (pin "16" (uuid 92ad5362-52f7-4a61-b99d-5e125b5e2083)) + (pin "17" (uuid c86cdd0e-f764-496b-a46b-cd576f890c42)) + (pin "18" (uuid 5d38d459-46e9-4284-84d9-d584d0419dd3)) + (pin "19" (uuid b102cd55-86e0-4ff3-9425-7b0ac613cff0)) + (pin "20" (uuid 82c84431-fd8e-4769-aebb-d75d6afdd9d4)) + (pin "21" (uuid 2d8c3796-9040-422f-bf14-4983d56cc3c4)) + (pin "22" (uuid f4a7ff4b-3170-43e0-ad8d-52a0336464b2)) + (pin "23" (uuid ceb16e80-ae7a-4059-a457-76f88bf107b2)) + (pin "24" (uuid 843c46f2-cf76-4ae5-ba92-c24c18f88cb3)) + (pin "25" (uuid 25572e1a-67c2-4d60-8112-405d60eff7ba)) + (pin "26" (uuid 46a322ed-4e54-4956-a123-a3da09b63880)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1c9e468-be3e-44dd-bf35-9066d1a0e3d2) + (property "Reference" "U5" (id 0) (at 149.86 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4124cb3a-6b00-4e90-80b3-17f9788d220b)) + (pin "2" (uuid d7844aea-e454-4b8b-a5d3-58c650c0d3f3)) + (pin "3" (uuid d2a4f899-5bc4-49dc-9c0a-f82fbfac1c00)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b383818c-4c81-4888-8c80-f39a0b1bf9fb) + (property "Reference" "U4" (id 0) (at 149.86 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6581f4bd-969a-4a52-bf34-34d6e24a433a)) + (pin "2" (uuid 15113e0d-971e-4b81-8359-540fdab0e1aa)) + (pin "3" (uuid c4c6c493-2ab2-4f2e-a773-4f891eead381)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 109.22 87.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba26b670-cee4-4e62-aace-e814c833fd02) + (property "Reference" "U1" (id 0) (at 111.76 87.63 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 111.76 90.17 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 63080624-0ec0-4ae5-89ef-af345042af17)) + (pin "2" (uuid 99ceb699-2891-48db-9745-cb55b3645be8)) + (pin "3" (uuid 6657d604-f5bd-489d-af28-4f3f7b46b567)) + (pin "4" (uuid 0915377e-fef2-4b60-ba68-25802610ea15)) + (pin "5" (uuid 120f4c38-18f2-4e5d-963c-afdac9a3a876)) + (pin "6" (uuid 809be297-aded-4798-bd9f-577c6dfd6178)) + (pin "7" (uuid 39773969-16bb-4965-a4f9-2e82476ccbd7)) + (pin "8" (uuid 1dae0184-17bd-4a01-a90a-40cdefca5d3f)) + (pin "9" (uuid 52f50196-1ee5-46bf-8bf8-f2385c5a69fe)) + (pin "10" (uuid bb9b7048-b168-42f6-bfc2-f4b4aa0bbd9a)) + (pin "11" (uuid b187e2ab-c334-4152-b8c0-3b5e498907ff)) + (pin "12" (uuid 1c9bdb4a-d154-47b3-8b81-de451353fde3)) + (pin "13" (uuid 7eaf8d8b-7fb0-4c9c-944c-b00e3826fc50)) + (pin "14" (uuid 52f5e559-0d9d-4452-a2e2-27d8999c2139)) + (pin "15" (uuid a91512b6-3c7b-42db-9d52-25d4c9a79436)) + (pin "16" (uuid fa77a93f-a43d-49ea-aa29-648d3d6025bb)) + (pin "17" (uuid e8b1dd48-dc04-4c5d-81e4-3af1236fce17)) + (pin "18" (uuid de9c62bf-3c52-4227-9cd3-f4a1f283a2ba)) + (pin "19" (uuid 8bad02cb-7684-4e83-8678-5abc26d1a89a)) + (pin "20" (uuid a7eea872-efce-4e12-8da2-52b19ad6d380)) + (pin "21" (uuid f241a1ee-3551-4be9-92e4-97d1ebc38af8)) + (pin "22" (uuid 79bb6641-9713-4b40-8616-f9182ab9c079)) + (pin "23" (uuid a2bcac0d-12cb-4fad-b934-ba601f9ca54f)) + (pin "24" (uuid 8b968e16-97d5-44b3-8bdf-9a360f8fa18d)) + (pin "25" (uuid dd87e7a1-a6b3-4a50-abb8-a247d0e5c1be)) + (pin "26" (uuid 02d1ede5-5527-4efe-b251-abc0d57bcfec)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 120.65 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8483095-cae6-476c-bd77-f779e93a393e) + (property "Reference" "U2" (id 0) (at 120.015 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 120.015 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ea3cef5-47c4-4031-b109-073353e2f1a8)) + (pin "2" (uuid 8a6e56e6-64bc-44e0-9b1f-561b6ab4ef26)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 124.46 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8d0de2d-4efb-48db-9053-78ac24343ec6) + (property "Reference" "U3" (id 0) (at 124.46 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 124.46 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f31cf58b-9a25-4938-b10d-4d0f096b69a8)) + (pin "2" (uuid 364c3335-2d15-43ce-8697-9d3c6e4d95e7)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 80.01 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb45b5f1-df6f-43ee-882f-46b8fbfe058f) + (property "Reference" "#PWR01" (id 0) (at 73.66 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 74.93 109.22 0)) + (property "Footprint" "" (id 2) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4533b25d-acec-4f28-966f-010cbada9d57)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/fb45b5f1-df6f-43ee-882f-46b8fbfe058f" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/ba26b670-cee4-4e62-aace-e814c833fd02" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/38309441-1575-4a2b-944e-764f9fe4894f" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/7f87ee9d-1a36-4aec-bb00-f8fc24fa2328" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/c8483095-cae6-476c-bd77-f779e93a393e" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/e8d0de2d-4efb-48db-9053-78ac24343ec6" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b383818c-4c81-4888-8c80-f39a0b1bf9fb" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/a1c9e468-be3e-44dd-bf35-9066d1a0e3d2" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/48d85cf5-29c1-4f7d-a57e-7b0b69dda574" + (reference "U6") (unit 1) (value "d_or") (footprint "") + ) + (path "/48f857eb-4e87-4806-ba4b-646581a37ea2" + (reference "U7") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/28d3271f-0b04-4869-b592-25b6a93cf6fc" + (reference "v1") (unit 1) (value "DC") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.sub new file mode 100644 index 000000000..c75fb0786 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE.sub @@ -0,0 +1,31 @@ +* Subcircuit TRISTATE +.subckt TRISTATE net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ +.title kicad schematic +v1 net-_u2-pad1_ gnd dc 0 +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends TRISTATE \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE_Previous_Values.xml new file mode 100644 index 000000000..5ef3761ac --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/TRISTATE_Previous_Values.xml @@ -0,0 +1 @@ +dc0d_bufferd_ord_andd_andadc_bridged_inverterdac_bridgetruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/analysis b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/analysis new file mode 100644 index 000000000..af548eb1e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC253/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 100e-06 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.cir new file mode 100644 index 000000000..b16c458f2 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.cir @@ -0,0 +1,30 @@ +.title KiCad schematic +U13 Net-_U1-Pad2_ Net-_U13-Pad2_ d_buffer +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ PORT +U12 Net-_U1-Pad1_ Net-_U12-Pad2_ d_buffer +U22 Net-_U12-Pad2_ Net-_U11-Pad2_ Net-_U22-Pad3_ d_and +U24 Net-_U14-Pad2_ Net-_U11-Pad2_ Net-_U24-Pad3_ d_and +U23 Net-_U13-Pad2_ Net-_U21-Pad2_ Net-_U23-Pad3_ d_and +U15 Net-_U1-Pad4_ Net-_U15-Pad2_ d_buffer +U14 Net-_U1-Pad3_ Net-_U14-Pad2_ d_buffer +U25 Net-_U15-Pad2_ Net-_U21-Pad2_ Net-_U25-Pad3_ d_and +U26 Net-_U16-Pad2_ Net-_U11-Pad2_ Net-_U26-Pad3_ d_and +X1 Net-_U30-Pad3_ Net-_U20-Pad2_ Net-_U1-Pad11_ TRISTATE +U30 Net-_U22-Pad3_ Net-_U23-Pad3_ Net-_U30-Pad3_ d_nor +U31 Net-_U24-Pad3_ Net-_U25-Pad3_ Net-_U31-Pad3_ d_nor +X4 Net-_U33-Pad3_ Net-_U20-Pad2_ Net-_U1-Pad14_ TRISTATE +X3 Net-_U32-Pad3_ Net-_U20-Pad2_ Net-_U1-Pad13_ TRISTATE +X2 Net-_U31-Pad3_ Net-_U20-Pad2_ Net-_U1-Pad12_ TRISTATE +U27 Net-_U17-Pad2_ Net-_U21-Pad2_ Net-_U27-Pad3_ d_and +U28 Net-_U18-Pad2_ Net-_U11-Pad2_ Net-_U28-Pad3_ d_and +U32 Net-_U26-Pad3_ Net-_U27-Pad3_ Net-_U32-Pad3_ d_nor +U29 Net-_U19-Pad2_ Net-_U21-Pad2_ Net-_U29-Pad3_ d_and +U33 Net-_U28-Pad3_ Net-_U29-Pad3_ Net-_U33-Pad3_ d_nor +U21 Net-_U11-Pad2_ Net-_U21-Pad2_ d_inverter +U11 Net-_U1-Pad10_ Net-_U11-Pad2_ d_inverter +U19 Net-_U1-Pad8_ Net-_U19-Pad2_ d_buffer +U20 Net-_U1-Pad9_ Net-_U20-Pad2_ d_buffer +U17 Net-_U1-Pad6_ Net-_U17-Pad2_ d_buffer +U16 Net-_U1-Pad5_ Net-_U16-Pad2_ d_buffer +U18 Net-_U1-Pad7_ Net-_U18-Pad2_ d_buffer +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.cir.out new file mode 100644 index 000000000..1fb9a7f03 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.cir.out @@ -0,0 +1,109 @@ +.title kicad schematic + +.include TRISTATE.sub +* u13 net-_u1-pad2_ net-_u13-pad2_ d_buffer +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ port +* u12 net-_u1-pad1_ net-_u12-pad2_ d_buffer +* u22 net-_u12-pad2_ net-_u11-pad2_ net-_u22-pad3_ d_and +* u24 net-_u14-pad2_ net-_u11-pad2_ net-_u24-pad3_ d_and +* u23 net-_u13-pad2_ net-_u21-pad2_ net-_u23-pad3_ d_and +* u15 net-_u1-pad4_ net-_u15-pad2_ d_buffer +* u14 net-_u1-pad3_ net-_u14-pad2_ d_buffer +* u25 net-_u15-pad2_ net-_u21-pad2_ net-_u25-pad3_ d_and +* u26 net-_u16-pad2_ net-_u11-pad2_ net-_u26-pad3_ d_and +x1 net-_u30-pad3_ net-_u20-pad2_ net-_u1-pad11_ TRISTATE +* u30 net-_u22-pad3_ net-_u23-pad3_ net-_u30-pad3_ d_nor +* u31 net-_u24-pad3_ net-_u25-pad3_ net-_u31-pad3_ d_nor +x4 net-_u33-pad3_ net-_u20-pad2_ net-_u1-pad14_ TRISTATE +x3 net-_u32-pad3_ net-_u20-pad2_ net-_u1-pad13_ TRISTATE +x2 net-_u31-pad3_ net-_u20-pad2_ net-_u1-pad12_ TRISTATE +* u27 net-_u17-pad2_ net-_u21-pad2_ net-_u27-pad3_ d_and +* u28 net-_u18-pad2_ net-_u11-pad2_ net-_u28-pad3_ d_and +* u32 net-_u26-pad3_ net-_u27-pad3_ net-_u32-pad3_ d_nor +* u29 net-_u19-pad2_ net-_u21-pad2_ net-_u29-pad3_ d_and +* u33 net-_u28-pad3_ net-_u29-pad3_ net-_u33-pad3_ d_nor +* u21 net-_u11-pad2_ net-_u21-pad2_ d_inverter +* u11 net-_u1-pad10_ net-_u11-pad2_ d_inverter +* u19 net-_u1-pad8_ net-_u19-pad2_ d_buffer +* u20 net-_u1-pad9_ net-_u20-pad2_ d_buffer +* u17 net-_u1-pad6_ net-_u17-pad2_ d_buffer +* u16 net-_u1-pad5_ net-_u16-pad2_ d_buffer +* u18 net-_u1-pad7_ net-_u18-pad2_ d_buffer +a1 net-_u1-pad2_ net-_u13-pad2_ u13 +a2 net-_u1-pad1_ net-_u12-pad2_ u12 +a3 [net-_u12-pad2_ net-_u11-pad2_ ] net-_u22-pad3_ u22 +a4 [net-_u14-pad2_ net-_u11-pad2_ ] net-_u24-pad3_ u24 +a5 [net-_u13-pad2_ net-_u21-pad2_ ] net-_u23-pad3_ u23 +a6 net-_u1-pad4_ net-_u15-pad2_ u15 +a7 net-_u1-pad3_ net-_u14-pad2_ u14 +a8 [net-_u15-pad2_ net-_u21-pad2_ ] net-_u25-pad3_ u25 +a9 [net-_u16-pad2_ net-_u11-pad2_ ] net-_u26-pad3_ u26 +a10 [net-_u22-pad3_ net-_u23-pad3_ ] net-_u30-pad3_ u30 +a11 [net-_u24-pad3_ net-_u25-pad3_ ] net-_u31-pad3_ u31 +a12 [net-_u17-pad2_ net-_u21-pad2_ ] net-_u27-pad3_ u27 +a13 [net-_u18-pad2_ net-_u11-pad2_ ] net-_u28-pad3_ u28 +a14 [net-_u26-pad3_ net-_u27-pad3_ ] net-_u32-pad3_ u32 +a15 [net-_u19-pad2_ net-_u21-pad2_ ] net-_u29-pad3_ u29 +a16 [net-_u28-pad3_ net-_u29-pad3_ ] net-_u33-pad3_ u33 +a17 net-_u11-pad2_ net-_u21-pad2_ u21 +a18 net-_u1-pad10_ net-_u11-pad2_ u11 +a19 net-_u1-pad8_ net-_u19-pad2_ u19 +a20 net-_u1-pad9_ net-_u20-pad2_ u20 +a21 net-_u1-pad6_ net-_u17-pad2_ u17 +a22 net-_u1-pad5_ net-_u16-pad2_ u16 +a23 net-_u1-pad7_ net-_u18-pad2_ u18 +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u13 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u12 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u15 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u14 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u30 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u31 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u32 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u29 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u33 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u19 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u20 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u17 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u16 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u18 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.kicad_sch new file mode 100644 index 000000000..c7e14ea9b --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.kicad_sch @@ -0,0 +1,2056 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid e3757977-d987-4f3f-9438-8fae0785cd6e) + + (paper "User" 431.8 379.4) + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Subckt:TRISTATE" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TRISTATE" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TRISTATE_0_1" + (polyline + (pts + (xy -5.08 3.81) + (xy -5.08 -3.81) + (xy 8.89 0) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "TRISTATE_1_1" + (pin input line (at -7.62 0 0) (length 2.54) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -5.08 90) (length 2.54) + (name "OE" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 0 180) (length 2.54) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 237.49 173.99) (diameter 0) (color 0 0 0 0) + (uuid 01935a09-6066-4c33-8d15-49eae51493a9) + ) + (junction (at 237.49 123.19) (diameter 0) (color 0 0 0 0) + (uuid 1b474981-49bf-4482-8a57-4761f8b386b5) + ) + (junction (at 142.24 186.69) (diameter 0) (color 0 0 0 0) + (uuid 2e24d96d-d12e-49b6-8614-fd4999c0e94f) + ) + (junction (at 237.49 224.79) (diameter 0) (color 0 0 0 0) + (uuid 7b847c68-745c-4e7b-b4cb-800b3537e723) + ) + (junction (at 129.54 110.49) (diameter 0) (color 0 0 0 0) + (uuid 9799ef83-cb4b-4048-8d21-00ca75a2be66) + ) + (junction (at 129.54 212.09) (diameter 0) (color 0 0 0 0) + (uuid a3abaead-95bc-4a5a-a377-5c09e602e732) + ) + (junction (at 129.54 161.29) (diameter 0) (color 0 0 0 0) + (uuid d961c869-00b7-49f1-b719-4bfb63379034) + ) + (junction (at 106.68 285.75) (diameter 0) (color 0 0 0 0) + (uuid e279dd95-b6d9-4c04-950e-70b16a6a8487) + ) + (junction (at 142.24 237.49) (diameter 0) (color 0 0 0 0) + (uuid e4a547a2-2627-4b88-892e-2c7629d6cab1) + ) + (junction (at 142.24 135.89) (diameter 0) (color 0 0 0 0) + (uuid eeece9f0-fe67-4da4-ba9b-619a447e2c3b) + ) + + (wire (pts (xy 189.23 210.82) (xy 189.23 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00674bb5-56ec-4d93-bc2b-db30b5ab3f1c) + ) + (wire (pts (xy 304.8 186.69) (xy 281.94 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06f3cd31-ebe2-4c2d-8c7f-bd9d9e44b03e) + ) + (wire (pts (xy 173.99 210.82) (xy 189.23 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07fa6960-b16f-4fe1-97f8-13af19b0888d) + ) + (wire (pts (xy 237.49 123.19) (xy 281.94 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bbd348f-f050-467a-b74e-bd4b161faef9) + ) + (wire (pts (xy 66.04 107.95) (xy 74.93 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c78c5b1-070c-4094-a4e6-db6f273b59a3) + ) + (wire (pts (xy 237.49 72.39) (xy 281.94 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12dcb46a-8384-44b5-b529-18ba597aabce) + ) + (wire (pts (xy 281.94 237.49) (xy 281.94 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14cef02d-100b-4f43-96da-79d2286c327b) + ) + (wire (pts (xy 189.23 58.42) (xy 173.99 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1648b11b-05ab-4805-9ee7-3374637db34a) + ) + (wire (pts (xy 316.23 120.65) (xy 323.85 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cc37a1f-3b81-42dc-98be-3dbb6ff5289a) + ) + (wire (pts (xy 189.23 170.18) (xy 189.23 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d9888e3-a4b1-4cdf-875d-600e96bf043b) + ) + (wire (pts (xy 66.04 209.55) (xy 74.93 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2def4b8b-ccf9-482d-8332-7bd40cb9d956) + ) + (wire (pts (xy 142.24 135.89) (xy 151.13 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3647cc89-fdd2-45d2-87cf-f6954fd99c4f) + ) + (wire (pts (xy 129.54 110.49) (xy 129.54 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 392a92a5-4bd2-4286-9c54-ea3bcc589f25) + ) + (wire (pts (xy 66.04 82.55) (xy 74.93 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ebd3c95-3b84-4254-8556-f4fba43ef0d4) + ) + (wire (pts (xy 129.54 161.29) (xy 129.54 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4074a00c-4cd2-4546-9e21-bddccdd5e5a3) + ) + (wire (pts (xy 314.96 69.85) (xy 322.58 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 459b519f-fa59-4902-a65c-7468a52602f0) + ) + (wire (pts (xy 142.24 85.09) (xy 151.13 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b0d8bd0-59f8-4435-9313-70bb0722cd60) + ) + (wire (pts (xy 104.14 57.15) (xy 151.13 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51684f9a-c605-4051-b69a-724d1645fa1b) + ) + (wire (pts (xy 66.04 57.15) (xy 74.93 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 522a9175-d5dd-49ae-a53a-cef43ff3c872) + ) + (wire (pts (xy 189.23 71.12) (xy 189.23 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53d85179-9d77-494d-a43a-389974718d7c) + ) + (wire (pts (xy 201.93 68.58) (xy 189.23 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55b70543-040d-47ad-a50d-4a8ba74eddee) + ) + (wire (pts (xy 104.14 82.55) (xy 151.13 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55c4e888-11a9-49e3-a996-d9e43402d997) + ) + (wire (pts (xy 237.49 224.79) (xy 281.94 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56065ab8-fd78-4a9b-9b70-5760ad064032) + ) + (wire (pts (xy 189.23 109.22) (xy 189.23 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a5ab33f-54d7-49c1-ac3c-3091617e6bca) + ) + (wire (pts (xy 316.23 222.25) (xy 323.85 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dda080e-1c4c-405c-80ea-dc6078d27e80) + ) + (wire (pts (xy 104.14 184.15) (xy 151.13 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f1a57f7-ec36-4eb8-befd-3acd65437276) + ) + (wire (pts (xy 142.24 186.69) (xy 142.24 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 601e0ddf-7c94-4010-9b54-60c1388d9b66) + ) + (wire (pts (xy 66.04 285.75) (xy 74.93 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63027e73-148d-4ca9-9487-faea996a0450) + ) + (wire (pts (xy 142.24 186.69) (xy 151.13 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6504efdd-b0b2-478f-b4c3-8debceadc33d) + ) + (wire (pts (xy 189.23 236.22) (xy 173.99 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 661577e9-8d9a-4767-9d15-8196af3dc462) + ) + (wire (pts (xy 316.23 171.45) (xy 323.85 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6abde640-ef73-489c-b689-8a1ee2796390) + ) + (wire (pts (xy 304.8 227.33) (xy 304.8 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b0bff76-cc9a-4227-8e5c-3000a0c4ddda) + ) + (wire (pts (xy 129.54 212.09) (xy 129.54 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6edd3887-ab94-4b3e-8119-2bf7becf4d21) + ) + (wire (pts (xy 104.14 107.95) (xy 151.13 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72b50da3-7f93-4cb3-a0e1-e414c896d6ff) + ) + (wire (pts (xy 224.79 69.85) (xy 295.91 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72e53118-f2ce-4e6e-9bd2-353ae96565c6) + ) + (wire (pts (xy 201.93 170.18) (xy 189.23 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74b294d5-c36e-4936-829f-5d7e79306f01) + ) + (wire (pts (xy 237.49 173.99) (xy 281.94 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74bb16fb-6f1a-4178-8d26-1184307daa75) + ) + (wire (pts (xy 66.04 133.35) (xy 74.93 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78c376ee-76fd-41da-9003-be509499116c) + ) + (wire (pts (xy 303.53 83.82) (xy 281.94 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c015ecc-fa35-4771-b6d3-d93f7cef9fcb) + ) + (wire (pts (xy 201.93 223.52) (xy 189.23 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c6afd4b-7d8e-43c6-9021-9fdff5e99a80) + ) + (wire (pts (xy 281.94 83.82) (xy 281.94 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f7b2a4e-077a-4813-8c44-83744f4f0e3b) + ) + (wire (pts (xy 201.93 121.92) (xy 189.23 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80c0b0d4-8d55-490f-b6c3-0589e1141530) + ) + (wire (pts (xy 224.79 222.25) (xy 297.18 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 816e6e18-30b4-4225-8752-8e43400846c1) + ) + (wire (pts (xy 189.23 119.38) (xy 201.93 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8178edaf-c1df-4cb0-9167-4be94b2d4198) + ) + (wire (pts (xy 151.13 212.09) (xy 129.54 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83c4af49-8f6c-4cc6-be7a-1585ab17c81d) + ) + (wire (pts (xy 66.04 184.15) (xy 74.93 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 875fea12-a138-4bf6-bd56-300a555dd057) + ) + (wire (pts (xy 104.14 133.35) (xy 151.13 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 878fa8f4-27f1-41d4-99ea-eef7084dc3e2) + ) + (wire (pts (xy 106.68 274.32) (xy 129.54 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8793c61b-07f8-462f-822f-74aef973d4ef) + ) + (wire (pts (xy 224.79 120.65) (xy 297.18 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a0b015d-35ea-4320-b05f-1bcabf786ee5) + ) + (wire (pts (xy 224.79 171.45) (xy 297.18 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8db53b85-36f0-4600-9d9e-5ce39f98c0fb) + ) + (wire (pts (xy 142.24 237.49) (xy 151.13 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92d35ddd-88c7-4b11-8c20-b90b9fb01954) + ) + (wire (pts (xy 189.23 121.92) (xy 189.23 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93fded2b-28c8-4b48-b629-c05c752f2ed1) + ) + (wire (pts (xy 142.24 237.49) (xy 142.24 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9535a2d0-f11f-4fda-b04c-fe7748bfc855) + ) + (wire (pts (xy 281.94 186.69) (xy 281.94 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b1e212f-964e-42a7-ba59-eb7b577e9659) + ) + (wire (pts (xy 66.04 234.95) (xy 74.93 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9de10ea4-4cd1-4273-a23e-7fe5625b3733) + ) + (wire (pts (xy 66.04 158.75) (xy 74.93 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0558a3f-065b-4bf7-8ba7-d44b14cc80be) + ) + (wire (pts (xy 151.13 110.49) (xy 129.54 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2cf671d-9b24-4a29-a722-4d951e4d10c8) + ) + (wire (pts (xy 189.23 134.62) (xy 173.99 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6f506f5-8dd5-4db0-82ab-e3a55d11a871) + ) + (wire (pts (xy 104.14 234.95) (xy 151.13 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8011c63-499c-4a91-9032-41e08d8931e0) + ) + (wire (pts (xy 189.23 172.72) (xy 201.93 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a87d2185-e1ee-4cfb-b5f0-b31089b4b0f6) + ) + (wire (pts (xy 173.99 185.42) (xy 189.23 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa6aef6f-dab5-4c83-832d-43a4a686e03b) + ) + (wire (pts (xy 237.49 72.39) (xy 237.49 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af8ff62a-8566-4206-9563-e37d59758c63) + ) + (wire (pts (xy 173.99 83.82) (xy 189.23 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b27d8acb-e809-454a-86b9-c4ced3844dd4) + ) + (wire (pts (xy 189.23 223.52) (xy 189.23 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b546430c-7d4d-4d5a-93fe-3a4769b7a7fb) + ) + (wire (pts (xy 189.23 172.72) (xy 189.23 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b550c045-1a33-4eaf-9429-75c8c8d071ce) + ) + (wire (pts (xy 129.54 59.69) (xy 151.13 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfddc144-be2a-4201-8871-a6c544909a7e) + ) + (wire (pts (xy 189.23 71.12) (xy 201.93 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3e9c0cb-c1e2-4c1d-ad8a-cd5a0d3bd704) + ) + (wire (pts (xy 142.24 285.75) (xy 142.24 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c74816f9-80d9-4edb-9bda-25d8612bf439) + ) + (wire (pts (xy 304.8 176.53) (xy 304.8 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7658494-6ebd-4b63-b997-46b903c5bba7) + ) + (wire (pts (xy 237.49 173.99) (xy 237.49 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8a95b88-7ebf-4f40-8272-2dfa3927b1c0) + ) + (wire (pts (xy 237.49 123.19) (xy 237.49 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cabbf979-e378-4c11-a6af-7fbe6282e27c) + ) + (wire (pts (xy 189.23 68.58) (xy 189.23 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cadfb147-14c1-47bd-8044-2f6c5d39b14b) + ) + (wire (pts (xy 128.27 285.75) (xy 142.24 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd52d8e1-34c2-4b36-803e-1eb1410191a9) + ) + (wire (pts (xy 237.49 260.35) (xy 237.49 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf499aba-a5a3-4aff-8e45-46038b7db5f7) + ) + (wire (pts (xy 104.14 260.35) (xy 237.49 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1ba65ef-7afd-4381-83ee-eb30e0967157) + ) + (wire (pts (xy 189.23 160.02) (xy 173.99 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d23192c5-4260-417b-8639-511e72f4d95e) + ) + (wire (pts (xy 106.68 285.75) (xy 113.03 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2e787ce-9fc7-47de-b37e-daa3e7779001) + ) + (wire (pts (xy 104.14 158.75) (xy 151.13 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d442277b-80a8-4261-a0e6-1a95250b8b0f) + ) + (wire (pts (xy 66.04 260.35) (xy 74.93 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db4390d6-9c65-4632-95c4-8d36bb12b870) + ) + (wire (pts (xy 189.23 220.98) (xy 201.93 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbc03a35-e79a-4eb7-8be0-78ab41888240) + ) + (wire (pts (xy 106.68 285.75) (xy 106.68 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc541e47-3f23-4489-803a-312eba5c6216) + ) + (wire (pts (xy 173.99 109.22) (xy 189.23 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e00516b0-8ac8-44e6-a2ad-b6c3c4ddddb7) + ) + (wire (pts (xy 90.17 285.75) (xy 106.68 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0ca6ac9-7522-4c8e-9ed3-ada8ea13ad49) + ) + (wire (pts (xy 304.8 237.49) (xy 281.94 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e70cee76-bd71-4a22-981d-7f331d8bf239) + ) + (wire (pts (xy 304.8 125.73) (xy 304.8 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7338885-e19c-4971-91e2-1ed3f953153c) + ) + (wire (pts (xy 142.24 135.89) (xy 142.24 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebb9e000-1459-41b8-97ad-334e3c1a1d7d) + ) + (wire (pts (xy 303.53 74.93) (xy 303.53 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec2ea861-258d-4ca2-b358-2a24ef935af1) + ) + (wire (pts (xy 304.8 135.89) (xy 281.94 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee5fb5a4-f42b-4d87-bd86-fef0a6911702) + ) + (wire (pts (xy 281.94 135.89) (xy 281.94 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef0e4e07-430c-4a72-9f43-117d3e7b2ba0) + ) + (wire (pts (xy 129.54 59.69) (xy 129.54 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f42f12bc-f75a-49d8-a771-05aa70993884) + ) + (wire (pts (xy 151.13 161.29) (xy 129.54 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f82fced8-ba6d-41f3-be50-6d26703730ec) + ) + (wire (pts (xy 104.14 209.55) (xy 151.13 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd933939-3b0a-4094-bab8-ec89e401a2a5) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 213.36 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 096409f5-aba1-424e-b0bc-52606232902f) + (property "Reference" "U31" (id 0) (at 213.36 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 213.36 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2aab010d-3024-45fb-a661-d8b9d0e9b8f9)) + (pin "2" (uuid d40732c9-7ca4-4817-9c87-3017cfd455ce)) + (pin "3" (uuid a15d7ad0-aa13-460c-b2ac-61d5a1eef35d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 82.55 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0b3f0098-f17f-4c06-a84d-b68aa5189d32) + (property "Reference" "U1" (id 0) (at 60.325 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5a7c9064-71f5-4cc5-800a-c96f0cb5b808)) + (pin "2" (uuid 14365676-da70-46b8-b1c2-88b101f7aed1)) + (pin "3" (uuid 6fde5304-2923-4358-bc22-241145c754d9)) + (pin "4" (uuid 24aefa6f-e2dc-4ef7-a8c5-93c50f56c481)) + (pin "5" (uuid e8eed244-e4c1-4873-9836-8bac476b84f1)) + (pin "6" (uuid d593d53d-cdab-4000-a25e-044bfde484ae)) + (pin "7" (uuid 743a7bd3-bfe8-4427-a115-2c7ce95fb68c)) + (pin "8" (uuid 5fd90450-4054-4947-95a4-b7f67797344a)) + (pin "9" (uuid 3a738591-b164-4f66-b175-3c8f3057c516)) + (pin "10" (uuid eec8a3f4-1915-46fc-8072-371b04544d7f)) + (pin "11" (uuid af56872e-da03-4ba6-bf6b-d979c45f0d5f)) + (pin "12" (uuid ef75ca42-20d9-4011-8b2b-41d7b4f3b5b9)) + (pin "13" (uuid 64e4cebc-8cc3-4374-a041-d0b02166026d)) + (pin "14" (uuid a314d29a-bf3d-49dd-ae37-a946552f1c5b)) + (pin "15" (uuid 2aebdb75-9c91-47ca-81e8-5a50788f7229)) + (pin "16" (uuid 37b8a6d7-2844-4f6d-8a51-4be43604d787)) + (pin "17" (uuid 806f873e-6aef-48f6-8f22-12ceadb55a0f)) + (pin "18" (uuid e0ba7bb7-8a6a-4cba-babb-d0d6f0a2719d)) + (pin "19" (uuid f6da2fb3-7b0c-4633-9747-b9df44df0698)) + (pin "20" (uuid 5ff406e4-177b-40c1-9121-c1c357157a71)) + (pin "21" (uuid 47a5f828-5f0e-421b-b440-069fca57e5a7)) + (pin "22" (uuid 5cf54620-7a2f-4f5f-b0cf-f28fbe1ead67)) + (pin "23" (uuid 1dd9575e-8bbd-46b5-a35a-7fbe0619590a)) + (pin "24" (uuid 84fe3152-c9a3-4988-8ed0-226db1715f8c)) + (pin "25" (uuid 996026b6-46e2-4ef2-b64a-4ddf46f44c37)) + (pin "26" (uuid 83d68fd6-7460-452b-907d-a7ecdc17fdec)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 162.56 237.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0d3f5aaa-131a-40b9-aabc-c53637bcc6d7) + (property "Reference" "U29" (id 0) (at 162.56 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 162.56 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 237.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 237.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 960ff671-b1e5-479b-8067-a2bee2ab6baa)) + (pin "2" (uuid 9d9d2432-6267-41c9-8117-c316895f969c)) + (pin "3" (uuid 270dc362-1db4-4eac-bfe9-010c31c0daad)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 82.55 285.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1132b1a0-2f6f-4502-b01e-7182ae0d7568) + (property "Reference" "U11" (id 0) (at 82.55 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 82.55 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 83.82 287.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 83.82 287.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 89acafc4-5a5a-4289-8593-c0db59f9b87e)) + (pin "2" (uuid 1e2b491d-9984-40da-ab34-e1764f1842b3)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 87.63 260.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 23ea2a60-541d-4a8c-b093-93a596ad2f87) + (property "Reference" "U20" (id 0) (at 89.535 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 89.535 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 830faa65-ec0a-4ef5-b6be-11eb0efc9d8a)) + (pin "2" (uuid 3bacb3fc-2136-4f8c-a84d-1776abc9d78d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 209.55 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e4d87f4-3a00-4b25-bb3a-4514b0916d0c) + (property "Reference" "U1" (id 0) (at 60.325 204.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 207.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0a3d9a74-ea00-40dc-8950-8c517bc84721)) + (pin "2" (uuid b9ce7952-6579-4715-95fa-9c3e3eb615fc)) + (pin "3" (uuid a16e2a16-49e6-4c9b-8465-f90fcac3788c)) + (pin "4" (uuid 889ea8c7-89d2-4e66-ab7e-4ac52a079078)) + (pin "5" (uuid cd7409ee-5902-4578-b461-c798c4b35df5)) + (pin "6" (uuid d2243cb5-aeef-4bbe-9ba7-dce4b4625cc0)) + (pin "7" (uuid 752eab5c-1368-4618-a453-69e78bf57d00)) + (pin "8" (uuid 5c02fd27-be16-4e57-a204-132701b2c784)) + (pin "9" (uuid f1a81647-0fc5-4345-9264-8cdb3cedb965)) + (pin "10" (uuid 302f3518-be9d-4477-8585-3c647c0e7004)) + (pin "11" (uuid 5eeb283f-04f1-4d19-9736-c012e6ac8e55)) + (pin "12" (uuid d2763ffc-13c1-4a25-905e-782795a52a39)) + (pin "13" (uuid feb94d68-b84e-4b5f-a98a-4945a09185fc)) + (pin "14" (uuid cc559d43-333f-4eb6-83ec-4ba39f562b01)) + (pin "15" (uuid 187cf2c9-0561-4dda-8650-07ce4f3b3859)) + (pin "16" (uuid 80420d05-cc19-4078-a9df-6c268e4feb4b)) + (pin "17" (uuid ee961827-6178-4bb6-9648-da5627d025a2)) + (pin "18" (uuid 8f09fab8-00a2-4af9-8b46-d413bb225628)) + (pin "19" (uuid ece2193f-f2f1-46cb-a00d-0fd7e28e638b)) + (pin "20" (uuid 65a2a08e-5487-4e3a-9b9f-07f44ad16933)) + (pin "21" (uuid 52da0a6a-10b8-4187-a00d-6a0f29a21523)) + (pin "22" (uuid 726e5512-16c1-438d-8c66-35d0674a7c58)) + (pin "23" (uuid f95d51fe-6d04-4213-9115-3a1a453ae6b8)) + (pin "24" (uuid c311ceb2-83ce-4301-8b6d-1a8e4bf7b9a1)) + (pin "25" (uuid 4a5f7af2-498b-4937-b2fb-236243eba45b)) + (pin "26" (uuid bc5de531-dfe8-460f-8768-435cd1facde4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 162.56 212.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 338f8b37-7a19-4e20-8e74-6376ba1bafb8) + (property "Reference" "U28" (id 0) (at 162.56 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 162.56 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f8ca67ef-36c7-4b54-a054-8fcdc112ed0b)) + (pin "2" (uuid 617b7b98-dcc4-425e-99aa-5b4e27465d0a)) + (pin "3" (uuid 28cc6b3d-e324-4092-b146-a04bdfd2de53)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 162.56 161.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 34c190eb-88f5-47d7-9f46-8e0c3f27673b) + (property "Reference" "U26" (id 0) (at 162.56 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 162.56 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a745b4f4-fa09-437f-8a60-f635d56349fc)) + (pin "2" (uuid e423f59a-888d-4403-a324-2d4fcc53185a)) + (pin "3" (uuid 7308e2de-14fe-48c4-9c90-edd3aab4d0d7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 184.15 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38238b26-2fb1-410e-8e6b-425588b8434e) + (property "Reference" "U1" (id 0) (at 60.325 179.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 181.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f83250e8-7728-45b3-8a17-6efa185b9886)) + (pin "2" (uuid 6261f5a9-6aa4-4402-bbd6-0c0c4ab172ac)) + (pin "3" (uuid 47c385fb-4086-4bb6-8bd7-40e5bf3be551)) + (pin "4" (uuid 5f695ec3-4bcc-4fda-a1d8-43e952ec713d)) + (pin "5" (uuid 8be623fd-4697-4b51-a5ea-115dee53f6b9)) + (pin "6" (uuid e29e3fde-5b19-42f7-b737-eda5d5615b6a)) + (pin "7" (uuid 5fb38fef-e2ef-4e65-8757-bac48a7a6d13)) + (pin "8" (uuid bdced3a5-4762-40e8-aaa0-6c5aa9539a98)) + (pin "9" (uuid 6d225a0a-122d-4112-a0ea-20ccd3c9f2f6)) + (pin "10" (uuid a029e447-74f5-4f24-831a-9fbfa2878693)) + (pin "11" (uuid 1e930370-2b99-48b5-9d53-0a1daa3d3c66)) + (pin "12" (uuid 4ddeaf07-9e0d-4000-95f1-5ac813035e27)) + (pin "13" (uuid 01484a68-18b8-4103-9def-9c204f0e4524)) + (pin "14" (uuid b5949880-c706-4b37-88c7-a7f98b17c053)) + (pin "15" (uuid 72404353-2130-4915-aa4a-d16f99e19cc6)) + (pin "16" (uuid 4fa0262a-9a24-44e7-ac21-97bf9a753afc)) + (pin "17" (uuid 46475b11-f501-4b00-a230-48a266f4e170)) + (pin "18" (uuid 5c47beda-7f0b-4a8e-9ec9-8aacfccab1f0)) + (pin "19" (uuid 28d9088c-e879-466b-968e-6a386adbfd75)) + (pin "20" (uuid 131ad469-df29-440f-8355-9cece8ebdfd6)) + (pin "21" (uuid 7937f14f-dcf7-4c4a-a5e4-436c88888a58)) + (pin "22" (uuid bcb7ee91-097b-4b40-befb-dd00686eab5a)) + (pin "23" (uuid ec99f73d-23fb-4ec4-9b21-92c913d022d2)) + (pin "24" (uuid 8ccbaee9-e774-4904-b5ab-0ec8c63fb7af)) + (pin "25" (uuid 1c6b7fec-331a-4b76-a7a5-3e32df232249)) + (pin "26" (uuid 484d7632-04d9-410d-9521-90ac35ef4929)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 304.8 222.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3981a79a-2d47-40ab-86a3-7d06815a0db7) + (property "Reference" "X4" (id 0) (at 306.705 213.36 0)) + (property "Value" "TRISTATE" (id 1) (at 306.705 215.9 0)) + (property "Footprint" "" (id 2) (at 304.8 222.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 304.8 222.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 073713bc-4ce8-4baa-b272-a72f7ea7c129)) + (pin "2" (uuid 5cbb1a31-ebdc-40ac-8674-c3ed581610d1)) + (pin "2" (uuid 5cbb1a31-ebdc-40ac-8674-c3ed581610d1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 285.75 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 452901fe-2a1b-4897-8d4a-7be4148dc3e5) + (property "Reference" "U1" (id 0) (at 60.325 280.67 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 283.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 285.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 285.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1130cd03-cc08-4211-9886-e352f45cf8e8)) + (pin "2" (uuid eae8d81e-eeb0-40f1-9796-fd6ec93c5312)) + (pin "3" (uuid 281a7d7d-88f4-47b8-bb94-78bff744de35)) + (pin "4" (uuid 59f61103-df07-4724-a177-ba04637ba832)) + (pin "5" (uuid 3824c29a-db6d-46fc-941b-d6ad884435c0)) + (pin "6" (uuid 26592586-8e05-460f-84f0-1ef50b378e25)) + (pin "7" (uuid 1ff11da5-6ae4-44a3-8a45-9ef8e37d5210)) + (pin "8" (uuid a39fb51f-6622-48c0-ad6d-e7d8a61ee0b1)) + (pin "9" (uuid 24f71f46-165d-4574-bda8-b650c97450b2)) + (pin "10" (uuid 09fac77c-a72f-4801-bff5-8de05ce20bba)) + (pin "11" (uuid 5977ad0a-1f10-4a8e-bddd-3843820e4f01)) + (pin "12" (uuid b74897ef-3fa5-47b6-9dfc-39acd0bbac8e)) + (pin "13" (uuid 2af23a6c-9ca2-4fce-be82-127f7da00b2d)) + (pin "14" (uuid 51678318-ebc2-4659-9b0c-94cdaf93e04a)) + (pin "15" (uuid afb20e58-6037-45c0-8a00-abc10da26230)) + (pin "16" (uuid 4557c04b-202f-4dc9-9812-4e32d82ba4c2)) + (pin "17" (uuid 5daf8435-af2f-4b8c-b758-ed499d7a342e)) + (pin "18" (uuid a55d4816-106f-4a04-a8e9-bb695e0330db)) + (pin "19" (uuid d898a533-cd05-4c70-b81c-19f2a5e633c1)) + (pin "20" (uuid bf7dbfd9-2a20-48c0-a1b9-1626e62a97cf)) + (pin "21" (uuid 44d37351-db20-44cb-96be-fa2dd34319f8)) + (pin "22" (uuid dc0bd371-4b76-4a9a-a04b-eb0bcaf9702e)) + (pin "23" (uuid 71c2d1d4-1986-4c2b-ae41-93b1a1c8700a)) + (pin "24" (uuid 5ae0b0a8-c0ed-4f0b-8346-2fa8f672b3a8)) + (pin "25" (uuid d9046f15-b7d7-4db9-a75a-861a43fb3f09)) + (pin "26" (uuid d99fcd89-c447-4b71-bc66-092e2248e155)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 87.63 184.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4910337b-074f-4cda-9e72-d4fbe28df007) + (property "Reference" "U17" (id 0) (at 89.535 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 89.535 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f0b4ed26-29ea-4de2-946d-10231bdac1cb)) + (pin "2" (uuid 803cfe1f-cbe5-4891-8464-89b92e6b1ce0)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 87.63 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4d66140b-1ff0-41aa-b1b9-8be230639a67) + (property "Reference" "U14" (id 0) (at 89.535 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 89.535 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 35fd0f9c-d194-4ae9-bea2-ed7744fad57d)) + (pin "2" (uuid fef68347-f01d-43c6-9a14-b20b7c378e2d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 162.56 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5001db2a-acc2-44e9-9bbd-634e0f175222) + (property "Reference" "U24" (id 0) (at 162.56 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 162.56 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 88985be7-5e5c-45d2-a7cb-0f85132a0854)) + (pin "2" (uuid 2f26e1df-7610-45fb-964a-6e6e2bc66505)) + (pin "3" (uuid 19060707-7fbb-43a1-a265-437d9d862e5a)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 213.36 172.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5181d830-a66e-42ad-9d6c-f634d9252817) + (property "Reference" "U32" (id 0) (at 213.36 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 213.36 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0907f1a0-5d86-4b7d-9ea2-db0d1c11fce0)) + (pin "2" (uuid df15639d-9bd5-44c1-aa57-9ba32d6a7b4d)) + (pin "3" (uuid 1f097dd3-9c9c-42c0-b7cf-1d291942a1e4)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 87.63 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 525fca60-b555-4134-b552-61cdb56a92c5) + (property "Reference" "U15" (id 0) (at 89.535 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 89.535 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b12638b9-aa36-4f9d-bcb2-5f4487b60b9b)) + (pin "2" (uuid ff236ba2-6a30-4836-aaa3-f46666554995)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 330.2 120.65 0) (mirror y) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6c7645e9-1f54-4850-9aa7-2b922e7b744c) + (property "Reference" "U1" (id 0) (at 334.01 120.015 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 334.01 122.555 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 330.2 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 330.2 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a3a7b646-e2f2-480d-95a2-5ee30e3f287c)) + (pin "2" (uuid 19472a61-0305-4ad2-b13b-9b98bbd6efe3)) + (pin "3" (uuid aa95061f-fa84-4da6-8605-4b30cb2802ca)) + (pin "4" (uuid 4188cd52-3058-493a-b632-18ba89a680ad)) + (pin "5" (uuid e31346c1-bcd6-4190-96f0-5954465e2d48)) + (pin "6" (uuid f6b25621-98c1-4bc7-9646-136fce9e055e)) + (pin "7" (uuid 550c4460-df39-4ade-9bbb-1f507244513e)) + (pin "8" (uuid c7ed26c6-84ed-46f9-8420-5d19b4f981fb)) + (pin "9" (uuid f1dd7417-28a9-48ee-a9db-ecb6b08cd704)) + (pin "10" (uuid 5b9da371-0d2e-45a3-85d8-35ab64bee4c3)) + (pin "11" (uuid 5a0db1a5-34d3-47f1-95d0-b69a477f3a25)) + (pin "12" (uuid b32182f5-0efd-4425-9843-91665f5dad1e)) + (pin "13" (uuid 266c137b-4d35-4074-aba6-0695944d944b)) + (pin "14" (uuid f0801d99-08fd-46f7-8732-6f3e17d271cc)) + (pin "15" (uuid ded07d44-9e9a-4089-b858-2b80b6188e36)) + (pin "16" (uuid fd51bd3d-05e8-4ce3-b379-8c55dc099c67)) + (pin "17" (uuid aeca6158-5d9c-4194-8cb9-9c1acf9ccaa9)) + (pin "18" (uuid 4c3ba5ca-205f-40bf-99d1-d205e228b4df)) + (pin "19" (uuid 9a22847c-a4df-401e-913f-1446ceff0de4)) + (pin "20" (uuid 891000d1-3f9b-4de1-86b3-fa3ee5f47662)) + (pin "21" (uuid 01f50718-4b41-4d80-8bf0-95fcf6687fb9)) + (pin "22" (uuid 7fcd1724-b73d-41ca-b888-1af4821302d9)) + (pin "23" (uuid da7b1634-3345-4ec6-bb88-a8a9457c4b45)) + (pin "24" (uuid 8508610f-cb99-48f4-9dd4-6f4e8ca48e15)) + (pin "25" (uuid de9bea4b-d722-4533-bcc5-517728e3493b)) + (pin "26" (uuid d8997457-da53-40cf-9a67-ab5c9c35e4a8)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 304.8 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 725476cb-8d5f-4941-95ba-e8882cad8a05) + (property "Reference" "X2" (id 0) (at 306.705 111.76 0)) + (property "Value" "TRISTATE" (id 1) (at 306.705 114.3 0)) + (property "Footprint" "" (id 2) (at 304.8 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 304.8 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7202c783-8ea9-4118-b05f-fc4b2c26a9aa)) + (pin "2" (uuid 28016229-956b-4741-8a4f-a83550fcfae1)) + (pin "2" (uuid 28016229-956b-4741-8a4f-a83550fcfae1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 330.2 171.45 0) (mirror y) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 72937f48-e6ff-4267-a6f1-fdfdccd1d21f) + (property "Reference" "U1" (id 0) (at 334.01 170.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 334.01 173.355 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 330.2 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 330.2 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 37b5b08f-d9bd-47ed-be3f-da520d319b35)) + (pin "2" (uuid b11d4afa-24c1-4982-ad9c-8c59e66970f7)) + (pin "3" (uuid 8205083c-ff7f-4e05-a1e8-0bb324c2ad11)) + (pin "4" (uuid 9429eaaa-8c55-4ee3-a26d-d646563816b7)) + (pin "5" (uuid 6d18041e-bf4a-40f7-a35f-7eb7179eaf2d)) + (pin "6" (uuid 77501552-e60c-4e9c-9153-1bba41032783)) + (pin "7" (uuid 9e5f87be-99f0-4e92-ac61-0fb33c0327c8)) + (pin "8" (uuid 7446fe59-944d-40cb-a7bd-c8804aaf7510)) + (pin "9" (uuid f6c965da-9b04-4621-bdb2-5b35165e48c0)) + (pin "10" (uuid f2ac569b-f4ee-425d-9239-51781335d0f2)) + (pin "11" (uuid 260d8df1-4999-4373-8e60-8195ab243a4b)) + (pin "12" (uuid e25ce3e3-1bb1-4a13-8ece-95483e075a1d)) + (pin "13" (uuid f4e23305-1f72-4680-902c-ba2da772eaed)) + (pin "14" (uuid 50df3ec2-56fc-49e8-89af-e70e65c6b6c4)) + (pin "15" (uuid 3690b9e2-72e9-44ab-8183-3b20790b0d6d)) + (pin "16" (uuid 61fb2c90-bff6-475a-aedb-ff38eadbfb20)) + (pin "17" (uuid a9ec5469-6707-469b-9d83-1a73f7c02d8b)) + (pin "18" (uuid 59956f0c-420e-4b75-8371-58d4c8ad7764)) + (pin "19" (uuid 1b911396-fcd7-4774-b922-7f138c00ee03)) + (pin "20" (uuid 49ba6ddd-cfd2-4151-8e17-190a6d379a59)) + (pin "21" (uuid 7ac29e33-946c-4d24-b68a-4f47d882d902)) + (pin "22" (uuid 5c943b03-4e2f-44bb-a969-da9ac662930f)) + (pin "23" (uuid a4c18f8f-b892-40a5-9ecf-0bf9ce117841)) + (pin "24" (uuid bfe555a1-322a-4039-84dd-87ba63ab5815)) + (pin "25" (uuid bb0fc534-6be8-493e-90de-ffccfa395127)) + (pin "26" (uuid 4699f4f3-1877-412d-ae61-b8b26997356d)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 87.63 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 74bfc9da-3e42-46f9-9525-e834cf6ccf3d) + (property "Reference" "U12" (id 0) (at 89.535 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 89.535 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7a86e8b4-3eec-4e4d-82e1-3f558feaca06)) + (pin "2" (uuid a47aa4d1-c975-4ac8-a88e-13ac533f0d37)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 260.35 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e2963ef-ba7c-4f0a-9b7c-dc1e476fd8da) + (property "Reference" "U1" (id 0) (at 60.325 255.27 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 257.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c14eb1e4-a538-4942-a405-de9519bc4e1c)) + (pin "2" (uuid 85e71314-a129-4fd5-819f-4ca511d94f96)) + (pin "3" (uuid 5b8a2f62-6060-4e59-9bd0-fe301108823c)) + (pin "4" (uuid 4edf5d7e-e4a0-46f3-bc1e-0c328c34f866)) + (pin "5" (uuid aedc7038-9175-4c43-8909-ce2d0edd81d0)) + (pin "6" (uuid 7501e971-773b-44a3-ba43-c5e02aabba75)) + (pin "7" (uuid 5a78b8b6-8053-4eec-bb0c-37b96dfb8464)) + (pin "8" (uuid af65bb40-82da-4848-9411-5f26e3a47224)) + (pin "9" (uuid f6a3faff-a8b1-40b2-903a-77367c5464de)) + (pin "10" (uuid 5e284a7f-1ab1-418d-9723-421eaec23bbc)) + (pin "11" (uuid d5bc7fe9-8e35-476b-ace6-a4bd4c2ebc13)) + (pin "12" (uuid ef54fc85-d1e5-4e18-8d0f-ff1a042bf5bc)) + (pin "13" (uuid fa418b1a-c3a8-4b11-89e8-583d11b9b491)) + (pin "14" (uuid 4a95566c-5f7a-473b-aad1-501c5165ad8a)) + (pin "15" (uuid ca3f506b-d79c-41d2-8eec-58b63be8548a)) + (pin "16" (uuid dc935201-77dc-42b3-807e-08f098cfdaae)) + (pin "17" (uuid 5f595b6d-6d9c-417e-ab82-03a8b9de5282)) + (pin "18" (uuid dfce47c6-a179-46e1-9e46-ab952d08710c)) + (pin "19" (uuid 6664c55f-917c-4f38-a99e-49f8f38d0f64)) + (pin "20" (uuid bd55bb87-cffe-47b3-bb7d-00cbb2092873)) + (pin "21" (uuid 642e8e11-c6c4-413e-a8ac-141121043e6e)) + (pin "22" (uuid 81d832de-d36c-40dd-aeef-bd44a0496be2)) + (pin "23" (uuid 7fe877a2-2bbc-40e5-b81e-2a4be9ca0817)) + (pin "24" (uuid a970b80a-f650-4b16-8b8a-9f47a7d15f98)) + (pin "25" (uuid c870c819-e0c2-4395-95ad-6cc90bd780e9)) + (pin "26" (uuid 4d43f7e6-0d8c-49f2-a318-55cbe35d5abb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 158.75 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1d48f78-252c-4fe6-bfd4-f5150101f09b) + (property "Reference" "U1" (id 0) (at 60.325 153.67 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 156.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58cc1c75-5667-4ac4-850b-d7243468e631)) + (pin "2" (uuid 9b5620cc-9cb5-42e8-bdf0-81c367538e70)) + (pin "3" (uuid 5cb69ea5-d29c-451b-8996-47b169356479)) + (pin "4" (uuid 2977500f-c790-4906-b340-54bed84cded7)) + (pin "5" (uuid 3a3b3f7c-0a66-4ad3-9f4d-321155613e0c)) + (pin "6" (uuid b075f6ac-8ac7-4764-9d7c-e4402093ba9d)) + (pin "7" (uuid 1427ec4d-4680-4eb9-9f9f-321cb52e81cf)) + (pin "8" (uuid f4e7209d-ce07-4fe4-91b6-104c0c5607d8)) + (pin "9" (uuid f9f85a0e-effd-4ab9-b9ea-0bf61a6389d5)) + (pin "10" (uuid 90fbdfa2-0c17-4659-8adc-db10edb726b7)) + (pin "11" (uuid 20a233a8-a77b-4e0f-b40d-f1dba2e25f5a)) + (pin "12" (uuid b8d0db98-afa6-4110-88ba-5b671e873726)) + (pin "13" (uuid 3c511c0f-ecc3-4cf8-a629-bcbb346d9ff7)) + (pin "14" (uuid 512efd66-2be9-49d6-8a17-b419984d9c91)) + (pin "15" (uuid c4e09499-a8ba-4d91-bde0-fdbe708ff5fb)) + (pin "16" (uuid e35d9bab-cfb2-4cdb-8122-62b515d1328e)) + (pin "17" (uuid a239e2f4-460d-465a-a4c1-2f4f8aa20b66)) + (pin "18" (uuid bffeea2b-6286-41bd-8af6-72ae5c2789ff)) + (pin "19" (uuid 0370c7f8-7f2f-4c92-bc0d-5babc25f236b)) + (pin "20" (uuid 0c88f5ab-4d32-4058-b4ba-17a7b06d11ae)) + (pin "21" (uuid cb07dec2-e0f3-4084-a4fa-3607fb0dad6b)) + (pin "22" (uuid 28302a99-8681-4f84-974e-a82bd736021b)) + (pin "23" (uuid 46e04086-9b1b-47fb-8c67-91da55e9dc88)) + (pin "24" (uuid bab89015-c00a-4d88-af11-bf7ea1173dad)) + (pin "25" (uuid 6cf4b9a0-ee4c-4dc1-ab32-e2fb0cc7d822)) + (pin "26" (uuid 8ef5ab19-7808-48ed-9432-e2c2093b11f3)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 87.63 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a34e2e3f-ba1c-457e-b541-ff3578d77ad1) + (property "Reference" "U13" (id 0) (at 89.535 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 89.535 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b772693a-0fcb-4f22-8a17-a11186a10be7)) + (pin "2" (uuid 519bc5ac-3144-48a9-8873-b575d8586503)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 120.65 285.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab6181b6-75a3-437a-a217-fb39dc1d8d82) + (property "Reference" "U21" (id 0) (at 120.65 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 120.65 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 121.92 287.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 121.92 287.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1de8abd6-1e85-4499-b27e-ff21cf87bbc7)) + (pin "2" (uuid 199838de-776d-4458-b299-fb42a2722572)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 213.36 223.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b72badde-3185-460d-9847-f7c5f9e4c33f) + (property "Reference" "U33" (id 0) (at 213.36 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 213.36 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9e4b2961-eda7-4c1f-b9b7-a7c4022f19eb)) + (pin "2" (uuid 846ca469-a05d-4df1-9561-9cc0a41bc00e)) + (pin "3" (uuid 4b3c99fa-81a5-4946-bf7d-2e49e8b6fd65)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 304.8 171.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba270456-2ea1-46e7-b400-b92263182397) + (property "Reference" "X3" (id 0) (at 306.705 162.56 0)) + (property "Value" "TRISTATE" (id 1) (at 306.705 165.1 0)) + (property "Footprint" "" (id 2) (at 304.8 171.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 304.8 171.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f30e7312-928d-4620-9ede-ced62a348c01)) + (pin "2" (uuid 93f5e826-d30a-426a-bd63-153e7a92bef7)) + (pin "2" (uuid 93f5e826-d30a-426a-bd63-153e7a92bef7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 234.95 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba496926-e247-49b2-8c6b-a68633a05efb) + (property "Reference" "U1" (id 0) (at 60.325 229.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 232.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9afbc4f1-ea17-40c3-b803-8b23a23786ba)) + (pin "2" (uuid d4016e60-2426-4b6c-b33d-af8d5764e447)) + (pin "3" (uuid 45f12841-ad04-46e9-875a-157e0f22e865)) + (pin "4" (uuid 5c8f9346-bfeb-437d-ba7f-e35afdc89bde)) + (pin "5" (uuid c3e79803-b71a-4959-8a9c-b721a39af4ac)) + (pin "6" (uuid f89ebe36-2236-4f9d-80e5-4aa40313cc80)) + (pin "7" (uuid 752d59cd-772e-4e4e-996a-a9aef43a8ef0)) + (pin "8" (uuid 78d13924-6761-49e7-a7eb-1728d31be8ac)) + (pin "9" (uuid 2aa883af-73c4-4785-ba9a-04107919c6d6)) + (pin "10" (uuid 110dd377-4cf7-40bf-9113-3a2183d92f4b)) + (pin "11" (uuid 4267886d-5adf-4f3d-98b0-b1f28d94273f)) + (pin "12" (uuid a0969f1e-2687-4742-b5fc-e03a4fb81e8c)) + (pin "13" (uuid 08637214-1de4-43e8-9b67-f4840d986353)) + (pin "14" (uuid 9c3a53fe-85a3-4757-9154-ee391ddb1c48)) + (pin "15" (uuid 4c61f752-ad7e-4bdb-8f8a-183b0611117a)) + (pin "16" (uuid e9aba6aa-8966-4607-931f-4a91e3a5dc63)) + (pin "17" (uuid ae6afcf9-8411-4af8-8c37-fa9ff8ef6e07)) + (pin "18" (uuid 3e0eeee5-b7d6-47e3-b13a-ad61857da059)) + (pin "19" (uuid 76736879-56c3-45f0-9ff4-11f9bbcb20a8)) + (pin "20" (uuid a91dcc5b-8113-4de7-8627-b689d9b6a1bd)) + (pin "21" (uuid 708af070-0aec-4fc9-a29c-74ccd32a34a9)) + (pin "22" (uuid 380d16a1-6701-48a4-87b5-c7e2e58b5a73)) + (pin "23" (uuid 82de2f55-df6a-47c8-8ab8-6ec01b01b607)) + (pin "24" (uuid e97f3bc6-f70b-4ad9-a001-29179905bb1e)) + (pin "25" (uuid 2fa7965c-5998-43e0-888f-33596618dc73)) + (pin "26" (uuid e2094ad0-b1af-454c-8b3c-2a731acb12c9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 162.56 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid babe8393-5c5f-4d83-8aa2-112a43c6358a) + (property "Reference" "U27" (id 0) (at 162.56 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 162.56 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0c0d17f9-1781-48ef-92e8-a6a984524294)) + (pin "2" (uuid dcccd857-52b2-4ff0-a98c-ea6ac570d6f0)) + (pin "3" (uuid 89dcb81c-c863-40f3-bbcc-0b6968e79267)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 87.63 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c167c006-c2be-49b9-889b-b2c9864c1c81) + (property "Reference" "U18" (id 0) (at 89.535 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 89.535 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e0fb173a-ff62-4a64-830b-d7cfc3332a13)) + (pin "2" (uuid 74bbca64-71b1-49ef-9075-fe1073ed4e09)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 162.56 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc21ebfe-b18b-41ae-baf0-8863cf2456ba) + (property "Reference" "U23" (id 0) (at 162.56 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 162.56 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4e1a328a-2a8a-4df6-ac58-4d6f2d6f0ff9)) + (pin "2" (uuid 8761a998-5772-469b-b73c-8f0fd5838dba)) + (pin "3" (uuid 49dedcc5-d709-4699-83e3-355139956315)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 328.93 69.85 0) (mirror y) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3eeb203-9886-4e40-87a1-5d757fddabe6) + (property "Reference" "U1" (id 0) (at 332.74 69.215 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 332.74 71.755 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 328.93 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 328.93 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8e512c7b-235e-406f-9a37-b265a9f78622)) + (pin "2" (uuid 2b0847db-1b91-4d6d-8acb-285844f98690)) + (pin "3" (uuid 328c275c-ed2f-4e8e-8be4-05b7e127f6fb)) + (pin "4" (uuid 8b00f61b-0b85-46ba-8434-e5584ed5ee6f)) + (pin "5" (uuid a9202bd6-e542-4f66-9ec1-8e102f59591c)) + (pin "6" (uuid 86f79bb1-b5fc-4bed-85d3-62a54563494e)) + (pin "7" (uuid b4c94ad7-05da-466c-b9cc-066c096850c5)) + (pin "8" (uuid 079ca05c-3f65-4f81-86e4-c593f9b5daba)) + (pin "9" (uuid e5ea013e-ab14-4479-af4c-1da485043dbc)) + (pin "10" (uuid caa8090e-ecc4-4687-90b4-b9d94576898f)) + (pin "11" (uuid 9ad9dc3e-2f3c-403a-bbdf-4e587a9f38db)) + (pin "12" (uuid b7a9e29d-80ab-4780-b9b9-0d22a3c4a9e4)) + (pin "13" (uuid aad017c9-0f90-44ae-816f-08eb36a2e726)) + (pin "14" (uuid c90b72c8-c8f4-4731-9197-b6ad2016e0f7)) + (pin "15" (uuid 998e7a83-fa72-4f2b-867f-c7d4407fb9de)) + (pin "16" (uuid 854a5f1d-f753-4344-adcf-72e6e3c8bb33)) + (pin "17" (uuid 5d39223e-ce0b-47ba-80d3-f35cbbb9a57a)) + (pin "18" (uuid 3845d6ba-0f2f-4c84-baf7-6ff321f758b3)) + (pin "19" (uuid b51faa6c-afdd-44cd-aea4-65e74f48163f)) + (pin "20" (uuid cf6fb875-e73b-4820-be09-4865f7304f10)) + (pin "21" (uuid 1fbaab7c-cf8e-4c58-b006-45f7ef418153)) + (pin "22" (uuid e49df1b0-bf8a-4b78-9982-cbc4c61a204a)) + (pin "23" (uuid 44f8199e-f48f-41be-8cb9-ae0abfa6d54e)) + (pin "24" (uuid 7cdb0784-1c25-4368-834a-68304f0b6cbe)) + (pin "25" (uuid e552d09b-b26e-4873-ba15-331a4dd0c1cb)) + (pin "26" (uuid 29598cc5-dce9-46c1-b6f1-16a0b6aeba25)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 162.56 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ddc05f51-bfeb-4f23-bf34-4ea9f2630656) + (property "Reference" "U25" (id 0) (at 162.56 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 162.56 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8d464110-62d0-47a4-9074-9fff5b43e8ff)) + (pin "2" (uuid d34248dc-619b-4c7e-ba4c-4bd03ca82444)) + (pin "3" (uuid 4bb2e372-1433-462a-9b65-685047ee4bb6)) + ) + + (symbol (lib_id "eSim_Digital:d_nor") (at 213.36 71.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e0f5c84c-bab5-4e75-b11f-165a1c36cad9) + (property "Reference" "U30" (id 0) (at 213.36 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nor" (id 1) (at 213.36 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 00385835-0558-4111-9ca8-206902a45520)) + (pin "2" (uuid a8756e06-f60a-4720-8847-b7784bc8788a)) + (pin "3" (uuid 7c51c4f4-cb89-4d46-858c-3e3f759c34ab)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e779fa32-3b2b-4ca0-84c3-1ab80a93a6bd) + (property "Reference" "U1" (id 0) (at 60.325 52.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 54.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 75a3c786-fb92-424b-a775-3798ba15f112)) + (pin "2" (uuid b13ed1f1-0b26-46d5-a6dd-976eb860afdd)) + (pin "3" (uuid 161a2bc6-1bc7-4fd0-afd3-3216354b5161)) + (pin "4" (uuid 1da42e13-5444-4ad2-84f8-f93b2120f5f3)) + (pin "5" (uuid b998fb30-f510-4b30-9133-e18b97d2e191)) + (pin "6" (uuid f1bbe398-5f5e-401f-9baa-77caee246e85)) + (pin "7" (uuid 81e62770-0542-4e1c-bfcc-2638a011ccf9)) + (pin "8" (uuid 5a68cbf8-9c3a-4888-9e4a-1b21183e520c)) + (pin "9" (uuid 51669eb2-9084-417c-81a9-cd54018e1bc1)) + (pin "10" (uuid 4c3ef596-a4c0-4425-a306-10ad918cabb1)) + (pin "11" (uuid 35f224db-2684-429c-b67f-022cee2cbc3b)) + (pin "12" (uuid 0bd9a5eb-fd00-4d2d-96ca-6135add92002)) + (pin "13" (uuid 28a8e035-f621-4e67-ab14-366d2a3c478e)) + (pin "14" (uuid 2587eb7f-6095-4334-b1fb-86214098ffce)) + (pin "15" (uuid 12091421-06a7-41ff-b4de-ae9a16f91787)) + (pin "16" (uuid f89f6b06-50a9-4e52-bf30-543a41c54490)) + (pin "17" (uuid 6ef528ad-3b52-4cc5-9cbf-d8e5f38e8747)) + (pin "18" (uuid 96872d10-fc1f-4a0e-851a-5de2aecb133c)) + (pin "19" (uuid d7c7ef55-63af-4aae-b44d-e70417303af7)) + (pin "20" (uuid 9ee5b19b-e390-4c65-9b79-6e423e430a71)) + (pin "21" (uuid 7c5284c3-a3df-4791-a0d9-310c64767f35)) + (pin "22" (uuid 14353b5e-e7d8-4b3d-adf5-e90e970eb7df)) + (pin "23" (uuid 323845fc-448e-4c4b-83c8-44182e01745c)) + (pin "24" (uuid e43361e4-3e24-4e57-9ba0-5cbec89853e1)) + (pin "25" (uuid 2bdbaf0a-1581-4b15-adcf-0d337eda850b)) + (pin "26" (uuid 54c4bec8-7a7f-42eb-a4b8-4155a3e7740b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 133.35 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e780d5f8-c147-4901-9a0f-46ace8e13b86) + (property "Reference" "U1" (id 0) (at 60.325 128.27 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 130.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8d4ae6f2-c2b6-498a-ab5a-2c23b39dd83c)) + (pin "2" (uuid 0d79dbb9-09e5-43df-8aca-d060107695e0)) + (pin "3" (uuid a1f53420-2127-4db7-b159-6159a4e09da5)) + (pin "4" (uuid e8763176-f6be-47f3-9ce9-3245f612c5d2)) + (pin "5" (uuid 0709abf5-1db8-4f5f-a00b-a3fd892ddb93)) + (pin "6" (uuid adc752c1-4959-4402-9bd6-cda98ca32f46)) + (pin "7" (uuid a805054f-eb43-4d77-a847-c5c6fdddd705)) + (pin "8" (uuid 18f9d4eb-7b37-4334-9281-4d447344f1b6)) + (pin "9" (uuid 3b89137c-bcd0-49e1-81fc-51c1269d046e)) + (pin "10" (uuid 5f393940-245b-45ac-8d68-56d09b610d68)) + (pin "11" (uuid f26e73fe-e9d8-4b93-aaf1-ffc00bcf4f1e)) + (pin "12" (uuid f904d273-3da4-416d-a483-80c22f73125b)) + (pin "13" (uuid 5462f8a1-ffbb-4957-b14d-f2d3e978a5da)) + (pin "14" (uuid 55546970-fd48-48b4-9831-f8188eb27c48)) + (pin "15" (uuid 35d94851-cc97-4c28-a7b7-668df74d88cb)) + (pin "16" (uuid ebfa7fa3-1490-44e4-b280-9f0889faad6d)) + (pin "17" (uuid a0a62f74-5c79-4d0d-ba98-44294ffd1db7)) + (pin "18" (uuid 95418371-733c-42ba-8a6a-e55293f01040)) + (pin "19" (uuid 83784d50-2cb8-49dc-8864-b10b50fa5795)) + (pin "20" (uuid 07d103ed-2641-4fd5-9e55-443b70ffd6df)) + (pin "21" (uuid 4056bd39-1d23-4b0c-a99c-5bedc72bf12d)) + (pin "22" (uuid fce8e86e-633d-449a-af24-28e874f05448)) + (pin "23" (uuid 7e829ebc-9205-40f6-b3dd-d2009ade300c)) + (pin "24" (uuid f69f6641-e481-45f3-9fcd-cc06aae592a2)) + (pin "25" (uuid b2588e31-afb1-4f28-aa3e-56f4816da7a0)) + (pin "26" (uuid 79bd2939-88ee-4cab-82f7-f42d184737e2)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 303.53 69.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f43cc410-e68f-446f-a9f4-9bbbf09e69ba) + (property "Reference" "X1" (id 0) (at 305.435 60.96 0)) + (property "Value" "TRISTATE" (id 1) (at 305.435 63.5 0)) + (property "Footprint" "" (id 2) (at 303.53 69.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 303.53 69.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c225e01e-bba9-46ad-9036-3eb48384c026)) + (pin "2" (uuid 30f08642-b06e-4e78-aea5-8204769ce389)) + (pin "2" (uuid 30f08642-b06e-4e78-aea5-8204769ce389)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 87.63 234.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f5e81da4-c628-459d-9663-6f99aba3cc56) + (property "Reference" "U19" (id 0) (at 89.535 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 89.535 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 519571ac-7eaf-4855-80a4-aed2d39e0d77)) + (pin "2" (uuid 4ebe5f43-51d9-4c34-b911-b0a188367274)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 107.95 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f63f3e6a-08d5-47ea-8e89-513cec652a99) + (property "Reference" "U1" (id 0) (at 60.325 102.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 105.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c2b91e2-51f1-4225-9b95-3fa3015e7a39)) + (pin "2" (uuid 36919b33-230d-4ed4-a37c-d970e26e2bb9)) + (pin "3" (uuid 216fab54-b370-4d31-ba8f-cf35816f39ee)) + (pin "4" (uuid 1751bc31-3eda-4267-a526-4f88f78ef34f)) + (pin "5" (uuid 1bbc3412-cf27-451f-a66d-c394ddab80db)) + (pin "6" (uuid 72ccfcac-39a0-4066-9967-89eac605e452)) + (pin "7" (uuid 48c8e882-5b3a-4742-95cf-3bc7e15ccf3d)) + (pin "8" (uuid f90b70b8-815e-4397-aad4-dd51d151b8dc)) + (pin "9" (uuid 9555bbbd-1843-4af7-b7bb-e596b284dee6)) + (pin "10" (uuid 862e734b-68aa-45e5-a944-f29ec7bf910e)) + (pin "11" (uuid 2013893f-dadb-410c-8015-c0b3efe009b4)) + (pin "12" (uuid b0cbdd73-5a8d-453c-a9a4-e09d9724fb30)) + (pin "13" (uuid f409cac4-c387-4fca-bca7-fb8865929ac0)) + (pin "14" (uuid 273634a5-abbf-41ea-9dd9-6cff4d6df95f)) + (pin "15" (uuid 556e929b-d363-469f-a2b6-4bb9702bcdd5)) + (pin "16" (uuid 52d4bb62-eb0e-4bdd-ae5e-40938df39bcc)) + (pin "17" (uuid 7d8e0daf-8a86-49dd-81ee-a21e74f1e367)) + (pin "18" (uuid 2ecf5e3c-b2e7-4fe6-8d12-453a7d1d5b6b)) + (pin "19" (uuid 478e8e0a-ea01-45f6-b311-a40e92862e83)) + (pin "20" (uuid e3955558-4a6a-4b1f-9264-3c3fbf0c4c41)) + (pin "21" (uuid 153af2c6-e903-4d3f-a386-b92c6f60a2c3)) + (pin "22" (uuid e4b60d89-eb6c-4a2d-81c7-e21f6cbf32fc)) + (pin "23" (uuid bd4c70d8-9c9c-445b-ab19-fefb99bdd08a)) + (pin "24" (uuid d91bbf1c-286c-46e7-b77e-53426d61eab5)) + (pin "25" (uuid 19023ba6-b3d9-4868-a4fc-e946610bb559)) + (pin "26" (uuid 7de1534f-618b-4621-b5ed-dc8bf70660fb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 162.56 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f84464ea-70c3-4fdf-b2f4-12bdda22a529) + (property "Reference" "U22" (id 0) (at 162.56 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 162.56 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d22375f5-943a-4534-83fe-30941ab0000e)) + (pin "2" (uuid e84f299c-b72e-4012-a1a2-a8cf6c02554c)) + (pin "3" (uuid cbbbe295-233a-4242-bedb-410980e85300)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 330.2 222.25 0) (mirror y) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fa73a95d-f00b-417c-8f92-851d7aa5f93e) + (property "Reference" "U1" (id 0) (at 334.01 221.615 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 334.01 224.155 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 330.2 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 330.2 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8fecaa3a-b30a-402e-abb5-730cdf524a8d)) + (pin "2" (uuid 62658c76-ebd0-42ab-a00f-490deed92eba)) + (pin "3" (uuid 9477e011-2cd2-4305-a8fc-28af8bcfef70)) + (pin "4" (uuid 65dea246-82bb-4f5b-936e-b261ede0cb10)) + (pin "5" (uuid d875aec8-4f1d-47e0-9933-bad8590776a3)) + (pin "6" (uuid f3059047-a251-4c49-a224-aa14ce0cf9ef)) + (pin "7" (uuid 96de4a2c-74bc-4453-82a3-734c59be31a2)) + (pin "8" (uuid 8cc10be8-b9e5-4cc9-b2a1-935b6f3bdab5)) + (pin "9" (uuid 243deeae-5300-414b-b854-94849315b897)) + (pin "10" (uuid c92103ea-db6a-45c0-b265-ff17d7311839)) + (pin "11" (uuid 6e0b5500-56b2-4d07-a174-b96f34ab79e2)) + (pin "12" (uuid 1ed434f5-78c5-4bc6-ad5a-65cb92a7d2df)) + (pin "13" (uuid 4d369875-6710-4a1a-8df3-fe3782ed277c)) + (pin "14" (uuid 85acfb7b-c548-4d64-9c51-3265585ef18d)) + (pin "15" (uuid 6494f41b-ca59-4ce9-a36b-a95a96bcdc31)) + (pin "16" (uuid 2f68beaa-fea8-43fc-a751-e7f22e2cbe31)) + (pin "17" (uuid 92c3c95f-4790-4bad-ab4c-186270b2afe6)) + (pin "18" (uuid 1c1c71be-76f7-466e-821c-f708e92005f2)) + (pin "19" (uuid 75b032af-e3ea-457e-a5ce-138528f0af98)) + (pin "20" (uuid 21cbc438-ddc1-4d66-9743-ed881dbc359e)) + (pin "21" (uuid 10be3ab1-e609-48f7-9989-0c1bf60d874b)) + (pin "22" (uuid 419f58f2-3c0c-45b9-8af0-70d2b1c98cc7)) + (pin "23" (uuid f99813a6-2aa0-478a-9c4a-d09ab63cada4)) + (pin "24" (uuid 0ef96b9e-da41-4232-907d-3f5ea8da4d23)) + (pin "25" (uuid fb771853-5b96-44d7-b149-5bb35a48ec56)) + (pin "26" (uuid 72d7adc4-bff7-4bd1-a70f-a58794351ee0)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 87.63 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fd75017b-0e25-4927-9f1e-3bda9cc1f6ea) + (property "Reference" "U16" (id 0) (at 89.535 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 89.535 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 415cfe8b-984b-4e59-9f60-398cf2688ef1)) + (pin "2" (uuid b97ba5fd-f339-404c-9f02-57f433ec8d26)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/e779fa32-3b2b-4ca0-84c3-1ab80a93a6bd" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/0b3f0098-f17f-4c06-a84d-b68aa5189d32" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/f63f3e6a-08d5-47ea-8e89-513cec652a99" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/e780d5f8-c147-4901-9a0f-46ace8e13b86" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/a1d48f78-252c-4fe6-bfd4-f5150101f09b" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/38238b26-2fb1-410e-8e6b-425588b8434e" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/2e4d87f4-3a00-4b25-bb3a-4514b0916d0c" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/ba496926-e247-49b2-8c6b-a68633a05efb" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/9e2963ef-ba7c-4f0a-9b7c-dc1e476fd8da" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/452901fe-2a1b-4897-8d4a-7be4148dc3e5" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/d3eeb203-9886-4e40-87a1-5d757fddabe6" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/6c7645e9-1f54-4850-9aa7-2b922e7b744c" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/72937f48-e6ff-4267-a6f1-fdfdccd1d21f" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/fa73a95d-f00b-417c-8f92-851d7aa5f93e" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/1132b1a0-2f6f-4502-b01e-7182ae0d7568" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/74bfc9da-3e42-46f9-9525-e834cf6ccf3d" + (reference "U12") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/a34e2e3f-ba1c-457e-b541-ff3578d77ad1" + (reference "U13") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/4d66140b-1ff0-41aa-b1b9-8be230639a67" + (reference "U14") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/525fca60-b555-4134-b552-61cdb56a92c5" + (reference "U15") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/fd75017b-0e25-4927-9f1e-3bda9cc1f6ea" + (reference "U16") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/4910337b-074f-4cda-9e72-d4fbe28df007" + (reference "U17") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/c167c006-c2be-49b9-889b-b2c9864c1c81" + (reference "U18") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/f5e81da4-c628-459d-9663-6f99aba3cc56" + (reference "U19") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/23ea2a60-541d-4a8c-b093-93a596ad2f87" + (reference "U20") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/ab6181b6-75a3-437a-a217-fb39dc1d8d82" + (reference "U21") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f84464ea-70c3-4fdf-b2f4-12bdda22a529" + (reference "U22") (unit 1) (value "d_and") (footprint "") + ) + (path "/cc21ebfe-b18b-41ae-baf0-8863cf2456ba" + (reference "U23") (unit 1) (value "d_and") (footprint "") + ) + (path "/5001db2a-acc2-44e9-9bbd-634e0f175222" + (reference "U24") (unit 1) (value "d_and") (footprint "") + ) + (path "/ddc05f51-bfeb-4f23-bf34-4ea9f2630656" + (reference "U25") (unit 1) (value "d_and") (footprint "") + ) + (path "/34c190eb-88f5-47d7-9f46-8e0c3f27673b" + (reference "U26") (unit 1) (value "d_and") (footprint "") + ) + (path "/babe8393-5c5f-4d83-8aa2-112a43c6358a" + (reference "U27") (unit 1) (value "d_and") (footprint "") + ) + (path "/338f8b37-7a19-4e20-8e74-6376ba1bafb8" + (reference "U28") (unit 1) (value "d_and") (footprint "") + ) + (path "/0d3f5aaa-131a-40b9-aabc-c53637bcc6d7" + (reference "U29") (unit 1) (value "d_and") (footprint "") + ) + (path "/e0f5c84c-bab5-4e75-b11f-165a1c36cad9" + (reference "U30") (unit 1) (value "d_nor") (footprint "") + ) + (path "/096409f5-aba1-424e-b0bc-52606232902f" + (reference "U31") (unit 1) (value "d_nor") (footprint "") + ) + (path "/5181d830-a66e-42ad-9d6c-f634d9252817" + (reference "U32") (unit 1) (value "d_nor") (footprint "") + ) + (path "/b72badde-3185-460d-9847-f7c5f9e4c33f" + (reference "U33") (unit 1) (value "d_nor") (footprint "") + ) + (path "/f43cc410-e68f-446f-a9f4-9bbbf09e69ba" + (reference "X1") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/725476cb-8d5f-4941-95ba-e8882cad8a05" + (reference "X2") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/ba270456-2ea1-46e7-b400-b92263182397" + (reference "X3") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/3981a79a-2d47-40ab-86a3-7d06815a0db7" + (reference "X4") (unit 1) (value "TRISTATE") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.sub new file mode 100644 index 000000000..a41487d53 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258.sub @@ -0,0 +1,103 @@ +* Subcircuit 74HC258 +.subckt 74HC258 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ +.title kicad schematic +.include TRISTATE.sub +* u13 net-_u1-pad2_ net-_u13-pad2_ d_buffer +* u12 net-_u1-pad1_ net-_u12-pad2_ d_buffer +* u22 net-_u12-pad2_ net-_u11-pad2_ net-_u22-pad3_ d_and +* u24 net-_u14-pad2_ net-_u11-pad2_ net-_u24-pad3_ d_and +* u23 net-_u13-pad2_ net-_u21-pad2_ net-_u23-pad3_ d_and +* u15 net-_u1-pad4_ net-_u15-pad2_ d_buffer +* u14 net-_u1-pad3_ net-_u14-pad2_ d_buffer +* u25 net-_u15-pad2_ net-_u21-pad2_ net-_u25-pad3_ d_and +* u26 net-_u16-pad2_ net-_u11-pad2_ net-_u26-pad3_ d_and +x1 net-_u30-pad3_ net-_u20-pad2_ net-_u1-pad11_ TRISTATE +* u30 net-_u22-pad3_ net-_u23-pad3_ net-_u30-pad3_ d_nor +* u31 net-_u24-pad3_ net-_u25-pad3_ net-_u31-pad3_ d_nor +x4 net-_u33-pad3_ net-_u20-pad2_ net-_u1-pad14_ TRISTATE +x3 net-_u32-pad3_ net-_u20-pad2_ net-_u1-pad13_ TRISTATE +x2 net-_u31-pad3_ net-_u20-pad2_ net-_u1-pad12_ TRISTATE +* u27 net-_u17-pad2_ net-_u21-pad2_ net-_u27-pad3_ d_and +* u28 net-_u18-pad2_ net-_u11-pad2_ net-_u28-pad3_ d_and +* u32 net-_u26-pad3_ net-_u27-pad3_ net-_u32-pad3_ d_nor +* u29 net-_u19-pad2_ net-_u21-pad2_ net-_u29-pad3_ d_and +* u33 net-_u28-pad3_ net-_u29-pad3_ net-_u33-pad3_ d_nor +* u21 net-_u11-pad2_ net-_u21-pad2_ d_inverter +* u11 net-_u1-pad10_ net-_u11-pad2_ d_inverter +* u19 net-_u1-pad8_ net-_u19-pad2_ d_buffer +* u20 net-_u1-pad9_ net-_u20-pad2_ d_buffer +* u17 net-_u1-pad6_ net-_u17-pad2_ d_buffer +* u16 net-_u1-pad5_ net-_u16-pad2_ d_buffer +* u18 net-_u1-pad7_ net-_u18-pad2_ d_buffer +a1 net-_u1-pad2_ net-_u13-pad2_ u13 +a2 net-_u1-pad1_ net-_u12-pad2_ u12 +a3 [net-_u12-pad2_ net-_u11-pad2_ ] net-_u22-pad3_ u22 +a4 [net-_u14-pad2_ net-_u11-pad2_ ] net-_u24-pad3_ u24 +a5 [net-_u13-pad2_ net-_u21-pad2_ ] net-_u23-pad3_ u23 +a6 net-_u1-pad4_ net-_u15-pad2_ u15 +a7 net-_u1-pad3_ net-_u14-pad2_ u14 +a8 [net-_u15-pad2_ net-_u21-pad2_ ] net-_u25-pad3_ u25 +a9 [net-_u16-pad2_ net-_u11-pad2_ ] net-_u26-pad3_ u26 +a10 [net-_u22-pad3_ net-_u23-pad3_ ] net-_u30-pad3_ u30 +a11 [net-_u24-pad3_ net-_u25-pad3_ ] net-_u31-pad3_ u31 +a12 [net-_u17-pad2_ net-_u21-pad2_ ] net-_u27-pad3_ u27 +a13 [net-_u18-pad2_ net-_u11-pad2_ ] net-_u28-pad3_ u28 +a14 [net-_u26-pad3_ net-_u27-pad3_ ] net-_u32-pad3_ u32 +a15 [net-_u19-pad2_ net-_u21-pad2_ ] net-_u29-pad3_ u29 +a16 [net-_u28-pad3_ net-_u29-pad3_ ] net-_u33-pad3_ u33 +a17 net-_u11-pad2_ net-_u21-pad2_ u21 +a18 net-_u1-pad10_ net-_u11-pad2_ u11 +a19 net-_u1-pad8_ net-_u19-pad2_ u19 +a20 net-_u1-pad9_ net-_u20-pad2_ u20 +a21 net-_u1-pad6_ net-_u17-pad2_ u17 +a22 net-_u1-pad5_ net-_u16-pad2_ u16 +a23 net-_u1-pad7_ net-_u18-pad2_ u18 +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u13 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u12 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u15 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u14 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u30 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u31 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u32 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u29 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, Ngspice Name: d_nor +.model u33 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u19 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u20 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u17 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u16 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u18 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends 74HC258 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258_Previous_Values.xml new file mode 100644 index 000000000..f08348a05 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/74HC258_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andd_andd_nord_nord_andd_andd_andd_andd_nord_nord_bufferd_bufferd_bufferd_bufferd_bufferd_bufferd_inverterd_bufferd_bufferd_bufferd_inverterd_andC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.cir new file mode 100644 index 000000000..caac1cdde --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.cir @@ -0,0 +1,10 @@ +.title KiCad schematic +v1 Net-_U2-Pad1_ GND DC +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ PORT +U5 Net-_U3-Pad2_ Net-_U2-Pad2_ Net-_U5-Pad3_ d_and +U4 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U4-Pad3_ d_and +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ adc_bridge_1 +U3 Net-_U1-Pad1_ Net-_U3-Pad2_ d_inverter +U7 Net-_U6-Pad3_ Net-_U1-Pad3_ d_buffer +U6 Net-_U4-Pad3_ Net-_U5-Pad3_ Net-_U6-Pad3_ d_or +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.cir.out new file mode 100644 index 000000000..ed8bfe9ca --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.cir.out @@ -0,0 +1,37 @@ +.title kicad schematic + +v1 net-_u2-pad1_ gnd dc 0 +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ port +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.kicad_sch new file mode 100644 index 000000000..5238469a9 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.kicad_sch @@ -0,0 +1,926 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 6fc943a8-97d8-4111-93e9-49bb4a164911) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "DC" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DC_0_1" + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DC_1_1" + (pin power_out line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 111.76 93.98) (diameter 0) (color 0 0 0 0) + (uuid 14ad2087-2eee-431b-8842-3056e26a34e8) + ) + + (wire (pts (xy 111.76 93.98) (xy 109.22 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 163f5430-84cc-4a80-8e5f-6f2a5f27f6b7) + ) + (wire (pts (xy 135.89 109.22) (xy 134.62 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26a2e51d-f8c9-4603-977a-ec3441476833) + ) + (wire (pts (xy 116.84 95.25) (xy 116.84 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31a0d277-7413-4301-8b23-2d4c654bd540) + ) + (wire (pts (xy 111.76 69.85) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 454df123-e845-4d03-8c39-7a0fc517b763) + ) + (wire (pts (xy 111.76 69.85) (xy 138.43 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56f10ce4-3616-4390-9a32-7b62234bf80f) + ) + (wire (pts (xy 227.33 83.82) (xy 229.87 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58a0316b-fdad-40e3-96f7-cb28e4b5690b) + ) + (wire (pts (xy 114.3 72.39) (xy 138.43 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a1f4464-c616-4a33-82f9-8dd8ebfb0a8c) + ) + (wire (pts (xy 102.87 109.22) (xy 105.41 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a2a2aba-beae-4a0a-9586-601cd854cbd0) + ) + (wire (pts (xy 161.29 96.52) (xy 161.29 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e0ecf4a-5933-465a-9bc3-1b74f4efaf29) + ) + (wire (pts (xy 114.3 96.52) (xy 114.3 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b403cfa-1a57-4ee1-b716-cf37e8d9a005) + ) + (wire (pts (xy 259.08 83.82) (xy 261.62 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dbc0d1f-7850-4943-8d03-441ae7413488) + ) + (wire (pts (xy 198.12 83.82) (xy 194.31 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81e2c941-f56c-4b6a-b07e-98f1f9c7c54a) + ) + (wire (pts (xy 109.22 96.52) (xy 114.3 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92b18b87-08f1-4557-b338-e1b8d2e6c64d) + ) + (wire (pts (xy 171.45 82.55) (xy 161.29 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5e9c456-8d3d-429d-9282-26751c5dbd39) + ) + (wire (pts (xy 135.89 97.79) (xy 135.89 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1b4e869-1d4c-4bf4-a93c-d9d36305f47d) + ) + (wire (pts (xy 116.84 93.98) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c61e6996-3647-45c1-ad4c-4c25bf5a03b5) + ) + (wire (pts (xy 135.89 97.79) (xy 138.43 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4d7b8aa-b9bc-44c8-8cb9-e9095b546025) + ) + (wire (pts (xy 161.29 85.09) (xy 171.45 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d790d0d5-c2f2-4059-9cd2-798d5e59687f) + ) + (wire (pts (xy 132.08 95.25) (xy 138.43 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea77a532-5894-4db8-ae63-80cc28fe33af) + ) + (wire (pts (xy 161.29 82.55) (xy 161.29 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edb5b706-046a-4168-bc90-2be18d66c339) + ) + + (symbol (lib_id "eSim_Sources:DC") (at 91.44 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28d3271f-0b04-4869-b592-25b6a93cf6fc) + (property "Reference" "v1" (id 0) (at 94.615 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "DC" (id 1) (at 90.805 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 86.995 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 91.44 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c6852dc-8445-4298-a6db-0adfbc24ef15)) + (pin "2" (uuid c3c580f8-8d30-4cfb-8027-0cf8425f5205)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 102.87 96.52 0) (mirror x) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38309441-1575-4a2b-944e-764f9fe4894f) + (property "Reference" "U1" (id 0) (at 99.06 95.885 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 99.06 98.425 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fabc537-ea69-46a4-ba6c-0ec84d4cec14)) + (pin "2" (uuid d8dd5360-1679-4365-8ef5-1eef35533f7e)) + (pin "3" (uuid d881c90a-2dac-40c2-9a6f-52da84d0cae8)) + (pin "4" (uuid 0f3bf5d2-8a1b-4ec4-9c42-3856da9b6cb0)) + (pin "5" (uuid 1d897643-dd4b-4941-8747-67b9f05a55de)) + (pin "6" (uuid 6a7e5ae9-bd32-437a-a8c1-eca8831711e2)) + (pin "7" (uuid de4bacfe-1d00-410c-aa1a-d3a2b35b450a)) + (pin "8" (uuid e066b15e-8a93-457b-8a8b-a3d5ae1d5d03)) + (pin "9" (uuid c9c7f6cf-50b4-4096-8281-34b7facb581d)) + (pin "10" (uuid 18665738-4b00-4bba-82cf-e88f22b0471d)) + (pin "11" (uuid f3963046-8d96-4d91-81cd-d14d28544785)) + (pin "12" (uuid 70f92d44-4d8c-4eaf-b2a8-656224365c86)) + (pin "13" (uuid d1196a57-a14f-4b34-adb6-45247031a4d6)) + (pin "14" (uuid 9b7f82d9-2457-4e65-8df7-4e9ff22b39d7)) + (pin "15" (uuid b4c2b962-baaf-40a3-a6b2-1a50ac4da997)) + (pin "16" (uuid 6d7334c7-4e62-4f8b-b5dc-d4bb5287fa8f)) + (pin "17" (uuid abcda22c-abb5-4904-ad85-837b69cd1101)) + (pin "18" (uuid 3fcb2300-dd9e-4a9b-bf0c-2718d9ad6c03)) + (pin "19" (uuid b3a922e0-6519-4bad-93a6-ea37b22bba7e)) + (pin "20" (uuid 472ab7fc-b431-423c-825b-85bdec91808a)) + (pin "21" (uuid 3fd15d5b-3f55-4ec7-bc49-baf57841d2a9)) + (pin "22" (uuid 6bea1ad1-c0e8-4ebb-8246-55cea9c4ca6a)) + (pin "23" (uuid 1c7c7456-fa8f-42ad-ac95-fc738203a6ce)) + (pin "24" (uuid 86cab9cb-b4c1-4e09-825a-132e0bd48750)) + (pin "25" (uuid 0d657127-0db9-450f-82e8-9ffd8a63319a)) + (pin "26" (uuid da4babff-0abb-4869-8346-2672ab1f0017)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 182.88 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48d85cf5-29c1-4f7d-a57e-7b0b69dda574) + (property "Reference" "U6" (id 0) (at 182.88 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 182.88 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4803f9b9-3d9a-4a0e-99e6-0ac59d11de26)) + (pin "2" (uuid 3ce86b27-8c78-4024-9902-7dcccacd7b73)) + (pin "3" (uuid b980b222-0af3-4a60-a3f8-ff1fce4d8999)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 210.82 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48f857eb-4e87-4806-ba4b-646581a37ea2) + (property "Reference" "U7" (id 0) (at 212.725 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 212.725 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f271f174-3439-48da-b056-89a32e36b380)) + (pin "2" (uuid d19fcac4-704f-4df1-b54e-8d4ccf233d8c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 267.97 83.82 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f87ee9d-1a36-4aec-bb00-f8fc24fa2328) + (property "Reference" "U1" (id 0) (at 271.78 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 271.78 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 267.97 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a9cf5e93-05cb-4cbc-8550-f7fe9d78069d)) + (pin "2" (uuid da25feda-dd50-4d21-9670-7c845cc6a349)) + (pin "3" (uuid 44fc7a64-ebda-4f38-92ba-88276337a604)) + (pin "4" (uuid f92e041c-8c0c-48ee-b591-06ec70abe4cd)) + (pin "5" (uuid 7932597d-04dc-4353-8129-ab3aeec8fc84)) + (pin "6" (uuid da1dded5-6865-4682-a456-828706448bef)) + (pin "7" (uuid 6d49815a-f6f8-4fcf-8ba2-2cdc6311c549)) + (pin "8" (uuid 347a1f5f-3cda-4313-99d8-c2a289db132e)) + (pin "9" (uuid 768f90fa-9460-4bb6-97a4-ab394ff229bc)) + (pin "10" (uuid b4cf2cf5-38e4-4e66-a173-349f6c368102)) + (pin "11" (uuid 99e36901-663c-4c66-abe5-eb98576c8789)) + (pin "12" (uuid f2c598ab-bf2a-4800-abb6-3e0fea1f2649)) + (pin "13" (uuid 92a688aa-be93-4c70-847f-be5bfd696262)) + (pin "14" (uuid cd155f93-a81a-48e5-8ddc-57c97df60bae)) + (pin "15" (uuid c4ffe564-7e2e-4d23-99cc-35da40290654)) + (pin "16" (uuid 92ad5362-52f7-4a61-b99d-5e125b5e2083)) + (pin "17" (uuid c86cdd0e-f764-496b-a46b-cd576f890c42)) + (pin "18" (uuid 5d38d459-46e9-4284-84d9-d584d0419dd3)) + (pin "19" (uuid b102cd55-86e0-4ff3-9425-7b0ac613cff0)) + (pin "20" (uuid 82c84431-fd8e-4769-aebb-d75d6afdd9d4)) + (pin "21" (uuid 2d8c3796-9040-422f-bf14-4983d56cc3c4)) + (pin "22" (uuid f4a7ff4b-3170-43e0-ad8d-52a0336464b2)) + (pin "23" (uuid ceb16e80-ae7a-4059-a457-76f88bf107b2)) + (pin "24" (uuid 843c46f2-cf76-4ae5-ba92-c24c18f88cb3)) + (pin "25" (uuid 25572e1a-67c2-4d60-8112-405d60eff7ba)) + (pin "26" (uuid 46a322ed-4e54-4956-a123-a3da09b63880)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1c9e468-be3e-44dd-bf35-9066d1a0e3d2) + (property "Reference" "U5" (id 0) (at 149.86 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4124cb3a-6b00-4e90-80b3-17f9788d220b)) + (pin "2" (uuid d7844aea-e454-4b8b-a5d3-58c650c0d3f3)) + (pin "3" (uuid d2a4f899-5bc4-49dc-9c0a-f82fbfac1c00)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b383818c-4c81-4888-8c80-f39a0b1bf9fb) + (property "Reference" "U4" (id 0) (at 149.86 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6581f4bd-969a-4a52-bf34-34d6e24a433a)) + (pin "2" (uuid 15113e0d-971e-4b81-8359-540fdab0e1aa)) + (pin "3" (uuid c4c6c493-2ab2-4f2e-a773-4f891eead381)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 109.22 87.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba26b670-cee4-4e62-aace-e814c833fd02) + (property "Reference" "U1" (id 0) (at 111.76 87.63 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 111.76 90.17 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 63080624-0ec0-4ae5-89ef-af345042af17)) + (pin "2" (uuid 99ceb699-2891-48db-9745-cb55b3645be8)) + (pin "3" (uuid 6657d604-f5bd-489d-af28-4f3f7b46b567)) + (pin "4" (uuid 0915377e-fef2-4b60-ba68-25802610ea15)) + (pin "5" (uuid 120f4c38-18f2-4e5d-963c-afdac9a3a876)) + (pin "6" (uuid 809be297-aded-4798-bd9f-577c6dfd6178)) + (pin "7" (uuid 39773969-16bb-4965-a4f9-2e82476ccbd7)) + (pin "8" (uuid 1dae0184-17bd-4a01-a90a-40cdefca5d3f)) + (pin "9" (uuid 52f50196-1ee5-46bf-8bf8-f2385c5a69fe)) + (pin "10" (uuid bb9b7048-b168-42f6-bfc2-f4b4aa0bbd9a)) + (pin "11" (uuid b187e2ab-c334-4152-b8c0-3b5e498907ff)) + (pin "12" (uuid 1c9bdb4a-d154-47b3-8b81-de451353fde3)) + (pin "13" (uuid 7eaf8d8b-7fb0-4c9c-944c-b00e3826fc50)) + (pin "14" (uuid 52f5e559-0d9d-4452-a2e2-27d8999c2139)) + (pin "15" (uuid a91512b6-3c7b-42db-9d52-25d4c9a79436)) + (pin "16" (uuid fa77a93f-a43d-49ea-aa29-648d3d6025bb)) + (pin "17" (uuid e8b1dd48-dc04-4c5d-81e4-3af1236fce17)) + (pin "18" (uuid de9c62bf-3c52-4227-9cd3-f4a1f283a2ba)) + (pin "19" (uuid 8bad02cb-7684-4e83-8678-5abc26d1a89a)) + (pin "20" (uuid a7eea872-efce-4e12-8da2-52b19ad6d380)) + (pin "21" (uuid f241a1ee-3551-4be9-92e4-97d1ebc38af8)) + (pin "22" (uuid 79bb6641-9713-4b40-8616-f9182ab9c079)) + (pin "23" (uuid a2bcac0d-12cb-4fad-b934-ba601f9ca54f)) + (pin "24" (uuid 8b968e16-97d5-44b3-8bdf-9a360f8fa18d)) + (pin "25" (uuid dd87e7a1-a6b3-4a50-abb8-a247d0e5c1be)) + (pin "26" (uuid 02d1ede5-5527-4efe-b251-abc0d57bcfec)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 120.65 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8483095-cae6-476c-bd77-f779e93a393e) + (property "Reference" "U2" (id 0) (at 120.015 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 120.015 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ea3cef5-47c4-4031-b109-073353e2f1a8)) + (pin "2" (uuid 8a6e56e6-64bc-44e0-9b1f-561b6ab4ef26)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 245.11 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da856a49-8d85-459f-9fdc-ead362122aeb) + (property "Reference" "U8" (id 0) (at 244.475 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 244.475 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 245.11 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 245.11 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 91b9c0f9-e0fc-4829-8d5b-d8f8057ee59c)) + (pin "2" (uuid 26a9d54d-43f3-4aa3-8ed9-712e8abd47e3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 124.46 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8d0de2d-4efb-48db-9053-78ac24343ec6) + (property "Reference" "U3" (id 0) (at 124.46 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 124.46 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f31cf58b-9a25-4938-b10d-4d0f096b69a8)) + (pin "2" (uuid 364c3335-2d15-43ce-8697-9d3c6e4d95e7)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 80.01 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb45b5f1-df6f-43ee-882f-46b8fbfe058f) + (property "Reference" "#PWR01" (id 0) (at 73.66 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 74.93 109.22 0)) + (property "Footprint" "" (id 2) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4533b25d-acec-4f28-966f-010cbada9d57)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/fb45b5f1-df6f-43ee-882f-46b8fbfe058f" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/ba26b670-cee4-4e62-aace-e814c833fd02" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/38309441-1575-4a2b-944e-764f9fe4894f" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/7f87ee9d-1a36-4aec-bb00-f8fc24fa2328" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/c8483095-cae6-476c-bd77-f779e93a393e" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/e8d0de2d-4efb-48db-9053-78ac24343ec6" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b383818c-4c81-4888-8c80-f39a0b1bf9fb" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/a1c9e468-be3e-44dd-bf35-9066d1a0e3d2" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/48d85cf5-29c1-4f7d-a57e-7b0b69dda574" + (reference "U6") (unit 1) (value "d_or") (footprint "") + ) + (path "/48f857eb-4e87-4806-ba4b-646581a37ea2" + (reference "U7") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/da856a49-8d85-459f-9fdc-ead362122aeb" + (reference "U8") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/28d3271f-0b04-4869-b592-25b6a93cf6fc" + (reference "v1") (unit 1) (value "DC") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.sub new file mode 100644 index 000000000..c75fb0786 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE.sub @@ -0,0 +1,31 @@ +* Subcircuit TRISTATE +.subckt TRISTATE net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ +.title kicad schematic +v1 net-_u2-pad1_ gnd dc 0 +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends TRISTATE \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE_Previous_Values.xml new file mode 100644 index 000000000..5ef3761ac --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/TRISTATE_Previous_Values.xml @@ -0,0 +1 @@ +dc0d_bufferd_ord_andd_andadc_bridged_inverterdac_bridgetruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/_autosave-74HC258.sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/_autosave-74HC258.sch new file mode 100644 index 000000000..24403e0d6 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/_autosave-74HC258.sch @@ -0,0 +1,622 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr User 17000 14937 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 3150 10350 +Connection ~ 4050 3450 +Connection ~ 4050 5450 +Connection ~ 4050 7450 +Connection ~ 4550 4450 +Connection ~ 4550 6450 +Connection ~ 4550 8450 +Connection ~ 8300 3950 +Connection ~ 8300 5950 +Connection ~ 8300 7950 +Wire Wire Line + 1550 1350 1900 1350 +Wire Wire Line + 1550 2350 1900 2350 +Wire Wire Line + 1550 3350 1900 3350 +Wire Wire Line + 1550 4350 1900 4350 +Wire Wire Line + 1550 5350 1900 5350 +Wire Wire Line + 1550 6350 1900 6350 +Wire Wire Line + 1550 7350 1900 7350 +Wire Wire Line + 1550 8350 1900 8350 +Wire Wire Line + 1550 9350 1900 9350 +Wire Wire Line + 1550 10350 1900 10350 +Wire Wire Line + 2500 10350 3150 10350 +Wire Wire Line + 3050 1350 4900 1350 +Wire Wire Line + 3050 2350 4900 2350 +Wire Wire Line + 3050 3350 4900 3350 +Wire Wire Line + 3050 4350 4900 4350 +Wire Wire Line + 3050 5350 4900 5350 +Wire Wire Line + 3050 6350 4900 6350 +Wire Wire Line + 3050 7350 4900 7350 +Wire Wire Line + 3050 8350 4900 8350 +Wire Wire Line + 3050 9350 8300 9350 +Wire Wire Line + 3150 9900 4050 9900 +Wire Wire Line + 3150 10350 3150 9900 +Wire Wire Line + 3150 10350 3400 10350 +Wire Wire Line + 4000 10350 4550 10350 +Wire Wire Line + 4050 1450 4050 3450 +Wire Wire Line + 4050 1450 4900 1450 +Wire Wire Line + 4050 3450 4050 5450 +Wire Wire Line + 4050 5450 4050 7450 +Wire Wire Line + 4050 7450 4050 9900 +Wire Wire Line + 4550 2450 4900 2450 +Wire Wire Line + 4550 4450 4550 2450 +Wire Wire Line + 4550 4450 4900 4450 +Wire Wire Line + 4550 6450 4550 4450 +Wire Wire Line + 4550 6450 4900 6450 +Wire Wire Line + 4550 8450 4550 6450 +Wire Wire Line + 4550 8450 4900 8450 +Wire Wire Line + 4550 10350 4550 8450 +Wire Wire Line + 4900 3450 4050 3450 +Wire Wire Line + 4900 5450 4050 5450 +Wire Wire Line + 4900 7450 4050 7450 +Wire Wire Line + 5800 2400 6400 2400 +Wire Wire Line + 5800 3400 6400 3400 +Wire Wire Line + 5800 6400 6400 6400 +Wire Wire Line + 5800 7400 6400 7400 +Wire Wire Line + 6400 1400 5800 1400 +Wire Wire Line + 6400 1800 6400 1400 +Wire Wire Line + 6400 1900 6400 2400 +Wire Wire Line + 6400 1900 6900 1900 +Wire Wire Line + 6400 3400 6400 3800 +Wire Wire Line + 6400 3800 6900 3800 +Wire Wire Line + 6400 3900 6400 4400 +Wire Wire Line + 6400 4400 5800 4400 +Wire Wire Line + 6400 5400 5800 5400 +Wire Wire Line + 6400 5800 6400 5400 +Wire Wire Line + 6400 5900 6400 6400 +Wire Wire Line + 6400 5900 6900 5900 +Wire Wire Line + 6400 7400 6400 7800 +Wire Wire Line + 6400 7800 6900 7800 +Wire Wire Line + 6400 7900 6400 8400 +Wire Wire Line + 6400 8400 5800 8400 +Wire Wire Line + 6900 1800 6400 1800 +Wire Wire Line + 6900 3900 6400 3900 +Wire Wire Line + 6900 5800 6400 5800 +Wire Wire Line + 6900 7900 6400 7900 +Wire Wire Line + 7800 1850 10500 1850 +Wire Wire Line + 7800 3850 10550 3850 +Wire Wire Line + 7800 5850 10550 5850 +Wire Wire Line + 7800 7850 10550 7850 +Wire Wire Line + 8300 1950 8300 3950 +Wire Wire Line + 8300 1950 10050 1950 +Wire Wire Line + 8300 3950 8300 5950 +Wire Wire Line + 8300 3950 10050 3950 +Wire Wire Line + 8300 5950 8300 7950 +Wire Wire Line + 8300 5950 10050 5950 +Wire Wire Line + 8300 7950 10050 7950 +Wire Wire Line + 8300 9350 8300 7950 +Wire Wire Line + 10050 2400 10050 1950 +Wire Wire Line + 10050 4450 10050 3950 +Wire Wire Line + 10050 6450 10050 5950 +Wire Wire Line + 10050 8450 10050 7950 +Wire Wire Line + 10900 2150 10900 2400 +Wire Wire Line + 10900 2400 10050 2400 +Wire Wire Line + 10950 4150 10950 4450 +Wire Wire Line + 10950 4450 10050 4450 +Wire Wire Line + 10950 6150 10950 6450 +Wire Wire Line + 10950 6450 10050 6450 +Wire Wire Line + 10950 8150 10950 8450 +Wire Wire Line + 10950 8450 10050 8450 +Wire Wire Line + 11650 1850 11350 1850 +Wire Wire Line + 11700 3850 11400 3850 +Wire Wire Line + 11700 5850 11400 5850 +Wire Wire Line + 11700 7850 11400 7850 +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1300 1350 +F 0 "U?" H 1325 1550 30 0000 C CNN +F 1 "PORT" H 1325 1450 30 0000 C CNN +F 2 "" H 1300 1350 60 0000 C CNN +F 3 "" H 1300 1350 60 0000 C CNN + 1 1300 1350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1300 2350 +F 0 "U?" H 1325 2550 30 0000 C CNN +F 1 "PORT" H 1325 2450 30 0000 C CNN +F 2 "" H 1300 2350 60 0000 C CNN +F 3 "" H 1300 2350 60 0000 C CNN + 1 1300 2350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1300 3350 +F 0 "U?" H 1325 3550 30 0000 C CNN +F 1 "PORT" H 1325 3450 30 0000 C CNN +F 2 "" H 1300 3350 60 0000 C CNN +F 3 "" H 1300 3350 60 0000 C CNN + 1 1300 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1300 4350 +F 0 "U?" H 1325 4550 30 0000 C CNN +F 1 "PORT" H 1325 4450 30 0000 C CNN +F 2 "" H 1300 4350 60 0000 C CNN +F 3 "" H 1300 4350 60 0000 C CNN + 1 1300 4350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1300 5350 +F 0 "U?" H 1325 5550 30 0000 C CNN +F 1 "PORT" H 1325 5450 30 0000 C CNN +F 2 "" H 1300 5350 60 0000 C CNN +F 3 "" H 1300 5350 60 0000 C CNN + 1 1300 5350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1300 6350 +F 0 "U?" H 1325 6550 30 0000 C CNN +F 1 "PORT" H 1325 6450 30 0000 C CNN +F 2 "" H 1300 6350 60 0000 C CNN +F 3 "" H 1300 6350 60 0000 C CNN + 1 1300 6350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1300 7350 +F 0 "U?" H 1325 7550 30 0000 C CNN +F 1 "PORT" H 1325 7450 30 0000 C CNN +F 2 "" H 1300 7350 60 0000 C CNN +F 3 "" H 1300 7350 60 0000 C CNN + 1 1300 7350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1300 8350 +F 0 "U?" H 1325 8550 30 0000 C CNN +F 1 "PORT" H 1325 8450 30 0000 C CNN +F 2 "" H 1300 8350 60 0000 C CNN +F 3 "" H 1300 8350 60 0000 C CNN + 1 1300 8350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1300 9350 +F 0 "U?" H 1325 9550 30 0000 C CNN +F 1 "PORT" H 1325 9450 30 0000 C CNN +F 2 "" H 1300 9350 60 0000 C CNN +F 3 "" H 1300 9350 60 0000 C CNN + 1 1300 9350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1300 10350 +F 0 "U?" H 1325 10550 30 0000 C CNN +F 1 "PORT" H 1325 10450 30 0000 C CNN +F 2 "" H 1300 10350 60 0000 C CNN +F 3 "" H 1300 10350 60 0000 C CNN + 1 1300 10350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 2200 10350 +F 0 "U?" H 2200 10600 60 0000 C CNN +F 1 "d_inverter" H 2200 10450 60 0000 C CNN +F 2 "" H 2250 10300 60 0000 C CNN +F 3 "" H 2250 10300 60 0000 C CNN + 1 2200 10350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 3700 10350 +F 0 "U?" H 3700 10600 60 0000 C CNN +F 1 "d_inverter" H 3700 10450 60 0000 C CNN +F 2 "" H 3750 10300 60 0000 C CNN +F 3 "" H 3750 10300 60 0000 C CNN + 1 3700 10350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 5350 1450 +F 0 "U?" H 5350 1800 60 0000 C CNN +F 1 "d_and" H 5350 1650 60 0000 C CNN +F 2 "" H 5350 1450 60 0000 C CNN +F 3 "" H 5350 1450 60 0000 C CNN + 1 5350 1450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 5350 2450 +F 0 "U?" H 5350 2800 60 0000 C CNN +F 1 "d_and" H 5350 2650 60 0000 C CNN +F 2 "" H 5350 2450 60 0000 C CNN +F 3 "" H 5350 2450 60 0000 C CNN + 1 5350 2450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 5350 3450 +F 0 "U?" H 5350 3800 60 0000 C CNN +F 1 "d_and" H 5350 3650 60 0000 C CNN +F 2 "" H 5350 3450 60 0000 C CNN +F 3 "" H 5350 3450 60 0000 C CNN + 1 5350 3450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 5350 4450 +F 0 "U?" H 5350 4800 60 0000 C CNN +F 1 "d_and" H 5350 4650 60 0000 C CNN +F 2 "" H 5350 4450 60 0000 C CNN +F 3 "" H 5350 4450 60 0000 C CNN + 1 5350 4450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 5350 5450 +F 0 "U?" H 5350 5800 60 0000 C CNN +F 1 "d_and" H 5350 5650 60 0000 C CNN +F 2 "" H 5350 5450 60 0000 C CNN +F 3 "" H 5350 5450 60 0000 C CNN + 1 5350 5450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 5350 6450 +F 0 "U?" H 5350 6800 60 0000 C CNN +F 1 "d_and" H 5350 6650 60 0000 C CNN +F 2 "" H 5350 6450 60 0000 C CNN +F 3 "" H 5350 6450 60 0000 C CNN + 1 5350 6450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 5350 7450 +F 0 "U?" H 5350 7800 60 0000 C CNN +F 1 "d_and" H 5350 7650 60 0000 C CNN +F 2 "" H 5350 7450 60 0000 C CNN +F 3 "" H 5350 7450 60 0000 C CNN + 1 5350 7450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 5350 8450 +F 0 "U?" H 5350 8800 60 0000 C CNN +F 1 "d_and" H 5350 8650 60 0000 C CNN +F 2 "" H 5350 8450 60 0000 C CNN +F 3 "" H 5350 8450 60 0000 C CNN + 1 5350 8450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nor U? +U 1 1 00000000 +P 7350 1900 +F 0 "U?" H 7350 2250 60 0000 C CNN +F 1 "d_nor" H 7350 2100 60 0000 C CNN +F 2 "" H 7350 1900 60 0000 C CNN +F 3 "" H 7350 1900 60 0000 C CNN + 1 7350 1900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nor U? +U 1 1 00000000 +P 7350 3900 +F 0 "U?" H 7350 4250 60 0000 C CNN +F 1 "d_nor" H 7350 4100 60 0000 C CNN +F 2 "" H 7350 3900 60 0000 C CNN +F 3 "" H 7350 3900 60 0000 C CNN + 1 7350 3900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nor U? +U 1 1 00000000 +P 7350 5900 +F 0 "U?" H 7350 6250 60 0000 C CNN +F 1 "d_nor" H 7350 6100 60 0000 C CNN +F 2 "" H 7350 5900 60 0000 C CNN +F 3 "" H 7350 5900 60 0000 C CNN + 1 7350 5900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nor U? +U 1 1 00000000 +P 7350 7900 +F 0 "U?" H 7350 8250 60 0000 C CNN +F 1 "d_nor" H 7350 8100 60 0000 C CNN +F 2 "" H 7350 7900 60 0000 C CNN +F 3 "" H 7350 7900 60 0000 C CNN + 1 7350 7900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U? +U 1 1 00000000 +P 2400 1350 +F 0 "U?" H 2475 1750 60 0000 C CNN +F 1 "d_buffer" H 2475 1600 60 0000 C CNN +F 2 "" H 2400 1350 60 0000 C CNN +F 3 "" H 2400 1350 60 0000 C CNN + 1 2400 1350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U? +U 1 1 00000000 +P 2400 2350 +F 0 "U?" H 2475 2750 60 0000 C CNN +F 1 "d_buffer" H 2475 2600 60 0000 C CNN +F 2 "" H 2400 2350 60 0000 C CNN +F 3 "" H 2400 2350 60 0000 C CNN + 1 2400 2350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U? +U 1 1 00000000 +P 2400 3350 +F 0 "U?" H 2475 3750 60 0000 C CNN +F 1 "d_buffer" H 2475 3600 60 0000 C CNN +F 2 "" H 2400 3350 60 0000 C CNN +F 3 "" H 2400 3350 60 0000 C CNN + 1 2400 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U? +U 1 1 00000000 +P 2400 4350 +F 0 "U?" H 2475 4750 60 0000 C CNN +F 1 "d_buffer" H 2475 4600 60 0000 C CNN +F 2 "" H 2400 4350 60 0000 C CNN +F 3 "" H 2400 4350 60 0000 C CNN + 1 2400 4350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U? +U 1 1 00000000 +P 2400 5350 +F 0 "U?" H 2475 5750 60 0000 C CNN +F 1 "d_buffer" H 2475 5600 60 0000 C CNN +F 2 "" H 2400 5350 60 0000 C CNN +F 3 "" H 2400 5350 60 0000 C CNN + 1 2400 5350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U? +U 1 1 00000000 +P 2400 6350 +F 0 "U?" H 2475 6750 60 0000 C CNN +F 1 "d_buffer" H 2475 6600 60 0000 C CNN +F 2 "" H 2400 6350 60 0000 C CNN +F 3 "" H 2400 6350 60 0000 C CNN + 1 2400 6350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U? +U 1 1 00000000 +P 2400 7350 +F 0 "U?" H 2475 7750 60 0000 C CNN +F 1 "d_buffer" H 2475 7600 60 0000 C CNN +F 2 "" H 2400 7350 60 0000 C CNN +F 3 "" H 2400 7350 60 0000 C CNN + 1 2400 7350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U? +U 1 1 00000000 +P 2400 8350 +F 0 "U?" H 2475 8750 60 0000 C CNN +F 1 "d_buffer" H 2475 8600 60 0000 C CNN +F 2 "" H 2400 8350 60 0000 C CNN +F 3 "" H 2400 8350 60 0000 C CNN + 1 2400 8350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U? +U 1 1 00000000 +P 2400 9350 +F 0 "U?" H 2475 9750 60 0000 C CNN +F 1 "d_buffer" H 2475 9600 60 0000 C CNN +F 2 "" H 2400 9350 60 0000 C CNN +F 3 "" H 2400 9350 60 0000 C CNN + 1 2400 9350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 10800 1850 +F 0 "X?" H 10925 2450 50 0000 C CNN +F 1 "TRISTATE" H 10925 2350 50 0000 C CNN +F 2 "" H 10800 1850 50 0001 C CNN +F 3 "" H 10800 1850 50 0001 C CNN + 1 10800 1850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 10850 3850 +F 0 "X?" H 10975 4450 50 0000 C CNN +F 1 "TRISTATE" H 10975 4350 50 0000 C CNN +F 2 "" H 10850 3850 50 0001 C CNN +F 3 "" H 10850 3850 50 0001 C CNN + 1 10850 3850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 10850 5850 +F 0 "X?" H 10975 6450 50 0000 C CNN +F 1 "TRISTATE" H 10975 6350 50 0000 C CNN +F 2 "" H 10850 5850 50 0001 C CNN +F 3 "" H 10850 5850 50 0001 C CNN + 1 10850 5850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:TRISTATE X? +U 1 1 00000000 +P 10850 7850 +F 0 "X?" H 10975 8450 50 0000 C CNN +F 1 "TRISTATE" H 10975 8350 50 0000 C CNN +F 2 "" H 10850 7850 50 0001 C CNN +F 3 "" H 10850 7850 50 0001 C CNN + 1 10850 7850 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/_autosave-TRISTATE.sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/_autosave-TRISTATE.sch new file mode 100644 index 000000000..cb62e2387 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/_autosave-TRISTATE.sch @@ -0,0 +1,181 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 4400 3700 +Wire Wire Line + 4050 4300 4150 4300 +Wire Wire Line + 4300 3800 4500 3800 +Wire Wire Line + 4400 2750 4400 3700 +Wire Wire Line + 4400 2750 5450 2750 +Wire Wire Line + 4400 3700 4300 3700 +Wire Wire Line + 4500 2850 5450 2850 +Wire Wire Line + 4500 3800 4500 2850 +Wire Wire Line + 4600 3700 4400 3700 +Wire Wire Line + 4600 3750 4600 3700 +Wire Wire Line + 5200 3750 5450 3750 +Wire Wire Line + 5350 3850 5350 4300 +Wire Wire Line + 5350 3850 5450 3850 +Wire Wire Line + 5350 4300 5300 4300 +Wire Wire Line + 6350 3250 6350 2800 +Wire Wire Line + 6350 3350 6750 3350 +Wire Wire Line + 6350 3800 6350 3350 +Wire Wire Line + 6750 3250 6350 3250 +Wire Wire Line + 7800 3300 7650 3300 +Wire Wire Line + 9100 3300 8950 3300 +$Comp +L eSim_Power:eSim_GND #PWR01 +U 1 1 00000000 +P 3150 4300 +F 0 "#PWR01" H 3150 4050 50 0001 C CNN +F 1 "eSim_GND" H 3150 4100 50 0000 C CNN +F 2 "" H 3150 4300 50 0001 C CNN +F 3 "" H 3150 4300 50 0001 C CNN + 1 3150 4300 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 2 1 00000000 +P 4050 3800 +F 0 "U1" H 3900 3775 30 0000 R CNN +F 1 "PORT" H 3900 3875 30 0000 R CNN +F 2 "" H 4050 3800 60 0000 C CNN +F 3 "" H 4050 3800 60 0000 C CNN + 2 4050 3800 + 1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 1 1 00000000 +P 4300 3450 +F 0 "U1" V 4300 3550 30 0000 L CNN +F 1 "PORT" V 4400 3550 30 0000 L CNN +F 2 "" H 4300 3450 60 0000 C CNN +F 3 "" H 4300 3450 60 0000 C CNN + 1 4300 3450 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 3 1 00000000 +P 9350 3300 +F 0 "U1" H 9200 3275 30 0000 R CNN +F 1 "PORT" H 9200 3375 30 0000 R CNN +F 2 "" H 9350 3300 60 0000 C CNN +F 3 "" H 9350 3300 60 0000 C CNN + 3 9350 3300 + -1 0 0 1 +$EndComp +$Comp +L eSim_Digital:d_inverter U3 +U 1 1 00000000 +P 4900 3750 +F 0 "U3" H 4900 4000 60 0000 C CNN +F 1 "d_inverter" H 4900 3850 60 0000 C CNN +F 2 "" H 4950 3700 60 0000 C CNN +F 3 "" H 4950 3700 60 0000 C CNN + 1 4900 3750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U4 +U 1 1 00000000 +P 5900 2850 +F 0 "U4" H 5900 3200 60 0000 C CNN +F 1 "d_and" H 5900 3050 60 0000 C CNN +F 2 "" H 5900 2850 60 0000 C CNN +F 3 "" H 5900 2850 60 0000 C CNN + 1 5900 2850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U5 +U 1 1 00000000 +P 5900 3850 +F 0 "U5" H 5900 4200 60 0000 C CNN +F 1 "d_and" H 5900 4050 60 0000 C CNN +F 2 "" H 5900 3850 60 0000 C CNN +F 3 "" H 5900 3850 60 0000 C CNN + 1 5900 3850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_or U6 +U 1 1 00000000 +P 7200 3350 +F 0 "U6" H 7200 3700 60 0000 C CNN +F 1 "d_or" H 7200 3550 60 0000 C CNN +F 2 "" H 7200 3350 60 0000 C CNN +F 3 "" H 7200 3350 60 0000 C CNN + 1 7200 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Sources:DC v1 +U 1 1 00000000 +P 3600 4300 +F 0 "v1" H 3800 4425 60 0000 L CNN +F 1 "DC" H 3800 4275 60 0000 L CNN +F 2 "R1" H 3800 4125 60 0000 L CNN +F 3 "" H 3600 4300 60 0000 C CNN + 1 3600 4300 + 0 1 1 0 +$EndComp +$Comp +L eSim_Hybrid:adc_bridge_1 U2 +U 1 1 00000000 +P 4750 4350 +F 0 "U2" H 4725 4750 60 0000 C CNN +F 1 "adc_bridge_1" H 4725 4600 60 0000 C CNN +F 2 "" H 4750 4350 60 0000 C CNN +F 3 "" H 4750 4350 60 0000 C CNN + 1 4750 4350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U7 +U 1 1 00000000 +P 8300 3300 +F 0 "U7" H 8375 3700 60 0000 C CNN +F 1 "d_buffer" H 8375 3550 60 0000 C CNN +F 2 "" H 8300 3300 60 0000 C CNN +F 3 "" H 8300 3300 60 0000 C CNN + 1 8300 3300 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/analysis b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/analysis new file mode 100644 index 000000000..af548eb1e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/74HC258/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 100e-06 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.cir new file mode 100644 index 000000000..22709a071 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.cir @@ -0,0 +1,17 @@ +.title KiCad schematic +U4 Net-_U1-Pad2_ Net-_U13-Pad5_ unconnected-_U4-Pad3_ Net-_U10-Pad4_ Net-_U2-Pad10_ unconnected-_U4-Pad6_ d_tff +U2 Net-_U2-Pad2_ Net-_U10-Pad4_ Net-_U2-Pad4_ Net-_U2-Pad5_ Net-_U2-Pad6_ Net-_U11-Pad2_ Net-_U11-Pad5_ Net-_U13-Pad5_ Net-_U2-Pad10_ Net-_U2-Pad11_ Net-_U10-Pad2_ Net-_U10-Pad5_ Net-_U12-Pad5_ Net-_U14-Pad5_ PORT +U6 Net-_U1-Pad2_ Net-_U2-Pad10_ unconnected-_U6-Pad3_ Net-_U10-Pad4_ Net-_U2-Pad11_ unconnected-_U6-Pad6_ d_tff +v1 Net-_U1-Pad1_ GND DC +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ adc_bridge_1 +U14 Net-_U1-Pad2_ Net-_U12-Pad5_ unconnected-_U14-Pad3_ Net-_U10-Pad4_ Net-_U14-Pad5_ unconnected-_U14-Pad6_ d_tff +U12 Net-_U1-Pad2_ Net-_U10-Pad5_ unconnected-_U12-Pad3_ Net-_U10-Pad4_ Net-_U12-Pad5_ unconnected-_U12-Pad6_ d_tff +U11 Net-_U1-Pad2_ Net-_U11-Pad2_ unconnected-_U11-Pad3_ Net-_U10-Pad4_ Net-_U11-Pad5_ unconnected-_U11-Pad6_ d_tff +U13 Net-_U1-Pad2_ Net-_U11-Pad5_ unconnected-_U13-Pad3_ Net-_U10-Pad4_ Net-_U13-Pad5_ unconnected-_U13-Pad6_ d_tff +U5 Net-_U1-Pad2_ Net-_U2-Pad4_ unconnected-_U5-Pad3_ Net-_U10-Pad4_ Net-_U2-Pad5_ unconnected-_U5-Pad6_ d_tff +U3 Net-_U1-Pad2_ Net-_U2-Pad2_ unconnected-_U3-Pad3_ Net-_U10-Pad4_ Net-_U2-Pad4_ unconnected-_U3-Pad6_ d_tff +U9 Net-_U1-Pad2_ Net-_U2-Pad6_ unconnected-_U9-Pad3_ Net-_U10-Pad4_ Net-_U11-Pad2_ unconnected-_U9-Pad6_ d_tff +U7 Net-_U1-Pad2_ Net-_U2-Pad5_ unconnected-_U7-Pad3_ Net-_U10-Pad4_ Net-_U2-Pad6_ unconnected-_U7-Pad6_ d_tff +U10 Net-_U1-Pad2_ Net-_U10-Pad2_ unconnected-_U10-Pad3_ Net-_U10-Pad4_ Net-_U10-Pad5_ unconnected-_U10-Pad6_ d_tff +U8 Net-_U1-Pad2_ Net-_U2-Pad11_ unconnected-_U8-Pad3_ Net-_U10-Pad4_ Net-_U10-Pad2_ unconnected-_U8-Pad6_ d_tff +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.cir.out new file mode 100644 index 000000000..f368aaf20 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.cir.out @@ -0,0 +1,65 @@ +.title kicad schematic + +* u4 net-_u1-pad2_ net-_u13-pad5_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u2-pad10_ unconnected-_u4-pad6_ d_tff +* u2 net-_u2-pad2_ net-_u10-pad4_ net-_u2-pad4_ net-_u2-pad5_ net-_u2-pad6_ net-_u11-pad2_ net-_u11-pad5_ net-_u13-pad5_ net-_u2-pad10_ net-_u2-pad11_ net-_u10-pad2_ net-_u10-pad5_ net-_u12-pad5_ net-_u14-pad5_ port +* u6 net-_u1-pad2_ net-_u2-pad10_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u2-pad11_ unconnected-_u6-pad6_ d_tff +v1 net-_u1-pad1_ gnd dc 5 +* u1 net-_u1-pad1_ net-_u1-pad2_ adc_bridge_1 +* u14 net-_u1-pad2_ net-_u12-pad5_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_tff +* u12 net-_u1-pad2_ net-_u10-pad5_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ d_tff +* u11 net-_u1-pad2_ net-_u11-pad2_ unconnected-_u11-pad3_ net-_u10-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ d_tff +* u13 net-_u1-pad2_ net-_u11-pad5_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ d_tff +* u5 net-_u1-pad2_ net-_u2-pad4_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u2-pad5_ unconnected-_u5-pad6_ d_tff +* u3 net-_u1-pad2_ net-_u2-pad2_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u2-pad4_ unconnected-_u3-pad6_ d_tff +* u9 net-_u1-pad2_ net-_u2-pad6_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u11-pad2_ unconnected-_u9-pad6_ d_tff +* u7 net-_u1-pad2_ net-_u2-pad5_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u2-pad6_ unconnected-_u7-pad6_ d_tff +* u10 net-_u1-pad2_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ d_tff +* u8 net-_u1-pad2_ net-_u2-pad11_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u10-pad2_ unconnected-_u8-pad6_ d_tff +a1 net-_u1-pad2_ net-_u13-pad5_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u2-pad10_ unconnected-_u4-pad6_ u4 +a2 net-_u1-pad2_ net-_u2-pad10_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u2-pad11_ unconnected-_u6-pad6_ u6 +a3 [net-_u1-pad1_ ] [net-_u1-pad2_ ] u1 +a4 net-_u1-pad2_ net-_u12-pad5_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a5 net-_u1-pad2_ net-_u10-pad5_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ u12 +a6 net-_u1-pad2_ net-_u11-pad2_ unconnected-_u11-pad3_ net-_u10-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ u11 +a7 net-_u1-pad2_ net-_u11-pad5_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ u13 +a8 net-_u1-pad2_ net-_u2-pad4_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u2-pad5_ unconnected-_u5-pad6_ u5 +a9 net-_u1-pad2_ net-_u2-pad2_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u2-pad4_ unconnected-_u3-pad6_ u3 +a10 net-_u1-pad2_ net-_u2-pad6_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u11-pad2_ unconnected-_u9-pad6_ u9 +a11 net-_u1-pad2_ net-_u2-pad5_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u2-pad6_ unconnected-_u7-pad6_ u7 +a12 net-_u1-pad2_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ u10 +a13 net-_u1-pad2_ net-_u2-pad11_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u10-pad2_ unconnected-_u8-pad6_ u8 +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u4 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u6 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u14 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u12 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u11 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u13 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u5 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u3 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u9 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u7 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u10 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u8 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.kicad_sch new file mode 100644 index 000000000..7393eb67e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.kicad_sch @@ -0,0 +1,1884 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid bab8c96c-9c21-4879-930e-250807295de5) + + (paper "User" 431.8 379.4) + + (lib_symbols + (symbol "eSim_Digital:d_tff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_tff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_tff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "T" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Out" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Nout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "DC" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DC_0_1" + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DC_1_1" + (pin power_out line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 214.63 69.85) (diameter 0) (color 0 0 0 0) + (uuid 03214bf6-94b9-4f27-a8fe-caa1dfb89704) + ) + (junction (at 289.56 149.86) (diameter 0) (color 0 0 0 0) + (uuid 13d7996f-b2cb-49e3-80d6-8c0b6e6cd9f6) + ) + (junction (at 124.46 149.86) (diameter 0) (color 0 0 0 0) + (uuid 13e3d364-c4b6-4d3e-854e-f61721ede25f) + ) + (junction (at 283.21 149.86) (diameter 0) (color 0 0 0 0) + (uuid 16ecec01-010c-4619-9b3c-17a80930846d) + ) + (junction (at 374.65 69.85) (diameter 0) (color 0 0 0 0) + (uuid 19085a41-9b4e-48d7-ac8d-574ed35fd4eb) + ) + (junction (at 254 231.14) (diameter 0) (color 0 0 0 0) + (uuid 1ad35f7c-46a1-4512-b910-a08f2ac2b85f) + ) + (junction (at 120.65 149.86) (diameter 0) (color 0 0 0 0) + (uuid 23710c95-c010-447d-9a87-cdffb1e5f828) + ) + (junction (at 267.97 69.85) (diameter 0) (color 0 0 0 0) + (uuid 398d1df9-8298-4969-97e3-2cd0383e66db) + ) + (junction (at 200.66 231.14) (diameter 0) (color 0 0 0 0) + (uuid 3bb7259c-80f9-4acc-978b-f151ba376588) + ) + (junction (at 93.98 120.65) (diameter 0) (color 0 0 0 0) + (uuid 4609bb7e-1059-4465-bd26-52761144929e) + ) + (junction (at 176.53 149.86) (diameter 0) (color 0 0 0 0) + (uuid 5790291b-2c3b-4bbb-8c47-fff5a2ab0110) + ) + (junction (at 267.97 187.96) (diameter 0) (color 0 0 0 0) + (uuid 5bbdb757-7dff-4edd-a30d-a287eec25973) + ) + (junction (at 254 120.65) (diameter 0) (color 0 0 0 0) + (uuid 6573f9da-c25a-4ad6-a6d3-0d036c9108ea) + ) + (junction (at 321.31 187.96) (diameter 0) (color 0 0 0 0) + (uuid 75b44275-13fd-4fa9-9526-55589c8d3db7) + ) + (junction (at 335.28 149.86) (diameter 0) (color 0 0 0 0) + (uuid 8537467a-c55b-47c9-874f-e668acade0df) + ) + (junction (at 72.39 149.86) (diameter 0) (color 0 0 0 0) + (uuid 88dfb2a4-6937-4793-9974-d1a8fce23f78) + ) + (junction (at 200.66 120.65) (diameter 0) (color 0 0 0 0) + (uuid 8f6173a0-43e6-42b9-8766-7648147edce6) + ) + (junction (at 307.34 120.65) (diameter 0) (color 0 0 0 0) + (uuid 91860144-5b92-426f-a20e-ea1cba972118) + ) + (junction (at 147.32 120.65) (diameter 0) (color 0 0 0 0) + (uuid 93fc7ac6-987e-4fe4-bbaa-5bdf5d0a480d) + ) + (junction (at 48.26 120.65) (diameter 0) (color 0 0 0 0) + (uuid 9577101c-0e88-46e8-b0cc-2b57c470b832) + ) + (junction (at 161.29 69.85) (diameter 0) (color 0 0 0 0) + (uuid 96aebf67-00c4-40a8-b529-dfbefdc93910) + ) + (junction (at 214.63 187.96) (diameter 0) (color 0 0 0 0) + (uuid 9f90e179-d2fc-4aee-83f9-5655656e9ce4) + ) + (junction (at 107.95 69.85) (diameter 0) (color 0 0 0 0) + (uuid a0950145-b282-4a7a-a308-a3e2ca18403f) + ) + (junction (at 228.6 149.86) (diameter 0) (color 0 0 0 0) + (uuid a295ad6e-98ee-4cbe-9a7b-2c1cb4cff17f) + ) + (junction (at 93.98 231.14) (diameter 0) (color 0 0 0 0) + (uuid a8b3a4ca-e4c5-41e6-be2a-ac43751f98ea) + ) + (junction (at 161.29 187.96) (diameter 0) (color 0 0 0 0) + (uuid a95e0b27-369e-4cce-921f-e698689e7600) + ) + (junction (at 76.2 149.86) (diameter 0) (color 0 0 0 0) + (uuid ae7be00d-fdc9-4690-97db-33f643142f3d) + ) + (junction (at 321.31 69.85) (diameter 0) (color 0 0 0 0) + (uuid d3a0ca0f-d8fa-4619-9e81-d6ac192837b4) + ) + (junction (at 147.32 231.14) (diameter 0) (color 0 0 0 0) + (uuid d9dbdf5a-0636-4aaa-b523-aa84d011efa4) + ) + (junction (at 232.41 149.86) (diameter 0) (color 0 0 0 0) + (uuid e4d821e9-2f2f-42f4-b081-fb17ef98f4bb) + ) + (junction (at 307.34 231.14) (diameter 0) (color 0 0 0 0) + (uuid e6de6255-56c1-4803-bfe8-7f70c1c099ae) + ) + (junction (at 181.61 149.86) (diameter 0) (color 0 0 0 0) + (uuid ed9e6c4f-3882-47f4-9b9e-f4bc84b7427f) + ) + (junction (at 107.95 187.96) (diameter 0) (color 0 0 0 0) + (uuid f3091d96-0e87-41af-b49d-ae66aa0c2f25) + ) + + (no_connect (at 214.63 204.47) (uuid 02b2a9ab-054d-48c7-840e-2552e3c9a1e6)) + (no_connect (at 161.29 86.36) (uuid 08a91c6f-eda5-4a3d-9c02-b9d869fbafba)) + (no_connect (at 200.66 180.34) (uuid 08ab3afe-d155-43c1-a8de-4a11be4d4bde)) + (no_connect (at 374.65 204.47) (uuid 0aac094a-89e3-4dd0-b0bc-62eaed41aeee)) + (no_connect (at 200.66 62.23) (uuid 1b3de17f-943b-43c4-b508-2b502415e496)) + (no_connect (at 107.95 204.47) (uuid 2570d993-4fb5-4866-9b52-c368c6860a6c)) + (no_connect (at 321.31 86.36) (uuid 319a1d6b-e75b-4ecb-8b41-d6cd970a9b1a)) + (no_connect (at 254 62.23) (uuid 38c13690-d6cf-409e-b2bf-08598adc672e)) + (no_connect (at 267.97 204.47) (uuid 403b8eb2-f520-41df-af84-bf765e2714d9)) + (no_connect (at 161.29 204.47) (uuid 4641cedc-0254-4f71-a1a9-6d98ba57caa6)) + (no_connect (at 107.95 86.36) (uuid 624cdc60-c3c2-418a-be8f-6c4883a1e591)) + (no_connect (at 214.63 86.36) (uuid 774dbcda-3edc-4086-9143-c82a8a3bb7b8)) + (no_connect (at 321.31 204.47) (uuid 7e472d9e-ef61-4de9-a751-c80d1c359ca3)) + (no_connect (at 147.32 180.34) (uuid 7e94891a-1a18-4750-8e3a-c50dd2601513)) + (no_connect (at 93.98 62.23) (uuid 96782d49-a971-481b-820a-b6cd78ce7e29)) + (no_connect (at 374.65 86.36) (uuid 9b365386-90ad-4a76-aa49-7da11deaa6b2)) + (no_connect (at 254 180.34) (uuid 9ef5dfc0-d79a-4206-b97b-a3798512ecd6)) + (no_connect (at 267.97 86.36) (uuid bcb6ef0d-8b47-44aa-97ca-8828ef6e8456)) + (no_connect (at 360.68 180.34) (uuid c203a0d5-06df-40d6-ae21-8f381ebaa1dd)) + (no_connect (at 93.98 180.34) (uuid cdc16218-35d7-4f49-b09f-7cb242da1cc6)) + (no_connect (at 147.32 62.23) (uuid d34f369c-01c1-48de-b258-2f10af534e40)) + (no_connect (at 307.34 180.34) (uuid d548b1d3-a5b3-4456-adf1-fa7dffd1ba1d)) + (no_connect (at 307.34 62.23) (uuid fa5937f1-1051-4232-93a5-63a1e6260c99)) + (no_connect (at 360.68 62.23) (uuid fb755b42-1cf6-4049-81ba-a72189693f81)) + + (wire (pts (xy 176.53 149.86) (xy 181.61 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03a23ed2-6aef-4ea1-8df5-7d1327d65dad) + ) + (wire (pts (xy 222.25 69.85) (xy 214.63 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 047a8084-fe2b-4ce5-b4a7-cb124a3a988e) + ) + (wire (pts (xy 43.18 120.65) (xy 48.26 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05ea5021-0db6-4241-871b-06a6fa7ad14f) + ) + (wire (pts (xy 68.58 204.47) (xy 80.01 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05f98358-c108-423c-8ba7-72b06545f9cf) + ) + (wire (pts (xy 176.53 69.85) (xy 176.53 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d7d4f6d-096b-4b21-847a-b64234e4bd5e) + ) + (wire (pts (xy 254 120.65) (xy 307.34 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0dfa0fbe-b646-48f3-be32-558309552179) + ) + (wire (pts (xy 133.35 204.47) (xy 119.38 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f27fb1b-5fc6-4c7d-b5d0-e83daf00ed85) + ) + (wire (pts (xy 161.29 69.85) (xy 171.45 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10cc78d7-ce3e-4a0b-ba2b-1a5ff3990e30) + ) + (wire (pts (xy 186.69 69.85) (xy 176.53 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15ed2ae7-d1e2-467d-b3ab-898807882128) + ) + (wire (pts (xy 186.69 86.36) (xy 171.45 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15ef82ec-7035-400d-8eb3-148ec0045e1e) + ) + (wire (pts (xy 228.6 69.85) (xy 228.6 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18de2705-4bc6-4fae-8763-612f0d192d49) + ) + (wire (pts (xy 341.63 69.85) (xy 346.71 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f1aaed5-053e-4109-8bf2-41d839c1d99d) + ) + (wire (pts (xy 278.13 69.85) (xy 267.97 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26b2da7b-4e9b-486f-a674-d1c9a6f4c2cb) + ) + (wire (pts (xy 200.66 93.98) (xy 200.66 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 289d6789-06c2-4ac1-8294-2a4e0ac4774b) + ) + (wire (pts (xy 76.2 149.86) (xy 120.65 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 295d2c6f-c1a5-459a-bfb5-52c7f0c02999) + ) + (wire (pts (xy 186.69 187.96) (xy 181.61 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c28b5d7-7270-4390-b8d5-c32d78af5660) + ) + (wire (pts (xy 336.55 86.36) (xy 336.55 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f897ed0-3c95-4506-94e2-fec043666cef) + ) + (wire (pts (xy 254 93.98) (xy 254 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30e63443-6ba4-4909-b921-023cba8681d1) + ) + (wire (pts (xy 400.05 138.43) (xy 68.58 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36417aa2-11fc-4079-adee-b031af4740e1) + ) + (wire (pts (xy 30.48 209.55) (xy 30.48 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 374e5528-3447-4490-819e-2b8c1066c43c) + ) + (wire (pts (xy 72.39 149.86) (xy 72.39 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 375e254f-285b-4e5e-9eab-c94f27436f2f) + ) + (wire (pts (xy 307.34 120.65) (xy 360.68 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 376d694c-95f0-4843-96df-2e72f3edf27e) + ) + (wire (pts (xy 374.65 69.85) (xy 400.05 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37e63dbb-793e-49ff-bad5-45ff155a011c) + ) + (wire (pts (xy 48.26 120.65) (xy 93.98 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b9d7980-3165-47d3-a8df-a3d3c95cdead) + ) + (wire (pts (xy 283.21 149.86) (xy 289.56 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bf3679e-e586-4112-9b5e-5b0d28eaee43) + ) + (wire (pts (xy 147.32 120.65) (xy 200.66 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40379f9d-9733-4aef-8d8c-f91505f2c820) + ) + (wire (pts (xy 80.01 187.96) (xy 76.2 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4372c645-c4a7-4a9d-ba24-7117a59f008c) + ) + (wire (pts (xy 93.98 120.65) (xy 147.32 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44a83a00-b9f6-4e9f-bdea-6850328a786d) + ) + (wire (pts (xy 133.35 86.36) (xy 116.84 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46863457-02d9-4c08-bac1-468fb37a74b9) + ) + (wire (pts (xy 335.28 149.86) (xy 341.63 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48fc5ae8-899b-4b36-a95c-eae5c1d8b66b) + ) + (wire (pts (xy 147.32 212.09) (xy 147.32 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49bb9c7b-ea5d-4d29-8100-f839540b39c0) + ) + (wire (pts (xy 200.66 120.65) (xy 254 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cf49dc3-ec60-4360-8e1f-e5c8b265c0a9) + ) + (wire (pts (xy 176.53 187.96) (xy 161.29 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f5d11b6-93e7-4028-869f-7234d675cb41) + ) + (wire (pts (xy 326.39 187.96) (xy 321.31 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51136fe0-7a3c-44c4-9009-92260101db48) + ) + (wire (pts (xy 68.58 138.43) (xy 68.58 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 531990c9-aea6-49b0-9b25-f7f7b578734e) + ) + (wire (pts (xy 293.37 86.36) (xy 278.13 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54029a79-5673-4458-88a1-ce6cd60f24d1) + ) + (wire (pts (xy 346.71 86.36) (xy 336.55 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5677e214-aa3c-41cd-8d62-2155cf77a3b0) + ) + (wire (pts (xy 254 212.09) (xy 254 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b93110d-9321-4f33-bb49-5a1c42c62e8c) + ) + (wire (pts (xy 120.65 149.86) (xy 124.46 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ca906b0-5016-4af7-a94f-ea11f4771ad4) + ) + (wire (pts (xy 120.65 69.85) (xy 120.65 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d11e5fe-df2f-4899-a401-99e83e626ef1) + ) + (wire (pts (xy 307.34 93.98) (xy 307.34 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e0aff8f-c4f4-490a-83dc-4c53f3890b40) + ) + (wire (pts (xy 321.31 69.85) (xy 336.55 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 612ce53b-bbcc-4714-bcb2-9f01bcca5b3b) + ) + (wire (pts (xy 186.69 204.47) (xy 176.53 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6156bdc5-0e45-4060-84ce-f9e646030c37) + ) + (wire (pts (xy 335.28 187.96) (xy 335.28 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62fce8fe-1823-4d23-b442-05a52c60deaf) + ) + (wire (pts (xy 278.13 86.36) (xy 278.13 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 633ccaff-644b-4a9b-9148-3f582abe45da) + ) + (wire (pts (xy 147.32 231.14) (xy 200.66 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63e57824-904f-4f96-8e77-cadbc8509b20) + ) + (wire (pts (xy 93.98 212.09) (xy 93.98 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a53d564-283b-41db-a7f3-3c18120ebd69) + ) + (wire (pts (xy 116.84 69.85) (xy 107.95 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e8306f0-2ff7-4f67-b407-64584fdadd81) + ) + (wire (pts (xy 124.46 187.96) (xy 124.46 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 713aa8a6-0abd-4bf4-8e48-904a817ee14b) + ) + (wire (pts (xy 289.56 149.86) (xy 335.28 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72dcf50a-8377-4a4b-9c58-e6463eaa08fd) + ) + (wire (pts (xy 240.03 69.85) (xy 228.6 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75e8dc7a-7967-4355-b0f1-13ee158abfe5) + ) + (wire (pts (xy 341.63 149.86) (xy 341.63 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7714abda-6c49-4d95-95ba-b6da3ebc7955) + ) + (wire (pts (xy 48.26 120.65) (xy 48.26 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77270d09-cab9-41fa-a675-1dd9fd92dc4d) + ) + (wire (pts (xy 124.46 149.86) (xy 176.53 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79a18e14-1ee9-4dcc-9705-0157a647d723) + ) + (wire (pts (xy 72.39 149.86) (xy 76.2 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d788e3d-6811-4139-ad7a-6f0ac061a1db) + ) + (wire (pts (xy 289.56 187.96) (xy 289.56 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dadf182-4c15-46e4-bbb9-6294956754ca) + ) + (wire (pts (xy 240.03 204.47) (xy 226.06 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e13cff2-c5f6-48c8-babc-92bac5af49df) + ) + (wire (pts (xy 400.05 69.85) (xy 400.05 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87ba4179-5d39-45ce-b6d6-8477e2a4dde8) + ) + (wire (pts (xy 293.37 204.47) (xy 280.67 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88ac1568-3052-4679-a86f-12ba7c3645f7) + ) + (wire (pts (xy 346.71 187.96) (xy 335.28 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89bca9f2-5e34-454f-b264-b79bf3e64ce5) + ) + (wire (pts (xy 48.26 231.14) (xy 93.98 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ae47b4a-0261-49b0-8825-4d3f5501e875) + ) + (wire (pts (xy 360.68 231.14) (xy 360.68 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d55b328-4ea7-4a75-96b8-37ce43ce0554) + ) + (wire (pts (xy 147.32 93.98) (xy 147.32 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8efb497c-0d9e-463c-9a4a-3e79e431987c) + ) + (wire (pts (xy 307.34 231.14) (xy 360.68 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9004af31-2799-4547-b13a-5e7a966a8464) + ) + (wire (pts (xy 280.67 204.47) (xy 280.67 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 900f1ad9-dbf9-4c5d-bf58-482c7bb8fdae) + ) + (wire (pts (xy 181.61 187.96) (xy 181.61 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90bdd74e-8075-4d8a-8874-61c25e2f68fd) + ) + (wire (pts (xy 240.03 187.96) (xy 232.41 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9240e346-a475-466e-b81d-41c012b87d61) + ) + (wire (pts (xy 72.39 69.85) (xy 80.01 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 932f9280-50bc-4a38-8f71-df216486dc8d) + ) + (wire (pts (xy 226.06 204.47) (xy 226.06 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99a34045-5e59-4fca-95f9-f2277cfe0be7) + ) + (wire (pts (xy 76.2 187.96) (xy 76.2 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c03ab82-d3ba-46e3-b66c-96c9dccdb03f) + ) + (wire (pts (xy 240.03 86.36) (xy 222.25 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e6a1262-81c4-4d11-b6c5-c29dd2a497fa) + ) + (wire (pts (xy 226.06 187.96) (xy 214.63 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4116081-d803-48ba-afea-697d24f469cd) + ) + (wire (pts (xy 293.37 187.96) (xy 289.56 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a55a5d4c-d2d2-4e0b-963e-acf45be6f2e9) + ) + (wire (pts (xy 119.38 204.47) (xy 119.38 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8b1a3b4-7e51-4023-933c-fd9652a244a0) + ) + (wire (pts (xy 228.6 149.86) (xy 232.41 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afc71b59-5476-47e5-8905-6bbd9fb021aa) + ) + (wire (pts (xy 119.38 187.96) (xy 107.95 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4d9a2e8-ebb8-4858-8b2d-2e1478c5f607) + ) + (wire (pts (xy 30.48 149.86) (xy 72.39 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5cc6f57-7a60-4b50-915c-f85919d8cd82) + ) + (wire (pts (xy 326.39 204.47) (xy 326.39 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b86e8234-1ca0-47ec-92dd-56277237b568) + ) + (wire (pts (xy 171.45 86.36) (xy 171.45 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b992a4ff-c920-4b92-924c-3fda950784ac) + ) + (wire (pts (xy 176.53 204.47) (xy 176.53 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid baff6bc5-5528-4389-b0ed-0dbb48f3a434) + ) + (wire (pts (xy 307.34 212.09) (xy 307.34 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd4475a4-45fc-4511-9c86-a5e11204a5e6) + ) + (wire (pts (xy 283.21 69.85) (xy 283.21 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd660291-4c52-488a-805d-d25d36db0404) + ) + (wire (pts (xy 222.25 86.36) (xy 222.25 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1c667de-f52b-4f24-b6ce-2037013281ab) + ) + (wire (pts (xy 43.18 86.36) (xy 80.01 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d35ae079-faf3-4ae4-b757-cd9a877d6517) + ) + (wire (pts (xy 181.61 149.86) (xy 228.6 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db349c72-a0fe-41c2-802b-e9cd128ecfd5) + ) + (wire (pts (xy 293.37 69.85) (xy 283.21 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db45ae82-1f11-4fac-9ff6-3b74556c0daf) + ) + (wire (pts (xy 200.66 231.14) (xy 254 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc0e972d-8e59-4d1d-ba8d-80a4c6d1e256) + ) + (wire (pts (xy 254 231.14) (xy 307.34 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e185e96f-58a2-4f74-a19a-c8636f72a7e4) + ) + (wire (pts (xy 232.41 149.86) (xy 283.21 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1ff81c8-f553-4679-a7f0-0d1503347441) + ) + (wire (pts (xy 93.98 231.14) (xy 147.32 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2bbfedc-d8cb-4b27-ba1b-ce0e5509c43b) + ) + (wire (pts (xy 133.35 187.96) (xy 124.46 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8070526-b561-4b3e-85fb-5e757ee04c90) + ) + (wire (pts (xy 232.41 187.96) (xy 232.41 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8d1af6d-ab4c-4c04-8700-8240ada1aa05) + ) + (wire (pts (xy 93.98 93.98) (xy 93.98 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f23d1abc-5b9f-4d0b-988c-2e5029e8728a) + ) + (wire (pts (xy 360.68 93.98) (xy 360.68 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3365b71-8d10-40b9-a0d4-0aa9e38809cb) + ) + (wire (pts (xy 280.67 187.96) (xy 267.97 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5e801df-1e37-4543-af95-3ceb05afdc89) + ) + (wire (pts (xy 346.71 204.47) (xy 326.39 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f68c2e3e-ad3a-4c2f-ab27-a11d6ea0d0dd) + ) + (wire (pts (xy 200.66 212.09) (xy 200.66 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7467d44-d6a3-4a91-97a1-43a7259fa3d9) + ) + (wire (pts (xy 133.35 69.85) (xy 120.65 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9bad19d-27cd-4bf4-8339-4bee40ef537b) + ) + (wire (pts (xy 116.84 86.36) (xy 116.84 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb8d3e3a-45d7-4430-a106-35d962b34f82) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 36.83 120.65 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e857c95-06ea-42e7-9d5d-47c74fe48ef8) + (property "Reference" "U2" (id 0) (at 37.465 115.57 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 37.465 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 36.83 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 36.83 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7b699a46-b204-49da-b037-ae2b4beb79c4)) + (pin "2" (uuid 1e50c0d7-6a46-49b6-a640-75fdbb2183f4)) + (pin "3" (uuid f64c0682-52be-49a8-9d56-9800e57c3036)) + (pin "4" (uuid 0ca6a661-6f91-4840-8ca2-203dea361564)) + (pin "5" (uuid 84829c53-0def-4b33-ad39-1034aa863e6b)) + (pin "6" (uuid 3cbb8479-cbee-4d35-83b1-6fee6bc8139e)) + (pin "7" (uuid 5cc092b4-ce6a-4608-ad61-7ce29d22b3b8)) + (pin "8" (uuid a51a0a28-95ed-4fc1-b7ed-8f840c6c24d0)) + (pin "9" (uuid 504d20cc-01f0-4186-921d-0d0456194a21)) + (pin "10" (uuid 8c8c028e-21c5-4635-9d47-9fe36d8a57de)) + (pin "11" (uuid d0208259-fd28-4c8c-a1e6-329604542539)) + (pin "12" (uuid a071bd8b-bb85-459c-92b8-1003e14994f0)) + (pin "13" (uuid 7dfdd92f-5aae-497e-ae3c-09643eedf98e)) + (pin "14" (uuid ddf98d74-4bb5-4f57-88e8-863aa5a444c6)) + (pin "15" (uuid cd4b1d7a-f03a-4eb4-bf9a-7d86b8637f22)) + (pin "16" (uuid 31a8c99e-f7dc-4d7d-a680-c37394e70902)) + (pin "17" (uuid da54f88e-3222-4699-9d94-58430af3c99d)) + (pin "18" (uuid 7bb5f445-8ba9-4801-abe2-07981a1a79e5)) + (pin "19" (uuid 96c6da25-07ec-4fc1-8e8d-a1c04dc2b7c4)) + (pin "20" (uuid c701a5f4-7a4e-4a81-b46b-b536b4706fa2)) + (pin "21" (uuid 19c2cb9e-1829-4c58-8386-7df245788fc2)) + (pin "22" (uuid da407523-0190-47da-a29b-40f2ab0dabee)) + (pin "23" (uuid dbca7ffc-0987-45a6-924a-eaf46ad0e788)) + (pin "24" (uuid eb633e8a-95e9-41d3-a27f-fc7507df7352)) + (pin "25" (uuid 9ca08ba1-0b8a-44c0-b37f-0230ad866a04)) + (pin "26" (uuid 75790dae-5b72-493d-ae6f-11b2f4c5eb37)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 200.66 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d3148fa-60f2-4c2a-8463-c1f9a33f61c1) + (property "Reference" "U7" (id 0) (at 202.6794 62.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 202.6794 66.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 200.66 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2639242a-d07f-48c7-b25b-1e4a53278832)) + (pin "2" (uuid e9973d45-9e00-4fa9-9ec8-b1c072115e13)) + (pin "3" (uuid 6e6003b2-d6cd-448a-a683-af21fb0f9e9e)) + (pin "4" (uuid 25d0f293-8088-4c11-a00b-192a3e9ed8b2)) + (pin "5" (uuid dce0e06a-321e-4272-9b24-83a6dc8a6d25)) + (pin "6" (uuid c0d54110-83f4-431b-ba01-dae3b42e432f)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 93.98 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2158569c-d8a2-4ae9-86f7-ce550e366c85) + (property "Reference" "U4" (id 0) (at 95.9994 180.34 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 95.9994 184.15 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 93.98 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 93.98 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d2d9dc7a-3c82-4d6c-afaa-9166f9377410)) + (pin "2" (uuid ec9c2cb8-b777-4950-8c0a-69117af9bd5a)) + (pin "3" (uuid f14f09f1-5b65-45dd-98f5-30a6b2461e4f)) + (pin "4" (uuid 45b767a8-80b0-448d-8f02-038f6875608d)) + (pin "5" (uuid 68041d8b-195c-42c4-90ed-87848d429ea9)) + (pin "6" (uuid 18d5b25b-82b8-44fe-8ef4-0f74b65d30a0)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 360.68 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 332ff61d-535e-4e37-9274-4e40e3e70039) + (property "Reference" "U14" (id 0) (at 362.6994 180.34 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 362.6994 184.15 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 360.68 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 360.68 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 625b7950-0205-48cf-b4f0-f7ca36b9d584)) + (pin "2" (uuid 78ec1d6c-37aa-4c60-8bae-f6fb7ca36456)) + (pin "3" (uuid 3d031e54-00a3-47ba-9cbc-ffe3e3028679)) + (pin "4" (uuid b4d235de-4f48-49f3-a556-439542ba98f0)) + (pin "5" (uuid cd5ddfad-f3e8-49ea-8da8-eb9057485873)) + (pin "6" (uuid 95e2bdf7-c0ad-4c48-93c4-e845bde57e83)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 107.95 63.5 270) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 587eae62-21a1-4703-8ad4-f56ab488f7be) + (property "Reference" "U2" (id 0) (at 110.49 63.5 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 110.49 66.04 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 107.95 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 107.95 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 62e8be67-673a-4647-8ce2-62482ce794a4)) + (pin "2" (uuid a4824e7d-f31a-4239-8efb-e9d18acfb922)) + (pin "3" (uuid abc47699-dd8f-4138-a925-4162545edbc3)) + (pin "4" (uuid faa52faf-1e02-44eb-9923-baa12e509e79)) + (pin "5" (uuid d1875953-2186-48aa-ab4d-3cde728ded01)) + (pin "6" (uuid b53a6237-aa1f-4127-9f5b-a5958ab63af4)) + (pin "7" (uuid fcf576e4-46ad-4252-8c99-e1607132fc60)) + (pin "8" (uuid 870484d1-95ce-4e64-aad4-887df8d87111)) + (pin "9" (uuid bfe12ac6-661f-4527-967c-b29ba419a03b)) + (pin "10" (uuid 61892b01-1418-4e91-8c05-91831deb5515)) + (pin "11" (uuid d68e4ccf-0cb6-4260-b4c9-4f69935588a1)) + (pin "12" (uuid f565ab81-aa91-4674-9fe1-d7709dab6964)) + (pin "13" (uuid 69a684c0-f8c9-44aa-8c32-ed66d1e9d606)) + (pin "14" (uuid 5a29b5d1-6078-46ee-be82-d9ba6b0d0333)) + (pin "15" (uuid 6ba56981-e34f-4bec-a000-5a719cd6ad45)) + (pin "16" (uuid 0d49856c-eb37-47ad-b912-d037b2d90131)) + (pin "17" (uuid 36610d26-69cc-48fb-bf2d-a2457c9d0dae)) + (pin "18" (uuid 8fe9c5b1-6acc-4e86-a373-a1cb8e9b4346)) + (pin "19" (uuid b33a0e6e-294d-491e-95da-67acc05938fc)) + (pin "20" (uuid ef5e9bbc-956e-485a-b085-9641e3e561dc)) + (pin "21" (uuid f87b4835-9cd2-49d6-92c1-0af533f2b108)) + (pin "22" (uuid 2c551f50-7bb3-414b-a9a4-1f866d495a21)) + (pin "23" (uuid a1e31dc7-7951-4184-b4ce-0fd04c05e69f)) + (pin "24" (uuid d32a4972-781b-47b8-9ce2-d9225a601735)) + (pin "25" (uuid e4f11f9b-a93d-412c-89a0-9be76361ce13)) + (pin "26" (uuid d0d1c583-2133-4d29-95e3-ead78120b319)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 30.48 261.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5e1e696a-a8ae-4199-915e-7bf21c40bfab) + (property "Reference" "#PWR01" (id 0) (at 30.48 267.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 30.48 266.7 0)) + (property "Footprint" "" (id 2) (at 30.48 261.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 30.48 261.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7620527b-cf4e-4ac4-968d-1fe7f763758b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 161.29 63.5 270) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6cff8c63-2552-4fb9-9ad3-50bc13b1825a) + (property "Reference" "U2" (id 0) (at 163.83 63.5 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 163.83 66.04 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 161.29 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 161.29 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 69fe07f8-45cb-40b2-b3cf-585226fdd67d)) + (pin "2" (uuid 5172bc08-4958-4602-bede-2323f1738662)) + (pin "3" (uuid 14bfcb32-6294-4c5e-bf53-7339427d8486)) + (pin "4" (uuid b5d26147-ef4b-46b9-8bd5-e660edf8eb66)) + (pin "5" (uuid 50a91d76-f2f8-4f3b-86f1-f6807492fb91)) + (pin "6" (uuid d462ef0c-1f2a-4c4a-b5d4-28e58010094e)) + (pin "7" (uuid 1e0accc5-0406-45f0-ac4b-783f51dfe315)) + (pin "8" (uuid 0192bab7-5e6b-4f9d-8c16-35d17a502ddb)) + (pin "9" (uuid 2d0b286e-9812-4d6e-b6a2-4f0f42178123)) + (pin "10" (uuid 74b08f42-e6a1-4564-b7f7-fd9ec0e82d1a)) + (pin "11" (uuid 44955d54-7523-467d-b2bf-070432455329)) + (pin "12" (uuid 5ad65921-0b46-48b5-b3c0-ca945fda5089)) + (pin "13" (uuid 69ef8eee-a0bb-439b-b11e-52ad954b8b70)) + (pin "14" (uuid a2ecf2e9-a05a-43f9-b43e-5ade77c48e1c)) + (pin "15" (uuid b4264552-9db6-4ad9-9a03-8b96c0061c1c)) + (pin "16" (uuid bdecdd7d-6df5-4d1f-91f6-a118c378cae8)) + (pin "17" (uuid faa1d270-565c-4612-ad4a-5f2793e7a3b4)) + (pin "18" (uuid 36e52832-4f76-485f-9ca6-8379dd580b38)) + (pin "19" (uuid 32078121-c1df-4e09-b84a-1569774e35a6)) + (pin "20" (uuid 14c4b622-ef09-42a2-a492-f4169d62061f)) + (pin "21" (uuid 5d5257c3-ee8a-44a5-8947-4173b405b5e0)) + (pin "22" (uuid 5fe73c5b-0e4e-4bff-b5d1-e78f9fd98612)) + (pin "23" (uuid b2635a65-b06d-4102-9fc6-349d1b8a2e0a)) + (pin "24" (uuid a8a78d77-66a6-4d69-b3d6-750fa08b4050)) + (pin "25" (uuid 97f7c331-c320-4674-8221-708189b18dd1)) + (pin "26" (uuid f13ecc0b-8493-496a-a4f8-62a11213756b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 107.95 181.61 270) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6fcaee4d-6a79-42d9-978a-fc5782aab792) + (property "Reference" "U2" (id 0) (at 110.49 181.61 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 110.49 184.15 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 107.95 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 107.95 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 734884fa-5a04-4c39-abc8-aaf14aed8925)) + (pin "2" (uuid 059ed56a-07ad-46a1-a8a5-6eb947b9caf8)) + (pin "3" (uuid fa550766-ccde-41a6-9561-0401989bf3d1)) + (pin "4" (uuid 525f97fd-4f03-4bf9-9960-fde7da84ccb6)) + (pin "5" (uuid 0abfbded-9f0d-45fe-8b3b-5ed0194c9406)) + (pin "6" (uuid d176a7bc-4a7a-4386-82bd-5c6bd2b5d753)) + (pin "7" (uuid 4b806033-416f-4b79-a5cd-635285cdc620)) + (pin "8" (uuid 0b48ba0a-56b5-41e4-81af-4d9da48a21d0)) + (pin "9" (uuid 56d8beea-6bf0-45b7-91b6-e01f0b25c762)) + (pin "10" (uuid 29998be4-3d66-40b8-8ccf-529746cd791c)) + (pin "11" (uuid be3f5361-36bd-4555-862b-6a74430930b0)) + (pin "12" (uuid 54def2ed-6f25-4938-bf7c-19bf17ca4dd5)) + (pin "13" (uuid 78a901aa-37cb-4ed5-b9f9-e633e7295ad1)) + (pin "14" (uuid 8005427e-413b-4383-a024-1605289b798f)) + (pin "15" (uuid 1c460f10-5c51-4fe0-832e-aae37261d3fc)) + (pin "16" (uuid 014ca045-d1f9-4972-8379-decaaaef9a68)) + (pin "17" (uuid 5bbd04a8-7575-4844-8fef-3696ab615b62)) + (pin "18" (uuid c83e82ff-1274-4675-8a4e-1bf5afe101a8)) + (pin "19" (uuid 667319fc-5cb0-4040-b70b-f784e22cd42a)) + (pin "20" (uuid 4fa749a1-c40e-4daa-9232-86134d06151d)) + (pin "21" (uuid b0267d07-9892-4cd9-92f5-82cc007185e2)) + (pin "22" (uuid c32cf52b-b1fe-406b-a57e-6b5ae6f6b11f)) + (pin "23" (uuid 9639ccdf-0876-4f3b-b28a-a5d76007db50)) + (pin "24" (uuid b8fd179a-f470-4c23-a138-c8b13ab2a5af)) + (pin "25" (uuid f46ab9da-7062-4667-92b3-ac43f1378be1)) + (pin "26" (uuid b0f35a58-7977-4292-bcaf-9df0a99fdf93)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 307.34 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7524f8de-0a11-4bb0-b85c-accee23edfa2) + (property "Reference" "U11" (id 0) (at 309.3594 62.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 309.3594 66.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 307.34 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 307.34 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6ba6ab01-9b9a-4d58-aeb5-e6f7932c4c2d)) + (pin "2" (uuid a6de2e25-299e-472d-a456-2daf1c04d3ec)) + (pin "3" (uuid 10ad5237-1cea-4163-a343-787e7a08f6e3)) + (pin "4" (uuid 631eea56-e03a-4927-ac9b-661505afe3fe)) + (pin "5" (uuid 801eb3a0-6245-4b4c-b44a-8cf3ded7649d)) + (pin "6" (uuid b6a5f440-9dca-44f1-b322-8afd8b2b9370)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 36.83 86.36 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a1b1115-5cbb-44a7-ae5a-1b287c1d8a14) + (property "Reference" "U2" (id 0) (at 37.465 81.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 37.465 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 36.83 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 36.83 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87048435-339d-4049-9d99-d373f524412b)) + (pin "2" (uuid 301f6b42-e3f5-4df8-b6ec-5d66433856e0)) + (pin "3" (uuid 32511a6d-6975-4fb0-a4ca-585a0a981735)) + (pin "4" (uuid 84e42e92-d6c9-4730-906c-2e90c22176cf)) + (pin "5" (uuid 6bce18af-589a-4e07-ba04-fd31a4302621)) + (pin "6" (uuid 4f7fe798-2778-4add-8fe2-be1f3463c133)) + (pin "7" (uuid 77a9ecc2-b723-4547-8d83-9f1a58b9ec61)) + (pin "8" (uuid 0bbfc28f-841e-48f7-b56b-67333f07d967)) + (pin "9" (uuid d4264f9b-893c-455a-9935-646b7c3e8b66)) + (pin "10" (uuid 2d473e22-5182-4181-98ce-e4b8e3ef0891)) + (pin "11" (uuid ab67d849-fd58-4f92-8c6b-f6887824f851)) + (pin "12" (uuid a4a8ca0d-fb90-483c-a828-50d75b50340e)) + (pin "13" (uuid ae89968c-d2b3-4556-b23a-5b58ee9ae770)) + (pin "14" (uuid ec7e021e-c578-4314-9eea-bbac03fffa2b)) + (pin "15" (uuid 9457394b-0877-4b6a-af76-2abd06250a3c)) + (pin "16" (uuid cb06a2b8-32a5-4410-859e-d3ffb0a29e8d)) + (pin "17" (uuid decf376f-8264-4616-a864-920f91de9543)) + (pin "18" (uuid 2db4bc04-056b-49ec-9d46-caedbe61263e)) + (pin "19" (uuid 859cf14c-fd60-440f-a882-781e01d6ba39)) + (pin "20" (uuid a2ca2c5c-0fa7-4018-8baa-6ba8dc81c113)) + (pin "21" (uuid db175da5-7405-4f74-a38b-20d105c965cd)) + (pin "22" (uuid e49836ed-1272-407d-8cb5-e8189497c17a)) + (pin "23" (uuid 920d1fcf-439f-459c-9a31-b471e12fc17c)) + (pin "24" (uuid a889fd31-53b5-4405-8765-09d19d91c21d)) + (pin "25" (uuid c7579475-4423-4dab-baa9-7c12ceaa08c7)) + (pin "26" (uuid d4659d68-2667-492a-b025-daa49a80cfe9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 267.97 63.5 270) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8733dbc8-33e3-483e-835f-df0d8c4713ad) + (property "Reference" "U2" (id 0) (at 270.51 63.5 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 270.51 66.04 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 267.97 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 758f0e4c-5d92-4268-b621-aeaa87fca5d2)) + (pin "2" (uuid 74c8ed27-76f0-4ff0-96a5-3ce5a2a4e288)) + (pin "3" (uuid 84ea4d90-7d8d-4994-a66e-b5e8c5073090)) + (pin "4" (uuid 2cb3574d-c5a2-42df-be46-2b1660350391)) + (pin "5" (uuid 75d8fe15-5ae7-48f9-aecd-94ae45012697)) + (pin "6" (uuid b401d38f-7e97-40f8-81fa-b53de1a2eef7)) + (pin "7" (uuid 53326479-bd2e-44e1-ab36-5a614d240e96)) + (pin "8" (uuid 9eebadec-274e-434d-935b-c6d48f9fd80f)) + (pin "9" (uuid 8df30500-0b4b-4a39-9329-75da65b14c80)) + (pin "10" (uuid 38134f8c-3681-438b-9e09-47e7f213158f)) + (pin "11" (uuid 5be07325-4f9b-4b00-b939-5872f37ee92b)) + (pin "12" (uuid afa3f397-dff0-4c57-b602-08d00fb12fe6)) + (pin "13" (uuid ce676db4-ee25-4a67-8b54-e9ffe8d7699b)) + (pin "14" (uuid 75ecca47-8bab-4ea8-97c3-b33852d65e6e)) + (pin "15" (uuid 4eca62c3-8df9-45d9-b0a2-03f7dbd7f6b7)) + (pin "16" (uuid 50be0fea-4d42-4722-9f15-fdc88860b146)) + (pin "17" (uuid f43307ea-b1d3-41fc-bb8a-541ebfc0a096)) + (pin "18" (uuid 9657b383-d266-443b-b33b-0f967cd43833)) + (pin "19" (uuid 377fdedf-133e-4031-9812-c6728fad4a97)) + (pin "20" (uuid d7f16259-40c1-4d28-bcfc-f26804f85b12)) + (pin "21" (uuid 87b3b4ad-5423-43d0-b228-ebe2dbbe4ebd)) + (pin "22" (uuid a11c6a75-2955-48b6-b036-22794da0b3f2)) + (pin "23" (uuid 1ec1e8ab-3d86-43f5-8485-50bb9ef104e4)) + (pin "24" (uuid ee8b393d-aa8e-40b0-9d4a-d2c01bb1eec8)) + (pin "25" (uuid bfbf062a-5232-4992-8c04-87c500ba89a3)) + (pin "26" (uuid 02d52056-faa5-4e63-ac4a-00afad5c0fba)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 374.65 181.61 270) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid acda8ef6-59af-43a6-82ce-7e913663fbcc) + (property "Reference" "U2" (id 0) (at 377.19 181.61 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 377.19 184.15 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 374.65 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3ac4b2e1-84c1-41f1-9432-c63bff794f9e)) + (pin "2" (uuid 18102ec5-852f-4608-b7bd-40829d2254bd)) + (pin "3" (uuid 5286f950-8df1-4b4b-a08e-61189fb4dbdc)) + (pin "4" (uuid 9ba042e0-ed63-41b2-bb29-fcda2bf411f2)) + (pin "5" (uuid 18976b3e-984e-4e78-bd42-59218131f984)) + (pin "6" (uuid 8c63709a-1c8e-4f21-9a1c-ff5eafa1eabb)) + (pin "7" (uuid 9e6eed14-c81d-42e2-863b-1e9849ef7904)) + (pin "8" (uuid fcc83869-6f83-4dd8-8f71-df963db36f52)) + (pin "9" (uuid 407e3d7a-5382-46e6-8944-ee30420bb75b)) + (pin "10" (uuid 8a8bb938-8933-40f0-b155-032c1e6e0871)) + (pin "11" (uuid 19a704c4-ec74-4d98-abef-aea932c5ec6c)) + (pin "12" (uuid 6848ecf9-75a5-40e5-9efb-f4db182fbfed)) + (pin "13" (uuid d4f52e80-f71a-4b4a-b8de-b56ebe4a176f)) + (pin "14" (uuid 20e5ec56-576b-44ec-b474-fdd921149f0b)) + (pin "15" (uuid b37cf27c-120c-43a0-82c8-e8bcc35c4971)) + (pin "16" (uuid 154f525b-3ce9-459f-8c5c-27b15dfecbb3)) + (pin "17" (uuid b7d95948-9170-46b2-8424-a76b5e2614dc)) + (pin "18" (uuid 221a5f18-1c6c-4e4f-bdf0-8f3a8854ddae)) + (pin "19" (uuid 644a5c71-92f3-4664-823e-74cd0f98b450)) + (pin "20" (uuid 70f2bccf-8b12-4873-97be-f669b5327b8f)) + (pin "21" (uuid f38dbe7f-8256-4906-a2da-6f07884f8000)) + (pin "22" (uuid bb9ee293-f6f2-4cb0-bc6c-0e84985c0997)) + (pin "23" (uuid 77ee4037-55bc-4d7a-849d-47c4f6e602f8)) + (pin "24" (uuid 565fc0e4-7b03-4391-ae03-98e2241ff327)) + (pin "25" (uuid bb06417a-11d3-4fef-b899-738764cb6d18)) + (pin "26" (uuid f1cfec04-eb9e-472c-b40f-6bad1f226891)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 147.32 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b7f192b1-c48c-4e20-af58-56d296fcf874) + (property "Reference" "U6" (id 0) (at 149.3394 180.34 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 149.3394 184.15 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 147.32 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 147.32 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid df5f1c05-e98b-4fa8-811b-058a64e7472f)) + (pin "2" (uuid f967a6ac-8632-4c8f-ae85-8468e85fffcd)) + (pin "3" (uuid bb8c6ae4-b845-49e3-980b-ec5dae236d3d)) + (pin "4" (uuid 6dbabdd7-dfa2-42ab-b8f9-64f280734978)) + (pin "5" (uuid c117757c-814c-4df7-9762-489b298bb72a)) + (pin "6" (uuid e1fcfd93-8ad2-4214-847a-7b1bfef1dac0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 161.29 181.61 270) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c31c79df-8e4c-4cd2-9be0-98ffd0200c66) + (property "Reference" "U2" (id 0) (at 163.83 181.61 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 163.83 184.15 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 161.29 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 161.29 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ba09f493-c348-49e9-9100-b7e49e5ec599)) + (pin "2" (uuid 0632e716-5dec-495b-bb91-b3dc24bd2da1)) + (pin "3" (uuid e76afcd1-c8f4-4932-bef7-d22ac9c647a5)) + (pin "4" (uuid e2f43fb3-d17b-4eca-9180-f3f1086df633)) + (pin "5" (uuid 40a884a9-72bc-424a-84b6-417cdb9fc6d2)) + (pin "6" (uuid ea3f2160-1f20-406b-a5af-e16097c8e1d3)) + (pin "7" (uuid 48f398a1-7ab7-4905-9b44-c39c498b53b7)) + (pin "8" (uuid 020385df-bb4c-4815-879f-5f58a3ecf07e)) + (pin "9" (uuid f1072115-8d7b-4c21-913c-2beed60536c3)) + (pin "10" (uuid b51c0111-1be2-4db3-92f8-c57cea6975f6)) + (pin "11" (uuid eed709f2-a530-4bca-ab8d-0860149af746)) + (pin "12" (uuid df5ead36-c636-4ba3-85aa-023b71096000)) + (pin "13" (uuid 8c412a20-389f-4701-b4d4-97d326665e4e)) + (pin "14" (uuid df7bd4b6-b345-4c48-ba3f-9922aae4a5fc)) + (pin "15" (uuid c5435f28-3f86-47d7-aad1-b34a2d5fe656)) + (pin "16" (uuid 0e9e5343-93ef-4e6d-bb50-04e62d000a5d)) + (pin "17" (uuid 4a024bdb-e09a-4f7b-b121-aafcd7ee82cb)) + (pin "18" (uuid d6462e3d-bb03-48a7-b5fb-2a5806d8265f)) + (pin "19" (uuid db8d5082-6885-4822-8bcd-5748477234f3)) + (pin "20" (uuid 25424469-8f67-4c4e-96fd-9cde40e4de25)) + (pin "21" (uuid 85e8468a-409d-4557-b07b-e31a49849e10)) + (pin "22" (uuid 8ba18d8a-5797-44a6-ac2d-8b9259823e66)) + (pin "23" (uuid 19ad6a79-8fad-4e11-92d4-9dbe0ae4f3ed)) + (pin "24" (uuid b69655a8-7e20-4a71-b34e-72e47e8db29a)) + (pin "25" (uuid 0e8dba33-b9c0-4820-b51d-e8df8d763463)) + (pin "26" (uuid d5ff9e6f-4614-4766-98ac-6346152ea63b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 267.97 181.61 270) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc48d0d4-27bf-4e89-971d-e724902c3605) + (property "Reference" "U2" (id 0) (at 270.51 181.61 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 270.51 184.15 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 267.97 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ee5d0382-9bff-4028-bd98-55d0900aef66)) + (pin "2" (uuid 661dc942-30b4-4ef6-9260-1c6c99d46a58)) + (pin "3" (uuid 154723c5-d540-4fb8-987f-90b4b8c0374e)) + (pin "4" (uuid a6bba3f3-93e4-4aca-80a5-f823700e581c)) + (pin "5" (uuid b9dfd77d-434b-41ba-be6e-e9db0c8a26d7)) + (pin "6" (uuid a4fd0d56-1e04-4ae2-aae4-6645732c9f3b)) + (pin "7" (uuid 44cc71f6-16c3-4a68-823b-4b7441e805c1)) + (pin "8" (uuid 9988542c-a7f9-4a4b-909b-b8cf5add2fdd)) + (pin "9" (uuid 3239fd59-3ba9-4966-8f0e-712bf0250f84)) + (pin "10" (uuid c552009b-b31d-46b3-95c8-bd0cec074a92)) + (pin "11" (uuid f4cf7d5b-efb0-4f16-9cb4-6615521b0477)) + (pin "12" (uuid 9f0c162e-debb-4341-88d1-81850ffa24e7)) + (pin "13" (uuid ff4fb1e9-3ccb-4043-96bc-b333760aea82)) + (pin "14" (uuid a4a2f602-acba-438c-ac56-09e1b076539d)) + (pin "15" (uuid 34ce71c5-031f-48cb-8c6e-e96fcbf1dedc)) + (pin "16" (uuid 1102406c-1c0a-40df-b143-eb40f8f082e5)) + (pin "17" (uuid ef7d92fd-1200-4313-9c1f-aa635b79f98c)) + (pin "18" (uuid 9ebb6569-75e4-40c4-9339-35392cc9e7f9)) + (pin "19" (uuid 429ce15e-8af3-4e1e-a92b-238502533d4d)) + (pin "20" (uuid e2349bb6-fdf9-4897-87df-3b099ee5d98e)) + (pin "21" (uuid 24741c01-ba13-4278-a95e-74b399cc3a1a)) + (pin "22" (uuid 97c70e8f-ddcf-4788-bcb0-2e5caba1433b)) + (pin "23" (uuid 103df80a-1c0d-4ef4-91c6-da51ad84d524)) + (pin "24" (uuid 81a9a8f5-17a2-461b-a8e8-3f82e9beca2c)) + (pin "25" (uuid 6c615f8f-33f8-428c-9450-66f1ef1d96a8)) + (pin "26" (uuid 854a22c8-3421-4559-af4e-4a965b338028)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 214.63 63.5 270) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cd61717c-3d84-4d25-aeb2-9557dfd72392) + (property "Reference" "U2" (id 0) (at 217.17 63.5 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 217.17 66.04 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 214.63 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eafdbf15-1e9b-493d-b6b7-0d0c45779195)) + (pin "2" (uuid 3976fd35-f88a-4f63-9a12-82323981ff88)) + (pin "3" (uuid 5a401d9d-df8f-4189-b7e9-be6fae168203)) + (pin "4" (uuid 1d50d14e-9d78-4e29-a9e9-0c164313f6e7)) + (pin "5" (uuid e0d5d179-15c2-425f-a194-7a45ff9cd02f)) + (pin "6" (uuid a987dd51-ded9-4194-9b7d-a3fa83b7db74)) + (pin "7" (uuid df84a3a0-d289-4df8-89f0-3aab5198f488)) + (pin "8" (uuid 5030aa93-9a54-4693-9076-07f67c03dd51)) + (pin "9" (uuid 04f832e9-1558-481f-9925-b0368a7f4cc2)) + (pin "10" (uuid 482bc8fa-62d6-4bd9-a762-8bafa8000a0f)) + (pin "11" (uuid c8e700ac-042d-42d6-a0f9-64056e66b32d)) + (pin "12" (uuid 9c42b7fb-11cb-4797-b16e-89ca17bc17d6)) + (pin "13" (uuid df9231c8-cb9b-47c4-b18a-0f297a85da7e)) + (pin "14" (uuid f5c9d106-5082-410b-8a08-0c20d799cd52)) + (pin "15" (uuid 01a9fb22-c0be-4700-80f7-23502ae66da5)) + (pin "16" (uuid 7ff6aa17-6bb8-4fc1-957d-3288bdf8db53)) + (pin "17" (uuid e58b1c23-aca0-4533-86e0-8af03cbdc7ad)) + (pin "18" (uuid 7fa0012d-183f-402f-bdbf-678ed3e2d009)) + (pin "19" (uuid ade98184-99e4-4996-8855-f16ee46db882)) + (pin "20" (uuid 995ae30d-79c0-4fa8-9d4b-36512c080a9f)) + (pin "21" (uuid db1a6541-7000-42d9-a86b-20bfb949d5a6)) + (pin "22" (uuid fc59f922-9063-457b-9438-5bd0ada4461c)) + (pin "23" (uuid cf008dac-56b3-4740-a486-c6f0fe022ed0)) + (pin "24" (uuid a84de904-7139-4540-a63d-f57acd8f361d)) + (pin "25" (uuid 707d37e4-e637-4e0d-ad6e-1db8e129e12c)) + (pin "26" (uuid e687b936-3a6c-4c00-88a0-35bd35284f74)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 321.31 63.5 270) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d1e842ee-ea6b-4f07-96af-e21ef72e8e71) + (property "Reference" "U2" (id 0) (at 323.85 63.5 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 323.85 66.04 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 321.31 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 321.31 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fd887ca0-c77d-4bc6-bcc1-56d748df0755)) + (pin "2" (uuid 3180d97f-4cee-4890-93ce-d8fb8c3a6358)) + (pin "3" (uuid 3faaf4c8-df12-4f9a-99ea-0c9ed1b0f35e)) + (pin "4" (uuid 751697de-287e-4961-8523-9768366bd59e)) + (pin "5" (uuid 0e5a3aa4-df41-446b-bb52-99b53c8451c4)) + (pin "6" (uuid 6a57cf3b-6f3a-4aa3-bdb6-307f11f8099f)) + (pin "7" (uuid ba61ac2d-0340-4cc9-83b8-866bacbca2f8)) + (pin "8" (uuid 54cfef04-9d50-4c5b-970a-d6448f35de2b)) + (pin "9" (uuid b2ae005a-f47b-4365-b733-30fa5c41ee3a)) + (pin "10" (uuid ed81e941-cdeb-49ea-977f-9b41e406762d)) + (pin "11" (uuid 3df4767b-9095-4787-9296-38043aec7398)) + (pin "12" (uuid d08459a8-5ae6-4e9b-b9a6-8363fdebe123)) + (pin "13" (uuid 6fad88a7-ed16-4b49-b084-fff4b5f86c03)) + (pin "14" (uuid d9c213db-8f1b-429c-bd06-e7edbe550e30)) + (pin "15" (uuid 1c090a18-d0b5-4083-94e4-fab86ccb5f38)) + (pin "16" (uuid 86895512-7822-463c-b56a-1a97bb02a78c)) + (pin "17" (uuid 06ca4891-d240-4134-b9d4-adc23ad716d7)) + (pin "18" (uuid a5ae5d4e-4767-4395-9500-73431c5b1518)) + (pin "19" (uuid 9227a204-232c-4376-9323-d51160bcdd9f)) + (pin "20" (uuid dd94b8ab-21f4-41c2-8385-b42cd21f900f)) + (pin "21" (uuid 5a472085-b35d-44c2-b08e-d730b3af97c8)) + (pin "22" (uuid 429a0a4a-c78d-44ba-97b4-eaa938701bbf)) + (pin "23" (uuid 1adcac0d-c81f-4a02-b076-7108d692adfc)) + (pin "24" (uuid 94184c9c-9d05-46fb-8018-cfa958a23523)) + (pin "25" (uuid 1f7088d8-2249-455c-bfc6-293d4988fea1)) + (pin "26" (uuid 09a10f63-0328-42d9-b101-79dfc6669389)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 374.65 63.5 270) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d310f081-a6e3-466d-a533-66af6ef000ff) + (property "Reference" "U2" (id 0) (at 377.19 63.5 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 377.19 66.04 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 374.65 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2393835b-2caf-48f2-8f23-09284b7fb787)) + (pin "2" (uuid 5174130c-0955-4b74-a8c1-964b34c57fd8)) + (pin "3" (uuid 223b0fb6-3fa2-43a9-b23a-bc02cc1e8f76)) + (pin "4" (uuid bd413127-8002-46a7-8ced-3ebbfdb7952b)) + (pin "5" (uuid 68f5b695-35c8-416f-a6bb-b96d85228079)) + (pin "6" (uuid 6b74b13d-3f32-4959-93a4-3f3e06b2714b)) + (pin "7" (uuid 875c2136-06c9-4319-acbc-29fccd5694f9)) + (pin "8" (uuid 27357e8d-a06c-462b-ab74-325d3d011f7c)) + (pin "9" (uuid 315b763a-23d7-4307-b741-49f6950d7907)) + (pin "10" (uuid 8d66c9aa-a9f0-4a6f-9ce5-6d557d8f3a43)) + (pin "11" (uuid e15dd7a6-8824-4a55-aaf7-43debaf4f35b)) + (pin "12" (uuid 839c39a8-e2d2-4318-8579-35f8b9bd61e9)) + (pin "13" (uuid 1760c743-a52a-466b-9f4f-3fa4e2700dc8)) + (pin "14" (uuid e7392980-3746-4a90-aa43-d0f4a20e066d)) + (pin "15" (uuid 198a1728-ffbb-4281-bdae-7e03a766118c)) + (pin "16" (uuid 187698aa-8bfd-47a1-ad23-e96455ed9fe3)) + (pin "17" (uuid 41107a7f-07e2-4b75-b18f-1c17900c4689)) + (pin "18" (uuid 655c928c-7134-4f62-a9ba-82ae261e7e2c)) + (pin "19" (uuid dd149c77-1923-4b2d-b265-be548af91af7)) + (pin "20" (uuid 6f4b8ef9-ebf2-4d70-b182-3df81664960c)) + (pin "21" (uuid 23e51f97-0f74-4c8c-8aa0-b8a1c0eeebc8)) + (pin "22" (uuid 09efd825-5826-49e7-b08c-0af26fd852af)) + (pin "23" (uuid 170a18c2-7c59-43b7-908f-e83b5e8ccfa9)) + (pin "24" (uuid 22158f8d-c5f6-4419-be85-c8fc77269f2a)) + (pin "25" (uuid 9d459f08-aae3-4510-a8b8-506ade5da9d1)) + (pin "26" (uuid 6e2d345d-20a4-45bb-9517-03ea16c1944e)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 147.32 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d5571143-8dbe-4cc6-b097-81d3fb0b8fb1) + (property "Reference" "U5" (id 0) (at 149.3394 62.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 149.3394 66.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 147.32 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 147.32 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c68f7bd2-0653-4cf5-abfc-b00edb80b158)) + (pin "2" (uuid 0f82be32-7dba-496f-98e9-2cdc875a6783)) + (pin "3" (uuid ad665da1-4c64-45e3-b748-64d6bd31bfbc)) + (pin "4" (uuid 7b96baa3-8bf2-49de-8e80-52f6dad73fcb)) + (pin "5" (uuid 514914f6-09fe-4180-a3b1-f9652eb977bc)) + (pin "6" (uuid 08b999ad-039a-42be-8922-3abb0a4b3140)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 254 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d59ebc96-523d-4dfe-9037-e73d29ba2d7e) + (property "Reference" "U10" (id 0) (at 256.0194 180.34 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 256.0194 184.15 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 254 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dc0036c8-8e74-4e70-b0f5-828b177fb3ec)) + (pin "2" (uuid 77e1eebd-ff0b-4945-a1b2-412ae56d6fc9)) + (pin "3" (uuid ba414009-05af-4a6d-a3e2-6776e4abee41)) + (pin "4" (uuid 45786071-7d1c-4bd0-a8a4-ebe953eb71bd)) + (pin "5" (uuid 1b44256b-ee30-4784-bf9d-521426979ee0)) + (pin "6" (uuid 17fc293f-dff3-4e9f-8877-830cfe3a5e7c)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 200.66 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d827f737-bfa8-416d-983b-8891d58af6cb) + (property "Reference" "U8" (id 0) (at 202.6794 180.34 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 202.6794 184.15 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 200.66 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 99b875f7-753c-41aa-9e16-ce03e542fae2)) + (pin "2" (uuid e458132d-4812-4044-a305-cc9d2f5462de)) + (pin "3" (uuid d87adf45-5334-4205-af1a-b91d6f4e9417)) + (pin "4" (uuid d660a54d-2e1b-41b9-a364-2d96952c8014)) + (pin "5" (uuid 97680e2a-466c-477a-8dbf-fc19eb47cd13)) + (pin "6" (uuid 8d58ae5d-2b9e-4c46-9745-7af6ce321152)) + ) + + (symbol (lib_id "eSim_Sources:DC") (at 30.48 250.19 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db6df3c4-ff15-478c-9ae8-c3dfbdfcbf5a) + (property "Reference" "v1" (id 0) (at 35.56 247.015 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "DC" (id 1) (at 35.56 250.825 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 35.56 254.635 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 30.48 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6898c648-4d6d-44dc-9730-f92502a7ea79)) + (pin "2" (uuid bdf16aa4-0bf8-4333-aed4-73201b4d1535)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 321.31 181.61 270) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e6f45dd3-4f88-41d8-9e0c-ab3319f9f664) + (property "Reference" "U2" (id 0) (at 323.85 181.61 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 323.85 184.15 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 321.31 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 321.31 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a74a42db-db50-4b32-b65f-700b20a8a255)) + (pin "2" (uuid 9299a3e6-1ccc-4945-b6d7-c6aad8fdf6f1)) + (pin "3" (uuid 360e9ec6-5bbc-4b0f-a6da-42a44ed571ed)) + (pin "4" (uuid 7d8948eb-2eb8-446c-bdd9-623bf3f20903)) + (pin "5" (uuid 2803e106-2275-40a4-9d0b-a3af5a99f5fc)) + (pin "6" (uuid 4609f411-12ae-4b2d-b9f2-a60515723ca7)) + (pin "7" (uuid 11268965-f4ea-4c01-95a0-7accd1ed449f)) + (pin "8" (uuid 03bd8a80-b066-4b3f-903d-4c2fbf3b658e)) + (pin "9" (uuid 845efa9f-aa14-4422-9283-07d0213f0d84)) + (pin "10" (uuid 394af77b-d857-4651-9d76-e53432139746)) + (pin "11" (uuid c6aea2f7-48d1-48d2-8390-7a30b2e66fee)) + (pin "12" (uuid 4658049a-1b87-4a38-88ec-abb8b8a6d80c)) + (pin "13" (uuid c5c3fdf5-5275-486c-92a1-0e21037b8f81)) + (pin "14" (uuid 1eb50e86-122a-44f6-9a97-5ebd617d85f7)) + (pin "15" (uuid d982fa27-b4b5-4d5a-aae5-082150a50b56)) + (pin "16" (uuid 2084637f-a54d-412d-b689-fc863a787632)) + (pin "17" (uuid ea9f9679-8f3b-43a3-a147-ad84236af50b)) + (pin "18" (uuid 3dbfdd8d-e127-4c73-ae5e-5363ba15d941)) + (pin "19" (uuid 30ade7f6-c36c-452e-8eae-98bd2bcd1c13)) + (pin "20" (uuid 9f289b66-518e-4325-a19c-387ab7792abc)) + (pin "21" (uuid 55ca5c8b-08bf-4477-828d-b8ae252207bf)) + (pin "22" (uuid f5a01787-dfce-4158-8bff-41dfd6bffd00)) + (pin "23" (uuid 56aedb7b-b156-4b19-860a-d2a3fa006a83)) + (pin "24" (uuid 2bb59ad8-9115-42f8-9279-42f896b3ae65)) + (pin "25" (uuid 2979080b-0866-4d25-9522-b4d96a157ad4)) + (pin "26" (uuid fa98d175-9836-4a0f-8e1e-37d413514fd8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 214.63 181.61 270) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8397ca5-d665-49f0-9c31-7bb94c9e7d6c) + (property "Reference" "U2" (id 0) (at 217.17 181.61 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 217.17 184.15 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 214.63 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 214.63 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1acc5612-3235-4bfa-b0b3-fb70d58850e1)) + (pin "2" (uuid 900c0b07-d8da-4d36-9ec9-ae26d863e8f7)) + (pin "3" (uuid 4fe40ae1-3495-48c9-b40d-0c6fce11678a)) + (pin "4" (uuid 21aa0fea-ebf6-4fc1-815b-aba90db80c88)) + (pin "5" (uuid 9deafdd8-18e4-4faf-b9a4-cce97bfe285b)) + (pin "6" (uuid e84b5f37-71d1-4416-84e9-a7aa932224c9)) + (pin "7" (uuid 6431f518-7d76-4510-a65a-d0a65244df86)) + (pin "8" (uuid 9397955a-b96d-4eae-aa11-d9127750305f)) + (pin "9" (uuid 26b269f6-ae4d-41b0-9b44-dcd4fa4e03c8)) + (pin "10" (uuid 071e5530-dd07-4ee7-8c17-4c9f40d79d32)) + (pin "11" (uuid 5dcb296c-bc47-42e4-84f0-8122af6986da)) + (pin "12" (uuid 58c3f200-d906-440f-941f-aa82255860c4)) + (pin "13" (uuid a1660f50-818c-4609-a856-f622fd990521)) + (pin "14" (uuid a392bb3d-9074-4054-9794-114965df1c08)) + (pin "15" (uuid 2e62fc1b-c4cf-47dc-b30d-428147bf964e)) + (pin "16" (uuid 2cc28fba-d591-403e-ae9e-a8c5bfa61b37)) + (pin "17" (uuid c989ee24-46b9-44f5-bcf2-08fea4ba0208)) + (pin "18" (uuid df3edd89-bdbd-4ede-997c-2f091e64412d)) + (pin "19" (uuid 2ca135fd-c782-4ffb-be40-94d301cfd11a)) + (pin "20" (uuid dac8ce6a-549e-40c2-b19d-3260a775cbba)) + (pin "21" (uuid a7d899c1-8916-4411-b49c-98ab7bc68557)) + (pin "22" (uuid 67c44cca-70d7-4dca-aa67-360d8e429eb5)) + (pin "23" (uuid 912c4611-dbdf-4266-86b0-496d70f1f173)) + (pin "24" (uuid f339f46e-8993-4850-ba38-8cab07bce827)) + (pin "25" (uuid 73bfc481-2eba-4c5a-8367-99e305f4d4d4)) + (pin "26" (uuid dccc4f76-a2df-4636-95c7-261680081590)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 307.34 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ebc42723-33e4-4a00-bedd-e55a77ca4070) + (property "Reference" "U12" (id 0) (at 309.3594 180.34 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 309.3594 184.15 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 307.34 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 307.34 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e686ee12-fab3-4b77-a08d-d677aa5f152b)) + (pin "2" (uuid d84b6507-ea0c-4416-bd1e-25944a599863)) + (pin "3" (uuid eda2ad14-1d55-4e99-8e2d-4311253249a2)) + (pin "4" (uuid c7f52dcf-80bc-4056-8577-28b27c5bd7af)) + (pin "5" (uuid b7191cbf-ddb8-4aa1-a2e0-7554e7957b3d)) + (pin "6" (uuid 5f64f53c-a8b2-4e63-91fa-fd92b497547c)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 93.98 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f7115849-321a-4bc9-93dc-d27e276f36a1) + (property "Reference" "U3" (id 0) (at 95.9994 62.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 95.9994 66.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 93.98 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 93.98 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0f7e80bf-7711-4888-a84a-b9c71097d730)) + (pin "2" (uuid 101775ee-c994-4ed4-8752-566db42e9c83)) + (pin "3" (uuid 94f9dec9-089d-4613-950e-85168c0c6d07)) + (pin "4" (uuid 75cb5512-aafe-445e-a694-b56e6c811cfd)) + (pin "5" (uuid 8546c8d6-870f-47b5-b72a-ff4922fc303f)) + (pin "6" (uuid e66d2a6e-1375-419e-a5d5-50ba161f23da)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 31.75 223.52 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid f78c6966-e983-4f24-be4c-51e5034add2e) + (property "Reference" "U1" (id 0) (at 34.29 222.885 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "adc_bridge_1" (id 1) (at 27.94 217.17 0) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 31.75 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 31.75 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e555d8e-7369-4380-8222-c93d6a564342)) + (pin "2" (uuid c9890e2f-318c-41ce-9e0e-bfab95420cea)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 254 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f870d6a8-f3ac-484f-a3df-ce28a4ce8840) + (property "Reference" "U9" (id 0) (at 256.0194 62.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 256.0194 66.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 254 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 281fecea-f19c-427a-a815-9fb1103dc550)) + (pin "2" (uuid 9331ed31-495b-401a-b10b-28d3fdf0556b)) + (pin "3" (uuid 5e4f38fe-f480-40c8-ad14-379922ee78c7)) + (pin "4" (uuid 2bc690c6-6ff2-46a4-b4f0-d703ee21f9a7)) + (pin "5" (uuid c51e8f4e-7e4e-408f-8d8e-d80b3199becd)) + (pin "6" (uuid 664bc7ae-27a7-4cce-b59d-94e3e43beabc)) + ) + + (symbol (lib_id "eSim_Digital:d_tff") (at 360.68 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fda1cd7f-5e49-4edf-9029-14f4caade6d2) + (property "Reference" "U13" (id 0) (at 362.6994 62.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_tff" (id 1) (at 362.6994 66.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 360.68 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 360.68 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 38f012aa-c749-4113-b18f-dd54a830d24f)) + (pin "2" (uuid 5da0a633-011a-4f4a-90d7-cd8929181ce6)) + (pin "3" (uuid 5f5ce059-2cdb-4d63-9e22-dd33ed83d526)) + (pin "4" (uuid 599dc0ce-c02e-4ecf-8908-bff8f78b85dd)) + (pin "5" (uuid 23bf7c21-ac7b-4cf8-a824-076056877911)) + (pin "6" (uuid 5af160e5-6120-487d-b33d-c40aab651faa)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/5e1e696a-a8ae-4199-915e-7bf21c40bfab" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/f78c6966-e983-4f24-be4c-51e5034add2e" + (reference "U1") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/7a1b1115-5cbb-44a7-ae5a-1b287c1d8a14" + (reference "U2") (unit 2) (value "PORT") (footprint "") + ) + (path "/0e857c95-06ea-42e7-9d5d-47c74fe48ef8" + (reference "U2") (unit 3) (value "PORT") (footprint "") + ) + (path "/587eae62-21a1-4703-8ad4-f56ab488f7be" + (reference "U2") (unit 4) (value "PORT") (footprint "") + ) + (path "/6cff8c63-2552-4fb9-9ad3-50bc13b1825a" + (reference "U2") (unit 5) (value "PORT") (footprint "") + ) + (path "/cd61717c-3d84-4d25-aeb2-9557dfd72392" + (reference "U2") (unit 6) (value "PORT") (footprint "") + ) + (path "/8733dbc8-33e3-483e-835f-df0d8c4713ad" + (reference "U2") (unit 7) (value "PORT") (footprint "") + ) + (path "/d1e842ee-ea6b-4f07-96af-e21ef72e8e71" + (reference "U2") (unit 8) (value "PORT") (footprint "") + ) + (path "/d310f081-a6e3-466d-a533-66af6ef000ff" + (reference "U2") (unit 9) (value "PORT") (footprint "") + ) + (path "/6fcaee4d-6a79-42d9-978a-fc5782aab792" + (reference "U2") (unit 10) (value "PORT") (footprint "") + ) + (path "/c31c79df-8e4c-4cd2-9be0-98ffd0200c66" + (reference "U2") (unit 11) (value "PORT") (footprint "") + ) + (path "/e8397ca5-d665-49f0-9c31-7bb94c9e7d6c" + (reference "U2") (unit 12) (value "PORT") (footprint "") + ) + (path "/cc48d0d4-27bf-4e89-971d-e724902c3605" + (reference "U2") (unit 13) (value "PORT") (footprint "") + ) + (path "/e6f45dd3-4f88-41d8-9e0c-ab3319f9f664" + (reference "U2") (unit 14) (value "PORT") (footprint "") + ) + (path "/acda8ef6-59af-43a6-82ce-7e913663fbcc" + (reference "U2") (unit 15) (value "PORT") (footprint "") + ) + (path "/f7115849-321a-4bc9-93dc-d27e276f36a1" + (reference "U3") (unit 1) (value "d_tff") (footprint "") + ) + (path "/2158569c-d8a2-4ae9-86f7-ce550e366c85" + (reference "U4") (unit 1) (value "d_tff") (footprint "") + ) + (path "/d5571143-8dbe-4cc6-b097-81d3fb0b8fb1" + (reference "U5") (unit 1) (value "d_tff") (footprint "") + ) + (path "/b7f192b1-c48c-4e20-af58-56d296fcf874" + (reference "U6") (unit 1) (value "d_tff") (footprint "") + ) + (path "/1d3148fa-60f2-4c2a-8463-c1f9a33f61c1" + (reference "U7") (unit 1) (value "d_tff") (footprint "") + ) + (path "/d827f737-bfa8-416d-983b-8891d58af6cb" + (reference "U8") (unit 1) (value "d_tff") (footprint "") + ) + (path "/f870d6a8-f3ac-484f-a3df-ce28a4ce8840" + (reference "U9") (unit 1) (value "d_tff") (footprint "") + ) + (path "/d59ebc96-523d-4dfe-9037-e73d29ba2d7e" + (reference "U10") (unit 1) (value "d_tff") (footprint "") + ) + (path "/7524f8de-0a11-4bb0-b85c-accee23edfa2" + (reference "U11") (unit 1) (value "d_tff") (footprint "") + ) + (path "/ebc42723-33e4-4a00-bedd-e55a77ca4070" + (reference "U12") (unit 1) (value "d_tff") (footprint "") + ) + (path "/fda1cd7f-5e49-4edf-9029-14f4caade6d2" + (reference "U13") (unit 1) (value "d_tff") (footprint "") + ) + (path "/332ff61d-535e-4e37-9274-4e40e3e70039" + (reference "U14") (unit 1) (value "d_tff") (footprint "") + ) + (path "/db6df3c4-ff15-478c-9ae8-c3dfbdfcbf5a" + (reference "v1") (unit 1) (value "DC") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.sub new file mode 100644 index 000000000..3881e0796 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b.sub @@ -0,0 +1,59 @@ +* Subcircuit CD4040b +.subckt CD4040b net-_u2-pad2_ net-_u10-pad4_ net-_u2-pad4_ net-_u2-pad5_ net-_u2-pad6_ net-_u11-pad2_ net-_u11-pad5_ net-_u13-pad5_ net-_u2-pad10_ net-_u2-pad11_ net-_u10-pad2_ net-_u10-pad5_ net-_u12-pad5_ net-_u14-pad5_ +.title kicad schematic +* u4 net-_u1-pad2_ net-_u13-pad5_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u2-pad10_ unconnected-_u4-pad6_ d_tff +* u6 net-_u1-pad2_ net-_u2-pad10_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u2-pad11_ unconnected-_u6-pad6_ d_tff +v1 net-_u1-pad1_ gnd dc 5 +* u1 net-_u1-pad1_ net-_u1-pad2_ adc_bridge_1 +* u14 net-_u1-pad2_ net-_u12-pad5_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_tff +* u12 net-_u1-pad2_ net-_u10-pad5_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ d_tff +* u11 net-_u1-pad2_ net-_u11-pad2_ unconnected-_u11-pad3_ net-_u10-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ d_tff +* u13 net-_u1-pad2_ net-_u11-pad5_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ d_tff +* u5 net-_u1-pad2_ net-_u2-pad4_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u2-pad5_ unconnected-_u5-pad6_ d_tff +* u3 net-_u1-pad2_ net-_u2-pad2_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u2-pad4_ unconnected-_u3-pad6_ d_tff +* u9 net-_u1-pad2_ net-_u2-pad6_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u11-pad2_ unconnected-_u9-pad6_ d_tff +* u7 net-_u1-pad2_ net-_u2-pad5_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u2-pad6_ unconnected-_u7-pad6_ d_tff +* u10 net-_u1-pad2_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ d_tff +* u8 net-_u1-pad2_ net-_u2-pad11_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u10-pad2_ unconnected-_u8-pad6_ d_tff +a1 net-_u1-pad2_ net-_u13-pad5_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u2-pad10_ unconnected-_u4-pad6_ u4 +a2 net-_u1-pad2_ net-_u2-pad10_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u2-pad11_ unconnected-_u6-pad6_ u6 +a3 [net-_u1-pad1_ ] [net-_u1-pad2_ ] u1 +a4 net-_u1-pad2_ net-_u12-pad5_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a5 net-_u1-pad2_ net-_u10-pad5_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ u12 +a6 net-_u1-pad2_ net-_u11-pad2_ unconnected-_u11-pad3_ net-_u10-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ u11 +a7 net-_u1-pad2_ net-_u11-pad5_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ u13 +a8 net-_u1-pad2_ net-_u2-pad4_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u2-pad5_ unconnected-_u5-pad6_ u5 +a9 net-_u1-pad2_ net-_u2-pad2_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u2-pad4_ unconnected-_u3-pad6_ u3 +a10 net-_u1-pad2_ net-_u2-pad6_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u11-pad2_ unconnected-_u9-pad6_ u9 +a11 net-_u1-pad2_ net-_u2-pad5_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u2-pad6_ unconnected-_u7-pad6_ u7 +a12 net-_u1-pad2_ net-_u10-pad2_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ u10 +a13 net-_u1-pad2_ net-_u2-pad11_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u10-pad2_ unconnected-_u8-pad6_ u8 +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u4 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u6 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u14 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u12 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u11 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u13 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u5 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u3 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u9 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u7 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u10 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_tff, Ngspice Name: d_tff +.model u8 d_tff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 t_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Control Statements + +.ends CD4040b \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b_Previous_Values.xml new file mode 100644 index 000000000..ebb160f47 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/CD4040b_Previous_Values.xml @@ -0,0 +1 @@ +dc5d_tffd_tffadc_bridged_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tffd_tfftruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/analysis b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CD4040b/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.cir new file mode 100644 index 000000000..4eaa783b9 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.cir @@ -0,0 +1,7 @@ +.title KiCad schematic +X3 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad5_ TRISTATE +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ PORT +X1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ TRISTATE +X2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad4_ TRISTATE +X4 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad6_ TRISTATE +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.cir.out new file mode 100644 index 000000000..1508cdd1d --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.cir.out @@ -0,0 +1,17 @@ +.title kicad schematic + +.include TRISTATE.sub +x3 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad5_ TRISTATE +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ port +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ TRISTATE +x2 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad4_ TRISTATE +x4 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad6_ TRISTATE +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.kicad_sch new file mode 100644 index 000000000..92c251d69 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.kicad_sch @@ -0,0 +1,676 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 036b2b1a-e2d9-47eb-9c1e-a1d4c624a695) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Subckt:TRISTATE" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TRISTATE" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TRISTATE_0_1" + (polyline + (pts + (xy -5.08 3.81) + (xy -5.08 -3.81) + (xy 8.89 0) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "TRISTATE_1_1" + (pin input line (at -7.62 0 0) (length 2.54) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -5.08 90) (length 2.54) + (name "OE" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 0 180) (length 2.54) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 107.95 81.28) (diameter 0) (color 0 0 0 0) + (uuid 1051b774-a6a0-41cd-aeed-53a71bc20951) + ) + (junction (at 101.6 50.8) (diameter 0) (color 0 0 0 0) + (uuid 34b0e8cd-d314-4242-a22b-703ba2e66c3f) + ) + (junction (at 107.95 106.68) (diameter 0) (color 0 0 0 0) + (uuid 4438b310-a065-41a3-b797-50196a393b57) + ) + (junction (at 107.95 55.88) (diameter 0) (color 0 0 0 0) + (uuid b9675359-69a1-4508-974f-996fd4525735) + ) + (junction (at 101.6 76.2) (diameter 0) (color 0 0 0 0) + (uuid c036d019-1620-4f3b-95d8-47a6b1855494) + ) + (junction (at 101.6 101.6) (diameter 0) (color 0 0 0 0) + (uuid c40c3200-09e2-4228-9432-3fc24eb538fc) + ) + + (wire (pts (xy 114.3 50.8) (xy 101.6 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21704574-8433-4f0a-9677-ee504f74975f) + ) + (wire (pts (xy 101.6 76.2) (xy 114.3 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50d5da61-c496-4f6d-b179-496ec6e3a23e) + ) + (wire (pts (xy 101.6 101.6) (xy 101.6 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4cfca8f-d150-419c-8d74-41523e9d0536) + ) + (wire (pts (xy 107.95 81.28) (xy 107.95 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a58f72a4-228b-48c6-a267-b3f54aba0cc3) + ) + (wire (pts (xy 107.95 55.88) (xy 107.95 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac39d238-83c4-4154-867d-18139b6854ba) + ) + (wire (pts (xy 101.6 76.2) (xy 101.6 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afbfbcc3-e5b4-4579-a72e-8c42613664ab) + ) + (wire (pts (xy 88.9 55.88) (xy 107.95 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b42ad20e-23f3-49e7-a8a7-dbde22ff3b22) + ) + (wire (pts (xy 101.6 127) (xy 114.3 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc03f3ee-81a0-44fd-af73-596c7aa60c37) + ) + (wire (pts (xy 107.95 106.68) (xy 107.95 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c47d10a3-ecca-4490-b49d-2fcce4e736cb) + ) + (wire (pts (xy 88.9 50.8) (xy 101.6 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf6534ab-3575-4b9d-a956-10ac2c15f0cd) + ) + (wire (pts (xy 121.92 55.88) (xy 107.95 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d731d9a2-2fcf-43b3-a775-7beda4e9c0d6) + ) + (wire (pts (xy 107.95 81.28) (xy 121.92 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dacf1453-28bf-42c7-8c16-98b21bfb70b5) + ) + (wire (pts (xy 101.6 50.8) (xy 101.6 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2f98952-26cb-4c00-8a74-34020cb0ff87) + ) + (wire (pts (xy 121.92 106.68) (xy 107.95 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0234eaf-d361-4130-84bf-0c7d994d945c) + ) + (wire (pts (xy 107.95 132.08) (xy 121.92 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f35c554c-87e4-49ab-b029-ed07e821fb4f) + ) + (wire (pts (xy 114.3 101.6) (xy 101.6 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f676032b-86aa-404f-a22f-ed600804c4fa) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 139.7 101.6 0) (mirror y) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17da0f04-72c0-4bfe-8fab-b225bfbeb2b4) + (property "Reference" "U1" (id 0) (at 143.51 100.965 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 143.51 103.505 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 139.7 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c9d48ad6-6c4a-4d1d-b6ab-9fa3f5f6fdbc)) + (pin "2" (uuid 758d0072-937a-478d-af3a-95076e51e082)) + (pin "3" (uuid 7ec8fb64-0217-40e0-9d4b-5906a995e90a)) + (pin "4" (uuid 48ac0f0c-65be-4a85-8e0d-49639387b468)) + (pin "5" (uuid c115bda6-bd9e-4cc8-be00-4e517c02178d)) + (pin "6" (uuid 68957b43-7f9c-4bad-a599-7c867a521208)) + (pin "7" (uuid b517921c-4e45-4b0f-b807-07fe00b26400)) + (pin "8" (uuid 1dc9b758-f14f-466b-b038-41da38b7efbd)) + (pin "9" (uuid e3b508aa-ebce-4bde-8787-15dce6e8e390)) + (pin "10" (uuid 7317f8be-73f6-4621-b428-84a17b9fe75a)) + (pin "11" (uuid 1e97950d-7f1c-43d8-bec9-aaeb6a6ce201)) + (pin "12" (uuid c23e173f-bea8-4855-80a9-7d2e5b631fda)) + (pin "13" (uuid 9ad1597a-e366-4158-a4b7-f8dd0ed30761)) + (pin "14" (uuid e35d0a3b-9fee-43bc-b381-1acfaba4026a)) + (pin "15" (uuid 420443dc-cac3-4185-aa6a-d6aba1e565a5)) + (pin "16" (uuid 1947481f-76a0-40f5-b1da-d5e25cc2f8c9)) + (pin "17" (uuid 54891054-57ab-44b0-a90a-78010024c5bd)) + (pin "18" (uuid 149756a0-79b3-49ee-9226-49304a7b7c93)) + (pin "19" (uuid 2c77b57f-12d8-4b9e-9969-69d5e6b8cbd1)) + (pin "20" (uuid bcf621e3-568d-45cc-a892-ab8b255296c5)) + (pin "21" (uuid 05e8f1fc-96f3-46cd-8696-6371a28aedfe)) + (pin "22" (uuid 4fd4e881-d154-4890-8931-d10e39bd6b00)) + (pin "23" (uuid cc9a8ada-2d96-4f20-a464-5766e3abedd5)) + (pin "24" (uuid 02f97e45-5630-4a46-ae8a-c0a131564269)) + (pin "25" (uuid 93127656-7c60-477c-b6c3-5e3cc3399708)) + (pin "26" (uuid c5f246ee-2bc1-4085-8078-090c561cb33f)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 121.92 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4cebf4be-641d-4740-a026-d7b55a4d3abd) + (property "Reference" "X4" (id 0) (at 123.825 118.11 0)) + (property "Value" "TRISTATE" (id 1) (at 123.825 120.65 0)) + (property "Footprint" "" (id 2) (at 121.92 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 121.92 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dc568a28-34d4-43e3-bab4-7463f7491a99)) + (pin "2" (uuid 37a0e004-71e8-4a86-a376-1d36354f38b4)) + (pin "2" (uuid ac5f676b-5b2d-4361-b3c5-da874136086a)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 121.92 50.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 60b0a480-c3c4-4f15-8cdd-b4b6fd1d0baa) + (property "Reference" "X1" (id 0) (at 123.825 41.91 0)) + (property "Value" "TRISTATE" (id 1) (at 123.825 44.45 0)) + (property "Footprint" "" (id 2) (at 121.92 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 121.92 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 89f4745e-2cd6-4a6a-aef7-2e4a707375fc)) + (pin "2" (uuid 99ea0581-9d1b-45dc-acba-f84c3f90f722)) + (pin "2" (uuid 262269a3-8744-4f7b-b99c-8b590f8f39b7)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 121.92 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 66d85020-a30a-4505-96a1-cadb89b9d89f) + (property "Reference" "X3" (id 0) (at 123.825 92.71 0)) + (property "Value" "TRISTATE" (id 1) (at 123.825 95.25 0)) + (property "Footprint" "" (id 2) (at 121.92 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 121.92 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 13cec4a7-3196-41d3-a452-3bfe2769fe54)) + (pin "2" (uuid 0b82811e-1dd1-444f-9209-bc0386d55f52)) + (pin "2" (uuid e0100d4f-1036-41f9-a6d7-392bd09dd805)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 82.55 50.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6aef0d0a-2ff5-43d9-bf6d-bb370833f2eb) + (property "Reference" "U1" (id 0) (at 83.185 45.72 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 83.185 48.26 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 82.55 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d57ac39-b2b4-4b35-b293-2d9cd704ac9c)) + (pin "2" (uuid c681a817-3c49-4b4c-8af7-bd425b45131f)) + (pin "3" (uuid c32e80a8-eadf-4f6a-b21e-4454e2e12d84)) + (pin "4" (uuid d236eaa0-707e-49de-9856-2537a5763b39)) + (pin "5" (uuid ba5889a3-bf57-4e94-8576-714564eefde0)) + (pin "6" (uuid a1ca725b-2b38-461c-acd0-4ff75cc1126b)) + (pin "7" (uuid d322419c-fab3-4114-ab5f-dd7dd8931704)) + (pin "8" (uuid 3ac2666d-6c4c-4904-8b28-2fea74022d2a)) + (pin "9" (uuid 3d46b782-5abe-497c-84c2-60ef5fd960b0)) + (pin "10" (uuid f55b45a6-e6f7-46c3-8e74-e3ee90fbacee)) + (pin "11" (uuid f885df04-5c4b-42aa-8ce6-38a2f5bca410)) + (pin "12" (uuid af31ba93-b623-47f0-a195-dadbc78163f3)) + (pin "13" (uuid f4e50e3f-fe7a-41df-99f9-d1a40356c9ba)) + (pin "14" (uuid c471e788-3810-4a6b-9fa0-0750bf5f93ec)) + (pin "15" (uuid e517f52a-cc22-4149-b11e-cfba4741e86b)) + (pin "16" (uuid a43e929b-4551-4009-8d21-80d38fed2799)) + (pin "17" (uuid 40ca3122-ad75-4f23-bac1-c2d7f429fd0a)) + (pin "18" (uuid 79976d3e-36d3-4001-9e56-5289bf55011e)) + (pin "19" (uuid d7c6a73b-5e3c-461b-a874-51b9e887a95f)) + (pin "20" (uuid 117f6273-b24a-4f36-a361-731d277a0c98)) + (pin "21" (uuid 455cbc34-a636-4424-a13f-14caccfba665)) + (pin "22" (uuid c1a95679-12d2-4ed4-a046-472d792e93f2)) + (pin "23" (uuid 464dfd77-d22c-4d7b-b96a-5e2f93aaf2be)) + (pin "24" (uuid 434ff2bf-6623-438b-9b39-7fd0940292bd)) + (pin "25" (uuid 629eb5cb-ffb8-4a2e-8811-f8851dff2628)) + (pin "26" (uuid 0ddd28e7-d014-4578-afdd-bfc1745eeb02)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 139.7 76.2 0) (mirror y) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9defe0a7-3eff-4bc6-a207-5d85a5ed5e50) + (property "Reference" "U1" (id 0) (at 143.51 75.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 143.51 78.105 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 139.7 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 61c213c4-9a00-4a49-9e39-1cc0f72ea49b)) + (pin "2" (uuid fc781ce6-cdc0-4779-a9d3-14aa6b5d1531)) + (pin "3" (uuid da53e6e8-ae31-4f51-a26d-c6a0f7385609)) + (pin "4" (uuid e175369c-ba36-40a2-b54c-bf871fa67273)) + (pin "5" (uuid 8f84108e-5232-4413-bd00-a50e804e0dd2)) + (pin "6" (uuid 4aa6f45e-184d-43bf-8cee-308a80f5d7c9)) + (pin "7" (uuid d16e5e95-f327-4363-b69c-c2d5758320fc)) + (pin "8" (uuid c70928fd-2ca1-4fca-96c6-47b7f4740d95)) + (pin "9" (uuid e292a41f-0b1a-4c91-96e6-0c8203090e10)) + (pin "10" (uuid 8c930cf8-151a-471f-bffa-2435de018a69)) + (pin "11" (uuid 39e6cc14-fe38-4df7-a386-51a5bc03d7ec)) + (pin "12" (uuid b47b2345-eb04-4248-a50c-e3b2433171b6)) + (pin "13" (uuid cbe77ecc-5a2f-49a1-85a5-a0ecffed28aa)) + (pin "14" (uuid e1824b01-91ad-4c4d-afb2-06ae83769c9b)) + (pin "15" (uuid d0e40275-1151-49cc-98e2-a303cf2bd687)) + (pin "16" (uuid 4d90b2c6-b1da-4eae-80c3-2cb16285c5db)) + (pin "17" (uuid 7c88f9ff-c863-42ba-8708-c77e717aa6f9)) + (pin "18" (uuid a76e9ea8-bb34-41f4-991b-cd866ac8caa5)) + (pin "19" (uuid 22daa3f3-bd5e-4e5c-b12d-cf6bf9807334)) + (pin "20" (uuid fce82dc6-c4d6-49e2-8465-cf8c02e6ed92)) + (pin "21" (uuid 18e12836-89d5-4b3b-ad92-ffcaa271fde4)) + (pin "22" (uuid 03365794-7a1f-4858-ab13-47f5239a03af)) + (pin "23" (uuid 24314067-6ab5-4bbb-b4df-b2fbcec64c6b)) + (pin "24" (uuid 6912084e-e4f2-4367-a0ae-4901fbea5ee4)) + (pin "25" (uuid 045c785f-0f09-47c6-b648-5f0a99b25e8d)) + (pin "26" (uuid ba2ff010-27e9-46e5-a189-aac48e966d55)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 82.55 55.88 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c16836f6-f8a4-4a42-aabf-2cbe719b952b) + (property "Reference" "U1" (id 0) (at 83.185 50.8 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 83.185 53.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 82.55 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d852e83-09ae-43aa-bce7-f48f1f8ad520)) + (pin "2" (uuid 05114f52-33a1-410d-9cd8-09d9415b53ee)) + (pin "3" (uuid 8084cfaa-077e-47e1-8810-5acbc01be67e)) + (pin "4" (uuid 38492ebd-c0be-45d3-b640-4ece8fa102dd)) + (pin "5" (uuid 0a58960f-e34f-4c7b-abc1-8b5b0fdde7c6)) + (pin "6" (uuid 869c82de-ad0b-4294-bdd4-5186819aa9c6)) + (pin "7" (uuid c402e5e0-b66a-4e5a-93c7-3ca4ed7d9e6b)) + (pin "8" (uuid 499262d6-6780-4ef6-bfcf-29c5e0e810a4)) + (pin "9" (uuid 0141babf-6220-4b0f-ad9e-c89a1b69dd3e)) + (pin "10" (uuid 796bb3c1-2636-41b6-97f4-699fb4f4a570)) + (pin "11" (uuid 6c046fd3-05a9-4aed-ae35-8f8307576a8f)) + (pin "12" (uuid 1e077a06-3904-421c-be74-55bcb86c41f6)) + (pin "13" (uuid 434b95a8-1a70-4aee-b142-9bc6d7558998)) + (pin "14" (uuid d57626d2-25ec-43b4-b8b9-e917e64884c2)) + (pin "15" (uuid bba553c7-b12a-4870-953d-39f4c02f1124)) + (pin "16" (uuid 72cd71e3-af3f-4d97-8b24-b9a06db37b43)) + (pin "17" (uuid 43ede637-5a2f-44bf-aafa-7993508d19ec)) + (pin "18" (uuid a01a63bd-fbe5-4085-a16a-cd313218148d)) + (pin "19" (uuid 8ad0c0eb-d033-4c79-8e2d-02ca6e9604f1)) + (pin "20" (uuid 2334b8c2-4e04-4a76-b5b7-fe59f5e99203)) + (pin "21" (uuid 18df11b2-582d-496d-a2ed-97b947029768)) + (pin "22" (uuid 52add091-a4cc-440a-9c0e-348e4e8056c3)) + (pin "23" (uuid e4f5b26d-92fa-4569-8e7a-172d4773b125)) + (pin "24" (uuid 4d5cca42-4c5b-4454-aac0-85a9539f0754)) + (pin "25" (uuid 785e4b3b-8d78-4257-abb7-22bbc82fb3ac)) + (pin "26" (uuid c9dc8bc5-302c-450e-90fe-fbb45c302d85)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 139.7 50.8 0) (mirror y) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d4b6aa71-c996-47fb-b698-b4e07f8ad6c6) + (property "Reference" "U1" (id 0) (at 143.51 50.165 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 143.51 52.705 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 139.7 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 56c8e369-e7e5-406f-9778-79652ca4813c)) + (pin "2" (uuid 651eba9e-2fcd-4a0c-ba62-bbc49c1946ab)) + (pin "3" (uuid 39123f88-c964-4de8-9edf-e1a230d6e4b3)) + (pin "4" (uuid 064d475f-19a2-42b5-b773-c0fff3ef68bc)) + (pin "5" (uuid 215ee817-ed15-4a37-9ebf-f0d9d62213a0)) + (pin "6" (uuid 1ae7d64e-33e2-4310-8240-8b728ccbba67)) + (pin "7" (uuid dca87fef-cd6c-441c-9664-8268a4c02b19)) + (pin "8" (uuid dad6d337-fc91-4758-8d1f-bc449049277b)) + (pin "9" (uuid 252d0bba-8c1a-4951-b808-7f67958d7d74)) + (pin "10" (uuid 9170b054-cea7-4ec5-9ae1-6bf347506e3f)) + (pin "11" (uuid fcc4afa2-83aa-45a9-b37f-41cd11184719)) + (pin "12" (uuid 767fa8d5-2373-4546-b759-3493b1877c50)) + (pin "13" (uuid fb9db1ff-6d2f-4605-b9ab-d6a252070f6b)) + (pin "14" (uuid cef9d652-a93f-40fb-a75a-38cd25537d40)) + (pin "15" (uuid 99891002-bb12-4b2a-9639-d6469e06c013)) + (pin "16" (uuid 909d6972-ebfc-401f-9c20-daa226aee6c2)) + (pin "17" (uuid 219f2f88-a352-4a55-ac13-ef78adf0e039)) + (pin "18" (uuid 99bd7052-6f03-4813-8436-27eb4d786efd)) + (pin "19" (uuid fb021e26-8e5d-46f0-85a3-c0654f0aba99)) + (pin "20" (uuid a3c3aada-849e-42ac-b70f-9cc60300aca2)) + (pin "21" (uuid 90c5a7b5-97c4-49c5-b82c-a7573617601e)) + (pin "22" (uuid 543c6440-f193-4410-b613-4bf64eb2c0f6)) + (pin "23" (uuid 34eb5b70-dc8d-4ba8-947c-479967aad7ac)) + (pin "24" (uuid 22426645-48ee-4633-8d14-ae8018c50dda)) + (pin "25" (uuid b8718c6e-e18f-4b32-a22a-e6b33d68d4b7)) + (pin "26" (uuid f9d00f5c-5d3b-4a3a-9705-b48380e2d300)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 139.7 127 0) (mirror y) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f2094eb1-5689-44b5-8edc-1e8f1c5869b4) + (property "Reference" "U1" (id 0) (at 143.51 126.365 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 143.51 128.905 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 139.7 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a8cce8f-8cc2-404c-a276-1b284a120c70)) + (pin "2" (uuid 50d6ad26-8495-444a-ab72-094192c8cffb)) + (pin "3" (uuid 64cd8e50-4005-4b22-9ad8-05ce8e599c0c)) + (pin "4" (uuid fad26c1c-2470-4c08-bd3e-fdb05005474b)) + (pin "5" (uuid 40177643-e8b9-470d-a1a6-de9e18ee0a7a)) + (pin "6" (uuid 149e52d7-ce87-40f1-a4e1-392b8b131314)) + (pin "7" (uuid d82186c5-088f-4aee-9e45-25f9bc8e4a09)) + (pin "8" (uuid 3230381a-efb4-4c5a-82df-b2edee524e8f)) + (pin "9" (uuid a351d00c-8bdf-485e-baac-20da9a8283c0)) + (pin "10" (uuid 84e05e61-bc38-4437-8994-6f500060c6cc)) + (pin "11" (uuid 23b546e9-2bd0-4f45-a519-26b510b524d7)) + (pin "12" (uuid 06d5a599-6277-4389-a4a9-61424b91c683)) + (pin "13" (uuid b747508b-61b1-424e-8c4e-cf23d4fb77cd)) + (pin "14" (uuid f914304d-f4b0-45bb-b2dc-31e9bd58ff1a)) + (pin "15" (uuid 8ac94ec4-ba98-4558-9af0-e44c82ad7203)) + (pin "16" (uuid e96c7dde-0a54-42d6-87e2-ca9e72de5cb6)) + (pin "17" (uuid 6d36f2ef-78ac-467c-a8ba-5191ef15ebc0)) + (pin "18" (uuid bdf5e9ea-1aa1-478e-8a4a-9c70a547c05a)) + (pin "19" (uuid 53541597-3248-4950-be00-b2956d85e6b2)) + (pin "20" (uuid ebf48813-0341-4108-b1c7-51733234026d)) + (pin "21" (uuid 9c57b1c8-6f0a-4f26-9076-2c4d857ff6de)) + (pin "22" (uuid 5dcfdad9-ccf8-4ad4-8874-2a230720b85b)) + (pin "23" (uuid 32eb23be-194c-47cf-ba89-452d7b6d2d24)) + (pin "24" (uuid 108f4257-e139-4c30-9dbc-1929e2b0390e)) + (pin "25" (uuid 8cba6b38-cf87-40e9-b7be-f28b3c71409b)) + (pin "26" (uuid 931b2fb3-903a-4c9b-8caf-cdbe25f023bb)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 121.92 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9a78dc2-e009-4518-92e1-55aaedb655d6) + (property "Reference" "X2" (id 0) (at 123.825 67.31 0)) + (property "Value" "TRISTATE" (id 1) (at 123.825 69.85 0)) + (property "Footprint" "" (id 2) (at 121.92 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 121.92 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e6cef65a-94b3-45bb-a0af-989ac7f2e6f3)) + (pin "2" (uuid cfd456cd-d7cf-495e-b9da-c303c7103efa)) + (pin "2" (uuid e0e344b7-d3c1-41b5-b5fa-3771f8e3b6bf)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/6aef0d0a-2ff5-43d9-bf6d-bb370833f2eb" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/c16836f6-f8a4-4a42-aabf-2cbe719b952b" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/d4b6aa71-c996-47fb-b698-b4e07f8ad6c6" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/9defe0a7-3eff-4bc6-a207-5d85a5ed5e50" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/17da0f04-72c0-4bfe-8fab-b225bfbeb2b4" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/f2094eb1-5689-44b5-8edc-1e8f1c5869b4" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/60b0a480-c3c4-4f15-8cdd-b4b6fd1d0baa" + (reference "X1") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/f9a78dc2-e009-4518-92e1-55aaedb655d6" + (reference "X2") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/66d85020-a30a-4505-96a1-cadb89b9d89f" + (reference "X3") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/4cebf4be-641d-4740-a026-d7b55a4d3abd" + (reference "X4") (unit 1) (value "TRISTATE") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.sub new file mode 100644 index 000000000..f4446e780 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034.sub @@ -0,0 +1,11 @@ +* Subcircuit CDCV034 +.subckt CDCV034 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ +.title kicad schematic +.include TRISTATE.sub +x3 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad5_ TRISTATE +x1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ TRISTATE +x2 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad4_ TRISTATE +x4 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad6_ TRISTATE +* Control Statements + +.ends CDCV034 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034_Previous_Values.xml new file mode 100644 index 000000000..4c17ade03 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/CDCV034_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secususC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATE \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.cir new file mode 100644 index 000000000..caac1cdde --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.cir @@ -0,0 +1,10 @@ +.title KiCad schematic +v1 Net-_U2-Pad1_ GND DC +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ PORT +U5 Net-_U3-Pad2_ Net-_U2-Pad2_ Net-_U5-Pad3_ d_and +U4 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U4-Pad3_ d_and +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ adc_bridge_1 +U3 Net-_U1-Pad1_ Net-_U3-Pad2_ d_inverter +U7 Net-_U6-Pad3_ Net-_U1-Pad3_ d_buffer +U6 Net-_U4-Pad3_ Net-_U5-Pad3_ Net-_U6-Pad3_ d_or +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.cir.out new file mode 100644 index 000000000..ed8bfe9ca --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.cir.out @@ -0,0 +1,37 @@ +.title kicad schematic + +v1 net-_u2-pad1_ gnd dc 0 +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ port +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.kicad_sch new file mode 100644 index 000000000..5238469a9 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.kicad_sch @@ -0,0 +1,926 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 6fc943a8-97d8-4111-93e9-49bb4a164911) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "DC" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DC_0_1" + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DC_1_1" + (pin power_out line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 111.76 93.98) (diameter 0) (color 0 0 0 0) + (uuid 14ad2087-2eee-431b-8842-3056e26a34e8) + ) + + (wire (pts (xy 111.76 93.98) (xy 109.22 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 163f5430-84cc-4a80-8e5f-6f2a5f27f6b7) + ) + (wire (pts (xy 135.89 109.22) (xy 134.62 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26a2e51d-f8c9-4603-977a-ec3441476833) + ) + (wire (pts (xy 116.84 95.25) (xy 116.84 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31a0d277-7413-4301-8b23-2d4c654bd540) + ) + (wire (pts (xy 111.76 69.85) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 454df123-e845-4d03-8c39-7a0fc517b763) + ) + (wire (pts (xy 111.76 69.85) (xy 138.43 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56f10ce4-3616-4390-9a32-7b62234bf80f) + ) + (wire (pts (xy 227.33 83.82) (xy 229.87 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58a0316b-fdad-40e3-96f7-cb28e4b5690b) + ) + (wire (pts (xy 114.3 72.39) (xy 138.43 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a1f4464-c616-4a33-82f9-8dd8ebfb0a8c) + ) + (wire (pts (xy 102.87 109.22) (xy 105.41 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a2a2aba-beae-4a0a-9586-601cd854cbd0) + ) + (wire (pts (xy 161.29 96.52) (xy 161.29 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e0ecf4a-5933-465a-9bc3-1b74f4efaf29) + ) + (wire (pts (xy 114.3 96.52) (xy 114.3 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b403cfa-1a57-4ee1-b716-cf37e8d9a005) + ) + (wire (pts (xy 259.08 83.82) (xy 261.62 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dbc0d1f-7850-4943-8d03-441ae7413488) + ) + (wire (pts (xy 198.12 83.82) (xy 194.31 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81e2c941-f56c-4b6a-b07e-98f1f9c7c54a) + ) + (wire (pts (xy 109.22 96.52) (xy 114.3 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92b18b87-08f1-4557-b338-e1b8d2e6c64d) + ) + (wire (pts (xy 171.45 82.55) (xy 161.29 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5e9c456-8d3d-429d-9282-26751c5dbd39) + ) + (wire (pts (xy 135.89 97.79) (xy 135.89 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1b4e869-1d4c-4bf4-a93c-d9d36305f47d) + ) + (wire (pts (xy 116.84 93.98) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c61e6996-3647-45c1-ad4c-4c25bf5a03b5) + ) + (wire (pts (xy 135.89 97.79) (xy 138.43 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4d7b8aa-b9bc-44c8-8cb9-e9095b546025) + ) + (wire (pts (xy 161.29 85.09) (xy 171.45 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d790d0d5-c2f2-4059-9cd2-798d5e59687f) + ) + (wire (pts (xy 132.08 95.25) (xy 138.43 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea77a532-5894-4db8-ae63-80cc28fe33af) + ) + (wire (pts (xy 161.29 82.55) (xy 161.29 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edb5b706-046a-4168-bc90-2be18d66c339) + ) + + (symbol (lib_id "eSim_Sources:DC") (at 91.44 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28d3271f-0b04-4869-b592-25b6a93cf6fc) + (property "Reference" "v1" (id 0) (at 94.615 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "DC" (id 1) (at 90.805 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 86.995 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 91.44 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c6852dc-8445-4298-a6db-0adfbc24ef15)) + (pin "2" (uuid c3c580f8-8d30-4cfb-8027-0cf8425f5205)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 102.87 96.52 0) (mirror x) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38309441-1575-4a2b-944e-764f9fe4894f) + (property "Reference" "U1" (id 0) (at 99.06 95.885 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 99.06 98.425 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fabc537-ea69-46a4-ba6c-0ec84d4cec14)) + (pin "2" (uuid d8dd5360-1679-4365-8ef5-1eef35533f7e)) + (pin "3" (uuid d881c90a-2dac-40c2-9a6f-52da84d0cae8)) + (pin "4" (uuid 0f3bf5d2-8a1b-4ec4-9c42-3856da9b6cb0)) + (pin "5" (uuid 1d897643-dd4b-4941-8747-67b9f05a55de)) + (pin "6" (uuid 6a7e5ae9-bd32-437a-a8c1-eca8831711e2)) + (pin "7" (uuid de4bacfe-1d00-410c-aa1a-d3a2b35b450a)) + (pin "8" (uuid e066b15e-8a93-457b-8a8b-a3d5ae1d5d03)) + (pin "9" (uuid c9c7f6cf-50b4-4096-8281-34b7facb581d)) + (pin "10" (uuid 18665738-4b00-4bba-82cf-e88f22b0471d)) + (pin "11" (uuid f3963046-8d96-4d91-81cd-d14d28544785)) + (pin "12" (uuid 70f92d44-4d8c-4eaf-b2a8-656224365c86)) + (pin "13" (uuid d1196a57-a14f-4b34-adb6-45247031a4d6)) + (pin "14" (uuid 9b7f82d9-2457-4e65-8df7-4e9ff22b39d7)) + (pin "15" (uuid b4c2b962-baaf-40a3-a6b2-1a50ac4da997)) + (pin "16" (uuid 6d7334c7-4e62-4f8b-b5dc-d4bb5287fa8f)) + (pin "17" (uuid abcda22c-abb5-4904-ad85-837b69cd1101)) + (pin "18" (uuid 3fcb2300-dd9e-4a9b-bf0c-2718d9ad6c03)) + (pin "19" (uuid b3a922e0-6519-4bad-93a6-ea37b22bba7e)) + (pin "20" (uuid 472ab7fc-b431-423c-825b-85bdec91808a)) + (pin "21" (uuid 3fd15d5b-3f55-4ec7-bc49-baf57841d2a9)) + (pin "22" (uuid 6bea1ad1-c0e8-4ebb-8246-55cea9c4ca6a)) + (pin "23" (uuid 1c7c7456-fa8f-42ad-ac95-fc738203a6ce)) + (pin "24" (uuid 86cab9cb-b4c1-4e09-825a-132e0bd48750)) + (pin "25" (uuid 0d657127-0db9-450f-82e8-9ffd8a63319a)) + (pin "26" (uuid da4babff-0abb-4869-8346-2672ab1f0017)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 182.88 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48d85cf5-29c1-4f7d-a57e-7b0b69dda574) + (property "Reference" "U6" (id 0) (at 182.88 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 182.88 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4803f9b9-3d9a-4a0e-99e6-0ac59d11de26)) + (pin "2" (uuid 3ce86b27-8c78-4024-9902-7dcccacd7b73)) + (pin "3" (uuid b980b222-0af3-4a60-a3f8-ff1fce4d8999)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 210.82 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48f857eb-4e87-4806-ba4b-646581a37ea2) + (property "Reference" "U7" (id 0) (at 212.725 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 212.725 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f271f174-3439-48da-b056-89a32e36b380)) + (pin "2" (uuid d19fcac4-704f-4df1-b54e-8d4ccf233d8c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 267.97 83.82 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f87ee9d-1a36-4aec-bb00-f8fc24fa2328) + (property "Reference" "U1" (id 0) (at 271.78 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 271.78 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 267.97 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a9cf5e93-05cb-4cbc-8550-f7fe9d78069d)) + (pin "2" (uuid da25feda-dd50-4d21-9670-7c845cc6a349)) + (pin "3" (uuid 44fc7a64-ebda-4f38-92ba-88276337a604)) + (pin "4" (uuid f92e041c-8c0c-48ee-b591-06ec70abe4cd)) + (pin "5" (uuid 7932597d-04dc-4353-8129-ab3aeec8fc84)) + (pin "6" (uuid da1dded5-6865-4682-a456-828706448bef)) + (pin "7" (uuid 6d49815a-f6f8-4fcf-8ba2-2cdc6311c549)) + (pin "8" (uuid 347a1f5f-3cda-4313-99d8-c2a289db132e)) + (pin "9" (uuid 768f90fa-9460-4bb6-97a4-ab394ff229bc)) + (pin "10" (uuid b4cf2cf5-38e4-4e66-a173-349f6c368102)) + (pin "11" (uuid 99e36901-663c-4c66-abe5-eb98576c8789)) + (pin "12" (uuid f2c598ab-bf2a-4800-abb6-3e0fea1f2649)) + (pin "13" (uuid 92a688aa-be93-4c70-847f-be5bfd696262)) + (pin "14" (uuid cd155f93-a81a-48e5-8ddc-57c97df60bae)) + (pin "15" (uuid c4ffe564-7e2e-4d23-99cc-35da40290654)) + (pin "16" (uuid 92ad5362-52f7-4a61-b99d-5e125b5e2083)) + (pin "17" (uuid c86cdd0e-f764-496b-a46b-cd576f890c42)) + (pin "18" (uuid 5d38d459-46e9-4284-84d9-d584d0419dd3)) + (pin "19" (uuid b102cd55-86e0-4ff3-9425-7b0ac613cff0)) + (pin "20" (uuid 82c84431-fd8e-4769-aebb-d75d6afdd9d4)) + (pin "21" (uuid 2d8c3796-9040-422f-bf14-4983d56cc3c4)) + (pin "22" (uuid f4a7ff4b-3170-43e0-ad8d-52a0336464b2)) + (pin "23" (uuid ceb16e80-ae7a-4059-a457-76f88bf107b2)) + (pin "24" (uuid 843c46f2-cf76-4ae5-ba92-c24c18f88cb3)) + (pin "25" (uuid 25572e1a-67c2-4d60-8112-405d60eff7ba)) + (pin "26" (uuid 46a322ed-4e54-4956-a123-a3da09b63880)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1c9e468-be3e-44dd-bf35-9066d1a0e3d2) + (property "Reference" "U5" (id 0) (at 149.86 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4124cb3a-6b00-4e90-80b3-17f9788d220b)) + (pin "2" (uuid d7844aea-e454-4b8b-a5d3-58c650c0d3f3)) + (pin "3" (uuid d2a4f899-5bc4-49dc-9c0a-f82fbfac1c00)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b383818c-4c81-4888-8c80-f39a0b1bf9fb) + (property "Reference" "U4" (id 0) (at 149.86 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6581f4bd-969a-4a52-bf34-34d6e24a433a)) + (pin "2" (uuid 15113e0d-971e-4b81-8359-540fdab0e1aa)) + (pin "3" (uuid c4c6c493-2ab2-4f2e-a773-4f891eead381)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 109.22 87.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba26b670-cee4-4e62-aace-e814c833fd02) + (property "Reference" "U1" (id 0) (at 111.76 87.63 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 111.76 90.17 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 63080624-0ec0-4ae5-89ef-af345042af17)) + (pin "2" (uuid 99ceb699-2891-48db-9745-cb55b3645be8)) + (pin "3" (uuid 6657d604-f5bd-489d-af28-4f3f7b46b567)) + (pin "4" (uuid 0915377e-fef2-4b60-ba68-25802610ea15)) + (pin "5" (uuid 120f4c38-18f2-4e5d-963c-afdac9a3a876)) + (pin "6" (uuid 809be297-aded-4798-bd9f-577c6dfd6178)) + (pin "7" (uuid 39773969-16bb-4965-a4f9-2e82476ccbd7)) + (pin "8" (uuid 1dae0184-17bd-4a01-a90a-40cdefca5d3f)) + (pin "9" (uuid 52f50196-1ee5-46bf-8bf8-f2385c5a69fe)) + (pin "10" (uuid bb9b7048-b168-42f6-bfc2-f4b4aa0bbd9a)) + (pin "11" (uuid b187e2ab-c334-4152-b8c0-3b5e498907ff)) + (pin "12" (uuid 1c9bdb4a-d154-47b3-8b81-de451353fde3)) + (pin "13" (uuid 7eaf8d8b-7fb0-4c9c-944c-b00e3826fc50)) + (pin "14" (uuid 52f5e559-0d9d-4452-a2e2-27d8999c2139)) + (pin "15" (uuid a91512b6-3c7b-42db-9d52-25d4c9a79436)) + (pin "16" (uuid fa77a93f-a43d-49ea-aa29-648d3d6025bb)) + (pin "17" (uuid e8b1dd48-dc04-4c5d-81e4-3af1236fce17)) + (pin "18" (uuid de9c62bf-3c52-4227-9cd3-f4a1f283a2ba)) + (pin "19" (uuid 8bad02cb-7684-4e83-8678-5abc26d1a89a)) + (pin "20" (uuid a7eea872-efce-4e12-8da2-52b19ad6d380)) + (pin "21" (uuid f241a1ee-3551-4be9-92e4-97d1ebc38af8)) + (pin "22" (uuid 79bb6641-9713-4b40-8616-f9182ab9c079)) + (pin "23" (uuid a2bcac0d-12cb-4fad-b934-ba601f9ca54f)) + (pin "24" (uuid 8b968e16-97d5-44b3-8bdf-9a360f8fa18d)) + (pin "25" (uuid dd87e7a1-a6b3-4a50-abb8-a247d0e5c1be)) + (pin "26" (uuid 02d1ede5-5527-4efe-b251-abc0d57bcfec)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 120.65 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8483095-cae6-476c-bd77-f779e93a393e) + (property "Reference" "U2" (id 0) (at 120.015 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 120.015 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ea3cef5-47c4-4031-b109-073353e2f1a8)) + (pin "2" (uuid 8a6e56e6-64bc-44e0-9b1f-561b6ab4ef26)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 245.11 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da856a49-8d85-459f-9fdc-ead362122aeb) + (property "Reference" "U8" (id 0) (at 244.475 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 244.475 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 245.11 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 245.11 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 91b9c0f9-e0fc-4829-8d5b-d8f8057ee59c)) + (pin "2" (uuid 26a9d54d-43f3-4aa3-8ed9-712e8abd47e3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 124.46 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8d0de2d-4efb-48db-9053-78ac24343ec6) + (property "Reference" "U3" (id 0) (at 124.46 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 124.46 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f31cf58b-9a25-4938-b10d-4d0f096b69a8)) + (pin "2" (uuid 364c3335-2d15-43ce-8697-9d3c6e4d95e7)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 80.01 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb45b5f1-df6f-43ee-882f-46b8fbfe058f) + (property "Reference" "#PWR01" (id 0) (at 73.66 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 74.93 109.22 0)) + (property "Footprint" "" (id 2) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4533b25d-acec-4f28-966f-010cbada9d57)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/fb45b5f1-df6f-43ee-882f-46b8fbfe058f" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/ba26b670-cee4-4e62-aace-e814c833fd02" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/38309441-1575-4a2b-944e-764f9fe4894f" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/7f87ee9d-1a36-4aec-bb00-f8fc24fa2328" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/c8483095-cae6-476c-bd77-f779e93a393e" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/e8d0de2d-4efb-48db-9053-78ac24343ec6" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b383818c-4c81-4888-8c80-f39a0b1bf9fb" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/a1c9e468-be3e-44dd-bf35-9066d1a0e3d2" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/48d85cf5-29c1-4f7d-a57e-7b0b69dda574" + (reference "U6") (unit 1) (value "d_or") (footprint "") + ) + (path "/48f857eb-4e87-4806-ba4b-646581a37ea2" + (reference "U7") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/da856a49-8d85-459f-9fdc-ead362122aeb" + (reference "U8") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/28d3271f-0b04-4869-b592-25b6a93cf6fc" + (reference "v1") (unit 1) (value "DC") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.sub new file mode 100644 index 000000000..c75fb0786 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE.sub @@ -0,0 +1,31 @@ +* Subcircuit TRISTATE +.subckt TRISTATE net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ +.title kicad schematic +v1 net-_u2-pad1_ gnd dc 0 +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends TRISTATE \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE_Previous_Values.xml new file mode 100644 index 000000000..5ef3761ac --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/TRISTATE_Previous_Values.xml @@ -0,0 +1 @@ +dc0d_bufferd_ord_andd_andadc_bridged_inverterdac_bridgetruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/analysis b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/analysis new file mode 100644 index 000000000..af548eb1e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/CDCV034/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 100e-06 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.cir new file mode 100644 index 000000000..1d8561308 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.cir @@ -0,0 +1,52 @@ +.title KiCad schematic +U20 Net-_U14-Pad5_ Net-_U1-Pad2_ unconnected-_U20-Pad3_ unconnected-_U20-Pad4_ Net-_U20-Pad5_ unconnected-_U20-Pad6_ d_dff +U15 Net-_U14-Pad5_ Net-_U1-Pad3_ unconnected-_U15-Pad3_ unconnected-_U15-Pad4_ Net-_U15-Pad5_ unconnected-_U15-Pad6_ d_dlatch +X5 Net-_U15-Pad5_ Net-_U1-Pad4_ Net-_U18-Pad1_ TRISTATE +U14 Net-_U14-Pad1_ Net-_U1-Pad2_ unconnected-_U14-Pad3_ unconnected-_U14-Pad4_ Net-_U14-Pad5_ unconnected-_U14-Pad6_ d_dff +U21 Net-_U20-Pad5_ Net-_U1-Pad3_ unconnected-_U21-Pad3_ unconnected-_U21-Pad4_ Net-_U21-Pad5_ unconnected-_U21-Pad6_ d_dlatch +U33 Net-_U32-Pad5_ Net-_U1-Pad3_ unconnected-_U33-Pad3_ unconnected-_U33-Pad4_ Net-_U33-Pad5_ unconnected-_U33-Pad6_ d_dlatch +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ PORT +X9 Net-_U27-Pad5_ Net-_U1-Pad4_ Net-_U30-Pad1_ TRISTATE +U30 Net-_U30-Pad1_ Net-_U1-Pad11_ d_inverter +U8 Net-_U2-Pad5_ Net-_U1-Pad2_ unconnected-_U8-Pad3_ unconnected-_U8-Pad4_ Net-_U14-Pad1_ unconnected-_U8-Pad6_ d_dff +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ unconnected-_U2-Pad3_ unconnected-_U2-Pad4_ Net-_U2-Pad5_ unconnected-_U2-Pad6_ d_dff +U36 Net-_U36-Pad1_ Net-_U1-Pad12_ d_inverter +X11 Net-_U33-Pad5_ Net-_U1-Pad4_ Net-_U36-Pad1_ TRISTATE +U26 Net-_U20-Pad5_ Net-_U1-Pad2_ unconnected-_U26-Pad3_ unconnected-_U26-Pad4_ Net-_U26-Pad5_ unconnected-_U26-Pad6_ d_dff +U32 Net-_U26-Pad5_ Net-_U1-Pad2_ unconnected-_U32-Pad3_ unconnected-_U32-Pad4_ Net-_U32-Pad5_ unconnected-_U32-Pad6_ d_dff +U27 Net-_U26-Pad5_ Net-_U1-Pad3_ unconnected-_U27-Pad3_ unconnected-_U27-Pad4_ Net-_U27-Pad5_ unconnected-_U27-Pad6_ d_dlatch +U9 Net-_U14-Pad1_ Net-_U1-Pad3_ unconnected-_U9-Pad3_ unconnected-_U9-Pad4_ Net-_U9-Pad5_ unconnected-_U9-Pad6_ d_dlatch +U6 Net-_U6-Pad1_ Net-_U1-Pad7_ d_inverter +X1 Net-_U3-Pad5_ Net-_U1-Pad4_ Net-_U6-Pad1_ TRISTATE +U12 Net-_U12-Pad1_ Net-_U1-Pad8_ d_inverter +X3 Net-_U9-Pad5_ Net-_U1-Pad4_ Net-_U12-Pad1_ TRISTATE +X7 Net-_U21-Pad5_ Net-_U1-Pad4_ Net-_U24-Pad1_ TRISTATE +U24 Net-_U24-Pad1_ Net-_U1-Pad10_ d_inverter +U18 Net-_U18-Pad1_ Net-_U1-Pad9_ d_inverter +U3 Net-_U2-Pad5_ Net-_U1-Pad3_ unconnected-_U3-Pad3_ unconnected-_U3-Pad4_ Net-_U3-Pad5_ unconnected-_U3-Pad6_ d_dlatch +U4 Net-_U32-Pad5_ Net-_U1-Pad2_ unconnected-_U4-Pad3_ unconnected-_U4-Pad4_ Net-_U10-Pad1_ unconnected-_U4-Pad6_ d_dff +U11 Net-_U10-Pad5_ Net-_U1-Pad3_ unconnected-_U11-Pad3_ unconnected-_U11-Pad4_ Net-_U11-Pad5_ unconnected-_U11-Pad6_ d_dlatch +U10 Net-_U10-Pad1_ Net-_U1-Pad2_ unconnected-_U10-Pad3_ unconnected-_U10-Pad4_ Net-_U10-Pad5_ unconnected-_U10-Pad6_ d_dff +U5 Net-_U10-Pad1_ Net-_U1-Pad3_ unconnected-_U5-Pad3_ unconnected-_U5-Pad4_ Net-_U5-Pad5_ unconnected-_U5-Pad6_ d_dlatch +U7 Net-_U7-Pad1_ Net-_U1-Pad13_ d_inverter +U13 Net-_U13-Pad1_ Net-_U1-Pad14_ d_inverter +X2 Net-_U5-Pad5_ Net-_U1-Pad4_ Net-_U7-Pad1_ TRISTATE +X4 Net-_U11-Pad5_ Net-_U1-Pad4_ Net-_U13-Pad1_ TRISTATE +U16 Net-_U10-Pad5_ Net-_U1-Pad2_ unconnected-_U16-Pad3_ unconnected-_U16-Pad4_ Net-_U16-Pad5_ unconnected-_U16-Pad6_ d_dff +U23 Net-_U22-Pad5_ Net-_U1-Pad3_ unconnected-_U23-Pad3_ unconnected-_U23-Pad4_ Net-_U23-Pad5_ unconnected-_U23-Pad6_ d_dlatch +U17 Net-_U16-Pad5_ Net-_U1-Pad3_ unconnected-_U17-Pad3_ unconnected-_U17-Pad4_ Net-_U17-Pad5_ unconnected-_U17-Pad6_ d_dlatch +U22 Net-_U16-Pad5_ Net-_U1-Pad2_ unconnected-_U22-Pad3_ unconnected-_U22-Pad4_ Net-_U22-Pad5_ unconnected-_U22-Pad6_ d_dff +U38 Net-_U1-Pad5_ Net-_U1-Pad2_ unconnected-_U38-Pad3_ unconnected-_U38-Pad4_ Net-_U1-Pad6_ unconnected-_U38-Pad6_ d_dlatch +U35 Net-_U1-Pad5_ Net-_U1-Pad3_ unconnected-_U35-Pad3_ unconnected-_U35-Pad4_ Net-_U35-Pad5_ unconnected-_U35-Pad6_ d_dlatch +U34 Net-_U28-Pad5_ Net-_U1-Pad2_ unconnected-_U34-Pad3_ unconnected-_U34-Pad4_ Net-_U1-Pad5_ unconnected-_U34-Pad6_ d_dff +U29 Net-_U28-Pad5_ Net-_U1-Pad3_ unconnected-_U29-Pad3_ unconnected-_U29-Pad4_ Net-_U29-Pad5_ unconnected-_U29-Pad6_ d_dlatch +X12 Net-_U35-Pad5_ Net-_U1-Pad4_ Net-_U37-Pad1_ TRISTATE +U37 Net-_U37-Pad1_ Net-_U1-Pad18_ d_inverter +U31 Net-_U31-Pad1_ Net-_U1-Pad17_ d_inverter +X10 Net-_U29-Pad5_ Net-_U1-Pad4_ Net-_U31-Pad1_ TRISTATE +U28 Net-_U22-Pad5_ Net-_U1-Pad2_ unconnected-_U28-Pad3_ unconnected-_U28-Pad4_ Net-_U28-Pad5_ unconnected-_U28-Pad6_ d_dff +U19 Net-_U19-Pad1_ Net-_U1-Pad15_ d_inverter +U25 Net-_U25-Pad1_ Net-_U1-Pad16_ d_inverter +X6 Net-_U17-Pad5_ Net-_U1-Pad4_ Net-_U19-Pad1_ TRISTATE +X8 Net-_U23-Pad5_ Net-_U1-Pad4_ Net-_U25-Pad1_ TRISTATE +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.cir.out new file mode 100644 index 000000000..da21dec54 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.cir.out @@ -0,0 +1,173 @@ +.title kicad schematic + +.include TRISTATE.sub +* u20 net-_u14-pad5_ net-_u1-pad2_ unconnected-_u20-pad3_ unconnected-_u20-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ d_dff +* u15 net-_u14-pad5_ net-_u1-pad3_ unconnected-_u15-pad3_ unconnected-_u15-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ d_dlatch +x5 net-_u15-pad5_ net-_u1-pad4_ net-_u18-pad1_ TRISTATE +* u14 net-_u14-pad1_ net-_u1-pad2_ unconnected-_u14-pad3_ unconnected-_u14-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_dff +* u21 net-_u20-pad5_ net-_u1-pad3_ unconnected-_u21-pad3_ unconnected-_u21-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ d_dlatch +* u33 net-_u32-pad5_ net-_u1-pad3_ unconnected-_u33-pad3_ unconnected-_u33-pad4_ net-_u33-pad5_ unconnected-_u33-pad6_ d_dlatch +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ port +x9 net-_u27-pad5_ net-_u1-pad4_ net-_u30-pad1_ TRISTATE +* u30 net-_u30-pad1_ net-_u1-pad11_ d_inverter +* u8 net-_u2-pad5_ net-_u1-pad2_ unconnected-_u8-pad3_ unconnected-_u8-pad4_ net-_u14-pad1_ unconnected-_u8-pad6_ d_dff +* u2 net-_u1-pad1_ net-_u1-pad2_ unconnected-_u2-pad3_ unconnected-_u2-pad4_ net-_u2-pad5_ unconnected-_u2-pad6_ d_dff +* u36 net-_u36-pad1_ net-_u1-pad12_ d_inverter +x11 net-_u33-pad5_ net-_u1-pad4_ net-_u36-pad1_ TRISTATE +* u26 net-_u20-pad5_ net-_u1-pad2_ unconnected-_u26-pad3_ unconnected-_u26-pad4_ net-_u26-pad5_ unconnected-_u26-pad6_ d_dff +* u32 net-_u26-pad5_ net-_u1-pad2_ unconnected-_u32-pad3_ unconnected-_u32-pad4_ net-_u32-pad5_ unconnected-_u32-pad6_ d_dff +* u27 net-_u26-pad5_ net-_u1-pad3_ unconnected-_u27-pad3_ unconnected-_u27-pad4_ net-_u27-pad5_ unconnected-_u27-pad6_ d_dlatch +* u9 net-_u14-pad1_ net-_u1-pad3_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u9-pad5_ unconnected-_u9-pad6_ d_dlatch +* u6 net-_u6-pad1_ net-_u1-pad7_ d_inverter +x1 net-_u3-pad5_ net-_u1-pad4_ net-_u6-pad1_ TRISTATE +* u12 net-_u12-pad1_ net-_u1-pad8_ d_inverter +x3 net-_u9-pad5_ net-_u1-pad4_ net-_u12-pad1_ TRISTATE +x7 net-_u21-pad5_ net-_u1-pad4_ net-_u24-pad1_ TRISTATE +* u24 net-_u24-pad1_ net-_u1-pad10_ d_inverter +* u18 net-_u18-pad1_ net-_u1-pad9_ d_inverter +* u3 net-_u2-pad5_ net-_u1-pad3_ unconnected-_u3-pad3_ unconnected-_u3-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ d_dlatch +* u4 net-_u32-pad5_ net-_u1-pad2_ unconnected-_u4-pad3_ unconnected-_u4-pad4_ net-_u10-pad1_ unconnected-_u4-pad6_ d_dff +* u11 net-_u10-pad5_ net-_u1-pad3_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ d_dlatch +* u10 net-_u10-pad1_ net-_u1-pad2_ unconnected-_u10-pad3_ unconnected-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ d_dff +* u5 net-_u10-pad1_ net-_u1-pad3_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ d_dlatch +* u7 net-_u7-pad1_ net-_u1-pad13_ d_inverter +* u13 net-_u13-pad1_ net-_u1-pad14_ d_inverter +x2 net-_u5-pad5_ net-_u1-pad4_ net-_u7-pad1_ TRISTATE +x4 net-_u11-pad5_ net-_u1-pad4_ net-_u13-pad1_ TRISTATE +* u16 net-_u10-pad5_ net-_u1-pad2_ unconnected-_u16-pad3_ unconnected-_u16-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ d_dff +* u23 net-_u22-pad5_ net-_u1-pad3_ unconnected-_u23-pad3_ unconnected-_u23-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ d_dlatch +* u17 net-_u16-pad5_ net-_u1-pad3_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_dlatch +* u22 net-_u16-pad5_ net-_u1-pad2_ unconnected-_u22-pad3_ unconnected-_u22-pad4_ net-_u22-pad5_ unconnected-_u22-pad6_ d_dff +* u38 net-_u1-pad5_ net-_u1-pad2_ unconnected-_u38-pad3_ unconnected-_u38-pad4_ net-_u1-pad6_ unconnected-_u38-pad6_ d_dlatch +* u35 net-_u1-pad5_ net-_u1-pad3_ unconnected-_u35-pad3_ unconnected-_u35-pad4_ net-_u35-pad5_ unconnected-_u35-pad6_ d_dlatch +* u34 net-_u28-pad5_ net-_u1-pad2_ unconnected-_u34-pad3_ unconnected-_u34-pad4_ net-_u1-pad5_ unconnected-_u34-pad6_ d_dff +* u29 net-_u28-pad5_ net-_u1-pad3_ unconnected-_u29-pad3_ unconnected-_u29-pad4_ net-_u29-pad5_ unconnected-_u29-pad6_ d_dlatch +x12 net-_u35-pad5_ net-_u1-pad4_ net-_u37-pad1_ TRISTATE +* u37 net-_u37-pad1_ net-_u1-pad18_ d_inverter +* u31 net-_u31-pad1_ net-_u1-pad17_ d_inverter +x10 net-_u29-pad5_ net-_u1-pad4_ net-_u31-pad1_ TRISTATE +* u28 net-_u22-pad5_ net-_u1-pad2_ unconnected-_u28-pad3_ unconnected-_u28-pad4_ net-_u28-pad5_ unconnected-_u28-pad6_ d_dff +* u19 net-_u19-pad1_ net-_u1-pad15_ d_inverter +* u25 net-_u25-pad1_ net-_u1-pad16_ d_inverter +x6 net-_u17-pad5_ net-_u1-pad4_ net-_u19-pad1_ TRISTATE +x8 net-_u23-pad5_ net-_u1-pad4_ net-_u25-pad1_ TRISTATE +a1 net-_u14-pad5_ net-_u1-pad2_ unconnected-_u20-pad3_ unconnected-_u20-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ u20 +a2 net-_u14-pad5_ net-_u1-pad3_ unconnected-_u15-pad3_ unconnected-_u15-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ u15 +a3 net-_u14-pad1_ net-_u1-pad2_ unconnected-_u14-pad3_ unconnected-_u14-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a4 net-_u20-pad5_ net-_u1-pad3_ unconnected-_u21-pad3_ unconnected-_u21-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ u21 +a5 net-_u32-pad5_ net-_u1-pad3_ unconnected-_u33-pad3_ unconnected-_u33-pad4_ net-_u33-pad5_ unconnected-_u33-pad6_ u33 +a6 net-_u30-pad1_ net-_u1-pad11_ u30 +a7 net-_u2-pad5_ net-_u1-pad2_ unconnected-_u8-pad3_ unconnected-_u8-pad4_ net-_u14-pad1_ unconnected-_u8-pad6_ u8 +a8 net-_u1-pad1_ net-_u1-pad2_ unconnected-_u2-pad3_ unconnected-_u2-pad4_ net-_u2-pad5_ unconnected-_u2-pad6_ u2 +a9 net-_u36-pad1_ net-_u1-pad12_ u36 +a10 net-_u20-pad5_ net-_u1-pad2_ unconnected-_u26-pad3_ unconnected-_u26-pad4_ net-_u26-pad5_ unconnected-_u26-pad6_ u26 +a11 net-_u26-pad5_ net-_u1-pad2_ unconnected-_u32-pad3_ unconnected-_u32-pad4_ net-_u32-pad5_ unconnected-_u32-pad6_ u32 +a12 net-_u26-pad5_ net-_u1-pad3_ unconnected-_u27-pad3_ unconnected-_u27-pad4_ net-_u27-pad5_ unconnected-_u27-pad6_ u27 +a13 net-_u14-pad1_ net-_u1-pad3_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u9-pad5_ unconnected-_u9-pad6_ u9 +a14 net-_u6-pad1_ net-_u1-pad7_ u6 +a15 net-_u12-pad1_ net-_u1-pad8_ u12 +a16 net-_u24-pad1_ net-_u1-pad10_ u24 +a17 net-_u18-pad1_ net-_u1-pad9_ u18 +a18 net-_u2-pad5_ net-_u1-pad3_ unconnected-_u3-pad3_ unconnected-_u3-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ u3 +a19 net-_u32-pad5_ net-_u1-pad2_ unconnected-_u4-pad3_ unconnected-_u4-pad4_ net-_u10-pad1_ unconnected-_u4-pad6_ u4 +a20 net-_u10-pad5_ net-_u1-pad3_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ u11 +a21 net-_u10-pad1_ net-_u1-pad2_ unconnected-_u10-pad3_ unconnected-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ u10 +a22 net-_u10-pad1_ net-_u1-pad3_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ u5 +a23 net-_u7-pad1_ net-_u1-pad13_ u7 +a24 net-_u13-pad1_ net-_u1-pad14_ u13 +a25 net-_u10-pad5_ net-_u1-pad2_ unconnected-_u16-pad3_ unconnected-_u16-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ u16 +a26 net-_u22-pad5_ net-_u1-pad3_ unconnected-_u23-pad3_ unconnected-_u23-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ u23 +a27 net-_u16-pad5_ net-_u1-pad3_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a28 net-_u16-pad5_ net-_u1-pad2_ unconnected-_u22-pad3_ unconnected-_u22-pad4_ net-_u22-pad5_ unconnected-_u22-pad6_ u22 +a29 net-_u1-pad5_ net-_u1-pad2_ unconnected-_u38-pad3_ unconnected-_u38-pad4_ net-_u1-pad6_ unconnected-_u38-pad6_ u38 +a30 net-_u1-pad5_ net-_u1-pad3_ unconnected-_u35-pad3_ unconnected-_u35-pad4_ net-_u35-pad5_ unconnected-_u35-pad6_ u35 +a31 net-_u28-pad5_ net-_u1-pad2_ unconnected-_u34-pad3_ unconnected-_u34-pad4_ net-_u1-pad5_ unconnected-_u34-pad6_ u34 +a32 net-_u28-pad5_ net-_u1-pad3_ unconnected-_u29-pad3_ unconnected-_u29-pad4_ net-_u29-pad5_ unconnected-_u29-pad6_ u29 +a33 net-_u37-pad1_ net-_u1-pad18_ u37 +a34 net-_u31-pad1_ net-_u1-pad17_ u31 +a35 net-_u22-pad5_ net-_u1-pad2_ unconnected-_u28-pad3_ unconnected-_u28-pad4_ net-_u28-pad5_ unconnected-_u28-pad6_ u28 +a36 net-_u19-pad1_ net-_u1-pad15_ u19 +a37 net-_u25-pad1_ net-_u1-pad16_ u25 +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u20 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u15 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u14 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u21 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u33 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u30 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u8 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u2 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u36 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u26 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u32 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u27 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u9 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u3 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u4 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u11 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u10 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u5 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u16 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u23 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u17 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u22 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u38 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u35 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u34 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u29 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u37 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u28 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.kicad_sch new file mode 100644 index 000000000..04150a5ba --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.kicad_sch @@ -0,0 +1,3473 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 7e21b721-daf8-4a0a-afb1-e12f71e84327) + + (paper "User" 531.8 479.4) + + (lib_symbols + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dlatch" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dlatch" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dlatch_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dlatch_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -7.62 0) (length 5.08) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Subckt:TRISTATE" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TRISTATE" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TRISTATE_0_1" + (polyline + (pts + (xy -5.08 3.81) + (xy -5.08 -3.81) + (xy 8.89 0) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "TRISTATE_1_1" + (pin input line (at -7.62 0 0) (length 2.54) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -5.08 90) (length 2.54) + (name "OE" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 0 180) (length 2.54) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 382.27 257.81) (diameter 0) (color 0 0 0 0) + (uuid 040867d0-eb47-4c8d-bef9-a872e45fd92b) + ) + (junction (at 293.37 33.02) (diameter 0) (color 0 0 0 0) + (uuid 099bdba6-f6a9-4d1f-8263-b46290eb08d8) + ) + (junction (at 421.64 33.02) (diameter 0) (color 0 0 0 0) + (uuid 1b33d59a-34d6-47b2-89fd-75bc1c84da4c) + ) + (junction (at 128.27 60.96) (diameter 0) (color 0 0 0 0) + (uuid 1bf996a9-9696-49d8-b1ea-166f385a462e) + ) + (junction (at 327.66 294.64) (diameter 0) (color 0 0 0 0) + (uuid 233b67e5-3ae5-48bb-8c9b-ec3665f2dbdb) + ) + (junction (at 255.27 60.96) (diameter 0) (color 0 0 0 0) + (uuid 3d5e2cd8-f0a6-4cef-b0b8-defdbe4059b4) + ) + (junction (at 129.54 257.81) (diameter 0) (color 0 0 0 0) + (uuid 41d3cc6f-72f5-41fd-9f1a-2d935a9ab9b2) + ) + (junction (at 341.63 297.18) (diameter 0) (color 0 0 0 0) + (uuid 44f7c8ef-b4a2-4173-806f-2f3854fc3915) + ) + (junction (at 105.41 229.87) (diameter 0) (color 0 0 0 0) + (uuid 466a8051-d666-44ea-a0aa-b77ff40f769a) + ) + (junction (at 359.41 229.87) (diameter 0) (color 0 0 0 0) + (uuid 4a8faea6-491d-40c9-8393-aee4c1ab7dc1) + ) + (junction (at 231.14 33.02) (diameter 0) (color 0 0 0 0) + (uuid 50416d9e-1ae7-4518-aa33-9a828a07aaec) + ) + (junction (at 359.41 33.02) (diameter 0) (color 0 0 0 0) + (uuid 52b06ee6-e25b-4f91-a38a-c7037b481539) + ) + (junction (at 254 257.81) (diameter 0) (color 0 0 0 0) + (uuid 5617602d-82fa-4634-9ce3-723d0cf7b65a) + ) + (junction (at 275.59 100.33) (diameter 0) (color 0 0 0 0) + (uuid 5a66fcd3-c925-4ca8-a130-3062e3035467) + ) + (junction (at 199.39 294.64) (diameter 0) (color 0 0 0 0) + (uuid 5b114902-d9ee-477b-ba5c-bffc19a3f656) + ) + (junction (at 261.62 97.79) (diameter 0) (color 0 0 0 0) + (uuid 5c0072cb-f078-483d-beed-106acc9c4e5f) + ) + (junction (at 149.86 297.18) (diameter 0) (color 0 0 0 0) + (uuid 5e1b7d1d-d5d0-4a36-8693-f874894cd53f) + ) + (junction (at 341.63 100.33) (diameter 0) (color 0 0 0 0) + (uuid 5ed9cb57-4103-4333-8767-789b49e93944) + ) + (junction (at 105.41 33.02) (diameter 0) (color 0 0 0 0) + (uuid 6539c26d-7189-4105-a178-97816b0541cc) + ) + (junction (at 87.63 100.33) (diameter 0) (color 0 0 0 0) + (uuid 67f797c6-148f-46ea-a5ad-9900e65f60bf) + ) + (junction (at 213.36 297.18) (diameter 0) (color 0 0 0 0) + (uuid 69b571c5-ef5a-40e1-b727-caa485530632) + ) + (junction (at 62.23 60.96) (diameter 0) (color 0 0 0 0) + (uuid 6e07a001-8ee3-4aa4-8565-9ec05d079633) + ) + (junction (at 191.77 257.81) (diameter 0) (color 0 0 0 0) + (uuid 721f5b78-7ee8-471d-b7fb-2899be4b95fc) + ) + (junction (at 54.61 111.76) (diameter 0) (color 0 0 0 0) + (uuid 75cd09be-d3cd-4d51-89ca-33c90209e4ce) + ) + (junction (at 135.89 97.79) (diameter 0) (color 0 0 0 0) + (uuid 7bdc1334-0e2a-48d2-8cfb-7f020aa8d131) + ) + (junction (at 293.37 229.87) (diameter 0) (color 0 0 0 0) + (uuid 85d9bcd1-d41e-4677-bcd2-a35c630164dd) + ) + (junction (at 320.04 60.96) (diameter 0) (color 0 0 0 0) + (uuid 8748e942-f2b8-4477-a616-9066077f590b) + ) + (junction (at 68.58 257.81) (diameter 0) (color 0 0 0 0) + (uuid 8f7ffb89-6159-4f96-91d0-946d7fee67ea) + ) + (junction (at 73.66 97.79) (diameter 0) (color 0 0 0 0) + (uuid 8f9bb414-63c4-4e39-ba4e-0b72eaf6bd21) + ) + (junction (at 318.77 257.81) (diameter 0) (color 0 0 0 0) + (uuid 9054b669-977a-4f63-96a6-15ef2fa1b15d) + ) + (junction (at 327.66 97.79) (diameter 0) (color 0 0 0 0) + (uuid 9070862f-ae12-4f50-9587-152562057251) + ) + (junction (at 421.64 229.87) (diameter 0) (color 0 0 0 0) + (uuid 952772b8-dc15-44b7-b122-03e2c31b97d4) + ) + (junction (at 199.39 97.79) (diameter 0) (color 0 0 0 0) + (uuid 977e9975-6312-466f-840d-0be30c039007) + ) + (junction (at 49.53 97.79) (diameter 0) (color 0 0 0 0) + (uuid 98f7482b-ae66-4c64-a936-b10813bc3710) + ) + (junction (at 213.36 100.33) (diameter 0) (color 0 0 0 0) + (uuid a534de60-f117-4b4c-97d3-a5ee5d5a685e) + ) + (junction (at 231.14 229.87) (diameter 0) (color 0 0 0 0) + (uuid a6ba1431-0cbd-434d-8075-9f8ed792e29c) + ) + (junction (at 189.23 60.96) (diameter 0) (color 0 0 0 0) + (uuid aa51a498-4472-41a6-96ed-d4e2e3ce2d5d) + ) + (junction (at 167.64 229.87) (diameter 0) (color 0 0 0 0) + (uuid b382822a-8733-47e1-9fa5-9334a8251000) + ) + (junction (at 149.86 100.33) (diameter 0) (color 0 0 0 0) + (uuid b872586b-160d-47b6-a18b-6c63286cf49b) + ) + (junction (at 66.04 60.96) (diameter 0) (color 0 0 0 0) + (uuid c66c5da3-8020-4b97-b683-de8e9bf238d7) + ) + (junction (at 275.59 297.18) (diameter 0) (color 0 0 0 0) + (uuid cceb776a-0fbb-44b9-b760-2b6a480844c9) + ) + (junction (at 450.85 229.87) (diameter 0) (color 0 0 0 0) + (uuid d671f506-4e51-4bac-a3f0-2af1e1f4bd2e) + ) + (junction (at 167.64 33.02) (diameter 0) (color 0 0 0 0) + (uuid d9a70921-976e-4e5f-9a0e-cd1f423f5b07) + ) + (junction (at 261.62 294.64) (diameter 0) (color 0 0 0 0) + (uuid df164dec-9744-45c6-9376-4b6d6d96679c) + ) + (junction (at 135.89 294.64) (diameter 0) (color 0 0 0 0) + (uuid e21f16f7-9e07-4f1d-b478-2438f9d8d5da) + ) + (junction (at 73.66 294.64) (diameter 0) (color 0 0 0 0) + (uuid e485fb05-dfcd-47ba-a9ca-414d0c17a3b9) + ) + (junction (at 87.63 297.18) (diameter 0) (color 0 0 0 0) + (uuid fe30960d-bcb8-4db3-ba2c-0229f3a2495a) + ) + + (no_connect (at 341.63 25.4) (uuid 08863a69-bd87-4241-84f3-93288f9217d8)) + (no_connect (at 149.86 260.35) (uuid 0c09906c-78ad-428a-8849-dc378a86c4d9)) + (no_connect (at 87.63 63.5) (uuid 0ee8281d-7dfd-4685-b680-d59fc271d587)) + (no_connect (at 101.6 284.48) (uuid 1040c779-9e63-4b6e-8a30-28a1086468a8)) + (no_connect (at 149.86 25.4) (uuid 12e931f9-5ddc-4db7-b1ba-a9ba3bad3384)) + (no_connect (at 101.6 246.38) (uuid 14c20867-a466-46f0-af60-8c28858eb0be)) + (no_connect (at 275.59 222.25) (uuid 1ae7167d-4892-4cf1-bab3-5df4a1b7a239)) + (no_connect (at 341.63 222.25) (uuid 1e062426-c875-4aa4-a7bc-3c442bdd1ee2)) + (no_connect (at 87.63 254) (uuid 1f2b25df-465f-4e9d-8a18-cbcc8ee85390)) + (no_connect (at 87.63 57.15) (uuid 270264db-aff4-464f-a8fe-966ac5472e1d)) + (no_connect (at 87.63 292.1) (uuid 298bd951-96e7-49ca-b86d-3ec0056aaca3)) + (no_connect (at 227.33 284.48) (uuid 29ff83a2-6dff-4e64-82b0-c2cd2e6e1cff)) + (no_connect (at 468.63 238.76) (uuid 2a6feb7b-588f-4042-af55-188ca7a4165c)) + (no_connect (at 213.36 292.1) (uuid 3370d451-8b86-45af-9306-fae7bafad24b)) + (no_connect (at 163.83 49.53) (uuid 35c3be16-2046-4215-a2f8-1491940826fc)) + (no_connect (at 149.86 222.25) (uuid 3d1d0006-4246-45ba-965f-b7039ca3e0cc)) + (no_connect (at 163.83 87.63) (uuid 3e623bba-1b17-4cbb-96c0-5aa44b54f3e2)) + (no_connect (at 403.86 260.35) (uuid 424dc26c-655c-4ddc-a15c-96831f5f2281)) + (no_connect (at 289.56 49.53) (uuid 46af8882-c0a2-47cd-b233-3ab3753ce86f)) + (no_connect (at 275.59 254) (uuid 475f83dd-e339-47da-8170-ec2208bee18a)) + (no_connect (at 289.56 284.48) (uuid 48304c7c-23ee-4d42-9f07-13d72f90e74f)) + (no_connect (at 403.86 222.25) (uuid 4a770d6d-db1f-46e4-a38f-eb3b7e4018ed)) + (no_connect (at 149.86 292.1) (uuid 50142136-aab3-44ec-ab30-e76ac50e30a1)) + (no_connect (at 149.86 57.15) (uuid 55747efc-0ae0-456d-9b4a-983c8e1b2dc9)) + (no_connect (at 87.63 222.25) (uuid 57672b1a-0dcc-4066-b80a-4de26757b2f7)) + (no_connect (at 275.59 292.1) (uuid 599339df-2cf2-4902-b5f4-3908603edf59)) + (no_connect (at 213.36 254) (uuid 5af63c6a-b7fa-405a-b25c-0971822c1017)) + (no_connect (at 482.6 262.89) (uuid 5cac0970-e507-4bf6-96a3-61ad7dfb5873)) + (no_connect (at 355.6 284.48) (uuid 5d471d12-fe08-429a-90fe-2dcb8f49997c)) + (no_connect (at 341.63 63.5) (uuid 60bca215-23bc-431b-aa3e-8709d5a01847)) + (no_connect (at 87.63 260.35) (uuid 61e5099c-4e68-4135-9f42-6aafba216299)) + (no_connect (at 87.63 95.25) (uuid 65ef8723-97ea-42f7-8946-ec5032ce334a)) + (no_connect (at 403.86 57.15) (uuid 6674d490-1a4b-4b26-aee1-3ef26a2b02e5)) + (no_connect (at 163.83 284.48) (uuid 6c089777-2aa8-4a8b-b4fe-bd39ee903d65)) + (no_connect (at 275.59 57.15) (uuid 6cb0dda4-2a40-4277-9485-f2405c7ca3c9)) + (no_connect (at 403.86 292.1) (uuid 6debc00c-a018-41a2-9587-cc0aa9e47a38)) + (no_connect (at 213.36 63.5) (uuid 6e0af42c-e276-4aba-9ee9-81b71ec82748)) + (no_connect (at 403.86 25.4) (uuid 6f697f9c-b201-4a7c-9716-b62802f638a2)) + (no_connect (at 213.36 57.15) (uuid 70c35ecf-c466-41bd-bac1-09af02e3456b)) + (no_connect (at 341.63 292.1) (uuid 73234885-3934-4355-a648-d49b993e4b7a)) + (no_connect (at 403.86 95.25) (uuid 7a1a29a3-a553-48d5-9436-f66e4efe1ba7)) + (no_connect (at 275.59 260.35) (uuid 7a207ff5-9b0d-49b2-ae7d-cff71fc3ff79)) + (no_connect (at 403.86 63.5) (uuid 8f51baa0-d067-4242-aead-28e5ba83e03b)) + (no_connect (at 417.83 284.48) (uuid 930aaad9-43e8-4101-a1ed-f1f2321bc740)) + (no_connect (at 213.36 260.35) (uuid 965242f1-be27-472a-afbe-c2ee827865a2)) + (no_connect (at 341.63 57.15) (uuid 978c2e3b-7250-467e-a2eb-9d230270c1a1)) + (no_connect (at 101.6 49.53) (uuid 98726f9d-f490-493a-9a74-b7e6db8b9711)) + (no_connect (at 227.33 87.63) (uuid 9f5d862b-dc99-4267-8cb0-0fedde88c883)) + (no_connect (at 101.6 87.63) (uuid a67851c5-1adc-4f55-94e1-58442c429881)) + (no_connect (at 417.83 49.53) (uuid a696ffed-1dea-48ca-ab28-fca64f863f91)) + (no_connect (at 468.63 270.51) (uuid a9e42a85-169a-4c09-b4aa-85a7f7f645dd)) + (no_connect (at 163.83 246.38) (uuid ab821d8a-6aed-49d2-be63-c09cebaf5a8b)) + (no_connect (at 341.63 260.35) (uuid abd14f06-ed7d-4a8c-a373-fc7ea044aa32)) + (no_connect (at 341.63 254) (uuid ac934cd2-ccb6-462a-a15b-74b6dd1eae07)) + (no_connect (at 355.6 87.63) (uuid b5497b32-d9c5-4d0c-a70d-e2e6b73b581e)) + (no_connect (at 149.86 95.25) (uuid baed2b0f-2f81-4de6-a3de-4f6ae2573da6)) + (no_connect (at 149.86 63.5) (uuid bc4b634f-056f-4616-b4c5-a73ea98ab031)) + (no_connect (at 289.56 246.38) (uuid bd4f3284-1ca7-4ee4-8338-3167428eff81)) + (no_connect (at 275.59 95.25) (uuid c06b14d1-0f4d-407a-94fa-4023b1319aa5)) + (no_connect (at 355.6 246.38) (uuid c3768724-fca1-4733-822d-6b320744e576)) + (no_connect (at 417.83 246.38) (uuid cb922801-e3e9-4794-801f-e9c86e2341c1)) + (no_connect (at 341.63 95.25) (uuid d836a84b-3975-40f3-94bb-ec2d0e4eafee)) + (no_connect (at 275.59 63.5) (uuid da01c877-8087-4103-9f2e-b7d26cd6b11b)) + (no_connect (at 227.33 49.53) (uuid da78463b-8ce3-4c10-ac07-63875fbfeea2)) + (no_connect (at 403.86 254) (uuid df03ac69-acbf-460b-9733-4a46a4a5d14b)) + (no_connect (at 417.83 87.63) (uuid e52344bf-5130-40bd-b927-b436b9c91fb2)) + (no_connect (at 289.56 87.63) (uuid e79dfeed-9124-4edc-a5f1-abafdc3d6864)) + (no_connect (at 275.59 25.4) (uuid eba97e37-77d8-4371-8aff-763ae57babcd)) + (no_connect (at 87.63 25.4) (uuid ec90bf5f-eea3-4fc3-9a63-7dd291d678c0)) + (no_connect (at 213.36 222.25) (uuid ef8942e5-51e1-46e2-b3f2-df46f4ae9942)) + (no_connect (at 149.86 254) (uuid f8399f31-add9-4e2c-841f-1a888f64bcf6)) + (no_connect (at 355.6 49.53) (uuid f888a6b7-5272-4017-bcdb-c80f10079377)) + (no_connect (at 227.33 246.38) (uuid fc97f214-b529-4180-99a1-44c81c8cce12)) + (no_connect (at 213.36 25.4) (uuid fcb3b002-d8ad-4926-978c-3063c29dfec3)) + (no_connect (at 213.36 95.25) (uuid fd2cae43-41b2-419d-9d91-f4c690f589ff)) + + (wire (pts (xy 68.58 246.38) (xy 68.58 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01a9f1a2-725c-4701-a311-c0fe030abf10) + ) + (wire (pts (xy 49.53 294.64) (xy 73.66 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 039c2b39-3429-466c-8391-14fe8d117357) + ) + (wire (pts (xy 199.39 87.63) (xy 199.39 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 046d6b51-4d7a-4e2f-a8dc-b959efdb3eca) + ) + (wire (pts (xy 275.59 297.18) (xy 275.59 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 058c400a-4070-4cdf-8b8e-1f5df62112d0) + ) + (wire (pts (xy 327.66 294.64) (xy 389.89 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 088ba536-e9c1-4ee4-a8e2-ba76002782f8) + ) + (wire (pts (xy 382.27 257.81) (xy 318.77 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bc968fe-e760-4083-8f56-d0d5c235e480) + ) + (wire (pts (xy 289.56 229.87) (xy 293.37 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e6de6c6-ca1a-4692-9f6c-17f1efe595d1) + ) + (wire (pts (xy 227.33 229.87) (xy 231.14 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f646329-cd64-47bd-abe0-c900d93f28c1) + ) + (wire (pts (xy 149.86 297.18) (xy 213.36 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1396b442-82fc-4663-9abe-bf7f476eb0a1) + ) + (wire (pts (xy 261.62 87.63) (xy 261.62 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13c3ebe7-f2f8-41d6-b852-02c2670abc42) + ) + (wire (pts (xy 327.66 49.53) (xy 320.04 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1492f6c2-1992-4762-87d4-6819752c4e4a) + ) + (wire (pts (xy 199.39 294.64) (xy 261.62 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14aba10f-4562-4815-b72c-318c07ba6593) + ) + (wire (pts (xy 167.64 229.87) (xy 167.64 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1513cb4a-e940-4e91-aa43-9c0a8c3d9dd1) + ) + (wire (pts (xy 128.27 60.96) (xy 189.23 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 151b5fa5-d722-464a-95ca-2183bf2c9cbd) + ) + (wire (pts (xy 87.63 297.18) (xy 87.63 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1796a249-b644-4168-a391-f974a9699989) + ) + (wire (pts (xy 163.83 33.02) (xy 167.64 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17ec072f-903e-4b71-be1a-150e5ee32b22) + ) + (wire (pts (xy 107.95 267.97) (xy 107.95 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 183cfab0-5e12-4d98-8594-caa10e6b434c) + ) + (wire (pts (xy 293.37 33.02) (xy 293.37 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1af77cb2-3813-4360-b6e1-5fb742155ed5) + ) + (wire (pts (xy 213.36 297.18) (xy 213.36 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e1773d3-8980-47ad-b0e9-1c06fad0380b) + ) + (wire (pts (xy 189.23 60.96) (xy 255.27 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1eb1c88f-4709-4fe4-9b18-fd88fa2d1c39) + ) + (wire (pts (xy 73.66 49.53) (xy 66.04 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1faaedc4-e12c-488f-9f75-a78d7546d292) + ) + (wire (pts (xy 196.85 256.54) (xy 196.85 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 202fec69-4dcf-4528-8ebd-6ab68a9657ab) + ) + (wire (pts (xy 261.62 97.79) (xy 327.66 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 224a1ee3-c517-4410-b686-8cf34ac1eea0) + ) + (wire (pts (xy 259.08 256.54) (xy 259.08 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25802abc-b723-462b-83ba-fcfb044b280d) + ) + (wire (pts (xy 105.41 229.87) (xy 135.89 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25f0c3cf-66e6-4aa5-b081-2d380a27603a) + ) + (wire (pts (xy 295.91 140.97) (xy 295.91 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29e4fe77-ca86-49fa-bac0-849f43ff92a4) + ) + (wire (pts (xy 275.59 100.33) (xy 275.59 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a94add8-2349-483f-a7a4-1ff81bab639d) + ) + (wire (pts (xy 101.6 267.97) (xy 107.95 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2cfbaa65-2211-4250-bac8-51a43710ca5e) + ) + (wire (pts (xy 387.35 256.54) (xy 387.35 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f1c584f-55db-4bc6-8be1-cb1062b9344b) + ) + (wire (pts (xy 341.63 100.33) (xy 403.86 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f774630-f10e-4e3e-ac8e-32f09d6403df) + ) + (wire (pts (xy 259.08 71.12) (xy 261.62 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fd87343-b52b-4a14-8922-da09fd3e5fa7) + ) + (wire (pts (xy 107.95 140.97) (xy 107.95 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 320908b1-2e36-42c6-9e19-aa83d35c0617) + ) + (wire (pts (xy 434.34 262.89) (xy 434.34 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 324ece8b-d898-4c04-8ab0-7cf93a38ac80) + ) + (wire (pts (xy 261.62 49.53) (xy 255.27 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35969204-126b-4920-86e9-6f20988b8854) + ) + (wire (pts (xy 327.66 246.38) (xy 318.77 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35b2737f-bd91-41bf-bed6-20d1f5a233c7) + ) + (wire (pts (xy 289.56 267.97) (xy 295.91 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3706dca6-ce9f-4fa5-bee4-15dcae9f2fd5) + ) + (wire (pts (xy 436.88 215.9) (xy 436.88 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3adf0d98-f57c-4244-be47-ef8eee9b61f2) + ) + (wire (pts (xy 421.64 59.69) (xy 387.35 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3aeae4a5-baae-4602-96e0-eea6eb82ca7f) + ) + (wire (pts (xy 289.56 33.02) (xy 293.37 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b468f89-33fd-4006-974e-454bfcd49f12) + ) + (wire (pts (xy 233.68 71.12) (xy 233.68 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cbfd3e9-35fc-4eb8-ad24-94c599273e22) + ) + (wire (pts (xy 170.18 71.12) (xy 170.18 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e92da38-363c-4ba7-b760-2ba653c956aa) + ) + (wire (pts (xy 73.66 294.64) (xy 135.89 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f9cdade-6a1e-4162-85c7-6961f332dc47) + ) + (wire (pts (xy 133.35 256.54) (xy 133.35 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40bd5191-7c19-4284-9612-4913b1ad94bb) + ) + (wire (pts (xy 417.83 267.97) (xy 424.18 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40d1f22f-f554-43be-aa2d-a47578b3ebf9) + ) + (wire (pts (xy 71.12 267.97) (xy 73.66 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43b29f52-9057-4110-8b5c-233ef00e7c41) + ) + (wire (pts (xy 359.41 229.87) (xy 389.89 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44eba398-5917-4315-bea7-10f96136850b) + ) + (wire (pts (xy 133.35 59.69) (xy 133.35 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45da620e-27f8-46c0-9b5f-4650711929d7) + ) + (wire (pts (xy 73.66 246.38) (xy 68.58 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46066ef6-38cd-4799-b9bb-370aac4f4078) + ) + (wire (pts (xy 101.6 229.87) (xy 105.41 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4728ea86-a56d-49d7-8dac-eb31813b25e3) + ) + (wire (pts (xy 135.89 284.48) (xy 135.89 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 484705ab-6965-4333-8f0c-abb5bb50ff4f) + ) + (wire (pts (xy 325.12 256.54) (xy 325.12 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48c1e686-3d82-4dcd-a980-37e0d540920e) + ) + (wire (pts (xy 101.6 33.02) (xy 105.41 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4adfde3c-a88c-43ad-b41e-6eab0a099b4f) + ) + (wire (pts (xy 293.37 33.02) (xy 327.66 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b6e248f-3d61-42f5-a6c4-35203099e9e6) + ) + (wire (pts (xy 191.77 257.81) (xy 129.54 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cf941a9-03a2-4066-92b8-e9542f29740b) + ) + (wire (pts (xy 403.86 100.33) (xy 403.86 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d77ffbc-b025-4413-8f49-8bdfad305918) + ) + (wire (pts (xy 259.08 59.69) (xy 259.08 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f2eca0e-f82b-4273-8a3a-c868faf5d5bf) + ) + (wire (pts (xy 293.37 256.54) (xy 259.08 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fec4d51-0e4f-4439-a338-1271497bffd0) + ) + (wire (pts (xy 389.89 49.53) (xy 379.73 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50581e3e-f67c-4aa4-84c1-86fe7968f026) + ) + (wire (pts (xy 421.64 229.87) (xy 421.64 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 514e4b76-4895-4230-870e-da7ffd3ec6cd) + ) + (wire (pts (xy 320.04 49.53) (xy 320.04 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 522697f3-3397-4605-8c32-233229bd0002) + ) + (wire (pts (xy 355.6 71.12) (xy 361.95 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52ace4ba-a58e-4d43-ba39-05ad3d2ab39d) + ) + (wire (pts (xy 54.61 111.76) (xy 54.61 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53b567d1-2d71-45db-a253-253ebbc9a7e4) + ) + (wire (pts (xy 450.85 229.87) (xy 494.03 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55c62f97-e9d3-4f53-ab9d-3d4d50da6d92) + ) + (wire (pts (xy 325.12 59.69) (xy 325.12 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56ba505e-a085-40ba-ac22-4a703bfbe356) + ) + (wire (pts (xy 149.86 100.33) (xy 213.36 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 575c7e2b-1070-4d08-bf33-a5e823e17d5d) + ) + (wire (pts (xy 261.62 284.48) (xy 261.62 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5858814a-b95e-4dd4-8bfb-6a13532ba14a) + ) + (wire (pts (xy 135.89 49.53) (xy 128.27 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a088bf0-a8b1-4798-a894-688e49405883) + ) + (wire (pts (xy 231.14 229.87) (xy 261.62 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b2ebd15-6b3a-4fca-aed9-87b304dbbf4f) + ) + (wire (pts (xy 295.91 267.97) (xy 295.91 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b9603a7-86c2-4622-9643-f904eb530baf) + ) + (wire (pts (xy 73.66 284.48) (xy 73.66 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bbc9949-2777-479b-9d03-9f9b634cc367) + ) + (wire (pts (xy 105.41 33.02) (xy 105.41 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c711064-7703-4fd5-8418-e2f8d4eb57c2) + ) + (wire (pts (xy 355.6 229.87) (xy 359.41 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d49e3a3-b4b3-4a1e-af63-fb0a8a8f0a94) + ) + (wire (pts (xy 165.1 308.61) (xy 149.86 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5de9da0d-3a53-494e-8d79-a4f93507712e) + ) + (wire (pts (xy 105.41 59.69) (xy 71.12 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e46912a-90d8-4968-9e62-a3eec8a69185) + ) + (wire (pts (xy 45.72 97.79) (xy 49.53 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e8ae388-fa1c-457c-b70a-34fe5943c859) + ) + (wire (pts (xy 149.86 100.33) (xy 149.86 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f0ae074-9f04-43ce-897f-312b2b2f157e) + ) + (wire (pts (xy 105.41 229.87) (xy 105.41 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 615f0c10-a84b-4096-8049-00117e029581) + ) + (wire (pts (xy 68.58 257.81) (xy 62.23 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6443960b-3912-43dc-a1f5-68e2e5bb3142) + ) + (wire (pts (xy 419.1 125.73) (xy 403.86 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65034881-f89e-49a9-9547-1d763edb18f1) + ) + (wire (pts (xy 327.66 284.48) (xy 327.66 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 684192ed-6820-4b97-bc9c-55770fe8ac5d) + ) + (wire (pts (xy 149.86 297.18) (xy 149.86 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69367817-553a-4267-a100-f0ec4d5d33cc) + ) + (wire (pts (xy 359.41 33.02) (xy 389.89 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ea09204-f7bb-47f6-93c3-a912a4afa7e2) + ) + (wire (pts (xy 73.66 229.87) (xy 67.31 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6fa65641-ecf7-4765-ae67-7a9eced03a2b) + ) + (wire (pts (xy 199.39 97.79) (xy 261.62 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70cb7b6b-0eed-4792-942c-e5d2cfaec55d) + ) + (wire (pts (xy 421.64 256.54) (xy 387.35 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71aeefad-ab60-48a1-a2d2-11524fbe885d) + ) + (wire (pts (xy 167.64 256.54) (xy 133.35 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72500a49-f519-4eb6-b2d6-6021c762f577) + ) + (wire (pts (xy 289.56 71.12) (xy 295.91 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 745d2efd-4c78-45f5-925b-2434a0227f25) + ) + (wire (pts (xy 135.89 97.79) (xy 199.39 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75480094-5e2e-4468-aaa3-bbcc9328b840) + ) + (wire (pts (xy 167.64 59.69) (xy 133.35 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75af7f20-2fae-4a1e-9b64-748f86f6dbab) + ) + (wire (pts (xy 341.63 100.33) (xy 341.63 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75c44bf0-c485-4821-b87e-83eda4c3d30f) + ) + (wire (pts (xy 387.35 267.97) (xy 389.89 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7601ce5a-05eb-4c1b-b58a-8884daa6d3bf) + ) + (wire (pts (xy 325.12 267.97) (xy 327.66 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 763a674f-6825-4f9a-9861-b3c374559141) + ) + (wire (pts (xy 46.99 111.76) (xy 54.61 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a325ba0-9d53-4728-a945-2bab8021c561) + ) + (wire (pts (xy 163.83 229.87) (xy 167.64 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a850144-5dac-4fff-9fc3-e8b39fb6e3d2) + ) + (wire (pts (xy 102.87 125.73) (xy 87.63 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c50ded9-6a08-4f1e-98ba-92c5fde87f61) + ) + (wire (pts (xy 54.61 297.18) (xy 87.63 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dd3e67f-df37-461c-ba3e-8a9110eb3416) + ) + (wire (pts (xy 135.89 87.63) (xy 135.89 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 808a2d1c-b1c3-4d2d-ae4a-712945b9070f) + ) + (wire (pts (xy 231.14 33.02) (xy 261.62 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81fad0a3-3ad7-4a97-a0cc-80d0afb03830) + ) + (wire (pts (xy 227.33 267.97) (xy 233.68 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83ad9733-b354-456e-be9e-06c3b8692260) + ) + (wire (pts (xy 356.87 308.61) (xy 341.63 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8447e41f-d277-4632-9ec7-0b09817fde20) + ) + (wire (pts (xy 165.1 125.73) (xy 149.86 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85731e58-78a7-49b1-870f-84c54d1f61c0) + ) + (wire (pts (xy 167.64 229.87) (xy 199.39 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85867ca3-578e-45d8-84b8-f7fe6d1228ef) + ) + (wire (pts (xy 71.12 71.12) (xy 73.66 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 859b68f2-a1da-4ce0-ae62-0c3a3de0489e) + ) + (wire (pts (xy 107.95 71.12) (xy 107.95 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85d4ebed-70c6-4e5e-9abb-e84ca25d59bb) + ) + (wire (pts (xy 163.83 71.12) (xy 170.18 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86aa344c-5c4c-4796-af43-c720a3b8e726) + ) + (wire (pts (xy 482.6 246.38) (xy 494.03 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86be07ae-e3ab-4231-a250-806458ac17df) + ) + (wire (pts (xy 434.34 257.81) (xy 382.27 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 884c02ae-68af-4acb-b6ef-af6640cb845a) + ) + (wire (pts (xy 356.87 125.73) (xy 341.63 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89314a1c-0d7b-4957-bef7-c8af46027d20) + ) + (wire (pts (xy 295.91 71.12) (xy 295.91 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 898c9038-87de-401b-8180-dd6758ee0015) + ) + (wire (pts (xy 189.23 49.53) (xy 189.23 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b6555bd-8ae6-48c5-a95a-188c0a59214f) + ) + (wire (pts (xy 259.08 267.97) (xy 261.62 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ba98e72-83ec-4fc3-8ca4-e57357322bcd) + ) + (wire (pts (xy 417.83 71.12) (xy 424.18 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bb1d4c3-fa34-4974-97ed-8741ddd96b1b) + ) + (wire (pts (xy 293.37 229.87) (xy 293.37 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ea56599-e803-4b67-a194-829a5f7cbb6e) + ) + (wire (pts (xy 387.35 71.12) (xy 389.89 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f0e8662-9f45-4418-84d1-4cfb2001e2d3) + ) + (wire (pts (xy 213.36 100.33) (xy 275.59 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 906b9418-8d37-4214-b151-6d8fe2bd9450) + ) + (wire (pts (xy 318.77 246.38) (xy 318.77 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93c75121-5d6a-40ed-896a-33432d28bc17) + ) + (wire (pts (xy 361.95 267.97) (xy 361.95 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94b3663b-1cee-4c0f-8d54-aba4ff8622e3) + ) + (wire (pts (xy 231.14 229.87) (xy 231.14 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96e5d3cd-b0f9-47ab-980a-ad469ee7fb1e) + ) + (wire (pts (xy 87.63 297.18) (xy 149.86 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97ee066f-fc5b-41ad-afdd-1880fefdbd89) + ) + (wire (pts (xy 454.66 262.89) (xy 434.34 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99e9e822-5a61-41e5-a1db-a0adc1087ba9) + ) + (wire (pts (xy 389.89 284.48) (xy 389.89 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b40f0c6-5fee-4ccd-b55b-7aa941171171) + ) + (wire (pts (xy 163.83 267.97) (xy 170.18 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c175f04-8d5d-4e92-84b5-40340558947d) + ) + (wire (pts (xy 417.83 33.02) (xy 421.64 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d3780ad-f935-4840-88b7-0b2b72ac26b6) + ) + (wire (pts (xy 255.27 49.53) (xy 255.27 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d56cb7c-0197-41c0-8e7f-d4854c4b9732) + ) + (wire (pts (xy 389.89 246.38) (xy 382.27 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9eedf430-36fb-4304-804d-d518e969956d) + ) + (wire (pts (xy 66.04 49.53) (xy 66.04 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0156d77-85d5-434a-8558-8a03d137966d) + ) + (wire (pts (xy 170.18 267.97) (xy 170.18 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a04b8002-3d8e-4d2e-b49f-76d9bd77c38e) + ) + (wire (pts (xy 196.85 59.69) (xy 196.85 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a18376d6-6f2a-452c-9979-10babf8b1560) + ) + (wire (pts (xy 341.63 297.18) (xy 341.63 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1f48c75-ee63-48bb-96b6-205f5db9cd31) + ) + (wire (pts (xy 320.04 60.96) (xy 379.73 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a25f98c6-f5e0-4966-b029-9ef6d4737294) + ) + (wire (pts (xy 341.63 297.18) (xy 403.86 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2835243-f4ff-44e8-a520-5b736f49ca45) + ) + (wire (pts (xy 67.31 229.87) (xy 67.31 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a35c6158-0c9e-4aeb-8569-1ae14aec5297) + ) + (wire (pts (xy 128.27 49.53) (xy 128.27 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a39bdc70-1b59-47f4-93b6-1c6c024f40a7) + ) + (wire (pts (xy 67.31 215.9) (xy 436.88 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a41df8f7-50a7-49a1-a440-1db0c21b32e6) + ) + (wire (pts (xy 361.95 140.97) (xy 361.95 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5712cf5-94bb-4662-9626-521bdf4813ae) + ) + (wire (pts (xy 71.12 59.69) (xy 71.12 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5c604b7-8bef-47e1-9c4a-7d89debf3262) + ) + (wire (pts (xy 421.64 33.02) (xy 421.64 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5d8da87-6984-498b-a1d1-55099b48d703) + ) + (wire (pts (xy 73.66 97.79) (xy 135.89 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7ab4c35-d267-4541-a7a3-e5fae3808159) + ) + (wire (pts (xy 417.83 229.87) (xy 421.64 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a807cad8-965a-4d2d-957e-17c27ba61b49) + ) + (wire (pts (xy 105.41 33.02) (xy 135.89 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8a73ed6-e8ea-45d9-952d-3e21658c4b09) + ) + (wire (pts (xy 275.59 100.33) (xy 341.63 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad995d34-2a2d-449a-b15f-3929d5ff4fd4) + ) + (wire (pts (xy 359.41 33.02) (xy 359.41 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae268178-f449-4a31-a9b4-e16dded5e268) + ) + (wire (pts (xy 135.89 246.38) (xy 129.54 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae2c94d7-e5be-4105-94f0-b48ae75c7b2d) + ) + (wire (pts (xy 403.86 297.18) (xy 403.86 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aeafb302-017a-4240-8f44-1739a18aa534) + ) + (wire (pts (xy 424.18 71.12) (xy 424.18 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af36d598-637e-4ef0-ad16-30ce84043347) + ) + (wire (pts (xy 261.62 294.64) (xy 327.66 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af5c6ed7-8a9b-4435-a6e6-75eb74b01766) + ) + (wire (pts (xy 49.53 97.79) (xy 49.53 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afab4669-48f0-48de-aeff-7635c9a886c6) + ) + (wire (pts (xy 387.35 59.69) (xy 387.35 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b03fb103-eaa2-4553-b560-51fa9f2989ae) + ) + (wire (pts (xy 379.73 49.53) (xy 379.73 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b050b294-65c8-4d2c-8306-5adf43ed3232) + ) + (wire (pts (xy 359.41 229.87) (xy 359.41 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b09148c8-247e-4738-8ff4-96012acc73e0) + ) + (wire (pts (xy 275.59 297.18) (xy 341.63 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b24754aa-93f7-48d7-91bb-a6401804da3f) + ) + (wire (pts (xy 359.41 59.69) (xy 325.12 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4c3a1b2-c70e-4b70-8246-5a61c82f75e4) + ) + (wire (pts (xy 436.88 33.02) (xy 421.64 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5ffeb25-062d-4ee0-b2f4-f61c22914776) + ) + (wire (pts (xy 233.68 140.97) (xy 233.68 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b61a262a-077c-478a-bba2-dc0cfdba27b8) + ) + (wire (pts (xy 129.54 257.81) (xy 68.58 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b720e4e2-255a-4fd3-ab1f-26e4342c5981) + ) + (wire (pts (xy 355.6 33.02) (xy 359.41 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7bb40c9-6fbc-49ba-ae80-67b0eaae1625) + ) + (wire (pts (xy 421.64 229.87) (xy 450.85 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba20436e-97a6-4c59-b573-339eb6bb61e9) + ) + (wire (pts (xy 105.41 256.54) (xy 71.12 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb0944cb-a630-43f3-b8c2-d0a73190fbd4) + ) + (wire (pts (xy 290.83 308.61) (xy 275.59 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb9d46bf-a60e-4edd-aff7-9ed79cda512e) + ) + (wire (pts (xy 361.95 71.12) (xy 361.95 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbd44d40-3aee-48d7-ad9b-18074e52444c) + ) + (wire (pts (xy 261.62 246.38) (xy 254 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bccdd103-77a4-41d1-87e1-956036142e3b) + ) + (wire (pts (xy 254 246.38) (xy 254 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c02295c8-cd91-4de0-80f3-23487628d965) + ) + (wire (pts (xy 191.77 246.38) (xy 191.77 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0e44cc9-aa9f-43bd-947b-521456b9b9d6) + ) + (wire (pts (xy 327.66 97.79) (xy 389.89 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c219e018-c6db-498d-9ad0-0523259448f3) + ) + (wire (pts (xy 254 257.81) (xy 191.77 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3bcdd94-5828-436e-b431-b0c1e1b7db42) + ) + (wire (pts (xy 231.14 33.02) (xy 231.14 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c40094b7-a555-45bc-a0c9-0b1c9f894efc) + ) + (wire (pts (xy 231.14 256.54) (xy 196.85 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5b482f9-5f42-46e5-a587-ece6b50c063d) + ) + (wire (pts (xy 135.89 294.64) (xy 199.39 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c69fe9a8-9612-4ea7-a8ab-3f35aa6932c1) + ) + (wire (pts (xy 101.6 71.12) (xy 107.95 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6fdc633-c44b-498a-90fb-61f4a58d5cd1) + ) + (wire (pts (xy 102.87 308.61) (xy 87.63 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7d892e5-bfb0-45b8-a65e-7e20e587d991) + ) + (wire (pts (xy 49.53 97.79) (xy 73.66 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c87a3798-ab8f-4ee4-9933-2e8cc53685e5) + ) + (wire (pts (xy 57.15 60.96) (xy 62.23 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9b39a69-f26a-4ae7-b623-91f281b5c53c) + ) + (wire (pts (xy 87.63 100.33) (xy 87.63 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca8419b2-f79e-4683-a713-b296a232c7ac) + ) + (wire (pts (xy 233.68 267.97) (xy 233.68 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc119471-ccc6-464c-9831-5fa104334f46) + ) + (wire (pts (xy 318.77 257.81) (xy 254 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc1401ae-b84f-463c-86a8-0f420f7f290c) + ) + (wire (pts (xy 167.64 33.02) (xy 167.64 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc1e3fbe-f58f-4da7-a564-7e67d020cc41) + ) + (wire (pts (xy 213.36 297.18) (xy 275.59 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd02bc7b-61c5-40bf-9aa4-92a7673588a2) + ) + (wire (pts (xy 133.35 267.97) (xy 135.89 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd1bf931-81ea-46d0-936f-d0479250fb3f) + ) + (wire (pts (xy 228.6 308.61) (xy 213.36 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd58e83b-02bf-4736-a509-8a3123eff9c7) + ) + (wire (pts (xy 325.12 71.12) (xy 327.66 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce34f636-0198-4c28-900e-b78364f48cde) + ) + (wire (pts (xy 327.66 87.63) (xy 327.66 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce9cc363-381e-4ecc-b57f-857713d139cf) + ) + (wire (pts (xy 255.27 60.96) (xy 320.04 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cef814d5-69f7-412b-92c9-64dc9c77b710) + ) + (wire (pts (xy 290.83 125.73) (xy 275.59 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d144a739-e29e-43d3-83e4-c62d92216e5b) + ) + (wire (pts (xy 227.33 71.12) (xy 233.68 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d18be017-cca0-4275-a5a9-28aae567bf40) + ) + (wire (pts (xy 54.61 100.33) (xy 87.63 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5428119-6644-473c-a413-99a6a74b09c8) + ) + (wire (pts (xy 227.33 33.02) (xy 231.14 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d555f5c5-5bca-4c4d-a7fb-13aeaf860b24) + ) + (wire (pts (xy 450.85 246.38) (xy 450.85 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d61ad7a5-1ebe-47a9-b716-1c116aa89643) + ) + (wire (pts (xy 293.37 59.69) (xy 259.08 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7a73a6a-a6a4-4691-b866-b9228aa6e819) + ) + (wire (pts (xy 389.89 87.63) (xy 389.89 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8205948-30d2-4013-a41c-c738cbe199ea) + ) + (wire (pts (xy 71.12 256.54) (xy 71.12 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d89d0d15-e52a-4318-9cb4-216c5f1ef60f) + ) + (wire (pts (xy 199.39 284.48) (xy 199.39 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8d2c11e-3bee-49cf-91d9-a65050e48e08) + ) + (wire (pts (xy 54.61 100.33) (xy 54.61 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8fea6ea-998c-4274-a662-6ac55dcc9c0f) + ) + (wire (pts (xy 355.6 267.97) (xy 361.95 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d94dd7bf-f3f4-4f69-b152-69e9ab2e018a) + ) + (wire (pts (xy 167.64 33.02) (xy 199.39 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9efc2e5-f7c3-44ed-bc7b-5154a1c45781) + ) + (wire (pts (xy 170.18 140.97) (xy 170.18 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da999508-914d-4fff-8091-9e5cc3ccbf02) + ) + (wire (pts (xy 54.61 33.02) (xy 73.66 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0540442-fe37-4a94-9581-d5c6c9abb8cd) + ) + (wire (pts (xy 419.1 308.61) (xy 403.86 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e19de45f-6e3f-48f3-8934-859755520ba9) + ) + (wire (pts (xy 382.27 246.38) (xy 382.27 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1f8193d-4126-4d43-a434-7edc58ac89ae) + ) + (wire (pts (xy 424.18 140.97) (xy 424.18 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3870525-cb12-41d8-8832-915c2f670a91) + ) + (wire (pts (xy 359.41 256.54) (xy 325.12 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e43dce65-720c-41f1-ab27-6c359641198c) + ) + (wire (pts (xy 213.36 100.33) (xy 213.36 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e85486a7-c89d-427c-aab9-a3cb992770f9) + ) + (wire (pts (xy 133.35 71.12) (xy 135.89 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9ff58eb-ba88-457a-9c6c-45a3ff6ba800) + ) + (wire (pts (xy 196.85 267.97) (xy 199.39 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebed9e6e-0794-43b9-b1e7-111375dcd3f5) + ) + (wire (pts (xy 424.18 267.97) (xy 424.18 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecb005cf-1c76-4178-b167-7641817e2de5) + ) + (wire (pts (xy 62.23 60.96) (xy 62.23 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid efee26dd-d3c2-4a05-a278-53f0bf2af3a1) + ) + (wire (pts (xy 231.14 59.69) (xy 196.85 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eff5213a-8ad5-4bdc-9687-e182f1d6bee9) + ) + (wire (pts (xy 199.39 246.38) (xy 191.77 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2ad428c-a8b3-403d-8e3a-7c917479ae5d) + ) + (wire (pts (xy 87.63 100.33) (xy 149.86 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2f22ae9-5f67-4e60-ab48-afb638efbdaf) + ) + (wire (pts (xy 454.66 246.38) (xy 450.85 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4a5e047-e4db-4d5c-82a0-9a5ba55d27b9) + ) + (wire (pts (xy 66.04 60.96) (xy 128.27 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4b4dbdc-e1e7-448d-a7a7-150e2e0972cc) + ) + (wire (pts (xy 129.54 246.38) (xy 129.54 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f55acb1b-c770-4f3f-be9f-b234f0c3fa24) + ) + (wire (pts (xy 196.85 71.12) (xy 199.39 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6b814f6-a5d5-4fc8-abd7-35215b82fd22) + ) + (wire (pts (xy 62.23 60.96) (xy 66.04 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8995876-f8f9-42bb-8dad-ffd3f629983b) + ) + (wire (pts (xy 73.66 87.63) (xy 73.66 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbed58e8-67b3-4bd6-b9e9-b5db3fe1c03d) + ) + (wire (pts (xy 293.37 229.87) (xy 327.66 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff2594ff-075a-45fd-93e6-c579d8735311) + ) + (wire (pts (xy 199.39 49.53) (xy 189.23 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff7dd6d2-9ab4-4a37-8054-df437330ed7f) + ) + (wire (pts (xy 228.6 125.73) (xy 213.36 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fff7558d-71ae-4062-804e-f757b08ace33) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 424.18 162.56 90) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 02144442-ad8b-41ae-93aa-d2e566944c6f) + (property "Reference" "U1" (id 0) (at 426.72 161.29 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 426.72 163.83 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 424.18 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 424.18 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1ad1edd7-509f-4797-b464-bf58bbac86ab)) + (pin "2" (uuid c1e7c340-66c4-467f-9e64-cdbeea86bb39)) + (pin "3" (uuid 8baed26d-41bf-424a-9b80-81c7019f4aaa)) + (pin "4" (uuid ec053a1b-2056-4bf4-bbee-31bd28e764db)) + (pin "5" (uuid 8e898428-eb04-4710-b267-63d429f3e3a6)) + (pin "6" (uuid 20412651-1331-49bf-a90b-8676d9a3f505)) + (pin "7" (uuid 01904a33-093b-4a27-a828-ad3beed00e72)) + (pin "8" (uuid 081bf416-c51e-416a-bbea-8780637f0ff7)) + (pin "9" (uuid b5989172-cb73-4fd6-b771-fc6827b4612f)) + (pin "10" (uuid 27dcdc6e-a845-47a9-9c9a-ee9aaeca9049)) + (pin "11" (uuid cb0ea459-e6c5-4621-9442-a9011ee757cb)) + (pin "12" (uuid 13e4a6ae-274c-41c1-a67e-f5f571824eb8)) + (pin "13" (uuid 05e2bfb8-2f51-49fc-b40a-eaee337e49ad)) + (pin "14" (uuid 6577b4b4-f26c-4483-8ccb-43572fa5565e)) + (pin "15" (uuid 48778e9d-8615-4da9-8c66-d599814d16fc)) + (pin "16" (uuid cc3a28e2-a746-42b3-9d29-e7db9250be22)) + (pin "17" (uuid 72121d44-3ca5-4c22-bd0c-8334d2c938f5)) + (pin "18" (uuid 7bd91dfe-49f4-460a-8f46-2fa76557d2dc)) + (pin "19" (uuid f97a9366-01ac-4bca-831e-8de23eb0a9e4)) + (pin "20" (uuid bbea6994-13fb-46cc-9828-2461e61e9419)) + (pin "21" (uuid 4c75d914-28c5-4262-bb4a-8b8242884085)) + (pin "22" (uuid 5558f9e5-7b88-4f3d-a0e7-6955d39328ab)) + (pin "23" (uuid 7b7be17e-f063-4b1e-80b3-f4bb858589bc)) + (pin "24" (uuid 43879dff-b642-4028-bf48-ef8d078f4911)) + (pin "25" (uuid e7c1cd05-d4e7-436a-9d1c-56fbd743cced)) + (pin "26" (uuid ef0f0dab-c77b-4d72-af4f-301a11bcfd41)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 500.38 229.87 180) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0bb5d1b6-9450-48f8-a63f-e028d332457b) + (property "Reference" "U1" (id 0) (at 504.19 229.235 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 504.19 231.775 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 500.38 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 500.38 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ff4d2c8c-9100-493c-8213-2449b56d7b90)) + (pin "2" (uuid 6d0aa6f3-3647-4ea0-bc15-11886c69b171)) + (pin "3" (uuid ef8a8bef-c18a-46cf-9806-db8190fe2c1f)) + (pin "4" (uuid 96c75cb6-6f1b-4fd4-96b4-293d8beb7ac3)) + (pin "5" (uuid 484d91fd-7468-483a-b046-830d20c0b7b4)) + (pin "6" (uuid b3618ede-8010-40af-9610-17de4e6ff7cf)) + (pin "7" (uuid bfaa7717-bdd7-4614-8758-38e3b6f020ca)) + (pin "8" (uuid bfcb6c8e-1dba-4a59-b664-c22b380b0ea3)) + (pin "9" (uuid fc75a314-62d5-4309-be5c-c708192b249b)) + (pin "10" (uuid b420fef2-0e78-4886-80e3-6d4c31f6606d)) + (pin "11" (uuid e430890f-1e9c-4e57-aef9-a8d2acfea3b8)) + (pin "12" (uuid 5eeae234-8c12-4e31-8f25-2c0ee2a40c3c)) + (pin "13" (uuid ac49e428-7cf2-4100-9c0b-696310df654c)) + (pin "14" (uuid 8b3479bd-9232-415d-9934-629d207e2a92)) + (pin "15" (uuid 41a4a5b5-16b0-4672-9138-456ac05502d2)) + (pin "16" (uuid 7b5dce5f-a394-4c06-9137-33cef78214fc)) + (pin "17" (uuid a7722083-d4ba-46c4-bc0d-15ea86494b51)) + (pin "18" (uuid 6a747833-6940-4c44-badf-b264333943ee)) + (pin "19" (uuid b9e32837-54cf-471c-a1fb-ac920f0265f6)) + (pin "20" (uuid ed574e4e-6337-4cfc-8630-8e2f20671c3f)) + (pin "21" (uuid c9732e1c-53f1-4d6d-a850-af1ba182a9ee)) + (pin "22" (uuid 4401ea63-bab5-4cd5-af53-efceccb36080)) + (pin "23" (uuid bfd77415-f2b6-4073-89ae-eb96bf7c2dd8)) + (pin "24" (uuid 8103ffef-681a-4ab4-8c97-69b46e27af3f)) + (pin "25" (uuid 3c8a2096-bc03-4e9a-9629-81a4ee5883ce)) + (pin "26" (uuid 3b0fc852-f396-49c2-8926-cce1c0c0c89b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 170.18 162.56 90) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 14ab8cce-9292-4e70-b80e-81a2195f5955) + (property "Reference" "U1" (id 0) (at 172.72 161.29 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 172.72 163.83 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 170.18 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1e3678bc-6e84-4916-8e58-dc1df2d7fd48)) + (pin "2" (uuid 59abe692-f88f-4ef3-947a-96b68c96e1cf)) + (pin "3" (uuid da14e63f-d13f-4ddc-b2e6-9b6187f25dca)) + (pin "4" (uuid 7b88bd91-0adf-42f3-8577-9e5c448ce4a9)) + (pin "5" (uuid 368a70be-a095-4eb6-b5a8-397ba7de3203)) + (pin "6" (uuid e6de871d-2561-408c-bd93-3c8b36573cb6)) + (pin "7" (uuid cd46ec10-a11a-4c42-b0c2-590014326dcf)) + (pin "8" (uuid 67eecf1a-0946-45e4-b811-9949b42766ec)) + (pin "9" (uuid 31aa22b3-ed3c-4897-994d-b41d13f7238c)) + (pin "10" (uuid 4e4da7cd-17e8-4d7e-9578-08cda7e4519d)) + (pin "11" (uuid d392c5d7-fe76-4802-bd80-2575fefbac09)) + (pin "12" (uuid 2a4df8a3-0ef1-4b84-9849-7dde198e2e52)) + (pin "13" (uuid d276bf66-323b-410b-89e4-b8850b8e0d11)) + (pin "14" (uuid 93d734aa-e72f-4ed0-a26c-d9cb948a2fb9)) + (pin "15" (uuid 08cd8f6e-af2f-4c13-a0c7-0b707758ea07)) + (pin "16" (uuid 706a13b4-b5aa-4018-8c5e-b5bf7026b2f6)) + (pin "17" (uuid de90d238-8448-4c23-9168-5f7de7c457ad)) + (pin "18" (uuid e705faa8-66c5-42d8-8cee-caf33bd31a3d)) + (pin "19" (uuid d69eb597-b0f5-4971-b265-4d34c8ae9f45)) + (pin "20" (uuid a1ed8216-18d8-4a8a-beb5-4e2fe9500919)) + (pin "21" (uuid eff2bc39-73c2-4780-a4bc-462357defa4d)) + (pin "22" (uuid f54800f2-0827-45ae-9890-c6e1b3baac25)) + (pin "23" (uuid 26e8daf9-0c54-429b-b941-a72f6b1acc17)) + (pin "24" (uuid 411db20b-0ecf-4b0d-81b7-a1d0c9cf2eed)) + (pin "25" (uuid 513c71ae-b416-4809-b4c8-6772cd2e1262)) + (pin "26" (uuid da62f53b-c847-46cc-8e75-d1ef6dbcb7a6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 233.68 327.66 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1a026430-1f27-4180-8ef6-59c2b64ddcdc) + (property "Reference" "U19" (id 0) (at 236.22 326.39 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 236.22 330.2 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 232.41 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 232.41 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bfc38e70-f100-4c84-9efc-21c7d59dc66b)) + (pin "2" (uuid e8da514e-5a46-4ccf-82de-608379b27c31)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 87.63 276.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 24390a25-d57d-41e7-915f-656a614f964a) + (property "Reference" "U5" (id 0) (at 89.6494 260.35 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 89.6494 264.16 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 87.63 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 063fd63b-bb06-4a03-b435-058b4005fc78)) + (pin "2" (uuid 7a1ea776-21a8-499c-9bdd-a5d6d70fb02e)) + (pin "3" (uuid 5d710ede-def2-413c-b8fb-e56b4aada893)) + (pin "4" (uuid 37df199f-3ce8-44b6-87f3-ff122632c174)) + (pin "5" (uuid f9afbb45-088a-45ed-983d-5b221bf140b2)) + (pin "6" (uuid 729482f9-e97c-4e96-94de-bc64b4f48a03)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 149.86 238.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 260b6f5d-b81a-47fd-95ab-8db09f9df333) + (property "Reference" "U10" (id 0) (at 151.8794 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 151.8794 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 149.86 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 25cf0b3f-73ff-4a94-9dcd-5b11a4197dbb)) + (pin "2" (uuid 1e584f62-cb41-4ca8-9e5f-3831c1f9365f)) + (pin "3" (uuid 65057c6f-0af1-4dac-a1cd-d9ed146be5f9)) + (pin "4" (uuid 5340b1c0-0978-4808-88f2-a95774f79cd6)) + (pin "5" (uuid 250cf1b9-aacb-4732-b585-e830168fc67b)) + (pin "6" (uuid b429ef01-ee8e-46b2-a07a-de9df2782512)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 233.68 148.59 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 278c7212-f1e0-4a67-b432-b1316886d65c) + (property "Reference" "U18" (id 0) (at 236.22 147.32 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 236.22 151.13 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 232.41 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 232.41 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c55c4f12-b692-4edb-8c79-e4289af46c6a)) + (pin "2" (uuid 3a99fdf1-b202-43de-88a6-5d3dcb6ed4c8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 107.95 162.56 90) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2843e516-ef30-498e-97d2-47107288df8b) + (property "Reference" "U1" (id 0) (at 110.49 161.29 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 110.49 163.83 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 107.95 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 107.95 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d623f0a3-ef34-444b-99b2-cc62779fc018)) + (pin "2" (uuid b2a01c37-5664-408a-bc4d-67c7447bb695)) + (pin "3" (uuid ed527f8b-8102-4b04-956e-437c2d440220)) + (pin "4" (uuid a57dd41a-5ae8-42de-a38c-e2bd884ee445)) + (pin "5" (uuid 05cf5dfa-86dd-4df9-b5c8-453f188e54c0)) + (pin "6" (uuid f5c68fbf-d845-47df-8e78-e21090a441dc)) + (pin "7" (uuid 991223a8-fb91-4043-9a7d-ded35292d1f8)) + (pin "8" (uuid 85214a5d-9979-4432-bc44-59bdeaea8f16)) + (pin "9" (uuid 8a83f4a1-1f1a-49d2-9279-15e9b64dff9a)) + (pin "10" (uuid 22bef563-959f-4089-921f-4b4766d256a7)) + (pin "11" (uuid 295a2d69-7eb0-4a46-a681-4d26cb887336)) + (pin "12" (uuid e8e131ed-412e-4f93-95e1-568a6ca9c554)) + (pin "13" (uuid 5ce2d872-38b3-4bb7-bba9-f78655de4e71)) + (pin "14" (uuid ace74b16-965d-43e8-ba0e-bc981a4db43d)) + (pin "15" (uuid 244744e5-b4af-4b1a-93a6-1332da708e51)) + (pin "16" (uuid 807097e1-8f90-42da-9718-814ceecf43d2)) + (pin "17" (uuid 63f8af48-b1ec-4bbe-8210-726d1a156602)) + (pin "18" (uuid 57886d48-ef7f-4acc-904c-add1a2f01723)) + (pin "19" (uuid 60a73010-656a-4bb7-977d-9486811e493d)) + (pin "20" (uuid cb1c2536-4c86-4db3-b48d-97783619dff6)) + (pin "21" (uuid d66d6896-3759-4412-9baf-a805c909d45d)) + (pin "22" (uuid 08a91be0-ce38-4a58-bfb8-7b7483f54c7a)) + (pin "23" (uuid ac24e676-a892-454e-9a20-0e7c4ba6734a)) + (pin "24" (uuid 871699ae-0ea2-4cc3-93a3-0a3f5c9434f5)) + (pin "25" (uuid 9a90864a-8159-45e0-9dba-9416a2cdf7cb)) + (pin "26" (uuid 6b018dc3-618f-47bf-b5d6-093c21eddb5d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 48.26 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2aad64b0-4a07-4548-b872-0eafa5bcbc9c) + (property "Reference" "U1" (id 0) (at 48.895 27.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 48.895 30.48 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 48.26 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 48.26 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8aa63fff-921a-4575-9b37-8e43324e2edd)) + (pin "2" (uuid 41757a5a-2dc0-4295-b6ff-7fb577fb0f2b)) + (pin "3" (uuid 43f3a963-ecdb-4c2d-868d-ad2147e71296)) + (pin "4" (uuid 2a4716b0-7833-4763-a950-be2df2cd7c77)) + (pin "5" (uuid 13a32407-1d5c-4af9-a9c8-65abd9ed5f2d)) + (pin "6" (uuid 529b8882-57a2-4da6-a224-35774c00f540)) + (pin "7" (uuid d009d938-1dc2-48b1-a2bc-2002fb02b6a3)) + (pin "8" (uuid 498fbaa8-b91e-4c1b-9c14-c34740beac9f)) + (pin "9" (uuid c430f0a5-2e49-40f1-8222-2529d19e2439)) + (pin "10" (uuid a8848c56-3651-4191-9170-466745b364ca)) + (pin "11" (uuid 0b8ad0e7-6559-4ee3-b7e4-5193cb01b5ce)) + (pin "12" (uuid 5c2d5126-7ffd-41db-9577-bdb3ea4e2160)) + (pin "13" (uuid 721a0e7e-4b72-48b0-80c4-ef2b51fcd7a4)) + (pin "14" (uuid 7a0bb979-7b41-4f73-8dd1-d665732de4d3)) + (pin "15" (uuid 905639ef-9757-41a4-b715-e9ac1e7a6e3d)) + (pin "16" (uuid ecf5a752-1e0c-4559-9247-b6b0dcbd7561)) + (pin "17" (uuid 55454555-f462-46ee-9f3c-9d5ed7356611)) + (pin "18" (uuid c62c1194-0702-4527-b905-1553d1dabc88)) + (pin "19" (uuid e4aebd0e-f7f9-4f66-91f5-130a9f4c9303)) + (pin "20" (uuid 1d7c7446-e091-4780-87a7-9ca560dd6381)) + (pin "21" (uuid 7e6d32ed-9f10-4ba2-bc39-9a1336a4958b)) + (pin "22" (uuid f7c4f81f-fba3-4c5d-a24d-53a88d5c29a1)) + (pin "23" (uuid 72151f69-906e-4535-a7e2-a5df4c3241e5)) + (pin "24" (uuid dee83823-5580-4b3b-bd71-b6d14d8cab52)) + (pin "25" (uuid b12c0c19-559a-45f8-b480-093712465eff)) + (pin "26" (uuid fd1df776-6a59-4e48-98b0-cc2ddd329872)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 170.18 125.73 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2bece5a4-60e2-43e7-a9a6-72709b6ba9e6) + (property "Reference" "X3" (id 0) (at 175.26 126.3649 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 175.26 128.9049 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 170.18 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 170.18 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 642822dd-1265-4014-960b-a65d02936757)) + (pin "2" (uuid 18e02de0-88fb-4a34-89d7-9b0a0b3a976c)) + (pin "2" (uuid d3f3ced4-fadf-4a0c-a9e5-4bf4cae53515)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 170.18 327.66 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2cedb30f-d5bb-4994-85cb-f0c553b9265b) + (property "Reference" "U13" (id 0) (at 172.72 326.39 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 172.72 330.2 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 168.91 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 516b49c1-055e-4486-af84-6e3988cb9256)) + (pin "2" (uuid c640fca7-dd61-4e5e-874d-935ca7dceddc)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 149.86 41.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e2c267f-ff1b-4102-b562-5599c0c6e496) + (property "Reference" "U8" (id 0) (at 151.8794 25.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 151.8794 29.21 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 149.86 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f84a2861-2e41-435f-b596-eadf172c269c)) + (pin "2" (uuid 7eeeb44d-230e-4d9c-829d-645462ed7944)) + (pin "3" (uuid da31d5c9-e974-4ac8-aa39-6d88b3711e9e)) + (pin "4" (uuid 12e64603-1c47-459f-b662-935b9cacfb75)) + (pin "5" (uuid ea09aa6a-328b-41af-ab4c-f901c38b4c73)) + (pin "6" (uuid 5e934e3d-0090-45ab-a84a-83a7e6978c74)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 295.91 327.66 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 34b4b0cc-06c4-4675-b6e6-1a5452b166a4) + (property "Reference" "U25" (id 0) (at 298.45 326.39 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 298.45 330.2 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 294.64 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 944e8eb4-60d2-4da5-bccd-7f1401349a01)) + (pin "2" (uuid b9fecc2e-4b7e-4cc0-8391-f353c952e569)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 275.59 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3557a635-54c5-4047-9d0f-7679c591fffb) + (property "Reference" "U21" (id 0) (at 277.6094 63.5 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 277.6094 67.31 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 275.59 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 275.59 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7d0d1e1b-d909-42e7-8a97-d43b79950068)) + (pin "2" (uuid c0f2807d-95a5-4530-a3de-0a3955d2fca3)) + (pin "3" (uuid 6704fd13-4727-4423-9edb-f6c90514e336)) + (pin "4" (uuid 3d0ee3f2-9430-4058-8105-c2eb1cef8430)) + (pin "5" (uuid 9522f116-95f5-48ba-94fa-6afed08d1695)) + (pin "6" (uuid f4f84d12-089d-4aba-af66-8f2edaebdd6a)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 107.95 308.61 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b3feafe-aa87-4a22-a4d2-2a57f055f6ed) + (property "Reference" "X2" (id 0) (at 113.03 309.2449 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 113.03 311.7849 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 107.95 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 107.95 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 05a8b378-e4c2-4968-840d-7f1fe96d6dc2)) + (pin "2" (uuid 8b076bc1-9718-4154-98c1-c782bc7d8c38)) + (pin "2" (uuid 8b076bc1-9718-4154-98c1-c782bc7d8c38)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 295.91 162.56 90) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4061baa7-2c36-4ba2-9918-2eb37f62bc0e) + (property "Reference" "U1" (id 0) (at 298.45 161.29 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 298.45 163.83 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 295.91 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 295.91 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4eb5dac2-ddd8-4127-b61a-bc51d98eff49)) + (pin "2" (uuid 72893b82-30a5-48c9-9afb-92b5b581f50c)) + (pin "3" (uuid 9fd86741-238d-496f-ad28-1d2c8621efbc)) + (pin "4" (uuid 2fd7c4fa-2b9b-4e12-83ec-94785edfea7e)) + (pin "5" (uuid 0d14f16d-84e6-4799-8e09-125d06114864)) + (pin "6" (uuid 19de2a4c-7ea1-4727-bcf6-90d06b13fbdc)) + (pin "7" (uuid fcebc2bc-f6f2-41a4-b1d8-969ca40f8775)) + (pin "8" (uuid 9e027e64-4222-44dd-8fda-b14ce9db61c5)) + (pin "9" (uuid 3b8485b7-43e5-45df-a450-4fc6c69ef95c)) + (pin "10" (uuid 064057e1-31c8-4495-81e9-51239ae00241)) + (pin "11" (uuid 89e4da87-ceec-4a9c-9eda-6b972657cb45)) + (pin "12" (uuid 1bfe284c-4327-4079-a630-bede2d627f51)) + (pin "13" (uuid 8ff6c82a-4705-4b1b-8b0f-6db7066614d2)) + (pin "14" (uuid 89586c3e-9a9e-41a1-88d0-e113d9eb62ef)) + (pin "15" (uuid 1666d7f6-eec2-4ee6-b83a-36d63680c2a1)) + (pin "16" (uuid c8854d63-259e-41a1-86d2-d4b9dc9d10e2)) + (pin "17" (uuid 71edca44-8d0a-43c8-9045-6e81cfe81bf1)) + (pin "18" (uuid a6dd7941-a93f-4bef-ade7-de331eddbe56)) + (pin "19" (uuid 62c40bba-f431-4803-9095-e5a36ecea123)) + (pin "20" (uuid 1b4b0048-8c33-44c3-975c-3443e2f94c40)) + (pin "21" (uuid 7b5161c8-3580-468f-b8f8-1063fd6e59ce)) + (pin "22" (uuid bdce0dfa-7eb7-43e2-82e0-20cd686f6528)) + (pin "23" (uuid 2001ff88-6417-4588-80d8-166d233b29c1)) + (pin "24" (uuid e44ab0cd-a22b-4d8d-a66f-6a2f13af9741)) + (pin "25" (uuid b677496a-bd02-48c7-98fa-91dba9690139)) + (pin "26" (uuid b8dd63ed-3205-4fbf-a208-4c0dfd3e6820)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 424.18 148.59 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4cee6af7-7267-4815-90c9-315eeb7b59c3) + (property "Reference" "U36" (id 0) (at 426.72 147.32 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 426.72 151.13 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 422.91 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 422.91 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 35527d6e-0c30-450a-9c87-c7fb646587b8)) + (pin "2" (uuid 007e66df-3e5e-41ab-948d-08dc3e6a1edf)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 341.63 41.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e3af334-c30d-4929-8a7e-4ffbbe9259cf) + (property "Reference" "U26" (id 0) (at 343.6494 25.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 343.6494 29.21 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 341.63 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 341.63 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1445ec36-0535-43ad-af5d-9223716e15e8)) + (pin "2" (uuid 07e5a723-d798-4a79-b8e4-c739d62cc060)) + (pin "3" (uuid 63c0a574-2fa3-4df9-be80-95f01443c222)) + (pin "4" (uuid 13391669-9262-4c8a-a312-4147a66207a4)) + (pin "5" (uuid 0605175c-c779-4d86-bfd8-4939b090916f)) + (pin "6" (uuid f44dd571-aa09-48e8-9a7d-2e41fd35b0a8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 295.91 341.63 90) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 500f7785-f3ac-44cf-8440-3d64acf39349) + (property "Reference" "U1" (id 0) (at 298.45 340.36 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 298.45 342.9 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 295.91 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 295.91 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d20f2bb-e56c-4d67-8fa4-847be1f32d31)) + (pin "2" (uuid a501831b-0ae3-41f8-bfef-9353a33501b1)) + (pin "3" (uuid e2a12a93-1227-497d-80b3-abc37ef24133)) + (pin "4" (uuid f3edf0a2-a59b-4864-b33f-5b5e7149cd24)) + (pin "5" (uuid 532c0c18-b358-4a85-8301-bd0be8f69b24)) + (pin "6" (uuid fe3ca081-8387-4e7a-ac44-4b38d3d51cff)) + (pin "7" (uuid 8420a96c-12e3-4448-b179-11488764d0b7)) + (pin "8" (uuid e8716df3-4367-4609-91d0-d1c8a231e8d0)) + (pin "9" (uuid 103ea1b0-7f1c-4224-bd9b-71f5a01c340c)) + (pin "10" (uuid 308ab179-34d5-4601-9481-3d1a8ee8e2e7)) + (pin "11" (uuid 0f128c3e-3b60-460c-8390-b8d88f032725)) + (pin "12" (uuid 8bac5b97-94cb-4013-99ec-2000f587cb41)) + (pin "13" (uuid 684508b8-759b-488c-b2a6-18cc927144e2)) + (pin "14" (uuid bcd89a2f-db15-4993-93bc-ac30260006f3)) + (pin "15" (uuid ec9d6f86-83a3-4b69-be42-751d8c749d49)) + (pin "16" (uuid 49b3be3a-4cde-44f1-b092-77a104584a4f)) + (pin "17" (uuid 4af2b5c8-124b-46c4-b831-b59bb2115698)) + (pin "18" (uuid e327b36d-5624-43f8-ad55-06259afa618d)) + (pin "19" (uuid e01a49b0-fac5-4712-87cb-ef9471fa0d46)) + (pin "20" (uuid b5b5e16b-c6d6-4d3e-82da-5de5ad0ebd07)) + (pin "21" (uuid 1ebd6de3-6da9-4e12-aacc-20b401b150a7)) + (pin "22" (uuid 9012735e-6b08-4c25-bccc-bdf8e4fb86fd)) + (pin "23" (uuid b0a5eca0-a76e-46d2-a171-da0ea7bf35a2)) + (pin "24" (uuid 82e7a14b-f0ff-48e2-903e-03d3d27b6f56)) + (pin "25" (uuid 0620d6d6-5117-4744-8e08-cb0789acd491)) + (pin "26" (uuid 7c931e61-5215-4648-9a40-f359e2427ab7)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 87.63 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 50eff5a6-86ba-4bf0-ab40-3dc5d4c3e6d5) + (property "Reference" "U3" (id 0) (at 89.6494 63.5 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 89.6494 67.31 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 87.63 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8fd0a017-be08-479a-ac5d-07afcb675780)) + (pin "2" (uuid f974af0d-a90b-4fe5-8efd-1023d2efd653)) + (pin "3" (uuid a3231f91-4558-442e-bf48-73bda7566c75)) + (pin "4" (uuid 7b2e02b1-155e-4cec-8276-eed4a18c9c60)) + (pin "5" (uuid 07788b47-92ff-4328-8c77-95c47ac3c20a)) + (pin "6" (uuid fda381e5-f362-49b1-a625-64faf47316b9)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 275.59 238.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5119127b-abb2-4d2b-b9f3-d49f383f2536) + (property "Reference" "U22" (id 0) (at 277.6094 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 277.6094 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 275.59 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 275.59 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a1944623-3fad-4b1e-a10b-01d638371321)) + (pin "2" (uuid 861037d9-ce65-4332-9f76-eda7e898a326)) + (pin "3" (uuid ba3a21d6-59b9-4270-8ee1-b07fc4348c4a)) + (pin "4" (uuid 84f521e4-4d20-4c48-9cf4-f50882d20c5f)) + (pin "5" (uuid e353ca5c-40ca-4f4d-8852-fe5f04fbbfd1)) + (pin "6" (uuid c5eeb867-fcb3-43aa-997c-2d6559bb999c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 361.95 148.59 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53222927-2c01-42b3-bd3e-470e755ba850) + (property "Reference" "U30" (id 0) (at 364.49 147.32 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 364.49 151.13 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 360.68 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 360.68 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7029ccde-4248-47a7-8561-829d7837ec7a)) + (pin "2" (uuid 3252b2f2-6a8d-4172-a8f2-428bf1f26b9e)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 275.59 276.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 547fe71d-59fd-4600-a874-fff96e1c518a) + (property "Reference" "U23" (id 0) (at 277.6094 260.35 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 277.6094 264.16 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 275.59 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 275.59 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b3f1af36-11ef-460f-9f10-1c6ee1c13101)) + (pin "2" (uuid 435a7ed6-100a-4876-8d3f-e24eed8b56a6)) + (pin "3" (uuid 75b59f5f-01bf-49a7-8960-c0ca3d50cb9b)) + (pin "4" (uuid 18985ea0-8227-49e6-ba0d-8987b85bc09c)) + (pin "5" (uuid c32956f1-8662-4fe1-91d5-1673e43c0337)) + (pin "6" (uuid 96996091-9d07-4fd3-b03e-51b676eb6bdb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 233.68 162.56 90) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5aacf067-db88-482f-92ff-a68a54dd7aed) + (property "Reference" "U1" (id 0) (at 236.22 161.29 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 236.22 163.83 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 233.68 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 233.68 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ca4f9fbe-26e6-4909-967b-c9e1c7a14420)) + (pin "2" (uuid 09e8e17c-bc02-4c38-bf43-cc30a11d81a8)) + (pin "3" (uuid 6ee67f7b-51b5-41f2-b50b-d205c870d25f)) + (pin "4" (uuid 75246800-01ed-4ffe-be18-e9b06145dce3)) + (pin "5" (uuid 6b8d85aa-cbc1-4b13-bf12-ee27324b8c66)) + (pin "6" (uuid dd791f52-f58b-462d-aabd-f6a8ef3447ad)) + (pin "7" (uuid e7332be6-26e7-4bc4-ad89-d34a7c61d0d8)) + (pin "8" (uuid 0f4130be-dc2b-4d9f-86fe-407c1c05872d)) + (pin "9" (uuid c7e81e7c-4b19-4898-b5ec-88a2366ec9d8)) + (pin "10" (uuid 32bb0249-c68f-494b-a2f0-445356e949c0)) + (pin "11" (uuid 312ee9b0-4fc0-42f8-92c0-460501005fcd)) + (pin "12" (uuid b7c8b2c5-3969-497b-afc1-1b8faaaa2247)) + (pin "13" (uuid 470bd509-f68e-4c5e-93d2-a6cdf05e6fce)) + (pin "14" (uuid 040c9d34-3a40-4b87-b527-38b06b50f1e5)) + (pin "15" (uuid dd911505-86c5-4558-b43b-333b77f84a67)) + (pin "16" (uuid 93fa6827-0ed6-407b-82de-167c478d591c)) + (pin "17" (uuid 9c5a787d-1b9c-4937-9739-c984e7a25dea)) + (pin "18" (uuid e3f10d3a-c7e0-40e8-b53a-503f16a25cef)) + (pin "19" (uuid 7c41e904-fa6f-4f6b-876f-96d833cd7fae)) + (pin "20" (uuid f15a1404-f920-426a-a2a9-33696efb3894)) + (pin "21" (uuid 9535080f-a51d-4a39-8b2c-494691e6d52f)) + (pin "22" (uuid 45850a42-8a9f-425f-b24f-312e25e2dea2)) + (pin "23" (uuid b778df1b-fb59-43bb-bdbe-04fec19b5de4)) + (pin "24" (uuid cefb86fd-b9df-4cd8-807b-fb039cbde9a7)) + (pin "25" (uuid ef6f1d34-62ed-4f56-858d-dc9a9058185c)) + (pin "26" (uuid 5b1de556-ebe5-43fb-9197-1ba42574a835)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 361.95 308.61 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6782517d-093f-4e77-b84e-e24dfd25042b) + (property "Reference" "X10" (id 0) (at 367.03 309.2449 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 367.03 311.7849 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 361.95 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 361.95 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid bf092f50-0e10-4fda-bc85-a49a9f128327)) + (pin "2" (uuid 84ed1050-70c2-4908-9c06-68548338fb80)) + (pin "2" (uuid 84ed1050-70c2-4908-9c06-68548338fb80)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 403.86 276.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67f25b5b-a92a-41e1-ae76-499ad5c0338c) + (property "Reference" "U35" (id 0) (at 405.8794 260.35 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 405.8794 264.16 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 403.86 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 403.86 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 469b6a7e-fb8a-4701-967c-f2e1ec909540)) + (pin "2" (uuid 2f66d867-1c8f-4a4c-87af-e69182c44219)) + (pin "3" (uuid 14b441c2-d473-4be6-9fbd-9b87141398a4)) + (pin "4" (uuid 10cdede5-fb06-4d1f-82ea-5ae05fede6c1)) + (pin "5" (uuid 020d5417-cbb4-48d3-abc1-44f34476da10)) + (pin "6" (uuid a30e5ba5-db80-4d22-bad7-f293ba027df2)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 107.95 148.59 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68a12782-be86-4acf-875d-5e988eca2155) + (property "Reference" "U6" (id 0) (at 110.49 147.32 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 110.49 151.13 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 106.68 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92c149e6-1174-4da6-a028-d29963ea836e)) + (pin "2" (uuid 17e4e928-5262-4166-b398-37e777021b47)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 424.18 341.63 90) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6b49f53d-8b71-4190-97ea-7abe264e4bfe) + (property "Reference" "U1" (id 0) (at 426.72 340.36 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 426.72 342.9 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 424.18 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 424.18 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ebec548c-9835-413e-b387-61d722f3b32b)) + (pin "2" (uuid 9f633819-e30a-474c-ad56-cdbf669046eb)) + (pin "3" (uuid c6c6980f-000f-40c0-b3f2-3d616f552caf)) + (pin "4" (uuid 4c25bd38-a0d9-4f43-a564-622ea5555c43)) + (pin "5" (uuid 82bde49f-3dfa-484a-a8f7-8b43ff7974ac)) + (pin "6" (uuid 4b07dde5-124d-4066-8caa-5379913697a7)) + (pin "7" (uuid ce60d5e3-805c-4b9e-92af-40a13e6e2902)) + (pin "8" (uuid 6c5364e3-3f08-485d-a262-d81f2c5f7af1)) + (pin "9" (uuid 4ab471fa-de87-4eb6-b946-12ea9802e7cd)) + (pin "10" (uuid c2895947-02f6-4d68-843a-d93b3084bba1)) + (pin "11" (uuid 949f24bf-4220-4199-bb64-63eb7f8cdba3)) + (pin "12" (uuid e227f1f4-2a2a-4a8b-9207-66f02d6ed892)) + (pin "13" (uuid 979b2316-bc56-4fc2-8ce6-1e71f08fdfca)) + (pin "14" (uuid 44d19d91-cc9d-4c32-a0b7-fa408deda228)) + (pin "15" (uuid c755e397-3938-45de-ac2b-73633a9b8b07)) + (pin "16" (uuid 0c247873-a497-4b55-8a93-8aed41778c15)) + (pin "17" (uuid c15b8f8f-bc9a-4fbd-a2c6-7560aa68dacd)) + (pin "18" (uuid d962e093-c3f9-4677-ab27-f0da1ae261e1)) + (pin "19" (uuid 154fd475-12ed-42c8-820e-af661ff7ad38)) + (pin "20" (uuid e351b75d-0bd6-497a-a006-a903b9fb8ae3)) + (pin "21" (uuid 408720a7-eb9f-40db-8b9b-f964c92f5e6a)) + (pin "22" (uuid 12bae822-a063-4814-a98d-0ff88de606ca)) + (pin "23" (uuid 35434e52-9ad4-4451-93e8-e8554c03e849)) + (pin "24" (uuid 4a04751e-006b-4ab0-aea6-55a3f77a2752)) + (pin "25" (uuid f5668e6e-e7ab-4c35-a016-652ac33a1d18)) + (pin "26" (uuid 0b073d52-be43-41a8-b785-41877c81a1cb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 170.18 341.63 90) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73c073cb-abad-44d8-b0cb-8d65849e23a6) + (property "Reference" "U1" (id 0) (at 172.72 340.36 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 172.72 342.9 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 170.18 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ec8ae08a-7ba4-40ab-addb-7b16bdcbc963)) + (pin "2" (uuid 51f52364-8598-46df-9d81-741506d35471)) + (pin "3" (uuid d94e1153-21de-400f-8e7a-5c1eed0851a8)) + (pin "4" (uuid d69a8b25-50ba-486b-b072-bed255a8c460)) + (pin "5" (uuid af77c01d-efb2-4a5c-9132-4c26e0526ea0)) + (pin "6" (uuid d88aee43-371e-47d5-aa1a-aab1c0caafd7)) + (pin "7" (uuid 1ea5bbb6-d399-4646-b441-dcde44f553ab)) + (pin "8" (uuid 1dddce2a-ad88-47a1-b604-f27e641c5f62)) + (pin "9" (uuid 7c39bfee-854e-48a2-9802-db436c791a88)) + (pin "10" (uuid cea344b2-f1be-45d9-a1bc-c1aa881d4aba)) + (pin "11" (uuid a638fac9-ea5d-4833-9729-5fc676f89515)) + (pin "12" (uuid 7c35cd5c-557d-40d4-a18a-33d088d70757)) + (pin "13" (uuid 873ee879-e23b-47a9-9849-2e764e963a39)) + (pin "14" (uuid ee9b30e5-0fc5-4574-b6bd-73db4b821ae0)) + (pin "15" (uuid f09b9917-aa69-41ac-8825-656dbfaa2dc9)) + (pin "16" (uuid 6481ddfd-b837-4a28-b450-1a6e171421ee)) + (pin "17" (uuid 39c806f4-f7eb-4eb2-b7d0-29cfbc94e4da)) + (pin "18" (uuid 8629bcb8-6a57-4f6b-890f-de1cfa04380e)) + (pin "19" (uuid e6974f89-371f-4c93-bbdc-2926f0878663)) + (pin "20" (uuid 220a627a-db94-40b9-8ca6-f8486a2cf4d5)) + (pin "21" (uuid e3e8a602-1ba1-4ae8-b21e-58ff631e47e0)) + (pin "22" (uuid 6eabe228-6765-40dd-b21a-96deb22b0cec)) + (pin "23" (uuid 50ddd5ab-bbe7-44bf-911d-08044cb46d52)) + (pin "24" (uuid d74122c9-8052-4bf4-a4a5-d53fd1488daf)) + (pin "25" (uuid e992f191-9a62-4206-9cdb-ed367930b6eb)) + (pin "26" (uuid 6eb62987-a98c-4a7f-96aa-c867abe8acee)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 107.95 327.66 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 769bce61-f111-4ff5-b7a2-03d6c40eec46) + (property "Reference" "U7" (id 0) (at 110.49 326.39 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 110.49 330.2 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 106.68 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d7e0628-3068-48d0-8f46-577be2995afb)) + (pin "2" (uuid a46070ac-5f33-44de-81a2-e0a8120e6eec)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 213.36 276.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7e801ec1-42fe-45b6-931a-cb8c53105e91) + (property "Reference" "U17" (id 0) (at 215.3794 260.35 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 215.3794 264.16 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 213.36 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b341e5a2-02aa-43f9-82be-5985a09edf08)) + (pin "2" (uuid 8044ef91-8301-45fa-a811-ff9a1504226e)) + (pin "3" (uuid 28ccc23d-e27c-4f59-b2d3-ba863c25fe88)) + (pin "4" (uuid 79d38eff-81f6-413d-8900-b48dd7c8d44d)) + (pin "5" (uuid c9ce2e41-073e-48ba-8017-f6fefdb96258)) + (pin "6" (uuid 6072f5dd-c6a0-4272-ab09-6ab743f34291)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 233.68 308.61 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8425cb36-0fac-4a47-9e85-df36a7fc7707) + (property "Reference" "X6" (id 0) (at 238.76 309.2449 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 238.76 311.7849 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 233.68 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 233.68 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid eaec9c7e-ad81-42a2-a2d3-b405b5ae2fc5)) + (pin "2" (uuid 6ac436b6-931e-4c22-9f7c-448867a45a3c)) + (pin "2" (uuid 6ac436b6-931e-4c22-9f7c-448867a45a3c)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 87.63 41.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8755fdba-4840-4a6e-a43f-60917edaa4db) + (property "Reference" "U2" (id 0) (at 89.6494 25.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 89.6494 29.21 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 87.63 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2906f75d-bd0d-4df1-a806-8834ad206a42)) + (pin "2" (uuid b4154de4-e1d7-4bdf-b109-b517352917ca)) + (pin "3" (uuid 5ca06c73-21a8-4d53-a034-3e6d62d712bd)) + (pin "4" (uuid 906edfa7-c84f-4da1-bb9d-fb44e061666f)) + (pin "5" (uuid 0f168ad3-ce74-4a35-9c0d-f3dbad5c6e7c)) + (pin "6" (uuid 960320df-91fd-4477-b9c6-cb2e2f141803)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 341.63 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 88a4af43-29a1-435d-9767-6f53b9309d79) + (property "Reference" "U27" (id 0) (at 343.6494 63.5 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 343.6494 67.31 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 341.63 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 341.63 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 12170cd5-233a-4099-88ee-efe5db8e1a1e)) + (pin "2" (uuid 2551ef68-6163-4161-ac70-869070a9a0c3)) + (pin "3" (uuid a6cf3aba-23b5-448c-b3e8-7579f63f4dc2)) + (pin "4" (uuid b913df12-8788-4650-adfb-1929c7ef2a9d)) + (pin "5" (uuid 52d45999-a911-43e6-852d-30111338ce83)) + (pin "6" (uuid fe8d1e14-da98-4b12-851e-428cb82e4b61)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 107.95 125.73 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8a5cc590-5803-4808-8c78-69ad590ba79e) + (property "Reference" "X1" (id 0) (at 113.03 126.3649 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 113.03 128.9049 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 107.95 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 107.95 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d9fa4db1-3c76-4539-9140-8c5de8c5705f)) + (pin "2" (uuid 06f6eb20-6fd8-4cd7-aa5f-6afdd65a9dcc)) + (pin "2" (uuid bbe9d13c-f330-463a-b5ab-425ea771c385)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 213.36 238.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8a6701e9-c6ca-428e-8e18-b4034943dba4) + (property "Reference" "U16" (id 0) (at 215.3794 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 215.3794 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 213.36 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c27775ec-1c6a-4430-9f57-a3f3bb893ebe)) + (pin "2" (uuid 70fa4ed5-d35b-49c9-bd50-889a5736281e)) + (pin "3" (uuid ccee10dc-2071-4d46-8d47-9ddadf876de9)) + (pin "4" (uuid 473ffd5a-4566-4e9c-9c95-ffcbb8232f88)) + (pin "5" (uuid 8e9e549a-57d6-46f0-afff-2d824cfc6312)) + (pin "6" (uuid b8715bbd-c3f4-4fe1-bc00-602529001be4)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 341.63 276.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b2f5717-9389-44dc-86b9-081304f9bd3b) + (property "Reference" "U29" (id 0) (at 343.6494 260.35 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 343.6494 264.16 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 341.63 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 341.63 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b047d31-df70-4e6f-b051-3e1014e87ef9)) + (pin "2" (uuid 1010e01a-d983-428e-a027-41afa46f75f9)) + (pin "3" (uuid 5865ddba-c5ac-46d7-b003-bbbecef4e4d5)) + (pin "4" (uuid 4b9f96e2-480e-424a-abc6-e271b18e52e5)) + (pin "5" (uuid f90b47a9-5a81-4c7a-90e4-f55f3737e159)) + (pin "6" (uuid faf9542e-d8ad-486f-b81e-27ff73f0d6cb)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 403.86 238.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8e8e0faa-0f1e-44c3-bb57-41fe5f0ea772) + (property "Reference" "U34" (id 0) (at 405.8794 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 405.8794 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 403.86 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 403.86 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aeab0e0b-5d67-4209-b468-afc59b615e01)) + (pin "2" (uuid 8e2a89b4-e79b-4fd4-b40d-20e9ff8ab013)) + (pin "3" (uuid 9519d0b0-e01d-4cbd-be74-930eee5618fe)) + (pin "4" (uuid cb1e39e9-43f0-4ec1-a45f-93172489f110)) + (pin "5" (uuid 0ecc201a-ea0e-4305-80cf-016f8acbd281)) + (pin "6" (uuid 33e5e127-bb4c-43b5-a691-f4658d5ce8d2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 361.95 162.56 90) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 90387905-1aa4-485e-a2bd-7e88e0116a35) + (property "Reference" "U1" (id 0) (at 364.49 161.29 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 364.49 163.83 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 361.95 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 361.95 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 26d69e9d-c018-4f03-bce9-2b1348fa1ee8)) + (pin "2" (uuid a99eef9f-cfc8-44fa-aa4a-e26f809cbea4)) + (pin "3" (uuid 5df63133-15c2-446a-8a12-c4bd15b452af)) + (pin "4" (uuid 8288199b-8ee4-4651-af66-1bbfee52f39a)) + (pin "5" (uuid dc00a8dd-1687-4cee-9a27-f26006b268bd)) + (pin "6" (uuid 51d4517e-33f4-44b4-a439-48e23754242c)) + (pin "7" (uuid 68fd13e1-7950-4c3e-a75c-117a9a6a141f)) + (pin "8" (uuid 6f83acae-559c-45ac-9cb5-7ca3e230a6d2)) + (pin "9" (uuid fe496210-5a5a-41d3-ae93-53cbac389223)) + (pin "10" (uuid c74a6fbd-7c33-4f1a-b67c-86c881e57f39)) + (pin "11" (uuid 67680b82-6494-4dc2-a8da-0309b3c08792)) + (pin "12" (uuid 7bacd771-aba2-4dd3-bba8-9094fc22f06c)) + (pin "13" (uuid c572cf2a-f927-4ccf-bebd-e66e50035dbe)) + (pin "14" (uuid 339718c8-fabd-4f74-99e0-cf51c3ab4458)) + (pin "15" (uuid c9611fa0-a53b-4303-be94-ca933a69c5d0)) + (pin "16" (uuid 0faba681-f9f8-46fa-8812-6fb3db3ce8f3)) + (pin "17" (uuid 63f5bff7-3087-4212-9989-6c9ef8b6f204)) + (pin "18" (uuid 9880014e-cd77-4eda-a635-1c48e336993d)) + (pin "19" (uuid 5aa57718-1102-44e2-a304-e85352183ec5)) + (pin "20" (uuid 4f5ec31f-0b07-4842-8a20-eec31d03c371)) + (pin "21" (uuid 9ed9ae39-1f67-4e21-8374-f8ef734e168c)) + (pin "22" (uuid 216091ce-223a-4a56-be49-bfdc422cee67)) + (pin "23" (uuid f2ef1cea-c824-4b25-b2db-dce58d5d4e29)) + (pin "24" (uuid a094f8a5-4bf2-463d-ac58-9d2ce48d348e)) + (pin "25" (uuid 62d6214e-e222-46c2-a677-8b33ad1762c0)) + (pin "26" (uuid 28897836-2bf3-4a46-ab58-adee7d3e61cc)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 361.95 327.66 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9c36a8ad-63e7-4210-9d02-0d171ea55514) + (property "Reference" "U31" (id 0) (at 364.49 326.39 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 364.49 330.2 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 360.68 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 360.68 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a707005-9cd2-4e06-b27e-a816ecd22f91)) + (pin "2" (uuid 8ecc6e56-7666-4c34-b523-5c70c4023c0d)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 213.36 41.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a48c3994-72ea-4a3c-9e26-65b04fa9cf18) + (property "Reference" "U14" (id 0) (at 215.3794 25.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 215.3794 29.21 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 213.36 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dfeb6527-5609-4c0b-b07c-abff9a0fafc5)) + (pin "2" (uuid 31437c3f-6d5f-4e5e-885a-23e9ef6f65c5)) + (pin "3" (uuid 45b23f90-5bb8-44cd-bfc1-de2b136a91fd)) + (pin "4" (uuid 5bb44e12-f78b-46f9-9794-ff942dfb103a)) + (pin "5" (uuid c85b6b9e-e22c-4c4c-a5f3-1f76f8d8acb5)) + (pin "6" (uuid 1a424a0c-9fd7-4211-b4df-34571445c0db)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 341.63 238.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a52928a2-41d2-4b76-b0d6-8459f3b0f935) + (property "Reference" "U28" (id 0) (at 343.6494 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 343.6494 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 341.63 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 341.63 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e12202c5-7766-461c-a928-f53b9a923a9b)) + (pin "2" (uuid 753747af-ba65-4806-874b-689b49317005)) + (pin "3" (uuid 5691844f-20c6-4a7f-a6d4-7e6029c951aa)) + (pin "4" (uuid 011a4b8c-b9d3-46ab-b809-7f8c7535ce1f)) + (pin "5" (uuid fe40584a-7a8a-4f5b-8bc1-93034211b618)) + (pin "6" (uuid 2e410bd1-e378-4e90-b115-dc88062f28a4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 40.64 111.76 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a8f11aeb-d949-4a22-9a35-880dfcbe2871) + (property "Reference" "U1" (id 0) (at 41.275 106.68 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 41.275 109.22 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 40.64 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 40.64 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 540735bb-99a4-4439-b865-8d6dfc234978)) + (pin "2" (uuid c3f0a195-c5df-4361-9ad0-5c7ec2ce8df9)) + (pin "3" (uuid 0468970b-eb44-463b-b05e-eaec18a33bdb)) + (pin "4" (uuid 23769886-89ee-4107-b76c-cbc092a82add)) + (pin "5" (uuid 14b4c6f6-9de1-4085-bddc-3a382ebce417)) + (pin "6" (uuid d34c22a0-4236-49c2-b80d-c9d099e16feb)) + (pin "7" (uuid a5b224d1-dc62-47f6-a990-d67a97cf8837)) + (pin "8" (uuid 84e22b92-7330-44b4-8f1f-f675b5f3744c)) + (pin "9" (uuid 19c5cbb3-05ea-4990-a8d1-7e8cb92ed110)) + (pin "10" (uuid 00232970-1872-47e3-b516-15dadfb1703f)) + (pin "11" (uuid 71f870a8-4230-41f5-87b1-0d5d5b71224d)) + (pin "12" (uuid 1ff67025-a388-42f9-9b08-de2b083fcfa8)) + (pin "13" (uuid a9f15efc-1e34-40bb-8989-a1cd3c35bffc)) + (pin "14" (uuid 87ab428e-22c7-49fc-bb44-bad7136353cc)) + (pin "15" (uuid 9750a7b4-e726-4b77-9cf1-f042b91b66c6)) + (pin "16" (uuid efd82c10-ef5c-41fb-8bc5-16cda3d0e7d5)) + (pin "17" (uuid 36a80e30-f9ec-4548-988b-05ca9a79bb39)) + (pin "18" (uuid 58a15615-c8c3-4a11-8fda-217992d8be64)) + (pin "19" (uuid c8d2fa70-36ff-4394-afa3-f60133e4e37b)) + (pin "20" (uuid 5a307d9c-e992-4b66-89f3-e53f72871a8c)) + (pin "21" (uuid b79ee939-e870-4d09-9307-622ce31197c4)) + (pin "22" (uuid b5f2d583-f02f-46e3-a1e4-9e308a43c9d3)) + (pin "23" (uuid 179385cb-f9e5-47d2-b78e-5bec881db879)) + (pin "24" (uuid c536ff08-6cea-4a81-ae84-389b366a740b)) + (pin "25" (uuid 7acd1608-1a28-4122-a4eb-9c948fea67a6)) + (pin "26" (uuid dfe65434-b8f2-4a3e-a0a2-203888fc897a)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 295.91 125.73 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a9a020be-d231-4bbe-823a-c6cd03738be3) + (property "Reference" "X7" (id 0) (at 300.99 126.3649 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 300.99 128.9049 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 295.91 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 295.91 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a45a51a4-ad60-4c32-a10b-d0d971485d90)) + (pin "2" (uuid aa265972-706a-4f69-aecf-1e07f0479f31)) + (pin "2" (uuid b0357a6e-3304-413f-a57e-7464a938c93c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 233.68 341.63 90) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid af37f7ea-47e9-4713-ab77-bda356fce611) + (property "Reference" "U1" (id 0) (at 236.22 340.36 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 236.22 342.9 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 233.68 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 233.68 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8222b359-f3f5-4996-9468-cddaea37d1da)) + (pin "2" (uuid 18207a8d-c72e-4093-aeda-ce25b06ecc5f)) + (pin "3" (uuid 3f1cedec-f6d7-40d1-a352-6434e99e90c4)) + (pin "4" (uuid 0d31e5dc-43d5-4ffe-9b15-abbf971d9ace)) + (pin "5" (uuid e67df42b-49b6-4492-befa-819e875d7ebc)) + (pin "6" (uuid e2da4d73-f6f3-449f-9ca7-ce8aaddb32c1)) + (pin "7" (uuid 708827c8-eac2-4ff9-8df4-5318660ecbba)) + (pin "8" (uuid 0f283c37-8e74-406e-b2c8-f81000bcba49)) + (pin "9" (uuid 77f8925d-7dff-4466-a627-df23d6ed7edf)) + (pin "10" (uuid 2e87e705-7be6-47a2-884e-a0f1fa53accf)) + (pin "11" (uuid 600f5676-630e-4c53-9ca5-a707965917d6)) + (pin "12" (uuid 27b4a413-e727-4f3e-8475-107b489d0ad7)) + (pin "13" (uuid 900a011b-1f08-4c4c-8262-04e25903d968)) + (pin "14" (uuid b520bc40-cfc1-43ec-8af6-9b8a7aa0f5ab)) + (pin "15" (uuid c9457193-3073-489d-9886-5d23e4e2126a)) + (pin "16" (uuid eac90904-54fa-4f3b-85de-53be7d9106d4)) + (pin "17" (uuid 39d4e6ae-2d1a-47d0-9441-6b0388a9ba0b)) + (pin "18" (uuid 4d5297f6-0f0d-426b-8693-19476a230626)) + (pin "19" (uuid 5185a841-35aa-4b98-86a3-7280582b5679)) + (pin "20" (uuid 97065d41-e56c-4295-b54f-2428ba30029d)) + (pin "21" (uuid 4380aa12-9d19-43a2-8a42-9a7691086369)) + (pin "22" (uuid 1d907420-d2d9-4278-9920-646b1bd2278c)) + (pin "23" (uuid 34a4d9dc-f27d-4487-82be-6c516de8812d)) + (pin "24" (uuid 97e790bd-8bc6-4e38-bfd1-e0a9366dff45)) + (pin "25" (uuid e32e5764-99b7-488e-ac20-b439f1d0f794)) + (pin "26" (uuid f3b012e6-0f00-43c1-b917-933a7457f33a)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 275.59 41.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b35a4d84-e321-41b9-a6b2-385ddbc97292) + (property "Reference" "U20" (id 0) (at 277.6094 25.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 277.6094 29.21 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 275.59 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 275.59 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c8f05e74-b118-473c-b85e-96df75adb721)) + (pin "2" (uuid 835d931d-0fac-4aba-baad-17a5a08da2bd)) + (pin "3" (uuid c29ea67d-5580-4543-8f47-46ebc50863c2)) + (pin "4" (uuid a494a3b1-4f9c-4a2b-8426-dff0b93f3665)) + (pin "5" (uuid e8cc29d5-0c10-4e3c-aedc-6e554da24b28)) + (pin "6" (uuid b329850d-3102-4fb3-8255-62d25d11629a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 50.8 60.96 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b495501f-5333-479b-996a-d84fe76339c3) + (property "Reference" "U1" (id 0) (at 51.435 55.88 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 51.435 58.42 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 50.8 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 50.8 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d989706-7d83-47d4-b4c2-9546a4b6a2fb)) + (pin "2" (uuid 09b4a623-51ab-4d51-8d79-9e3214a8cc32)) + (pin "3" (uuid 138770de-531f-4f13-a485-937555ba89c0)) + (pin "4" (uuid f7fcb973-39f9-4625-870f-dcbbf83eeae7)) + (pin "5" (uuid 9102c61d-ce85-4dfa-aa17-d3ad928436ec)) + (pin "6" (uuid 5e349825-f994-4282-a471-7874408cf305)) + (pin "7" (uuid d9f00703-ef4c-42a6-b9c9-f372d57a9df3)) + (pin "8" (uuid 4453103f-414f-4ad6-a77e-8b92f626aa3b)) + (pin "9" (uuid 996f0c13-16dc-44a7-9ec5-eca14c038076)) + (pin "10" (uuid ff6b00d5-e62c-464a-9721-cf6cd6041928)) + (pin "11" (uuid a3deca31-b497-4366-8d1c-c73dfabdf736)) + (pin "12" (uuid 3615909e-a5cc-4466-a014-12c3a10fb7d0)) + (pin "13" (uuid 570aebd5-ad0c-4a01-8381-be6d05f3772b)) + (pin "14" (uuid 7b5c39f0-9968-4a40-9bc0-7b19977461a4)) + (pin "15" (uuid 629e4ffc-e10a-4ce0-9847-5e4e8e90c068)) + (pin "16" (uuid b298f332-5afb-4a8e-bf05-4cd9f315aa81)) + (pin "17" (uuid e0f16234-e1fc-4ef8-b71a-2eb9f517e7d4)) + (pin "18" (uuid 79ae78eb-44f1-45c7-8059-7252d8110bf7)) + (pin "19" (uuid ade638f3-ae25-4cc2-a269-7b6537f67b9a)) + (pin "20" (uuid 9af38aff-2e23-456d-b057-cd9a227374d8)) + (pin "21" (uuid 1fb23f48-c521-44a5-bb33-fa422020f310)) + (pin "22" (uuid 042ef842-c122-464e-84be-06c83eb255d4)) + (pin "23" (uuid 52515151-a65d-4c9e-a689-e6e39245c1fc)) + (pin "24" (uuid cbbd488d-44e3-4427-a711-daa1f5d8a60d)) + (pin "25" (uuid b651c901-4a46-4f7b-9558-42d1a04d8f09)) + (pin "26" (uuid 38e03c32-f0d2-4ad9-ac66-07ba5e3005f1)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 361.95 125.73 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b4a2b4b9-307f-490f-9785-5ff7b9bcc45a) + (property "Reference" "X9" (id 0) (at 367.03 126.3649 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 367.03 128.9049 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 361.95 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 361.95 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ec314e7b-e7d7-4fe1-b55d-b1170af5a8eb)) + (pin "2" (uuid 5cc01d44-764e-4f7a-9233-5534f23bc16f)) + (pin "2" (uuid b6a842df-2b9b-43b4-b7e7-67a0549a2c19)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 424.18 327.66 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b7b1e980-31d0-4d11-aead-01e2bde5df7b) + (property "Reference" "U37" (id 0) (at 426.72 326.39 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 426.72 330.2 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 422.91 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 422.91 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7bb585d5-38a6-4fd3-b78e-28dd62671e73)) + (pin "2" (uuid 136c9a99-d4d1-474d-ba70-4e257034d136)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 170.18 148.59 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b88daf0b-981b-444a-8f57-8459d4ff7318) + (property "Reference" "U12" (id 0) (at 172.72 147.32 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 172.72 151.13 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 168.91 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a729420-031d-4c15-875a-921fe000fb44)) + (pin "2" (uuid 15bbc137-0065-428e-a686-43c8ad280f0d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 500.38 246.38 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba0fe352-6b25-41f9-b2b5-db58833c99ef) + (property "Reference" "U1" (id 0) (at 504.19 245.745 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 504.19 248.285 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 500.38 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 500.38 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c68daeb3-9a24-47dd-87ad-f80340585b5c)) + (pin "2" (uuid ab67714f-2990-4144-a429-d3ffd942a892)) + (pin "3" (uuid cf7a68f6-e505-4ce8-8f89-2d740ae0bd6d)) + (pin "4" (uuid 57a16ff0-7099-40a5-bd2a-538bab37d5ed)) + (pin "5" (uuid ba79238f-47bc-4285-9502-8fdb912f07b7)) + (pin "6" (uuid 4243cb82-b93a-4078-9bc5-f3f1df056a82)) + (pin "7" (uuid bc74366a-6e7d-4525-8c17-3b726eca23a7)) + (pin "8" (uuid 875c4e04-40b1-4a3a-ad53-18fda2bd8981)) + (pin "9" (uuid 810d1300-1c29-4691-a10a-1f7de09f5987)) + (pin "10" (uuid cb047f7d-4dd4-457e-90df-15058cf69da6)) + (pin "11" (uuid 33a78f5d-ad23-4f77-bdc9-4913878e24d9)) + (pin "12" (uuid 367cff0d-948d-4ba8-ad30-f6825a2c413a)) + (pin "13" (uuid b6772850-61ca-41dd-906e-38165e0e180e)) + (pin "14" (uuid 8090e4dd-88d3-43ca-a0b4-51218f45dc7a)) + (pin "15" (uuid f98dbce1-e339-4e2a-b7b3-07a1e2b6a071)) + (pin "16" (uuid 6376b6af-c85e-4b86-8084-551d1e75f23d)) + (pin "17" (uuid 308c5b21-a8a4-4725-b205-d24efab11ed6)) + (pin "18" (uuid e03eb7cb-5fbf-4e4b-a2ae-665fa3e1d617)) + (pin "19" (uuid 6bc9268b-9794-4398-b432-dee7fd59897b)) + (pin "20" (uuid 4ffb5f99-00df-4355-a323-c4c0a52619a1)) + (pin "21" (uuid 2c95df38-e8b4-4ff3-8e6d-cda4e0e3c4d5)) + (pin "22" (uuid fe23b795-0087-4a96-8ec4-7dac32dc2be3)) + (pin "23" (uuid 72f520d0-3a0f-4d74-97b6-1981bc5a986b)) + (pin "24" (uuid 608512d5-4d02-447a-ab60-9b6fa193371e)) + (pin "25" (uuid ce98285e-d90b-423d-a1fd-c1669d4c642a)) + (pin "26" (uuid 4a0e1dac-bb94-435e-86b5-de3523ad97b1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 107.95 341.63 90) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bbf7bdfc-8d79-4ee6-a7c6-421e5914ab0f) + (property "Reference" "U1" (id 0) (at 110.49 340.36 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 110.49 342.9 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 107.95 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 107.95 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f88491cc-2be0-40c7-8485-1e522d3e4447)) + (pin "2" (uuid 16691bcc-52d4-47c3-aff4-cd1157164c1e)) + (pin "3" (uuid a1856cad-c1ac-4e13-bfea-a6db418e1dfd)) + (pin "4" (uuid 9f4f0bfa-22c4-4b7b-b044-11f35bcf30cc)) + (pin "5" (uuid 2fa44275-3a56-4d96-999e-2206fdf32e8d)) + (pin "6" (uuid 3058f69c-ebfe-4b3e-82e3-350a8fd51c3e)) + (pin "7" (uuid 318c9a76-4385-4acc-93a6-0e0d05ebdad6)) + (pin "8" (uuid 500f829b-7188-4361-a369-92223cb5c2ef)) + (pin "9" (uuid 381f7641-41e7-4f45-aee7-ad4e63e93cb2)) + (pin "10" (uuid fb42c56d-7630-47fe-9c7c-98509be25698)) + (pin "11" (uuid 5981e4ce-d277-42a6-baf8-cd6d6e12fca2)) + (pin "12" (uuid 190aff38-b4d3-4fbd-8c3b-3cf487c1878a)) + (pin "13" (uuid 97350a26-b37a-42f5-906b-2514f704c708)) + (pin "14" (uuid 24c02c42-31ab-493d-950b-1a7d0ab83f77)) + (pin "15" (uuid ea615ebf-31b9-499f-8494-aef3dc02ae05)) + (pin "16" (uuid 1566955d-ceb9-4bfb-bd63-92ee2e246caf)) + (pin "17" (uuid 9afc8b81-99d9-4a76-a8d1-b3f8f8c39319)) + (pin "18" (uuid f5b109ee-95d6-41bc-980a-49dd1ffb02bd)) + (pin "19" (uuid f8fd6760-7a9c-41e1-92f5-10b63ee557a4)) + (pin "20" (uuid cf1e5e5c-282f-4581-bfdc-73db1100b484)) + (pin "21" (uuid 20473d9c-c619-4000-8495-edb517670d6b)) + (pin "22" (uuid e49b3851-52a9-41e9-a049-6c3ab263f7cf)) + (pin "23" (uuid 247412bd-7c43-4051-99df-6612f953f247)) + (pin "24" (uuid d129bf45-5410-431b-bbd9-4c39adcd6d41)) + (pin "25" (uuid 6553914a-9011-4d5f-8652-a4d581d55393)) + (pin "26" (uuid 6c47741f-48be-489d-a339-528ec3ca8f61)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 361.95 341.63 90) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c3c434c6-8092-446f-89c1-44cab4a82668) + (property "Reference" "U1" (id 0) (at 364.49 340.36 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 364.49 342.9 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 361.95 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 361.95 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 531eb2bf-2431-40c3-8808-3f7d0e01a04d)) + (pin "2" (uuid 5147232c-971e-478f-ad88-83c94eff0879)) + (pin "3" (uuid c4514cab-dba8-4d4f-a32d-fc535c55e5e0)) + (pin "4" (uuid 23ab5f0f-c270-4c30-86e6-264eb33dcf54)) + (pin "5" (uuid a7b385fb-ae1b-4686-93d7-0b6286a1885e)) + (pin "6" (uuid 7d35ac18-c611-4f89-9e59-0731fcd890ff)) + (pin "7" (uuid 9430c1bc-0e63-4081-ab7c-141f0b82c895)) + (pin "8" (uuid 98c641b7-4138-4e4c-a07c-1fe19a32b084)) + (pin "9" (uuid 18467365-8786-4316-99af-75e793140b05)) + (pin "10" (uuid 238b2878-f9ed-4500-9541-becdce3c206a)) + (pin "11" (uuid e0e5f341-cf0f-4e35-ba56-37429d2f7807)) + (pin "12" (uuid a3051871-2ced-4a66-971d-a4e47f59f144)) + (pin "13" (uuid 8005a697-cf0c-4869-8272-fa763580d8d6)) + (pin "14" (uuid 688ae7e5-70d3-4ae4-b048-f96f41ae6181)) + (pin "15" (uuid 945eae03-f646-442c-8b3d-93ca3b8b33f4)) + (pin "16" (uuid 7cc6aeaa-3978-405d-b3dd-73ae7f254afd)) + (pin "17" (uuid d9d35658-9a12-4dc6-b5c0-3285e93b5526)) + (pin "18" (uuid d28f61ca-762b-4ea1-a869-8929fd17894a)) + (pin "19" (uuid 3fc2f638-5144-4f8e-ba2d-fbfb250bbfa6)) + (pin "20" (uuid 5f4a5065-c6ef-4599-a500-74a2ae404825)) + (pin "21" (uuid 2d7d89e5-2f39-4494-9668-4eb3051f56ff)) + (pin "22" (uuid 5f9a1762-ffa9-4c14-935f-47513fd6729e)) + (pin "23" (uuid 5f9a0693-2dce-4bb5-91b9-6e1d6bcff4f7)) + (pin "24" (uuid 19d945e1-e402-4613-8ef7-81f3c52b9a90)) + (pin "25" (uuid 82204040-a1b5-4cff-ade7-499bb402decb)) + (pin "26" (uuid 8b737c8a-a154-4d86-ab17-e7fb8c5790d3)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 149.86 276.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c6f18bba-e6b6-4921-9c47-9e236cc5d8ca) + (property "Reference" "U11" (id 0) (at 151.8794 260.35 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 151.8794 264.16 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 149.86 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9eb288b5-43da-4bd7-a7e2-ce91eef5dee0)) + (pin "2" (uuid 6a298b33-9868-4dae-bdeb-7726a429f52a)) + (pin "3" (uuid edd36772-2d31-4fa2-b03f-66fee846782b)) + (pin "4" (uuid ddcf2253-67c1-44e0-aa88-c90aacc7dd1a)) + (pin "5" (uuid e7647ae1-dba0-4379-8a03-cc44362f2c2e)) + (pin "6" (uuid 82a92bf6-2f77-4096-8641-d0953104a62e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 39.37 97.79 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc56df7e-b68e-4cc5-b136-3cfc0eee150b) + (property "Reference" "U1" (id 0) (at 40.005 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 40.005 95.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 39.37 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 39.37 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e8cd08a3-6f84-443f-8696-f29ee3022260)) + (pin "2" (uuid 92820f20-03cf-4cff-93ff-f65f0b57ee0f)) + (pin "3" (uuid 5017e6ff-d2e8-4999-a175-acbaccad7d89)) + (pin "4" (uuid 40ce6ccc-ce8d-4254-a461-5d73bd6d730b)) + (pin "5" (uuid 61eaa8cc-faa9-4cd9-83fc-dbc84f477a35)) + (pin "6" (uuid 12d4ccc9-7ca7-406a-b4d9-c1b588e57402)) + (pin "7" (uuid 9bba396b-a468-4ab7-96d9-0ecac12c2051)) + (pin "8" (uuid abb7ba39-533a-4902-89ab-1439965a8e6e)) + (pin "9" (uuid b5314f6b-7b2b-49d8-82cd-2212d459db96)) + (pin "10" (uuid f81d2def-204e-4e19-95e2-b84c6de2b55f)) + (pin "11" (uuid 05a170db-3423-4fb6-ab24-4a93864c2365)) + (pin "12" (uuid 357e0fbe-0dbb-43cb-a2fd-49a0ace7cc89)) + (pin "13" (uuid 6736c1ad-77cd-4686-9777-31968af931d2)) + (pin "14" (uuid 60381790-e4ec-46f3-8307-7d5d9ccdbd81)) + (pin "15" (uuid 26197c24-8a11-4ac8-bb04-bcd29a536990)) + (pin "16" (uuid cef60cb8-3ae4-4d60-b874-ed4882e3feb9)) + (pin "17" (uuid 3a551784-c69d-4155-8983-17ab248cd944)) + (pin "18" (uuid ef5fe42a-622e-48ac-a5cf-a61f9a094b94)) + (pin "19" (uuid bf17feca-e97a-467b-b20d-8824e0d54215)) + (pin "20" (uuid 8f21405d-1ef3-4dab-994c-99aa666bc647)) + (pin "21" (uuid 4902f6ad-2a52-4e5c-925d-73bc75207cc4)) + (pin "22" (uuid 90ca9b97-f198-43b8-926a-228c7dadef8e)) + (pin "23" (uuid cf7f65b1-6657-427f-87c7-1a65b727f200)) + (pin "24" (uuid e645a61c-f5c3-4fdc-a302-3c27a5d19f56)) + (pin "25" (uuid 28f553a5-dc6b-4584-a848-919c37ef8af7)) + (pin "26" (uuid 601fe031-1f2c-4590-a9c4-d34b47b0cf66)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 295.91 148.59 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cff3aaa1-b2a3-46e4-8a25-89a69c909073) + (property "Reference" "U24" (id 0) (at 298.45 147.32 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_inverter" (id 1) (at 298.45 151.13 90) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 294.64 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fac5aa3c-eb2c-4872-aa7d-2c51c69f0ef7)) + (pin "2" (uuid 30dc95dc-8ffd-4651-bf68-5364c240f3a9)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 295.91 308.61 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2aa4eb5-22dd-4e7f-b9bf-5a3aee62c34d) + (property "Reference" "X8" (id 0) (at 300.99 309.2449 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 300.99 311.7849 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 295.91 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 295.91 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dcb39248-076d-48b5-a312-2508c16cf138)) + (pin "2" (uuid 4f2e9b7f-b566-4322-a0d1-8e3e65eda62c)) + (pin "2" (uuid 4f2e9b7f-b566-4322-a0d1-8e3e65eda62c)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 424.18 308.61 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d32032e0-9783-4e57-9900-18526813d544) + (property "Reference" "X12" (id 0) (at 429.26 309.2449 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 429.26 311.7849 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 424.18 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 424.18 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c35b0f40-da81-4958-bb6f-8b1f9373c41d)) + (pin "2" (uuid 07ec9fa2-531f-4e27-8017-bb90d8f2a2c2)) + (pin "2" (uuid 07ec9fa2-531f-4e27-8017-bb90d8f2a2c2)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 149.86 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dd49b8b1-6aca-470e-bd97-b5265bc60547) + (property "Reference" "U9" (id 0) (at 151.8794 63.5 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 151.8794 67.31 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 149.86 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0b96f412-fe38-4b57-9d72-9413c3ad89e8)) + (pin "2" (uuid 0761baec-5f71-42b9-9738-bcb87ed73154)) + (pin "3" (uuid 5fd7a991-0533-44ff-99c9-0ad15e7c274f)) + (pin "4" (uuid 72907434-beff-44ee-8bf7-cb7e7785dc03)) + (pin "5" (uuid 0f1102a4-e4b8-457b-af47-5a7534048f02)) + (pin "6" (uuid 1b30db00-2ac1-4a8a-85f1-36b08c033402)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 424.18 125.73 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e10d8f3c-f135-4438-999c-ffd8e65e418a) + (property "Reference" "X11" (id 0) (at 429.26 126.3649 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 429.26 128.9049 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 424.18 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 424.18 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d7adb504-ecb9-47d3-8fdf-461011ce6f92)) + (pin "2" (uuid c17737d8-81dd-4fa7-bc04-55e8baff162d)) + (pin "2" (uuid 3c94790c-6b54-4f55-b490-b208f4cd9afd)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 213.36 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5fa6bd8-5200-434a-9526-d017b913fd6f) + (property "Reference" "U15" (id 0) (at 215.3794 63.5 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 215.3794 67.31 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 213.36 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e23a8676-5e06-4bea-b9f4-0632ebbf178f)) + (pin "2" (uuid 605da908-192f-46b4-be73-cca83c5ad37f)) + (pin "3" (uuid 390e51c6-3409-4441-babe-473c805fd57b)) + (pin "4" (uuid 0007b3a1-ee50-4ac5-a338-d56beebbcdf7)) + (pin "5" (uuid e9d3b3dc-fbd9-4624-b481-eaa5e5cf0efa)) + (pin "6" (uuid 9bc32912-2327-4e00-84f0-e69b85e87822)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 468.63 255.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8802a8c-6a52-455e-a062-1ed730b0b596) + (property "Reference" "U38" (id 0) (at 470.6494 238.76 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 470.6494 242.57 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 468.63 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 468.63 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f1b69465-98e9-4f31-8dde-8722f3ce0868)) + (pin "2" (uuid 8f06e736-2660-468b-899a-54b035f5a1ab)) + (pin "3" (uuid db4d4900-547a-4dda-97b1-c46833b89f6e)) + (pin "4" (uuid e99f0cd4-136e-4fad-a17b-f0ad70782711)) + (pin "5" (uuid 353cc66a-b9be-42d6-a2b8-4d01cf72b847)) + (pin "6" (uuid f539ec6f-a928-4169-adf3-1fd98620c0c2)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 233.68 125.73 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ec1a7c8b-a563-4090-a738-d8036c73369a) + (property "Reference" "X5" (id 0) (at 238.76 126.3649 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 238.76 128.9049 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 233.68 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 233.68 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7d235499-b762-40ff-a89e-744ff593aab8)) + (pin "2" (uuid f766b4b1-914e-40b8-8313-247d755107f0)) + (pin "2" (uuid 622703cd-174a-49a5-a32d-18c844bb3fe5)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 87.63 238.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ee98cd2c-106c-49b7-8e1f-233afa0bb651) + (property "Reference" "U4" (id 0) (at 89.6494 222.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 89.6494 226.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 87.63 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d18d73b-6bd2-419e-9c6b-e0f63cb7cd43)) + (pin "2" (uuid a3c3c46c-34b0-489d-a64c-b7ee4d6cdd25)) + (pin "3" (uuid f1530db9-43a0-43fa-95a2-dde01674f538)) + (pin "4" (uuid e1067bf8-6485-4598-826d-53083c974d42)) + (pin "5" (uuid ffc73da2-5e2f-4c6d-97b7-1b385ee311f7)) + (pin "6" (uuid 5747e3d2-e39c-4f74-adb4-b72e69b6d174)) + ) + + (symbol (lib_id "eSim_Digital:d_dlatch") (at 403.86 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f0e47cb1-cf27-474a-912d-c0150a9fd45c) + (property "Reference" "U33" (id 0) (at 405.8794 63.5 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dlatch" (id 1) (at 405.8794 67.31 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 403.86 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 403.86 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cde3e0e3-0c12-4098-8e48-0da552cb57a1)) + (pin "2" (uuid dad2561f-adf1-407f-a498-c67feca6b37c)) + (pin "3" (uuid 87e72ef0-83df-4af4-b64d-34e8be37ec1d)) + (pin "4" (uuid da610611-b358-4dca-b56b-946cbfed4fd5)) + (pin "5" (uuid 9acd580b-1527-4fc7-982e-8ed3d1f535c8)) + (pin "6" (uuid 9795bd1c-21d6-41ab-8416-8851de60cf73)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 403.86 41.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f0f65bcb-52b0-4f6a-93ec-77116a9f101e) + (property "Reference" "U32" (id 0) (at 405.8794 25.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 405.8794 29.21 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 403.86 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 403.86 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 21e41168-32a7-4171-ae17-6517414c4549)) + (pin "2" (uuid 14bd9060-b77a-46bf-9555-a6ecaf7c43e7)) + (pin "3" (uuid c3ff3f79-f550-4928-b0cd-ee8314db06ba)) + (pin "4" (uuid fa274567-4459-4578-a675-e701bdac4f99)) + (pin "5" (uuid 4f7dbab0-8afd-4a3b-be98-ec3c9081673e)) + (pin "6" (uuid 662a2af0-37f5-4532-a790-833b46bc5a26)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 170.18 308.61 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f3da5447-9f89-43a8-b90a-ff0188986ba8) + (property "Reference" "X4" (id 0) (at 175.26 309.2449 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TRISTATE" (id 1) (at 175.26 311.7849 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 170.18 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 170.18 308.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 01124330-e254-4225-8948-7ead86a390c2)) + (pin "2" (uuid 1a815269-0a41-473b-9fab-a31b997be26f)) + (pin "2" (uuid 1a815269-0a41-473b-9fab-a31b997be26f)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/2aad64b0-4a07-4548-b872-0eafa5bcbc9c" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/b495501f-5333-479b-996a-d84fe76339c3" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/cc56df7e-b68e-4cc5-b136-3cfc0eee150b" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/a8f11aeb-d949-4a22-9a35-880dfcbe2871" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/0bb5d1b6-9450-48f8-a63f-e028d332457b" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/ba0fe352-6b25-41f9-b2b5-db58833c99ef" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/2843e516-ef30-498e-97d2-47107288df8b" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/14ab8cce-9292-4e70-b80e-81a2195f5955" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/5aacf067-db88-482f-92ff-a68a54dd7aed" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/4061baa7-2c36-4ba2-9918-2eb37f62bc0e" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/90387905-1aa4-485e-a2bd-7e88e0116a35" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/02144442-ad8b-41ae-93aa-d2e566944c6f" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/bbf7bdfc-8d79-4ee6-a7c6-421e5914ab0f" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/73c073cb-abad-44d8-b0cb-8d65849e23a6" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/af37f7ea-47e9-4713-ab77-bda356fce611" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/500f7785-f3ac-44cf-8440-3d64acf39349" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/c3c434c6-8092-446f-89c1-44cab4a82668" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/6b49f53d-8b71-4190-97ea-7abe264e4bfe" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/8755fdba-4840-4a6e-a43f-60917edaa4db" + (reference "U2") (unit 1) (value "d_dff") (footprint "") + ) + (path "/50eff5a6-86ba-4bf0-ab40-3dc5d4c3e6d5" + (reference "U3") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/ee98cd2c-106c-49b7-8e1f-233afa0bb651" + (reference "U4") (unit 1) (value "d_dff") (footprint "") + ) + (path "/24390a25-d57d-41e7-915f-656a614f964a" + (reference "U5") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/68a12782-be86-4acf-875d-5e988eca2155" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/769bce61-f111-4ff5-b7a2-03d6c40eec46" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2e2c267f-ff1b-4102-b562-5599c0c6e496" + (reference "U8") (unit 1) (value "d_dff") (footprint "") + ) + (path "/dd49b8b1-6aca-470e-bd97-b5265bc60547" + (reference "U9") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/260b6f5d-b81a-47fd-95ab-8db09f9df333" + (reference "U10") (unit 1) (value "d_dff") (footprint "") + ) + (path "/c6f18bba-e6b6-4921-9c47-9e236cc5d8ca" + (reference "U11") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/b88daf0b-981b-444a-8f57-8459d4ff7318" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2cedb30f-d5bb-4994-85cb-f0c553b9265b" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a48c3994-72ea-4a3c-9e26-65b04fa9cf18" + (reference "U14") (unit 1) (value "d_dff") (footprint "") + ) + (path "/e5fa6bd8-5200-434a-9526-d017b913fd6f" + (reference "U15") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/8a6701e9-c6ca-428e-8e18-b4034943dba4" + (reference "U16") (unit 1) (value "d_dff") (footprint "") + ) + (path "/7e801ec1-42fe-45b6-931a-cb8c53105e91" + (reference "U17") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/278c7212-f1e0-4a67-b432-b1316886d65c" + (reference "U18") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1a026430-1f27-4180-8ef6-59c2b64ddcdc" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b35a4d84-e321-41b9-a6b2-385ddbc97292" + (reference "U20") (unit 1) (value "d_dff") (footprint "") + ) + (path "/3557a635-54c5-4047-9d0f-7679c591fffb" + (reference "U21") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/5119127b-abb2-4d2b-b9f3-d49f383f2536" + (reference "U22") (unit 1) (value "d_dff") (footprint "") + ) + (path "/547fe71d-59fd-4600-a874-fff96e1c518a" + (reference "U23") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/cff3aaa1-b2a3-46e4-8a25-89a69c909073" + (reference "U24") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/34b4b0cc-06c4-4675-b6e6-1a5452b166a4" + (reference "U25") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4e3af334-c30d-4929-8a7e-4ffbbe9259cf" + (reference "U26") (unit 1) (value "d_dff") (footprint "") + ) + (path "/88a4af43-29a1-435d-9767-6f53b9309d79" + (reference "U27") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/a52928a2-41d2-4b76-b0d6-8459f3b0f935" + (reference "U28") (unit 1) (value "d_dff") (footprint "") + ) + (path "/8b2f5717-9389-44dc-86b9-081304f9bd3b" + (reference "U29") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/53222927-2c01-42b3-bd3e-470e755ba850" + (reference "U30") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9c36a8ad-63e7-4210-9d02-0d171ea55514" + (reference "U31") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f0f65bcb-52b0-4f6a-93ec-77116a9f101e" + (reference "U32") (unit 1) (value "d_dff") (footprint "") + ) + (path "/f0e47cb1-cf27-474a-912d-c0150a9fd45c" + (reference "U33") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/8e8e0faa-0f1e-44c3-bb57-41fe5f0ea772" + (reference "U34") (unit 1) (value "d_dff") (footprint "") + ) + (path "/67f25b5b-a92a-41e1-ae76-499ad5c0338c" + (reference "U35") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/4cee6af7-7267-4815-90c9-315eeb7b59c3" + (reference "U36") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b7b1e980-31d0-4d11-aead-01e2bde5df7b" + (reference "U37") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e8802a8c-6a52-455e-a062-1ed730b0b596" + (reference "U38") (unit 1) (value "d_dlatch") (footprint "") + ) + (path "/8a5cc590-5803-4808-8c78-69ad590ba79e" + (reference "X1") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/3b3feafe-aa87-4a22-a4d2-2a57f055f6ed" + (reference "X2") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/2bece5a4-60e2-43e7-a9a6-72709b6ba9e6" + (reference "X3") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/f3da5447-9f89-43a8-b90a-ff0188986ba8" + (reference "X4") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/ec1a7c8b-a563-4090-a738-d8036c73369a" + (reference "X5") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/8425cb36-0fac-4a47-9e85-df36a7fc7707" + (reference "X6") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/a9a020be-d231-4bbe-823a-c6cd03738be3" + (reference "X7") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/d2aa4eb5-22dd-4e7f-b9bf-5a3aee62c34d" + (reference "X8") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/b4a2b4b9-307f-490f-9785-5ff7b9bcc45a" + (reference "X9") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/6782517d-093f-4e77-b84e-e24dfd25042b" + (reference "X10") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/e10d8f3c-f135-4438-999c-ffd8e65e418a" + (reference "X11") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/d32032e0-9783-4e57-9900-18526813d544" + (reference "X12") (unit 1) (value "TRISTATE") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.sub new file mode 100644 index 000000000..505bf3d60 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B.sub @@ -0,0 +1,167 @@ +* Subcircuit HEF4894B +.subckt HEF4894B net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ +.title kicad schematic +.include TRISTATE.sub +* u20 net-_u14-pad5_ net-_u1-pad2_ unconnected-_u20-pad3_ unconnected-_u20-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ d_dff +* u15 net-_u14-pad5_ net-_u1-pad3_ unconnected-_u15-pad3_ unconnected-_u15-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ d_dlatch +x5 net-_u15-pad5_ net-_u1-pad4_ net-_u18-pad1_ TRISTATE +* u14 net-_u14-pad1_ net-_u1-pad2_ unconnected-_u14-pad3_ unconnected-_u14-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_dff +* u21 net-_u20-pad5_ net-_u1-pad3_ unconnected-_u21-pad3_ unconnected-_u21-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ d_dlatch +* u33 net-_u32-pad5_ net-_u1-pad3_ unconnected-_u33-pad3_ unconnected-_u33-pad4_ net-_u33-pad5_ unconnected-_u33-pad6_ d_dlatch +x9 net-_u27-pad5_ net-_u1-pad4_ net-_u30-pad1_ TRISTATE +* u30 net-_u30-pad1_ net-_u1-pad11_ d_inverter +* u8 net-_u2-pad5_ net-_u1-pad2_ unconnected-_u8-pad3_ unconnected-_u8-pad4_ net-_u14-pad1_ unconnected-_u8-pad6_ d_dff +* u2 net-_u1-pad1_ net-_u1-pad2_ unconnected-_u2-pad3_ unconnected-_u2-pad4_ net-_u2-pad5_ unconnected-_u2-pad6_ d_dff +* u36 net-_u36-pad1_ net-_u1-pad12_ d_inverter +x11 net-_u33-pad5_ net-_u1-pad4_ net-_u36-pad1_ TRISTATE +* u26 net-_u20-pad5_ net-_u1-pad2_ unconnected-_u26-pad3_ unconnected-_u26-pad4_ net-_u26-pad5_ unconnected-_u26-pad6_ d_dff +* u32 net-_u26-pad5_ net-_u1-pad2_ unconnected-_u32-pad3_ unconnected-_u32-pad4_ net-_u32-pad5_ unconnected-_u32-pad6_ d_dff +* u27 net-_u26-pad5_ net-_u1-pad3_ unconnected-_u27-pad3_ unconnected-_u27-pad4_ net-_u27-pad5_ unconnected-_u27-pad6_ d_dlatch +* u9 net-_u14-pad1_ net-_u1-pad3_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u9-pad5_ unconnected-_u9-pad6_ d_dlatch +* u6 net-_u6-pad1_ net-_u1-pad7_ d_inverter +x1 net-_u3-pad5_ net-_u1-pad4_ net-_u6-pad1_ TRISTATE +* u12 net-_u12-pad1_ net-_u1-pad8_ d_inverter +x3 net-_u9-pad5_ net-_u1-pad4_ net-_u12-pad1_ TRISTATE +x7 net-_u21-pad5_ net-_u1-pad4_ net-_u24-pad1_ TRISTATE +* u24 net-_u24-pad1_ net-_u1-pad10_ d_inverter +* u18 net-_u18-pad1_ net-_u1-pad9_ d_inverter +* u3 net-_u2-pad5_ net-_u1-pad3_ unconnected-_u3-pad3_ unconnected-_u3-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ d_dlatch +* u4 net-_u32-pad5_ net-_u1-pad2_ unconnected-_u4-pad3_ unconnected-_u4-pad4_ net-_u10-pad1_ unconnected-_u4-pad6_ d_dff +* u11 net-_u10-pad5_ net-_u1-pad3_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ d_dlatch +* u10 net-_u10-pad1_ net-_u1-pad2_ unconnected-_u10-pad3_ unconnected-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ d_dff +* u5 net-_u10-pad1_ net-_u1-pad3_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ d_dlatch +* u7 net-_u7-pad1_ net-_u1-pad13_ d_inverter +* u13 net-_u13-pad1_ net-_u1-pad14_ d_inverter +x2 net-_u5-pad5_ net-_u1-pad4_ net-_u7-pad1_ TRISTATE +x4 net-_u11-pad5_ net-_u1-pad4_ net-_u13-pad1_ TRISTATE +* u16 net-_u10-pad5_ net-_u1-pad2_ unconnected-_u16-pad3_ unconnected-_u16-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ d_dff +* u23 net-_u22-pad5_ net-_u1-pad3_ unconnected-_u23-pad3_ unconnected-_u23-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ d_dlatch +* u17 net-_u16-pad5_ net-_u1-pad3_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_dlatch +* u22 net-_u16-pad5_ net-_u1-pad2_ unconnected-_u22-pad3_ unconnected-_u22-pad4_ net-_u22-pad5_ unconnected-_u22-pad6_ d_dff +* u38 net-_u1-pad5_ net-_u1-pad2_ unconnected-_u38-pad3_ unconnected-_u38-pad4_ net-_u1-pad6_ unconnected-_u38-pad6_ d_dlatch +* u35 net-_u1-pad5_ net-_u1-pad3_ unconnected-_u35-pad3_ unconnected-_u35-pad4_ net-_u35-pad5_ unconnected-_u35-pad6_ d_dlatch +* u34 net-_u28-pad5_ net-_u1-pad2_ unconnected-_u34-pad3_ unconnected-_u34-pad4_ net-_u1-pad5_ unconnected-_u34-pad6_ d_dff +* u29 net-_u28-pad5_ net-_u1-pad3_ unconnected-_u29-pad3_ unconnected-_u29-pad4_ net-_u29-pad5_ unconnected-_u29-pad6_ d_dlatch +x12 net-_u35-pad5_ net-_u1-pad4_ net-_u37-pad1_ TRISTATE +* u37 net-_u37-pad1_ net-_u1-pad18_ d_inverter +* u31 net-_u31-pad1_ net-_u1-pad17_ d_inverter +x10 net-_u29-pad5_ net-_u1-pad4_ net-_u31-pad1_ TRISTATE +* u28 net-_u22-pad5_ net-_u1-pad2_ unconnected-_u28-pad3_ unconnected-_u28-pad4_ net-_u28-pad5_ unconnected-_u28-pad6_ d_dff +* u19 net-_u19-pad1_ net-_u1-pad15_ d_inverter +* u25 net-_u25-pad1_ net-_u1-pad16_ d_inverter +x6 net-_u17-pad5_ net-_u1-pad4_ net-_u19-pad1_ TRISTATE +x8 net-_u23-pad5_ net-_u1-pad4_ net-_u25-pad1_ TRISTATE +a1 net-_u14-pad5_ net-_u1-pad2_ unconnected-_u20-pad3_ unconnected-_u20-pad4_ net-_u20-pad5_ unconnected-_u20-pad6_ u20 +a2 net-_u14-pad5_ net-_u1-pad3_ unconnected-_u15-pad3_ unconnected-_u15-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ u15 +a3 net-_u14-pad1_ net-_u1-pad2_ unconnected-_u14-pad3_ unconnected-_u14-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a4 net-_u20-pad5_ net-_u1-pad3_ unconnected-_u21-pad3_ unconnected-_u21-pad4_ net-_u21-pad5_ unconnected-_u21-pad6_ u21 +a5 net-_u32-pad5_ net-_u1-pad3_ unconnected-_u33-pad3_ unconnected-_u33-pad4_ net-_u33-pad5_ unconnected-_u33-pad6_ u33 +a6 net-_u30-pad1_ net-_u1-pad11_ u30 +a7 net-_u2-pad5_ net-_u1-pad2_ unconnected-_u8-pad3_ unconnected-_u8-pad4_ net-_u14-pad1_ unconnected-_u8-pad6_ u8 +a8 net-_u1-pad1_ net-_u1-pad2_ unconnected-_u2-pad3_ unconnected-_u2-pad4_ net-_u2-pad5_ unconnected-_u2-pad6_ u2 +a9 net-_u36-pad1_ net-_u1-pad12_ u36 +a10 net-_u20-pad5_ net-_u1-pad2_ unconnected-_u26-pad3_ unconnected-_u26-pad4_ net-_u26-pad5_ unconnected-_u26-pad6_ u26 +a11 net-_u26-pad5_ net-_u1-pad2_ unconnected-_u32-pad3_ unconnected-_u32-pad4_ net-_u32-pad5_ unconnected-_u32-pad6_ u32 +a12 net-_u26-pad5_ net-_u1-pad3_ unconnected-_u27-pad3_ unconnected-_u27-pad4_ net-_u27-pad5_ unconnected-_u27-pad6_ u27 +a13 net-_u14-pad1_ net-_u1-pad3_ unconnected-_u9-pad3_ unconnected-_u9-pad4_ net-_u9-pad5_ unconnected-_u9-pad6_ u9 +a14 net-_u6-pad1_ net-_u1-pad7_ u6 +a15 net-_u12-pad1_ net-_u1-pad8_ u12 +a16 net-_u24-pad1_ net-_u1-pad10_ u24 +a17 net-_u18-pad1_ net-_u1-pad9_ u18 +a18 net-_u2-pad5_ net-_u1-pad3_ unconnected-_u3-pad3_ unconnected-_u3-pad4_ net-_u3-pad5_ unconnected-_u3-pad6_ u3 +a19 net-_u32-pad5_ net-_u1-pad2_ unconnected-_u4-pad3_ unconnected-_u4-pad4_ net-_u10-pad1_ unconnected-_u4-pad6_ u4 +a20 net-_u10-pad5_ net-_u1-pad3_ unconnected-_u11-pad3_ unconnected-_u11-pad4_ net-_u11-pad5_ unconnected-_u11-pad6_ u11 +a21 net-_u10-pad1_ net-_u1-pad2_ unconnected-_u10-pad3_ unconnected-_u10-pad4_ net-_u10-pad5_ unconnected-_u10-pad6_ u10 +a22 net-_u10-pad1_ net-_u1-pad3_ unconnected-_u5-pad3_ unconnected-_u5-pad4_ net-_u5-pad5_ unconnected-_u5-pad6_ u5 +a23 net-_u7-pad1_ net-_u1-pad13_ u7 +a24 net-_u13-pad1_ net-_u1-pad14_ u13 +a25 net-_u10-pad5_ net-_u1-pad2_ unconnected-_u16-pad3_ unconnected-_u16-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ u16 +a26 net-_u22-pad5_ net-_u1-pad3_ unconnected-_u23-pad3_ unconnected-_u23-pad4_ net-_u23-pad5_ unconnected-_u23-pad6_ u23 +a27 net-_u16-pad5_ net-_u1-pad3_ unconnected-_u17-pad3_ unconnected-_u17-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a28 net-_u16-pad5_ net-_u1-pad2_ unconnected-_u22-pad3_ unconnected-_u22-pad4_ net-_u22-pad5_ unconnected-_u22-pad6_ u22 +a29 net-_u1-pad5_ net-_u1-pad2_ unconnected-_u38-pad3_ unconnected-_u38-pad4_ net-_u1-pad6_ unconnected-_u38-pad6_ u38 +a30 net-_u1-pad5_ net-_u1-pad3_ unconnected-_u35-pad3_ unconnected-_u35-pad4_ net-_u35-pad5_ unconnected-_u35-pad6_ u35 +a31 net-_u28-pad5_ net-_u1-pad2_ unconnected-_u34-pad3_ unconnected-_u34-pad4_ net-_u1-pad5_ unconnected-_u34-pad6_ u34 +a32 net-_u28-pad5_ net-_u1-pad3_ unconnected-_u29-pad3_ unconnected-_u29-pad4_ net-_u29-pad5_ unconnected-_u29-pad6_ u29 +a33 net-_u37-pad1_ net-_u1-pad18_ u37 +a34 net-_u31-pad1_ net-_u1-pad17_ u31 +a35 net-_u22-pad5_ net-_u1-pad2_ unconnected-_u28-pad3_ unconnected-_u28-pad4_ net-_u28-pad5_ unconnected-_u28-pad6_ u28 +a36 net-_u19-pad1_ net-_u1-pad15_ u19 +a37 net-_u25-pad1_ net-_u1-pad16_ u25 +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u20 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u15 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u14 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u21 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u33 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u30 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u8 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u2 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u36 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u26 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u32 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u27 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u9 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u3 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u4 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u11 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u10 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u5 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u16 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u23 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u17 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u22 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u38 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u35 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u34 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u29 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u37 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u28 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends HEF4894B \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B_Previous_Values.xml new file mode 100644 index 000000000..65d687e11 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/HEF4894B_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secususd_dffd_dlatchd_dffd_dlatchd_dlatchd_inverterd_dffd_dffd_inverterd_dffd_dffd_dlatchd_dlatchd_inverterd_inverterd_inverterd_inverterd_dlatchd_dffd_dlatchd_dffd_dlatchd_inverterd_inverterd_dffd_dlatchd_dlatchd_dffd_dlatchd_dlatchd_dffd_dlatchd_inverterd_inverterd_dffd_inverterd_inverterC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATE \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.cir new file mode 100644 index 000000000..caac1cdde --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.cir @@ -0,0 +1,10 @@ +.title KiCad schematic +v1 Net-_U2-Pad1_ GND DC +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ PORT +U5 Net-_U3-Pad2_ Net-_U2-Pad2_ Net-_U5-Pad3_ d_and +U4 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U4-Pad3_ d_and +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ adc_bridge_1 +U3 Net-_U1-Pad1_ Net-_U3-Pad2_ d_inverter +U7 Net-_U6-Pad3_ Net-_U1-Pad3_ d_buffer +U6 Net-_U4-Pad3_ Net-_U5-Pad3_ Net-_U6-Pad3_ d_or +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.cir.out new file mode 100644 index 000000000..ed8bfe9ca --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.cir.out @@ -0,0 +1,37 @@ +.title kicad schematic + +v1 net-_u2-pad1_ gnd dc 0 +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ port +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.kicad_sch new file mode 100644 index 000000000..5238469a9 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.kicad_sch @@ -0,0 +1,926 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 6fc943a8-97d8-4111-93e9-49bb4a164911) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "DC" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DC_0_1" + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DC_1_1" + (pin power_out line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 111.76 93.98) (diameter 0) (color 0 0 0 0) + (uuid 14ad2087-2eee-431b-8842-3056e26a34e8) + ) + + (wire (pts (xy 111.76 93.98) (xy 109.22 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 163f5430-84cc-4a80-8e5f-6f2a5f27f6b7) + ) + (wire (pts (xy 135.89 109.22) (xy 134.62 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26a2e51d-f8c9-4603-977a-ec3441476833) + ) + (wire (pts (xy 116.84 95.25) (xy 116.84 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31a0d277-7413-4301-8b23-2d4c654bd540) + ) + (wire (pts (xy 111.76 69.85) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 454df123-e845-4d03-8c39-7a0fc517b763) + ) + (wire (pts (xy 111.76 69.85) (xy 138.43 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56f10ce4-3616-4390-9a32-7b62234bf80f) + ) + (wire (pts (xy 227.33 83.82) (xy 229.87 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58a0316b-fdad-40e3-96f7-cb28e4b5690b) + ) + (wire (pts (xy 114.3 72.39) (xy 138.43 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a1f4464-c616-4a33-82f9-8dd8ebfb0a8c) + ) + (wire (pts (xy 102.87 109.22) (xy 105.41 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a2a2aba-beae-4a0a-9586-601cd854cbd0) + ) + (wire (pts (xy 161.29 96.52) (xy 161.29 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e0ecf4a-5933-465a-9bc3-1b74f4efaf29) + ) + (wire (pts (xy 114.3 96.52) (xy 114.3 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b403cfa-1a57-4ee1-b716-cf37e8d9a005) + ) + (wire (pts (xy 259.08 83.82) (xy 261.62 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dbc0d1f-7850-4943-8d03-441ae7413488) + ) + (wire (pts (xy 198.12 83.82) (xy 194.31 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81e2c941-f56c-4b6a-b07e-98f1f9c7c54a) + ) + (wire (pts (xy 109.22 96.52) (xy 114.3 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92b18b87-08f1-4557-b338-e1b8d2e6c64d) + ) + (wire (pts (xy 171.45 82.55) (xy 161.29 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5e9c456-8d3d-429d-9282-26751c5dbd39) + ) + (wire (pts (xy 135.89 97.79) (xy 135.89 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1b4e869-1d4c-4bf4-a93c-d9d36305f47d) + ) + (wire (pts (xy 116.84 93.98) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c61e6996-3647-45c1-ad4c-4c25bf5a03b5) + ) + (wire (pts (xy 135.89 97.79) (xy 138.43 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4d7b8aa-b9bc-44c8-8cb9-e9095b546025) + ) + (wire (pts (xy 161.29 85.09) (xy 171.45 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d790d0d5-c2f2-4059-9cd2-798d5e59687f) + ) + (wire (pts (xy 132.08 95.25) (xy 138.43 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea77a532-5894-4db8-ae63-80cc28fe33af) + ) + (wire (pts (xy 161.29 82.55) (xy 161.29 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edb5b706-046a-4168-bc90-2be18d66c339) + ) + + (symbol (lib_id "eSim_Sources:DC") (at 91.44 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28d3271f-0b04-4869-b592-25b6a93cf6fc) + (property "Reference" "v1" (id 0) (at 94.615 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "DC" (id 1) (at 90.805 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 86.995 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 91.44 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c6852dc-8445-4298-a6db-0adfbc24ef15)) + (pin "2" (uuid c3c580f8-8d30-4cfb-8027-0cf8425f5205)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 102.87 96.52 0) (mirror x) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38309441-1575-4a2b-944e-764f9fe4894f) + (property "Reference" "U1" (id 0) (at 99.06 95.885 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 99.06 98.425 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fabc537-ea69-46a4-ba6c-0ec84d4cec14)) + (pin "2" (uuid d8dd5360-1679-4365-8ef5-1eef35533f7e)) + (pin "3" (uuid d881c90a-2dac-40c2-9a6f-52da84d0cae8)) + (pin "4" (uuid 0f3bf5d2-8a1b-4ec4-9c42-3856da9b6cb0)) + (pin "5" (uuid 1d897643-dd4b-4941-8747-67b9f05a55de)) + (pin "6" (uuid 6a7e5ae9-bd32-437a-a8c1-eca8831711e2)) + (pin "7" (uuid de4bacfe-1d00-410c-aa1a-d3a2b35b450a)) + (pin "8" (uuid e066b15e-8a93-457b-8a8b-a3d5ae1d5d03)) + (pin "9" (uuid c9c7f6cf-50b4-4096-8281-34b7facb581d)) + (pin "10" (uuid 18665738-4b00-4bba-82cf-e88f22b0471d)) + (pin "11" (uuid f3963046-8d96-4d91-81cd-d14d28544785)) + (pin "12" (uuid 70f92d44-4d8c-4eaf-b2a8-656224365c86)) + (pin "13" (uuid d1196a57-a14f-4b34-adb6-45247031a4d6)) + (pin "14" (uuid 9b7f82d9-2457-4e65-8df7-4e9ff22b39d7)) + (pin "15" (uuid b4c2b962-baaf-40a3-a6b2-1a50ac4da997)) + (pin "16" (uuid 6d7334c7-4e62-4f8b-b5dc-d4bb5287fa8f)) + (pin "17" (uuid abcda22c-abb5-4904-ad85-837b69cd1101)) + (pin "18" (uuid 3fcb2300-dd9e-4a9b-bf0c-2718d9ad6c03)) + (pin "19" (uuid b3a922e0-6519-4bad-93a6-ea37b22bba7e)) + (pin "20" (uuid 472ab7fc-b431-423c-825b-85bdec91808a)) + (pin "21" (uuid 3fd15d5b-3f55-4ec7-bc49-baf57841d2a9)) + (pin "22" (uuid 6bea1ad1-c0e8-4ebb-8246-55cea9c4ca6a)) + (pin "23" (uuid 1c7c7456-fa8f-42ad-ac95-fc738203a6ce)) + (pin "24" (uuid 86cab9cb-b4c1-4e09-825a-132e0bd48750)) + (pin "25" (uuid 0d657127-0db9-450f-82e8-9ffd8a63319a)) + (pin "26" (uuid da4babff-0abb-4869-8346-2672ab1f0017)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 182.88 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48d85cf5-29c1-4f7d-a57e-7b0b69dda574) + (property "Reference" "U6" (id 0) (at 182.88 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 182.88 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4803f9b9-3d9a-4a0e-99e6-0ac59d11de26)) + (pin "2" (uuid 3ce86b27-8c78-4024-9902-7dcccacd7b73)) + (pin "3" (uuid b980b222-0af3-4a60-a3f8-ff1fce4d8999)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 210.82 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48f857eb-4e87-4806-ba4b-646581a37ea2) + (property "Reference" "U7" (id 0) (at 212.725 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 212.725 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f271f174-3439-48da-b056-89a32e36b380)) + (pin "2" (uuid d19fcac4-704f-4df1-b54e-8d4ccf233d8c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 267.97 83.82 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f87ee9d-1a36-4aec-bb00-f8fc24fa2328) + (property "Reference" "U1" (id 0) (at 271.78 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 271.78 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 267.97 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a9cf5e93-05cb-4cbc-8550-f7fe9d78069d)) + (pin "2" (uuid da25feda-dd50-4d21-9670-7c845cc6a349)) + (pin "3" (uuid 44fc7a64-ebda-4f38-92ba-88276337a604)) + (pin "4" (uuid f92e041c-8c0c-48ee-b591-06ec70abe4cd)) + (pin "5" (uuid 7932597d-04dc-4353-8129-ab3aeec8fc84)) + (pin "6" (uuid da1dded5-6865-4682-a456-828706448bef)) + (pin "7" (uuid 6d49815a-f6f8-4fcf-8ba2-2cdc6311c549)) + (pin "8" (uuid 347a1f5f-3cda-4313-99d8-c2a289db132e)) + (pin "9" (uuid 768f90fa-9460-4bb6-97a4-ab394ff229bc)) + (pin "10" (uuid b4cf2cf5-38e4-4e66-a173-349f6c368102)) + (pin "11" (uuid 99e36901-663c-4c66-abe5-eb98576c8789)) + (pin "12" (uuid f2c598ab-bf2a-4800-abb6-3e0fea1f2649)) + (pin "13" (uuid 92a688aa-be93-4c70-847f-be5bfd696262)) + (pin "14" (uuid cd155f93-a81a-48e5-8ddc-57c97df60bae)) + (pin "15" (uuid c4ffe564-7e2e-4d23-99cc-35da40290654)) + (pin "16" (uuid 92ad5362-52f7-4a61-b99d-5e125b5e2083)) + (pin "17" (uuid c86cdd0e-f764-496b-a46b-cd576f890c42)) + (pin "18" (uuid 5d38d459-46e9-4284-84d9-d584d0419dd3)) + (pin "19" (uuid b102cd55-86e0-4ff3-9425-7b0ac613cff0)) + (pin "20" (uuid 82c84431-fd8e-4769-aebb-d75d6afdd9d4)) + (pin "21" (uuid 2d8c3796-9040-422f-bf14-4983d56cc3c4)) + (pin "22" (uuid f4a7ff4b-3170-43e0-ad8d-52a0336464b2)) + (pin "23" (uuid ceb16e80-ae7a-4059-a457-76f88bf107b2)) + (pin "24" (uuid 843c46f2-cf76-4ae5-ba92-c24c18f88cb3)) + (pin "25" (uuid 25572e1a-67c2-4d60-8112-405d60eff7ba)) + (pin "26" (uuid 46a322ed-4e54-4956-a123-a3da09b63880)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1c9e468-be3e-44dd-bf35-9066d1a0e3d2) + (property "Reference" "U5" (id 0) (at 149.86 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4124cb3a-6b00-4e90-80b3-17f9788d220b)) + (pin "2" (uuid d7844aea-e454-4b8b-a5d3-58c650c0d3f3)) + (pin "3" (uuid d2a4f899-5bc4-49dc-9c0a-f82fbfac1c00)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b383818c-4c81-4888-8c80-f39a0b1bf9fb) + (property "Reference" "U4" (id 0) (at 149.86 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6581f4bd-969a-4a52-bf34-34d6e24a433a)) + (pin "2" (uuid 15113e0d-971e-4b81-8359-540fdab0e1aa)) + (pin "3" (uuid c4c6c493-2ab2-4f2e-a773-4f891eead381)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 109.22 87.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba26b670-cee4-4e62-aace-e814c833fd02) + (property "Reference" "U1" (id 0) (at 111.76 87.63 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 111.76 90.17 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 63080624-0ec0-4ae5-89ef-af345042af17)) + (pin "2" (uuid 99ceb699-2891-48db-9745-cb55b3645be8)) + (pin "3" (uuid 6657d604-f5bd-489d-af28-4f3f7b46b567)) + (pin "4" (uuid 0915377e-fef2-4b60-ba68-25802610ea15)) + (pin "5" (uuid 120f4c38-18f2-4e5d-963c-afdac9a3a876)) + (pin "6" (uuid 809be297-aded-4798-bd9f-577c6dfd6178)) + (pin "7" (uuid 39773969-16bb-4965-a4f9-2e82476ccbd7)) + (pin "8" (uuid 1dae0184-17bd-4a01-a90a-40cdefca5d3f)) + (pin "9" (uuid 52f50196-1ee5-46bf-8bf8-f2385c5a69fe)) + (pin "10" (uuid bb9b7048-b168-42f6-bfc2-f4b4aa0bbd9a)) + (pin "11" (uuid b187e2ab-c334-4152-b8c0-3b5e498907ff)) + (pin "12" (uuid 1c9bdb4a-d154-47b3-8b81-de451353fde3)) + (pin "13" (uuid 7eaf8d8b-7fb0-4c9c-944c-b00e3826fc50)) + (pin "14" (uuid 52f5e559-0d9d-4452-a2e2-27d8999c2139)) + (pin "15" (uuid a91512b6-3c7b-42db-9d52-25d4c9a79436)) + (pin "16" (uuid fa77a93f-a43d-49ea-aa29-648d3d6025bb)) + (pin "17" (uuid e8b1dd48-dc04-4c5d-81e4-3af1236fce17)) + (pin "18" (uuid de9c62bf-3c52-4227-9cd3-f4a1f283a2ba)) + (pin "19" (uuid 8bad02cb-7684-4e83-8678-5abc26d1a89a)) + (pin "20" (uuid a7eea872-efce-4e12-8da2-52b19ad6d380)) + (pin "21" (uuid f241a1ee-3551-4be9-92e4-97d1ebc38af8)) + (pin "22" (uuid 79bb6641-9713-4b40-8616-f9182ab9c079)) + (pin "23" (uuid a2bcac0d-12cb-4fad-b934-ba601f9ca54f)) + (pin "24" (uuid 8b968e16-97d5-44b3-8bdf-9a360f8fa18d)) + (pin "25" (uuid dd87e7a1-a6b3-4a50-abb8-a247d0e5c1be)) + (pin "26" (uuid 02d1ede5-5527-4efe-b251-abc0d57bcfec)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 120.65 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8483095-cae6-476c-bd77-f779e93a393e) + (property "Reference" "U2" (id 0) (at 120.015 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 120.015 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ea3cef5-47c4-4031-b109-073353e2f1a8)) + (pin "2" (uuid 8a6e56e6-64bc-44e0-9b1f-561b6ab4ef26)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 245.11 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da856a49-8d85-459f-9fdc-ead362122aeb) + (property "Reference" "U8" (id 0) (at 244.475 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 244.475 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 245.11 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 245.11 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 91b9c0f9-e0fc-4829-8d5b-d8f8057ee59c)) + (pin "2" (uuid 26a9d54d-43f3-4aa3-8ed9-712e8abd47e3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 124.46 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8d0de2d-4efb-48db-9053-78ac24343ec6) + (property "Reference" "U3" (id 0) (at 124.46 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 124.46 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f31cf58b-9a25-4938-b10d-4d0f096b69a8)) + (pin "2" (uuid 364c3335-2d15-43ce-8697-9d3c6e4d95e7)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 80.01 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb45b5f1-df6f-43ee-882f-46b8fbfe058f) + (property "Reference" "#PWR01" (id 0) (at 73.66 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 74.93 109.22 0)) + (property "Footprint" "" (id 2) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4533b25d-acec-4f28-966f-010cbada9d57)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/fb45b5f1-df6f-43ee-882f-46b8fbfe058f" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/ba26b670-cee4-4e62-aace-e814c833fd02" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/38309441-1575-4a2b-944e-764f9fe4894f" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/7f87ee9d-1a36-4aec-bb00-f8fc24fa2328" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/c8483095-cae6-476c-bd77-f779e93a393e" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/e8d0de2d-4efb-48db-9053-78ac24343ec6" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b383818c-4c81-4888-8c80-f39a0b1bf9fb" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/a1c9e468-be3e-44dd-bf35-9066d1a0e3d2" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/48d85cf5-29c1-4f7d-a57e-7b0b69dda574" + (reference "U6") (unit 1) (value "d_or") (footprint "") + ) + (path "/48f857eb-4e87-4806-ba4b-646581a37ea2" + (reference "U7") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/da856a49-8d85-459f-9fdc-ead362122aeb" + (reference "U8") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/28d3271f-0b04-4869-b592-25b6a93cf6fc" + (reference "v1") (unit 1) (value "DC") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.sub new file mode 100644 index 000000000..c75fb0786 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE.sub @@ -0,0 +1,31 @@ +* Subcircuit TRISTATE +.subckt TRISTATE net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ +.title kicad schematic +v1 net-_u2-pad1_ gnd dc 0 +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends TRISTATE \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE_Previous_Values.xml new file mode 100644 index 000000000..5ef3761ac --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/TRISTATE_Previous_Values.xml @@ -0,0 +1 @@ +dc0d_bufferd_ord_andd_andadc_bridged_inverterdac_bridgetruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/analysis b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/analysis new file mode 100644 index 000000000..af548eb1e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/HEF4894B/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 100e-06 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.cir new file mode 100644 index 000000000..40dcea1b5 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.cir @@ -0,0 +1,8 @@ +.title KiCad schematic +X1 Net-_U2-Pad2_ Net-_U1-Pad2_ Net-_U1-Pad3_ TRISTATE +X2 Net-_U2-Pad2_ Net-_U1-Pad2_ Net-_U1-Pad4_ TRISTATE +X4 Net-_U2-Pad2_ Net-_U1-Pad2_ Net-_U1-Pad6_ TRISTATE +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ PORT +X3 Net-_U2-Pad2_ Net-_U1-Pad2_ Net-_U1-Pad5_ TRISTATE +U2 Net-_U1-Pad1_ Net-_U2-Pad2_ d_buffer +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.cir.out new file mode 100644 index 000000000..8e4dec6dd --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.cir.out @@ -0,0 +1,21 @@ +.title kicad schematic + +.include TRISTATE.sub +x1 net-_u2-pad2_ net-_u1-pad2_ net-_u1-pad3_ TRISTATE +x2 net-_u2-pad2_ net-_u1-pad2_ net-_u1-pad4_ TRISTATE +x4 net-_u2-pad2_ net-_u1-pad2_ net-_u1-pad6_ TRISTATE +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ port +x3 net-_u2-pad2_ net-_u1-pad2_ net-_u1-pad5_ TRISTATE +* u2 net-_u1-pad1_ net-_u2-pad2_ d_buffer +a1 net-_u1-pad1_ net-_u2-pad2_ u2 +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u2 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.kicad_sch new file mode 100644 index 000000000..5bcc2048f --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.kicad_sch @@ -0,0 +1,762 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 6db29a0c-bb90-4261-8726-fdd5905cb71c) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Subckt:TRISTATE" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TRISTATE" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TRISTATE_0_1" + (polyline + (pts + (xy -5.08 3.81) + (xy -5.08 -3.81) + (xy 8.89 0) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "TRISTATE_1_1" + (pin input line (at -7.62 0 0) (length 2.54) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -5.08 90) (length 2.54) + (name "OE" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 0 180) (length 2.54) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 97.79 68.58) (diameter 0) (color 0 0 0 0) + (uuid 0eebef3b-1335-430d-be59-1142c55dd38f) + ) + (junction (at 97.79 119.38) (diameter 0) (color 0 0 0 0) + (uuid 5e9f4e73-0b71-4c2b-a10a-e8d098e602e7) + ) + (junction (at 92.71 76.2) (diameter 0) (color 0 0 0 0) + (uuid 5fe4546b-a644-4605-8393-d7ece630726a) + ) + (junction (at 97.79 93.98) (diameter 0) (color 0 0 0 0) + (uuid 70210107-62f0-4c4a-a1de-2d25b41cca16) + ) + (junction (at 92.71 88.9) (diameter 0) (color 0 0 0 0) + (uuid 8bee1b8a-e582-497e-9388-abfcb35191c5) + ) + (junction (at 92.71 63.5) (diameter 0) (color 0 0 0 0) + (uuid d8f09d55-c197-423a-94db-5639d4ec1a18) + ) + + (wire (pts (xy 109.22 43.18) (xy 97.79 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26eb2dff-539e-4fa4-ba15-130e401b70de) + ) + (wire (pts (xy 92.71 63.5) (xy 101.6 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 276a44e8-2a79-4e05-be79-5fa3a124ad47) + ) + (wire (pts (xy 109.22 68.58) (xy 97.79 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b9806fc-d501-42af-a60e-1dd36b120f17) + ) + (wire (pts (xy 97.79 119.38) (xy 97.79 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48ce8f8f-acf7-4848-880f-f24ac48bc627) + ) + (wire (pts (xy 92.71 114.3) (xy 101.6 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a2f9ba0-04b4-4e14-836b-dbfc3fd2f1dc) + ) + (wire (pts (xy 92.71 76.2) (xy 92.71 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b442c7a-46d3-4ea0-b91f-14f054e6a4f5) + ) + (wire (pts (xy 120.65 38.1) (xy 129.54 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62d5f0bb-a293-48ff-9b42-ac70024982d0) + ) + (wire (pts (xy 88.9 76.2) (xy 92.71 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75abf41e-256b-4bdc-80ef-7c12572aeb32) + ) + (wire (pts (xy 109.22 93.98) (xy 97.79 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76fff208-cb94-4ca2-a036-38c541f812c6) + ) + (wire (pts (xy 50.8 76.2) (xy 59.69 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c70391f-1cb7-4ed4-aafc-a2aaf365af4d) + ) + (wire (pts (xy 101.6 38.1) (xy 92.71 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ec88602-f71a-40a1-b5a1-e1626ee6cb87) + ) + (wire (pts (xy 120.65 88.9) (xy 129.54 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cde0b31-1e7e-4b75-8b9f-87f4491f962e) + ) + (wire (pts (xy 92.71 88.9) (xy 101.6 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97b45a53-f991-48af-a41b-c7722d9e4e08) + ) + (wire (pts (xy 92.71 38.1) (xy 92.71 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb2b8450-571d-4cb8-8711-64e3645a7a5e) + ) + (wire (pts (xy 109.22 119.38) (xy 97.79 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d106f3d1-dc30-404b-b717-4c9f5b193062) + ) + (wire (pts (xy 92.71 63.5) (xy 92.71 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d10f824d-35da-4bbe-bdd6-227fceedf007) + ) + (wire (pts (xy 120.65 63.5) (xy 129.54 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6a01120-9ce3-4496-b756-855d82b569b3) + ) + (wire (pts (xy 120.65 114.3) (xy 129.54 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6f11542-901b-4176-bbe4-78d5505d66db) + ) + (wire (pts (xy 97.79 68.58) (xy 97.79 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7a1edd9-b1db-4f8f-9b61-cbac8632d0de) + ) + (wire (pts (xy 97.79 93.98) (xy 97.79 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc1117ab-ba31-496d-9039-7ca3628ea3dd) + ) + (wire (pts (xy 92.71 88.9) (xy 92.71 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1282dce-dc8e-4eac-beba-b6df651d758b) + ) + (wire (pts (xy 97.79 43.18) (xy 97.79 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f26ddcdf-fd2c-434f-939d-f83224eb79a9) + ) + (wire (pts (xy 73.66 127) (xy 97.79 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fda2e551-2bfb-4a0f-84dc-652559527496) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 114.3 0) (mirror y) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3f18ec63-e5f9-4ea6-9dc9-4c39f2c75c33) + (property "Reference" "U1" (id 0) (at 139.7 113.665 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 139.7 116.205 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 135.89 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5e5cb1b2-e986-412b-bc7f-17b5a5275689)) + (pin "2" (uuid 943aea11-a449-45ab-946d-259bbb340e91)) + (pin "3" (uuid 5cec7378-8a23-4928-8d7e-8977f18c4e76)) + (pin "4" (uuid a6e9a90b-9af5-47b8-9a4e-b4fa980e69e7)) + (pin "5" (uuid 8a4367c3-5a10-4bec-9064-f102d740b5fe)) + (pin "6" (uuid d96e34bf-6fbc-42e7-b36e-3997da3d1a63)) + (pin "7" (uuid ea514067-0f18-42eb-88e2-3cf48484623d)) + (pin "8" (uuid 726b646b-5bde-43f2-8306-8959790adeae)) + (pin "9" (uuid a43f8db4-d828-462b-80ad-57d9cec27359)) + (pin "10" (uuid c5ae485a-d009-4d40-add4-e6850aeb95b9)) + (pin "11" (uuid e61d9e31-6a9c-44e0-87fd-d2c1eeca1073)) + (pin "12" (uuid 63fae53f-8a03-47bb-bb4f-fd2fdd165d29)) + (pin "13" (uuid 6c16c302-5f6f-4466-b904-a2a460056d4a)) + (pin "14" (uuid aec14e15-1e8a-4bb2-9552-b83f0da4d773)) + (pin "15" (uuid 0ac47f17-2559-4872-92d3-2e9dcf20b046)) + (pin "16" (uuid 534f5735-1d80-43a3-87b5-e51e81addea5)) + (pin "17" (uuid 3651b1a7-bd68-4244-aaf2-008fbeeddba5)) + (pin "18" (uuid 52b29044-5a02-441f-a27d-830cd14720f7)) + (pin "19" (uuid 8ca96174-3b52-4abe-9c14-985078495b4b)) + (pin "20" (uuid db4df199-ce38-47f9-93ef-b4ee33b5130e)) + (pin "21" (uuid 76fc3e0f-22eb-41fe-bc3d-295d06772ff8)) + (pin "22" (uuid af042dd8-06d4-4b0c-8006-04272a75097e)) + (pin "23" (uuid 6bfdb8c0-9900-478a-a8ba-552b26f99da6)) + (pin "24" (uuid db4e003a-4ddf-4601-a3c2-141a20095acc)) + (pin "25" (uuid 65896d74-f964-4b08-b79f-5bf3ac1da831)) + (pin "26" (uuid 82eed54e-804f-4ba9-b173-2dce0920047c)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 72.39 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 47bb90d6-bd59-4c2a-bc7f-3e9661029202) + (property "Reference" "U2" (id 0) (at 74.295 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 74.295 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 72.39 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 72.39 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2bd91f0a-566a-4550-ac85-1349979abf1c)) + (pin "2" (uuid 25929cd7-52c9-4079-bbf1-ec6fad8f9cc5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 38.1 0) (mirror y) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 57a769ad-7985-46a9-86fd-d86df2ba38e1) + (property "Reference" "U1" (id 0) (at 139.7 37.465 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 139.7 40.005 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 135.89 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cca17e7a-d524-4931-8e7c-a6efdfa4d025)) + (pin "2" (uuid 7379e2f2-d0d2-4a3e-828e-789334e5c778)) + (pin "3" (uuid af5670fc-77b9-4ca7-979f-207bf3e9764b)) + (pin "4" (uuid a2c71b37-0a8e-4456-bb87-493cd32cd5b3)) + (pin "5" (uuid 4dbcf3ee-bf36-4f1b-8b34-b80cf23df4f2)) + (pin "6" (uuid 1ea7adf3-776e-4075-9b05-471d805a1a7c)) + (pin "7" (uuid 6f988899-6e33-4069-97e7-70e58ea68496)) + (pin "8" (uuid 0731e49e-1cff-406e-a595-b6a5d13957e2)) + (pin "9" (uuid b9d8bf45-e5d2-4af7-b62b-2e43b7fbbde2)) + (pin "10" (uuid 14ad19b4-09a9-4ff3-8a1d-12ed403246de)) + (pin "11" (uuid 38689002-0be2-4fbc-9b4a-13ab8e2a4d01)) + (pin "12" (uuid 31ad8adb-c78e-47c9-b676-8a4dcac3123e)) + (pin "13" (uuid 76fb9ec6-4e32-4c69-981f-2d711cca6b19)) + (pin "14" (uuid 176fda40-3930-446d-b43b-2f38e4bbeca1)) + (pin "15" (uuid 784e3150-297d-4764-ab3d-d03fbe3f044e)) + (pin "16" (uuid 47ce4aa3-2d9f-43c8-81d7-4b40d4e87299)) + (pin "17" (uuid f6febc84-97b6-4b96-9a48-78f042af6805)) + (pin "18" (uuid e71fecab-c587-4be5-a20c-597f32c23c19)) + (pin "19" (uuid cb96efba-2989-4e4a-934a-f00f2004b000)) + (pin "20" (uuid 90aa1846-0ba4-461f-bc30-64d37d970fd7)) + (pin "21" (uuid 04a936bb-f891-4c4d-bcae-e4f0a37dcac2)) + (pin "22" (uuid ca366fa9-1e75-4920-ac83-6b510aec5ed2)) + (pin "23" (uuid d4ada862-ae86-4903-b4d7-ae2e806344f3)) + (pin "24" (uuid b3915984-9cbe-4c59-ac64-edf44aa2bbc6)) + (pin "25" (uuid bb4aa13b-de1c-467c-bc31-3be1093371dd)) + (pin "26" (uuid efd1f845-dc42-4f2b-a47d-ed268179e480)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 109.22 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5db9599b-89c6-4fb1-a73f-ef14b2c06c35) + (property "Reference" "X4" (id 0) (at 111.125 105.41 0)) + (property "Value" "TRISTATE" (id 1) (at 111.125 107.95 0)) + (property "Footprint" "" (id 2) (at 109.22 114.3 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.22 114.3 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9bb9505e-b81a-48dd-ab9b-98891d644c92)) + (pin "2" (uuid 490a9353-9da6-4117-8b41-a4243ccff3b7)) + (pin "2" (uuid adb4cbea-9174-4ed6-8cfc-93b039af5136)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 63.5 0) (mirror y) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8643b2c6-8abf-4742-9def-164dc1608965) + (property "Reference" "U1" (id 0) (at 139.7 62.865 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 139.7 65.405 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 135.89 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b3ca445d-5f1c-4872-be98-402047674de9)) + (pin "2" (uuid a600ea9b-d5d9-4717-8509-403a5fdc924e)) + (pin "3" (uuid 87600908-f202-445d-991d-c0bf3153d863)) + (pin "4" (uuid 41ff2c1b-96f0-4a8a-b7cb-0440442710a6)) + (pin "5" (uuid ed32e9c0-2551-45e7-bb47-7c2fe5283c42)) + (pin "6" (uuid 09f11569-227c-42cf-93ee-6b4e2aad7db6)) + (pin "7" (uuid 18be093f-05e5-48c1-8d35-103f7d85a300)) + (pin "8" (uuid bfef5b67-eca1-4c4c-8d99-669ece3ca717)) + (pin "9" (uuid 86a60e15-1bf6-419d-bc23-4a11805f85b3)) + (pin "10" (uuid c097cb3b-a1c4-4936-bada-845e572ec523)) + (pin "11" (uuid ac04f430-8d91-415b-8ccf-f4e47a383c64)) + (pin "12" (uuid 5ba5c9e0-44db-41dd-a5aa-1efd2c0117ff)) + (pin "13" (uuid 72e3a55b-750a-410a-90c9-a1f3557a9129)) + (pin "14" (uuid bd370b23-3440-445b-958e-4d2239752e90)) + (pin "15" (uuid 6c7ac28b-62b2-4415-8c36-718e50494baa)) + (pin "16" (uuid 8dbfd94a-06cf-4b31-bc50-670f30026965)) + (pin "17" (uuid d0ca95d5-de95-4780-87ba-d399698f63cc)) + (pin "18" (uuid 85ca0e96-2531-46d7-9f2f-fdf910b6cd09)) + (pin "19" (uuid 85c10892-b23b-47d5-a623-cdcdc1029422)) + (pin "20" (uuid 2d03f435-6e58-4830-8a8a-d0e9035d360f)) + (pin "21" (uuid 7dace9c1-e292-4ac4-86c5-1777da94f68d)) + (pin "22" (uuid 9f3751cd-9c90-457e-aacc-acf67cb6a543)) + (pin "23" (uuid 21d14c93-2626-40ad-9d8b-0cd9636f5455)) + (pin "24" (uuid 3446ffd5-e4b7-47dd-9fc2-d21d7d0c277a)) + (pin "25" (uuid b86da316-2e40-47d7-8200-0fe4aeffe786)) + (pin "26" (uuid 9d958c91-9496-46f7-b235-a13d5c57751c)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 109.22 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c4e7758e-7e27-451e-a1aa-e061291668a3) + (property "Reference" "X1" (id 0) (at 111.125 29.21 0)) + (property "Value" "TRISTATE" (id 1) (at 111.125 31.75 0)) + (property "Footprint" "" (id 2) (at 109.22 38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.22 38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8328622e-7712-4f3a-8c00-73aefc3ebef5)) + (pin "2" (uuid 99d37c70-ed22-4b28-86b9-b445f0ba5ea2)) + (pin "2" (uuid 0c153bef-8baa-4874-83d1-df2fc2b9c2e2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 44.45 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c90d4ad8-695d-4c18-a362-5616721fad40) + (property "Reference" "U1" (id 0) (at 45.085 71.12 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 45.085 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 44.45 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 44.45 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fa611bc9-4d2a-4ec1-b693-4e0d3ac0ac25)) + (pin "2" (uuid 4a4477f9-5257-4b0a-bb21-f2a48b61ed98)) + (pin "3" (uuid 6f13b30b-ca7b-4be5-8f27-4319acbc4faf)) + (pin "4" (uuid 8d1e1230-0135-4512-a468-d7048733b571)) + (pin "5" (uuid b6731d31-18a9-47fe-bf43-7a59b1f44d04)) + (pin "6" (uuid 1e64db4c-e0e3-4de2-8a83-f6b33a1e978a)) + (pin "7" (uuid 76526958-2f08-4920-8d0f-3cad9306225c)) + (pin "8" (uuid eaf5dac4-d327-435b-9b23-c952a6c16d39)) + (pin "9" (uuid 28e41747-ccb4-45ae-a97b-81fcb85dd2eb)) + (pin "10" (uuid 84044046-2c4c-4a89-95ea-a02e62613abb)) + (pin "11" (uuid dfa0bf6e-c312-4ac5-8b34-ed0d840a6cbc)) + (pin "12" (uuid 27200f23-2f37-4d16-b62f-70baad2daa03)) + (pin "13" (uuid f1c3128d-cb29-4464-a0bb-937b4ece83e3)) + (pin "14" (uuid cc3acafe-d945-4c2f-8aa2-3131d8562369)) + (pin "15" (uuid 9f3e3f41-6357-4f62-bc63-45a377befd86)) + (pin "16" (uuid 6d27be53-315a-4982-b1d2-5a869291d5ee)) + (pin "17" (uuid a466cefa-6ec2-4b81-b8eb-ecf37887f2ce)) + (pin "18" (uuid fc0a4c72-b917-4d91-9612-76b62d8728c9)) + (pin "19" (uuid 05f1f0e4-9be8-4cb5-a305-46624289e5a4)) + (pin "20" (uuid 935c685e-5c5b-4156-a419-281e0865fc10)) + (pin "21" (uuid a4a185b2-4fd0-4510-900f-b157f046bf8d)) + (pin "22" (uuid aa9985cf-b586-417c-ba60-98df98b53167)) + (pin "23" (uuid db879c5a-2865-4f9a-88c3-ea35658da56b)) + (pin "24" (uuid 1514c31a-b197-428b-ad66-dd23ba4c17fb)) + (pin "25" (uuid 5b89e207-51bf-4ca6-924b-4d77c5baa43b)) + (pin "26" (uuid 947bc40e-cab6-48f9-bb9d-74e4be0a7244)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 88.9 0) (mirror y) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ce97f34f-3d74-477e-82f0-2d9308762f06) + (property "Reference" "U1" (id 0) (at 139.7 88.265 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 139.7 90.805 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 135.89 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fcfa48a4-8b4f-4b6a-b8c7-70b8659a3eb7)) + (pin "2" (uuid 94b18de3-c8b9-4358-a6e1-3659a1f043e3)) + (pin "3" (uuid 5b40657e-7bd4-4cd0-9866-6efefb099ecd)) + (pin "4" (uuid 3b1d9c08-caad-4a18-9d03-5cbbd306c7c0)) + (pin "5" (uuid e3820fc1-0e4e-4b00-816a-17f25f3efad1)) + (pin "6" (uuid ebf35c70-ff32-4af0-90a3-b605e4c8378e)) + (pin "7" (uuid af1133b3-5b75-4702-b13c-f5054da13e21)) + (pin "8" (uuid 9fe8c0a4-dd1f-4443-9480-1af4d245f7ce)) + (pin "9" (uuid 4f8b8be9-01ba-48f0-9f20-53a045e7bca6)) + (pin "10" (uuid f306cce8-5ffd-4551-8188-ea724d34c23f)) + (pin "11" (uuid ac42bdf8-3755-4cfa-951f-086e7cbe9298)) + (pin "12" (uuid 5dc7cc55-3086-492d-8b2e-962fe6707167)) + (pin "13" (uuid 8f980175-2e26-4c1e-81f0-64b1a5b53969)) + (pin "14" (uuid dc137cc4-06c5-469c-8971-7121ecd70ef2)) + (pin "15" (uuid 5f091c39-ae62-45a5-87db-cb1ea82876b9)) + (pin "16" (uuid 2d068522-19ee-444c-9804-06d679e7a6bf)) + (pin "17" (uuid 9128eb6b-5c79-4d96-b2ed-156b9d3ecfdd)) + (pin "18" (uuid d87f0ab4-f5e9-41e8-98da-3230605c060e)) + (pin "19" (uuid c305c32e-7591-43d3-810f-4ec381554b22)) + (pin "20" (uuid 831bdb19-bb54-40b2-9e69-375bb3e6aa8f)) + (pin "21" (uuid c3aa4dee-fc6f-4289-b92c-5894e0de633c)) + (pin "22" (uuid 8e595976-02cf-42e5-82f7-1b4cc1f04213)) + (pin "23" (uuid e3d1d0bc-4ad9-4ca7-a7ea-4d0923d18c2c)) + (pin "24" (uuid d1a436c8-a065-45f0-b23e-b7d69ecedd6b)) + (pin "25" (uuid 514b2c47-0dac-427f-a0e7-be67a26444a3)) + (pin "26" (uuid 22fe94de-0883-4430-a38f-dad808b3d66b)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 109.22 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf2ed880-5c24-487a-9c53-849b7a789abe) + (property "Reference" "X2" (id 0) (at 111.125 54.61 0)) + (property "Value" "TRISTATE" (id 1) (at 111.125 57.15 0)) + (property "Footprint" "" (id 2) (at 109.22 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.22 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid df769f49-15cc-4bd1-a7cc-40037879db57)) + (pin "2" (uuid 3ead1d79-3114-4fe7-9aa8-ba607be5e4bd)) + (pin "2" (uuid 6cf5b730-6f6e-457d-b288-717ae945cb8c)) + ) + + (symbol (lib_id "eSim_Subckt:TRISTATE") (at 109.22 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9776388-55b9-4f92-8ae6-be90da0056ea) + (property "Reference" "X3" (id 0) (at 111.125 80.01 0)) + (property "Value" "TRISTATE" (id 1) (at 111.125 82.55 0)) + (property "Footprint" "" (id 2) (at 109.22 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.22 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0b160938-4ee0-4325-884d-82fd8688128e)) + (pin "2" (uuid e9533c15-5012-44ed-9417-76081787df8c)) + (pin "2" (uuid 1dcd0dc6-5382-4fb8-803c-62c32646a609)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 67.31 127 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f50dd36d-09cf-4ab8-943d-878a3fc77721) + (property "Reference" "U1" (id 0) (at 67.945 121.92 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 67.945 124.46 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 67.31 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 67.31 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2320f53c-7c52-4944-b948-64ad2bc15665)) + (pin "2" (uuid 6994ef58-459b-4e9d-941c-80585a677c2f)) + (pin "3" (uuid 36d7874c-ea93-4fa1-871f-6c43126e9b1a)) + (pin "4" (uuid f733dad0-eee6-4292-8c17-24802d4cf46f)) + (pin "5" (uuid 81234a67-01a0-491f-ad47-d15477e7154a)) + (pin "6" (uuid a3f84f84-ec8e-42d8-848c-ca5cb1aac472)) + (pin "7" (uuid 7a4a8c42-4a8b-4788-9c51-313cec8f1932)) + (pin "8" (uuid 582d6202-2fdf-4ee8-a0e9-f6dbf057ca94)) + (pin "9" (uuid 404f0adc-5672-454d-9967-04a69f0a5376)) + (pin "10" (uuid 4d9ed1fa-1b0c-4a77-ac2f-9d50e2aab76d)) + (pin "11" (uuid 748cefe2-92f3-422e-a6e4-c193af467c74)) + (pin "12" (uuid e41d2c83-8de3-4d7e-ab5c-f310d16d6122)) + (pin "13" (uuid d4d22282-aea3-4fc3-ad47-1dd3764df2a9)) + (pin "14" (uuid 9d21c839-417d-4613-9cb5-6bfe3966075f)) + (pin "15" (uuid 1de737a6-eca8-409a-9940-784d427c8226)) + (pin "16" (uuid 3f31f6dd-04c5-4001-aa18-92e28363f017)) + (pin "17" (uuid 96365783-e201-47fd-a1ed-cc393c003c2f)) + (pin "18" (uuid abbeca23-9dcb-4e60-b061-4c9a33524602)) + (pin "19" (uuid a1f041cd-011e-4cb5-892e-82b9be17070d)) + (pin "20" (uuid 00735163-cac0-44a1-a29f-82e84b936912)) + (pin "21" (uuid 85efc2b9-35bc-433b-b9d0-d7050aaadf52)) + (pin "22" (uuid 95178c2c-7bc8-46dc-9ab1-fd99196a7651)) + (pin "23" (uuid 75790a21-cd3d-4969-8828-2b43c0500db5)) + (pin "24" (uuid 12836c9f-f570-43c0-ac7d-7dc8c546eac8)) + (pin "25" (uuid 43b94eef-f90b-4f27-972e-68af5ab342c1)) + (pin "26" (uuid 9b321b89-1450-4dbe-913d-5f80f40692bd)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/c90d4ad8-695d-4c18-a362-5616721fad40" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/f50dd36d-09cf-4ab8-943d-878a3fc77721" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/57a769ad-7985-46a9-86fd-d86df2ba38e1" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/8643b2c6-8abf-4742-9def-164dc1608965" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/ce97f34f-3d74-477e-82f0-2d9308762f06" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/3f18ec63-e5f9-4ea6-9dc9-4c39f2c75c33" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/47bb90d6-bd59-4c2a-bc7f-3e9661029202" + (reference "U2") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/c4e7758e-7e27-451e-a1aa-e061291668a3" + (reference "X1") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/cf2ed880-5c24-487a-9c53-849b7a789abe" + (reference "X2") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/d9776388-55b9-4f92-8ae6-be90da0056ea" + (reference "X3") (unit 1) (value "TRISTATE") (footprint "") + ) + (path "/5db9599b-89c6-4fb1-a73f-ef14b2c06c35" + (reference "X4") (unit 1) (value "TRISTATE") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.sub new file mode 100644 index 000000000..b564b5603 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553.sub @@ -0,0 +1,15 @@ +* Subcircuit NB3L553 +.subckt NB3L553 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ +.title kicad schematic +.include TRISTATE.sub +x1 net-_u2-pad2_ net-_u1-pad2_ net-_u1-pad3_ TRISTATE +x2 net-_u2-pad2_ net-_u1-pad2_ net-_u1-pad4_ TRISTATE +x4 net-_u2-pad2_ net-_u1-pad2_ net-_u1-pad6_ TRISTATE +x3 net-_u2-pad2_ net-_u1-pad2_ net-_u1-pad5_ TRISTATE +* u2 net-_u1-pad1_ net-_u2-pad2_ d_buffer +a1 net-_u1-pad1_ net-_u2-pad2_ u2 +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u2 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends NB3L553 \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553_Previous_Values.xml new file mode 100644 index 000000000..da1ed80fc --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/NB3L553_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secususd_bufferC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATEC:\FOSSEE\eSim\library\SubcircuitLibrary\TRISTATE \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.cir b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.cir new file mode 100644 index 000000000..caac1cdde --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.cir @@ -0,0 +1,10 @@ +.title KiCad schematic +v1 Net-_U2-Pad1_ GND DC +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ PORT +U5 Net-_U3-Pad2_ Net-_U2-Pad2_ Net-_U5-Pad3_ d_and +U4 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U4-Pad3_ d_and +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ adc_bridge_1 +U3 Net-_U1-Pad1_ Net-_U3-Pad2_ d_inverter +U7 Net-_U6-Pad3_ Net-_U1-Pad3_ d_buffer +U6 Net-_U4-Pad3_ Net-_U5-Pad3_ Net-_U6-Pad3_ d_or +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.cir.out b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.cir.out new file mode 100644 index 000000000..ed8bfe9ca --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.cir.out @@ -0,0 +1,37 @@ +.title kicad schematic + +v1 net-_u2-pad1_ gnd dc 0 +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ port +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-06 100e-06 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.kicad_sch b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.kicad_sch new file mode 100644 index 000000000..5238469a9 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.kicad_sch @@ -0,0 +1,926 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 6fc943a8-97d8-4111-93e9-49bb4a164911) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "DC" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DC_0_1" + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DC_1_1" + (pin power_out line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 111.76 93.98) (diameter 0) (color 0 0 0 0) + (uuid 14ad2087-2eee-431b-8842-3056e26a34e8) + ) + + (wire (pts (xy 111.76 93.98) (xy 109.22 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 163f5430-84cc-4a80-8e5f-6f2a5f27f6b7) + ) + (wire (pts (xy 135.89 109.22) (xy 134.62 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26a2e51d-f8c9-4603-977a-ec3441476833) + ) + (wire (pts (xy 116.84 95.25) (xy 116.84 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31a0d277-7413-4301-8b23-2d4c654bd540) + ) + (wire (pts (xy 111.76 69.85) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 454df123-e845-4d03-8c39-7a0fc517b763) + ) + (wire (pts (xy 111.76 69.85) (xy 138.43 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56f10ce4-3616-4390-9a32-7b62234bf80f) + ) + (wire (pts (xy 227.33 83.82) (xy 229.87 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58a0316b-fdad-40e3-96f7-cb28e4b5690b) + ) + (wire (pts (xy 114.3 72.39) (xy 138.43 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a1f4464-c616-4a33-82f9-8dd8ebfb0a8c) + ) + (wire (pts (xy 102.87 109.22) (xy 105.41 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a2a2aba-beae-4a0a-9586-601cd854cbd0) + ) + (wire (pts (xy 161.29 96.52) (xy 161.29 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e0ecf4a-5933-465a-9bc3-1b74f4efaf29) + ) + (wire (pts (xy 114.3 96.52) (xy 114.3 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b403cfa-1a57-4ee1-b716-cf37e8d9a005) + ) + (wire (pts (xy 259.08 83.82) (xy 261.62 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dbc0d1f-7850-4943-8d03-441ae7413488) + ) + (wire (pts (xy 198.12 83.82) (xy 194.31 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81e2c941-f56c-4b6a-b07e-98f1f9c7c54a) + ) + (wire (pts (xy 109.22 96.52) (xy 114.3 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92b18b87-08f1-4557-b338-e1b8d2e6c64d) + ) + (wire (pts (xy 171.45 82.55) (xy 161.29 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5e9c456-8d3d-429d-9282-26751c5dbd39) + ) + (wire (pts (xy 135.89 97.79) (xy 135.89 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1b4e869-1d4c-4bf4-a93c-d9d36305f47d) + ) + (wire (pts (xy 116.84 93.98) (xy 111.76 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c61e6996-3647-45c1-ad4c-4c25bf5a03b5) + ) + (wire (pts (xy 135.89 97.79) (xy 138.43 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4d7b8aa-b9bc-44c8-8cb9-e9095b546025) + ) + (wire (pts (xy 161.29 85.09) (xy 171.45 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d790d0d5-c2f2-4059-9cd2-798d5e59687f) + ) + (wire (pts (xy 132.08 95.25) (xy 138.43 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea77a532-5894-4db8-ae63-80cc28fe33af) + ) + (wire (pts (xy 161.29 82.55) (xy 161.29 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edb5b706-046a-4168-bc90-2be18d66c339) + ) + + (symbol (lib_id "eSim_Sources:DC") (at 91.44 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28d3271f-0b04-4869-b592-25b6a93cf6fc) + (property "Reference" "v1" (id 0) (at 94.615 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "DC" (id 1) (at 90.805 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 86.995 114.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 91.44 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c6852dc-8445-4298-a6db-0adfbc24ef15)) + (pin "2" (uuid c3c580f8-8d30-4cfb-8027-0cf8425f5205)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 102.87 96.52 0) (mirror x) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38309441-1575-4a2b-944e-764f9fe4894f) + (property "Reference" "U1" (id 0) (at 99.06 95.885 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 99.06 98.425 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fabc537-ea69-46a4-ba6c-0ec84d4cec14)) + (pin "2" (uuid d8dd5360-1679-4365-8ef5-1eef35533f7e)) + (pin "3" (uuid d881c90a-2dac-40c2-9a6f-52da84d0cae8)) + (pin "4" (uuid 0f3bf5d2-8a1b-4ec4-9c42-3856da9b6cb0)) + (pin "5" (uuid 1d897643-dd4b-4941-8747-67b9f05a55de)) + (pin "6" (uuid 6a7e5ae9-bd32-437a-a8c1-eca8831711e2)) + (pin "7" (uuid de4bacfe-1d00-410c-aa1a-d3a2b35b450a)) + (pin "8" (uuid e066b15e-8a93-457b-8a8b-a3d5ae1d5d03)) + (pin "9" (uuid c9c7f6cf-50b4-4096-8281-34b7facb581d)) + (pin "10" (uuid 18665738-4b00-4bba-82cf-e88f22b0471d)) + (pin "11" (uuid f3963046-8d96-4d91-81cd-d14d28544785)) + (pin "12" (uuid 70f92d44-4d8c-4eaf-b2a8-656224365c86)) + (pin "13" (uuid d1196a57-a14f-4b34-adb6-45247031a4d6)) + (pin "14" (uuid 9b7f82d9-2457-4e65-8df7-4e9ff22b39d7)) + (pin "15" (uuid b4c2b962-baaf-40a3-a6b2-1a50ac4da997)) + (pin "16" (uuid 6d7334c7-4e62-4f8b-b5dc-d4bb5287fa8f)) + (pin "17" (uuid abcda22c-abb5-4904-ad85-837b69cd1101)) + (pin "18" (uuid 3fcb2300-dd9e-4a9b-bf0c-2718d9ad6c03)) + (pin "19" (uuid b3a922e0-6519-4bad-93a6-ea37b22bba7e)) + (pin "20" (uuid 472ab7fc-b431-423c-825b-85bdec91808a)) + (pin "21" (uuid 3fd15d5b-3f55-4ec7-bc49-baf57841d2a9)) + (pin "22" (uuid 6bea1ad1-c0e8-4ebb-8246-55cea9c4ca6a)) + (pin "23" (uuid 1c7c7456-fa8f-42ad-ac95-fc738203a6ce)) + (pin "24" (uuid 86cab9cb-b4c1-4e09-825a-132e0bd48750)) + (pin "25" (uuid 0d657127-0db9-450f-82e8-9ffd8a63319a)) + (pin "26" (uuid da4babff-0abb-4869-8346-2672ab1f0017)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 182.88 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48d85cf5-29c1-4f7d-a57e-7b0b69dda574) + (property "Reference" "U6" (id 0) (at 182.88 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 182.88 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4803f9b9-3d9a-4a0e-99e6-0ac59d11de26)) + (pin "2" (uuid 3ce86b27-8c78-4024-9902-7dcccacd7b73)) + (pin "3" (uuid b980b222-0af3-4a60-a3f8-ff1fce4d8999)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 210.82 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48f857eb-4e87-4806-ba4b-646581a37ea2) + (property "Reference" "U7" (id 0) (at 212.725 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 212.725 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f271f174-3439-48da-b056-89a32e36b380)) + (pin "2" (uuid d19fcac4-704f-4df1-b54e-8d4ccf233d8c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 267.97 83.82 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f87ee9d-1a36-4aec-bb00-f8fc24fa2328) + (property "Reference" "U1" (id 0) (at 271.78 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 271.78 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 267.97 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a9cf5e93-05cb-4cbc-8550-f7fe9d78069d)) + (pin "2" (uuid da25feda-dd50-4d21-9670-7c845cc6a349)) + (pin "3" (uuid 44fc7a64-ebda-4f38-92ba-88276337a604)) + (pin "4" (uuid f92e041c-8c0c-48ee-b591-06ec70abe4cd)) + (pin "5" (uuid 7932597d-04dc-4353-8129-ab3aeec8fc84)) + (pin "6" (uuid da1dded5-6865-4682-a456-828706448bef)) + (pin "7" (uuid 6d49815a-f6f8-4fcf-8ba2-2cdc6311c549)) + (pin "8" (uuid 347a1f5f-3cda-4313-99d8-c2a289db132e)) + (pin "9" (uuid 768f90fa-9460-4bb6-97a4-ab394ff229bc)) + (pin "10" (uuid b4cf2cf5-38e4-4e66-a173-349f6c368102)) + (pin "11" (uuid 99e36901-663c-4c66-abe5-eb98576c8789)) + (pin "12" (uuid f2c598ab-bf2a-4800-abb6-3e0fea1f2649)) + (pin "13" (uuid 92a688aa-be93-4c70-847f-be5bfd696262)) + (pin "14" (uuid cd155f93-a81a-48e5-8ddc-57c97df60bae)) + (pin "15" (uuid c4ffe564-7e2e-4d23-99cc-35da40290654)) + (pin "16" (uuid 92ad5362-52f7-4a61-b99d-5e125b5e2083)) + (pin "17" (uuid c86cdd0e-f764-496b-a46b-cd576f890c42)) + (pin "18" (uuid 5d38d459-46e9-4284-84d9-d584d0419dd3)) + (pin "19" (uuid b102cd55-86e0-4ff3-9425-7b0ac613cff0)) + (pin "20" (uuid 82c84431-fd8e-4769-aebb-d75d6afdd9d4)) + (pin "21" (uuid 2d8c3796-9040-422f-bf14-4983d56cc3c4)) + (pin "22" (uuid f4a7ff4b-3170-43e0-ad8d-52a0336464b2)) + (pin "23" (uuid ceb16e80-ae7a-4059-a457-76f88bf107b2)) + (pin "24" (uuid 843c46f2-cf76-4ae5-ba92-c24c18f88cb3)) + (pin "25" (uuid 25572e1a-67c2-4d60-8112-405d60eff7ba)) + (pin "26" (uuid 46a322ed-4e54-4956-a123-a3da09b63880)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1c9e468-be3e-44dd-bf35-9066d1a0e3d2) + (property "Reference" "U5" (id 0) (at 149.86 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4124cb3a-6b00-4e90-80b3-17f9788d220b)) + (pin "2" (uuid d7844aea-e454-4b8b-a5d3-58c650c0d3f3)) + (pin "3" (uuid d2a4f899-5bc4-49dc-9c0a-f82fbfac1c00)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b383818c-4c81-4888-8c80-f39a0b1bf9fb) + (property "Reference" "U4" (id 0) (at 149.86 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6581f4bd-969a-4a52-bf34-34d6e24a433a)) + (pin "2" (uuid 15113e0d-971e-4b81-8359-540fdab0e1aa)) + (pin "3" (uuid c4c6c493-2ab2-4f2e-a773-4f891eead381)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 109.22 87.63 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba26b670-cee4-4e62-aace-e814c833fd02) + (property "Reference" "U1" (id 0) (at 111.76 87.63 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 111.76 90.17 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 63080624-0ec0-4ae5-89ef-af345042af17)) + (pin "2" (uuid 99ceb699-2891-48db-9745-cb55b3645be8)) + (pin "3" (uuid 6657d604-f5bd-489d-af28-4f3f7b46b567)) + (pin "4" (uuid 0915377e-fef2-4b60-ba68-25802610ea15)) + (pin "5" (uuid 120f4c38-18f2-4e5d-963c-afdac9a3a876)) + (pin "6" (uuid 809be297-aded-4798-bd9f-577c6dfd6178)) + (pin "7" (uuid 39773969-16bb-4965-a4f9-2e82476ccbd7)) + (pin "8" (uuid 1dae0184-17bd-4a01-a90a-40cdefca5d3f)) + (pin "9" (uuid 52f50196-1ee5-46bf-8bf8-f2385c5a69fe)) + (pin "10" (uuid bb9b7048-b168-42f6-bfc2-f4b4aa0bbd9a)) + (pin "11" (uuid b187e2ab-c334-4152-b8c0-3b5e498907ff)) + (pin "12" (uuid 1c9bdb4a-d154-47b3-8b81-de451353fde3)) + (pin "13" (uuid 7eaf8d8b-7fb0-4c9c-944c-b00e3826fc50)) + (pin "14" (uuid 52f5e559-0d9d-4452-a2e2-27d8999c2139)) + (pin "15" (uuid a91512b6-3c7b-42db-9d52-25d4c9a79436)) + (pin "16" (uuid fa77a93f-a43d-49ea-aa29-648d3d6025bb)) + (pin "17" (uuid e8b1dd48-dc04-4c5d-81e4-3af1236fce17)) + (pin "18" (uuid de9c62bf-3c52-4227-9cd3-f4a1f283a2ba)) + (pin "19" (uuid 8bad02cb-7684-4e83-8678-5abc26d1a89a)) + (pin "20" (uuid a7eea872-efce-4e12-8da2-52b19ad6d380)) + (pin "21" (uuid f241a1ee-3551-4be9-92e4-97d1ebc38af8)) + (pin "22" (uuid 79bb6641-9713-4b40-8616-f9182ab9c079)) + (pin "23" (uuid a2bcac0d-12cb-4fad-b934-ba601f9ca54f)) + (pin "24" (uuid 8b968e16-97d5-44b3-8bdf-9a360f8fa18d)) + (pin "25" (uuid dd87e7a1-a6b3-4a50-abb8-a247d0e5c1be)) + (pin "26" (uuid 02d1ede5-5527-4efe-b251-abc0d57bcfec)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 120.65 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8483095-cae6-476c-bd77-f779e93a393e) + (property "Reference" "U2" (id 0) (at 120.015 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 120.015 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ea3cef5-47c4-4031-b109-073353e2f1a8)) + (pin "2" (uuid 8a6e56e6-64bc-44e0-9b1f-561b6ab4ef26)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 245.11 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da856a49-8d85-459f-9fdc-ead362122aeb) + (property "Reference" "U8" (id 0) (at 244.475 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 244.475 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 245.11 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 245.11 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 91b9c0f9-e0fc-4829-8d5b-d8f8057ee59c)) + (pin "2" (uuid 26a9d54d-43f3-4aa3-8ed9-712e8abd47e3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 124.46 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8d0de2d-4efb-48db-9053-78ac24343ec6) + (property "Reference" "U3" (id 0) (at 124.46 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 124.46 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f31cf58b-9a25-4938-b10d-4d0f096b69a8)) + (pin "2" (uuid 364c3335-2d15-43ce-8697-9d3c6e4d95e7)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 80.01 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb45b5f1-df6f-43ee-882f-46b8fbfe058f) + (property "Reference" "#PWR01" (id 0) (at 73.66 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 74.93 109.22 0)) + (property "Footprint" "" (id 2) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 80.01 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4533b25d-acec-4f28-966f-010cbada9d57)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/fb45b5f1-df6f-43ee-882f-46b8fbfe058f" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/ba26b670-cee4-4e62-aace-e814c833fd02" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/38309441-1575-4a2b-944e-764f9fe4894f" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/7f87ee9d-1a36-4aec-bb00-f8fc24fa2328" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/c8483095-cae6-476c-bd77-f779e93a393e" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/e8d0de2d-4efb-48db-9053-78ac24343ec6" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b383818c-4c81-4888-8c80-f39a0b1bf9fb" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/a1c9e468-be3e-44dd-bf35-9066d1a0e3d2" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/48d85cf5-29c1-4f7d-a57e-7b0b69dda574" + (reference "U6") (unit 1) (value "d_or") (footprint "") + ) + (path "/48f857eb-4e87-4806-ba4b-646581a37ea2" + (reference "U7") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/da856a49-8d85-459f-9fdc-ead362122aeb" + (reference "U8") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/28d3271f-0b04-4869-b592-25b6a93cf6fc" + (reference "v1") (unit 1) (value "DC") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.sub b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.sub new file mode 100644 index 000000000..c75fb0786 --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE.sub @@ -0,0 +1,31 @@ +* Subcircuit TRISTATE +.subckt TRISTATE net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ +.title kicad schematic +v1 net-_u2-pad1_ gnd dc 0 +* u5 net-_u3-pad2_ net-_u2-pad2_ net-_u5-pad3_ d_and +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_and +* u2 net-_u2-pad1_ net-_u2-pad2_ adc_bridge_1 +* u3 net-_u1-pad1_ net-_u3-pad2_ d_inverter +* u7 net-_u6-pad3_ net-_u1-pad3_ d_buffer +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u6-pad3_ d_or +a1 [net-_u3-pad2_ net-_u2-pad2_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a3 [net-_u2-pad1_ ] [net-_u2-pad2_ ] u2 +a4 net-_u1-pad1_ net-_u3-pad2_ u3 +a5 net-_u6-pad3_ net-_u1-pad3_ u7 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u6-pad3_ u6 +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends TRISTATE \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE_Previous_Values.xml b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE_Previous_Values.xml new file mode 100644 index 000000000..5ef3761ac --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/TRISTATE_Previous_Values.xml @@ -0,0 +1 @@ +dc0d_bufferd_ord_andd_andadc_bridged_inverterdac_bridgetruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.1100secusus \ No newline at end of file diff --git a/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/analysis b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/analysis new file mode 100644 index 000000000..af548eb1e --- /dev/null +++ b/library/SubcircuitLibrary/Ramaprakash_B_ICs/NB3L553/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 100e-06 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SDA12/D.lib b/library/SubcircuitLibrary/SDA12/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/SDA12/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/SDA12/SDA12-cache.lib b/library/SubcircuitLibrary/SDA12/SDA12-cache.lib new file mode 100644 index 000000000..2579b7e3e --- /dev/null +++ b/library/SubcircuitLibrary/SDA12/SDA12-cache.lib @@ -0,0 +1,68 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SDA12/SDA12.cir b/library/SubcircuitLibrary/SDA12/SDA12.cir new file mode 100644 index 000000000..115e2dd4f --- /dev/null +++ b/library/SubcircuitLibrary/SDA12/SDA12.cir @@ -0,0 +1,23 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\SDA12\SDA12.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/03/26 18:01:32 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +D1 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +D3 Net-_D3-Pad1_ Net-_D1-Pad2_ eSim_Diode +D5 Net-_D5-Pad1_ Net-_D1-Pad2_ eSim_Diode +D7 Net-_D7-Pad1_ Net-_D1-Pad2_ eSim_Diode +D9 Net-_D10-Pad2_ Net-_D1-Pad2_ eSim_Diode +D11 Net-_D11-Pad1_ Net-_D1-Pad2_ eSim_Diode +D2 Net-_D10-Pad1_ Net-_D1-Pad1_ eSim_Diode +D4 Net-_D10-Pad1_ Net-_D3-Pad1_ eSim_Diode +D6 Net-_D10-Pad1_ Net-_D5-Pad1_ eSim_Diode +D8 Net-_D10-Pad1_ Net-_D7-Pad1_ eSim_Diode +D10 Net-_D10-Pad1_ Net-_D10-Pad2_ eSim_Diode +D12 Net-_D10-Pad1_ Net-_D11-Pad1_ eSim_Diode +U1 Net-_D1-Pad2_ Net-_D1-Pad1_ Net-_D3-Pad1_ Net-_D5-Pad1_ Net-_D10-Pad1_ Net-_D7-Pad1_ Net-_D10-Pad2_ Net-_D11-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/SDA12/SDA12.cir.out b/library/SubcircuitLibrary/SDA12/SDA12.cir.out new file mode 100644 index 000000000..f35ad7fd9 --- /dev/null +++ b/library/SubcircuitLibrary/SDA12/SDA12.cir.out @@ -0,0 +1,25 @@ +* c:\fossee\esim\library\subcircuitlibrary\sda12\sda12.cir + +.include D.lib +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +d3 net-_d3-pad1_ net-_d1-pad2_ 1N4148 +d5 net-_d5-pad1_ net-_d1-pad2_ 1N4148 +d7 net-_d7-pad1_ net-_d1-pad2_ 1N4148 +d9 net-_d10-pad2_ net-_d1-pad2_ 1N4148 +d11 net-_d11-pad1_ net-_d1-pad2_ 1N4148 +d2 net-_d10-pad1_ net-_d1-pad1_ 1N4148 +d4 net-_d10-pad1_ net-_d3-pad1_ 1N4148 +d6 net-_d10-pad1_ net-_d5-pad1_ 1N4148 +d8 net-_d10-pad1_ net-_d7-pad1_ 1N4148 +d10 net-_d10-pad1_ net-_d10-pad2_ 1N4148 +d12 net-_d10-pad1_ net-_d11-pad1_ 1N4148 +* u1 net-_d1-pad2_ net-_d1-pad1_ net-_d3-pad1_ net-_d5-pad1_ net-_d10-pad1_ net-_d7-pad1_ net-_d10-pad2_ net-_d11-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SDA12/SDA12.pro b/library/SubcircuitLibrary/SDA12/SDA12.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SDA12/SDA12.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SDA12/SDA12.sch b/library/SubcircuitLibrary/SDA12/SDA12.sch new file mode 100644 index 000000000..1897fab5d --- /dev/null +++ b/library/SubcircuitLibrary/SDA12/SDA12.sch @@ -0,0 +1,356 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_Diode D1 +U 1 1 69F738B1 +P 3200 3750 +F 0 "D1" H 3200 3850 50 0000 C CNN +F 1 "eSim_Diode" H 3200 3650 50 0000 C CNN +F 2 "" H 3200 3750 60 0000 C CNN +F 3 "" H 3200 3750 60 0000 C CNN + 1 3200 3750 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D3 +U 1 1 69F738F2 +P 3700 3750 +F 0 "D3" H 3700 3850 50 0000 C CNN +F 1 "eSim_Diode" H 3700 3650 50 0000 C CNN +F 2 "" H 3700 3750 60 0000 C CNN +F 3 "" H 3700 3750 60 0000 C CNN + 1 3700 3750 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D5 +U 1 1 69F73910 +P 4200 3750 +F 0 "D5" H 4200 3850 50 0000 C CNN +F 1 "eSim_Diode" H 4200 3650 50 0000 C CNN +F 2 "" H 4200 3750 60 0000 C CNN +F 3 "" H 4200 3750 60 0000 C CNN + 1 4200 3750 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D7 +U 1 1 69F73937 +P 4700 3750 +F 0 "D7" H 4700 3850 50 0000 C CNN +F 1 "eSim_Diode" H 4700 3650 50 0000 C CNN +F 2 "" H 4700 3750 60 0000 C CNN +F 3 "" H 4700 3750 60 0000 C CNN + 1 4700 3750 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D9 +U 1 1 69F73963 +P 5200 3750 +F 0 "D9" H 5200 3850 50 0000 C CNN +F 1 "eSim_Diode" H 5200 3650 50 0000 C CNN +F 2 "" H 5200 3750 60 0000 C CNN +F 3 "" H 5200 3750 60 0000 C CNN + 1 5200 3750 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D11 +U 1 1 69F7398C +P 5650 3750 +F 0 "D11" H 5650 3850 50 0000 C CNN +F 1 "eSim_Diode" H 5650 3650 50 0000 C CNN +F 2 "" H 5650 3750 60 0000 C CNN +F 3 "" H 5650 3750 60 0000 C CNN + 1 5650 3750 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D2 +U 1 1 69F739B4 +P 3200 4500 +F 0 "D2" H 3200 4600 50 0000 C CNN +F 1 "eSim_Diode" H 3200 4400 50 0000 C CNN +F 2 "" H 3200 4500 60 0000 C CNN +F 3 "" H 3200 4500 60 0000 C CNN + 1 3200 4500 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D4 +U 1 1 69F739E7 +P 3700 4500 +F 0 "D4" H 3700 4600 50 0000 C CNN +F 1 "eSim_Diode" H 3700 4400 50 0000 C CNN +F 2 "" H 3700 4500 60 0000 C CNN +F 3 "" H 3700 4500 60 0000 C CNN + 1 3700 4500 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D6 +U 1 1 69F73A15 +P 4200 4500 +F 0 "D6" H 4200 4600 50 0000 C CNN +F 1 "eSim_Diode" H 4200 4400 50 0000 C CNN +F 2 "" H 4200 4500 60 0000 C CNN +F 3 "" H 4200 4500 60 0000 C CNN + 1 4200 4500 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D8 +U 1 1 69F73A48 +P 4700 4500 +F 0 "D8" H 4700 4600 50 0000 C CNN +F 1 "eSim_Diode" H 4700 4400 50 0000 C CNN +F 2 "" H 4700 4500 60 0000 C CNN +F 3 "" H 4700 4500 60 0000 C CNN + 1 4700 4500 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D10 +U 1 1 69F73A82 +P 5200 4500 +F 0 "D10" H 5200 4600 50 0000 C CNN +F 1 "eSim_Diode" H 5200 4400 50 0000 C CNN +F 2 "" H 5200 4500 60 0000 C CNN +F 3 "" H 5200 4500 60 0000 C CNN + 1 5200 4500 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Diode D12 +U 1 1 69F73AB9 +P 5650 4500 +F 0 "D12" H 5650 4600 50 0000 C CNN +F 1 "eSim_Diode" H 5650 4400 50 0000 C CNN +F 2 "" H 5650 4500 60 0000 C CNN +F 3 "" H 5650 4500 60 0000 C CNN + 1 5650 4500 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 3200 3600 3200 3250 +Wire Wire Line + 3200 3250 5950 3250 +Wire Wire Line + 3700 3600 3700 3250 +Connection ~ 3700 3250 +Wire Wire Line + 4200 3600 4200 3250 +Connection ~ 4200 3250 +Wire Wire Line + 4700 3600 4700 3250 +Connection ~ 4700 3250 +Wire Wire Line + 5200 3600 5200 3250 +Connection ~ 5200 3250 +Wire Wire Line + 5650 3600 5650 3250 +Connection ~ 5650 3250 +Wire Wire Line + 3200 4350 3200 3900 +Wire Wire Line + 3700 3900 3700 4350 +Wire Wire Line + 4200 3900 4200 4350 +Wire Wire Line + 4700 3900 4700 4350 +Wire Wire Line + 5200 3900 5200 4350 +Wire Wire Line + 5650 3900 5650 4350 +Wire Wire Line + 3200 4650 3200 5000 +Wire Wire Line + 3200 5000 6150 5000 +Wire Wire Line + 3700 4650 3700 5000 +Connection ~ 3700 5000 +Wire Wire Line + 4200 4650 4200 5000 +Connection ~ 4200 5000 +Wire Wire Line + 4700 4650 4700 5000 +Connection ~ 4700 5000 +Wire Wire Line + 5200 4650 5200 5000 +Connection ~ 5200 5000 +Wire Wire Line + 5650 4650 5650 5000 +Connection ~ 5650 5000 +Wire Wire Line + 3200 4150 2900 4150 +Wire Wire Line + 2900 4150 2900 3000 +Connection ~ 3200 4150 +Wire Wire Line + 3700 4150 3450 4150 +Wire Wire Line + 3450 4150 3450 3000 +Connection ~ 3700 4150 +Wire Wire Line + 4200 4100 4000 4100 +Wire Wire Line + 4000 4100 4000 3000 +Connection ~ 4200 4100 +Wire Wire Line + 4700 4100 4500 4100 +Wire Wire Line + 4500 4100 4500 3000 +Connection ~ 4700 4100 +Wire Wire Line + 5200 4100 5000 4100 +Wire Wire Line + 5000 4100 5000 3000 +Connection ~ 5200 4100 +Wire Wire Line + 5650 4150 5450 4150 +Wire Wire Line + 5450 4150 5450 3000 +Connection ~ 5650 4150 +$Comp +L PORT U1 +U 1 1 69F73FE4 +P 6200 3250 +F 0 "U1" H 6250 3350 30 0000 C CNN +F 1 "PORT" H 6200 3250 30 0000 C CNN +F 2 "" H 6200 3250 60 0000 C CNN +F 3 "" H 6200 3250 60 0000 C CNN + 1 6200 3250 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 2 1 69F7406E +P 2650 3000 +F 0 "U1" H 2700 3100 30 0000 C CNN +F 1 "PORT" H 2650 3000 30 0000 C CNN +F 2 "" H 2650 3000 60 0000 C CNN +F 3 "" H 2650 3000 60 0000 C CNN + 2 2650 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 69F74131 +P 3200 3000 +F 0 "U1" H 3250 3100 30 0000 C CNN +F 1 "PORT" H 3200 3000 30 0000 C CNN +F 2 "" H 3200 3000 60 0000 C CNN +F 3 "" H 3200 3000 60 0000 C CNN + 3 3200 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 69F741B7 +P 3750 3000 +F 0 "U1" H 3800 3100 30 0000 C CNN +F 1 "PORT" H 3750 3000 30 0000 C CNN +F 2 "" H 3750 3000 60 0000 C CNN +F 3 "" H 3750 3000 60 0000 C CNN + 4 3750 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 69F74254 +P 5200 3000 +F 0 "U1" H 5250 3100 30 0000 C CNN +F 1 "PORT" H 5200 3000 30 0000 C CNN +F 2 "" H 5200 3000 60 0000 C CNN +F 3 "" H 5200 3000 60 0000 C CNN + 8 5200 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 69F7429F +P 6400 5000 +F 0 "U1" H 6450 5100 30 0000 C CNN +F 1 "PORT" H 6400 5000 30 0000 C CNN +F 2 "" H 6400 5000 60 0000 C CNN +F 3 "" H 6400 5000 60 0000 C CNN + 5 6400 5000 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 7 1 69F742EC +P 4750 3000 +F 0 "U1" H 4800 3100 30 0000 C CNN +F 1 "PORT" H 4750 3000 30 0000 C CNN +F 2 "" H 4750 3000 60 0000 C CNN +F 3 "" H 4750 3000 60 0000 C CNN + 7 4750 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 69F743E6 +P 4250 3000 +F 0 "U1" H 4300 3100 30 0000 C CNN +F 1 "PORT" H 4250 3000 30 0000 C CNN +F 2 "" H 4250 3000 60 0000 C CNN +F 3 "" H 4250 3000 60 0000 C CNN + 6 4250 3000 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SDA12/SDA12.sub b/library/SubcircuitLibrary/SDA12/SDA12.sub new file mode 100644 index 000000000..03fba0b22 --- /dev/null +++ b/library/SubcircuitLibrary/SDA12/SDA12.sub @@ -0,0 +1,19 @@ +* Subcircuit SDA12 +.subckt SDA12 net-_d1-pad2_ net-_d1-pad1_ net-_d3-pad1_ net-_d5-pad1_ net-_d10-pad1_ net-_d7-pad1_ net-_d10-pad2_ net-_d11-pad1_ +* c:\fossee\esim\library\subcircuitlibrary\sda12\sda12.cir +.include D.lib +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +d3 net-_d3-pad1_ net-_d1-pad2_ 1N4148 +d5 net-_d5-pad1_ net-_d1-pad2_ 1N4148 +d7 net-_d7-pad1_ net-_d1-pad2_ 1N4148 +d9 net-_d10-pad2_ net-_d1-pad2_ 1N4148 +d11 net-_d11-pad1_ net-_d1-pad2_ 1N4148 +d2 net-_d10-pad1_ net-_d1-pad1_ 1N4148 +d4 net-_d10-pad1_ net-_d3-pad1_ 1N4148 +d6 net-_d10-pad1_ net-_d5-pad1_ 1N4148 +d8 net-_d10-pad1_ net-_d7-pad1_ 1N4148 +d10 net-_d10-pad1_ net-_d10-pad2_ 1N4148 +d12 net-_d10-pad1_ net-_d11-pad1_ 1N4148 +* Control Statements + +.ends SDA12 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SDA12/SDA12_Previous_Values.xml b/library/SubcircuitLibrary/SDA12/SDA12_Previous_Values.xml new file mode 100644 index 000000000..c52aa19a2 --- /dev/null +++ b/library/SubcircuitLibrary/SDA12/SDA12_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SDA12/analysis b/library/SubcircuitLibrary/SDA12/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SDA12/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/2_in_and-cache.lib b/library/SubcircuitLibrary/SN54L98/2_in_and-cache.lib new file mode 100644 index 000000000..cd4456570 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/2_in_and-cache.lib @@ -0,0 +1,94 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 300 0 50 0 1 0 N +P 2 0 1 0 -200 150 250 0 N +P 3 0 1 0 -200 150 -200 -150 250 0 N +X in 1 -400 0 200 R 50 50 1 1 I +X Vdd 2 -400 100 200 R 50 50 1 1 I +X Gnd 3 -400 -100 200 R 50 50 1 1 I +X Out 4 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NAND_2 +# +DEF NAND_2 X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "NAND_2" 50 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 100 0 206 760 -760 0 1 0 N 150 200 150 -200 +C 350 0 50 0 1 0 N +P 2 0 1 0 -200 200 150 200 N +P 3 0 1 0 -200 200 -200 -200 150 -200 N +X in1 1 -400 50 200 R 50 50 1 1 I +X Gnd 2 -400 -150 200 R 50 50 1 1 I +X Vdd 3 -400 150 200 R 50 50 1 1 I +X out 4 600 0 200 L 50 50 1 1 O +X in2 5 -400 -50 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L98/2_in_and.bak b/library/SubcircuitLibrary/SN54L98/2_in_and.bak new file mode 100644 index 000000000..4c88f6efd --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/2_in_and.bak @@ -0,0 +1,151 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L NAND_2 X1 +U 1 1 686CC211 +P 5400 3000 +F 0 "X1" H 5500 3000 60 0000 C CNN +F 1 "NAND_2" H 5450 2750 60 0000 C CNN +F 2 "" H 5400 3000 60 0001 C CNN +F 3 "" H 5400 3000 60 0001 C CNN + 1 5400 3000 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 686CC23B +P 6400 3000 +F 0 "X2" H 6400 3000 60 0000 C CNN +F 1 "CMOS_INVTR" H 6450 2800 60 0000 C CNN +F 2 "" H 6400 3000 60 0001 C CNN +F 3 "" H 6400 3000 60 0001 C CNN + 1 6400 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4950 2900 6000 2900 +Wire Wire Line + 5000 2900 5000 2850 +Wire Wire Line + 4950 3100 6000 3100 +Wire Wire Line + 5000 3100 5000 3150 +$Comp +L PORT U1 +U 1 1 686CC270 +P 4600 2850 +F 0 "U1" H 4650 2950 30 0000 C CNN +F 1 "PORT" H 4600 2850 30 0000 C CNN +F 2 "" H 4600 2850 60 0000 C CNN +F 3 "" H 4600 2850 60 0000 C CNN + 1 4600 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686CC2D9 +P 4750 2950 +F 0 "U1" H 4800 3050 30 0000 C CNN +F 1 "PORT" H 4750 2950 30 0000 C CNN +F 2 "" H 4750 2950 60 0000 C CNN +F 3 "" H 4750 2950 60 0000 C CNN + 3 4750 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686CC2FC +P 4750 3050 +F 0 "U1" H 4800 3150 30 0000 C CNN +F 1 "PORT" H 4750 3050 30 0000 C CNN +F 2 "" H 4750 3050 60 0000 C CNN +F 3 "" H 4750 3050 60 0000 C CNN + 4 4750 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686CC31D +P 4600 3150 +F 0 "U1" H 4650 3250 30 0000 C CNN +F 1 "PORT" H 4600 3150 30 0000 C CNN +F 2 "" H 4600 3150 60 0000 C CNN +F 3 "" H 4600 3150 60 0000 C CNN + 2 4600 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686CC342 +P 7200 3000 +F 0 "U1" H 7250 3100 30 0000 C CNN +F 1 "PORT" H 7200 3000 30 0000 C CNN +F 2 "" H 7200 3000 60 0000 C CNN +F 3 "" H 7200 3000 60 0000 C CNN + 5 7200 3000 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4850 2850 4950 2850 +Wire Wire Line + 4950 2850 4950 2900 +Connection ~ 5000 2900 +Wire Wire Line + 4850 3150 4950 3150 +Wire Wire Line + 4950 3150 4950 3100 +Connection ~ 5000 3100 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/2_in_and.cir b/library/SubcircuitLibrary/SN54L98/2_in_and.cir new file mode 100644 index 000000000..8a30412ec --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/2_in_and.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/2_in_and/2_in_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Tue Jul 8 12:32:28 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad1_ Net-_X1-Pad4_ Net-_U1-Pad4_ NAND_2 +X2 Net-_X1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad5_ CMOS_INVTR +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN54L98/2_in_and.cir.out b/library/SubcircuitLibrary/SN54L98/2_in_and.cir.out new file mode 100644 index 000000000..b2bc03524 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/2_in_and.cir.out @@ -0,0 +1,18 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/2_in_and/2_in_and.cir + +.include CMOS_INVTR.sub +.include NAND_2.sub + +x1 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad1_ net-_x1-pad4_ net-_u1-pad4_ NAND_2 +x2 net-_x1-pad4_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad5_ CMOS_INVTR +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L98/2_in_and.pro b/library/SubcircuitLibrary/SN54L98/2_in_and.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/2_in_and.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L98/2_in_and.sch b/library/SubcircuitLibrary/SN54L98/2_in_and.sch new file mode 100644 index 000000000..e2a29248f --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/2_in_and.sch @@ -0,0 +1,162 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L NAND_2 X1 +U 1 1 686CC211 +P 5400 3000 +F 0 "X1" H 5500 3000 60 0000 C CNN +F 1 "NAND_2" H 5450 2750 60 0000 C CNN +F 2 "" H 5400 3000 60 0001 C CNN +F 3 "" H 5400 3000 60 0001 C CNN + 1 5400 3000 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 686CC23B +P 6400 3000 +F 0 "X2" H 6400 3000 60 0000 C CNN +F 1 "CMOS_INVTR" H 6450 2800 60 0000 C CNN +F 2 "" H 6400 3000 60 0001 C CNN +F 3 "" H 6400 3000 60 0001 C CNN + 1 6400 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4950 2900 6000 2900 +Wire Wire Line + 5000 2900 5000 2850 +Wire Wire Line + 4950 3100 6000 3100 +Wire Wire Line + 5000 3100 5000 3150 +$Comp +L PORT U1 +U 1 1 686CC270 +P 4600 2850 +F 0 "U1" H 4650 2950 30 0000 C CNN +F 1 "PORT" H 4600 2850 30 0000 C CNN +F 2 "" H 4600 2850 60 0000 C CNN +F 3 "" H 4600 2850 60 0000 C CNN + 1 4600 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686CC2D9 +P 4750 2950 +F 0 "U1" H 4800 3050 30 0000 C CNN +F 1 "PORT" H 4750 2950 30 0000 C CNN +F 2 "" H 4750 2950 60 0000 C CNN +F 3 "" H 4750 2950 60 0000 C CNN + 3 4750 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686CC2FC +P 4750 3050 +F 0 "U1" H 4800 3150 30 0000 C CNN +F 1 "PORT" H 4750 3050 30 0000 C CNN +F 2 "" H 4750 3050 60 0000 C CNN +F 3 "" H 4750 3050 60 0000 C CNN + 4 4750 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686CC31D +P 4600 3150 +F 0 "U1" H 4650 3250 30 0000 C CNN +F 1 "PORT" H 4600 3150 30 0000 C CNN +F 2 "" H 4600 3150 60 0000 C CNN +F 3 "" H 4600 3150 60 0000 C CNN + 2 4600 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686CC342 +P 7200 3000 +F 0 "U1" H 7250 3100 30 0000 C CNN +F 1 "PORT" H 7200 3000 30 0000 C CNN +F 2 "" H 7200 3000 60 0000 C CNN +F 3 "" H 7200 3000 60 0000 C CNN + 5 7200 3000 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4850 2850 4950 2850 +Wire Wire Line + 4950 2850 4950 2900 +Connection ~ 5000 2900 +Wire Wire Line + 4850 3150 4950 3150 +Wire Wire Line + 4950 3150 4950 3100 +Connection ~ 5000 3100 +$Comp +L SKY130mode scmode1 +U 1 1 686CC4AC +P 8250 3200 +F 0 "scmode1" H 8250 3350 98 0000 C CNB +F 1 "SKY130mode" H 8250 3100 118 0000 C CNB +F 2 "" H 8250 3350 60 0001 C CNN +F 3 "" H 8250 3350 60 0001 C CNN + 1 8250 3200 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/2_in_and.sub b/library/SubcircuitLibrary/SN54L98/2_in_and.sub new file mode 100644 index 000000000..6c2a85281 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/2_in_and.sub @@ -0,0 +1,12 @@ +* Subcircuit 2_in_and +.subckt 2_in_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/2_in_and/2_in_and.cir +.include CMOS_INVTR.sub +.include NAND_2.sub + +x1 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad1_ net-_x1-pad4_ net-_u1-pad4_ NAND_2 +x2 net-_x1-pad4_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad5_ CMOS_INVTR +* s c m o d e +* Control Statements + +.ends 2_in_and diff --git a/library/SubcircuitLibrary/SN54L98/2_in_and_Previous_Values.xml b/library/SubcircuitLibrary/SN54L98/2_in_and_Previous_Values.xml new file mode 100644 index 000000000..ecb007d93 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/2_in_and_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_Buf-cache.lib b/library/SubcircuitLibrary/SN54L98/CMOS_Buf-cache.lib new file mode 100644 index 000000000..a4da279a5 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_Buf-cache.lib @@ -0,0 +1,74 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 300 0 50 0 1 0 N +P 2 0 1 0 -200 150 250 0 N +P 3 0 1 0 -200 150 -200 -150 250 0 N +X in 1 -400 0 200 R 50 50 1 1 I +X Vdd 2 -400 100 200 R 50 50 1 1 I +X Gnd 3 -400 -100 200 R 50 50 1 1 I +X Out 4 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_Buf-rescue.lib b/library/SubcircuitLibrary/SN54L98/CMOS_Buf-rescue.lib new file mode 100644 index 000000000..2e8cabd8d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_Buf-rescue.lib @@ -0,0 +1,22 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR-RESCUE-CMOS_Buf +# +DEF CMOS_INVTR-RESCUE-CMOS_Buf X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR-RESCUE-CMOS_Buf" 100 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 550 0 50 0 1 0 N +P 2 0 1 0 -450 250 500 0 N +P 3 0 1 0 -450 250 -450 -250 500 0 N +X IN 1 -650 0 200 R 50 50 1 1 I +X VDD 2 -650 150 200 R 50 50 1 1 I +X GND 3 -650 -150 200 R 50 50 1 1 I +X OUT 4 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_Buf.bak b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.bak new file mode 100644 index 000000000..18c8ff97d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.bak @@ -0,0 +1,149 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L CMOS_INVTR X1 +U 1 1 68655F03 +P 4950 3300 +F 0 "X1" H 4950 3300 60 0000 C CNN +F 1 "CMOS_INVTR" H 5050 3050 60 0000 C CNN +F 2 "" H 4950 3300 60 0001 C CNN +F 3 "" H 4950 3300 60 0001 C CNN + 1 4950 3300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 68655F1A +P 6500 3300 +F 0 "X2" H 6500 3300 60 0000 C CNN +F 1 "CMOS_INVTR" H 6600 3050 60 0000 C CNN +F 2 "" H 6500 3300 60 0001 C CNN +F 3 "" H 6500 3300 60 0001 C CNN + 1 6500 3300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5750 3300 5850 3300 +Wire Wire Line + 4300 3150 4300 3050 +Wire Wire Line + 4200 3050 5850 3050 +Wire Wire Line + 5850 3050 5850 3150 +Wire Wire Line + 4300 3450 4300 3550 +Wire Wire Line + 4200 3550 5850 3550 +Wire Wire Line + 5850 3550 5850 3450 +$Comp +L PORT U1 +U 1 1 68655FBD +P 3950 3050 +F 0 "U1" H 4000 3150 30 0000 C CNN +F 1 "PORT" H 3950 3050 30 0000 C CNN +F 2 "" H 3950 3050 60 0000 C CNN +F 3 "" H 3950 3050 60 0000 C CNN + 1 3950 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68655FF0 +P 4050 3300 +F 0 "U1" H 4100 3400 30 0000 C CNN +F 1 "PORT" H 4050 3300 30 0000 C CNN +F 2 "" H 4050 3300 60 0000 C CNN +F 3 "" H 4050 3300 60 0000 C CNN + 3 4050 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68656163 +P 3950 3550 +F 0 "U1" H 4000 3650 30 0000 C CNN +F 1 "PORT" H 3950 3550 30 0000 C CNN +F 2 "" H 3950 3550 60 0000 C CNN +F 3 "" H 3950 3550 60 0000 C CNN + 2 3950 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68656242 +P 7550 3300 +F 0 "U1" H 7600 3400 30 0000 C CNN +F 1 "PORT" H 7550 3300 30 0000 C CNN +F 2 "" H 7550 3300 60 0000 C CNN +F 3 "" H 7550 3300 60 0000 C CNN + 4 7550 3300 + -1 0 0 -1 +$EndComp +Connection ~ 4300 3050 +Connection ~ 4300 3550 +$Comp +L SKY130mode scmode1 +U 1 1 68656379 +P 7900 4200 +F 0 "scmode1" H 7900 4350 98 0000 C CNB +F 1 "SKY130mode" H 7900 4100 118 0000 C CNB +F 2 "" H 7900 4350 60 0001 C CNN +F 3 "" H 7900 4350 60 0001 C CNN + 1 7900 4200 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_Buf.cir b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.cir new file mode 100644 index 000000000..a1907752c --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_Buf/CMOS_Buf.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sun Jul 6 10:50:24 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT +scmode1 SKY130mode +X1 Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_X1-Pad4_ CMOS_INVTR +X2 Net-_X1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad4_ CMOS_INVTR + +.end diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_Buf.cir.out b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.cir.out new file mode 100644 index 000000000..c1aedf115 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.cir.out @@ -0,0 +1,23 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_buf/cmos_buf.cir + +.include CMOS_INVTR.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +* s c m o d e +x1 net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad2_ net-_x1-pad4_ CMOS_INVTR +x2 net-_x1-pad4_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad4_ CMOS_INVTR +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_Buf.pro b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.pro new file mode 100644 index 000000000..78fa1002c --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.pro @@ -0,0 +1,74 @@ +update=Sun Jul 6 10:49:25 2025 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=CMOS_Buf-rescue +LibName2=adc-dac +LibName3=memory +LibName4=xilinx +LibName5=microcontrollers +LibName6=dsp +LibName7=microchip +LibName8=analog_switches +LibName9=motorola +LibName10=texas +LibName11=intel +LibName12=audio +LibName13=interface +LibName14=digital-audio +LibName15=philips +LibName16=display +LibName17=cypress +LibName18=siliconi +LibName19=opto +LibName20=atmel +LibName21=contrib +LibName22=power +LibName23=eSim_Plot +LibName24=transistors +LibName25=conn +LibName26=eSim_User +LibName27=regul +LibName28=74xx +LibName29=cmos4000 +LibName30=eSim_Analog +LibName31=eSim_Devices +LibName32=eSim_Digital +LibName33=eSim_Hybrid +LibName34=eSim_Miscellaneous +LibName35=eSim_Power +LibName36=eSim_Sources +LibName37=eSim_Subckt +LibName38=eSim_Nghdl +LibName39=eSim_Ngveri +LibName40=eSim_SKY130 +LibName41=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_Buf.sch b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.sch new file mode 100644 index 000000000..0cdb5a05c --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.sch @@ -0,0 +1,151 @@ +EESchema Schematic File Version 2 +LIBS:CMOS_Buf-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:CMOS_Buf-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L PORT U1 +U 1 1 68655FBD +P 3950 3050 +F 0 "U1" H 4000 3150 30 0000 C CNN +F 1 "PORT" H 3950 3050 30 0000 C CNN +F 2 "" H 3950 3050 60 0000 C CNN +F 3 "" H 3950 3050 60 0000 C CNN + 1 3950 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68655FF0 +P 4050 3300 +F 0 "U1" H 4100 3400 30 0000 C CNN +F 1 "PORT" H 4050 3300 30 0000 C CNN +F 2 "" H 4050 3300 60 0000 C CNN +F 3 "" H 4050 3300 60 0000 C CNN + 3 4050 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68656163 +P 3950 3550 +F 0 "U1" H 4000 3650 30 0000 C CNN +F 1 "PORT" H 3950 3550 30 0000 C CNN +F 2 "" H 3950 3550 60 0000 C CNN +F 3 "" H 3950 3550 60 0000 C CNN + 2 3950 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68656242 +P 7050 3300 +F 0 "U1" H 7100 3400 30 0000 C CNN +F 1 "PORT" H 7050 3300 30 0000 C CNN +F 2 "" H 7050 3300 60 0000 C CNN +F 3 "" H 7050 3300 60 0000 C CNN + 4 7050 3300 + -1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68656379 +P 7900 4200 +F 0 "scmode1" H 7900 4350 98 0000 C CNB +F 1 "SKY130mode" H 7900 4100 118 0000 C CNB +F 2 "" H 7900 4350 60 0001 C CNN +F 3 "" H 7900 4350 60 0001 C CNN + 1 7900 4200 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X1 +U 1 1 686A07F2 +P 4700 3300 +F 0 "X1" H 4700 3300 60 0000 C CNN +F 1 "CMOS_INVTR" H 4750 3100 60 0000 C CNN +F 2 "" H 4700 3300 60 0001 C CNN +F 3 "" H 4700 3300 60 0001 C CNN + 1 4700 3300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 686A0855 +P 6250 3300 +F 0 "X2" H 6250 3300 60 0000 C CNN +F 1 "CMOS_INVTR" H 6300 3100 60 0000 C CNN +F 2 "" H 6250 3300 60 0001 C CNN +F 3 "" H 6250 3300 60 0001 C CNN + 1 6250 3300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5250 3300 5850 3300 +Wire Wire Line + 4300 3050 4300 3200 +Wire Wire Line + 4200 3050 5850 3050 +Wire Wire Line + 5850 3050 5850 3200 +Wire Wire Line + 4300 3400 4300 3550 +Wire Wire Line + 5850 3550 4200 3550 +Wire Wire Line + 5850 3400 5850 3550 +Connection ~ 4300 3050 +Connection ~ 4300 3550 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_Buf.sub b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.sub new file mode 100644 index 000000000..8d50195f6 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_Buf.sub @@ -0,0 +1,17 @@ +* Subcircuit CMOS_Buf +.subckt CMOS_Buf net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_buf/cmos_buf.cir +.include CMOS_INVTR.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +* s c m o d e +x1 net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad2_ net-_x1-pad4_ CMOS_INVTR +x2 net-_x1-pad4_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad4_ CMOS_INVTR +* Control Statements + +.ends CMOS_Buf \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_Buf_Previous_Values.xml b/library/SubcircuitLibrary/SN54L98/CMOS_Buf_Previous_Values.xml new file mode 100644 index 000000000..b0e9c717d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_Buf_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_INVTR-cache.lib b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.cir b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.cir new file mode 100644 index 000000000..d89b6087d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/CMOS_INVTR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 22:03:21 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.cir.out b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.cir.out new file mode 100644 index 000000000..4058a1829 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.cir.out @@ -0,0 +1,22 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir + +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.pro b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.sch b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.sch new file mode 100644 index 000000000..aa7a7ee81 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.sch @@ -0,0 +1,161 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 684B982F +P 5350 2950 +F 0 "SC1" H 5400 3250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5650 3037 50 0000 R CNN +F 2 "" H 5350 1450 50 0001 C CNN +F 3 "" H 5350 2950 50 0001 C CNN + 1 5350 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684B9856 +P 5350 3800 +F 0 "SC2" H 5400 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5650 3887 50 0000 R CNN +F 2 "" H 5350 2300 50 0001 C CNN +F 3 "" H 5350 3800 50 0001 C CNN + 1 5350 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684B98AD +P 4550 3300 +F 0 "U1" H 4600 3400 30 0000 C CNN +F 1 "PORT" H 4550 3300 30 0000 C CNN +F 2 "" H 4550 3300 60 0000 C CNN +F 3 "" H 4550 3300 60 0000 C CNN + 1 4550 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B98D8 +P 6300 3350 +F 0 "U1" H 6350 3450 30 0000 C CNN +F 1 "PORT" H 6300 3350 30 0000 C CNN +F 2 "" H 6300 3350 60 0000 C CNN +F 3 "" H 6300 3350 60 0000 C CNN + 4 6300 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B9935 +P 5300 4350 +F 0 "U1" H 5350 4450 30 0000 C CNN +F 1 "PORT" H 5300 4350 30 0000 C CNN +F 2 "" H 5300 4350 60 0000 C CNN +F 3 "" H 5300 4350 60 0000 C CNN + 3 5300 4350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684B999A +P 5300 2350 +F 0 "U1" H 5350 2450 30 0000 C CNN +F 1 "PORT" H 5300 2350 30 0000 C CNN +F 2 "" H 5300 2350 60 0000 C CNN +F 3 "" H 5300 2350 60 0000 C CNN + 2 5300 2350 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B99CD +P 7950 3000 +F 0 "scmode1" H 7950 3150 98 0000 C CNB +F 1 "SKY130mode" H 7950 2900 118 0000 C CNB +F 2 "" H 7950 3150 60 0001 C CNN +F 3 "" H 7950 3150 60 0001 C CNN + 1 7950 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5550 2650 5550 2350 +Wire Wire Line + 5450 2950 5600 2950 +Wire Wire Line + 5600 2950 5600 2550 +Wire Wire Line + 5600 2550 5550 2550 +Connection ~ 5550 2550 +Wire Wire Line + 5550 3250 5550 3500 +Wire Wire Line + 6050 3350 5550 3350 +Connection ~ 5550 3350 +Wire Wire Line + 5050 2950 5050 3800 +Wire Wire Line + 4800 3300 5050 3300 +Connection ~ 5050 3300 +Wire Wire Line + 5450 3800 5600 3800 +Wire Wire Line + 5600 3800 5600 4150 +Wire Wire Line + 5600 4150 5550 4150 +Wire Wire Line + 5550 4100 5550 4350 +Connection ~ 5550 4150 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.sub b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.sub new file mode 100644 index 000000000..9dff1ae3f --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR.sub @@ -0,0 +1,16 @@ +* Subcircuit CMOS_INVTR +.subckt CMOS_INVTR net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends CMOS_INVTR \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/CMOS_INVTR_Previous_Values.xml b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR_Previous_Values.xml new file mode 100644 index 000000000..0fa71b2d4 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/CMOS_INVTR_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/DS_blk-cache.lib b/library/SubcircuitLibrary/SN54L98/DS_blk-cache.lib new file mode 100644 index 000000000..f32a82db2 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/DS_blk-cache.lib @@ -0,0 +1,147 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 2_in_and +# +DEF 2_in_and X 0 40 Y Y 1 F N +F0 "X" 50 0 60 H V C CNN +F1 "2_in_and" 0 -250 60 H V C CNN +F2 "" 750 -150 60 H I C CNN +F3 "" 750 -150 60 H I C CNN +DRAW +A 50 0 206 760 -760 0 1 0 N 100 200 100 -200 +P 2 0 1 0 -200 200 100 200 N +P 3 0 1 0 -200 200 -200 -200 100 -200 N +X Vdd 1 -400 150 200 R 50 50 1 1 I +X in1 2 -400 50 200 R 50 50 1 1 I +X in2 3 -400 -50 200 R 50 50 1 1 I +X Gnd 4 -400 -150 200 R 50 50 1 1 I +X out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CMOS_Buf +# +DEF CMOS_Buf X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_Buf" 0 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +P 2 0 1 0 -250 150 250 0 N +P 3 0 1 0 -250 150 -250 -150 250 0 N +X Vdd 1 -450 100 200 R 50 50 1 1 I +X Gnd 2 -450 -100 200 R 50 50 1 1 I +X in 3 -450 0 200 R 50 50 1 1 I +X Out 4 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 300 0 50 0 1 0 N +P 2 0 1 0 -200 150 250 0 N +P 3 0 1 0 -200 150 -200 -150 250 0 N +X in 1 -400 0 200 R 50 50 1 1 I +X Vdd 2 -400 100 200 R 50 50 1 1 I +X Gnd 3 -400 -100 200 R 50 50 1 1 I +X Out 4 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# D_FF +# +DEF D_FF X 0 40 Y Y 1 F N +F0 "X" 100 100 60 H V C CNN +F1 "D_FF" 0 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -200 200 200 -150 0 1 0 N +X D 1 -400 50 200 R 50 50 1 1 I +X Clk 2 -400 -50 200 R 50 50 1 1 I +X Vdd 3 0 400 200 D 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X Q 5 400 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NOR_2 +# +DEF NOR_2 X 0 40 Y Y 1 F N +F0 "X" 50 0 60 H V C CNN +F1 "NOR_2" 0 -250 60 H V C CNN +F2 "" -100 0 60 H I C CNN +F3 "" -100 0 60 H I C CNN +DRAW +A -350 0 206 760 -760 0 1 0 N -300 200 -300 -200 +A -226 239 445 -996 -324 0 1 0 N -300 -200 150 0 +A -197 -174 388 1054 266 0 1 0 N -300 200 150 0 +C 200 0 50 0 1 0 N +X in1 1 -350 50 200 R 50 50 1 1 I +X Gnd 2 -400 -150 200 R 50 50 1 1 I +X Vdd 3 -400 150 200 R 50 50 1 1 I +X in2 4 -350 -50 200 R 50 50 1 1 I +X out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L98/DS_blk.bak b/library/SubcircuitLibrary/SN54L98/DS_blk.bak new file mode 100644 index 000000000..367ca003a --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/DS_blk.bak @@ -0,0 +1,280 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:DS_blk-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 2_in_and X1 +U 1 1 686E8DA4 +P 4450 2650 +F 0 "X1" H 4500 2650 60 0000 C CNN +F 1 "2_in_and" H 4450 2400 60 0000 C CNN +F 2 "" H 5200 2500 60 0001 C CNN +F 3 "" H 5200 2500 60 0001 C CNN + 1 4450 2650 + 1 0 0 -1 +$EndComp +$Comp +L 2_in_and X2 +U 1 1 686E8DC5 +P 4450 3500 +F 0 "X2" H 4500 3500 60 0000 C CNN +F 1 "2_in_and" H 4450 3250 60 0000 C CNN +F 2 "" H 5200 3350 60 0001 C CNN +F 3 "" H 5200 3350 60 0001 C CNN + 1 4450 3500 + 1 0 0 -1 +$EndComp +$Comp +L NOR_2 X3 +U 1 1 686E8DDE +P 5750 3050 +F 0 "X3" H 5800 3050 60 0000 C CNN +F 1 "NOR_2" H 5750 2800 60 0000 C CNN +F 2 "" H 5650 3050 60 0001 C CNN +F 3 "" H 5650 3050 60 0001 C CNN + 1 5750 3050 + 1 0 0 -1 +$EndComp +$Comp +L D_FF X4 +U 1 1 686E8E0C +P 7050 3100 +F 0 "X4" H 7150 3200 60 0000 C CNN +F 1 "D_FF" H 7050 2900 60 0000 C CNN +F 2 "" H 7050 3100 60 0001 C CNN +F 3 "" H 7050 3100 60 0001 C CNN + 1 7050 3100 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686E8E39 +P 8550 4100 +F 0 "scmode1" H 8550 4250 98 0000 C CNB +F 1 "SKY130mode" H 8550 4000 118 0000 C CNB +F 2 "" H 8550 4250 60 0001 C CNN +F 3 "" H 8550 4250 60 0001 C CNN + 1 8550 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686E8E58 +P 3800 2600 +F 0 "U1" H 3850 2700 30 0000 C CNN +F 1 "PORT" H 3800 2600 30 0000 C CNN +F 2 "" H 3800 2600 60 0000 C CNN +F 3 "" H 3800 2600 60 0000 C CNN + 1 3800 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E8F0F +P 3800 2700 +F 0 "U1" H 3850 2800 30 0000 C CNN +F 1 "PORT" H 3800 2700 30 0000 C CNN +F 2 "" H 3800 2700 60 0000 C CNN +F 3 "" H 3800 2700 60 0000 C CNN + 2 3800 2700 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E8F53 +P 3800 3450 +F 0 "U1" H 3850 3550 30 0000 C CNN +F 1 "PORT" H 3800 3450 30 0000 C CNN +F 2 "" H 3800 3450 60 0000 C CNN +F 3 "" H 3800 3450 60 0000 C CNN + 3 3800 3450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E8F80 +P 3800 3550 +F 0 "U1" H 3850 3650 30 0000 C CNN +F 1 "PORT" H 3800 3550 30 0000 C CNN +F 2 "" H 3800 3550 60 0000 C CNN +F 3 "" H 3800 3550 60 0000 C CNN + 4 3800 3550 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E901D +P 6400 3150 +F 0 "U1" H 6450 3250 30 0000 C CNN +F 1 "PORT" H 6400 3150 30 0000 C CNN +F 2 "" H 6400 3150 60 0000 C CNN +F 3 "" H 6400 3150 60 0000 C CNN + 5 6400 3150 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 686E9099 +P 7700 3150 +F 0 "U1" H 7750 3250 30 0000 C CNN +F 1 "PORT" H 7700 3150 30 0000 C CNN +F 2 "" H 7700 3150 60 0000 C CNN +F 3 "" H 7700 3150 60 0000 C CNN + 8 7700 3150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686E91B5 +P 7300 2400 +F 0 "U1" H 7350 2500 30 0000 C CNN +F 1 "PORT" H 7300 2400 30 0000 C CNN +F 2 "" H 7300 2400 60 0000 C CNN +F 3 "" H 7300 2400 60 0000 C CNN + 6 7300 2400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686E922A +P 7300 3550 +F 0 "U1" H 7350 3650 30 0000 C CNN +F 1 "PORT" H 7300 3550 30 0000 C CNN +F 2 "" H 7300 3550 60 0000 C CNN +F 3 "" H 7300 3550 60 0000 C CNN + 7 7300 3550 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4900 2650 4900 3000 +Wire Wire Line + 4900 3000 5400 3000 +Wire Wire Line + 4900 3500 4900 3100 +Wire Wire Line + 4900 3100 5400 3100 +Wire Wire Line + 4050 2400 4050 2500 +Wire Wire Line + 4050 2400 7050 2400 +Wire Wire Line + 7050 2400 7050 2700 +Connection ~ 7050 2400 +Connection ~ 7050 3550 +Wire Wire Line + 4050 3650 4050 3800 +Wire Wire Line + 4050 3800 7050 3800 +Wire Wire Line + 7050 3800 7050 3450 +Wire Wire Line + 5350 2900 5350 2400 +Connection ~ 5350 2400 +Wire Wire Line + 5350 3200 5350 3800 +Connection ~ 5350 3800 +Wire Wire Line + 4050 3350 4050 3200 +Wire Wire Line + 4050 3200 5150 3200 +Wire Wire Line + 5150 3200 5150 2400 +Connection ~ 5150 2400 +Wire Wire Line + 4050 2800 4050 2950 +Wire Wire Line + 4050 2950 5200 2950 +Wire Wire Line + 5200 2950 5200 3800 +Connection ~ 5200 3800 +$Comp +L CMOS_Buf X5 +U 1 1 686F47C1 +P 6350 2650 +F 0 "X5" H 6350 2650 60 0000 C CNN +F 1 "CMOS_Buf" H 6350 2450 60 0000 C CNN +F 2 "" H 6350 2650 60 0001 C CNN +F 3 "" H 6350 2650 60 0001 C CNN + 1 6350 2650 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6200 3050 6200 2900 +Wire Wire Line + 6200 2900 5800 2900 +Wire Wire Line + 5800 2900 5800 2650 +Wire Wire Line + 5800 2650 5900 2650 +Wire Wire Line + 6800 2650 6850 2650 +Wire Wire Line + 6850 2650 6850 2850 +Wire Wire Line + 6850 2850 6650 2850 +Wire Wire Line + 6650 2850 6650 3050 +Wire Wire Line + 5900 2550 5900 2400 +Connection ~ 5900 2400 +Wire Wire Line + 5900 2750 5900 2800 +Wire Wire Line + 5900 2800 6300 2800 +Wire Wire Line + 6300 2800 6300 3550 +Wire Wire Line + 6300 3550 7050 3550 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/DS_blk.cir b/library/SubcircuitLibrary/SN54L98/DS_blk.cir new file mode 100644 index 000000000..a033859ed --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/DS_blk.cir @@ -0,0 +1,18 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/DS_blk/DS_blk.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Thu Jul 10 11:45:04 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad6_ Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_X1-Pad5_ 2_in_and +X2 Net-_U1-Pad6_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad7_ Net-_X2-Pad5_ 2_in_and +X3 Net-_X1-Pad5_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_X2-Pad5_ Net-_X3-Pad5_ NOR_2 +X4 Net-_X3-Pad5_ Net-_X4-Pad2_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ D_FF +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ PORT +X5 Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_X5-Pad4_ CMOS_Buf +X6 Net-_X5-Pad4_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_X4-Pad2_ CMOS_INVTR + +.end diff --git a/library/SubcircuitLibrary/SN54L98/DS_blk.cir.out b/library/SubcircuitLibrary/SN54L98/DS_blk.cir.out new file mode 100644 index 000000000..9cbba8aaf --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/DS_blk.cir.out @@ -0,0 +1,31 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/ds_blk/ds_blk.cir + +.include D_FF.sub +.include 2_in_and.sub +.include CMOS_INVTR.sub +.include NOR_2.sub +.include CMOS_Buf.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +x1 net-_u1-pad6_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad7_ net-_x1-pad5_ 2_in_and +x2 net-_u1-pad6_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad7_ net-_x2-pad5_ 2_in_and +x3 net-_x1-pad5_ net-_u1-pad7_ net-_u1-pad6_ net-_x2-pad5_ net-_x3-pad5_ NOR_2 +x4 net-_x3-pad5_ net-_x4-pad2_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ D_FF +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ port +x5 net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad5_ net-_x5-pad4_ CMOS_Buf +x6 net-_x5-pad4_ net-_u1-pad6_ net-_u1-pad7_ net-_x4-pad2_ CMOS_INVTR +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L98/DS_blk.pro b/library/SubcircuitLibrary/SN54L98/DS_blk.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/DS_blk.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L98/DS_blk.sch b/library/SubcircuitLibrary/SN54L98/DS_blk.sch new file mode 100644 index 000000000..b08a03928 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/DS_blk.sch @@ -0,0 +1,293 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:DS_blk-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 2_in_and X1 +U 1 1 686E8DA4 +P 4450 2650 +F 0 "X1" H 4500 2650 60 0000 C CNN +F 1 "2_in_and" H 4450 2400 60 0000 C CNN +F 2 "" H 5200 2500 60 0001 C CNN +F 3 "" H 5200 2500 60 0001 C CNN + 1 4450 2650 + 1 0 0 -1 +$EndComp +$Comp +L 2_in_and X2 +U 1 1 686E8DC5 +P 4450 3500 +F 0 "X2" H 4500 3500 60 0000 C CNN +F 1 "2_in_and" H 4450 3250 60 0000 C CNN +F 2 "" H 5200 3350 60 0001 C CNN +F 3 "" H 5200 3350 60 0001 C CNN + 1 4450 3500 + 1 0 0 -1 +$EndComp +$Comp +L NOR_2 X3 +U 1 1 686E8DDE +P 5750 3050 +F 0 "X3" H 5800 3050 60 0000 C CNN +F 1 "NOR_2" H 5750 2800 60 0000 C CNN +F 2 "" H 5650 3050 60 0001 C CNN +F 3 "" H 5650 3050 60 0001 C CNN + 1 5750 3050 + 1 0 0 -1 +$EndComp +$Comp +L D_FF X4 +U 1 1 686E8E0C +P 7050 3100 +F 0 "X4" H 7150 3200 60 0000 C CNN +F 1 "D_FF" H 7050 2900 60 0000 C CNN +F 2 "" H 7050 3100 60 0001 C CNN +F 3 "" H 7050 3100 60 0001 C CNN + 1 7050 3100 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686E8E39 +P 8550 4100 +F 0 "scmode1" H 8550 4250 98 0000 C CNB +F 1 "SKY130mode" H 8550 4000 118 0000 C CNB +F 2 "" H 8550 4250 60 0001 C CNN +F 3 "" H 8550 4250 60 0001 C CNN + 1 8550 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686E8E58 +P 3800 2600 +F 0 "U1" H 3850 2700 30 0000 C CNN +F 1 "PORT" H 3800 2600 30 0000 C CNN +F 2 "" H 3800 2600 60 0000 C CNN +F 3 "" H 3800 2600 60 0000 C CNN + 1 3800 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E8F0F +P 3800 2700 +F 0 "U1" H 3850 2800 30 0000 C CNN +F 1 "PORT" H 3800 2700 30 0000 C CNN +F 2 "" H 3800 2700 60 0000 C CNN +F 3 "" H 3800 2700 60 0000 C CNN + 2 3800 2700 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E8F53 +P 3800 3450 +F 0 "U1" H 3850 3550 30 0000 C CNN +F 1 "PORT" H 3800 3450 30 0000 C CNN +F 2 "" H 3800 3450 60 0000 C CNN +F 3 "" H 3800 3450 60 0000 C CNN + 3 3800 3450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E8F80 +P 3800 3550 +F 0 "U1" H 3850 3650 30 0000 C CNN +F 1 "PORT" H 3800 3550 30 0000 C CNN +F 2 "" H 3800 3550 60 0000 C CNN +F 3 "" H 3800 3550 60 0000 C CNN + 4 3800 3550 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E901D +P 5200 4200 +F 0 "U1" H 5250 4300 30 0000 C CNN +F 1 "PORT" H 5200 4200 30 0000 C CNN +F 2 "" H 5200 4200 60 0000 C CNN +F 3 "" H 5200 4200 60 0000 C CNN + 5 5200 4200 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 686E9099 +P 7700 3150 +F 0 "U1" H 7750 3250 30 0000 C CNN +F 1 "PORT" H 7700 3150 30 0000 C CNN +F 2 "" H 7700 3150 60 0000 C CNN +F 3 "" H 7700 3150 60 0000 C CNN + 8 7700 3150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686E91B5 +P 7300 2400 +F 0 "U1" H 7350 2500 30 0000 C CNN +F 1 "PORT" H 7300 2400 30 0000 C CNN +F 2 "" H 7300 2400 60 0000 C CNN +F 3 "" H 7300 2400 60 0000 C CNN + 6 7300 2400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686E922A +P 7300 3550 +F 0 "U1" H 7350 3650 30 0000 C CNN +F 1 "PORT" H 7300 3550 30 0000 C CNN +F 2 "" H 7300 3550 60 0000 C CNN +F 3 "" H 7300 3550 60 0000 C CNN + 7 7300 3550 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4900 2650 4900 3000 +Wire Wire Line + 4900 3000 5400 3000 +Wire Wire Line + 4900 3500 4900 3100 +Wire Wire Line + 4900 3100 5400 3100 +Wire Wire Line + 4050 2400 4050 2500 +Wire Wire Line + 4050 2400 7050 2400 +Wire Wire Line + 7050 2400 7050 2700 +Connection ~ 7050 2400 +Connection ~ 7050 3550 +Wire Wire Line + 4050 3650 4050 3800 +Wire Wire Line + 4050 3800 7050 3800 +Wire Wire Line + 7050 3800 7050 3450 +Wire Wire Line + 5350 2900 5350 2400 +Connection ~ 5350 2400 +Wire Wire Line + 5350 3200 5350 3800 +Connection ~ 5350 3800 +Wire Wire Line + 4050 3350 4050 3200 +Wire Wire Line + 4050 3200 5150 3200 +Wire Wire Line + 5150 3200 5150 2400 +Connection ~ 5150 2400 +Wire Wire Line + 4050 2800 4050 2950 +Wire Wire Line + 4050 2950 5200 2950 +Wire Wire Line + 5200 2950 5200 3800 +Connection ~ 5200 3800 +Wire Wire Line + 6200 3050 6650 3050 +$Comp +L CMOS_Buf X5 +U 1 1 686F5D94 +P 5900 4200 +F 0 "X5" H 5900 4200 60 0000 C CNN +F 1 "CMOS_Buf" H 5900 4000 60 0000 C CNN +F 2 "" H 5900 4200 60 0001 C CNN +F 3 "" H 5900 4200 60 0001 C CNN + 1 5900 4200 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X6 +U 1 1 686F5DD5 +P 6750 4200 +F 0 "X6" H 6750 4200 60 0000 C CNN +F 1 "CMOS_INVTR" H 6800 4000 60 0000 C CNN +F 2 "" H 6750 4200 60 0001 C CNN +F 3 "" H 6750 4200 60 0001 C CNN + 1 6750 4200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7300 4200 7300 3850 +Wire Wire Line + 7300 3850 6650 3850 +Wire Wire Line + 6650 3850 6650 3150 +Wire Wire Line + 5450 4100 5450 4000 +Wire Wire Line + 5450 4000 6350 4000 +Wire Wire Line + 6350 2400 6350 4100 +Connection ~ 6350 2400 +Connection ~ 6350 4000 +Wire Wire Line + 6350 4300 6350 4400 +Wire Wire Line + 5450 4400 7550 4400 +Wire Wire Line + 7550 4400 7550 3750 +Wire Wire Line + 7550 3750 7050 3750 +Wire Wire Line + 7050 3750 7050 3550 +Wire Wire Line + 5450 4300 5450 4400 +Connection ~ 6350 4400 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/DS_blk.sub b/library/SubcircuitLibrary/SN54L98/DS_blk.sub new file mode 100644 index 000000000..6fe4576b5 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/DS_blk.sub @@ -0,0 +1,25 @@ +* Subcircuit DS_blk +.subckt DS_blk net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/ds_blk/ds_blk.cir +.include D_FF.sub +.include 2_in_and.sub +.include CMOS_INVTR.sub +.include NOR_2.sub +.include CMOS_Buf.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +x1 net-_u1-pad6_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad7_ net-_x1-pad5_ 2_in_and +x2 net-_u1-pad6_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad7_ net-_x2-pad5_ 2_in_and +x3 net-_x1-pad5_ net-_u1-pad7_ net-_u1-pad6_ net-_x2-pad5_ net-_x3-pad5_ NOR_2 +x4 net-_x3-pad5_ net-_x4-pad2_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ D_FF +* s c m o d e +x5 net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad5_ net-_x5-pad4_ CMOS_Buf +x6 net-_x5-pad4_ net-_u1-pad6_ net-_u1-pad7_ net-_x4-pad2_ CMOS_INVTR +* Control Statements + +.ends DS_blk \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/DS_blk_Previous_Values.xml b/library/SubcircuitLibrary/SN54L98/DS_blk_Previous_Values.xml new file mode 100644 index 000000000..d06329f5a --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/DS_blk_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/2_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/2_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_FF/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_Buf/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/D_FF-cache.lib b/library/SubcircuitLibrary/SN54L98/D_FF-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/D_FF-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L98/D_FF.bak b/library/SubcircuitLibrary/SN54L98/D_FF.bak new file mode 100644 index 000000000..61b02ff48 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/D_FF.bak @@ -0,0 +1,246 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode? +U 1 1 685A3E76 +P 9400 3200 +F 0 "scmode?" H 9400 3350 98 0000 C CNB +F 1 "SKY130mode" H 9400 3100 118 0000 C CNB +F 2 "" H 9400 3350 60 0001 C CNN +F 3 "" H 9400 3350 60 0001 C CNN + 1 9400 3200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC? +U 1 1 685A3EBD +P 4000 3300 +F 0 "SC?" H 4050 3600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4300 3387 50 0000 R CNN +F 2 "" H 4000 1800 50 0001 C CNN +F 3 "" H 4000 3300 50 0001 C CNN + 1 4000 3300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3EFC +P 4000 4100 +F 0 "SC?" H 4050 4400 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4187 50 0000 R CNN +F 2 "" H 4000 2600 50 0001 C CNN +F 3 "" H 4000 4100 50 0001 C CNN + 1 4000 4100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3F47 +P 4000 4900 +F 0 "SC?" H 4050 5200 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4987 50 0000 R CNN +F 2 "" H 4000 3400 50 0001 C CNN +F 3 "" H 4000 4900 50 0001 C CNN + 1 4000 4900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC? +U 1 1 685A3F7A +P 4950 3700 +F 0 "SC?" H 5000 4000 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5250 3787 50 0000 R CNN +F 2 "" H 4950 2200 50 0001 C CNN +F 3 "" H 4950 3700 50 0001 C CNN + 1 4950 3700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3FCF +P 4950 4500 +F 0 "SC?" H 5000 4800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5250 4587 50 0000 R CNN +F 2 "" H 4950 3000 50 0001 C CNN +F 3 "" H 4950 4500 50 0001 C CNN + 1 4950 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 1 1 685A401A +P 3250 3550 +F 0 "U?" H 3300 3650 30 0000 C CNN +F 1 "PORT" H 3250 3550 30 0000 C CNN +F 2 "" H 3250 3550 60 0000 C CNN +F 3 "" H 3250 3550 60 0000 C CNN + 1 3250 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 2 1 685A40FF +P 3250 4100 +F 0 "U?" H 3300 4200 30 0000 C CNN +F 1 "PORT" H 3250 4100 30 0000 C CNN +F 2 "" H 3250 4100 60 0000 C CNN +F 3 "" H 3250 4100 60 0000 C CNN + 2 3250 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 3 1 685A4132 +P 3950 2750 +F 0 "U?" H 4000 2850 30 0000 C CNN +F 1 "PORT" H 3950 2750 30 0000 C CNN +F 2 "" H 3950 2750 60 0000 C CNN +F 3 "" H 3950 2750 60 0000 C CNN + 3 3950 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 4 1 685A41B1 +P 3950 5350 +F 0 "U?" H 4000 5450 30 0000 C CNN +F 1 "PORT" H 3950 5350 30 0000 C CNN +F 2 "" H 3950 5350 60 0000 C CNN +F 3 "" H 3950 5350 60 0000 C CNN + 4 3950 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 5 1 685A4206 +P 5700 4100 +F 0 "U?" H 5750 4200 30 0000 C CNN +F 1 "PORT" H 5700 4100 30 0000 C CNN +F 2 "" H 5700 4100 60 0000 C CNN +F 3 "" H 5700 4100 60 0000 C CNN + 5 5700 4100 + -1 0 0 1 +$EndComp +Wire Wire Line + 4200 3600 4200 3800 +Wire Wire Line + 3700 3300 3600 3300 +Wire Wire Line + 3600 3300 3600 4900 +Wire Wire Line + 3600 4900 3700 4900 +Wire Wire Line + 3500 3550 3600 3550 +Connection ~ 3600 3550 +Wire Wire Line + 3500 4100 3700 4100 +Wire Wire Line + 4200 2750 4200 3000 +Wire Wire Line + 4650 3700 4200 3700 +Connection ~ 4200 3700 +Wire Wire Line + 4200 4400 4200 4600 +Wire Wire Line + 4650 4500 4200 4500 +Connection ~ 4200 4500 +Wire Wire Line + 5150 4000 5150 4200 +Wire Wire Line + 5450 4100 5150 4100 +Connection ~ 5150 4100 +Wire Wire Line + 4200 5200 4200 5350 +Wire Wire Line + 4100 4900 4250 4900 +Wire Wire Line + 4250 4900 4250 5250 +Wire Wire Line + 4200 5250 5150 5250 +Connection ~ 4200 5250 +Wire Wire Line + 5150 5250 5150 4800 +Connection ~ 4250 5250 +Wire Wire Line + 5050 4500 5200 4500 +Wire Wire Line + 5200 4500 5200 4850 +Wire Wire Line + 5200 4850 5150 4850 +Connection ~ 5150 4850 +Wire Wire Line + 4100 4100 4250 4100 +Wire Wire Line + 4250 4100 4250 4500 +Connection ~ 4250 4500 +Wire Wire Line + 4100 3300 4250 3300 +Wire Wire Line + 4250 3300 4250 2950 +Wire Wire Line + 4200 2950 5150 2950 +Connection ~ 4200 2950 +Wire Wire Line + 5150 2950 5150 3400 +Connection ~ 4250 2950 +Wire Wire Line + 5050 3700 5200 3700 +Wire Wire Line + 5200 3700 5200 3350 +Wire Wire Line + 5200 3350 5150 3350 +Connection ~ 5150 3350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/D_FF.cir b/library/SubcircuitLibrary/SN54L98/D_FF.cir new file mode 100644 index 000000000..7d45c3cd5 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/D_FF.cir @@ -0,0 +1,17 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_FF/D_FF.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sun Jul 6 10:25:49 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +scmode1 SKY130mode +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +SC3 Net-_SC2-Pad3_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC4-Pad1_ Net-_SC1-Pad1_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC5 Net-_SC4-Pad1_ Net-_SC2-Pad3_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC3-Pad3_ Net-_SC4-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN54L98/D_FF.cir.out b/library/SubcircuitLibrary/SN54L98/D_FF.cir.out new file mode 100644 index 000000000..9d076c7f0 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/D_FF.cir.out @@ -0,0 +1,25 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/d_ff/d_ff.cir + +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +* s c m o d e +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc3 net-_sc2-pad3_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc4-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc4-pad1_ net-_sc2-pad3_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad3_ net-_sc4-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L98/D_FF.pro b/library/SubcircuitLibrary/SN54L98/D_FF.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/D_FF.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L98/D_FF.sch b/library/SubcircuitLibrary/SN54L98/D_FF.sch new file mode 100644 index 000000000..722069493 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/D_FF.sch @@ -0,0 +1,246 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 685A3E76 +P 9400 3200 +F 0 "scmode1" H 9400 3350 98 0000 C CNB +F 1 "SKY130mode" H 9400 3100 118 0000 C CNB +F 2 "" H 9400 3350 60 0001 C CNN +F 3 "" H 9400 3350 60 0001 C CNN + 1 9400 3200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 685A3EBD +P 4000 3300 +F 0 "SC1" H 4050 3600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4300 3387 50 0000 R CNN +F 2 "" H 4000 1800 50 0001 C CNN +F 3 "" H 4000 3300 50 0001 C CNN + 1 4000 3300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 685A3EFC +P 4000 4100 +F 0 "SC2" H 4050 4400 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4187 50 0000 R CNN +F 2 "" H 4000 2600 50 0001 C CNN +F 3 "" H 4000 4100 50 0001 C CNN + 1 4000 4100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 685A3F47 +P 4000 4900 +F 0 "SC3" H 4050 5200 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4987 50 0000 R CNN +F 2 "" H 4000 3400 50 0001 C CNN +F 3 "" H 4000 4900 50 0001 C CNN + 1 4000 4900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 685A3F7A +P 4950 3700 +F 0 "SC4" H 5000 4000 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5250 3787 50 0000 R CNN +F 2 "" H 4950 2200 50 0001 C CNN +F 3 "" H 4950 3700 50 0001 C CNN + 1 4950 3700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 685A3FCF +P 4950 4500 +F 0 "SC5" H 5000 4800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5250 4587 50 0000 R CNN +F 2 "" H 4950 3000 50 0001 C CNN +F 3 "" H 4950 4500 50 0001 C CNN + 1 4950 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685A401A +P 3250 3550 +F 0 "U1" H 3300 3650 30 0000 C CNN +F 1 "PORT" H 3250 3550 30 0000 C CNN +F 2 "" H 3250 3550 60 0000 C CNN +F 3 "" H 3250 3550 60 0000 C CNN + 1 3250 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685A40FF +P 3250 4100 +F 0 "U1" H 3300 4200 30 0000 C CNN +F 1 "PORT" H 3250 4100 30 0000 C CNN +F 2 "" H 3250 4100 60 0000 C CNN +F 3 "" H 3250 4100 60 0000 C CNN + 2 3250 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685A4132 +P 3950 2750 +F 0 "U1" H 4000 2850 30 0000 C CNN +F 1 "PORT" H 3950 2750 30 0000 C CNN +F 2 "" H 3950 2750 60 0000 C CNN +F 3 "" H 3950 2750 60 0000 C CNN + 3 3950 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685A41B1 +P 3950 5350 +F 0 "U1" H 4000 5450 30 0000 C CNN +F 1 "PORT" H 3950 5350 30 0000 C CNN +F 2 "" H 3950 5350 60 0000 C CNN +F 3 "" H 3950 5350 60 0000 C CNN + 4 3950 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685A4206 +P 5700 4100 +F 0 "U1" H 5750 4200 30 0000 C CNN +F 1 "PORT" H 5700 4100 30 0000 C CNN +F 2 "" H 5700 4100 60 0000 C CNN +F 3 "" H 5700 4100 60 0000 C CNN + 5 5700 4100 + -1 0 0 1 +$EndComp +Wire Wire Line + 4200 3600 4200 3800 +Wire Wire Line + 3700 3300 3600 3300 +Wire Wire Line + 3600 3300 3600 4900 +Wire Wire Line + 3600 4900 3700 4900 +Wire Wire Line + 3500 3550 3600 3550 +Connection ~ 3600 3550 +Wire Wire Line + 3500 4100 3700 4100 +Wire Wire Line + 4200 2750 4200 3000 +Wire Wire Line + 4650 3700 4200 3700 +Connection ~ 4200 3700 +Wire Wire Line + 4200 4400 4200 4600 +Wire Wire Line + 4650 4500 4200 4500 +Connection ~ 4200 4500 +Wire Wire Line + 5150 4000 5150 4200 +Wire Wire Line + 5450 4100 5150 4100 +Connection ~ 5150 4100 +Wire Wire Line + 4200 5200 4200 5350 +Wire Wire Line + 4100 4900 4250 4900 +Wire Wire Line + 4250 4900 4250 5250 +Wire Wire Line + 4200 5250 5150 5250 +Connection ~ 4200 5250 +Wire Wire Line + 5150 5250 5150 4800 +Connection ~ 4250 5250 +Wire Wire Line + 5050 4500 5200 4500 +Wire Wire Line + 5200 4500 5200 4850 +Wire Wire Line + 5200 4850 5150 4850 +Connection ~ 5150 4850 +Wire Wire Line + 4100 4100 4250 4100 +Wire Wire Line + 4250 4100 4250 4500 +Connection ~ 4250 4500 +Wire Wire Line + 4100 3300 4250 3300 +Wire Wire Line + 4250 3300 4250 2950 +Wire Wire Line + 4200 2950 5150 2950 +Connection ~ 4200 2950 +Wire Wire Line + 5150 2950 5150 3400 +Connection ~ 4250 2950 +Wire Wire Line + 5050 3700 5200 3700 +Wire Wire Line + 5200 3700 5200 3350 +Wire Wire Line + 5200 3350 5150 3350 +Connection ~ 5150 3350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/D_FF.sub b/library/SubcircuitLibrary/SN54L98/D_FF.sub new file mode 100644 index 000000000..d686ca626 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/D_FF.sub @@ -0,0 +1,19 @@ +* Subcircuit D_FF +.subckt D_FF net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad3_ net-_sc4-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/d_ff/d_ff.cir +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +* s c m o d e +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc3 net-_sc2-pad3_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc4-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc4-pad1_ net-_sc2-pad3_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* Control Statements + +.ends D_FF \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/D_FF_Previous_Values.xml b/library/SubcircuitLibrary/SN54L98/D_FF_Previous_Values.xml new file mode 100644 index 000000000..87f2534ab --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/D_FF_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/NAND_2-cache.lib b/library/SubcircuitLibrary/SN54L98/NAND_2-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NAND_2-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L98/NAND_2.bak b/library/SubcircuitLibrary/SN54L98/NAND_2.bak new file mode 100644 index 000000000..ad9819396 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NAND_2.bak @@ -0,0 +1,221 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684AF0E9 +P 4750 2050 +F 0 "SC2" H 4800 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5050 2137 50 0000 R CNN +F 2 "" H 4750 550 50 0001 C CNN +F 3 "" H 4750 2050 50 0001 C CNN + 1 4750 2050 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684AF14C +P 5150 2750 +F 0 "SC3" H 5200 3050 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 2837 50 0000 R CNN +F 2 "" H 5150 1250 50 0001 C CNN +F 3 "" H 5150 2750 50 0001 C CNN + 1 5150 2750 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF1CF +P 4200 3600 +F 0 "SC1" H 4250 3900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4500 3687 50 0000 R CNN +F 2 "" H 4200 2100 50 0001 C CNN +F 3 "" H 4200 3600 50 0001 C CNN + 1 4200 3600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684AF20C +P 5550 3600 +F 0 "SC4" H 5600 3900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5850 3687 50 0000 R CNN +F 2 "" H 5550 2100 50 0001 C CNN +F 3 "" H 5550 3600 50 0001 C CNN + 1 5550 3600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF271 +P 4650 1550 +F 0 "U1" H 4700 1650 30 0000 C CNN +F 1 "PORT" H 4650 1550 30 0000 C CNN +F 2 "" H 4650 1550 60 0000 C CNN +F 3 "" H 4650 1550 60 0000 C CNN + 3 4650 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF336 +P 3550 2650 +F 0 "U1" H 3600 2750 30 0000 C CNN +F 1 "PORT" H 3550 2650 30 0000 C CNN +F 2 "" H 3550 2650 60 0000 C CNN +F 3 "" H 3550 2650 60 0000 C CNN + 1 3550 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AF413 +P 6200 2750 +F 0 "U1" H 6250 2850 30 0000 C CNN +F 1 "PORT" H 6200 2750 30 0000 C CNN +F 2 "" H 6200 2750 60 0000 C CNN +F 3 "" H 6200 2750 60 0000 C CNN + 4 6200 2750 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF82C +P 6200 3150 +F 0 "U1" H 6250 3250 30 0000 C CNN +F 1 "PORT" H 6200 3150 30 0000 C CNN +F 2 "" H 6200 3150 60 0000 C CNN +F 3 "" H 6200 3150 60 0000 C CNN + 5 6200 3150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF895 +P 4550 4050 +F 0 "U1" H 4600 4150 30 0000 C CNN +F 1 "PORT" H 4550 4050 30 0000 C CNN +F 2 "" H 4550 4050 60 0000 C CNN +F 3 "" H 4550 4050 60 0000 C CNN + 2 4550 4050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4400 3900 5350 3900 +Wire Wire Line + 4800 4050 4800 3900 +Connection ~ 4800 3900 +Wire Wire Line + 4300 3600 4450 3600 +Wire Wire Line + 4450 3600 4450 3900 +Connection ~ 4450 3900 +Wire Wire Line + 5450 3600 5300 3600 +Wire Wire Line + 5300 3600 5300 3900 +Connection ~ 5300 3900 +Wire Wire Line + 4400 3300 5350 3300 +Wire Wire Line + 4950 3050 4950 3300 +Connection ~ 4950 3300 +Wire Wire Line + 5950 3150 4950 3150 +Connection ~ 4950 3150 +Wire Wire Line + 5450 2750 5950 2750 +Wire Wire Line + 5850 2750 5850 3600 +Wire Wire Line + 5050 2750 4900 2750 +Wire Wire Line + 4900 2750 4900 2400 +Wire Wire Line + 4900 2400 4950 2400 +Wire Wire Line + 4950 2350 4950 2450 +Connection ~ 4950 2400 +Wire Wire Line + 4450 2050 3900 2050 +Wire Wire Line + 3900 2050 3900 3600 +Wire Wire Line + 3800 2650 3900 2650 +Connection ~ 3900 2650 +Connection ~ 5850 2750 +Wire Wire Line + 4850 2050 5000 2050 +Wire Wire Line + 5000 2050 5000 1650 +Wire Wire Line + 5000 1650 4950 1650 +Wire Wire Line + 4950 1550 4950 1750 +Wire Wire Line + 4900 1550 4950 1550 +Connection ~ 4950 1650 +$Comp +L SKY130mode scmode1 +U 1 1 684AFD6B +P 7350 2150 +F 0 "scmode1" H 7350 2300 98 0000 C CNB +F 1 "SKY130mode" H 7350 2050 118 0000 C CNB +F 2 "" H 7350 2300 60 0001 C CNN +F 3 "" H 7350 2300 60 0001 C CNN + 1 7350 2150 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/NAND_2.cir b/library/SubcircuitLibrary/SN54L98/NAND_2.cir new file mode 100644 index 000000000..f3da72301 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NAND_2.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/NAND_2.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sun Jul 6 17:51:58 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC1-Pad3_ Net-_SC3-Pad2_ Net-_SC4-Pad3_ Net-_SC4-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC4-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ Net-_SC3-Pad2_ PORT +scmode1 SKY130mode +SC3 Net-_SC1-Pad1_ Net-_SC3-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 + +.end diff --git a/library/SubcircuitLibrary/SN54L98/NAND_2.cir.out b/library/SubcircuitLibrary/SN54L98/NAND_2.cir.out new file mode 100644 index 000000000..15401b956 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NAND_2.cir.out @@ -0,0 +1,18 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_2/nand_2.cir + + +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad3_ net-_sc3-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc4-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ net-_sc3-pad2_ port +* s c m o d e +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L98/NAND_2.pro b/library/SubcircuitLibrary/SN54L98/NAND_2.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NAND_2.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L98/NAND_2.sch b/library/SubcircuitLibrary/SN54L98/NAND_2.sch new file mode 100644 index 000000000..ebef1d4c6 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NAND_2.sch @@ -0,0 +1,222 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:NAND_2-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684AF0E9 +P 4200 2050 +F 0 "SC2" H 4250 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4500 2137 50 0000 R CNN +F 2 "" H 4200 550 50 0001 C CNN +F 3 "" H 4200 2050 50 0001 C CNN + 1 4200 2050 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF1CF +P 4450 2850 +F 0 "SC1" H 4500 3150 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4750 2937 50 0000 R CNN +F 2 "" H 4450 1350 50 0001 C CNN +F 3 "" H 4450 2850 50 0001 C CNN + 1 4450 2850 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684AF20C +P 4850 3550 +F 0 "SC4" H 4900 3850 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5150 3637 50 0000 R CNN +F 2 "" H 4850 2050 50 0001 C CNN +F 3 "" H 4850 3550 50 0001 C CNN + 1 4850 3550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF271 +P 4350 1550 +F 0 "U1" H 4400 1650 30 0000 C CNN +F 1 "PORT" H 4350 1550 30 0000 C CNN +F 2 "" H 4350 1550 60 0000 C CNN +F 3 "" H 4350 1550 60 0000 C CNN + 3 4350 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF336 +P 3550 2650 +F 0 "U1" H 3600 2750 30 0000 C CNN +F 1 "PORT" H 3550 2650 30 0000 C CNN +F 2 "" H 3550 2650 60 0000 C CNN +F 3 "" H 3550 2650 60 0000 C CNN + 1 3550 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AF413 +P 5750 2450 +F 0 "U1" H 5800 2550 30 0000 C CNN +F 1 "PORT" H 5750 2450 30 0000 C CNN +F 2 "" H 5750 2450 60 0000 C CNN +F 3 "" H 5750 2450 60 0000 C CNN + 4 5750 2450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF82C +P 5750 3300 +F 0 "U1" H 5800 3400 30 0000 C CNN +F 1 "PORT" H 5750 3300 30 0000 C CNN +F 2 "" H 5750 3300 60 0000 C CNN +F 3 "" H 5750 3300 60 0000 C CNN + 5 5750 3300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF895 +P 4400 4000 +F 0 "U1" H 4450 4100 30 0000 C CNN +F 1 "PORT" H 4400 4000 30 0000 C CNN +F 2 "" H 4400 4000 60 0000 C CNN +F 3 "" H 4400 4000 60 0000 C CNN + 2 4400 4000 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684AFD6B +P 7350 2150 +F 0 "scmode1" H 7350 2300 98 0000 C CNB +F 1 "SKY130mode" H 7350 2050 118 0000 C CNB +F 2 "" H 7350 2300 60 0001 C CNN +F 3 "" H 7350 2300 60 0001 C CNN + 1 7350 2150 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684CF41D +P 5000 2050 +F 0 "SC3" H 5050 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5300 2137 50 0000 R CNN +F 2 "" H 5000 550 50 0001 C CNN +F 3 "" H 5000 2050 50 0001 C CNN + 1 5000 2050 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4400 1750 4800 1750 +Wire Wire Line + 4600 1550 4600 1750 +Connection ~ 4600 1750 +Wire Wire Line + 4300 2050 4450 2050 +Wire Wire Line + 4450 2050 4450 1750 +Connection ~ 4450 1750 +Wire Wire Line + 4900 2050 4750 2050 +Wire Wire Line + 4750 2050 4750 1750 +Connection ~ 4750 1750 +Wire Wire Line + 4400 2350 4800 2350 +Wire Wire Line + 4650 2550 4650 2350 +Connection ~ 4650 2350 +Wire Wire Line + 5500 2450 4650 2450 +Connection ~ 4650 2450 +Wire Wire Line + 3900 2050 3900 2850 +Wire Wire Line + 3900 2850 4150 2850 +Wire Wire Line + 3800 2650 3900 2650 +Connection ~ 3900 2650 +Wire Wire Line + 5300 2050 5300 3550 +Wire Wire Line + 5300 3550 5150 3550 +Wire Wire Line + 5500 3300 5300 3300 +Connection ~ 5300 3300 +Wire Wire Line + 4550 2850 4700 2850 +Wire Wire Line + 4700 2850 4700 3200 +Wire Wire Line + 4700 3200 4650 3200 +Wire Wire Line + 4650 3150 4650 3250 +Connection ~ 4650 3200 +Wire Wire Line + 4650 3850 4650 4000 +Wire Wire Line + 4750 3550 4600 3550 +Wire Wire Line + 4600 3550 4600 3900 +Wire Wire Line + 4600 3900 4650 3900 +Connection ~ 4650 3900 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/NAND_2.sub b/library/SubcircuitLibrary/SN54L98/NAND_2.sub new file mode 100644 index 000000000..aa6beac0d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NAND_2.sub @@ -0,0 +1,12 @@ +* Subcircuit NAND_2 +.subckt NAND_2 net-_sc1-pad2_ net-_sc4-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ net-_sc3-pad2_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_2/nand_2.cir + +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad3_ net-_sc3-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +* Control Statements + +.ends NAND_2 diff --git a/library/SubcircuitLibrary/SN54L98/NAND_2_Previous_Values.xml b/library/SubcircuitLibrary/SN54L98/NAND_2_Previous_Values.xml new file mode 100644 index 000000000..066d43a60 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NAND_2_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/NOR_2-cache.lib b/library/SubcircuitLibrary/SN54L98/NOR_2-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NOR_2-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L98/NOR_2.cir b/library/SubcircuitLibrary/SN54L98/NOR_2.cir new file mode 100644 index 000000000..976cd2f8e --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NOR_2.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_2/NOR_2.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Mon Jul 7 11:47:22 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC2 Net-_SC2-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 +SC3 Net-_SC1-Pad1_ Net-_SC3-Pad2_ Net-_SC2-Pad1_ Net-_SC2-Pad1_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC1-Pad1_ Net-_SC3-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC3-Pad2_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN54L98/NOR_2.cir.out b/library/SubcircuitLibrary/SN54L98/NOR_2.cir.out new file mode 100644 index 000000000..5cf58fd73 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NOR_2.cir.out @@ -0,0 +1,24 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nor_2/nor_2.cir + +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +xsc2 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad1_ net-_sc2-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc3-pad2_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L98/NOR_2.pro b/library/SubcircuitLibrary/SN54L98/NOR_2.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NOR_2.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L98/NOR_2.sch b/library/SubcircuitLibrary/SN54L98/NOR_2.sch new file mode 100644 index 000000000..86f7c4bc6 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NOR_2.sch @@ -0,0 +1,219 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684CE7B8 +P 4750 2600 +F 0 "SC2" H 4800 2900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5050 2687 50 0000 R CNN +F 2 "" H 4750 1100 50 0001 C CNN +F 3 "" H 4750 2600 50 0001 C CNN + 1 4750 2600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684CE82E +P 5150 3400 +F 0 "SC3" H 5200 3700 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 3487 50 0000 R CNN +F 2 "" H 5150 1900 50 0001 C CNN +F 3 "" H 5150 3400 50 0001 C CNN + 1 5150 3400 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684CE88F +P 4050 4450 +F 0 "SC1" H 4100 4750 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4350 4537 50 0000 R CNN +F 2 "" H 4050 2950 50 0001 C CNN +F 3 "" H 4050 4450 50 0001 C CNN + 1 4050 4450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684CE8CA +P 5650 4450 +F 0 "SC4" H 5700 4750 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5950 4537 50 0000 R CNN +F 2 "" H 5650 2950 50 0001 C CNN +F 3 "" H 5650 4450 50 0001 C CNN + 1 5650 4450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684CE919 +P 3100 3450 +F 0 "U1" H 3150 3550 30 0000 C CNN +F 1 "PORT" H 3100 3450 30 0000 C CNN +F 2 "" H 3100 3450 60 0000 C CNN +F 3 "" H 3100 3450 60 0000 C CNN + 1 3100 3450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684CE990 +P 6350 3400 +F 0 "U1" H 6400 3500 30 0000 C CNN +F 1 "PORT" H 6350 3400 30 0000 C CNN +F 2 "" H 6350 3400 60 0000 C CNN +F 3 "" H 6350 3400 60 0000 C CNN + 4 6350 3400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684CEA11 +P 6450 3900 +F 0 "U1" H 6500 4000 30 0000 C CNN +F 1 "PORT" H 6450 3900 30 0000 C CNN +F 2 "" H 6450 3900 60 0000 C CNN +F 3 "" H 6450 3900 60 0000 C CNN + 5 6450 3900 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684CEA84 +P 4700 2150 +F 0 "U1" H 4750 2250 30 0000 C CNN +F 1 "PORT" H 4700 2150 30 0000 C CNN +F 2 "" H 4700 2150 60 0000 C CNN +F 3 "" H 4700 2150 60 0000 C CNN + 3 4700 2150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684CEB11 +P 4650 5100 +F 0 "U1" H 4700 5200 30 0000 C CNN +F 1 "PORT" H 4650 5100 30 0000 C CNN +F 2 "" H 4650 5100 60 0000 C CNN +F 3 "" H 4650 5100 60 0000 C CNN + 2 4650 5100 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684CEB6E +P 8300 2900 +F 0 "scmode1" H 8300 3050 98 0000 C CNB +F 1 "SKY130mode" H 8300 2800 118 0000 C CNB +F 2 "" H 8300 3050 60 0001 C CNN +F 3 "" H 8300 3050 60 0001 C CNN + 1 8300 2900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4250 4150 5450 4150 +Wire Wire Line + 4950 3700 4950 4150 +Connection ~ 4950 4150 +Wire Wire Line + 6200 3900 4950 3900 +Connection ~ 4950 3900 +Wire Wire Line + 4250 4750 5450 4750 +Wire Wire Line + 5550 4450 5400 4450 +Wire Wire Line + 5400 4450 5400 4750 +Connection ~ 5400 4750 +Wire Wire Line + 4150 4450 4300 4450 +Wire Wire Line + 4300 4450 4300 4750 +Connection ~ 4300 4750 +Wire Wire Line + 4900 5100 4900 4750 +Connection ~ 4900 4750 +Wire Wire Line + 5450 3400 6100 3400 +Wire Wire Line + 5950 3400 5950 4450 +Connection ~ 5950 3400 +Wire Wire Line + 4450 2600 3750 2600 +Wire Wire Line + 3750 2600 3750 4450 +Wire Wire Line + 3350 3450 3750 3450 +Connection ~ 3750 3450 +Wire Wire Line + 4950 2150 4950 2300 +Wire Wire Line + 4850 2600 5000 2600 +Wire Wire Line + 5000 2600 5000 2250 +Wire Wire Line + 5000 2250 4950 2250 +Connection ~ 4950 2250 +Wire Wire Line + 4950 2900 4950 3100 +Wire Wire Line + 5050 3400 4900 3400 +Wire Wire Line + 4900 3400 4900 3050 +Wire Wire Line + 4900 3050 4950 3050 +Connection ~ 4950 3050 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/NOR_2.sub b/library/SubcircuitLibrary/SN54L98/NOR_2.sub new file mode 100644 index 000000000..f5a7ff023 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NOR_2.sub @@ -0,0 +1,18 @@ +* Subcircuit NOR_2 +.subckt NOR_2 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc3-pad2_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nor_2/nor_2.cir +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +xsc2 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad1_ net-_sc2-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends NOR_2 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/NOR_2_Previous_Values.xml b/library/SubcircuitLibrary/SN54L98/NOR_2_Previous_Values.xml new file mode 100644 index 000000000..62dc0d0a2 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/NOR_2_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L98/SN54L98.bak b/library/SubcircuitLibrary/SN54L98/SN54L98.bak new file mode 100644 index 000000000..2b0d7c78d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L98/SN54L98.bak @@ -0,0 +1,385 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN54L98-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L DS_blk X2 +U 1 1 686F5D03 +P 5150 2200 +F 0 "X2" H 5150 2200 60 0000 C CNN +F 1 "DS_blk" H 5150 1950 60 0000 C CNN +F 2 "" H 5150 2200 60 0001 C CNN +F 3 "" H 5150 2200 60 0001 C CNN + 1 5150 2200 + 1 0 0 -1 +$EndComp +$Comp +L DS_blk X3 +U 1 1 686F5D60 +P 5150 3150 +F 0 "X3" H 5150 3150 60 0000 C CNN +F 1 "DS_blk" H 5150 2900 60 0000 C CNN +F 2 "" H 5150 3150 60 0001 C CNN +F 3 "" H 5150 3150 60 0001 C CNN + 1 5150 3150 + 1 0 0 -1 +$EndComp +$Comp +L DS_blk X4 +U 1 1 686F5E27 +P 5150 4100 +F 0 "X4" H 5150 4100 60 0000 C CNN +F 1 "DS_blk" H 5150 3850 60 0000 C CNN +F 2 "" H 5150 4100 60 0001 C CNN +F 3 "" H 5150 4100 60 0001 C CNN + 1 5150 4100 + 1 0 0 -1 +$EndComp +$Comp +L DS_blk X5 +U 1 1 686F5E96 +P 5150 5150 +F 0 "X5" H 5150 5150 60 0000 C CNN +F 1 "DS_blk" H 5150 4900 60 0000 C CNN +F 2 "" H 5150 5150 60 0001 C CNN +F 3 "" H 5150 5150 60 0001 C CNN + 1 5150 5150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5600 2150 5650 2150 +Wire Wire Line + 5650 2150 5650 5550 +Wire Wire Line + 5650 5550 4400 5550 +Wire Wire Line + 5600 5300 5700 5300 +Wire Wire Line + 5700 5300 5700 2350 +Wire Wire Line + 5700 2350 5600 2350 +Wire Wire Line + 5600 3300 5700 3300 +Connection ~ 5700 3300 +Wire Wire Line + 5600 3100 5650 3100 +Connection ~ 5650 3100 +Wire Wire Line + 5600 4250 5700 4250 +Connection ~ 5700 4250 +Wire Wire Line + 5600 4050 5650 4050 +Connection ~ 5650 4050 +Wire Wire Line + 5600 5100 5650 5100 +Connection ~ 5650 5100 +Wire Wire Line + 5750 5000 5600 5000 +Wire Wire Line + 5750 1950 5750 5000 +Wire Wire Line + 5750 2050 5600 2050 +Wire Wire Line + 5600 3000 5750 3000 +Connection ~ 5750 3000 +Wire Wire Line + 5600 3950 5750 3950 +Connection ~ 5750 3950 +Wire Wire Line + 4700 2150 4550 2150 +Wire Wire Line + 4550 2150 4550 5100 +Wire Wire Line + 4550 5100 4700 5100 +Wire Wire Line + 4600 5200 4700 5200 +Wire Wire Line + 4600 2250 4600 5200 +Wire Wire Line + 4600 4150 4700 4150 +Wire Wire Line + 4700 4050 4550 4050 +Connection ~ 4550 4050 +Wire Wire Line + 4600 3200 4700 3200 +Connection ~ 4600 4150 +Wire Wire Line + 4700 3100 4550 3100 +Connection ~ 4550 3100 +Wire Wire Line + 4050 2250 4700 2250 +Connection ~ 4600 3200 +$Comp +L CMOS_INVTR X1 +U 1 1 686F65EF +P 4000 2150 +F 0 "X1" H 4000 2150 60 0000 C CNN +F 1 "CMOS_INVTR" H 4050 1950 60 0000 C CNN +F 2 "" H 4000 2150 60 0001 C CNN +F 3 "" H 4000 2150 60 0001 C CNN + 1 4000 2150 + 1 0 0 -1 +$EndComp +Connection ~ 4550 2150 +Connection ~ 4600 2250 +Wire Wire Line + 4050 2250 4050 2450 +Wire Wire Line + 4050 2450 3450 2450 +Wire Wire Line + 3450 2450 3450 2150 +Wire Wire Line + 3400 2150 3600 2150 +Wire Wire Line + 3600 2050 3600 1950 +Wire Wire Line + 3500 1950 5750 1950 +Connection ~ 5750 2050 +Wire Wire Line + 3600 2250 3600 2500 +Wire Wire Line + 3500 2500 5700 2500 +Connection ~ 5700 2500 +$Comp +L PORT U1 +U 2 1 686F670F +P 3250 1950 +F 0 "U1" H 3300 2050 30 0000 C CNN +F 1 "PORT" H 3250 1950 30 0000 C CNN +F 2 "" H 3250 1950 60 0000 C CNN +F 3 "" H 3250 1950 60 0000 C CNN + 2 3250 1950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686F6756 +P 3150 2150 +F 0 "U1" H 3200 2250 30 0000 C CNN +F 1 "PORT" H 3150 2150 30 0000 C CNN +F 2 "" H 3150 2150 60 0000 C CNN +F 3 "" H 3150 2150 60 0000 C CNN + 1 3150 2150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686F6781 +P 3250 2500 +F 0 "U1" H 3300 2600 30 0000 C CNN +F 1 "PORT" H 3250 2500 30 0000 C CNN +F 2 "" H 3250 2500 60 0000 C CNN +F 3 "" H 3250 2500 60 0000 C CNN + 3 3250 2500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686F67D4 +P 4450 2050 +F 0 "U1" H 4500 2150 30 0000 C CNN +F 1 "PORT" H 4450 2050 30 0000 C CNN +F 2 "" H 4450 2050 60 0000 C CNN +F 3 "" H 4450 2050 60 0000 C CNN + 5 4450 2050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686F6822 +P 4450 2350 +F 0 "U1" H 4500 2450 30 0000 C CNN +F 1 "PORT" H 4450 2350 30 0000 C CNN +F 2 "" H 4450 2350 60 0000 C CNN +F 3 "" H 4450 2350 60 0000 C CNN + 6 4450 2350 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 7 1 686F699A +P 4450 3000 +F 0 "U1" H 4500 3100 30 0000 C CNN +F 1 "PORT" H 4450 3000 30 0000 C CNN +F 2 "" H 4450 3000 60 0000 C CNN +F 3 "" H 4450 3000 60 0000 C CNN + 7 4450 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 686F6A01 +P 4450 3300 +F 0 "U1" H 4500 3400 30 0000 C CNN +F 1 "PORT" H 4450 3300 30 0000 C CNN +F 2 "" H 4450 3300 60 0000 C CNN +F 3 "" H 4450 3300 60 0000 C CNN + 8 4450 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 686F6ACC +P 4450 3950 +F 0 "U1" H 4500 4050 30 0000 C CNN +F 1 "PORT" H 4450 3950 30 0000 C CNN +F 2 "" H 4450 3950 60 0000 C CNN +F 3 "" H 4450 3950 60 0000 C CNN + 9 4450 3950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 686F6BE4 +P 4450 4250 +F 0 "U1" H 4500 4350 30 0000 C CNN +F 1 "PORT" H 4450 4250 30 0000 C CNN +F 2 "" H 4450 4250 60 0000 C CNN +F 3 "" H 4450 4250 60 0000 C CNN + 10 4450 4250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 686F6C5B +P 4450 5000 +F 0 "U1" H 4500 5100 30 0000 C CNN +F 1 "PORT" H 4450 5000 30 0000 C CNN +F 2 "" H 4450 5000 60 0000 C CNN +F 3 "" H 4450 5000 60 0000 C CNN + 11 4450 5000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 686F6CBC +P 4450 5300 +F 0 "U1" H 4500 5400 30 0000 C CNN +F 1 "PORT" H 4450 5300 30 0000 C CNN +F 2 "" H 4450 5300 60 0000 C CNN +F 3 "" H 4450 5300 60 0000 C CNN + 12 4450 5300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686F6D53 +P 4150 5550 +F 0 "U1" H 4200 5650 30 0000 C CNN +F 1 "PORT" H 4150 5550 30 0000 C CNN +F 2 "" H 4150 5550 60 0000 C CNN +F 3 "" H 4150 5550 60 0000 C CNN + 4 4150 5550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 686F70B5 +P 5850 2250 +F 0 "U1" H 5900 2350 30 0000 C CNN +F 1 "PORT" H 5850 2250 30 0000 C CNN +F 2 "" H 5850 2250 60 0000 C CNN +F 3 "" H 5850 2250 60 0000 C CNN + 13 5850 2250 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 686F7112 +P 5850 3200 +F 0 "U1" H 5900 3300 30 0000 C CNN +F 1 "PORT" H 5850 3200 30 0000 C CNN +F 2 "" H 5850 3200 60 0000 C CNN +F 3 "" H 5850 3200 60 0000 C CNN + 14 5850 3200 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 686F71D8 +P 5850 4150 +F 0 "U1" H 5900 4250 30 0000 C CNN +F 1 "PORT" H 5850 4150 30 0000 C CNN +F 2 "" H 5850 4150 60 0000 C CNN +F 3 "" H 5850 4150 60 0000 C CNN + 15 5850 4150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 686F729F +P 5850 5200 +F 0 "U1" H 5900 5300 30 0000 C CNN +F 1 "PORT" H 5850 5200 30 0000 C CNN +F 2 "" H 5850 5200 60 0000 C CNN +F 3 "" H 5850 5200 60 0000 C CNN + 16 5850 5200 + -1 0 0 -1 +$EndComp +Connection ~ 3600 1950 +Connection ~ 3450 2150 +Connection ~ 3600 2500 +$Comp +L SKY130mode scmode1 +U 1 1 686F754B +P 9550 3300 +F 0 "scmode1" H 9550 3450 98 0000 C CNB +F 1 "SKY130mode" H 9550 3200 118 0000 C CNB +F 2 "" H 9550 3450 60 0001 C CNN +F 3 "" H 9550 3450 60 0001 C CNN + 1 9550 3300 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L98/SN54L98_Previous_Values.xml b/library/SubcircuitLibrary/SN54L98/SN54L98_Previous_Values.xml index df78e8b71..47003cf75 100644 --- a/library/SubcircuitLibrary/SN54L98/SN54L98_Previous_Values.xml +++ b/library/SubcircuitLibrary/SN54L98/SN54L98_Previous_Values.xml @@ -1 +1 @@ -d_andd_andd_nord_andd_andd_nord_andd_andd_nord_andd_andd_nord_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_srffd_srffd_srffd_srffd_bufferD:\FOSSEE\eSim\library\SubcircuitLibrary\SR_FF1D:\FOSSEE\eSim\library\SubcircuitLibrary\SR_FF1D:\FOSSEE\eSim\library\SubcircuitLibrary\SR_FF1D:\FOSSEE\eSim\library\SubcircuitLibrary\SR_FF1truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file +d_andd_andd_nord_andd_andd_nord_andd_andd_nord_andd_andd_nord_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_srffd_srffd_srffd_srffd_bufferD:\FOSSEE\eSim\library\SubcircuitLibrary\SR_FF1D:\FOSSEE\eSim\library\SubcircuitLibrary\SR_FF1D:\FOSSEE\eSim\library\SubcircuitLibrary\SR_FF1D:\FOSSEE\eSim\library\SubcircuitLibrary\SR_FF1truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec diff --git a/library/SubcircuitLibrary/SN54L99/.spiceinit b/library/SubcircuitLibrary/SN54L99/.spiceinit new file mode 100644 index 000000000..47fd1e960 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/.spiceinit @@ -0,0 +1,6 @@ + +set ngbehavior=hsa ; set compatibility for reading PDK libs +set ng_nomodcheck ; don't check the model parameters +set num_threads=8 ; CPU hardware threads available +option noinit ; don't print operating point data +optran 0 0 0 100p 2n 0 ; don't use dc operating point, but transient op) diff --git a/library/SubcircuitLibrary/SN54L99/2_in_and-cache.lib b/library/SubcircuitLibrary/SN54L99/2_in_and-cache.lib new file mode 100644 index 000000000..cd4456570 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/2_in_and-cache.lib @@ -0,0 +1,94 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 300 0 50 0 1 0 N +P 2 0 1 0 -200 150 250 0 N +P 3 0 1 0 -200 150 -200 -150 250 0 N +X in 1 -400 0 200 R 50 50 1 1 I +X Vdd 2 -400 100 200 R 50 50 1 1 I +X Gnd 3 -400 -100 200 R 50 50 1 1 I +X Out 4 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NAND_2 +# +DEF NAND_2 X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "NAND_2" 50 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 100 0 206 760 -760 0 1 0 N 150 200 150 -200 +C 350 0 50 0 1 0 N +P 2 0 1 0 -200 200 150 200 N +P 3 0 1 0 -200 200 -200 -200 150 -200 N +X in1 1 -400 50 200 R 50 50 1 1 I +X Gnd 2 -400 -150 200 R 50 50 1 1 I +X Vdd 3 -400 150 200 R 50 50 1 1 I +X out 4 600 0 200 L 50 50 1 1 O +X in2 5 -400 -50 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/2_in_and.bak b/library/SubcircuitLibrary/SN54L99/2_in_and.bak new file mode 100644 index 000000000..4c88f6efd --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/2_in_and.bak @@ -0,0 +1,151 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L NAND_2 X1 +U 1 1 686CC211 +P 5400 3000 +F 0 "X1" H 5500 3000 60 0000 C CNN +F 1 "NAND_2" H 5450 2750 60 0000 C CNN +F 2 "" H 5400 3000 60 0001 C CNN +F 3 "" H 5400 3000 60 0001 C CNN + 1 5400 3000 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 686CC23B +P 6400 3000 +F 0 "X2" H 6400 3000 60 0000 C CNN +F 1 "CMOS_INVTR" H 6450 2800 60 0000 C CNN +F 2 "" H 6400 3000 60 0001 C CNN +F 3 "" H 6400 3000 60 0001 C CNN + 1 6400 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4950 2900 6000 2900 +Wire Wire Line + 5000 2900 5000 2850 +Wire Wire Line + 4950 3100 6000 3100 +Wire Wire Line + 5000 3100 5000 3150 +$Comp +L PORT U1 +U 1 1 686CC270 +P 4600 2850 +F 0 "U1" H 4650 2950 30 0000 C CNN +F 1 "PORT" H 4600 2850 30 0000 C CNN +F 2 "" H 4600 2850 60 0000 C CNN +F 3 "" H 4600 2850 60 0000 C CNN + 1 4600 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686CC2D9 +P 4750 2950 +F 0 "U1" H 4800 3050 30 0000 C CNN +F 1 "PORT" H 4750 2950 30 0000 C CNN +F 2 "" H 4750 2950 60 0000 C CNN +F 3 "" H 4750 2950 60 0000 C CNN + 3 4750 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686CC2FC +P 4750 3050 +F 0 "U1" H 4800 3150 30 0000 C CNN +F 1 "PORT" H 4750 3050 30 0000 C CNN +F 2 "" H 4750 3050 60 0000 C CNN +F 3 "" H 4750 3050 60 0000 C CNN + 4 4750 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686CC31D +P 4600 3150 +F 0 "U1" H 4650 3250 30 0000 C CNN +F 1 "PORT" H 4600 3150 30 0000 C CNN +F 2 "" H 4600 3150 60 0000 C CNN +F 3 "" H 4600 3150 60 0000 C CNN + 2 4600 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686CC342 +P 7200 3000 +F 0 "U1" H 7250 3100 30 0000 C CNN +F 1 "PORT" H 7200 3000 30 0000 C CNN +F 2 "" H 7200 3000 60 0000 C CNN +F 3 "" H 7200 3000 60 0000 C CNN + 5 7200 3000 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4850 2850 4950 2850 +Wire Wire Line + 4950 2850 4950 2900 +Connection ~ 5000 2900 +Wire Wire Line + 4850 3150 4950 3150 +Wire Wire Line + 4950 3150 4950 3100 +Connection ~ 5000 3100 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/2_in_and.cir b/library/SubcircuitLibrary/SN54L99/2_in_and.cir new file mode 100644 index 000000000..8a30412ec --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/2_in_and.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/2_in_and/2_in_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Tue Jul 8 12:32:28 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad1_ Net-_X1-Pad4_ Net-_U1-Pad4_ NAND_2 +X2 Net-_X1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad5_ CMOS_INVTR +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN54L99/2_in_and.cir.out b/library/SubcircuitLibrary/SN54L99/2_in_and.cir.out new file mode 100644 index 000000000..b2bc03524 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/2_in_and.cir.out @@ -0,0 +1,18 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/2_in_and/2_in_and.cir + +.include CMOS_INVTR.sub +.include NAND_2.sub + +x1 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad1_ net-_x1-pad4_ net-_u1-pad4_ NAND_2 +x2 net-_x1-pad4_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad5_ CMOS_INVTR +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/2_in_and.pro b/library/SubcircuitLibrary/SN54L99/2_in_and.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/2_in_and.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/2_in_and.sch b/library/SubcircuitLibrary/SN54L99/2_in_and.sch new file mode 100644 index 000000000..e2a29248f --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/2_in_and.sch @@ -0,0 +1,162 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L NAND_2 X1 +U 1 1 686CC211 +P 5400 3000 +F 0 "X1" H 5500 3000 60 0000 C CNN +F 1 "NAND_2" H 5450 2750 60 0000 C CNN +F 2 "" H 5400 3000 60 0001 C CNN +F 3 "" H 5400 3000 60 0001 C CNN + 1 5400 3000 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 686CC23B +P 6400 3000 +F 0 "X2" H 6400 3000 60 0000 C CNN +F 1 "CMOS_INVTR" H 6450 2800 60 0000 C CNN +F 2 "" H 6400 3000 60 0001 C CNN +F 3 "" H 6400 3000 60 0001 C CNN + 1 6400 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4950 2900 6000 2900 +Wire Wire Line + 5000 2900 5000 2850 +Wire Wire Line + 4950 3100 6000 3100 +Wire Wire Line + 5000 3100 5000 3150 +$Comp +L PORT U1 +U 1 1 686CC270 +P 4600 2850 +F 0 "U1" H 4650 2950 30 0000 C CNN +F 1 "PORT" H 4600 2850 30 0000 C CNN +F 2 "" H 4600 2850 60 0000 C CNN +F 3 "" H 4600 2850 60 0000 C CNN + 1 4600 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686CC2D9 +P 4750 2950 +F 0 "U1" H 4800 3050 30 0000 C CNN +F 1 "PORT" H 4750 2950 30 0000 C CNN +F 2 "" H 4750 2950 60 0000 C CNN +F 3 "" H 4750 2950 60 0000 C CNN + 3 4750 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686CC2FC +P 4750 3050 +F 0 "U1" H 4800 3150 30 0000 C CNN +F 1 "PORT" H 4750 3050 30 0000 C CNN +F 2 "" H 4750 3050 60 0000 C CNN +F 3 "" H 4750 3050 60 0000 C CNN + 4 4750 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686CC31D +P 4600 3150 +F 0 "U1" H 4650 3250 30 0000 C CNN +F 1 "PORT" H 4600 3150 30 0000 C CNN +F 2 "" H 4600 3150 60 0000 C CNN +F 3 "" H 4600 3150 60 0000 C CNN + 2 4600 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686CC342 +P 7200 3000 +F 0 "U1" H 7250 3100 30 0000 C CNN +F 1 "PORT" H 7200 3000 30 0000 C CNN +F 2 "" H 7200 3000 60 0000 C CNN +F 3 "" H 7200 3000 60 0000 C CNN + 5 7200 3000 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4850 2850 4950 2850 +Wire Wire Line + 4950 2850 4950 2900 +Connection ~ 5000 2900 +Wire Wire Line + 4850 3150 4950 3150 +Wire Wire Line + 4950 3150 4950 3100 +Connection ~ 5000 3100 +$Comp +L SKY130mode scmode1 +U 1 1 686CC4AC +P 8250 3200 +F 0 "scmode1" H 8250 3350 98 0000 C CNB +F 1 "SKY130mode" H 8250 3100 118 0000 C CNB +F 2 "" H 8250 3350 60 0001 C CNN +F 3 "" H 8250 3350 60 0001 C CNN + 1 8250 3200 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/2_in_and.sub b/library/SubcircuitLibrary/SN54L99/2_in_and.sub new file mode 100644 index 000000000..6c2a85281 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/2_in_and.sub @@ -0,0 +1,12 @@ +* Subcircuit 2_in_and +.subckt 2_in_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/2_in_and/2_in_and.cir +.include CMOS_INVTR.sub +.include NAND_2.sub + +x1 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad1_ net-_x1-pad4_ net-_u1-pad4_ NAND_2 +x2 net-_x1-pad4_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad5_ CMOS_INVTR +* s c m o d e +* Control Statements + +.ends 2_in_and diff --git a/library/SubcircuitLibrary/SN54L99/2_in_and_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/2_in_and_Previous_Values.xml new file mode 100644 index 000000000..ecb007d93 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/2_in_and_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/3_in_and-cache.lib b/library/SubcircuitLibrary/SN54L99/3_in_and-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/3_in_and-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/3_in_and.cir b/library/SubcircuitLibrary/SN54L99/3_in_and.cir new file mode 100644 index 000000000..d5cf8cd48 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/3_in_and.cir @@ -0,0 +1,20 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/3_in_and/3_in_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 28 01:51:23 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC6 Net-_SC1-Pad1_ Net-_SC5-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC3 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC3-Pad3_ Net-_SC2-Pad2_ Net-_SC4-Pad3_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +SC5 Net-_SC4-Pad3_ Net-_SC5-Pad2_ Net-_SC3-Pad4_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +SC7 Net-_SC1-Pad1_ Net-_SC1-Pad1_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC8 Net-_SC1-Pad1_ Net-_SC1-Pad1_ Net-_SC3-Pad4_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +scmode1 SKY130mode +U1 Net-_SC1-Pad2_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC3-Pad4_ Net-_SC5-Pad2_ Net-_SC1-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN54L99/3_in_and.cir.out b/library/SubcircuitLibrary/SN54L99/3_in_and.cir.out new file mode 100644 index 000000000..91515569e --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/3_in_and.cir.out @@ -0,0 +1,23 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/3_in_and/3_in_and.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc6 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad3_ net-_sc2-pad2_ net-_sc4-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc4-pad3_ net-_sc5-pad2_ net-_sc3-pad4_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc7 net-_sc1-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc1-pad1_ net-_sc1-pad1_ net-_sc3-pad4_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* u1 net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad4_ net-_sc5-pad2_ net-_sc1-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/3_in_and.pro b/library/SubcircuitLibrary/SN54L99/3_in_and.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/3_in_and.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/3_in_and.sch b/library/SubcircuitLibrary/SN54L99/3_in_and.sch new file mode 100644 index 000000000..413d03374 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/3_in_and.sch @@ -0,0 +1,324 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 685EFB75 +P 4650 2000 +F 0 "SC1" H 4700 2300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4950 2087 50 0000 R CNN +F 2 "" H 4650 500 50 0001 C CNN +F 3 "" H 4650 2000 50 0001 C CNN + 1 4650 2000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 685EFBB1 +P 6200 2000 +F 0 "SC2" H 6250 2300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6500 2087 50 0000 R CNN +F 2 "" H 6200 500 50 0001 C CNN +F 3 "" H 6200 2000 50 0001 C CNN + 1 6200 2000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC6 +U 1 1 685EFC40 +P 7750 2000 +F 0 "SC6" H 7800 2300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 8050 2087 50 0000 R CNN +F 2 "" H 7750 500 50 0001 C CNN +F 3 "" H 7750 2000 50 0001 C CNN + 1 7750 2000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 685EFDF8 +P 6200 2950 +F 0 "SC3" H 6250 3250 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6500 3037 50 0000 R CNN +F 2 "" H 6200 1450 50 0001 C CNN +F 3 "" H 6200 2950 50 0001 C CNN + 1 6200 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 685EFE69 +P 6200 3750 +F 0 "SC4" H 6250 4050 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6500 3837 50 0000 R CNN +F 2 "" H 6200 2250 50 0001 C CNN +F 3 "" H 6200 3750 50 0001 C CNN + 1 6200 3750 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 685EFEFC +P 6600 4450 +F 0 "SC5" H 6650 4750 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6900 4537 50 0000 R CNN +F 2 "" H 6600 2950 50 0001 C CNN +F 3 "" H 6600 4450 50 0001 C CNN + 1 6600 4450 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC7 +U 1 1 685F0235 +P 8600 2000 +F 0 "SC7" H 8650 2300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 8900 2087 50 0000 R CNN +F 2 "" H 8600 500 50 0001 C CNN +F 3 "" H 8600 2000 50 0001 C CNN + 1 8600 2000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC8 +U 1 1 685F02AE +P 8600 4500 +F 0 "SC8" H 8650 4800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 8900 4587 50 0000 R CNN +F 2 "" H 8600 3000 50 0001 C CNN +F 3 "" H 8600 4500 50 0001 C CNN + 1 8600 4500 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 685F03F9 +P 10450 6050 +F 0 "scmode1" H 10450 6200 98 0000 C CNB +F 1 "SKY130mode" H 10450 5950 118 0000 C CNB +F 2 "" H 10450 6200 60 0001 C CNN +F 3 "" H 10450 6200 60 0001 C CNN + 1 10450 6050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685F046F +P 3800 2000 +F 0 "U1" H 3850 2100 30 0000 C CNN +F 1 "PORT" H 3800 2000 30 0000 C CNN +F 2 "" H 3800 2000 60 0000 C CNN +F 3 "" H 3800 2000 60 0000 C CNN + 1 3800 2000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685F04F8 +P 5400 2000 +F 0 "U1" H 5450 2100 30 0000 C CNN +F 1 "PORT" H 5400 2000 30 0000 C CNN +F 2 "" H 5400 2000 60 0000 C CNN +F 3 "" H 5400 2000 60 0000 C CNN + 2 5400 2000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685F05AF +P 6950 2000 +F 0 "U1" H 7000 2100 30 0000 C CNN +F 1 "PORT" H 6950 2000 30 0000 C CNN +F 2 "" H 6950 2000 60 0000 C CNN +F 3 "" H 6950 2000 60 0000 C CNN + 5 6950 2000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685F0660 +P 9350 2950 +F 0 "U1" H 9400 3050 30 0000 C CNN +F 1 "PORT" H 9350 2950 30 0000 C CNN +F 2 "" H 9350 2950 60 0000 C CNN +F 3 "" H 9350 2950 60 0000 C CNN + 6 9350 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685F087C +P 6150 1250 +F 0 "U1" H 6200 1350 30 0000 C CNN +F 1 "PORT" H 6150 1250 30 0000 C CNN +F 2 "" H 6150 1250 60 0000 C CNN +F 3 "" H 6150 1250 60 0000 C CNN + 3 6150 1250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685F095F +P 6150 5100 +F 0 "U1" H 6200 5200 30 0000 C CNN +F 1 "PORT" H 6150 5100 30 0000 C CNN +F 2 "" H 6150 5100 60 0000 C CNN +F 3 "" H 6150 5100 60 0000 C CNN + 4 6150 5100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4850 1700 4850 1600 +Wire Wire Line + 4850 1600 8850 1600 +Wire Wire Line + 8800 1600 8800 1700 +Wire Wire Line + 6400 1250 6400 1700 +Connection ~ 6400 1600 +Wire Wire Line + 7950 1700 7950 1600 +Connection ~ 7950 1600 +Wire Wire Line + 4850 2300 4850 2350 +Wire Wire Line + 4850 2350 8800 2350 +Wire Wire Line + 8800 2300 8800 4200 +Wire Wire Line + 6400 2300 6400 2650 +Connection ~ 6400 2350 +Wire Wire Line + 7950 2300 7950 2350 +Connection ~ 7950 2350 +Wire Wire Line + 4750 2000 4950 2000 +Wire Wire Line + 4950 2000 4950 1600 +Connection ~ 4950 1600 +Wire Wire Line + 6300 2000 6500 2000 +Wire Wire Line + 6500 2000 6500 1600 +Connection ~ 6500 1600 +Wire Wire Line + 7850 2000 8050 2000 +Wire Wire Line + 8050 2000 8050 1600 +Connection ~ 8050 1600 +Wire Wire Line + 8700 2000 8850 2000 +Wire Wire Line + 8850 2000 8850 1600 +Connection ~ 8800 1600 +Wire Wire Line + 4350 2000 4050 2000 +Wire Wire Line + 5900 2000 5650 2000 +Wire Wire Line + 7450 2000 7200 2000 +Wire Wire Line + 8300 2000 8300 4500 +Wire Wire Line + 8300 2450 6400 2450 +Connection ~ 6400 2450 +Wire Wire Line + 5900 2950 4250 2950 +Wire Wire Line + 4250 2950 4250 2000 +Connection ~ 4250 2000 +Wire Wire Line + 5900 3750 5700 3750 +Wire Wire Line + 5700 3750 5700 2000 +Connection ~ 5700 2000 +Wire Wire Line + 6900 4450 7350 4450 +Wire Wire Line + 7350 4450 7350 2000 +Connection ~ 7350 2000 +Wire Wire Line + 6400 5100 6400 4750 +Wire Wire Line + 8700 4500 8900 4500 +Wire Wire Line + 8900 4500 8900 4900 +Wire Wire Line + 8900 4900 6350 4900 +Connection ~ 6400 4900 +Wire Wire Line + 8800 4800 8800 4900 +Connection ~ 8800 4900 +Wire Wire Line + 6500 4450 6350 4450 +Wire Wire Line + 6350 4450 6350 4900 +Wire Wire Line + 6400 4050 6400 4150 +Wire Wire Line + 6300 3750 7000 3750 +Wire Wire Line + 7000 2950 7000 4900 +Connection ~ 7000 4900 +Wire Wire Line + 6400 3250 6400 3450 +Wire Wire Line + 6300 2950 7000 2950 +Connection ~ 7000 3750 +Connection ~ 8800 2350 +Connection ~ 8300 2450 +Wire Wire Line + 9100 2950 8800 2950 +Connection ~ 8800 2950 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/3_in_and.sub b/library/SubcircuitLibrary/SN54L99/3_in_and.sub new file mode 100644 index 000000000..be48d3260 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/3_in_and.sub @@ -0,0 +1,17 @@ +* Subcircuit 3_in_and +.subckt 3_in_and net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad4_ net-_sc5-pad2_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/3_in_and/3_in_and.cir +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc6 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad3_ net-_sc2-pad2_ net-_sc4-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc4-pad3_ net-_sc5-pad2_ net-_sc3-pad4_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc7 net-_sc1-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc1-pad1_ net-_sc1-pad1_ net-_sc3-pad4_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends 3_in_and diff --git a/library/SubcircuitLibrary/SN54L99/3_in_and_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/3_in_and_Previous_Values.xml new file mode 100644 index 000000000..d3c2ae7ff --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/3_in_and_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=1 l=0.15 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/4_in_and-cache.lib b/library/SubcircuitLibrary/SN54L99/4_in_and-cache.lib new file mode 100644 index 000000000..dc52f48f5 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/4_in_and-cache.lib @@ -0,0 +1,96 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 2_in_and +# +DEF 2_in_and X 0 40 Y Y 1 F N +F0 "X" 50 0 60 H V C CNN +F1 "2_in_and" 0 -250 60 H V C CNN +F2 "" 750 -150 60 H I C CNN +F3 "" 750 -150 60 H I C CNN +DRAW +A 50 0 206 760 -760 0 1 0 N 100 200 100 -200 +P 2 0 1 0 -200 200 100 200 N +P 3 0 1 0 -200 200 -200 -200 100 -200 N +X Vdd 1 -400 150 200 R 50 50 1 1 I +X in1 2 -400 50 200 R 50 50 1 1 I +X in2 3 -400 -50 200 R 50 50 1 1 I +X Gnd 4 -400 -150 200 R 50 50 1 1 I +X out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 3_in_and +# +DEF 3_in_and X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "3_in_and" 50 -300 60 H V C CNN +F2 "" 600 -150 60 H I C CNN +F3 "" 600 -150 60 H I C CNN +DRAW +A 100 0 255 787 -787 0 1 0 N 150 250 150 -250 +P 2 0 1 0 -150 250 100 250 N +P 2 0 1 0 150 250 100 250 N +P 3 0 1 0 -150 250 -150 -250 150 -250 N +X in1 1 -350 100 200 R 50 50 1 1 I +X in2 2 -350 0 200 R 50 50 1 1 I +X Vdd 3 -350 200 200 R 50 50 1 1 I +X Gnd 4 -350 -200 200 R 50 50 1 1 I +X in3 5 -350 -100 200 R 50 50 1 1 I +X out 6 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/4_in_and.cir b/library/SubcircuitLibrary/SN54L99/4_in_and.cir new file mode 100644 index 000000000..4e996a12a --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/4_in_and.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/4_in_and/4_in_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Tue Jul 8 12:53:37 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad5_ Net-_U1-Pad4_ Net-_X1-Pad6_ 3_in_and +X2 Net-_U1-Pad1_ Net-_X1-Pad6_ Net-_U1-Pad6_ Net-_U1-Pad5_ Net-_U1-Pad7_ 2_in_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN54L99/4_in_and.cir.out b/library/SubcircuitLibrary/SN54L99/4_in_and.cir.out new file mode 100644 index 000000000..53ad1ee41 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/4_in_and.cir.out @@ -0,0 +1,24 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/4_in_and/4_in_and.cir + +.include 3_in_and.sub +.include 2_in_and.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad5_ net-_u1-pad4_ net-_x1-pad6_ 3_in_and +x2 net-_u1-pad1_ net-_x1-pad6_ net-_u1-pad6_ net-_u1-pad5_ net-_u1-pad7_ 2_in_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/4_in_and.pro b/library/SubcircuitLibrary/SN54L99/4_in_and.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/4_in_and.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/4_in_and.sch b/library/SubcircuitLibrary/SN54L99/4_in_and.sch new file mode 100644 index 000000000..db84ffe7b --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/4_in_and.sch @@ -0,0 +1,196 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 3_in_and X1 +U 1 1 686CC60C +P 5250 2300 +F 0 "X1" H 5350 2300 60 0000 C CNN +F 1 "3_in_and" H 5300 2000 60 0000 C CNN +F 2 "" H 5850 2150 60 0001 C CNN +F 3 "" H 5850 2150 60 0001 C CNN + 1 5250 2300 + 1 0 0 -1 +$EndComp +$Comp +L 2_in_and X2 +U 1 1 686CC667 +P 6200 2350 +F 0 "X2" H 6250 2350 60 0000 C CNN +F 1 "2_in_and" H 6200 2100 60 0000 C CNN +F 2 "" H 6950 2200 60 0001 C CNN +F 3 "" H 6950 2200 60 0001 C CNN + 1 6200 2350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5800 2150 5800 2200 +Wire Wire Line + 4750 2150 5800 2150 +Wire Wire Line + 4900 2150 4900 2100 +Wire Wire Line + 5800 2450 5800 2500 +Wire Wire Line + 4750 2450 5800 2450 +Wire Wire Line + 4900 2450 4900 2500 +Wire Wire Line + 5800 2400 5650 2400 +Wire Wire Line + 5650 2400 5650 2600 +Wire Wire Line + 5650 2600 4750 2600 +Wire Wire Line + 4900 2400 4750 2400 +Wire Wire Line + 4900 2300 4750 2300 +Wire Wire Line + 4900 2200 4750 2200 +Connection ~ 4900 2150 +Connection ~ 4900 2450 +$Comp +L PORT U1 +U 1 1 686CC71D +P 4500 2100 +F 0 "U1" H 4550 2200 30 0000 C CNN +F 1 "PORT" H 4500 2100 30 0000 C CNN +F 2 "" H 4500 2100 60 0000 C CNN +F 3 "" H 4500 2100 60 0000 C CNN + 1 4500 2100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686CC7AC +P 4500 2200 +F 0 "U1" H 4550 2300 30 0000 C CNN +F 1 "PORT" H 4500 2200 30 0000 C CNN +F 2 "" H 4500 2200 60 0000 C CNN +F 3 "" H 4500 2200 60 0000 C CNN + 2 4500 2200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686CC80F +P 4500 2300 +F 0 "U1" H 4550 2400 30 0000 C CNN +F 1 "PORT" H 4500 2300 30 0000 C CNN +F 2 "" H 4500 2300 60 0000 C CNN +F 3 "" H 4500 2300 60 0000 C CNN + 3 4500 2300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686CC8BF +P 4500 2400 +F 0 "U1" H 4550 2500 30 0000 C CNN +F 1 "PORT" H 4500 2400 30 0000 C CNN +F 2 "" H 4500 2400 60 0000 C CNN +F 3 "" H 4500 2400 60 0000 C CNN + 4 4500 2400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686CC9C0 +P 4500 2500 +F 0 "U1" H 4550 2600 30 0000 C CNN +F 1 "PORT" H 4500 2500 30 0000 C CNN +F 2 "" H 4500 2500 60 0000 C CNN +F 3 "" H 4500 2500 60 0000 C CNN + 5 4500 2500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686CC9F9 +P 4500 2600 +F 0 "U1" H 4550 2700 30 0000 C CNN +F 1 "PORT" H 4500 2600 30 0000 C CNN +F 2 "" H 4500 2600 60 0000 C CNN +F 3 "" H 4500 2600 60 0000 C CNN + 6 4500 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686CCA50 +P 6900 2350 +F 0 "U1" H 6950 2450 30 0000 C CNN +F 1 "PORT" H 6900 2350 30 0000 C CNN +F 2 "" H 6900 2350 60 0000 C CNN +F 3 "" H 6900 2350 60 0000 C CNN + 7 6900 2350 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4750 2150 4750 2100 +Wire Wire Line + 4750 2450 4750 2500 +$Comp +L SKY130mode scmode1 +U 1 1 686CCB41 +P 7350 3350 +F 0 "scmode1" H 7350 3500 98 0000 C CNB +F 1 "SKY130mode" H 7350 3250 118 0000 C CNB +F 2 "" H 7350 3500 60 0001 C CNN +F 3 "" H 7350 3500 60 0001 C CNN + 1 7350 3350 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/4_in_and.sub b/library/SubcircuitLibrary/SN54L99/4_in_and.sub new file mode 100644 index 000000000..c7be023c0 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/4_in_and.sub @@ -0,0 +1,18 @@ +* Subcircuit 4_in_and +.subckt 4_in_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/4_in_and/4_in_and.cir +.include 3_in_and.sub +.include 2_in_and.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad5_ net-_u1-pad4_ net-_x1-pad6_ 3_in_and +x2 net-_u1-pad1_ net-_x1-pad6_ net-_u1-pad6_ net-_u1-pad5_ net-_u1-pad7_ 2_in_and +* s c m o d e +* Control Statements + +.ends 4_in_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/4_in_and_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/4_in_and_Previous_Values.xml new file mode 100644 index 000000000..2699e57a6 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/4_in_and_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/3_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/2_in_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_Buf-cache.lib b/library/SubcircuitLibrary/SN54L99/CMOS_Buf-cache.lib new file mode 100644 index 000000000..a4da279a5 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_Buf-cache.lib @@ -0,0 +1,74 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 300 0 50 0 1 0 N +P 2 0 1 0 -200 150 250 0 N +P 3 0 1 0 -200 150 -200 -150 250 0 N +X in 1 -400 0 200 R 50 50 1 1 I +X Vdd 2 -400 100 200 R 50 50 1 1 I +X Gnd 3 -400 -100 200 R 50 50 1 1 I +X Out 4 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_Buf-rescue.lib b/library/SubcircuitLibrary/SN54L99/CMOS_Buf-rescue.lib new file mode 100644 index 000000000..2e8cabd8d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_Buf-rescue.lib @@ -0,0 +1,22 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR-RESCUE-CMOS_Buf +# +DEF CMOS_INVTR-RESCUE-CMOS_Buf X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR-RESCUE-CMOS_Buf" 100 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 550 0 50 0 1 0 N +P 2 0 1 0 -450 250 500 0 N +P 3 0 1 0 -450 250 -450 -250 500 0 N +X IN 1 -650 0 200 R 50 50 1 1 I +X VDD 2 -650 150 200 R 50 50 1 1 I +X GND 3 -650 -150 200 R 50 50 1 1 I +X OUT 4 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_Buf.bak b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.bak new file mode 100644 index 000000000..18c8ff97d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.bak @@ -0,0 +1,149 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L CMOS_INVTR X1 +U 1 1 68655F03 +P 4950 3300 +F 0 "X1" H 4950 3300 60 0000 C CNN +F 1 "CMOS_INVTR" H 5050 3050 60 0000 C CNN +F 2 "" H 4950 3300 60 0001 C CNN +F 3 "" H 4950 3300 60 0001 C CNN + 1 4950 3300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 68655F1A +P 6500 3300 +F 0 "X2" H 6500 3300 60 0000 C CNN +F 1 "CMOS_INVTR" H 6600 3050 60 0000 C CNN +F 2 "" H 6500 3300 60 0001 C CNN +F 3 "" H 6500 3300 60 0001 C CNN + 1 6500 3300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5750 3300 5850 3300 +Wire Wire Line + 4300 3150 4300 3050 +Wire Wire Line + 4200 3050 5850 3050 +Wire Wire Line + 5850 3050 5850 3150 +Wire Wire Line + 4300 3450 4300 3550 +Wire Wire Line + 4200 3550 5850 3550 +Wire Wire Line + 5850 3550 5850 3450 +$Comp +L PORT U1 +U 1 1 68655FBD +P 3950 3050 +F 0 "U1" H 4000 3150 30 0000 C CNN +F 1 "PORT" H 3950 3050 30 0000 C CNN +F 2 "" H 3950 3050 60 0000 C CNN +F 3 "" H 3950 3050 60 0000 C CNN + 1 3950 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68655FF0 +P 4050 3300 +F 0 "U1" H 4100 3400 30 0000 C CNN +F 1 "PORT" H 4050 3300 30 0000 C CNN +F 2 "" H 4050 3300 60 0000 C CNN +F 3 "" H 4050 3300 60 0000 C CNN + 3 4050 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68656163 +P 3950 3550 +F 0 "U1" H 4000 3650 30 0000 C CNN +F 1 "PORT" H 3950 3550 30 0000 C CNN +F 2 "" H 3950 3550 60 0000 C CNN +F 3 "" H 3950 3550 60 0000 C CNN + 2 3950 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68656242 +P 7550 3300 +F 0 "U1" H 7600 3400 30 0000 C CNN +F 1 "PORT" H 7550 3300 30 0000 C CNN +F 2 "" H 7550 3300 60 0000 C CNN +F 3 "" H 7550 3300 60 0000 C CNN + 4 7550 3300 + -1 0 0 -1 +$EndComp +Connection ~ 4300 3050 +Connection ~ 4300 3550 +$Comp +L SKY130mode scmode1 +U 1 1 68656379 +P 7900 4200 +F 0 "scmode1" H 7900 4350 98 0000 C CNB +F 1 "SKY130mode" H 7900 4100 118 0000 C CNB +F 2 "" H 7900 4350 60 0001 C CNN +F 3 "" H 7900 4350 60 0001 C CNN + 1 7900 4200 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_Buf.cir b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.cir new file mode 100644 index 000000000..a1907752c --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_Buf/CMOS_Buf.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sun Jul 6 10:50:24 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT +scmode1 SKY130mode +X1 Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_X1-Pad4_ CMOS_INVTR +X2 Net-_X1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad4_ CMOS_INVTR + +.end diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_Buf.cir.out b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.cir.out new file mode 100644 index 000000000..c1aedf115 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.cir.out @@ -0,0 +1,23 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_buf/cmos_buf.cir + +.include CMOS_INVTR.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +* s c m o d e +x1 net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad2_ net-_x1-pad4_ CMOS_INVTR +x2 net-_x1-pad4_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad4_ CMOS_INVTR +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_Buf.pro b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.pro new file mode 100644 index 000000000..78fa1002c --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.pro @@ -0,0 +1,74 @@ +update=Sun Jul 6 10:49:25 2025 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=CMOS_Buf-rescue +LibName2=adc-dac +LibName3=memory +LibName4=xilinx +LibName5=microcontrollers +LibName6=dsp +LibName7=microchip +LibName8=analog_switches +LibName9=motorola +LibName10=texas +LibName11=intel +LibName12=audio +LibName13=interface +LibName14=digital-audio +LibName15=philips +LibName16=display +LibName17=cypress +LibName18=siliconi +LibName19=opto +LibName20=atmel +LibName21=contrib +LibName22=power +LibName23=eSim_Plot +LibName24=transistors +LibName25=conn +LibName26=eSim_User +LibName27=regul +LibName28=74xx +LibName29=cmos4000 +LibName30=eSim_Analog +LibName31=eSim_Devices +LibName32=eSim_Digital +LibName33=eSim_Hybrid +LibName34=eSim_Miscellaneous +LibName35=eSim_Power +LibName36=eSim_Sources +LibName37=eSim_Subckt +LibName38=eSim_Nghdl +LibName39=eSim_Ngveri +LibName40=eSim_SKY130 +LibName41=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_Buf.sch b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.sch new file mode 100644 index 000000000..0cdb5a05c --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.sch @@ -0,0 +1,151 @@ +EESchema Schematic File Version 2 +LIBS:CMOS_Buf-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:CMOS_Buf-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L PORT U1 +U 1 1 68655FBD +P 3950 3050 +F 0 "U1" H 4000 3150 30 0000 C CNN +F 1 "PORT" H 3950 3050 30 0000 C CNN +F 2 "" H 3950 3050 60 0000 C CNN +F 3 "" H 3950 3050 60 0000 C CNN + 1 3950 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68655FF0 +P 4050 3300 +F 0 "U1" H 4100 3400 30 0000 C CNN +F 1 "PORT" H 4050 3300 30 0000 C CNN +F 2 "" H 4050 3300 60 0000 C CNN +F 3 "" H 4050 3300 60 0000 C CNN + 3 4050 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68656163 +P 3950 3550 +F 0 "U1" H 4000 3650 30 0000 C CNN +F 1 "PORT" H 3950 3550 30 0000 C CNN +F 2 "" H 3950 3550 60 0000 C CNN +F 3 "" H 3950 3550 60 0000 C CNN + 2 3950 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68656242 +P 7050 3300 +F 0 "U1" H 7100 3400 30 0000 C CNN +F 1 "PORT" H 7050 3300 30 0000 C CNN +F 2 "" H 7050 3300 60 0000 C CNN +F 3 "" H 7050 3300 60 0000 C CNN + 4 7050 3300 + -1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68656379 +P 7900 4200 +F 0 "scmode1" H 7900 4350 98 0000 C CNB +F 1 "SKY130mode" H 7900 4100 118 0000 C CNB +F 2 "" H 7900 4350 60 0001 C CNN +F 3 "" H 7900 4350 60 0001 C CNN + 1 7900 4200 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X1 +U 1 1 686A07F2 +P 4700 3300 +F 0 "X1" H 4700 3300 60 0000 C CNN +F 1 "CMOS_INVTR" H 4750 3100 60 0000 C CNN +F 2 "" H 4700 3300 60 0001 C CNN +F 3 "" H 4700 3300 60 0001 C CNN + 1 4700 3300 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 686A0855 +P 6250 3300 +F 0 "X2" H 6250 3300 60 0000 C CNN +F 1 "CMOS_INVTR" H 6300 3100 60 0000 C CNN +F 2 "" H 6250 3300 60 0001 C CNN +F 3 "" H 6250 3300 60 0001 C CNN + 1 6250 3300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5250 3300 5850 3300 +Wire Wire Line + 4300 3050 4300 3200 +Wire Wire Line + 4200 3050 5850 3050 +Wire Wire Line + 5850 3050 5850 3200 +Wire Wire Line + 4300 3400 4300 3550 +Wire Wire Line + 5850 3550 4200 3550 +Wire Wire Line + 5850 3400 5850 3550 +Connection ~ 4300 3050 +Connection ~ 4300 3550 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_Buf.sub b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.sub new file mode 100644 index 000000000..8d50195f6 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_Buf.sub @@ -0,0 +1,17 @@ +* Subcircuit CMOS_Buf +.subckt CMOS_Buf net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_buf/cmos_buf.cir +.include CMOS_INVTR.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +* s c m o d e +x1 net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad2_ net-_x1-pad4_ CMOS_INVTR +x2 net-_x1-pad4_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad4_ CMOS_INVTR +* Control Statements + +.ends CMOS_Buf \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_Buf_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/CMOS_Buf_Previous_Values.xml new file mode 100644 index 000000000..b0e9c717d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_Buf_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_INVTR-cache.lib b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.cir b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.cir new file mode 100644 index 000000000..d89b6087d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/CMOS_INVTR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 22:03:21 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.cir.out b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.cir.out new file mode 100644 index 000000000..4058a1829 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.cir.out @@ -0,0 +1,22 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir + +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.pro b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.sch b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.sch new file mode 100644 index 000000000..aa7a7ee81 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.sch @@ -0,0 +1,161 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 684B982F +P 5350 2950 +F 0 "SC1" H 5400 3250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5650 3037 50 0000 R CNN +F 2 "" H 5350 1450 50 0001 C CNN +F 3 "" H 5350 2950 50 0001 C CNN + 1 5350 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684B9856 +P 5350 3800 +F 0 "SC2" H 5400 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5650 3887 50 0000 R CNN +F 2 "" H 5350 2300 50 0001 C CNN +F 3 "" H 5350 3800 50 0001 C CNN + 1 5350 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684B98AD +P 4550 3300 +F 0 "U1" H 4600 3400 30 0000 C CNN +F 1 "PORT" H 4550 3300 30 0000 C CNN +F 2 "" H 4550 3300 60 0000 C CNN +F 3 "" H 4550 3300 60 0000 C CNN + 1 4550 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B98D8 +P 6300 3350 +F 0 "U1" H 6350 3450 30 0000 C CNN +F 1 "PORT" H 6300 3350 30 0000 C CNN +F 2 "" H 6300 3350 60 0000 C CNN +F 3 "" H 6300 3350 60 0000 C CNN + 4 6300 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B9935 +P 5300 4350 +F 0 "U1" H 5350 4450 30 0000 C CNN +F 1 "PORT" H 5300 4350 30 0000 C CNN +F 2 "" H 5300 4350 60 0000 C CNN +F 3 "" H 5300 4350 60 0000 C CNN + 3 5300 4350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684B999A +P 5300 2350 +F 0 "U1" H 5350 2450 30 0000 C CNN +F 1 "PORT" H 5300 2350 30 0000 C CNN +F 2 "" H 5300 2350 60 0000 C CNN +F 3 "" H 5300 2350 60 0000 C CNN + 2 5300 2350 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B99CD +P 7950 3000 +F 0 "scmode1" H 7950 3150 98 0000 C CNB +F 1 "SKY130mode" H 7950 2900 118 0000 C CNB +F 2 "" H 7950 3150 60 0001 C CNN +F 3 "" H 7950 3150 60 0001 C CNN + 1 7950 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5550 2650 5550 2350 +Wire Wire Line + 5450 2950 5600 2950 +Wire Wire Line + 5600 2950 5600 2550 +Wire Wire Line + 5600 2550 5550 2550 +Connection ~ 5550 2550 +Wire Wire Line + 5550 3250 5550 3500 +Wire Wire Line + 6050 3350 5550 3350 +Connection ~ 5550 3350 +Wire Wire Line + 5050 2950 5050 3800 +Wire Wire Line + 4800 3300 5050 3300 +Connection ~ 5050 3300 +Wire Wire Line + 5450 3800 5600 3800 +Wire Wire Line + 5600 3800 5600 4150 +Wire Wire Line + 5600 4150 5550 4150 +Wire Wire Line + 5550 4100 5550 4350 +Connection ~ 5550 4150 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.sub b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.sub new file mode 100644 index 000000000..9dff1ae3f --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR.sub @@ -0,0 +1,16 @@ +* Subcircuit CMOS_INVTR +.subckt CMOS_INVTR net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends CMOS_INVTR \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/CMOS_INVTR_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR_Previous_Values.xml new file mode 100644 index 000000000..0fa71b2d4 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/CMOS_INVTR_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/DS_blk-cache.lib b/library/SubcircuitLibrary/SN54L99/DS_blk-cache.lib new file mode 100644 index 000000000..f32a82db2 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/DS_blk-cache.lib @@ -0,0 +1,147 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 2_in_and +# +DEF 2_in_and X 0 40 Y Y 1 F N +F0 "X" 50 0 60 H V C CNN +F1 "2_in_and" 0 -250 60 H V C CNN +F2 "" 750 -150 60 H I C CNN +F3 "" 750 -150 60 H I C CNN +DRAW +A 50 0 206 760 -760 0 1 0 N 100 200 100 -200 +P 2 0 1 0 -200 200 100 200 N +P 3 0 1 0 -200 200 -200 -200 100 -200 N +X Vdd 1 -400 150 200 R 50 50 1 1 I +X in1 2 -400 50 200 R 50 50 1 1 I +X in2 3 -400 -50 200 R 50 50 1 1 I +X Gnd 4 -400 -150 200 R 50 50 1 1 I +X out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CMOS_Buf +# +DEF CMOS_Buf X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_Buf" 0 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +P 2 0 1 0 -250 150 250 0 N +P 3 0 1 0 -250 150 -250 -150 250 0 N +X Vdd 1 -450 100 200 R 50 50 1 1 I +X Gnd 2 -450 -100 200 R 50 50 1 1 I +X in 3 -450 0 200 R 50 50 1 1 I +X Out 4 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 300 0 50 0 1 0 N +P 2 0 1 0 -200 150 250 0 N +P 3 0 1 0 -200 150 -200 -150 250 0 N +X in 1 -400 0 200 R 50 50 1 1 I +X Vdd 2 -400 100 200 R 50 50 1 1 I +X Gnd 3 -400 -100 200 R 50 50 1 1 I +X Out 4 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# D_FF +# +DEF D_FF X 0 40 Y Y 1 F N +F0 "X" 100 100 60 H V C CNN +F1 "D_FF" 0 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -200 200 200 -150 0 1 0 N +X D 1 -400 50 200 R 50 50 1 1 I +X Clk 2 -400 -50 200 R 50 50 1 1 I +X Vdd 3 0 400 200 D 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X Q 5 400 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NOR_2 +# +DEF NOR_2 X 0 40 Y Y 1 F N +F0 "X" 50 0 60 H V C CNN +F1 "NOR_2" 0 -250 60 H V C CNN +F2 "" -100 0 60 H I C CNN +F3 "" -100 0 60 H I C CNN +DRAW +A -350 0 206 760 -760 0 1 0 N -300 200 -300 -200 +A -226 239 445 -996 -324 0 1 0 N -300 -200 150 0 +A -197 -174 388 1054 266 0 1 0 N -300 200 150 0 +C 200 0 50 0 1 0 N +X in1 1 -350 50 200 R 50 50 1 1 I +X Gnd 2 -400 -150 200 R 50 50 1 1 I +X Vdd 3 -400 150 200 R 50 50 1 1 I +X in2 4 -350 -50 200 R 50 50 1 1 I +X out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/DS_blk.bak b/library/SubcircuitLibrary/SN54L99/DS_blk.bak new file mode 100644 index 000000000..367ca003a --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/DS_blk.bak @@ -0,0 +1,280 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:DS_blk-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 2_in_and X1 +U 1 1 686E8DA4 +P 4450 2650 +F 0 "X1" H 4500 2650 60 0000 C CNN +F 1 "2_in_and" H 4450 2400 60 0000 C CNN +F 2 "" H 5200 2500 60 0001 C CNN +F 3 "" H 5200 2500 60 0001 C CNN + 1 4450 2650 + 1 0 0 -1 +$EndComp +$Comp +L 2_in_and X2 +U 1 1 686E8DC5 +P 4450 3500 +F 0 "X2" H 4500 3500 60 0000 C CNN +F 1 "2_in_and" H 4450 3250 60 0000 C CNN +F 2 "" H 5200 3350 60 0001 C CNN +F 3 "" H 5200 3350 60 0001 C CNN + 1 4450 3500 + 1 0 0 -1 +$EndComp +$Comp +L NOR_2 X3 +U 1 1 686E8DDE +P 5750 3050 +F 0 "X3" H 5800 3050 60 0000 C CNN +F 1 "NOR_2" H 5750 2800 60 0000 C CNN +F 2 "" H 5650 3050 60 0001 C CNN +F 3 "" H 5650 3050 60 0001 C CNN + 1 5750 3050 + 1 0 0 -1 +$EndComp +$Comp +L D_FF X4 +U 1 1 686E8E0C +P 7050 3100 +F 0 "X4" H 7150 3200 60 0000 C CNN +F 1 "D_FF" H 7050 2900 60 0000 C CNN +F 2 "" H 7050 3100 60 0001 C CNN +F 3 "" H 7050 3100 60 0001 C CNN + 1 7050 3100 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686E8E39 +P 8550 4100 +F 0 "scmode1" H 8550 4250 98 0000 C CNB +F 1 "SKY130mode" H 8550 4000 118 0000 C CNB +F 2 "" H 8550 4250 60 0001 C CNN +F 3 "" H 8550 4250 60 0001 C CNN + 1 8550 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686E8E58 +P 3800 2600 +F 0 "U1" H 3850 2700 30 0000 C CNN +F 1 "PORT" H 3800 2600 30 0000 C CNN +F 2 "" H 3800 2600 60 0000 C CNN +F 3 "" H 3800 2600 60 0000 C CNN + 1 3800 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E8F0F +P 3800 2700 +F 0 "U1" H 3850 2800 30 0000 C CNN +F 1 "PORT" H 3800 2700 30 0000 C CNN +F 2 "" H 3800 2700 60 0000 C CNN +F 3 "" H 3800 2700 60 0000 C CNN + 2 3800 2700 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E8F53 +P 3800 3450 +F 0 "U1" H 3850 3550 30 0000 C CNN +F 1 "PORT" H 3800 3450 30 0000 C CNN +F 2 "" H 3800 3450 60 0000 C CNN +F 3 "" H 3800 3450 60 0000 C CNN + 3 3800 3450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E8F80 +P 3800 3550 +F 0 "U1" H 3850 3650 30 0000 C CNN +F 1 "PORT" H 3800 3550 30 0000 C CNN +F 2 "" H 3800 3550 60 0000 C CNN +F 3 "" H 3800 3550 60 0000 C CNN + 4 3800 3550 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E901D +P 6400 3150 +F 0 "U1" H 6450 3250 30 0000 C CNN +F 1 "PORT" H 6400 3150 30 0000 C CNN +F 2 "" H 6400 3150 60 0000 C CNN +F 3 "" H 6400 3150 60 0000 C CNN + 5 6400 3150 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 686E9099 +P 7700 3150 +F 0 "U1" H 7750 3250 30 0000 C CNN +F 1 "PORT" H 7700 3150 30 0000 C CNN +F 2 "" H 7700 3150 60 0000 C CNN +F 3 "" H 7700 3150 60 0000 C CNN + 8 7700 3150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686E91B5 +P 7300 2400 +F 0 "U1" H 7350 2500 30 0000 C CNN +F 1 "PORT" H 7300 2400 30 0000 C CNN +F 2 "" H 7300 2400 60 0000 C CNN +F 3 "" H 7300 2400 60 0000 C CNN + 6 7300 2400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686E922A +P 7300 3550 +F 0 "U1" H 7350 3650 30 0000 C CNN +F 1 "PORT" H 7300 3550 30 0000 C CNN +F 2 "" H 7300 3550 60 0000 C CNN +F 3 "" H 7300 3550 60 0000 C CNN + 7 7300 3550 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4900 2650 4900 3000 +Wire Wire Line + 4900 3000 5400 3000 +Wire Wire Line + 4900 3500 4900 3100 +Wire Wire Line + 4900 3100 5400 3100 +Wire Wire Line + 4050 2400 4050 2500 +Wire Wire Line + 4050 2400 7050 2400 +Wire Wire Line + 7050 2400 7050 2700 +Connection ~ 7050 2400 +Connection ~ 7050 3550 +Wire Wire Line + 4050 3650 4050 3800 +Wire Wire Line + 4050 3800 7050 3800 +Wire Wire Line + 7050 3800 7050 3450 +Wire Wire Line + 5350 2900 5350 2400 +Connection ~ 5350 2400 +Wire Wire Line + 5350 3200 5350 3800 +Connection ~ 5350 3800 +Wire Wire Line + 4050 3350 4050 3200 +Wire Wire Line + 4050 3200 5150 3200 +Wire Wire Line + 5150 3200 5150 2400 +Connection ~ 5150 2400 +Wire Wire Line + 4050 2800 4050 2950 +Wire Wire Line + 4050 2950 5200 2950 +Wire Wire Line + 5200 2950 5200 3800 +Connection ~ 5200 3800 +$Comp +L CMOS_Buf X5 +U 1 1 686F47C1 +P 6350 2650 +F 0 "X5" H 6350 2650 60 0000 C CNN +F 1 "CMOS_Buf" H 6350 2450 60 0000 C CNN +F 2 "" H 6350 2650 60 0001 C CNN +F 3 "" H 6350 2650 60 0001 C CNN + 1 6350 2650 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6200 3050 6200 2900 +Wire Wire Line + 6200 2900 5800 2900 +Wire Wire Line + 5800 2900 5800 2650 +Wire Wire Line + 5800 2650 5900 2650 +Wire Wire Line + 6800 2650 6850 2650 +Wire Wire Line + 6850 2650 6850 2850 +Wire Wire Line + 6850 2850 6650 2850 +Wire Wire Line + 6650 2850 6650 3050 +Wire Wire Line + 5900 2550 5900 2400 +Connection ~ 5900 2400 +Wire Wire Line + 5900 2750 5900 2800 +Wire Wire Line + 5900 2800 6300 2800 +Wire Wire Line + 6300 2800 6300 3550 +Wire Wire Line + 6300 3550 7050 3550 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/DS_blk.cir b/library/SubcircuitLibrary/SN54L99/DS_blk.cir new file mode 100644 index 000000000..a033859ed --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/DS_blk.cir @@ -0,0 +1,18 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/DS_blk/DS_blk.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Thu Jul 10 11:45:04 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad6_ Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_X1-Pad5_ 2_in_and +X2 Net-_U1-Pad6_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad7_ Net-_X2-Pad5_ 2_in_and +X3 Net-_X1-Pad5_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_X2-Pad5_ Net-_X3-Pad5_ NOR_2 +X4 Net-_X3-Pad5_ Net-_X4-Pad2_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ D_FF +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ PORT +X5 Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_X5-Pad4_ CMOS_Buf +X6 Net-_X5-Pad4_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_X4-Pad2_ CMOS_INVTR + +.end diff --git a/library/SubcircuitLibrary/SN54L99/DS_blk.cir.out b/library/SubcircuitLibrary/SN54L99/DS_blk.cir.out new file mode 100644 index 000000000..9cbba8aaf --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/DS_blk.cir.out @@ -0,0 +1,31 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/ds_blk/ds_blk.cir + +.include D_FF.sub +.include 2_in_and.sub +.include CMOS_INVTR.sub +.include NOR_2.sub +.include CMOS_Buf.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +x1 net-_u1-pad6_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad7_ net-_x1-pad5_ 2_in_and +x2 net-_u1-pad6_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad7_ net-_x2-pad5_ 2_in_and +x3 net-_x1-pad5_ net-_u1-pad7_ net-_u1-pad6_ net-_x2-pad5_ net-_x3-pad5_ NOR_2 +x4 net-_x3-pad5_ net-_x4-pad2_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ D_FF +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ port +x5 net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad5_ net-_x5-pad4_ CMOS_Buf +x6 net-_x5-pad4_ net-_u1-pad6_ net-_u1-pad7_ net-_x4-pad2_ CMOS_INVTR +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/DS_blk.pro b/library/SubcircuitLibrary/SN54L99/DS_blk.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/DS_blk.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/DS_blk.sch b/library/SubcircuitLibrary/SN54L99/DS_blk.sch new file mode 100644 index 000000000..b08a03928 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/DS_blk.sch @@ -0,0 +1,293 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:DS_blk-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 2_in_and X1 +U 1 1 686E8DA4 +P 4450 2650 +F 0 "X1" H 4500 2650 60 0000 C CNN +F 1 "2_in_and" H 4450 2400 60 0000 C CNN +F 2 "" H 5200 2500 60 0001 C CNN +F 3 "" H 5200 2500 60 0001 C CNN + 1 4450 2650 + 1 0 0 -1 +$EndComp +$Comp +L 2_in_and X2 +U 1 1 686E8DC5 +P 4450 3500 +F 0 "X2" H 4500 3500 60 0000 C CNN +F 1 "2_in_and" H 4450 3250 60 0000 C CNN +F 2 "" H 5200 3350 60 0001 C CNN +F 3 "" H 5200 3350 60 0001 C CNN + 1 4450 3500 + 1 0 0 -1 +$EndComp +$Comp +L NOR_2 X3 +U 1 1 686E8DDE +P 5750 3050 +F 0 "X3" H 5800 3050 60 0000 C CNN +F 1 "NOR_2" H 5750 2800 60 0000 C CNN +F 2 "" H 5650 3050 60 0001 C CNN +F 3 "" H 5650 3050 60 0001 C CNN + 1 5750 3050 + 1 0 0 -1 +$EndComp +$Comp +L D_FF X4 +U 1 1 686E8E0C +P 7050 3100 +F 0 "X4" H 7150 3200 60 0000 C CNN +F 1 "D_FF" H 7050 2900 60 0000 C CNN +F 2 "" H 7050 3100 60 0001 C CNN +F 3 "" H 7050 3100 60 0001 C CNN + 1 7050 3100 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686E8E39 +P 8550 4100 +F 0 "scmode1" H 8550 4250 98 0000 C CNB +F 1 "SKY130mode" H 8550 4000 118 0000 C CNB +F 2 "" H 8550 4250 60 0001 C CNN +F 3 "" H 8550 4250 60 0001 C CNN + 1 8550 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686E8E58 +P 3800 2600 +F 0 "U1" H 3850 2700 30 0000 C CNN +F 1 "PORT" H 3800 2600 30 0000 C CNN +F 2 "" H 3800 2600 60 0000 C CNN +F 3 "" H 3800 2600 60 0000 C CNN + 1 3800 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E8F0F +P 3800 2700 +F 0 "U1" H 3850 2800 30 0000 C CNN +F 1 "PORT" H 3800 2700 30 0000 C CNN +F 2 "" H 3800 2700 60 0000 C CNN +F 3 "" H 3800 2700 60 0000 C CNN + 2 3800 2700 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E8F53 +P 3800 3450 +F 0 "U1" H 3850 3550 30 0000 C CNN +F 1 "PORT" H 3800 3450 30 0000 C CNN +F 2 "" H 3800 3450 60 0000 C CNN +F 3 "" H 3800 3450 60 0000 C CNN + 3 3800 3450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E8F80 +P 3800 3550 +F 0 "U1" H 3850 3650 30 0000 C CNN +F 1 "PORT" H 3800 3550 30 0000 C CNN +F 2 "" H 3800 3550 60 0000 C CNN +F 3 "" H 3800 3550 60 0000 C CNN + 4 3800 3550 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E901D +P 5200 4200 +F 0 "U1" H 5250 4300 30 0000 C CNN +F 1 "PORT" H 5200 4200 30 0000 C CNN +F 2 "" H 5200 4200 60 0000 C CNN +F 3 "" H 5200 4200 60 0000 C CNN + 5 5200 4200 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 686E9099 +P 7700 3150 +F 0 "U1" H 7750 3250 30 0000 C CNN +F 1 "PORT" H 7700 3150 30 0000 C CNN +F 2 "" H 7700 3150 60 0000 C CNN +F 3 "" H 7700 3150 60 0000 C CNN + 8 7700 3150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686E91B5 +P 7300 2400 +F 0 "U1" H 7350 2500 30 0000 C CNN +F 1 "PORT" H 7300 2400 30 0000 C CNN +F 2 "" H 7300 2400 60 0000 C CNN +F 3 "" H 7300 2400 60 0000 C CNN + 6 7300 2400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686E922A +P 7300 3550 +F 0 "U1" H 7350 3650 30 0000 C CNN +F 1 "PORT" H 7300 3550 30 0000 C CNN +F 2 "" H 7300 3550 60 0000 C CNN +F 3 "" H 7300 3550 60 0000 C CNN + 7 7300 3550 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4900 2650 4900 3000 +Wire Wire Line + 4900 3000 5400 3000 +Wire Wire Line + 4900 3500 4900 3100 +Wire Wire Line + 4900 3100 5400 3100 +Wire Wire Line + 4050 2400 4050 2500 +Wire Wire Line + 4050 2400 7050 2400 +Wire Wire Line + 7050 2400 7050 2700 +Connection ~ 7050 2400 +Connection ~ 7050 3550 +Wire Wire Line + 4050 3650 4050 3800 +Wire Wire Line + 4050 3800 7050 3800 +Wire Wire Line + 7050 3800 7050 3450 +Wire Wire Line + 5350 2900 5350 2400 +Connection ~ 5350 2400 +Wire Wire Line + 5350 3200 5350 3800 +Connection ~ 5350 3800 +Wire Wire Line + 4050 3350 4050 3200 +Wire Wire Line + 4050 3200 5150 3200 +Wire Wire Line + 5150 3200 5150 2400 +Connection ~ 5150 2400 +Wire Wire Line + 4050 2800 4050 2950 +Wire Wire Line + 4050 2950 5200 2950 +Wire Wire Line + 5200 2950 5200 3800 +Connection ~ 5200 3800 +Wire Wire Line + 6200 3050 6650 3050 +$Comp +L CMOS_Buf X5 +U 1 1 686F5D94 +P 5900 4200 +F 0 "X5" H 5900 4200 60 0000 C CNN +F 1 "CMOS_Buf" H 5900 4000 60 0000 C CNN +F 2 "" H 5900 4200 60 0001 C CNN +F 3 "" H 5900 4200 60 0001 C CNN + 1 5900 4200 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X6 +U 1 1 686F5DD5 +P 6750 4200 +F 0 "X6" H 6750 4200 60 0000 C CNN +F 1 "CMOS_INVTR" H 6800 4000 60 0000 C CNN +F 2 "" H 6750 4200 60 0001 C CNN +F 3 "" H 6750 4200 60 0001 C CNN + 1 6750 4200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7300 4200 7300 3850 +Wire Wire Line + 7300 3850 6650 3850 +Wire Wire Line + 6650 3850 6650 3150 +Wire Wire Line + 5450 4100 5450 4000 +Wire Wire Line + 5450 4000 6350 4000 +Wire Wire Line + 6350 2400 6350 4100 +Connection ~ 6350 2400 +Connection ~ 6350 4000 +Wire Wire Line + 6350 4300 6350 4400 +Wire Wire Line + 5450 4400 7550 4400 +Wire Wire Line + 7550 4400 7550 3750 +Wire Wire Line + 7550 3750 7050 3750 +Wire Wire Line + 7050 3750 7050 3550 +Wire Wire Line + 5450 4300 5450 4400 +Connection ~ 6350 4400 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/DS_blk.sub b/library/SubcircuitLibrary/SN54L99/DS_blk.sub new file mode 100644 index 000000000..6fe4576b5 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/DS_blk.sub @@ -0,0 +1,25 @@ +* Subcircuit DS_blk +.subckt DS_blk net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/ds_blk/ds_blk.cir +.include D_FF.sub +.include 2_in_and.sub +.include CMOS_INVTR.sub +.include NOR_2.sub +.include CMOS_Buf.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +x1 net-_u1-pad6_ net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad7_ net-_x1-pad5_ 2_in_and +x2 net-_u1-pad6_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad7_ net-_x2-pad5_ 2_in_and +x3 net-_x1-pad5_ net-_u1-pad7_ net-_u1-pad6_ net-_x2-pad5_ net-_x3-pad5_ NOR_2 +x4 net-_x3-pad5_ net-_x4-pad2_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ D_FF +* s c m o d e +x5 net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad5_ net-_x5-pad4_ CMOS_Buf +x6 net-_x5-pad4_ net-_u1-pad6_ net-_u1-pad7_ net-_x4-pad2_ CMOS_INVTR +* Control Statements + +.ends DS_blk \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/DS_blk_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/DS_blk_Previous_Values.xml new file mode 100644 index 000000000..d06329f5a --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/DS_blk_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/2_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/2_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_FF/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_Buf/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/D_FF-cache.lib b/library/SubcircuitLibrary/SN54L99/D_FF-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/D_FF-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/D_FF.bak b/library/SubcircuitLibrary/SN54L99/D_FF.bak new file mode 100644 index 000000000..61b02ff48 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/D_FF.bak @@ -0,0 +1,246 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode? +U 1 1 685A3E76 +P 9400 3200 +F 0 "scmode?" H 9400 3350 98 0000 C CNB +F 1 "SKY130mode" H 9400 3100 118 0000 C CNB +F 2 "" H 9400 3350 60 0001 C CNN +F 3 "" H 9400 3350 60 0001 C CNN + 1 9400 3200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC? +U 1 1 685A3EBD +P 4000 3300 +F 0 "SC?" H 4050 3600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4300 3387 50 0000 R CNN +F 2 "" H 4000 1800 50 0001 C CNN +F 3 "" H 4000 3300 50 0001 C CNN + 1 4000 3300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3EFC +P 4000 4100 +F 0 "SC?" H 4050 4400 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4187 50 0000 R CNN +F 2 "" H 4000 2600 50 0001 C CNN +F 3 "" H 4000 4100 50 0001 C CNN + 1 4000 4100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3F47 +P 4000 4900 +F 0 "SC?" H 4050 5200 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4987 50 0000 R CNN +F 2 "" H 4000 3400 50 0001 C CNN +F 3 "" H 4000 4900 50 0001 C CNN + 1 4000 4900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC? +U 1 1 685A3F7A +P 4950 3700 +F 0 "SC?" H 5000 4000 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5250 3787 50 0000 R CNN +F 2 "" H 4950 2200 50 0001 C CNN +F 3 "" H 4950 3700 50 0001 C CNN + 1 4950 3700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3FCF +P 4950 4500 +F 0 "SC?" H 5000 4800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5250 4587 50 0000 R CNN +F 2 "" H 4950 3000 50 0001 C CNN +F 3 "" H 4950 4500 50 0001 C CNN + 1 4950 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 1 1 685A401A +P 3250 3550 +F 0 "U?" H 3300 3650 30 0000 C CNN +F 1 "PORT" H 3250 3550 30 0000 C CNN +F 2 "" H 3250 3550 60 0000 C CNN +F 3 "" H 3250 3550 60 0000 C CNN + 1 3250 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 2 1 685A40FF +P 3250 4100 +F 0 "U?" H 3300 4200 30 0000 C CNN +F 1 "PORT" H 3250 4100 30 0000 C CNN +F 2 "" H 3250 4100 60 0000 C CNN +F 3 "" H 3250 4100 60 0000 C CNN + 2 3250 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 3 1 685A4132 +P 3950 2750 +F 0 "U?" H 4000 2850 30 0000 C CNN +F 1 "PORT" H 3950 2750 30 0000 C CNN +F 2 "" H 3950 2750 60 0000 C CNN +F 3 "" H 3950 2750 60 0000 C CNN + 3 3950 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 4 1 685A41B1 +P 3950 5350 +F 0 "U?" H 4000 5450 30 0000 C CNN +F 1 "PORT" H 3950 5350 30 0000 C CNN +F 2 "" H 3950 5350 60 0000 C CNN +F 3 "" H 3950 5350 60 0000 C CNN + 4 3950 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 5 1 685A4206 +P 5700 4100 +F 0 "U?" H 5750 4200 30 0000 C CNN +F 1 "PORT" H 5700 4100 30 0000 C CNN +F 2 "" H 5700 4100 60 0000 C CNN +F 3 "" H 5700 4100 60 0000 C CNN + 5 5700 4100 + -1 0 0 1 +$EndComp +Wire Wire Line + 4200 3600 4200 3800 +Wire Wire Line + 3700 3300 3600 3300 +Wire Wire Line + 3600 3300 3600 4900 +Wire Wire Line + 3600 4900 3700 4900 +Wire Wire Line + 3500 3550 3600 3550 +Connection ~ 3600 3550 +Wire Wire Line + 3500 4100 3700 4100 +Wire Wire Line + 4200 2750 4200 3000 +Wire Wire Line + 4650 3700 4200 3700 +Connection ~ 4200 3700 +Wire Wire Line + 4200 4400 4200 4600 +Wire Wire Line + 4650 4500 4200 4500 +Connection ~ 4200 4500 +Wire Wire Line + 5150 4000 5150 4200 +Wire Wire Line + 5450 4100 5150 4100 +Connection ~ 5150 4100 +Wire Wire Line + 4200 5200 4200 5350 +Wire Wire Line + 4100 4900 4250 4900 +Wire Wire Line + 4250 4900 4250 5250 +Wire Wire Line + 4200 5250 5150 5250 +Connection ~ 4200 5250 +Wire Wire Line + 5150 5250 5150 4800 +Connection ~ 4250 5250 +Wire Wire Line + 5050 4500 5200 4500 +Wire Wire Line + 5200 4500 5200 4850 +Wire Wire Line + 5200 4850 5150 4850 +Connection ~ 5150 4850 +Wire Wire Line + 4100 4100 4250 4100 +Wire Wire Line + 4250 4100 4250 4500 +Connection ~ 4250 4500 +Wire Wire Line + 4100 3300 4250 3300 +Wire Wire Line + 4250 3300 4250 2950 +Wire Wire Line + 4200 2950 5150 2950 +Connection ~ 4200 2950 +Wire Wire Line + 5150 2950 5150 3400 +Connection ~ 4250 2950 +Wire Wire Line + 5050 3700 5200 3700 +Wire Wire Line + 5200 3700 5200 3350 +Wire Wire Line + 5200 3350 5150 3350 +Connection ~ 5150 3350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/D_FF.cir b/library/SubcircuitLibrary/SN54L99/D_FF.cir new file mode 100644 index 000000000..7d45c3cd5 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/D_FF.cir @@ -0,0 +1,17 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_FF/D_FF.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sun Jul 6 10:25:49 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +scmode1 SKY130mode +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +SC3 Net-_SC2-Pad3_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC4-Pad1_ Net-_SC1-Pad1_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC5 Net-_SC4-Pad1_ Net-_SC2-Pad3_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC3-Pad3_ Net-_SC4-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN54L99/D_FF.cir.out b/library/SubcircuitLibrary/SN54L99/D_FF.cir.out new file mode 100644 index 000000000..9d076c7f0 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/D_FF.cir.out @@ -0,0 +1,25 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/d_ff/d_ff.cir + +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +* s c m o d e +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc3 net-_sc2-pad3_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc4-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc4-pad1_ net-_sc2-pad3_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad3_ net-_sc4-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/D_FF.pro b/library/SubcircuitLibrary/SN54L99/D_FF.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/D_FF.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/D_FF.sch b/library/SubcircuitLibrary/SN54L99/D_FF.sch new file mode 100644 index 000000000..722069493 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/D_FF.sch @@ -0,0 +1,246 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 685A3E76 +P 9400 3200 +F 0 "scmode1" H 9400 3350 98 0000 C CNB +F 1 "SKY130mode" H 9400 3100 118 0000 C CNB +F 2 "" H 9400 3350 60 0001 C CNN +F 3 "" H 9400 3350 60 0001 C CNN + 1 9400 3200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 685A3EBD +P 4000 3300 +F 0 "SC1" H 4050 3600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4300 3387 50 0000 R CNN +F 2 "" H 4000 1800 50 0001 C CNN +F 3 "" H 4000 3300 50 0001 C CNN + 1 4000 3300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 685A3EFC +P 4000 4100 +F 0 "SC2" H 4050 4400 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4187 50 0000 R CNN +F 2 "" H 4000 2600 50 0001 C CNN +F 3 "" H 4000 4100 50 0001 C CNN + 1 4000 4100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 685A3F47 +P 4000 4900 +F 0 "SC3" H 4050 5200 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4987 50 0000 R CNN +F 2 "" H 4000 3400 50 0001 C CNN +F 3 "" H 4000 4900 50 0001 C CNN + 1 4000 4900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 685A3F7A +P 4950 3700 +F 0 "SC4" H 5000 4000 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5250 3787 50 0000 R CNN +F 2 "" H 4950 2200 50 0001 C CNN +F 3 "" H 4950 3700 50 0001 C CNN + 1 4950 3700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 685A3FCF +P 4950 4500 +F 0 "SC5" H 5000 4800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5250 4587 50 0000 R CNN +F 2 "" H 4950 3000 50 0001 C CNN +F 3 "" H 4950 4500 50 0001 C CNN + 1 4950 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685A401A +P 3250 3550 +F 0 "U1" H 3300 3650 30 0000 C CNN +F 1 "PORT" H 3250 3550 30 0000 C CNN +F 2 "" H 3250 3550 60 0000 C CNN +F 3 "" H 3250 3550 60 0000 C CNN + 1 3250 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685A40FF +P 3250 4100 +F 0 "U1" H 3300 4200 30 0000 C CNN +F 1 "PORT" H 3250 4100 30 0000 C CNN +F 2 "" H 3250 4100 60 0000 C CNN +F 3 "" H 3250 4100 60 0000 C CNN + 2 3250 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685A4132 +P 3950 2750 +F 0 "U1" H 4000 2850 30 0000 C CNN +F 1 "PORT" H 3950 2750 30 0000 C CNN +F 2 "" H 3950 2750 60 0000 C CNN +F 3 "" H 3950 2750 60 0000 C CNN + 3 3950 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685A41B1 +P 3950 5350 +F 0 "U1" H 4000 5450 30 0000 C CNN +F 1 "PORT" H 3950 5350 30 0000 C CNN +F 2 "" H 3950 5350 60 0000 C CNN +F 3 "" H 3950 5350 60 0000 C CNN + 4 3950 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685A4206 +P 5700 4100 +F 0 "U1" H 5750 4200 30 0000 C CNN +F 1 "PORT" H 5700 4100 30 0000 C CNN +F 2 "" H 5700 4100 60 0000 C CNN +F 3 "" H 5700 4100 60 0000 C CNN + 5 5700 4100 + -1 0 0 1 +$EndComp +Wire Wire Line + 4200 3600 4200 3800 +Wire Wire Line + 3700 3300 3600 3300 +Wire Wire Line + 3600 3300 3600 4900 +Wire Wire Line + 3600 4900 3700 4900 +Wire Wire Line + 3500 3550 3600 3550 +Connection ~ 3600 3550 +Wire Wire Line + 3500 4100 3700 4100 +Wire Wire Line + 4200 2750 4200 3000 +Wire Wire Line + 4650 3700 4200 3700 +Connection ~ 4200 3700 +Wire Wire Line + 4200 4400 4200 4600 +Wire Wire Line + 4650 4500 4200 4500 +Connection ~ 4200 4500 +Wire Wire Line + 5150 4000 5150 4200 +Wire Wire Line + 5450 4100 5150 4100 +Connection ~ 5150 4100 +Wire Wire Line + 4200 5200 4200 5350 +Wire Wire Line + 4100 4900 4250 4900 +Wire Wire Line + 4250 4900 4250 5250 +Wire Wire Line + 4200 5250 5150 5250 +Connection ~ 4200 5250 +Wire Wire Line + 5150 5250 5150 4800 +Connection ~ 4250 5250 +Wire Wire Line + 5050 4500 5200 4500 +Wire Wire Line + 5200 4500 5200 4850 +Wire Wire Line + 5200 4850 5150 4850 +Connection ~ 5150 4850 +Wire Wire Line + 4100 4100 4250 4100 +Wire Wire Line + 4250 4100 4250 4500 +Connection ~ 4250 4500 +Wire Wire Line + 4100 3300 4250 3300 +Wire Wire Line + 4250 3300 4250 2950 +Wire Wire Line + 4200 2950 5150 2950 +Connection ~ 4200 2950 +Wire Wire Line + 5150 2950 5150 3400 +Connection ~ 4250 2950 +Wire Wire Line + 5050 3700 5200 3700 +Wire Wire Line + 5200 3700 5200 3350 +Wire Wire Line + 5200 3350 5150 3350 +Connection ~ 5150 3350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/D_FF.sub b/library/SubcircuitLibrary/SN54L99/D_FF.sub new file mode 100644 index 000000000..d686ca626 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/D_FF.sub @@ -0,0 +1,19 @@ +* Subcircuit D_FF +.subckt D_FF net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad3_ net-_sc4-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/d_ff/d_ff.cir +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +* s c m o d e +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc3 net-_sc2-pad3_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc4-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc4-pad1_ net-_sc2-pad3_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* Control Statements + +.ends D_FF \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/D_FF_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/D_FF_Previous_Values.xml new file mode 100644 index 000000000..87f2534ab --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/D_FF_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/NAND_2-cache.lib b/library/SubcircuitLibrary/SN54L99/NAND_2-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_2-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/NAND_2.bak b/library/SubcircuitLibrary/SN54L99/NAND_2.bak new file mode 100644 index 000000000..ad9819396 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_2.bak @@ -0,0 +1,221 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684AF0E9 +P 4750 2050 +F 0 "SC2" H 4800 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5050 2137 50 0000 R CNN +F 2 "" H 4750 550 50 0001 C CNN +F 3 "" H 4750 2050 50 0001 C CNN + 1 4750 2050 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684AF14C +P 5150 2750 +F 0 "SC3" H 5200 3050 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 2837 50 0000 R CNN +F 2 "" H 5150 1250 50 0001 C CNN +F 3 "" H 5150 2750 50 0001 C CNN + 1 5150 2750 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF1CF +P 4200 3600 +F 0 "SC1" H 4250 3900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4500 3687 50 0000 R CNN +F 2 "" H 4200 2100 50 0001 C CNN +F 3 "" H 4200 3600 50 0001 C CNN + 1 4200 3600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684AF20C +P 5550 3600 +F 0 "SC4" H 5600 3900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5850 3687 50 0000 R CNN +F 2 "" H 5550 2100 50 0001 C CNN +F 3 "" H 5550 3600 50 0001 C CNN + 1 5550 3600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF271 +P 4650 1550 +F 0 "U1" H 4700 1650 30 0000 C CNN +F 1 "PORT" H 4650 1550 30 0000 C CNN +F 2 "" H 4650 1550 60 0000 C CNN +F 3 "" H 4650 1550 60 0000 C CNN + 3 4650 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF336 +P 3550 2650 +F 0 "U1" H 3600 2750 30 0000 C CNN +F 1 "PORT" H 3550 2650 30 0000 C CNN +F 2 "" H 3550 2650 60 0000 C CNN +F 3 "" H 3550 2650 60 0000 C CNN + 1 3550 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AF413 +P 6200 2750 +F 0 "U1" H 6250 2850 30 0000 C CNN +F 1 "PORT" H 6200 2750 30 0000 C CNN +F 2 "" H 6200 2750 60 0000 C CNN +F 3 "" H 6200 2750 60 0000 C CNN + 4 6200 2750 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF82C +P 6200 3150 +F 0 "U1" H 6250 3250 30 0000 C CNN +F 1 "PORT" H 6200 3150 30 0000 C CNN +F 2 "" H 6200 3150 60 0000 C CNN +F 3 "" H 6200 3150 60 0000 C CNN + 5 6200 3150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF895 +P 4550 4050 +F 0 "U1" H 4600 4150 30 0000 C CNN +F 1 "PORT" H 4550 4050 30 0000 C CNN +F 2 "" H 4550 4050 60 0000 C CNN +F 3 "" H 4550 4050 60 0000 C CNN + 2 4550 4050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4400 3900 5350 3900 +Wire Wire Line + 4800 4050 4800 3900 +Connection ~ 4800 3900 +Wire Wire Line + 4300 3600 4450 3600 +Wire Wire Line + 4450 3600 4450 3900 +Connection ~ 4450 3900 +Wire Wire Line + 5450 3600 5300 3600 +Wire Wire Line + 5300 3600 5300 3900 +Connection ~ 5300 3900 +Wire Wire Line + 4400 3300 5350 3300 +Wire Wire Line + 4950 3050 4950 3300 +Connection ~ 4950 3300 +Wire Wire Line + 5950 3150 4950 3150 +Connection ~ 4950 3150 +Wire Wire Line + 5450 2750 5950 2750 +Wire Wire Line + 5850 2750 5850 3600 +Wire Wire Line + 5050 2750 4900 2750 +Wire Wire Line + 4900 2750 4900 2400 +Wire Wire Line + 4900 2400 4950 2400 +Wire Wire Line + 4950 2350 4950 2450 +Connection ~ 4950 2400 +Wire Wire Line + 4450 2050 3900 2050 +Wire Wire Line + 3900 2050 3900 3600 +Wire Wire Line + 3800 2650 3900 2650 +Connection ~ 3900 2650 +Connection ~ 5850 2750 +Wire Wire Line + 4850 2050 5000 2050 +Wire Wire Line + 5000 2050 5000 1650 +Wire Wire Line + 5000 1650 4950 1650 +Wire Wire Line + 4950 1550 4950 1750 +Wire Wire Line + 4900 1550 4950 1550 +Connection ~ 4950 1650 +$Comp +L SKY130mode scmode1 +U 1 1 684AFD6B +P 7350 2150 +F 0 "scmode1" H 7350 2300 98 0000 C CNB +F 1 "SKY130mode" H 7350 2050 118 0000 C CNB +F 2 "" H 7350 2300 60 0001 C CNN +F 3 "" H 7350 2300 60 0001 C CNN + 1 7350 2150 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/NAND_2.cir b/library/SubcircuitLibrary/SN54L99/NAND_2.cir new file mode 100644 index 000000000..f3da72301 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_2.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/NAND_2.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sun Jul 6 17:51:58 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC1-Pad3_ Net-_SC3-Pad2_ Net-_SC4-Pad3_ Net-_SC4-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC4-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ Net-_SC3-Pad2_ PORT +scmode1 SKY130mode +SC3 Net-_SC1-Pad1_ Net-_SC3-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 + +.end diff --git a/library/SubcircuitLibrary/SN54L99/NAND_2.cir.out b/library/SubcircuitLibrary/SN54L99/NAND_2.cir.out new file mode 100644 index 000000000..15401b956 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_2.cir.out @@ -0,0 +1,18 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_2/nand_2.cir + + +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad3_ net-_sc3-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc4-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ net-_sc3-pad2_ port +* s c m o d e +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/NAND_2.pro b/library/SubcircuitLibrary/SN54L99/NAND_2.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_2.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/NAND_2.sch b/library/SubcircuitLibrary/SN54L99/NAND_2.sch new file mode 100644 index 000000000..ebef1d4c6 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_2.sch @@ -0,0 +1,222 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:NAND_2-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684AF0E9 +P 4200 2050 +F 0 "SC2" H 4250 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4500 2137 50 0000 R CNN +F 2 "" H 4200 550 50 0001 C CNN +F 3 "" H 4200 2050 50 0001 C CNN + 1 4200 2050 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF1CF +P 4450 2850 +F 0 "SC1" H 4500 3150 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4750 2937 50 0000 R CNN +F 2 "" H 4450 1350 50 0001 C CNN +F 3 "" H 4450 2850 50 0001 C CNN + 1 4450 2850 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684AF20C +P 4850 3550 +F 0 "SC4" H 4900 3850 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5150 3637 50 0000 R CNN +F 2 "" H 4850 2050 50 0001 C CNN +F 3 "" H 4850 3550 50 0001 C CNN + 1 4850 3550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF271 +P 4350 1550 +F 0 "U1" H 4400 1650 30 0000 C CNN +F 1 "PORT" H 4350 1550 30 0000 C CNN +F 2 "" H 4350 1550 60 0000 C CNN +F 3 "" H 4350 1550 60 0000 C CNN + 3 4350 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF336 +P 3550 2650 +F 0 "U1" H 3600 2750 30 0000 C CNN +F 1 "PORT" H 3550 2650 30 0000 C CNN +F 2 "" H 3550 2650 60 0000 C CNN +F 3 "" H 3550 2650 60 0000 C CNN + 1 3550 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AF413 +P 5750 2450 +F 0 "U1" H 5800 2550 30 0000 C CNN +F 1 "PORT" H 5750 2450 30 0000 C CNN +F 2 "" H 5750 2450 60 0000 C CNN +F 3 "" H 5750 2450 60 0000 C CNN + 4 5750 2450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF82C +P 5750 3300 +F 0 "U1" H 5800 3400 30 0000 C CNN +F 1 "PORT" H 5750 3300 30 0000 C CNN +F 2 "" H 5750 3300 60 0000 C CNN +F 3 "" H 5750 3300 60 0000 C CNN + 5 5750 3300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF895 +P 4400 4000 +F 0 "U1" H 4450 4100 30 0000 C CNN +F 1 "PORT" H 4400 4000 30 0000 C CNN +F 2 "" H 4400 4000 60 0000 C CNN +F 3 "" H 4400 4000 60 0000 C CNN + 2 4400 4000 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684AFD6B +P 7350 2150 +F 0 "scmode1" H 7350 2300 98 0000 C CNB +F 1 "SKY130mode" H 7350 2050 118 0000 C CNB +F 2 "" H 7350 2300 60 0001 C CNN +F 3 "" H 7350 2300 60 0001 C CNN + 1 7350 2150 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684CF41D +P 5000 2050 +F 0 "SC3" H 5050 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5300 2137 50 0000 R CNN +F 2 "" H 5000 550 50 0001 C CNN +F 3 "" H 5000 2050 50 0001 C CNN + 1 5000 2050 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4400 1750 4800 1750 +Wire Wire Line + 4600 1550 4600 1750 +Connection ~ 4600 1750 +Wire Wire Line + 4300 2050 4450 2050 +Wire Wire Line + 4450 2050 4450 1750 +Connection ~ 4450 1750 +Wire Wire Line + 4900 2050 4750 2050 +Wire Wire Line + 4750 2050 4750 1750 +Connection ~ 4750 1750 +Wire Wire Line + 4400 2350 4800 2350 +Wire Wire Line + 4650 2550 4650 2350 +Connection ~ 4650 2350 +Wire Wire Line + 5500 2450 4650 2450 +Connection ~ 4650 2450 +Wire Wire Line + 3900 2050 3900 2850 +Wire Wire Line + 3900 2850 4150 2850 +Wire Wire Line + 3800 2650 3900 2650 +Connection ~ 3900 2650 +Wire Wire Line + 5300 2050 5300 3550 +Wire Wire Line + 5300 3550 5150 3550 +Wire Wire Line + 5500 3300 5300 3300 +Connection ~ 5300 3300 +Wire Wire Line + 4550 2850 4700 2850 +Wire Wire Line + 4700 2850 4700 3200 +Wire Wire Line + 4700 3200 4650 3200 +Wire Wire Line + 4650 3150 4650 3250 +Connection ~ 4650 3200 +Wire Wire Line + 4650 3850 4650 4000 +Wire Wire Line + 4750 3550 4600 3550 +Wire Wire Line + 4600 3550 4600 3900 +Wire Wire Line + 4600 3900 4650 3900 +Connection ~ 4650 3900 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/NAND_2.sub b/library/SubcircuitLibrary/SN54L99/NAND_2.sub new file mode 100644 index 000000000..aa6beac0d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_2.sub @@ -0,0 +1,12 @@ +* Subcircuit NAND_2 +.subckt NAND_2 net-_sc1-pad2_ net-_sc4-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ net-_sc3-pad2_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_2/nand_2.cir + +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad3_ net-_sc3-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +* Control Statements + +.ends NAND_2 diff --git a/library/SubcircuitLibrary/SN54L99/NAND_2_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/NAND_2_Previous_Values.xml new file mode 100644 index 000000000..066d43a60 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_2_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/NAND_3-cache.lib b/library/SubcircuitLibrary/SN54L99/NAND_3-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_3-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/NAND_3.bak b/library/SubcircuitLibrary/SN54L99/NAND_3.bak new file mode 100644 index 000000000..d9890c5d1 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_3.bak @@ -0,0 +1,287 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684AF360 +P 5550 2300 +F 0 "SC3" H 5600 2600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5850 2387 50 0000 R CNN +F 2 "" H 5550 800 50 0001 C CNN +F 3 "" H 5550 2300 50 0001 C CNN + 1 5550 2300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 684AF39D +P 5550 3100 +F 0 "SC4" H 5600 3400 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5850 3187 50 0000 R CNN +F 2 "" H 5550 1600 50 0001 C CNN +F 3 "" H 5550 3100 50 0001 C CNN + 1 5550 3100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC5 +U 1 1 684AF420 +P 5950 3800 +F 0 "SC5" H 6000 4100 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6250 3887 50 0000 R CNN +F 2 "" H 5950 2300 50 0001 C CNN +F 3 "" H 5950 3800 50 0001 C CNN + 1 5950 3800 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF50C +P 4450 4700 +F 0 "SC1" H 4500 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4750 4787 50 0000 R CNN +F 2 "" H 4450 3200 50 0001 C CNN +F 3 "" H 4450 4700 50 0001 C CNN + 1 4450 4700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684AF577 +P 5500 4700 +F 0 "SC2" H 5550 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5800 4787 50 0000 R CNN +F 2 "" H 5500 3200 50 0001 C CNN +F 3 "" H 5500 4700 50 0001 C CNN + 1 5500 4700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC6 +U 1 1 684AF5EC +P 6450 4700 +F 0 "SC6" H 6500 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6750 4787 50 0000 R CNN +F 2 "" H 6450 3200 50 0001 C CNN +F 3 "" H 6450 4700 50 0001 C CNN + 1 6450 4700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF63F +P 3700 4000 +F 0 "U1" H 3750 4100 30 0000 C CNN +F 1 "PORT" H 3700 4000 30 0000 C CNN +F 2 "" H 3700 4000 60 0000 C CNN +F 3 "" H 3700 4000 60 0000 C CNN + 1 3700 4000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF6CC +P 4850 3850 +F 0 "U1" H 4900 3950 30 0000 C CNN +F 1 "PORT" H 4850 3850 30 0000 C CNN +F 2 "" H 4850 3850 60 0000 C CNN +F 3 "" H 4850 3850 60 0000 C CNN + 2 4850 3850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF829 +P 7050 3800 +F 0 "U1" H 7100 3900 30 0000 C CNN +F 1 "PORT" H 7050 3800 30 0000 C CNN +F 2 "" H 7050 3800 60 0000 C CNN +F 3 "" H 7050 3800 60 0000 C CNN + 5 7050 3800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684AF94D +P 7150 4200 +F 0 "U1" H 7200 4300 30 0000 C CNN +F 1 "PORT" H 7150 4200 30 0000 C CNN +F 2 "" H 7150 4200 60 0000 C CNN +F 3 "" H 7150 4200 60 0000 C CNN + 6 7150 4200 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF9FE +P 5100 5200 +F 0 "U1" H 5150 5300 30 0000 C CNN +F 1 "PORT" H 5100 5200 30 0000 C CNN +F 2 "" H 5100 5200 60 0000 C CNN +F 3 "" H 5100 5200 60 0000 C CNN + 3 5100 5200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AFAE6 +P 5500 1750 +F 0 "U1" H 5550 1850 30 0000 C CNN +F 1 "PORT" H 5500 1750 30 0000 C CNN +F 2 "" H 5500 1750 60 0000 C CNN +F 3 "" H 5500 1750 60 0000 C CNN + 4 5500 1750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5650 2300 5800 2300 +Wire Wire Line + 5800 2300 5800 1950 +Wire Wire Line + 5800 1950 5750 1950 +Wire Wire Line + 5750 1750 5750 2000 +Connection ~ 5750 1950 +Wire Wire Line + 5750 2600 5750 2800 +Wire Wire Line + 5650 3100 5800 3100 +Wire Wire Line + 5800 3100 5800 2750 +Wire Wire Line + 5800 2750 5750 2750 +Connection ~ 5750 2750 +Wire Wire Line + 5750 3500 5750 3400 +Wire Wire Line + 5850 3800 5700 3800 +Wire Wire Line + 5700 3800 5700 3450 +Wire Wire Line + 5700 3450 5750 3450 +Connection ~ 5750 3450 +Wire Wire Line + 4650 4400 4650 4300 +Wire Wire Line + 4650 4300 6250 4300 +Wire Wire Line + 6250 4300 6250 4400 +Wire Wire Line + 5700 4400 5700 4300 +Connection ~ 5700 4300 +Wire Wire Line + 5750 4100 5750 4300 +Connection ~ 5750 4300 +Wire Wire Line + 4650 5000 4650 5050 +Wire Wire Line + 4650 5050 6250 5050 +Wire Wire Line + 6250 5050 6250 5000 +Wire Wire Line + 5700 5000 5700 5050 +Connection ~ 5700 5050 +Wire Wire Line + 5350 5200 5350 5050 +Connection ~ 5350 5050 +Wire Wire Line + 4550 4700 4700 4700 +Wire Wire Line + 4700 4700 4700 5050 +Connection ~ 4700 5050 +Wire Wire Line + 5600 4700 5750 4700 +Wire Wire Line + 5750 4700 5750 5050 +Connection ~ 5750 5050 +Wire Wire Line + 6350 4700 6200 4700 +Wire Wire Line + 6200 4700 6200 5050 +Connection ~ 6200 5050 +Wire Wire Line + 4150 2300 4150 4700 +Wire Wire Line + 3950 4000 4150 4000 +Connection ~ 4150 4000 +Wire Wire Line + 5250 2300 4150 2300 +Wire Wire Line + 5250 3100 5200 3100 +Wire Wire Line + 5200 3100 5200 4700 +Wire Wire Line + 6250 3800 6800 3800 +Wire Wire Line + 6750 3800 6750 4700 +Connection ~ 6750 3800 +Wire Wire Line + 5100 3850 5200 3850 +Connection ~ 5200 3850 +Wire Wire Line + 6900 4200 5750 4200 +Connection ~ 5750 4200 +$Comp +L SKY130mode scmode1 +U 1 1 684B00C1 +P 8250 2900 +F 0 "scmode1" H 8250 3050 98 0000 C CNB +F 1 "SKY130mode" H 8250 2800 118 0000 C CNB +F 2 "" H 8250 3050 60 0001 C CNN +F 3 "" H 8250 3050 60 0001 C CNN + 1 8250 2900 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/NAND_3.cir b/library/SubcircuitLibrary/SN54L99/NAND_3.cir new file mode 100644 index 000000000..e4f46e26d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_3.cir @@ -0,0 +1,18 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/NAND_3.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 09:30:02 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC3 Net-_SC2-Pad1_ Net-_SC2-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__pfet_01v8 +SC4 Net-_SC2-Pad1_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__pfet_01v8 +SC5 Net-_SC2-Pad1_ Net-_SC5-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC6 Net-_SC1-Pad3_ Net-_SC5-Pad2_ Net-_SC6-Pad3_ Net-_SC6-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC2-Pad2_ Net-_SC1-Pad2_ Net-_SC6-Pad3_ Net-_SC3-Pad3_ Net-_SC2-Pad1_ Net-_SC5-Pad2_ PORT +scmode1 SKY130mode +SC2 Net-_SC2-Pad1_ Net-_SC2-Pad2_ Net-_SC1-Pad1_ Net-_SC1-Pad1_ sky130_fd_pr__nfet_01v8 + +.end diff --git a/library/SubcircuitLibrary/SN54L99/NAND_3.cir.out b/library/SubcircuitLibrary/SN54L99/NAND_3.cir.out new file mode 100644 index 000000000..b08a2163a --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_3.cir.out @@ -0,0 +1,21 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_3/nand_3.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc3 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc4 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc2-pad1_ net-_sc5-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc1-pad3_ net-_sc5-pad2_ net-_sc6-pad3_ net-_sc6-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc2-pad2_ net-_sc1-pad2_ net-_sc6-pad3_ net-_sc3-pad3_ net-_sc2-pad1_ net-_sc5-pad2_ port +* s c m o d e +xsc2 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/NAND_3.pro b/library/SubcircuitLibrary/SN54L99/NAND_3.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_3.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/NAND_3.sch b/library/SubcircuitLibrary/SN54L99/NAND_3.sch new file mode 100644 index 000000000..eb96f8eac --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_3.sch @@ -0,0 +1,289 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:NAND_3-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684AF360 +P 4200 2350 +F 0 "SC3" H 4250 2650 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4500 2437 50 0000 R CNN +F 2 "" H 4200 850 50 0001 C CNN +F 3 "" H 4200 2350 50 0001 C CNN + 1 4200 2350 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 684AF39D +P 5250 2350 +F 0 "SC4" H 5300 2650 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5550 2437 50 0000 R CNN +F 2 "" H 5250 850 50 0001 C CNN +F 3 "" H 5250 2350 50 0001 C CNN + 1 5250 2350 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC5 +U 1 1 684AF420 +P 6100 2350 +F 0 "SC5" H 6150 2650 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6400 2437 50 0000 R CNN +F 2 "" H 6100 850 50 0001 C CNN +F 3 "" H 6100 2350 50 0001 C CNN + 1 6100 2350 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF50C +P 5250 4000 +F 0 "SC1" H 5300 4300 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5550 4087 50 0000 R CNN +F 2 "" H 5250 2500 50 0001 C CNN +F 3 "" H 5250 4000 50 0001 C CNN + 1 5250 4000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC6 +U 1 1 684AF5EC +P 5650 4700 +F 0 "SC6" H 5700 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5950 4787 50 0000 R CNN +F 2 "" H 5650 3200 50 0001 C CNN +F 3 "" H 5650 4700 50 0001 C CNN + 1 5650 4700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF63F +P 3450 2350 +F 0 "U1" H 3500 2450 30 0000 C CNN +F 1 "PORT" H 3450 2350 30 0000 C CNN +F 2 "" H 3450 2350 60 0000 C CNN +F 3 "" H 3450 2350 60 0000 C CNN + 1 3450 2350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF6CC +P 4500 4000 +F 0 "U1" H 4550 4100 30 0000 C CNN +F 1 "PORT" H 4500 4000 30 0000 C CNN +F 2 "" H 4500 4000 60 0000 C CNN +F 3 "" H 4500 4000 60 0000 C CNN + 2 4500 4000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF829 +P 6300 2800 +F 0 "U1" H 6350 2900 30 0000 C CNN +F 1 "PORT" H 6300 2800 30 0000 C CNN +F 2 "" H 6300 2800 60 0000 C CNN +F 3 "" H 6300 2800 60 0000 C CNN + 5 6300 2800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684AF94D +P 6850 2350 +F 0 "U1" H 6900 2450 30 0000 C CNN +F 1 "PORT" H 6850 2350 30 0000 C CNN +F 2 "" H 6850 2350 60 0000 C CNN +F 3 "" H 6850 2350 60 0000 C CNN + 6 6850 2350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF9FE +P 5100 5200 +F 0 "U1" H 5150 5300 30 0000 C CNN +F 1 "PORT" H 5100 5200 30 0000 C CNN +F 2 "" H 5100 5200 60 0000 C CNN +F 3 "" H 5100 5200 60 0000 C CNN + 3 5100 5200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AFAE6 +P 5500 1750 +F 0 "U1" H 5550 1850 30 0000 C CNN +F 1 "PORT" H 5500 1750 30 0000 C CNN +F 2 "" H 5500 1750 60 0000 C CNN +F 3 "" H 5500 1750 60 0000 C CNN + 4 5500 1750 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B00C1 +P 8250 2900 +F 0 "scmode1" H 8250 3050 98 0000 C CNB +F 1 "SKY130mode" H 8250 2800 118 0000 C CNB +F 2 "" H 8250 3050 60 0001 C CNN +F 3 "" H 8250 3050 60 0001 C CNN + 1 8250 2900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684AF577 +P 5250 3250 +F 0 "SC2" H 5300 3550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5550 3337 50 0000 R CNN +F 2 "" H 5250 1750 50 0001 C CNN +F 3 "" H 5250 3250 50 0001 C CNN + 1 5250 3250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4400 2050 4400 2000 +Wire Wire Line + 4400 2000 5900 2000 +Wire Wire Line + 5900 2000 5900 2050 +Wire Wire Line + 5450 2050 5450 2000 +Connection ~ 5450 2000 +Wire Wire Line + 5750 1750 5750 2000 +Connection ~ 5750 2000 +Wire Wire Line + 4300 2350 4450 2350 +Wire Wire Line + 4450 2350 4450 2000 +Connection ~ 4450 2000 +Wire Wire Line + 5350 2350 5500 2350 +Wire Wire Line + 5500 2350 5500 2000 +Connection ~ 5500 2000 +Wire Wire Line + 6000 2350 5850 2350 +Wire Wire Line + 5850 2350 5850 2000 +Connection ~ 5850 2000 +Wire Wire Line + 4400 2650 4400 2700 +Wire Wire Line + 4400 2700 5900 2700 +Wire Wire Line + 5900 2700 5900 2650 +Wire Wire Line + 5450 2650 5450 2950 +Connection ~ 5450 2700 +Wire Wire Line + 6050 2800 5450 2800 +Connection ~ 5450 2800 +Wire Wire Line + 3700 2350 3900 2350 +Wire Wire Line + 3850 2350 3850 3250 +Wire Wire Line + 3850 3250 4950 3250 +Wire Wire Line + 4950 2350 4800 2350 +Wire Wire Line + 4800 2350 4800 4000 +Wire Wire Line + 4750 4000 4950 4000 +Wire Wire Line + 5350 3250 5500 3250 +Wire Wire Line + 5500 3250 5500 3600 +Wire Wire Line + 5500 3600 5450 3600 +Wire Wire Line + 5450 3550 5450 3700 +Connection ~ 5450 3600 +Wire Wire Line + 6400 2350 6600 2350 +Wire Wire Line + 6450 2350 6450 4700 +Wire Wire Line + 6450 4700 5950 4700 +Connection ~ 6450 2350 +Wire Wire Line + 5350 4000 5500 4000 +Wire Wire Line + 5500 4000 5500 4350 +Wire Wire Line + 5500 4350 5450 4350 +Wire Wire Line + 5450 4300 5450 4400 +Connection ~ 5450 4350 +Connection ~ 4800 4000 +Wire Wire Line + 5450 5000 5450 5200 +Wire Wire Line + 5450 5200 5350 5200 +Wire Wire Line + 5550 4700 5400 4700 +Wire Wire Line + 5400 4700 5400 5050 +Wire Wire Line + 5400 5050 5450 5050 +Connection ~ 5450 5050 +Connection ~ 3850 2350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/NAND_3.sub b/library/SubcircuitLibrary/SN54L99/NAND_3.sub new file mode 100644 index 000000000..3b4f4b3ff --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_3.sub @@ -0,0 +1,15 @@ +* Subcircuit NAND_3 +.subckt NAND_3 net-_sc2-pad2_ net-_sc1-pad2_ net-_sc6-pad3_ net-_sc3-pad3_ net-_sc2-pad1_ net-_sc5-pad2_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_3/nand_3.cir +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc3 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc4 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc2-pad1_ net-_sc5-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc1-pad3_ net-_sc5-pad2_ net-_sc6-pad3_ net-_sc6-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +xsc2 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* Control Statements + +.ends NAND_3 diff --git a/library/SubcircuitLibrary/SN54L99/NAND_3_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/NAND_3_Previous_Values.xml new file mode 100644 index 000000000..c0934485a --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NAND_3_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/NOR_2-cache.lib b/library/SubcircuitLibrary/SN54L99/NOR_2-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_2-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/NOR_2.cir b/library/SubcircuitLibrary/SN54L99/NOR_2.cir new file mode 100644 index 000000000..976cd2f8e --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_2.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_2/NOR_2.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Mon Jul 7 11:47:22 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC2 Net-_SC2-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 +SC3 Net-_SC1-Pad1_ Net-_SC3-Pad2_ Net-_SC2-Pad1_ Net-_SC2-Pad1_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC1-Pad1_ Net-_SC3-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC3-Pad2_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN54L99/NOR_2.cir.out b/library/SubcircuitLibrary/SN54L99/NOR_2.cir.out new file mode 100644 index 000000000..5cf58fd73 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_2.cir.out @@ -0,0 +1,24 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nor_2/nor_2.cir + +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +xsc2 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad1_ net-_sc2-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc3-pad2_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/NOR_2.pro b/library/SubcircuitLibrary/SN54L99/NOR_2.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_2.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/NOR_2.sch b/library/SubcircuitLibrary/SN54L99/NOR_2.sch new file mode 100644 index 000000000..86f7c4bc6 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_2.sch @@ -0,0 +1,219 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684CE7B8 +P 4750 2600 +F 0 "SC2" H 4800 2900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5050 2687 50 0000 R CNN +F 2 "" H 4750 1100 50 0001 C CNN +F 3 "" H 4750 2600 50 0001 C CNN + 1 4750 2600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684CE82E +P 5150 3400 +F 0 "SC3" H 5200 3700 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 3487 50 0000 R CNN +F 2 "" H 5150 1900 50 0001 C CNN +F 3 "" H 5150 3400 50 0001 C CNN + 1 5150 3400 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684CE88F +P 4050 4450 +F 0 "SC1" H 4100 4750 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4350 4537 50 0000 R CNN +F 2 "" H 4050 2950 50 0001 C CNN +F 3 "" H 4050 4450 50 0001 C CNN + 1 4050 4450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684CE8CA +P 5650 4450 +F 0 "SC4" H 5700 4750 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5950 4537 50 0000 R CNN +F 2 "" H 5650 2950 50 0001 C CNN +F 3 "" H 5650 4450 50 0001 C CNN + 1 5650 4450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684CE919 +P 3100 3450 +F 0 "U1" H 3150 3550 30 0000 C CNN +F 1 "PORT" H 3100 3450 30 0000 C CNN +F 2 "" H 3100 3450 60 0000 C CNN +F 3 "" H 3100 3450 60 0000 C CNN + 1 3100 3450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684CE990 +P 6350 3400 +F 0 "U1" H 6400 3500 30 0000 C CNN +F 1 "PORT" H 6350 3400 30 0000 C CNN +F 2 "" H 6350 3400 60 0000 C CNN +F 3 "" H 6350 3400 60 0000 C CNN + 4 6350 3400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684CEA11 +P 6450 3900 +F 0 "U1" H 6500 4000 30 0000 C CNN +F 1 "PORT" H 6450 3900 30 0000 C CNN +F 2 "" H 6450 3900 60 0000 C CNN +F 3 "" H 6450 3900 60 0000 C CNN + 5 6450 3900 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684CEA84 +P 4700 2150 +F 0 "U1" H 4750 2250 30 0000 C CNN +F 1 "PORT" H 4700 2150 30 0000 C CNN +F 2 "" H 4700 2150 60 0000 C CNN +F 3 "" H 4700 2150 60 0000 C CNN + 3 4700 2150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684CEB11 +P 4650 5100 +F 0 "U1" H 4700 5200 30 0000 C CNN +F 1 "PORT" H 4650 5100 30 0000 C CNN +F 2 "" H 4650 5100 60 0000 C CNN +F 3 "" H 4650 5100 60 0000 C CNN + 2 4650 5100 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684CEB6E +P 8300 2900 +F 0 "scmode1" H 8300 3050 98 0000 C CNB +F 1 "SKY130mode" H 8300 2800 118 0000 C CNB +F 2 "" H 8300 3050 60 0001 C CNN +F 3 "" H 8300 3050 60 0001 C CNN + 1 8300 2900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4250 4150 5450 4150 +Wire Wire Line + 4950 3700 4950 4150 +Connection ~ 4950 4150 +Wire Wire Line + 6200 3900 4950 3900 +Connection ~ 4950 3900 +Wire Wire Line + 4250 4750 5450 4750 +Wire Wire Line + 5550 4450 5400 4450 +Wire Wire Line + 5400 4450 5400 4750 +Connection ~ 5400 4750 +Wire Wire Line + 4150 4450 4300 4450 +Wire Wire Line + 4300 4450 4300 4750 +Connection ~ 4300 4750 +Wire Wire Line + 4900 5100 4900 4750 +Connection ~ 4900 4750 +Wire Wire Line + 5450 3400 6100 3400 +Wire Wire Line + 5950 3400 5950 4450 +Connection ~ 5950 3400 +Wire Wire Line + 4450 2600 3750 2600 +Wire Wire Line + 3750 2600 3750 4450 +Wire Wire Line + 3350 3450 3750 3450 +Connection ~ 3750 3450 +Wire Wire Line + 4950 2150 4950 2300 +Wire Wire Line + 4850 2600 5000 2600 +Wire Wire Line + 5000 2600 5000 2250 +Wire Wire Line + 5000 2250 4950 2250 +Connection ~ 4950 2250 +Wire Wire Line + 4950 2900 4950 3100 +Wire Wire Line + 5050 3400 4900 3400 +Wire Wire Line + 4900 3400 4900 3050 +Wire Wire Line + 4900 3050 4950 3050 +Connection ~ 4950 3050 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/NOR_2.sub b/library/SubcircuitLibrary/SN54L99/NOR_2.sub new file mode 100644 index 000000000..f5a7ff023 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_2.sub @@ -0,0 +1,18 @@ +* Subcircuit NOR_2 +.subckt NOR_2 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc3-pad2_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nor_2/nor_2.cir +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +xsc2 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad1_ net-_sc2-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends NOR_2 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/NOR_2_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/NOR_2_Previous_Values.xml new file mode 100644 index 000000000..62dc0d0a2 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_2_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/NOR_3-cache.lib b/library/SubcircuitLibrary/SN54L99/NOR_3-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_3-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/NOR_3.cir b/library/SubcircuitLibrary/SN54L99/NOR_3.cir new file mode 100644 index 000000000..0738ff996 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_3.cir @@ -0,0 +1,18 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_3/NOR_3.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Thu Jul 10 16:42:16 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC3 Net-_SC3-Pad1_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__pfet_01v8 +SC4 Net-_SC4-Pad1_ Net-_SC2-Pad2_ Net-_SC3-Pad1_ Net-_SC3-Pad1_ sky130_fd_pr__pfet_01v8 +SC5 Net-_SC1-Pad1_ Net-_SC5-Pad2_ Net-_SC4-Pad1_ Net-_SC4-Pad1_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC6 Net-_SC1-Pad1_ Net-_SC5-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +scmode1 SKY130mode +U1 Net-_SC1-Pad2_ Net-_SC2-Pad2_ Net-_SC1-Pad1_ Net-_SC1-Pad3_ Net-_SC3-Pad3_ Net-_SC5-Pad2_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN54L99/NOR_3.cir.out b/library/SubcircuitLibrary/SN54L99/NOR_3.cir.out new file mode 100644 index 000000000..2b5210432 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_3.cir.out @@ -0,0 +1,20 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nor_3/nor_3.cir + + +xsc3 net-_sc3-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc4 net-_sc4-pad1_ net-_sc2-pad2_ net-_sc3-pad1_ net-_sc3-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc4-pad1_ net-_sc4-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* u1 net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc3-pad3_ net-_sc5-pad2_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/NOR_3.pro b/library/SubcircuitLibrary/SN54L99/NOR_3.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_3.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/NOR_3.sch b/library/SubcircuitLibrary/SN54L99/NOR_3.sch new file mode 100644 index 000000000..19a2ccb81 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_3.sch @@ -0,0 +1,278 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 686F9EE9 +P 5700 1900 +F 0 "SC3" H 5750 2200 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6000 1987 50 0000 R CNN +F 2 "" H 5700 400 50 0001 C CNN +F 3 "" H 5700 1900 50 0001 C CNN + 1 5700 1900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 686F9F00 +P 5700 2600 +F 0 "SC4" H 5750 2900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6000 2687 50 0000 R CNN +F 2 "" H 5700 1100 50 0001 C CNN +F 3 "" H 5700 2600 50 0001 C CNN + 1 5700 2600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC5 +U 1 1 686F9F3F +P 6100 3300 +F 0 "SC5" H 6150 3600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6400 3387 50 0000 R CNN +F 2 "" H 6100 1800 50 0001 C CNN +F 3 "" H 6100 3300 50 0001 C CNN + 1 6100 3300 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 686F9FDA +P 4700 4250 +F 0 "SC1" H 4750 4550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5000 4337 50 0000 R CNN +F 2 "" H 4700 2750 50 0001 C CNN +F 3 "" H 4700 4250 50 0001 C CNN + 1 4700 4250 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 686FA080 +P 5650 4250 +F 0 "SC2" H 5700 4550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5950 4337 50 0000 R CNN +F 2 "" H 5650 2750 50 0001 C CNN +F 3 "" H 5650 4250 50 0001 C CNN + 1 5650 4250 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC6 +U 1 1 686FA290 +P 6650 4250 +F 0 "SC6" H 6700 4550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6950 4337 50 0000 R CNN +F 2 "" H 6650 2750 50 0001 C CNN +F 3 "" H 6650 4250 50 0001 C CNN + 1 6650 4250 + -1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686FA309 +P 10350 6000 +F 0 "scmode1" H 10350 6150 98 0000 C CNB +F 1 "SKY130mode" H 10350 5900 118 0000 C CNB +F 2 "" H 10350 6150 60 0001 C CNN +F 3 "" H 10350 6150 60 0001 C CNN + 1 10350 6000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4900 3950 4900 3900 +Wire Wire Line + 4900 3900 6450 3900 +Wire Wire Line + 6450 3900 6450 3950 +Wire Wire Line + 5850 3950 5850 3900 +Connection ~ 5850 3900 +Wire Wire Line + 5900 3600 5900 3900 +Connection ~ 5900 3900 +Wire Wire Line + 4900 4550 4900 4600 +Wire Wire Line + 4900 4600 6450 4600 +Wire Wire Line + 6450 4600 6450 4550 +Wire Wire Line + 5850 4550 5850 4600 +Connection ~ 5850 4600 +Wire Wire Line + 4800 4250 4950 4250 +Wire Wire Line + 4950 4250 4950 4600 +Connection ~ 4950 4600 +Wire Wire Line + 5750 4250 5900 4250 +Wire Wire Line + 5900 4250 5900 4600 +Connection ~ 5900 4600 +Wire Wire Line + 6550 4250 6400 4250 +Wire Wire Line + 6400 4250 6400 4600 +Connection ~ 6400 4600 +Wire Wire Line + 6000 3300 5850 3300 +Wire Wire Line + 5850 3300 5850 2950 +Wire Wire Line + 5850 2950 5900 2950 +Wire Wire Line + 5900 2900 5900 3000 +Connection ~ 5900 2950 +Wire Wire Line + 5800 2600 5950 2600 +Wire Wire Line + 5950 2600 5950 2250 +Wire Wire Line + 5950 2250 5900 2250 +Wire Wire Line + 5900 2200 5900 2300 +Connection ~ 5900 2250 +Wire Wire Line + 5800 1900 5950 1900 +Wire Wire Line + 5950 1900 5950 1550 +Wire Wire Line + 5950 1550 5900 1550 +Wire Wire Line + 5900 1550 5900 1600 +Wire Wire Line + 5400 1900 4400 1900 +Wire Wire Line + 4400 1900 4400 4250 +Wire Wire Line + 5400 2600 5350 2600 +Wire Wire Line + 5350 2600 5350 4250 +Wire Wire Line + 6400 3300 6950 3300 +Wire Wire Line + 6950 3300 6950 4250 +$Comp +L PORT U1 +U 5 1 686FA7F6 +P 5950 1300 +F 0 "U1" H 6000 1400 30 0000 C CNN +F 1 "PORT" H 5950 1300 30 0000 C CNN +F 2 "" H 5950 1300 60 0000 C CNN +F 3 "" H 5950 1300 60 0000 C CNN + 5 5950 1300 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 1 1 686FA8CF +P 4150 1900 +F 0 "U1" H 4200 2000 30 0000 C CNN +F 1 "PORT" H 4150 1900 30 0000 C CNN +F 2 "" H 4150 1900 60 0000 C CNN +F 3 "" H 4150 1900 60 0000 C CNN + 1 4150 1900 + 1 0 0 -1 +$EndComp +Connection ~ 4400 1900 +Connection ~ 5950 1550 +Connection ~ 5350 2600 +Connection ~ 6950 3300 +Connection ~ 5900 3700 +$Comp +L PORT U1 +U 2 1 686FACDE +P 5100 2600 +F 0 "U1" H 5150 2700 30 0000 C CNN +F 1 "PORT" H 5100 2600 30 0000 C CNN +F 2 "" H 5100 2600 60 0000 C CNN +F 3 "" H 5100 2600 60 0000 C CNN + 2 5100 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686FAD41 +P 5650 3700 +F 0 "U1" H 5700 3800 30 0000 C CNN +F 1 "PORT" H 5650 3700 30 0000 C CNN +F 2 "" H 5650 3700 60 0000 C CNN +F 3 "" H 5650 3700 60 0000 C CNN + 3 5650 3700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686FAD8E +P 7200 3300 +F 0 "U1" H 7250 3400 30 0000 C CNN +F 1 "PORT" H 7200 3300 30 0000 C CNN +F 2 "" H 7200 3300 60 0000 C CNN +F 3 "" H 7200 3300 60 0000 C CNN + 6 7200 3300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686FAE65 +P 5900 4850 +F 0 "U1" H 5950 4950 30 0000 C CNN +F 1 "PORT" H 5900 4850 30 0000 C CNN +F 2 "" H 5900 4850 60 0000 C CNN +F 3 "" H 5900 4850 60 0000 C CNN + 4 5900 4850 + 0 1 -1 0 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/NOR_3.sub b/library/SubcircuitLibrary/SN54L99/NOR_3.sub new file mode 100644 index 000000000..11cd9a15b --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_3.sub @@ -0,0 +1,14 @@ +* Subcircuit NOR_3 +.subckt NOR_3 net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc3-pad3_ net-_sc5-pad2_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nor_3/nor_3.cir + +xsc3 net-_sc3-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc4 net-_sc4-pad1_ net-_sc2-pad2_ net-_sc3-pad1_ net-_sc3-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc4-pad1_ net-_sc4-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends NOR_3 diff --git a/library/SubcircuitLibrary/SN54L99/NOR_3_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/NOR_3_Previous_Values.xml new file mode 100644 index 000000000..4c32827f4 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/NOR_3_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/SN54L99-cache.lib b/library/SubcircuitLibrary/SN54L99/SN54L99-cache.lib new file mode 100644 index 000000000..69e245823 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SN54L99-cache.lib @@ -0,0 +1,153 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 2_in_and +# +DEF 2_in_and X 0 40 Y Y 1 F N +F0 "X" 50 0 60 H V C CNN +F1 "2_in_and" 0 -250 60 H V C CNN +F2 "" 750 -150 60 H I C CNN +F3 "" 750 -150 60 H I C CNN +DRAW +A 50 0 206 760 -760 0 1 0 N 100 200 100 -200 +P 2 0 1 0 -200 200 100 200 N +P 3 0 1 0 -200 200 -200 -200 100 -200 N +X Vdd 1 -400 150 200 R 50 50 1 1 I +X in1 2 -400 50 200 R 50 50 1 1 I +X in2 3 -400 -50 200 R 50 50 1 1 I +X Gnd 4 -400 -150 200 R 50 50 1 1 I +X out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 300 0 50 0 1 0 N +P 2 0 1 0 -200 150 250 0 N +P 3 0 1 0 -200 150 -200 -150 250 0 N +X in 1 -400 0 200 R 50 50 1 1 I +X Vdd 2 -400 100 200 R 50 50 1 1 I +X Gnd 3 -400 -100 200 R 50 50 1 1 I +X Out 4 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# DS_blk +# +DEF DS_blk X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "DS_blk" 0 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -250 200 250 -200 0 1 0 N +X in1 1 -450 150 200 R 50 50 1 1 I +X ws1 2 -450 50 200 R 50 50 1 1 I +X ws2 3 -450 -50 200 R 50 50 1 1 I +X in2 4 -450 -150 200 R 50 50 1 1 I +X Clk 5 450 50 200 L 50 50 1 1 I +X Vdd 6 450 150 200 L 50 50 1 1 I +X Gnd 7 450 -150 200 L 50 50 1 1 I +X Out 8 450 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# SerialParallel_blk +# +DEF SerialParallel_blk X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "SerialParallel_blk" 0 -300 60 H V C CNN +F2 "" -850 300 60 H I C CNN +F3 "" -850 300 60 H I C CNN +DRAW +S -350 250 300 -250 0 1 0 N +X J 1 500 150 200 L 50 50 1 1 I +X K 2 500 50 200 L 50 50 1 1 I +X clk 3 -550 0 200 R 50 50 1 1 I +X A 4 -550 100 200 R 50 50 1 1 I +X M 5 -550 -100 200 R 50 50 1 1 I +X M_bar 6 -550 -200 200 R 50 50 1 1 I +X Vdd 7 -550 200 200 R 50 50 1 1 I +X Gnd 8 500 -200 200 L 50 50 1 1 I +X Qa 9 500 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# or_2 +# +DEF or_2 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "or_2" 0 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A -400 0 206 760 -760 0 1 0 N -350 200 -350 -200 +A -180 -290 519 1091 340 0 1 0 N -350 200 250 0 +A -175 275 506 -1102 -329 0 1 0 N -350 -200 250 0 +X in1 1 -400 50 200 R 50 50 1 1 I +X in2 2 -400 -50 200 R 50 50 1 1 I +X Vdd 3 -450 150 200 R 50 50 1 1 I +X Gnd 4 -450 -150 200 R 50 50 1 1 I +X out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/SN54L99.bak b/library/SubcircuitLibrary/SN54L99/SN54L99.bak new file mode 100644 index 000000000..1e73214eb --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SN54L99.bak @@ -0,0 +1,518 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN54L99-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 686FB10F +P 10500 6100 +F 0 "scmode1" H 10500 6250 98 0000 C CNB +F 1 "SKY130mode" H 10500 6000 118 0000 C CNB +F 2 "" H 10500 6250 60 0001 C CNN +F 3 "" H 10500 6250 60 0001 C CNN + 1 10500 6100 + 1 0 0 -1 +$EndComp +$Comp +L SerialParallel_blk X4 +U 1 1 686FB703 +P 4200 4050 +F 0 "X4" H 4200 4050 60 0000 C CNN +F 1 "SerialParallel_blk" H 4200 3750 60 0000 C CNN +F 2 "" H 3350 4350 60 0001 C CNN +F 3 "" H 3350 4350 60 0001 C CNN + 1 4200 4050 + 1 0 0 -1 +$EndComp +$Comp +L DS_blk X6 +U 1 1 686FB752 +P 5600 4050 +F 0 "X6" H 5600 4050 60 0000 C CNN +F 1 "DS_blk" H 5600 3800 60 0000 C CNN +F 2 "" H 5600 4050 60 0001 C CNN +F 3 "" H 5600 4050 60 0001 C CNN + 1 5600 4050 + 1 0 0 -1 +$EndComp +$Comp +L DS_blk X7 +U 1 1 686FB79D +P 6850 4050 +F 0 "X7" H 6850 4050 60 0000 C CNN +F 1 "DS_blk" H 6850 3800 60 0000 C CNN +F 2 "" H 6850 4050 60 0001 C CNN +F 3 "" H 6850 4050 60 0001 C CNN + 1 6850 4050 + 1 0 0 -1 +$EndComp +$Comp +L DS_blk X8 +U 1 1 686FB8BA +P 8250 4050 +F 0 "X8" H 8250 4050 60 0000 C CNN +F 1 "DS_blk" H 8250 3800 60 0000 C CNN +F 2 "" H 8250 4050 60 0001 C CNN +F 3 "" H 8250 4050 60 0001 C CNN + 1 8250 4050 + 1 0 0 -1 +$EndComp +$Comp +L 2_in_and X2 +U 1 1 686FB9B6 +P 3900 5800 +F 0 "X2" H 3950 5800 60 0000 C CNN +F 1 "2_in_and" H 3900 5550 60 0000 C CNN +F 2 "" H 4650 5650 60 0001 C CNN +F 3 "" H 4650 5650 60 0001 C CNN + 1 3900 5800 + 1 0 0 -1 +$EndComp +$Comp +L 2_in_and X3 +U 1 1 686FB9F7 +P 3900 6450 +F 0 "X3" H 3950 6450 60 0000 C CNN +F 1 "2_in_and" H 3900 6200 60 0000 C CNN +F 2 "" H 4650 6300 60 0001 C CNN +F 3 "" H 4650 6300 60 0001 C CNN + 1 3900 6450 + 1 0 0 -1 +$EndComp +$Comp +L or_2 X5 +U 1 1 686FBA1C +P 4950 6150 +F 0 "X5" H 4950 6150 60 0000 C CNN +F 1 "or_2" H 4950 5900 60 0000 C CNN +F 2 "" H 4950 6150 60 0001 C CNN +F 3 "" H 4950 6150 60 0001 C CNN + 1 4950 6150 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X1 +U 1 1 686FBA57 +P 3100 5850 +F 0 "X1" H 3100 5850 60 0000 C CNN +F 1 "CMOS_INVTR" H 3150 5650 60 0000 C CNN +F 2 "" H 3100 5850 60 0001 C CNN +F 3 "" H 3100 5850 60 0001 C CNN + 1 3100 5850 + 0 -1 -1 0 +$EndComp +Text Label 2500 6400 0 60 ~ 0 +mode +Text Label 2600 5850 0 60 ~ 0 +RS +Text Label 2600 6500 0 60 ~ 0 +LS +Wire Wire Line + 4350 5800 4350 6100 +Wire Wire Line + 4350 6100 4550 6100 +Wire Wire Line + 4350 6450 4350 6200 +Wire Wire Line + 4350 6200 4550 6200 +Wire Wire Line + 3400 5750 3500 5750 +Wire Wire Line + 3400 4250 3400 5750 +Wire Wire Line + 2400 6400 3500 6400 +Wire Wire Line + 3100 6400 3100 6250 +Wire Wire Line + 3100 5300 7650 5300 +Connection ~ 3100 6400 +Wire Wire Line + 3500 5850 2400 5850 +Wire Wire Line + 3500 6500 2400 6500 +Wire Wire Line + 3650 4250 3400 4250 +Connection ~ 3400 5300 +Wire Wire Line + 3650 4150 2950 4150 +Wire Wire Line + 2950 4150 2950 6400 +Connection ~ 2950 6400 +Wire Wire Line + 8700 4000 8850 4000 +Wire Wire Line + 8850 4000 8850 4550 +Wire Wire Line + 8850 4550 3600 4550 +Wire Wire Line + 3600 4550 3600 4050 +Wire Wire Line + 3600 4050 3650 4050 +Wire Wire Line + 6050 4000 6100 4000 +Wire Wire Line + 6100 4000 6100 6150 +Connection ~ 6100 4550 +Wire Wire Line + 7300 4000 7350 4000 +Wire Wire Line + 7350 4000 7350 4550 +Connection ~ 7350 4550 +Wire Wire Line + 6100 6150 5400 6150 +Wire Wire Line + 4850 4150 4700 4150 +Wire Wire Line + 4850 3050 4850 4150 +Wire Wire Line + 4850 3900 5150 3900 +Wire Wire Line + 6200 4100 6050 4100 +Wire Wire Line + 6200 3050 6200 4100 +Wire Wire Line + 6200 3900 6400 3900 +Wire Wire Line + 7550 4100 7300 4100 +Wire Wire Line + 7550 3050 7550 4100 +Wire Wire Line + 7550 3900 7800 3900 +Wire Wire Line + 5150 4000 4900 4000 +Wire Wire Line + 4900 4000 4900 5300 +Wire Wire Line + 6400 4000 6300 4000 +Wire Wire Line + 6300 4000 6300 5300 +Connection ~ 4900 5300 +Wire Wire Line + 7800 4000 7650 4000 +Wire Wire Line + 7650 4000 7650 5300 +Connection ~ 6300 5300 +Wire Wire Line + 5150 4100 4950 4100 +Wire Wire Line + 4950 4100 4950 5100 +Wire Wire Line + 2950 5100 7700 5100 +Connection ~ 2950 5100 +Wire Wire Line + 6350 5100 6350 4100 +Wire Wire Line + 6350 4100 6400 4100 +Connection ~ 4950 5100 +Wire Wire Line + 7700 5100 7700 4100 +Wire Wire Line + 7700 4100 7800 4100 +Connection ~ 6350 5100 +Wire Wire Line + 3650 3850 3650 3750 +Wire Wire Line + 3650 3750 8950 3750 +Wire Wire Line + 8950 3750 8950 5500 +Wire Wire Line + 8950 5500 2900 5500 +Wire Wire Line + 2900 5500 2900 6250 +Wire Wire Line + 2900 6250 3000 6250 +Wire Wire Line + 3500 5650 3500 5500 +Connection ~ 3500 5500 +Wire Wire Line + 3500 6300 3300 6300 +Wire Wire Line + 3300 6300 3300 5500 +Connection ~ 3300 5500 +Wire Wire Line + 4500 6000 4500 5500 +Connection ~ 4500 5500 +Wire Wire Line + 8700 3900 8700 3750 +Connection ~ 8700 3750 +Wire Wire Line + 7300 3900 7300 3750 +Connection ~ 7300 3750 +Wire Wire Line + 6050 3900 6050 3750 +Connection ~ 6050 3750 +Wire Wire Line + 3200 6250 3200 6800 +Wire Wire Line + 8700 4350 4700 4350 +Wire Wire Line + 4700 4350 4700 4250 +Connection ~ 8700 4350 +Wire Wire Line + 6050 4200 6050 4350 +Connection ~ 6050 4350 +Wire Wire Line + 7300 4200 7300 4350 +Connection ~ 7300 4350 +Wire Wire Line + 3500 6600 3500 6800 +Connection ~ 3500 6800 +Wire Wire Line + 3500 5950 3400 5950 +Wire Wire Line + 3400 5950 3400 6800 +Connection ~ 3400 6800 +Wire Wire Line + 4500 6300 4500 6800 +Connection ~ 4500 6800 +Wire Wire Line + 8700 4200 8700 5650 +Wire Wire Line + 8700 5650 6200 5650 +Wire Wire Line + 6200 5650 6200 6800 +Wire Wire Line + 6200 6800 3200 6800 +Wire Wire Line + 8700 4100 9100 4100 +Wire Wire Line + 9100 4100 9100 3050 +Connection ~ 7550 3900 +Connection ~ 6200 3900 +Connection ~ 4850 3900 +Wire Wire Line + 3650 3950 3500 3950 +Wire Wire Line + 5150 4200 5150 4500 +Wire Wire Line + 3500 3950 3500 4500 +Wire Wire Line + 6400 4200 6400 4500 +Wire Wire Line + 7800 4200 7800 4500 +Wire Wire Line + 4700 4000 4750 4000 +Wire Wire Line + 4750 4000 4750 4500 +Wire Wire Line + 4700 3900 4800 3900 +Wire Wire Line + 4800 3900 4800 4500 +$Comp +L PORT U1 +U 4 1 686FDE79 +P 3500 4750 +F 0 "U1" H 3550 4850 30 0000 C CNN +F 1 "PORT" H 3500 4750 30 0000 C CNN +F 2 "" H 3500 4750 60 0000 C CNN +F 3 "" H 3500 4750 60 0000 C CNN + 4 3500 4750 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 6 1 686FDEC4 +P 4750 4750 +F 0 "U1" H 4800 4850 30 0000 C CNN +F 1 "PORT" H 4750 4750 30 0000 C CNN +F 2 "" H 4750 4750 60 0000 C CNN +F 3 "" H 4750 4750 60 0000 C CNN + 6 4750 4750 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 7 1 686FDF2F +P 4800 4750 +F 0 "U1" H 4850 4850 30 0000 C CNN +F 1 "PORT" H 4800 4750 30 0000 C CNN +F 2 "" H 4800 4750 60 0000 C CNN +F 3 "" H 4800 4750 60 0000 C CNN + 7 4800 4750 + 0 1 -1 0 +$EndComp +$Comp +L PORT U1 +U 8 1 686FDFA4 +P 5150 4750 +F 0 "U1" H 5200 4850 30 0000 C CNN +F 1 "PORT" H 5150 4750 30 0000 C CNN +F 2 "" H 5150 4750 60 0000 C CNN +F 3 "" H 5150 4750 60 0000 C CNN + 8 5150 4750 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 10 1 686FE00E +P 6400 4750 +F 0 "U1" H 6450 4850 30 0000 C CNN +F 1 "PORT" H 6400 4750 30 0000 C CNN +F 2 "" H 6400 4750 60 0000 C CNN +F 3 "" H 6400 4750 60 0000 C CNN + 10 6400 4750 + 0 1 -1 0 +$EndComp +$Comp +L PORT U1 +U 12 1 686FE067 +P 7800 4750 +F 0 "U1" H 7850 4850 30 0000 C CNN +F 1 "PORT" H 7800 4750 30 0000 C CNN +F 2 "" H 7800 4750 60 0000 C CNN +F 3 "" H 7800 4750 60 0000 C CNN + 12 7800 4750 + 0 1 -1 0 +$EndComp +$Comp +L PORT U1 +U 15 1 686FE0F5 +P 8950 4350 +F 0 "U1" H 9000 4450 30 0000 C CNN +F 1 "PORT" H 8950 4350 30 0000 C CNN +F 2 "" H 8950 4350 60 0000 C CNN +F 3 "" H 8950 4350 60 0000 C CNN + 15 8950 4350 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 13 1 686FE22E +P 8700 3500 +F 0 "U1" H 8750 3600 30 0000 C CNN +F 1 "PORT" H 8700 3500 30 0000 C CNN +F 2 "" H 8700 3500 60 0000 C CNN +F 3 "" H 8700 3500 60 0000 C CNN + 13 8700 3500 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 14 1 686FE2E8 +P 8850 3050 +F 0 "U1" H 8900 3150 30 0000 C CNN +F 1 "PORT" H 8850 3050 30 0000 C CNN +F 2 "" H 8850 3050 60 0000 C CNN +F 3 "" H 8850 3050 60 0000 C CNN + 14 8850 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 686FE34F +P 7300 3050 +F 0 "U1" H 7350 3150 30 0000 C CNN +F 1 "PORT" H 7300 3050 30 0000 C CNN +F 2 "" H 7300 3050 60 0000 C CNN +F 3 "" H 7300 3050 60 0000 C CNN + 11 7300 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 686FE474 +P 5950 3050 +F 0 "U1" H 6000 3150 30 0000 C CNN +F 1 "PORT" H 5950 3050 30 0000 C CNN +F 2 "" H 5950 3050 60 0000 C CNN +F 3 "" H 5950 3050 60 0000 C CNN + 9 5950 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686FE4E5 +P 4600 3050 +F 0 "U1" H 4650 3150 30 0000 C CNN +F 1 "PORT" H 4600 3050 30 0000 C CNN +F 2 "" H 4600 3050 60 0000 C CNN +F 3 "" H 4600 3050 60 0000 C CNN + 5 4600 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686FE646 +P 2150 5850 +F 0 "U1" H 2200 5950 30 0000 C CNN +F 1 "PORT" H 2150 5850 30 0000 C CNN +F 2 "" H 2150 5850 60 0000 C CNN +F 3 "" H 2150 5850 60 0000 C CNN + 1 2150 5850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686FE6B7 +P 2150 6400 +F 0 "U1" H 2200 6500 30 0000 C CNN +F 1 "PORT" H 2150 6400 30 0000 C CNN +F 2 "" H 2150 6400 60 0000 C CNN +F 3 "" H 2150 6400 60 0000 C CNN + 2 2150 6400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686FE728 +P 2150 6500 +F 0 "U1" H 2200 6600 30 0000 C CNN +F 1 "PORT" H 2150 6500 30 0000 C CNN +F 2 "" H 2150 6500 60 0000 C CNN +F 3 "" H 2150 6500 60 0000 C CNN + 3 2150 6500 + 1 0 0 1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/SN54L99.cir b/library/SubcircuitLibrary/SN54L99/SN54L99.cir new file mode 100644 index 000000000..951b7438d --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SN54L99.cir @@ -0,0 +1,20 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SN54L99/SN54L99.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Thu Jul 10 18:58:06 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +scmode1 SKY130mode +X4 Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_X4-Pad3_ Net-_U1-Pad4_ /mode Net-_X1-Pad4_ Net-_U1-Pad13_ Net-_U1-Pad15_ Net-_U1-Pad5_ SerialParallel_blk +X6 Net-_U1-Pad5_ Net-_X1-Pad4_ /mode Net-_U1-Pad8_ Net-_X4-Pad3_ Net-_U1-Pad13_ Net-_U1-Pad15_ Net-_U1-Pad9_ DS_blk +X7 Net-_U1-Pad9_ Net-_X1-Pad4_ /mode Net-_U1-Pad10_ Net-_X4-Pad3_ Net-_U1-Pad13_ Net-_U1-Pad15_ Net-_U1-Pad11_ DS_blk +X8 Net-_U1-Pad11_ Net-_X1-Pad4_ /mode Net-_U1-Pad12_ Net-_X4-Pad3_ Net-_U1-Pad13_ Net-_U1-Pad15_ Net-_U1-Pad14_ DS_blk +X2 Net-_U1-Pad13_ Net-_X1-Pad4_ /RS Net-_U1-Pad15_ Net-_X2-Pad5_ 2_in_and +X3 Net-_U1-Pad13_ /mode /LS Net-_U1-Pad15_ Net-_X3-Pad5_ 2_in_and +X5 Net-_X2-Pad5_ Net-_X3-Pad5_ Net-_U1-Pad13_ Net-_U1-Pad15_ Net-_X4-Pad3_ or_2 +X1 /mode Net-_U1-Pad13_ Net-_U1-Pad15_ Net-_X1-Pad4_ CMOS_INVTR +U1 /RS /mode /LS Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN54L99/SN54L99.cir.out b/library/SubcircuitLibrary/SN54L99/SN54L99.cir.out new file mode 100644 index 000000000..00a95aafd --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SN54L99.cir.out @@ -0,0 +1,33 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/sn54l99/sn54l99.cir + +.include SerialParallel_blk.sub +.include or_2.sub +.include DS_blk.sub +.include CMOS_INVTR.sub +.include 2_in_and.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +* s c m o d e +x4 net-_u1-pad7_ net-_u1-pad6_ net-_x4-pad3_ net-_u1-pad4_ /mode net-_x1-pad4_ net-_u1-pad13_ net-_u1-pad15_ net-_u1-pad5_ SerialParallel_blk +x6 net-_u1-pad5_ net-_x1-pad4_ /mode net-_u1-pad8_ net-_x4-pad3_ net-_u1-pad13_ net-_u1-pad15_ net-_u1-pad9_ DS_blk +x7 net-_u1-pad9_ net-_x1-pad4_ /mode net-_u1-pad10_ net-_x4-pad3_ net-_u1-pad13_ net-_u1-pad15_ net-_u1-pad11_ DS_blk +x8 net-_u1-pad11_ net-_x1-pad4_ /mode net-_u1-pad12_ net-_x4-pad3_ net-_u1-pad13_ net-_u1-pad15_ net-_u1-pad14_ DS_blk +x2 net-_u1-pad13_ net-_x1-pad4_ /rs net-_u1-pad15_ net-_x2-pad5_ 2_in_and +x3 net-_u1-pad13_ /mode /ls net-_u1-pad15_ net-_x3-pad5_ 2_in_and +x5 net-_x2-pad5_ net-_x3-pad5_ net-_u1-pad13_ net-_u1-pad15_ net-_x4-pad3_ or_2 +x1 /mode net-_u1-pad13_ net-_u1-pad15_ net-_x1-pad4_ CMOS_INVTR +* u1 /rs /mode /ls net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/SN54L99.pro b/library/SubcircuitLibrary/SN54L99/SN54L99.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SN54L99.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/SN54L99.sch b/library/SubcircuitLibrary/SN54L99/SN54L99.sch new file mode 100644 index 000000000..e116ec524 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SN54L99.sch @@ -0,0 +1,518 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN54L99-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 686FB10F +P 6700 4600 +F 0 "scmode1" H 6700 4750 98 0000 C CNB +F 1 "SKY130mode" H 6700 4500 118 0000 C CNB +F 2 "" H 6700 4750 60 0001 C CNN +F 3 "" H 6700 4750 60 0001 C CNN + 1 6700 4600 + 1 0 0 -1 +$EndComp +$Comp +L SerialParallel_blk X4 +U 1 1 686FB703 +P 4050 2600 +F 0 "X4" H 4050 2600 60 0000 C CNN +F 1 "SerialParallel_blk" H 4050 2300 60 0000 C CNN +F 2 "" H 3200 2900 60 0001 C CNN +F 3 "" H 3200 2900 60 0001 C CNN + 1 4050 2600 + 1 0 0 -1 +$EndComp +$Comp +L DS_blk X6 +U 1 1 686FB752 +P 5450 2600 +F 0 "X6" H 5450 2600 60 0000 C CNN +F 1 "DS_blk" H 5450 2350 60 0000 C CNN +F 2 "" H 5450 2600 60 0001 C CNN +F 3 "" H 5450 2600 60 0001 C CNN + 1 5450 2600 + 1 0 0 -1 +$EndComp +$Comp +L DS_blk X7 +U 1 1 686FB79D +P 6700 2600 +F 0 "X7" H 6700 2600 60 0000 C CNN +F 1 "DS_blk" H 6700 2350 60 0000 C CNN +F 2 "" H 6700 2600 60 0001 C CNN +F 3 "" H 6700 2600 60 0001 C CNN + 1 6700 2600 + 1 0 0 -1 +$EndComp +$Comp +L DS_blk X8 +U 1 1 686FB8BA +P 8100 2600 +F 0 "X8" H 8100 2600 60 0000 C CNN +F 1 "DS_blk" H 8100 2350 60 0000 C CNN +F 2 "" H 8100 2600 60 0001 C CNN +F 3 "" H 8100 2600 60 0001 C CNN + 1 8100 2600 + 1 0 0 -1 +$EndComp +$Comp +L 2_in_and X2 +U 1 1 686FB9B6 +P 3750 4350 +F 0 "X2" H 3800 4350 60 0000 C CNN +F 1 "2_in_and" H 3750 4100 60 0000 C CNN +F 2 "" H 4500 4200 60 0001 C CNN +F 3 "" H 4500 4200 60 0001 C CNN + 1 3750 4350 + 1 0 0 -1 +$EndComp +$Comp +L 2_in_and X3 +U 1 1 686FB9F7 +P 3750 5000 +F 0 "X3" H 3800 5000 60 0000 C CNN +F 1 "2_in_and" H 3750 4750 60 0000 C CNN +F 2 "" H 4500 4850 60 0001 C CNN +F 3 "" H 4500 4850 60 0001 C CNN + 1 3750 5000 + 1 0 0 -1 +$EndComp +$Comp +L or_2 X5 +U 1 1 686FBA1C +P 4800 4700 +F 0 "X5" H 4800 4700 60 0000 C CNN +F 1 "or_2" H 4800 4450 60 0000 C CNN +F 2 "" H 4800 4700 60 0001 C CNN +F 3 "" H 4800 4700 60 0001 C CNN + 1 4800 4700 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X1 +U 1 1 686FBA57 +P 2950 4400 +F 0 "X1" H 2950 4400 60 0000 C CNN +F 1 "CMOS_INVTR" H 3000 4200 60 0000 C CNN +F 2 "" H 2950 4400 60 0001 C CNN +F 3 "" H 2950 4400 60 0001 C CNN + 1 2950 4400 + 0 -1 -1 0 +$EndComp +Text Label 2350 4950 0 60 ~ 0 +mode +Text Label 2450 4400 0 60 ~ 0 +RS +Text Label 2450 5050 0 60 ~ 0 +LS +Wire Wire Line + 4200 4350 4200 4650 +Wire Wire Line + 4200 4650 4400 4650 +Wire Wire Line + 4200 5000 4200 4750 +Wire Wire Line + 4200 4750 4400 4750 +Wire Wire Line + 3250 4300 3350 4300 +Wire Wire Line + 3250 2800 3250 4300 +Wire Wire Line + 2250 4950 3350 4950 +Wire Wire Line + 2950 4950 2950 4800 +Wire Wire Line + 2950 3850 7500 3850 +Connection ~ 2950 4950 +Wire Wire Line + 3350 4400 2250 4400 +Wire Wire Line + 3350 5050 2250 5050 +Wire Wire Line + 3500 2800 3250 2800 +Connection ~ 3250 3850 +Wire Wire Line + 3500 2700 2800 2700 +Wire Wire Line + 2800 2700 2800 4950 +Connection ~ 2800 4950 +Wire Wire Line + 8550 2550 8700 2550 +Wire Wire Line + 8700 2550 8700 3100 +Wire Wire Line + 8700 3100 3450 3100 +Wire Wire Line + 3450 3100 3450 2600 +Wire Wire Line + 3450 2600 3500 2600 +Wire Wire Line + 5900 2550 5950 2550 +Wire Wire Line + 5950 2550 5950 4700 +Connection ~ 5950 3100 +Wire Wire Line + 7150 2550 7200 2550 +Wire Wire Line + 7200 2550 7200 3100 +Connection ~ 7200 3100 +Wire Wire Line + 5950 4700 5250 4700 +Wire Wire Line + 4700 2700 4550 2700 +Wire Wire Line + 4700 1600 4700 2700 +Wire Wire Line + 4700 2450 5000 2450 +Wire Wire Line + 6050 2650 5900 2650 +Wire Wire Line + 6050 1600 6050 2650 +Wire Wire Line + 6050 2450 6250 2450 +Wire Wire Line + 7400 2650 7150 2650 +Wire Wire Line + 7400 1600 7400 2650 +Wire Wire Line + 7400 2450 7650 2450 +Wire Wire Line + 5000 2550 4750 2550 +Wire Wire Line + 4750 2550 4750 3850 +Wire Wire Line + 6250 2550 6150 2550 +Wire Wire Line + 6150 2550 6150 3850 +Connection ~ 4750 3850 +Wire Wire Line + 7650 2550 7500 2550 +Wire Wire Line + 7500 2550 7500 3850 +Connection ~ 6150 3850 +Wire Wire Line + 5000 2650 4800 2650 +Wire Wire Line + 4800 2650 4800 3650 +Wire Wire Line + 2800 3650 7550 3650 +Connection ~ 2800 3650 +Wire Wire Line + 6200 3650 6200 2650 +Wire Wire Line + 6200 2650 6250 2650 +Connection ~ 4800 3650 +Wire Wire Line + 7550 3650 7550 2650 +Wire Wire Line + 7550 2650 7650 2650 +Connection ~ 6200 3650 +Wire Wire Line + 3500 2400 3500 2300 +Wire Wire Line + 3500 2300 8800 2300 +Wire Wire Line + 8800 2300 8800 4050 +Wire Wire Line + 8800 4050 2750 4050 +Wire Wire Line + 2750 4050 2750 4800 +Wire Wire Line + 2750 4800 2850 4800 +Wire Wire Line + 3350 4200 3350 4050 +Connection ~ 3350 4050 +Wire Wire Line + 3350 4850 3150 4850 +Wire Wire Line + 3150 4850 3150 4050 +Connection ~ 3150 4050 +Wire Wire Line + 4350 4550 4350 4050 +Connection ~ 4350 4050 +Wire Wire Line + 8550 2450 8550 2300 +Connection ~ 8550 2300 +Wire Wire Line + 7150 2450 7150 2300 +Connection ~ 7150 2300 +Wire Wire Line + 5900 2450 5900 2300 +Connection ~ 5900 2300 +Wire Wire Line + 3050 4800 3050 5350 +Wire Wire Line + 8550 2900 4550 2900 +Wire Wire Line + 4550 2900 4550 2800 +Connection ~ 8550 2900 +Wire Wire Line + 5900 2750 5900 2900 +Connection ~ 5900 2900 +Wire Wire Line + 7150 2750 7150 2900 +Connection ~ 7150 2900 +Wire Wire Line + 3350 5150 3350 5350 +Connection ~ 3350 5350 +Wire Wire Line + 3350 4500 3250 4500 +Wire Wire Line + 3250 4500 3250 5350 +Connection ~ 3250 5350 +Wire Wire Line + 4350 4850 4350 5350 +Connection ~ 4350 5350 +Wire Wire Line + 8550 2750 8550 4200 +Wire Wire Line + 8550 4200 6050 4200 +Wire Wire Line + 6050 4200 6050 5350 +Wire Wire Line + 6050 5350 3050 5350 +Wire Wire Line + 8550 2650 8950 2650 +Wire Wire Line + 8950 2650 8950 1600 +Connection ~ 7400 2450 +Connection ~ 6050 2450 +Connection ~ 4700 2450 +Wire Wire Line + 3500 2500 3350 2500 +Wire Wire Line + 5000 2750 5000 3050 +Wire Wire Line + 3350 2500 3350 3050 +Wire Wire Line + 6250 2750 6250 3050 +Wire Wire Line + 7650 2750 7650 3050 +Wire Wire Line + 4550 2550 4600 2550 +Wire Wire Line + 4600 2550 4600 3050 +Wire Wire Line + 4550 2450 4650 2450 +Wire Wire Line + 4650 2450 4650 3050 +$Comp +L PORT U1 +U 4 1 686FDE79 +P 3350 3300 +F 0 "U1" H 3400 3400 30 0000 C CNN +F 1 "PORT" H 3350 3300 30 0000 C CNN +F 2 "" H 3350 3300 60 0000 C CNN +F 3 "" H 3350 3300 60 0000 C CNN + 4 3350 3300 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 6 1 686FDEC4 +P 4600 3300 +F 0 "U1" H 4650 3400 30 0000 C CNN +F 1 "PORT" H 4600 3300 30 0000 C CNN +F 2 "" H 4600 3300 60 0000 C CNN +F 3 "" H 4600 3300 60 0000 C CNN + 6 4600 3300 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 7 1 686FDF2F +P 4650 3300 +F 0 "U1" H 4700 3400 30 0000 C CNN +F 1 "PORT" H 4650 3300 30 0000 C CNN +F 2 "" H 4650 3300 60 0000 C CNN +F 3 "" H 4650 3300 60 0000 C CNN + 7 4650 3300 + 0 1 -1 0 +$EndComp +$Comp +L PORT U1 +U 8 1 686FDFA4 +P 5000 3300 +F 0 "U1" H 5050 3400 30 0000 C CNN +F 1 "PORT" H 5000 3300 30 0000 C CNN +F 2 "" H 5000 3300 60 0000 C CNN +F 3 "" H 5000 3300 60 0000 C CNN + 8 5000 3300 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 10 1 686FE00E +P 6250 3300 +F 0 "U1" H 6300 3400 30 0000 C CNN +F 1 "PORT" H 6250 3300 30 0000 C CNN +F 2 "" H 6250 3300 60 0000 C CNN +F 3 "" H 6250 3300 60 0000 C CNN + 10 6250 3300 + 0 1 -1 0 +$EndComp +$Comp +L PORT U1 +U 12 1 686FE067 +P 7650 3300 +F 0 "U1" H 7700 3400 30 0000 C CNN +F 1 "PORT" H 7650 3300 30 0000 C CNN +F 2 "" H 7650 3300 60 0000 C CNN +F 3 "" H 7650 3300 60 0000 C CNN + 12 7650 3300 + 0 1 -1 0 +$EndComp +$Comp +L PORT U1 +U 15 1 686FE0F5 +P 8800 2900 +F 0 "U1" H 8850 3000 30 0000 C CNN +F 1 "PORT" H 8800 2900 30 0000 C CNN +F 2 "" H 8800 2900 60 0000 C CNN +F 3 "" H 8800 2900 60 0000 C CNN + 15 8800 2900 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 13 1 686FE22E +P 8550 2050 +F 0 "U1" H 8600 2150 30 0000 C CNN +F 1 "PORT" H 8550 2050 30 0000 C CNN +F 2 "" H 8550 2050 60 0000 C CNN +F 3 "" H 8550 2050 60 0000 C CNN + 13 8550 2050 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 14 1 686FE2E8 +P 8700 1600 +F 0 "U1" H 8750 1700 30 0000 C CNN +F 1 "PORT" H 8700 1600 30 0000 C CNN +F 2 "" H 8700 1600 60 0000 C CNN +F 3 "" H 8700 1600 60 0000 C CNN + 14 8700 1600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 686FE34F +P 7150 1600 +F 0 "U1" H 7200 1700 30 0000 C CNN +F 1 "PORT" H 7150 1600 30 0000 C CNN +F 2 "" H 7150 1600 60 0000 C CNN +F 3 "" H 7150 1600 60 0000 C CNN + 11 7150 1600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 686FE474 +P 5800 1600 +F 0 "U1" H 5850 1700 30 0000 C CNN +F 1 "PORT" H 5800 1600 30 0000 C CNN +F 2 "" H 5800 1600 60 0000 C CNN +F 3 "" H 5800 1600 60 0000 C CNN + 9 5800 1600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686FE4E5 +P 4450 1600 +F 0 "U1" H 4500 1700 30 0000 C CNN +F 1 "PORT" H 4450 1600 30 0000 C CNN +F 2 "" H 4450 1600 60 0000 C CNN +F 3 "" H 4450 1600 60 0000 C CNN + 5 4450 1600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686FE646 +P 2000 4400 +F 0 "U1" H 2050 4500 30 0000 C CNN +F 1 "PORT" H 2000 4400 30 0000 C CNN +F 2 "" H 2000 4400 60 0000 C CNN +F 3 "" H 2000 4400 60 0000 C CNN + 1 2000 4400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686FE6B7 +P 2000 4950 +F 0 "U1" H 2050 5050 30 0000 C CNN +F 1 "PORT" H 2000 4950 30 0000 C CNN +F 2 "" H 2000 4950 60 0000 C CNN +F 3 "" H 2000 4950 60 0000 C CNN + 2 2000 4950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686FE728 +P 2000 5050 +F 0 "U1" H 2050 5150 30 0000 C CNN +F 1 "PORT" H 2000 5050 30 0000 C CNN +F 2 "" H 2000 5050 60 0000 C CNN +F 3 "" H 2000 5050 60 0000 C CNN + 3 2000 5050 + 1 0 0 1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/SN54L99.sub b/library/SubcircuitLibrary/SN54L99/SN54L99.sub new file mode 100644 index 000000000..1fc20d442 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SN54L99.sub @@ -0,0 +1,27 @@ +* Subcircuit SN54L99 +.subckt SN54L99 /rs /mode /ls net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/sn54l99/sn54l99.cir +.include SerialParallel_blk.sub +.include or_2.sub +.include DS_blk.sub +.include CMOS_INVTR.sub +.include 2_in_and.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +* s c m o d e +x4 net-_u1-pad7_ net-_u1-pad6_ net-_x4-pad3_ net-_u1-pad4_ /mode net-_x1-pad4_ net-_u1-pad13_ net-_u1-pad15_ net-_u1-pad5_ SerialParallel_blk +x6 net-_u1-pad5_ net-_x1-pad4_ /mode net-_u1-pad8_ net-_x4-pad3_ net-_u1-pad13_ net-_u1-pad15_ net-_u1-pad9_ DS_blk +x7 net-_u1-pad9_ net-_x1-pad4_ /mode net-_u1-pad10_ net-_x4-pad3_ net-_u1-pad13_ net-_u1-pad15_ net-_u1-pad11_ DS_blk +x8 net-_u1-pad11_ net-_x1-pad4_ /mode net-_u1-pad12_ net-_x4-pad3_ net-_u1-pad13_ net-_u1-pad15_ net-_u1-pad14_ DS_blk +x2 net-_u1-pad13_ net-_x1-pad4_ /rs net-_u1-pad15_ net-_x2-pad5_ 2_in_and +x3 net-_u1-pad13_ /mode /ls net-_u1-pad15_ net-_x3-pad5_ 2_in_and +x5 net-_x2-pad5_ net-_x3-pad5_ net-_u1-pad13_ net-_u1-pad15_ net-_x4-pad3_ or_2 +x1 /mode net-_u1-pad13_ net-_u1-pad15_ net-_x1-pad4_ CMOS_INVTR +* Control Statements + +.ends SN54L99 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/SN54L99_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/SN54L99_Previous_Values.xml new file mode 100644 index 000000000..b4c5d9bf1 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SN54L99_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SerialParallel_blk/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/DS_blk/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/DS_blk/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/DS_blk/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/2_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/2_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/or_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/SRFF-cache.lib b/library/SubcircuitLibrary/SN54L99/SRFF-cache.lib new file mode 100644 index 000000000..eb753a8d1 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SRFF-cache.lib @@ -0,0 +1,76 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# NAND_2 +# +DEF NAND_2 X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "NAND_2" 50 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 100 0 206 760 -760 0 1 0 N 150 200 150 -200 +C 350 0 50 0 1 0 N +P 2 0 1 0 -200 200 150 200 N +P 3 0 1 0 -200 200 -200 -200 150 -200 N +X in1 1 -400 50 200 R 50 50 1 1 I +X Gnd 2 -400 -150 200 R 50 50 1 1 I +X Vdd 3 -400 150 200 R 50 50 1 1 I +X out 4 600 0 200 L 50 50 1 1 O +X in2 5 -400 -50 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/SRFF-rescue.lib b/library/SubcircuitLibrary/SN54L99/SRFF-rescue.lib new file mode 100644 index 000000000..eb8af4a82 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SRFF-rescue.lib @@ -0,0 +1,46 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# NAND_2-RESCUE-SRFF +# +DEF NAND_2-RESCUE-SRFF X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "NAND_2-RESCUE-SRFF" 400 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 400 0 255 787 -787 0 1 0 N 450 250 450 -250 +C 700 0 0 0 1 0 N +C 700 0 50 0 1 0 N +P 2 0 1 0 -300 250 450 250 N +P 3 0 1 0 -300 250 -300 -250 450 -250 N +X inA 1 -500 100 200 R 50 50 1 1 I +X Gnd 2 0 -450 200 U 50 50 1 1 I +X Vdd 3 0 450 200 D 50 50 1 1 I +X Out 4 950 0 200 L 50 50 1 1 O +X inB 5 -500 -100 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# NAND_3-RESCUE-SRFF +# +DEF NAND_3-RESCUE-SRFF X 0 40 Y Y 1 F N +F0 "X" 150 0 60 H V C CNN +F1 "NAND_3-RESCUE-SRFF" 450 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 500 0 255 787 -787 0 1 0 N 550 250 550 -250 +C 800 0 50 0 1 0 N +P 2 0 1 0 -250 250 550 250 N +P 3 0 1 0 -250 250 -250 -250 550 -250 N +X inA 1 -450 150 200 R 50 50 1 1 I +X inB 2 -450 0 200 R 50 50 1 1 I +X Gnd 3 0 -450 200 U 50 50 1 1 I +X Vdd 4 0 450 200 D 50 50 1 1 I +X Out 5 1050 0 200 L 50 50 1 1 O +X inC 6 -450 -150 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/SRFF.bak b/library/SubcircuitLibrary/SN54L99/SRFF.bak new file mode 100644 index 000000000..0b97aaa25 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SRFF.bak @@ -0,0 +1,255 @@ +EESchema Schematic File Version 2 +LIBS:SRFF-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SRFF-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 685C24CA +P 10050 1950 +F 0 "scmode1" H 10050 2100 98 0000 C CNB +F 1 "SKY130mode" H 10050 1850 118 0000 C CNB +F 2 "" H 10050 2100 60 0001 C CNN +F 3 "" H 10050 2100 60 0001 C CNN + 1 10050 1950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685C276D +P 3150 3400 +F 0 "U1" H 3200 3500 30 0000 C CNN +F 1 "PORT" H 3150 3400 30 0000 C CNN +F 2 "" H 3150 3400 60 0000 C CNN +F 3 "" H 3150 3400 60 0000 C CNN + 2 3150 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685C27A4 +P 3250 4150 +F 0 "U1" H 3300 4250 30 0000 C CNN +F 1 "PORT" H 3250 4150 30 0000 C CNN +F 2 "" H 3250 4150 60 0000 C CNN +F 3 "" H 3250 4150 60 0000 C CNN + 3 3250 4150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685C27E3 +P 4600 4650 +F 0 "U1" H 4650 4750 30 0000 C CNN +F 1 "PORT" H 4600 4650 30 0000 C CNN +F 2 "" H 4600 4650 60 0000 C CNN +F 3 "" H 4600 4650 60 0000 C CNN + 6 4600 4650 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 8 1 685C2893 +P 6200 2700 +F 0 "U1" H 6250 2800 30 0000 C CNN +F 1 "PORT" H 6200 2700 30 0000 C CNN +F 2 "" H 6200 2700 60 0000 C CNN +F 3 "" H 6200 2700 60 0000 C CNN + 8 6200 2700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 685C28F8 +P 6200 4050 +F 0 "U1" H 6250 4150 30 0000 C CNN +F 1 "PORT" H 6200 4050 30 0000 C CNN +F 2 "" H 6200 4050 60 0000 C CNN +F 3 "" H 6200 4050 60 0000 C CNN + 9 6200 4050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685C293F +P 4350 2150 +F 0 "U1" H 4400 2250 30 0000 C CNN +F 1 "PORT" H 4350 2150 30 0000 C CNN +F 2 "" H 4350 2150 60 0000 C CNN +F 3 "" H 4350 2150 60 0000 C CNN + 4 4350 2150 + 0 1 1 0 +$EndComp +$Comp +L NAND_2 X1 +U 1 1 686FA4A9 +P 3900 2650 +F 0 "X1" H 4000 2650 60 0000 C CNN +F 1 "NAND_2" H 3950 2400 60 0000 C CNN +F 2 "" H 3900 2650 60 0001 C CNN +F 3 "" H 3900 2650 60 0001 C CNN + 1 3900 2650 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X2 +U 1 1 686FA560 +P 3900 4100 +F 0 "X2" H 4000 4100 60 0000 C CNN +F 1 "NAND_2" H 3950 3850 60 0000 C CNN +F 2 "" H 3900 4100 60 0001 C CNN +F 3 "" H 3900 4100 60 0001 C CNN + 1 3900 4100 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X4 +U 1 1 686FA5A9 +P 5250 4050 +F 0 "X4" H 5350 4050 60 0000 C CNN +F 1 "NAND_2" H 5300 3800 60 0000 C CNN +F 2 "" H 5250 4050 60 0001 C CNN +F 3 "" H 5250 4050 60 0001 C CNN + 1 5250 4050 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X3 +U 1 1 686FA7E8 +P 5250 2700 +F 0 "X3" H 5350 2700 60 0000 C CNN +F 1 "NAND_2" H 5300 2450 60 0000 C CNN +F 2 "" H 5250 2700 60 0001 C CNN +F 3 "" H 5250 2700 60 0001 C CNN + 1 5250 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685C2716 +P 3250 2600 +F 0 "U1" H 3300 2700 30 0000 C CNN +F 1 "PORT" H 3250 2600 30 0000 C CNN +F 2 "" H 3250 2600 60 0000 C CNN +F 3 "" H 3250 2600 60 0000 C CNN + 1 3250 2600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4850 4000 4750 4000 +Wire Wire Line + 4750 4000 4750 3800 +Wire Wire Line + 4750 3800 5950 3800 +Wire Wire Line + 5950 3800 5950 2700 +Wire Wire Line + 5950 2700 5850 2700 +Wire Wire Line + 4850 2750 4750 2750 +Wire Wire Line + 4750 2750 4750 3000 +Wire Wire Line + 4750 3000 5950 3000 +Wire Wire Line + 5950 3000 5950 4050 +Wire Wire Line + 5950 4050 5850 4050 +Wire Wire Line + 4500 2650 4850 2650 +Wire Wire Line + 4500 4100 4850 4100 +Wire Wire Line + 3400 2700 3500 2700 +Wire Wire Line + 3400 2700 3400 4050 +Wire Wire Line + 3400 4050 3500 4050 +Connection ~ 3400 3400 +Connection ~ 5950 2700 +Connection ~ 5950 4050 +Wire Wire Line + 3500 2500 3500 2400 +Wire Wire Line + 3500 2400 4850 2400 +Wire Wire Line + 4850 2400 4850 2550 +Wire Wire Line + 3500 3750 3500 3950 +Wire Wire Line + 3500 3750 4850 3750 +Wire Wire Line + 4850 3750 4850 3900 +Wire Wire Line + 4850 2850 4850 2950 +Wire Wire Line + 4850 2950 3500 2950 +Wire Wire Line + 3500 2950 3500 2800 +Wire Wire Line + 3500 4250 3500 4400 +Wire Wire Line + 3500 4400 4850 4400 +Wire Wire Line + 4850 4400 4850 4200 +Wire Wire Line + 4350 2400 4350 3750 +Connection ~ 4350 3750 +Connection ~ 4350 2400 +Wire Wire Line + 4600 2950 4600 4400 +Connection ~ 4600 4400 +Connection ~ 4600 2950 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/SRFF.cir b/library/SubcircuitLibrary/SN54L99/SRFF.cir new file mode 100644 index 000000000..9ddfeedb5 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SRFF.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SRFF/SRFF.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Thu Jul 10 17:19:56 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT +X1 Net-_U1-Pad1_ Net-_U1-Pad5_ Net-_U1-Pad4_ Net-_X1-Pad4_ Net-_U1-Pad2_ NAND_2 +X2 Net-_U1-Pad2_ Net-_U1-Pad5_ Net-_U1-Pad4_ Net-_X2-Pad4_ Net-_U1-Pad3_ NAND_2 +X4 Net-_U1-Pad6_ Net-_U1-Pad5_ Net-_U1-Pad4_ Net-_U1-Pad7_ Net-_X2-Pad4_ NAND_2 +X3 Net-_X1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad4_ Net-_U1-Pad6_ Net-_U1-Pad7_ NAND_2 + +.end diff --git a/library/SubcircuitLibrary/SN54L99/SRFF.cir.out b/library/SubcircuitLibrary/SN54L99/SRFF.cir.out new file mode 100644 index 000000000..dbe9e83db --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SRFF.cir.out @@ -0,0 +1,25 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/srff/srff.cir + +.include NAND_2.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad9_ port +x1 net-_u1-pad1_ net-_u1-pad6_ net-_u1-pad4_ net-_x1-pad4_ net-_u1-pad2_ NAND_2 +x2 net-_u1-pad2_ net-_u1-pad6_ net-_u1-pad4_ net-_x2-pad4_ net-_u1-pad3_ NAND_2 +x4 net-_u1-pad8_ net-_u1-pad6_ net-_u1-pad4_ net-_u1-pad9_ net-_x2-pad4_ NAND_2 +x3 net-_x1-pad4_ net-_u1-pad6_ net-_u1-pad4_ net-_u1-pad8_ net-_u1-pad9_ NAND_2 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/SRFF.pro b/library/SubcircuitLibrary/SN54L99/SRFF.pro new file mode 100644 index 000000000..c46505591 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SRFF.pro @@ -0,0 +1,74 @@ +update=Thu Jul 10 16:57:06 2025 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=SRFF-rescue +LibName2=adc-dac +LibName3=memory +LibName4=xilinx +LibName5=microcontrollers +LibName6=dsp +LibName7=microchip +LibName8=analog_switches +LibName9=motorola +LibName10=texas +LibName11=intel +LibName12=audio +LibName13=interface +LibName14=digital-audio +LibName15=philips +LibName16=display +LibName17=cypress +LibName18=siliconi +LibName19=opto +LibName20=atmel +LibName21=contrib +LibName22=power +LibName23=eSim_Plot +LibName24=transistors +LibName25=conn +LibName26=eSim_User +LibName27=regul +LibName28=74xx +LibName29=cmos4000 +LibName30=eSim_Analog +LibName31=eSim_Devices +LibName32=eSim_Digital +LibName33=eSim_Hybrid +LibName34=eSim_Miscellaneous +LibName35=eSim_Power +LibName36=eSim_Sources +LibName37=eSim_Subckt +LibName38=eSim_Nghdl +LibName39=eSim_Ngveri +LibName40=eSim_SKY130 +LibName41=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/SRFF.sch b/library/SubcircuitLibrary/SN54L99/SRFF.sch new file mode 100644 index 000000000..1d06e1c86 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SRFF.sch @@ -0,0 +1,255 @@ +EESchema Schematic File Version 2 +LIBS:SRFF-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SRFF-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 685C24CA +P 10050 1950 +F 0 "scmode1" H 10050 2100 98 0000 C CNB +F 1 "SKY130mode" H 10050 1850 118 0000 C CNB +F 2 "" H 10050 2100 60 0001 C CNN +F 3 "" H 10050 2100 60 0001 C CNN + 1 10050 1950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685C276D +P 3150 3400 +F 0 "U1" H 3200 3500 30 0000 C CNN +F 1 "PORT" H 3150 3400 30 0000 C CNN +F 2 "" H 3150 3400 60 0000 C CNN +F 3 "" H 3150 3400 60 0000 C CNN + 2 3150 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685C27A4 +P 3250 4150 +F 0 "U1" H 3300 4250 30 0000 C CNN +F 1 "PORT" H 3250 4150 30 0000 C CNN +F 2 "" H 3250 4150 60 0000 C CNN +F 3 "" H 3250 4150 60 0000 C CNN + 3 3250 4150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685C293F +P 4350 2150 +F 0 "U1" H 4400 2250 30 0000 C CNN +F 1 "PORT" H 4350 2150 30 0000 C CNN +F 2 "" H 4350 2150 60 0000 C CNN +F 3 "" H 4350 2150 60 0000 C CNN + 4 4350 2150 + 0 1 1 0 +$EndComp +$Comp +L NAND_2 X1 +U 1 1 686FA4A9 +P 3900 2650 +F 0 "X1" H 4000 2650 60 0000 C CNN +F 1 "NAND_2" H 3950 2400 60 0000 C CNN +F 2 "" H 3900 2650 60 0001 C CNN +F 3 "" H 3900 2650 60 0001 C CNN + 1 3900 2650 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X2 +U 1 1 686FA560 +P 3900 4100 +F 0 "X2" H 4000 4100 60 0000 C CNN +F 1 "NAND_2" H 3950 3850 60 0000 C CNN +F 2 "" H 3900 4100 60 0001 C CNN +F 3 "" H 3900 4100 60 0001 C CNN + 1 3900 4100 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X4 +U 1 1 686FA5A9 +P 5250 4050 +F 0 "X4" H 5350 4050 60 0000 C CNN +F 1 "NAND_2" H 5300 3800 60 0000 C CNN +F 2 "" H 5250 4050 60 0001 C CNN +F 3 "" H 5250 4050 60 0001 C CNN + 1 5250 4050 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X3 +U 1 1 686FA7E8 +P 5250 2700 +F 0 "X3" H 5350 2700 60 0000 C CNN +F 1 "NAND_2" H 5300 2450 60 0000 C CNN +F 2 "" H 5250 2700 60 0001 C CNN +F 3 "" H 5250 2700 60 0001 C CNN + 1 5250 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685C2716 +P 3250 2600 +F 0 "U1" H 3300 2700 30 0000 C CNN +F 1 "PORT" H 3250 2600 30 0000 C CNN +F 2 "" H 3250 2600 60 0000 C CNN +F 3 "" H 3250 2600 60 0000 C CNN + 1 3250 2600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4850 4000 4750 4000 +Wire Wire Line + 4750 4000 4750 3800 +Wire Wire Line + 4750 3800 5950 3800 +Wire Wire Line + 5950 3800 5950 2700 +Wire Wire Line + 5950 2700 5850 2700 +Wire Wire Line + 4850 2750 4750 2750 +Wire Wire Line + 4750 2750 4750 3000 +Wire Wire Line + 4750 3000 5950 3000 +Wire Wire Line + 5950 3000 5950 4050 +Wire Wire Line + 5950 4050 5850 4050 +Wire Wire Line + 4500 2650 4850 2650 +Wire Wire Line + 4500 4100 4850 4100 +Wire Wire Line + 3400 2700 3500 2700 +Wire Wire Line + 3400 2700 3400 4050 +Wire Wire Line + 3400 4050 3500 4050 +Connection ~ 3400 3400 +Connection ~ 5950 2700 +Connection ~ 5950 4050 +Wire Wire Line + 3500 2500 3500 2400 +Wire Wire Line + 3500 2400 4850 2400 +Wire Wire Line + 4850 2400 4850 2550 +Wire Wire Line + 3500 3750 3500 3950 +Wire Wire Line + 3500 3750 4850 3750 +Wire Wire Line + 4850 3750 4850 3900 +Wire Wire Line + 4850 2850 4850 2950 +Wire Wire Line + 4850 2950 3500 2950 +Wire Wire Line + 3500 2950 3500 2800 +Wire Wire Line + 3500 4250 3500 4400 +Wire Wire Line + 3500 4400 4850 4400 +Wire Wire Line + 4850 4400 4850 4200 +Wire Wire Line + 4350 2400 4350 3750 +Connection ~ 4350 3750 +Connection ~ 4350 2400 +Wire Wire Line + 4600 2950 4600 4400 +Connection ~ 4600 4400 +Connection ~ 4600 2950 +$Comp +L PORT U1 +U 5 1 686FC037 +P 4600 4650 +F 0 "U1" H 4650 4750 30 0000 C CNN +F 1 "PORT" H 4600 4650 30 0000 C CNN +F 2 "" H 4600 4650 60 0000 C CNN +F 3 "" H 4600 4650 60 0000 C CNN + 5 4600 4650 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 6 1 686FC0E0 +P 6200 2700 +F 0 "U1" H 6250 2800 30 0000 C CNN +F 1 "PORT" H 6200 2700 30 0000 C CNN +F 2 "" H 6200 2700 60 0000 C CNN +F 3 "" H 6200 2700 60 0000 C CNN + 6 6200 2700 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 7 1 686FC1DD +P 6200 4050 +F 0 "U1" H 6250 4150 30 0000 C CNN +F 1 "PORT" H 6200 4050 30 0000 C CNN +F 2 "" H 6200 4050 60 0000 C CNN +F 3 "" H 6200 4050 60 0000 C CNN + 7 6200 4050 + -1 0 0 1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/SRFF.sub b/library/SubcircuitLibrary/SN54L99/SRFF.sub new file mode 100644 index 000000000..31f2380ca --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SRFF.sub @@ -0,0 +1,19 @@ +* Subcircuit SRFF +.subckt SRFF net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad9_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/srff/srff.cir +.include NAND_2.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +* s c m o d e +x1 net-_u1-pad1_ net-_u1-pad6_ net-_u1-pad4_ net-_x1-pad4_ net-_u1-pad2_ NAND_2 +x2 net-_u1-pad2_ net-_u1-pad6_ net-_u1-pad4_ net-_x2-pad4_ net-_u1-pad3_ NAND_2 +x4 net-_u1-pad8_ net-_u1-pad6_ net-_u1-pad4_ net-_u1-pad9_ net-_x2-pad4_ NAND_2 +x3 net-_x1-pad4_ net-_u1-pad6_ net-_u1-pad4_ net-_u1-pad8_ net-_u1-pad9_ NAND_2 +* Control Statements + +.ends SRFF \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/SRFF_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/SRFF_Previous_Values.xml new file mode 100644 index 000000000..15c0fb647 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SRFF_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/SerialParallel_blk-cache.lib b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk-cache.lib new file mode 100644 index 000000000..b32a483e6 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk-cache.lib @@ -0,0 +1,173 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_in_and +# +DEF 3_in_and X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "3_in_and" 50 -300 60 H V C CNN +F2 "" 600 -150 60 H I C CNN +F3 "" 600 -150 60 H I C CNN +DRAW +A 100 0 255 787 -787 0 1 0 N 150 250 150 -250 +P 2 0 1 0 -150 250 100 250 N +P 2 0 1 0 150 250 100 250 N +P 3 0 1 0 -150 250 -150 -250 150 -250 N +X in1 1 -350 100 200 R 50 50 1 1 I +X in2 2 -350 0 200 R 50 50 1 1 I +X Vdd 3 -350 200 200 R 50 50 1 1 I +X Gnd 4 -350 -200 200 R 50 50 1 1 I +X in3 5 -350 -100 200 R 50 50 1 1 I +X out 6 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 4_in_and +# +DEF 4_in_and X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "4_in_and" -50 -400 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 0 -25 329 813 -813 0 1 0 N 50 300 50 -350 +P 2 0 1 0 -250 300 50 300 N +P 3 0 1 0 -250 300 -250 -350 50 -350 N +X Vdd 1 -450 250 200 R 50 50 1 1 I +X in1 2 -450 150 200 R 50 50 1 1 I +X in2 3 -450 50 200 R 50 50 1 1 I +X in3 4 -450 -100 200 R 50 50 1 1 I +X Gnd 5 -450 -300 200 R 50 50 1 1 I +X in4 6 -450 -200 200 R 50 50 1 1 I +X out 7 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CMOS_Buf +# +DEF CMOS_Buf X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_Buf" 0 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +P 2 0 1 0 -250 150 250 0 N +P 3 0 1 0 -250 150 -250 -150 250 0 N +X Vdd 1 -450 100 200 R 50 50 1 1 I +X Gnd 2 -450 -100 200 R 50 50 1 1 I +X in 3 -450 0 200 R 50 50 1 1 I +X Out 4 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 300 0 50 0 1 0 N +P 2 0 1 0 -200 150 250 0 N +P 3 0 1 0 -200 150 -200 -150 250 0 N +X in 1 -400 0 200 R 50 50 1 1 I +X Vdd 2 -400 100 200 R 50 50 1 1 I +X Gnd 3 -400 -100 200 R 50 50 1 1 I +X Out 4 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NOR_3 +# +DEF NOR_3 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "NOR_3" -150 -350 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A -600 0 361 563 -563 0 1 0 N -400 300 -400 -300 +A -277 -288 601 1018 287 0 1 0 N -400 300 250 0 +A -277 288 601 -1018 -287 0 1 0 N -400 -300 250 0 +C 300 0 50 0 1 0 N +X in1 1 -450 100 200 R 50 50 1 1 I +X in2 2 -450 0 200 R 50 50 1 1 I +X out 3 550 0 200 L 50 50 1 1 O +X Gnd 4 -500 -200 200 R 50 50 1 1 I +X Vdd 5 -500 200 200 R 50 50 1 1 I +X in3 6 -450 -100 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# SRFF +# +DEF SRFF X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "SRFF" 0 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -300 250 300 -150 0 1 0 N +X S 1 -500 100 200 R 50 50 1 1 I +X clk 2 -500 0 200 R 50 50 1 1 I +X R 3 -500 -100 200 R 50 50 1 1 I +X Vdd 4 -500 200 200 R 50 50 1 1 I +X Gnd 5 500 -100 200 L 50 50 1 1 I +X Q 6 500 150 200 L 50 50 1 1 O +X Qn 7 500 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.bak b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.bak new file mode 100644 index 000000000..4784ac42c --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.bak @@ -0,0 +1,557 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 4_in_and X5 +U 1 1 686FAC82 +P 4850 2050 +F 0 "X5" H 4850 2050 60 0000 C CNN +F 1 "4_in_and" H 4800 1650 60 0000 C CNN +F 2 "" H 4850 2050 60 0001 C CNN +F 3 "" H 4850 2050 60 0001 C CNN + 1 4850 2050 + 1 0 0 -1 +$EndComp +$Comp +L 3_in_and X3 +U 1 1 686FACB3 +P 4750 3000 +F 0 "X3" H 4850 3000 60 0000 C CNN +F 1 "3_in_and" H 4800 2700 60 0000 C CNN +F 2 "" H 5350 2850 60 0001 C CNN +F 3 "" H 5350 2850 60 0001 C CNN + 1 4750 3000 + 1 0 0 -1 +$EndComp +$Comp +L NOR_3 X8 +U 1 1 686FAE68 +P 6400 2550 +F 0 "X8" H 6400 2550 60 0000 C CNN +F 1 "NOR_3" H 6250 2200 60 0000 C CNN +F 2 "" H 6400 2550 60 0001 C CNN +F 3 "" H 6400 2550 60 0001 C CNN + 1 6400 2550 + 1 0 0 -1 +$EndComp +$Comp +L 4_in_and X6 +U 1 1 686FB0C6 +P 4850 4300 +F 0 "X6" H 4850 4300 60 0000 C CNN +F 1 "4_in_and" H 4800 3900 60 0000 C CNN +F 2 "" H 4850 4300 60 0001 C CNN +F 3 "" H 4850 4300 60 0001 C CNN + 1 4850 4300 + 1 0 0 -1 +$EndComp +$Comp +L 3_in_and X4 +U 1 1 686FB0CD +P 4750 5250 +F 0 "X4" H 4850 5250 60 0000 C CNN +F 1 "3_in_and" H 4800 4950 60 0000 C CNN +F 2 "" H 5350 5100 60 0001 C CNN +F 3 "" H 5350 5100 60 0001 C CNN + 1 4750 5250 + 1 0 0 -1 +$EndComp +$Comp +L NOR_3 X9 +U 1 1 686FB0D4 +P 6400 4800 +F 0 "X9" H 6400 4800 60 0000 C CNN +F 1 "NOR_3" H 6250 4450 60 0000 C CNN +F 2 "" H 6400 4800 60 0001 C CNN +F 3 "" H 6400 4800 60 0001 C CNN + 1 6400 4800 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_Buf X10 +U 1 1 686FB13D +P 6750 3250 +F 0 "X10" H 6750 3250 60 0000 C CNN +F 1 "CMOS_Buf" H 6750 3050 60 0000 C CNN +F 2 "" H 6750 3250 60 0001 C CNN +F 3 "" H 6750 3250 60 0001 C CNN + 1 6750 3250 + -1 0 0 1 +$EndComp +$Comp +L CMOS_Buf X11 +U 1 1 686FB1A8 +P 6750 4000 +F 0 "X11" H 6750 4000 60 0000 C CNN +F 1 "CMOS_Buf" H 6750 3800 60 0000 C CNN +F 2 "" H 6750 4000 60 0001 C CNN +F 3 "" H 6750 4000 60 0001 C CNN + 1 6750 4000 + -1 0 0 1 +$EndComp +$Comp +L CMOS_INVTR X12 +U 1 1 686FB1FB +P 7200 3600 +F 0 "X12" H 7200 3600 60 0000 C CNN +F 1 "CMOS_INVTR" H 7250 3400 60 0000 C CNN +F 2 "" H 7200 3600 60 0001 C CNN +F 3 "" H 7200 3600 60 0001 C CNN + 1 7200 3600 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_Buf X7 +U 1 1 686FB24C +P 6350 3600 +F 0 "X7" H 6350 3600 60 0000 C CNN +F 1 "CMOS_Buf" H 6350 3400 60 0000 C CNN +F 2 "" H 6350 3600 60 0001 C CNN +F 3 "" H 6350 3600 60 0001 C CNN + 1 6350 3600 + 1 0 0 -1 +$EndComp +$Comp +L SRFF X13 +U 1 1 686FB30D +P 8800 3600 +F 0 "X13" H 8800 3600 60 0000 C CNN +F 1 "SRFF" H 8800 3400 60 0000 C CNN +F 2 "" H 8800 3600 60 0001 C CNN +F 3 "" H 8800 3600 60 0001 C CNN + 1 8800 3600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5350 2050 5350 2450 +Wire Wire Line + 5350 2450 5950 2450 +Wire Wire Line + 5300 3000 5350 3000 +Wire Wire Line + 5350 3000 5350 2550 +Wire Wire Line + 5350 2550 5950 2550 +Wire Wire Line + 6300 3250 5400 3250 +Wire Wire Line + 5400 3250 5400 2650 +Wire Wire Line + 5400 2650 5950 2650 +Wire Wire Line + 5350 4300 5350 4800 +Wire Wire Line + 5350 4800 5950 4800 +Wire Wire Line + 5300 5250 5350 5250 +Wire Wire Line + 5350 5250 5350 4900 +Wire Wire Line + 5350 4900 5950 4900 +Wire Wire Line + 6300 4000 5400 4000 +Wire Wire Line + 5400 4000 5400 4700 +Wire Wire Line + 5400 4700 5950 4700 +Wire Wire Line + 4400 2150 4200 2150 +Wire Wire Line + 4200 2150 4200 5150 +Wire Wire Line + 4200 4400 4400 4400 +Wire Wire Line + 4200 5150 4400 5150 +Connection ~ 4200 4400 +Wire Wire Line + 4400 2900 4200 2900 +Connection ~ 4200 2900 +Wire Wire Line + 7200 3250 8150 3250 +Wire Wire Line + 7750 3600 8300 3600 +Wire Wire Line + 8150 3250 8150 3500 +Wire Wire Line + 8150 3500 8300 3500 +Wire Wire Line + 7200 4000 8150 4000 +Wire Wire Line + 8150 4000 8150 3700 +Wire Wire Line + 8150 3700 8300 3700 +Wire Wire Line + 6950 4800 8000 4800 +Wire Wire Line + 8000 4800 8000 3250 +Connection ~ 8000 3250 +Wire Wire Line + 8050 4000 8050 2550 +Connection ~ 8050 4000 +Wire Wire Line + 8050 2550 6950 2550 +Wire Wire Line + 4400 1900 4200 1900 +Wire Wire Line + 4200 1900 4200 1650 +Wire Wire Line + 4200 1650 9550 1650 +Wire Wire Line + 9550 1650 9550 3550 +Wire Wire Line + 9550 3550 9300 3550 +Wire Wire Line + 9300 3450 10150 3450 +Wire Wire Line + 9600 3450 9600 5600 +Wire Wire Line + 9600 5600 4100 5600 +Wire Wire Line + 4100 5600 4100 4250 +Wire Wire Line + 4100 4250 4400 4250 +Connection ~ 9600 3450 +Wire Wire Line + 2800 2000 4400 2000 +Wire Wire Line + 4400 2250 4300 2250 +Wire Wire Line + 4300 2250 4300 6250 +Wire Wire Line + 4300 6250 4200 6250 +Wire Wire Line + 4400 4500 4300 4500 +Connection ~ 4300 4500 +$Comp +L CMOS_INVTR X1 +U 1 1 686FBB09 +P 3850 4150 +F 0 "X1" H 3850 4150 60 0000 C CNN +F 1 "CMOS_INVTR" H 3900 3950 60 0000 C CNN +F 2 "" H 3850 4150 60 0001 C CNN +F 3 "" H 3850 4150 60 0001 C CNN + 1 3850 4150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3450 4150 2800 4150 +Text Label 2900 4150 0 60 ~ 0 +K +Text Label 2950 2000 0 60 ~ 0 +J +$Comp +L CMOS_INVTR X2 +U 1 1 686FBC8F +P 3850 5350 +F 0 "X2" H 3850 5350 60 0000 C CNN +F 1 "CMOS_INVTR" H 3900 5150 60 0000 C CNN +F 2 "" H 3850 5350 60 0001 C CNN +F 3 "" H 3850 5350 60 0001 C CNN + 1 3850 5350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3450 5350 2850 5350 +Text Label 2950 5350 0 60 ~ 0 +A +Wire Wire Line + 3300 5350 3300 3100 +Wire Wire Line + 3300 3100 4400 3100 +Connection ~ 3300 5350 +Wire Wire Line + 4400 3000 3750 3000 +Wire Wire Line + 3750 3000 3750 6250 +Wire Wire Line + 3750 6250 3650 6250 +Text Label 4300 5900 0 60 ~ 0 +M_bar +Text Label 3750 5900 0 60 ~ 0 +M +Wire Wire Line + 4400 5250 3850 5250 +Wire Wire Line + 3850 5250 3850 5150 +Wire Wire Line + 3850 5150 3750 5150 +Connection ~ 3750 5150 +Wire Wire Line + 4400 1800 4400 1700 +Wire Wire Line + 3450 1700 8300 1700 +Wire Wire Line + 8300 1700 8300 3400 +Wire Wire Line + 5900 2350 5900 1700 +Connection ~ 5900 1700 +Wire Wire Line + 7200 3350 8300 3350 +Connection ~ 8300 3350 +Wire Wire Line + 6800 3500 6800 3400 +Wire Wire Line + 5450 3400 7300 3400 +Wire Wire Line + 7300 3400 7300 3350 +Connection ~ 7300 3350 +Wire Wire Line + 5900 3500 5900 3400 +Connection ~ 6800 3400 +Wire Wire Line + 4400 2700 4400 2800 +Wire Wire Line + 4400 2700 5450 2700 +Wire Wire Line + 5450 2700 5450 3400 +Connection ~ 5900 3400 +Wire Wire Line + 7200 4100 7550 4100 +Wire Wire Line + 7550 4100 7550 3350 +Connection ~ 7550 3350 +Wire Wire Line + 4400 4050 4400 4000 +Wire Wire Line + 4400 4000 3450 4000 +Wire Wire Line + 3450 1700 3450 4050 +Wire Wire Line + 4400 5050 3450 5050 +Wire Wire Line + 3450 5050 3450 5250 +Wire Wire Line + 3900 5050 3900 4000 +Connection ~ 3900 4000 +Connection ~ 3900 5050 +Wire Wire Line + 5900 4600 5250 4600 +Wire Wire Line + 5250 4600 5250 4850 +Wire Wire Line + 5250 4850 3900 4850 +Connection ~ 3900 4850 +Connection ~ 4400 1700 +Connection ~ 3450 4000 +Wire Wire Line + 4400 2350 4350 2350 +Wire Wire Line + 4350 2350 4350 5650 +Wire Wire Line + 4350 3200 4400 3200 +Wire Wire Line + 3450 4600 4400 4600 +Connection ~ 4350 3200 +Wire Wire Line + 4350 5450 4400 5450 +Connection ~ 4350 4600 +Wire Wire Line + 3450 4600 3450 4250 +Wire Wire Line + 3450 5450 3450 5650 +Wire Wire Line + 3450 5650 9300 5650 +Connection ~ 4350 5450 +Wire Wire Line + 5900 5650 5900 5000 +Connection ~ 4350 5650 +Wire Wire Line + 9300 5650 9300 3700 +Connection ~ 5900 5650 +Wire Wire Line + 5900 2750 5650 2750 +Wire Wire Line + 5650 2750 5650 5650 +Connection ~ 5650 5650 +Wire Wire Line + 5900 3700 5650 3700 +Connection ~ 5650 3700 +Wire Wire Line + 7200 3150 7200 3050 +Wire Wire Line + 7200 3050 5650 3050 +Connection ~ 5650 3050 +Wire Wire Line + 7200 3900 7200 3850 +Wire Wire Line + 7200 3850 7100 3850 +Wire Wire Line + 7100 3850 7100 3050 +Connection ~ 7100 3050 +Wire Wire Line + 6800 3700 6800 3750 +Wire Wire Line + 6800 3750 7100 3750 +Connection ~ 7100 3750 +Wire Wire Line + 5900 3600 2850 3600 +Text Label 3050 3600 0 60 ~ 0 +clk +Text Label 9950 3450 0 60 ~ 0 +Qa +$Comp +L PORT U1 +U 1 1 686FD4D2 +P 2550 2000 +F 0 "U1" H 2600 2100 30 0000 C CNN +F 1 "PORT" H 2550 2000 30 0000 C CNN +F 2 "" H 2550 2000 60 0000 C CNN +F 3 "" H 2550 2000 60 0000 C CNN + 1 2550 2000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686FD5E7 +P 2600 3600 +F 0 "U1" H 2650 3700 30 0000 C CNN +F 1 "PORT" H 2600 3600 30 0000 C CNN +F 2 "" H 2600 3600 60 0000 C CNN +F 3 "" H 2600 3600 60 0000 C CNN + 3 2600 3600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686FD6BF +P 2550 4150 +F 0 "U1" H 2600 4250 30 0000 C CNN +F 1 "PORT" H 2550 4150 30 0000 C CNN +F 2 "" H 2550 4150 60 0000 C CNN +F 3 "" H 2550 4150 60 0000 C CNN + 2 2550 4150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686FD754 +P 2600 5350 +F 0 "U1" H 2650 5450 30 0000 C CNN +F 1 "PORT" H 2600 5350 30 0000 C CNN +F 2 "" H 2600 5350 60 0000 C CNN +F 3 "" H 2600 5350 60 0000 C CNN + 4 2600 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686FD7DF +P 3400 6250 +F 0 "U1" H 3450 6350 30 0000 C CNN +F 1 "PORT" H 3400 6250 30 0000 C CNN +F 2 "" H 3400 6250 60 0000 C CNN +F 3 "" H 3400 6250 60 0000 C CNN + 5 3400 6250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686FD820 +P 3950 6250 +F 0 "U1" H 4000 6350 30 0000 C CNN +F 1 "PORT" H 3950 6250 30 0000 C CNN +F 2 "" H 3950 6250 60 0000 C CNN +F 3 "" H 3950 6250 60 0000 C CNN + 6 3950 6250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 686FD956 +P 10400 3450 +F 0 "U1" H 10450 3550 30 0000 C CNN +F 1 "PORT" H 10400 3450 30 0000 C CNN +F 2 "" H 10400 3450 60 0000 C CNN +F 3 "" H 10400 3450 60 0000 C CNN + 9 10400 3450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686FDA9B +P 8550 3150 +F 0 "U1" H 8600 3250 30 0000 C CNN +F 1 "PORT" H 8550 3150 30 0000 C CNN +F 2 "" H 8550 3150 60 0000 C CNN +F 3 "" H 8550 3150 60 0000 C CNN + 7 8550 3150 + -1 0 0 1 +$EndComp +Connection ~ 8300 3150 +Connection ~ 9300 4000 +$Comp +L PORT U1 +U 8 1 686FDB8D +P 9050 4000 +F 0 "U1" H 9100 4100 30 0000 C CNN +F 1 "PORT" H 9050 4000 30 0000 C CNN +F 2 "" H 9050 4000 60 0000 C CNN +F 3 "" H 9050 4000 60 0000 C CNN + 8 9050 4000 + 1 0 0 -1 +$EndComp +Connection ~ 4200 3600 +$Comp +L SKY130mode scmode1 +U 1 1 686FE421 +P 6300 6600 +F 0 "scmode1" H 6300 6750 98 0000 C CNB +F 1 "SKY130mode" H 6300 6500 118 0000 C CNB +F 2 "" H 6300 6750 60 0001 C CNN +F 3 "" H 6300 6750 60 0001 C CNN + 1 6300 6600 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.cir b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.cir new file mode 100644 index 000000000..059a1c5d0 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.cir @@ -0,0 +1,25 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SerialParallel_blk/SerialParallel_blk.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Thu Jul 10 18:13:44 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X5 Net-_U1-Pad7_ Net-_X13-Pad7_ Net-_U1-Pad1_ Net-_U1-Pad3_ Net-_U1-Pad8_ Net-_U1-Pad6_ Net-_X5-Pad7_ 4_in_and +X3 Net-_U1-Pad3_ Net-_U1-Pad5_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad4_ Net-_X3-Pad6_ 3_in_and +X8 Net-_X5-Pad7_ Net-_X3-Pad6_ Net-_X11-Pad3_ Net-_U1-Pad8_ Net-_U1-Pad7_ Net-_X10-Pad4_ NOR_3 +X6 Net-_U1-Pad7_ Net-_X1-Pad4_ Net-_U1-Pad9_ Net-_U1-Pad3_ Net-_U1-Pad8_ Net-_U1-Pad6_ Net-_X6-Pad7_ 4_in_and +X4 Net-_U1-Pad3_ Net-_U1-Pad5_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_X2-Pad4_ Net-_X4-Pad6_ 3_in_and +X9 Net-_X11-Pad4_ Net-_X6-Pad7_ Net-_X10-Pad3_ Net-_U1-Pad8_ Net-_U1-Pad7_ Net-_X4-Pad6_ NOR_3 +X10 Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_X10-Pad3_ Net-_X10-Pad4_ CMOS_Buf +X11 Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_X11-Pad3_ Net-_X11-Pad4_ CMOS_Buf +X12 Net-_X12-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_X12-Pad4_ CMOS_INVTR +X7 Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad3_ Net-_X12-Pad1_ CMOS_Buf +X13 Net-_X10-Pad3_ Net-_X12-Pad4_ Net-_X11-Pad3_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_X13-Pad7_ SRFF +X1 Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_X1-Pad4_ CMOS_INVTR +X2 Net-_U1-Pad4_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_X2-Pad4_ CMOS_INVTR +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.cir.out b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.cir.out new file mode 100644 index 000000000..e080aa9f9 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.cir.out @@ -0,0 +1,39 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/serialparallel_blk/serialparallel_blk.cir + +.include CMOS_Buf.sub +.include 4_in_and.sub +.include SRFF.sub +.include 3_in_and.sub +.include CMOS_INVTR.sub +.include NOR_3.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +x5 net-_u1-pad7_ net-_x13-pad7_ net-_u1-pad1_ net-_u1-pad3_ net-_u1-pad8_ net-_u1-pad6_ net-_x5-pad7_ 4_in_and +x3 net-_u1-pad3_ net-_u1-pad5_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad4_ net-_x3-pad6_ 3_in_and +x8 net-_x5-pad7_ net-_x3-pad6_ net-_x11-pad3_ net-_u1-pad8_ net-_u1-pad7_ net-_x10-pad4_ NOR_3 +x6 net-_u1-pad7_ net-_x1-pad4_ net-_u1-pad9_ net-_u1-pad3_ net-_u1-pad8_ net-_u1-pad6_ net-_x6-pad7_ 4_in_and +x4 net-_u1-pad3_ net-_u1-pad5_ net-_u1-pad7_ net-_u1-pad8_ net-_x2-pad4_ net-_x4-pad6_ 3_in_and +x9 net-_x11-pad4_ net-_x6-pad7_ net-_x10-pad3_ net-_u1-pad8_ net-_u1-pad7_ net-_x4-pad6_ NOR_3 +x10 net-_u1-pad7_ net-_u1-pad8_ net-_x10-pad3_ net-_x10-pad4_ CMOS_Buf +x11 net-_u1-pad7_ net-_u1-pad8_ net-_x11-pad3_ net-_x11-pad4_ CMOS_Buf +x12 net-_x12-pad1_ net-_u1-pad7_ net-_u1-pad8_ net-_x12-pad4_ CMOS_INVTR +x7 net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad3_ net-_x12-pad1_ CMOS_Buf +x13 net-_x10-pad3_ net-_x12-pad4_ net-_x11-pad3_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_x13-pad7_ SRFF +x1 net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad8_ net-_x1-pad4_ CMOS_INVTR +x2 net-_u1-pad4_ net-_u1-pad7_ net-_u1-pad8_ net-_x2-pad4_ CMOS_INVTR +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.pro b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.sch b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.sch new file mode 100644 index 000000000..650c73878 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.sch @@ -0,0 +1,543 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 4_in_and X5 +U 1 1 686FAC82 +P 4850 2050 +F 0 "X5" H 4850 2050 60 0000 C CNN +F 1 "4_in_and" H 4800 1650 60 0000 C CNN +F 2 "" H 4850 2050 60 0001 C CNN +F 3 "" H 4850 2050 60 0001 C CNN + 1 4850 2050 + 1 0 0 -1 +$EndComp +$Comp +L 3_in_and X3 +U 1 1 686FACB3 +P 4750 3000 +F 0 "X3" H 4850 3000 60 0000 C CNN +F 1 "3_in_and" H 4800 2700 60 0000 C CNN +F 2 "" H 5350 2850 60 0001 C CNN +F 3 "" H 5350 2850 60 0001 C CNN + 1 4750 3000 + 1 0 0 -1 +$EndComp +$Comp +L NOR_3 X8 +U 1 1 686FAE68 +P 6400 2550 +F 0 "X8" H 6400 2550 60 0000 C CNN +F 1 "NOR_3" H 6250 2200 60 0000 C CNN +F 2 "" H 6400 2550 60 0001 C CNN +F 3 "" H 6400 2550 60 0001 C CNN + 1 6400 2550 + 1 0 0 -1 +$EndComp +$Comp +L 4_in_and X6 +U 1 1 686FB0C6 +P 4850 4300 +F 0 "X6" H 4850 4300 60 0000 C CNN +F 1 "4_in_and" H 4800 3900 60 0000 C CNN +F 2 "" H 4850 4300 60 0001 C CNN +F 3 "" H 4850 4300 60 0001 C CNN + 1 4850 4300 + 1 0 0 -1 +$EndComp +$Comp +L 3_in_and X4 +U 1 1 686FB0CD +P 4750 5250 +F 0 "X4" H 4850 5250 60 0000 C CNN +F 1 "3_in_and" H 4800 4950 60 0000 C CNN +F 2 "" H 5350 5100 60 0001 C CNN +F 3 "" H 5350 5100 60 0001 C CNN + 1 4750 5250 + 1 0 0 -1 +$EndComp +$Comp +L NOR_3 X9 +U 1 1 686FB0D4 +P 6400 4800 +F 0 "X9" H 6400 4800 60 0000 C CNN +F 1 "NOR_3" H 6250 4450 60 0000 C CNN +F 2 "" H 6400 4800 60 0001 C CNN +F 3 "" H 6400 4800 60 0001 C CNN + 1 6400 4800 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_Buf X10 +U 1 1 686FB13D +P 6750 3250 +F 0 "X10" H 6750 3250 60 0000 C CNN +F 1 "CMOS_Buf" H 6750 3050 60 0000 C CNN +F 2 "" H 6750 3250 60 0001 C CNN +F 3 "" H 6750 3250 60 0001 C CNN + 1 6750 3250 + -1 0 0 1 +$EndComp +$Comp +L CMOS_Buf X11 +U 1 1 686FB1A8 +P 6750 4000 +F 0 "X11" H 6750 4000 60 0000 C CNN +F 1 "CMOS_Buf" H 6750 3800 60 0000 C CNN +F 2 "" H 6750 4000 60 0001 C CNN +F 3 "" H 6750 4000 60 0001 C CNN + 1 6750 4000 + -1 0 0 1 +$EndComp +$Comp +L CMOS_INVTR X12 +U 1 1 686FB1FB +P 7200 3600 +F 0 "X12" H 7200 3600 60 0000 C CNN +F 1 "CMOS_INVTR" H 7250 3400 60 0000 C CNN +F 2 "" H 7200 3600 60 0001 C CNN +F 3 "" H 7200 3600 60 0001 C CNN + 1 7200 3600 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_Buf X7 +U 1 1 686FB24C +P 6350 3600 +F 0 "X7" H 6350 3600 60 0000 C CNN +F 1 "CMOS_Buf" H 6350 3400 60 0000 C CNN +F 2 "" H 6350 3600 60 0001 C CNN +F 3 "" H 6350 3600 60 0001 C CNN + 1 6350 3600 + 1 0 0 -1 +$EndComp +$Comp +L SRFF X13 +U 1 1 686FB30D +P 8800 3600 +F 0 "X13" H 8800 3600 60 0000 C CNN +F 1 "SRFF" H 8800 3400 60 0000 C CNN +F 2 "" H 8800 3600 60 0001 C CNN +F 3 "" H 8800 3600 60 0001 C CNN + 1 8800 3600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5350 2050 5350 2450 +Wire Wire Line + 5350 2450 5950 2450 +Wire Wire Line + 5300 3000 5350 3000 +Wire Wire Line + 5350 3000 5350 2550 +Wire Wire Line + 5350 2550 5950 2550 +Wire Wire Line + 6300 3250 5400 3250 +Wire Wire Line + 5400 3250 5400 2650 +Wire Wire Line + 5400 2650 5950 2650 +Wire Wire Line + 5350 4300 5350 4800 +Wire Wire Line + 5350 4800 5950 4800 +Wire Wire Line + 5300 5250 5350 5250 +Wire Wire Line + 5350 5250 5350 4900 +Wire Wire Line + 5350 4900 5950 4900 +Wire Wire Line + 6300 4000 5400 4000 +Wire Wire Line + 5400 4000 5400 4700 +Wire Wire Line + 5400 4700 5950 4700 +Wire Wire Line + 4400 2150 4200 2150 +Wire Wire Line + 4200 2150 4200 5150 +Wire Wire Line + 4200 4400 4400 4400 +Wire Wire Line + 4200 5150 4400 5150 +Connection ~ 4200 4400 +Wire Wire Line + 4400 2900 4200 2900 +Connection ~ 4200 2900 +Wire Wire Line + 7200 3250 8150 3250 +Wire Wire Line + 7750 3600 8300 3600 +Wire Wire Line + 8150 3250 8150 3500 +Wire Wire Line + 8150 3500 8300 3500 +Wire Wire Line + 7200 4000 8150 4000 +Wire Wire Line + 8150 4000 8150 3700 +Wire Wire Line + 8150 3700 8300 3700 +Wire Wire Line + 6950 4800 8000 4800 +Wire Wire Line + 8000 4800 8000 3250 +Connection ~ 8000 3250 +Wire Wire Line + 8050 4000 8050 2550 +Connection ~ 8050 4000 +Wire Wire Line + 8050 2550 6950 2550 +Wire Wire Line + 4400 1900 4200 1900 +Wire Wire Line + 4200 1900 4200 1650 +Wire Wire Line + 4200 1650 9550 1650 +Wire Wire Line + 9550 1650 9550 3550 +Wire Wire Line + 9550 3550 9300 3550 +Wire Wire Line + 9300 3450 10150 3450 +Wire Wire Line + 9600 3450 9600 5600 +Wire Wire Line + 9600 5600 4100 5600 +Wire Wire Line + 4100 5600 4100 4250 +Wire Wire Line + 4100 4250 4400 4250 +Connection ~ 9600 3450 +Wire Wire Line + 2800 2000 4400 2000 +Wire Wire Line + 4400 2250 4300 2250 +Wire Wire Line + 4300 2250 4300 6250 +Wire Wire Line + 4300 6250 4200 6250 +Wire Wire Line + 4400 4500 4300 4500 +Connection ~ 4300 4500 +$Comp +L CMOS_INVTR X1 +U 1 1 686FBB09 +P 3850 4150 +F 0 "X1" H 3850 4150 60 0000 C CNN +F 1 "CMOS_INVTR" H 3900 3950 60 0000 C CNN +F 2 "" H 3850 4150 60 0001 C CNN +F 3 "" H 3850 4150 60 0001 C CNN + 1 3850 4150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3450 4150 2800 4150 +$Comp +L CMOS_INVTR X2 +U 1 1 686FBC8F +P 3850 5350 +F 0 "X2" H 3850 5350 60 0000 C CNN +F 1 "CMOS_INVTR" H 3900 5150 60 0000 C CNN +F 2 "" H 3850 5350 60 0001 C CNN +F 3 "" H 3850 5350 60 0001 C CNN + 1 3850 5350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3450 5350 2850 5350 +Wire Wire Line + 3300 5350 3300 3100 +Wire Wire Line + 3300 3100 4400 3100 +Connection ~ 3300 5350 +Wire Wire Line + 4400 3000 3750 3000 +Wire Wire Line + 3750 3000 3750 6250 +Wire Wire Line + 3750 6250 3650 6250 +Wire Wire Line + 4400 5250 3850 5250 +Wire Wire Line + 3850 5250 3850 5150 +Wire Wire Line + 3850 5150 3750 5150 +Connection ~ 3750 5150 +Wire Wire Line + 4400 1800 4400 1700 +Wire Wire Line + 3450 1700 8300 1700 +Wire Wire Line + 8300 1700 8300 3400 +Wire Wire Line + 5900 2350 5900 1700 +Connection ~ 5900 1700 +Wire Wire Line + 7200 3350 8300 3350 +Connection ~ 8300 3350 +Wire Wire Line + 6800 3500 6800 3400 +Wire Wire Line + 5450 3400 7300 3400 +Wire Wire Line + 7300 3400 7300 3350 +Connection ~ 7300 3350 +Wire Wire Line + 5900 3500 5900 3400 +Connection ~ 6800 3400 +Wire Wire Line + 4400 2700 4400 2800 +Wire Wire Line + 4400 2700 5450 2700 +Wire Wire Line + 5450 2700 5450 3400 +Connection ~ 5900 3400 +Wire Wire Line + 7200 4100 7550 4100 +Wire Wire Line + 7550 4100 7550 3350 +Connection ~ 7550 3350 +Wire Wire Line + 4400 4050 4400 4000 +Wire Wire Line + 4400 4000 3450 4000 +Wire Wire Line + 3450 1700 3450 4050 +Wire Wire Line + 4400 5050 3450 5050 +Wire Wire Line + 3450 5050 3450 5250 +Wire Wire Line + 3900 5050 3900 4000 +Connection ~ 3900 4000 +Connection ~ 3900 5050 +Wire Wire Line + 5900 4600 5250 4600 +Wire Wire Line + 5250 4600 5250 4850 +Wire Wire Line + 5250 4850 3900 4850 +Connection ~ 3900 4850 +Connection ~ 4400 1700 +Connection ~ 3450 4000 +Wire Wire Line + 4400 2350 4350 2350 +Wire Wire Line + 4350 2350 4350 5650 +Wire Wire Line + 4350 3200 4400 3200 +Wire Wire Line + 3450 4600 4400 4600 +Connection ~ 4350 3200 +Wire Wire Line + 4350 5450 4400 5450 +Connection ~ 4350 4600 +Wire Wire Line + 3450 4600 3450 4250 +Wire Wire Line + 3450 5450 3450 5650 +Wire Wire Line + 3450 5650 9300 5650 +Connection ~ 4350 5450 +Wire Wire Line + 5900 5650 5900 5000 +Connection ~ 4350 5650 +Wire Wire Line + 9300 5650 9300 3700 +Connection ~ 5900 5650 +Wire Wire Line + 5900 2750 5650 2750 +Wire Wire Line + 5650 2750 5650 5650 +Connection ~ 5650 5650 +Wire Wire Line + 5900 3700 5650 3700 +Connection ~ 5650 3700 +Wire Wire Line + 7200 3150 7200 3050 +Wire Wire Line + 7200 3050 5650 3050 +Connection ~ 5650 3050 +Wire Wire Line + 7200 3900 7200 3850 +Wire Wire Line + 7200 3850 7100 3850 +Wire Wire Line + 7100 3850 7100 3050 +Connection ~ 7100 3050 +Wire Wire Line + 6800 3700 6800 3750 +Wire Wire Line + 6800 3750 7100 3750 +Connection ~ 7100 3750 +Wire Wire Line + 5900 3600 2850 3600 +$Comp +L PORT U1 +U 1 1 686FD4D2 +P 2550 2000 +F 0 "U1" H 2600 2100 30 0000 C CNN +F 1 "PORT" H 2550 2000 30 0000 C CNN +F 2 "" H 2550 2000 60 0000 C CNN +F 3 "" H 2550 2000 60 0000 C CNN + 1 2550 2000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686FD5E7 +P 2600 3600 +F 0 "U1" H 2650 3700 30 0000 C CNN +F 1 "PORT" H 2600 3600 30 0000 C CNN +F 2 "" H 2600 3600 60 0000 C CNN +F 3 "" H 2600 3600 60 0000 C CNN + 3 2600 3600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686FD6BF +P 2550 4150 +F 0 "U1" H 2600 4250 30 0000 C CNN +F 1 "PORT" H 2550 4150 30 0000 C CNN +F 2 "" H 2550 4150 60 0000 C CNN +F 3 "" H 2550 4150 60 0000 C CNN + 2 2550 4150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686FD754 +P 2600 5350 +F 0 "U1" H 2650 5450 30 0000 C CNN +F 1 "PORT" H 2600 5350 30 0000 C CNN +F 2 "" H 2600 5350 60 0000 C CNN +F 3 "" H 2600 5350 60 0000 C CNN + 4 2600 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686FD7DF +P 3400 6250 +F 0 "U1" H 3450 6350 30 0000 C CNN +F 1 "PORT" H 3400 6250 30 0000 C CNN +F 2 "" H 3400 6250 60 0000 C CNN +F 3 "" H 3400 6250 60 0000 C CNN + 5 3400 6250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686FD820 +P 3950 6250 +F 0 "U1" H 4000 6350 30 0000 C CNN +F 1 "PORT" H 3950 6250 30 0000 C CNN +F 2 "" H 3950 6250 60 0000 C CNN +F 3 "" H 3950 6250 60 0000 C CNN + 6 3950 6250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 686FD956 +P 10400 3450 +F 0 "U1" H 10450 3550 30 0000 C CNN +F 1 "PORT" H 10400 3450 30 0000 C CNN +F 2 "" H 10400 3450 60 0000 C CNN +F 3 "" H 10400 3450 60 0000 C CNN + 9 10400 3450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686FDA9B +P 8550 3150 +F 0 "U1" H 8600 3250 30 0000 C CNN +F 1 "PORT" H 8550 3150 30 0000 C CNN +F 2 "" H 8550 3150 60 0000 C CNN +F 3 "" H 8550 3150 60 0000 C CNN + 7 8550 3150 + -1 0 0 1 +$EndComp +Connection ~ 8300 3150 +Connection ~ 9300 4000 +$Comp +L PORT U1 +U 8 1 686FDB8D +P 9050 4000 +F 0 "U1" H 9100 4100 30 0000 C CNN +F 1 "PORT" H 9050 4000 30 0000 C CNN +F 2 "" H 9050 4000 60 0000 C CNN +F 3 "" H 9050 4000 60 0000 C CNN + 8 9050 4000 + 1 0 0 -1 +$EndComp +Connection ~ 4200 3600 +$Comp +L SKY130mode scmode1 +U 1 1 686FE421 +P 6300 6600 +F 0 "scmode1" H 6300 6750 98 0000 C CNB +F 1 "SKY130mode" H 6300 6500 118 0000 C CNB +F 2 "" H 6300 6750 60 0001 C CNN +F 3 "" H 6300 6750 60 0001 C CNN + 1 6300 6600 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.sub b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.sub new file mode 100644 index 000000000..683b229ba --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk.sub @@ -0,0 +1,33 @@ +* Subcircuit SerialParallel_blk +.subckt SerialParallel_blk net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/serialparallel_blk/serialparallel_blk.cir +.include CMOS_Buf.sub +.include 4_in_and.sub +.include SRFF.sub +.include 3_in_and.sub +.include CMOS_INVTR.sub +.include NOR_3.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +x5 net-_u1-pad7_ net-_x13-pad7_ net-_u1-pad1_ net-_u1-pad3_ net-_u1-pad8_ net-_u1-pad6_ net-_x5-pad7_ 4_in_and +x3 net-_u1-pad3_ net-_u1-pad5_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad4_ net-_x3-pad6_ 3_in_and +x8 net-_x5-pad7_ net-_x3-pad6_ net-_x11-pad3_ net-_u1-pad8_ net-_u1-pad7_ net-_x10-pad4_ NOR_3 +x6 net-_u1-pad7_ net-_x1-pad4_ net-_u1-pad9_ net-_u1-pad3_ net-_u1-pad8_ net-_u1-pad6_ net-_x6-pad7_ 4_in_and +x4 net-_u1-pad3_ net-_u1-pad5_ net-_u1-pad7_ net-_u1-pad8_ net-_x2-pad4_ net-_x4-pad6_ 3_in_and +x9 net-_x11-pad4_ net-_x6-pad7_ net-_x10-pad3_ net-_u1-pad8_ net-_u1-pad7_ net-_x4-pad6_ NOR_3 +x10 net-_u1-pad7_ net-_u1-pad8_ net-_x10-pad3_ net-_x10-pad4_ CMOS_Buf +x11 net-_u1-pad7_ net-_u1-pad8_ net-_x11-pad3_ net-_x11-pad4_ CMOS_Buf +x12 net-_x12-pad1_ net-_u1-pad7_ net-_u1-pad8_ net-_x12-pad4_ CMOS_INVTR +x7 net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad3_ net-_x12-pad1_ CMOS_Buf +x13 net-_x10-pad3_ net-_x12-pad4_ net-_x11-pad3_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_x13-pad7_ SRFF +x1 net-_u1-pad2_ net-_u1-pad7_ net-_u1-pad8_ net-_x1-pad4_ CMOS_INVTR +x2 net-_u1-pad4_ net-_u1-pad7_ net-_u1-pad8_ net-_x2-pad4_ CMOS_INVTR +* s c m o d e +* Control Statements + +.ends SerialParallel_blk \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/SerialParallel_blk_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk_Previous_Values.xml new file mode 100644 index 000000000..e8cf97a6a --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/SerialParallel_blk_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/4_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/3_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/4_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/3_in_and/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_Buf/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_Buf/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_Buf/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SRFF/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/analysis b/library/SubcircuitLibrary/SN54L99/analysis new file mode 100644 index 000000000..a278481ce --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 diff --git a/library/SubcircuitLibrary/SN54L99/or_2-cache.lib b/library/SubcircuitLibrary/SN54L99/or_2-cache.lib new file mode 100644 index 000000000..5f359bfb9 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/or_2-cache.lib @@ -0,0 +1,94 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 300 0 50 0 1 0 N +P 2 0 1 0 -200 150 250 0 N +P 3 0 1 0 -200 150 -200 -150 250 0 N +X in 1 -400 0 200 R 50 50 1 1 I +X Vdd 2 -400 100 200 R 50 50 1 1 I +X Gnd 3 -400 -100 200 R 50 50 1 1 I +X Out 4 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NOR_2 +# +DEF NOR_2 X 0 40 Y Y 1 F N +F0 "X" 50 0 60 H V C CNN +F1 "NOR_2" 0 -250 60 H V C CNN +F2 "" -100 0 60 H I C CNN +F3 "" -100 0 60 H I C CNN +DRAW +A -350 0 206 760 -760 0 1 0 N -300 200 -300 -200 +A -226 239 445 -996 -324 0 1 0 N -300 -200 150 0 +A -197 -174 388 1054 266 0 1 0 N -300 200 150 0 +C 200 0 50 0 1 0 N +X in1 1 -350 50 200 R 50 50 1 1 I +X Gnd 2 -400 -150 200 R 50 50 1 1 I +X Vdd 3 -400 150 200 R 50 50 1 1 I +X in2 4 -350 -50 200 R 50 50 1 1 I +X out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN54L99/or_2.bak b/library/SubcircuitLibrary/SN54L99/or_2.bak new file mode 100644 index 000000000..f2ca541e9 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/or_2.bak @@ -0,0 +1,154 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L NOR_2 X1 +U 1 1 685C27CC +P 5650 2350 +F 0 "X1" H 5650 2350 60 0000 C CNN +F 1 "NOR_2" H 5900 2350 60 0000 C CNN +F 2 "" H 5650 2350 60 0001 C CNN +F 3 "" H 5650 2350 60 0001 C CNN + 1 5650 2350 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 685C2805 +P 7100 2350 +F 0 "X2" H 7100 2350 60 0000 C CNN +F 1 "CMOS_INVTR" H 7200 2100 60 0000 C CNN +F 2 "" H 7100 2350 60 0001 C CNN +F 3 "" H 7100 2350 60 0001 C CNN + 1 7100 2350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685C28CA +P 5050 2200 +F 0 "U1" H 5100 2300 30 0000 C CNN +F 1 "PORT" H 5050 2200 30 0000 C CNN +F 2 "" H 5050 2200 60 0000 C CNN +F 3 "" H 5050 2200 60 0000 C CNN + 1 5050 2200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685C2911 +P 5050 2500 +F 0 "U1" H 5100 2600 30 0000 C CNN +F 1 "PORT" H 5050 2500 30 0000 C CNN +F 2 "" H 5050 2500 60 0000 C CNN +F 3 "" H 5050 2500 60 0000 C CNN + 2 5050 2500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685C2946 +P 8150 2350 +F 0 "U1" H 8200 2450 30 0000 C CNN +F 1 "PORT" H 8150 2350 30 0000 C CNN +F 2 "" H 8150 2350 60 0000 C CNN +F 3 "" H 8150 2350 60 0000 C CNN + 5 8150 2350 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 685C2985 +P 6200 1800 +F 0 "U1" H 6250 1900 30 0000 C CNN +F 1 "PORT" H 6200 1800 30 0000 C CNN +F 2 "" H 6200 1800 60 0000 C CNN +F 3 "" H 6200 1800 60 0000 C CNN + 3 6200 1800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685C2A3C +P 6200 2900 +F 0 "U1" H 6250 3000 30 0000 C CNN +F 1 "PORT" H 6200 2900 30 0000 C CNN +F 2 "" H 6200 2900 60 0000 C CNN +F 3 "" H 6200 2900 60 0000 C CNN + 4 6200 2900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5750 1900 6450 1900 +Wire Wire Line + 6450 1800 6450 2200 +Wire Wire Line + 5750 2800 6450 2800 +Wire Wire Line + 6450 2500 6450 2900 +Connection ~ 6450 1900 +Connection ~ 6450 2800 +$Comp +L SKY130mode scmode1 +U 1 1 685C2B66 +P 9500 1400 +F 0 "scmode1" H 9500 1550 98 0000 C CNB +F 1 "SKY130mode" H 9500 1300 118 0000 C CNB +F 2 "" H 9500 1550 60 0001 C CNN +F 3 "" H 9500 1550 60 0001 C CNN + 1 9500 1400 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/or_2.cir b/library/SubcircuitLibrary/SN54L99/or_2.cir new file mode 100644 index 000000000..dfdaa9c89 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/or_2.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/or_2/or_2.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Thu Jul 10 18:26:57 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ PORT +scmode1 SKY130mode +X1 Net-_U1-Pad1_ Net-_U1-Pad4_ Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_X1-Pad5_ NOR_2 +X2 Net-_X1-Pad5_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ CMOS_INVTR + +.end diff --git a/library/SubcircuitLibrary/SN54L99/or_2.cir.out b/library/SubcircuitLibrary/SN54L99/or_2.cir.out new file mode 100644 index 000000000..c1803c3b8 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/or_2.cir.out @@ -0,0 +1,24 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/or_2/or_2.cir + +.include CMOS_INVTR.sub +.include NOR_2.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ port +* s c m o d e +x1 net-_u1-pad1_ net-_u1-pad4_ net-_u1-pad3_ net-_u1-pad2_ net-_x1-pad5_ NOR_2 +x2 net-_x1-pad5_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ CMOS_INVTR +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN54L99/or_2.pro b/library/SubcircuitLibrary/SN54L99/or_2.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/or_2.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN54L99/or_2.sch b/library/SubcircuitLibrary/SN54L99/or_2.sch new file mode 100644 index 000000000..9adf421b2 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/or_2.sch @@ -0,0 +1,159 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:or_2-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L PORT U1 +U 1 1 685C28CA +P 5400 2300 +F 0 "U1" H 5450 2400 30 0000 C CNN +F 1 "PORT" H 5400 2300 30 0000 C CNN +F 2 "" H 5400 2300 60 0000 C CNN +F 3 "" H 5400 2300 60 0000 C CNN + 1 5400 2300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685C2911 +P 5400 2400 +F 0 "U1" H 5450 2500 30 0000 C CNN +F 1 "PORT" H 5400 2400 30 0000 C CNN +F 2 "" H 5400 2400 60 0000 C CNN +F 3 "" H 5400 2400 60 0000 C CNN + 2 5400 2400 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 685C2946 +P 7650 2350 +F 0 "U1" H 7700 2450 30 0000 C CNN +F 1 "PORT" H 7650 2350 30 0000 C CNN +F 2 "" H 7650 2350 60 0000 C CNN +F 3 "" H 7650 2350 60 0000 C CNN + 5 7650 2350 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 685C2985 +P 6200 1800 +F 0 "U1" H 6250 1900 30 0000 C CNN +F 1 "PORT" H 6200 1800 30 0000 C CNN +F 2 "" H 6200 1800 60 0000 C CNN +F 3 "" H 6200 1800 60 0000 C CNN + 3 6200 1800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685C2A3C +P 6200 2900 +F 0 "U1" H 6250 3000 30 0000 C CNN +F 1 "PORT" H 6200 2900 30 0000 C CNN +F 2 "" H 6200 2900 60 0000 C CNN +F 3 "" H 6200 2900 60 0000 C CNN + 4 6200 2900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5600 1900 6450 1900 +Wire Wire Line + 6450 1800 6450 2250 +Wire Wire Line + 5600 2800 6450 2800 +Wire Wire Line + 6450 2450 6450 2900 +Connection ~ 6450 1900 +Connection ~ 6450 2800 +$Comp +L SKY130mode scmode1 +U 1 1 685C2B66 +P 9500 1400 +F 0 "scmode1" H 9500 1550 98 0000 C CNB +F 1 "SKY130mode" H 9500 1300 118 0000 C CNB +F 2 "" H 9500 1550 60 0001 C CNN +F 3 "" H 9500 1550 60 0001 C CNN + 1 9500 1400 + 1 0 0 -1 +$EndComp +$Comp +L NOR_2 X1 +U 1 1 686FB89E +P 6000 2350 +F 0 "X1" H 6050 2350 60 0000 C CNN +F 1 "NOR_2" H 6000 2100 60 0000 C CNN +F 2 "" H 5900 2350 60 0001 C CNN +F 3 "" H 5900 2350 60 0001 C CNN + 1 6000 2350 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 686FB8DF +P 6850 2350 +F 0 "X2" H 6850 2350 60 0000 C CNN +F 1 "CMOS_INVTR" H 6900 2150 60 0000 C CNN +F 2 "" H 6850 2350 60 0001 C CNN +F 3 "" H 6850 2350 60 0001 C CNN + 1 6850 2350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5600 1900 5600 2200 +Wire Wire Line + 5600 2800 5600 2500 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN54L99/or_2.sub b/library/SubcircuitLibrary/SN54L99/or_2.sub new file mode 100644 index 000000000..2e9b374f8 --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/or_2.sub @@ -0,0 +1,18 @@ +* Subcircuit or_2 +.subckt or_2 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/or_2/or_2.cir +.include CMOS_INVTR.sub +.include NOR_2.sub +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +* s c m o d e +x1 net-_u1-pad1_ net-_u1-pad4_ net-_u1-pad3_ net-_u1-pad2_ net-_x1-pad5_ NOR_2 +x2 net-_x1-pad5_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ CMOS_INVTR +* Control Statements + +.ends or_2 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN54L99/or_2_Previous_Values.xml b/library/SubcircuitLibrary/SN54L99/or_2_Previous_Values.xml new file mode 100644 index 000000000..cddf0d6af --- /dev/null +++ b/library/SubcircuitLibrary/SN54L99/or_2_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NOR_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74121_sub/SN74121_sub.cir b/library/SubcircuitLibrary/SN74121_sub/SN74121_sub.cir new file mode 100644 index 000000000..ffd961411 --- /dev/null +++ b/library/SubcircuitLibrary/SN74121_sub/SN74121_sub.cir @@ -0,0 +1,25 @@ +.title SN74121 Subcircuit + +.subckt SN74121 TRIG FCLK Q QBAR + +.model invm d_inverter(rise_delay=1e-9 fall_delay=1e-9 input_load=1e-12) +.model andm d_and(rise_delay=1e-9 fall_delay=1e-9 input_load=1e-12) +.model dffm d_dff(rise_delay=1e-9 fall_delay=1e-9 input_load=1e-12) + +* Invert Q for feedback +a_invq Q QBAR invm + +* Trigger gating - only trigger when Q=0 +a_andset [TRIG QBAR] net_set andm + +* Output FF +a_ffout net_set FCLK net_low net_low Q QBAR dffm + +* Delay chain for pulse width +a_ffd1 Q FCLK net_low net_low net_d1 net_d1b dffm +a_ffd2 net_d1 FCLK net_low net_low net_d2 net_d2b dffm +a_ffd3 net_d2 FCLK net_low net_low net_d3 net_d3b dffm +a_ffd4 net_d3 FCLK net_low net_low net_d4 net_d4b dffm +a_ffd5 net_d4 FCLK net_low net_low net_d5 net_d5b dffm + +.ends SN74121 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74121_sub/SN74121_sub.kicad_sch b/library/SubcircuitLibrary/SN74121_sub/SN74121_sub.kicad_sch new file mode 100644 index 000000000..76e008e0a --- /dev/null +++ b/library/SubcircuitLibrary/SN74121_sub/SN74121_sub.kicad_sch @@ -0,0 +1,1180 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 562fe272-dea4-4b1d-a412-1c457f70976e) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 144.78 130.81) (diameter 0) (color 0 0 0 0) + (uuid 184c3a7d-4755-4927-9049-475dab284d1b) + ) + (junction (at 88.9 48.26) (diameter 0) (color 0 0 0 0) + (uuid 1a81863c-9a8a-4eec-96f2-a7638f5d7b98) + ) + (junction (at 87.63 132.08) (diameter 0) (color 0 0 0 0) + (uuid 21c8745e-4988-40d1-88e3-d2e9d7f27fb5) + ) + (junction (at 132.08 130.81) (diameter 0) (color 0 0 0 0) + (uuid 515b5022-e5b0-47b5-a468-c554d675785a) + ) + (junction (at 267.97 177.8) (diameter 0) (color 0 0 0 0) + (uuid 5c660bd4-c39c-4a5a-ad32-bcb6d7051872) + ) + (junction (at 116.84 177.8) (diameter 0) (color 0 0 0 0) + (uuid 628d3fda-2ac3-4597-99a6-418b032b5447) + ) + (junction (at 191.77 177.8) (diameter 0) (color 0 0 0 0) + (uuid 99ee09c7-cf55-42cd-b3a0-24c5b1024d16) + ) + (junction (at 138.43 130.81) (diameter 0) (color 0 0 0 0) + (uuid b1706b89-596a-45b5-8c8c-eab838f5ab36) + ) + (junction (at 87.63 172.72) (diameter 0) (color 0 0 0 0) + (uuid b433666c-6408-4301-b14e-9210edd3f405) + ) + (junction (at 87.63 130.81) (diameter 0) (color 0 0 0 0) + (uuid beb8d99c-8de8-4630-982f-6ec775fcefed) + ) + (junction (at 229.87 177.8) (diameter 0) (color 0 0 0 0) + (uuid c70784a7-201e-4847-9b48-825d1e223e30) + ) + (junction (at 185.42 177.8) (diameter 0) (color 0 0 0 0) + (uuid c9128b83-f234-4e1b-9d81-5fff34addccf) + ) + (junction (at 223.52 177.8) (diameter 0) (color 0 0 0 0) + (uuid d5b3e805-b93e-41e7-ac89-bbab7bdb8c10) + ) + (junction (at 153.67 177.8) (diameter 0) (color 0 0 0 0) + (uuid d6d1efd0-0da2-479f-82bf-dcc0541f6cc8) + ) + (junction (at 148.59 177.8) (diameter 0) (color 0 0 0 0) + (uuid d7f553fc-dbd3-49e2-84b1-eda7db6b5571) + ) + (junction (at 293.37 177.8) (diameter 0) (color 0 0 0 0) + (uuid e02e3e5f-1020-4771-ab41-29b2a0f54ade) + ) + (junction (at 151.13 133.35) (diameter 0) (color 0 0 0 0) + (uuid e3ceb834-4a17-4586-b059-95a3b8673b61) + ) + (junction (at 104.14 177.8) (diameter 0) (color 0 0 0 0) + (uuid ea09bb1e-05c9-4f57-80fd-cee2c47e6190) + ) + (junction (at 261.62 177.8) (diameter 0) (color 0 0 0 0) + (uuid f0c4c7bc-ad74-4f18-b5ab-65de1baef0c4) + ) + + (wire (pts (xy 223.52 177.8) (xy 229.87 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03ef4ab2-8c50-4b31-8a5b-2bc378008d0f) + ) + (wire (pts (xy 224.79 127) (xy 144.78 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 090054a5-fcd8-4a9d-9f00-c3b52e5d6314) + ) + (wire (pts (xy 152.4 128.27) (xy 152.4 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09eed047-4f07-43fd-b4e1-8347f764a353) + ) + (wire (pts (xy 115.57 110.49) (xy 115.57 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a7025ee-5700-40b5-a0fd-d2b070e1c202) + ) + (wire (pts (xy 124.46 128.27) (xy 152.4 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0afa6645-1ae9-4623-a873-950db571cb35) + ) + (wire (pts (xy 77.47 80.01) (xy 77.47 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bd915e1-c923-4b0f-88b0-caa7cf2e1805) + ) + (wire (pts (xy 87.63 132.08) (xy 87.63 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d2928e0-ab49-4b9d-8747-ddbffaef70cb) + ) + (wire (pts (xy 275.59 162.56) (xy 275.59 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e69291b-6a20-4296-b055-bb9e9d063c9a) + ) + (wire (pts (xy 261.62 177.8) (xy 267.97 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0efc678a-51ea-4052-9fc1-6dfe4341c4f9) + ) + (wire (pts (xy 144.78 130.81) (xy 151.13 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 100054f7-d90a-4822-a7de-4f939f1e7b1f) + ) + (wire (pts (xy 185.42 177.8) (xy 185.42 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bf3a16a-523e-446e-b74f-e870abbce3af) + ) + (wire (pts (xy 114.3 132.08) (xy 87.63 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2670bb6f-86b4-4dc1-9922-a953215edcd0) + ) + (wire (pts (xy 87.63 137.16) (xy 87.63 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28d8351a-7efa-415a-ba7a-37a7cf4bc748) + ) + (wire (pts (xy 223.52 177.8) (xy 223.52 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a535971-5e73-43a3-a80f-bab067c70c77) + ) + (wire (pts (xy 199.39 125.73) (xy 226.06 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bd75365-38be-4f5e-a648-2f3aed0fba9c) + ) + (wire (pts (xy 299.72 175.26) (xy 293.37 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bf0e100-6b8e-458f-b853-30b95ba3a5f3) + ) + (wire (pts (xy 261.62 177.8) (xy 261.62 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3469e669-3cd6-4754-ac56-6adb5fcceff6) + ) + (wire (pts (xy 186.69 133.35) (xy 151.13 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34880532-b3ce-42f9-b114-f6636018171a) + ) + (wire (pts (xy 87.63 110.49) (xy 115.57 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35699087-7468-4ced-a1d9-1d06d74e1fd8) + ) + (wire (pts (xy 77.47 151.13) (xy 80.01 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38e588fb-91a7-4a21-a1e7-662b6cee1573) + ) + (wire (pts (xy 226.06 163.83) (xy 237.49 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d3b55ea-7e51-40b2-8099-d1425706132b) + ) + (wire (pts (xy 275.59 120.65) (xy 275.59 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45d1e35c-fdf7-4cc8-a2b5-a6f4ae5158b6) + ) + (wire (pts (xy 101.6 130.81) (xy 87.63 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c1aacfe-83ac-4cf0-838b-d5a0ad3a6dc7) + ) + (wire (pts (xy 161.29 129.54) (xy 189.23 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c43e363-67db-49ad-baae-149da8728b93) + ) + (wire (pts (xy 264.16 124.46) (xy 138.43 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d4a901b-308f-47a9-8fc8-387750e94170) + ) + (wire (pts (xy 115.57 85.09) (xy 115.57 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51b37457-f148-4899-ac8c-3f685de696ce) + ) + (wire (pts (xy 87.63 165.1) (xy 87.63 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55de2d00-64a6-490f-b98c-5c9ca3c64920) + ) + (wire (pts (xy 229.87 177.8) (xy 261.62 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5962e216-c218-48ba-a465-7163d19f8b4c) + ) + (wire (pts (xy 90.17 102.87) (xy 93.98 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59830f57-4103-41cb-88bc-8657a06d5496) + ) + (wire (pts (xy 80.01 72.39) (xy 88.9 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59944848-f22b-44e3-968e-1e35518097cc) + ) + (wire (pts (xy 254 163.83) (xy 264.16 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a2c57d3-4dde-4934-ae8e-492fee46475b) + ) + (wire (pts (xy 104.14 177.8) (xy 116.84 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cb53413-777e-447b-9458-f6f5af019f0a) + ) + (wire (pts (xy 87.63 172.72) (xy 87.63 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 634df355-edbd-4266-94e4-a8b0f4fb61c1) + ) + (wire (pts (xy 80.01 48.26) (xy 88.9 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68e451f3-0405-4c87-b9ca-408e15699dbb) + ) + (wire (pts (xy 161.29 137.16) (xy 161.29 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 710cb2c6-b1b6-4b05-a380-38c9479d6272) + ) + (wire (pts (xy 132.08 123.19) (xy 132.08 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 720b6b1b-a71d-41fe-9410-401765016616) + ) + (wire (pts (xy 293.37 177.8) (xy 299.72 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73137ac6-bd9d-4d39-992a-f86b08692e00) + ) + (wire (pts (xy 144.78 127) (xy 144.78 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73cfe0c9-6cd6-4313-b660-9a9df1584bbf) + ) + (wire (pts (xy 116.84 177.8) (xy 148.59 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75a5a0a0-9625-4ef4-a51f-6ad8caf47e58) + ) + (wire (pts (xy 80.01 48.26) (xy 80.01 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77acc724-f5df-45db-9c66-f4d850b03836) + ) + (wire (pts (xy 132.08 130.81) (xy 138.43 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79bae18f-de63-4c97-bcfa-0653e0c795b2) + ) + (wire (pts (xy 93.98 57.15) (xy 88.9 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e603559-d44f-4774-b410-15c79f186bc9) + ) + (wire (pts (xy 104.14 177.8) (xy 104.14 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7eac20b1-f85b-47f9-9040-11becd8e8e90) + ) + (wire (pts (xy 153.67 151.13) (xy 153.67 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 828b49ee-4bbe-4bf2-ae3e-d4dd5d4619c1) + ) + (wire (pts (xy 177.8 165.1) (xy 186.69 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82bf496a-679b-4d06-a97e-ffc4d68c9e09) + ) + (wire (pts (xy 114.3 165.1) (xy 114.3 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83b2d90f-0198-472e-9fc8-60654054aed4) + ) + (wire (pts (xy 152.4 165.1) (xy 161.29 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89a1c037-3721-43be-bdf3-97a8be6d26c5) + ) + (wire (pts (xy 292.1 162.56) (xy 304.8 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a3eea19-bd55-4aeb-8f4f-529da756b77f) + ) + (wire (pts (xy 185.42 177.8) (xy 191.77 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bee8575-594f-4c61-a748-92d696374ff1) + ) + (wire (pts (xy 101.6 95.25) (xy 101.6 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 909320f5-98af-4ed3-aa6f-f533ade60ef7) + ) + (wire (pts (xy 186.69 165.1) (xy 186.69 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94326a06-9704-4309-b365-3ec407a6ca97) + ) + (wire (pts (xy 148.59 177.8) (xy 153.67 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 945f340e-b804-45d8-b512-303406e57b78) + ) + (wire (pts (xy 304.8 162.56) (xy 304.8 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97fdd2f1-7e57-43fa-906d-dd40c5d14b26) + ) + (wire (pts (xy 87.63 177.8) (xy 104.14 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9aaa6ff9-f02e-4832-a7a1-9f61ce598c4c) + ) + (wire (pts (xy 138.43 124.46) (xy 138.43 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c8600e2-ca25-410b-8e8c-1b9feec9321c) + ) + (wire (pts (xy 267.97 177.8) (xy 293.37 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9dc4d564-d085-4e99-bdf3-2038c03b6548) + ) + (wire (pts (xy 119.38 128.27) (xy 119.38 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e96de67-8fb4-4373-b75b-831f4055aaed) + ) + (wire (pts (xy 199.39 135.89) (xy 199.39 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e9ed1d7-cb05-4a17-b8d0-40db598a16be) + ) + (wire (pts (xy 138.43 130.81) (xy 144.78 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a194661b-26f0-4cbd-85d4-0542f42fe202) + ) + (wire (pts (xy 215.9 163.83) (xy 224.79 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a21601ff-beea-4cf3-97c7-7571aadea087) + ) + (wire (pts (xy 267.97 177.8) (xy 267.97 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a38eab87-6702-43c5-870e-5e69bb37f960) + ) + (wire (pts (xy 226.06 125.73) (xy 226.06 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a559c66f-b29c-4ceb-a214-54c18e74713a) + ) + (wire (pts (xy 264.16 163.83) (xy 264.16 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0297917-bdb3-40ef-83ba-d64b85dc7863) + ) + (wire (pts (xy 293.37 175.26) (xy 293.37 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0ca0776-a860-4407-b5a0-618b0f683a63) + ) + (wire (pts (xy 86.36 173.99) (xy 86.36 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2bd7408-f149-464b-88f9-f66651095cb5) + ) + (wire (pts (xy 189.23 129.54) (xy 189.23 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b313e3db-e5f3-42c8-b5f2-735ab9f1c7ab) + ) + (wire (pts (xy 87.63 102.87) (xy 87.63 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9c32740-0823-44f4-acd0-a29fb93647a2) + ) + (wire (pts (xy 191.77 177.8) (xy 223.52 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c02839a6-9277-4df1-af87-2092cab2123c) + ) + (wire (pts (xy 299.72 148.59) (xy 299.72 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c13fda13-b54f-40d8-a558-da18b605fdba) + ) + (wire (pts (xy 191.77 177.8) (xy 191.77 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c53d12c5-83b1-4dc8-a060-1850db490c61) + ) + (wire (pts (xy 148.59 177.8) (xy 148.59 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6ae95fd-95c7-4899-a303-1756485c99f2) + ) + (wire (pts (xy 304.8 123.19) (xy 132.08 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8adfb57-f40a-4e4c-a368-10873580a3e6) + ) + (wire (pts (xy 95.25 104.14) (xy 95.25 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb5c850b-e7a8-439f-89c5-ee6e33762fee) + ) + (wire (pts (xy 87.63 104.14) (xy 95.25 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfcffb69-e14b-4cec-9dda-34da526851a5) + ) + (wire (pts (xy 111.76 120.65) (xy 275.59 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d15c4893-f17a-4d2f-b14f-c2fe44a5f3ca) + ) + (wire (pts (xy 88.9 80.01) (xy 77.47 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2d1831e-26fc-4525-a83c-6e15517a8396) + ) + (wire (pts (xy 119.38 130.81) (xy 132.08 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d685f58c-4d3a-42de-af9d-89ff80b4ca20) + ) + (wire (pts (xy 229.87 177.8) (xy 229.87 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6b49967-d303-466a-bbaa-3ffb1d012dd4) + ) + (wire (pts (xy 124.46 165.1) (xy 114.3 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d836d9b1-d418-4b3a-bc7b-976ad77da409) + ) + (wire (pts (xy 93.98 102.87) (xy 93.98 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8c9043a-b897-43bb-a03d-b72573b9c4d9) + ) + (wire (pts (xy 88.9 48.26) (xy 95.25 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dab82cd3-757f-401e-a171-697cd701c5f2) + ) + (wire (pts (xy 86.36 173.99) (xy 275.59 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd9a7e2c-6ef8-41ed-8ced-982b36852be9) + ) + (wire (pts (xy 151.13 133.35) (xy 151.13 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dea6f9e7-add0-426e-8330-75dde4774724) + ) + (wire (pts (xy 86.36 172.72) (xy 87.63 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df2b903b-737d-4199-9ce7-9cfb9f1e2a11) + ) + (wire (pts (xy 151.13 165.1) (xy 140.97 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e343b383-76b0-4e53-aefd-271bc48038f8) + ) + (wire (pts (xy 87.63 130.81) (xy 87.63 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4c172d9-a781-4c6d-8d31-c439fd97043f) + ) + (wire (pts (xy 153.67 177.8) (xy 185.42 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eaf63904-9030-4907-8cdf-4f167ebbdfd2) + ) + (wire (pts (xy 151.13 130.81) (xy 151.13 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb863eae-b695-48f9-86c4-c77ec90b9b40) + ) + (wire (pts (xy 224.79 163.83) (xy 224.79 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebbc8e9a-14e4-4bea-ba44-3b0744e32541) + ) + (wire (pts (xy 124.46 137.16) (xy 124.46 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef03de83-4899-4900-a4ff-35c773ae36b8) + ) + (wire (pts (xy 116.84 177.8) (xy 116.84 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbbb5d76-1b3b-457e-962e-e6cbc639cd71) + ) + (wire (pts (xy 189.23 163.83) (xy 199.39 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe268073-2cb1-46e3-b534-31c9548f0a61) + ) + (wire (pts (xy 111.76 151.13) (xy 111.76 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fee9583e-3020-48db-ba0e-afb5abff9113) + ) + + (hierarchical_label "FCLK" (shape input) (at 119.38 128.27 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4b1f6af6-9d7a-452d-b7b4-b682084a0566) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 115.57 74.93 270) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 08590d49-b494-4a8e-ab15-be18b4712fd2) + (property "Reference" "U?" (id 0) (at 114.935 71.12 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 117.475 71.12 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 115.57 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 115.57 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ba67156e-3d86-4c89-a345-cd25742669ea)) + (pin "2" (uuid 4c4ee480-1b30-4ae1-9f0a-dbea65f18c5f)) + (pin "3" (uuid 0973eedd-d981-4695-ab48-5e3b7fcba414)) + (pin "4" (uuid 90ec7210-6053-4f65-b546-c30868f1ceea)) + (pin "5" (uuid bf34cae4-57db-496f-92c5-f0c84294be85)) + (pin "6" (uuid be3fa428-8e6f-49d6-9199-7da8afce28ec)) + (pin "7" (uuid 6a732e32-3928-4838-812b-440756289f66)) + (pin "8" (uuid 4479f014-be60-45ae-bddd-911301f94116)) + (pin "9" (uuid 012c5860-8494-49cf-a023-89adab3ec6ba)) + (pin "10" (uuid 92aff519-488f-48ed-b54f-d73a0c8c2a76)) + (pin "11" (uuid c42c7455-ebdd-4add-ac6e-c9217988f9db)) + (pin "12" (uuid 9620dc71-e991-4d64-be5e-adbd7e78b072)) + (pin "13" (uuid 7f12c29e-7cbd-4440-aecf-50810bef2d71)) + (pin "14" (uuid 1b98f080-bfd3-4012-8112-907e8e517d21)) + (pin "15" (uuid 29072dc9-8f65-4998-8742-2382843da539)) + (pin "16" (uuid 2c60ce02-5a37-4bea-b52c-89e284d6b6d9)) + (pin "17" (uuid a30d72d5-5b44-4918-83e6-24aacf4b5a3b)) + (pin "18" (uuid 2e066172-6442-489d-95f6-a26e59cf3423)) + (pin "19" (uuid 530b5ec1-6b08-439e-a16d-d1ee3a65e84a)) + (pin "20" (uuid c5aaa2e1-ba8c-4b92-b20a-c7818ff20127)) + (pin "21" (uuid 04741921-dc79-4dec-85f0-8ab4757857ad)) + (pin "22" (uuid be2ff3f1-38cc-4583-88da-61695f474517)) + (pin "23" (uuid a0d0784a-166c-4aa3-b2b1-d7b54915328c)) + (pin "24" (uuid 5e66d2a2-b182-4dae-aaed-c9113d2c7b17)) + (pin "25" (uuid 66276729-9f0e-4c5c-9fdf-a064b6ea8e3e)) + (pin "26" (uuid 97a7f463-b6d8-47e8-b459-15693d464818)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 208.28 149.86 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3267edaa-962c-4ced-bd50-437857893f57) + (property "Reference" "U4" (id 0) (at 191.77 147.8406 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 195.58 147.8406 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 208.28 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 208.28 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2f0f173-55d1-46c5-8a42-561fc8ab41af)) + (pin "2" (uuid 6e197fe8-39a2-4422-a4ab-5aafc877dd49)) + (pin "3" (uuid f1e83ad4-401a-4b6d-ba21-5ad8f0b44980)) + (pin "4" (uuid a1d895e8-9f00-4ec8-92f3-c35b3b8012ab)) + (pin "5" (uuid 13b560d4-b540-4e4d-a58a-d092e1e2338b)) + (pin "6" (uuid 5df5a4db-5b4f-44c2-af51-9913cf5d2b70)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 88.9 41.91 270) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 395b60ba-8b78-405d-b53c-8c0eb7782bcc) + (property "Reference" "U?" (id 0) (at 88.265 38.1 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 90.805 38.1 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 88.9 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 88.9 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 07f18cb9-a0b9-4bc5-a49b-bb9d4c199d09)) + (pin "2" (uuid f487fd10-d04e-47b2-a0ba-8a80df0256f5)) + (pin "3" (uuid a7be21f3-7f6c-4d66-be17-03c520bca395)) + (pin "4" (uuid 49db24ae-d057-45a6-ac3b-064e54e2e71c)) + (pin "5" (uuid d817ad56-7e0d-4425-9f52-f2caf719cce5)) + (pin "6" (uuid 6e2a6aff-dc65-4da0-9f83-9b46dbe21d44)) + (pin "7" (uuid ed70781d-204a-4f41-b4f5-3c7fc19695c3)) + (pin "8" (uuid ec65dc03-3343-4c22-84b7-88d841b0de0f)) + (pin "9" (uuid 0f41cdc1-4c7c-479b-a097-019d1b867cba)) + (pin "10" (uuid bd99cbdc-3192-4f19-95b7-9fa0f2e522e4)) + (pin "11" (uuid 4210ebea-507d-422e-ba19-2919e5b0bf4a)) + (pin "12" (uuid fe9e86d4-99b2-44c2-916c-7faa3d6dd421)) + (pin "13" (uuid c3a73c20-c703-4977-b152-46a31f133b02)) + (pin "14" (uuid de3f693b-ca7a-411f-a7ca-39c9d22b725c)) + (pin "15" (uuid 67831476-1385-4e2c-b2bd-0d275149a400)) + (pin "16" (uuid 5495e0b1-ab68-4bd6-bdc0-d1c4d4042b6c)) + (pin "17" (uuid aed17902-7c78-4de0-8ab1-9ede34845fa2)) + (pin "18" (uuid 8bfc8e30-2b08-4500-a43f-c2faf8dd0b21)) + (pin "19" (uuid f7b0de1f-728d-4f46-9936-10ec06a448ca)) + (pin "20" (uuid 9c7c5db9-34ba-4cfb-853c-3ed8f130271e)) + (pin "21" (uuid 98ebef91-9b1c-425e-879c-903fe717df79)) + (pin "22" (uuid c374fa72-2ccb-4ac9-83af-faa2ad7cbbe2)) + (pin "23" (uuid 3ec24d82-0c01-47b3-ac77-40ed96ffc489)) + (pin "24" (uuid 8e29989c-0771-4311-98e8-8c4e563b2049)) + (pin "25" (uuid 8890bbf7-9541-41e4-86fe-6b15432168c0)) + (pin "26" (uuid 500a5d64-6153-4901-bca5-e40e6b5aae03)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 115.57 92.71 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4c1a4af4-f21a-40c5-b163-0b643e9a833b) + (property "Reference" "U7" (id 0) (at 109.22 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 113.03 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 01158f31-f286-4987-bcb6-f4b29f68f995)) + (pin "2" (uuid 1c37e2b5-deb5-43fd-a2cd-203a088c5538)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 133.35 151.13 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6fdac024-03a9-4862-9b39-3ea18d068886) + (property "Reference" "U2" (id 0) (at 116.84 149.1106 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 120.65 149.1106 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 133.35 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 43333da9-a316-4308-921a-92d13a0c3246)) + (pin "2" (uuid 422031ce-8503-453d-a9ef-bae4eb4e6a82)) + (pin "3" (uuid 6f2f74b7-eb10-4270-95ae-0107cbfedafd)) + (pin "4" (uuid 1b787267-b2f9-417e-9888-0af724da067b)) + (pin "5" (uuid c424c344-9d26-4c98-a372-4212a6fb3d5d)) + (pin "6" (uuid 454bf1fe-51b4-4940-a70d-52893ecb7412)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 96.52 151.13 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 72f5c140-ec0e-4a49-b62b-f8e05bacc1f2) + (property "Reference" "U1" (id 0) (at 80.01 149.1106 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 83.82 149.1106 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 96.52 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 96.52 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f4eedd4d-986a-4d6c-a94b-42f531966e14)) + (pin "2" (uuid 42857641-67bb-48d4-8dc5-e22a365b3312)) + (pin "3" (uuid b05d1eb4-350b-4b16-b2de-e1555e3f1463)) + (pin "4" (uuid 3ba7d539-40e4-47c5-b323-368bcb7ab4f8)) + (pin "5" (uuid 06d839f4-9725-4185-8302-e07f640d05f2)) + (pin "6" (uuid 5268a3d1-9a4b-4ff1-8eab-cac51eb3ad90)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 90.17 91.44 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7cee8109-1e2f-41ad-bcc6-ebda3210df3a) + (property "Reference" "U8" (id 0) (at 81.28 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 85.09 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 569da7b8-1590-46ac-b8c5-24c94196ee95)) + (pin "2" (uuid 11eb67db-1e42-4f79-b765-0deb8355352b)) + (pin "3" (uuid 49857e36-4757-4453-a7b5-63b6c7731b5c)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 246.38 149.86 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c4e0f062-cd59-429c-b7da-75473d7342aa) + (property "Reference" "U5" (id 0) (at 229.87 147.8406 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 233.68 147.8406 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 246.38 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 246.38 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 100dd62f-f4dd-4267-a9e0-1d4ed1399ae6)) + (pin "2" (uuid abada415-b5de-409a-900f-b229848515bb)) + (pin "3" (uuid 1c449e2d-e7f1-44ba-8a1a-2636e7df57dc)) + (pin "4" (uuid c20a7cb9-25e5-495f-9bd1-be9f140bada3)) + (pin "5" (uuid 313d0a19-2010-43e7-915e-56202eb5a056)) + (pin "6" (uuid 8ab00070-8549-4e5e-b297-019e18cb477a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 101.6 88.9 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8d65428-4d90-4ce3-b22e-8510cb436c25) + (property "Reference" "U?" (id 0) (at 100.965 85.09 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 103.505 85.09 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 101.6 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 101.6 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ba1b6aae-4543-45f6-b134-57416acc4b7b)) + (pin "2" (uuid 0c40548e-da8f-40ba-a1aa-02cd140fd0a1)) + (pin "3" (uuid e6574c53-6507-40f3-b49f-936c47444bf7)) + (pin "4" (uuid 542d7feb-826e-4404-81db-ff5f70fcd606)) + (pin "5" (uuid b4581509-4045-4e83-8ad4-b0482e4d6e66)) + (pin "6" (uuid 557dd2f4-9220-481e-a6b1-4adf2b8f4a6c)) + (pin "7" (uuid 74415d7b-6bcf-45fe-8985-60e587c373b1)) + (pin "8" (uuid 18e017e7-f6ca-43ae-a2b0-bd89da4b28ff)) + (pin "9" (uuid ec4714cf-a532-4ffd-b3dc-aa680e82e24c)) + (pin "10" (uuid 9a0e7af4-f833-4f4b-97e8-321791914513)) + (pin "11" (uuid 62df6d36-123a-42bc-843d-01efda62501b)) + (pin "12" (uuid 41df1c83-3423-4519-9816-43f4a91f16e0)) + (pin "13" (uuid 3d380ea6-3aa3-48c0-a1fa-2511f3d540d3)) + (pin "14" (uuid 321090e6-f4b3-46a3-a9ad-d56f161ece11)) + (pin "15" (uuid a0c82451-7fdc-4e7d-930b-4fa87cf73a2e)) + (pin "16" (uuid f159a79e-3b64-4f9d-b346-5de988d52182)) + (pin "17" (uuid 9443cde3-85a9-46af-9a07-3457f457f627)) + (pin "18" (uuid 73db6843-5362-47d7-9427-db24705b6a6c)) + (pin "19" (uuid 877b8ac9-8417-434f-9622-82717424bdc5)) + (pin "20" (uuid c5ea6835-7a8f-46b8-bd38-ad8053329a92)) + (pin "21" (uuid 37482811-1b2c-49d6-9ea3-c338fc399155)) + (pin "22" (uuid 2209162b-af4d-4b40-b429-c246f4710db8)) + (pin "23" (uuid e08b0927-9fc4-4c1a-9f9f-f3b93d5a1069)) + (pin "24" (uuid 2a6cda6f-9339-4447-86ef-360ebc000221)) + (pin "25" (uuid e3bf53f4-7dd5-472e-9782-0a42064d3f34)) + (pin "26" (uuid 1c0f9fed-d09e-4030-963f-eb586ea4f750)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 284.48 148.59 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e1c89f5c-9570-4d86-947b-040acb205a0d) + (property "Reference" "U6" (id 0) (at 267.97 146.5706 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 271.78 146.5706 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 284.48 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 284.48 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b223f23f-4fda-461a-855c-56500e7ae491)) + (pin "2" (uuid 095e7795-1754-457b-9f6f-2f7226dc170a)) + (pin "3" (uuid b05485dd-4a78-4a5b-9fd2-0949adbce3c0)) + (pin "4" (uuid 5e9a4888-e1ab-4957-9c15-9c9191c3a63e)) + (pin "5" (uuid 13bc12e8-bbc2-4d29-b6b6-38d026afbe49)) + (pin "6" (uuid bff51f10-1a10-4e55-b0e5-e0d2af4fe020)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 170.18 151.13 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5fa8d33-9b14-409d-9c5d-dda9f88ffb86) + (property "Reference" "U3" (id 0) (at 153.67 149.1106 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 157.48 149.1106 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 170.18 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d09b770-29cf-46df-a5b9-1bd2396ce7ad)) + (pin "2" (uuid 49001207-ba2f-498b-8821-acf156145faf)) + (pin "3" (uuid 44f7b450-d586-4c85-b8b6-ac2e2bf6acbc)) + (pin "4" (uuid 960eb68e-ca47-4379-8fd0-1c6e5bc96250)) + (pin "5" (uuid 96f97dbc-2dcc-43f6-962e-506fc3ba61e0)) + (pin "6" (uuid 394267cd-f2e9-4ff1-9ba6-80f8fae95a78)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 299.72 177.8 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f3b3fde4-620d-4f0f-98d7-31ee412c397b) + (property "Reference" "#PWR0101" (id 0) (at 306.07 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 304.8 177.8 0)) + (property "Footprint" "" (id 2) (at 299.72 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 299.72 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 782d6781-3d1d-479f-9b85-9dae8cfdf4d7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 88.9 64.77 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f44bc0c6-327b-432d-adab-5ee3a8ac91ba) + (property "Reference" "U9" (id 0) (at 82.55 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 86.36 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f5b89be3-ca7c-4e98-8c2d-08d3261d3e34)) + (pin "2" (uuid b540b961-ebf4-4523-b0d3-b5f1ca966be3)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/f3b3fde4-620d-4f0f-98d7-31ee412c397b" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/72f5c140-ec0e-4a49-b62b-f8e05bacc1f2" + (reference "U1") (unit 1) (value "d_dff") (footprint "") + ) + (path "/6fdac024-03a9-4862-9b39-3ea18d068886" + (reference "U2") (unit 1) (value "d_dff") (footprint "") + ) + (path "/e5fa8d33-9b14-409d-9c5d-dda9f88ffb86" + (reference "U3") (unit 1) (value "d_dff") (footprint "") + ) + (path "/3267edaa-962c-4ced-bd50-437857893f57" + (reference "U4") (unit 1) (value "d_dff") (footprint "") + ) + (path "/c4e0f062-cd59-429c-b7da-75473d7342aa" + (reference "U5") (unit 1) (value "d_dff") (footprint "") + ) + (path "/e1c89f5c-9570-4d86-947b-040acb205a0d" + (reference "U6") (unit 1) (value "d_dff") (footprint "") + ) + (path "/4c1a4af4-f21a-40c5-b163-0b643e9a833b" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7cee8109-1e2f-41ad-bcc6-ebda3210df3a" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/f44bc0c6-327b-432d-adab-5ee3a8ac91ba" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c8d65428-4d90-4ce3-b22e-8510cb436c25" + (reference "U?") (unit 1) (value "PORT") (footprint "") + ) + (path "/08590d49-b494-4a8e-ab15-be18b4712fd2" + (reference "U?") (unit 2) (value "PORT") (footprint "") + ) + (path "/395b60ba-8b78-405d-b53c-8c0eb7782bcc" + (reference "U?") (unit 3) (value "PORT") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74121_sub/SN74121_sub.proj b/library/SubcircuitLibrary/SN74121_sub/SN74121_sub.proj new file mode 100644 index 000000000..655fd0b1e --- /dev/null +++ b/library/SubcircuitLibrary/SN74121_sub/SN74121_sub.proj @@ -0,0 +1 @@ +schematicFile SN74121_sub.kicad_sch diff --git a/library/SubcircuitLibrary/SN74121_sub/SN74121_test.cir b/library/SubcircuitLibrary/SN74121_sub/SN74121_test.cir new file mode 100644 index 000000000..deb3417a6 --- /dev/null +++ b/library/SubcircuitLibrary/SN74121_sub/SN74121_test.cir @@ -0,0 +1,10 @@ +.title KiCad schematic +v3 Net-_U1-Pad3_ GND pulse +v1 Net-_U1-Pad1_ GND pulse +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ Net-_U5-Pad~_ Net-_U6-Pad~_ dac_bridge_2 +X1 Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U2-Pad1_ Net-_U2-Pad2_ SN74121 +U6 Net-_U6-Pad~_ plot_v1 +U5 Net-_U5-Pad~_ plot_v1 +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ unconnected-_U1-Pad8_ adc_bridge_4 +v2 Net-_U1-Pad2_ GND pulse +.end diff --git a/library/SubcircuitLibrary/SN74121_sub/SN74121_test.kicad_sch b/library/SubcircuitLibrary/SN74121_sub/SN74121_test.kicad_sch new file mode 100644 index 000000000..c196a3c1d --- /dev/null +++ b/library/SubcircuitLibrary/SN74121_sub/SN74121_test.kicad_sch @@ -0,0 +1,614 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid a8d18a90-49cd-4aa2-9d25-3ceea8530e3a) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_2" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_2" (id 1) (at 1.27 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_2_0_1" + (rectangle (start -6.35 5.08) (end 8.89 -2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_2_1_1" + (pin input line (at -11.43 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 -1.27 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -1.27 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN74121" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN74121" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN74121_0_1" + (rectangle (start -6.35 7.62) (end 6.35 -11.43) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN74121_1_1" + (pin input line (at -6.35 5.08 0) (length 2.54) + (name "TRIG" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 2.54 0) (length 2.54) + (name "FCLK" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -2.54 0) (length 2.54) + (name "net_low" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 3.81 0) (length 2.54) + (name "Q" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 -5.08 0) (length 2.54) + (name "QBAR" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 38.1 110.49) (diameter 0) (color 0 0 0 0) + (uuid 10334d2f-d36b-4538-8154-98087659955d) + ) + (junction (at 63.5 59.69) (diameter 0) (color 0 0 0 0) + (uuid a1c88153-c34d-46b6-b187-2c3804120a7b) + ) + (junction (at 38.1 113.03) (diameter 0) (color 0 0 0 0) + (uuid c9c9c8f0-698d-4b77-bb1c-d9d8012c0512) + ) + + (wire (pts (xy 38.1 25.4) (xy 66.04 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12cf8ca5-45bb-4c38-afa4-26d9dc953432) + ) + (wire (pts (xy 38.1 48.26) (xy 30.48 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 296193c7-99dd-457d-9bf7-a7764e62a2e5) + ) + (wire (pts (xy 160.02 52.07) (xy 190.5 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c2e0c05-3540-4252-b505-3afacbd8b6a1) + ) + (wire (pts (xy 134.62 50.8) (xy 134.62 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36298284-822b-447b-8e53-3e4536580888) + ) + (wire (pts (xy 125.73 50.8) (xy 134.62 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 366d141d-07c6-4b69-98f3-e2192bd733db) + ) + (wire (pts (xy 93.98 43.18) (xy 111.76 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 371c8419-52f1-401e-9b1a-ee47b8cf6a40) + ) + (wire (pts (xy 62.23 40.64) (xy 66.04 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37824fde-696e-4f30-b566-5907755b29f8) + ) + (wire (pts (xy 38.1 107.95) (xy 38.1 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a619f00-3ec4-4ed2-a812-8304abf39493) + ) + (wire (pts (xy 63.5 59.69) (xy 63.5 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c50c655-3e55-4171-be3c-acd219794646) + ) + (wire (pts (xy 38.1 110.49) (xy 38.1 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 434f2395-3823-4e97-8e0d-8812154e81d0) + ) + (wire (pts (xy 125.73 48.26) (xy 125.73 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 436be109-8ab1-44d0-8069-f41766375096) + ) + (wire (pts (xy 160.02 44.45) (xy 160.02 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55813781-30bc-4bb5-8876-3755b32202b7) + ) + (wire (pts (xy 38.1 85.09) (xy 63.5 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5716ca17-0cf0-4502-86dd-ff64f7e72f9e) + ) + (wire (pts (xy 66.04 25.4) (xy 66.04 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6511fe54-cd8f-4b2c-91c1-a319dbd5de64) + ) + (wire (pts (xy 111.76 45.72) (xy 113.03 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79a991fb-4160-4d34-a322-b2e5012792c9) + ) + (wire (pts (xy 66.04 45.72) (xy 66.04 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ce38ce8-7690-47c7-9e70-724c1e14834a) + ) + (wire (pts (xy 38.1 113.03) (xy 38.1 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7edba0d7-34c0-469e-9e3e-bb96cc6b0799) + ) + (wire (pts (xy 63.5 85.09) (xy 63.5 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e2254f2-d076-4c98-bff7-db99e2627205) + ) + (wire (pts (xy 93.98 40.64) (xy 113.03 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a76ce238-57d8-4a2a-9f22-7e2e2596439d) + ) + (wire (pts (xy 111.76 43.18) (xy 111.76 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9ed0f0f-4cb4-44ae-ba99-4bb2127f3280) + ) + (wire (pts (xy 31.75 110.49) (xy 38.1 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0e86f4c-d447-4303-8f6b-862d12414f66) + ) + (wire (pts (xy 31.75 77.47) (xy 31.75 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b19714cf-9083-4d57-99c9-c9090a883d81) + ) + (wire (pts (xy 125.73 41.91) (xy 134.62 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4d4e5f7-ff18-444c-ac31-2a1aff1e9cf3) + ) + (wire (pts (xy 125.73 39.37) (xy 125.73 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4ee1462-98d0-4819-8981-4a5ff14955fc) + ) + (wire (pts (xy 160.02 41.91) (xy 185.42 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b962eba0-701e-4651-afdb-b0f3288f75f6) + ) + (wire (pts (xy 63.5 43.18) (xy 66.04 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbc31a7e-bf72-4696-b588-d188162a7674) + ) + (wire (pts (xy 38.1 77.47) (xy 31.75 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c185d304-1efb-46ad-a5c0-d2793b488b64) + ) + (wire (pts (xy 38.1 54.61) (xy 62.23 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3511022-a418-4c41-8273-1e2475fc5aca) + ) + (wire (pts (xy 30.48 48.26) (xy 30.48 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cae3bb78-9e9d-4319-848c-c0d945aaeff5) + ) + (wire (pts (xy 30.48 113.03) (xy 38.1 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db4c5326-b8ef-4439-a1c5-94fc7a08c575) + ) + (wire (pts (xy 66.04 59.69) (xy 63.5 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0c0839c-6d6b-486b-a636-cc54b512f113) + ) + (wire (pts (xy 62.23 54.61) (xy 62.23 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4351913-2ad3-4ded-a146-bc88b51f6a27) + ) + (wire (pts (xy 93.98 38.1) (xy 113.03 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffa0433b-24fc-4e87-9f41-174124f0d879) + ) + + (symbol (lib_id "eSim_Subckt:SN74121") (at 119.38 43.18 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0c2777b2-2fa8-4625-a14a-ba64e402b04c) + (property "Reference" "X1" (id 0) (at 118.11 43.18 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SN74121" (id 1) (at 115.57 49.53 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 119.38 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 119.38 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 46029a37-e416-4143-923f-55d4ada2a671)) + (pin "2" (uuid 4edc2764-99be-418d-bf4f-cdc1c3234de9)) + (pin "3" (uuid c6ee03ce-bf91-4d4a-9a6f-ea23fdbdfcd0)) + (pin "4" (uuid d6e0a8b2-c209-414d-951f-f434da7f6332)) + (pin "5" (uuid 54e236ea-6385-49f3-881b-8f85478f5276)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_2") (at 146.05 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 14139acf-10bd-4828-94b4-52ffd99c2723) + (property "Reference" "U2" (id 0) (at 147.32 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_2" (id 1) (at 147.32 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 146.05 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 146.05 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 426dcb8d-0854-4a11-9193-a26c3ee54cae)) + (pin "2" (uuid b0c33221-53f4-4a0b-bcfb-ae175fba70c8)) + (pin "3" (uuid 6d0e2c4f-d91f-42d1-a31f-8b28cee147d0)) + (pin "4" (uuid 8d7d062d-ec4c-4550-81fb-8b2b01977fb6)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 38.1 36.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15acc977-7dc2-44ff-9560-8bd2a421ada6) + (property "Reference" "v1" (id 0) (at 43.18 33.655 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 43.18 37.465 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 43.18 41.275 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 38.1 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be72b8eb-8840-4980-93e6-62ee5e166840)) + (pin "2" (uuid b186fb5a-9c6b-4b6b-b9be-eb91dfe5561d)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 190.5 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17a1e13a-51a2-4241-900f-9f84a5f1d068) + (property "Reference" "U6" (id 0) (at 194.31 43.18 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 194.31 46.99 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 190.5 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 190.5 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 9609010a-cbf0-48aa-8e02-5f3c13acd069)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 80.01 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58785165-9150-4877-ba18-f864ea6a631a) + (property "Reference" "U1" (id 0) (at 80.01 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 80.01 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 80.01 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 80.01 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a860be85-fcb6-40c0-a8e0-19ef61651e2e)) + (pin "2" (uuid 7582917b-d2b4-4897-8b28-470be86086fd)) + (pin "3" (uuid e2fc38af-94e4-4122-86ac-fb9223f2939e)) + (pin "4" (uuid cb1827a6-7c01-4437-9fc9-73141438cf26)) + (pin "5" (uuid 139eb252-5ac3-4870-b5be-22cee473b1cb)) + (pin "6" (uuid c95502c2-d856-4b0c-b511-e70153a23a7e)) + (pin "7" (uuid e751ff1b-cb8e-44b9-9335-8b914b3476ad)) + (pin "8" (uuid 87cccc25-3571-4a1e-9bcd-463c078c9ccb)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 38.1 66.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a45ff42e-cea0-418b-8583-9b9f82203d60) + (property "Reference" "v2" (id 0) (at 43.18 62.865 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 43.18 66.675 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 43.18 70.485 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 38.1 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 37933ba4-61f2-4a51-9503-56e7ff571d41)) + (pin "2" (uuid 20b6c6f9-d7d3-4133-9356-c80f9a7a3bbb)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 38.1 115.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e4773be6-078c-49aa-8cf4-1d0039f15d16) + (property "Reference" "#PWR0101" (id 0) (at 38.1 121.92 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 38.1 120.65 0)) + (property "Footprint" "" (id 2) (at 38.1 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 38.1 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 42cea04a-db88-4f82-a158-c3fe337d9713)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 185.42 46.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f4b8c7c9-48ae-4619-a19d-39a61c13958e) + (property "Reference" "U5" (id 0) (at 189.23 33.02 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 189.23 36.83 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 185.42 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 185.42 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid dc0613e8-c22b-4425-9a76-5a35f0626213)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 38.1 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f72ea944-a162-4f3f-92b2-785535fd4037) + (property "Reference" "v3" (id 0) (at 43.18 93.345 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 43.18 97.155 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 43.18 100.965 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 38.1 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 44123ddc-587f-4a63-ad2e-8e46bf70cc5a)) + (pin "2" (uuid be6d05ea-a7bd-4b97-ac7d-5995905c478c)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/e4773be6-078c-49aa-8cf4-1d0039f15d16" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/58785165-9150-4877-ba18-f864ea6a631a" + (reference "U1") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/14139acf-10bd-4828-94b4-52ffd99c2723" + (reference "U2") (unit 1) (value "dac_bridge_2") (footprint "") + ) + (path "/f4b8c7c9-48ae-4619-a19d-39a61c13958e" + (reference "U5") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/17a1e13a-51a2-4241-900f-9f84a5f1d068" + (reference "U6") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/0c2777b2-2fa8-4625-a14a-ba64e402b04c" + (reference "X1") (unit 1) (value "SN74121") (footprint "") + ) + (path "/15acc977-7dc2-44ff-9560-8bd2a421ada6" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/a45ff42e-cea0-418b-8583-9b9f82203d60" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/f72ea944-a162-4f3f-92b2-785535fd4037" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74121_sub/SN74121_test.proj b/library/SubcircuitLibrary/SN74121_sub/SN74121_test.proj new file mode 100644 index 000000000..ccce56363 --- /dev/null +++ b/library/SubcircuitLibrary/SN74121_sub/SN74121_test.proj @@ -0,0 +1 @@ +schematicFile SN74121_test.kicad_sch diff --git a/library/SubcircuitLibrary/SN74135/SN74135_subckt.cir b/library/SubcircuitLibrary/SN74135/SN74135_subckt.cir new file mode 100644 index 000000000..d48e3eebd --- /dev/null +++ b/library/SubcircuitLibrary/SN74135/SN74135_subckt.cir @@ -0,0 +1,27 @@ +.title KiCad schematic +U1 A1 B1 A2 B2 A3 B3 A4 B4 Y1 Z1 Y2 Z2 Y3 Z3 Y4 Z4 PORT +U4 A2 Net-_U12-Pad1_ d_inverter +U5 B2 Net-_U13-Pad2_ d_inverter +U3 B1 Net-_U11-Pad2_ d_inverter +U2 A1 Net-_U10-Pad1_ d_inverter +U8 A4 Net-_U16-Pad1_ d_inverter +U9 B4 Net-_U17-Pad2_ d_inverter +U23 Y2 Z2 d_inverter +U19 Net-_U12-Pad3_ Net-_U13-Pad3_ Y2 d_or +U13 A2 Net-_U13-Pad2_ Net-_U13-Pad3_ d_and +U12 Net-_U12-Pad1_ B2 Net-_U12-Pad3_ d_and +U22 Y1 Z1 d_inverter +U10 Net-_U10-Pad1_ B1 Net-_U10-Pad3_ d_and +U11 A1 Net-_U11-Pad2_ Net-_U11-Pad3_ d_and +U18 Net-_U10-Pad3_ Net-_U11-Pad3_ Y1 d_or +U7 B3 Net-_U15-Pad2_ d_inverter +U6 A3 Net-_U14-Pad1_ d_inverter +U17 A4 Net-_U17-Pad2_ Net-_U17-Pad3_ d_and +U16 Net-_U16-Pad1_ B4 Net-_U16-Pad3_ d_and +U15 A3 Net-_U15-Pad2_ Net-_U15-Pad3_ d_and +U14 Net-_U14-Pad1_ B3 Net-_U14-Pad3_ d_and +U21 Net-_U16-Pad3_ Net-_U17-Pad3_ Y4 d_or +U20 Net-_U14-Pad3_ Net-_U15-Pad3_ Y3 d_or +U25 Y4 Z4 d_inverter +U24 Y3 Z3 d_inverter +.end diff --git a/library/SubcircuitLibrary/SN74135/SN74135_subckt.kicad_sch b/library/SubcircuitLibrary/SN74135/SN74135_subckt.kicad_sch new file mode 100644 index 000000000..072c5ccd7 --- /dev/null +++ b/library/SubcircuitLibrary/SN74135/SN74135_subckt.kicad_sch @@ -0,0 +1,2153 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid d3f0f46b-be42-40f4-880c-3b45c2d18ca0) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 142.24 120.65) (diameter 0) (color 0 0 0 0) + (uuid 094c5cc0-fa19-4fd7-b567-c3c96c313d24) + ) + (junction (at 217.17 196.85) (diameter 0) (color 0 0 0 0) + (uuid 18667b7b-d799-4101-94d3-4097593fda32) + ) + (junction (at 140.97 189.23) (diameter 0) (color 0 0 0 0) + (uuid 1986f45b-1f33-4329-9286-bff2cce13a9f) + ) + (junction (at 140.97 68.58) (diameter 0) (color 0 0 0 0) + (uuid 29d2c714-1655-40a5-967c-3929982af088) + ) + (junction (at 217.17 116.84) (diameter 0) (color 0 0 0 0) + (uuid 380058fe-bd5a-4b4f-8fe3-0379ce4ae51a) + ) + (junction (at 217.17 76.2) (diameter 0) (color 0 0 0 0) + (uuid 54a6a992-efd8-4e6f-b6ee-a2a0415c85d8) + ) + (junction (at 142.24 200.66) (diameter 0) (color 0 0 0 0) + (uuid 70d9ce2c-9d7e-4443-8605-9c8dedd34478) + ) + (junction (at 140.97 109.22) (diameter 0) (color 0 0 0 0) + (uuid 7d1ac258-a166-485a-88a9-4840ffee6eb9) + ) + (junction (at 142.24 80.01) (diameter 0) (color 0 0 0 0) + (uuid 8f24a8fc-47f2-404c-9e33-6fd28adc7488) + ) + (junction (at 142.24 160.02) (diameter 0) (color 0 0 0 0) + (uuid b2719e89-da16-42a5-ad77-0d1fc76110e9) + ) + (junction (at 140.97 148.59) (diameter 0) (color 0 0 0 0) + (uuid c800f466-2fa2-461e-a5a7-9cec48648e8e) + ) + (junction (at 217.17 156.21) (diameter 0) (color 0 0 0 0) + (uuid f841e7ef-d1be-4ab3-98d4-f7e11ce3da49) + ) + + (wire (pts (xy 194.31 160.02) (xy 190.5 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0293095b-0da1-4478-ab4a-f15fe0c20f31) + ) + (wire (pts (xy 147.32 200.66) (xy 147.32 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 035d0c2b-e09e-4bcc-b6d6-a64f0d81682c) + ) + (wire (pts (xy 166.37 158.75) (xy 167.64 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 077ff337-04bd-49f2-8834-bc62944a9296) + ) + (wire (pts (xy 166.37 170.18) (xy 166.37 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08f844e8-c671-4538-8456-95ac129dff50) + ) + (wire (pts (xy 194.31 113.03) (xy 194.31 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b565d9c-3b86-48c6-9740-02d2df67580f) + ) + (wire (pts (xy 140.97 68.58) (xy 140.97 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c4b4d30-f33f-4670-945f-2c5eb7f02b5f) + ) + (wire (pts (xy 166.37 130.81) (xy 166.37 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d44b08e-8e90-48a0-b534-0d70ae5d722e) + ) + (wire (pts (xy 165.1 114.3) (xy 167.64 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0de56f84-e57c-4138-964c-b256d8f7b7d7) + ) + (wire (pts (xy 165.1 100.33) (xy 165.1 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11ef4f4d-8f3f-4554-a4bb-33d666fbcbfa) + ) + (wire (pts (xy 142.24 139.7) (xy 165.1 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 120eba8f-956f-483e-8d3f-b63f537bb2cd) + ) + (wire (pts (xy 140.97 90.17) (xy 166.37 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16031eec-e03d-4887-a9b2-91fa646f044b) + ) + (wire (pts (xy 165.1 180.34) (xy 165.1 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 197a0d9f-37e5-461c-afb7-e1070f4c0c0b) + ) + (wire (pts (xy 217.17 86.36) (xy 250.19 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 210b39d6-6f62-4d54-b481-91e2e870a332) + ) + (wire (pts (xy 217.17 196.85) (xy 217.17 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25619dd2-f747-4913-b11f-26e0a0d1539a) + ) + (wire (pts (xy 217.17 76.2) (xy 217.17 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b024dd9-a521-4e27-b213-aa9a371fbd36) + ) + (wire (pts (xy 194.31 80.01) (xy 190.5 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ebaf320-ec90-4eb1-9086-d291a8ac9a0b) + ) + (wire (pts (xy 142.24 120.65) (xy 147.32 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f1257ba-c857-488d-8329-27d36948c79c) + ) + (wire (pts (xy 194.31 118.11) (xy 194.31 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3210aeb6-b8fa-4682-a5fb-730d5169fa19) + ) + (wire (pts (xy 194.31 198.12) (xy 194.31 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3462fcc7-fcdc-4c82-a616-10dd856601b5) + ) + (wire (pts (xy 140.97 109.22) (xy 140.97 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 352f8cb7-8d31-43d7-8982-c5fc96a9beda) + ) + (wire (pts (xy 167.64 148.59) (xy 167.64 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36157897-b81d-41a3-be5c-a77cad501634) + ) + (wire (pts (xy 127 68.58) (xy 140.97 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 367a1b24-a1aa-4ec5-8e22-08038fc1cd58) + ) + (wire (pts (xy 217.17 127) (xy 250.19 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 385b9346-244c-486a-b54b-4aeb06b8614b) + ) + (wire (pts (xy 127 148.59) (xy 140.97 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38d13207-e071-4479-a309-2e83a9b7abfd) + ) + (wire (pts (xy 167.64 189.23) (xy 167.64 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f3c0914-c9d7-414b-8a1d-11196d85a3e6) + ) + (wire (pts (xy 140.97 210.82) (xy 166.37 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4118f835-1ac8-4c2a-bb5a-418ada10c0af) + ) + (wire (pts (xy 127 200.66) (xy 142.24 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43777f92-a60b-4f9d-9b53-442cf163fd73) + ) + (wire (pts (xy 194.31 72.39) (xy 194.31 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4450d985-c556-449e-bf97-57d286b02368) + ) + (wire (pts (xy 162.56 148.59) (xy 167.64 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45fdc19c-3486-454e-a098-540cd5c0ff2a) + ) + (wire (pts (xy 217.17 156.21) (xy 217.17 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 482c2073-f9e5-4ac2-9096-70a47cc77b23) + ) + (wire (pts (xy 166.37 78.74) (xy 167.64 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48ef0acf-2bcd-4fbb-96c1-6508b14c2c24) + ) + (wire (pts (xy 162.56 121.92) (xy 167.64 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4dba2b74-a58b-4bad-97e0-af7ea617a120) + ) + (wire (pts (xy 140.97 170.18) (xy 166.37 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50a03159-9c82-4723-bcea-5c06728f0607) + ) + (wire (pts (xy 140.97 148.59) (xy 140.97 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51df50af-23e2-4976-94e9-98505e7c8256) + ) + (wire (pts (xy 217.17 116.84) (xy 217.17 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 555b77b0-28b5-408e-939b-c6ba4c6d9990) + ) + (wire (pts (xy 162.56 201.93) (xy 167.64 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e59c1b4-6838-451d-983b-64dea63a26ca) + ) + (wire (pts (xy 127 160.02) (xy 142.24 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69af1d52-d645-454b-ba95-a7db9a50df6f) + ) + (wire (pts (xy 190.5 152.4) (xy 194.31 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69dc6523-9a28-47d1-aa79-c6ccc45a321c) + ) + (wire (pts (xy 166.37 90.17) (xy 166.37 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c42fc16-c615-49ff-b027-ab0828324661) + ) + (wire (pts (xy 140.97 148.59) (xy 147.32 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c995182-1717-4b71-b9c6-bcc27c35f45a) + ) + (wire (pts (xy 217.17 76.2) (xy 265.43 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 722620bf-1977-4391-9ad1-8d8ea2822259) + ) + (wire (pts (xy 165.1 59.69) (xy 165.1 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 730be8ce-18b6-427c-93a7-64df3edf2e9f) + ) + (wire (pts (xy 142.24 100.33) (xy 165.1 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 739e6eb6-0c85-42a0-9386-439888ac0d7a) + ) + (wire (pts (xy 194.31 200.66) (xy 190.5 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 755ac965-e0bf-48e3-9167-80af70dcfb6f) + ) + (wire (pts (xy 140.97 68.58) (xy 147.32 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 761f7d8c-901b-44e4-b25a-b3d3443c9a9c) + ) + (wire (pts (xy 217.17 207.01) (xy 250.19 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7aa5ba20-20c2-45e6-9ccf-f2dfb6976286) + ) + (wire (pts (xy 194.31 120.65) (xy 190.5 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d508de4-49ff-411b-8407-2eec2848c488) + ) + (wire (pts (xy 142.24 160.02) (xy 147.32 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e22eaa9-99e9-47e9-b415-bde6ff339ec2) + ) + (wire (pts (xy 165.1 139.7) (xy 165.1 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e5fcd9e-8631-4f42-9d42-258ba7b41cc3) + ) + (wire (pts (xy 162.56 76.2) (xy 162.56 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e7c481a-1ccc-43af-820b-332fc0f06efd) + ) + (wire (pts (xy 140.97 189.23) (xy 140.97 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80bdb72c-3f51-4213-8477-76521f72e740) + ) + (wire (pts (xy 140.97 189.23) (xy 147.32 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82f43a85-e15a-43ea-88e2-cc9fd951f3e6) + ) + (wire (pts (xy 142.24 180.34) (xy 165.1 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87d7d4d1-8f93-4c3e-8c6d-b3a05f0a7567) + ) + (wire (pts (xy 165.1 153.67) (xy 167.64 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b776d41-42d9-425a-a60f-f386a16a3be1) + ) + (wire (pts (xy 162.56 189.23) (xy 167.64 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bdf4b7a-fa8e-4048-a4d0-09ce65abff47) + ) + (wire (pts (xy 142.24 120.65) (xy 142.24 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c660712-8739-4a8a-995b-88c8ecaa42ac) + ) + (wire (pts (xy 147.32 80.01) (xy 147.32 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91a19b4d-fc7f-4ea1-828b-6119fcad3304) + ) + (wire (pts (xy 142.24 59.69) (xy 165.1 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9da8ee58-8b40-463c-9efd-8a9e3a3d387f) + ) + (wire (pts (xy 217.17 156.21) (xy 265.43 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fd36838-d755-4284-b0a5-d90b1d164ca6) + ) + (wire (pts (xy 217.17 196.85) (xy 265.43 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0aef237-90bc-4664-a305-a5b32b8b9ab7) + ) + (wire (pts (xy 142.24 200.66) (xy 147.32 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a64d5014-667a-41ef-94ba-503b5a0da611) + ) + (wire (pts (xy 217.17 116.84) (xy 265.43 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa9005d8-5846-4429-adc0-2fa56254cc4e) + ) + (wire (pts (xy 194.31 77.47) (xy 194.31 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae0c9709-e939-4834-8f2a-3d5d74321258) + ) + (wire (pts (xy 165.1 194.31) (xy 167.64 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b45e1372-2349-4f1c-93f2-97c7cab5dd80) + ) + (wire (pts (xy 190.5 113.03) (xy 194.31 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9aa2bc7-41e4-4f3b-9882-6e75a68cd9e6) + ) + (wire (pts (xy 142.24 80.01) (xy 147.32 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdfe14aa-c567-45bd-83cb-01a409b7220f) + ) + (wire (pts (xy 142.24 160.02) (xy 142.24 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf33f47e-1093-414d-abde-0452ed575281) + ) + (wire (pts (xy 167.64 109.22) (xy 167.64 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf8fefa8-cbac-42ed-abdb-5485787aea3f) + ) + (wire (pts (xy 217.17 166.37) (xy 250.19 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c017c57d-9fac-4c41-bb68-9f000d1bc7ab) + ) + (wire (pts (xy 162.56 81.28) (xy 167.64 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c17bece7-b068-4544-ac60-0cf8892293bb) + ) + (wire (pts (xy 127 80.01) (xy 142.24 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3be1ed4-7f19-4da5-a770-5641491788dc) + ) + (wire (pts (xy 162.56 68.58) (xy 167.64 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c53ef5ef-c592-4074-96f8-d2e6e4f5e090) + ) + (wire (pts (xy 190.5 72.39) (xy 194.31 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7cfb03f-20cd-4ea8-b90f-aa96fc9a1437) + ) + (wire (pts (xy 140.97 109.22) (xy 147.32 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca409e72-3774-4aad-94cc-198dd6c7a441) + ) + (wire (pts (xy 166.37 119.38) (xy 167.64 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca9c92db-6bfb-4dc2-bf88-675be8627a99) + ) + (wire (pts (xy 142.24 200.66) (xy 142.24 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbd1ebb9-b448-42ce-b5e3-fae2ee1dc191) + ) + (wire (pts (xy 162.56 156.21) (xy 162.56 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ccf722a8-345c-47b1-8b85-d6d8b100663f) + ) + (wire (pts (xy 127 120.65) (xy 142.24 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d132b54d-e563-4773-b437-8493da1881aa) + ) + (wire (pts (xy 140.97 130.81) (xy 166.37 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d17c9e67-1a7c-4e7e-b537-0e3c12f7d309) + ) + (wire (pts (xy 165.1 73.66) (xy 167.64 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d21d47c1-3050-4cc4-b6cc-670d9ac69650) + ) + (wire (pts (xy 162.56 109.22) (xy 167.64 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5c69f4f-2808-4e82-883e-ccf20695c6eb) + ) + (wire (pts (xy 167.64 68.58) (xy 167.64 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d66bb273-c670-4347-9c66-7e083c431dd4) + ) + (wire (pts (xy 147.32 120.65) (xy 147.32 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d67d3d09-bb5f-433a-a64a-a594659d3ecc) + ) + (wire (pts (xy 162.56 116.84) (xy 162.56 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7498d52-0f1f-487b-bce5-712ebced9a03) + ) + (wire (pts (xy 194.31 152.4) (xy 194.31 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8f10310-243c-49fc-9fc5-fc9901aa866c) + ) + (wire (pts (xy 194.31 157.48) (xy 194.31 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dde503d0-b773-4aa7-ac30-cad5293ec216) + ) + (wire (pts (xy 142.24 80.01) (xy 142.24 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2fa2fde-0e07-4566-8cb2-22884fe185ca) + ) + (wire (pts (xy 147.32 160.02) (xy 147.32 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7234e7d-e4cb-43b3-92d8-2a854f3b4861) + ) + (wire (pts (xy 127 189.23) (xy 140.97 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7be70a8-b6e5-4181-942c-24496a2171f0) + ) + (wire (pts (xy 190.5 193.04) (xy 194.31 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee092277-270f-479f-9eb5-a7d44a1010bb) + ) + (wire (pts (xy 194.31 193.04) (xy 194.31 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eeca36d0-9d57-4077-8f1c-faa6fe7b48c6) + ) + (wire (pts (xy 162.56 196.85) (xy 162.56 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef0614b3-eed3-4489-942a-45a3ec0f9df2) + ) + (wire (pts (xy 127 109.22) (xy 140.97 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2aeacbe-a6dc-4dbe-9e6f-83c418e3f3c5) + ) + (wire (pts (xy 166.37 210.82) (xy 166.37 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6f56077-c0c6-4227-89af-134b746a9097) + ) + (wire (pts (xy 162.56 161.29) (xy 167.64 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fac6595c-d9c0-4c92-b086-035fffe2de64) + ) + (wire (pts (xy 166.37 199.39) (xy 167.64 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid facc1297-4f5e-40aa-bbfa-f0b0b50cefc8) + ) + + (global_label "B1" (shape input) (at 135.89 80.01 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0af4730a-85ef-4a41-9e8f-baf0d0a2d507) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 135.8106 75.1174 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y2" (shape output) (at 262.89 116.84 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 14676b51-a7cf-4bf0-bd5b-773600eb3315) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 262.8106 112.1288 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y4" (shape output) (at 262.89 196.85 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 31e8921b-a794-4ceb-8f4d-d43de8be88ba) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 262.8106 192.1388 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B2" (shape input) (at 133.35 120.65 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 33c5aa09-b74c-4f19-9be4-e4f3becae326) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 133.2706 115.7574 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Z1" (shape output) (at 265.43 86.36 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4ffa0e75-7d5e-455e-bb18-018da77eca0d) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 265.3506 81.5279 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y3" (shape output) (at 262.89 156.21 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 58a17d0d-4218-4d10-a787-5f3ff7c2655b) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 262.8106 151.4988 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Z2" (shape output) (at 265.43 127 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 69ce9f26-18ae-410c-8210-4d8d7eef9720) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 265.3506 122.1679 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 132.08 109.22 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 76b361ab-01a1-4e0a-8fc4-6a38d16f2f47) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 132.0006 104.5088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B4" (shape input) (at 133.35 200.66 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b2bdd204-5829-4235-89e2-762306e0a61b) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 133.2706 195.7674 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A3" (shape input) (at 132.08 148.59 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c5b51231-7de8-4104-bc57-bd0e5dadbdbc) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 132.0006 143.8788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Z4" (shape output) (at 265.43 207.01 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d3b1b06d-1784-443a-b3ba-1ec1de88dc89) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 265.3506 202.1779 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Z3" (shape output) (at 265.43 166.37 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d409d3c0-c7d1-460c-a8f4-7d2891585569) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 265.3506 161.5379 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 135.89 68.58 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e04d7dc2-77af-4011-ab5f-44563df0764c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 135.8106 63.8688 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y1" (shape output) (at 262.89 76.2 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e0c8b823-f10e-4269-94ab-7299aacc8bdd) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 262.8106 71.4888 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape input) (at 133.35 189.23 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e32f171b-3b4b-457d-9e6b-0438f91d0508) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 133.2706 184.5188 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B3" (shape input) (at 132.08 160.02 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e71071d2-7414-4010-848b-b59c933083de) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 132.0006 155.1274 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 154.94 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04a5ac1e-0f9a-4ca3-8b48-2fbd444bde8e) + (property "Reference" "U3" (id 0) (at 154.94 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 154.94 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 156.21 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 80058b2f-e02e-4b07-abcc-33df5f584f4e)) + (pin "2" (uuid fec5f040-b393-452e-8da4-0b20aebbf92b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 179.07 194.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 05283db0-99a9-4ce8-891b-c6d36485765e) + (property "Reference" "U16" (id 0) (at 179.07 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 179.07 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 179.07 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb0bb394-d47d-4d3e-9caa-1e6773477962)) + (pin "2" (uuid 4ab413a3-b586-4265-8400-58f567eb3606)) + (pin "3" (uuid 69eae42b-4993-4463-acfd-3ed117862edf)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 120.65 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b3289cc-c0c9-487d-a21a-345a631c7519) + (property "Reference" "U1" (id 0) (at 121.285 115.57 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be1f3b12-e38c-4eaf-b1c0-28636a3c1ced)) + (pin "2" (uuid 1e37ad9d-fdb7-409f-9540-01c3e1ab2d76)) + (pin "3" (uuid ae6c1a62-81cb-412b-b639-87e8e0a96b8e)) + (pin "4" (uuid 8fa92e29-7916-4cd8-848d-474ce18295f5)) + (pin "5" (uuid 16880a47-ac91-4867-92db-5ef8950e59ed)) + (pin "6" (uuid 1bc36cee-8a55-4c2f-aa94-30e8509fcb6a)) + (pin "7" (uuid c8d688c9-f803-4e14-9b6f-912626e0061c)) + (pin "8" (uuid e2fe2ed8-3e00-45ea-8264-7766c6505372)) + (pin "9" (uuid 24cdda38-8287-4441-be29-93cb60a6de8d)) + (pin "10" (uuid f4e5fd0a-a95a-44f3-92d1-84cd32814729)) + (pin "11" (uuid ee0234c5-95c6-4a31-905b-723c218dcd80)) + (pin "12" (uuid 8d994d21-d328-4416-948c-553f7ecc9827)) + (pin "13" (uuid 6ed73aad-d1a9-441a-ac9f-4073f5701afe)) + (pin "14" (uuid 47b9fbc6-a7e0-4430-9924-5456acc1712c)) + (pin "15" (uuid c76b01af-f021-458a-8625-8c9c0e2e4e9f)) + (pin "16" (uuid 0ef767ca-1183-4395-a00e-01bbb4f00569)) + (pin "17" (uuid cdb3fbd4-6621-4d5e-93a7-483949a6a504)) + (pin "18" (uuid 74a7a780-bef3-44e9-b05e-306de55c6e65)) + (pin "19" (uuid 23ad982f-3df6-45af-9eb9-3295caa89f72)) + (pin "20" (uuid 68534964-c1b7-4253-a1bd-9695c4abf9a5)) + (pin "21" (uuid 45e37e35-f9ca-4816-9560-5a6b41f4175a)) + (pin "22" (uuid 6b541c21-7c0e-4de0-ac3a-b531bdb22e5f)) + (pin "23" (uuid e6935eb5-3d7e-4299-9526-9bb438625220)) + (pin "24" (uuid fca6fead-0180-4547-a238-4d2534bee1f9)) + (pin "25" (uuid 049bbb2d-ac6b-49d4-a140-f98b102c9d33)) + (pin "26" (uuid 688a5cc9-03c1-46ea-873d-2361b6d5c599)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 154.94 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d47fd8e-ab92-4d31-b80d-7b57c175583f) + (property "Reference" "U2" (id 0) (at 154.94 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 154.94 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 156.21 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b8e9a26-08dc-45cb-ae52-16dd0092caa5)) + (pin "2" (uuid 92e6e2bc-ec5a-47e2-a9f4-5aedddceef9c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 21c69833-3997-486a-bb57-660dfdcaafcd) + (property "Reference" "U1" (id 0) (at 121.285 63.5 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 66.04 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a081aa40-f9bc-4cc3-9554-c2b5d12fbb8e)) + (pin "2" (uuid 36e5377c-457d-4e7f-8201-8de8979c2b36)) + (pin "3" (uuid a26a296d-d284-4c77-8aef-e715b3492a9e)) + (pin "4" (uuid 6676a002-0df3-43f1-ba50-c01a6a5da5fa)) + (pin "5" (uuid 4430df45-5f2e-4bed-8ccf-16bc3981dadb)) + (pin "6" (uuid 9b60f9cd-9b15-465c-aeeb-390b788099ee)) + (pin "7" (uuid 9c79edb5-711d-4798-b1ee-3ab44fb61d5e)) + (pin "8" (uuid 98ba09be-0007-4a14-9e52-4cdd39622703)) + (pin "9" (uuid 70d4c3bc-fe64-478d-9cf3-71b964db15b1)) + (pin "10" (uuid 693e2682-3c46-4438-b30a-c043d7113384)) + (pin "11" (uuid d6e23c9b-9206-467d-86d8-3766623f865a)) + (pin "12" (uuid 050f838d-076d-4021-9e44-d6b790f7cc09)) + (pin "13" (uuid 0a67ea4a-9a98-447d-8d37-7801ec706fdd)) + (pin "14" (uuid edfc00d1-0487-421d-b36d-b1363520b07d)) + (pin "15" (uuid 3fc19c10-6386-48c2-9473-3c3b401247b2)) + (pin "16" (uuid eb2b61e4-00a9-4ec1-9d73-de3dcde36e0a)) + (pin "17" (uuid 40ccb1bf-f92d-491b-9d7a-0bad3171db66)) + (pin "18" (uuid 6070bbc6-db7f-40c2-9393-040267631a54)) + (pin "19" (uuid c1a0a042-69db-4bdf-a329-cde02e9807dd)) + (pin "20" (uuid aa9dec29-28f3-472e-873a-53a1b1ac1684)) + (pin "21" (uuid 2c3051a1-424d-4be5-9321-058116a16a38)) + (pin "22" (uuid 93dc1d07-068e-4873-be16-500efcc6a022)) + (pin "23" (uuid 3dafd403-55ca-4303-9ffd-ea842702f2b0)) + (pin "24" (uuid e50ac92e-4210-425c-b6fc-d95026df01ca)) + (pin "25" (uuid 20bb5d54-76d3-4682-bdab-93117af2a6a5)) + (pin "26" (uuid 6f61f1a9-a1d0-410f-8c94-fce45968801a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 257.81 166.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 25eedc10-543a-43ed-97fd-826b24bd6b0d) + (property "Reference" "U24" (id 0) (at 257.81 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 257.81 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 259.08 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 259.08 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a3a1125f-836a-4d4e-bc21-f16c835ce210)) + (pin "2" (uuid cd580803-d788-4be7-9a7c-0819bb2141c5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 271.78 76.2 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26526e0a-5c3e-4ac2-ad04-a6078aa782d6) + (property "Reference" "U1" (id 0) (at 275.59 75.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 275.59 78.105 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 271.78 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7d65358e-d207-46c6-ae34-fc7832c3b341)) + (pin "2" (uuid 321672de-1e38-472c-896b-0a2877eb54f0)) + (pin "3" (uuid 4f34da2d-74de-43d2-af64-4ba8e36ba1cd)) + (pin "4" (uuid 427bf5a6-5568-4b4c-8f94-db64c8712f32)) + (pin "5" (uuid 2197bfa5-4516-4c36-850b-4b291e6eaa96)) + (pin "6" (uuid 214b2b93-d28e-4ac8-9309-c2f1a9beac6c)) + (pin "7" (uuid 25150921-7104-4562-a215-f616446fe84b)) + (pin "8" (uuid bbd982ed-5489-49a7-8fff-fedae4bcaae4)) + (pin "9" (uuid 93b288c4-d2c6-4b7d-9114-7e8cdfff40c4)) + (pin "10" (uuid 457070ad-fd2b-489a-bf3f-7c642d5d6984)) + (pin "11" (uuid a067a804-9ef9-48c6-bdb1-031f955c27a1)) + (pin "12" (uuid 42030e4a-659c-4853-afc5-70b529e3f0ff)) + (pin "13" (uuid 008bc06f-6a17-4352-bd19-d1eb476a8c38)) + (pin "14" (uuid f9b44754-0e39-415a-b68a-eb883c45ce64)) + (pin "15" (uuid 7d1af37d-1a1f-4abc-adcb-464136a64ca7)) + (pin "16" (uuid ef25b8a6-8ccd-434b-bfcc-d7ee10237976)) + (pin "17" (uuid 47093f0a-bc9f-46a3-8856-b37293a0c48c)) + (pin "18" (uuid 5fff7292-5897-4153-89d3-c87186a18df4)) + (pin "19" (uuid b720d2c4-4449-4430-8569-8b099be8040e)) + (pin "20" (uuid 3f38b7fa-d28b-4326-993c-8ff28b330eef)) + (pin "21" (uuid 21adcc76-e205-4584-973f-193645429d5b)) + (pin "22" (uuid f2d9205c-c086-4f4a-a251-4caa67de933e)) + (pin "23" (uuid 9bdd9f6b-e737-46a6-b34a-c87456f53fb4)) + (pin "24" (uuid 2d98dad3-0d6a-471c-9105-23b27ef44396)) + (pin "25" (uuid 03592f43-1d28-4f6a-a2a1-d25d79ed3821)) + (pin "26" (uuid f6201584-4620-4074-a53a-c409a1d2aebb)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 205.74 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2738507a-acea-42fb-ab5a-ec02679ecf62) + (property "Reference" "U19" (id 0) (at 205.74 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 205.74 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 205.74 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b12bd89e-75c7-4dc0-91c3-25f17f985229)) + (pin "2" (uuid 7e2d54da-d9d2-44ea-bc96-e96cc894b75e)) + (pin "3" (uuid 9431ec0a-e9a8-48aa-b8e7-99fee28df78e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 200.66 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2f68fa77-2718-406b-8146-1569b34c2349) + (property "Reference" "U1" (id 0) (at 121.285 195.58 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 198.12 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a3f73184-eb79-4869-830f-41d6487dfe0d)) + (pin "2" (uuid f9c4dd65-7d40-434e-9527-942fe0a5028b)) + (pin "3" (uuid 8cf123be-1d4c-4fc4-a8cd-0bda96757f62)) + (pin "4" (uuid 4b743ba7-f34f-4602-b918-89a00dbcdb27)) + (pin "5" (uuid a02ef8fc-6e12-490b-899f-8f95e8f96d39)) + (pin "6" (uuid 12596f20-a2b0-4daf-a76c-9adadeaf98cf)) + (pin "7" (uuid 563fbf19-b739-4483-abe1-b46f51044c61)) + (pin "8" (uuid 88c1d482-9f5a-4dcf-a06b-e6401e86a988)) + (pin "9" (uuid b8df3045-c2ba-4088-b2eb-59ec6a82f936)) + (pin "10" (uuid 03f3944f-ef48-467c-8d13-c491a60192c0)) + (pin "11" (uuid 8d97eb60-a5c1-4c2b-888e-efe3f5ba9672)) + (pin "12" (uuid ec12ce71-8b5b-443a-b74a-403300b6d215)) + (pin "13" (uuid 155cc30b-b3f1-43c2-bcc4-8329f59929b1)) + (pin "14" (uuid e2cffb7c-ce23-4e0e-a150-4ff089583cc7)) + (pin "15" (uuid 2ab69017-0d62-4e46-8d70-c249d164199f)) + (pin "16" (uuid af249004-76bd-4fc2-b748-82a69e762a96)) + (pin "17" (uuid fc6e04fb-7ee6-4798-9308-9c660d4b13ff)) + (pin "18" (uuid 2e6f8524-d314-487f-bbe5-ee531aac961e)) + (pin "19" (uuid 81fcb970-25c9-4ee1-b86e-066683865616)) + (pin "20" (uuid b3547f22-c274-4996-b9db-e578e381c3b6)) + (pin "21" (uuid 974bab97-50a3-4607-8780-013fb77bd7bb)) + (pin "22" (uuid 3aef0574-13c8-4428-aab8-ce22f2fac655)) + (pin "23" (uuid dc84f3fc-dd09-4df0-8f8a-adcb7edf7f8c)) + (pin "24" (uuid 7fdc9a90-570a-42d3-9ec1-1aadbff2c907)) + (pin "25" (uuid 205f5cea-a7ee-42a4-bd4d-4c5f8257c009)) + (pin "26" (uuid 34c42aad-ab72-4de5-b71d-6c21453255c6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 271.78 207.01 180) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 31e0ea79-09db-4f10-8234-a22a0a43f2c7) + (property "Reference" "U1" (id 0) (at 275.59 206.375 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 275.59 208.915 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 271.78 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3811202c-776b-4e00-aca6-e6483ca4ab27)) + (pin "2" (uuid 0ba34c7e-3d90-4e87-838a-aff71c456e9a)) + (pin "3" (uuid 0ea60468-2962-4836-bc54-6882e8b192d2)) + (pin "4" (uuid 1dca4041-c79d-43fb-b638-72c63d35653d)) + (pin "5" (uuid 38876de5-0cf2-49fb-961e-6727d698df15)) + (pin "6" (uuid c453dca2-0cd4-4c94-b971-0c03cfaae49a)) + (pin "7" (uuid 085f2895-f3a5-4209-8b50-ff7f842230fb)) + (pin "8" (uuid ed2af8c6-7493-4157-9882-e6a0404c8f78)) + (pin "9" (uuid 0f5c3bab-c9c4-4b2d-9e54-2cb528c77746)) + (pin "10" (uuid 8acdd34c-5435-491c-984e-9d48899ce28d)) + (pin "11" (uuid e24ba62b-7696-4a63-93ac-398aac086096)) + (pin "12" (uuid 89dff15a-021d-4ac8-8ab0-b8d6ad5a2226)) + (pin "13" (uuid 9ec92c39-adac-4d76-b2c2-7ab3f97394e4)) + (pin "14" (uuid 7786b468-067c-474b-9581-47de93b4b83f)) + (pin "15" (uuid 3ff11b7a-2064-4e55-9ddd-010b98a18bce)) + (pin "16" (uuid edee70a5-dc66-4531-b19b-180d064ee497)) + (pin "17" (uuid f36da53c-6085-4d46-90a7-be7f92fa4952)) + (pin "18" (uuid ab6df964-51ad-4254-90ae-0dcf4bd859dc)) + (pin "19" (uuid eadd80da-f10e-4caf-97e6-678afe315442)) + (pin "20" (uuid f022a06e-38ed-4dc3-9ac1-30e4e0037318)) + (pin "21" (uuid d8eb6197-e2cb-4696-a352-ca725b6fe77e)) + (pin "22" (uuid ce0b54c2-d1f0-46f6-b643-d8a2bb6ccaff)) + (pin "23" (uuid c1864b6d-02e3-486e-9527-c52326f1fdb1)) + (pin "24" (uuid b74ae3ef-57ec-4585-a77d-831264ffa6b4)) + (pin "25" (uuid 82428490-8b3f-4cb2-b3df-9529dfe11da2)) + (pin "26" (uuid 75f828c1-1085-4a3f-b7a7-290d740b8eb8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 80.01 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 39adaa19-c0b9-4d21-9eaa-1d3aec550616) + (property "Reference" "U1" (id 0) (at 121.285 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6ce5bea7-66d5-4fe0-8095-467ecd5e428c)) + (pin "2" (uuid 848d529d-a7cc-47ec-ae8b-d8f7d64135c1)) + (pin "3" (uuid 03d87bdb-8fcc-4f6a-8b05-9682c4e086b1)) + (pin "4" (uuid 66000807-268b-4bed-817d-d1b78a23dc57)) + (pin "5" (uuid 978394b2-16ed-4c28-b5fb-7f5144f83c87)) + (pin "6" (uuid 71456404-4b26-4df6-8737-febd9598e365)) + (pin "7" (uuid 858471b2-c8d1-42a9-96d7-3d639372af42)) + (pin "8" (uuid d1dd2492-fa2b-4a2c-a124-6d377b8ae4cb)) + (pin "9" (uuid 7964af5b-7c35-43ca-a4ea-2bdc7fd51ebc)) + (pin "10" (uuid 7c4cfca7-bf47-4e00-8988-28f05727ff94)) + (pin "11" (uuid b5aa5ba2-4e99-4d05-a36c-398f0f65d6a8)) + (pin "12" (uuid f28e7a40-ce93-4506-845e-076d6e40b92e)) + (pin "13" (uuid b48cd2d4-4f19-48a3-bf13-ded22a8e148b)) + (pin "14" (uuid 7b88efd3-6818-49a4-b57e-39871274d5c2)) + (pin "15" (uuid 1ce5f328-2d9f-4448-b141-c5bc2680df39)) + (pin "16" (uuid 5d6c2e1f-4f90-4cee-a841-f6dcabacb756)) + (pin "17" (uuid ff4e0fcb-a486-4285-8924-2e1eab762958)) + (pin "18" (uuid b7cba7ac-13a0-494d-9d40-82690e86e937)) + (pin "19" (uuid 19b79a0b-c235-4289-869d-698c3f1dca57)) + (pin "20" (uuid b8cdb7fa-7f0f-4ca1-a6a0-2576c733a0fc)) + (pin "21" (uuid c9c07013-1c6a-4686-8acc-67ff690e162d)) + (pin "22" (uuid 6678c912-650b-44b0-8b44-97b069ec1b47)) + (pin "23" (uuid 5f90c183-e850-47d2-b7ed-f9afc28ef22f)) + (pin "24" (uuid 0af555c6-a9a2-4180-a410-bd73ac79e673)) + (pin "25" (uuid a8de6682-ecc4-465d-a59d-4e593b58ca5f)) + (pin "26" (uuid 300ccdd1-a08f-4af8-a89d-f2304d3bf9ae)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 148.59 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 39bbfe82-72b0-4b86-861f-a2fa056fa839) + (property "Reference" "U1" (id 0) (at 121.285 143.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 540a87d1-5e5d-40c1-acc6-562e70f5113c)) + (pin "2" (uuid 1868c0fc-27c3-4d7c-8cff-b004df5c15bf)) + (pin "3" (uuid 076f4c93-42f3-40c0-a004-4843895d9107)) + (pin "4" (uuid b7c8cdaf-36a3-49d8-943b-9adf27ccf5b0)) + (pin "5" (uuid c592d94d-5398-49f0-9081-e0dac7c9685b)) + (pin "6" (uuid eb8e2731-d652-41e4-a953-6844b763328d)) + (pin "7" (uuid 68bab738-a774-4940-8331-81d14bb84018)) + (pin "8" (uuid 43284205-f636-4e04-888a-b80b038c1230)) + (pin "9" (uuid 10b30096-fcd8-4810-a2b0-653cb913e015)) + (pin "10" (uuid 42c1eec8-6adb-4c9f-90a3-48ba87424474)) + (pin "11" (uuid 75fc47b1-ce60-453b-a0d4-4aceda5b91a9)) + (pin "12" (uuid bc5d3f8c-4d68-46dd-947e-664b607e5015)) + (pin "13" (uuid 518c82f9-ef05-4cfd-b440-d38ad29889ac)) + (pin "14" (uuid b39298be-69ef-4160-9154-c4d8be4cfc4f)) + (pin "15" (uuid 1eedebbb-2e49-4610-bed9-bc6fef923d13)) + (pin "16" (uuid d0690be9-b924-448a-b5ae-922d1cb2c7d3)) + (pin "17" (uuid 6fe7e792-b53c-4548-9cff-ad0cb20c2aa4)) + (pin "18" (uuid b3c7bd4a-db4c-4ab2-9a4f-fe23fb85b7b4)) + (pin "19" (uuid c8d88514-cb97-4a0b-b5cf-5c3b1a55b1f1)) + (pin "20" (uuid b27b31b7-395f-4cb5-985d-4ef724431a7f)) + (pin "21" (uuid 2198de43-7406-420e-bece-8ac5eda4ce14)) + (pin "22" (uuid 1660ffbe-9c8a-4dc8-9bcb-95ff2ecc7402)) + (pin "23" (uuid a57d818d-695f-4d5f-8cbe-80dc0f69a1c6)) + (pin "24" (uuid 187f41b1-7489-42bc-806b-72ff9e985045)) + (pin "25" (uuid bc267ced-0c2e-407c-a426-8ac4684dc2a4)) + (pin "26" (uuid 36b79e01-515d-4146-a1c7-de27b214858b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 271.78 127 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45157ec4-76a5-45db-bf96-8ab30d55fafa) + (property "Reference" "U1" (id 0) (at 275.59 126.365 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 275.59 128.905 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 271.78 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eac97dde-65ae-4d87-9345-661b790667d6)) + (pin "2" (uuid fc2f8d68-6daf-4096-8b66-b701b0387db6)) + (pin "3" (uuid 02cf7e90-679d-4495-b68a-8e09230c3bad)) + (pin "4" (uuid b7542a5c-ff36-4b63-b5b8-8df291900938)) + (pin "5" (uuid 5ff30dc0-22d5-4526-be73-9a30d9ef6c56)) + (pin "6" (uuid 00bbc1e6-8360-47ca-99ca-0fae9cc657f9)) + (pin "7" (uuid 2d094bb2-2d4a-4025-b1b8-1284263fd23c)) + (pin "8" (uuid cd4a1b23-09be-49e9-9c36-10bc04eef1fc)) + (pin "9" (uuid 1ffba38f-0353-45d9-85dd-7e3758ffd1a0)) + (pin "10" (uuid daba0762-3911-4292-8832-e7effd816a08)) + (pin "11" (uuid 6c260c5b-e9dd-40a6-b86d-5f7aa5fc1ed6)) + (pin "12" (uuid 604cf226-787a-4b67-9d7e-65eeae076e20)) + (pin "13" (uuid 15698dea-f784-4f60-98a7-5de5aaf798d6)) + (pin "14" (uuid a467f062-9972-4e88-850f-c95cf4b58bc2)) + (pin "15" (uuid 6c63d26a-42ad-42f2-b998-311e1400408e)) + (pin "16" (uuid 2b41f3d8-cbe9-4730-93e7-a3c7b7563ac4)) + (pin "17" (uuid f9a4ad11-1672-4add-89c1-4e9683820db5)) + (pin "18" (uuid 0ddd5cd5-5f6d-4182-ad1c-7e834be1755f)) + (pin "19" (uuid 47cfdcab-3433-4061-bdd9-581c6b6d8bb5)) + (pin "20" (uuid c65e3cc6-e608-4473-ba3e-05f0e4a11814)) + (pin "21" (uuid 41051181-b2dc-434e-8652-7d521f0dd6f1)) + (pin "22" (uuid 99d03f39-6382-4330-8886-0039b736a889)) + (pin "23" (uuid 27e1eedd-5e56-45fa-a5d2-5bf257f8bb71)) + (pin "24" (uuid 184b81eb-ac8f-4219-a390-22cbbd7a704a)) + (pin "25" (uuid 2f31869d-7d7b-4182-860f-7f2c9ba28699)) + (pin "26" (uuid 73a73ccf-d625-4475-a25c-14aa78d1afce)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 205.74 157.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4522d565-4660-43c4-9e19-9550c9ca7383) + (property "Reference" "U20" (id 0) (at 205.74 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 205.74 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 205.74 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d9765e0-a91c-465d-b196-04fa0059a954)) + (pin "2" (uuid 1e4f7470-fb87-4bc7-94ca-88bc4fcf35d7)) + (pin "3" (uuid 039d7ced-b6b3-48b6-a215-456d16a216ea)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 154.94 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 475638c9-ee15-4d5c-817f-94c321fecfb7) + (property "Reference" "U5" (id 0) (at 154.94 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 154.94 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 156.21 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e6c03b4-bb34-48b3-b747-32e7a901eaa5)) + (pin "2" (uuid bcf637dd-fb3d-4a92-b93f-7909a5587037)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 205.74 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5a6277b2-d9d8-432c-8d01-68914d3143a2) + (property "Reference" "U18" (id 0) (at 205.74 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 205.74 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 205.74 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 04bb8100-be60-451f-85ab-a0cacd27ca7d)) + (pin "2" (uuid 7af59fb7-1fbb-449c-b767-db97af5a436f)) + (pin "3" (uuid 7cd96ef5-1c0e-41d6-aa46-38421ce3dfa9)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 257.81 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ea7100c-44dd-458a-b0de-7011cbc9c1aa) + (property "Reference" "U22" (id 0) (at 257.81 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 257.81 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 259.08 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 259.08 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c8d17e7e-de96-4aa6-9773-e5fcca155f92)) + (pin "2" (uuid 04ec571f-1af5-4175-bf1e-953935f490d3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 179.07 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5fe4fbcc-f603-444d-99ee-9395817f6dba) + (property "Reference" "U10" (id 0) (at 179.07 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 179.07 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 179.07 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d3cf6a2-d6e8-457a-9220-2bff87e746a4)) + (pin "2" (uuid 43f341ed-4747-415c-9701-0842d610c666)) + (pin "3" (uuid 5a326437-f138-4196-9b31-9dcdc6d70c3c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 109.22 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 616397d2-1306-47c2-90e7-d95cda4f415b) + (property "Reference" "U1" (id 0) (at 121.285 104.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 106.68 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8f18a93d-f8da-48ac-8e1e-7bf31f0ba21f)) + (pin "2" (uuid 564dd9d6-ecb8-4fbc-befb-8f12a20c2951)) + (pin "3" (uuid e9487fde-ab38-4f4f-b9cb-425b925b68fe)) + (pin "4" (uuid 9adb7739-9770-45a4-94ee-70766d1d8b0a)) + (pin "5" (uuid bb98e0e4-c494-4b62-9e31-02667b876816)) + (pin "6" (uuid c9843f80-2982-4c99-95e8-b4e2917dec4f)) + (pin "7" (uuid 3ee35c96-9add-4e4c-b394-93e5e68e42d2)) + (pin "8" (uuid 9c80c321-beb5-49c4-bfb3-0f36a69c53eb)) + (pin "9" (uuid bd390f2a-b6ba-4361-9c0f-34ce5d6c85ac)) + (pin "10" (uuid 583ce84a-3b1b-4372-8d21-a45385d00003)) + (pin "11" (uuid c2b26059-ef8a-4fcc-a40c-37b44d1e81b7)) + (pin "12" (uuid d7f45d28-512c-45f2-b868-94e5416ca47d)) + (pin "13" (uuid 061a397e-8193-43e2-b999-bf9e4134e0af)) + (pin "14" (uuid 7d978ccc-ce73-4c7d-baf6-f8645da97230)) + (pin "15" (uuid c530e7d3-3672-45d9-9253-c95f9b9e99da)) + (pin "16" (uuid 62545ed9-c8c7-4ca3-b440-93789d805dad)) + (pin "17" (uuid 0cefad6e-ed19-4f78-bc02-e59dd3eb3743)) + (pin "18" (uuid eefa6d2e-6a1a-482f-a656-b41850e3bde5)) + (pin "19" (uuid 8885949d-b06d-48ef-898d-7f9026dc44fb)) + (pin "20" (uuid 63a8320a-1479-4e66-ac9a-4f0ce5e74bfa)) + (pin "21" (uuid 0fecb93b-134d-4fe7-a62e-3bd93b1a354b)) + (pin "22" (uuid f60e286a-9ebe-421d-81a0-93276bd86304)) + (pin "23" (uuid ea425645-15b3-4de7-9c70-d4822f93674a)) + (pin "24" (uuid 6000b767-fd62-4ea5-a80b-933ac03a8df6)) + (pin "25" (uuid 1c64817d-9bd9-4d62-b367-1a0d1c16cde3)) + (pin "26" (uuid ce9c48fc-0abe-42e7-915f-fea5f02bb8c1)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 179.07 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6534d1fd-7396-49e7-ba89-9327460516bd) + (property "Reference" "U11" (id 0) (at 179.07 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 179.07 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 179.07 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b43f42ed-7e3b-4d33-a54c-7795e982858f)) + (pin "2" (uuid 36def61b-7116-4c4d-bea6-11e926a45516)) + (pin "3" (uuid 34162ecc-e05c-4ddb-b7ab-a0ef98f0c950)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 179.07 201.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67be5ab6-63b2-4649-b118-7fd4ca05c4f3) + (property "Reference" "U17" (id 0) (at 179.07 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 179.07 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 179.07 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8f5a5c76-cf0d-48b7-9d0f-bd4979c61cf9)) + (pin "2" (uuid 49c8a3ea-d235-48fb-8259-0abfc175d948)) + (pin "3" (uuid 92220453-8cd5-40d6-8dcb-2b0526036d14)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 179.07 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73bd393f-8a0e-44e6-8fed-09d32a0e7664) + (property "Reference" "U12" (id 0) (at 179.07 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 179.07 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 179.07 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f07a48c9-c3a3-46ac-9725-c3b9906106df)) + (pin "2" (uuid 9997d76b-4a7b-4eb8-b642-7c8769474d45)) + (pin "3" (uuid a3c3b03f-14e8-4660-8bfe-3ce817c4ce0a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 179.07 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 77d476ba-3f1f-4f6e-8a9c-969841234c10) + (property "Reference" "U13" (id 0) (at 179.07 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 179.07 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 179.07 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e0cc16d2-d5c3-4f84-8db5-62cd6aadf692)) + (pin "2" (uuid cb86d9e9-ed2e-4048-b12e-1c7f3e1fdb4e)) + (pin "3" (uuid eed05fc0-383a-4ca1-9b5f-228cbba88ba9)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 154.94 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 98273458-bac1-42d1-bdf8-b99d11211ff9) + (property "Reference" "U9" (id 0) (at 154.94 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 154.94 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 156.21 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4b63acfb-3f07-4bdb-960e-aa6767b28dc0)) + (pin "2" (uuid dd3f71ae-2355-4646-8c6e-4ffb7b54467d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 271.78 116.84 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 98ea83d9-7728-4030-854d-f2a7839f14a5) + (property "Reference" "U1" (id 0) (at 275.59 116.205 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 275.59 118.745 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 271.78 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 64abf996-6259-4780-9f9c-ed1c3ec6e175)) + (pin "2" (uuid 15cbaade-67b8-4198-a483-ff7fef864ffe)) + (pin "3" (uuid d1194f2a-2403-4f1d-bd72-7ad8dc8b1e31)) + (pin "4" (uuid d2a423dd-a794-466d-8aca-a6a6b336ab8d)) + (pin "5" (uuid ba14bab9-fbda-400a-aa3e-30a5e4481e73)) + (pin "6" (uuid 83e5714c-d153-4893-8c97-9b0ed2a6ac5c)) + (pin "7" (uuid 9ddde5ef-a58c-4513-9209-5b2788c78d3a)) + (pin "8" (uuid 02337bc5-ff48-430e-9ca7-fd95433f97e0)) + (pin "9" (uuid b5beef42-81a9-46ce-8dc4-6a77f470211f)) + (pin "10" (uuid ab01ef88-e920-4c4b-805c-65cf6e138d47)) + (pin "11" (uuid a781eda6-f3a6-4d0b-b00b-0ef540042704)) + (pin "12" (uuid d55df26e-c602-41f9-a7ea-8c5621f1b3f2)) + (pin "13" (uuid 50fa5d9d-8ae2-4b97-8d8d-7241f3f1749f)) + (pin "14" (uuid a1e15ace-af0f-4a8f-aa74-d7316ee61ea3)) + (pin "15" (uuid f46227b9-a843-4887-96ed-722807dcfa52)) + (pin "16" (uuid 23e21c3b-1b9d-49df-a3cd-787d4eb0ae60)) + (pin "17" (uuid 6bbe0dc1-68db-4aec-a34c-3c8fb274f9d9)) + (pin "18" (uuid 99758429-0319-4b87-9578-8b340deb9884)) + (pin "19" (uuid c041285f-92f4-43c1-a51d-0c0ac8c5246f)) + (pin "20" (uuid 3d3217f1-a3d2-4cb4-8413-eb2c4ab90960)) + (pin "21" (uuid 3478c065-9ae6-45ff-9f1d-b6f9863548ed)) + (pin "22" (uuid 52dfa36d-8472-4fc8-a561-c88aa1f260b6)) + (pin "23" (uuid f15caaa2-8744-4eb0-b75e-506f725e2a1e)) + (pin "24" (uuid 92992cff-3359-42be-b9c4-a84fea74c69d)) + (pin "25" (uuid 0de1a7a6-d2fe-4bdb-982b-9a1d94e5b696)) + (pin "26" (uuid 274a7cb1-acd2-4aba-9267-4174b4d3c73f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 179.07 153.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aaeb88b4-25db-49d2-8015-bedcf9dad0c3) + (property "Reference" "U14" (id 0) (at 179.07 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 179.07 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 179.07 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 033b95d3-ed97-4aa1-8f9f-8203898007b3)) + (pin "2" (uuid 5147a501-c8ca-48d1-8531-9a3ba588b36a)) + (pin "3" (uuid b50c61f4-6a8c-46c8-9fb0-eeacbebccddd)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 271.78 166.37 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aca085d8-96b6-46b0-b0c9-fd2fef96d0ea) + (property "Reference" "U1" (id 0) (at 275.59 165.735 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 275.59 168.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 271.78 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a14a7b21-3cb6-4aa2-aaa7-e4efda0c6670)) + (pin "2" (uuid 73929680-d37d-4b41-b9b1-8c68bc14e7d3)) + (pin "3" (uuid b7ca7fc9-99ce-45ac-b79d-adc7fc0a0951)) + (pin "4" (uuid d4036ae4-ab34-4105-9679-1e539609dc69)) + (pin "5" (uuid eb996cad-9957-4e18-b681-7f022c74ee0b)) + (pin "6" (uuid 006581c0-e2be-4416-ad88-77ae19166ee2)) + (pin "7" (uuid c2c8d017-6bf0-4374-90ad-672dca978552)) + (pin "8" (uuid d9607f27-bfcb-4484-a5e6-e73c37d1de90)) + (pin "9" (uuid ad79ba79-d28e-4f68-b227-d5dc0ee6b4a6)) + (pin "10" (uuid 2aed31ab-a85d-45ba-8b6b-3272cb4e954a)) + (pin "11" (uuid 981d3326-3e95-4aa1-af7b-1f05aa20191e)) + (pin "12" (uuid c8e7d19d-c767-41c4-9b47-5d38cb00a0e4)) + (pin "13" (uuid 5865c899-a6a9-4436-90d6-90910cec26fb)) + (pin "14" (uuid dc1b6eb0-63e5-4ebe-88c9-604c71a5dca7)) + (pin "15" (uuid 08adacd3-581f-4111-a1c0-7ff0c6653b5d)) + (pin "16" (uuid f3a4ed96-a1ef-43b9-a536-b531eff35d1e)) + (pin "17" (uuid dc37f265-bc94-44c0-ac4c-ed30722ad27f)) + (pin "18" (uuid 90f6b797-0e8a-4528-b955-f98eaeeb9c4d)) + (pin "19" (uuid 1402ddae-d964-4ec9-a469-8068e23136c8)) + (pin "20" (uuid 3cf191ff-7cd7-4240-9813-1bb699679f65)) + (pin "21" (uuid 6ffcbcd5-678e-43ba-b4fd-e04451af565b)) + (pin "22" (uuid 11465d6f-2f4d-40d8-972a-ff88ee30364c)) + (pin "23" (uuid 43d277ce-facb-4e6b-98ee-badb096be56a)) + (pin "24" (uuid 8e810a87-79d3-489b-8445-a5883f138c71)) + (pin "25" (uuid 15c58676-c4b3-4df5-8c76-87937a3f2e61)) + (pin "26" (uuid e47bb22e-4e5b-4320-a155-837f8286710c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 189.23 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b12e8c2c-7f69-4660-a7ff-ca4cfbefe556) + (property "Reference" "U1" (id 0) (at 121.285 184.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 186.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d0719392-5d41-49be-bdb9-ee8dceefc737)) + (pin "2" (uuid f3fa32f4-56ad-403a-a94f-f2e6c801bc74)) + (pin "3" (uuid 46114ad3-0e73-4846-a9bb-09236ae0a93c)) + (pin "4" (uuid daab55af-0031-499f-9db5-866f320fed0a)) + (pin "5" (uuid 4e65b3b8-2f45-4bdf-b1d7-e66e2406868e)) + (pin "6" (uuid 7c3e33c0-8920-43c7-8410-41e99255794e)) + (pin "7" (uuid eb58dbf4-ffe8-48d4-8bf8-87318716c38a)) + (pin "8" (uuid cb7afc87-21b1-4218-a838-a15782e7565a)) + (pin "9" (uuid 792a14e1-d3be-4b4d-9fb5-1ec27b9c30aa)) + (pin "10" (uuid 7daa0a40-dd63-4378-ae0a-a9968defa7cb)) + (pin "11" (uuid f0cd31df-c9ed-490d-a0a0-831d42c4c00d)) + (pin "12" (uuid cc78eaf3-6108-47f2-9f0e-f38939105832)) + (pin "13" (uuid 2a693cf0-7581-4c0e-9b03-81ef2d8ac7a8)) + (pin "14" (uuid aaff7c51-f6a1-412c-94b4-19250ea52c39)) + (pin "15" (uuid 5e7afcb4-c22a-46d8-bc71-35f041a2d865)) + (pin "16" (uuid c4a3deaa-2a27-406e-aae3-792eb44ca573)) + (pin "17" (uuid b3760a4f-6d88-472e-88c9-5042fb68ca7d)) + (pin "18" (uuid 1e570b1b-b2c3-4154-bea5-a5b4ff9b0727)) + (pin "19" (uuid cb06f10b-f8d3-45e0-b5e9-bf253edf80dc)) + (pin "20" (uuid 7ac3059e-d334-4b26-ae65-b3dd8cdb1ec3)) + (pin "21" (uuid 0929864b-8274-4b9a-a8ee-57754e50ddc8)) + (pin "22" (uuid 0574b3e7-c0f9-409b-8217-617322321d0f)) + (pin "23" (uuid ba2a79cc-2b27-4115-b9b0-385b9b5709de)) + (pin "24" (uuid 40248094-2283-40ff-9cc3-37172cbe94df)) + (pin "25" (uuid 1e9d7da5-098a-44b4-8946-a8950c862efb)) + (pin "26" (uuid c57be665-31ba-4639-9a8f-88104b950fb1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 154.94 156.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b8bac4df-9109-46e1-93c9-e24acfd4f543) + (property "Reference" "U7" (id 0) (at 154.94 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 154.94 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 156.21 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0703e6ec-0f6f-4358-9b85-bcb1e5d38377)) + (pin "2" (uuid 6f291cd5-1ef9-411f-9ab9-f296d9afef27)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 257.81 207.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bcf4ea5c-64aa-49f4-8e69-61af4d84a5c7) + (property "Reference" "U25" (id 0) (at 257.81 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 257.81 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 259.08 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 259.08 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 518a4f12-cab9-4fde-9050-6913ea30b684)) + (pin "2" (uuid a6b29705-bd1a-448d-ae29-9672be2863cb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 160.02 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c18bd69e-affc-480e-9dd1-ce634f655a2a) + (property "Reference" "U1" (id 0) (at 121.285 154.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 157.48 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 31ea1453-3ebc-4bc9-857f-9fbd3f4a8b28)) + (pin "2" (uuid 57708030-4f78-4b45-8bfb-2d9f36514aa5)) + (pin "3" (uuid 18105bd2-aea7-4ed7-a125-cf9828a24442)) + (pin "4" (uuid 7afe0676-1e68-444a-90b9-54484b213211)) + (pin "5" (uuid 78df2c64-7296-45ca-9bff-5eca40cfd3b8)) + (pin "6" (uuid 33cbca61-b536-46b3-9a2a-f13d776f6787)) + (pin "7" (uuid 506741d2-33a9-4764-b3ac-6e5998dd6a1a)) + (pin "8" (uuid 88dc1a28-7858-4476-ab1e-9659f50a02c8)) + (pin "9" (uuid 4462f807-bab3-442c-826b-3e71e02f068c)) + (pin "10" (uuid 82bf685f-0236-4986-a2ca-adf8810051c8)) + (pin "11" (uuid 0c0669b3-2bbf-42e5-9e43-6fb9c844a4f5)) + (pin "12" (uuid 8811a4c8-1d16-4587-8468-8b598f463393)) + (pin "13" (uuid 47ec8318-1898-4f1b-bb2e-c3ce079b3f11)) + (pin "14" (uuid a99e455c-beef-43f2-9e41-25175fcdff78)) + (pin "15" (uuid 1eacd522-2053-4b0d-a459-5271d0bd4d9a)) + (pin "16" (uuid fc0f3cc6-bc6a-4c44-af8a-3dc2a5712250)) + (pin "17" (uuid f3ad3bb0-c837-4c42-b076-ceec8b7a7dc2)) + (pin "18" (uuid 560a294b-fda5-4488-9d44-a062294cd4cc)) + (pin "19" (uuid bad1afba-6e3e-421c-8f2d-580f2ebd36c0)) + (pin "20" (uuid 6631001c-897a-4b3e-aedc-2769bf1492cc)) + (pin "21" (uuid 565395e8-668c-4e10-baff-4ee121592115)) + (pin "22" (uuid ebd11e24-21cd-4d4a-930d-7b679b225244)) + (pin "23" (uuid d1809e55-2f59-4549-bf3c-c6a3081e7cce)) + (pin "24" (uuid 1b722fdd-1128-4de1-81dc-fbd238e52e2e)) + (pin "25" (uuid 8fdbf664-0ac4-4da5-b02d-799c480212d0)) + (pin "26" (uuid ed2ea5fc-acd5-4841-a847-9df748ad14ad)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 179.07 161.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c77373b3-abc1-4ff2-91d8-d11358faf2a5) + (property "Reference" "U15" (id 0) (at 179.07 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 179.07 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 179.07 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 782e0639-89e9-488a-831f-92c8e6b04f7c)) + (pin "2" (uuid 4caec94e-c670-4cbc-8cb1-a869e0f23d0e)) + (pin "3" (uuid 2a03b933-2938-4b03-8006-cb89b2f747e7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 154.94 189.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d00a732e-ed0b-4326-85b9-ed144d90b9e8) + (property "Reference" "U8" (id 0) (at 154.94 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 154.94 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 156.21 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 55e652bc-f0fd-438f-88fa-a1ff910247e5)) + (pin "2" (uuid 40de3410-a856-4cad-9e22-3f226de4040c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 271.78 156.21 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dbd91925-e720-42ff-b88a-1267d6b9997a) + (property "Reference" "U1" (id 0) (at 275.59 155.575 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 275.59 158.115 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 271.78 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e56954de-034b-4ccf-9a85-4c7ea95ae01f)) + (pin "2" (uuid 14ee6dbe-715a-43ca-8393-d3e8225b58f1)) + (pin "3" (uuid 96bf6dfe-3407-4553-b19f-3d7150c916ed)) + (pin "4" (uuid 993565c7-3240-4141-b09f-6b5a18668968)) + (pin "5" (uuid 8f166508-8aa8-4fd0-9f49-81868c2b34f9)) + (pin "6" (uuid 876fd303-2e3f-4d20-951e-fb4af6e7b8f0)) + (pin "7" (uuid 69743ce0-9489-4599-a590-2ecd8cc89117)) + (pin "8" (uuid 69ade4ec-0735-4740-85e3-cf88cce8bc03)) + (pin "9" (uuid 01733c91-9eea-46b2-be6e-1158a32fa47d)) + (pin "10" (uuid 02d241bf-ff58-4d5d-b8e2-7afd9681525b)) + (pin "11" (uuid dd28c69b-db02-4aa8-88f6-384af68a941b)) + (pin "12" (uuid 3c06b5eb-7eb7-48cf-aa99-3d2445a01bcb)) + (pin "13" (uuid eae60324-bc0e-47c4-96a3-35d16b97df04)) + (pin "14" (uuid 419f3176-7e3f-49f2-a86c-d0eb176ee1c6)) + (pin "15" (uuid a99f68a4-d170-45f2-bcb6-3c0be4e4f349)) + (pin "16" (uuid 691e4cda-d03c-4ded-add3-ed9a0298c34c)) + (pin "17" (uuid 45978dcd-b848-48df-94fa-6eb955013af7)) + (pin "18" (uuid b9776d56-e3b7-449c-a5ee-6069e6fcfedd)) + (pin "19" (uuid 9d82ec79-77de-4527-b8de-a228744f6692)) + (pin "20" (uuid 22b43cca-4432-4909-89e8-68b8c4314dd0)) + (pin "21" (uuid 9d49d9b2-da69-4c43-bd2a-af41e25ee9cd)) + (pin "22" (uuid 37f35cb7-4b74-46ee-a647-2ce79aa28190)) + (pin "23" (uuid 5952daa3-7277-4350-8820-f66fb5d5f83a)) + (pin "24" (uuid 0006b803-c2cc-41d8-a31e-5a0da9c35828)) + (pin "25" (uuid defd62b5-55a4-4f7e-a0eb-14e9ee685470)) + (pin "26" (uuid 4ea9e16c-704e-4890-a207-5bcabe519f8f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 271.78 196.85 180) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e10a8c57-c8fa-478c-b7b9-2c6dc9e88988) + (property "Reference" "U1" (id 0) (at 275.59 196.215 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 275.59 198.755 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 271.78 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1c68337e-72c9-4c97-924a-c0e9e46b81d0)) + (pin "2" (uuid cef89767-8e68-48eb-b104-c7eda84bb69d)) + (pin "3" (uuid b6fc7116-e8aa-421f-a050-a928aa4d50e4)) + (pin "4" (uuid f6d150db-a4f5-4a38-9a54-83767b381407)) + (pin "5" (uuid 4e4d710e-df0b-4261-8e37-df692ff9c0f1)) + (pin "6" (uuid d87e272c-4fef-4be5-890a-07aed5410e2b)) + (pin "7" (uuid 53a6376e-376d-4136-a01f-06b7dd931944)) + (pin "8" (uuid 5577ff78-e90e-42b2-aa7a-eb1a4589f233)) + (pin "9" (uuid 1d71ff1e-478c-4349-95ac-12cbaf0e377d)) + (pin "10" (uuid 3ae14667-afcd-46a6-9fa8-7a4e264bb808)) + (pin "11" (uuid 480694a4-a922-4686-b2c9-1c51fba764ea)) + (pin "12" (uuid 083d22c5-4ade-4c5e-aee6-59afebfb0974)) + (pin "13" (uuid 42773e26-564a-4169-8cd0-9501e88728c4)) + (pin "14" (uuid 69bb33a2-81d7-43d5-884f-becc908e61c6)) + (pin "15" (uuid e580e7fd-ee62-4e44-b45f-155e4bac0e23)) + (pin "16" (uuid e29572a4-940d-4deb-ae01-e25d046d6355)) + (pin "17" (uuid 2c86a1f9-9f36-46e6-82de-e3ffabc9d028)) + (pin "18" (uuid bd17b72a-d292-422a-96f8-09ed786d5e98)) + (pin "19" (uuid 5f048bcd-7194-45de-9319-ab7f5593846b)) + (pin "20" (uuid 0f4a49fe-626c-43be-b917-7dc7b4c59be2)) + (pin "21" (uuid 8df3278e-633b-45f5-ad13-bde5f8345734)) + (pin "22" (uuid 27038dd3-f15c-4367-bd94-b5ad66441980)) + (pin "23" (uuid 678c5139-2442-4318-846b-cfa59f87d944)) + (pin "24" (uuid 0d141c93-61e1-4127-9d10-6951e9b932df)) + (pin "25" (uuid d93f272c-bf78-43fa-b63b-0a2db4bdaafb)) + (pin "26" (uuid 8d95d509-0399-42e9-b21b-1d0caf2a168c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 154.94 148.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e22eeb1b-b6b2-4070-9362-f8c725137b8b) + (property "Reference" "U6" (id 0) (at 154.94 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 154.94 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 156.21 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1536dd4b-0c3a-4b57-81cd-0465189de57c)) + (pin "2" (uuid c479160d-946d-4a95-b12f-4c9271dc5438)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 154.94 109.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f16169b4-ddbc-49d2-b267-104dbd059ec3) + (property "Reference" "U4" (id 0) (at 154.94 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 154.94 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 156.21 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ab98ec73-0d84-4615-998a-8ac79a9fbdb4)) + (pin "2" (uuid fcddaf6b-a2d6-453c-993f-2cbf545434f7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 271.78 86.36 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f1a61d72-61eb-41e0-a4a6-78d73ed13b23) + (property "Reference" "U1" (id 0) (at 275.59 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 275.59 88.265 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 271.78 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1f8f26b2-ed29-4342-9344-396b9a7fb0a9)) + (pin "2" (uuid a6e26ce2-ed89-49e5-9ddb-6a7052deb987)) + (pin "3" (uuid 364b1c11-670e-4848-ad02-79a7bd8ee5b2)) + (pin "4" (uuid 897c2079-cadc-4692-93ce-8a95c4c57713)) + (pin "5" (uuid dc4d2309-c25a-44bb-a470-2d8293d48808)) + (pin "6" (uuid 2ad869cf-0dd3-4973-ae60-5b55bed2b6df)) + (pin "7" (uuid d09305ed-3843-4c27-90f3-146c92b00283)) + (pin "8" (uuid 9ad6efeb-a749-4c08-ad8b-ad3f5320dcbe)) + (pin "9" (uuid 7fb9f19d-fa96-47d4-84c4-7cb9066aff47)) + (pin "10" (uuid 5f7b27be-5ec1-4636-b841-e8152324523d)) + (pin "11" (uuid 2dbe0144-0f9c-4869-a08a-2aff8381ce14)) + (pin "12" (uuid 3fc49efb-2a2f-477b-8d2c-cb91fe0333ff)) + (pin "13" (uuid d6b07a64-77a9-4df9-9142-961e7cf814d2)) + (pin "14" (uuid e4b0b4ea-b04b-4ee9-ab6c-0734bbefd1fd)) + (pin "15" (uuid e4f5edcd-6521-4f89-a146-37249af748b4)) + (pin "16" (uuid 8bc67852-a9bd-4ad0-91e5-e0016ea88197)) + (pin "17" (uuid f116b9c7-ff36-469c-af53-a5a43e0496f6)) + (pin "18" (uuid 14881e9e-ed21-4e79-b9bb-0574f9557c63)) + (pin "19" (uuid ea31f148-ef16-4469-88d4-3f193cb11ff0)) + (pin "20" (uuid c8c157bf-630c-4311-b7c5-5bac0e024741)) + (pin "21" (uuid a2c74ada-b208-48b6-af24-c7cd679bd2cc)) + (pin "22" (uuid 97ceaa2e-cb72-47b8-a31b-f47b15d58d78)) + (pin "23" (uuid cafbee14-7b1c-405e-8caf-6cd7a96c14f4)) + (pin "24" (uuid ca20101b-6976-4e71-88a9-fe6d55fbaf61)) + (pin "25" (uuid e9fa149a-3483-49ab-9acb-9e0d9fce3fc9)) + (pin "26" (uuid 9862a07a-faff-4d3f-a110-3c0409a319b2)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 205.74 198.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9094f1d-295a-443a-bed6-9e2c14040dee) + (property "Reference" "U21" (id 0) (at 205.74 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 205.74 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 205.74 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0664a213-a56a-45af-a0a3-135731e26328)) + (pin "2" (uuid 3ac61d4e-909a-46c2-8d14-3b78521fd14a)) + (pin "3" (uuid f8271790-4cae-486d-ab0a-8825789ad76b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 257.81 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ff174160-7995-4c1e-8d4b-87b4298ad5cf) + (property "Reference" "U23" (id 0) (at 257.81 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 257.81 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 259.08 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 259.08 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fad97cb1-a1c5-4043-bf20-379020494b6e)) + (pin "2" (uuid 742a6c58-747a-4b82-88ed-ff0ed19f44f0)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/21c69833-3997-486a-bb57-660dfdcaafcd" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/39adaa19-c0b9-4d21-9eaa-1d3aec550616" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/616397d2-1306-47c2-90e7-d95cda4f415b" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/1b3289cc-c0c9-487d-a21a-345a631c7519" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/39bbfe82-72b0-4b86-861f-a2fa056fa839" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/c18bd69e-affc-480e-9dd1-ce634f655a2a" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/b12e8c2c-7f69-4660-a7ff-ca4cfbefe556" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/2f68fa77-2718-406b-8146-1569b34c2349" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/26526e0a-5c3e-4ac2-ad04-a6078aa782d6" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/f1a61d72-61eb-41e0-a4a6-78d73ed13b23" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/98ea83d9-7728-4030-854d-f2a7839f14a5" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/45157ec4-76a5-45db-bf96-8ab30d55fafa" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/dbd91925-e720-42ff-b88a-1267d6b9997a" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/aca085d8-96b6-46b0-b0c9-fd2fef96d0ea" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/e10a8c57-c8fa-478c-b7b9-2c6dc9e88988" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/31e0ea79-09db-4f10-8234-a22a0a43f2c7" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/1d47fd8e-ab92-4d31-b80d-7b57c175583f" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/04a5ac1e-0f9a-4ca3-8b48-2fbd444bde8e" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f16169b4-ddbc-49d2-b267-104dbd059ec3" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/475638c9-ee15-4d5c-817f-94c321fecfb7" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e22eeb1b-b6b2-4070-9362-f8c725137b8b" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b8bac4df-9109-46e1-93c9-e24acfd4f543" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d00a732e-ed0b-4326-85b9-ed144d90b9e8" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/98273458-bac1-42d1-bdf8-b99d11211ff9" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5fe4fbcc-f603-444d-99ee-9395817f6dba" + (reference "U10") (unit 1) (value "d_and") (footprint "") + ) + (path "/6534d1fd-7396-49e7-ba89-9327460516bd" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/73bd393f-8a0e-44e6-8fed-09d32a0e7664" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/77d476ba-3f1f-4f6e-8a9c-969841234c10" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + (path "/aaeb88b4-25db-49d2-8015-bedcf9dad0c3" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/c77373b3-abc1-4ff2-91d8-d11358faf2a5" + (reference "U15") (unit 1) (value "d_and") (footprint "") + ) + (path "/05283db0-99a9-4ce8-891b-c6d36485765e" + (reference "U16") (unit 1) (value "d_and") (footprint "") + ) + (path "/67be5ab6-63b2-4649-b118-7fd4ca05c4f3" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/5a6277b2-d9d8-432c-8d01-68914d3143a2" + (reference "U18") (unit 1) (value "d_or") (footprint "") + ) + (path "/2738507a-acea-42fb-ab5a-ec02679ecf62" + (reference "U19") (unit 1) (value "d_or") (footprint "") + ) + (path "/4522d565-4660-43c4-9e19-9550c9ca7383" + (reference "U20") (unit 1) (value "d_or") (footprint "") + ) + (path "/f9094f1d-295a-443a-bed6-9e2c14040dee" + (reference "U21") (unit 1) (value "d_or") (footprint "") + ) + (path "/5ea7100c-44dd-458a-b0de-7011cbc9c1aa" + (reference "U22") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ff174160-7995-4c1e-8d4b-87b4298ad5cf" + (reference "U23") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/25eedc10-543a-43ed-97fd-826b24bd6b0d" + (reference "U24") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bcf4ea5c-64aa-49f4-8e69-61af4d84a5c7" + (reference "U25") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74135/SN74135_subckt.proj b/library/SubcircuitLibrary/SN74135/SN74135_subckt.proj new file mode 100644 index 000000000..4109374ab --- /dev/null +++ b/library/SubcircuitLibrary/SN74135/SN74135_subckt.proj @@ -0,0 +1 @@ +schematicFile SN74135_subckt.kicad_sch diff --git a/library/SubcircuitLibrary/SN74135/Test_SN74135.cir b/library/SubcircuitLibrary/SN74135/Test_SN74135.cir new file mode 100644 index 000000000..c6a39e551 --- /dev/null +++ b/library/SubcircuitLibrary/SN74135/Test_SN74135.cir @@ -0,0 +1,27 @@ +.title KiCad schematic +U4 Net-_U4-Pad1_ Net-_U4-Pad2_ adc_bridge_1 +U3 Net-_U3-Pad1_ Net-_U3-Pad2_ adc_bridge_1 +v2 Net-_U2-Pad1_ GND pulse +v1 Net-_U1-Pad1_ GND pulse +v4 Net-_U4-Pad1_ GND pulse +v3 Net-_U3-Pad1_ GND pulse +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ adc_bridge_1 +U2 Net-_U2-Pad1_ Net-_U2-Pad2_ adc_bridge_1 +U5 Net-_U5-Pad1_ Net-_U5-Pad2_ adc_bridge_1 +v5 Net-_U5-Pad1_ GND pulse +v6 Net-_U6-Pad1_ GND pulse +v8 Net-_U8-Pad1_ GND pulse +v7 Net-_U7-Pad1_ GND pulse +U6 Net-_U6-Pad1_ Net-_U6-Pad2_ adc_bridge_1 +U8 Net-_U8-Pad1_ Net-_U8-Pad2_ adc_bridge_1 +U7 Net-_U7-Pad1_ Net-_U7-Pad2_ adc_bridge_1 +U16 Net-_U16-Pad1_ Z4 dac_bridge_1 +U15 Net-_U15-Pad1_ Y4 dac_bridge_1 +U14 Net-_U14-Pad1_ Z3 dac_bridge_1 +U13 Net-_U13-Pad1_ Y3 dac_bridge_1 +U10 Net-_U10-Pad1_ Z1 dac_bridge_1 +U9 Net-_U9-Pad1_ Y1 dac_bridge_1 +U11 Net-_U11-Pad1_ Y2 dac_bridge_1 +U12 Net-_U12-Pad1_ Z2 dac_bridge_1 +x1 Net-_U1-Pad2_ Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U4-Pad2_ Net-_U5-Pad2_ Net-_U6-Pad2_ Net-_U7-Pad2_ Net-_U8-Pad2_ Net-_U9-Pad1_ Net-_U10-Pad1_ Net-_U11-Pad1_ Net-_U12-Pad1_ Net-_U13-Pad1_ Net-_U14-Pad1_ Net-_U15-Pad1_ Net-_U16-Pad1_ SN74135 +.end diff --git a/library/SubcircuitLibrary/SN74135/Test_SN74135.cir.out b/library/SubcircuitLibrary/SN74135/Test_SN74135.cir.out new file mode 100644 index 000000000..dbe514f92 --- /dev/null +++ b/library/SubcircuitLibrary/SN74135/Test_SN74135.cir.out @@ -0,0 +1,179 @@ +.title kicad schematic + +* u28 net-_u23-pad3_ net-_u24-pad3_ net-_u28-pad3_ d_or +* u23 net-_u15-pad2_ b4 net-_u23-pad3_ d_and +* u24 a4 net-_u16-pad2_ net-_u24-pad3_ d_and +* u22 a3 net-_u14-pad2_ net-_u22-pad3_ d_and +* u31 net-_u27-pad3_ net-_u31-pad2_ d_inverter +* u17 net-_u17-pad1_ b1 net-_u17-pad3_ d_and +* u18 a1 net-_u10-pad2_ net-_u18-pad3_ d_and +* u10 b1 net-_u10-pad2_ d_inverter +* u9 a1 net-_u17-pad1_ d_inverter +* u7 net-_u7-pad1_ a4 adc_bridge_1 +* u8 net-_u8-pad1_ b4 adc_bridge_1 +* u6 net-_u6-pad1_ b3 adc_bridge_1 +* u5 net-_u5-pad1_ a3 adc_bridge_1 +* u15 a4 net-_u15-pad2_ d_inverter +* u16 b4 net-_u16-pad2_ d_inverter +v5 net-_u5-pad1_ gnd pulse(0 5 0 1n 1n 10m 20m) +v8 net-_u8-pad1_ gnd pulse(0 5 0 1n 1n 20m 40m) +v7 net-_u7-pad1_ gnd pulse(0 5 0 1n 1n 10m 20m) +v6 net-_u6-pad1_ gnd pulse(0 5 0 1n 1n 20m 40m) +* u14 b3 net-_u14-pad2_ d_inverter +* u13 a3 net-_u13-pad2_ d_inverter +v3 net-_u3-pad1_ gnd pulse(0 5 0 1n 1n 10m 20m) +v4 net-_u4-pad1_ gnd pulse(0 5 0 1n 1n 20m 40m) +* u3 net-_u3-pad1_ a2 adc_bridge_1 +* u4 net-_u4-pad1_ b2 adc_bridge_1 +* u12 b2 net-_u12-pad2_ d_inverter +* u11 a2 net-_u11-pad2_ d_inverter +* u1 net-_u1-pad1_ a1 adc_bridge_1 +* u2 net-_u2-pad1_ b1 adc_bridge_1 +v1 net-_u1-pad1_ gnd pulse(0 5 0 1n 1n 10m 20m) +v2 net-_u2-pad1_ gnd pulse(0 5 0 1n 1n 20m 40m) +* u25 net-_u17-pad3_ net-_u18-pad3_ net-_u25-pad3_ d_or +* u26 net-_u19-pad3_ net-_u20-pad3_ net-_u26-pad3_ d_or +* u30 net-_u26-pad3_ net-_u30-pad2_ d_inverter +* u29 net-_u25-pad3_ net-_u29-pad2_ d_inverter +* u38 net-_u31-pad2_ z3 dac_bridge_1 +* u32 net-_u28-pad3_ net-_u32-pad2_ d_inverter +* u39 net-_u28-pad3_ y4 dac_bridge_1 +* u40 net-_u32-pad2_ z4 dac_bridge_1 +* u21 net-_u13-pad2_ b3 net-_u21-pad3_ d_and +* u19 net-_u11-pad2_ b2 net-_u19-pad3_ d_and +* u20 a2 net-_u12-pad2_ net-_u20-pad3_ d_and +* u27 net-_u21-pad3_ net-_u22-pad3_ net-_u27-pad3_ d_or +* u33 net-_u25-pad3_ y1 dac_bridge_1 +* u34 net-_u29-pad2_ z1 dac_bridge_1 +* u36 net-_u30-pad2_ z2 dac_bridge_1 +* u35 net-_u26-pad3_ y2 dac_bridge_1 +* u37 net-_u27-pad3_ y3 dac_bridge_1 +a1 [net-_u23-pad3_ net-_u24-pad3_ ] net-_u28-pad3_ u28 +a2 [net-_u15-pad2_ b4 ] net-_u23-pad3_ u23 +a3 [a4 net-_u16-pad2_ ] net-_u24-pad3_ u24 +a4 [a3 net-_u14-pad2_ ] net-_u22-pad3_ u22 +a5 net-_u27-pad3_ net-_u31-pad2_ u31 +a6 [net-_u17-pad1_ b1 ] net-_u17-pad3_ u17 +a7 [a1 net-_u10-pad2_ ] net-_u18-pad3_ u18 +a8 b1 net-_u10-pad2_ u10 +a9 a1 net-_u17-pad1_ u9 +a10 [net-_u7-pad1_ ] [a4 ] u7 +a11 [net-_u8-pad1_ ] [b4 ] u8 +a12 [net-_u6-pad1_ ] [b3 ] u6 +a13 [net-_u5-pad1_ ] [a3 ] u5 +a14 a4 net-_u15-pad2_ u15 +a15 b4 net-_u16-pad2_ u16 +a16 b3 net-_u14-pad2_ u14 +a17 a3 net-_u13-pad2_ u13 +a18 [net-_u3-pad1_ ] [a2 ] u3 +a19 [net-_u4-pad1_ ] [b2 ] u4 +a20 b2 net-_u12-pad2_ u12 +a21 a2 net-_u11-pad2_ u11 +a22 [net-_u1-pad1_ ] [a1 ] u1 +a23 [net-_u2-pad1_ ] [b1 ] u2 +a24 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u25-pad3_ u25 +a25 [net-_u19-pad3_ net-_u20-pad3_ ] net-_u26-pad3_ u26 +a26 net-_u26-pad3_ net-_u30-pad2_ u30 +a27 net-_u25-pad3_ net-_u29-pad2_ u29 +a28 [net-_u31-pad2_ ] [z3 ] u38 +a29 net-_u28-pad3_ net-_u32-pad2_ u32 +a30 [net-_u28-pad3_ ] [y4 ] u39 +a31 [net-_u32-pad2_ ] [z4 ] u40 +a32 [net-_u13-pad2_ b3 ] net-_u21-pad3_ u21 +a33 [net-_u11-pad2_ b2 ] net-_u19-pad3_ u19 +a34 [a2 net-_u12-pad2_ ] net-_u20-pad3_ u20 +a35 [net-_u21-pad3_ net-_u22-pad3_ ] net-_u27-pad3_ u27 +a36 [net-_u25-pad3_ ] [y1 ] u33 +a37 [net-_u29-pad2_ ] [z1 ] u34 +a38 [net-_u30-pad2_ ] [z2 ] u36 +a39 [net-_u26-pad3_ ] [y2 ] u35 +a40 [net-_u27-pad3_ ] [y3 ] u37 +* Schematic Name: d_or, Ngspice Name: d_or +.model u28 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u7 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u6 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u25 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u26 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u30 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u29 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u38 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u32 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u39 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u40 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u27 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u33 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u34 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u36 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u35 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u37 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0.1e-03 80e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74135/Test_SN74135.kicad_sch b/library/SubcircuitLibrary/SN74135/Test_SN74135.kicad_sch new file mode 100644 index 000000000..a3d96c870 --- /dev/null +++ b/library/SubcircuitLibrary/SN74135/Test_SN74135.kicad_sch @@ -0,0 +1,1200 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 96b7c591-2920-4c9f-a5ad-b6853a1c6451) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN74135" (in_bom yes) (on_board yes) + (property "Reference" "x" (id 0) (at 0 -13.97 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN74135" (id 1) (at 0 -10.16 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 -10.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 -10.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN74135_0_1" + (rectangle (start -10.16 -2.54) (end 10.16 -26.67) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN74135_1_1" + (pin input line (at -12.7 -5.08 0) (length 2.54) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -20.32 180) (length 2.54) + (name "Z1" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -17.78 180) (length 2.54) + (name "Y2" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -15.24 180) (length 2.54) + (name "Z2" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -12.7 180) (length 2.54) + (name "Y3" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -10.16 180) (length 2.54) + (name "Z3" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -7.62 180) (length 2.54) + (name "Y4" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -5.08 180) (length 2.54) + (name "Z4" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -7.62 0) (length 2.54) + (name "B1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -10.16 0) (length 2.54) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -12.7 0) (length 2.54) + (name "B2" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -15.24 0) (length 2.54) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -17.78 0) (length 2.54) + (name "B3" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -20.32 0) (length 2.54) + (name "A4" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -22.86 0) (length 2.54) + (name "B4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 -22.86 180) (length 2.54) + (name "Y1" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (wire (pts (xy 97.79 85.09) (xy 97.79 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00aaf77a-bb5a-46b5-a10e-5d10304d52a9) + ) + (wire (pts (xy 100.33 87.63) (xy 100.33 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 011746af-38fc-44c4-9267-fdbc001b25f7) + ) + (wire (pts (xy 128.27 80.01) (xy 95.25 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08c505e8-4af2-4462-91f5-8340d8c4a9f9) + ) + (wire (pts (xy 173.99 97.79) (xy 189.23 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0dd99fe8-ac01-4372-bac9-49a8e5917194) + ) + (wire (pts (xy 153.67 74.93) (xy 160.02 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1250125f-68cf-4bdc-bd78-b2c9c1581d92) + ) + (wire (pts (xy 128.27 82.55) (xy 96.52 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13874547-48df-43fc-b717-73d9b9765e9e) + ) + (wire (pts (xy 175.26 57.15) (xy 189.23 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18977b11-c5f6-4a73-8a95-be553bacd5a4) + ) + (wire (pts (xy 177.8 92.71) (xy 177.8 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f8f5aaf-f8cb-49a8-82d8-4cb4711458db) + ) + (wire (pts (xy 160.02 177.8) (xy 189.23 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 227bac6d-263f-42fc-838a-44c994934c55) + ) + (wire (pts (xy 168.91 137.16) (xy 189.23 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23f3aee1-5de3-4daf-a5f9-ddfb8bcba649) + ) + (wire (pts (xy 165.1 77.47) (xy 165.1 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2664cee2-0c1e-4add-a178-0ea752dbc726) + ) + (wire (pts (xy 171.45 127) (xy 189.23 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28dbc81a-34dc-4084-b5d3-9d3b4dd055b8) + ) + (wire (pts (xy 95.25 80.01) (xy 95.25 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 32c453c0-8961-4b64-8849-4e671b3053d2) + ) + (wire (pts (xy 128.27 90.17) (xy 102.87 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49259a2c-751b-442e-8273-f8159678b16a) + ) + (wire (pts (xy 153.67 82.55) (xy 171.45 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5892c910-a044-463e-9a06-f1adda5ff27d) + ) + (wire (pts (xy 102.87 166.37) (xy 95.25 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c1079b6-1b65-4a7f-822d-06e5834d5655) + ) + (wire (pts (xy 102.87 90.17) (xy 102.87 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5eb622b0-cf58-4045-b085-9ab54490f6e3) + ) + (wire (pts (xy 175.26 90.17) (xy 175.26 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61904a0b-893b-41ba-8740-cba3268d1532) + ) + (wire (pts (xy 96.52 82.55) (xy 96.52 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7080c7ff-628d-4e20-8c32-f2c2c812659e) + ) + (wire (pts (xy 153.67 77.47) (xy 165.1 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7162ef7f-2155-4a71-a5d0-d69888642fba) + ) + (wire (pts (xy 168.91 80.01) (xy 168.91 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d193947-8c7c-417d-8520-2502fa3e66d2) + ) + (wire (pts (xy 128.27 45.72) (xy 128.27 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8144bca0-5517-41e5-8e4b-620c8db1f822) + ) + (wire (pts (xy 177.8 46.99) (xy 189.23 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83ea3c62-9049-4335-a6d2-3c16e6af417e) + ) + (wire (pts (xy 127 77.47) (xy 128.27 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 907569f6-a7d0-4e62-8e71-604922c1b4a7) + ) + (wire (pts (xy 95.25 97.79) (xy 96.52 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 940f2914-5a27-4d9a-9938-8e478a6bf344) + ) + (wire (pts (xy 105.41 177.8) (xy 95.25 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b80311e-4fca-46bf-a49e-7523e3d672dd) + ) + (wire (pts (xy 128.27 85.09) (xy 97.79 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f2b458e-dbd5-4b79-a0d6-0b4fcb7ab22a) + ) + (wire (pts (xy 165.1 167.64) (xy 189.23 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a06eaf45-0b6a-4586-a570-896cb0e26f8b) + ) + (wire (pts (xy 128.27 92.71) (xy 105.41 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a23729f5-2197-4aff-84fe-749e623e1a6b) + ) + (wire (pts (xy 153.67 80.01) (xy 168.91 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2d4d65d-8fe2-4d53-9922-ddfb2fc51610) + ) + (wire (pts (xy 153.67 90.17) (xy 175.26 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba584abe-8e94-4e34-aec6-43b5c3609136) + ) + (wire (pts (xy 153.67 92.71) (xy 177.8 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cef8fe88-f027-4102-8775-acc162d0d175) + ) + (wire (pts (xy 95.25 125.73) (xy 97.79 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d09d3768-5377-46b5-8c3c-d0c6245d4a6d) + ) + (wire (pts (xy 171.45 82.55) (xy 171.45 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1593b66-92f7-4f55-b21a-a81af9b29fc2) + ) + (wire (pts (xy 128.27 87.63) (xy 100.33 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4a2fae0-8897-495d-8f3c-42ebba640179) + ) + (wire (pts (xy 95.25 57.15) (xy 127 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eaeebfc6-1f09-4ca7-b2fa-d2d8a03e9c92) + ) + (wire (pts (xy 95.25 45.72) (xy 128.27 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb057c5f-b02f-48ae-bc58-0b510ae48bf6) + ) + (wire (pts (xy 173.99 85.09) (xy 173.99 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb7946d5-6e64-41cf-8fa1-663a94fdf03b) + ) + (wire (pts (xy 153.67 87.63) (xy 189.23 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef39566b-6e5b-4e38-b29b-6ea6d956973d) + ) + (wire (pts (xy 160.02 74.93) (xy 160.02 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3b61b27-3c0a-4fd5-b2ab-559ad4f3084e) + ) + (wire (pts (xy 105.41 92.71) (xy 105.41 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f63cfde9-18f8-4e71-913c-f09db4905414) + ) + (wire (pts (xy 153.67 85.09) (xy 173.99 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9031dde-ee94-439f-a39c-b2a4db59b93c) + ) + (wire (pts (xy 100.33 137.16) (xy 95.25 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f93b8fd1-4741-4ab2-9411-69a933a21c12) + ) + (wire (pts (xy 127 57.15) (xy 127 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fce865a5-63a6-4f71-a973-2327bc106227) + ) + + (global_label "Z2" (shape output) (at 218.44 97.79 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0fe169f7-5e73-47a0-97af-b2bc73345684) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.2721 97.7106 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y1" (shape output) (at 218.44 46.99 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 140292bc-bc52-4992-b2bb-5ba570edf7b8) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.1512 46.9106 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y3" (shape output) (at 218.44 127 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 272c93ee-77b6-47d1-84cb-7d6c23ba144f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.1512 126.9206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y4" (shape output) (at 218.44 167.64 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 66e97804-6650-4c8e-a23f-25dd94870b29) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.1512 167.5606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Z3" (shape output) (at 218.44 137.16 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7586397d-d656-4d79-8ba9-52a53092a2c8) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.2721 137.0806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y2" (shape output) (at 218.44 87.63 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7d250386-74f2-44a1-8fdc-529db63f4a48) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.1512 87.5506 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Z1" (shape output) (at 218.44 57.15 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid be3ef644-0fc1-4982-b218-20b6c85cf3fa) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.2721 57.0706 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Z4" (shape output) (at 218.44 177.8 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d9c3f0f2-86c1-409f-ad71-786f00c8d677) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.2721 177.7206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 43.18 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0004955f-f351-4ec2-a192-2bc9d3bcae77) + (property "Reference" "#PWR02" (id 0) (at 43.18 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 43.18 62.23 0)) + (property "Footprint" "" (id 2) (at 43.18 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 43.18 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid aca57242-dbff-4a0c-8224-a29be1ccc1b0)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 204.47 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0611572e-3494-4a5a-8436-8b575e6a10d6) + (property "Reference" "U11" (id 0) (at 203.835 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 203.835 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 667ea44d-1e4a-4e38-bb4b-617b9c495b86)) + (pin "2" (uuid af8ce143-add5-46b1-adad-85cad8bee8a7)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 204.47 179.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 076df9cc-d233-4ff6-b595-56fa5dfa31c5) + (property "Reference" "U16" (id 0) (at 203.835 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 203.835 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 308c68cb-b165-4a2d-93c9-a39aa4ac3e4c)) + (pin "2" (uuid fb6fbdc9-c6e3-4b7d-a157-d3ef94514885)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 43.18 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0af52980-9b75-4586-9241-85be0a5e693e) + (property "Reference" "#PWR08" (id 0) (at 43.18 184.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 43.18 182.88 0)) + (property "Footprint" "" (id 2) (at 43.18 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 43.18 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3749fcdf-79a2-4ea5-806f-c34506fef614)) + ) + + (symbol (lib_id "eSim_Subckt:SN74135") (at 140.97 69.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0b76e73e-6668-4cca-995e-9c5a6049310c) + (property "Reference" "x1" (id 0) (at 140.97 67.31 0)) + (property "Value" "SN74135" (id 1) (at 140.97 69.85 0)) + (property "Footprint" "" (id 2) (at 140.97 80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 140.97 80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 038ce6cc-378c-43ff-9b58-f296156739e4)) + (pin "10" (uuid a5fcf197-49fc-43f6-969a-e4bb889173a7)) + (pin "11" (uuid 7cd94e18-2352-49a7-9533-bb5e50a52830)) + (pin "12" (uuid 8838895f-6bc1-4d1d-b51c-a200cbea95e6)) + (pin "13" (uuid 4cdf9700-4aee-4f83-987c-15ff981e38d7)) + (pin "14" (uuid 55a7d64d-80b8-4337-bb44-826a4700899c)) + (pin "15" (uuid af3212fb-88f0-4ae1-9b53-8c2e8fce60b7)) + (pin "16" (uuid 0be1ca46-2048-42c3-9623-86db0152b25d)) + (pin "2" (uuid b7cce96b-5e36-4640-b692-ef98d3c4d33e)) + (pin "3" (uuid 8af829fc-9f8f-42e9-8257-e0a896f1aba3)) + (pin "4" (uuid cf7f178f-5514-49af-bfea-8a1efb94c68c)) + (pin "5" (uuid 220c4bbc-a79c-425b-9a15-b2ae541e869f)) + (pin "6" (uuid e9bc8bc7-f77c-4eee-a476-9136d8193ba1)) + (pin "7" (uuid 1f20a393-ee3a-452e-bf73-279dc0ca0c7c)) + (pin "8" (uuid 7875df94-de50-4b44-b2e7-58e5f82da03c)) + (pin "9" (uuid ae7efc4c-f6c9-446f-aac4-347398ee6bf9)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 54.61 166.37 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 127e67f3-f422-47c0-b8ea-5a696e7fa26b) + (property "Reference" "v7" (id 0) (at 54.61 153.67 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 54.61 157.48 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 54.61 161.29 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 636d7bb2-5cd2-447a-9f34-df88d4c7b316)) + (pin "2" (uuid 21000df4-be34-481f-96c8-ce14f6dbcf20)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 43.18 137.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 30e2d340-410b-470f-8bff-949e73796fac) + (property "Reference" "#PWR06" (id 0) (at 43.18 143.51 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 43.18 142.24 0)) + (property "Footprint" "" (id 2) (at 43.18 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 43.18 137.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e583ad9b-55d9-40f8-906a-9336d8b1772a)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 54.61 57.15 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 31f2b000-afba-4083-82f1-4c236f494937) + (property "Reference" "v2" (id 0) (at 54.61 44.45 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 54.61 48.26 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 54.61 52.07 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d0d01814-33bf-4b07-9ea6-596b46cdd0d9)) + (pin "2" (uuid 99791642-ca3b-4607-addb-abaaaa2f4a99)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 204.47 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3ad4dc3e-cddc-49a8-9cfc-2989246299d2) + (property "Reference" "U10" (id 0) (at 203.835 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 203.835 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3c383b0f-6fdb-4dda-99c0-c6a53bd6a89f)) + (pin "2" (uuid 5f554b23-c01c-4d09-8330-eec51f4ed82a)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 43.18 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b9133be-f51c-47e7-b758-738311d661fb) + (property "Reference" "#PWR05" (id 0) (at 43.18 132.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 43.18 130.81 0)) + (property "Footprint" "" (id 2) (at 43.18 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 43.18 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid bfab658c-88dc-4aeb-a63b-15dd0da87de5)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 54.61 45.72 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3d6d5045-b37a-4ad5-b7c9-887dcaf6987c) + (property "Reference" "v1" (id 0) (at 54.61 33.02 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 54.61 36.83 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 54.61 40.64 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c42994ec-be6f-48a6-adf5-e0c78e889a7a)) + (pin "2" (uuid 28c94584-5238-4f71-ab34-ad0ec90b4f47)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 81.28 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 594e2985-85b5-4f44-8999-2713c82fe093) + (property "Reference" "U5" (id 0) (at 80.645 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 80.645 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 789b11d6-ac4d-4755-8291-f44d54cd20e2)) + (pin "2" (uuid 3330b181-fca6-4f62-b3fe-3e065fa716f0)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 204.47 48.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5de2d8bd-302c-4817-96a0-c68e859ac689) + (property "Reference" "U9" (id 0) (at 203.835 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 203.835 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e07c635b-c7a1-447b-9e0f-911ed1a7733e)) + (pin "2" (uuid 643efb3d-9c84-4954-82f5-35f0ae5479af)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 204.47 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7017891c-392b-4cac-96a9-5493f1bcc88b) + (property "Reference" "U13" (id 0) (at 203.835 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 203.835 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8337801f-b61f-4cac-9702-127d6ba2981b)) + (pin "2" (uuid 4595d724-cf92-4542-89f3-fda1df4582db)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 43.18 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73707c8a-1210-4280-a6c9-e8a3ce0dc434) + (property "Reference" "#PWR01" (id 0) (at 43.18 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 43.18 50.8 0)) + (property "Footprint" "" (id 2) (at 43.18 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 43.18 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f2b47dab-f3f4-45bf-92c5-d51559840728)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 204.47 138.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 74ab65a1-15d8-4b35-a324-4357711bab98) + (property "Reference" "U14" (id 0) (at 203.835 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 203.835 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae268395-30c1-476a-81b5-23bc85242d6f)) + (pin "2" (uuid 3822070d-19ce-4801-8896-a2705147a771)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 43.18 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ae7b356-ad1f-4c72-aac2-3297cefeb191) + (property "Reference" "#PWR04" (id 0) (at 43.18 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 43.18 102.87 0)) + (property "Footprint" "" (id 2) (at 43.18 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 43.18 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d6b3819e-0481-4da6-930f-3eabfdc8cd3e)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 81.28 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 81b27a3b-5fe4-4295-871c-9b3ef05ec9d6) + (property "Reference" "U3" (id 0) (at 80.645 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 80.645 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a24dc551-3251-484f-ad8b-8025f13193bc)) + (pin "2" (uuid 2fc487f8-2539-41f8-ba86-d904b8e30cef)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 81.28 46.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 86fea2f9-efc0-4b02-839b-203d00b5a42f) + (property "Reference" "U1" (id 0) (at 80.645 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 80.645 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 023df0be-aa0e-42d2-8a96-a93b5c5836db)) + (pin "2" (uuid f7d71424-13a4-4e62-8f9c-b3786bdb8748)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 54.61 97.79 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b3d3a83-2502-49a7-933c-4036ade91521) + (property "Reference" "v4" (id 0) (at 54.61 85.09 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 54.61 88.9 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 54.61 92.71 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5762fcbb-67f6-45d7-8d32-19cef09b2100)) + (pin "2" (uuid 83b9bdd5-2776-4ce6-8e84-06c9ef700538)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 81.28 167.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f253d0e-9538-47e8-9cae-083016fcb70d) + (property "Reference" "U7" (id 0) (at 80.645 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 80.645 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ec27ef7-8cf7-4cbd-8a0e-0b9f2ed52a94)) + (pin "2" (uuid 1fe1088f-eda7-418f-96b0-5a6d0e025c21)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 54.61 125.73 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 98f77a8b-b31e-4188-bae1-a06f2f12b3c8) + (property "Reference" "v5" (id 0) (at 54.61 113.03 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 54.61 116.84 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 54.61 120.65 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dedb32e2-6786-46fe-a17b-44d6f4063d05)) + (pin "2" (uuid 0ae83c60-2a0a-45ea-98b9-712f058aef1e)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 81.28 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9fb66902-e345-427a-933a-de0bbd7dd4dc) + (property "Reference" "U2" (id 0) (at 80.645 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 80.645 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cd2d740b-badd-4f1c-8230-5a8fa2cdcc8b)) + (pin "2" (uuid e5e4c09d-b50e-48f3-87cf-c362a6b8f4c5)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 81.28 138.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a34d5939-2854-495d-9b60-d9758f28aaa5) + (property "Reference" "U6" (id 0) (at 80.645 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 80.645 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 176359a1-9cbd-42d7-af9c-cc417bb52594)) + (pin "2" (uuid caff50e4-eb61-41c3-b2c4-a3b1a7b53414)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 54.61 137.16 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid afabddd1-550a-4526-9ec3-682725e460e8) + (property "Reference" "v6" (id 0) (at 54.61 124.46 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 54.61 128.27 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 54.61 132.08 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bbdb46bf-7735-4050-b077-87d452ef2316)) + (pin "2" (uuid 887e343d-07ab-4674-9808-0e2feacd4f25)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 43.18 166.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c90f1fc0-6ee7-4904-b0a4-c7d5eaecdb34) + (property "Reference" "#PWR07" (id 0) (at 43.18 172.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 43.18 171.45 0)) + (property "Footprint" "" (id 2) (at 43.18 166.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 43.18 166.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid cca8c565-a7d0-4025-ae1f-2c21b192a888)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 204.47 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c94eeca7-2efd-4080-a796-96ae8e8248f2) + (property "Reference" "U12" (id 0) (at 203.835 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 203.835 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b975b69-7410-4951-b21b-e134c0d19d9e)) + (pin "2" (uuid 5337728d-04f6-4636-902f-4e54e4c65caa)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 204.47 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cba72f27-0d98-4021-855d-41da38894e25) + (property "Reference" "U15" (id 0) (at 203.835 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 203.835 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45c026b4-afde-472c-975b-c0a9c0cb38a2)) + (pin "2" (uuid 72a744f6-a30a-45ec-b2f2-78bf7fbe73e3)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 43.18 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc07be37-d4bd-40d2-8cca-ccc9984efae1) + (property "Reference" "#PWR03" (id 0) (at 43.18 92.71 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 43.18 91.44 0)) + (property "Footprint" "" (id 2) (at 43.18 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 43.18 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5cf9172f-f4b0-45dd-a3d0-3665239be52c)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 54.61 177.8 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ce193b8b-d24c-4cb8-badd-bab2f38bb941) + (property "Reference" "v8" (id 0) (at 54.61 165.1 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 54.61 168.91 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 54.61 172.72 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3ec7ad65-2aad-490c-a64c-51105cfc560c)) + (pin "2" (uuid d2ad1eb2-ce31-480e-bdbf-4f99ba1e6218)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 54.61 86.36 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e7c51780-a980-43bd-aa51-a241d5887078) + (property "Reference" "v3" (id 0) (at 54.61 73.66 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 54.61 77.47 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 54.61 81.28 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 03655c57-49f0-4da1-99e2-566531dcfd36)) + (pin "2" (uuid 92d06198-a6d9-4c57-991f-000fd81a11fb)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 81.28 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f808ff95-4472-4499-95e3-394b08cc74ab) + (property "Reference" "U4" (id 0) (at 80.645 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 80.645 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6917db43-9083-40d6-a688-3f5246dd8a47)) + (pin "2" (uuid 1959c159-ce03-4021-a2c9-e2ba9943fc9c)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 81.28 179.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fc41f763-a85e-4f8c-b2fa-23a484278418) + (property "Reference" "U8" (id 0) (at 80.645 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 80.645 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 90bf9e4e-d4d4-4846-9fcb-232d8f6af7f3)) + (pin "2" (uuid 13d3c7cb-7f8a-4c0c-9ee3-5abd6efba0ad)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/73707c8a-1210-4280-a6c9-e8a3ce0dc434" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/0004955f-f351-4ec2-a192-2bc9d3bcae77" + (reference "#PWR02") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/cc07be37-d4bd-40d2-8cca-ccc9984efae1" + (reference "#PWR03") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/7ae7b356-ad1f-4c72-aac2-3297cefeb191" + (reference "#PWR04") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/3b9133be-f51c-47e7-b758-738311d661fb" + (reference "#PWR05") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/30e2d340-410b-470f-8bff-949e73796fac" + (reference "#PWR06") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/c90f1fc0-6ee7-4904-b0a4-c7d5eaecdb34" + (reference "#PWR07") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/0af52980-9b75-4586-9241-85be0a5e693e" + (reference "#PWR08") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/86fea2f9-efc0-4b02-839b-203d00b5a42f" + (reference "U1") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/9fb66902-e345-427a-933a-de0bbd7dd4dc" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/81b27a3b-5fe4-4295-871c-9b3ef05ec9d6" + (reference "U3") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/f808ff95-4472-4499-95e3-394b08cc74ab" + (reference "U4") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/594e2985-85b5-4f44-8999-2713c82fe093" + (reference "U5") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/a34d5939-2854-495d-9b60-d9758f28aaa5" + (reference "U6") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/8f253d0e-9538-47e8-9cae-083016fcb70d" + (reference "U7") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/fc41f763-a85e-4f8c-b2fa-23a484278418" + (reference "U8") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/5de2d8bd-302c-4817-96a0-c68e859ac689" + (reference "U9") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/3ad4dc3e-cddc-49a8-9cfc-2989246299d2" + (reference "U10") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/0611572e-3494-4a5a-8436-8b575e6a10d6" + (reference "U11") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/c94eeca7-2efd-4080-a796-96ae8e8248f2" + (reference "U12") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/7017891c-392b-4cac-96a9-5493f1bcc88b" + (reference "U13") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/74ab65a1-15d8-4b35-a324-4357711bab98" + (reference "U14") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/cba72f27-0d98-4021-855d-41da38894e25" + (reference "U15") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/076df9cc-d233-4ff6-b595-56fa5dfa31c5" + (reference "U16") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/3d6d5045-b37a-4ad5-b7c9-887dcaf6987c" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/31f2b000-afba-4083-82f1-4c236f494937" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/e7c51780-a980-43bd-aa51-a241d5887078" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/8b3d3a83-2502-49a7-933c-4036ade91521" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/98f77a8b-b31e-4188-bae1-a06f2f12b3c8" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/afabddd1-550a-4526-9ec3-682725e460e8" + (reference "v6") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/127e67f3-f422-47c0-b8ea-5a696e7fa26b" + (reference "v7") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/ce193b8b-d24c-4cb8-badd-bab2f38bb941" + (reference "v8") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/0b76e73e-6668-4cca-995e-9c5a6049310c" + (reference "x1") (unit 1) (value "SN74135") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74135/Test_SN74135.proj b/library/SubcircuitLibrary/SN74135/Test_SN74135.proj new file mode 100644 index 000000000..72341fdee --- /dev/null +++ b/library/SubcircuitLibrary/SN74135/Test_SN74135.proj @@ -0,0 +1 @@ +schematicFile Test_SN74135.kicad_sch diff --git a/library/SubcircuitLibrary/SN74135/Test_SN74135_Previous_Values.xml b/library/SubcircuitLibrary/SN74135/Test_SN74135_Previous_Values.xml new file mode 100644 index 000000000..99d40045d --- /dev/null +++ b/library/SubcircuitLibrary/SN74135/Test_SN74135_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0.180secmsmspulse0501n1n10m20mpulse0501n1n20m40mpulse0501n1n10m20mpulse0501n1n20m40mpulse0501n1n10m20mpulse0501n1n20m40mpulse0501n1n10m20mpulse0501n1n20m40md_ord_andd_andd_andd_inverterd_andd_andd_inverterd_inverteradc_bridgeadc_bridgeadc_bridgeadc_bridged_inverterd_inverterd_inverterd_inverteradc_bridgeadc_bridged_inverterd_inverteradc_bridgeadc_bridged_ord_ord_inverterd_inverterdac_bridged_inverterdac_bridgedac_bridged_andd_andd_andd_ordac_bridgedac_bridgedac_bridgedac_bridgedac_bridge \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74135/analysis b/library/SubcircuitLibrary/SN74135/analysis new file mode 100644 index 000000000..00deb6718 --- /dev/null +++ b/library/SubcircuitLibrary/SN74135/analysis @@ -0,0 +1 @@ +.tran 0.1e-03 80e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74386/SN74386_subckt.cir b/library/SubcircuitLibrary/SN74386/SN74386_subckt.cir new file mode 100644 index 000000000..0f2fcdc6a --- /dev/null +++ b/library/SubcircuitLibrary/SN74386/SN74386_subckt.cir @@ -0,0 +1,23 @@ +.title KiCad schematic +U15 A3 Net-_U15-Pad2_ Net-_U15-Pad3_ d_and +U14 Net-_U14-Pad1_ B3 Net-_U14-Pad3_ d_and +U20 Net-_U14-Pad3_ Net-_U15-Pad3_ Y3 d_or +U21 Net-_U16-Pad3_ Net-_U17-Pad3_ Y4 d_or +U17 A4 Net-_U17-Pad2_ Net-_U17-Pad3_ d_and +U16 Net-_U16-Pad1_ B4 Net-_U16-Pad3_ d_and +U1 A1 B1 A2 B2 A3 B3 A4 B4 Y1 Y2 Y3 Y4 PORT +U18 Net-_U10-Pad3_ Net-_U11-Pad3_ Y1 d_or +U19 Net-_U12-Pad3_ Net-_U13-Pad3_ Y2 d_or +U11 A1 Net-_U11-Pad2_ Net-_U11-Pad3_ d_and +U10 Net-_U10-Pad1_ B1 Net-_U10-Pad3_ d_and +U3 B1 Net-_U11-Pad2_ d_inverter +U2 A1 Net-_U10-Pad1_ d_inverter +U6 A3 Net-_U14-Pad1_ d_inverter +U7 B3 Net-_U15-Pad2_ d_inverter +U8 A4 Net-_U16-Pad1_ d_inverter +U9 B4 Net-_U17-Pad2_ d_inverter +U5 B2 Net-_U13-Pad2_ d_inverter +U4 A2 Net-_U12-Pad1_ d_inverter +U13 A2 Net-_U13-Pad2_ Net-_U13-Pad3_ d_and +U12 Net-_U12-Pad1_ B2 Net-_U12-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/SN74386/SN74386_subckt.cir.out b/library/SubcircuitLibrary/SN74386/SN74386_subckt.cir.out new file mode 100644 index 000000000..2ceac402e --- /dev/null +++ b/library/SubcircuitLibrary/SN74386/SN74386_subckt.cir.out @@ -0,0 +1,92 @@ +.title kicad schematic + +* u15 a3 net-_u15-pad2_ net-_u15-pad3_ d_and +* u14 net-_u14-pad1_ b3 net-_u14-pad3_ d_and +* u20 net-_u14-pad3_ net-_u15-pad3_ y3 d_or +* u21 net-_u16-pad3_ net-_u17-pad3_ y4 d_or +* u17 a4 net-_u17-pad2_ net-_u17-pad3_ d_and +* u16 net-_u16-pad1_ b4 net-_u16-pad3_ d_and +* u1 a1 b1 a2 b2 a3 b3 a4 b4 y1 y2 y3 y4 port +* u18 net-_u10-pad3_ net-_u11-pad3_ y1 d_or +* u19 net-_u12-pad3_ net-_u13-pad3_ y2 d_or +* u11 a1 net-_u11-pad2_ net-_u11-pad3_ d_and +* u10 net-_u10-pad1_ b1 net-_u10-pad3_ d_and +* u3 b1 net-_u11-pad2_ d_inverter +* u2 a1 net-_u10-pad1_ d_inverter +* u6 a3 net-_u14-pad1_ d_inverter +* u7 b3 net-_u15-pad2_ d_inverter +* u8 a4 net-_u16-pad1_ d_inverter +* u9 b4 net-_u17-pad2_ d_inverter +* u5 b2 net-_u13-pad2_ d_inverter +* u4 a2 net-_u12-pad1_ d_inverter +* u13 a2 net-_u13-pad2_ net-_u13-pad3_ d_and +* u12 net-_u12-pad1_ b2 net-_u12-pad3_ d_and +a1 [a3 net-_u15-pad2_ ] net-_u15-pad3_ u15 +a2 [net-_u14-pad1_ b3 ] net-_u14-pad3_ u14 +a3 [net-_u14-pad3_ net-_u15-pad3_ ] y3 u20 +a4 [net-_u16-pad3_ net-_u17-pad3_ ] y4 u21 +a5 [a4 net-_u17-pad2_ ] net-_u17-pad3_ u17 +a6 [net-_u16-pad1_ b4 ] net-_u16-pad3_ u16 +a7 [net-_u10-pad3_ net-_u11-pad3_ ] y1 u18 +a8 [net-_u12-pad3_ net-_u13-pad3_ ] y2 u19 +a9 [a1 net-_u11-pad2_ ] net-_u11-pad3_ u11 +a10 [net-_u10-pad1_ b1 ] net-_u10-pad3_ u10 +a11 b1 net-_u11-pad2_ u3 +a12 a1 net-_u10-pad1_ u2 +a13 a3 net-_u14-pad1_ u6 +a14 b3 net-_u15-pad2_ u7 +a15 a4 net-_u16-pad1_ u8 +a16 b4 net-_u17-pad2_ u9 +a17 b2 net-_u13-pad2_ u5 +a18 a2 net-_u12-pad1_ u4 +a19 [a2 net-_u13-pad2_ ] net-_u13-pad3_ u13 +a20 [net-_u12-pad1_ b2 ] net-_u12-pad3_ u12 +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u20 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u21 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u16 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u18 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u19 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74386/SN74386_subckt.kicad_sch b/library/SubcircuitLibrary/SN74386/SN74386_subckt.kicad_sch new file mode 100644 index 000000000..d984f3679 --- /dev/null +++ b/library/SubcircuitLibrary/SN74386/SN74386_subckt.kicad_sch @@ -0,0 +1,1761 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 80b8dd4c-7d7b-45d5-9968-295f24108bde) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 57.15 67.31) (diameter 0) (color 0 0 0 0) + (uuid 0ee730fe-6327-4da5-92e6-d00582f1159e) + ) + (junction (at 58.42 40.64) (diameter 0) (color 0 0 0 0) + (uuid 40af92ab-8b39-462c-bfbb-630244ca1408) + ) + (junction (at 57.15 143.51) (diameter 0) (color 0 0 0 0) + (uuid 559061af-63dd-4c11-866a-c4c430aff0da) + ) + (junction (at 58.42 154.94) (diameter 0) (color 0 0 0 0) + (uuid 6e68e41b-c115-4372-a11f-69a5eb920d33) + ) + (junction (at 57.15 29.21) (diameter 0) (color 0 0 0 0) + (uuid 977c2afb-7a65-4f2e-a3ab-9c509af4bae8) + ) + (junction (at 57.15 105.41) (diameter 0) (color 0 0 0 0) + (uuid a08fd74b-2f8f-4863-a540-b262d1154f9c) + ) + (junction (at 58.42 116.84) (diameter 0) (color 0 0 0 0) + (uuid ad23a972-fda6-4f48-be2d-9d47a0d4d8e0) + ) + (junction (at 58.42 78.74) (diameter 0) (color 0 0 0 0) + (uuid d343a031-c049-49f4-959b-ec4c26936506) + ) + + (wire (pts (xy 111.76 149.86) (xy 116.84 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07725a69-b190-4d95-9815-69dc132e440b) + ) + (wire (pts (xy 57.15 143.51) (xy 62.23 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0914744d-8af0-4c84-be08-05c489a3e254) + ) + (wire (pts (xy 57.15 67.31) (xy 57.15 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0efd9d38-76fe-4e74-b9d7-4cf12a05f457) + ) + (wire (pts (xy 77.47 40.64) (xy 88.9 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10e22240-f4c2-4a17-8b0e-49d6fb4a8a35) + ) + (wire (pts (xy 77.47 67.31) (xy 88.9 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 113b71dd-43d2-4e03-9bd2-b59b18bf59c8) + ) + (wire (pts (xy 57.15 105.41) (xy 57.15 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15464815-94dc-4b1b-bd39-5b77572749cb) + ) + (wire (pts (xy 111.76 33.02) (xy 116.84 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1619cbc6-ae72-4ef2-bf50-fbaa8f5b6a4c) + ) + (wire (pts (xy 58.42 154.94) (xy 62.23 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ac390e4-6cb9-4b56-8dfe-c9311b480a3f) + ) + (wire (pts (xy 111.76 77.47) (xy 111.76 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bab3908-9af4-4ecd-b828-b2b09d714b78) + ) + (wire (pts (xy 41.91 40.64) (xy 58.42 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1eb76c3d-d804-4ab7-9b7a-55f6b6454994) + ) + (wire (pts (xy 85.09 31.75) (xy 88.9 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f9c8c13-2cc2-4e20-bc4e-4d2705840ba1) + ) + (wire (pts (xy 58.42 134.62) (xy 85.09 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f32a669-1e03-4ca1-84d9-c52340c8e0f0) + ) + (wire (pts (xy 57.15 125.73) (xy 85.09 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 319c1c1b-0a1d-4206-85e4-14efeecc41ef) + ) + (wire (pts (xy 58.42 154.94) (xy 58.42 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 337a733f-94b7-419a-8e27-10063af797f6) + ) + (wire (pts (xy 57.15 67.31) (xy 62.23 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 349d62bd-5994-4103-a728-84edaeeca67e) + ) + (wire (pts (xy 111.76 111.76) (xy 116.84 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bb43706-48dc-472b-9de7-ae15f889222e) + ) + (wire (pts (xy 58.42 20.32) (xy 85.09 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d11599b-0f31-4f31-81cf-a8fc6d23be70) + ) + (wire (pts (xy 77.47 143.51) (xy 88.9 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d7a9fdd-baa1-4888-9efb-17aebc91e600) + ) + (wire (pts (xy 85.09 49.53) (xy 85.09 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3db40667-d64b-4f55-a737-6cc01fc1b7e9) + ) + (wire (pts (xy 85.09 38.1) (xy 88.9 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4434d1bb-f2a7-49d4-ab65-17993e3eeeac) + ) + (wire (pts (xy 57.15 87.63) (xy 85.09 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b2f4444-e1a4-4d03-be20-b6665534adba) + ) + (wire (pts (xy 58.42 40.64) (xy 62.23 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52a8fb23-c34c-4e2b-b458-aba31d661e5d) + ) + (wire (pts (xy 116.84 35.56) (xy 111.76 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53504e0c-1a31-4bfd-a284-a173da946c2b) + ) + (wire (pts (xy 111.76 115.57) (xy 111.76 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53819e34-92a7-42ea-9ff5-629105242624) + ) + (wire (pts (xy 85.09 114.3) (xy 88.9 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53a935fb-6ac7-44a0-8a33-664876cf9ebb) + ) + (wire (pts (xy 58.42 96.52) (xy 85.09 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a68eec7-4095-46a3-9d6d-83ea97cbf46d) + ) + (wire (pts (xy 41.91 116.84) (xy 58.42 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c5ad91a-cab1-414d-92de-44aaf7665edd) + ) + (wire (pts (xy 85.09 69.85) (xy 88.9 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61807fa6-f4f5-4108-bcdd-7d02d5b93a70) + ) + (wire (pts (xy 77.47 154.94) (xy 88.9 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64db28e1-164b-4416-9c80-753d85a7d389) + ) + (wire (pts (xy 58.42 40.64) (xy 58.42 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 686bee30-c3f8-49d8-9355-6f303c3b4804) + ) + (wire (pts (xy 85.09 87.63) (xy 85.09 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c0dc608-404a-40ab-8d0c-65e3d31da5fb) + ) + (wire (pts (xy 111.76 147.32) (xy 116.84 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f48113c-6a83-4b2f-a1db-282fbe2dcd2d) + ) + (wire (pts (xy 85.09 107.95) (xy 88.9 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a7df124-9849-4464-bda7-338004d79541) + ) + (wire (pts (xy 77.47 116.84) (xy 88.9 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7be4db36-8aa8-4339-bd90-49921e1b8e6b) + ) + (wire (pts (xy 40.64 143.51) (xy 57.15 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7cfdbc3e-8345-4034-96a1-080dcafaedd7) + ) + (wire (pts (xy 85.09 58.42) (xy 85.09 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f119bae-3fce-48d9-b937-b8cb24a43373) + ) + (wire (pts (xy 85.09 146.05) (xy 88.9 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 850072b7-c19f-4093-a651-65b22ed51ecb) + ) + (wire (pts (xy 57.15 29.21) (xy 57.15 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85a9aee9-e1a5-42d4-8f14-71bb1130be9d) + ) + (wire (pts (xy 85.09 163.83) (xy 85.09 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88d53460-0147-4bf5-9a50-b90f34c1d567) + ) + (wire (pts (xy 85.09 76.2) (xy 88.9 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89d2a6fd-cb79-44e3-83b1-b27f3ab137e8) + ) + (wire (pts (xy 85.09 152.4) (xy 88.9 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90e5e8ff-4f31-4878-9ad0-a2b4a28f3679) + ) + (wire (pts (xy 85.09 134.62) (xy 85.09 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95ebacbd-7214-46c5-a374-3cad267d0c77) + ) + (wire (pts (xy 77.47 29.21) (xy 88.9 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98022933-724a-4c95-9650-8978330dd614) + ) + (wire (pts (xy 111.76 71.12) (xy 116.84 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98137327-ad17-4bd4-bd4e-0f8a91f703aa) + ) + (wire (pts (xy 58.42 116.84) (xy 58.42 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 990e4db0-de9b-4d2b-a2a8-d4dcf24d3e26) + ) + (wire (pts (xy 111.76 68.58) (xy 111.76 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9dcfa7d7-86bd-497f-9680-a99b20c45b49) + ) + (wire (pts (xy 111.76 30.48) (xy 111.76 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e72ca8e-fe78-4a12-a213-0e2e4c38070f) + ) + (wire (pts (xy 40.64 105.41) (xy 57.15 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f2b4a7c-6c25-4e16-998c-3c6b776d510b) + ) + (wire (pts (xy 40.64 67.31) (xy 57.15 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f791ac4-4d9b-4a44-8f05-f7f12259741c) + ) + (wire (pts (xy 77.47 105.41) (xy 88.9 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0402cab-d6ca-477a-a81d-6a7b00326257) + ) + (wire (pts (xy 111.76 109.22) (xy 116.84 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1e51f94-79f4-4315-b89c-508f61c3de9c) + ) + (wire (pts (xy 57.15 143.51) (xy 57.15 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid babfeeea-860d-45fd-bd7c-254df268d545) + ) + (wire (pts (xy 41.91 154.94) (xy 58.42 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc16620c-05cc-4e7f-94ea-229df309a9aa) + ) + (wire (pts (xy 58.42 58.42) (xy 85.09 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0ac40bf-203c-4f2b-839d-325d4b63ad81) + ) + (wire (pts (xy 57.15 49.53) (xy 85.09 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c74fb51f-acf3-4973-ae30-5125215ca107) + ) + (wire (pts (xy 85.09 125.73) (xy 85.09 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc09beef-c891-4159-bac7-9a3e4543fd94) + ) + (wire (pts (xy 58.42 116.84) (xy 62.23 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf8ee547-75ba-4a25-ba01-a44783e6760b) + ) + (wire (pts (xy 111.76 106.68) (xy 111.76 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d039f89b-35ea-4d19-963f-12f42c1d0a3a) + ) + (wire (pts (xy 58.42 78.74) (xy 62.23 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2cb6344-649f-4673-94f6-6615fe17ee43) + ) + (wire (pts (xy 77.47 78.74) (xy 88.9 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7cff488-ea74-43dd-9047-9489e7d4f3be) + ) + (wire (pts (xy 40.64 29.21) (xy 57.15 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8cf10e4-bc7d-4332-a62f-76c8caac97fd) + ) + (wire (pts (xy 57.15 105.41) (xy 62.23 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d90dfdb1-0814-40ec-a681-d0c510454c34) + ) + (wire (pts (xy 139.7 148.59) (xy 181.61 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dccb6698-f7ab-4632-b9a8-1452a1ea9fe6) + ) + (wire (pts (xy 111.76 73.66) (xy 116.84 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid deeebce4-205f-43a5-8a5d-a5949e41c7e6) + ) + (wire (pts (xy 139.7 72.39) (xy 181.61 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2045422-c7a0-4369-975c-a15ddd6807a8) + ) + (wire (pts (xy 111.76 144.78) (xy 111.76 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e255a972-e302-46c7-98d0-3c3dc9e1b2de) + ) + (wire (pts (xy 41.91 78.74) (xy 58.42 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3273ba7-833e-4e9f-82a7-367d607c4d95) + ) + (wire (pts (xy 58.42 78.74) (xy 58.42 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e47d3d6b-1692-4ecd-b879-ee380a3dfc78) + ) + (wire (pts (xy 111.76 35.56) (xy 111.76 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebae6c0f-252a-471f-b001-b85316f7e39f) + ) + (wire (pts (xy 85.09 20.32) (xy 85.09 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edb13145-ef59-43c5-bdc0-0a1883270527) + ) + (wire (pts (xy 139.7 34.29) (xy 181.61 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edea560c-1ce5-4a1b-bc52-59a5d5be11da) + ) + (wire (pts (xy 57.15 29.21) (xy 62.23 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2814252-a527-4aae-96ba-020d9f932e88) + ) + (wire (pts (xy 57.15 163.83) (xy 85.09 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2a786b0-4f1e-43a3-954a-780d9523c08c) + ) + (wire (pts (xy 139.7 110.49) (xy 181.61 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f692ed91-23cf-4563-bb95-5dbc24359d1e) + ) + (wire (pts (xy 111.76 153.67) (xy 111.76 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7dbcc9d-4a22-4b0f-9f30-f23747067d6b) + ) + (wire (pts (xy 85.09 96.52) (xy 85.09 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f933a634-c091-4c6e-9eeb-9ef7dbc41dc7) + ) + + (global_label "A3" (shape input) (at 46.99 105.41 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0722718e-2795-4a60-9450-909ae4aa68c8) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 46.9106 100.6988 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y4" (shape output) (at 175.26 148.59 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 093f365a-b999-4075-ab4d-d0ba5f39a459) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.1806 143.8788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y1" (shape output) (at 173.99 34.29 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0d768109-5f19-4cfc-b389-1a5ad6baa865) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 173.9106 29.5788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y2" (shape output) (at 172.72 72.39 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 165bf1b9-9923-4904-b728-ada20eed22ca) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 172.6406 67.6788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B4" (shape input) (at 45.72 154.94 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 1718e3e5-b420-4fcb-aee3-74500b0043c7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 45.6406 150.0474 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape input) (at 45.72 143.51 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 30f26805-8dd1-41b5-a56a-e9949f976024) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 45.6406 138.7988 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 45.72 29.21 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4dd1fb29-2911-43bf-a450-acc039ed36f3) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 45.6406 24.4988 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B3" (shape input) (at 46.99 116.84 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 65f111af-d34b-4a19-9150-5e04d64ac490) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 46.9106 111.9474 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y3" (shape output) (at 175.26 110.49 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 92f746b6-5628-4db3-ac64-30e3eef0d091) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.1806 105.7788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B1" (shape input) (at 46.99 40.64 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c6f20822-caf9-46cd-b8ea-75bc8132ff3c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 46.9106 35.7474 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 45.72 67.31 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ea0c0196-fbe1-4df7-be58-6c7c9d85160b) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 45.6406 62.5988 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B2" (shape input) (at 45.72 78.74 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ffeeed1f-c205-44a7-8cd0-06a7f471376d) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 45.6406 73.8474 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0c179128-4ba7-4d2a-9a86-dff739282722) + (property "Reference" "U15" (id 0) (at 100.33 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45674681-50fc-4899-b22a-f8abfc710c98)) + (pin "2" (uuid 1dc26a7a-d6d8-4baa-b4b2-4f9b6ec83e1d)) + (pin "3" (uuid a561f73d-d6ed-4bf0-addd-cf69cc929052)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 128.27 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0f00ae4c-a2ba-46c5-b5d1-03afbec16010) + (property "Reference" "U20" (id 0) (at 128.27 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 128.27 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 128.27 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e3aa9c39-f46d-4887-83e7-4c01545d643d)) + (pin "2" (uuid 9328ef21-0b7b-4a8f-a790-720af982b869)) + (pin "3" (uuid e6a0ed20-1bd0-4cd5-bf61-7f631e37a315)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 187.96 72.39 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 264b781f-580f-4b3b-9138-7f19a41852a5) + (property "Reference" "U1" (id 0) (at 191.77 71.755 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 191.77 74.295 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 187.96 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c3f908d7-d945-49f6-9a96-fb71865a6a0d)) + (pin "2" (uuid 2d43b963-577e-4cce-a2b5-497cd4358365)) + (pin "3" (uuid 9b751478-108e-4e40-9113-ddffae840ed1)) + (pin "4" (uuid 50d01cdc-d680-4ff6-bb52-241487a2d0f3)) + (pin "5" (uuid 1bca0efe-3de5-4c1b-ad56-64114b48dab6)) + (pin "6" (uuid 7a9c554c-cf6f-4465-adad-fa81ed48deac)) + (pin "7" (uuid 017195d9-5cce-4b2e-bd0a-affe0728e2b9)) + (pin "8" (uuid 8ecf2b8c-607e-458d-a415-af1aaf538cea)) + (pin "9" (uuid b67ffaee-5d25-48b1-ae54-f9aed6d362ca)) + (pin "10" (uuid 11efe7c4-f34c-4895-b86f-ad6c4f7907f7)) + (pin "11" (uuid 1e0e468c-8569-4cba-9d94-9350a7b57a5a)) + (pin "12" (uuid c23ce8e1-addb-45b6-a211-170c4dcbaf01)) + (pin "13" (uuid ba3e8ef0-915c-4035-8d64-35adbfb04231)) + (pin "14" (uuid 3a8f51ab-e784-4472-add5-d20e9d90aef8)) + (pin "15" (uuid ca606e54-8523-4b64-9ecb-2e8204a505cf)) + (pin "16" (uuid 99050b05-9123-4b9e-b745-5df35d261c98)) + (pin "17" (uuid 11e3aa32-7239-4a83-89aa-69056240d720)) + (pin "18" (uuid 580db4ed-01ee-4597-8425-08e12cc04623)) + (pin "19" (uuid 1848b2d7-455e-418c-ae62-f7ced31bc1ed)) + (pin "20" (uuid 837168c6-93b5-4653-870a-b22818a9fe3a)) + (pin "21" (uuid cc71b2d2-28b8-4d30-a87a-77040ac698e2)) + (pin "22" (uuid 87f1998b-0b10-4e86-8d12-96fe493620af)) + (pin "23" (uuid 6a9a447f-dd40-4dea-b5c9-93a68d416c3c)) + (pin "24" (uuid f41bedd2-5282-4bb2-8b50-fe9059a44d16)) + (pin "25" (uuid 27d06365-63b8-4054-be8e-79317bc19ff4)) + (pin "26" (uuid 58d62933-a53c-4387-ad56-1412d38acd0b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 40.64 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2759db5e-64cd-44bd-93cc-5c791a20f9a6) + (property "Reference" "U1" (id 0) (at 36.195 35.56 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 38.1 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b79e0c7a-980f-4906-a216-8f41149bb03e)) + (pin "2" (uuid 9be4d55e-f45a-4fec-8af5-a5254733d666)) + (pin "3" (uuid 061ba39b-2b5f-47d2-a966-23455c08868f)) + (pin "4" (uuid 0650479a-d2fc-441b-b4e7-d9923a310fda)) + (pin "5" (uuid dfd84d65-79bd-4598-ae86-3541b971cc5f)) + (pin "6" (uuid ed33a0b3-ee68-4985-926c-233476f4ac86)) + (pin "7" (uuid 07fbb37c-b143-42c3-9249-81751b225ec8)) + (pin "8" (uuid d21bc6f2-b81d-41fb-a5ae-c54b95f2faec)) + (pin "9" (uuid fe16ad6b-81f6-4886-a47e-cf27b1544511)) + (pin "10" (uuid bb843f35-a5f3-4008-b476-9a377b4b44de)) + (pin "11" (uuid cc877ffa-5835-4042-b64b-731bf43fd2a1)) + (pin "12" (uuid e082bd12-ad0c-415f-a886-319a4506c557)) + (pin "13" (uuid f47d7dad-87b3-4eb7-96ac-a03896af4ef2)) + (pin "14" (uuid 683e78fa-a4b7-4cf1-9220-d4f1ac225d63)) + (pin "15" (uuid 6c5f0459-df7f-40db-90af-dccaa8bf4a87)) + (pin "16" (uuid cc158d26-c6fa-450c-8282-2cc649deaa5d)) + (pin "17" (uuid 3bc9bca8-6a27-4329-9b86-40fa29e923f1)) + (pin "18" (uuid f4160821-0207-4638-b8ab-4386b07bc52a)) + (pin "19" (uuid c2ad60ec-8d49-4896-90b3-38d8bba5a006)) + (pin "20" (uuid a6fbd598-48b7-4be7-b32f-ef90f7e7b2a6)) + (pin "21" (uuid 427c1f51-6c3d-4b1a-9acf-7ab986a0487c)) + (pin "22" (uuid 7bcc641b-663f-4247-bde5-96f6034270bc)) + (pin "23" (uuid 069d3bc3-4f1f-46d9-9fe1-aee865f96aae)) + (pin "24" (uuid cc75697b-a210-40de-9e72-b3a9c021f631)) + (pin "25" (uuid 6789afe5-af0b-40be-8225-94e7b47d69bf)) + (pin "26" (uuid 107fdd15-fd36-4598-b2ee-071eb9615b84)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 34.29 67.31 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3d4ec3d3-7064-44ec-8c7c-12f859de2855) + (property "Reference" "U1" (id 0) (at 34.925 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 34.925 64.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 34.29 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 34.29 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 25e6005c-84bf-40f3-aa0e-299bdcc4bad9)) + (pin "2" (uuid 70534795-4a7d-4bb8-9449-3c417fb17c1a)) + (pin "3" (uuid 704f1efd-6b55-43ea-872b-032b5f354612)) + (pin "4" (uuid 2ff3c796-2557-48d5-b72f-1322842f2e92)) + (pin "5" (uuid 9eb2d6c4-6739-4fa2-9fa9-f03068ff25b7)) + (pin "6" (uuid 974421ad-3f07-474a-bda9-a7c496061351)) + (pin "7" (uuid f3430b0a-fe2a-432f-b97f-57dec96ad8dd)) + (pin "8" (uuid 39d5102b-ccbc-469d-b7c8-4c2b48bee658)) + (pin "9" (uuid 882390b8-ef33-4c20-81b3-b053c2f561ef)) + (pin "10" (uuid f86048a2-1e30-49b4-a7cf-4148826ffb1e)) + (pin "11" (uuid 8ddca7a0-6e3d-46ca-aa31-4d3cfc878bd6)) + (pin "12" (uuid 09d43793-b29e-4536-b00c-5225d5e6f353)) + (pin "13" (uuid bbaeee68-04d8-4671-89bb-16aa884609ad)) + (pin "14" (uuid dbaa2ebe-b065-4bff-a561-3f44c5753e93)) + (pin "15" (uuid 386eb2bc-4278-4d5d-b4e2-15cd4f129775)) + (pin "16" (uuid 5acb19db-a928-4735-838d-46f921dc1a8d)) + (pin "17" (uuid 54fc082e-ef06-4ac4-892a-9d4889a202b6)) + (pin "18" (uuid 84401e86-b0a3-42b0-89d9-f0e3b95201cd)) + (pin "19" (uuid a601571d-a058-4e3e-9705-e051d61ae595)) + (pin "20" (uuid a4410530-d125-4881-a47c-a0e43de159c6)) + (pin "21" (uuid ad91d96c-38d6-4b3e-885c-8ac86b5d8f7a)) + (pin "22" (uuid a0a3ae8f-73f2-45b5-8afe-edfb92db9d0f)) + (pin "23" (uuid 14d765a2-176a-4e6e-802d-10d700d64b75)) + (pin "24" (uuid 929953db-c556-4d57-b5f7-ca63d7275362)) + (pin "25" (uuid 55ab3c09-857e-46c4-a84d-845a7d5cf685)) + (pin "26" (uuid a5f2b9cf-4ed9-4cea-924d-9ce748ef9c36)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3dbae7bf-163d-4e69-bbb3-a6d0c5addf61) + (property "Reference" "U13" (id 0) (at 100.33 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c143cd0f-ffda-4eda-9ea7-f672d2a0ef18)) + (pin "2" (uuid dfb180f2-e7aa-45cc-8f47-d47e2230ed44)) + (pin "3" (uuid ab0ca3f3-c1ef-4633-8d93-bfea61512bbc)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 154.94 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 41fac87f-8c3b-40e4-bb62-979cac63bc06) + (property "Reference" "U1" (id 0) (at 36.195 149.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 152.4 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d07bfa9-c067-489a-9016-bfb09fffc79a)) + (pin "2" (uuid 5bb1024e-14fc-4fe5-aba8-480745c8a0d6)) + (pin "3" (uuid 611cc90f-5e68-4b79-b392-1e3b942a0b08)) + (pin "4" (uuid 5d44d875-e850-4e68-b7e8-ae1730da6f2d)) + (pin "5" (uuid ea0eeabf-9b9d-44d4-ae5b-4bd2e8052d7d)) + (pin "6" (uuid e4c2c187-dbca-4037-892c-7cc3c27aa334)) + (pin "7" (uuid 4e9e97ec-9266-4ad7-b216-2c6eec8eebb9)) + (pin "8" (uuid f8cc9a07-c714-4438-bf86-9e62c0b24fa2)) + (pin "9" (uuid fa518fd3-45ad-4ef3-a8d6-fcfa74f158fb)) + (pin "10" (uuid fed8c417-56d0-4289-b33f-0ca9b600bd83)) + (pin "11" (uuid ba93ed5d-1389-434a-988c-43fc17830b57)) + (pin "12" (uuid 76da0822-ebcb-42ca-b1b1-b83702cf3a98)) + (pin "13" (uuid 01af8960-d01b-44fc-8efc-cf69b82061dc)) + (pin "14" (uuid 5412d701-0ac4-456f-b301-66addef1b55e)) + (pin "15" (uuid 85ec6fa3-6a70-480a-b40d-7b002fdec66c)) + (pin "16" (uuid 522c73c9-4c62-4cc7-a46e-c65d7c10280d)) + (pin "17" (uuid c0eda834-9d0a-4e72-819e-b55d0f602aa7)) + (pin "18" (uuid dfc83165-b380-441f-b0a1-b3db6458cc8b)) + (pin "19" (uuid 4864ce29-b6c6-4d70-ac65-e2bd4755de48)) + (pin "20" (uuid 6ff36930-e3b6-45eb-b661-a087d63414e3)) + (pin "21" (uuid 94ebe557-f11d-45e8-aef6-7083fbf8087b)) + (pin "22" (uuid a7c64c31-85fb-4665-863b-1623c05fe7a5)) + (pin "23" (uuid 35b799b2-eaae-4c5a-bb58-408d0b9ab519)) + (pin "24" (uuid c0aec737-f5ec-481a-ae0b-dcf9130b58b1)) + (pin "25" (uuid 86c7edad-8adb-4ba2-95f3-2e118d642f41)) + (pin "26" (uuid e73a0159-2d93-43e3-b1f0-f82f6e11ff01)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 78.74 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53ee3f20-8f1b-456c-9e3d-68d1927863e5) + (property "Reference" "U1" (id 0) (at 36.195 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 76.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1f3723be-eb49-4f9f-afe3-cd08c99357cb)) + (pin "2" (uuid 55ea6402-4736-4552-a3b1-884e5570c092)) + (pin "3" (uuid e139b47d-b470-425c-a87b-23dee6ad3399)) + (pin "4" (uuid 2af72930-1b69-47b0-bd26-b6f18fdc905f)) + (pin "5" (uuid 6d011a09-5e5b-4582-a8d8-7df24e32193e)) + (pin "6" (uuid 038a0f74-b9cd-41d4-b928-341bbba2ac7f)) + (pin "7" (uuid 5c8e19ce-82c5-4473-9a86-0618f1ecb39f)) + (pin "8" (uuid 4f8c1bdf-d596-4f33-9932-a8fe9bd35ab9)) + (pin "9" (uuid 26877aa5-9475-45ce-8317-8745761609b0)) + (pin "10" (uuid f8c36c80-7086-46c2-aa17-a7e52425c445)) + (pin "11" (uuid cdbf5c8e-6f23-4014-90aa-cc1ab13ff039)) + (pin "12" (uuid c377e539-37e9-483a-8576-a5ebde96411e)) + (pin "13" (uuid 0a91533f-048e-4310-9546-af709ce69e27)) + (pin "14" (uuid 20fee224-119f-43a6-9240-f7aa4c0c44db)) + (pin "15" (uuid 96003d91-fad0-400a-bf1c-38ffa05f7790)) + (pin "16" (uuid 2ac8abf2-4448-4cf4-90b0-a1a8e568652b)) + (pin "17" (uuid aef9abfe-5e5b-4e0c-a5a6-61fb0079a622)) + (pin "18" (uuid 06811117-f013-4628-af31-96a59eca37f5)) + (pin "19" (uuid c3377187-9d27-445f-879e-7540a4a05bef)) + (pin "20" (uuid 69e1dadd-656d-4b99-89d2-4aeec27f7032)) + (pin "21" (uuid 89bd81b5-3f8b-46c6-9f25-72fd75b344e6)) + (pin "22" (uuid 282215b2-0c64-4eac-8ec2-06ffb08249ab)) + (pin "23" (uuid 23a3ebc9-d048-40d4-a085-974dd431ff9b)) + (pin "24" (uuid 89b390cc-5b3b-4356-805e-41ae4d1c849e)) + (pin "25" (uuid 3a78b3f4-7048-4a5f-bfbb-a64c3b9ff8ea)) + (pin "26" (uuid b8b311f1-3216-4e54-bdf5-40e3bc7a3a5d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 187.96 34.29 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5688e94e-87d4-4438-bb86-6f6e8d2ab6fb) + (property "Reference" "U1" (id 0) (at 191.77 33.655 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 191.77 36.195 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 187.96 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 88e0ca64-0bb0-456e-9ac2-7911b0caa122)) + (pin "2" (uuid ecac52cc-2d8e-4ce2-8d6e-0da698537337)) + (pin "3" (uuid c55e8191-cd6b-4e98-bd76-7c749a34cd3e)) + (pin "4" (uuid 01eb9898-5274-461f-a4b9-e5606a1b5d60)) + (pin "5" (uuid 8cc659c4-dbaa-470f-a54f-4aab5823c952)) + (pin "6" (uuid 9c2c510f-2b88-46e3-b65b-360a93d01778)) + (pin "7" (uuid 89947694-accf-4ee6-bcd2-3095c0f43203)) + (pin "8" (uuid 49d90e5e-7edf-4a26-b19b-8cb6e4ab4e8f)) + (pin "9" (uuid 5f6d532f-d205-486c-904a-113481535cdb)) + (pin "10" (uuid 01f186cc-6a8e-4bf4-b71a-16cdf5ba1869)) + (pin "11" (uuid ad31c825-3eb0-4708-91c9-cbb204e05078)) + (pin "12" (uuid 6c968f16-0b87-44d8-8ca5-97074c310be1)) + (pin "13" (uuid e4543057-a45d-4e2c-978d-a0264bb819c5)) + (pin "14" (uuid 5357d09d-aff3-493f-b574-ed4efb7dc556)) + (pin "15" (uuid d1902b60-2959-4b5b-b342-7e4572802454)) + (pin "16" (uuid 974ce152-c8bd-499c-87bf-47490a70715a)) + (pin "17" (uuid 31565811-42db-4c1c-ac06-a898c78cfeb7)) + (pin "18" (uuid 6111d990-f29f-4a28-98a4-94c216fc660d)) + (pin "19" (uuid 3936ef04-a5c0-4597-aa57-9a968bae9388)) + (pin "20" (uuid f70d6cc2-8987-4557-b76e-e64fd00b03fd)) + (pin "21" (uuid d594d1df-2949-4337-a4bc-dbbf69fb80cb)) + (pin "22" (uuid 95fdad99-60a3-4c7f-a035-b086a5c0e3a7)) + (pin "23" (uuid f1c10334-3d65-48a0-ac7e-b325b690949b)) + (pin "24" (uuid d0ea84e2-2fcd-4dd7-b948-a56c84ee9034)) + (pin "25" (uuid 55c17088-fafc-4405-8462-c0bb4a385039)) + (pin "26" (uuid 27652223-c45a-4627-b343-d5d074f00a6a)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 128.27 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58562fd1-0be6-4f72-86f9-72f83010da30) + (property "Reference" "U18" (id 0) (at 128.27 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 128.27 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 128.27 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4760bed0-d8c7-4783-ab76-13e4fc314117)) + (pin "2" (uuid b84b1f20-7a4b-4e8a-8777-666c01630a43)) + (pin "3" (uuid 56e3ec3f-7b8d-45f0-baf4-99ec7edc0589)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 34.29 29.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d470ff5-2c31-4b8a-be58-7958d0794feb) + (property "Reference" "U1" (id 0) (at 34.925 24.13 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 34.925 26.67 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 34.29 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 34.29 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1c531316-50ab-4b03-b0ab-e0c67399464f)) + (pin "2" (uuid a7f80cdc-0b1b-405a-a7e8-9023c4853856)) + (pin "3" (uuid 87bbcb17-b919-48c2-8f9e-6413519d4297)) + (pin "4" (uuid 083ac643-96cc-4eca-aed5-46e0e01ef2c0)) + (pin "5" (uuid 771113c7-3ecb-48a3-94e4-bc1447b512db)) + (pin "6" (uuid 35be5bff-6830-40f0-8e72-600a8ef6099d)) + (pin "7" (uuid 1dac4d3f-4ce5-4d5c-9a54-a47b1c431fef)) + (pin "8" (uuid 99361fb5-3800-4cd8-9bd7-05271dc5fd41)) + (pin "9" (uuid 6eca733d-dc0e-4eb4-864b-6f42300e4541)) + (pin "10" (uuid 70c084e5-7969-4d31-8ab9-252ec44c9304)) + (pin "11" (uuid 59335a6d-e6c3-4b12-8e7e-bdfe511272b8)) + (pin "12" (uuid 7263fd67-bd0f-456a-a75d-c4cf757a61b7)) + (pin "13" (uuid bb71293c-5a24-47d2-b71b-9adbbca436f8)) + (pin "14" (uuid 19c52b3d-730c-4a5a-986b-41ecb2effdef)) + (pin "15" (uuid 85b01b10-5963-46aa-9935-cfc8faf48eb3)) + (pin "16" (uuid fef6b073-f461-47f3-b6ac-f6cf9dd1f2f5)) + (pin "17" (uuid 5b55750f-44aa-4129-ad10-3bcad2f225c4)) + (pin "18" (uuid 0508fa82-ad2c-4336-a11f-92a67f20a2a8)) + (pin "19" (uuid 8592b37e-5b3e-438d-8394-c39d4bcf8598)) + (pin "20" (uuid 9f4ff1b2-ceea-4618-9327-99ce86f46342)) + (pin "21" (uuid 4da68a98-7fca-4b50-91cc-bd7cf3b85647)) + (pin "22" (uuid aef314e3-91fe-4307-993b-9bf4b610dbf0)) + (pin "23" (uuid fb3cdad0-6f5f-43cd-952a-dcdca97b1a43)) + (pin "24" (uuid 5e3cace6-b70d-4692-a49b-ae3fda531677)) + (pin "25" (uuid e7842258-3c80-4d17-9f6c-3bfc1a4fa2fc)) + (pin "26" (uuid c70f8c69-42ff-4cf5-8068-cca2b74cca0f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 634bd163-ec25-4b5a-912c-d417e70ab2ec) + (property "Reference" "U14" (id 0) (at 100.33 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 387b392c-37b0-4ecd-8ed6-bff34de32b94)) + (pin "2" (uuid 91ea87af-e37f-4875-983f-e773e041f563)) + (pin "3" (uuid bad430b3-7da2-423e-b015-f82045aee26f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 69.85 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a3aee9a-52f1-47f5-b061-10da1a486602) + (property "Reference" "U9" (id 0) (at 69.85 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 69.85 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a3e4ed5f-099b-4e0a-abf1-d312158f4030)) + (pin "2" (uuid c26d91d6-7169-4c5b-91e6-fb1c6f2503ff)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 187.96 148.59 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6b4452ba-e99e-4770-a616-306405ec3a07) + (property "Reference" "U1" (id 0) (at 191.77 147.955 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 191.77 150.495 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 187.96 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1c26f233-8c5c-4746-a78f-6740fc521cd7)) + (pin "2" (uuid 96040aea-65a8-4f15-b5b4-712599eebe27)) + (pin "3" (uuid aa0bb56c-4c4c-40e0-814d-b35b6eaa7793)) + (pin "4" (uuid 2c68f72d-55e5-4a7a-a9e1-20c4907a874d)) + (pin "5" (uuid 7ee78da5-11c7-41ae-a2a0-5bbfc2f6a9a9)) + (pin "6" (uuid 01928e2e-1df6-4d83-a10d-3cad17d17b82)) + (pin "7" (uuid 5538fe24-6ac7-408d-a966-187dc940e385)) + (pin "8" (uuid fd1e5f92-533a-4da4-a5ff-58dadece3303)) + (pin "9" (uuid 8b2e97af-cc18-4a12-958f-ef556f6ecfd9)) + (pin "10" (uuid 78a5044a-6794-45c4-8333-1ddc5615e404)) + (pin "11" (uuid 519c784e-431a-4533-8c2b-a21071d017d7)) + (pin "12" (uuid 6c9a3f55-ff6e-4453-b5d3-62c9b60d8395)) + (pin "13" (uuid 6cd3bb64-8a31-42be-9ff8-6e7736a4c1ce)) + (pin "14" (uuid b6da0f38-43a1-40b6-9b0a-fad6736374b0)) + (pin "15" (uuid ad654efd-c847-435e-894a-6805a4546275)) + (pin "16" (uuid e0da9929-dd07-402a-a95a-e4a65f76387a)) + (pin "17" (uuid 8c77e162-8b60-499f-9b4c-a3f1ddf0b74b)) + (pin "18" (uuid 79c1af7e-780e-4341-aefc-07278425247c)) + (pin "19" (uuid 0c07ad53-7c12-4889-87a9-840d2a7e0f1d)) + (pin "20" (uuid 337f58f9-c4b1-4489-868b-0ae1bbf36e4e)) + (pin "21" (uuid c4b10546-4014-4b74-9b24-9d4629b456f5)) + (pin "22" (uuid 993dd76f-57a3-4833-9785-2d0769cc488b)) + (pin "23" (uuid 5cef1acd-c142-4edc-ac68-421e9679e98a)) + (pin "24" (uuid 4fa09556-2765-411e-b19e-7ef509d6bbdc)) + (pin "25" (uuid a209efe8-0b45-4dd4-9e7a-31d971d01c1c)) + (pin "26" (uuid aab4c36f-2aa2-496a-bcd9-5521c3228da3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 69.85 105.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d2a6183-3af6-4b0e-a4d9-aa83c98840b8) + (property "Reference" "U6" (id 0) (at 69.85 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 69.85 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 90465f6d-d79a-4dd8-89a9-e107946bb980)) + (pin "2" (uuid 1c76e80f-85a2-4d92-a476-18a9e683aca4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73eb6937-359a-4cdf-b08c-ec7e22146326) + (property "Reference" "U16" (id 0) (at 100.33 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ed64c48d-f120-485f-b629-86bc1f7bbeb4)) + (pin "2" (uuid f375023b-d676-4534-a5c6-679161064556)) + (pin "3" (uuid f278a472-8d16-4f26-9287-5370458971d5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 69.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 762cc516-0cb3-47fd-a82a-68b55ba605bf) + (property "Reference" "U12" (id 0) (at 100.33 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 11ed46ab-5606-45f7-816f-e41ba2ee8b65)) + (pin "2" (uuid 392326ab-bfbb-4f63-a7e8-39cd8891d121)) + (pin "3" (uuid b14e2b75-7473-47f9-8626-538b2b60ee51)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 69.85 40.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7d50fcf5-87c5-4c7d-ba75-6c345fc1c5b5) + (property "Reference" "U3" (id 0) (at 69.85 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 69.85 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 301c5bba-dce0-4b4a-a4f2-ae8e085ec08f)) + (pin "2" (uuid a4834a5e-d41b-4e5f-af53-3afedd70d21e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 69.85 29.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7fb7f8c7-8728-452f-805b-58ffe6e6b33a) + (property "Reference" "U2" (id 0) (at 69.85 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 69.85 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e9a94dbd-6e1f-4a7f-86d0-a507ee2da2d3)) + (pin "2" (uuid d2936c71-898b-48b1-a394-8418b818a6ca)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 128.27 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93323d3f-2c38-41ff-9943-482c3ee81206) + (property "Reference" "U19" (id 0) (at 128.27 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 128.27 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 128.27 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f234dc5f-c17e-4c27-bda8-c4a7301dcda7)) + (pin "2" (uuid 0d1b0343-72ea-4079-9daf-c166dd784dc0)) + (pin "3" (uuid feda4362-0689-480a-97f4-2d669620c9f9)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 69.85 67.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 94b94105-2bd5-470e-a5dc-34280345615d) + (property "Reference" "U4" (id 0) (at 69.85 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 69.85 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b90f3871-c1ad-4ece-b892-4697bdc0980a)) + (pin "2" (uuid 7fba0754-5f75-46d6-b84d-45801702420f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 31.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 97f67d59-1c2c-4534-b9d3-7158898bd7b0) + (property "Reference" "U10" (id 0) (at 100.33 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc273b8c-ec10-44a4-ade5-4baff293ab47)) + (pin "2" (uuid 7662595f-f8d6-4efc-aa83-e5548137c845)) + (pin "3" (uuid c8aac404-4710-4332-8f33-39ebe75d5c05)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 116.84 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5863e1c-cc91-4ed5-800d-2fdcaaf69916) + (property "Reference" "U1" (id 0) (at 36.195 111.76 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 212e62f6-3470-4d98-a9d2-41af0efa078e)) + (pin "2" (uuid 9d277d5e-0c9d-4b80-9b17-2c0c4072fdd0)) + (pin "3" (uuid c1c6449a-9c22-4957-98d3-65486772b641)) + (pin "4" (uuid f201bc7f-1940-43b4-a421-5c88d559a49c)) + (pin "5" (uuid 4649a8fb-e844-4c81-b2c1-3d9d26bcfb1e)) + (pin "6" (uuid 778f1853-7c91-4160-818f-3ec8fe694d06)) + (pin "7" (uuid acdbe8a2-b6ca-4803-9c97-52d7e2476f60)) + (pin "8" (uuid ab414225-2ba6-4f66-af35-a595b5bf4ffd)) + (pin "9" (uuid 66e8856e-878d-4dea-9b48-bccc54030dcc)) + (pin "10" (uuid da4fba10-e274-4298-be92-2388dfeb78b6)) + (pin "11" (uuid 77548c8b-46fb-4b84-b041-51296e0ca293)) + (pin "12" (uuid c87abc43-8def-4ee7-9ddb-6aa1be33d35f)) + (pin "13" (uuid 3578071f-5428-436b-b8cd-0262e2f2108c)) + (pin "14" (uuid 1f724119-313e-438b-9629-1e493768fbb0)) + (pin "15" (uuid 134bbd8e-9db3-4b18-acb4-536695203657)) + (pin "16" (uuid d7127bcc-c615-4271-b2df-2bdf2187ad5a)) + (pin "17" (uuid 13177b83-f049-4135-a076-22707cd42344)) + (pin "18" (uuid 5df40a18-8429-4e39-a970-da0ead403684)) + (pin "19" (uuid cf4ca8df-06a0-4096-bf82-7bdc5cf51293)) + (pin "20" (uuid 4e31f508-5696-4dc6-ada1-184389e7bdc1)) + (pin "21" (uuid 0b439ce3-8d9b-44d4-a8a8-c58cb8b59592)) + (pin "22" (uuid 73f27605-89de-4d15-a046-90125a26c968)) + (pin "23" (uuid e4a51ed7-0889-4d27-beda-a17426414e35)) + (pin "24" (uuid ec81dba6-c4eb-4510-9009-7b42ab53d8ad)) + (pin "25" (uuid e3900bd8-98cb-43c1-bf7f-340d03c3aac4)) + (pin "26" (uuid cff52959-66b6-4283-8086-4d3f5b7020c9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 40.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a92bb48b-f937-4841-8b4d-3145590a3369) + (property "Reference" "U11" (id 0) (at 100.33 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0209f9a7-d8b5-45d6-abbe-c74f0ea43544)) + (pin "2" (uuid 22eacdd2-7040-46a1-b299-52c03a7f26cb)) + (pin "3" (uuid 7e63c3d7-125e-4973-a482-7ac31d95bd32)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b75e3161-1fb2-43b9-9df5-cf885eb77c31) + (property "Reference" "U17" (id 0) (at 100.33 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c4e27f2-cb18-47ff-9b23-b2ef3fc4f17d)) + (pin "2" (uuid 9fc51570-1b1b-4855-bbf6-9a1713345342)) + (pin "3" (uuid 90047d44-3c4f-4b14-9305-cabc8804c587)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 128.27 149.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bfb46a96-e5a5-400e-86f8-46c8aad60bbe) + (property "Reference" "U21" (id 0) (at 128.27 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 128.27 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 128.27 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6aa3dade-770a-4e1e-96e6-a75091cb3c1a)) + (pin "2" (uuid 251686ff-d5a2-4cc4-9bd4-e5c8cd88de95)) + (pin "3" (uuid 510dc886-77e0-4fc2-872e-9bb4ad4294cc)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 34.29 105.41 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c4fd774b-17b9-4a69-a82a-4642c1768e7f) + (property "Reference" "U1" (id 0) (at 34.925 100.33 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 34.925 102.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 34.29 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 34.29 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f9ce81c9-63cf-4e47-8556-9af2f136fb35)) + (pin "2" (uuid 6eb25361-f92e-4878-9aff-cccff638e4bc)) + (pin "3" (uuid 72b15d15-5100-473f-9de3-1bf6e4c3e245)) + (pin "4" (uuid 6f0e1027-3568-437f-a8b1-a5e72c233338)) + (pin "5" (uuid 1f642dda-4b51-4ef4-bc07-7b2275dec246)) + (pin "6" (uuid f3fbdbbc-7ce2-403a-bfee-6777d388326c)) + (pin "7" (uuid 2e030093-3876-438f-9734-734fe80f3717)) + (pin "8" (uuid 07233b5f-8f41-4f7c-b7b5-78f3a45978b6)) + (pin "9" (uuid 4a825bdf-89b1-4427-bf3b-1062e9a51d71)) + (pin "10" (uuid eee5af4c-17f1-4261-8bbd-d1395dac5bc5)) + (pin "11" (uuid 4ae3366f-624b-4803-9112-1aa1e62cadd4)) + (pin "12" (uuid 72bd78b6-52d3-4179-967d-6bd5e9c67f44)) + (pin "13" (uuid 55fd6c5a-7aeb-49b2-8e03-9d15a9439be6)) + (pin "14" (uuid ca9525b9-2bc9-46ae-b104-7d28038d3acb)) + (pin "15" (uuid cb73dea3-fb8a-4efc-b960-ff56d1d5ee7f)) + (pin "16" (uuid f85b5523-a372-4b72-82f3-d248adbb4fd9)) + (pin "17" (uuid 9b7a3600-036e-4ea3-8e37-948873cdfd42)) + (pin "18" (uuid 7f9c8275-7605-4443-93b9-020c52013ba4)) + (pin "19" (uuid 6b3ee827-aae7-440c-a14a-9d259856b632)) + (pin "20" (uuid adb5439b-6931-40fe-8974-1f985b2e447f)) + (pin "21" (uuid 560b33a5-7f14-4476-b04c-e3bad862579b)) + (pin "22" (uuid 1b79d164-96f9-49ab-9c98-aef8153e6505)) + (pin "23" (uuid 6511ae20-95c9-4dd9-bd6b-9e7b600e444e)) + (pin "24" (uuid a00d8f14-d723-4ad3-82f1-cf2647181d0f)) + (pin "25" (uuid 5815fc16-63fd-4756-8d14-d95bc65eff3e)) + (pin "26" (uuid 93da7e01-100d-40c7-8104-66846c4d3f1b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 69.85 143.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ce64a413-e0ee-47ce-83f3-9e80ea13eab2) + (property "Reference" "U8" (id 0) (at 69.85 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 69.85 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f8d5269e-a5fc-4e97-88a3-2324c5211066)) + (pin "2" (uuid bbc28a7a-8fa6-434e-8b0e-1abfd67376e5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 69.85 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d985c6d2-8a50-4823-9d6a-6cc35254740d) + (property "Reference" "U5" (id 0) (at 69.85 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 69.85 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 26eb98b9-15c4-4746-be4b-467615aa22c6)) + (pin "2" (uuid 375f78bd-ae57-46e3-8399-c576fe8239d7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 69.85 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db015de4-b2d7-4aed-83e6-bdda3a7744dc) + (property "Reference" "U7" (id 0) (at 69.85 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 69.85 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 71.12 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a0e9a7b-27b8-438e-a174-df0dec187142)) + (pin "2" (uuid 2b97ad35-43b2-4035-9bb8-96634c2fedca)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 187.96 110.49 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eb8d2e09-a6ee-4a6f-b69d-b34978b21ebd) + (property "Reference" "U1" (id 0) (at 191.77 109.855 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 191.77 112.395 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 187.96 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87853b22-68ef-4b6b-b1d1-89f10ca48d97)) + (pin "2" (uuid 652e35d2-d8bb-474d-8b4f-2d6336cd1e5f)) + (pin "3" (uuid e2aca9e8-b343-41d9-8fc6-7b2cacfd0246)) + (pin "4" (uuid 1d4509f1-81a7-410e-b4ac-e03903b883ac)) + (pin "5" (uuid 0b7433d6-6ef9-4546-becc-b21e93c398d6)) + (pin "6" (uuid 0dd7740b-62f9-4bff-9d01-2ee22b131271)) + (pin "7" (uuid ead34875-21e3-4901-9023-e8feabfe5a06)) + (pin "8" (uuid 39ec8e9e-7b51-47ce-999b-fb5c09991589)) + (pin "9" (uuid ac76ec1e-f185-428c-97a3-a37b9f512fa3)) + (pin "10" (uuid d074786d-0690-422f-a5d8-20f2f5e25e03)) + (pin "11" (uuid 7b418227-0f33-4dff-85cb-cc2d50984de4)) + (pin "12" (uuid 76c8faab-c958-4d8e-9bcd-686d6c5e6182)) + (pin "13" (uuid e2ae3890-0921-42d7-aaa1-d955c136712b)) + (pin "14" (uuid 09e091ca-69da-4538-a0db-5a2496b63986)) + (pin "15" (uuid 7f17e8a6-3b28-46e3-b419-83c6f3c2ea8f)) + (pin "16" (uuid 7b1dd8ba-a2f1-4e9d-ad31-38c6e591c126)) + (pin "17" (uuid e6bfca4b-a3f2-4aed-b562-8327f6e95115)) + (pin "18" (uuid ad4b45e6-4da1-4978-9542-f37374fc1d24)) + (pin "19" (uuid 06e63ab5-5429-4a3f-afa1-aa993ee36102)) + (pin "20" (uuid 9aa21bff-f1a7-4cde-9922-d2e8066afaf0)) + (pin "21" (uuid 5dcc29a8-0561-4977-8919-c9fee93d250c)) + (pin "22" (uuid ff48ae2d-b78e-45be-9b9c-0870b68a0e77)) + (pin "23" (uuid 70c98c04-6c92-4f1d-b531-35bc6adf5e28)) + (pin "24" (uuid 2cda911d-eef6-46b8-8a60-f595493f52d8)) + (pin "25" (uuid bdfb2f4d-80b6-4b2e-8215-fe1c5f14ea8a)) + (pin "26" (uuid 066738ee-060e-4852-b820-3ba71ea3fee7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 34.29 143.51 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe159f27-1df0-4b80-86d8-d3a7a94b4a3d) + (property "Reference" "U1" (id 0) (at 34.925 138.43 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 34.925 140.97 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 34.29 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 34.29 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 70f786ee-3375-44db-8093-a94935efbf2e)) + (pin "2" (uuid 6199040b-e6de-46e9-b96c-1f31cb40fcc2)) + (pin "3" (uuid 4ea179f8-bd99-49e2-899a-737fa245dc5f)) + (pin "4" (uuid 85ae3edd-db54-4581-9c00-8d33473cfa01)) + (pin "5" (uuid bf8dc4a1-517f-4d2b-a0f8-cc9f75a7495d)) + (pin "6" (uuid fe3c13c9-2bcb-4836-b8a5-1b5c5310fe48)) + (pin "7" (uuid f333cd49-d23d-4f81-959e-48ca42288fb9)) + (pin "8" (uuid f2cb810a-b849-4ae6-b4bd-73f95871bd75)) + (pin "9" (uuid 62aeef99-ef9c-43c5-85cf-25c0504980fe)) + (pin "10" (uuid 14c3e9cf-bef8-47ac-a517-b87a0c559f18)) + (pin "11" (uuid 252ed123-e501-4cf0-b4ab-fa8daf2a4f34)) + (pin "12" (uuid 6669b793-c809-45e1-b590-710e62c48e75)) + (pin "13" (uuid 1cd8d522-564d-4763-9e07-cf2d2ed99cd9)) + (pin "14" (uuid 44ac9f9b-5bf3-44f1-8207-25bba135ff7e)) + (pin "15" (uuid 61dc2998-48ed-46f8-9949-2ce5454ce0e1)) + (pin "16" (uuid 6cec9612-6f61-4ebc-874e-d6c6520eaaeb)) + (pin "17" (uuid 947cfd0d-9ffe-4b36-a167-8df13c2e2102)) + (pin "18" (uuid 6a6ae8b0-4eb3-442b-80ec-b41c9fb5619a)) + (pin "19" (uuid 2ccfa844-ef08-4b3f-bcfa-3268edcd0fcf)) + (pin "20" (uuid 03364e25-89ca-48a4-a70b-2a994aaf3b14)) + (pin "21" (uuid 065c7b46-5ecf-43d9-8a6a-2986902541f9)) + (pin "22" (uuid cba4b1fe-9b29-40d1-a300-9d4fccef611c)) + (pin "23" (uuid b01e04e7-2ffb-4585-b363-1bf8d1cdf3e7)) + (pin "24" (uuid 8da159a2-9a6a-4171-8b12-be5be427a93a)) + (pin "25" (uuid b050c47b-2a91-40d4-b821-c3aaab6d777e)) + (pin "26" (uuid a3121623-4b7b-4d95-8068-fb0ac3d9fd32)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/5d470ff5-2c31-4b8a-be58-7958d0794feb" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/2759db5e-64cd-44bd-93cc-5c791a20f9a6" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/3d4ec3d3-7064-44ec-8c7c-12f859de2855" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/53ee3f20-8f1b-456c-9e3d-68d1927863e5" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/c4fd774b-17b9-4a69-a82a-4642c1768e7f" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/a5863e1c-cc91-4ed5-800d-2fdcaaf69916" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/fe159f27-1df0-4b80-86d8-d3a7a94b4a3d" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/41fac87f-8c3b-40e4-bb62-979cac63bc06" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/5688e94e-87d4-4438-bb86-6f6e8d2ab6fb" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/264b781f-580f-4b3b-9138-7f19a41852a5" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/eb8d2e09-a6ee-4a6f-b69d-b34978b21ebd" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/6b4452ba-e99e-4770-a616-306405ec3a07" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/7fb7f8c7-8728-452f-805b-58ffe6e6b33a" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7d50fcf5-87c5-4c7d-ba75-6c345fc1c5b5" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/94b94105-2bd5-470e-a5dc-34280345615d" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d985c6d2-8a50-4823-9d6a-6cc35254740d" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/6d2a6183-3af6-4b0e-a4d9-aa83c98840b8" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/db015de4-b2d7-4aed-83e6-bdda3a7744dc" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ce64a413-e0ee-47ce-83f3-9e80ea13eab2" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/6a3aee9a-52f1-47f5-b061-10da1a486602" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/97f67d59-1c2c-4534-b9d3-7158898bd7b0" + (reference "U10") (unit 1) (value "d_and") (footprint "") + ) + (path "/a92bb48b-f937-4841-8b4d-3145590a3369" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/762cc516-0cb3-47fd-a82a-68b55ba605bf" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/3dbae7bf-163d-4e69-bbb3-a6d0c5addf61" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + (path "/634bd163-ec25-4b5a-912c-d417e70ab2ec" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/0c179128-4ba7-4d2a-9a86-dff739282722" + (reference "U15") (unit 1) (value "d_and") (footprint "") + ) + (path "/73eb6937-359a-4cdf-b08c-ec7e22146326" + (reference "U16") (unit 1) (value "d_and") (footprint "") + ) + (path "/b75e3161-1fb2-43b9-9df5-cf885eb77c31" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/58562fd1-0be6-4f72-86f9-72f83010da30" + (reference "U18") (unit 1) (value "d_or") (footprint "") + ) + (path "/93323d3f-2c38-41ff-9943-482c3ee81206" + (reference "U19") (unit 1) (value "d_or") (footprint "") + ) + (path "/0f00ae4c-a2ba-46c5-b5d1-03afbec16010" + (reference "U20") (unit 1) (value "d_or") (footprint "") + ) + (path "/bfb46a96-e5a5-400e-86f8-46c8aad60bbe" + (reference "U21") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74386/SN74386_subckt.sub b/library/SubcircuitLibrary/SN74386/SN74386_subckt.sub new file mode 100644 index 000000000..3a3a64af3 --- /dev/null +++ b/library/SubcircuitLibrary/SN74386/SN74386_subckt.sub @@ -0,0 +1,86 @@ +* Subcircuit SN74386_subckt +.subckt SN74386_subckt a1 b1 a2 b2 a3 b3 a4 b4 y1 y2 y3 y4 +.title kicad schematic +* u15 a3 net-_u15-pad2_ net-_u15-pad3_ d_and +* u14 net-_u14-pad1_ b3 net-_u14-pad3_ d_and +* u20 net-_u14-pad3_ net-_u15-pad3_ y3 d_or +* u21 net-_u16-pad3_ net-_u17-pad3_ y4 d_or +* u17 a4 net-_u17-pad2_ net-_u17-pad3_ d_and +* u16 net-_u16-pad1_ b4 net-_u16-pad3_ d_and +* u18 net-_u10-pad3_ net-_u11-pad3_ y1 d_or +* u19 net-_u12-pad3_ net-_u13-pad3_ y2 d_or +* u11 a1 net-_u11-pad2_ net-_u11-pad3_ d_and +* u10 net-_u10-pad1_ b1 net-_u10-pad3_ d_and +* u3 b1 net-_u11-pad2_ d_inverter +* u2 a1 net-_u10-pad1_ d_inverter +* u6 a3 net-_u14-pad1_ d_inverter +* u7 b3 net-_u15-pad2_ d_inverter +* u8 a4 net-_u16-pad1_ d_inverter +* u9 b4 net-_u17-pad2_ d_inverter +* u5 b2 net-_u13-pad2_ d_inverter +* u4 a2 net-_u12-pad1_ d_inverter +* u13 a2 net-_u13-pad2_ net-_u13-pad3_ d_and +* u12 net-_u12-pad1_ b2 net-_u12-pad3_ d_and +a1 [a3 net-_u15-pad2_ ] net-_u15-pad3_ u15 +a2 [net-_u14-pad1_ b3 ] net-_u14-pad3_ u14 +a3 [net-_u14-pad3_ net-_u15-pad3_ ] y3 u20 +a4 [net-_u16-pad3_ net-_u17-pad3_ ] y4 u21 +a5 [a4 net-_u17-pad2_ ] net-_u17-pad3_ u17 +a6 [net-_u16-pad1_ b4 ] net-_u16-pad3_ u16 +a7 [net-_u10-pad3_ net-_u11-pad3_ ] y1 u18 +a8 [net-_u12-pad3_ net-_u13-pad3_ ] y2 u19 +a9 [a1 net-_u11-pad2_ ] net-_u11-pad3_ u11 +a10 [net-_u10-pad1_ b1 ] net-_u10-pad3_ u10 +a11 b1 net-_u11-pad2_ u3 +a12 a1 net-_u10-pad1_ u2 +a13 a3 net-_u14-pad1_ u6 +a14 b3 net-_u15-pad2_ u7 +a15 a4 net-_u16-pad1_ u8 +a16 b4 net-_u17-pad2_ u9 +a17 b2 net-_u13-pad2_ u5 +a18 a2 net-_u12-pad1_ u4 +a19 [a2 net-_u13-pad2_ ] net-_u13-pad3_ u13 +a20 [net-_u12-pad1_ b2 ] net-_u12-pad3_ u12 +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u20 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u21 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u16 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u18 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u19 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN74386_subckt \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74386/Test_SN74386.cir b/library/SubcircuitLibrary/SN74386/Test_SN74386.cir new file mode 100644 index 000000000..d02d0ce16 --- /dev/null +++ b/library/SubcircuitLibrary/SN74386/Test_SN74386.cir @@ -0,0 +1,27 @@ +.title KiCad schematic +v3 A3 GND pulse +v7 B3 GND pulse +v4 A4 GND pulse +v8 B4 GND pulse +U6 B2 Net-_U6-Pad2_ adc_bridge_1 +U7 B3 Net-_U7-Pad2_ adc_bridge_1 +U3 A3 Net-_U3-Pad2_ adc_bridge_1 +U4 A4 Net-_U4-Pad2_ adc_bridge_1 +U8 B4 Net-_U8-Pad2_ adc_bridge_1 +v6 B2 GND pulse +v2 A2 GND pulse +U2 A2 Net-_U2-Pad2_ adc_bridge_1 +U1 A1 Net-_U1-Pad2_ adc_bridge_1 +v1 A1 GND pulse +v5 B1 GND pulse +X1 Net-_U1-Pad2_ Net-_U5-Pad2_ Net-_U2-Pad2_ Net-_U6-Pad2_ Net-_U3-Pad2_ Net-_U7-Pad2_ Net-_U4-Pad2_ Net-_U8-Pad2_ Net-_U9-Pad1_ Net-_U10-Pad1_ Net-_U11-Pad1_ Net-_U12-Pad1_ SN74386 +U5 B1 Net-_U5-Pad2_ adc_bridge_1 +R1 Y1 VCC 1k +U10 Net-_U10-Pad1_ Y2 dac_bridge_1 +U9 Net-_U9-Pad1_ Y1 dac_bridge_1 +U12 Net-_U12-Pad1_ Y4 dac_bridge_1 +U11 Net-_U11-Pad1_ Y3 dac_bridge_1 +R3 Y3 VCC 1k +R2 Y2 VCC 1k +R4 Y4 VCC 1k +.end diff --git a/library/SubcircuitLibrary/SN74386/Test_SN74386.cir.out b/library/SubcircuitLibrary/SN74386/Test_SN74386.cir.out new file mode 100644 index 000000000..60f2ab62b --- /dev/null +++ b/library/SubcircuitLibrary/SN74386/Test_SN74386.cir.out @@ -0,0 +1,73 @@ +.title kicad schematic + +.include SN74386_subckt.sub +v3 a3 gnd pulse(0 5 0 1n 1n 10m 20m) +v7 b3 gnd pulse(0 5 0 1n 1n 20m 40m) +v4 a4 gnd pulse(0 5 0 1n 1n 10m 20m) +v8 b4 gnd pulse(0 5 0 1n 1n 40m 80m) +* u6 b2 net-_u6-pad2_ adc_bridge_1 +* u7 b3 net-_u7-pad2_ adc_bridge_1 +* u3 a3 net-_u3-pad2_ adc_bridge_1 +* u4 a4 net-_u4-pad2_ adc_bridge_1 +* u8 b4 net-_u8-pad2_ adc_bridge_1 +v6 b2 gnd pulse(0 5 0 1n 1n 40m 80m) +v2 a2 gnd pulse(0 5 0 1n 1n 10m 20m) +* u2 a2 net-_u2-pad2_ adc_bridge_1 +* u1 a1 net-_u1-pad2_ adc_bridge_1 +v1 a1 gnd pulse(0 5 0 1n 1n 10m 20m) +v5 b1 gnd pulse(0 5 0 1n 1n 40m 80m) +x1 net-_u1-pad2_ net-_u5-pad2_ net-_u2-pad2_ net-_u6-pad2_ net-_u3-pad2_ net-_u7-pad2_ net-_u4-pad2_ net-_u8-pad2_ net-_u9-pad1_ net-_u10-pad1_ net-_u11-pad1_ net-_u12-pad1_ SN74386_subckt +* u5 b1 net-_u5-pad2_ adc_bridge_1 +r1 y1 vcc 1k +* u10 net-_u10-pad1_ y2 dac_bridge_1 +* u9 net-_u9-pad1_ y1 dac_bridge_1 +* u12 net-_u12-pad1_ y4 dac_bridge_1 +* u11 net-_u11-pad1_ y3 dac_bridge_1 +r3 y3 vcc 1k +r2 y2 vcc 1k +r4 y4 vcc 1k +a1 [b2 ] [net-_u6-pad2_ ] u6 +a2 [b3 ] [net-_u7-pad2_ ] u7 +a3 [a3 ] [net-_u3-pad2_ ] u3 +a4 [a4 ] [net-_u4-pad2_ ] u4 +a5 [b4 ] [net-_u8-pad2_ ] u8 +a6 [a2 ] [net-_u2-pad2_ ] u2 +a7 [a1 ] [net-_u1-pad2_ ] u1 +a8 [b1 ] [net-_u5-pad2_ ] u5 +a9 [net-_u10-pad1_ ] [y2 ] u10 +a10 [net-_u9-pad1_ ] [y1 ] u9 +a11 [net-_u12-pad1_ ] [y4 ] u12 +a12 [net-_u11-pad1_ ] [y3 ] u11 +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u6 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u7 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u10 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u9 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u12 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u11 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0.1e-03 80e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74386/Test_SN74386.kicad_sch b/library/SubcircuitLibrary/SN74386/Test_SN74386.kicad_sch new file mode 100644 index 000000000..e6835df2a --- /dev/null +++ b/library/SubcircuitLibrary/SN74386/Test_SN74386.kicad_sch @@ -0,0 +1,1307 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 0dbb0cee-89d0-4d37-b000-b43ba7176936) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Devices:resistor" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 1.27 3.302 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "resistor" (id 1) (at 1.27 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 1.27 -0.508 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 1.27 1.27 90) + (effects (font (size 0.762 0.762))) + ) + (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "resistor_0_1" + (rectangle (start 3.81 0.254) (end -1.27 2.286) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "resistor_1_1" + (pin passive line (at -2.54 1.27 0) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "1" (effects (font (size 1.524 1.524)))) + ) + (pin passive line (at 5.08 1.27 180) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "2" (effects (font (size 1.524 1.524)))) + ) + ) + ) + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_VCC" (id 1) (at 0 3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_VCC_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 1.905) (radius 0.635) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_VCC_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN74386" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN74386" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN74386_0_1" + (rectangle (start -11.43 -2.54) (end 11.43 -24.13) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN74386_1_1" + (pin input line (at -13.97 -3.81 0) (length 2.54) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -11.43 180) (length 2.54) + (name "Y2" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -13.97 180) (length 2.54) + (name "Y3" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -16.51 180) (length 2.54) + (name "Y4" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -6.35 0) (length 2.54) + (name "B1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -8.89 0) (length 2.54) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -11.43 0) (length 2.54) + (name "B2" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -13.97 0) (length 2.54) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -16.51 0) (length 2.54) + (name "B3" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -19.05 0) (length 2.54) + (name "A4" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -21.59 0) (length 2.54) + (name "B4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -8.89 180) (length 2.54) + (name "Y1" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (wire (pts (xy 125.73 76.2) (xy 128.27 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ad67e36-2234-4926-83bb-0ba95c9c24e4) + ) + (wire (pts (xy 139.7 71.12) (xy 139.7 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 115876de-9368-46e2-a218-d2b4737fadac) + ) + (wire (pts (xy 139.7 149.86) (xy 139.7 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b7802b7-4083-4d49-88b5-6b093c38f4f0) + ) + (wire (pts (xy 77.47 109.22) (xy 81.28 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 250cecd6-be80-4956-a22c-71510f9011cf) + ) + (wire (pts (xy 97.79 68.58) (xy 77.47 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 293cc9a9-266d-4189-adb4-827e6f5c2507) + ) + (wire (pts (xy 97.79 76.2) (xy 83.82 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a68a554-9a5c-483e-adba-36b22a435c6e) + ) + (wire (pts (xy 81.28 73.66) (xy 81.28 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ec7456e-9447-4be5-8aa1-1a0160a3c6df) + ) + (wire (pts (xy 97.79 71.12) (xy 78.74 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 419013d7-fcaf-40b1-a7e2-3bce4f492dcf) + ) + (wire (pts (xy 97.79 66.04) (xy 95.25 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 422f63f6-d8c5-4732-ab06-6a5fd9ade076) + ) + (wire (pts (xy 97.79 158.75) (xy 97.79 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42bc59f1-e57b-4f99-985b-415867e38e5f) + ) + (wire (pts (xy 132.08 110.49) (xy 139.7 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47bfefd2-7a64-473e-86d5-5a10338a80ef) + ) + (wire (pts (xy 87.63 78.74) (xy 97.79 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50e4e86d-7134-4621-912e-5e26a3cf2a45) + ) + (wire (pts (xy 181.61 110.49) (xy 168.91 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cce3b9a-c95b-44e8-9344-0af12b175245) + ) + (wire (pts (xy 181.61 34.29) (xy 168.91 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6063e9d0-df47-4605-b04a-9f0deb53465e) + ) + (wire (pts (xy 181.61 148.59) (xy 168.91 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6458d485-7177-4be3-b945-06fafa45701a) + ) + (wire (pts (xy 125.73 71.12) (xy 139.7 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bad0308-da6c-4f9e-8f4e-b68855fb9c24) + ) + (wire (pts (xy 83.82 120.65) (xy 78.74 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70626e01-0668-46ac-b0a2-eae9a46cc511) + ) + (wire (pts (xy 128.27 76.2) (xy 128.27 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7252b89e-0739-4bbc-aae3-b9feac01c698) + ) + (wire (pts (xy 132.08 73.66) (xy 132.08 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76ad4747-6cfb-4144-9968-dcf7c5cfdfa2) + ) + (wire (pts (xy 139.7 68.58) (xy 139.7 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7825b5ab-6bb4-41e4-aa1e-08aa40cc91e1) + ) + (wire (pts (xy 78.74 158.75) (xy 97.79 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7aae1447-b8d4-4cc9-ac72-3fd4a802fde3) + ) + (wire (pts (xy 87.63 147.32) (xy 87.63 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 809dddc6-e283-4562-af99-d400fb9e8ca8) + ) + (wire (pts (xy 97.79 73.66) (xy 81.28 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92eb68df-a3ee-45bd-82f4-009f489b14fc) + ) + (wire (pts (xy 125.73 73.66) (xy 132.08 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a547ea7d-0e56-426c-af86-0d912a805c5d) + ) + (wire (pts (xy 95.25 66.04) (xy 95.25 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9e1f006-d3ec-4458-b435-9997d4fb2fd9) + ) + (wire (pts (xy 97.79 63.5) (xy 97.79 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb336afc-138f-4b0f-a11e-a2f83aa11910) + ) + (wire (pts (xy 77.47 147.32) (xy 87.63 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bea77a4e-b193-4783-9a04-70db070e83b6) + ) + (wire (pts (xy 78.74 71.12) (xy 78.74 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ceeb686c-55af-40a6-ae64-170472281fdc) + ) + (wire (pts (xy 83.82 76.2) (xy 83.82 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d38fcb4d-870d-49a2-9ba9-259ef217ab3d) + ) + (wire (pts (xy 181.61 72.39) (xy 168.91 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8a2883a-75ae-4c44-948d-2ac217b36105) + ) + (wire (pts (xy 78.74 44.45) (xy 95.25 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9e28750-6b6a-467c-8ef4-b6523be558c7) + ) + (wire (pts (xy 77.47 68.58) (xy 77.47 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6e1ff59-8f17-44fd-8c83-9201c6fd25cf) + ) + (wire (pts (xy 97.79 33.02) (xy 77.47 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f873065c-82f1-400f-81ff-c86403ad7443) + ) + (wire (pts (xy 128.27 149.86) (xy 139.7 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9312d9d-4fe4-428c-8d12-9dfea3675a1f) + ) + (wire (pts (xy 125.73 68.58) (xy 139.7 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid feee920c-8ced-4e0d-990a-7dfd2ba5ae88) + ) + + (global_label "B4" (shape input) (at 49.53 158.75 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 1c5bb9dd-50f5-4c4e-90f0-511db5b48a98) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.4506 153.8574 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 48.26 71.12 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2df0ace8-b7e5-4745-9968-723608f80208) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.1806 66.4088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B2" (shape input) (at 49.53 82.55 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 40197a36-a6d1-4bfa-856f-a3df09f11605) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.4506 77.6574 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape input) (at 48.26 147.32 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 67f4736b-1498-45cc-9342-ab8ab995d35c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.1806 142.6088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y3" (shape output) (at 175.26 110.49 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 80a80799-3090-489a-b1bb-0040c985a7fd) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.1806 105.7788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y4" (shape output) (at 175.26 148.59 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 8836f44f-09ab-43d2-bcf7-b6c8177beecc) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 175.1806 143.8788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y1" (shape output) (at 173.99 34.29 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 95e8a3ad-e8d3-47b7-ac41-974a4dee2b6e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 173.9106 29.5788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y2" (shape output) (at 172.72 72.39 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b02fe8e3-f2e1-4d72-89b6-93e367573a3f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 172.6406 67.6788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 48.26 33.02 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid efd6e40f-d432-46bb-82b1-80de4ec6f563) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.1806 28.3088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B1" (shape input) (at 49.53 44.45 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f42f5285-b611-4b77-ad10-8e8e8c8aca9e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.4506 39.5574 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B3" (shape input) (at 49.53 120.65 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f926cd3e-0f30-46d1-a795-c58c8448e67f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.4506 115.7574 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A3" (shape input) (at 48.26 109.22 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f94ac1cb-d474-4352-b7b2-a0544074855d) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.1806 104.5088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 184.15 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 063ae573-d983-43db-8ff6-979ffa98d2b6) + (property "Reference" "R3" (id 0) (at 185.42 104.14 0)) + (property "Value" "1k" (id 1) (at 185.42 106.68 0)) + (property "Footprint" "" (id 2) (at 185.42 112.268 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 185.42 110.49 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 9dbc48bd-d60e-4732-bf92-cec1b256045e)) + (pin "2" (uuid 749dec5b-0d30-438e-8a9b-674a9d36eea3)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 184.15 149.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0cd0948b-9726-4242-acc7-a2a59560c54d) + (property "Reference" "R4" (id 0) (at 185.42 142.24 0)) + (property "Value" "1k" (id 1) (at 185.42 144.78 0)) + (property "Footprint" "" (id 2) (at 185.42 150.368 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 185.42 148.59 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 0f08e934-41d4-4510-8482-f9e2d9366a20)) + (pin "2" (uuid 57d87887-3110-488a-97f9-9c6aebda1855)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 154.94 149.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1864bebf-4ee6-4fa1-a131-419de7118563) + (property "Reference" "U12" (id 0) (at 154.305 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 154.305 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 154.94 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 154.94 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 970dfb14-170e-4d6f-ab0b-1fca4afe8634)) + (pin "2" (uuid 87146534-9e0b-48fd-b558-0adfeff6fa59)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 36.83 33.02 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 21f511ca-7a99-4a1d-849d-2fa9e9b9e578) + (property "Reference" "v1" (id 0) (at 36.83 20.32 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 36.83 24.13 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 36.83 27.94 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 36.83 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8129b085-f4e6-42f5-90b7-fc06d30bef4b)) + (pin "2" (uuid c530b046-ee13-451b-a715-016d70bf0537)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 38.1 120.65 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 24b7a29f-4913-414b-bd00-77a909c4c43a) + (property "Reference" "v7" (id 0) (at 38.1 107.95 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 38.1 111.76 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 38.1 115.57 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2e12bc87-ee53-48b0-a4a2-f8a148de9863)) + (pin "2" (uuid f4d92b92-1662-45bd-862d-8efdca7c56e4)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 38.1 44.45 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2d3ea2ea-c226-4c95-bc29-9ffe748e0a7c) + (property "Reference" "v5" (id 0) (at 38.1 31.75 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 38.1 35.56 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 38.1 39.37 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c09829d6-0054-4d1e-850b-b93a19147ef8)) + (pin "2" (uuid e725ad82-6d45-4200-8224-4e95e6b6aed1)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 64.77 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3f863306-8114-41de-83e6-e34c79129d34) + (property "Reference" "U7" (id 0) (at 64.135 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 64.135 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 64.77 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 64.77 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 08f5b1fa-6a8d-41ff-8bef-984889785d85)) + (pin "2" (uuid 1d0a3f76-a3c0-4fae-8da2-22b2bc7ae7e7)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 38.1 82.55 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 44051540-712a-40d0-b09a-3b1eb81d933e) + (property "Reference" "v6" (id 0) (at 38.1 69.85 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 38.1 73.66 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 38.1 77.47 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ecda4012-4329-40d8-afc5-5635f4faa651)) + (pin "2" (uuid e8c92c38-40bc-4583-b349-08635dec2b7d)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 64.77 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 44819961-a41b-4e04-af94-5cf55f005876) + (property "Reference" "U6" (id 0) (at 64.135 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 64.135 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 64.77 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 64.77 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cbd5348f-f903-4ed3-8748-5caa3b64cad9)) + (pin "2" (uuid 62ad1306-5817-41cf-8559-4e46b86d4f8e)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 25.4 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4861036c-8a1e-4ce4-9117-cac90164366e) + (property "Reference" "#PWR01" (id 0) (at 25.4 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 25.4 38.1 0)) + (property "Footprint" "" (id 2) (at 25.4 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 25.4 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 52e02b98-038e-457a-a545-9487d60a1c05)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 64.77 160.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 57942346-5d19-4cf1-92f4-c25c3edfb5a3) + (property "Reference" "U8" (id 0) (at 64.135 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 64.135 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 64.77 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 64.77 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b7dba255-cb2f-430f-b943-50d60b59da26)) + (pin "2" (uuid 77e3dccf-12ed-43cf-9a00-9329f5182315)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 36.83 147.32 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5c460d5d-982b-42b1-b37b-0b42985aa0fe) + (property "Reference" "v4" (id 0) (at 36.83 134.62 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 36.83 138.43 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 36.83 142.24 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 36.83 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid da9f0157-19a1-40da-aa41-3c618fc028f3)) + (pin "2" (uuid baf7a012-0cae-4c38-8b5d-2ddd924b47fe)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 64.77 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 635c49c1-27ff-4805-ba5a-bff0f676204d) + (property "Reference" "U5" (id 0) (at 64.135 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 64.135 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 64.77 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 64.77 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 753abbad-65b5-4b03-af2e-56c872c82482)) + (pin "2" (uuid 36c384ac-df7c-4144-8c57-3aa94cfb50e9)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 184.15 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d5efce9-37f2-4056-9849-94c578e8dce4) + (property "Reference" "R1" (id 0) (at 185.42 27.94 0)) + (property "Value" "1k" (id 1) (at 185.42 30.48 0)) + (property "Footprint" "" (id 2) (at 185.42 36.068 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 185.42 34.29 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 6fb63567-38b1-49fa-87c4-9b90e0f431f2)) + (pin "2" (uuid dbf893f9-8799-4a53-a71a-e06e3885a63a)) + ) + + (symbol (lib_id "eSim_Power:eSim_VCC") (at 189.23 148.59 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6de4c20c-97c8-431a-9a17-d0b7572944c5) + (property "Reference" "#PWR012" (id 0) (at 185.42 148.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_VCC" (id 1) (at 193.04 148.5899 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 189.23 148.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 189.23 148.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 06135b65-a1b2-44cf-aa91-6dd39540b321)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 26.67 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6f1eefec-b112-4622-a3ad-d79f0e385086) + (property "Reference" "#PWR08" (id 0) (at 26.67 165.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 26.67 163.83 0)) + (property "Footprint" "" (id 2) (at 26.67 158.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 26.67 158.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 09f5e616-984e-4c28-b498-7b75225085df)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 154.94 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 81f37fc9-d043-43ad-8e3a-ac13fd61b573) + (property "Reference" "U10" (id 0) (at 154.305 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 154.305 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 154.94 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 154.94 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 08a2d038-8014-4015-a8b4-e22da8387403)) + (pin "2" (uuid 981d54d8-6afa-4813-a959-4901204a3d4a)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 36.83 71.12 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 84034fac-4e3d-403e-909e-ca8014522499) + (property "Reference" "v2" (id 0) (at 36.83 58.42 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 36.83 62.23 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 36.83 66.04 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 36.83 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc0af28b-32b8-4f96-9622-4dc25cdc678e)) + (pin "2" (uuid 366ae27f-7b57-4a42-a798-69060cc3621f)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 25.4 109.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8cba058d-180a-4729-bc7b-9e8f51f45802) + (property "Reference" "#PWR03" (id 0) (at 25.4 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 25.4 114.3 0)) + (property "Footprint" "" (id 2) (at 25.4 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 25.4 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4fa8d49c-de55-438c-8979-b59922c96afe)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 38.1 158.75 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 90c5a578-92e0-4860-856b-3b6d6e0a3fbd) + (property "Reference" "v8" (id 0) (at 38.1 146.05 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 38.1 149.86 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 38.1 153.67 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 99220f3b-9eda-4a3d-8183-41e664fc033d)) + (pin "2" (uuid 5eb917e5-8d72-45a4-8944-225cf69fa539)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 25.4 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 987ddf14-0762-4455-9738-1de2840c669d) + (property "Reference" "#PWR04" (id 0) (at 25.4 153.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 25.4 152.4 0)) + (property "Footprint" "" (id 2) (at 25.4 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 25.4 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2cef3bf6-08df-4028-a56e-85bc3f3e8080)) + ) + + (symbol (lib_id "eSim_Power:eSim_VCC") (at 189.23 34.29 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9bfc6225-bec6-4045-9e15-978c3878ee5f) + (property "Reference" "#PWR09" (id 0) (at 185.42 34.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_VCC" (id 1) (at 193.04 34.2899 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 189.23 34.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 189.23 34.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ce6203ec-022f-4c65-9288-59b3b24a1310)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 63.5 34.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a3f88ca6-cc66-4635-8035-aa060fcb39b2) + (property "Reference" "U1" (id 0) (at 62.865 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 62.865 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 63.5 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34869516-9e31-4d32-a15f-e0378e140340)) + (pin "2" (uuid aa2e4f71-c0c5-47ed-8309-5f52a2f87be0)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 154.94 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aee1bb09-61e6-4c96-8ee2-1aedd474e9bc) + (property "Reference" "U9" (id 0) (at 154.305 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 154.305 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 154.94 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 154.94 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f763fd9b-8a32-4761-989e-67220e5b3598)) + (pin "2" (uuid 5ddf8360-518b-410b-903b-d81300ff45c8)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 154.94 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b3d3539d-e82a-4bdc-b1ac-794c91aacbbd) + (property "Reference" "U11" (id 0) (at 154.305 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 154.305 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 154.94 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 154.94 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5ec276f6-b682-4be3-8f50-4e87339c8697)) + (pin "2" (uuid 0819a53d-3330-45d5-8291-005b9510e7ae)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 63.5 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b413143d-53d5-492e-8f57-24fd1228042d) + (property "Reference" "U2" (id 0) (at 62.865 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 62.865 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 63.5 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e28722f-c6eb-4dde-adf4-8f1a6c685661)) + (pin "2" (uuid da40f9db-ec35-41a9-b3be-88565e837f97)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 63.5 148.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c0038e57-ae15-41e2-b5ca-27a66c07473f) + (property "Reference" "U4" (id 0) (at 62.865 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 62.865 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 63.5 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a6e210d-ff88-4ea0-8604-db693b6fca68)) + (pin "2" (uuid 3004713c-398f-4e06-8525-87d76c3ae78e)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 25.4 71.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf2f0fd4-5eee-480f-b7b9-48f3fe2376ba) + (property "Reference" "#PWR02" (id 0) (at 25.4 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 25.4 76.2 0)) + (property "Footprint" "" (id 2) (at 25.4 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 25.4 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9cb974fb-84f1-4e28-9011-cc26af68ee03)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 26.67 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d353200a-a169-45ee-be1a-53542a87f485) + (property "Reference" "#PWR05" (id 0) (at 26.67 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 26.67 49.53 0)) + (property "Footprint" "" (id 2) (at 26.67 44.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 26.67 44.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 89e7399d-ca97-4b44-b97a-465a439099fe)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 184.15 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d88f21a8-78ac-4c17-adc3-029af15d83ad) + (property "Reference" "R2" (id 0) (at 185.42 66.04 0)) + (property "Value" "1k" (id 1) (at 185.42 68.58 0)) + (property "Footprint" "" (id 2) (at 185.42 74.168 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 185.42 72.39 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 66343aee-6d63-48bf-a275-da12a6c2a0c4)) + (pin "2" (uuid d93ef9ae-f630-43ab-a6a6-6c8eaf6937d3)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 63.5 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid df324e0e-b964-4b02-a768-85e04f35f2bc) + (property "Reference" "U3" (id 0) (at 62.865 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 62.865 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 63.5 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 720a2ae2-3e3e-4120-ae15-428d9c8629d3)) + (pin "2" (uuid 6a7d5161-a7b5-491f-9cc3-b718bcd79c2b)) + ) + + (symbol (lib_id "eSim_Power:eSim_VCC") (at 189.23 110.49 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e1028d4f-1d16-49a9-8ee8-2253aa38085e) + (property "Reference" "#PWR011" (id 0) (at 185.42 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_VCC" (id 1) (at 193.04 110.4899 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 189.23 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 189.23 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8d86c909-bcca-4909-8d39-5a4bd112411c)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 26.67 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9237466-1445-47d3-85e3-55a00d1ca292) + (property "Reference" "#PWR06" (id 0) (at 26.67 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 26.67 87.63 0)) + (property "Footprint" "" (id 2) (at 26.67 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 26.67 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 620faecf-69bf-4081-ad33-a26fba92137f)) + ) + + (symbol (lib_id "eSim_Power:eSim_VCC") (at 189.23 72.39 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ec08bc2a-caac-4914-806b-a71e7b8d052b) + (property "Reference" "#PWR010" (id 0) (at 185.42 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_VCC" (id 1) (at 193.04 72.3899 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 189.23 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 189.23 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid de301545-b656-43a3-b18c-1e4527a4a253)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 36.83 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f286a329-105b-4ef8-b3d4-3c801f68a378) + (property "Reference" "v3" (id 0) (at 36.83 96.52 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 36.83 100.33 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 36.83 104.14 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 36.83 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b62af77d-b46d-48e5-8a5e-f9c7995c0038)) + (pin "2" (uuid 7d7c2fb6-1b67-4aaa-882c-29c360c89172)) + ) + + (symbol (lib_id "eSim_Subckt:SN74386") (at 111.76 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f81956a0-3d10-4190-ab20-b09b371c56a5) + (property "Reference" "X1" (id 0) (at 111.76 57.15 0)) + (property "Value" "SN74386" (id 1) (at 111.76 59.69 0)) + (property "Footprint" "" (id 2) (at 111.76 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 111.76 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 94331731-06a7-46ac-aa0a-0336cbf4e78c)) + (pin "10" (uuid 8c2ceba2-2a5f-4746-9db5-d64494969710)) + (pin "11" (uuid ce66f78e-0a30-41f3-9cc9-6c3622349e37)) + (pin "12" (uuid d9275808-a3d1-4494-a047-e5995cf3151e)) + (pin "2" (uuid 26351a12-6939-4ae2-a185-27630e884ad2)) + (pin "3" (uuid 15b95d86-edf6-4a3d-acbe-180800bc5f61)) + (pin "4" (uuid ec954ff4-9b88-47c5-b281-2dcae057cd45)) + (pin "5" (uuid 3544a09a-875f-4c59-8544-818684f7af11)) + (pin "6" (uuid 9f6b7bb6-97e2-4ffd-8fac-7cdd19aa1753)) + (pin "7" (uuid 81b4deff-c06d-453e-b45b-7da6781a2ef6)) + (pin "8" (uuid 20f4d929-55ee-40e3-b138-3bc4bd97760a)) + (pin "9" (uuid d8ae7f60-41d6-4d0e-9107-4d224aa91b2b)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 26.67 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fdde319f-ba19-4928-b7e0-95da39908b09) + (property "Reference" "#PWR07" (id 0) (at 26.67 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 26.67 125.73 0)) + (property "Footprint" "" (id 2) (at 26.67 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 26.67 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f359c583-7bae-49c9-b968-357ddb8fc37c)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/4861036c-8a1e-4ce4-9117-cac90164366e" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/cf2f0fd4-5eee-480f-b7b9-48f3fe2376ba" + (reference "#PWR02") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/8cba058d-180a-4729-bc7b-9e8f51f45802" + (reference "#PWR03") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/987ddf14-0762-4455-9738-1de2840c669d" + (reference "#PWR04") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/d353200a-a169-45ee-be1a-53542a87f485" + (reference "#PWR05") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/e9237466-1445-47d3-85e3-55a00d1ca292" + (reference "#PWR06") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/fdde319f-ba19-4928-b7e0-95da39908b09" + (reference "#PWR07") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/6f1eefec-b112-4622-a3ad-d79f0e385086" + (reference "#PWR08") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/9bfc6225-bec6-4045-9e15-978c3878ee5f" + (reference "#PWR09") (unit 1) (value "eSim_VCC") (footprint "") + ) + (path "/ec08bc2a-caac-4914-806b-a71e7b8d052b" + (reference "#PWR010") (unit 1) (value "eSim_VCC") (footprint "") + ) + (path "/e1028d4f-1d16-49a9-8ee8-2253aa38085e" + (reference "#PWR011") (unit 1) (value "eSim_VCC") (footprint "") + ) + (path "/6de4c20c-97c8-431a-9a17-d0b7572944c5" + (reference "#PWR012") (unit 1) (value "eSim_VCC") (footprint "") + ) + (path "/6d5efce9-37f2-4056-9849-94c578e8dce4" + (reference "R1") (unit 1) (value "1k") (footprint "") + ) + (path "/d88f21a8-78ac-4c17-adc3-029af15d83ad" + (reference "R2") (unit 1) (value "1k") (footprint "") + ) + (path "/063ae573-d983-43db-8ff6-979ffa98d2b6" + (reference "R3") (unit 1) (value "1k") (footprint "") + ) + (path "/0cd0948b-9726-4242-acc7-a2a59560c54d" + (reference "R4") (unit 1) (value "1k") (footprint "") + ) + (path "/a3f88ca6-cc66-4635-8035-aa060fcb39b2" + (reference "U1") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/b413143d-53d5-492e-8f57-24fd1228042d" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/df324e0e-b964-4b02-a768-85e04f35f2bc" + (reference "U3") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/c0038e57-ae15-41e2-b5ca-27a66c07473f" + (reference "U4") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/635c49c1-27ff-4805-ba5a-bff0f676204d" + (reference "U5") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/44819961-a41b-4e04-af94-5cf55f005876" + (reference "U6") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/3f863306-8114-41de-83e6-e34c79129d34" + (reference "U7") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/57942346-5d19-4cf1-92f4-c25c3edfb5a3" + (reference "U8") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/aee1bb09-61e6-4c96-8ee2-1aedd474e9bc" + (reference "U9") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/81f37fc9-d043-43ad-8e3a-ac13fd61b573" + (reference "U10") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/b3d3539d-e82a-4bdc-b1ac-794c91aacbbd" + (reference "U11") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/1864bebf-4ee6-4fa1-a131-419de7118563" + (reference "U12") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/f81956a0-3d10-4190-ab20-b09b371c56a5" + (reference "X1") (unit 1) (value "SN74386") (footprint "") + ) + (path "/21f511ca-7a99-4a1d-849d-2fa9e9b9e578" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/84034fac-4e3d-403e-909e-ca8014522499" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/f286a329-105b-4ef8-b3d4-3c801f68a378" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/5c460d5d-982b-42b1-b37b-0b42985aa0fe" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/2d3ea2ea-c226-4c95-bc29-9ffe748e0a7c" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/44051540-712a-40d0-b09a-3b1eb81d933e" + (reference "v6") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/24b7a29f-4913-414b-bd00-77a909c4c43a" + (reference "v7") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/90c5a578-92e0-4860-856b-3b6d6e0a3fbd" + (reference "v8") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74386/Test_SN74386.proj b/library/SubcircuitLibrary/SN74386/Test_SN74386.proj new file mode 100644 index 000000000..5ca885da6 --- /dev/null +++ b/library/SubcircuitLibrary/SN74386/Test_SN74386.proj @@ -0,0 +1 @@ +schematicFile Test_SN74386.kicad_sch diff --git a/library/SubcircuitLibrary/SN74386/Test_SN74386_Previous_Values.xml b/library/SubcircuitLibrary/SN74386/Test_SN74386_Previous_Values.xml new file mode 100644 index 000000000..15015b33e --- /dev/null +++ b/library/SubcircuitLibrary/SN74386/Test_SN74386_Previous_Values.xml @@ -0,0 +1 @@ +pulse0501n1n10m20mpulse0501n1n40m80mpulse0501n1n40m80mpulse0501n1n10m20mpulse0501n1n40m80mpulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n20m40md_inverterd_inverterd_inverterd_ord_andd_andd_ord_andd_andd_anddac_bridged_ordac_bridged_inverterd_inverterd_andd_inverterd_inverterd_inverterd_andd_andd_ordac_bridgedac_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgedac_bridgedac_bridgedac_bridgedac_bridgeE:\apps\ESIM\FOSSEE\eSim\library\SubcircuitLibrary\SN74386_subckttruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0.180secmsms \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74386/analysis b/library/SubcircuitLibrary/SN74386/analysis new file mode 100644 index 000000000..00deb6718 --- /dev/null +++ b/library/SubcircuitLibrary/SN74386/analysis @@ -0,0 +1 @@ +.tran 0.1e-03 80e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7458/SN7458_subckt.cir b/library/SubcircuitLibrary/SN7458/SN7458_subckt.cir new file mode 100644 index 000000000..1c88318b0 --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/SN7458_subckt.cir @@ -0,0 +1,7 @@ +.title KiCad schematic +U4 Net-_U3-Pad3_ E Net-_U4-Pad3_ d_and +U3 C D Net-_U3-Pad3_ d_and +U1 A B C D E Y PORT +U5 Net-_U2-Pad3_ Net-_U4-Pad3_ Y d_or +U2 A B Net-_U2-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/SN7458/SN7458_subckt.cir.out b/library/SubcircuitLibrary/SN7458/SN7458_subckt.cir.out new file mode 100644 index 000000000..b7f4151e4 --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/SN7458_subckt.cir.out @@ -0,0 +1,28 @@ +.title kicad schematic + +* u4 net-_u3-pad3_ e net-_u4-pad3_ d_and +* u3 c d net-_u3-pad3_ d_and +* u1 a b c d e y port +* u5 net-_u2-pad3_ net-_u4-pad3_ y d_or +* u2 a b net-_u2-pad3_ d_and +a1 [net-_u3-pad3_ e ] net-_u4-pad3_ u4 +a2 [c d ] net-_u3-pad3_ u3 +a3 [net-_u2-pad3_ net-_u4-pad3_ ] y u5 +a4 [a b ] net-_u2-pad3_ u2 +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN7458/SN7458_subckt.kicad_sch b/library/SubcircuitLibrary/SN7458/SN7458_subckt.kicad_sch new file mode 100644 index 000000000..94aabdeac --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/SN7458_subckt.kicad_sch @@ -0,0 +1,795 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 0088f650-8ee3-4c31-9ee7-890da97cae92) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (wire (pts (xy 105.41 85.09) (xy 120.65 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b39e9ac-410b-4d20-bfbe-d152cff94c06) + ) + (wire (pts (xy 143.51 104.14) (xy 160.02 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b46f0b4-11dd-4dba-9343-8efc122e68ab) + ) + (wire (pts (xy 143.51 55.88) (xy 184.15 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ba82220-ecdd-4c82-acfe-cd70eff6c652) + ) + (wire (pts (xy 184.15 82.55) (xy 194.31 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cf27832-19c0-40db-b081-75b72603e0cc) + ) + (wire (pts (xy 143.51 101.6) (xy 160.02 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21592f90-e5ec-48dd-baa5-aea26ea62618) + ) + (wire (pts (xy 143.51 91.44) (xy 143.51 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2673c1e8-f03a-43b8-9b10-c715ff1c00f2) + ) + (wire (pts (xy 120.65 85.09) (xy 120.65 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e9c0b1d-c76a-4161-808a-db1e00604f14) + ) + (wire (pts (xy 105.41 123.19) (xy 143.51 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49c7ca94-ea64-47fe-8235-029f7b94df89) + ) + (wire (pts (xy 184.15 55.88) (xy 184.15 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ae02e80-c968-4e89-84d2-af5f23764e46) + ) + (wire (pts (xy 120.65 48.26) (xy 120.65 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b6482e8-b8c1-4103-a1bd-05d594d27ca3) + ) + (wire (pts (xy 105.41 67.31) (xy 120.65 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80f7e0ed-97d9-4562-bdaf-4584566c8a75) + ) + (wire (pts (xy 182.88 102.87) (xy 182.88 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90a7bbe0-2370-4ae4-823f-22055986238c) + ) + (wire (pts (xy 120.65 104.14) (xy 120.65 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1e72407-5b51-4847-bb22-563666d582ae) + ) + (wire (pts (xy 105.41 48.26) (xy 120.65 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c89bbe12-9b02-458c-b755-ef8fa6c04a5b) + ) + (wire (pts (xy 120.65 57.15) (xy 120.65 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec448e4e-97cb-48b4-9522-ad6f79b38c3e) + ) + (wire (pts (xy 228.6 83.82) (xy 217.17 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee270e07-c531-44e3-a6b2-7bab051d0cd1) + ) + (wire (pts (xy 143.51 123.19) (xy 143.51 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4238a88-dc9f-4b56-8cfa-00004e3f382d) + ) + (wire (pts (xy 182.88 85.09) (xy 194.31 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7d156fb-cb1b-4826-98e1-5f04fb2e6a00) + ) + (wire (pts (xy 105.41 104.14) (xy 120.65 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe7f3399-afee-4355-95a6-e2dabf0c91cb) + ) + + (global_label "B" (shape input) (at 110.49 67.31 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2a4474aa-ca5e-4d99-924a-025fcff1310c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.4106 63.6269 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "E" (shape input) (at 110.49 123.19 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2e3184a6-431f-4406-9479-5ccd164b0f75) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.4106 119.6279 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "C" (shape input) (at 110.49 85.09 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 3c7ae740-dcab-42c8-9052-c2ff6ea2f825) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.4106 81.4069 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y" (shape output) (at 223.52 83.82 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 8c954b0c-be7e-4206-8805-43bcabccd310) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.4406 80.3183 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A" (shape input) (at 109.22 48.26 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c2bba12e-76d8-4e63-9353-b5f17604a797) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.1406 44.7583 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "D" (shape input) (at 110.49 104.14 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f58620e9-6d3e-45a3-bf01-42ab39c3eb51) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.4106 100.4569 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 99.06 48.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2d2ff28c-d044-4ccd-ada3-577400e858df) + (property "Reference" "U1" (id 0) (at 99.695 43.18 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 99.695 45.72 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 99.06 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 99.06 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 046f5eff-e8e6-4ff8-b020-bd41efd868ca)) + (pin "2" (uuid bac28911-0f1c-497e-964d-d402ee0d7caf)) + (pin "3" (uuid 9a10db2d-cf16-4762-92c0-1c644f0d1622)) + (pin "4" (uuid 5abeeb1f-f694-486e-b2f1-688a7f03b6c9)) + (pin "5" (uuid 7b8c5f91-60e2-4811-88bd-a4cc5105f042)) + (pin "6" (uuid 404a8474-20cd-466f-bab5-d7e3fcb25b11)) + (pin "7" (uuid cf0ff31f-4b2b-44ce-86a9-b7b9ccc0aa91)) + (pin "8" (uuid 653bad44-9720-42c1-b8d0-42b1acf054d1)) + (pin "9" (uuid df91d115-3a65-4133-b168-144de983d98a)) + (pin "10" (uuid 3090e6b3-fca6-45a2-b690-e6c6164ae8e0)) + (pin "11" (uuid 060ada8b-3109-488b-8fe7-ac29c6233870)) + (pin "12" (uuid 9c1d500f-3dc2-458a-83bb-6499480e2ee6)) + (pin "13" (uuid c301e184-b1e5-41e2-b7bc-c733071ba24d)) + (pin "14" (uuid 33d0d1ad-d69a-42fb-bffa-49d4158a8bdd)) + (pin "15" (uuid cb678e46-3852-4aa4-90f7-90cd1a23a777)) + (pin "16" (uuid 94b35956-db7e-46c7-9170-d012d9abbc74)) + (pin "17" (uuid 56d0eb66-3879-47ab-ba33-1f260130bd0c)) + (pin "18" (uuid e587a970-bf00-4e01-b6a0-ce8246c9b43c)) + (pin "19" (uuid 7f651a6d-99cc-4b2d-ae13-516b9009c90f)) + (pin "20" (uuid 52a11954-9e60-422a-8886-727dd94d86ae)) + (pin "21" (uuid 98a7d5cf-17fd-4f6f-8423-1d6a178938d1)) + (pin "22" (uuid e5dbcb9e-7e93-4f9a-95d5-fd88d512f44a)) + (pin "23" (uuid 73b4e234-8bc2-4eef-aa67-a9cac8682d7f)) + (pin "24" (uuid 241a6e4d-6910-4eff-b4d3-a2ff1665a01b)) + (pin "25" (uuid abb9ec95-cd00-4de0-8a95-4c09486aed0f)) + (pin "26" (uuid a4dd6237-7b01-41be-9b22-331a15fb09d9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 132.08 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c696a1d-4f17-4bc0-93ee-ac7f3cda490e) + (property "Reference" "U2" (id 0) (at 132.08 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 132.08 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 132.08 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 132.08 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4cd5c48f-43b4-4e3b-ae4e-491be9396b1f)) + (pin "2" (uuid 715d9171-40e3-4dd2-9873-80d6d2c9e9ed)) + (pin "3" (uuid b5273733-4c5f-47b0-be36-c4eda7f508da)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 171.45 104.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 59ffa94d-9021-4de4-83e1-2552d899d014) + (property "Reference" "U4" (id 0) (at 171.45 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 171.45 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bb2e5912-3aae-4f20-bce1-f922d34f04ac)) + (pin "2" (uuid 3919a986-c0b3-47e3-93d7-3516776f2ce6)) + (pin "3" (uuid edd3aa69-ead1-47e7-a295-2300ab8cedf0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 99.06 67.31 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5acd13f3-d966-402a-afde-21962934b8b1) + (property "Reference" "U1" (id 0) (at 99.695 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 99.695 64.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 99.06 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 99.06 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 945cbd19-827e-4c5d-929b-cfd8c4e4a4a1)) + (pin "2" (uuid f45c1f85-e892-44a3-bb1d-2cbd1f30e8d1)) + (pin "3" (uuid 3b8a8e73-5ba1-4aaf-a6f3-17400ed16106)) + (pin "4" (uuid 43ba7a7a-3611-41ee-a02b-0bb6f7ed6c1c)) + (pin "5" (uuid cedcb4fa-08f8-43ea-bd1a-c3f0b46dcced)) + (pin "6" (uuid ad508a7b-abcb-4a51-a338-fc16de596e40)) + (pin "7" (uuid a1b58e67-411c-4141-a228-1726bb352d35)) + (pin "8" (uuid 2bbfac4e-4a6a-4ba6-855b-41bd60328b49)) + (pin "9" (uuid 5d4963d7-d728-4fc7-8baf-9710de427db6)) + (pin "10" (uuid 2b69b352-62d7-43a6-bf35-3f4ea0f089dc)) + (pin "11" (uuid c1a1fbfa-041f-4690-a9c8-1bffda3f6c68)) + (pin "12" (uuid e905dddc-de54-45a1-a021-96b0334f8b44)) + (pin "13" (uuid b27a5870-56e9-4b42-8bc8-876c44c2a30e)) + (pin "14" (uuid f2126b29-7519-4169-b955-44e4df1390e5)) + (pin "15" (uuid 45495d2f-52f6-4e38-afbb-c567e678a132)) + (pin "16" (uuid 0383280e-1af9-43f1-8ec0-8c5c520366ab)) + (pin "17" (uuid 84b5a758-6d08-4a00-aab0-6974ee9e158c)) + (pin "18" (uuid e98a034a-d9f2-4a65-a685-44e2080b35f8)) + (pin "19" (uuid 6fe09745-3600-4b8f-9f70-12b628285571)) + (pin "20" (uuid 110f5d3a-52fa-4635-b58f-94ae94fc0357)) + (pin "21" (uuid 7b8b4e92-aee8-43d4-965e-dcba6d082469)) + (pin "22" (uuid 8ffc7337-d8af-4bce-aece-25b619273529)) + (pin "23" (uuid 91622e93-ae4c-49f3-80ef-d72874c5b3f3)) + (pin "24" (uuid 4c6a20fe-ebbf-490b-86f4-a95e72177846)) + (pin "25" (uuid 66222f09-1740-4cc9-a2f7-368cd35b4c86)) + (pin "26" (uuid 2db2c1c9-9c5e-4497-a2d1-dff904fe4d14)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 234.95 83.82 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 87bb6717-3900-479b-b08c-fe6419680140) + (property "Reference" "U1" (id 0) (at 238.76 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 238.76 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 234.95 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 234.95 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 69ea2384-a808-4085-af85-1f2f1dfafe4d)) + (pin "2" (uuid c728872a-b3f1-4a2c-92ea-efbb7cca6977)) + (pin "3" (uuid 6fb54215-e929-4a12-a5f4-8418367968e1)) + (pin "4" (uuid 8870d58e-54df-4fac-b4ef-0f4888e233c0)) + (pin "5" (uuid 4841b75b-799a-4ca8-bf60-483709cef50d)) + (pin "6" (uuid 4d2a99d6-d7c9-4166-95cc-fafbeadc1289)) + (pin "7" (uuid df482d80-15d9-4c60-b7a9-46899923d083)) + (pin "8" (uuid 8edb4192-afe3-42dc-b434-470fc857fc6f)) + (pin "9" (uuid c8d35523-9cb6-4f22-9b25-d7ec83af3068)) + (pin "10" (uuid 9f28622c-65d5-40f7-9146-9e7ea8f5a25f)) + (pin "11" (uuid d65c0d82-c814-43ad-b7f3-0d7bd9270f33)) + (pin "12" (uuid 8b30b388-4375-4850-8886-823ec5851001)) + (pin "13" (uuid f6aa95e9-e427-4b5d-a287-b3de7d19e222)) + (pin "14" (uuid e0d62819-f317-4d6d-8820-db0664035669)) + (pin "15" (uuid e631e290-cbe0-439d-bac9-abf2f20bce16)) + (pin "16" (uuid beac0db5-151d-4eee-82a5-4ec373ca982c)) + (pin "17" (uuid 0e407025-f4ec-4d6b-a2b7-69c92ea41c0b)) + (pin "18" (uuid b42d177f-e9e6-4128-bd0a-38f0db310bd2)) + (pin "19" (uuid 84c0abc6-2337-40a0-af6c-7be002e21cc6)) + (pin "20" (uuid 49ed57ed-e4c2-4fbf-9bf4-28101b96e862)) + (pin "21" (uuid ce369ee2-6635-49dd-aacd-4c42c5d5481b)) + (pin "22" (uuid ee91997e-0e22-4be1-9eec-f57ecfcdb264)) + (pin "23" (uuid 83d2e8e2-48e5-43e1-b519-d31ec2290f83)) + (pin "24" (uuid 5239e1fe-4668-4534-8c61-986d9f25d14b)) + (pin "25" (uuid 9f7cf10b-5cfc-4709-841b-4089c2d7602e)) + (pin "26" (uuid bbd3d536-d94f-4878-9607-027b24cbb887)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 99.06 123.19 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ae119a86-b758-4ff1-b6ab-2ee8be9e3302) + (property "Reference" "U1" (id 0) (at 99.695 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 99.695 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 99.06 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 99.06 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f3c54e98-96eb-4834-881c-ffddae07d8bf)) + (pin "2" (uuid 5392bca7-ea8a-44dc-bdb8-7868680e1bc3)) + (pin "3" (uuid 552b3cd7-3d5f-4c91-b8ba-996423bbcd8a)) + (pin "4" (uuid f2ff90a0-7ce0-4793-85bf-ba4687c334d8)) + (pin "5" (uuid c1254b76-e3aa-4238-88db-74ca26db30d2)) + (pin "6" (uuid ce3bcc1a-1eb8-4ddd-b665-29c53cecf83c)) + (pin "7" (uuid 976be473-3702-4aac-b027-bf905aad9ae4)) + (pin "8" (uuid b38a838b-5a86-4660-8145-aafe4c162fa8)) + (pin "9" (uuid 584df22f-5686-42d5-94c2-3988fd83f2c5)) + (pin "10" (uuid ad0e6702-25b1-4613-8344-6b85405fa5a1)) + (pin "11" (uuid 3c05f345-4582-4587-b763-d151589cb614)) + (pin "12" (uuid 52da2d75-ff35-4c58-a34d-3f579a8008de)) + (pin "13" (uuid fc4ac57d-75d7-495c-9239-a46d8e99c2b9)) + (pin "14" (uuid 644ac3ca-16b4-45d2-a7db-651c5dbe5c10)) + (pin "15" (uuid 55806c13-bdc3-4b1e-bcc7-1e234c0a80a7)) + (pin "16" (uuid a7b21dec-ae32-4b8a-a8c1-4fbb0fe3e77e)) + (pin "17" (uuid 4ad6b683-6aa6-4e8d-95be-a251f7a390d2)) + (pin "18" (uuid 4286f5b1-f2de-471f-bab0-dc325c4a28ec)) + (pin "19" (uuid 12022b67-01c4-4d76-873a-105b994139b2)) + (pin "20" (uuid 88974f1d-3f1b-4f52-88bd-60e89d3e842e)) + (pin "21" (uuid d13c608b-ceb4-4828-8f61-5119e747c8ef)) + (pin "22" (uuid 201f98ab-2188-4da0-9871-ba6071eda4ca)) + (pin "23" (uuid 0236b03d-c555-4f1b-b9ea-e5e5e7df1520)) + (pin "24" (uuid f36d4e6e-c4e3-4e50-b71a-84fb3662b051)) + (pin "25" (uuid 7fbcdcfe-5b44-4ef2-b2af-cd7ab61922df)) + (pin "26" (uuid 2ced571b-cda2-406a-994b-6a01cf962ac4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 99.06 104.14 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bd926db7-56ed-4cd0-8a05-e7d85eb71c64) + (property "Reference" "U1" (id 0) (at 99.695 99.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 99.695 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 99.06 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 99.06 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c65c853e-9e03-4637-b8e6-a1a7a6b4f411)) + (pin "2" (uuid 84eb562a-fb2d-4731-aa91-6b52d071a8d3)) + (pin "3" (uuid 60d81fe1-76b8-402d-8283-d42356e45b9b)) + (pin "4" (uuid eddd3885-02e5-4dba-a0f3-92c69512d577)) + (pin "5" (uuid 0a369d88-9378-4ca4-b332-a36911a5d5db)) + (pin "6" (uuid b55544f9-aa68-48e6-bda7-3a2077e13f62)) + (pin "7" (uuid fdb5c41f-f0da-4747-bb3c-1c40f4fde646)) + (pin "8" (uuid 9c0e8b5b-dd68-4334-9699-9a1c9c35e81d)) + (pin "9" (uuid 07876021-700f-4102-94e7-52bc6bd79cdb)) + (pin "10" (uuid 270bc358-56c4-4e43-9edf-8934344fb6e5)) + (pin "11" (uuid 48d13ca7-d217-47d8-baea-690db40a0434)) + (pin "12" (uuid fd80fa0f-ab68-4054-9988-bdadbc2d9282)) + (pin "13" (uuid b6934060-5b69-48a8-bca6-fe28f9956243)) + (pin "14" (uuid 6e710df4-6324-4e34-91c2-5790dd6f64df)) + (pin "15" (uuid a8f51040-b993-4a56-9581-5022ebf05d16)) + (pin "16" (uuid d19397ae-96fa-4c6d-8693-eaa8457ffff6)) + (pin "17" (uuid 4e2bd03f-3d77-4377-9ae3-04f1569451cc)) + (pin "18" (uuid 1ffc336e-0fa1-43f7-81b2-6eae81767340)) + (pin "19" (uuid af16ff5a-ecc1-4376-8dbd-546ea0944535)) + (pin "20" (uuid 43c4707b-4b56-4a1f-ba9c-1a60d32a709e)) + (pin "21" (uuid 7a9d8c42-1b88-4ff5-8f28-6ee7f479fd6b)) + (pin "22" (uuid 4a96dead-4d71-49cd-89b3-b48e9c92ee20)) + (pin "23" (uuid 97a1426e-6da4-4334-93d7-e6c46eba821c)) + (pin "24" (uuid d0592ee4-f209-483d-925a-d5192cada0b3)) + (pin "25" (uuid 2bbe9231-1290-4063-b264-24da0138cd89)) + (pin "26" (uuid 1a1345e9-1168-4e0e-b5ef-776adad4025d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 99.06 85.09 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c3c64dd1-839a-4b81-9d2d-9c6f6d1b1125) + (property "Reference" "U1" (id 0) (at 99.695 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 99.695 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 99.06 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 99.06 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45289edd-936c-4c6c-98a5-bf2a577df1b5)) + (pin "2" (uuid 2107cdc0-5389-4ac0-95c9-73bfde6252c3)) + (pin "3" (uuid bd8aa9ec-7a64-4bf1-b27b-521e8f77c711)) + (pin "4" (uuid f4860b5f-d68e-4acf-8d79-538e9c10276f)) + (pin "5" (uuid 7942e886-15d3-4d0b-9a3a-4e9f29870fdc)) + (pin "6" (uuid 024dd4c1-f24c-4e1a-97ac-c893fd75733c)) + (pin "7" (uuid 8431d817-2739-460e-9e23-c11c1d0ac2f5)) + (pin "8" (uuid e1c9c55c-11ba-493a-b34c-6adc9e62c233)) + (pin "9" (uuid 75e2e7d6-42d5-431d-96ce-79eba87fa6b4)) + (pin "10" (uuid bcb52b1c-5a0f-41f2-be38-6257152b0bcc)) + (pin "11" (uuid 9558e938-84c7-447f-8e58-0dd34cbd18b2)) + (pin "12" (uuid ebaba8d8-73a8-4bf4-b35d-d9c6bc23987c)) + (pin "13" (uuid 8e5c3ad6-1243-43c9-8b6e-892c91f0affb)) + (pin "14" (uuid 4989d99e-febc-401a-9d72-d435ccea9131)) + (pin "15" (uuid 68c61d95-ddbb-4b98-8cd0-d8f1aff560af)) + (pin "16" (uuid f1a6df73-de10-4170-b136-6dd3f8d74b46)) + (pin "17" (uuid 255fc550-e144-49fc-8f35-2ab5dfe8172b)) + (pin "18" (uuid bf104847-640d-45c6-b70a-8aaeb804c579)) + (pin "19" (uuid 8305b18d-14c5-418e-a9ce-f2cb56409ff5)) + (pin "20" (uuid ed9f3d22-55ed-45e2-8db4-93937022bcad)) + (pin "21" (uuid 5f8c52c1-56c1-4722-bc7d-9b666892f7bb)) + (pin "22" (uuid 4c37b25b-91ce-47f8-a178-21ded9c7246c)) + (pin "23" (uuid db907a7a-9b56-46b3-b82d-471e4f9e93cc)) + (pin "24" (uuid a4cb1f8a-ee4e-41b1-be49-007b24fc700b)) + (pin "25" (uuid 70234221-905f-4bb8-bc0d-282b226f6aff)) + (pin "26" (uuid dcef4ca7-bf9e-4476-849e-0d1db4a14aa2)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 132.08 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db5e5b7e-0e66-4ffa-a080-2f2d1634f19b) + (property "Reference" "U3" (id 0) (at 132.08 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 132.08 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 132.08 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 132.08 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17a627fc-14be-4037-998f-685883a34dcb)) + (pin "2" (uuid 3aab2032-c94b-4dbb-abd4-72784fec49aa)) + (pin "3" (uuid d2fca512-c35f-4ff4-8ef1-6c66772c779a)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 205.74 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2db0472-e2a4-48a2-a66d-88ebf9f39197) + (property "Reference" "U5" (id 0) (at 205.74 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 205.74 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 205.74 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 88c87f03-a09f-4783-ade3-a06c23796923)) + (pin "2" (uuid eb1e29f8-c2bd-455d-99ec-14f0f1f42d84)) + (pin "3" (uuid 39b21310-4498-4a42-83d7-da957a5a8ea5)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/2d2ff28c-d044-4ccd-ada3-577400e858df" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/5acd13f3-d966-402a-afde-21962934b8b1" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/c3c64dd1-839a-4b81-9d2d-9c6f6d1b1125" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/bd926db7-56ed-4cd0-8a05-e7d85eb71c64" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/ae119a86-b758-4ff1-b6ab-2ee8be9e3302" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/87bb6717-3900-479b-b08c-fe6419680140" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/3c696a1d-4f17-4bc0-93ee-ac7f3cda490e" + (reference "U2") (unit 1) (value "d_and") (footprint "") + ) + (path "/db5e5b7e-0e66-4ffa-a080-2f2d1634f19b" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/59ffa94d-9021-4de4-83e1-2552d899d014" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/e2db0472-e2a4-48a2-a66d-88ebf9f39197" + (reference "U5") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN7458/SN7458_subckt.proj b/library/SubcircuitLibrary/SN7458/SN7458_subckt.proj new file mode 100644 index 000000000..c9a77e433 --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/SN7458_subckt.proj @@ -0,0 +1 @@ +schematicFile SN7458_subckt.kicad_sch diff --git a/library/SubcircuitLibrary/SN7458/SN7458_subckt.sub b/library/SubcircuitLibrary/SN7458/SN7458_subckt.sub new file mode 100644 index 000000000..57659be53 --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/SN7458_subckt.sub @@ -0,0 +1,22 @@ +* Subcircuit SN7458_subckt +.subckt SN7458_subckt a b c d e y +.title kicad schematic +* u4 net-_u3-pad3_ e net-_u4-pad3_ d_and +* u3 c d net-_u3-pad3_ d_and +* u5 net-_u2-pad3_ net-_u4-pad3_ y d_or +* u2 a b net-_u2-pad3_ d_and +a1 [net-_u3-pad3_ e ] net-_u4-pad3_ u4 +a2 [c d ] net-_u3-pad3_ u3 +a3 [net-_u2-pad3_ net-_u4-pad3_ ] y u5 +a4 [a b ] net-_u2-pad3_ u2 +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN7458_subckt \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7458/Test_SN7458.cir b/library/SubcircuitLibrary/SN7458/Test_SN7458.cir new file mode 100644 index 000000000..3e1b2243d --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/Test_SN7458.cir @@ -0,0 +1,14 @@ +.title KiCad schematic +U3 C Net-_U3-Pad2_ adc_bridge_1 +U4 D Net-_U4-Pad2_ adc_bridge_1 +v3 C GND pulse +v4 D GND pulse +U5 E Net-_U5-Pad2_ adc_bridge_1 +v5 E GND pulse +U1 A Net-_U1-Pad2_ adc_bridge_1 +U2 B Net-_U2-Pad2_ adc_bridge_1 +v1 A GND pulse +v2 B GND pulse +X1 Net-_U1-Pad2_ Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U4-Pad2_ Net-_U5-Pad2_ Net-_U6-Pad1_ SN7458 +U6 Net-_U6-Pad1_ Y dac_bridge_1 +.end diff --git a/library/SubcircuitLibrary/SN7458/Test_SN7458.cir.out b/library/SubcircuitLibrary/SN7458/Test_SN7458.cir.out new file mode 100644 index 000000000..0d40fc894 --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/Test_SN7458.cir.out @@ -0,0 +1,42 @@ +.title kicad schematic + +.include SN7458_subckt.sub +* u3 c net-_u3-pad2_ adc_bridge_1 +* u4 d net-_u4-pad2_ adc_bridge_1 +v3 c gnd pulse(0 5 0 1n 1n 40m 80m) +v4 d gnd pulse(0 5 0 1n 1n 80m 160m) +* u5 e net-_u5-pad2_ adc_bridge_1 +v5 e gnd pulse(0 5 0 1n 1n 160m 320m) +* u1 a net-_u1-pad2_ adc_bridge_1 +* u2 b net-_u2-pad2_ adc_bridge_1 +v1 a gnd pulse(0 5 0 1n 1n 10m 20m) +v2 b gnd pulse(0 5 0 1n 1n 20m 40m) +x1 net-_u1-pad2_ net-_u2-pad2_ net-_u3-pad2_ net-_u4-pad2_ net-_u5-pad2_ net-_u6-pad1_ SN7458_subckt +* u6 net-_u6-pad1_ y dac_bridge_1 +a1 [c ] [net-_u3-pad2_ ] u3 +a2 [d ] [net-_u4-pad2_ ] u4 +a3 [e ] [net-_u5-pad2_ ] u5 +a4 [a ] [net-_u1-pad2_ ] u1 +a5 [b ] [net-_u2-pad2_ ] u2 +a6 [net-_u6-pad1_ ] [y ] u6 +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u6 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0.1e-03 640e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN7458/Test_SN7458.kicad_sch b/library/SubcircuitLibrary/SN7458/Test_SN7458.kicad_sch new file mode 100644 index 000000000..e9fcedd55 --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/Test_SN7458.kicad_sch @@ -0,0 +1,669 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 3b1e8686-1242-4dd9-80e2-3f3cfec330cf) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN7458" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN7458" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN7458_0_1" + (rectangle (start -3.81 -2.54) (end 3.81 -15.24) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN7458_1_1" + (pin input line (at -6.35 -3.81 0) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -6.35 0) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -8.89 0) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -11.43 0) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -13.97 0) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 -8.89 180) (length 2.54) + (name "Y" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (wire (pts (xy 140.97 139.7) (xy 123.19 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10911554-9fbb-4892-997f-06cf1dfea9aa) + ) + (wire (pts (xy 182.88 90.17) (xy 195.58 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14b86971-45d9-473e-808e-d965ea5674b9) + ) + (wire (pts (xy 129.54 92.71) (xy 140.97 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34c8a9f5-e316-422c-b980-6d093a8bcadd) + ) + (wire (pts (xy 140.97 64.77) (xy 140.97 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55c47852-d90a-4489-b314-e64421bdc0a3) + ) + (wire (pts (xy 139.7 87.63) (xy 140.97 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83dc457e-df6d-4b48-b61d-2704c71d9b8a) + ) + (wire (pts (xy 140.97 95.25) (xy 140.97 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7015e3c-fe7d-4c35-9b05-0014f6cfad28) + ) + (wire (pts (xy 123.19 120.65) (xy 129.54 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1b6a9aa-cf9f-4c67-ab6b-ee43577a18be) + ) + (wire (pts (xy 129.54 120.65) (xy 129.54 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0141ba4-1f17-4dba-a667-f09a8e06c4fb) + ) + (wire (pts (xy 123.19 83.82) (xy 139.7 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0321bfc-7587-47b7-b062-0a32dd0e9b8d) + ) + (wire (pts (xy 123.19 90.17) (xy 140.97 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df53d725-0a7e-4875-8b9b-efd9232d9626) + ) + (wire (pts (xy 123.19 101.6) (xy 123.19 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e058987e-963d-4390-9fd9-6001506d6eb6) + ) + (wire (pts (xy 123.19 64.77) (xy 140.97 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e135825f-5dfe-4c15-b17e-2eceb788c047) + ) + (wire (pts (xy 139.7 83.82) (xy 139.7 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec963e7b-3d68-47d0-a0bb-f15481dffba0) + ) + + (global_label "A" (shape input) (at 93.98 64.77 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 1bdc27ba-fbca-4ac1-ab10-e3800e06475b) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 93.9006 61.2683 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "D" (shape input) (at 93.98 120.65 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 594457bb-4eb1-47f1-9b9b-a3d4fdb61e81) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 93.9006 116.9669 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B" (shape input) (at 93.98 83.82 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 652b4807-ed3d-4216-ad36-47b2a1c50023) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 93.9006 80.1369 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y" (shape output) (at 195.58 90.17 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid bd0bb7e6-5cf0-41af-b6c1-a3101c14133a) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 199.0817 90.0906 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "C" (shape input) (at 93.98 101.6 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid cffe77aa-e55f-4709-9a0d-e11845df92ec) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 93.9006 97.9169 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "E" (shape input) (at 93.98 139.7 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e93677e0-389a-4ec7-bd80-0dc4a80f9772) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 93.9006 136.1379 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 109.22 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 037ca17b-aca1-4e07-86b8-f7622f08f4bb) + (property "Reference" "U5" (id 0) (at 108.585 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 108.585 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 109.22 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 29679cd5-de53-4449-a5b2-4b9e2310d98a)) + (pin "2" (uuid 791fa4fc-a917-4c7a-922a-59f54957ed1e)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 82.55 64.77 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 10def06a-c8a6-43c3-b954-0da26e2c685c) + (property "Reference" "v1" (id 0) (at 82.55 52.07 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 82.55 55.88 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 82.55 59.69 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b8d202e5-b3ac-43c7-88aa-49ee3b60fdfd)) + (pin "2" (uuid 4501a896-1bb0-4f48-bd49-ecea551016c0)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 82.55 120.65 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15622cc4-25df-4939-bdae-b06faa0e19df) + (property "Reference" "v4" (id 0) (at 82.55 107.95 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 82.55 111.76 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 82.55 115.57 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 601cf22e-f5f2-4c23-943b-b38c96f445ad)) + (pin "2" (uuid 4307cc5a-58a3-4c88-a5b5-c4d95d8c6196)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 82.55 139.7 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2b18f41b-0061-4a64-8b68-09e2c1a3f2d5) + (property "Reference" "v5" (id 0) (at 82.55 127 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 82.55 130.81 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 82.55 134.62 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4e27c5bf-6646-4d40-b6ed-350a62258c7c)) + (pin "2" (uuid de87e5ef-dea9-40c6-a736-22415627564d)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 82.55 101.6 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2fdf8f72-e444-4e61-befc-333b2130bf88) + (property "Reference" "v3" (id 0) (at 82.55 88.9 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 82.55 92.71 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 82.55 96.52 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 30285981-3953-4ccd-892b-274562e014b1)) + (pin "2" (uuid 538a9972-d8f4-4da9-b2f4-e42d86d05934)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 82.55 83.82 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 31615420-57e9-46da-a80c-33d6fbf8a438) + (property "Reference" "v2" (id 0) (at 82.55 71.12 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 82.55 74.93 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 82.55 78.74 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 82.55 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 44d71c6c-4b49-46d0-9bb0-4b678855a5a8)) + (pin "2" (uuid 105e9660-6011-4bb4-877e-c0ea96e88fc2)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 168.91 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a20942a-2c72-4d81-bdc9-7baeb8d2b8ac) + (property "Reference" "U6" (id 0) (at 168.275 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 168.275 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 168.91 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 28553efc-abce-43f6-82f2-3eab8e0bb6d7)) + (pin "2" (uuid 5be3094f-7357-4ce3-9c6e-b9fad1173538)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 71.12 139.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5e94872f-cf9a-4fc3-bace-eef2db227908) + (property "Reference" "#PWR05" (id 0) (at 71.12 146.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 71.12 144.78 0)) + (property "Footprint" "" (id 2) (at 71.12 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 71.12 139.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8b8ab38a-5c5b-4427-a1ab-aae2b8ed68d1)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 71.12 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a9d30c2-8874-4984-9889-0b77364e8790) + (property "Reference" "#PWR03" (id 0) (at 71.12 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 71.12 106.68 0)) + (property "Footprint" "" (id 2) (at 71.12 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 71.12 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d07fa329-f971-4314-8f1f-b14c980c9212)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 109.22 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93b44684-7639-476c-b4ee-01f5da6d37dd) + (property "Reference" "U4" (id 0) (at 108.585 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 108.585 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 109.22 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 970e1afd-00ca-4b4a-a60e-db7d4e2d2883)) + (pin "2" (uuid f032117b-5778-4e11-97a3-0da8a71ed34d)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 109.22 102.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba1818b2-df20-40e0-8020-d4e38049bf24) + (property "Reference" "U3" (id 0) (at 108.585 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 108.585 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 109.22 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5fca521f-5670-4e0a-a9af-b128ce828075)) + (pin "2" (uuid 8939f4f9-f294-4cae-a4e5-23ea3bb0bdb6)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 71.12 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bd41ae5a-9c24-42da-8926-5467b512119d) + (property "Reference" "#PWR04" (id 0) (at 71.12 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 71.12 125.73 0)) + (property "Footprint" "" (id 2) (at 71.12 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 71.12 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fdd7c0af-a949-4cd1-986c-9058e2ac7b48)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 71.12 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d03f4e9f-45dd-46a3-a887-bbf7273f8871) + (property "Reference" "#PWR02" (id 0) (at 71.12 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 71.12 88.9 0)) + (property "Footprint" "" (id 2) (at 71.12 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 71.12 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f8f8bb0c-c607-488e-a82f-a3ea0b59117d)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 109.22 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d08b8d84-73a9-4d11-993d-28e58894dce3) + (property "Reference" "U2" (id 0) (at 108.585 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 108.585 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 109.22 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f8a194d3-65f4-4ab0-a295-d7bfc1a6d653)) + (pin "2" (uuid fc04fdaf-5e3e-45e2-8457-63e7d63bde8a)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 71.12 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e0148d3f-1f4a-4bc3-ac36-031ff69d1c40) + (property "Reference" "#PWR01" (id 0) (at 71.12 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 71.12 69.85 0)) + (property "Footprint" "" (id 2) (at 71.12 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 71.12 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9853b179-31af-4be6-ac29-e09e4bf6ac7b)) + ) + + (symbol (lib_id "eSim_Subckt:SN7458") (at 147.32 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e590396b-7b74-4130-bfe2-4dd991f4dacb) + (property "Reference" "X1" (id 0) (at 147.32 78.74 0)) + (property "Value" "SN7458" (id 1) (at 147.32 81.28 0)) + (property "Footprint" "" (id 2) (at 147.32 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 147.32 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ebcee4f0-738d-4010-b5ae-9b8dbdaa300a)) + (pin "2" (uuid 3996311a-844a-4844-89b3-518f14681ef7)) + (pin "3" (uuid 5be81afa-f9d4-4c4b-a0a1-c8593ee0c840)) + (pin "4" (uuid 5852f508-7fb3-4dfe-bf9f-e659d12743c3)) + (pin "5" (uuid 51613ca6-a5a0-48bc-b41d-0a9337a5b33e)) + (pin "6" (uuid 8b41e7f2-d14f-48bb-a505-0ff6c847e866)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 109.22 66.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5e0bce4-e8a9-415e-b9ee-f67807a09044) + (property "Reference" "U1" (id 0) (at 108.585 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 108.585 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 109.22 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 344224f1-018e-42db-a2ed-b9d0485ea2dc)) + (pin "2" (uuid bb8945f8-20b6-4c3e-b042-e07b621932f1)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/e0148d3f-1f4a-4bc3-ac36-031ff69d1c40" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/d03f4e9f-45dd-46a3-a887-bbf7273f8871" + (reference "#PWR02") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/6a9d30c2-8874-4984-9889-0b77364e8790" + (reference "#PWR03") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/bd41ae5a-9c24-42da-8926-5467b512119d" + (reference "#PWR04") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/5e94872f-cf9a-4fc3-bace-eef2db227908" + (reference "#PWR05") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/e5e0bce4-e8a9-415e-b9ee-f67807a09044" + (reference "U1") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/d08b8d84-73a9-4d11-993d-28e58894dce3" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/ba1818b2-df20-40e0-8020-d4e38049bf24" + (reference "U3") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/93b44684-7639-476c-b4ee-01f5da6d37dd" + (reference "U4") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/037ca17b-aca1-4e07-86b8-f7622f08f4bb" + (reference "U5") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/3a20942a-2c72-4d81-bdc9-7baeb8d2b8ac" + (reference "U6") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/e590396b-7b74-4130-bfe2-4dd991f4dacb" + (reference "X1") (unit 1) (value "SN7458") (footprint "") + ) + (path "/10def06a-c8a6-43c3-b954-0da26e2c685c" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/31615420-57e9-46da-a80c-33d6fbf8a438" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/2fdf8f72-e444-4e61-befc-333b2130bf88" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/15622cc4-25df-4939-bdae-b06faa0e19df" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/2b18f41b-0061-4a64-8b68-09e2c1a3f2d5" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN7458/Test_SN7458.proj b/library/SubcircuitLibrary/SN7458/Test_SN7458.proj new file mode 100644 index 000000000..04265534b --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/Test_SN7458.proj @@ -0,0 +1 @@ +schematicFile Test_SN7458.kicad_sch diff --git a/library/SubcircuitLibrary/SN7458/Test_SN7458_Previous_Values.xml b/library/SubcircuitLibrary/SN7458/Test_SN7458_Previous_Values.xml new file mode 100644 index 000000000..0f7727779 --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/Test_SN7458_Previous_Values.xml @@ -0,0 +1 @@ +pulse0501n1n10m20mpulse0501n1n20m40mpulse0501n1n40m80mpulse0501n1n80m160mpulse0501n1n160m320madc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridged_ordac_bridged_andd_andd_anddac_bridgeE:\apps\ESIM\FOSSEE\eSim\library\SubcircuitLibrary\SN7458_subckttruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0.1640secmsms \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7458/analysis b/library/SubcircuitLibrary/SN7458/analysis new file mode 100644 index 000000000..de5af732e --- /dev/null +++ b/library/SubcircuitLibrary/SN7458/analysis @@ -0,0 +1 @@ +.tran 0.1e-03 640e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74688/SN74688_subckt.cir b/library/SubcircuitLibrary/SN74688/SN74688_subckt.cir new file mode 100644 index 000000000..d945b60df --- /dev/null +++ b/library/SubcircuitLibrary/SN74688/SN74688_subckt.cir @@ -0,0 +1,58 @@ +.title KiCad schematic +U27 P1 Net-_U11-Pad2_ Net-_U27-Pad3_ d_and +U26 Net-_U10-Pad2_ Q1 Net-_U26-Pad3_ d_and +U10 P1 Net-_U10-Pad2_ d_inverter +U11 Q1 Net-_U11-Pad2_ d_inverter +U35 Net-_U20-Pad3_ Net-_U21-Pad3_ Net-_U35-Pad3_ d_or +U38 Net-_U26-Pad3_ Net-_U27-Pad3_ Net-_U38-Pad3_ d_or +U43 Net-_U35-Pad3_ Net-_U43-Pad2_ d_inverter +U42 Net-_U34-Pad3_ Net-_U42-Pad2_ d_inverter +U34 Net-_U18-Pad3_ Net-_U19-Pad3_ Net-_U34-Pad3_ d_or +U20 Net-_U20-Pad1_ Q0 Net-_U20-Pad3_ d_and +U21 P0 Net-_U21-Pad2_ Net-_U21-Pad3_ d_and +U5 Q0 Net-_U21-Pad2_ d_inverter +U4 P0 Net-_U20-Pad1_ d_inverter +U1 P0 Q0 P1 Q1 P2 Q2 P3 Q3 P4 Q4 P5 Q5 P6 Q6 P7 Q7 Net-_U1-Pad17_ PORT +U19 P2 Net-_U19-Pad2_ Net-_U19-Pad3_ d_and +U18 Net-_U18-Pad1_ Q2 Net-_U18-Pad3_ d_and +U22 Net-_U22-Pad1_ Q3 Net-_U22-Pad3_ d_and +U36 Net-_U22-Pad3_ Net-_U23-Pad3_ Net-_U36-Pad3_ d_or +U3 Q2 Net-_U19-Pad2_ d_inverter +U2 P2 Net-_U18-Pad1_ d_inverter +U6 P3 Net-_U22-Pad1_ d_inverter +U46 Net-_U38-Pad3_ Net-_U46-Pad2_ d_inverter +U44 Net-_U36-Pad3_ Net-_U44-Pad2_ d_inverter +U56 Net-_U54-Pad3_ Net-_U55-Pad3_ Net-_U1-Pad17_ d_and +U55 Net-_U52-Pad3_ Net-_U53-Pad3_ Net-_U55-Pad3_ d_and +U50 Net-_U42-Pad2_ Net-_U44-Pad2_ Net-_U50-Pad3_ d_and +U54 Net-_U51-Pad3_ Net-_U50-Pad3_ Net-_U54-Pad3_ d_and +U51 Net-_U43-Pad2_ Net-_U46-Pad2_ Net-_U51-Pad3_ d_and +U16 P7 Net-_U16-Pad2_ d_inverter +U17 Q7 Net-_U17-Pad2_ d_inverter +U15 Q6 Net-_U15-Pad2_ d_inverter +U14 P6 Net-_U14-Pad2_ d_inverter +U13 Q5 Net-_U13-Pad2_ d_inverter +U25 P4 Net-_U25-Pad2_ Net-_U25-Pad3_ d_and +U24 Net-_U24-Pad1_ Q4 Net-_U24-Pad3_ d_and +U9 Q4 Net-_U25-Pad2_ d_inverter +U8 P4 Net-_U24-Pad1_ d_inverter +U29 P5 Net-_U13-Pad2_ Net-_U29-Pad3_ d_and +U28 Net-_U12-Pad2_ Q5 Net-_U28-Pad3_ d_and +U12 P5 Net-_U12-Pad2_ d_inverter +U7 Q3 Net-_U23-Pad2_ d_inverter +U23 P3 Net-_U23-Pad2_ Net-_U23-Pad3_ d_and +U30 Net-_U14-Pad2_ Q6 Net-_U30-Pad3_ d_and +U45 Net-_U37-Pad3_ Net-_U45-Pad2_ d_inverter +U39 Net-_U28-Pad3_ Net-_U29-Pad3_ Net-_U39-Pad3_ d_or +U37 Net-_U24-Pad3_ Net-_U25-Pad3_ Net-_U37-Pad3_ d_or +U32 Net-_U16-Pad2_ Q7 Net-_U32-Pad3_ d_and +U33 P7 Net-_U17-Pad2_ Net-_U33-Pad3_ d_and +U31 P6 Net-_U15-Pad2_ Net-_U31-Pad3_ d_and +U48 Net-_U40-Pad3_ Net-_U48-Pad2_ d_inverter +U49 Net-_U41-Pad3_ Net-_U49-Pad2_ d_inverter +U40 Net-_U30-Pad3_ Net-_U31-Pad3_ Net-_U40-Pad3_ d_or +U41 Net-_U32-Pad3_ Net-_U33-Pad3_ Net-_U41-Pad3_ d_or +U47 Net-_U39-Pad3_ Net-_U47-Pad2_ d_inverter +U52 Net-_U45-Pad2_ Net-_U47-Pad2_ Net-_U52-Pad3_ d_and +U53 Net-_U48-Pad2_ Net-_U49-Pad2_ Net-_U53-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/SN74688/SN74688_subckt.cir.out b/library/SubcircuitLibrary/SN74688/SN74688_subckt.cir.out new file mode 100644 index 000000000..68be24105 --- /dev/null +++ b/library/SubcircuitLibrary/SN74688/SN74688_subckt.cir.out @@ -0,0 +1,232 @@ +.title kicad schematic + +* u27 p1 net-_u11-pad2_ net-_u27-pad3_ d_and +* u26 net-_u10-pad2_ q1 net-_u26-pad3_ d_and +* u10 p1 net-_u10-pad2_ d_inverter +* u11 q1 net-_u11-pad2_ d_inverter +* u35 net-_u20-pad3_ net-_u21-pad3_ net-_u35-pad3_ d_or +* u38 net-_u26-pad3_ net-_u27-pad3_ net-_u38-pad3_ d_or +* u43 net-_u35-pad3_ net-_u43-pad2_ d_inverter +* u42 net-_u34-pad3_ net-_u42-pad2_ d_inverter +* u34 net-_u18-pad3_ net-_u19-pad3_ net-_u34-pad3_ d_or +* u20 net-_u20-pad1_ q0 net-_u20-pad3_ d_and +* u21 p0 net-_u21-pad2_ net-_u21-pad3_ d_and +* u5 q0 net-_u21-pad2_ d_inverter +* u4 p0 net-_u20-pad1_ d_inverter +* u1 p0 q0 p1 q1 p2 q2 p3 q3 p4 q4 p5 q5 p6 q6 p7 q7 net-_u1-pad17_ port +* u19 p2 net-_u19-pad2_ net-_u19-pad3_ d_and +* u18 net-_u18-pad1_ q2 net-_u18-pad3_ d_and +* u22 net-_u22-pad1_ q3 net-_u22-pad3_ d_and +* u36 net-_u22-pad3_ net-_u23-pad3_ net-_u36-pad3_ d_or +* u3 q2 net-_u19-pad2_ d_inverter +* u2 p2 net-_u18-pad1_ d_inverter +* u6 p3 net-_u22-pad1_ d_inverter +* u46 net-_u38-pad3_ net-_u46-pad2_ d_inverter +* u44 net-_u36-pad3_ net-_u44-pad2_ d_inverter +* u56 net-_u54-pad3_ net-_u55-pad3_ net-_u1-pad17_ d_and +* u55 net-_u52-pad3_ net-_u53-pad3_ net-_u55-pad3_ d_and +* u50 net-_u42-pad2_ net-_u44-pad2_ net-_u50-pad3_ d_and +* u54 net-_u51-pad3_ net-_u50-pad3_ net-_u54-pad3_ d_and +* u51 net-_u43-pad2_ net-_u46-pad2_ net-_u51-pad3_ d_and +* u16 p7 net-_u16-pad2_ d_inverter +* u17 q7 net-_u17-pad2_ d_inverter +* u15 q6 net-_u15-pad2_ d_inverter +* u14 p6 net-_u14-pad2_ d_inverter +* u13 q5 net-_u13-pad2_ d_inverter +* u25 p4 net-_u25-pad2_ net-_u25-pad3_ d_and +* u24 net-_u24-pad1_ q4 net-_u24-pad3_ d_and +* u9 q4 net-_u25-pad2_ d_inverter +* u8 p4 net-_u24-pad1_ d_inverter +* u29 p5 net-_u13-pad2_ net-_u29-pad3_ d_and +* u28 net-_u12-pad2_ q5 net-_u28-pad3_ d_and +* u12 p5 net-_u12-pad2_ d_inverter +* u7 q3 net-_u23-pad2_ d_inverter +* u23 p3 net-_u23-pad2_ net-_u23-pad3_ d_and +* u30 net-_u14-pad2_ q6 net-_u30-pad3_ d_and +* u45 net-_u37-pad3_ net-_u45-pad2_ d_inverter +* u39 net-_u28-pad3_ net-_u29-pad3_ net-_u39-pad3_ d_or +* u37 net-_u24-pad3_ net-_u25-pad3_ net-_u37-pad3_ d_or +* u32 net-_u16-pad2_ q7 net-_u32-pad3_ d_and +* u33 p7 net-_u17-pad2_ net-_u33-pad3_ d_and +* u31 p6 net-_u15-pad2_ net-_u31-pad3_ d_and +* u48 net-_u40-pad3_ net-_u48-pad2_ d_inverter +* u49 net-_u41-pad3_ net-_u49-pad2_ d_inverter +* u40 net-_u30-pad3_ net-_u31-pad3_ net-_u40-pad3_ d_or +* u41 net-_u32-pad3_ net-_u33-pad3_ net-_u41-pad3_ d_or +* u47 net-_u39-pad3_ net-_u47-pad2_ d_inverter +* u52 net-_u45-pad2_ net-_u47-pad2_ net-_u52-pad3_ d_and +* u53 net-_u48-pad2_ net-_u49-pad2_ net-_u53-pad3_ d_and +a1 [p1 net-_u11-pad2_ ] net-_u27-pad3_ u27 +a2 [net-_u10-pad2_ q1 ] net-_u26-pad3_ u26 +a3 p1 net-_u10-pad2_ u10 +a4 q1 net-_u11-pad2_ u11 +a5 [net-_u20-pad3_ net-_u21-pad3_ ] net-_u35-pad3_ u35 +a6 [net-_u26-pad3_ net-_u27-pad3_ ] net-_u38-pad3_ u38 +a7 net-_u35-pad3_ net-_u43-pad2_ u43 +a8 net-_u34-pad3_ net-_u42-pad2_ u42 +a9 [net-_u18-pad3_ net-_u19-pad3_ ] net-_u34-pad3_ u34 +a10 [net-_u20-pad1_ q0 ] net-_u20-pad3_ u20 +a11 [p0 net-_u21-pad2_ ] net-_u21-pad3_ u21 +a12 q0 net-_u21-pad2_ u5 +a13 p0 net-_u20-pad1_ u4 +a14 [p2 net-_u19-pad2_ ] net-_u19-pad3_ u19 +a15 [net-_u18-pad1_ q2 ] net-_u18-pad3_ u18 +a16 [net-_u22-pad1_ q3 ] net-_u22-pad3_ u22 +a17 [net-_u22-pad3_ net-_u23-pad3_ ] net-_u36-pad3_ u36 +a18 q2 net-_u19-pad2_ u3 +a19 p2 net-_u18-pad1_ u2 +a20 p3 net-_u22-pad1_ u6 +a21 net-_u38-pad3_ net-_u46-pad2_ u46 +a22 net-_u36-pad3_ net-_u44-pad2_ u44 +a23 [net-_u54-pad3_ net-_u55-pad3_ ] net-_u1-pad17_ u56 +a24 [net-_u52-pad3_ net-_u53-pad3_ ] net-_u55-pad3_ u55 +a25 [net-_u42-pad2_ net-_u44-pad2_ ] net-_u50-pad3_ u50 +a26 [net-_u51-pad3_ net-_u50-pad3_ ] net-_u54-pad3_ u54 +a27 [net-_u43-pad2_ net-_u46-pad2_ ] net-_u51-pad3_ u51 +a28 p7 net-_u16-pad2_ u16 +a29 q7 net-_u17-pad2_ u17 +a30 q6 net-_u15-pad2_ u15 +a31 p6 net-_u14-pad2_ u14 +a32 q5 net-_u13-pad2_ u13 +a33 [p4 net-_u25-pad2_ ] net-_u25-pad3_ u25 +a34 [net-_u24-pad1_ q4 ] net-_u24-pad3_ u24 +a35 q4 net-_u25-pad2_ u9 +a36 p4 net-_u24-pad1_ u8 +a37 [p5 net-_u13-pad2_ ] net-_u29-pad3_ u29 +a38 [net-_u12-pad2_ q5 ] net-_u28-pad3_ u28 +a39 p5 net-_u12-pad2_ u12 +a40 q3 net-_u23-pad2_ u7 +a41 [p3 net-_u23-pad2_ ] net-_u23-pad3_ u23 +a42 [net-_u14-pad2_ q6 ] net-_u30-pad3_ u30 +a43 net-_u37-pad3_ net-_u45-pad2_ u45 +a44 [net-_u28-pad3_ net-_u29-pad3_ ] net-_u39-pad3_ u39 +a45 [net-_u24-pad3_ net-_u25-pad3_ ] net-_u37-pad3_ u37 +a46 [net-_u16-pad2_ q7 ] net-_u32-pad3_ u32 +a47 [p7 net-_u17-pad2_ ] net-_u33-pad3_ u33 +a48 [p6 net-_u15-pad2_ ] net-_u31-pad3_ u31 +a49 net-_u40-pad3_ net-_u48-pad2_ u48 +a50 net-_u41-pad3_ net-_u49-pad2_ u49 +a51 [net-_u30-pad3_ net-_u31-pad3_ ] net-_u40-pad3_ u40 +a52 [net-_u32-pad3_ net-_u33-pad3_ ] net-_u41-pad3_ u41 +a53 net-_u39-pad3_ net-_u47-pad2_ u47 +a54 [net-_u45-pad2_ net-_u47-pad2_ ] net-_u52-pad3_ u52 +a55 [net-_u48-pad2_ net-_u49-pad2_ ] net-_u53-pad3_ u53 +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u35 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u38 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u43 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u42 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u34 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u36 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u46 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u44 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u56 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u55 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u50 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u54 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u51 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u29 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u30 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u45 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u39 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u37 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u32 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u33 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u31 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u48 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u49 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u40 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u41 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u47 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u52 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u53 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74688/SN74688_subckt.kicad_sch b/library/SubcircuitLibrary/SN74688/SN74688_subckt.kicad_sch new file mode 100644 index 000000000..6b9dc6542 --- /dev/null +++ b/library/SubcircuitLibrary/SN74688/SN74688_subckt.kicad_sch @@ -0,0 +1,3248 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 57ea5901-bcf7-4d05-a09b-9eb75bfb8bfa) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 154.94 168.91) (diameter 0) (color 0 0 0 0) + (uuid 0dbf39d6-9a35-4f7e-9dfb-e1cca562dea5) + ) + (junction (at 158.75 101.6) (diameter 0) (color 0 0 0 0) + (uuid 1345904f-22cd-4f6f-a3be-0e83199af0a9) + ) + (junction (at 157.48 295.91) (diameter 0) (color 0 0 0 0) + (uuid 5e656d67-eb01-48a3-9538-d67ff5f2553e) + ) + (junction (at 157.48 179.07) (diameter 0) (color 0 0 0 0) + (uuid 69611bce-8984-4e93-b718-e44ca7aabcec) + ) + (junction (at 156.21 142.24) (diameter 0) (color 0 0 0 0) + (uuid 8129306d-9b98-4918-95bc-343ac3c3a68e) + ) + (junction (at 158.75 255.27) (diameter 0) (color 0 0 0 0) + (uuid 99280169-0479-4e08-b3ae-c612afac902e) + ) + (junction (at 153.67 132.08) (diameter 0) (color 0 0 0 0) + (uuid 9d66a061-ad94-4585-b1e9-f6ebdfa6c30a) + ) + (junction (at 161.29 342.9) (diameter 0) (color 0 0 0 0) + (uuid a9441092-13f6-4194-b2bc-2d0063bd96ca) + ) + (junction (at 160.02 306.07) (diameter 0) (color 0 0 0 0) + (uuid ca2a019b-2c7c-4ca2-982a-c514af2427d1) + ) + (junction (at 157.48 218.44) (diameter 0) (color 0 0 0 0) + (uuid cd803d09-a4c1-4878-b9d3-472d9454d58c) + ) + (junction (at 156.21 91.44) (diameter 0) (color 0 0 0 0) + (uuid cdcdb898-f67d-46dc-932c-2d79ea20ea9f) + ) + (junction (at 158.75 332.74) (diameter 0) (color 0 0 0 0) + (uuid d728f839-c028-43ac-97c1-89f43a06e133) + ) + (junction (at 154.94 54.61) (diameter 0) (color 0 0 0 0) + (uuid d994d962-c8ae-4def-90bf-763e7d4b37f3) + ) + (junction (at 156.21 245.11) (diameter 0) (color 0 0 0 0) + (uuid e60a80a8-709f-4c66-b750-8830672a9503) + ) + (junction (at 154.94 208.28) (diameter 0) (color 0 0 0 0) + (uuid efb2b47a-d5db-44cc-825d-c3c46cadc380) + ) + (junction (at 157.48 64.77) (diameter 0) (color 0 0 0 0) + (uuid f836b764-cf16-4592-b303-d7cc1b5bc742) + ) + + (wire (pts (xy 184.15 106.68) (xy 184.15 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0188f0d7-0c6f-460a-a314-9ad853ab16b1) + ) + (wire (pts (xy 152.4 306.07) (xy 160.02 306.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01fe49fd-34c0-4a30-a153-b83cfdc7700c) + ) + (wire (pts (xy 215.9 55.88) (xy 215.9 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 020a8b06-0745-4d5e-a115-7828b8241c57) + ) + (wire (pts (xy 266.7 250.19) (xy 266.7 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 024ab09e-2847-4719-81e8-3641c4517419) + ) + (wire (pts (xy 149.86 179.07) (xy 157.48 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 042431df-8997-4afa-9f8a-1b3a07be49c2) + ) + (wire (pts (xy 215.9 177.8) (xy 215.9 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07b5cd87-99de-4e53-b188-60edbfb6b4bb) + ) + (wire (pts (xy 266.7 213.36) (xy 266.7 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 099ff5ca-181a-4c45-bb31-f8623908f7fc) + ) + (wire (pts (xy 241.3 300.99) (xy 247.65 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09b71657-aeaf-440b-95c3-f6d5ce24cf00) + ) + (wire (pts (xy 186.69 335.28) (xy 190.5 335.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a8c96fb-a9b9-4fe2-9148-749f6f28dce5) + ) + (wire (pts (xy 219.71 334.01) (xy 219.71 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c0ca77a-21a7-4def-8357-54eb00de42cb) + ) + (wire (pts (xy 156.21 91.44) (xy 162.56 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c379684-de1f-47a2-9f76-b2fe98abaf2c) + ) + (wire (pts (xy 154.94 208.28) (xy 161.29 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c460c96-c85b-4b6f-9dac-dedb64ad0aaa) + ) + (wire (pts (xy 212.09 297.18) (xy 218.44 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d34281a-80f5-432c-9418-4c7a1eec5164) + ) + (wire (pts (xy 156.21 260.35) (xy 184.15 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ec2d6c7-1e00-4a61-8395-35fc46aa1217) + ) + (wire (pts (xy 260.35 213.36) (xy 266.7 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1157c573-b48f-444d-8d1e-4e484184d6d0) + ) + (wire (pts (xy 156.21 91.44) (xy 156.21 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 117b3060-5607-44f1-bde1-9bad0037464d) + ) + (wire (pts (xy 153.67 342.9) (xy 161.29 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 132ff095-de05-4de4-ac1f-436281306213) + ) + (wire (pts (xy 149.86 54.61) (xy 154.94 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13a0c3db-62c4-4485-b009-b1a1a737aa5b) + ) + (wire (pts (xy 212.09 304.8) (xy 218.44 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13cecbd7-8dc3-4c53-9e92-373ec2970522) + ) + (wire (pts (xy 177.8 91.44) (xy 187.96 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1695a6a5-6ba4-4c86-a24f-c9bc2cf0f585) + ) + (wire (pts (xy 156.21 142.24) (xy 160.02 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17a0dfbc-4736-4e1b-9227-f24baa62386a) + ) + (wire (pts (xy 151.13 255.27) (xy 158.75 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18744864-7051-43e2-830a-af7aedf26ece) + ) + (wire (pts (xy 269.24 337.82) (xy 269.24 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18986e90-711d-44df-8d0c-4e2df4d620bb) + ) + (wire (pts (xy 214.63 133.35) (xy 214.63 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19132b33-001e-4c03-bff4-e5f34153f52f) + ) + (wire (pts (xy 182.88 223.52) (xy 182.88 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 194447a5-8dd5-416c-92c0-1d3f89ec6bf1) + ) + (wire (pts (xy 176.53 54.61) (xy 186.69 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19f29fea-4c8f-4048-a673-8b3045dc78b2) + ) + (wire (pts (xy 158.75 255.27) (xy 162.56 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1df7ac18-7263-4a30-9f1f-72063cf407d2) + ) + (wire (pts (xy 328.93 76.2) (xy 289.56 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f38e433-0b20-45ef-80c7-fb69bf237030) + ) + (wire (pts (xy 148.59 142.24) (xy 156.21 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20404745-8876-4935-949b-ea1d57194464) + ) + (wire (pts (xy 351.79 280.67) (xy 398.78 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21acd045-5974-4081-a672-cc0a4ce0f881) + ) + (wire (pts (xy 184.15 260.35) (xy 184.15 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22fa6f08-57f9-4ca6-9b1b-305869cad03f) + ) + (wire (pts (xy 185.42 311.15) (xy 185.42 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2442c7c0-6481-4344-81d9-6bc5db295f5b) + ) + (wire (pts (xy 149.86 64.77) (xy 157.48 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 249780ff-d186-4560-b44f-1657cf67441c) + ) + (wire (pts (xy 160.02 306.07) (xy 160.02 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2539e9c8-191c-4542-9853-b4ac6c40e529) + ) + (wire (pts (xy 269.24 300.99) (xy 269.24 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25be2ca9-daf9-4c23-b15d-1cec54e2a3d8) + ) + (wire (pts (xy 156.21 106.68) (xy 184.15 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 265a6ab9-e920-40a4-bf36-8ac60388e347) + ) + (wire (pts (xy 161.29 322.58) (xy 186.69 322.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2718de20-1949-49ca-adb9-ee3d2eb1bf72) + ) + (wire (pts (xy 154.94 168.91) (xy 154.94 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 276b41e3-3dff-4554-8b40-5d0b7646d127) + ) + (wire (pts (xy 266.7 96.52) (xy 266.7 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2cf7ce1a-c8ed-4296-87e1-f91351593266) + ) + (wire (pts (xy 209.55 177.8) (xy 215.9 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2eadcfba-98a0-4d26-aeab-76db8428c0b3) + ) + (wire (pts (xy 148.59 132.08) (xy 153.67 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3071f391-af7c-403c-889b-750c98f27336) + ) + (wire (pts (xy 153.67 132.08) (xy 160.02 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3401673e-05b0-4b5b-96ae-16c75ab75c24) + ) + (wire (pts (xy 261.62 96.52) (xy 266.7 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3443b504-32ba-48e0-ba19-0ee1b512b05f) + ) + (wire (pts (xy 177.8 245.11) (xy 187.96 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34657f6e-0279-41c5-ad32-c291d6221788) + ) + (wire (pts (xy 158.75 332.74) (xy 158.75 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37192eed-8a3e-403b-9c27-483aa38f7840) + ) + (wire (pts (xy 288.29 153.67) (xy 328.93 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38415bdc-471d-4725-8ef2-81b165c36d40) + ) + (wire (pts (xy 217.17 92.71) (xy 217.17 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38d275c3-ef4c-4da2-b4e5-ee2aba3673af) + ) + (wire (pts (xy 158.75 101.6) (xy 162.56 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a5b2bb4-1632-49e7-8851-4258a9d6ac10) + ) + (wire (pts (xy 398.78 185.42) (xy 398.78 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c3a8862-10bd-4254-adbd-927d343d8baa) + ) + (wire (pts (xy 208.28 140.97) (xy 214.63 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dc5615e-ee6c-47f9-b341-5232aa839f0d) + ) + (wire (pts (xy 182.88 57.15) (xy 186.69 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3deecd18-32b5-410d-b6fb-6b87dae4d113) + ) + (wire (pts (xy 157.48 198.12) (xy 182.88 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e866b51-88e8-4ead-8325-3366dbef1886) + ) + (wire (pts (xy 182.88 69.85) (xy 182.88 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3eb95e2b-f335-41e0-a833-c68fbbb7b70a) + ) + (wire (pts (xy 209.55 63.5) (xy 215.9 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 400f3d1c-aef0-45c6-b78d-9e6ff0094b70) + ) + (wire (pts (xy 157.48 44.45) (xy 182.88 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4011a928-fd49-4ed6-9e37-987d3e0213c0) + ) + (wire (pts (xy 215.9 209.55) (xy 215.9 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42e4cc90-d319-4454-b186-a25c8684aa85) + ) + (wire (pts (xy 153.67 147.32) (xy 181.61 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45af237c-a17e-4c14-8f6c-eaa55909bd23) + ) + (wire (pts (xy 238.76 213.36) (xy 245.11 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45babee1-1ae0-48c1-b049-fb3a007efa9f) + ) + (wire (pts (xy 182.88 44.45) (xy 182.88 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4635bb17-abde-4e89-a8c3-9093b232f8e0) + ) + (wire (pts (xy 215.9 63.5) (xy 215.9 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47b8b0b2-fb34-4ba3-bb41-ea250f7475fb) + ) + (wire (pts (xy 186.69 322.58) (xy 186.69 335.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ae24c47-a4c4-4f8f-a762-4b3eb070fdd1) + ) + (wire (pts (xy 259.08 137.16) (xy 265.43 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bbd3c9c-f67a-4449-b465-a099ccd56bb5) + ) + (wire (pts (xy 182.88 210.82) (xy 186.69 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cdddd0c-27b3-4601-8f77-246f9f93b43f) + ) + (wire (pts (xy 240.03 96.52) (xy 246.38 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ce03109-5b01-4e2d-8cda-537dc6bc37f6) + ) + (wire (pts (xy 328.93 153.67) (xy 328.93 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cfce076-2846-4b7c-8486-0739f82de4c7) + ) + (wire (pts (xy 184.15 81.28) (xy 184.15 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ed09c37-3f6f-4ad3-806f-48564b59603e) + ) + (wire (pts (xy 398.78 109.22) (xy 351.79 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4edecee9-ec38-4f4f-b4b6-b0542d07f094) + ) + (wire (pts (xy 157.48 218.44) (xy 161.29 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fe43d52-06c4-4829-89db-ab260eb821bd) + ) + (wire (pts (xy 266.7 59.69) (xy 266.7 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50dcaeec-4dc7-4e18-996e-0f6692c17cdf) + ) + (wire (pts (xy 156.21 245.11) (xy 162.56 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52cc2c77-fe39-4ec9-8196-ee1630b25f63) + ) + (wire (pts (xy 219.71 341.63) (xy 219.71 339.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5737eff1-46a4-451d-a93d-568f41346ba4) + ) + (wire (pts (xy 179.07 295.91) (xy 189.23 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 583b72d6-a0ff-4f01-8f9f-2bc260a36887) + ) + (wire (pts (xy 182.88 176.53) (xy 186.69 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 590a9503-41c7-42c0-bcb6-f826b3e86849) + ) + (wire (pts (xy 153.67 132.08) (xy 153.67 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b064771-bef1-46e1-9bec-282e8099c7fa) + ) + (wire (pts (xy 181.61 134.62) (xy 185.42 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d3049c6-d2fb-4b18-b9f4-484881f8a3bd) + ) + (wire (pts (xy 175.26 132.08) (xy 185.42 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e24faca-e7de-418f-8419-935d73dabdec) + ) + (wire (pts (xy 218.44 297.18) (xy 218.44 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 649894b6-09d3-4965-ab7d-eb6187710f02) + ) + (wire (pts (xy 328.93 317.5) (xy 328.93 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65110f77-89d7-45a0-8451-3b0dd803ba06) + ) + (wire (pts (xy 180.34 332.74) (xy 190.5 332.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6518b92d-2bd8-48e3-bcea-5a437856c1e8) + ) + (wire (pts (xy 157.48 158.75) (xy 182.88 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65c1eb6e-e200-4907-b5c3-30f1678b9a12) + ) + (wire (pts (xy 182.88 215.9) (xy 186.69 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6635343f-7452-476a-a83d-2e946cace03a) + ) + (wire (pts (xy 176.53 64.77) (xy 186.69 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 671ed8ed-d61e-4dd2-be57-6831a18074fa) + ) + (wire (pts (xy 151.13 245.11) (xy 156.21 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68e83ff8-ec1c-4ab5-8d57-888a823d8c29) + ) + (wire (pts (xy 209.55 170.18) (xy 215.9 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a9ba0e6-1335-468d-b022-d8114bda840b) + ) + (wire (pts (xy 156.21 121.92) (xy 181.61 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b7cb291-462e-4b6d-9ec6-ddd56ac66b97) + ) + (wire (pts (xy 157.48 179.07) (xy 161.29 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d75a089-67ed-47c2-a6fd-2bcd988f00a5) + ) + (wire (pts (xy 156.21 245.11) (xy 156.21 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70391817-de8f-4917-9d5f-06982799035d) + ) + (wire (pts (xy 208.28 133.35) (xy 214.63 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 703bd1cf-91a6-40c4-9e91-66e64197da60) + ) + (wire (pts (xy 182.88 184.15) (xy 182.88 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 728b41c4-83cd-4785-b546-296d273b04cc) + ) + (wire (pts (xy 156.21 142.24) (xy 156.21 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7295bda7-5fb9-485a-ab40-6e4ecf896673) + ) + (wire (pts (xy 186.69 340.36) (xy 190.5 340.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74655f98-0c0a-41b9-a4bc-4eeba28dbd11) + ) + (wire (pts (xy 181.61 121.92) (xy 181.61 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75dde847-8c76-4f88-b67c-06d78c55ce30) + ) + (wire (pts (xy 260.35 173.99) (xy 265.43 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76582f31-88fc-40bb-b409-ae5fbf97ed67) + ) + (wire (pts (xy 182.88 198.12) (xy 182.88 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78209d57-1928-4a88-b17b-87c6ada7486e) + ) + (wire (pts (xy 158.75 81.28) (xy 184.15 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78bf1fba-0899-4ff1-81b1-198da12f5992) + ) + (wire (pts (xy 265.43 137.16) (xy 265.43 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7911fc7f-4792-4e0e-8bf7-cc083851c5c8) + ) + (wire (pts (xy 180.34 342.9) (xy 190.5 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a4d307c-249e-4f98-b654-8679af25ccd1) + ) + (wire (pts (xy 184.15 252.73) (xy 187.96 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b09830a-c0a1-49ed-a592-52cc0fe25e21) + ) + (wire (pts (xy 154.94 223.52) (xy 182.88 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b46a4f2-1e7b-402c-928f-7995c2565e65) + ) + (wire (pts (xy 175.26 142.24) (xy 185.42 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80282a47-61dd-4c77-8f59-ad020dad75b3) + ) + (wire (pts (xy 177.8 101.6) (xy 187.96 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80e69018-f851-43f4-8ee6-83402d98fe72) + ) + (wire (pts (xy 179.07 306.07) (xy 189.23 306.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81fccb6a-583a-4e91-9ba4-9a6e52b843d6) + ) + (wire (pts (xy 154.94 168.91) (xy 161.29 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8310c49a-ebc2-4b7a-aa6d-076870c93015) + ) + (wire (pts (xy 184.15 247.65) (xy 187.96 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 870a92a3-735a-4d9d-93d4-fcf13b5b09a1) + ) + (wire (pts (xy 185.42 285.75) (xy 185.42 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 871e48f5-47e3-4f60-a8ee-c9cbc6819069) + ) + (wire (pts (xy 157.48 64.77) (xy 157.48 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 895c73c5-b230-46d1-b137-ac1c61a8b81a) + ) + (wire (pts (xy 217.17 100.33) (xy 217.17 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c07a5af-dfc1-4097-8ddf-aed8f0d2088e) + ) + (wire (pts (xy 176.53 218.44) (xy 186.69 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c82d723-e883-4df5-a972-a95f14ad7bf1) + ) + (wire (pts (xy 158.75 234.95) (xy 184.15 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dfbb489-73f0-4297-aba6-44481dd38fd3) + ) + (wire (pts (xy 158.75 347.98) (xy 186.69 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 902abb57-7a55-4cb3-920a-7050adbaccb9) + ) + (wire (pts (xy 158.75 332.74) (xy 165.1 332.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93fcd7f0-d2d9-4f03-8754-3fdb871ed82c) + ) + (wire (pts (xy 398.78 280.67) (xy 398.78 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94fcd962-6a7d-4aff-bc41-299ca5573df6) + ) + (wire (pts (xy 149.86 168.91) (xy 154.94 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9816ca61-5aa2-40fe-b29e-b5950aca7099) + ) + (wire (pts (xy 328.93 279.4) (xy 328.93 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a44adc6-0240-4444-bf21-10d4c7aaa0f6) + ) + (wire (pts (xy 217.17 246.38) (xy 217.17 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cd0a0c0-2c0c-4a15-8ab2-96e08ffa7c03) + ) + (wire (pts (xy 328.93 107.95) (xy 328.93 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e9618db-5c17-478e-9b19-b7b49345de45) + ) + (wire (pts (xy 151.13 91.44) (xy 156.21 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0bff74b-1001-4d1d-bbc4-08614edf4f38) + ) + (wire (pts (xy 158.75 101.6) (xy 158.75 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1c59b4f-0ad5-4f0d-9fdd-9520449e9773) + ) + (wire (pts (xy 149.86 218.44) (xy 157.48 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a317499e-38b6-487c-996e-7c9a7729a221) + ) + (wire (pts (xy 184.15 234.95) (xy 184.15 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a33f9077-9d43-48c5-8246-b54053d344a1) + ) + (wire (pts (xy 185.42 303.53) (xy 189.23 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5f07074-17df-4061-b7c6-06da42aab89d) + ) + (wire (pts (xy 218.44 304.8) (xy 218.44 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a757ff2f-e5dc-4394-8997-3074e1dc4d79) + ) + (wire (pts (xy 176.53 168.91) (xy 186.69 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab11d54c-045f-4d24-a889-9c4e3372b10a) + ) + (wire (pts (xy 217.17 254) (xy 217.17 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac9e9079-02e5-4a3a-96f9-f730812dd32f) + ) + (wire (pts (xy 186.69 347.98) (xy 186.69 340.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid accb40e8-c583-4846-8bbf-c2f572700e4b) + ) + (wire (pts (xy 210.82 246.38) (xy 217.17 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af151487-6779-489a-9f25-97dc669d4523) + ) + (wire (pts (xy 157.48 295.91) (xy 157.48 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afc5029c-3af1-4be9-a757-be6c22d09ab4) + ) + (wire (pts (xy 157.48 179.07) (xy 157.48 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b02592a5-23e6-48c4-a3f4-74720209baa1) + ) + (wire (pts (xy 177.8 255.27) (xy 187.96 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b09e612b-7c01-49a4-8e58-75b114d6673d) + ) + (wire (pts (xy 151.13 101.6) (xy 158.75 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b119667d-4d40-4ea6-80f0-3731bf455381) + ) + (wire (pts (xy 215.9 170.18) (xy 215.9 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4131a1d-48a0-4d6b-949e-f0c0604b58e8) + ) + (wire (pts (xy 237.49 137.16) (xy 243.84 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6ec802e-bcac-400f-9c1e-5217f9603cd7) + ) + (wire (pts (xy 160.02 306.07) (xy 163.83 306.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b75f6961-5de2-4101-8d43-c90ff3c500fa) + ) + (wire (pts (xy 260.35 59.69) (xy 266.7 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7e20ed3-0d7f-41b8-9f64-f5e1d3e311b7) + ) + (wire (pts (xy 160.02 285.75) (xy 185.42 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7fa278a-ee8f-4636-9191-f7fb3f0176eb) + ) + (wire (pts (xy 238.76 59.69) (xy 245.11 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b820b9e9-7368-4816-a845-84e9f51711e9) + ) + (wire (pts (xy 184.15 99.06) (xy 187.96 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd77ecbb-f4e8-4fdf-a6d1-044c03660f1a) + ) + (wire (pts (xy 213.36 341.63) (xy 219.71 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfc9ac77-c072-4977-834a-29f93d0ba2d1) + ) + (wire (pts (xy 158.75 255.27) (xy 158.75 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfcef891-0169-4d2c-b0d3-39c93db50b11) + ) + (wire (pts (xy 213.36 334.01) (xy 219.71 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c03dced1-7d3b-4928-bca3-8a750284db73) + ) + (wire (pts (xy 153.67 332.74) (xy 158.75 332.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c083fdf7-a6ec-4b25-8d40-da6c70e70336) + ) + (wire (pts (xy 157.48 311.15) (xy 185.42 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1cf35d5-6b71-41b8-8109-4d14c61217cd) + ) + (wire (pts (xy 176.53 179.07) (xy 186.69 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2fae08f-8236-4301-8f62-7537ca330ce7) + ) + (wire (pts (xy 215.9 217.17) (xy 215.9 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3d82557-c44e-4a4a-be06-929d9ffb41bd) + ) + (wire (pts (xy 161.29 342.9) (xy 161.29 322.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5c1ca63-6999-4c54-bc12-837926cafe37) + ) + (wire (pts (xy 154.94 54.61) (xy 154.94 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c61121e3-8822-4842-93cc-63705b6b496c) + ) + (wire (pts (xy 182.88 171.45) (xy 186.69 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca044524-cb4c-45e3-80ba-3e71ccf2838d) + ) + (wire (pts (xy 210.82 254) (xy 217.17 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb92084e-b0f8-42c4-b502-901f1c093657) + ) + (wire (pts (xy 210.82 92.71) (xy 217.17 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ccdcc4bf-2d92-4e3e-8853-69ceabb35b6a) + ) + (wire (pts (xy 161.29 342.9) (xy 165.1 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd5d1d6e-96aa-4732-a817-9484a5ed4e24) + ) + (wire (pts (xy 242.57 337.82) (xy 248.92 337.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfa80e8c-ec40-4b90-af86-c1b1ab3b2771) + ) + (wire (pts (xy 157.48 64.77) (xy 161.29 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d05a953a-2d7a-4682-8da9-c064336aef5a) + ) + (wire (pts (xy 182.88 62.23) (xy 186.69 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0d50035-4336-4ba1-b609-46c3a23ee333) + ) + (wire (pts (xy 240.03 250.19) (xy 246.38 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1338606-e75f-4e37-a5f6-cd1009a58bc2) + ) + (wire (pts (xy 214.63 140.97) (xy 214.63 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6a08959-bf6b-4bf1-974a-89d0f922487f) + ) + (wire (pts (xy 181.61 147.32) (xy 181.61 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6b983bf-2fc2-42c9-92ae-0c4512ee0e28) + ) + (wire (pts (xy 157.48 218.44) (xy 157.48 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6d01933-780f-43b1-b93e-314a7caeda8f) + ) + (wire (pts (xy 154.94 69.85) (xy 182.88 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d862b0f8-3f5c-4026-b613-d6c2bfc33a23) + ) + (wire (pts (xy 261.62 250.19) (xy 266.7 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d968ae1a-d7ec-4b5a-bf2f-77571463a055) + ) + (wire (pts (xy 181.61 139.7) (xy 185.42 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d984060c-7c5e-4f8e-9a7b-76e74b0b8ede) + ) + (wire (pts (xy 264.16 337.82) (xy 269.24 337.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dafe71e3-cf9c-45f4-9f99-3858e7b1d92c) + ) + (wire (pts (xy 262.89 300.99) (xy 269.24 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcf9e0af-c569-4ded-8aa0-a1e132f9dd4e) + ) + (wire (pts (xy 176.53 208.28) (xy 186.69 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dee84018-230d-4b20-ac54-4f790ecd20dd) + ) + (wire (pts (xy 209.55 55.88) (xy 215.9 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dffe7d6d-e0fc-42fa-82ea-e2a26c81437c) + ) + (wire (pts (xy 209.55 217.17) (xy 215.9 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e17e6741-6346-4397-9b23-cf97198baebe) + ) + (wire (pts (xy 184.15 93.98) (xy 187.96 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5ed3dbf-1d45-4b89-b266-01de2391d940) + ) + (wire (pts (xy 154.94 54.61) (xy 161.29 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e84bff19-7cb4-4ea2-88bd-b5203055d947) + ) + (wire (pts (xy 292.1 317.5) (xy 328.93 317.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e87784a4-800a-479d-8c61-3df15227cb7e) + ) + (wire (pts (xy 152.4 295.91) (xy 157.48 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb1251b2-ae16-45a8-939c-a6fe2ae1afbf) + ) + (wire (pts (xy 209.55 209.55) (xy 215.9 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb2b6497-472a-4dd9-91b7-f5c32ffaa403) + ) + (wire (pts (xy 149.86 208.28) (xy 154.94 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebcefe6b-dd87-4b3d-ac57-95418fb0a0c1) + ) + (wire (pts (xy 154.94 184.15) (xy 182.88 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed429acf-a412-494d-9c8b-bf8ea7a5c46f) + ) + (wire (pts (xy 182.88 158.75) (xy 182.88 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee116c99-74ee-4d85-9e3c-5d4094219dff) + ) + (wire (pts (xy 154.94 208.28) (xy 154.94 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef76c774-4802-498b-a7ef-e4842ca7eabd) + ) + (wire (pts (xy 328.93 229.87) (xy 289.56 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f072c9ee-5a16-4d4e-aff2-5322e6ac345c) + ) + (wire (pts (xy 157.48 295.91) (xy 163.83 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1a1b2aa-5902-498f-9a6f-9a3f37feb727) + ) + (wire (pts (xy 210.82 100.33) (xy 217.17 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f926e355-1bd1-4c74-8e5f-8d317ceaf73e) + ) + (wire (pts (xy 238.76 173.99) (xy 245.11 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbd0dd96-412a-4397-856c-e836cc0aae3a) + ) + (wire (pts (xy 185.42 298.45) (xy 189.23 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbfb5f06-26ae-4a06-9ad8-12638e34051b) + ) + (wire (pts (xy 265.43 173.99) (xy 265.43 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fcf30aca-2397-405d-a1b2-97c4b516f1b6) + ) + + (global_label "Q0" (shape input) (at 151.13 64.77 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0e3d4827-6a8f-4e73-801b-73bc5427e862) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.0506 59.8169 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q5" (shape input) (at 153.67 255.27 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 1bcf32ae-7afc-49f6-9bac-9e310050ac0f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 153.5906 250.3169 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P7" (shape input) (at 154.94 332.74 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 208c2ab3-2737-4762-92d1-881108042a47) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 154.8606 327.8474 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P6" (shape input) (at 154.94 295.91 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 27496378-3a6d-42f7-aff3-b569b01ec4b3) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 154.8606 291.0174 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q2" (shape input) (at 151.13 142.24 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 34ec6b98-849a-49f7-9fe2-c4299e167b51) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.0506 137.2869 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P1" (shape input) (at 152.4 91.44 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4b2bcdb6-6ceb-4859-a944-9a3975dfea8b) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 86.5474 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q3" (shape input) (at 152.4 179.07 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 5eccbeca-fc3c-44fe-b2c4-2e5577ccdeed) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 174.1169 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P4" (shape input) (at 151.13 208.28 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 66e6a5f8-3430-4fc0-b450-6583bc665200) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.0506 203.3874 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P3" (shape input) (at 152.4 168.91 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 72996414-96ec-465f-8934-980b06282ed7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 164.0174 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q1" (shape input) (at 152.4 101.6 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ac973dc0-b71b-4c4e-b607-16ba4d19933d) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 96.6469 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P2" (shape input) (at 151.13 132.08 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid afa4c9e3-6484-4ce2-a7d0-0d3d7775ebcb) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.0506 127.1874 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P0" (shape input) (at 152.4 54.61 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid bddf99e8-955a-4a1b-bbb8-6290013930d1) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 49.7174 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q6" (shape input) (at 154.94 306.07 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ca63922b-6550-4677-98a7-61e313adf56f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 154.8606 301.1169 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q7" (shape input) (at 156.21 342.9 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ed762fae-44e6-4914-a98d-7102d8dfae1d) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 156.1306 337.9469 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q4" (shape input) (at 152.4 218.44 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f5e7fe43-53f4-475b-8854-8cd0c6297690) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 213.4869 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P5" (shape input) (at 153.67 245.11 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f8388a64-4513-468d-aec5-b4371d162d2f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 153.5906 240.2174 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 201.93 335.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 016296a9-91cb-4876-be7b-da3aad6444a4) + (property "Reference" "U32" (id 0) (at 201.93 326.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 201.93 330.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 201.93 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 201.93 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1e7a718d-8bf2-403a-a74e-a7894c769896)) + (pin "2" (uuid 514c93eb-1356-406c-bb45-09f5413c0edd)) + (pin "3" (uuid c5c8765f-346d-416d-af22-7922269e4454)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 227.33 214.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 03c08a28-1c3c-44f7-bd3b-538cb9c850ec) + (property "Reference" "U37" (id 0) (at 227.33 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 227.33 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 227.33 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 227.33 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 342368d8-4baf-4856-9394-9b6807d56666)) + (pin "2" (uuid ad7f1c57-c09f-4a1c-a5a1-41bc9e0fe7b6)) + (pin "3" (uuid ff3b0034-7d4a-4736-97c4-f2ad04efd28a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 254 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 122e4314-e70c-415d-9f27-a8ca434150c9) + (property "Reference" "U46" (id 0) (at 254 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 254 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 255.27 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 255.27 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e1e521ef-6551-408d-b45a-debd4a9bea30)) + (pin "2" (uuid 6b2678e3-c417-4795-a322-71ee50f65a25)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 144.78 101.6 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 12a5af59-41a8-418a-af67-606fab5735bf) + (property "Reference" "U1" (id 0) (at 145.415 96.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 145.415 99.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 144.78 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e274b3d5-d86c-43fa-93e6-44c3497d3442)) + (pin "2" (uuid f1687134-8668-45d7-87c7-af1fa8026513)) + (pin "3" (uuid cae5a73d-d2e8-4982-b532-1dd8eb72cd23)) + (pin "4" (uuid 6613182f-2fa5-4839-9b53-fbc6c600b7cd)) + (pin "5" (uuid 0f1ed6ac-3eb1-4bda-be0a-5400932372ca)) + (pin "6" (uuid 75b54c3e-aab3-4acb-8c35-63e98f1bb11e)) + (pin "7" (uuid 952f4d1d-2c86-48e4-92d4-20fb5c92aa28)) + (pin "8" (uuid 578c9a59-ada7-477a-b152-d94d402b4de4)) + (pin "9" (uuid fefdf1dc-5c40-4288-af82-1454f557102c)) + (pin "10" (uuid 085aab07-85a7-4842-bb5b-4679e06b0112)) + (pin "11" (uuid 7ff42768-98e9-4461-934f-854dffd55989)) + (pin "12" (uuid d8837211-f944-46d5-a579-18cd90798d41)) + (pin "13" (uuid c39a8adf-8514-40a8-870c-1ca1d062e214)) + (pin "14" (uuid 1bc47e28-33c1-4b9a-8fad-0f964bae437d)) + (pin "15" (uuid 5c50d49c-9727-4b9e-9fba-7459595146cb)) + (pin "16" (uuid 5db54445-65c0-4bb1-a226-338bd1115f08)) + (pin "17" (uuid aec4cf97-a3df-4146-9b7e-02dc196b9abd)) + (pin "18" (uuid 7a1be5e2-cab7-493a-b514-0eb6960fe463)) + (pin "19" (uuid 68dd15e5-ee9b-4375-b9da-ec0fdaa6d16e)) + (pin "20" (uuid eda01076-3574-4315-be0a-9147597f028b)) + (pin "21" (uuid 4b7e7454-149a-4097-b3bb-5f0b626cb7d5)) + (pin "22" (uuid 9860e580-4d8b-4c4a-b790-87d1e45cbee9)) + (pin "23" (uuid bac1bcb5-2370-4fd3-9e3b-e71cfbe5e711)) + (pin "24" (uuid 956da3e1-538f-4262-b3af-b9f898c29d22)) + (pin "25" (uuid 22fcf49b-eb0d-4b9b-b1e0-32cc1b07c5d8)) + (pin "26" (uuid 6256646b-ec8a-407e-a5d2-429ac77a18d6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 254 250.19 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13e01e02-6612-4d25-af27-ebacfd70c2e0) + (property "Reference" "U47" (id 0) (at 254 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 254 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 255.27 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 255.27 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b8913072-fc19-4398-b0c8-021935d559c3)) + (pin "2" (uuid 2ce16561-2608-4c9d-862a-967c0de6591b)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 227.33 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1433ee69-2293-4298-85db-3b08b2e9dea0) + (property "Reference" "U35" (id 0) (at 227.33 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 227.33 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 227.33 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 227.33 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e3017627-e623-4ac4-a965-73100ff44ca8)) + (pin "2" (uuid f32ed12d-b573-46ff-9106-3884d6f6ade4)) + (pin "3" (uuid afb7a7a2-0b7e-4fee-be8a-13a65f582598)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 201.93 342.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17d984f8-6671-4034-a6b8-b7b26f51f136) + (property "Reference" "U33" (id 0) (at 201.93 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 201.93 337.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 201.93 342.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 201.93 342.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 11baacaa-6785-4564-8ceb-5c3eb2e349d0)) + (pin "2" (uuid 2fe4f788-e77f-4abe-bbe9-2db2dd9f3b01)) + (pin "3" (uuid e65a5dc6-9c44-4ad0-8696-4bd06c0dae45)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 143.51 208.28 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 182299f5-6304-4136-bb75-e103a6079caf) + (property "Reference" "U1" (id 0) (at 144.145 203.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 144.145 205.74 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 143.51 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0902f431-1079-425d-aae1-81b59c85776a)) + (pin "2" (uuid 78cf49c2-f182-40a6-9f05-b8543298078f)) + (pin "3" (uuid 025af8bc-41e4-4ec3-83c8-93ba35a80eda)) + (pin "4" (uuid 2fdf126f-495e-461d-982a-d7efb918cac9)) + (pin "5" (uuid 2fe64213-befc-4f2d-afa6-ab15288f4a03)) + (pin "6" (uuid 0a96d179-3c2b-4255-a351-d07000999ab1)) + (pin "7" (uuid 169126c0-c67b-495d-9396-09b3ddd0554a)) + (pin "8" (uuid baef2167-5304-4373-979d-1a57a0f37558)) + (pin "9" (uuid a5070900-71e7-47a5-a340-33c505b9e388)) + (pin "10" (uuid ed8d06d9-bd37-46f8-800c-2ce0ba7ef2fd)) + (pin "11" (uuid bd8803b2-a200-44df-9d1c-89510960bc17)) + (pin "12" (uuid 84182995-daaa-4208-b309-e6961be0e56f)) + (pin "13" (uuid 73786426-c073-438f-a717-bb76854c06f9)) + (pin "14" (uuid ab1d50ff-9db1-463a-affa-3d58da3a88f6)) + (pin "15" (uuid 33f1704c-a813-4169-b8b4-81e7c15d262b)) + (pin "16" (uuid 125a95f8-e4b0-4736-b84e-28d2849fb5e7)) + (pin "17" (uuid 1f5c9111-d45a-4138-ae52-83cc6393fb78)) + (pin "18" (uuid f0ece5b6-0e6e-4841-9956-b6bb14ec9d60)) + (pin "19" (uuid 636519fb-5a19-406d-87de-0db82823b687)) + (pin "20" (uuid 02eaf2fb-4a11-41a4-af22-02d40a0a36db)) + (pin "21" (uuid ff125798-5624-4afc-9f0b-3f21fd9e2b8c)) + (pin "22" (uuid 72f1874c-57ab-4dca-82d0-4ee9d057b9a0)) + (pin "23" (uuid 919329da-bf8a-4e29-b802-511999e6b129)) + (pin "24" (uuid 28d93197-19d2-446b-bc6f-2d90d70d2ffe)) + (pin "25" (uuid 79893158-34f7-42eb-99f5-1b3c8e212923)) + (pin "26" (uuid 49835638-c903-4309-a287-918dd3c86719)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 170.18 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 191658f5-93da-4853-9720-b98f303baf7c) + (property "Reference" "U11" (id 0) (at 170.18 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 170.18 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 864543fb-7903-4556-bfdc-e9b4a2e4b39c)) + (pin "2" (uuid 54df30f2-e356-4378-8810-50c9abc4775c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 252.73 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1e94f8a3-71f1-4ed5-886e-572050e2bd9e) + (property "Reference" "U43" (id 0) (at 252.73 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 252.73 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 254 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1667711d-6215-4c00-8b8d-a3f46da54e43)) + (pin "2" (uuid 37c36991-0583-4fca-995a-a8c1bf4fd48d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 167.64 142.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 20b16a90-083e-419e-9160-201697a88263) + (property "Reference" "U3" (id 0) (at 167.64 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 167.64 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 168.91 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3aa8bb57-708f-4462-aff6-900d942e8414)) + (pin "2" (uuid 0f6bb8d1-6330-430b-be76-fc9f844d5ca1)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 276.86 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2107f8f9-d43a-4615-9e76-df279a703348) + (property "Reference" "U50" (id 0) (at 276.86 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 276.86 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 276.86 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 276.86 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 61e85c0f-c1d4-48be-905f-8c54a6d1f2b7)) + (pin "2" (uuid b9299401-62d6-41ac-8b82-a692de1e151b)) + (pin "3" (uuid b54c57a6-5808-43b2-9c0e-f69b2b5d09b4)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 227.33 175.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28cdc606-c410-405a-a597-b1e26302c6d9) + (property "Reference" "U36" (id 0) (at 227.33 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 227.33 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 227.33 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 227.33 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5fc8d95c-eea0-49c3-8da0-50b5eee0636e)) + (pin "2" (uuid c798c61b-15b6-45d6-9fa9-19afe44ea795)) + (pin "3" (uuid 3f4ca737-64f0-44bb-b045-b1fcd8acae82)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 200.66 298.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28da4e16-fa3c-4ffb-a2ce-73450e5fbd61) + (property "Reference" "U30" (id 0) (at 200.66 289.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 200.66 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 200.66 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 55afd20f-269a-4aa8-87e9-6d09e4f126db)) + (pin "2" (uuid 51c0d34d-496f-40b8-a9cf-891e2304ea30)) + (pin "3" (uuid dd077c6a-5bb4-44ee-8971-ad4d38853e31)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 198.12 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 298803d4-1fe7-423e-864d-bda0d88bb183) + (property "Reference" "U20" (id 0) (at 198.12 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 198.12 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a2e2e2f2-385e-4598-87aa-4da92d886ec4)) + (pin "2" (uuid ba0aba9c-17af-4cfe-9c59-fa4dc468b8e9)) + (pin "3" (uuid aa7ac74a-c04a-4212-99b9-ec2bae113fcc)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 410.21 187.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3131ead7-880d-41dd-a7d4-69a2e2e1a1ba) + (property "Reference" "U56" (id 0) (at 410.21 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 410.21 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 410.21 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 410.21 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 55a24a0f-5545-4068-8cc8-cee8adc5a118)) + (pin "2" (uuid 4d8fb2cc-72c8-475c-a8db-4fdc4e0e656e)) + (pin "3" (uuid da433742-71fe-4c88-8217-5f705d86ee18)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 144.78 245.11 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 36f84787-ff60-4672-8fe2-ce27be287f38) + (property "Reference" "U1" (id 0) (at 145.415 240.03 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 145.415 242.57 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 144.78 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid baeae9df-92c2-45ab-abf6-b6310f95ecab)) + (pin "2" (uuid 7a968d38-ea86-4fc0-af88-36bb9feec87e)) + (pin "3" (uuid d5da5983-7cd6-4c78-8051-6c33d601e950)) + (pin "4" (uuid 1b5f78bf-8014-4ead-a46f-3afb9f52f2c8)) + (pin "5" (uuid 9bad13dd-119f-4cb8-aa71-c7f608e29375)) + (pin "6" (uuid 6b5a7959-00a7-4d42-aab0-003827d1d3f1)) + (pin "7" (uuid 5988e767-e2e3-48e1-9412-20a8f4f01cbd)) + (pin "8" (uuid 72373065-ae6b-44bb-9ad0-6609ee590dbb)) + (pin "9" (uuid d1e356ce-a083-46a7-8d9b-9d2ba6b55517)) + (pin "10" (uuid cb94e752-5bf3-4a06-bf64-619942e5a661)) + (pin "11" (uuid 80264499-cd14-4a8f-8d28-aab4d1dd220b)) + (pin "12" (uuid cb996210-76b7-4fa9-87f1-7beeaa32f024)) + (pin "13" (uuid 0896bfc4-250f-4dce-93b5-3988ba9c8d8b)) + (pin "14" (uuid a18f27b5-da62-4327-a8d6-2d0e77908516)) + (pin "15" (uuid fafe70e9-1ced-486a-9310-dcd388d29e51)) + (pin "16" (uuid c6c1b6b5-7695-403e-8529-6071906ec49e)) + (pin "17" (uuid edbec21b-52a3-4f9e-8b01-92e205bc8628)) + (pin "18" (uuid edc021a0-63bf-47b0-877f-ee6afb1d8a6d)) + (pin "19" (uuid 6ca33032-d690-47a4-ac7f-fe023d0645c2)) + (pin "20" (uuid 1d23963b-1000-4f03-9413-7d889f3410f3)) + (pin "21" (uuid 64b0ca0f-a038-41a4-8612-e3b4cef8216d)) + (pin "22" (uuid b4822fc8-36dd-44b9-95ec-fb6f60e2518b)) + (pin "23" (uuid 11d8b4ab-c251-47f6-9f0c-77117dca6e02)) + (pin "24" (uuid 7d9a5e54-ff8d-4f61-92cf-636951cea48b)) + (pin "25" (uuid 47d13650-0657-426b-ba4e-e415130ed1ba)) + (pin "26" (uuid 03eb6c01-4dc7-4e87-95f1-f66c2cc0d454)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 228.6 251.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38ba6b71-09ba-44fb-8eb8-bde78f5c06dc) + (property "Reference" "U39" (id 0) (at 228.6 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 228.6 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 228.6 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f7d027e8-388b-4ed6-ba98-814bce2901c0)) + (pin "2" (uuid 01c78526-709a-4838-a78d-48a9e287ad2e)) + (pin "3" (uuid ca220dfe-dc31-4b44-a43c-c8d77559726d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 143.51 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 392ae265-de8e-4198-957b-11a11d9f35ea) + (property "Reference" "U1" (id 0) (at 144.145 49.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 144.145 52.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 143.51 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7d539b12-62aa-46e4-8dd3-740637100d4f)) + (pin "2" (uuid d665d6d9-5ada-485d-a2e3-6c10a90d1158)) + (pin "3" (uuid 00a6a553-827c-46f4-8ad8-889704251d6f)) + (pin "4" (uuid 3b4f2277-9441-4562-9568-d58b167a5b85)) + (pin "5" (uuid 91c69623-779f-4ecf-abf8-91da7be7ab8a)) + (pin "6" (uuid 3adc09af-e553-44ff-8e13-ba23cb8cefb2)) + (pin "7" (uuid cbd7f66d-9b50-4c1f-a886-3ad7e9ef6e30)) + (pin "8" (uuid 52d2ee09-2103-400a-a554-65489902c3bf)) + (pin "9" (uuid 5092bac9-e0e1-4151-aea7-a644b47dd77d)) + (pin "10" (uuid 9be21fd3-34b4-4391-9abb-e1c6c53f1bc1)) + (pin "11" (uuid c1262f1c-efcf-4a1a-aa9f-f8a7fbafef26)) + (pin "12" (uuid fe4065a2-c3aa-407d-b467-15ec90dc0f7b)) + (pin "13" (uuid 623da8cb-1b49-42c2-aecb-3cdd26d128a9)) + (pin "14" (uuid 0673c4f0-b8e3-4594-8a16-381d19f0bb51)) + (pin "15" (uuid 9e5a7c46-7a97-4aae-bbf5-6f43149662b8)) + (pin "16" (uuid 3ff970c3-efdb-4919-a00a-e42b289ab6e6)) + (pin "17" (uuid 1b9e156c-806d-4294-a45b-9a908fbbe99b)) + (pin "18" (uuid 5c943cc0-fdbb-44a7-9eda-17baae85d587)) + (pin "19" (uuid ea3552ca-2c54-4a6f-8de8-47228af3a93e)) + (pin "20" (uuid 43bce81e-7788-4a25-934e-f820e80be0df)) + (pin "21" (uuid 5c51aba2-cb56-4571-b868-26a07e836ba5)) + (pin "22" (uuid 1f34141d-7071-4530-9e1f-a1e1151515fb)) + (pin "23" (uuid b0e62b7e-ad2f-4f60-9e32-fc0653df7488)) + (pin "24" (uuid c54807bd-6a4b-402e-9fe0-a8df6c73bb26)) + (pin "25" (uuid ae0eb246-f177-477a-8e50-ba93faa8db52)) + (pin "26" (uuid 4a00f095-c81b-414d-b293-3eb007164e3b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 196.85 142.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3bf98bc9-8590-44d0-92d2-bb4a26113ec4) + (property "Reference" "U19" (id 0) (at 196.85 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 196.85 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 196.85 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cdbc5fd9-992e-4859-9329-56a2940f1b1a)) + (pin "2" (uuid 81eea11c-0f7e-4ff4-a6ae-6f42047428a5)) + (pin "3" (uuid a8d3c259-4bd3-4f16-9e49-2f84310aaeb6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 143.51 168.91 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c3e10d0-d3a8-4360-91d6-b24cc8135a54) + (property "Reference" "U1" (id 0) (at 144.145 163.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 144.145 166.37 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 143.51 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2e71f947-ef0b-4ae0-abed-06ec85f6c709)) + (pin "2" (uuid 7bf13a1d-a63e-4e78-be07-fff5c1039a34)) + (pin "3" (uuid 8e6d3717-3cf9-4bfe-ba3e-6426f2ef9e24)) + (pin "4" (uuid e4b140ba-aae6-45d4-97e3-a06ad42e3f8d)) + (pin "5" (uuid bad5d6ff-14df-42a0-aade-f9d5e11f3383)) + (pin "6" (uuid 51a9e733-2cd5-4b16-821b-24cc56083082)) + (pin "7" (uuid edd19e8b-a67e-4e55-87be-c9d7e00f11ee)) + (pin "8" (uuid ae61fc48-b021-4f2e-8ad0-1f0a04ec80c1)) + (pin "9" (uuid 9f66e179-74e1-4c89-baee-f087b417360b)) + (pin "10" (uuid 7fd51317-eaef-4ef4-8369-3a515d6d48c6)) + (pin "11" (uuid 8023af92-9326-4476-9d8d-13ca3c8394e5)) + (pin "12" (uuid 043a6858-b391-4c91-8976-1ca8210dfeef)) + (pin "13" (uuid 47fd32f6-3aba-44c5-93f7-8749c77da7c8)) + (pin "14" (uuid f0dabf2f-81a5-4b5a-83fc-0423d8a57cf7)) + (pin "15" (uuid 402b7bfe-5394-492a-a24f-ae3d2bbc19b4)) + (pin "16" (uuid 379f02c3-2818-4e39-ae31-cd61650107a2)) + (pin "17" (uuid 76fcb589-a17a-49f3-8521-c4475005bd6b)) + (pin "18" (uuid 09a95304-5655-4a69-8068-59a9a68505e0)) + (pin "19" (uuid ba83321e-0ff6-480f-8ae2-8af0b09eca04)) + (pin "20" (uuid fd52c746-3560-4f2c-870f-7e288162c38c)) + (pin "21" (uuid 26f46f57-2b98-4948-917a-cdcfe6919c3e)) + (pin "22" (uuid a1ff3e9e-f02b-4adf-88c6-14e54b92a737)) + (pin "23" (uuid f1ff87c8-3bd0-4e76-8d07-28fa806a4241)) + (pin "24" (uuid fbd7ca1b-aeda-4428-b60d-0ba4387a27be)) + (pin "25" (uuid fd53f95d-0e70-4007-b1a0-26edb9b55ba0)) + (pin "26" (uuid 858c88c1-44ef-4f40-86c3-886a97dfb74b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 199.39 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3cbedf75-7f0e-4f73-ada1-1ca49ef6804e) + (property "Reference" "U27" (id 0) (at 199.39 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 199.39 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 199.39 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 199.39 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8a3abe01-402d-4db6-866c-a5b1bd2910b7)) + (pin "2" (uuid 36a2257b-f241-47ae-acf8-83a32159d956)) + (pin "3" (uuid 6e5e9832-b2ee-4647-b2cb-2520289c68c9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 280.67 318.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3edd3b5c-6d49-482e-a702-631141e5be40) + (property "Reference" "U53" (id 0) (at 280.67 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 280.67 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 280.67 318.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 280.67 318.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 444fb4b5-2770-463e-8bce-62ccf325eb92)) + (pin "2" (uuid b5e17403-fa47-422b-aaf5-78f9d5028805)) + (pin "3" (uuid 0d58db3e-a264-4337-9988-c2dccb72984b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 168.91 218.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 43913185-d50d-4456-9f0f-86ae1a22d419) + (property "Reference" "U9" (id 0) (at 168.91 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 168.91 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 170.18 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e6d5a540-9b20-4172-83c2-c676c1e77986)) + (pin "2" (uuid 0512b7a4-5336-499a-bcbc-864d6548f5d1)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 199.39 255.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 44d0e456-502a-4a54-a0de-b99834e2b92d) + (property "Reference" "U29" (id 0) (at 199.39 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 199.39 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 199.39 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 199.39 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0b797ae3-905a-4d12-8f09-ad567807112c)) + (pin "2" (uuid 5b7d0626-ff8f-4511-b744-1a359e70b221)) + (pin "3" (uuid 3a158ab8-cd55-4dde-95f8-c0ed05921df2)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 171.45 306.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 496c7318-f7da-4903-bb7f-d0bd009fa1ad) + (property "Reference" "U15" (id 0) (at 171.45 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 171.45 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 172.72 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e3f6dd3-b253-4a20-9cc6-af8a98768f4e)) + (pin "2" (uuid 24b72227-59c2-4113-83ab-974f81ac3c72)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 142.24 142.24 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4cb184a4-fa33-4735-85d9-0adf8743e8de) + (property "Reference" "U1" (id 0) (at 142.875 137.16 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 142.875 139.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 142.24 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 565bcc44-5d55-49f0-8f34-016b601270fc)) + (pin "2" (uuid 4604216f-df0e-4859-ad3d-e53c707885c3)) + (pin "3" (uuid e9f98e84-5f39-44b0-af82-a2a254174e82)) + (pin "4" (uuid 3be4275d-f64a-472d-a26f-06132455a922)) + (pin "5" (uuid 6ee2a1c9-9e5b-4baf-bd55-76c83af9c8dc)) + (pin "6" (uuid 533dd047-eb65-456b-a6a3-083a3bba0907)) + (pin "7" (uuid f6c9dae2-46e0-4809-a731-9c5052b5369e)) + (pin "8" (uuid 887da570-1a80-43aa-9f63-28f5c355154c)) + (pin "9" (uuid 5648b3a3-4623-4b9f-8070-2925dd8db198)) + (pin "10" (uuid f293a782-eb0c-41bb-a46c-40714905beaf)) + (pin "11" (uuid 2962e125-19d3-4597-a041-90dc9112ceb2)) + (pin "12" (uuid 4153833e-8353-4fe9-a162-e32cec303876)) + (pin "13" (uuid abda50e3-c29a-41a8-8dc1-aa5c1be99e6c)) + (pin "14" (uuid 113260d6-195d-43ed-89a5-53c1053092fe)) + (pin "15" (uuid ee899bd9-00ce-4479-9243-4329eb1c5130)) + (pin "16" (uuid 0e521bf5-5b76-41e3-bdcb-aadd2857ee00)) + (pin "17" (uuid ddea9f92-46aa-4381-abcd-5a8a5df9bd85)) + (pin "18" (uuid 991101bd-9d1f-427f-a31e-3a7e44bd6a5f)) + (pin "19" (uuid e73fecb3-2b51-4551-909b-13302ffa81e9)) + (pin "20" (uuid 7d1ad9ad-97a9-4c72-b340-788750d27f18)) + (pin "21" (uuid f08290df-bb03-48af-bdcb-ae139e469409)) + (pin "22" (uuid de7aba86-9784-4f09-933d-d64d7efae283)) + (pin "23" (uuid 07486970-fea6-496c-b563-5f979ac1b3ea)) + (pin "24" (uuid 8a7af35e-0264-4256-9b3f-1c04610f9e41)) + (pin "25" (uuid fe922c00-d11e-47e1-a7ae-4c160d388125)) + (pin "26" (uuid f66778b1-191f-4e0c-94ac-ca513c3a6ff6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 144.78 91.44 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5752dab0-fb5e-464d-8f10-f2e792f023c1) + (property "Reference" "U1" (id 0) (at 145.415 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 145.415 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 144.78 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 24c79df5-f8e6-4c6f-ae6b-e4edbba77e1d)) + (pin "2" (uuid fab74527-a264-4c93-b5f1-355f3c1704fa)) + (pin "3" (uuid c304d823-3d3b-4ef1-a65e-7e893e1afc91)) + (pin "4" (uuid 6d150c85-108d-4e8e-b697-e1e0d463d39f)) + (pin "5" (uuid 47b4c24f-06a1-4e69-98fd-df6530095c18)) + (pin "6" (uuid a2de0db5-159d-4905-b4c7-e0805af1186f)) + (pin "7" (uuid 728008d7-3e8f-498b-9956-fbf689726ad9)) + (pin "8" (uuid f1850766-1355-4fb3-a106-b239572686eb)) + (pin "9" (uuid a238d5e1-8b09-4678-a8d1-ddeda6c687b2)) + (pin "10" (uuid eb245994-f2f0-407c-b32c-4a1d8b60e812)) + (pin "11" (uuid ad2360e9-7bd5-488a-a2c5-54a56ea26c27)) + (pin "12" (uuid b8d9da7c-4a51-4c5d-b105-9eea6a92472c)) + (pin "13" (uuid bdbc7625-65c5-4b0e-a77e-25fe58ef9c85)) + (pin "14" (uuid 17114930-1cb3-4774-ae7a-f469fbb4f524)) + (pin "15" (uuid 6bd62b8c-d068-4fcb-9392-86fca6325d6e)) + (pin "16" (uuid 0456a166-7f0b-4db8-b85b-f7b2a8aa5210)) + (pin "17" (uuid cf0599ac-887e-49a8-8c07-0a71f6dc4006)) + (pin "18" (uuid 71965f29-efd4-41f3-89ce-a5b8098ced18)) + (pin "19" (uuid 4b9e3c3d-2a69-4250-9901-da9d163a3586)) + (pin "20" (uuid fb9d04de-2f49-47e0-ac43-246480152556)) + (pin "21" (uuid 37a860f1-663b-441d-a350-530f80276156)) + (pin "22" (uuid 8d36e403-584e-4517-85ee-006653498f34)) + (pin "23" (uuid f8e3a199-380e-4402-a04e-f83317440ee9)) + (pin "24" (uuid 6b678835-ff67-44a6-9d8d-f1feb46208ff)) + (pin "25" (uuid 9c5d9db6-44e5-4787-b34a-d75a138206bf)) + (pin "26" (uuid 199c58d7-b38f-4625-a928-05edf14a66ba)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 168.91 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58ed1363-51c2-4381-8c4b-87f60991e7ad) + (property "Reference" "U6" (id 0) (at 168.91 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 168.91 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 170.18 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0f91ef3a-25dd-474e-8a44-7b1082c5d0b0)) + (pin "2" (uuid 9af848b6-b391-4800-bfa4-30a8808dba6a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 171.45 295.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58f6379c-c382-46d7-8df2-f818946bc246) + (property "Reference" "U14" (id 0) (at 171.45 289.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 171.45 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 172.72 297.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 297.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92b7d808-0f3b-4697-be99-d4dcf30a442c)) + (pin "2" (uuid 046b21d4-70ac-4abe-96d4-412955a9eddd)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 252.73 213.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d193a27-b1eb-4e0c-a8dc-d260237e58d3) + (property "Reference" "U45" (id 0) (at 252.73 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 252.73 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 254 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3f3944ae-2f42-4d50-84f4-54f27a550427)) + (pin "2" (uuid 22b0cf0e-d9f7-49a2-8607-4899dd362a44)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 199.39 247.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d797f47-2d65-4bda-879c-50bf9446043b) + (property "Reference" "U28" (id 0) (at 199.39 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 199.39 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 199.39 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 199.39 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 00cda9be-211f-4d4c-98c0-e3dfcd78ba4f)) + (pin "2" (uuid bf1a4456-b299-4871-9339-4dc76e0ac0de)) + (pin "3" (uuid 31f46718-dc50-4d58-ae51-4740c19b5082)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 198.12 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5da9d3ff-1ec3-41c0-bebb-0d7c50f8bc71) + (property "Reference" "U21" (id 0) (at 198.12 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 198.12 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b94b999a-c2e5-4b56-bd8b-763e2b7ea659)) + (pin "2" (uuid 3a5470ab-1143-43e1-aea4-5f2f1b887870)) + (pin "3" (uuid 1d1d2623-2335-4bd8-9814-76ae8299e8d7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 427.99 186.69 180) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68151f0b-8ae4-4eaf-b49e-0f7dd8185c21) + (property "Reference" "U1" (id 0) (at 431.8 186.055 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 431.8 188.595 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 427.99 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 427.99 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3322eaff-ab50-4349-bb9e-ccc568efbd35)) + (pin "2" (uuid db40c7ca-3e16-44c9-953b-60c1eb98d2e7)) + (pin "3" (uuid 248e0888-5b7e-4606-804f-63cdd1a5740a)) + (pin "4" (uuid 81145c2f-e465-4825-9f44-764008dafc26)) + (pin "5" (uuid 2b34f613-eced-40b9-a92f-f4511a884682)) + (pin "6" (uuid 5df150fb-ce0f-41ac-9527-9e6b2f05daf5)) + (pin "7" (uuid de26afc7-95eb-45a9-be2d-0e886e99f72e)) + (pin "8" (uuid b5eb1f16-0165-4a4d-8b7b-300e4ef31cc2)) + (pin "9" (uuid 9136747b-95ea-40a3-8e83-76f79c9de17a)) + (pin "10" (uuid c2effdef-7106-4385-8051-48d5b3e9796f)) + (pin "11" (uuid c83d1c91-57cb-4a83-9f30-0efa1955e1b6)) + (pin "12" (uuid 476dc91a-b8b9-4670-9ea0-6215dc9f2280)) + (pin "13" (uuid ca745227-f082-4ca5-8107-62403e19834d)) + (pin "14" (uuid b3df6d88-578c-4690-a689-fd7b737dffb3)) + (pin "15" (uuid ca9db513-918c-4a8b-9073-921089637f65)) + (pin "16" (uuid b6b0bf74-efb6-4b0e-b002-d9f5b99d6eb2)) + (pin "17" (uuid 754c0523-04e9-4c94-a4c4-f073f92e4f71)) + (pin "18" (uuid 2cd500fa-e724-4014-a9ff-1af5a20f8584)) + (pin "19" (uuid c7330f9f-4b45-4d2f-b4ef-3cec5e8d5697)) + (pin "20" (uuid 91b07ec4-4ceb-4385-b019-c7067e380d71)) + (pin "21" (uuid 8ebfc5cb-0899-4242-94db-389e48fe98ae)) + (pin "22" (uuid 1c055760-144b-4ac6-8e4f-7b31fc3b2a5d)) + (pin "23" (uuid a1b43128-592f-41fe-9d46-35f48a399960)) + (pin "24" (uuid 5be0138a-2245-4552-8bcd-6a884159f89b)) + (pin "25" (uuid 2b7fa0ba-65dd-4e87-948b-16532789e743)) + (pin "26" (uuid a27683c6-191a-4fa4-b0c9-411d1998cea5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 199.39 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d5004b0-7eb3-43a9-af0c-ef3a15367ea6) + (property "Reference" "U26" (id 0) (at 199.39 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 199.39 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 199.39 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 199.39 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb0f64c3-575a-4c00-9e92-37a3ca48aa70)) + (pin "2" (uuid f71ca012-373b-4283-9fce-55f5b9cfde28)) + (pin "3" (uuid f68ceb2d-cd7c-4f46-adb1-ea98ecf263e3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 200.66 306.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73c44141-f4a5-4cff-8f83-d6b1cd66aba1) + (property "Reference" "U31" (id 0) (at 200.66 297.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 200.66 300.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 200.66 306.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 306.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2d3051f6-65db-438f-95a7-48dc44cea05b)) + (pin "2" (uuid 7f4f7cec-1f08-4eae-b2fe-d7c3f80b5d80)) + (pin "3" (uuid 67a98981-9d16-468a-b7da-97b410214a09)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 278.13 231.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 81a2c660-88f7-45f7-a834-801af42a5acc) + (property "Reference" "U52" (id 0) (at 278.13 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 278.13 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 278.13 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f25c18c8-e50f-48d5-b244-fb06430365b4)) + (pin "2" (uuid 8a33b8c4-3ed1-4e2a-a150-8f5e64a75635)) + (pin "3" (uuid 0b615107-2b35-431e-ad0c-bc83541523cc)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 170.18 255.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 838305b4-e028-49b4-90e0-81ea92ce66a2) + (property "Reference" "U13" (id 0) (at 170.18 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 170.18 252.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 256.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 256.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5b5d0244-8038-4162-b0bf-3199a723a024)) + (pin "2" (uuid 22e5e189-556c-48ee-b4c3-56640bbf0f41)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 340.36 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8402abe1-fd71-443a-bd41-db01c998904c) + (property "Reference" "U54" (id 0) (at 340.36 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 340.36 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 340.36 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 340.36 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8290d4f7-1896-42a7-959d-22557c5aefb4)) + (pin "2" (uuid 95374505-5e61-4ba5-96ca-804a6dfc5658)) + (pin "3" (uuid 79bbd1be-1eba-4ddb-a44b-831b7a8a1820)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 143.51 218.44 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8be5f330-50da-4718-9e12-cd4df78823a4) + (property "Reference" "U1" (id 0) (at 144.145 213.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 144.145 215.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 143.51 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid abe9da14-8500-4b96-875a-42a677a62408)) + (pin "2" (uuid d5dbab3d-1bb6-4899-80f4-58ef75326327)) + (pin "3" (uuid 2c0d83de-200d-432a-82de-fe4cc0ad2630)) + (pin "4" (uuid 2fccd05d-3bc7-467b-a5a4-ee80ac5cdb1b)) + (pin "5" (uuid b98f921a-dd0c-42c0-ad23-aeca11d80402)) + (pin "6" (uuid f2ef59c0-c47d-47b2-bc43-51d67a2c85d8)) + (pin "7" (uuid 66e8850a-3c78-4f7a-b15b-9f8ab86e7073)) + (pin "8" (uuid cc4b3755-e07a-44af-b641-3af7a3ad7283)) + (pin "9" (uuid a0d8d450-3001-4ccf-8a42-36a2268caf99)) + (pin "10" (uuid 19a5c2a5-415b-425d-a2cb-81afd76a73a9)) + (pin "11" (uuid ce625a9f-1266-4ba1-bb38-a194fb07f012)) + (pin "12" (uuid 61c26ad0-411a-4f58-97f8-28fd642afba6)) + (pin "13" (uuid 13c7fc0d-0c8a-4d6d-af40-630cd8a3c3a0)) + (pin "14" (uuid 93cf903c-72ce-4621-8651-3d03c0e1fd9a)) + (pin "15" (uuid c7b6aba0-cda9-40de-8ea4-01d8fd7b6d87)) + (pin "16" (uuid 660ecd0d-8835-4a47-ae0a-d69699362226)) + (pin "17" (uuid 40072d4b-c59b-4e67-b224-853029c10849)) + (pin "18" (uuid e5f12eef-f92d-4498-a4e5-23eaeba4c5f5)) + (pin "19" (uuid e39f9254-60c6-4aee-8210-563d1e1ad490)) + (pin "20" (uuid f6c97423-606e-40b6-9a54-64112d43c07b)) + (pin "21" (uuid c6764d21-a07b-4a7e-a16e-f1277c2228b4)) + (pin "22" (uuid 53afd35a-6371-4d65-8754-72485422f2dd)) + (pin "23" (uuid b6fa4fd0-167b-4cf1-b6b6-203433ae9b73)) + (pin "24" (uuid 77c5f0f7-57fa-4b20-982b-40368193b29c)) + (pin "25" (uuid 447cc40e-70ba-47b1-a740-d5a5f7589d3e)) + (pin "26" (uuid 56d987d3-7f20-4428-a6c5-bf16ef39da3d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 251.46 137.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8cc9b8e1-cb70-4a49-9ad3-7ba7f7a791d0) + (property "Reference" "U42" (id 0) (at 251.46 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 251.46 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 252.73 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 252.73 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d2321e0f-6263-41cd-9e4b-ccfc849f23f8)) + (pin "2" (uuid f97e2e2e-2d45-4c47-b56f-7ee744c1dc3e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 252.73 173.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 915da1a4-591d-48e6-95f2-2b0ef86074cf) + (property "Reference" "U44" (id 0) (at 252.73 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 252.73 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 254 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45d3844f-a74f-4b71-969a-3ede8e835fa6)) + (pin "2" (uuid 9ddaf37f-841f-42a1-a174-96ec8cf67ea7)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 198.12 210.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93623683-5365-4ad9-8de4-722d4ba6af4f) + (property "Reference" "U24" (id 0) (at 198.12 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 198.12 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 51824519-3e92-45be-8211-cf6f08dfe8b1)) + (pin "2" (uuid 1ad558c4-6a21-46ab-9097-8d14b217c241)) + (pin "3" (uuid d216837e-00ff-4c9d-8e2c-161f71529e3b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 172.72 332.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93a94af9-7b28-4809-b7e2-39126dcd0921) + (property "Reference" "U16" (id 0) (at 172.72 326.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 172.72 330.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 173.99 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 173.99 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 93ae62c5-2c3a-4ba2-a3fc-e7a960051fac)) + (pin "2" (uuid d131673c-91fb-4d87-b131-f4b83cc77cc1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 144.78 255.27 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9baa420d-fdae-41b7-8c8f-0582ba4d11ba) + (property "Reference" "U1" (id 0) (at 145.415 250.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 145.415 252.73 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 144.78 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 255.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 04d2c258-9c96-4932-a4f2-f5a8567679f6)) + (pin "2" (uuid e6ea4384-35a2-47d9-a2d7-cf2648952363)) + (pin "3" (uuid d38aefab-0fec-457f-b64c-9994fbcbf49a)) + (pin "4" (uuid bcc9489a-987f-48da-8aba-2d4693a9d1a3)) + (pin "5" (uuid 76b32ae8-782a-4c8b-b40a-3f510ca8ff1b)) + (pin "6" (uuid a9d9ea8a-387c-4f07-a84b-ab723594db1a)) + (pin "7" (uuid 4fbf88d8-e160-43ed-9760-6355e8ba3fb6)) + (pin "8" (uuid 3ccf2d36-74ce-4d7a-9209-171a0b2f9e08)) + (pin "9" (uuid 42d58f82-41d9-46b1-843e-984e11065034)) + (pin "10" (uuid f78212b3-20ed-495e-86cd-394124738448)) + (pin "11" (uuid 5d3e46f2-9bfa-42ed-be08-5069298dd8b9)) + (pin "12" (uuid 2353cb17-bbf9-4da3-a1f4-20cd896f1449)) + (pin "13" (uuid 30391405-93d1-44b2-9acb-96502603d061)) + (pin "14" (uuid 63b147cc-d9fa-45b1-a530-dda62bd654ba)) + (pin "15" (uuid 59ad253b-0e65-440c-8282-16618feecd17)) + (pin "16" (uuid cdce1845-e9ce-4ab1-a369-0177f4f313ff)) + (pin "17" (uuid 1551704f-60d5-4d67-99c1-23a620df56ad)) + (pin "18" (uuid 07cc5a4a-37cc-4897-ad7b-350cd2aa35c9)) + (pin "19" (uuid 0c2d73a0-69a1-421c-b310-0467baa8f61a)) + (pin "20" (uuid d095ac62-c149-4582-afe9-5bc80c92af86)) + (pin "21" (uuid 76b89cae-9404-4f1d-8c91-4cd03a2a8c0e)) + (pin "22" (uuid d10cc6af-45b6-4b28-a652-432b88206768)) + (pin "23" (uuid c720c52f-ce34-4ab3-8923-13204a0f34ed)) + (pin "24" (uuid d763ddbb-13ae-4b04-ad3d-30a687b3ac2a)) + (pin "25" (uuid b924ccc8-6dcd-41e4-908c-342b5fd84e6d)) + (pin "26" (uuid 51112e9b-0ed6-4ef1-a82a-7da87d9bebf3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 147.32 332.74 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9c575f03-cc11-479c-ada9-907841f6c6ed) + (property "Reference" "U1" (id 0) (at 147.955 327.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 147.955 330.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 147.32 332.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 147.32 332.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d11a010b-643b-4fde-85a5-958a450e5bb0)) + (pin "2" (uuid 231b32a9-4af4-46cc-8546-ce3a710f5ef9)) + (pin "3" (uuid 36424ef4-2eb5-45be-b77e-9844ae6fa9b9)) + (pin "4" (uuid 8f17902e-b82a-4f64-951c-40b07ce03283)) + (pin "5" (uuid 1dc8c737-141b-4990-9e40-2a02e462e0e1)) + (pin "6" (uuid ee6725c1-6bed-4c8f-8da9-f4b4668a8582)) + (pin "7" (uuid 32b490bf-2b0b-485f-8d47-5663abba6b9b)) + (pin "8" (uuid b9f36c67-3942-49c3-991f-7d67c3aaec0b)) + (pin "9" (uuid 08d3e5af-959d-46ed-ae39-9749ff64bfaf)) + (pin "10" (uuid 94d2eb99-f251-4410-ab12-a00c4a569596)) + (pin "11" (uuid cf571206-202b-4bcf-ad48-44772ceaeaf3)) + (pin "12" (uuid f88a92c9-d272-485b-9a7c-d183a38e0913)) + (pin "13" (uuid e18497c8-17b3-4022-a04a-0b8385fa9838)) + (pin "14" (uuid 89eef263-7e04-426c-8667-7e540075eaec)) + (pin "15" (uuid 278f2678-c6c8-458b-8063-b3d04186e9be)) + (pin "16" (uuid cfd6b6e1-5cef-47c7-8f8f-4c4d62e83f79)) + (pin "17" (uuid ffa9bc66-5546-461d-9f45-1f5e89275ffa)) + (pin "18" (uuid 11e9cfcd-274b-4f7f-b42a-ee3c2d2fab0d)) + (pin "19" (uuid 196c8b55-4fa2-4f87-90a0-3feb47ffbdbb)) + (pin "20" (uuid 020b27be-7709-4d1d-8047-536570391f9b)) + (pin "21" (uuid 6eaef3bc-82d5-47c0-9a44-0e2cbefb2773)) + (pin "22" (uuid 73bbda8f-db88-4aee-8dc1-cd83dcb33550)) + (pin "23" (uuid 50585206-679a-4d4a-b7ce-9d9d56817543)) + (pin "24" (uuid 049a23ed-a23b-464f-b83c-361579169503)) + (pin "25" (uuid 251f9333-f082-4c2a-931f-01236b1828f2)) + (pin "26" (uuid 1736b648-c6b9-4796-94d9-c310912ba916)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 143.51 179.07 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7b73dc5-f8f8-421a-9ac5-516ac02b1fd2) + (property "Reference" "U1" (id 0) (at 144.145 173.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 144.145 176.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 143.51 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f1bb41f7-1a19-4bb0-82fb-ece6f3a7793e)) + (pin "2" (uuid fe034079-ed85-4314-934a-fd25552c4fba)) + (pin "3" (uuid c42f3adb-5efb-40a5-8598-1371215b0094)) + (pin "4" (uuid 9f0d0805-5246-42a7-9fe1-d6b441d07649)) + (pin "5" (uuid eb04b06f-d867-4b2f-9119-8a7583e6882a)) + (pin "6" (uuid 64373dd4-fef2-4809-be31-b50582086161)) + (pin "7" (uuid 4a37a432-eaea-4965-8de4-66ffd6845f02)) + (pin "8" (uuid 7136b661-2f53-450c-bf65-fcb83c0e9e16)) + (pin "9" (uuid 64152160-6e5c-42ce-8a13-fd3dd242c49a)) + (pin "10" (uuid 0fa24a0c-d33b-4e17-878a-af8f04683499)) + (pin "11" (uuid 63da1b7b-61d6-45b7-aa17-11c4ae64fb2b)) + (pin "12" (uuid 8a47c772-8ced-429a-8cfa-12a626b11751)) + (pin "13" (uuid ae6c9b6b-412f-4f93-a1de-7732dc7df76e)) + (pin "14" (uuid 83358cdf-9c45-4390-bc7a-b0ad68081281)) + (pin "15" (uuid 598bbd79-2756-40d8-9900-09128eea67c7)) + (pin "16" (uuid 7cb8c698-515e-4b34-86b1-776dea72c39d)) + (pin "17" (uuid a0f0ddba-1df4-429a-b735-773070a480a6)) + (pin "18" (uuid f7225963-ebab-4dfe-bfc8-5c299a97b9b6)) + (pin "19" (uuid 371bbc8d-8202-4bb5-9592-3fdbc2b8961b)) + (pin "20" (uuid 398696ab-501d-4dbe-ae68-c56f5ba52372)) + (pin "21" (uuid 6c924cb6-a04d-485c-a852-e8485be82fdf)) + (pin "22" (uuid 4174245f-a06c-4206-82b1-5196050f6ab4)) + (pin "23" (uuid 953caa68-247c-4d13-8962-282bd8cf63a6)) + (pin "24" (uuid 110746cd-0886-46d2-bcc3-e4753ec43853)) + (pin "25" (uuid 3402beef-3ce8-430f-a38a-2e09a800ac47)) + (pin "26" (uuid 86f0f59e-b1c7-4a35-b8f4-fc5f3c7ef32a)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 226.06 138.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid acdf112c-3998-4be1-9187-be879542816e) + (property "Reference" "U34" (id 0) (at 226.06 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 226.06 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 226.06 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 226.06 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9b6a834f-c4be-49f5-8632-f85230f6115b)) + (pin "2" (uuid d2ccd0cd-2568-4cc8-89ea-0af057527e93)) + (pin "3" (uuid 619de573-442a-4a49-8170-379ac809a423)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 278.13 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ad09d93d-dcae-44df-adf5-414ef0375be2) + (property "Reference" "U51" (id 0) (at 278.13 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 278.13 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 278.13 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3b6fbe23-04b3-4af1-959f-4ddf6398bd12)) + (pin "2" (uuid c76e50a1-28f4-4e0d-81a9-5f40b0ad077b)) + (pin "3" (uuid 989c9114-a335-4f15-8266-2d952e9854c7)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 228.6 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ae25eb85-261c-4ec6-bc49-b9c09e370211) + (property "Reference" "U38" (id 0) (at 228.6 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 228.6 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 228.6 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 68ac00c2-da2e-42b3-b5ca-c92aeec9f497)) + (pin "2" (uuid 8d27a42d-cb65-48f5-b598-75dab1baf92b)) + (pin "3" (uuid 39a33eae-d1b8-4934-a4a3-8cc9e236344d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 198.12 171.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid afe6a2a5-0d83-4727-8c45-6c6aaa725593) + (property "Reference" "U22" (id 0) (at 198.12 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 198.12 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c0c6a1a8-7dbe-4081-a40d-e43d7fb1492c)) + (pin "2" (uuid 4bc8ef17-97fb-41e6-af91-d3a327df8d3f)) + (pin "3" (uuid 36d19482-5d4b-421c-a077-819c86a8cee7)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 198.12 179.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba6d809e-f970-49a7-90b9-ff0c7ef26408) + (property "Reference" "U23" (id 0) (at 198.12 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 198.12 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid acfa3aa9-1e17-421a-935c-d7962e1548af)) + (pin "2" (uuid b0c79fc0-7017-4158-8486-880f6564cf5f)) + (pin "3" (uuid eeeb501b-173b-49c6-9221-866c50092774)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 146.05 306.07 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bac40999-1215-4ee9-aa84-023b4b33dfe3) + (property "Reference" "U1" (id 0) (at 146.685 300.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 146.685 303.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 146.05 306.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 146.05 306.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 13445b7c-abbb-4869-b647-1e0f2c3f862c)) + (pin "2" (uuid 6c1908d3-05de-41fe-a56b-5e802af96df3)) + (pin "3" (uuid 058aca0d-af3d-4555-beab-e4550b3cb07d)) + (pin "4" (uuid ff4839f3-92c5-422b-b49e-1e527aca1f5c)) + (pin "5" (uuid e6d95228-c996-4c01-a375-370fa02afa4a)) + (pin "6" (uuid 0ce25f66-b714-4a1e-bd32-85b3f175c7f1)) + (pin "7" (uuid 2dfdb1b4-6928-4fc5-aa1f-37c52e722e69)) + (pin "8" (uuid 3c6b38d0-bea5-4e1f-adbc-865c65d5b82a)) + (pin "9" (uuid 799cd5ea-97f7-4c5e-a1f7-71492bd83b0a)) + (pin "10" (uuid 298878bd-6e85-4d4f-b030-7a94cb6a4fdf)) + (pin "11" (uuid e8ad357c-3273-4c77-baad-21113d7169cf)) + (pin "12" (uuid 54c873c5-98b6-44eb-9611-6cfb8621e3a9)) + (pin "13" (uuid db78332e-6cdd-4aa0-bd08-61afa3c7b033)) + (pin "14" (uuid d9ccd772-3955-4dfb-9086-57fb8efa92a7)) + (pin "15" (uuid 97745de6-7652-4c64-b9cd-103e66a13ae9)) + (pin "16" (uuid 1904f08a-df02-4d95-b736-a8092dc2a81d)) + (pin "17" (uuid 568ac4b3-cedc-40aa-a79b-317978270b5a)) + (pin "18" (uuid 39925029-e042-417a-a947-9eb6febff4f6)) + (pin "19" (uuid 63605866-a2b0-4340-bc60-9eaf1011b3c4)) + (pin "20" (uuid 566d8c3a-f2c2-47a8-9c7e-dfeceaadf11b)) + (pin "21" (uuid 8cab3573-4ec5-4dc3-97af-e22fac178bc2)) + (pin "22" (uuid 6dd26e0e-5878-4d4e-8920-2b205e706321)) + (pin "23" (uuid 92d3b1c0-1b87-43da-8c31-3a3f12f00895)) + (pin "24" (uuid b29faeca-7df9-49ac-bb49-e75dae904599)) + (pin "25" (uuid 65c59403-5616-41b9-9823-081bdb57f951)) + (pin "26" (uuid 67fe5f4a-8ef7-47cf-b3d1-95004d828b62)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 256.54 337.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb289a91-d904-4c26-be84-1e2a1590f094) + (property "Reference" "U49" (id 0) (at 256.54 331.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 256.54 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 257.81 339.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 257.81 339.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4e2b7078-c72b-441c-a14c-3bb11c64699d)) + (pin "2" (uuid 0f2f61a6-ddb1-4b26-bc2e-4b785614362e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 168.91 179.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb81f58f-2725-4f56-a94a-f9fe58de1bf6) + (property "Reference" "U7" (id 0) (at 168.91 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 168.91 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 170.18 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e73a8377-57ee-4d9e-b520-489a56a50253)) + (pin "2" (uuid f1907441-f3c0-415e-8968-4de0b02728ed)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 147.32 342.9 0) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bd13803d-7494-4dd6-886c-09c76b456f24) + (property "Reference" "U1" (id 0) (at 147.955 337.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 147.955 340.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 147.32 342.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 147.32 342.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 112a0408-36d9-4dd3-bf53-d7d7705af767)) + (pin "2" (uuid 7dbeb66a-d1cd-48a5-abd6-73abd163fc85)) + (pin "3" (uuid 5b0bfc0f-7371-4700-9d44-78fada545ab3)) + (pin "4" (uuid 9b4e17c2-0cac-4e17-bd66-62bcb91d3ee0)) + (pin "5" (uuid 7ddab928-2772-4e23-bc48-06ef69ee9288)) + (pin "6" (uuid 0366fcc8-6d51-46e2-8361-51620520251e)) + (pin "7" (uuid 2ae2306d-af51-4155-965c-d3a6ba206684)) + (pin "8" (uuid 579f1115-d2d9-4709-bd72-b1a592d5c044)) + (pin "9" (uuid e99bd029-e0de-4452-a63f-7d3518f8f1f3)) + (pin "10" (uuid e8d418f1-7e58-459e-92d5-16e5830bc680)) + (pin "11" (uuid c76377a4-9043-4430-aeef-9c223e51c758)) + (pin "12" (uuid fe1ba90e-ccbe-412a-aa50-350ec0d76dc4)) + (pin "13" (uuid 316abd37-3284-42ad-ba51-9296119b662b)) + (pin "14" (uuid c3b26afd-366d-491e-b54a-fdb0819e444e)) + (pin "15" (uuid 9d3bfc9d-677a-4417-a0d0-153dacd999f3)) + (pin "16" (uuid d7fdeb76-2739-476b-aa40-7eaf9e8d5538)) + (pin "17" (uuid 7d84dce9-b417-44de-9adb-eeb69bf8f34a)) + (pin "18" (uuid e62d09cf-bc99-4e47-b2b3-8d34969fa258)) + (pin "19" (uuid 0fbce7b4-1c04-4ed6-8aba-39525ae7bfb4)) + (pin "20" (uuid ed6ebc53-dfc8-4e8c-b609-a926f2829f89)) + (pin "21" (uuid b1a209a2-728d-42e3-ac94-b042e74c6094)) + (pin "22" (uuid 659a7731-82ae-42c4-9138-3767857a025e)) + (pin "23" (uuid 0b5d440a-682d-4e9a-a0be-18800f9c26bd)) + (pin "24" (uuid f2cc6107-a837-4ff5-a99f-8c2318d463d8)) + (pin "25" (uuid 6d53aa46-67a3-446e-8beb-972a461ff8d6)) + (pin "26" (uuid 86fca995-cf8c-404b-8900-870e7a78f75e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 142.24 132.08 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bd644ecb-f94c-499f-8772-e255dca18ed2) + (property "Reference" "U1" (id 0) (at 142.875 127 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 142.875 129.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 142.24 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 04edb8e5-ae86-40a3-8a87-fb0725d1fe7e)) + (pin "2" (uuid 1eadb75c-8ac9-4c7e-ba78-203641534729)) + (pin "3" (uuid e435b445-b6ae-4d84-9087-8d6530978066)) + (pin "4" (uuid ff7ff6ab-54ab-4e94-a461-2dcae2cc58dc)) + (pin "5" (uuid 1cedcd23-dca4-4555-8677-a00cb59faf22)) + (pin "6" (uuid d610d91d-2f67-4d26-83e2-d5786f043a26)) + (pin "7" (uuid fdb5a44c-f22e-44ff-8e92-db53b79d0b25)) + (pin "8" (uuid 7e7ffaaf-618f-451f-95a0-5a53195cf689)) + (pin "9" (uuid e1eb7977-6695-4793-a6cb-e24a8c85c0b1)) + (pin "10" (uuid c5b03053-8407-41d6-a7c7-3bb516309d70)) + (pin "11" (uuid c1f216b2-1f78-4663-b9e8-20a0a7e26397)) + (pin "12" (uuid 7de9402f-73b2-40b5-85c3-a49fafefb84e)) + (pin "13" (uuid f6f8ea26-cc62-445e-877e-0499f2fad9fd)) + (pin "14" (uuid ef3d3207-644e-4a55-b70d-3371d6ee6436)) + (pin "15" (uuid f98ed603-5405-4f45-84cf-1543018888bf)) + (pin "16" (uuid 8b07cf8b-09ad-4226-b01e-f1c1045b8a80)) + (pin "17" (uuid 2e7c8d11-95c4-4630-89c0-64786b618308)) + (pin "18" (uuid e9168e98-a31c-4021-8f8f-86333ff6ffb1)) + (pin "19" (uuid 7d1471c8-4359-4415-8ac3-7de3a145daaa)) + (pin "20" (uuid f6e8f013-e850-4c7f-b1fa-85d83e7d93eb)) + (pin "21" (uuid 87d0e355-042a-401a-97e2-fd5972bb7739)) + (pin "22" (uuid 6940fda7-cb2a-4266-92c5-a3440fb9b3fb)) + (pin "23" (uuid 2196bcfb-cf2b-4d8a-9841-c3afc97f98c1)) + (pin "24" (uuid 562480b4-52f3-41f5-99ff-2e092a461995)) + (pin "25" (uuid 961dbda6-83ff-4dd6-a7fe-02b4b4792712)) + (pin "26" (uuid 6feebd94-a209-41f6-b6fc-5634dc7019f8)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 231.14 339.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c029a751-31a8-4c40-afc6-d6ed8aae163b) + (property "Reference" "U41" (id 0) (at 231.14 330.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 231.14 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 231.14 339.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 231.14 339.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34e65c84-3271-4158-8d6d-fbdc075e8d6a)) + (pin "2" (uuid 75c7a23d-5553-46be-a9e2-973edc4fa33f)) + (pin "3" (uuid 3bc6d96d-2a35-46e6-ad8c-102d270160f3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 170.18 245.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c03b5b32-eb97-483c-9aa5-adbbecf40c99) + (property "Reference" "U12" (id 0) (at 170.18 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 170.18 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3100510e-f1b6-4513-a5e1-f2fbb9c7618c)) + (pin "2" (uuid aa7a4ff7-7859-471b-927f-e25315bf2daa)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 168.91 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c6205297-f188-4701-a4a1-19edcae71917) + (property "Reference" "U5" (id 0) (at 168.91 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 168.91 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 170.18 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 692035a5-8aac-47ec-98a2-f4be8891407d)) + (pin "2" (uuid 8e7b9915-328c-4986-80f2-ccd60914b5b3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 170.18 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cfaad2db-a02f-4399-9c3e-4becfc398389) + (property "Reference" "U10" (id 0) (at 170.18 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 170.18 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e19f37be-7367-4d10-8535-1e3b0f68bd60)) + (pin "2" (uuid 42f1b3be-0091-4131-96d8-2ad5e4f70e14)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 172.72 342.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d0dade7c-5cd8-4b56-a68b-92d9f0c728ce) + (property "Reference" "U17" (id 0) (at 172.72 336.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 172.72 340.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 173.99 344.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 173.99 344.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 798ca234-c85d-4b59-9ed4-6dcec7af6c01)) + (pin "2" (uuid e9b30a65-2338-4a6d-9924-9489c56de5df)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 198.12 218.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3cc1b1e-b039-422b-9fcd-899c19aa4cfc) + (property "Reference" "U25" (id 0) (at 198.12 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 198.12 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1e324c01-483b-4c29-a53f-539cc5fc0b37)) + (pin "2" (uuid eeb62a2d-6a41-4f56-8158-0e47afc2330f)) + (pin "3" (uuid d217e525-a23b-45db-a166-b294eafba76c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 146.05 295.91 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d58be67c-a0fc-4e82-89b9-c9c1b80f9089) + (property "Reference" "U1" (id 0) (at 146.685 290.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 146.685 293.37 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 146.05 295.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 146.05 295.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b112e10f-e89d-4714-b890-d17f36cde309)) + (pin "2" (uuid 88dd3797-dd21-4bec-958d-80aa4b82dcc8)) + (pin "3" (uuid 805584db-757b-47d5-9e01-bf5dc1aa6a2d)) + (pin "4" (uuid 6b9c3963-75db-472f-8321-b53834553534)) + (pin "5" (uuid 61c7ce55-5e67-4825-ae2a-007f3cdf2adb)) + (pin "6" (uuid 64c2b574-aec5-4de1-aab4-994cbeebd34f)) + (pin "7" (uuid 461ae05b-7f82-4156-81b4-487a2739a024)) + (pin "8" (uuid cce6de4d-7a8f-4ccc-8091-bfb6a8668888)) + (pin "9" (uuid a8193f04-d82c-4753-9958-5b67b82c184e)) + (pin "10" (uuid 7b98e93a-bac9-4595-ae21-fb566d59e89d)) + (pin "11" (uuid cb68894a-e409-4561-bacd-8a67f6aa8982)) + (pin "12" (uuid 197c8c03-fc64-45a6-9c1f-1d3ca6ddcab0)) + (pin "13" (uuid 41346446-943d-4a0c-8b06-646653e852fc)) + (pin "14" (uuid 9c3a3eaa-ba7d-41b4-a620-522a205eaaee)) + (pin "15" (uuid 5faf5400-5104-4b4a-a892-d8ddfe2eea3a)) + (pin "16" (uuid 5f5643e3-4c2a-4297-aee9-9526d16ce400)) + (pin "17" (uuid b267e6da-a5d0-43c5-859d-90437b64d0d6)) + (pin "18" (uuid b48ad136-2111-4248-9b57-92e759fb7ad7)) + (pin "19" (uuid 4d88fb26-2a54-47bc-b79d-9a377c677251)) + (pin "20" (uuid dfcc304d-4ee8-43b9-894a-4760bde69865)) + (pin "21" (uuid ab07b195-2604-4be2-b1d8-11f784323d49)) + (pin "22" (uuid 9bc7d075-717d-497e-bff2-57b9bcde229d)) + (pin "23" (uuid bdcbf3a8-48ef-4a29-babd-99f4d7bdc8d7)) + (pin "24" (uuid 58b80ae7-4351-4e77-9246-0ac50b7a59db)) + (pin "25" (uuid 25e28cb1-7f62-470e-b7ed-e7569f05f009)) + (pin "26" (uuid 1babba18-7603-453a-a325-5e51a92d87ed)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 340.36 281.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d5d185f0-c38b-4f25-9e70-650554f56ca5) + (property "Reference" "U55" (id 0) (at 340.36 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 340.36 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 340.36 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 340.36 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 146c79a9-332f-4454-93cf-2bf6c25e452f)) + (pin "2" (uuid cd1a5527-a2d7-4f31-b3ef-c99fa10d075c)) + (pin "3" (uuid 9a263e9d-5cae-4136-99ec-85a9e1e5e85b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 168.91 54.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d71cda88-f69d-4ecd-bab7-b0ab4a5d280f) + (property "Reference" "U4" (id 0) (at 168.91 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 168.91 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 170.18 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b3429d9c-09d0-412a-b762-dfb12728c831)) + (pin "2" (uuid 72171ef9-ab19-477f-8394-d213dce8c095)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 196.85 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da128ab8-1e89-4641-be28-465b33c9ed2e) + (property "Reference" "U18" (id 0) (at 196.85 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 196.85 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 196.85 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d34242f9-917e-4e1b-a6be-78dbf7e168f7)) + (pin "2" (uuid 773f52cf-21be-4683-b71e-9da1d0cd1490)) + (pin "3" (uuid 0edaf79d-5379-4901-a922-b3c7017c9b8d)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 229.87 302.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dd135bb5-f5d8-45a8-aa67-477baaaa0b9d) + (property "Reference" "U40" (id 0) (at 229.87 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 229.87 297.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 229.87 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 229.87 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c0eceb6e-2f36-4c2f-beab-110dae48eff3)) + (pin "2" (uuid eca2d03c-9bb5-4f7e-9d1b-de04fe859676)) + (pin "3" (uuid e2668902-0961-413e-86b7-a4705a7f84d0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 255.27 300.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eb19be8d-dd07-4694-aa1a-77f2768b2a26) + (property "Reference" "U48" (id 0) (at 255.27 294.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 255.27 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 256.54 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 256.54 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c47159f4-cb35-4edb-8ee5-308c570d69c1)) + (pin "2" (uuid 5ad35382-edf3-42b1-b2ec-32f0cae9e7b8)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 168.91 208.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed1465d8-b2ef-4af1-b64d-afe5ea4f59bd) + (property "Reference" "U8" (id 0) (at 168.91 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 168.91 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 170.18 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cc5958ad-a23b-4225-8ecd-cda661ebcbb6)) + (pin "2" (uuid 66ea08b1-79cd-4c30-9b25-758c4443969e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 167.64 132.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ee96c6fc-1d8f-42ff-96a4-2986b8505cce) + (property "Reference" "U2" (id 0) (at 167.64 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 167.64 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 168.91 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 98cd5e82-109d-4c71-a924-776433cc9fbe)) + (pin "2" (uuid 6b1e309a-47f8-432b-b0e9-e93d8c86664a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 143.51 64.77 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fec1e166-4aed-431c-93c6-4887f4b5e3ad) + (property "Reference" "U1" (id 0) (at 144.145 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 144.145 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 143.51 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a1d3889-7be5-4fad-9f55-fe034f14f42a)) + (pin "2" (uuid eec87a21-26dd-4d26-aee6-6b2efb5ca015)) + (pin "3" (uuid 84c506fe-914c-471e-9893-fdb25f0905d8)) + (pin "4" (uuid a0dedb9d-beba-48f4-94ba-406bd631fed2)) + (pin "5" (uuid 6da278da-4169-4a76-985c-232b3e6448ca)) + (pin "6" (uuid 90fbd81e-f466-4228-9a32-9f427bb41c77)) + (pin "7" (uuid f2f47c94-81ef-41a4-8a70-6d5fd097ea81)) + (pin "8" (uuid 9308ba68-1805-4a9e-89fd-9c91bdabb162)) + (pin "9" (uuid e55347f4-0a20-4999-8739-4127410b909f)) + (pin "10" (uuid 98650403-cbc4-4964-b2ca-196a9f5c54dd)) + (pin "11" (uuid 52d1887c-96ec-4f68-a697-21a7385bf7bb)) + (pin "12" (uuid 65901ccb-488b-48dd-a87b-95d0d1adadaa)) + (pin "13" (uuid c3ea72c9-420c-47de-8c91-9a54370fdd12)) + (pin "14" (uuid 93c813da-2dde-4ebf-9196-a0099b7addb2)) + (pin "15" (uuid 1f23acdb-f61b-47de-adb5-181b22901e97)) + (pin "16" (uuid 809b9f45-34c0-46ce-a8bc-21642a236dc7)) + (pin "17" (uuid eedc5165-1bb3-4521-b080-fefa45fb1099)) + (pin "18" (uuid d88510fd-fc7e-4c37-ad2b-1e2aed4ad95f)) + (pin "19" (uuid bd28314f-e3ba-4361-8fb0-deb18c35552f)) + (pin "20" (uuid f25a0bbc-0634-402f-9169-e66474033ee2)) + (pin "21" (uuid bac3e11e-f6e9-4930-b222-327558a5276d)) + (pin "22" (uuid 68e986bf-994c-490b-859e-9a4ab857f64d)) + (pin "23" (uuid fa3d2179-338c-4a63-8379-c9f8defe19b6)) + (pin "24" (uuid 57fa4baf-15e3-4fcb-93cf-af4c769d3ee8)) + (pin "25" (uuid c3fd72c2-0af4-40a7-b3b0-42849cbbf5bc)) + (pin "26" (uuid 7f135a2d-f271-44d3-b2b2-e4c3c3570315)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/392ae265-de8e-4198-957b-11a11d9f35ea" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/fec1e166-4aed-431c-93c6-4887f4b5e3ad" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/5752dab0-fb5e-464d-8f10-f2e792f023c1" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/12a5af59-41a8-418a-af67-606fab5735bf" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/bd644ecb-f94c-499f-8772-e255dca18ed2" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/4cb184a4-fa33-4735-85d9-0adf8743e8de" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/3c3e10d0-d3a8-4360-91d6-b24cc8135a54" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/a7b73dc5-f8f8-421a-9ac5-516ac02b1fd2" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/182299f5-6304-4136-bb75-e103a6079caf" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/8be5f330-50da-4718-9e12-cd4df78823a4" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/36f84787-ff60-4672-8fe2-ce27be287f38" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/9baa420d-fdae-41b7-8c8f-0582ba4d11ba" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/d58be67c-a0fc-4e82-89b9-c9c1b80f9089" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/bac40999-1215-4ee9-aa84-023b4b33dfe3" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/9c575f03-cc11-479c-ada9-907841f6c6ed" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/bd13803d-7494-4dd6-886c-09c76b456f24" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/68151f0b-8ae4-4eaf-b49e-0f7dd8185c21" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/ee96c6fc-1d8f-42ff-96a4-2986b8505cce" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/20b16a90-083e-419e-9160-201697a88263" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d71cda88-f69d-4ecd-bab7-b0ab4a5d280f" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c6205297-f188-4701-a4a1-19edcae71917" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/58ed1363-51c2-4381-8c4b-87f60991e7ad" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bb81f58f-2725-4f56-a94a-f9fe58de1bf6" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ed1465d8-b2ef-4af1-b64d-afe5ea4f59bd" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/43913185-d50d-4456-9f0f-86ae1a22d419" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/cfaad2db-a02f-4399-9c3e-4becfc398389" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/191658f5-93da-4853-9720-b98f303baf7c" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c03b5b32-eb97-483c-9aa5-adbbecf40c99" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/838305b4-e028-49b4-90e0-81ea92ce66a2" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/58f6379c-c382-46d7-8df2-f818946bc246" + (reference "U14") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/496c7318-f7da-4903-bb7f-d0bd009fa1ad" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/93a94af9-7b28-4809-b7e2-39126dcd0921" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d0dade7c-5cd8-4b56-a68b-92d9f0c728ce" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/da128ab8-1e89-4641-be28-465b33c9ed2e" + (reference "U18") (unit 1) (value "d_and") (footprint "") + ) + (path "/3bf98bc9-8590-44d0-92d2-bb4a26113ec4" + (reference "U19") (unit 1) (value "d_and") (footprint "") + ) + (path "/298803d4-1fe7-423e-864d-bda0d88bb183" + (reference "U20") (unit 1) (value "d_and") (footprint "") + ) + (path "/5da9d3ff-1ec3-41c0-bebb-0d7c50f8bc71" + (reference "U21") (unit 1) (value "d_and") (footprint "") + ) + (path "/afe6a2a5-0d83-4727-8c45-6c6aaa725593" + (reference "U22") (unit 1) (value "d_and") (footprint "") + ) + (path "/ba6d809e-f970-49a7-90b9-ff0c7ef26408" + (reference "U23") (unit 1) (value "d_and") (footprint "") + ) + (path "/93623683-5365-4ad9-8de4-722d4ba6af4f" + (reference "U24") (unit 1) (value "d_and") (footprint "") + ) + (path "/d3cc1b1e-b039-422b-9fcd-899c19aa4cfc" + (reference "U25") (unit 1) (value "d_and") (footprint "") + ) + (path "/6d5004b0-7eb3-43a9-af0c-ef3a15367ea6" + (reference "U26") (unit 1) (value "d_and") (footprint "") + ) + (path "/3cbedf75-7f0e-4f73-ada1-1ca49ef6804e" + (reference "U27") (unit 1) (value "d_and") (footprint "") + ) + (path "/5d797f47-2d65-4bda-879c-50bf9446043b" + (reference "U28") (unit 1) (value "d_and") (footprint "") + ) + (path "/44d0e456-502a-4a54-a0de-b99834e2b92d" + (reference "U29") (unit 1) (value "d_and") (footprint "") + ) + (path "/28da4e16-fa3c-4ffb-a2ce-73450e5fbd61" + (reference "U30") (unit 1) (value "d_and") (footprint "") + ) + (path "/73c44141-f4a5-4cff-8f83-d6b1cd66aba1" + (reference "U31") (unit 1) (value "d_and") (footprint "") + ) + (path "/016296a9-91cb-4876-be7b-da3aad6444a4" + (reference "U32") (unit 1) (value "d_and") (footprint "") + ) + (path "/17d984f8-6671-4034-a6b8-b7b26f51f136" + (reference "U33") (unit 1) (value "d_and") (footprint "") + ) + (path "/acdf112c-3998-4be1-9187-be879542816e" + (reference "U34") (unit 1) (value "d_or") (footprint "") + ) + (path "/1433ee69-2293-4298-85db-3b08b2e9dea0" + (reference "U35") (unit 1) (value "d_or") (footprint "") + ) + (path "/28cdc606-c410-405a-a597-b1e26302c6d9" + (reference "U36") (unit 1) (value "d_or") (footprint "") + ) + (path "/03c08a28-1c3c-44f7-bd3b-538cb9c850ec" + (reference "U37") (unit 1) (value "d_or") (footprint "") + ) + (path "/ae25eb85-261c-4ec6-bc49-b9c09e370211" + (reference "U38") (unit 1) (value "d_or") (footprint "") + ) + (path "/38ba6b71-09ba-44fb-8eb8-bde78f5c06dc" + (reference "U39") (unit 1) (value "d_or") (footprint "") + ) + (path "/dd135bb5-f5d8-45a8-aa67-477baaaa0b9d" + (reference "U40") (unit 1) (value "d_or") (footprint "") + ) + (path "/c029a751-31a8-4c40-afc6-d6ed8aae163b" + (reference "U41") (unit 1) (value "d_or") (footprint "") + ) + (path "/8cc9b8e1-cb70-4a49-9ad3-7ba7f7a791d0" + (reference "U42") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1e94f8a3-71f1-4ed5-886e-572050e2bd9e" + (reference "U43") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/915da1a4-591d-48e6-95f2-2b0ef86074cf" + (reference "U44") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5d193a27-b1eb-4e0c-a8dc-d260237e58d3" + (reference "U45") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/122e4314-e70c-415d-9f27-a8ca434150c9" + (reference "U46") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/13e01e02-6612-4d25-af27-ebacfd70c2e0" + (reference "U47") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/eb19be8d-dd07-4694-aa1a-77f2768b2a26" + (reference "U48") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bb289a91-d904-4c26-be84-1e2a1590f094" + (reference "U49") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2107f8f9-d43a-4615-9e76-df279a703348" + (reference "U50") (unit 1) (value "d_and") (footprint "") + ) + (path "/ad09d93d-dcae-44df-adf5-414ef0375be2" + (reference "U51") (unit 1) (value "d_and") (footprint "") + ) + (path "/81a2c660-88f7-45f7-a834-801af42a5acc" + (reference "U52") (unit 1) (value "d_and") (footprint "") + ) + (path "/3edd3b5c-6d49-482e-a702-631141e5be40" + (reference "U53") (unit 1) (value "d_and") (footprint "") + ) + (path "/8402abe1-fd71-443a-bd41-db01c998904c" + (reference "U54") (unit 1) (value "d_and") (footprint "") + ) + (path "/d5d185f0-c38b-4f25-9e70-650554f56ca5" + (reference "U55") (unit 1) (value "d_and") (footprint "") + ) + (path "/3131ead7-880d-41dd-a7d4-69a2e2e1a1ba" + (reference "U56") (unit 1) (value "d_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74688/SN74688_subckt.proj b/library/SubcircuitLibrary/SN74688/SN74688_subckt.proj new file mode 100644 index 000000000..4751601ea --- /dev/null +++ b/library/SubcircuitLibrary/SN74688/SN74688_subckt.proj @@ -0,0 +1 @@ +schematicFile SN74688_subckt.kicad_sch diff --git a/library/SubcircuitLibrary/SN74688/SN74688_subckt_Previous_Values.xml b/library/SubcircuitLibrary/SN74688/SN74688_subckt_Previous_Values.xml new file mode 100644 index 000000000..edffa6cb7 --- /dev/null +++ b/library/SubcircuitLibrary/SN74688/SN74688_subckt_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andd_inverterd_inverterd_ord_ord_inverterd_inverterd_ord_andd_andd_inverterd_inverterd_andd_andd_andd_ord_inverterd_inverterd_inverterd_inverterd_inverterd_andd_andd_andd_andd_andd_inverterd_inverterd_inverterd_inverterd_inverterd_andd_andd_inverterd_inverterd_andd_andd_inverterd_inverterd_andd_andd_inverterd_ord_ord_andd_andd_andd_inverterd_inverterd_ord_ord_inverterd_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74688/Test_SN74688.cir b/library/SubcircuitLibrary/SN74688/Test_SN74688.cir new file mode 100644 index 000000000..4ebab9c04 --- /dev/null +++ b/library/SubcircuitLibrary/SN74688/Test_SN74688.cir @@ -0,0 +1,36 @@ +.title KiCad schematic +U17 Net-_U17-Pad1_ EQ dac_bridge_1 +X1 Net-_U3-Pad2_ Net-_U4-Pad2_ Net-_U9-Pad2_ Net-_U10-Pad2_ Net-_U1-Pad2_ Net-_U2-Pad2_ Net-_U5-Pad2_ Net-_U6-Pad2_ Net-_U7-Pad2_ Net-_U8-Pad2_ Net-_U11-Pad2_ Net-_U12-Pad2_ Net-_U13-Pad2_ Net-_U14-Pad2_ Net-_U15-Pad2_ Net-_U16-Pad2_ Net-_U17-Pad1_ SN74688 +U16 Q7 Net-_U16-Pad2_ adc_bridge_1 +U14 Q6 Net-_U14-Pad2_ adc_bridge_1 +U15 P7 Net-_U15-Pad2_ adc_bridge_1 +U13 P6 Net-_U13-Pad2_ adc_bridge_1 +v15 P7 GND pulse +v16 Q7 GND pulse +v14 Q6 GND pulse +U12 Q5 Net-_U12-Pad2_ adc_bridge_1 +v13 P6 GND pulse +v12 Q5 GND pulse +v10 Q1 GND pulse +v9 P1 GND pulse +v4 Q0 GND pulse +U4 Q0 Net-_U4-Pad2_ adc_bridge_1 +v3 P0 GND pulse +U3 P0 Net-_U3-Pad2_ adc_bridge_1 +U10 Q1 Net-_U10-Pad2_ adc_bridge_1 +U9 P1 Net-_U9-Pad2_ adc_bridge_1 +U1 P2 Net-_U1-Pad2_ adc_bridge_1 +U2 Q2 Net-_U2-Pad2_ adc_bridge_1 +v1 P2 GND pulse +v2 Q2 GND pulse +U7 P4 Net-_U7-Pad2_ adc_bridge_1 +U5 P3 Net-_U5-Pad2_ adc_bridge_1 +U6 Q3 Net-_U6-Pad2_ adc_bridge_1 +v5 P3 GND pulse +v6 Q3 GND pulse +v7 P4 GND pulse +v11 P5 GND pulse +v8 Q4 GND pulse +U11 P5 Net-_U11-Pad2_ adc_bridge_1 +U8 Q4 Net-_U8-Pad2_ adc_bridge_1 +.end diff --git a/library/SubcircuitLibrary/SN74688/Test_SN74688.kicad_sch b/library/SubcircuitLibrary/SN74688/Test_SN74688.kicad_sch new file mode 100644 index 000000000..baf7bb726 --- /dev/null +++ b/library/SubcircuitLibrary/SN74688/Test_SN74688.kicad_sch @@ -0,0 +1,1626 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 257e47bd-723f-404a-910e-2f58e6c04ac3) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN74688" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN74688" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN74688_0_1" + (rectangle (start -10.16 -2.54) (end 12.7 -45.72) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN74688_1_1" + (pin input line (at -12.7 -3.81 0) (length 2.54) + (name "P0" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -26.67 0) (length 2.54) + (name "Q4" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -29.21 0) (length 2.54) + (name "P5" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -31.75 0) (length 2.54) + (name "Q5" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -34.29 0) (length 2.54) + (name "P6" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -36.83 0) (length 2.54) + (name "Q6" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -39.37 0) (length 2.54) + (name "P7" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -41.91 0) (length 2.54) + (name "Q7" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 15.24 -24.13 180) (length 2.54) + (name "EQ" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -6.35 0) (length 2.54) + (name "Q0" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -8.89 0) (length 2.54) + (name "P1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -11.43 0) (length 2.54) + (name "Q1" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -13.97 0) (length 2.54) + (name "P2" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -16.51 0) (length 2.54) + (name "Q2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -19.05 0) (length 2.54) + (name "P3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -21.59 0) (length 2.54) + (name "Q3" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -12.7 -24.13 0) (length 2.54) + (name "P4" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (wire (pts (xy 224.79 109.22) (xy 182.88 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0700f922-f1e0-430e-a9e7-f966610e2616) + ) + (wire (pts (xy 186.69 171.45) (xy 186.69 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08bdf82b-b9be-484f-b332-77706b194383) + ) + (wire (pts (xy 210.82 163.83) (xy 210.82 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f0cabaf-41d7-4b32-a2ae-9a67098312c9) + ) + (wire (pts (xy 184.15 323.85) (xy 198.12 323.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1474b6fc-de8f-4a67-adb8-1ce81dcbbed8) + ) + (wire (pts (xy 234.95 166.37) (xy 181.61 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a263df6-07cb-44a8-8394-f366c909cdfb) + ) + (wire (pts (xy 198.12 184.15) (xy 198.12 323.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e970acd-d60e-4c80-aeb0-006afbe31bae) + ) + (wire (pts (xy 196.85 181.61) (xy 196.85 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20d030c9-af02-4fe7-9297-16e2fc03e533) + ) + (wire (pts (xy 219.71 158.75) (xy 219.71 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 212060f0-452a-4562-bc3b-946ee46f7a12) + ) + (wire (pts (xy 191.77 176.53) (xy 191.77 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23e976c4-5650-492b-9d8d-83259af5a6ab) + ) + (wire (pts (xy 210.82 160.02) (xy 180.34 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37c73d31-ac60-4dc8-a3bc-baba0e0c9547) + ) + (wire (pts (xy 234.95 72.39) (xy 181.61 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ed56d93-91cb-481d-aa53-b5ae2de939b6) + ) + (wire (pts (xy 194.31 273.05) (xy 182.88 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5090ded3-471a-4078-9329-1146f0b2e46b) + ) + (wire (pts (xy 234.95 151.13) (xy 234.95 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51a50857-0ba4-4ec0-88d8-447c10043c6d) + ) + (wire (pts (xy 184.15 168.91) (xy 184.15 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 562b2113-e8a9-406b-8040-6bd926b3f0a9) + ) + (wire (pts (xy 200.66 350.52) (xy 185.42 350.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ea82c40-018e-4951-a873-419e748ba7bb) + ) + (wire (pts (xy 234.95 176.53) (xy 191.77 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 600f5afe-8c4f-4c2a-a401-8d3419b4f117) + ) + (wire (pts (xy 191.77 262.89) (xy 182.88 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fc0460d-2dfd-4b03-9010-03c471333b63) + ) + (wire (pts (xy 234.95 153.67) (xy 229.87 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82ad7bfb-b155-4510-8f61-e14691942c6c) + ) + (wire (pts (xy 224.79 156.21) (xy 224.79 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86103abc-200f-4e55-9ef0-8cfdd9c95e47) + ) + (wire (pts (xy 234.95 171.45) (xy 186.69 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e15377c-4c0c-4611-9515-6ea6be35b92d) + ) + (wire (pts (xy 219.71 119.38) (xy 182.88 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d40f96d-15a2-4f29-bb1f-436e0ecfeaee) + ) + (wire (pts (xy 234.95 181.61) (xy 196.85 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f56fe50-74b3-40e1-b6b0-3d6a87bcb077) + ) + (wire (pts (xy 234.95 184.15) (xy 198.12 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa9d6700-7053-4e1c-9780-b599af71f49b) + ) + (wire (pts (xy 229.87 153.67) (xy 229.87 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2dc4bec-da04-4439-89d2-85515b968304) + ) + (wire (pts (xy 234.95 158.75) (xy 219.71 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8e79701-ad88-4c81-bd4d-f12d13a26cf3) + ) + (wire (pts (xy 234.95 163.83) (xy 210.82 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b940188e-f030-4d77-9e60-05d1626ac193) + ) + (wire (pts (xy 194.31 179.07) (xy 194.31 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c541538c-0b6b-4be3-9598-e17ec5e3aa17) + ) + (wire (pts (xy 234.95 168.91) (xy 184.15 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c743d7f9-1f1a-4de9-91c3-7875c80a22cf) + ) + (wire (pts (xy 196.85 313.69) (xy 184.15 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8999b5a-b993-480d-be25-39115287838e) + ) + (wire (pts (xy 214.63 149.86) (xy 180.34 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c971579b-c433-43ae-b870-e36cceada376) + ) + (wire (pts (xy 234.95 156.21) (xy 224.79 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9e1f7c4-309f-44e5-9bd8-e88523deef15) + ) + (wire (pts (xy 234.95 161.29) (xy 214.63 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca399d6c-ce0e-455e-9a31-b66eac64a706) + ) + (wire (pts (xy 189.23 236.22) (xy 181.61 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc2d2d57-83fd-4bf3-a174-3fcd147658e0) + ) + (wire (pts (xy 234.95 186.69) (xy 200.66 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cedacfdb-460d-46e8-8aa6-8ee714e258fe) + ) + (wire (pts (xy 186.69 226.06) (xy 181.61 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d17737d9-62cc-4a9e-8861-bedbfa4328ef) + ) + (wire (pts (xy 189.23 173.99) (xy 189.23 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1f9d877-dee3-4f8f-a3ba-3b25163a2906) + ) + (wire (pts (xy 234.95 179.07) (xy 194.31 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4dc93e6-96ca-4266-836a-1d79d7e59feb) + ) + (wire (pts (xy 181.61 166.37) (xy 181.61 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da493a8b-8076-432d-a579-70d7b3324f37) + ) + (wire (pts (xy 200.66 186.69) (xy 200.66 350.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbf72a00-8691-49e2-9af7-d94532bb84a8) + ) + (wire (pts (xy 204.47 360.68) (xy 185.42 360.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de979793-621a-4435-a803-903a57606fd2) + ) + (wire (pts (xy 189.23 173.99) (xy 234.95 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e08dc849-8af9-4449-aad6-c9aa0e8f66a2) + ) + (wire (pts (xy 214.63 161.29) (xy 214.63 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e172033f-05c6-44fc-9cd2-6e7b3a9aa18f) + ) + (wire (pts (xy 204.47 189.23) (xy 204.47 360.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecffe375-c23f-4a80-9a63-1550218f2e41) + ) + (wire (pts (xy 181.61 196.85) (xy 184.15 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef25eb4b-5532-450c-ab7c-d9a9891f2f2a) + ) + (wire (pts (xy 234.95 189.23) (xy 204.47 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f69ce8d4-d921-40de-a644-687f1fcc0c2c) + ) + (wire (pts (xy 229.87 82.55) (xy 181.61 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbbcea6d-af29-40cc-b624-58176914cad0) + ) + + (global_label "P2" (shape input) (at 151.13 149.86 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0238db47-d2cc-4c8c-b995-de3c9ce8b124) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.0506 144.9674 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P3" (shape input) (at 152.4 186.69 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 05f89357-a1a6-4212-bbce-2b35d53d60b6) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 181.7974 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P7" (shape input) (at 156.21 350.52 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 071168d0-7396-4115-878e-728ad03c70a8) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 156.1306 345.6274 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q7" (shape input) (at 156.21 360.68 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 3515d097-5f0f-4c07-a2dd-9a149e0128e7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 156.1306 355.7269 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q0" (shape input) (at 152.4 82.55 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 3e2687ec-cd37-424d-8a98-b69e747f5bc9) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 77.5969 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q4" (shape input) (at 152.4 236.22 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 50a5ab74-e015-4e12-bea3-0f9f190033d7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 231.2669 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q6" (shape input) (at 154.94 323.85 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6a7d8fd0-5598-4f46-aee1-d389ecf94669) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 154.8606 318.8969 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q2" (shape input) (at 151.13 160.02 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid a29d8e50-8206-4795-8dac-9a50fd52eb37) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 151.0506 155.0669 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P0" (shape input) (at 152.4 72.39 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid a724a07e-6b4f-4701-91f7-95f19290ebdf) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 67.4974 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P6" (shape input) (at 154.94 313.69 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b47f8aa8-5452-44a1-8a5b-8ca0a8ed240c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 154.8606 308.7974 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q3" (shape input) (at 152.4 196.85 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c17fe078-fcc0-4034-957c-02164d4133a9) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 191.8969 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P4" (shape input) (at 152.4 226.06 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c25947b4-1db9-41e7-b5a2-f055d370b4e1) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 221.1674 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q5" (shape input) (at 153.67 273.05 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c6af288f-c3f9-475a-bd12-ee59bf3818d7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 153.5906 268.0969 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "EQ" (shape output) (at 292.1 171.45 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c8780046-d5d5-4367-9285-04748ebce1d4) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 296.9926 171.3706 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P1" (shape input) (at 153.67 109.22 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid df49cf61-79a8-4819-8d70-268768a8c8f4) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 153.5906 104.3274 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "P5" (shape input) (at 153.67 262.89 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ee6c3863-3261-4aea-940c-d765f979c4d5) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 153.5906 257.9974 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Q1" (shape input) (at 153.67 119.38 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f6d052cb-a66c-41e9-8f63-6843ca30db9c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 153.5906 114.4269 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 128.27 160.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 01236466-3af8-4f90-92b9-6b5fed51c68d) + (property "Reference" "#PWR02" (id 0) (at 128.27 166.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 128.27 165.1 0)) + (property "Footprint" "" (id 2) (at 128.27 160.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 128.27 160.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c5f2521c-0f50-4c63-8ebc-ab1052949661)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 142.24 273.05 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e49f87a-5dd2-403e-a8a8-2d3a36155ead) + (property "Reference" "v12" (id 0) (at 142.24 260.35 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 142.24 264.16 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 142.24 267.97 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4fc003e3-5e2f-47a3-b7b6-c4904e776288)) + (pin "2" (uuid e2ba65cf-a4d1-4b13-8676-d0ed17b695f1)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 133.35 360.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 172dab3b-beca-465b-8bc4-a1e8f6dab5fe) + (property "Reference" "#PWR016" (id 0) (at 133.35 367.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 133.35 365.76 0)) + (property "Footprint" "" (id 2) (at 133.35 360.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 133.35 360.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid cbd697c7-1a90-4b93-b601-8de98c21c4b2)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 140.97 226.06 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 18c24738-fc74-49a6-aab1-5529213188bb) + (property "Reference" "v7" (id 0) (at 140.97 213.36 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 140.97 217.17 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 140.97 220.98 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 78b71b8e-4aff-4350-951b-53192a766457)) + (pin "2" (uuid a7916837-04c2-49fd-b352-83665f0c2e16)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 278.13 172.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 19069d65-c4e5-4681-ae9e-7ff21055b317) + (property "Reference" "U17" (id 0) (at 277.495 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 277.495 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 278.13 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2eb0cad-a2f5-417b-a1cb-42d2dea6921b)) + (pin "2" (uuid e6269910-a368-4d2c-89b1-d4752f44b844)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 140.97 196.85 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b0cdb1a-9e5b-4976-821c-1357dcd29365) + (property "Reference" "v6" (id 0) (at 140.97 184.15 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 140.97 187.96 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 140.97 191.77 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bd44e7ba-f282-4073-9303-d6a98693d402)) + (pin "2" (uuid 10b823be-30c0-40b3-8c3b-145bbfa9ed10)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 167.64 237.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1c0c2301-cabd-43a6-b1b3-158d446bf8e2) + (property "Reference" "U8" (id 0) (at 167.005 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 167.005 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 237.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 237.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9e274dc4-f5ae-4661-b765-b2c36727484e)) + (pin "2" (uuid 5d08bbf4-6d1a-4557-9d0b-fbe5f9776450)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 167.64 187.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 20d3ff0f-f996-4e38-8758-005a071beb85) + (property "Reference" "U5" (id 0) (at 167.005 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 167.005 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae363377-45b1-4645-9513-48a53e69bd52)) + (pin "2" (uuid 23039b3a-e1bb-4dd4-aad4-857df21ba605)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 166.37 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2382d58b-0b86-4820-ab1d-9cce064bde30) + (property "Reference" "U1" (id 0) (at 165.735 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 165.735 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 166.37 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1e72841d-319c-48cb-bb2b-bd09c1824161)) + (pin "2" (uuid c6a9c37e-ff3b-498c-9af6-350b37ef4887)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 143.51 313.69 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 263f20eb-aad5-4212-8e19-25f286b8197b) + (property "Reference" "v13" (id 0) (at 143.51 300.99 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 143.51 304.8 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 143.51 308.61 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b924e858-bf3a-4af6-9996-b86b9ece546b)) + (pin "2" (uuid 62f1faaf-c13d-4b65-a545-7c92b79ba04b)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 168.91 274.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 286f8a30-ef58-4928-b01d-cf623dc47c92) + (property "Reference" "U12" (id 0) (at 168.275 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 168.275 267.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 168.91 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8e2ce3f0-4023-4742-afb9-75926b057ddc)) + (pin "2" (uuid 58eaa4ef-89d8-4bde-b604-21d821867745)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 168.91 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e22e926-253f-4ba7-87f4-2e6df32918eb) + (property "Reference" "U9" (id 0) (at 168.275 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 168.275 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 168.91 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3cd1ef81-a802-4df3-8d13-73e43764a76e)) + (pin "2" (uuid 55c5cc9e-073a-4247-941c-06126bd40ed7)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 129.54 226.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e6960fa-b256-461e-ab61-9d596fdb8467) + (property "Reference" "#PWR07" (id 0) (at 129.54 232.41 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 129.54 231.14 0)) + (property "Footprint" "" (id 2) (at 129.54 226.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 129.54 226.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1ed5c019-832b-4c16-91d5-0d03d92e6252)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 144.78 360.68 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 35992878-274a-4118-a773-5a0fca9cb775) + (property "Reference" "v16" (id 0) (at 144.78 347.98 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 144.78 351.79 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 144.78 355.6 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 360.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid db601a2e-afe1-4e4a-8208-70584e47bd41)) + (pin "2" (uuid ae6199af-e357-4a5c-9fc6-f947726b90f0)) + ) + + (symbol (lib_id "eSim_Subckt:SN74688") (at 247.65 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 41336c68-892f-48ed-b7de-49bd2b74207e) + (property "Reference" "X1" (id 0) (at 248.92 144.78 0)) + (property "Value" "SN74688" (id 1) (at 248.92 147.32 0)) + (property "Footprint" "" (id 2) (at 247.65 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 247.65 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid caa64213-c960-4692-9dbf-0d647c380bff)) + (pin "10" (uuid af6cbb07-5765-423d-88ff-d2825c73edc6)) + (pin "11" (uuid 724a108c-be77-4834-a017-41e49bc2eddb)) + (pin "12" (uuid c0ace5ce-8c8b-4d34-8568-2970881200da)) + (pin "13" (uuid 13507d74-b327-41d1-9d55-796e7a97ca16)) + (pin "14" (uuid b5faef10-1ceb-4ae5-b85e-11bb06279020)) + (pin "15" (uuid 8520bb4e-0623-44ef-9591-e0d444194edb)) + (pin "16" (uuid 2c15d3c5-579f-4a09-9c01-e6e8011df052)) + (pin "17" (uuid f793455c-b20e-4368-a83b-68dc1c69e548)) + (pin "2" (uuid 56ce7d57-dd54-4105-8508-7c1223723875)) + (pin "3" (uuid 97cc9064-af20-42ae-9454-c3265fc450dc)) + (pin "4" (uuid 8015659c-ebcd-425d-a3d6-71942ceb569b)) + (pin "5" (uuid 3f2609f8-9c41-4517-821f-ef0cc41c5e24)) + (pin "6" (uuid 8427378f-47a5-49a0-9a3a-5b4c8d8d0f5e)) + (pin "7" (uuid e27be5f1-013e-4601-a8e4-341cf6db466a)) + (pin "8" (uuid 371375a0-915e-4efe-ad1f-caff1c3a5ec1)) + (pin "9" (uuid 10b8854d-e586-4254-97c3-b334c5fec188)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 170.18 314.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 429fa946-99d6-4ca3-93d4-d29e52b2bf92) + (property "Reference" "U13" (id 0) (at 169.545 304.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 169.545 308.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 170.18 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5f77c078-fe5f-44ce-af53-8d2ec8f85804)) + (pin "2" (uuid 3007548e-3ce4-4647-bd66-76243ce2538c)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 144.78 350.52 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45dd1810-f7fe-45fc-814a-0cc92b2f8e5f) + (property "Reference" "v15" (id 0) (at 144.78 337.82 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 144.78 341.63 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 144.78 345.44 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 350.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b4267194-a657-4fd4-855c-790f922b8505)) + (pin "2" (uuid 9b6d9b07-3368-46fb-a42f-c19ce1185197)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 133.35 350.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5322d8af-0c6f-4bd3-b488-15d0703fc878) + (property "Reference" "#PWR015" (id 0) (at 133.35 356.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 133.35 355.6 0)) + (property "Footprint" "" (id 2) (at 133.35 350.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 133.35 350.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ac8cebe4-ece5-407e-a050-95646f2023e8)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 143.51 323.85 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5397909c-e5ee-4271-b01c-79c22e139f9c) + (property "Reference" "v14" (id 0) (at 143.51 311.15 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 143.51 314.96 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 143.51 318.77 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 323.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e29a6a5-821e-41e4-9a39-9adfe4ed0e45)) + (pin "2" (uuid 94511c19-a19d-464a-b156-ef30ee6dc80a)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 168.91 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 54b978b2-db33-44ea-8839-781d5312ad7e) + (property "Reference" "U10" (id 0) (at 168.275 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 168.275 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 168.91 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d84a715e-0df8-4ebf-b0b8-f231a1502ff1)) + (pin "2" (uuid e6a2bfad-3ebd-433d-b491-e6ee0e1e530c)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 140.97 72.39 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 64687e15-0e9a-44be-8a4b-acb1c70c72b0) + (property "Reference" "v3" (id 0) (at 140.97 59.69 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 140.97 63.5 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 140.97 67.31 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5c02ac21-6ead-4152-83a9-eb98d31ca641)) + (pin "2" (uuid c1c69905-205b-4188-a889-9e03fc03fc50)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 128.27 149.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67fedf20-bb52-40d8-98f7-6a316b52cd94) + (property "Reference" "#PWR01" (id 0) (at 128.27 156.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 128.27 154.94 0)) + (property "Footprint" "" (id 2) (at 128.27 149.86 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 128.27 149.86 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 122b5454-801f-43ef-92da-2c8258f86e21)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 168.91 264.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 70077156-468e-47f0-bf5a-7fa2ff4670b7) + (property "Reference" "U11" (id 0) (at 168.275 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 168.275 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 168.91 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 168.91 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4d5d7f96-0e78-4480-9079-7c6aefbda656)) + (pin "2" (uuid 8f47a2ce-c4e9-4c92-b5dd-798a76e9ad23)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 130.81 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 717b4f67-493e-441a-a382-13f3a9c29c35) + (property "Reference" "#PWR010" (id 0) (at 130.81 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 130.81 124.46 0)) + (property "Footprint" "" (id 2) (at 130.81 119.38 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 130.81 119.38 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b66745b3-df5d-4af4-a580-1a93074eb918)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 140.97 186.69 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 746498d7-555d-483f-82e9-882f029616ad) + (property "Reference" "v5" (id 0) (at 140.97 173.99 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 140.97 177.8 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 140.97 181.61 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2d9628e9-1358-4a4a-a5cb-bfe2c835a0f6)) + (pin "2" (uuid e4a911b8-3f7b-4474-b0e2-a8cf9f26fcd8)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 167.64 227.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 78e94bec-7084-4916-b076-d5ce68b96897) + (property "Reference" "U7" (id 0) (at 167.005 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 167.005 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4fd4a278-7dc7-4d0e-9cbb-4eafe0300466)) + (pin "2" (uuid eb838872-e9c5-4683-aecc-10c66af11f47)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 170.18 325.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 860f0f01-73bb-464b-b106-09f0e5b0947b) + (property "Reference" "U14" (id 0) (at 169.545 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 169.545 318.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 170.18 325.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 325.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c5aa8797-e174-4ff4-b24b-5e47c0a9364e)) + (pin "2" (uuid 271fa8ab-2f79-48a8-9cfa-456bdccf3465)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 167.64 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8746a517-c116-457e-b00a-84bd2ba918ad) + (property "Reference" "U4" (id 0) (at 167.005 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 167.005 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 33ea6fe5-c034-45e0-9016-b2cacd5165bb)) + (pin "2" (uuid 6c09c22b-cff4-4fc7-894e-a5420dc0cfdb)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 139.7 160.02 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b546d16-12e2-477a-9e7b-591860234e06) + (property "Reference" "v2" (id 0) (at 139.7 147.32 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 139.7 151.13 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 139.7 154.94 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a7b86d13-f9fe-4d9c-8929-68147a2a4833)) + (pin "2" (uuid f423fd39-3689-4be6-9f0a-22aade3a357a)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 171.45 351.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b63343f-5c19-406f-81b2-907ab4853733) + (property "Reference" "U15" (id 0) (at 170.815 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 170.815 345.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 351.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 351.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c6ced458-91b3-4965-a7f6-ca87cf967527)) + (pin "2" (uuid c32b58e9-7cd9-4a3a-9a5d-f36d68970082)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 171.45 361.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 944cafd2-c730-421c-9fae-9c400d280d3a) + (property "Reference" "U16" (id 0) (at 170.815 351.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 170.815 355.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3b36d337-6892-4989-a026-892fd94e72b2)) + (pin "2" (uuid fadd6af6-7183-4449-a11e-da057a002f48)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 129.54 236.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9ed3592d-c946-48f6-9d24-eff8859d1f03) + (property "Reference" "#PWR08" (id 0) (at 129.54 242.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 129.54 241.3 0)) + (property "Footprint" "" (id 2) (at 129.54 236.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 129.54 236.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8ea35b55-ed6e-403d-9868-28753f8d1505)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 129.54 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5d6952b-9b07-48c6-823b-02c0e118e793) + (property "Reference" "#PWR05" (id 0) (at 129.54 193.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 129.54 191.77 0)) + (property "Footprint" "" (id 2) (at 129.54 186.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 129.54 186.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 72f77ba0-b10f-4472-8992-b7f7acb917ff)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 130.81 109.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a69e4540-943d-4e2a-901b-ef1656472135) + (property "Reference" "#PWR09" (id 0) (at 130.81 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 130.81 114.3 0)) + (property "Footprint" "" (id 2) (at 130.81 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 130.81 109.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 334a4f5a-f734-47b4-b582-dd4b3be9cd2a)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 140.97 236.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ad5804fb-deae-4f6e-8293-42815435faa3) + (property "Reference" "v8" (id 0) (at 140.97 223.52 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 140.97 227.33 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 140.97 231.14 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 72ff03a4-d984-4b0c-a01a-5043724ea09b)) + (pin "2" (uuid 2859da6f-caeb-455d-86aa-d1fddd129bc7)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 142.24 109.22 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b99a2abc-f0a6-43b6-a26c-103589dd1345) + (property "Reference" "v9" (id 0) (at 142.24 96.52 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 142.24 100.33 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 142.24 104.14 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e613b08e-ba4f-4715-8b20-43c7898850fd)) + (pin "2" (uuid 8b8294d1-b404-4cd1-a48e-89c81743d7e1)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 132.08 313.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cff17008-0d58-43fa-b8db-b4548e36b1bf) + (property "Reference" "#PWR013" (id 0) (at 132.08 320.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 132.08 318.77 0)) + (property "Footprint" "" (id 2) (at 132.08 313.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 132.08 313.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9a2b8cd3-ca10-4ac4-9ad8-b50397dec558)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 142.24 119.38 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d69974e9-1b95-4793-8405-1f5e55af5dc4) + (property "Reference" "v10" (id 0) (at 142.24 106.68 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 142.24 110.49 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 142.24 114.3 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b7ad9d27-e86d-45a9-b430-7a4638db10e3)) + (pin "2" (uuid c628c119-a2e5-41e2-b179-21cebba85c20)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 130.81 262.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d86cdc37-de82-4aae-8802-d0cc1ae098fa) + (property "Reference" "#PWR011" (id 0) (at 130.81 269.24 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 130.81 267.97 0)) + (property "Footprint" "" (id 2) (at 130.81 262.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 130.81 262.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1afb90c1-bcb3-4a18-a0d6-00f895e43e10)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 167.64 198.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d944320b-f229-4b2f-9dc2-c3af6a74ecdc) + (property "Reference" "U6" (id 0) (at 167.005 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 167.005 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 19eb1300-0375-4559-8ea6-ac0eacf4441d)) + (pin "2" (uuid 4cf3af95-8c7b-4687-afa9-64445323de37)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 139.7 149.86 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da09b2f9-53ad-47fa-914f-eeece27e75cb) + (property "Reference" "v1" (id 0) (at 139.7 137.16 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 139.7 140.97 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 139.7 144.78 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 139.7 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 94ac18f1-f2cd-44d7-96db-08f4782172b7)) + (pin "2" (uuid c03850a9-56a7-4579-87e4-940b9a571e6f)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 166.37 161.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e4b8802f-0f30-4755-9b04-a978591f03b6) + (property "Reference" "U2" (id 0) (at 165.735 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 165.735 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 166.37 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6fa2c8aa-00f8-4dd3-bf7e-c65d1f159aa6)) + (pin "2" (uuid 90c6dc0e-5a9b-4d88-85ff-6ede669537dc)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 167.64 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8d66ed0-4a4a-4ce2-8c98-878581763f1d) + (property "Reference" "U3" (id 0) (at 167.005 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 167.005 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 167.64 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 167.64 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ef3a6ba-06f3-4510-8570-4547341e44b9)) + (pin "2" (uuid 3adae4e4-bf6b-4e6d-981c-3fb25c7884d1)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 129.54 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eb7ad720-22c6-48f4-a761-f7110cb5d681) + (property "Reference" "#PWR03" (id 0) (at 129.54 78.74 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 129.54 77.47 0)) + (property "Footprint" "" (id 2) (at 129.54 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 129.54 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 296b4732-1ece-4cc6-a317-1456b2d10afc)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 140.97 82.55 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eeb5d60e-0c1c-43e1-97ea-55614c85dad9) + (property "Reference" "v4" (id 0) (at 140.97 69.85 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 140.97 73.66 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 140.97 77.47 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 140.97 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a0d8e189-73c4-4bf4-8d37-13da7bafd6a6)) + (pin "2" (uuid ff02dbc8-556f-4f54-8819-0d248ecd8d95)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 132.08 323.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ef4ef303-a4c7-4685-8675-02ac2aa84c8d) + (property "Reference" "#PWR014" (id 0) (at 132.08 330.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 132.08 328.93 0)) + (property "Footprint" "" (id 2) (at 132.08 323.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 132.08 323.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e2700f8d-562f-4705-bc26-a3167ff3ecf7)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 129.54 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f71eb19b-9b15-4f3b-abc8-744f5f82a6ba) + (property "Reference" "#PWR06" (id 0) (at 129.54 203.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 129.54 201.93 0)) + (property "Footprint" "" (id 2) (at 129.54 196.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 129.54 196.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e8b19ed6-0062-433e-9cea-e9c02ab89971)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 130.81 273.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f7a11632-fb62-4368-a9d7-00c0b0440720) + (property "Reference" "#PWR012" (id 0) (at 130.81 279.4 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 130.81 278.13 0)) + (property "Footprint" "" (id 2) (at 130.81 273.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 130.81 273.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1fcc75e8-7a2d-4316-8c95-e44f3ab92fd9)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 129.54 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9ae6a6a-9dc4-4ba3-b16b-408cdbca22dd) + (property "Reference" "#PWR04" (id 0) (at 129.54 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 129.54 87.63 0)) + (property "Footprint" "" (id 2) (at 129.54 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 129.54 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 92c5be3f-08ce-4607-8344-776e0aa6efee)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 142.24 262.89 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ff0d3250-1bb4-4609-b15c-01c7013f7914) + (property "Reference" "v11" (id 0) (at 142.24 250.19 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 142.24 254 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 142.24 257.81 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 262.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d8c7ffda-a0e9-46cd-8a91-e16ebafb2969)) + (pin "2" (uuid 60b0f778-0b38-4b64-8d6f-75f65ca9e872)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/67fedf20-bb52-40d8-98f7-6a316b52cd94" + (reference "#PWR01") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/01236466-3af8-4f90-92b9-6b5fed51c68d" + (reference "#PWR02") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/eb7ad720-22c6-48f4-a761-f7110cb5d681" + (reference "#PWR03") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/f9ae6a6a-9dc4-4ba3-b16b-408cdbca22dd" + (reference "#PWR04") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/a5d6952b-9b07-48c6-823b-02c0e118e793" + (reference "#PWR05") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/f71eb19b-9b15-4f3b-abc8-744f5f82a6ba" + (reference "#PWR06") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/2e6960fa-b256-461e-ab61-9d596fdb8467" + (reference "#PWR07") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/9ed3592d-c946-48f6-9d24-eff8859d1f03" + (reference "#PWR08") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/a69e4540-943d-4e2a-901b-ef1656472135" + (reference "#PWR09") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/717b4f67-493e-441a-a382-13f3a9c29c35" + (reference "#PWR010") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/d86cdc37-de82-4aae-8802-d0cc1ae098fa" + (reference "#PWR011") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/f7a11632-fb62-4368-a9d7-00c0b0440720" + (reference "#PWR012") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/cff17008-0d58-43fa-b8db-b4548e36b1bf" + (reference "#PWR013") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/ef4ef303-a4c7-4685-8675-02ac2aa84c8d" + (reference "#PWR014") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/5322d8af-0c6f-4bd3-b488-15d0703fc878" + (reference "#PWR015") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/172dab3b-beca-465b-8bc4-a1e8f6dab5fe" + (reference "#PWR016") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/2382d58b-0b86-4820-ab1d-9cce064bde30" + (reference "U1") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/e4b8802f-0f30-4755-9b04-a978591f03b6" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/e8d66ed0-4a4a-4ce2-8c98-878581763f1d" + (reference "U3") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/8746a517-c116-457e-b00a-84bd2ba918ad" + (reference "U4") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/20d3ff0f-f996-4e38-8758-005a071beb85" + (reference "U5") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/d944320b-f229-4b2f-9dc2-c3af6a74ecdc" + (reference "U6") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/78e94bec-7084-4916-b076-d5ce68b96897" + (reference "U7") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/1c0c2301-cabd-43a6-b1b3-158d446bf8e2" + (reference "U8") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/2e22e926-253f-4ba7-87f4-2e6df32918eb" + (reference "U9") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/54b978b2-db33-44ea-8839-781d5312ad7e" + (reference "U10") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/70077156-468e-47f0-bf5a-7fa2ff4670b7" + (reference "U11") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/286f8a30-ef58-4928-b01d-cf623dc47c92" + (reference "U12") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/429fa946-99d6-4ca3-93d4-d29e52b2bf92" + (reference "U13") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/860f0f01-73bb-464b-b106-09f0e5b0947b" + (reference "U14") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/8b63343f-5c19-406f-81b2-907ab4853733" + (reference "U15") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/944cafd2-c730-421c-9fae-9c400d280d3a" + (reference "U16") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/19069d65-c4e5-4681-ae9e-7ff21055b317" + (reference "U17") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/41336c68-892f-48ed-b7de-49bd2b74207e" + (reference "X1") (unit 1) (value "SN74688") (footprint "") + ) + (path "/da09b2f9-53ad-47fa-914f-eeece27e75cb" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/8b546d16-12e2-477a-9e7b-591860234e06" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/64687e15-0e9a-44be-8a4b-acb1c70c72b0" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/eeb5d60e-0c1c-43e1-97ea-55614c85dad9" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/746498d7-555d-483f-82e9-882f029616ad" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/1b0cdb1a-9e5b-4976-821c-1357dcd29365" + (reference "v6") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/18c24738-fc74-49a6-aab1-5529213188bb" + (reference "v7") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/ad5804fb-deae-4f6e-8293-42815435faa3" + (reference "v8") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/b99a2abc-f0a6-43b6-a26c-103589dd1345" + (reference "v9") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/d69974e9-1b95-4793-8405-1f5e55af5dc4" + (reference "v10") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/ff0d3250-1bb4-4609-b15c-01c7013f7914" + (reference "v11") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/0e49f87a-5dd2-403e-a8a8-2d3a36155ead" + (reference "v12") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/263f20eb-aad5-4212-8e19-25f286b8197b" + (reference "v13") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/5397909c-e5ee-4271-b01c-79c22e139f9c" + (reference "v14") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/45dd1810-f7fe-45fc-814a-0cc92b2f8e5f" + (reference "v15") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/35992878-274a-4118-a773-5a0fca9cb775" + (reference "v16") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74688/Test_SN74688.proj b/library/SubcircuitLibrary/SN74688/Test_SN74688.proj new file mode 100644 index 000000000..46283507e --- /dev/null +++ b/library/SubcircuitLibrary/SN74688/Test_SN74688.proj @@ -0,0 +1 @@ +schematicFile Test_SN74688.kicad_sch diff --git a/library/SubcircuitLibrary/SN74688/Test_SN74688_Previous_Values.xml b/library/SubcircuitLibrary/SN74688/Test_SN74688_Previous_Values.xml new file mode 100644 index 000000000..1fe759933 --- /dev/null +++ b/library/SubcircuitLibrary/SN74688/Test_SN74688_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0.1160secmsmspulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n40m80mpulse0501n1n40m80mpulse0501n1n20m40mpulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n20m40mpulse0501n1n30m60mpulse0501n1n30m60mpulse0501n1n40m80mpulse0501n1n40m80mpulse0501n1n20m40mpulse0501n1n10m20mpulse0501n1n20m40mpulse0501n1n10m20md_ord_andd_anddac_bridged_andd_andd_inverterd_inverterd_ord_ord_ord_inverterd_inverterd_andd_andd_ord_ord_inverterd_inverterd_andd_ord_inverterd_ord_inverterd_inverterd_inverterd_inverterd_inverterd_andd_andd_andd_andd_inverterd_inverterd_andd_andd_inverterd_inverterd_andd_andd_inverteradc_bridged_inverteradc_bridgeadc_bridgeadc_bridged_andd_inverterd_andd_andd_andd_inverterd_inverterd_inverteradc_bridgeadc_bridgeadc_bridgeadc_bridged_andd_andd_andd_inverterd_inverterd_andadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridge \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74688/analysis b/library/SubcircuitLibrary/SN74688/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74688/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7482/SN7482_subckt.cir b/library/SubcircuitLibrary/SN7482/SN7482_subckt.cir new file mode 100644 index 000000000..59ec9c9f6 --- /dev/null +++ b/library/SubcircuitLibrary/SN7482/SN7482_subckt.cir @@ -0,0 +1,33 @@ +.title KiCad schematic +U13 Net-_U11-Pad3_ B2 Net-_U13-Pad3_ d_and +U12 B2 A2 Net-_U12-Pad3_ d_and +U14 Net-_U11-Pad3_ A2 Net-_U14-Pad3_ d_and +U23 Net-_U19-Pad3_ Net-_U14-Pad3_ C2 d_or +U1 A1 B1 C0 A2 B2 S1 S2 C2 PORT +U19 Net-_U12-Pad3_ Net-_U13-Pad3_ Net-_U19-Pad3_ d_or +U21 Net-_U11-Pad3_ Net-_U21-Pad2_ d_inverter +U4 A2 Net-_U4-Pad2_ d_inverter +U8 B2 Net-_U4-Pad2_ Net-_U11-Pad1_ d_and +U9 Net-_U5-Pad2_ A2 Net-_U11-Pad2_ d_and +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_or +U5 B2 Net-_U5-Pad2_ d_inverter +U7 Net-_U3-Pad2_ A1 Net-_U10-Pad2_ d_and +U6 B1 Net-_U2-Pad2_ Net-_U10-Pad1_ d_and +U2 A1 Net-_U2-Pad2_ d_inverter +U3 B1 Net-_U3-Pad2_ d_inverter +U20 C0 Net-_U20-Pad2_ d_inverter +U18 Net-_U10-Pad3_ Net-_U18-Pad2_ d_inverter +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_or +U17 C0 A1 Net-_U17-Pad3_ d_and +U15 B1 A1 Net-_U15-Pad3_ d_and +U16 B1 C0 Net-_U16-Pad3_ d_and +U22 Net-_U15-Pad3_ Net-_U16-Pad3_ Net-_U22-Pad3_ d_or +U26 Net-_U22-Pad3_ Net-_U17-Pad3_ C1 d_or +U25 Net-_U20-Pad2_ Net-_U10-Pad3_ Net-_U25-Pad3_ d_and +U24 C0 Net-_U18-Pad2_ Net-_U24-Pad3_ d_and +U27 Net-_U24-Pad3_ Net-_U25-Pad3_ S1 d_or +U28 C1 Net-_U28-Pad2_ d_inverter +U30 C1 Net-_U21-Pad2_ Net-_U30-Pad3_ d_and +U29 Net-_U28-Pad2_ Net-_U11-Pad3_ Net-_U29-Pad3_ d_and +U31 Net-_U29-Pad3_ Net-_U30-Pad3_ S2 d_or +.end diff --git a/library/SubcircuitLibrary/SN7482/SN7482_subckt.cir.out b/library/SubcircuitLibrary/SN7482/SN7482_subckt.cir.out new file mode 100644 index 000000000..80f483d89 --- /dev/null +++ b/library/SubcircuitLibrary/SN7482/SN7482_subckt.cir.out @@ -0,0 +1,132 @@ +.title kicad schematic + +* u13 net-_u11-pad3_ b2 net-_u13-pad3_ d_and +* u12 b2 a2 net-_u12-pad3_ d_and +* u14 net-_u11-pad3_ a2 net-_u14-pad3_ d_and +* u23 net-_u19-pad3_ net-_u14-pad3_ c2 d_or +* u1 a1 b1 c0 a2 b2 s1 s2 c2 port +* u19 net-_u12-pad3_ net-_u13-pad3_ net-_u19-pad3_ d_or +* u21 net-_u11-pad3_ net-_u21-pad2_ d_inverter +* u4 a2 net-_u4-pad2_ d_inverter +* u8 b2 net-_u4-pad2_ net-_u11-pad1_ d_and +* u9 net-_u5-pad2_ a2 net-_u11-pad2_ d_and +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_or +* u5 b2 net-_u5-pad2_ d_inverter +* u7 net-_u3-pad2_ a1 net-_u10-pad2_ d_and +* u6 b1 net-_u2-pad2_ net-_u10-pad1_ d_and +* u2 a1 net-_u2-pad2_ d_inverter +* u3 b1 net-_u3-pad2_ d_inverter +* u20 c0 net-_u20-pad2_ d_inverter +* u18 net-_u10-pad3_ net-_u18-pad2_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_or +* u17 c0 a1 net-_u17-pad3_ d_and +* u15 b1 a1 net-_u15-pad3_ d_and +* u16 b1 c0 net-_u16-pad3_ d_and +* u22 net-_u15-pad3_ net-_u16-pad3_ net-_u22-pad3_ d_or +* u26 net-_u22-pad3_ net-_u17-pad3_ c1 d_or +* u25 net-_u20-pad2_ net-_u10-pad3_ net-_u25-pad3_ d_and +* u24 c0 net-_u18-pad2_ net-_u24-pad3_ d_and +* u27 net-_u24-pad3_ net-_u25-pad3_ s1 d_or +* u28 c1 net-_u28-pad2_ d_inverter +* u30 c1 net-_u21-pad2_ net-_u30-pad3_ d_and +* u29 net-_u28-pad2_ net-_u11-pad3_ net-_u29-pad3_ d_and +* u31 net-_u29-pad3_ net-_u30-pad3_ s2 d_or +a1 [net-_u11-pad3_ b2 ] net-_u13-pad3_ u13 +a2 [b2 a2 ] net-_u12-pad3_ u12 +a3 [net-_u11-pad3_ a2 ] net-_u14-pad3_ u14 +a4 [net-_u19-pad3_ net-_u14-pad3_ ] c2 u23 +a5 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u19-pad3_ u19 +a6 net-_u11-pad3_ net-_u21-pad2_ u21 +a7 a2 net-_u4-pad2_ u4 +a8 [b2 net-_u4-pad2_ ] net-_u11-pad1_ u8 +a9 [net-_u5-pad2_ a2 ] net-_u11-pad2_ u9 +a10 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a11 b2 net-_u5-pad2_ u5 +a12 [net-_u3-pad2_ a1 ] net-_u10-pad2_ u7 +a13 [b1 net-_u2-pad2_ ] net-_u10-pad1_ u6 +a14 a1 net-_u2-pad2_ u2 +a15 b1 net-_u3-pad2_ u3 +a16 c0 net-_u20-pad2_ u20 +a17 net-_u10-pad3_ net-_u18-pad2_ u18 +a18 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a19 [c0 a1 ] net-_u17-pad3_ u17 +a20 [b1 a1 ] net-_u15-pad3_ u15 +a21 [b1 c0 ] net-_u16-pad3_ u16 +a22 [net-_u15-pad3_ net-_u16-pad3_ ] net-_u22-pad3_ u22 +a23 [net-_u22-pad3_ net-_u17-pad3_ ] c1 u26 +a24 [net-_u20-pad2_ net-_u10-pad3_ ] net-_u25-pad3_ u25 +a25 [c0 net-_u18-pad2_ ] net-_u24-pad3_ u24 +a26 [net-_u24-pad3_ net-_u25-pad3_ ] s1 u27 +a27 c1 net-_u28-pad2_ u28 +a28 [c1 net-_u21-pad2_ ] net-_u30-pad3_ u30 +a29 [net-_u28-pad2_ net-_u11-pad3_ ] net-_u29-pad3_ u29 +a30 [net-_u29-pad3_ net-_u30-pad3_ ] s2 u31 +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u19 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u11 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u10 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u16 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u22 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u26 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u27 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u28 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u30 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u29 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u31 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN7482/SN7482_subckt.kicad_sch b/library/SubcircuitLibrary/SN7482/SN7482_subckt.kicad_sch new file mode 100644 index 000000000..a52218374 --- /dev/null +++ b/library/SubcircuitLibrary/SN7482/SN7482_subckt.kicad_sch @@ -0,0 +1,2015 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 2eee67a1-4aef-4ef9-afec-9e37a65e631f) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 44.45 135.89) (diameter 0) (color 0 0 0 0) + (uuid 0d1a0d0d-a68f-40f0-ab2b-ccd92a2cf068) + ) + (junction (at 135.89 36.83) (diameter 0) (color 0 0 0 0) + (uuid 23ce2f0a-7e92-4cc7-af8c-284f452fc554) + ) + (junction (at 64.77 151.13) (diameter 0) (color 0 0 0 0) + (uuid 3af07732-6d4d-4c11-af38-1bb74910a8cc) + ) + (junction (at 38.1 54.61) (diameter 0) (color 0 0 0 0) + (uuid 3d72c0b5-5560-4984-b2b5-8920a3517f81) + ) + (junction (at 67.31 166.37) (diameter 0) (color 0 0 0 0) + (uuid 4c87d242-6ebb-4b91-b12e-9f47bd9186e3) + ) + (junction (at 146.05 144.78) (diameter 0) (color 0 0 0 0) + (uuid 528a02ab-41ab-4347-8606-f0bc8951b07f) + ) + (junction (at 152.4 66.04) (diameter 0) (color 0 0 0 0) + (uuid 5ee54180-098e-49ec-b8ca-6e607af312f4) + ) + (junction (at 78.74 180.34) (diameter 0) (color 0 0 0 0) + (uuid 80b1ddf9-6cd2-429e-9ecd-2ce17bba72a5) + ) + (junction (at 38.1 49.53) (diameter 0) (color 0 0 0 0) + (uuid 8a64851f-37ac-4965-8c9e-ae4010142843) + ) + (junction (at 44.45 157.48) (diameter 0) (color 0 0 0 0) + (uuid 93a54a70-b6da-48a2-b6a9-cdda13639343) + ) + (junction (at 64.77 86.36) (diameter 0) (color 0 0 0 0) + (uuid a835296a-5d4d-409f-bca3-002fd8f8c5ab) + ) + (junction (at 38.1 27.94) (diameter 0) (color 0 0 0 0) + (uuid af3714a3-44fe-4f32-afa6-b6670e103432) + ) + (junction (at 236.22 96.52) (diameter 0) (color 0 0 0 0) + (uuid b8a2ddb4-1bbb-4d2a-95ba-0432c66c7941) + ) + (junction (at 152.4 62.23) (diameter 0) (color 0 0 0 0) + (uuid bc65a5a7-63f7-4602-8df4-2609b6618be3) + ) + (junction (at 64.77 43.18) (diameter 0) (color 0 0 0 0) + (uuid bd5b9a66-2b46-4dfe-a97b-70a7ef4f2823) + ) + (junction (at 38.1 83.82) (diameter 0) (color 0 0 0 0) + (uuid cec66c8d-b5f3-4707-8456-b3b42bfa0116) + ) + (junction (at 67.31 162.56) (diameter 0) (color 0 0 0 0) + (uuid f44c3086-5e6c-4b82-8a6b-b6010803f015) + ) + (junction (at 107.95 100.33) (diameter 0) (color 0 0 0 0) + (uuid f7004938-c09e-47da-a3fb-178d9b3794c0) + ) + (junction (at 64.77 168.91) (diameter 0) (color 0 0 0 0) + (uuid faeb2072-e80b-409e-89e1-861d539f0494) + ) + + (wire (pts (xy 44.45 135.89) (xy 48.26 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0220acfd-e22c-46e6-83af-532e374a4dbf) + ) + (wire (pts (xy 187.96 90.17) (xy 201.93 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02385a34-14df-4177-a2bc-f9b35b99f318) + ) + (wire (pts (xy 78.74 194.31) (xy 78.74 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 046bc0b0-1a0c-4270-b73f-117da8cee96d) + ) + (wire (pts (xy 57.15 40.64) (xy 69.85 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 049254fc-02e6-4764-aa7e-e60db9b3e6b2) + ) + (wire (pts (xy 92.71 31.75) (xy 102.87 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04bbb7b6-1349-4431-82a6-4125394493ec) + ) + (wire (pts (xy 151.13 167.64) (xy 142.24 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06005b49-91a5-44cc-9eea-d7fe06182876) + ) + (wire (pts (xy 146.05 157.48) (xy 78.74 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06032c4c-7432-44ea-8d62-cee0494a2743) + ) + (wire (pts (xy 64.77 86.36) (xy 64.77 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 076aebcc-75bd-4ecd-8ca2-f08694dac9bd) + ) + (wire (pts (xy 64.77 43.18) (xy 64.77 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 080e4b6c-75ce-41b6-a026-254a1b9fe76d) + ) + (wire (pts (xy 212.09 46.99) (xy 219.71 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08c0312c-39ca-4701-b027-67f7d1b2d972) + ) + (wire (pts (xy 323.85 118.11) (xy 340.36 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0cfa6b0c-9056-475d-be26-3151fead74d4) + ) + (wire (pts (xy 257.81 96.52) (xy 267.97 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0db3965b-4396-4ac5-a9bf-2a9468b469f8) + ) + (wire (pts (xy 267.97 144.78) (xy 267.97 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15029237-c203-451e-8e5f-c4a4a4779f63) + ) + (wire (pts (xy 60.96 54.61) (xy 60.96 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 152e2a71-40b1-4199-a3a4-d2bec6a55a6c) + ) + (wire (pts (xy 156.21 99.06) (xy 165.1 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 153b64ea-b9a6-4c50-bbae-ae6ab1372c22) + ) + (wire (pts (xy 92.71 41.91) (xy 102.87 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 180b5efd-e9cf-4463-bb7f-68e31c15c4f7) + ) + (wire (pts (xy 38.1 27.94) (xy 38.1 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a73dab5-50ea-4623-8474-e951166aff3d) + ) + (wire (pts (xy 67.31 162.56) (xy 67.31 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b803fbb-7dd9-45cc-b790-f5540f07e732) + ) + (wire (pts (xy 58.42 19.05) (xy 58.42 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bc6723a-7c86-4218-991a-7e93790267d7) + ) + (wire (pts (xy 177.8 48.26) (xy 189.23 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cfdf308-c5e1-42ba-a712-db5581bab663) + ) + (wire (pts (xy 107.95 100.33) (xy 107.95 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fe165c0-0380-4a94-b6fb-a27d10226e05) + ) + (wire (pts (xy 300.99 113.03) (xy 300.99 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2221c7f9-41e6-4f58-9079-9d549dd4015a) + ) + (wire (pts (xy 152.4 62.23) (xy 152.4 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 235d0bc9-4c0e-4c61-b279-83a91dde8c49) + ) + (wire (pts (xy 64.77 86.36) (xy 133.35 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 290ad6e6-85c5-48ad-8f4b-c635bf25263e) + ) + (wire (pts (xy 247.65 41.91) (xy 242.57 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b145814-fef0-4aa1-b7da-ca1545982651) + ) + (wire (pts (xy 44.45 157.48) (xy 44.45 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b6e72cc-0d2c-40f5-9806-e3ea7b0899d2) + ) + (wire (pts (xy 219.71 38.1) (xy 219.71 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f0ac2e7-51fd-4d59-b113-78551a275e6d) + ) + (wire (pts (xy 146.05 144.78) (xy 146.05 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f50e56e-c284-4528-b4f3-431e27892966) + ) + (wire (pts (xy 63.5 157.48) (xy 63.5 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f612832-4583-4bc9-95d4-e4f14901c5a3) + ) + (wire (pts (xy 212.09 38.1) (xy 219.71 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 319300c1-ea92-481f-858e-8b80d69d6396) + ) + (wire (pts (xy 135.89 26.67) (xy 177.8 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34978664-8c52-4ba2-9264-4d81d1ce38e6) + ) + (wire (pts (xy 67.31 162.56) (xy 67.31 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 379e1edb-36a7-4313-9aee-6b9f2eba1960) + ) + (wire (pts (xy 152.4 66.04) (xy 107.95 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 391078ba-d278-4489-a139-0895786fac44) + ) + (wire (pts (xy 173.99 36.83) (xy 189.23 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d1c68dc-d230-47cf-9777-574619ac596b) + ) + (wire (pts (xy 44.45 157.48) (xy 48.26 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ee0ffb6-0f88-43a0-a794-324bdae7d7b9) + ) + (wire (pts (xy 107.95 110.49) (xy 133.35 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41d6dccf-6013-436d-a469-516a8896d352) + ) + (wire (pts (xy 38.1 49.53) (xy 41.91 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41f95345-5f26-496c-a0f0-7dfb0eaf7516) + ) + (wire (pts (xy 44.45 162.56) (xy 67.31 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4590017f-5ece-4107-bd12-42373fed0529) + ) + (wire (pts (xy 99.06 149.86) (xy 109.22 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ab871d5-1a64-415f-9709-7967790a3e1f) + ) + (wire (pts (xy 67.31 138.43) (xy 76.2 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b0b4e65-280e-4509-a3ae-82edfcf8d54b) + ) + (wire (pts (xy 135.89 36.83) (xy 135.89 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ce44fd0-adda-4f52-9a03-e5c3f1d8fea7) + ) + (wire (pts (xy 162.56 36.83) (xy 162.56 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fed15b8-aaf4-4ce1-afb4-c932f81036f2) + ) + (wire (pts (xy 35.56 49.53) (xy 38.1 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ffd6379-90a2-48fc-b006-d89ebb389b1b) + ) + (wire (pts (xy 44.45 135.89) (xy 44.45 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52197e81-3f3e-4218-ad40-80c5ed945ea0) + ) + (wire (pts (xy 57.15 49.53) (xy 57.15 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52936b92-6964-416c-8339-b34d8b6df858) + ) + (wire (pts (xy 201.93 90.17) (xy 201.93 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5295c699-ef12-4370-b0df-fb1b945a0776) + ) + (wire (pts (xy 38.1 27.94) (xy 41.91 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57a6837c-4792-4ec0-9f07-22b50a712942) + ) + (wire (pts (xy 64.77 114.3) (xy 133.35 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 594856fc-ba2a-4335-9fca-6614a39dc22c) + ) + (wire (pts (xy 201.93 113.03) (xy 201.93 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bbabf88-6f45-430a-96ea-14dcd0825457) + ) + (wire (pts (xy 64.77 151.13) (xy 76.2 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cd21c78-c0f2-4d86-84ea-af377b246c9c) + ) + (wire (pts (xy 109.22 149.86) (xy 109.22 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d6a1405-b75d-46c9-9089-450c3aeb06d3) + ) + (wire (pts (xy 38.1 97.79) (xy 133.35 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d729dab-339a-4935-a384-f3072ab707a6) + ) + (wire (pts (xy 64.77 151.13) (xy 64.77 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 622e5fe3-b3f6-4bcb-8bc0-8bbf7f82241e) + ) + (wire (pts (xy 102.87 31.75) (xy 102.87 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63a4f244-f3fb-4d57-a40e-395df087ef4e) + ) + (wire (pts (xy 67.31 182.88) (xy 119.38 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64c70f94-75ad-4a46-b962-24728ca8b18d) + ) + (wire (pts (xy 107.95 66.04) (xy 107.95 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6636806e-0345-44df-b44b-4cf930666f4f) + ) + (wire (pts (xy 171.45 62.23) (xy 171.45 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67b66d6d-304d-4d08-8e69-0678b9392124) + ) + (wire (pts (xy 38.1 54.61) (xy 60.96 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ef21a82-6742-4767-9e4a-2c68df84b860) + ) + (wire (pts (xy 107.95 100.33) (xy 133.35 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74518c7c-df1f-49df-870c-b2718ca86c9a) + ) + (wire (pts (xy 64.77 127) (xy 64.77 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7512b3fd-5dbf-4607-a35b-2a502b04ac00) + ) + (wire (pts (xy 236.22 124.46) (xy 267.97 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 753750a1-8c34-4ce0-9dee-c428b08dd419) + ) + (wire (pts (xy 35.56 27.94) (xy 38.1 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 795842e7-188c-46b9-bf09-7975b49848f9) + ) + (wire (pts (xy 58.42 43.18) (xy 64.77 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a4b2222-1d24-4d28-b62c-8a373c2c9ca9) + ) + (wire (pts (xy 232.41 114.3) (xy 232.41 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ae65200-4784-47a3-94f2-85aaebd00803) + ) + (wire (pts (xy 236.22 96.52) (xy 242.57 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d0faa3e-4e36-479e-be82-e5d697c824e0) + ) + (wire (pts (xy 152.4 62.23) (xy 156.21 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e059483-6106-4d86-addb-da4dc878b02d) + ) + (wire (pts (xy 38.1 54.61) (xy 38.1 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 817dcc87-ce21-4063-aab5-41a78c3b052a) + ) + (wire (pts (xy 165.1 99.06) (xy 165.1 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89487cad-9f25-451b-b15e-09ec300c914f) + ) + (wire (pts (xy 146.05 123.19) (xy 232.41 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8afba77e-3c3f-49b5-bdbd-eb246d9f847e) + ) + (wire (pts (xy 300.99 119.38) (xy 300.99 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c01f73e-cb86-4a6b-bb9a-655549dfe5c8) + ) + (wire (pts (xy 173.99 66.04) (xy 173.99 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c7d5d2d-03a1-454b-a742-ba8e62e34cd5) + ) + (wire (pts (xy 146.05 144.78) (xy 146.05 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f629719-79e0-4e5b-bb49-9adfbe563b64) + ) + (wire (pts (xy 148.59 62.23) (xy 152.4 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90b16047-4fd0-4e63-b2eb-5a570d4c5d12) + ) + (wire (pts (xy 142.24 181.61) (xy 151.13 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9378094d-b05d-40e7-b4bc-220f99e90680) + ) + (wire (pts (xy 57.15 27.94) (xy 57.15 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93dce213-6108-4352-a6da-5e8b76ae576d) + ) + (wire (pts (xy 64.77 196.85) (xy 119.38 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96adddec-377a-4f36-a9fe-255725180cb2) + ) + (wire (pts (xy 119.38 194.31) (xy 78.74 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96b6a5ba-1021-48db-965b-2808a7a63ff5) + ) + (wire (pts (xy 38.1 83.82) (xy 38.1 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97648dda-90ae-4996-9fa0-5b74f127da69) + ) + (wire (pts (xy 152.4 66.04) (xy 173.99 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99300389-a663-46f3-b00d-ceda7e9429cc) + ) + (wire (pts (xy 60.96 30.48) (xy 69.85 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9be2145b-c936-4f92-81ec-849707e535bc) + ) + (wire (pts (xy 78.74 180.34) (xy 119.38 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c89a07a-85f6-4ed1-8d1c-1151bee193ef) + ) + (wire (pts (xy 41.91 157.48) (xy 44.45 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f6cecf9-5502-4871-a2da-534942c5a470) + ) + (wire (pts (xy 125.73 36.83) (xy 135.89 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f7ebbf8-3564-4a0f-b751-101c1f897ebd) + ) + (wire (pts (xy 44.45 127) (xy 64.77 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0e1bf64-8eff-4253-99f3-31bba5e727d9) + ) + (wire (pts (xy 173.99 172.72) (xy 187.96 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a23e6357-3487-4cc0-9205-b3eb18376725) + ) + (wire (pts (xy 236.22 96.52) (xy 236.22 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2f9b2dd-fe3c-4e39-8c2b-ad63e49ec2b1) + ) + (wire (pts (xy 78.74 157.48) (xy 78.74 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4e20230-7b85-49bb-adf7-f9ae1a58f8a9) + ) + (wire (pts (xy 135.89 36.83) (xy 147.32 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7be81da-37f0-4ce7-a24a-0b6cc8c25965) + ) + (wire (pts (xy 99.06 139.7) (xy 109.22 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a86bf0bc-31cd-4804-803e-ad027b46d227) + ) + (wire (pts (xy 162.56 39.37) (xy 189.23 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab65f9cc-b67d-4360-a0ec-4821c27ffd29) + ) + (wire (pts (xy 38.1 83.82) (xy 133.35 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac1b2a3f-ada7-41a2-9117-5160f2ad578a) + ) + (wire (pts (xy 57.15 33.02) (xy 69.85 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad492b47-a446-4932-b898-903305f12673) + ) + (wire (pts (xy 67.31 166.37) (xy 119.38 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afb083ac-c4d9-46ff-9299-7a81a8cba3b4) + ) + (wire (pts (xy 41.91 135.89) (xy 44.45 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b040a25e-0b68-4154-8e43-d0fdac9f8074) + ) + (wire (pts (xy 165.1 88.9) (xy 165.1 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5bd3c58-7090-469c-8d01-ee679cdd1ffe) + ) + (wire (pts (xy 67.31 166.37) (xy 67.31 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7d6bf7f-6c1a-4f34-9fd2-70e318f26d31) + ) + (wire (pts (xy 63.5 148.59) (xy 76.2 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b905ac43-65b0-4a10-9354-8cc2b9862b1f) + ) + (wire (pts (xy 219.71 46.99) (xy 219.71 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba8d6213-0d8e-44df-8425-5ee660587ff4) + ) + (wire (pts (xy 64.77 168.91) (xy 64.77 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbc936fd-ccdf-4206-95a3-c05dfe499c37) + ) + (wire (pts (xy 290.83 125.73) (xy 300.99 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd0fa676-8662-4a8d-9eb9-90515e0600c6) + ) + (wire (pts (xy 180.34 144.78) (xy 267.97 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4e7a0d7-cdb5-4f49-b62e-959f743efacd) + ) + (wire (pts (xy 63.5 140.97) (xy 76.2 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c566491a-1a8d-4a9a-adf9-74f08f40ebb2) + ) + (wire (pts (xy 132.08 144.78) (xy 146.05 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8554677-01b2-4d7a-9650-1d5458c50194) + ) + (wire (pts (xy 177.8 26.67) (xy 177.8 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c88a6ac1-6271-4f73-83e4-c76079e57e91) + ) + (wire (pts (xy 142.24 195.58) (xy 187.96 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbd77c46-607b-454f-aaf0-c19c090175a9) + ) + (wire (pts (xy 151.13 171.45) (xy 151.13 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc0fa0d8-292b-4f6a-8395-35a08b577064) + ) + (wire (pts (xy 38.1 19.05) (xy 58.42 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0b4cf2e-f66c-4492-90ec-df5eea680660) + ) + (wire (pts (xy 156.21 113.03) (xy 201.93 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2a263ef-8e1a-484d-b11a-5e18e497b02d) + ) + (wire (pts (xy 171.45 45.72) (xy 189.23 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5b0ef6a-b961-4765-a718-4338e3ff1ace) + ) + (wire (pts (xy 187.96 172.72) (xy 187.96 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d60f7d69-3a20-4d7e-8acd-dbc5f5abbde1) + ) + (wire (pts (xy 151.13 181.61) (xy 151.13 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6675828-7b88-4175-90a9-202a43d787c9) + ) + (wire (pts (xy 109.22 139.7) (xy 109.22 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6d6b9bd-5ed5-470d-8df0-30f3f0897505) + ) + (wire (pts (xy 187.96 195.58) (xy 187.96 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da7ac7f5-e27b-4297-85d6-b8953f613c15) + ) + (wire (pts (xy 267.97 114.3) (xy 232.41 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db8288d9-ba44-4648-9711-9551c78faf3e) + ) + (wire (pts (xy 165.1 85.09) (xy 156.21 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e23487c3-e744-40df-998f-5c95cef56add) + ) + (wire (pts (xy 38.1 49.53) (xy 38.1 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e715d55a-b2d0-43a2-a8f3-161241708a9c) + ) + (wire (pts (xy 267.97 96.52) (xy 267.97 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e793b9f3-ad3f-4b4b-b9d9-a377866123dd) + ) + (wire (pts (xy 102.87 41.91) (xy 102.87 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e876f2f8-703d-4a37-8d8f-a52ffc7338c9) + ) + (wire (pts (xy 64.77 43.18) (xy 69.85 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid effbd862-d873-48ee-b4bd-377ac7254d49) + ) + (wire (pts (xy 63.5 135.89) (xy 63.5 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1f8c21f-752e-487c-b88f-be6826d42180) + ) + (wire (pts (xy 290.83 113.03) (xy 300.99 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f67a3f1d-d78d-4ad4-8bf0-5a3b0803faa4) + ) + (wire (pts (xy 133.35 110.49) (xy 133.35 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f763077a-8875-4c1f-b9af-95d9d86f2d42) + ) + (wire (pts (xy 64.77 168.91) (xy 119.38 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f830174f-a566-4293-8608-eedc0cf97e54) + ) + (wire (pts (xy 224.79 96.52) (xy 236.22 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe185b82-5ba7-4c7d-a61a-bbf26b166282) + ) + (wire (pts (xy 146.05 144.78) (xy 165.1 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff290149-332c-42f4-ab4b-cff4ea24264e) + ) + + (global_label "C2" (shape output) (at 210.82 179.07 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0eb8e242-7c14-4bb8-b189-26a4cb893811) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 210.7406 174.1774 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 35.56 27.94 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 299dd9e0-6945-4339-9009-05c96e578906) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 35.4806 23.2288 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B2" (shape input) (at 43.18 157.48 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4c2fb533-ca55-4227-8aec-cfa991f35234) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 43.1006 152.5874 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "C1" (shape input) (at 232.41 96.52 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 60f2b128-cb76-4f95-9ab9-14946431da0e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 232.3306 91.6274 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "S1" (shape output) (at 245.11 41.91 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7629bf99-3cae-451e-990a-1c81135fd37d) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 245.0306 37.0779 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "S2" (shape output) (at 336.55 118.11 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 9826c1c2-0415-4240-8f4c-180b1e459433) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 336.4706 113.2779 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B1" (shape input) (at 36.83 49.53 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b5d6192b-9e8e-427e-87a7-316db686e45a) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 36.7506 44.6374 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 43.18 135.89 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c6235acc-42d6-458c-8661-b66421f71d74) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 43.1006 131.1788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "C0" (shape input) (at 154.94 62.23 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d620f8f1-e9a9-4a0f-b36e-f4ca24f23477) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 154.8606 57.3374 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 135.89 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 05f2bb22-789d-4e57-9ca5-82590cfe114d) + (property "Reference" "U1" (id 0) (at 36.195 130.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c5ccd85-3f30-4294-b6af-113d3fcb3b12)) + (pin "2" (uuid 4a888b8c-8307-493e-9b3e-4e5a866457cf)) + (pin "3" (uuid 587a22ec-4fec-4bc6-bf7e-d945a0f1fe2c)) + (pin "4" (uuid 564e285c-ec3d-4f02-ac86-f9e7e30d00af)) + (pin "5" (uuid e12ec501-ef9c-4ea6-bb6c-122284844fd7)) + (pin "6" (uuid e27589aa-05ec-4d31-868a-1ebf1afd0125)) + (pin "7" (uuid 2f31b48e-46b2-423b-b733-5f7f3bb705f0)) + (pin "8" (uuid 1dd8df83-4188-4084-a386-068cfe5892bf)) + (pin "9" (uuid 4c0b1b88-a719-4daf-b971-b0f38873033e)) + (pin "10" (uuid e06f1e56-05a6-4cc0-b791-a9027dbd4faa)) + (pin "11" (uuid 52166aff-0073-44a1-8a23-a3abaa470fb2)) + (pin "12" (uuid bcf855a3-beb2-46b7-a81f-a89accfeae38)) + (pin "13" (uuid bb58ee3a-567e-4f0b-8705-4d51286ddae0)) + (pin "14" (uuid 8d358f53-e047-40ee-bd53-9043b7e0d931)) + (pin "15" (uuid 079e5699-a6ed-47f5-acf0-e2d4bae76bee)) + (pin "16" (uuid 0476efc0-ccf1-47e4-92a5-b29e92c43580)) + (pin "17" (uuid a8e3742a-c3eb-423e-8955-5e32513a4f92)) + (pin "18" (uuid 305f3601-c0f5-4284-8379-58f0703e2659)) + (pin "19" (uuid 8409b7c3-4ef8-46d4-a3e4-dc5dd13b1d0b)) + (pin "20" (uuid 24065867-5403-4add-893f-db4bb909c344)) + (pin "21" (uuid 3de26689-4cad-4f56-8052-b0a4a5e5f082)) + (pin "22" (uuid 211d45f9-31a1-4625-be2e-579162442899)) + (pin "23" (uuid 1f353414-21fb-42f6-8305-225df4243747)) + (pin "24" (uuid 712fe900-b3f3-4fdb-8aff-5bf9f38a8fd1)) + (pin "25" (uuid 56a442fc-f20c-4e90-8ee8-33b25b37c197)) + (pin "26" (uuid b16b7b2a-d1af-45cb-a279-8eb34fbc7c6d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 254 41.91 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 099fa375-4dfb-4bdc-8ad1-7635e600e3a2) + (property "Reference" "U1" (id 0) (at 257.81 41.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 257.81 43.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 254 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e2f4967-1a51-43f5-a69e-f6878aad7370)) + (pin "2" (uuid a5de75bf-3383-4cb6-a3d9-bbde3f6fdb3f)) + (pin "3" (uuid e60f7684-f2e6-4f90-930e-10ece57ba9ac)) + (pin "4" (uuid 95421920-c2d2-497d-b493-d393f8639386)) + (pin "5" (uuid 0395e87c-8cff-42aa-a589-5044b1f966b4)) + (pin "6" (uuid 3f50b2b8-1fe0-4730-a540-fcd8587ba003)) + (pin "7" (uuid 7ba0dd9d-439e-4e08-97f2-82715eedec92)) + (pin "8" (uuid f60cd0d4-67e2-4275-99dc-bb9eeb016dd3)) + (pin "9" (uuid 086ef5d5-b732-48a0-8d86-a4ad46895b57)) + (pin "10" (uuid 3f4fc116-02b9-4a65-9778-4c8ccae65c8e)) + (pin "11" (uuid 1747373e-dae9-406a-9b9b-fd14e9cf16ff)) + (pin "12" (uuid 29cae432-4a45-4d21-affe-80bd04feb870)) + (pin "13" (uuid f28a4e7a-f247-4cae-9fcf-86fcb09bbe36)) + (pin "14" (uuid 1e3dc1ad-2fd7-4ecc-91fa-501563d57391)) + (pin "15" (uuid 807c5ee2-667a-44a0-b4c3-2453542078b7)) + (pin "16" (uuid 794fa8d5-01b2-4269-a6d8-0ac6c142885e)) + (pin "17" (uuid d1e3ed61-75b9-4646-9b24-b6e2b1b6b1bf)) + (pin "18" (uuid 22c810bc-3a87-4827-9772-fa8946fab84c)) + (pin "19" (uuid f2586c7b-675f-4f8c-9861-7173ea0a1319)) + (pin "20" (uuid d3254317-ac2b-4794-97e5-ccd72367cf5d)) + (pin "21" (uuid 5aa4a2b3-f0c0-45eb-aee1-595c15668e28)) + (pin "22" (uuid c8c7ffea-c874-4051-a3da-61af4f326594)) + (pin "23" (uuid 15b92c74-4b9b-418d-9aba-a6fb540e4ac0)) + (pin "24" (uuid 6052357f-a31a-4048-905e-aa079ceea495)) + (pin "25" (uuid e1468527-e903-4916-b1fa-db5485d93f36)) + (pin "26" (uuid 414465b3-3af2-4ff7-9813-4a8d2bb8fad7)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 120.65 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0f6eb8c0-c71e-40f5-8ce7-66aed3d11413) + (property "Reference" "U11" (id 0) (at 120.65 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 120.65 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 120.65 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4be47b00-89af-473c-a544-3bba0c6f38e5)) + (pin "2" (uuid dbe570a1-6032-4785-9e67-a67296a5b05e)) + (pin "3" (uuid 5a345107-3ed7-4310-b0be-aedb41b2b1a6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 144.78 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 146b00da-0f26-4840-96fb-ec47917e1040) + (property "Reference" "U15" (id 0) (at 144.78 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 144.78 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 144.78 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 334fe65b-c5a2-4f2a-b2c0-98fe6a1ce9b7)) + (pin "2" (uuid d3743909-b387-4b5d-b2d0-1efbb346a336)) + (pin "3" (uuid 5b289b39-a0e8-4d88-b0a7-e2f089af2d71)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 114.3 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1ce8de75-2177-4348-b60f-7317f65ac33b) + (property "Reference" "U10" (id 0) (at 114.3 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 114.3 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 114.3 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 114.3 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8a89db9a-d40a-4914-9b6f-445359d8ae5c)) + (pin "2" (uuid 3e964d27-8047-4050-a23b-639919e0e2f2)) + (pin "3" (uuid 8907752f-80a4-46d0-b515-58b43493f64c)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 162.56 173.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 24e30316-c79e-410a-8e4c-49f0d7cf8093) + (property "Reference" "U19" (id 0) (at 162.56 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 162.56 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f86218cd-d1ef-4444-8070-316a56784961)) + (pin "2" (uuid 61a68760-3b96-4bbf-ba59-4c5ae38dfbef)) + (pin "3" (uuid 74e2dcad-5831-4afc-bf1b-ab29e91e0317)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 213.36 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 39df19ea-eb59-4500-bc15-c67bfafc1d77) + (property "Reference" "U26" (id 0) (at 213.36 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 213.36 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 213.36 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 213.36 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4d9c1353-db61-4ad8-b08a-b977203a94fd)) + (pin "2" (uuid 68cfcc12-2a6e-4957-99c2-d684ead77a97)) + (pin "3" (uuid 10668db6-b908-47a9-a445-72792f0dd880)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 49.53 49.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a96cc46-afe5-45d7-9c73-ca5a6e3de813) + (property "Reference" "U3" (id 0) (at 49.53 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 49.53 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 50.8 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 50.8 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5b79a9e3-722b-422f-a482-5a199914ce9e)) + (pin "2" (uuid c5f72ad7-e4c1-4117-9cc6-565d5d69130c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 200.66 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c0769d9-8602-40c3-a5e9-cb51cbf79e3b) + (property "Reference" "U24" (id 0) (at 200.66 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 200.66 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 200.66 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 89aec44e-e9ad-438f-9510-1f5b66a65e8a)) + (pin "2" (uuid a638e397-0ad2-43f0-8e6f-71c88090a1dc)) + (pin "3" (uuid bba29aaf-bed3-453a-9d4d-3f10ae79b9c8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 200.66 48.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3caa73d4-3223-4c05-b00e-ed8248b11ed5) + (property "Reference" "U25" (id 0) (at 200.66 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 200.66 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 200.66 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 605bbcd8-be44-451d-9307-e41a8f5b3c4b)) + (pin "2" (uuid cca75899-25ba-48d9-a8b9-408a0869160c)) + (pin "3" (uuid 7653c2bd-2c60-469d-86ec-6d50f4cea7d5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 250.19 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 407c62cf-d31d-42e0-83c8-b93d44f62d12) + (property "Reference" "U28" (id 0) (at 250.19 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 250.19 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 251.46 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 251.46 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 49e6bce8-8f21-416f-83e5-8f69ad4c5773)) + (pin "2" (uuid 172cf0b9-e72c-4671-9627-ccd664455301)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 87.63 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 42d09e12-659e-4126-8a51-654042287151) + (property "Reference" "U9" (id 0) (at 87.63 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 87.63 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f457cb11-f68b-4c37-915d-0ad48aca50ce)) + (pin "2" (uuid ddbbe16b-0239-4c3b-840c-08fbc2bb21ef)) + (pin "3" (uuid b4669f5e-e5d5-4a90-900d-d516ae54d4c6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 130.81 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 483dd089-ee99-4ce2-aee3-0d9417eba28c) + (property "Reference" "U12" (id 0) (at 130.81 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 130.81 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 130.81 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 130.81 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 363f7d3f-2c5e-4a50-9c0e-8f89304f0930)) + (pin "2" (uuid 431a9ea9-1ee6-48d6-8780-7775e2a36448)) + (pin "3" (uuid 055e5b94-fc62-42a5-bea0-cfc7fcce0b3a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 29.21 49.53 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5c97645f-442c-43a4-ac4a-e884d636000d) + (property "Reference" "U1" (id 0) (at 29.845 44.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 29.845 46.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 29.21 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 29.21 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5eb57fcc-1e16-42bf-b0ef-b2aee9b37678)) + (pin "2" (uuid 334c018b-b8ec-4430-a48d-823ce09b06fb)) + (pin "3" (uuid f0d008a9-3d4a-49a1-9880-91004fdedf5c)) + (pin "4" (uuid e88ab86b-505f-4f00-8ada-95ed6b1b9f4c)) + (pin "5" (uuid 0ee76d7a-9a1d-4a42-9d37-7163d952f6d9)) + (pin "6" (uuid c3d1d758-2e67-4243-be4f-f4f287dafa8e)) + (pin "7" (uuid d9211200-f341-4a79-9fef-bb1cfe36518a)) + (pin "8" (uuid 61368998-0200-49ba-a305-c88e58a0a357)) + (pin "9" (uuid d7760d0d-3cbd-42f1-8797-75f92984cc4e)) + (pin "10" (uuid 27b874aa-b14d-49ee-9f6d-5beb343b9983)) + (pin "11" (uuid a1fcbd30-1c4f-4969-9fb2-e1f3b33b364a)) + (pin "12" (uuid b0fba78b-c29b-4fed-a61a-cb562f8ba1f9)) + (pin "13" (uuid b48e65d1-cb1b-473a-b48b-4c1e89199337)) + (pin "14" (uuid 9939e618-99f9-4369-9459-0e1d215c9677)) + (pin "15" (uuid 59730d25-a7a2-4bcf-b3ce-fe1c81c15db1)) + (pin "16" (uuid a00cfe66-9375-464a-9692-ea1bd5c0396a)) + (pin "17" (uuid 78710d0c-1507-4805-85bd-3631c28984ee)) + (pin "18" (uuid f6adcea7-215d-4e96-b99a-d700bf06decb)) + (pin "19" (uuid c2da2d3d-5da2-45a9-a07a-8871ea6e48b7)) + (pin "20" (uuid ce4c62b0-30a9-4042-b8aa-51876c48fd3f)) + (pin "21" (uuid 6af34054-96c1-4a29-b831-a979dbb71408)) + (pin "22" (uuid 8bc37b6c-de94-4c3f-8ad1-4d7630488e22)) + (pin "23" (uuid 268953f0-5d63-493e-9bbc-fe8f4cbe51be)) + (pin "24" (uuid b7d521eb-78a8-4efb-abc5-f348b6363ea1)) + (pin "25" (uuid 8cce3f8d-489b-4034-aaa3-c2f6d4281770)) + (pin "26" (uuid c0bbedbc-8f54-4974-9d08-65d8e25498ec)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 157.48 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d7803e0-701a-4624-8ef5-a0863bda7d7a) + (property "Reference" "U1" (id 0) (at 36.195 152.4 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 154.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a364f77e-4be9-4d32-b859-da48fc5be6c6)) + (pin "2" (uuid 84cb0d15-934c-4127-bee8-36309d8ca1b6)) + (pin "3" (uuid a755ec66-fe69-4400-b31a-19d772a6e630)) + (pin "4" (uuid 6afac3e1-98f8-461a-9476-910cc8a3e76c)) + (pin "5" (uuid 9f7fde1d-13fc-42b2-8954-eb136933bfdc)) + (pin "6" (uuid dc5baf75-7f86-4014-aa8f-28d4e30dba0e)) + (pin "7" (uuid ef2838b0-2145-4479-ab3d-b2e25f671559)) + (pin "8" (uuid a25ad78e-5790-4baf-9155-d2aa2005e650)) + (pin "9" (uuid e92f6b35-8a02-42ca-80b8-0c0ebec5ad94)) + (pin "10" (uuid 8475c8eb-f209-4bb2-a0cd-0f37c429dbc8)) + (pin "11" (uuid d50805e2-6a7d-4e5f-80f7-664271e2b254)) + (pin "12" (uuid f70438d5-a9ec-42bc-b78c-828f5236c7e1)) + (pin "13" (uuid f35dc3d5-98f5-44f3-a7c4-cb0d04937dc8)) + (pin "14" (uuid f3c370fa-f69b-4d4a-8f0d-4e26ede3f543)) + (pin "15" (uuid 57acd3ae-caf7-4f06-84ab-8910c0ee39e1)) + (pin "16" (uuid f7ec3c94-aae5-4456-9ae9-a397a2532e04)) + (pin "17" (uuid 660f7c1d-e39a-4e87-a7f9-70599ec85a19)) + (pin "18" (uuid 3c94dc09-1550-4c77-a5e5-f01236d81be8)) + (pin "19" (uuid f8331259-5392-4cb1-bc67-922355987bbb)) + (pin "20" (uuid 4f8c3287-4325-47f9-9b38-80793cd1219a)) + (pin "21" (uuid 8f9af7f7-cc12-40a2-ab6c-65ce5f94fecb)) + (pin "22" (uuid a105954d-2243-413f-84f9-60dd8ce9710a)) + (pin "23" (uuid 4dc0447c-e97a-4241-aceb-db8d7b2d47c2)) + (pin "24" (uuid a312b1d6-50bf-4d2c-b61c-bc4ed4821a84)) + (pin "25" (uuid aab3e1f1-c94e-4a7e-a00f-a69ad0e2d5de)) + (pin "26" (uuid c8cf784c-4207-43ac-b4f3-46ffb24137b7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 346.71 118.11 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 61cb7982-6df9-4fe6-a3ee-1b022d856948) + (property "Reference" "U1" (id 0) (at 350.52 117.475 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 350.52 120.015 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 346.71 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 346.71 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 08dd7169-27f1-44bf-aeba-ad8a90ab204a)) + (pin "2" (uuid 986771f0-b5b1-4138-9eca-0bfcd9db2526)) + (pin "3" (uuid 91040896-6502-4fb1-9eee-32943edbd969)) + (pin "4" (uuid d759766b-568b-4304-8bd4-d5920694c3ec)) + (pin "5" (uuid fd0919c0-f4ba-4061-9d09-bcec6638d9dc)) + (pin "6" (uuid 03d4d3b7-d4b5-4923-89a8-07bb1dc25f2f)) + (pin "7" (uuid 7f9c01cb-6ab6-4a17-a39f-caedae056b46)) + (pin "8" (uuid 151dfb87-0977-4d7b-818c-4fe4b868d03b)) + (pin "9" (uuid 18229b8a-f3c9-4ffb-8205-efb261a0029d)) + (pin "10" (uuid abd02769-fdb1-47a3-9844-96eb382fd595)) + (pin "11" (uuid a5c91afc-96f2-4307-8d45-5debbf4fd456)) + (pin "12" (uuid 3ec5ff71-66f6-48cc-8edc-51b05aaa3182)) + (pin "13" (uuid 16ed9e74-d954-46c7-8e05-7b946f30d5fe)) + (pin "14" (uuid e3f8b96d-6c46-45d3-aec4-083c0463b94a)) + (pin "15" (uuid 91e20ada-6d14-4c7a-9adf-104742fa5855)) + (pin "16" (uuid 417a6531-1366-4761-880f-3bf3af3f9b4b)) + (pin "17" (uuid 41472c01-1213-42f2-b1f3-f0867eb3c384)) + (pin "18" (uuid d66e30fe-d3e1-4693-9b04-0fb7d7cd0570)) + (pin "19" (uuid 7e5a2ccd-c299-458e-bd3e-73aa585e64d3)) + (pin "20" (uuid 5c69929e-cf27-428c-b59d-b08c6b646623)) + (pin "21" (uuid 5627bab9-702c-4c3d-9b15-9b037a803dbb)) + (pin "22" (uuid 220f0145-5705-4dd7-8b8d-7b61d7bb0d5f)) + (pin "23" (uuid 9e089dfc-bb17-48da-80f4-815a2aa81fe8)) + (pin "24" (uuid 3cb6b774-7e84-4e99-896b-233a53c10187)) + (pin "25" (uuid 66f0edc4-ca21-4992-abe2-138cb8b0b26c)) + (pin "26" (uuid aa7bc0a8-e6c8-4485-9e25-d1134eb3772c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 144.78 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6686d0d8-ccbf-472a-8f18-27e71ee3fc62) + (property "Reference" "U16" (id 0) (at 144.78 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 144.78 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 144.78 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a97c66d-0af0-497a-8c79-d54693fcf7ee)) + (pin "2" (uuid 5410f853-d58c-40b3-b558-6098b0f7789c)) + (pin "3" (uuid 36f5ce7f-df95-4ee1-ac71-44fac058029b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 49.53 27.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e64ddcb-e871-439e-bcee-ed8d4fedffef) + (property "Reference" "U2" (id 0) (at 49.53 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 49.53 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 50.8 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 50.8 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9be4ebf2-5cdf-4681-82b6-447b6249be8c)) + (pin "2" (uuid bb1b3967-fd9b-4a24-89fc-dfce42558f7f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 144.78 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7116bdc0-30b1-4d24-a61f-51b1c9b9de66) + (property "Reference" "U17" (id 0) (at 144.78 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 144.78 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 144.78 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 144.78 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5bc544e0-1f44-4c86-849d-0da52a00d510)) + (pin "2" (uuid bb8114aa-bf11-4fa5-b23e-f5f9787b243c)) + (pin "3" (uuid 2f9ba9c7-4958-44dd-ad83-b1d667e722f1)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 176.53 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 72f3c339-2ce6-4071-9cab-1355d501182f) + (property "Reference" "U22" (id 0) (at 176.53 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 176.53 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 176.53 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 176.53 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid abb15202-f7bf-4676-bc71-1379713d056b)) + (pin "2" (uuid 260c37c6-79c0-47fa-bc88-c2a174b2ca8f)) + (pin "3" (uuid 1fff6285-e058-4f10-af81-2561409045e9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 29.21 27.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 83974235-7b4b-4551-b658-21db328e938c) + (property "Reference" "U1" (id 0) (at 29.845 22.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 29.845 25.4 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 29.21 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 29.21 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 163db7f8-efce-4879-a3a5-2fcc37409372)) + (pin "2" (uuid e0327e8a-826d-48cf-8b4d-29a743f8612c)) + (pin "3" (uuid 28c132dd-76f0-4fb3-8e5e-69f29f2d99c8)) + (pin "4" (uuid 355a56b9-19ec-49ba-be30-d39b8c87fff2)) + (pin "5" (uuid 400de84f-fd38-4650-9c51-a0683b96bc3c)) + (pin "6" (uuid 308a2c50-b192-4040-9737-b64cbb7094fe)) + (pin "7" (uuid 1075fe8e-0509-4910-a777-65db529bac90)) + (pin "8" (uuid 6a7d055b-e27a-4f87-955d-14091745fd05)) + (pin "9" (uuid 323a8f29-aebc-4bee-b588-c11f17b55b38)) + (pin "10" (uuid 8431f142-c540-4fd4-8070-e6535f3be0b6)) + (pin "11" (uuid 77187fc0-f963-44d9-beed-1e9e11976cc4)) + (pin "12" (uuid 81e31c4f-029f-47d7-887c-e16dfcb7d407)) + (pin "13" (uuid 10145a6d-886c-4e4d-9db5-fae546d965cd)) + (pin "14" (uuid 7bddb8f7-5977-409b-99be-c0a95cf0018b)) + (pin "15" (uuid 3e83b480-237f-4d6d-8471-970846cc3c04)) + (pin "16" (uuid 7accbaec-b307-4e69-b40b-688253b5d964)) + (pin "17" (uuid a5de91bd-bac5-4539-97c5-4eaf09c01006)) + (pin "18" (uuid b1ec2797-ab49-4ca9-a844-2548213b6957)) + (pin "19" (uuid 9f6ec69b-ec6d-49fb-b698-c362f6cff1c4)) + (pin "20" (uuid 9c75e2ae-883f-40cd-a0de-9b43b0e720f8)) + (pin "21" (uuid 867f83c1-6cab-4bf5-a2eb-6d4dbb78d9b9)) + (pin "22" (uuid 42c8293b-59b8-481c-abf9-9902d9bcbbc9)) + (pin "23" (uuid a8e9d788-c397-404a-8024-fbabf88a39ea)) + (pin "24" (uuid 0fc9e5b9-c1b3-45e0-9f7a-9d4e1ead36b4)) + (pin "25" (uuid f7ecfcb0-c78d-4a67-a958-d7b5d12b4e4d)) + (pin "26" (uuid a5587790-cd30-4606-a789-f59c1f964a7b)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 199.39 180.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 89989da3-988f-46e1-ace6-68b84001e6c6) + (property "Reference" "U23" (id 0) (at 199.39 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 199.39 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 199.39 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 199.39 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2e03c345-b784-4dc1-86ed-31cdb442e210)) + (pin "2" (uuid ec555f57-ef7b-490d-b2a7-8f66eb3d98b1)) + (pin "3" (uuid a1662d54-73e4-4c54-8a36-c8b31e723629)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 130.81 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9132aab0-ea13-4dbf-8045-d401b24947fe) + (property "Reference" "U14" (id 0) (at 130.81 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 130.81 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 130.81 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 130.81 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d2ea65e2-07e8-48c5-844e-b3de9ea28246)) + (pin "2" (uuid 772efb1a-f63e-4e10-8db6-acbb837ca11f)) + (pin "3" (uuid 81b2e144-0cf1-41b8-a67a-8cb41e5a6a6c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 154.94 36.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5ed2d76-3b4e-4f96-ad8e-e2a9d3d7460b) + (property "Reference" "U18" (id 0) (at 154.94 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 154.94 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 156.21 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ca3f8b8d-5ca0-42be-bc78-5a4a17f29f19)) + (pin "2" (uuid 40d803af-39ab-49e3-b40a-1317e6b4a03b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 279.4 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a8d9e994-e7f7-438d-8fc8-25ee6a3b8707) + (property "Reference" "U29" (id 0) (at 279.4 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 279.4 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 279.4 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 06ee594d-8870-4c76-bc57-eeb8fba9554b)) + (pin "2" (uuid 4a40e9d8-2a38-40df-b729-f2f6e6264f88)) + (pin "3" (uuid 32a0379e-850e-4088-b091-5c22b730760b)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 231.14 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid adff7e5c-c936-4b89-ada2-61e5744d9c0a) + (property "Reference" "U27" (id 0) (at 231.14 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 231.14 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 231.14 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 231.14 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 85ea90e3-7a41-4dc7-8822-e215dbe4eab3)) + (pin "2" (uuid 41a22745-690b-4385-907a-910167b17aca)) + (pin "3" (uuid ee214056-ab90-4529-887b-d5a090731391)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 55.88 157.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b00d6b56-2d64-43cc-97e3-bf787e4f1148) + (property "Reference" "U5" (id 0) (at 55.88 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 55.88 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 57.15 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 57.15 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc37c0a3-c49a-46b7-a232-d1f68bfb8072)) + (pin "2" (uuid d4a2ca51-3a94-44e4-9798-21c8c59947a1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 142.24 62.23 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b241ad41-c4ba-4006-bd05-43e088b04ddc) + (property "Reference" "U1" (id 0) (at 142.875 57.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 142.875 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 142.24 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 496a638e-2c3a-4064-adef-a941fed20898)) + (pin "2" (uuid 664b2bbc-1af7-4937-9ce8-d47506e093d4)) + (pin "3" (uuid 28b8e624-1ef2-4271-bf47-bb56d201cdf1)) + (pin "4" (uuid 7266e296-dfd3-4177-83be-49a389605b3f)) + (pin "5" (uuid 1cbb7ce5-7baf-494f-90b9-0a2f5ca7803c)) + (pin "6" (uuid 2af70eb8-b2c9-4521-919d-9c765271c730)) + (pin "7" (uuid 9a53b163-9812-410a-a98e-0ced142f98fb)) + (pin "8" (uuid b4e40006-98d0-4b45-8a78-b03b409108cd)) + (pin "9" (uuid c9e19768-760c-46aa-8a8d-a3838aa23862)) + (pin "10" (uuid c615a64f-79f2-4194-bab0-99271e697d55)) + (pin "11" (uuid 269e2257-407d-4667-be81-ca06e54dfbde)) + (pin "12" (uuid b4e32e52-1fe6-4b49-ae1b-a4fafad9be9f)) + (pin "13" (uuid 22c37528-937c-4eab-aa15-861c003a983e)) + (pin "14" (uuid 24a39b05-2358-4a9e-927a-9098279249c3)) + (pin "15" (uuid ce40f96e-d849-4085-abaf-3e17544700c1)) + (pin "16" (uuid 62f81625-31ab-4c1b-903b-680c0c64055e)) + (pin "17" (uuid 9068e07c-47e1-4466-9a48-216e1226d818)) + (pin "18" (uuid e0e9b17b-2f7f-4cd3-acc3-e809e5970a0a)) + (pin "19" (uuid 652de9dd-9f83-458c-967f-39643b13f8eb)) + (pin "20" (uuid 2d074b87-3e40-44bd-85a6-abed9773f8db)) + (pin "21" (uuid cfd39246-5390-422a-b363-3d89cc87bae6)) + (pin "22" (uuid 7f864bcb-ec22-42c1-b8fd-c088acb87b23)) + (pin "23" (uuid 0f74a7c6-ca3a-40cc-9fd6-17978fe300fa)) + (pin "24" (uuid 2b26751e-dca9-46a9-b31f-436d524d9dc2)) + (pin "25" (uuid 9f055392-3585-4c14-b09f-71e5e97d2bee)) + (pin "26" (uuid 098baa3d-d91d-4d3b-aa3f-826ac7cf92cc)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 172.72 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b542fbd1-54f5-45c7-a3ab-ee7af2fd2a1e) + (property "Reference" "U21" (id 0) (at 172.72 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 172.72 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 173.99 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 173.99 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cba6b264-6f03-4d99-92dd-6a7c4c779a6f)) + (pin "2" (uuid 257b4376-f095-4c4e-b2bd-9b5e446e25c8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 279.4 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b751d94f-ceeb-416a-a003-66bd85314e57) + (property "Reference" "U30" (id 0) (at 279.4 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 279.4 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 279.4 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2349f1d-70cc-469b-b934-00ddf6fe5075)) + (pin "2" (uuid 7952e031-fcd0-44cc-8201-ddfc6577afb0)) + (pin "3" (uuid c98d526a-9226-4ad1-bed0-5b356a76903e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 130.81 182.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b870b916-b81d-499e-8cf1-1172d263b896) + (property "Reference" "U13" (id 0) (at 130.81 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 130.81 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 130.81 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 130.81 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ce8e77ca-05e5-4025-898c-aeacc6ff7696)) + (pin "2" (uuid 5ece86c4-df74-48cf-84eb-5bb21c6b9320)) + (pin "3" (uuid 8208b4b8-c1af-4cd2-9397-84aa51666fbc)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 55.88 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c6bdcc49-2200-42b9-bb87-515c472d6b8c) + (property "Reference" "U4" (id 0) (at 55.88 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 55.88 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 57.15 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 57.15 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7fd6f462-eb78-4398-8fc8-872ae2208ea3)) + (pin "2" (uuid 280e34fe-0e19-4997-9f5c-6016e5404367)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 217.17 179.07 180) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cdd2e43b-c3c5-4bd6-a26c-b219e5f0857b) + (property "Reference" "U1" (id 0) (at 220.98 178.435 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 220.98 180.975 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 217.17 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58a2563f-5c30-428e-94b9-52a8abf8ae90)) + (pin "2" (uuid dc8a4343-9027-4768-81fb-9f13744f60db)) + (pin "3" (uuid efd08ea9-2a81-449b-b416-0c7761180d2b)) + (pin "4" (uuid b88beb6d-2c1f-411a-a39f-03609596a006)) + (pin "5" (uuid fc7b9783-748c-4554-bc79-3fad11951727)) + (pin "6" (uuid 0f463010-97bb-498a-b68a-b7c68e76851c)) + (pin "7" (uuid 5ccee7ae-7ef5-403b-8f10-c174e506a1f5)) + (pin "8" (uuid f40c41cb-4b8f-4d0d-84f3-4826fc96d46e)) + (pin "9" (uuid f081b20b-719a-45ce-87ca-b92d4f0d303e)) + (pin "10" (uuid 52db67eb-ca21-4eac-a01a-1f8be66e3083)) + (pin "11" (uuid 1ac74dbb-1eed-42b5-8252-032d3a077391)) + (pin "12" (uuid 1c96f9e8-a1f1-4a41-996e-0a1d7587254a)) + (pin "13" (uuid 74bfd9cc-1e20-4cc5-8879-de9faca5dd23)) + (pin "14" (uuid 0801817d-228c-4f78-94e4-46caf4e469d7)) + (pin "15" (uuid ffcb366b-683f-4873-be50-cbed05fada95)) + (pin "16" (uuid 87bfa4cd-8d79-4ab2-a617-0e3fad61e0a5)) + (pin "17" (uuid 2c6a00a1-9efd-4275-a65c-be8480dcf7c3)) + (pin "18" (uuid ca54005a-8712-4f5c-abf6-ae9bf7f1771b)) + (pin "19" (uuid 13b876d5-4299-47d1-ad3f-9b376cb6e26a)) + (pin "20" (uuid 2468b5b8-f9d0-42ab-bd68-50893fda04e6)) + (pin "21" (uuid 9a90457a-cc95-45f4-a305-4063d8fc474f)) + (pin "22" (uuid aa40c6d1-b128-421e-a83a-5a7b8fbc2cd3)) + (pin "23" (uuid 36f64f35-853f-4987-9581-5bfbcf2388df)) + (pin "24" (uuid a3805f3c-4d70-4b01-9a6b-8a852656a693)) + (pin "25" (uuid b5388e22-f528-4073-ae7f-18ad60936534)) + (pin "26" (uuid f6404af7-e5c0-4593-b00f-da14c3804f0a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 87.63 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf315ab4-84d3-4831-acf1-cc787a0adead) + (property "Reference" "U8" (id 0) (at 87.63 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 87.63 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7451f60e-e416-40e2-8eff-adbe1aedc5db)) + (pin "2" (uuid 0f288e21-d3b7-4e91-be3b-3824a2f55c4e)) + (pin "3" (uuid a0620575-8607-41e0-bdce-a45a9a7d4dbf)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 163.83 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d58a8365-6d5c-4c31-b53f-8744186cd10c) + (property "Reference" "U20" (id 0) (at 163.83 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 163.83 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 165.1 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 165.1 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2a0c0afc-9d1a-4fdc-918f-5c4c97dd3370)) + (pin "2" (uuid f446566b-6742-494d-b36d-691c888414bf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 81.28 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d7a7471f-851c-4cd8-a326-5da5bdcd04c6) + (property "Reference" "U7" (id 0) (at 81.28 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 81.28 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e7646ccf-b2d6-41f8-be66-557b713898b5)) + (pin "2" (uuid 33eac5ef-c147-4774-87ba-ab5833e67e16)) + (pin "3" (uuid a11d2ef5-3c66-470a-9044-82bdb9ce8ac8)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 312.42 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e06a9b92-af2f-40f6-8775-d3b1d603a4fa) + (property "Reference" "U31" (id 0) (at 312.42 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 312.42 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 312.42 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 312.42 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d62575ab-daf4-46d7-a287-c60e9654cd27)) + (pin "2" (uuid 006b8e50-547a-4a5b-a92a-f022dd790c16)) + (pin "3" (uuid c8998cc4-59fe-417d-bd89-a0c3d804b5bf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 81.28 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eae7859a-f751-4e51-bc86-1345c988a292) + (property "Reference" "U6" (id 0) (at 81.28 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 81.28 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 81.28 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 81.28 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae992258-e7e8-49e3-b782-955bb9e6f03d)) + (pin "2" (uuid a158feed-c90f-4bcf-9843-e6d659d77c4a)) + (pin "3" (uuid 2222bfc0-0513-4b4d-ade4-a4cee5183cfb)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/83974235-7b4b-4551-b658-21db328e938c" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/5c97645f-442c-43a4-ac4a-e884d636000d" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/b241ad41-c4ba-4006-bd05-43e088b04ddc" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/05f2bb22-789d-4e57-9ca5-82590cfe114d" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/5d7803e0-701a-4624-8ef5-a0863bda7d7a" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/099fa375-4dfb-4bdc-8ad1-7635e600e3a2" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/61cb7982-6df9-4fe6-a3ee-1b022d856948" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/cdd2e43b-c3c5-4bd6-a26c-b219e5f0857b" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/6e64ddcb-e871-439e-bcee-ed8d4fedffef" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3a96cc46-afe5-45d7-9c73-ca5a6e3de813" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c6bdcc49-2200-42b9-bb87-515c472d6b8c" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b00d6b56-2d64-43cc-97e3-bf787e4f1148" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/eae7859a-f751-4e51-bc86-1345c988a292" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/d7a7471f-851c-4cd8-a326-5da5bdcd04c6" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/cf315ab4-84d3-4831-acf1-cc787a0adead" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/42d09e12-659e-4126-8a51-654042287151" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/1ce8de75-2177-4348-b60f-7317f65ac33b" + (reference "U10") (unit 1) (value "d_or") (footprint "") + ) + (path "/0f6eb8c0-c71e-40f5-8ce7-66aed3d11413" + (reference "U11") (unit 1) (value "d_or") (footprint "") + ) + (path "/483dd089-ee99-4ce2-aee3-0d9417eba28c" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/b870b916-b81d-499e-8cf1-1172d263b896" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + (path "/9132aab0-ea13-4dbf-8045-d401b24947fe" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/146b00da-0f26-4840-96fb-ec47917e1040" + (reference "U15") (unit 1) (value "d_and") (footprint "") + ) + (path "/6686d0d8-ccbf-472a-8f18-27e71ee3fc62" + (reference "U16") (unit 1) (value "d_and") (footprint "") + ) + (path "/7116bdc0-30b1-4d24-a61f-51b1c9b9de66" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/a5ed2d76-3b4e-4f96-ad8e-e2a9d3d7460b" + (reference "U18") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/24e30316-c79e-410a-8e4c-49f0d7cf8093" + (reference "U19") (unit 1) (value "d_or") (footprint "") + ) + (path "/d58a8365-6d5c-4c31-b53f-8744186cd10c" + (reference "U20") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b542fbd1-54f5-45c7-a3ab-ee7af2fd2a1e" + (reference "U21") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/72f3c339-2ce6-4071-9cab-1355d501182f" + (reference "U22") (unit 1) (value "d_or") (footprint "") + ) + (path "/89989da3-988f-46e1-ace6-68b84001e6c6" + (reference "U23") (unit 1) (value "d_or") (footprint "") + ) + (path "/3c0769d9-8602-40c3-a5e9-cb51cbf79e3b" + (reference "U24") (unit 1) (value "d_and") (footprint "") + ) + (path "/3caa73d4-3223-4c05-b00e-ed8248b11ed5" + (reference "U25") (unit 1) (value "d_and") (footprint "") + ) + (path "/39df19ea-eb59-4500-bc15-c67bfafc1d77" + (reference "U26") (unit 1) (value "d_or") (footprint "") + ) + (path "/adff7e5c-c936-4b89-ada2-61e5744d9c0a" + (reference "U27") (unit 1) (value "d_or") (footprint "") + ) + (path "/407c62cf-d31d-42e0-83c8-b93d44f62d12" + (reference "U28") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a8d9e994-e7f7-438d-8fc8-25ee6a3b8707" + (reference "U29") (unit 1) (value "d_and") (footprint "") + ) + (path "/b751d94f-ceeb-416a-a003-66bd85314e57" + (reference "U30") (unit 1) (value "d_and") (footprint "") + ) + (path "/e06a9b92-af2f-40f6-8775-d3b1d603a4fa" + (reference "U31") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN7482/SN7482_subckt.proj b/library/SubcircuitLibrary/SN7482/SN7482_subckt.proj new file mode 100644 index 000000000..102ce731c --- /dev/null +++ b/library/SubcircuitLibrary/SN7482/SN7482_subckt.proj @@ -0,0 +1 @@ +schematicFile SN7482_subckt.kicad_sch diff --git a/library/SubcircuitLibrary/SN7482/SN7482_subckt.sub b/library/SubcircuitLibrary/SN7482/SN7482_subckt.sub new file mode 100644 index 000000000..e436091c8 --- /dev/null +++ b/library/SubcircuitLibrary/SN7482/SN7482_subckt.sub @@ -0,0 +1,126 @@ +* Subcircuit SN7482_subckt +.subckt SN7482_subckt a1 b1 c0 a2 b2 s1 s2 c2 +.title kicad schematic +* u13 net-_u11-pad3_ b2 net-_u13-pad3_ d_and +* u12 b2 a2 net-_u12-pad3_ d_and +* u14 net-_u11-pad3_ a2 net-_u14-pad3_ d_and +* u23 net-_u19-pad3_ net-_u14-pad3_ c2 d_or +* u19 net-_u12-pad3_ net-_u13-pad3_ net-_u19-pad3_ d_or +* u21 net-_u11-pad3_ net-_u21-pad2_ d_inverter +* u4 a2 net-_u4-pad2_ d_inverter +* u8 b2 net-_u4-pad2_ net-_u11-pad1_ d_and +* u9 net-_u5-pad2_ a2 net-_u11-pad2_ d_and +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_or +* u5 b2 net-_u5-pad2_ d_inverter +* u7 net-_u3-pad2_ a1 net-_u10-pad2_ d_and +* u6 b1 net-_u2-pad2_ net-_u10-pad1_ d_and +* u2 a1 net-_u2-pad2_ d_inverter +* u3 b1 net-_u3-pad2_ d_inverter +* u20 c0 net-_u20-pad2_ d_inverter +* u18 net-_u10-pad3_ net-_u18-pad2_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_or +* u17 c0 a1 net-_u17-pad3_ d_and +* u15 b1 a1 net-_u15-pad3_ d_and +* u16 b1 c0 net-_u16-pad3_ d_and +* u22 net-_u15-pad3_ net-_u16-pad3_ net-_u22-pad3_ d_or +* u26 net-_u22-pad3_ net-_u17-pad3_ c1 d_or +* u25 net-_u20-pad2_ net-_u10-pad3_ net-_u25-pad3_ d_and +* u24 c0 net-_u18-pad2_ net-_u24-pad3_ d_and +* u27 net-_u24-pad3_ net-_u25-pad3_ s1 d_or +* u28 c1 net-_u28-pad2_ d_inverter +* u30 c1 net-_u21-pad2_ net-_u30-pad3_ d_and +* u29 net-_u28-pad2_ net-_u11-pad3_ net-_u29-pad3_ d_and +* u31 net-_u29-pad3_ net-_u30-pad3_ s2 d_or +a1 [net-_u11-pad3_ b2 ] net-_u13-pad3_ u13 +a2 [b2 a2 ] net-_u12-pad3_ u12 +a3 [net-_u11-pad3_ a2 ] net-_u14-pad3_ u14 +a4 [net-_u19-pad3_ net-_u14-pad3_ ] c2 u23 +a5 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u19-pad3_ u19 +a6 net-_u11-pad3_ net-_u21-pad2_ u21 +a7 a2 net-_u4-pad2_ u4 +a8 [b2 net-_u4-pad2_ ] net-_u11-pad1_ u8 +a9 [net-_u5-pad2_ a2 ] net-_u11-pad2_ u9 +a10 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a11 b2 net-_u5-pad2_ u5 +a12 [net-_u3-pad2_ a1 ] net-_u10-pad2_ u7 +a13 [b1 net-_u2-pad2_ ] net-_u10-pad1_ u6 +a14 a1 net-_u2-pad2_ u2 +a15 b1 net-_u3-pad2_ u3 +a16 c0 net-_u20-pad2_ u20 +a17 net-_u10-pad3_ net-_u18-pad2_ u18 +a18 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a19 [c0 a1 ] net-_u17-pad3_ u17 +a20 [b1 a1 ] net-_u15-pad3_ u15 +a21 [b1 c0 ] net-_u16-pad3_ u16 +a22 [net-_u15-pad3_ net-_u16-pad3_ ] net-_u22-pad3_ u22 +a23 [net-_u22-pad3_ net-_u17-pad3_ ] c1 u26 +a24 [net-_u20-pad2_ net-_u10-pad3_ ] net-_u25-pad3_ u25 +a25 [c0 net-_u18-pad2_ ] net-_u24-pad3_ u24 +a26 [net-_u24-pad3_ net-_u25-pad3_ ] s1 u27 +a27 c1 net-_u28-pad2_ u28 +a28 [c1 net-_u21-pad2_ ] net-_u30-pad3_ u30 +a29 [net-_u28-pad2_ net-_u11-pad3_ ] net-_u29-pad3_ u29 +a30 [net-_u29-pad3_ net-_u30-pad3_ ] s2 u31 +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u19 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u11 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u10 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u16 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u22 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u26 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u27 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u28 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u30 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u29 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u31 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN7482_subckt \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7482/Test_SN7482.cir b/library/SubcircuitLibrary/SN7482/Test_SN7482.cir new file mode 100644 index 000000000..c3395eb52 --- /dev/null +++ b/library/SubcircuitLibrary/SN7482/Test_SN7482.cir @@ -0,0 +1,16 @@ +.title KiCad schematic +U3 C0 Net-_U3-Pad2_ adc_bridge_1 +U5 B2 Net-_U5-Pad2_ adc_bridge_1 +U4 A2 Net-_U4-Pad2_ adc_bridge_1 +v5 B2 GND pulse +v4 A2 GND pulse +v3 C0 GND pulse +v2 B1 GND pulse +v1 A1 GND pulse +U2 B1 Net-_U2-Pad2_ adc_bridge_1 +U1 A1 Net-_U1-Pad2_ adc_bridge_1 +X1 Net-_U1-Pad2_ Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U4-Pad2_ Net-_U5-Pad2_ Net-_U6-Pad1_ Net-_U7-Pad1_ Net-_U8-Pad1_ SN7482 +U6 Net-_U6-Pad1_ S1 dac_bridge_1 +U7 Net-_U7-Pad1_ S2 dac_bridge_1 +U8 Net-_U8-Pad1_ C2 dac_bridge_1 +.end diff --git a/library/SubcircuitLibrary/SN7482/Test_SN7482.cir.out b/library/SubcircuitLibrary/SN7482/Test_SN7482.cir.out new file mode 100644 index 000000000..08cb48a84 --- /dev/null +++ b/library/SubcircuitLibrary/SN7482/Test_SN7482.cir.out @@ -0,0 +1,50 @@ +.title kicad schematic + +.include SN7482_subckt.sub +* u3 c0 net-_u3-pad2_ adc_bridge_1 +* u5 b2 net-_u5-pad2_ adc_bridge_1 +* u4 a2 net-_u4-pad2_ adc_bridge_1 +v5 b2 gnd pulse(0 5 0 1n 1n 40m 80m) +v4 a2 gnd pulse(0 5 0 1n 1n 160m 320m) +v3 c0 gnd pulse(0 5 0 1n 1n 80m 160m) +v2 b1 gnd pulse(0 5 0 1n 1n 20m 40m) +v1 a1 gnd pulse(0 5 0 1n 1n 10m 20m) +* u2 b1 net-_u2-pad2_ adc_bridge_1 +* u1 a1 net-_u1-pad2_ adc_bridge_1 +x1 net-_u1-pad2_ net-_u2-pad2_ net-_u3-pad2_ net-_u4-pad2_ net-_u5-pad2_ net-_u6-pad1_ net-_u7-pad1_ net-_u8-pad1_ SN7482_subckt +* u6 net-_u6-pad1_ s1 dac_bridge_1 +* u7 net-_u7-pad1_ s2 dac_bridge_1 +* u8 net-_u8-pad1_ c2 dac_bridge_1 +a1 [c0 ] [net-_u3-pad2_ ] u3 +a2 [b2 ] [net-_u5-pad2_ ] u5 +a3 [a2 ] [net-_u4-pad2_ ] u4 +a4 [b1 ] [net-_u2-pad2_ ] u2 +a5 [a1 ] [net-_u1-pad2_ ] u1 +a6 [net-_u6-pad1_ ] [s1 ] u6 +a7 [net-_u7-pad1_ ] [s2 ] u7 +a8 [net-_u8-pad1_ ] [c2 ] u8 +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u6 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u7 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u8 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0.1e-03 640e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN7482/Test_SN7482.kicad_sch b/library/SubcircuitLibrary/SN7482/Test_SN7482.kicad_sch new file mode 100644 index 000000000..7eb86bcf4 --- /dev/null +++ b/library/SubcircuitLibrary/SN7482/Test_SN7482.kicad_sch @@ -0,0 +1,789 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid bf136d4e-92d4-491b-acba-bb1631f0c4a0) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN7482" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -10.16 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN7482" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN7482_0_1" + (rectangle (start -7.62 -2.54) (end 7.62 -17.78) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN7482_1_1" + (pin input line (at -10.16 -5.08 0) (length 2.54) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -7.62 0) (length 2.54) + (name "B1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -10.16 0) (length 2.54) + (name "C0" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -12.7 0) (length 2.54) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -15.24 0) (length 2.54) + (name "B2" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -7.62 180) (length 2.54) + (name "S1" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -10.16 180) (length 2.54) + (name "S2" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -12.7 180) (length 2.54) + (name "C2" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (wire (pts (xy 119.38 128.27) (xy 119.38 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0229d7c4-313a-4f36-93ad-4becb157824d) + ) + (wire (pts (xy 74.93 59.69) (xy 82.55 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a7b20da-e697-4abc-9b5b-ca799f9bb62c) + ) + (wire (pts (xy 158.75 92.71) (xy 172.72 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d09c9b3-23b8-41f1-bb3d-279e5f62a508) + ) + (wire (pts (xy 85.09 101.6) (xy 76.2 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 226b1cd5-b236-453e-afdc-8abae3b405c2) + ) + (wire (pts (xy 158.75 109.22) (xy 175.26 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 271fb762-e102-4cf7-8ba0-3b96619038b4) + ) + (wire (pts (xy 114.3 149.86) (xy 138.43 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d6430fb-3e04-4029-99cd-eae2e374b156) + ) + (wire (pts (xy 201.93 73.66) (xy 218.44 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37d05d5f-301f-47b3-982d-314a08e218a5) + ) + (wire (pts (xy 111.76 81.28) (xy 135.89 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ba7bd4f-0178-4020-81d7-8efa44bafcc7) + ) + (wire (pts (xy 138.43 149.86) (xy 138.43 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42785d0c-52ec-42d2-98e1-50c3dde55a08) + ) + (wire (pts (xy 77.47 128.27) (xy 85.09 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4891f04c-ce83-401a-838c-043d4abdbeb1) + ) + (wire (pts (xy 135.89 81.28) (xy 135.89 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66986133-b349-4994-ad67-af57b01c097c) + ) + (wire (pts (xy 172.72 92.71) (xy 172.72 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6caf438c-a72b-4e16-a1d2-7e1ba36ac2ab) + ) + (wire (pts (xy 114.3 128.27) (xy 119.38 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 721637ed-e2ae-4b37-b01b-4e16923113fd) + ) + (wire (pts (xy 119.38 95.25) (xy 138.43 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b12ecbc-35e8-4d2d-90fe-8f6e5356a708) + ) + (wire (pts (xy 74.93 81.28) (xy 82.55 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2bf3664-5de2-474b-b2b7-03c97063572c) + ) + (wire (pts (xy 77.47 149.86) (xy 85.09 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa45bb96-cb47-40e7-9e8f-e6a66b45025f) + ) + (wire (pts (xy 158.75 90.17) (xy 158.75 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aaf3961e-bfba-4100-8a88-88bd82deeb22) + ) + (wire (pts (xy 135.89 90.17) (xy 138.43 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b692ee5d-fc4d-45b4-b016-7682f3406d0c) + ) + (wire (pts (xy 201.93 91.44) (xy 218.44 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b97878eb-55c0-4d02-bb29-b84baf4a0873) + ) + (wire (pts (xy 204.47 109.22) (xy 231.14 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bea83d9c-84ac-4fb5-9a72-d0b826a50ac3) + ) + (wire (pts (xy 114.3 92.71) (xy 138.43 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8a3825d-5be9-49a3-a6ba-fd80358b3d0d) + ) + (wire (pts (xy 158.75 73.66) (xy 172.72 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9806b6b-552f-412f-90a0-32c0662b91aa) + ) + (wire (pts (xy 114.3 101.6) (xy 114.3 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb3e12d0-dceb-4b8f-9c86-8984bcdeaf04) + ) + (wire (pts (xy 111.76 59.69) (xy 138.43 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce1991cd-5d23-4d59-a4af-5b1ed6d6334a) + ) + (wire (pts (xy 158.75 95.25) (xy 158.75 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0ae3d9f-ac01-4d99-8780-de169006768e) + ) + (wire (pts (xy 138.43 59.69) (xy 138.43 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed91daca-ece9-4076-bfc4-3e1a214379fc) + ) + + (global_label "C2" (shape output) (at 231.14 109.22 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 70301e81-4914-4290-8175-7ac2d82f2794) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 236.0326 109.1406 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "S2" (shape output) (at 218.44 91.44 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 72e53684-bd1c-468f-8219-f51098578add) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.2721 91.3606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "S1" (shape output) (at 218.44 73.66 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ad18ed57-257b-4f95-8dc5-c263551a43bf) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.2721 73.5806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 78.74 59.69 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid afe856db-c462-47f6-9658-713a5fbf3bba) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 78.6606 54.9788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B1" (shape input) (at 78.74 81.28 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c8211e47-ccfe-4ca5-a050-06084dacbc82) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 78.6606 76.3874 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "C0" (shape input) (at 82.55 101.6 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid cdd7d8ba-5c00-4391-a267-d7b54817b218) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 82.4706 96.7074 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 80.01 128.27 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid dca1d211-3fdb-4d47-9b96-408d688742b2) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 79.9306 123.5588 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B2" (shape input) (at 81.28 149.86 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e6f363ed-a5ba-4048-9671-effe395b140e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 81.2006 144.9674 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 63.5 59.69 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 02b4c2c2-b520-4561-8865-6252aba2b1bd) + (property "Reference" "v1" (id 0) (at 63.5 46.99 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 63.5 50.8 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 63.5 54.61 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d2af1ee-4e78-4d40-a051-4aa90a08b683)) + (pin "2" (uuid 33675604-506b-4642-9be5-cdd6345313f3)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 187.96 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e51ccea-63a6-4400-a2a1-3152075a6f97) + (property "Reference" "U7" (id 0) (at 187.325 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 187.325 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 187.96 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e0565f02-561d-4423-b29a-fa85221bc0af)) + (pin "2" (uuid cf84c928-85ff-4498-a7e4-6fdfc6ec2ca1)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 53.34 101.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3201a819-8e95-401e-8fc7-b19d80e872e7) + (property "Reference" "#PWR0104" (id 0) (at 53.34 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 53.34 106.68 0)) + (property "Footprint" "" (id 2) (at 53.34 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 53.34 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6f2dcba7-7cb1-42e9-8bdb-38980e04f1d1)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 54.61 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3df42eca-5f0e-44c0-8355-4a3a7afa9632) + (property "Reference" "#PWR0102" (id 0) (at 54.61 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 54.61 133.35 0)) + (property "Footprint" "" (id 2) (at 54.61 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3f863f4a-d935-40e7-8a14-0396a811d587)) + ) + + (symbol (lib_id "eSim_Subckt:SN7482") (at 148.59 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 47441cde-7092-4750-86b0-82c9d7a82af9) + (property "Reference" "X1" (id 0) (at 148.59 80.01 0)) + (property "Value" "SN7482" (id 1) (at 148.59 82.55 0)) + (property "Footprint" "" (id 2) (at 148.59 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 148.59 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 55d5640e-052d-4570-bf43-091966dfd890)) + (pin "2" (uuid 1b5627b7-b0d9-470d-abcb-55e217a24c8a)) + (pin "3" (uuid 1ca53de9-cd96-449b-9d6f-58ee57685d29)) + (pin "4" (uuid b4ddd6e2-187b-4899-a797-9124eba0d06c)) + (pin "5" (uuid 2c09c3d1-0224-49c4-9dc8-b9b9060044dd)) + (pin "6" (uuid b79907df-3c28-446c-9f7e-826030d8ae6b)) + (pin "7" (uuid 836dab5d-ee76-4db3-97c2-ce77aaac9474)) + (pin "8" (uuid 9454ed84-cc09-45e6-a8a5-7ce927fa806e)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 52.07 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 59ae110c-f861-46d0-abe3-eaa979acf91a) + (property "Reference" "#PWR0105" (id 0) (at 52.07 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 52.07 64.77 0)) + (property "Footprint" "" (id 2) (at 52.07 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 59.69 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 33c84ae6-ca9e-4d16-99d9-7cbc4381d132)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 100.33 102.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d1c3def-89c6-476a-9484-00b39f3e3404) + (property "Reference" "U3" (id 0) (at 99.695 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 99.695 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8abe5dea-7fab-4138-958b-9478b5fdb25c)) + (pin "2" (uuid 50f30267-2017-4607-987e-f5fff015d308)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 66.04 128.27 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 77c1c5aa-4992-46d0-9e30-6a751a211720) + (property "Reference" "v4" (id 0) (at 66.04 115.57 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 66.04 119.38 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 66.04 123.19 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 63043ed3-f329-4655-be44-4df4b3b166c7)) + (pin "2" (uuid f1a8a378-d1a6-43ea-b72a-281f729f956c)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 54.61 149.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e825492-7ff6-49db-aa46-08d6be6d4bc3) + (property "Reference" "#PWR0101" (id 0) (at 54.61 156.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 54.61 154.94 0)) + (property "Footprint" "" (id 2) (at 54.61 149.86 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 149.86 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7d5edf59-dd07-411e-919c-f9f2f28412d8)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 187.96 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9f77ec3e-75b1-45b3-935f-591fc165eba7) + (property "Reference" "U6" (id 0) (at 187.325 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 187.325 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 187.96 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2531a066-e68e-4d66-8cfc-ef85c49d9e3e)) + (pin "2" (uuid 04176553-ca1f-42c2-a84d-0f51614fac23)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 97.79 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a150b7b9-10e3-4ed0-8a77-64c48a82f454) + (property "Reference" "U1" (id 0) (at 97.155 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 97.155 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 97.79 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e374369a-7af5-4338-9a18-121b42313057)) + (pin "2" (uuid 333d0a9e-bd50-4b73-90d6-d09baf4a1329)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 63.5 81.28 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aadb4459-b8b2-46d1-bee2-1963e9c6ad89) + (property "Reference" "v2" (id 0) (at 63.5 68.58 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 63.5 72.39 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 63.5 76.2 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e31492a-8aca-45b7-b1b5-a505a2508ca1)) + (pin "2" (uuid bd47c0a8-421e-43b6-a14a-73e916d02f29)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 66.04 149.86 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ae5ad357-7be3-44bb-b2e8-33524d73754e) + (property "Reference" "v5" (id 0) (at 66.04 137.16 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 66.04 140.97 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 66.04 144.78 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ab75722-a517-4148-83d0-393125c9ba52)) + (pin "2" (uuid 60f737ad-b690-4721-a27d-303bfaeea804)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 190.5 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b9ae052e-57ee-4397-a2dc-8a423c4a243a) + (property "Reference" "U8" (id 0) (at 189.865 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 189.865 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 190.5 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 190.5 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aea00f64-a5a6-4b9f-b0a3-0fd151bd0a23)) + (pin "2" (uuid 89c4f9a8-c729-4fde-acb6-8e1ea1b45722)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 52.07 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c82916b5-74b8-4f96-84b1-535dfe108bae) + (property "Reference" "#PWR0103" (id 0) (at 52.07 87.63 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 52.07 86.36 0)) + (property "Footprint" "" (id 2) (at 52.07 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3927f342-2b4e-4b41-b018-bb2c1c87df5e)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 64.77 101.6 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ccf8a46d-0f9a-4f91-9a38-9b19f2d42031) + (property "Reference" "v3" (id 0) (at 64.77 88.9 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 64.77 92.71 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 64.77 96.52 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 64.77 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 690a35d2-5adc-4369-8cc4-ee7cb275707a)) + (pin "2" (uuid da9b628f-c074-490c-b6eb-d477168c0ff4)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 100.33 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9a407f9-d7b6-4d0d-b6ff-2e88d236174d) + (property "Reference" "U5" (id 0) (at 99.695 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 99.695 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4b43c169-f27e-42b4-8412-fddada9a8cb1)) + (pin "2" (uuid a00a1110-d497-4960-b196-5cb95dd53823)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 100.33 129.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea438dc0-0239-446a-a3b1-25ef2226b72e) + (property "Reference" "U4" (id 0) (at 99.695 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 99.695 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 155ef934-7db5-4292-92cc-ef8f006f7ac4)) + (pin "2" (uuid afb91ee8-996e-488a-b82c-6fcb63571055)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 97.79 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ec139238-413d-4cc0-be41-05f19265231e) + (property "Reference" "U2" (id 0) (at 97.155 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 97.155 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 97.79 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 02837049-2361-4d3c-86c5-222057fe4604)) + (pin "2" (uuid f1c36243-e8f7-40d1-9ca3-54b2ac4b817c)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/9e825492-7ff6-49db-aa46-08d6be6d4bc3" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/3df42eca-5f0e-44c0-8355-4a3a7afa9632" + (reference "#PWR0102") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/c82916b5-74b8-4f96-84b1-535dfe108bae" + (reference "#PWR0103") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/3201a819-8e95-401e-8fc7-b19d80e872e7" + (reference "#PWR0104") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/59ae110c-f861-46d0-abe3-eaa979acf91a" + (reference "#PWR0105") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/a150b7b9-10e3-4ed0-8a77-64c48a82f454" + (reference "U1") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/ec139238-413d-4cc0-be41-05f19265231e" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/5d1c3def-89c6-476a-9484-00b39f3e3404" + (reference "U3") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/ea438dc0-0239-446a-a3b1-25ef2226b72e" + (reference "U4") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/d9a407f9-d7b6-4d0d-b6ff-2e88d236174d" + (reference "U5") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/9f77ec3e-75b1-45b3-935f-591fc165eba7" + (reference "U6") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/0e51ccea-63a6-4400-a2a1-3152075a6f97" + (reference "U7") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/b9ae052e-57ee-4397-a2dc-8a423c4a243a" + (reference "U8") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/47441cde-7092-4750-86b0-82c9d7a82af9" + (reference "X1") (unit 1) (value "SN7482") (footprint "") + ) + (path "/02b4c2c2-b520-4561-8865-6252aba2b1bd" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/aadb4459-b8b2-46d1-bee2-1963e9c6ad89" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/ccf8a46d-0f9a-4f91-9a38-9b19f2d42031" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/77c1c5aa-4992-46d0-9e30-6a751a211720" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/ae5ad357-7be3-44bb-b2e8-33524d73754e" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN7482/Test_SN7482.proj b/library/SubcircuitLibrary/SN7482/Test_SN7482.proj new file mode 100644 index 000000000..ca578931c --- /dev/null +++ b/library/SubcircuitLibrary/SN7482/Test_SN7482.proj @@ -0,0 +1 @@ +schematicFile Test_SN7482.kicad_sch diff --git a/library/SubcircuitLibrary/SN7482/Test_SN7482_Previous_Values.xml b/library/SubcircuitLibrary/SN7482/Test_SN7482_Previous_Values.xml new file mode 100644 index 000000000..17973213a --- /dev/null +++ b/library/SubcircuitLibrary/SN7482/Test_SN7482_Previous_Values.xml @@ -0,0 +1 @@ +pulse0501n1n40m80mpulse0501n1n160m320mpulse0501n1n80m160mpulse0501n1n20m40mpulse0501n1n10m20madc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridgedac_bridgedac_bridgedac_bridgeE:\apps\ESIM\FOSSEE\eSim\library\SubcircuitLibrary\SN7482_subckttruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0.1640secmsms \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7482/analysis b/library/SubcircuitLibrary/SN7482/analysis index ebd5c0a94..de5af732e 100644 --- a/library/SubcircuitLibrary/SN7482/analysis +++ b/library/SubcircuitLibrary/SN7482/analysis @@ -1 +1 @@ -.tran 0e-00 0e-00 0e-00 \ No newline at end of file +.tran 0.1e-03 640e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7485/SN7485.cir b/library/SubcircuitLibrary/SN7485/SN7485.cir new file mode 100644 index 000000000..07a4580e6 --- /dev/null +++ b/library/SubcircuitLibrary/SN7485/SN7485.cir @@ -0,0 +1,67 @@ +.title KiCad schematic +U43 Net-_U38-Pad3_ Net-_U12-Pad2_ T3 d_and +U44 Net-_U39-Pad3_ Net-_U10-Pad2_ T4 d_and +U46 Net-_U45-Pad3_ EQ2 Net-_U46-Pad3_ d_and +U45 EQ0 EQ1 Net-_U45-Pad3_ d_and +U52 Net-_U49-Pad3_ AeqB dac_bridge_1 +U49 Net-_U46-Pad3_ EQ3 Net-_U49-Pad3_ d_and +U54 Net-_U51-Pad3_ T4 Net-_U54-Pad3_ d_or +U56 Net-_U54-Pad3_ AgtB dac_bridge_1 +U51 Net-_U48-Pad3_ T3 Net-_U51-Pad3_ d_or +U48 T1 T2 Net-_U48-Pad3_ d_or +U53 Net-_U50-Pad3_ U4 Net-_U53-Pad3_ d_or +U55 Net-_U53-Pad3_ AltB dac_bridge_1 +U47 U1 U2 Net-_U47-Pad3_ d_or +U50 Net-_U47-Pad3_ U3 Net-_U50-Pad3_ d_or +U5 A2 Net-_U13-Pad1_ adc_bridge_1 +U6 B2 Net-_U14-Pad1_ adc_bridge_1 +U14 Net-_U14-Pad1_ Net-_U14-Pad2_ d_inverter +U13 Net-_U13-Pad1_ Net-_U13-Pad2_ d_inverter +v6 B2 GND pulse(0 5 0 1n 1n 40m 80m) +v5 A2 GND pulse(0 5 0 1n 1n 40m 80m) +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ d_inverter +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ d_inverter +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ d_inverter +U3 A1 Net-_U11-Pad1_ adc_bridge_1 +U2 B0 Net-_U10-Pad1_ adc_bridge_1 +v1 A0 GND pulse(0 5 0 1n 1n 10m 20m) +v2 B0 GND pulse(0 5 0 1n 1n 10m 20m) +U1 A0 Net-_U1-Pad2_ adc_bridge_1 +U9 Net-_U1-Pad2_ Net-_U17-Pad1_ d_inverter +v4 B1 GND pulse(0 5 0 1n 1n 20m 40m) +U4 B1 Net-_U12-Pad1_ adc_bridge_1 +v3 A1 GND pulse(0 5 0 1n 1n 20m 40m) +U33 Net-_U21-Pad3_ Net-_U22-Pad3_ EQ2 d_or +U34 Net-_U23-Pad3_ Net-_U24-Pad3_ EQ3 d_or +U15 Net-_U15-Pad1_ Net-_U15-Pad2_ d_inverter +U16 Net-_U16-Pad1_ Net-_U16-Pad2_ d_inverter +U24 Net-_U15-Pad1_ Net-_U16-Pad1_ Net-_U24-Pad3_ d_and +U21 Net-_U13-Pad2_ Net-_U14-Pad2_ Net-_U21-Pad3_ d_and +U23 Net-_U15-Pad2_ Net-_U16-Pad2_ Net-_U23-Pad3_ d_and +U22 Net-_U13-Pad1_ Net-_U14-Pad1_ Net-_U22-Pad3_ d_and +U8 B3 Net-_U16-Pad1_ adc_bridge_1 +v7 A3 GND pulse(0 5 0 1n 1n 80m 160m) +U7 A3 Net-_U15-Pad1_ adc_bridge_1 +v8 B3 GND pulse(0 5 0 1n 1n 80m 160m) +U38 Net-_U27-Pad3_ Net-_U11-Pad1_ Net-_U38-Pad3_ d_and +U27 EQ3 EQ2 Net-_U27-Pad3_ d_and +U37 Net-_U26-Pad3_ Net-_U14-Pad2_ T2 d_and +U26 EQ3 Net-_U13-Pad1_ Net-_U26-Pad3_ d_and +U25 Net-_U15-Pad1_ Net-_U16-Pad2_ T1 d_and +U28 Net-_U27-Pad3_ EQ1 Net-_U28-Pad3_ d_and +U42 Net-_U36-Pad3_ Net-_U10-Pad1_ U4 d_and +U41 Net-_U35-Pad3_ Net-_U12-Pad1_ U3 d_and +U36 Net-_U17-Pad1_ Net-_U28-Pad3_ Net-_U36-Pad3_ d_and +U35 Net-_U27-Pad3_ Net-_U11-Pad2_ Net-_U35-Pad3_ d_and +U29 Net-_U15-Pad2_ Net-_U16-Pad1_ U1 d_and +U30 EQ3 Net-_U13-Pad2_ Net-_U30-Pad3_ d_and +U40 Net-_U30-Pad3_ Net-_U14-Pad1_ U2 d_and +U39 Net-_U28-Pad3_ Net-_U1-Pad2_ Net-_U39-Pad3_ d_and +U31 Net-_U17-Pad3_ Net-_U18-Pad3_ EQ0 d_or +U32 Net-_U19-Pad3_ Net-_U20-Pad3_ EQ1 d_or +U19 Net-_U11-Pad2_ Net-_U12-Pad2_ Net-_U19-Pad3_ d_and +U20 Net-_U11-Pad1_ Net-_U12-Pad1_ Net-_U20-Pad3_ d_and +U18 Net-_U1-Pad2_ Net-_U10-Pad1_ Net-_U18-Pad3_ d_and +U17 Net-_U17-Pad1_ Net-_U10-Pad2_ Net-_U17-Pad3_ d_and +.tran 0.1ms 320ms +.end diff --git a/library/SubcircuitLibrary/SN7485/SN7485_subckt.proj b/library/SubcircuitLibrary/SN7485/SN7485_subckt.proj new file mode 100644 index 000000000..1eb59f799 --- /dev/null +++ b/library/SubcircuitLibrary/SN7485/SN7485_subckt.proj @@ -0,0 +1 @@ +schematicFile SN7485_subckt.kicad_sch diff --git a/library/SubcircuitLibrary/SN7485/Test_SN7485.cir b/library/SubcircuitLibrary/SN7485/Test_SN7485.cir new file mode 100644 index 000000000..75858850d --- /dev/null +++ b/library/SubcircuitLibrary/SN7485/Test_SN7485.cir @@ -0,0 +1,22 @@ +.title KiCad schematic +U2 B0 Net-_U2-Pad2_ adc_bridge_1 +U3 A1 Net-_U3-Pad2_ adc_bridge_1 +U4 B1 Net-_U4-Pad2_ adc_bridge_1 +v6 B2 GND pulse +v5 A2 GND pulse +U5 A2 Net-_U5-Pad2_ adc_bridge_1 +U6 B2 Net-_U6-Pad2_ adc_bridge_1 +v8 B3 GND pulse +v7 A3 GND pulse +U8 B3 Net-_U8-Pad2_ adc_bridge_1 +U7 A3 Net-_U7-Pad2_ adc_bridge_1 +v1 A0 GND pulse +U1 A0 Net-_U1-Pad2_ adc_bridge_1 +v2 B0 GND pulse +v4 B1 GND pulse +v3 A1 GND pulse +X1 Net-_U1-Pad2_ Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U4-Pad2_ Net-_U5-Pad2_ Net-_U6-Pad2_ Net-_U7-Pad2_ Net-_U8-Pad2_ Net-_U9-Pad1_ Net-_U11-Pad1_ Net-_U10-Pad1_ SN7485 +U10 Net-_U10-Pad1_ AltB dac_bridge_1 +U11 Net-_U11-Pad1_ AgtB dac_bridge_1 +U9 Net-_U9-Pad1_ AeqB dac_bridge_1 +.end diff --git a/library/SubcircuitLibrary/SN7485/Test_SN7485.cir.out b/library/SubcircuitLibrary/SN7485/Test_SN7485.cir.out new file mode 100644 index 000000000..e23ff8a3c --- /dev/null +++ b/library/SubcircuitLibrary/SN7485/Test_SN7485.cir.out @@ -0,0 +1,245 @@ +.title kicad schematic + +* u43 net-_u38-pad3_ net-_u12-pad2_ t3 d_and +* u44 net-_u39-pad3_ net-_u10-pad2_ t4 d_and +* u46 net-_u45-pad3_ eq2 net-_u46-pad3_ d_and +* u45 eq0 eq1 net-_u45-pad3_ d_and +* u52 net-_u49-pad3_ aeqb dac_bridge_1 +* u49 net-_u46-pad3_ eq3 net-_u49-pad3_ d_and +* u54 net-_u51-pad3_ t4 net-_u54-pad3_ d_or +* u56 net-_u54-pad3_ agtb dac_bridge_1 +* u51 net-_u48-pad3_ t3 net-_u51-pad3_ d_or +* u48 t1 t2 net-_u48-pad3_ d_or +* u53 net-_u50-pad3_ u4 net-_u53-pad3_ d_or +* u55 net-_u53-pad3_ altb dac_bridge_1 +* u47 u1 u2 net-_u47-pad3_ d_or +* u50 net-_u47-pad3_ u3 net-_u50-pad3_ d_or +* u5 a2 net-_u13-pad1_ adc_bridge_1 +* u6 b2 net-_u14-pad1_ adc_bridge_1 +* u14 net-_u14-pad1_ net-_u14-pad2_ d_inverter +* u13 net-_u13-pad1_ net-_u13-pad2_ d_inverter +v6 b2 gnd pulse(0 5 0 1n 1n 40m 80m) +v5 a2 gnd pulse(0 5 0 1n 1n 40m 80m) +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +* u12 net-_u12-pad1_ net-_u12-pad2_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u3 a1 net-_u11-pad1_ adc_bridge_1 +* u2 b0 net-_u10-pad1_ adc_bridge_1 +v1 a0 gnd pulse(0 5 0 1n 1n 10m 20m) +v2 b0 gnd pulse(0 5 0 1n 1n 10m 20m) +* u1 a0 net-_u1-pad2_ adc_bridge_1 +* u9 net-_u1-pad2_ net-_u17-pad1_ d_inverter +v4 b1 gnd pulse(0 5 0 1n 1n 20m 40m) +* u4 b1 net-_u12-pad1_ adc_bridge_1 +v3 a1 gnd pulse(0 5 0 1n 1n 20m 40m) +* u33 net-_u21-pad3_ net-_u22-pad3_ eq2 d_or +* u34 net-_u23-pad3_ net-_u24-pad3_ eq3 d_or +* u15 net-_u15-pad1_ net-_u15-pad2_ d_inverter +* u16 net-_u16-pad1_ net-_u16-pad2_ d_inverter +* u24 net-_u15-pad1_ net-_u16-pad1_ net-_u24-pad3_ d_and +* u21 net-_u13-pad2_ net-_u14-pad2_ net-_u21-pad3_ d_and +* u23 net-_u15-pad2_ net-_u16-pad2_ net-_u23-pad3_ d_and +* u22 net-_u13-pad1_ net-_u14-pad1_ net-_u22-pad3_ d_and +* u8 b3 net-_u16-pad1_ adc_bridge_1 +v7 a3 gnd pulse(0 5 0 1n 1n 80m 160m) +* u7 a3 net-_u15-pad1_ adc_bridge_1 +v8 b3 gnd pulse(0 5 0 1n 1n 80m 160m) +* u38 net-_u27-pad3_ net-_u11-pad1_ net-_u38-pad3_ d_and +* u27 eq3 eq2 net-_u27-pad3_ d_and +* u37 net-_u26-pad3_ net-_u14-pad2_ t2 d_and +* u26 eq3 net-_u13-pad1_ net-_u26-pad3_ d_and +* u25 net-_u15-pad1_ net-_u16-pad2_ t1 d_and +* u28 net-_u27-pad3_ eq1 net-_u28-pad3_ d_and +* u42 net-_u36-pad3_ net-_u10-pad1_ u4 d_and +* u41 net-_u35-pad3_ net-_u12-pad1_ u3 d_and +* u36 net-_u17-pad1_ net-_u28-pad3_ net-_u36-pad3_ d_and +* u35 net-_u27-pad3_ net-_u11-pad2_ net-_u35-pad3_ d_and +* u29 net-_u15-pad2_ net-_u16-pad1_ u1 d_and +* u30 eq3 net-_u13-pad2_ net-_u30-pad3_ d_and +* u40 net-_u30-pad3_ net-_u14-pad1_ u2 d_and +* u39 net-_u28-pad3_ net-_u1-pad2_ net-_u39-pad3_ d_and +* u31 net-_u17-pad3_ net-_u18-pad3_ eq0 d_or +* u32 net-_u19-pad3_ net-_u20-pad3_ eq1 d_or +* u19 net-_u11-pad2_ net-_u12-pad2_ net-_u19-pad3_ d_and +* u20 net-_u11-pad1_ net-_u12-pad1_ net-_u20-pad3_ d_and +* u18 net-_u1-pad2_ net-_u10-pad1_ net-_u18-pad3_ d_and +* u17 net-_u17-pad1_ net-_u10-pad2_ net-_u17-pad3_ d_and +a1 [net-_u38-pad3_ net-_u12-pad2_ ] t3 u43 +a2 [net-_u39-pad3_ net-_u10-pad2_ ] t4 u44 +a3 [net-_u45-pad3_ eq2 ] net-_u46-pad3_ u46 +a4 [eq0 eq1 ] net-_u45-pad3_ u45 +a5 [net-_u49-pad3_ ] [aeqb ] u52 +a6 [net-_u46-pad3_ eq3 ] net-_u49-pad3_ u49 +a7 [net-_u51-pad3_ t4 ] net-_u54-pad3_ u54 +a8 [net-_u54-pad3_ ] [agtb ] u56 +a9 [net-_u48-pad3_ t3 ] net-_u51-pad3_ u51 +a10 [t1 t2 ] net-_u48-pad3_ u48 +a11 [net-_u50-pad3_ u4 ] net-_u53-pad3_ u53 +a12 [net-_u53-pad3_ ] [altb ] u55 +a13 [u1 u2 ] net-_u47-pad3_ u47 +a14 [net-_u47-pad3_ u3 ] net-_u50-pad3_ u50 +a15 [a2 ] [net-_u13-pad1_ ] u5 +a16 [b2 ] [net-_u14-pad1_ ] u6 +a17 net-_u14-pad1_ net-_u14-pad2_ u14 +a18 net-_u13-pad1_ net-_u13-pad2_ u13 +a19 net-_u11-pad1_ net-_u11-pad2_ u11 +a20 net-_u12-pad1_ net-_u12-pad2_ u12 +a21 net-_u10-pad1_ net-_u10-pad2_ u10 +a22 [a1 ] [net-_u11-pad1_ ] u3 +a23 [b0 ] [net-_u10-pad1_ ] u2 +a24 [a0 ] [net-_u1-pad2_ ] u1 +a25 net-_u1-pad2_ net-_u17-pad1_ u9 +a26 [b1 ] [net-_u12-pad1_ ] u4 +a27 [net-_u21-pad3_ net-_u22-pad3_ ] eq2 u33 +a28 [net-_u23-pad3_ net-_u24-pad3_ ] eq3 u34 +a29 net-_u15-pad1_ net-_u15-pad2_ u15 +a30 net-_u16-pad1_ net-_u16-pad2_ u16 +a31 [net-_u15-pad1_ net-_u16-pad1_ ] net-_u24-pad3_ u24 +a32 [net-_u13-pad2_ net-_u14-pad2_ ] net-_u21-pad3_ u21 +a33 [net-_u15-pad2_ net-_u16-pad2_ ] net-_u23-pad3_ u23 +a34 [net-_u13-pad1_ net-_u14-pad1_ ] net-_u22-pad3_ u22 +a35 [b3 ] [net-_u16-pad1_ ] u8 +a36 [a3 ] [net-_u15-pad1_ ] u7 +a37 [net-_u27-pad3_ net-_u11-pad1_ ] net-_u38-pad3_ u38 +a38 [eq3 eq2 ] net-_u27-pad3_ u27 +a39 [net-_u26-pad3_ net-_u14-pad2_ ] t2 u37 +a40 [eq3 net-_u13-pad1_ ] net-_u26-pad3_ u26 +a41 [net-_u15-pad1_ net-_u16-pad2_ ] t1 u25 +a42 [net-_u27-pad3_ eq1 ] net-_u28-pad3_ u28 +a43 [net-_u36-pad3_ net-_u10-pad1_ ] u4 u42 +a44 [net-_u35-pad3_ net-_u12-pad1_ ] u3 u41 +a45 [net-_u17-pad1_ net-_u28-pad3_ ] net-_u36-pad3_ u36 +a46 [net-_u27-pad3_ net-_u11-pad2_ ] net-_u35-pad3_ u35 +a47 [net-_u15-pad2_ net-_u16-pad1_ ] u1 u29 +a48 [eq3 net-_u13-pad2_ ] net-_u30-pad3_ u30 +a49 [net-_u30-pad3_ net-_u14-pad1_ ] u2 u40 +a50 [net-_u28-pad3_ net-_u1-pad2_ ] net-_u39-pad3_ u39 +a51 [net-_u17-pad3_ net-_u18-pad3_ ] eq0 u31 +a52 [net-_u19-pad3_ net-_u20-pad3_ ] eq1 u32 +a53 [net-_u11-pad2_ net-_u12-pad2_ ] net-_u19-pad3_ u19 +a54 [net-_u11-pad1_ net-_u12-pad1_ ] net-_u20-pad3_ u20 +a55 [net-_u1-pad2_ net-_u10-pad1_ ] net-_u18-pad3_ u18 +a56 [net-_u17-pad1_ net-_u10-pad2_ ] net-_u17-pad3_ u17 +* Schematic Name: d_and, Ngspice Name: d_and +.model u43 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u44 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u46 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u45 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u52 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u54 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u56 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u51 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u48 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u53 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u55 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u47 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u50 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u6 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u33 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u34 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u7 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u38 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u37 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u42 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u41 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u36 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u35 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u29 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u30 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u40 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u39 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u31 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u32 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1ms 320ms + +.tran 0.1e-03 320e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN7485/Test_SN7485.kicad_sch b/library/SubcircuitLibrary/SN7485/Test_SN7485.kicad_sch new file mode 100644 index 000000000..2f6e40e76 --- /dev/null +++ b/library/SubcircuitLibrary/SN7485/Test_SN7485.kicad_sch @@ -0,0 +1,1026 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 94770e22-442f-4faf-b78b-50344d6c8469) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN7485" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN7485" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN7485_0_1" + (rectangle (start -8.89 -2.54) (end 8.89 -25.4) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN7485_1_1" + (pin input line (at -11.43 -5.08 0) (length 2.54) + (name "A0" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 -13.97 180) (length 2.54) + (name "AgtB" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 -16.51 180) (length 2.54) + (name "AltB" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 -7.62 0) (length 2.54) + (name "B0" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 -10.16 0) (length 2.54) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 -12.7 0) (length 2.54) + (name "B1" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 -15.24 0) (length 2.54) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 -17.78 0) (length 2.54) + (name "B2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 -20.32 0) (length 2.54) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 -22.86 0) (length 2.54) + (name "B3" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 -11.43 180) (length 2.54) + (name "AeqB" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (wire (pts (xy 121.92 96.52) (xy 121.92 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2256a5aa-8709-4846-85cb-bd24d0cc7f1f) + ) + (wire (pts (xy 127 93.98) (xy 116.84 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2343d8c3-7d8b-4838-a2f6-feee7fa7fba5) + ) + (wire (pts (xy 190.5 106.68) (xy 226.06 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 239d35c0-dd3b-4ced-b4d3-2eda1155b8cc) + ) + (wire (pts (xy 110.49 114.3) (xy 100.33 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 296c278f-5262-4205-9e7e-8d738e38eb74) + ) + (wire (pts (xy 107.95 31.75) (xy 99.06 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29a05c50-d913-417e-9eef-1d7af8ee9480) + ) + (wire (pts (xy 194.31 90.17) (xy 215.9 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c19b5dd-b18b-4027-8916-ce01480d82c1) + ) + (wire (pts (xy 127 96.52) (xy 121.92 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 451fec99-7506-4ea7-a897-68c01aeda8c7) + ) + (wire (pts (xy 127 83.82) (xy 104.14 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 496f5f7c-22f8-456c-8d8a-4d1f5dc8218e) + ) + (wire (pts (xy 110.49 91.44) (xy 110.49 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a232d8a-d1d1-4ab9-ba36-9ecf2f93550a) + ) + (wire (pts (xy 149.86 76.2) (xy 160.02 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 647ff634-9d1e-4d53-b862-28be50c680cf) + ) + (wire (pts (xy 104.14 83.82) (xy 104.14 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 674a25ca-6047-47f2-ac10-a05a3b3b13bd) + ) + (wire (pts (xy 116.84 93.98) (xy 116.84 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67e2ef01-dbdf-4d15-8426-fff746ea389f) + ) + (wire (pts (xy 104.14 50.8) (xy 99.06 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e3feda4-5405-48a3-9243-35136d261122) + ) + (wire (pts (xy 127 91.44) (xy 110.49 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7216993d-537f-44df-a29b-94afdef77eb9) + ) + (wire (pts (xy 165.1 90.17) (xy 149.86 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ff552b0-2fb5-4329-b0e5-2b8ea876ee28) + ) + (wire (pts (xy 116.84 134.62) (xy 100.33 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8023b320-4922-454e-8183-d2f6c53eeea0) + ) + (wire (pts (xy 189.23 76.2) (xy 217.17 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8aacbc53-bca7-4d37-b91a-7751663877ed) + ) + (wire (pts (xy 149.86 106.68) (xy 161.29 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b16a406-5be5-45a8-a608-ca3631a1de4a) + ) + (wire (pts (xy 121.92 154.94) (xy 100.33 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d3f6e64-d5b7-4c44-9617-560b73c3fbfe) + ) + (wire (pts (xy 127 86.36) (xy 99.06 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 900e0d12-f07b-4061-a71b-62f1200b68fe) + ) + (wire (pts (xy 149.86 92.71) (xy 149.86 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90303136-9396-4840-bf3b-1ae8aaa78a0c) + ) + (wire (pts (xy 149.86 87.63) (xy 149.86 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 925745b7-c3bf-45ef-9993-4d435f5c4098) + ) + (wire (pts (xy 99.06 86.36) (xy 99.06 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 951dcab8-2fa6-4b42-a1e1-4a6aaabfd4f0) + ) + (wire (pts (xy 127 81.28) (xy 107.95 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9aaa3571-ec24-4d62-a490-aa46a5b7d243) + ) + (wire (pts (xy 127 175.26) (xy 100.33 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a48f481c-b336-4c89-a84c-e4d658faf742) + ) + (wire (pts (xy 99.06 88.9) (xy 99.06 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acdd476b-3039-4847-b089-70013cabb36e) + ) + (wire (pts (xy 107.95 81.28) (xy 107.95 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b07a822f-6d4e-418b-bbb3-72c24e040365) + ) + (wire (pts (xy 127 88.9) (xy 99.06 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebc4ecdf-c4b5-46d8-be7d-a6df4f357adf) + ) + (wire (pts (xy 127 99.06) (xy 127 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f68735ae-8a36-49b8-9c0a-4757c21fca64) + ) + + (global_label "AltB" (shape output) (at 226.06 106.68 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0ae2da29-3295-453b-8ddf-3c9b3abde38c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 232.2226 106.6006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "AeqB" (shape output) (at 217.17 76.2 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0ca1cc71-a452-4b96-abef-2930de42e14e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 224.1793 76.1206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A0" (shape input) (at 69.85 31.75 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 32de7c79-24da-4acd-8a0e-36f7873dd419) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.7706 27.0388 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 69.85 71.12 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 35fdf01f-57b0-4bfc-9c4e-965de81be2f2) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.7706 66.4088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A3" (shape input) (at 71.12 154.94 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 38585db0-f8ab-462e-87b3-9c625d70b4dc) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 71.0406 150.2288 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B1" (shape input) (at 69.85 91.44 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4d0ac1c6-b12a-4042-b054-34705ea64196) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.7706 86.5474 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B0" (shape input) (at 69.85 50.8 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 773e4fc9-2981-4352-a710-6baf11b12175) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.7706 45.9074 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "AgtB" (shape output) (at 215.9 90.17 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid aa5f8a35-d760-435a-bcd5-b4d6ff45f5a4) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 222.5464 90.0906 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 71.12 114.3 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ac0fe840-3063-4b1b-8b5a-2304c149fbd5) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 71.0406 109.5888 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B2" (shape input) (at 71.12 134.62 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b0ad3aaa-46d0-4496-ba2c-ebfb206663b2) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 71.0406 129.7274 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B3" (shape input) (at 71.12 175.26 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b2b7bfd0-6898-4c41-adec-8ae8a9fd295a) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 71.0406 170.3674 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 85.09 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0547f694-3ade-4e46-9554-c1d71de97672) + (property "Reference" "U1" (id 0) (at 84.455 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 84.455 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 85.09 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 85.09 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58950f25-88a6-4b23-a86c-f47d9aeeb64a)) + (pin "2" (uuid b581ee82-6f38-4d50-abb0-0a4a965e8687)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 86.36 156.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1f826552-de95-4823-80ba-5fc06f0bb612) + (property "Reference" "U7" (id 0) (at 85.725 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 85.725 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 86.36 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 68fe813c-11f7-446c-929a-e30bbaf81397)) + (pin "2" (uuid 673ef64b-beef-4740-951e-96db5963e9d3)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 48.26 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2087617d-b74e-4e22-8826-b6bd8f938c24) + (property "Reference" "#PWR0103" (id 0) (at 48.26 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 48.26 119.38 0)) + (property "Footprint" "" (id 2) (at 48.26 114.3 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 48.26 114.3 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 13902cc7-b16d-4954-97dd-935c8b3e1c2c)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 58.42 50.8 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2494abb2-7fab-4b6b-bf92-3522f652e4ae) + (property "Reference" "v2" (id 0) (at 58.42 38.1 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 58.42 41.91 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 58.42 45.72 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 58.42 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c927e2dc-0f54-4dd3-b402-b4da4eaafa68)) + (pin "2" (uuid 097c3123-d257-4244-b195-737e253ec82c)) + ) + + (symbol (lib_id "eSim_Subckt:SN7485") (at 138.43 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2989e90e-0bbf-49d9-90ef-db692b384b51) + (property "Reference" "X1" (id 0) (at 138.43 73.66 0)) + (property "Value" "SN7485" (id 1) (at 138.43 76.2 0)) + (property "Footprint" "" (id 2) (at 138.43 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 138.43 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e7f9f44e-6505-47f5-a064-877e998041c8)) + (pin "10" (uuid 7221fd2c-8207-48d9-ac27-d38eeddc9e7b)) + (pin "11" (uuid 8c005b03-c4c6-4dba-95c4-3370d6ad83ad)) + (pin "2" (uuid d80d31fa-5f0f-4991-b1c2-fbe766741cc3)) + (pin "3" (uuid c54b8fff-1104-4613-b9bd-e91a8b577d89)) + (pin "4" (uuid ed6e82b8-9133-4601-81e0-e193fe291334)) + (pin "5" (uuid 7d8a7986-d654-4e3a-8636-fb7c0c21c4b7)) + (pin "6" (uuid 86d47b2c-283b-4990-a9dd-ec3ac4c25075)) + (pin "7" (uuid fba8089f-1743-461b-aef6-c1c27cf21f47)) + (pin "8" (uuid ea42df40-f51e-4ed6-bb91-f347f8bb6cf3)) + (pin "9" (uuid 04f6a83e-40b0-4ef7-aba5-c097af0f8550)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 58.42 31.75 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3e5ca5ba-716a-4f83-91e4-4b5d692da335) + (property "Reference" "v1" (id 0) (at 58.42 19.05 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 58.42 22.86 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 58.42 26.67 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 58.42 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3ffad6cc-53f9-4d54-af0f-77d1c8805de9)) + (pin "2" (uuid 9b870860-8f2a-491e-8328-041d6722ec79)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 46.99 31.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 417767d3-8364-41f2-8fc3-d56621abcd73) + (property "Reference" "#PWR0101" (id 0) (at 46.99 38.1 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 46.99 36.83 0)) + (property "Footprint" "" (id 2) (at 46.99 31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 46.99 31.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid aa473570-bab3-40f8-906b-2f673d16cac3)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 59.69 114.3 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4187834f-599f-4088-bd63-09be4b7b677d) + (property "Reference" "v5" (id 0) (at 59.69 101.6 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 59.69 105.41 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 59.69 109.22 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2030a1ee-d5a4-4380-9252-500c59ec7bc4)) + (pin "2" (uuid b097437c-c1ef-4942-a382-21d713df7806)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 86.36 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 44220940-487b-423a-a5e4-0e197b2c2c3c) + (property "Reference" "U6" (id 0) (at 85.725 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 85.725 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 86.36 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3d4a27fc-617e-44fa-a96d-10a0f4572d5c)) + (pin "2" (uuid 7ab1e58b-005a-4d6c-ab2a-acebd98360d7)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 85.09 52.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4bd80ccb-68e5-4b4f-92fd-64c796dfe67a) + (property "Reference" "U2" (id 0) (at 84.455 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 84.455 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 85.09 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 85.09 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f6dba987-d493-4758-94b5-b619edbbbd02)) + (pin "2" (uuid 0aaf0197-e826-400b-b696-d659c8b3c2d8)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 58.42 91.44 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58cc7a99-a138-48cf-9a0a-f268ff0ea98a) + (property "Reference" "v4" (id 0) (at 58.42 78.74 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 58.42 82.55 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 58.42 86.36 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 58.42 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f07f01d5-2ac1-4eb3-9145-fbcb63cd2588)) + (pin "2" (uuid 270af58f-7f5b-410b-931a-45f1a117db53)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 59.69 154.94 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e4ae475-75af-4967-8951-c8e35d801992) + (property "Reference" "v7" (id 0) (at 59.69 142.24 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 59.69 146.05 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 59.69 149.86 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eacd60eb-73fe-4789-aa04-ae0ac4894c41)) + (pin "2" (uuid d2344cb2-b1dc-4b32-a7ce-aad4af8e5dfb)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 86.36 115.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 70c8c74f-aa4c-4327-8627-25551b324ebc) + (property "Reference" "U5" (id 0) (at 85.725 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 85.725 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 86.36 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d44a3f7d-ef92-42ce-9ec0-dd0485387c23)) + (pin "2" (uuid e429420e-88f8-42e3-8273-0b0b1b5957b2)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 48.26 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 71f9f6f7-0191-476a-a633-64ac6a3a0aac) + (property "Reference" "#PWR0106" (id 0) (at 48.26 161.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 48.26 160.02 0)) + (property "Footprint" "" (id 2) (at 48.26 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 48.26 154.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8ece4f9e-7aba-4497-bcaf-1db3b928e702)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 59.69 134.62 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 759630d5-4b7d-4ffc-afd3-1ef85fd0628c) + (property "Reference" "v6" (id 0) (at 59.69 121.92 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 59.69 125.73 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 59.69 129.54 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e5372f87-68d3-4be4-8fc2-ee1419655d8f)) + (pin "2" (uuid ec575e1d-ef82-4614-afa7-0c39e9280154)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 58.42 71.12 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ad01a32-e37f-4f99-9cc1-0fd8606c2742) + (property "Reference" "v3" (id 0) (at 58.42 58.42 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 58.42 62.23 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 58.42 66.04 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 58.42 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 584b9e2f-c94f-417e-a709-5a76c08f98e5)) + (pin "2" (uuid c4a4c540-d519-4e9b-882b-b085a8ccf399)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 46.99 50.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 908a9227-1b76-4bb3-89ae-0bbf3920b92a) + (property "Reference" "#PWR0102" (id 0) (at 46.99 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 46.99 55.88 0)) + (property "Footprint" "" (id 2) (at 46.99 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 46.99 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c9861eb1-08a2-452f-b718-76490b9b17ba)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 86.36 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9179b626-490f-4807-bd5a-4b27dba26a21) + (property "Reference" "U8" (id 0) (at 85.725 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 85.725 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 86.36 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b589dd81-f317-4445-8bb6-23f805cfaefe)) + (pin "2" (uuid 775eb0f5-d514-4f18-9fde-b38315390762)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 180.34 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 97f2834f-1c72-48c2-a082-23d5a72bb75a) + (property "Reference" "U11" (id 0) (at 179.705 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 179.705 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 180.34 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 180.34 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e2770568-3d00-41ac-9424-53d5a816a5af)) + (pin "2" (uuid d9dc007c-1c26-4f46-8798-e0a9c41cf59e)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 175.26 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 99837fad-bd23-4a21-b488-27a058782c25) + (property "Reference" "U9" (id 0) (at 174.625 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 174.625 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 77d1270c-c7e7-4c92-ad57-0b52668da2ee)) + (pin "2" (uuid 841184bb-77f0-442a-abde-e96cd5ed9745)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 48.26 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a6c9e23a-4c44-4f49-a8e3-7e03ceb422df) + (property "Reference" "#PWR0104" (id 0) (at 48.26 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 48.26 139.7 0)) + (property "Footprint" "" (id 2) (at 48.26 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 48.26 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c1e182cf-d5a0-4c6b-a8f8-4cd36b9e484b)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 46.99 71.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b5d1f6f6-3733-47dd-933e-e5c3ddce898d) + (property "Reference" "#PWR0107" (id 0) (at 46.99 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 46.99 76.2 0)) + (property "Footprint" "" (id 2) (at 46.99 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 46.99 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 149787ab-7c26-428d-92a1-70862326dfae)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 46.99 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c6e077d1-b976-4409-9cf6-2867424da3d2) + (property "Reference" "#PWR0108" (id 0) (at 46.99 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 46.99 96.52 0)) + (property "Footprint" "" (id 2) (at 46.99 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 46.99 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid bc47b2a0-4450-4f10-a9e6-207b714f8bc1)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 85.09 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cfade25a-b089-42db-92ec-655c84fcd543) + (property "Reference" "U3" (id 0) (at 84.455 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 84.455 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 85.09 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 85.09 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 460e1620-a633-40b0-bc71-935e8c84ed21)) + (pin "2" (uuid 3ac5a7fe-b95f-40bc-9403-5615da0b025f)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 176.53 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d522080e-ece6-4eb5-9a5b-50713dab26d2) + (property "Reference" "U10" (id 0) (at 175.895 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 175.895 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 176.53 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 176.53 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f19ea97b-94d2-400b-b040-8d9ef89046f9)) + (pin "2" (uuid 229483fa-bbd7-477a-93b1-4907250e836c)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 85.09 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e685a580-3937-4d23-8405-e75dd10fca19) + (property "Reference" "U4" (id 0) (at 84.455 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 84.455 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 85.09 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 85.09 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87e52df8-345f-419d-bb04-7c5c4ea7cb62)) + (pin "2" (uuid c315c517-f2fc-4880-baed-a20ab3a3d960)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 59.69 175.26 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea0d8f10-e6c3-44e0-a5da-2ecc1d9691e6) + (property "Reference" "v8" (id 0) (at 59.69 162.56 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 59.69 166.37 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 59.69 170.18 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a5cfee18-a51c-4fee-8c52-af054895fee5)) + (pin "2" (uuid 6826efc2-89f0-4b88-9df4-93966299b686)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 48.26 175.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f7e068e2-924a-491c-8539-ade25a98b256) + (property "Reference" "#PWR0105" (id 0) (at 48.26 181.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 48.26 180.34 0)) + (property "Footprint" "" (id 2) (at 48.26 175.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 48.26 175.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b6ae59f3-ba72-40e5-8c9b-e4ade1250a73)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/417767d3-8364-41f2-8fc3-d56621abcd73" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/908a9227-1b76-4bb3-89ae-0bbf3920b92a" + (reference "#PWR0102") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/2087617d-b74e-4e22-8826-b6bd8f938c24" + (reference "#PWR0103") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/a6c9e23a-4c44-4f49-a8e3-7e03ceb422df" + (reference "#PWR0104") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/f7e068e2-924a-491c-8539-ade25a98b256" + (reference "#PWR0105") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/71f9f6f7-0191-476a-a633-64ac6a3a0aac" + (reference "#PWR0106") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/b5d1f6f6-3733-47dd-933e-e5c3ddce898d" + (reference "#PWR0107") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/c6e077d1-b976-4409-9cf6-2867424da3d2" + (reference "#PWR0108") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/0547f694-3ade-4e46-9554-c1d71de97672" + (reference "U1") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/4bd80ccb-68e5-4b4f-92fd-64c796dfe67a" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/cfade25a-b089-42db-92ec-655c84fcd543" + (reference "U3") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/e685a580-3937-4d23-8405-e75dd10fca19" + (reference "U4") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/70c8c74f-aa4c-4327-8627-25551b324ebc" + (reference "U5") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/44220940-487b-423a-a5e4-0e197b2c2c3c" + (reference "U6") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/1f826552-de95-4823-80ba-5fc06f0bb612" + (reference "U7") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/9179b626-490f-4807-bd5a-4b27dba26a21" + (reference "U8") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/99837fad-bd23-4a21-b488-27a058782c25" + (reference "U9") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/d522080e-ece6-4eb5-9a5b-50713dab26d2" + (reference "U10") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/97f2834f-1c72-48c2-a082-23d5a72bb75a" + (reference "U11") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/2989e90e-0bbf-49d9-90ef-db692b384b51" + (reference "X1") (unit 1) (value "SN7485") (footprint "") + ) + (path "/3e5ca5ba-716a-4f83-91e4-4b5d692da335" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/2494abb2-7fab-4b6b-bf92-3522f652e4ae" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/7ad01a32-e37f-4f99-9cc1-0fd8606c2742" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/58cc7a99-a138-48cf-9a0a-f268ff0ea98a" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/4187834f-599f-4088-bd63-09be4b7b677d" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/759630d5-4b7d-4ffc-afd3-1ef85fd0628c" + (reference "v6") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/6e4ae475-75af-4967-8951-c8e35d801992" + (reference "v7") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/ea0d8f10-e6c3-44e0-a5da-2ecc1d9691e6" + (reference "v8") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN7485/Test_SN7485.proj b/library/SubcircuitLibrary/SN7485/Test_SN7485.proj new file mode 100644 index 000000000..4f0128275 --- /dev/null +++ b/library/SubcircuitLibrary/SN7485/Test_SN7485.proj @@ -0,0 +1 @@ +schematicFile Test_SN7485.kicad_sch diff --git a/library/SubcircuitLibrary/SN7485/Test_SN7485_Previous_Values.xml b/library/SubcircuitLibrary/SN7485/Test_SN7485_Previous_Values.xml new file mode 100644 index 000000000..e522cb87d --- /dev/null +++ b/library/SubcircuitLibrary/SN7485/Test_SN7485_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0.1320secmsms80m)80m)20m)20m)40m)40m)160m)160m)d_andd_andd_andd_anddac_bridged_andd_ordac_bridged_ord_ord_ordac_bridged_ord_oradc_bridgeadc_bridged_inverterd_inverterd_inverterd_inverterd_inverteradc_bridgeadc_bridgeadc_bridged_inverteradc_bridged_ord_ord_inverterd_inverterd_andd_andd_andd_andadc_bridgeadc_bridged_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_ord_ord_andd_andd_andd_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7485/analysis b/library/SubcircuitLibrary/SN7485/analysis new file mode 100644 index 000000000..ce83b2a2d --- /dev/null +++ b/library/SubcircuitLibrary/SN7485/analysis @@ -0,0 +1 @@ +.tran 0.1e-03 320e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7486/SN7486_subckt.cir b/library/SubcircuitLibrary/SN7486/SN7486_subckt.cir new file mode 100644 index 000000000..06e652a8a --- /dev/null +++ b/library/SubcircuitLibrary/SN7486/SN7486_subckt.cir @@ -0,0 +1,27 @@ +.title KiCad schematic +U9 B4 Net-_U11-Pad2_ d_inverter +U8 A4 Net-_U10-Pad1_ d_inverter +U11 A4 Net-_U11-Pad2_ Net-_U11-Pad3_ d_and +U10 Net-_U10-Pad1_ B4 Net-_U10-Pad3_ d_and +U17 A3 Net-_U17-Pad2_ Net-_U17-Pad3_ d_and +U1 A1 B1 A2 B2 A3 B3 A4 B4 Y1 Y2 Y3 Y4 PORT +U6 A3 Net-_U16-Pad1_ d_inverter +U7 B3 Net-_U17-Pad2_ d_inverter +U5 B2 Net-_U15-Pad2_ d_inverter +U2 A1 Net-_U12-Pad1_ d_inverter +U3 B1 Net-_U13-Pad2_ d_inverter +U4 A2 Net-_U14-Pad1_ d_inverter +U19 Net-_U12-Pad3_ Net-_U13-Pad3_ Net-_U19-Pad3_ d_or +U22 Net-_U18-Pad3_ Y4 dac_bridge_1 +U18 Net-_U10-Pad3_ Net-_U11-Pad3_ Net-_U18-Pad3_ d_or +U21 Net-_U16-Pad3_ Net-_U17-Pad3_ Net-_U21-Pad3_ d_or +U25 Net-_U21-Pad3_ Y3 dac_bridge_1 +U16 Net-_U16-Pad1_ B3 Net-_U16-Pad3_ d_and +U15 A2 Net-_U15-Pad2_ Net-_U15-Pad3_ d_and +U13 A1 Net-_U13-Pad2_ Net-_U13-Pad3_ d_and +U14 Net-_U14-Pad1_ B2 Net-_U14-Pad3_ d_and +U12 Net-_U12-Pad1_ B1 Net-_U12-Pad3_ d_and +U20 Net-_U14-Pad3_ Net-_U15-Pad3_ Net-_U20-Pad3_ d_or +U24 Net-_U20-Pad3_ Y2 dac_bridge_1 +U23 Net-_U19-Pad3_ Y1 dac_bridge_1 +.end diff --git a/library/SubcircuitLibrary/SN7486/SN7486_subckt.kicad_sch b/library/SubcircuitLibrary/SN7486/SN7486_subckt.kicad_sch new file mode 100644 index 000000000..d6d429303 --- /dev/null +++ b/library/SubcircuitLibrary/SN7486/SN7486_subckt.kicad_sch @@ -0,0 +1,1863 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 8720dae1-8565-409a-a690-bb8c374f663f) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 107.95 78.74) (diameter 0) (color 0 0 0 0) + (uuid 02ed46bb-dd5f-4b6b-8863-a8700b049462) + ) + (junction (at 107.95 107.95) (diameter 0) (color 0 0 0 0) + (uuid 1db92b28-6ad4-46a0-8b4c-6d4d7cbcdbbf) + ) + (junction (at 107.95 135.89) (diameter 0) (color 0 0 0 0) + (uuid 22aa4574-4190-4890-a7ac-de406096f10f) + ) + (junction (at 107.95 90.17) (diameter 0) (color 0 0 0 0) + (uuid 38abb117-21cc-46c7-b1d8-ef4115f2e668) + ) + (junction (at 107.95 119.38) (diameter 0) (color 0 0 0 0) + (uuid 4e6a8be4-2f7d-4158-8ca8-a2e803f0810c) + ) + (junction (at 107.95 147.32) (diameter 0) (color 0 0 0 0) + (uuid 7c18d761-e2ba-4bef-82a8-fcd8652ba70a) + ) + (junction (at 107.95 57.15) (diameter 0) (color 0 0 0 0) + (uuid dbeb3461-b790-4e58-bbad-a77e68f2ffa3) + ) + (junction (at 107.95 45.72) (diameter 0) (color 0 0 0 0) + (uuid eb247851-40f6-4a95-8902-aca4d07575bc) + ) + + (wire (pts (xy 132.08 115.57) (xy 132.08 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00208e97-3193-4e48-81a2-4eaeb3a745fa) + ) + (wire (pts (xy 132.08 119.38) (xy 132.08 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0064a1f2-99c6-4ed7-a924-59fbb844b262) + ) + (wire (pts (xy 161.29 78.74) (xy 161.29 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01ac1336-7718-4566-9a8f-e9e3c97c170c) + ) + (wire (pts (xy 132.08 78.74) (xy 132.08 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0370f37c-c80e-4097-8d03-e270cbd5409b) + ) + (wire (pts (xy 107.95 135.89) (xy 107.95 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08583dec-2765-4e9f-9d09-441298915204) + ) + (wire (pts (xy 123.19 45.72) (xy 132.08 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 097ab1e5-d29b-478a-b192-368cea0ae538) + ) + (wire (pts (xy 107.95 115.57) (xy 132.08 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a92a9f0-8eaf-4af0-a912-6fec4ae89487) + ) + (wire (pts (xy 132.08 87.63) (xy 132.08 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ad057ba-76e5-4384-8ff0-8eed2286890c) + ) + (wire (pts (xy 234.95 142.24) (xy 212.09 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b0cd269-e4a9-489a-aa13-2719c4b0fdad) + ) + (wire (pts (xy 107.95 147.32) (xy 107.95 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b3faf2b-4143-4fd1-bcd9-3b820ca562f8) + ) + (wire (pts (xy 77.47 119.38) (xy 107.95 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0dc12a72-bc29-45a3-9f9f-ea2f0f9be7b8) + ) + (wire (pts (xy 132.08 107.95) (xy 132.08 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f4a3586-92d9-4ce2-89e1-f779e88c0626) + ) + (wire (pts (xy 127 80.01) (xy 132.08 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 115d9531-a705-4b1d-84e6-bff4abe95839) + ) + (wire (pts (xy 107.95 45.72) (xy 107.95 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1621c053-4d2c-4a54-b93e-0bf49224f650) + ) + (wire (pts (xy 123.19 147.32) (xy 130.81 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 166bfcba-a5b5-484d-a0ec-39bd6fd65b41) + ) + (wire (pts (xy 154.94 119.38) (xy 161.29 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a35c1e6-e2fa-487d-81b0-f44de730ede4) + ) + (wire (pts (xy 77.47 147.32) (xy 107.95 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dede739-c04c-4c9c-9f35-a7d694e7e21a) + ) + (wire (pts (xy 231.14 113.03) (xy 213.36 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e3d60d8-9da8-468e-b738-300646d9b1f3) + ) + (wire (pts (xy 107.95 78.74) (xy 107.95 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f155145-7f02-4e68-8343-f2a27bc1a36d) + ) + (wire (pts (xy 107.95 53.34) (xy 132.08 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21659629-6ae9-4342-ab00-a4e48ba47f3b) + ) + (wire (pts (xy 154.94 52.07) (xy 161.29 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 249e7f58-9a0d-4231-91ab-b25e27adcee8) + ) + (wire (pts (xy 127 109.22) (xy 132.08 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27730f80-dcbc-4081-a422-a17e5cbee208) + ) + (wire (pts (xy 161.29 107.95) (xy 161.29 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e890aec-9b4a-400c-8fc8-fc77110241a2) + ) + (wire (pts (xy 123.19 78.74) (xy 132.08 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3560c540-f48a-4723-9e20-bd3d3bd4e863) + ) + (wire (pts (xy 107.95 123.19) (xy 127 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38da5853-32ce-45ea-9353-83152d3cb400) + ) + (wire (pts (xy 123.19 107.95) (xy 132.08 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b5295bd-602f-4784-9e45-2494be94b232) + ) + (wire (pts (xy 160.02 135.89) (xy 160.02 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e902d42-d30c-402c-add5-b8507c38e86f) + ) + (wire (pts (xy 132.08 53.34) (xy 132.08 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43a31170-e6f1-46bd-908c-cb4fe0a00e32) + ) + (wire (pts (xy 107.95 62.23) (xy 129.54 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d16ff26-88d2-4856-bb97-30ffdd9ba9a1) + ) + (wire (pts (xy 107.95 90.17) (xy 107.95 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51e7066b-1087-46f3-af15-2348d7ba5ffd) + ) + (wire (pts (xy 132.08 57.15) (xy 132.08 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57a52d7b-bde3-4052-8d8e-ff8a55d55916) + ) + (wire (pts (xy 154.94 90.17) (xy 161.29 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d5cc543-6295-4a42-8825-776f4dea2e22) + ) + (wire (pts (xy 154.94 45.72) (xy 154.94 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e2c8813-e803-4b06-a55b-60a47284ce8e) + ) + (wire (pts (xy 153.67 147.32) (xy 160.02 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66148cd3-1695-4f88-b993-9586c4caa66a) + ) + (wire (pts (xy 123.19 119.38) (xy 132.08 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b7c841f-5035-4fc5-98bf-9d7b6e73c330) + ) + (wire (pts (xy 130.81 147.32) (xy 130.81 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6de017d3-4232-4184-87b5-1b825f46ff3b) + ) + (wire (pts (xy 154.94 57.15) (xy 154.94 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71d1e579-9592-4eb1-ae01-5a0cadce6c3a) + ) + (wire (pts (xy 231.14 50.8) (xy 213.36 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73afdb57-5da8-4638-ac40-93bde7fe8152) + ) + (wire (pts (xy 132.08 45.72) (xy 132.08 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73c7f904-b7b2-47a4-8e1e-906cc8e8710c) + ) + (wire (pts (xy 127 123.19) (xy 127 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 789b8fd7-5c05-4191-a7b7-5a3c3747a9d2) + ) + (wire (pts (xy 107.95 93.98) (xy 127 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7eec66fc-90ad-4f1c-ae62-efdf023b247b) + ) + (wire (pts (xy 77.47 135.89) (xy 107.95 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87f7ac75-434f-427d-aec9-fe4dd00438dd) + ) + (wire (pts (xy 125.73 137.16) (xy 130.81 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8869c1ef-932b-494d-beb8-ded847c743eb) + ) + (wire (pts (xy 127 93.98) (xy 127 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a3539b7-4407-4eaf-ad02-ba2b8d9f81f5) + ) + (wire (pts (xy 154.94 107.95) (xy 161.29 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8abcaeb0-2938-4ca8-91d1-ae216ef4afe7) + ) + (wire (pts (xy 77.47 107.95) (xy 107.95 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bdeee5f-e443-4f84-b48c-0b3b590588b6) + ) + (wire (pts (xy 129.54 62.23) (xy 129.54 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cf66011-d52c-45e6-9c2d-4544d8e17629) + ) + (wire (pts (xy 123.19 135.89) (xy 130.81 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f0d4b06-b5b3-4417-ad69-83674a81089a) + ) + (wire (pts (xy 129.54 46.99) (xy 132.08 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a00f0729-1c6e-493e-9dfa-e1dad715c6e7) + ) + (wire (pts (xy 107.95 107.95) (xy 107.95 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a141696b-b21d-422b-ac02-2338cda71c6f) + ) + (wire (pts (xy 123.19 57.15) (xy 132.08 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a88c5394-1168-481f-8f11-6951b5e18e09) + ) + (wire (pts (xy 77.47 78.74) (xy 107.95 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid adb24a29-bf7b-44f3-b641-deee82bc17fd) + ) + (wire (pts (xy 77.47 45.72) (xy 107.95 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af42abb6-564d-4d48-8be9-f810f894ab0d) + ) + (wire (pts (xy 228.6 83.82) (xy 213.36 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b006cb3b-1eed-49c0-81ae-007d119b0e42) + ) + (wire (pts (xy 161.29 90.17) (xy 161.29 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b39d956e-e4f4-4f62-ad70-3e7d54fb0ef9) + ) + (wire (pts (xy 130.81 142.24) (xy 130.81 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3f0a0f2-f0f5-46ae-81a7-b0e6f6189bf3) + ) + (wire (pts (xy 77.47 57.15) (xy 107.95 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b988d67f-3444-49c4-ad42-d2f4668eb2c3) + ) + (wire (pts (xy 160.02 147.32) (xy 160.02 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc2a2887-9566-443a-a153-9ff71db68fb2) + ) + (wire (pts (xy 130.81 135.89) (xy 130.81 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd7aff0e-ac59-4cfe-8bdc-579040a161df) + ) + (wire (pts (xy 123.19 90.17) (xy 132.08 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0237f16-3cd2-42a6-a340-ba0abcff0d69) + ) + (wire (pts (xy 153.67 135.89) (xy 160.02 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c988beb9-81f8-4cd6-86f5-ac1c57322deb) + ) + (wire (pts (xy 107.95 57.15) (xy 107.95 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc679542-7e1f-455c-8d7c-f86496d6c14c) + ) + (wire (pts (xy 107.95 87.63) (xy 132.08 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d82c2366-d3ff-4c93-b740-265bcdac3c90) + ) + (wire (pts (xy 154.94 49.53) (xy 161.29 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db699407-3406-4633-a7ad-63a8f4e2b90e) + ) + (wire (pts (xy 161.29 119.38) (xy 161.29 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db82d273-d1ac-4ef0-b4b2-832fff7d4fa9) + ) + (wire (pts (xy 107.95 152.4) (xy 125.73 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd6cc1b3-6ee7-4fc5-9ae3-74aa52a8dddb) + ) + (wire (pts (xy 107.95 142.24) (xy 130.81 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2b9c7fe-1608-47dc-9c5c-d2b8d5c336ac) + ) + (wire (pts (xy 132.08 90.17) (xy 132.08 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e325c072-2135-441f-85c9-2d28de900afb) + ) + (wire (pts (xy 77.47 90.17) (xy 107.95 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef089bfe-d681-40df-aa5b-6cb289bb3d00) + ) + (wire (pts (xy 154.94 78.74) (xy 161.29 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fac3c76c-9af3-4950-849f-e7834075b180) + ) + (wire (pts (xy 125.73 152.4) (xy 125.73 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdce6396-9b4a-4a00-becb-0f5795dc862c) + ) + (wire (pts (xy 107.95 119.38) (xy 107.95 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdf659d6-98f1-4b61-b1bd-ccd3573322b1) + ) + + (global_label "A1" (shape input) (at 87.63 45.72 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0294f988-94ca-49aa-b2d2-160b1a7716c0) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 87.5506 41.0088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A3" (shape input) (at 87.63 107.95 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0319848f-8c3d-47d1-a5f5-57ba68a5e3e7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 87.5506 103.2388 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B4" (shape input) (at 87.63 147.32 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 293a1d9d-7f67-4ccc-b5f1-b5607718a3b4) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 87.5506 142.4274 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B3" (shape input) (at 87.63 119.38 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7718887f-4122-4e85-b7dd-41bb8bfd5b19) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 87.5506 114.4874 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B2" (shape input) (at 87.63 90.17 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7cc89b0f-6d22-44b8-a9cf-e448d6dfe926) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 87.5506 85.2774 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 87.63 78.74 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 85c8eadb-f48b-403e-8e06-6aca1ddfbc59) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 87.5506 74.0288 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y4" (shape output) (at 223.52 142.24 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 8893e31c-85e2-42ce-88ed-916a492a5b34) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.4406 137.5288 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B1" (shape input) (at 87.63 57.15 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid affa039c-3f50-481a-8da9-5202caaa466f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 87.5506 52.2574 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y3" (shape output) (at 220.98 113.03 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b8e57abc-fe2a-43aa-8b82-7a66f8469371) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 220.9006 108.3188 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y1" (shape output) (at 220.98 50.8 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d5495cdc-3576-4692-882c-7e9421198a07) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 220.9006 46.0888 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y2" (shape output) (at 220.98 83.82 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f5030190-c9b4-406d-86ce-d8a33b9a57d5) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 220.9006 79.1088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape input) (at 87.63 135.89 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid fbb8ac1b-6ffc-48f3-ae2c-2f3d76a9a6de) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 87.5506 131.1788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 143.51 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 00f31958-6779-4c74-9469-9fcc9cf7aad1) + (property "Reference" "U14" (id 0) (at 143.51 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 143.51 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 143.51 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7b438735-9f57-4004-931f-aabe768cd185)) + (pin "2" (uuid 8a8e1b1e-bd3d-4156-a42e-2a5b3a947a79)) + (pin "3" (uuid 9807d97e-e4d4-4932-bbf4-0dc833d7578a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 142.24 137.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06e0dae8-8c27-46a1-b6fa-6cdfa565cdca) + (property "Reference" "U10" (id 0) (at 142.24 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 142.24 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 142.24 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3ea8f320-d125-41d8-8b64-beef22d1553b)) + (pin "2" (uuid a0032019-8939-4169-aee5-7a3602c18bca)) + (pin "3" (uuid 9de69f86-4eb6-405f-8277-fd92b8dad7ad)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 199.39 52.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 090a957a-0403-4096-9087-a90207684a4b) + (property "Reference" "U23" (id 0) (at 198.755 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 198.755 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 199.39 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 199.39 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f3379018-ccb1-417e-bd6f-4116fa5937d7)) + (pin "2" (uuid 797d37bc-43fc-473f-a07f-30f081b38d09)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 143.51 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28eb2181-5c50-4ead-ab29-18dbe01f4b7b) + (property "Reference" "U17" (id 0) (at 143.51 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 143.51 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 143.51 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8738214e-6661-4742-ac69-682efd1b67ed)) + (pin "2" (uuid 22168307-5d49-4b7e-8300-1b88aa54c180)) + (pin "3" (uuid 24fdd119-d5c3-4a58-87bb-a46657a81550)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 115.57 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2dbd8699-6036-420c-9df0-c5be2b509e36) + (property "Reference" "U6" (id 0) (at 115.57 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 115.57 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c870e970-fa08-4d3f-86d4-1f4b73fb8a40)) + (pin "2" (uuid 04d25980-6f53-4d4d-b064-06ae119b11ec)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 115.57 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 37086d13-ab61-4d02-8284-3a688ea00932) + (property "Reference" "U8" (id 0) (at 115.57 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 115.57 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 83ee6823-a59e-40af-a66a-19cbb7a1312f)) + (pin "2" (uuid 2793f42c-4842-4b47-9799-21d18033820d)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 198.12 143.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 37e881a2-a413-4b11-b1ac-9eecf710c35d) + (property "Reference" "U22" (id 0) (at 197.485 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 197.485 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f0dbdaee-502e-43e4-a8c6-c4b0aaf66239)) + (pin "2" (uuid 1e21233b-4d62-4a58-8302-abeed3c569c2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 237.49 50.8 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 393c700e-26a6-403b-8568-7432885cd76f) + (property "Reference" "U1" (id 0) (at 241.3 50.165 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 241.3 52.705 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 237.49 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 237.49 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f95a55bc-3109-430c-908c-caacf9468712)) + (pin "2" (uuid c9005a43-e380-4317-a5f2-d097ca792a74)) + (pin "3" (uuid 1cf2a432-eb74-40b5-b0cb-e2a4e75a9dbd)) + (pin "4" (uuid 125404df-4bfe-47a3-805c-df38aa456888)) + (pin "5" (uuid b3ed16ea-2436-4bc8-8fb0-dabbec30a06d)) + (pin "6" (uuid ca544f3f-73a5-4c08-982b-084f8042347c)) + (pin "7" (uuid 473d5e62-3d6d-4dc6-ba25-c6f8368bfccf)) + (pin "8" (uuid fef23631-f792-4531-94da-1dbd35d7467b)) + (pin "9" (uuid de704bc6-f83d-4636-b665-d216209390fc)) + (pin "10" (uuid 01a6c9bf-44e0-4a8c-824c-0a2d56a700dd)) + (pin "11" (uuid 12db2809-321a-4727-a08e-ae64445021f7)) + (pin "12" (uuid 7b5ca76c-aad6-4d9e-ba10-78251d139bfd)) + (pin "13" (uuid 1f9351b3-09cf-42f8-9cf3-4753735e60f2)) + (pin "14" (uuid 1af1e5b3-066e-4e0e-a56f-1a221cb25f30)) + (pin "15" (uuid 09f9f2c2-9e24-4b52-a54e-8aa52cb1408c)) + (pin "16" (uuid 7ffc47c3-e820-414f-ac52-fa0f58da4e44)) + (pin "17" (uuid 60af6ae5-6874-4ac3-81af-4f5e2c60f647)) + (pin "18" (uuid 8a8dcfbd-7cbd-4d3b-83eb-6e680d7ead68)) + (pin "19" (uuid 71c16078-3edc-4d33-b4ca-a94ea57765bc)) + (pin "20" (uuid ad0c1687-d122-4c20-b74b-f5b3f1c08976)) + (pin "21" (uuid 32ae3cec-c919-4743-b650-7e805d909cb2)) + (pin "22" (uuid 26c28f1e-5e06-48e2-b1b8-a3487be7ff6b)) + (pin "23" (uuid 1a974cc3-eaa6-42ae-8a48-21700a3314ea)) + (pin "24" (uuid 3703bb57-88f3-4e47-b398-76908f4b2113)) + (pin "25" (uuid 614deae6-4f8e-45b6-8a72-5b52d6f69a29)) + (pin "26" (uuid 7c6bb995-c9ce-4640-a1db-1376c1f63f98)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 115.57 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 411dfdd9-ac5f-4df1-adf0-6bf8a9ec05e5) + (property "Reference" "U9" (id 0) (at 115.57 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 115.57 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 733a3c77-30b4-4496-afca-3916f80714e9)) + (pin "2" (uuid a1971f5a-6ee2-43aa-ae25-f7adb8194569)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 199.39 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b25c50d-94fb-4678-aa50-d6d51d135786) + (property "Reference" "U25" (id 0) (at 198.755 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 198.755 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 199.39 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 199.39 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a3675bbe-2a7b-4e1b-b76d-9f0a5978a0b0)) + (pin "2" (uuid bd28b4b1-3718-4620-9a46-58b8473d6425)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 71.12 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4da7711c-4e5d-4be5-813d-d960bb726c6b) + (property "Reference" "U1" (id 0) (at 71.755 40.64 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 71.755 43.18 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 71.12 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5095e934-9017-47f4-a110-44ed44ae6b6b)) + (pin "2" (uuid 2b2ae23c-f9ed-4982-9815-c5a920261960)) + (pin "3" (uuid 152f18e7-5725-4066-86a3-14d279543d27)) + (pin "4" (uuid c54c1f05-9ec7-4b65-8788-68003220335a)) + (pin "5" (uuid 55143b09-ca9c-4737-b199-214f1aeb8bf8)) + (pin "6" (uuid 275106e9-f83c-4ddd-b6eb-7ca203a3c413)) + (pin "7" (uuid bd277bda-22ce-4f1d-9f41-9319e845d40e)) + (pin "8" (uuid 59b559c0-141c-4576-beaf-9b16cf7cbdf0)) + (pin "9" (uuid aaffabcc-44b1-4aa9-b360-73ad691bb695)) + (pin "10" (uuid 7116c148-24a5-4353-890d-af600a1b76e8)) + (pin "11" (uuid c26542b9-0c58-427a-9161-6bea4e2f2384)) + (pin "12" (uuid cb8c0e25-9c46-4abf-8ee9-4bfee6666555)) + (pin "13" (uuid b556a6a0-5c50-4d3b-9301-d131e0635d56)) + (pin "14" (uuid 6f1149a2-81e6-4b28-b587-68b17e0e3389)) + (pin "15" (uuid d3e9bc8c-286a-4fa0-83cc-c2fa20c08406)) + (pin "16" (uuid b6d53c31-baa9-409a-b511-1cf1c5b2dc71)) + (pin "17" (uuid 464aa365-d7b5-43e6-9a59-fecae0f37193)) + (pin "18" (uuid a19d7b56-53dc-462b-921b-eef977813c08)) + (pin "19" (uuid c01d3463-8618-41d7-953f-77a943292690)) + (pin "20" (uuid e73970b0-12dd-45c1-be38-f69a65e17b8a)) + (pin "21" (uuid 3bbfc33f-549d-465f-b549-a7fbcbaf8094)) + (pin "22" (uuid 58341aaa-43de-4001-98fd-e6a1c3d81309)) + (pin "23" (uuid 95c80441-20fe-4d10-8661-5ccf4bf57877)) + (pin "24" (uuid c0e8387f-0d9a-4029-ac1b-55b637709f09)) + (pin "25" (uuid 0542074d-7586-41e0-8806-af469f37b252)) + (pin "26" (uuid 7f4f5dc9-f4df-4b59-be05-f40cfded4e1c)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 171.45 143.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5413f89e-e644-47b2-adee-0a16efe2b60f) + (property "Reference" "U18" (id 0) (at 171.45 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 171.45 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 78185ba7-8d6d-4053-af18-dca922e4b356)) + (pin "2" (uuid 4ad813ac-b559-49eb-90e5-b4e5d04f8671)) + (pin "3" (uuid ba0ce96e-b3e9-4be3-a68a-6087e3aaefc9)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 115.57 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6073b8bc-c624-4c40-9e0c-f58df7049a27) + (property "Reference" "U5" (id 0) (at 115.57 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 115.57 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1fd61dd0-fa5f-4a86-9573-5156be0e47fa)) + (pin "2" (uuid ff86a924-303f-4b45-ae62-873d80e1a680)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 172.72 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 648552d8-7bfe-442b-91c6-e37379888490) + (property "Reference" "U21" (id 0) (at 172.72 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 172.72 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 172.72 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76f75512-5f51-4493-bdac-8524266d2c7d)) + (pin "2" (uuid c9daefb5-7383-4d64-9413-024bc6a99b68)) + (pin "3" (uuid 39b3314f-6108-4f5f-8939-aed4a300be80)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 71.12 57.15 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 64ab113e-c5fb-4a17-9747-c4de919e4ed6) + (property "Reference" "U1" (id 0) (at 71.755 52.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 71.755 54.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 71.12 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3ed7e384-0155-4130-8c7f-51940594b38e)) + (pin "2" (uuid c9813630-cd60-482f-bec7-12eeb9a5dbe0)) + (pin "3" (uuid 5541f891-7e08-4a22-9336-2da48b819f52)) + (pin "4" (uuid 89b21245-4d8e-401f-a765-082bfb6b42f1)) + (pin "5" (uuid 2517b8fb-33e2-45ad-a9e6-6b8c691dbd4e)) + (pin "6" (uuid f2d198c6-2b49-4368-8ab9-40f866df1f95)) + (pin "7" (uuid 5d774c13-b382-4b97-b912-86d79ec87cec)) + (pin "8" (uuid 32e3b843-d379-4eab-b7c7-3101cc033ebc)) + (pin "9" (uuid d7773e64-2f28-4feb-9db9-08ece2c90184)) + (pin "10" (uuid d18adac1-2ee6-456e-b9e4-9695e425b02d)) + (pin "11" (uuid f71423bf-173c-4e6d-bcdf-ef0e00f41f26)) + (pin "12" (uuid 2d09d34d-a463-4894-a93d-81265c2d72bb)) + (pin "13" (uuid 32fde92c-7c94-4d30-8fcd-db91b95eb054)) + (pin "14" (uuid 0a1089c5-397e-44b9-af8e-03601f62efcc)) + (pin "15" (uuid f29dc3df-a2f8-447f-b29c-9147f543fc88)) + (pin "16" (uuid c8fa0fec-2b45-4733-b4cd-ddacd8786705)) + (pin "17" (uuid 8c5e1712-c8ab-43c2-b02b-a848c11a9ce2)) + (pin "18" (uuid 3b4b3413-8b9d-4783-9748-a863b83971da)) + (pin "19" (uuid 192c69fe-a19f-4db7-80e8-2b8b0d712514)) + (pin "20" (uuid bcfe048f-64a6-4b8f-86ad-afbe5ac96bd6)) + (pin "21" (uuid 61a7ed40-9b4f-4904-b724-63600dd38c92)) + (pin "22" (uuid 11c270f8-56c4-46f7-ae7f-d6aa89f45754)) + (pin "23" (uuid 668ee04f-6af2-4403-a9ca-a0abedfc4e8d)) + (pin "24" (uuid ecf63fce-8e4e-4843-a2ef-6fa2b1f6c56a)) + (pin "25" (uuid daa1da9d-d3ce-4a69-a305-d52c4aebdce1)) + (pin "26" (uuid d8ca0cc2-7824-4ce3-9bd7-9923fb0e7ab3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 115.57 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 707f3687-a790-475c-b0db-7f5832320ded) + (property "Reference" "U4" (id 0) (at 115.57 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 115.57 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ec161b95-4617-4c19-9b59-9d6fdd0261d8)) + (pin "2" (uuid c9bfe680-945d-4029-b967-4800d24c6e01)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 172.72 52.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7261a4c0-32fe-4e61-9a93-fd2efe1999e2) + (property "Reference" "U19" (id 0) (at 172.72 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 172.72 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 172.72 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0cae87f1-7d17-4738-b241-3d91c5d00af4)) + (pin "2" (uuid 78c03f2e-f735-4e75-b4a3-1f4e872baee7)) + (pin "3" (uuid a69cd3c2-f759-45cc-bc9b-3a85192fe9a0)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 142.24 148.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 74096fb2-206b-4a35-8c7b-0684ac909e9f) + (property "Reference" "U11" (id 0) (at 142.24 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 142.24 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 142.24 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e37f61e4-612a-4fef-82e7-9a4b60372e56)) + (pin "2" (uuid 4522a2de-33d0-4b5b-b895-58cfe782d00f)) + (pin "3" (uuid abca7cb3-899b-463f-9733-0c8cf276e4e1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 71.12 147.32 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 77732049-1469-4f78-bbb8-9294ec8a5330) + (property "Reference" "U1" (id 0) (at 71.755 142.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 71.755 144.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 71.12 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5bd81da0-010f-45c6-8376-bd3ada9630ac)) + (pin "2" (uuid d848eb5e-eac1-4a81-aa48-fd9a4a5d42c6)) + (pin "3" (uuid 81888fb3-73c1-45b8-95a7-6e99086714c5)) + (pin "4" (uuid 13242a04-558a-4e32-9210-715a8898006e)) + (pin "5" (uuid 4b34902f-b92a-4dd3-9680-7e1ecb3d5fb9)) + (pin "6" (uuid bc63e0f8-e5b0-49c7-8671-bc6f23f2f1ad)) + (pin "7" (uuid 654a306e-bf40-4720-871c-de6f56fd77a5)) + (pin "8" (uuid 93cab292-8ed3-4b91-b3b0-1b0289b5ba19)) + (pin "9" (uuid efde9453-6293-4970-a858-6bc3a6baa544)) + (pin "10" (uuid c453efce-1313-49a3-b382-e4033284e7c4)) + (pin "11" (uuid adf56a5f-1d77-4acb-b2aa-bcd5dda1df95)) + (pin "12" (uuid 2ff2f9ac-0113-4e2b-887f-1202cb3cc61b)) + (pin "13" (uuid f88a7eb6-2307-4f64-8ae1-e4d9efc011c1)) + (pin "14" (uuid d5a9bad2-36f9-4b26-8445-9c40e2e98429)) + (pin "15" (uuid 6b8fe306-fe35-4ca6-9fdc-ca6c38693419)) + (pin "16" (uuid 569bb82e-e71e-420c-80e6-50e7d076a4f9)) + (pin "17" (uuid 2ffce9b4-788b-49de-aae4-a2e3e050187b)) + (pin "18" (uuid 046202e3-6fb7-4cad-8eba-4694bbc41c7b)) + (pin "19" (uuid 11e8aeab-e85c-4f54-a0d6-a767ef052fc9)) + (pin "20" (uuid f2101321-e057-47de-b9b0-6e914ee2c976)) + (pin "21" (uuid 1b8a555f-29b2-4a0f-b912-1fd34343e5a8)) + (pin "22" (uuid e9c1de31-7ae7-4481-a543-d78130e4dc69)) + (pin "23" (uuid 07a21649-e742-4679-9fbb-526f34eb604c)) + (pin "24" (uuid bef1c1d8-ec0a-4da7-a664-a748f3ca6a1b)) + (pin "25" (uuid c47e0b7d-16fc-40bc-a3ab-7c80d47b8236)) + (pin "26" (uuid 80b6e624-10a7-4986-b84e-7d02a2e156f9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 71.12 107.95 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 78555c19-56ce-434d-aea8-52f9e20b0d7e) + (property "Reference" "U1" (id 0) (at 71.755 102.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 71.755 105.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 71.12 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5a2dd1fe-4371-4460-ab7a-9a061eb89436)) + (pin "2" (uuid a4bbb1a0-65e6-4c8b-b54e-dc9cc1613f17)) + (pin "3" (uuid 80585bdc-8235-41df-b20e-ac45290a2db0)) + (pin "4" (uuid e09da38e-df80-4958-84c1-e49b974573b9)) + (pin "5" (uuid 34348021-8745-449a-917f-ecd00744535f)) + (pin "6" (uuid ab659506-0505-49de-8f4f-75ae3b39fe63)) + (pin "7" (uuid 76cf2b96-4b7c-4d97-a471-06501bd321be)) + (pin "8" (uuid 3f59c8d2-2c48-43d6-b567-291f89bc394c)) + (pin "9" (uuid 63e9a5c7-bb32-4b2d-aa9a-9b61fdbd7a2d)) + (pin "10" (uuid 1cf7b1bd-f40f-480a-bf46-ef73c50f3aea)) + (pin "11" (uuid 1b94644d-7e37-441f-964c-db62bf873f3b)) + (pin "12" (uuid 7cb8c6c4-4733-4b31-a732-6c667cb1e03f)) + (pin "13" (uuid 02ec77b1-d942-4a23-8880-90dd0e8beff8)) + (pin "14" (uuid db1df061-f380-480e-aa18-15758cce70e5)) + (pin "15" (uuid 2837c10e-24e4-4af9-a78d-08f3543d189a)) + (pin "16" (uuid 222edfb6-ecd9-49a3-86aa-c60ea56e4557)) + (pin "17" (uuid 518d2ef5-00cf-40c3-8c4c-e8fe1a366119)) + (pin "18" (uuid 65ff1395-3dd4-42fc-a5fc-131a02d9b0d0)) + (pin "19" (uuid 098c5e00-8b98-4e86-8fc8-85f2b8c7ef89)) + (pin "20" (uuid 72e92860-1d6e-4f48-9ca5-76bf30a50a56)) + (pin "21" (uuid 52e9d022-924f-4d7a-a40f-85d2dbb384e4)) + (pin "22" (uuid fe8d3d53-0434-4fbe-86ed-bfdab441cae9)) + (pin "23" (uuid 0ea88471-4ca9-42f1-a495-476f6849a4f8)) + (pin "24" (uuid b5f14c5c-5c3e-44f3-b9fd-f93db9573b6f)) + (pin "25" (uuid 5a5d99ee-a753-4ad0-a1e1-4dc9d8901a82)) + (pin "26" (uuid 7de5c3c0-ed9b-4a91-a9a9-3842877e8847)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 241.3 142.24 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8334f7f2-5bc6-48dc-a77d-e56cff1f2d30) + (property "Reference" "U1" (id 0) (at 245.11 141.605 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 245.11 144.145 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 241.3 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45495b4f-d4a3-4008-a211-05bc75466b89)) + (pin "2" (uuid fbd785b6-0b83-436d-b2a1-cf0b39927352)) + (pin "3" (uuid 579d8dd4-be1e-407c-a8fc-26c0adadb272)) + (pin "4" (uuid 3bbc36ee-ab0c-46f6-b7ec-ab03aeb979dc)) + (pin "5" (uuid 69f3574d-2979-4a32-a8d8-2939da9f2f32)) + (pin "6" (uuid 231437dd-4b9b-46d3-898c-0a8169f4e01d)) + (pin "7" (uuid 7019cb76-ac25-489e-8652-e05d5fce156a)) + (pin "8" (uuid e45c25f0-3adb-43ee-8784-26f444dab563)) + (pin "9" (uuid 1789e18a-c2a9-42db-b127-be3fd6eac1e5)) + (pin "10" (uuid 77e4a085-ffce-4a46-946b-cd70d3db9105)) + (pin "11" (uuid e2153679-3613-4202-bf43-5b88a22bfb76)) + (pin "12" (uuid 3a6059f7-9c0b-4d72-a54c-4bef066414d5)) + (pin "13" (uuid f185f857-f939-4848-a511-5140c9d5e30a)) + (pin "14" (uuid a2110d94-7029-4df8-aecd-f693c5502cca)) + (pin "15" (uuid ccf1325d-c871-4bc1-bd12-eb19e59d4fac)) + (pin "16" (uuid 998b7088-e17f-4618-b802-0de03dfb7680)) + (pin "17" (uuid 44a60b00-46b3-4e62-8b95-7135fd41d5fe)) + (pin "18" (uuid 3181337a-4eba-461f-b889-651ed633be19)) + (pin "19" (uuid 03801b90-fe6b-4ad0-a114-b047cfaad98e)) + (pin "20" (uuid 1ca47806-0e2f-4925-91b8-ceb2d4724f99)) + (pin "21" (uuid 51a0c0e7-ab48-423f-ab69-9b1fff04d9d4)) + (pin "22" (uuid 308f4857-c854-4e5a-b53c-3d6f2969e4cf)) + (pin "23" (uuid 93fb1c01-30ca-4b46-8c5a-70a2a0ef6fa3)) + (pin "24" (uuid 710a1359-8fda-4b49-8da7-b284b21fe48e)) + (pin "25" (uuid 5f0b2782-e745-4158-aa41-d068a5e7b1c9)) + (pin "26" (uuid cb208399-c335-41fb-8a33-e2d0ba420d17)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 143.51 46.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 83d1481d-4737-4f0f-95a7-e1a653cfe48f) + (property "Reference" "U12" (id 0) (at 143.51 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 143.51 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 143.51 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 08f027d4-cb86-4a90-b9ed-d7f9ea9adca6)) + (pin "2" (uuid c16648a7-eafa-4d1a-b200-7a33d46218e7)) + (pin "3" (uuid b605973b-989d-459f-9fdc-8e629388dd34)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 143.51 109.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 90b9626a-2e28-45ad-a3fc-3e51acefb460) + (property "Reference" "U16" (id 0) (at 143.51 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 143.51 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 143.51 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 882325f3-a0d0-418b-947c-7ff1d32c5df6)) + (pin "2" (uuid 1776ef60-f5f3-430b-94a9-bb594e783305)) + (pin "3" (uuid e892c4bb-9e74-41fa-9af2-d983ba52760b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 71.12 119.38 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93c18dc7-e8c8-4ce7-b307-d0dbc9ee41c6) + (property "Reference" "U1" (id 0) (at 71.755 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 71.755 116.84 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 71.12 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2eace4f3-06a5-4326-bcdd-1bd9ea1b99b0)) + (pin "2" (uuid 8abde486-7e92-4184-9c2f-28141e084fda)) + (pin "3" (uuid ffe63ea2-05a5-4af3-9064-c64817ab3562)) + (pin "4" (uuid aac45306-0f63-4769-8a7a-d952d192363a)) + (pin "5" (uuid b3ad8d5d-affa-46e1-9039-0b3fc881663d)) + (pin "6" (uuid c8600a18-e353-4eb0-aaab-0050459fe917)) + (pin "7" (uuid b8fe86c9-014c-4efa-b594-e5f019995da7)) + (pin "8" (uuid 0403d44f-2e47-4567-a41f-5f15f3848862)) + (pin "9" (uuid 828d9795-ca3d-4545-b86c-e9c5e4385b60)) + (pin "10" (uuid 9ed332c7-728e-4d1a-84a7-a00cabee9c3f)) + (pin "11" (uuid 51d6b5e1-f2e1-4d50-b0bf-6b239f894666)) + (pin "12" (uuid 13785ceb-71bc-4490-aabb-c07b54c9e49b)) + (pin "13" (uuid 26f6440d-81b0-4e68-96ef-d776132c536c)) + (pin "14" (uuid 8a085ac1-257a-4a3f-b15e-9c812ecbb0ed)) + (pin "15" (uuid bcd3aa55-6135-4304-9da6-3cd1f2b34f06)) + (pin "16" (uuid 95c21008-b420-489e-966c-f2cdcaef2b42)) + (pin "17" (uuid 5c104499-2b6a-40b1-9a3d-c4f419c6ea3f)) + (pin "18" (uuid b40f1be6-d040-4309-a6c2-17ff9c438a10)) + (pin "19" (uuid 61e9b23e-c2d9-4cbd-a04b-8d52d5773dbc)) + (pin "20" (uuid c17e2492-2688-4f53-9f69-037e3d564f79)) + (pin "21" (uuid 288d8b4f-fad7-4f03-a353-e9ba44f8756e)) + (pin "22" (uuid 6c67ca5f-9d58-48c0-b298-b78ea65da6d5)) + (pin "23" (uuid 630a0709-0a84-4b1d-820a-e8d21a5bb15b)) + (pin "24" (uuid bac122c8-b2d3-4580-af43-c61203d285a6)) + (pin "25" (uuid ce37523c-f029-4d1f-9533-596376e2f13a)) + (pin "26" (uuid eefb38ec-59c3-42b5-b799-ae3e59462a86)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 71.12 90.17 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e4bbbb3-e54b-4b78-afe2-0c3f00c2a219) + (property "Reference" "U1" (id 0) (at 71.755 85.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 71.755 87.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 71.12 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 144f26b5-09e4-4b04-9718-b8d5600739e8)) + (pin "2" (uuid cbe9467d-d183-4980-b42d-f909d273305b)) + (pin "3" (uuid 91977596-6d22-49da-a299-b0ea58a8b934)) + (pin "4" (uuid b09fbc94-5e02-42e4-8d0c-5787b0b5a2a9)) + (pin "5" (uuid 5d111ec9-5e15-4237-99cf-c2a12bbc6ae2)) + (pin "6" (uuid dcbd2ebf-c692-42e2-8643-c9fd5bb2514f)) + (pin "7" (uuid 4bd06838-a284-43da-acdb-9480ad33a584)) + (pin "8" (uuid 7eaab3d8-41b3-4cca-9fe8-c1778e84d868)) + (pin "9" (uuid a1c6caa2-1f17-49d5-a9ae-28b851fb8673)) + (pin "10" (uuid 903b97aa-20e2-4f96-a061-607b39f1876d)) + (pin "11" (uuid d81726cc-c41e-4780-b2bd-88f7894e8d84)) + (pin "12" (uuid 16c54b73-a167-4416-ac9d-6f412ea4290e)) + (pin "13" (uuid 676e6699-ccc4-4915-bb6f-665c2524f330)) + (pin "14" (uuid aa1a43ba-73e7-4979-b03c-34f44d49e38c)) + (pin "15" (uuid 3e670aef-8d0b-49ac-ae6a-1d33352d28b9)) + (pin "16" (uuid aac458bd-df2d-4c51-9278-748be70792e0)) + (pin "17" (uuid a66499c5-f6ad-4700-83a3-7aa74dd95979)) + (pin "18" (uuid 08a794b3-56cb-42de-9402-feead84462f8)) + (pin "19" (uuid 5b3357be-ecac-4475-a78f-8f064afdb493)) + (pin "20" (uuid 23925d86-3f6b-402a-ad99-e1579742667f)) + (pin "21" (uuid 2ae46d8a-29fc-4587-85be-cdb112e61921)) + (pin "22" (uuid 30ec48a6-c406-4ba2-8026-eef82c21feb9)) + (pin "23" (uuid 5abb4f62-859a-4d0f-8a80-0d83ec83fbf0)) + (pin "24" (uuid 86c120e3-b23c-40a1-9ad5-3501e7bc0112)) + (pin "25" (uuid 734c2e4f-4f24-46d1-b3a9-d896e7235bd9)) + (pin "26" (uuid bef447d8-a245-4955-832f-2210c0a8e835)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 115.57 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a09094ea-f25f-4292-b56a-06143f0630fb) + (property "Reference" "U2" (id 0) (at 115.57 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 115.57 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2abf06b1-a709-4b98-9fb6-e2d5760f47ea)) + (pin "2" (uuid d9688c59-b488-48f9-853c-919dce64f470)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 234.95 83.82 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1209c52-3be6-40bb-81e9-c053538ca497) + (property "Reference" "U1" (id 0) (at 238.76 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 238.76 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 234.95 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 234.95 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8dd4ba59-9976-4e04-82ec-747e267ee957)) + (pin "2" (uuid 10e0c1d7-3642-47ae-b776-d6298d47f979)) + (pin "3" (uuid 247542e1-0720-48ae-9025-5eb75b0e7aab)) + (pin "4" (uuid 9b9c0c64-b149-4298-9087-6196e3d6007d)) + (pin "5" (uuid 37aeddb1-2939-4276-a405-3a3b154db29f)) + (pin "6" (uuid aa93fd07-b776-4fd0-92e9-a8b6f5a37dba)) + (pin "7" (uuid e723898f-4c87-4129-b24a-5e26a5197a9c)) + (pin "8" (uuid f4bdc3a8-7477-4cf6-b774-1e1bcae34f7b)) + (pin "9" (uuid 2970a9ff-f30a-4c36-b66f-ae3b4699fe51)) + (pin "10" (uuid 63a512f3-0053-4329-acf9-e118226380f3)) + (pin "11" (uuid 1ee1ccaa-725d-482c-9c15-844dfb22661c)) + (pin "12" (uuid 28ad8c02-4476-4ea0-999e-9e72b45292b4)) + (pin "13" (uuid 65c7eb0d-23aa-43f8-9e3c-eca0ceaf2b06)) + (pin "14" (uuid 15e27610-3e7a-4ed3-abf9-5e0d80073d48)) + (pin "15" (uuid f615d76a-814d-47fc-ae19-263ec8c89a16)) + (pin "16" (uuid 5cb21b73-d550-47e3-a97f-182c14dd9c58)) + (pin "17" (uuid 53146b96-f59b-4507-88de-3a34d49863a0)) + (pin "18" (uuid 3c50ad6c-a13d-448f-9d77-734c1cf7b1b1)) + (pin "19" (uuid 7f383e93-1f76-4797-a57d-15de95300f46)) + (pin "20" (uuid 88cc3657-1298-4b7a-8a05-bb15b9a2cb06)) + (pin "21" (uuid cb8f5371-b274-42a3-b5ac-50590c862296)) + (pin "22" (uuid 714e494f-3c14-4b49-a62f-98a9898a4e8a)) + (pin "23" (uuid fb91f5a1-fe80-42e6-a060-a9aff18f6bc8)) + (pin "24" (uuid f4ac3235-f4a9-4e46-853b-3abeb386ccf9)) + (pin "25" (uuid 646a2b95-898c-48c0-94ed-862e65daa6fc)) + (pin "26" (uuid 6240d078-9104-4a12-ae56-bda424964d27)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 199.39 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a6610afb-f308-4909-88d5-5e1462b7f550) + (property "Reference" "U24" (id 0) (at 198.755 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 198.755 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 199.39 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 199.39 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2ca5736f-ac96-4983-8010-dcd244d59f11)) + (pin "2" (uuid 85e67c38-eda9-4521-8bc9-3ec81efa8bd8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 71.12 135.89 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab84b9dc-f9f3-4cfa-a6ed-40b3a415629f) + (property "Reference" "U1" (id 0) (at 71.755 130.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 71.755 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 71.12 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 828bde23-4dbb-431b-a754-e84896272edd)) + (pin "2" (uuid eb392589-a7ad-4cea-b902-178838387ad1)) + (pin "3" (uuid 99f5fa1a-882a-44ab-b6ca-197dae025e7d)) + (pin "4" (uuid d2cb2f20-8e4f-445b-b344-8034493e8fb5)) + (pin "5" (uuid f84329d8-2e05-4e32-ae9c-b3d33f85f7fe)) + (pin "6" (uuid 3399c024-eced-4c33-a780-8ce476e5b710)) + (pin "7" (uuid 0b01eabe-30cb-46f7-871f-c3f16fee0446)) + (pin "8" (uuid 1f1aadb6-989b-4f60-98a7-95ae80b1d35a)) + (pin "9" (uuid 68d38a07-1c00-472c-a940-d9483b4f1f1a)) + (pin "10" (uuid bfdd9d16-8917-4dd8-b441-2634b5a9293d)) + (pin "11" (uuid 57968120-b684-43a2-b891-30838efa3d34)) + (pin "12" (uuid 002c3bb8-b4a9-45b6-b5a4-8bd753bc93e0)) + (pin "13" (uuid 76e0e9d0-4359-418d-b136-d0a1e17e22f6)) + (pin "14" (uuid c330ae89-6bbf-400a-89da-bc2a8734cc6e)) + (pin "15" (uuid 7987f52f-2099-4c0a-a1ba-d33ecebe02c0)) + (pin "16" (uuid e365020f-0af3-43ba-8ad3-8b1509764657)) + (pin "17" (uuid 779743ac-708f-4592-bc0d-95d97fe96408)) + (pin "18" (uuid 2ef02edb-0507-4114-8e19-dad3a9d6178c)) + (pin "19" (uuid d1e8c989-ed24-4da3-9a11-9dd3dbfe8947)) + (pin "20" (uuid 35235a5b-2b30-4c2d-bba9-c333b01350f4)) + (pin "21" (uuid 129e714b-de43-4f2f-97bc-f77098af9870)) + (pin "22" (uuid fb671649-dea9-4144-b077-23e0809d1a9a)) + (pin "23" (uuid a1858376-3047-4803-a440-fa80429c832c)) + (pin "24" (uuid c938bba3-7890-446b-918d-6692c0d340fd)) + (pin "25" (uuid 874410ca-3d39-46ff-885f-5773409cbd9c)) + (pin "26" (uuid 872a7f8d-0cca-499c-84dc-2f1ba94e3e12)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 71.12 78.74 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c26b4486-a6e1-404d-aba9-d30cd2d0d82b) + (property "Reference" "U1" (id 0) (at 71.755 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 71.755 76.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 71.12 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 71.12 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 703b5f42-39bf-4d9c-b52b-5985fff7bdf9)) + (pin "2" (uuid 79709931-2ec6-442c-afaf-917b7f9c74aa)) + (pin "3" (uuid c6a35417-1ad1-47c1-86d8-e29335f28a8b)) + (pin "4" (uuid 88f9f5cc-d22a-46c2-8486-db45778be249)) + (pin "5" (uuid a3681292-e17f-439a-a3f7-643822ac2e98)) + (pin "6" (uuid 2e408331-dae6-4a72-a1f9-ac59c742f0f2)) + (pin "7" (uuid 85522e10-4151-45ff-b635-56464b10f219)) + (pin "8" (uuid 9b65c959-0425-4ad6-bf99-ff8b05c8c3e7)) + (pin "9" (uuid 0693ee37-02d6-44c8-8b37-175207e8226c)) + (pin "10" (uuid 5852e072-0981-4d80-aaac-9cc806f7b96c)) + (pin "11" (uuid 31239c7e-dc7a-4331-aed1-f8e2926e43fe)) + (pin "12" (uuid ab852c52-1daf-4aac-8cd7-096a63487f44)) + (pin "13" (uuid d1ed9e5f-0fbf-4a0d-a12a-f51923501684)) + (pin "14" (uuid eb5a7f2e-8ffe-4819-a526-9e080bb3ae97)) + (pin "15" (uuid f682477f-930b-4888-898e-89202ad930ab)) + (pin "16" (uuid 313ffffd-c242-470f-aeb3-9e0e8a4eec0a)) + (pin "17" (uuid ac0910d7-c0b2-4f8c-827c-e8f0fedc5c8e)) + (pin "18" (uuid 91587ad5-6989-4161-8d9c-6cfcc41da058)) + (pin "19" (uuid 74a7e723-deff-4c1b-82fd-f24ea0ac23be)) + (pin "20" (uuid 16df98e6-9fd7-4ab1-b6dd-3333f2861a30)) + (pin "21" (uuid 5c192551-9237-4f25-9352-a9db091877e5)) + (pin "22" (uuid a247b176-e2f8-4d4d-94cd-6caf68785579)) + (pin "23" (uuid d1036293-5009-4252-ab80-b306b456063b)) + (pin "24" (uuid 8ad9cefd-37a8-4f75-9e45-fee5e21e037d)) + (pin "25" (uuid 01446b93-bbbe-44a6-99d6-0fba1ec9cea9)) + (pin "26" (uuid ce46fc16-b0d5-4cd8-b3c2-81634038baab)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 143.51 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cb131fb9-d00e-44c0-b312-ef9dcac73c66) + (property "Reference" "U15" (id 0) (at 143.51 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 143.51 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 143.51 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f155fc7f-bb8a-4d18-a53d-6fc2065aa883)) + (pin "2" (uuid 95d353ae-0195-488c-90a4-30d2874ddd54)) + (pin "3" (uuid 8b51dd8a-474a-4611-802d-cf7837ed148d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 237.49 113.03 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf13eaa9-3ec1-436b-a40b-82fc8d6b68ac) + (property "Reference" "U1" (id 0) (at 241.3 112.395 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 241.3 114.935 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 237.49 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 237.49 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8468e11a-fa5e-4d2f-8991-dafc71a59744)) + (pin "2" (uuid aa6a09be-e66d-4498-872e-edfcb94359eb)) + (pin "3" (uuid c614d58b-086f-4e37-86c6-8cf2e1b31867)) + (pin "4" (uuid 3ed76b35-522a-441a-917a-76703e0b4333)) + (pin "5" (uuid a273e4db-7085-4f4e-ac48-6a0c4060cd25)) + (pin "6" (uuid 9fdbd1b6-f072-4764-8370-3f884a6117bb)) + (pin "7" (uuid daa11907-3e91-442b-a920-e2950cdf2a8f)) + (pin "8" (uuid 427d31a7-9c68-4e05-baa8-84711c7b064c)) + (pin "9" (uuid 94d1e4c0-4a51-4812-b1af-74317c29a294)) + (pin "10" (uuid c6275e14-8d74-44c8-a4ba-eeec627abf12)) + (pin "11" (uuid ae4022a1-1a6d-4763-bc83-20c99bbe97cd)) + (pin "12" (uuid 73a34552-f142-4e93-be64-71323a1aa580)) + (pin "13" (uuid 1a585319-6b41-4896-b683-2e4889db1ffd)) + (pin "14" (uuid ebdb9f07-aba6-4d02-8ed5-250161929910)) + (pin "15" (uuid 36212445-7b80-4f48-a3c0-255f0efc8756)) + (pin "16" (uuid b100d464-8a5e-4911-8a81-3f2c5ff6eabe)) + (pin "17" (uuid 2ca412f3-d8ff-4ab8-8366-c6a00384d6b2)) + (pin "18" (uuid 498e26de-8377-408b-bbbd-5f09473cadf2)) + (pin "19" (uuid 5ee6b095-d711-43d9-9e1e-6b0478b9cf7b)) + (pin "20" (uuid f352c09c-470f-43de-a991-b1f5687cfe14)) + (pin "21" (uuid 90df12e4-1b6b-4cd3-9acf-971f2909868f)) + (pin "22" (uuid 817e4509-bba4-46fc-8f9d-ac1e9cd44daa)) + (pin "23" (uuid 5e6611d4-f8a2-4fc9-a2c4-09504bb6fd8b)) + (pin "24" (uuid 6ffc93fd-7489-4576-95ea-09ab221f4c58)) + (pin "25" (uuid 4b4a9bd3-870d-4c6c-b431-cad9dec0b025)) + (pin "26" (uuid 4707894c-f71a-4dec-bc6d-a0d224604fbf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 143.51 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d4375dd2-cc6d-44e0-9dd9-dc63d02c1de9) + (property "Reference" "U13" (id 0) (at 143.51 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 143.51 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 143.51 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 143.51 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b79218a0-a6a4-43de-b2c3-e33736837341)) + (pin "2" (uuid 9975eff4-5c4f-4471-965c-d7c1d792e637)) + (pin "3" (uuid 3892b92d-d5f4-4c0b-a550-47c8cc7ed13b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 115.57 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e90baf0f-f6ca-436c-8fec-5202cae5c8f3) + (property "Reference" "U3" (id 0) (at 115.57 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 115.57 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 25483171-07a0-4722-9a37-1d1373d67f5f)) + (pin "2" (uuid 53c95f6e-2d27-4d1c-9f93-2f648eb8280a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 115.57 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid efc1d48d-f0c5-4fde-9c6f-ea6df92cd2a3) + (property "Reference" "U7" (id 0) (at 115.57 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 115.57 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a930544e-a5f4-46b2-b025-39dade93f93a)) + (pin "2" (uuid a5b7491c-cf59-49d4-bcd1-726ff13b92ef)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 172.72 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f378b46e-be8c-4db7-a25b-5301a616bea1) + (property "Reference" "U20" (id 0) (at 172.72 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 172.72 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 172.72 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 07dc60e0-a7a5-40c6-87c3-d4d61a978671)) + (pin "2" (uuid 2e06cd65-77fe-4c31-a705-e10fefdebfa6)) + (pin "3" (uuid a65af87c-71b3-4911-98e0-7ca2e41e90da)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/4da7711c-4e5d-4be5-813d-d960bb726c6b" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/64ab113e-c5fb-4a17-9747-c4de919e4ed6" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/c26b4486-a6e1-404d-aba9-d30cd2d0d82b" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/9e4bbbb3-e54b-4b78-afe2-0c3f00c2a219" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/78555c19-56ce-434d-aea8-52f9e20b0d7e" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/93c18dc7-e8c8-4ce7-b307-d0dbc9ee41c6" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/ab84b9dc-f9f3-4cfa-a6ed-40b3a415629f" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/77732049-1469-4f78-bbb8-9294ec8a5330" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/393c700e-26a6-403b-8568-7432885cd76f" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/a1209c52-3be6-40bb-81e9-c053538ca497" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/cf13eaa9-3ec1-436b-a40b-82fc8d6b68ac" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/8334f7f2-5bc6-48dc-a77d-e56cff1f2d30" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/a09094ea-f25f-4292-b56a-06143f0630fb" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e90baf0f-f6ca-436c-8fec-5202cae5c8f3" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/707f3687-a790-475c-b0db-7f5832320ded" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/6073b8bc-c624-4c40-9e0c-f58df7049a27" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2dbd8699-6036-420c-9df0-c5be2b509e36" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/efc1d48d-f0c5-4fde-9c6f-ea6df92cd2a3" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/37086d13-ab61-4d02-8284-3a688ea00932" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/411dfdd9-ac5f-4df1-adf0-6bf8a9ec05e5" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/06e0dae8-8c27-46a1-b6fa-6cdfa565cdca" + (reference "U10") (unit 1) (value "d_and") (footprint "") + ) + (path "/74096fb2-206b-4a35-8c7b-0684ac909e9f" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/83d1481d-4737-4f0f-95a7-e1a653cfe48f" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/d4375dd2-cc6d-44e0-9dd9-dc63d02c1de9" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + (path "/00f31958-6779-4c74-9469-9fcc9cf7aad1" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/cb131fb9-d00e-44c0-b312-ef9dcac73c66" + (reference "U15") (unit 1) (value "d_and") (footprint "") + ) + (path "/90b9626a-2e28-45ad-a3fc-3e51acefb460" + (reference "U16") (unit 1) (value "d_and") (footprint "") + ) + (path "/28eb2181-5c50-4ead-ab29-18dbe01f4b7b" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/5413f89e-e644-47b2-adee-0a16efe2b60f" + (reference "U18") (unit 1) (value "d_or") (footprint "") + ) + (path "/7261a4c0-32fe-4e61-9a93-fd2efe1999e2" + (reference "U19") (unit 1) (value "d_or") (footprint "") + ) + (path "/f378b46e-be8c-4db7-a25b-5301a616bea1" + (reference "U20") (unit 1) (value "d_or") (footprint "") + ) + (path "/648552d8-7bfe-442b-91c6-e37379888490" + (reference "U21") (unit 1) (value "d_or") (footprint "") + ) + (path "/37e881a2-a413-4b11-b1ac-9eecf710c35d" + (reference "U22") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/090a957a-0403-4096-9087-a90207684a4b" + (reference "U23") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/a6610afb-f308-4909-88d5-5e1462b7f550" + (reference "U24") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/4b25c50d-94fb-4678-aa50-d6d51d135786" + (reference "U25") (unit 1) (value "dac_bridge_1") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN7486/Test_SN7486.cir b/library/SubcircuitLibrary/SN7486/Test_SN7486.cir new file mode 100644 index 000000000..9aa7c644b --- /dev/null +++ b/library/SubcircuitLibrary/SN7486/Test_SN7486.cir @@ -0,0 +1,15 @@ +.title KiCad schematic +v3 A2 GND pulse +v2 B1 GND pulse +v1 A1 GND pulse +v4 B2 GND pulse +v5 A3 GND pulse +v6 B3 GND pulse +v8 B4 GND pulse +v7 A4 GND pulse +U3 Net-_U3-Pad1_ Y2 dac_bridge_1 +U2 Net-_U2-Pad1_ Y1 dac_bridge_1 +X1 A1 B1 A2 B2 A3 B3 A4 B4 Net-_U2-Pad1_ Net-_U3-Pad1_ Net-_U4-Pad1_ Net-_U1-Pad1_ SN7486 +U4 Net-_U4-Pad1_ Y3 dac_bridge_1 +U1 Net-_U1-Pad1_ Y4 dac_bridge_1 +.end diff --git a/library/SubcircuitLibrary/SN7486/Test_SN7486.cir.out b/library/SubcircuitLibrary/SN7486/Test_SN7486.cir.out new file mode 100644 index 000000000..993cb0953 --- /dev/null +++ b/library/SubcircuitLibrary/SN7486/Test_SN7486.cir.out @@ -0,0 +1,147 @@ +.title kicad schematic + +v6 b3 gnd pulse(0 5 0 1n 1n 20m 40m) +v8 b4 gnd pulse(0 5 0 1n 1n 10m 20m) +v7 a4 gnd pulse(0 5 0 1n 1n 10m 20m) +* u6 b3 net-_u14-pad1_ adc_bridge_1 +* u7 a4 net-_u15-pad1_ adc_bridge_1 +* u8 b4 net-_u16-pad1_ adc_bridge_1 +* u15 net-_u15-pad1_ net-_u15-pad2_ d_inverter +* u16 net-_u16-pad1_ net-_u16-pad2_ d_inverter +* u14 net-_u14-pad1_ net-_u14-pad2_ d_inverter +* u22 net-_u11-pad1_ net-_u12-pad2_ net-_u22-pad3_ d_and +* u21 net-_u11-pad2_ net-_u12-pad1_ net-_u21-pad3_ d_and +* u23 net-_u13-pad2_ net-_u14-pad1_ net-_u23-pad3_ d_and +* u12 net-_u12-pad1_ net-_u12-pad2_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +* u13 net-_u13-pad1_ net-_u13-pad2_ d_inverter +* u27 net-_u21-pad3_ net-_u22-pad3_ net-_u27-pad3_ d_or +* u30 net-_u26-pad3_ y1 dac_bridge_1 +* u31 net-_u27-pad3_ y2 dac_bridge_1 +* u26 net-_u19-pad3_ net-_u20-pad3_ net-_u26-pad3_ d_or +* u24 net-_u13-pad1_ net-_u14-pad2_ net-_u24-pad3_ d_and +* u32 net-_u28-pad3_ y3 dac_bridge_1 +* u28 net-_u23-pad3_ net-_u24-pad3_ net-_u28-pad3_ d_or +* u25 net-_u17-pad3_ net-_u18-pad3_ net-_u25-pad3_ d_or +* u29 net-_u25-pad3_ y4 dac_bridge_1 +* u20 net-_u1-pad2_ net-_u10-pad2_ net-_u20-pad3_ d_and +* u19 net-_u19-pad1_ net-_u10-pad1_ net-_u19-pad3_ d_and +* u17 net-_u15-pad2_ net-_u16-pad1_ net-_u17-pad3_ d_and +* u18 net-_u15-pad1_ net-_u16-pad2_ net-_u18-pad3_ d_and +* u5 a3 net-_u13-pad1_ adc_bridge_1 +* u4 b2 net-_u12-pad1_ adc_bridge_1 +* u3 a2 net-_u11-pad1_ adc_bridge_1 +v1 a1 gnd pulse(0 5 0 1n 1n 10m 20m) +v2 b1 gnd pulse(0 5 0 1n 1n 20m 40m) +v4 b2 gnd pulse(0 5 0 1n 1n 20m 40m) +v3 a2 gnd pulse(0 5 0 1n 1n 10m 20m) +v5 a3 gnd pulse(0 5 0 1n 1n 10m 20m) +* u2 b1 net-_u10-pad1_ adc_bridge_1 +* u1 a1 net-_u1-pad2_ adc_bridge_1 +* u9 net-_u1-pad2_ net-_u19-pad1_ d_inverter +a1 [b3 ] [net-_u14-pad1_ ] u6 +a2 [a4 ] [net-_u15-pad1_ ] u7 +a3 [b4 ] [net-_u16-pad1_ ] u8 +a4 net-_u15-pad1_ net-_u15-pad2_ u15 +a5 net-_u16-pad1_ net-_u16-pad2_ u16 +a6 net-_u14-pad1_ net-_u14-pad2_ u14 +a7 [net-_u11-pad1_ net-_u12-pad2_ ] net-_u22-pad3_ u22 +a8 [net-_u11-pad2_ net-_u12-pad1_ ] net-_u21-pad3_ u21 +a9 [net-_u13-pad2_ net-_u14-pad1_ ] net-_u23-pad3_ u23 +a10 net-_u12-pad1_ net-_u12-pad2_ u12 +a11 net-_u10-pad1_ net-_u10-pad2_ u10 +a12 net-_u11-pad1_ net-_u11-pad2_ u11 +a13 net-_u13-pad1_ net-_u13-pad2_ u13 +a14 [net-_u21-pad3_ net-_u22-pad3_ ] net-_u27-pad3_ u27 +a15 [net-_u26-pad3_ ] [y1 ] u30 +a16 [net-_u27-pad3_ ] [y2 ] u31 +a17 [net-_u19-pad3_ net-_u20-pad3_ ] net-_u26-pad3_ u26 +a18 [net-_u13-pad1_ net-_u14-pad2_ ] net-_u24-pad3_ u24 +a19 [net-_u28-pad3_ ] [y3 ] u32 +a20 [net-_u23-pad3_ net-_u24-pad3_ ] net-_u28-pad3_ u28 +a21 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u25-pad3_ u25 +a22 [net-_u25-pad3_ ] [y4 ] u29 +a23 [net-_u1-pad2_ net-_u10-pad2_ ] net-_u20-pad3_ u20 +a24 [net-_u19-pad1_ net-_u10-pad1_ ] net-_u19-pad3_ u19 +a25 [net-_u15-pad2_ net-_u16-pad1_ ] net-_u17-pad3_ u17 +a26 [net-_u15-pad1_ net-_u16-pad2_ ] net-_u18-pad3_ u18 +a27 [a3 ] [net-_u13-pad1_ ] u5 +a28 [b2 ] [net-_u12-pad1_ ] u4 +a29 [a2 ] [net-_u11-pad1_ ] u3 +a30 [b1 ] [net-_u10-pad1_ ] u2 +a31 [a1 ] [net-_u1-pad2_ ] u1 +a32 net-_u1-pad2_ net-_u19-pad1_ u9 +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u6 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u7 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u27 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u30 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u31 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u26 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u32 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u28 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u25 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u29 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-03 80e-03 0e-03 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN7486/Test_SN7486.kicad_sch b/library/SubcircuitLibrary/SN7486/Test_SN7486.kicad_sch new file mode 100644 index 000000000..482552dac --- /dev/null +++ b/library/SubcircuitLibrary/SN7486/Test_SN7486.kicad_sch @@ -0,0 +1,870 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 36f704bd-3d19-4d2f-a6de-2b012bc8231c) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN7486" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN7486" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN7486_0_1" + (rectangle (start -6.35 -2.54) (end 6.35 -25.4) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN7486_1_1" + (pin input line (at -8.89 -5.08 0) (length 2.54) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 -15.24 180) (length 2.54) + (name "Y2" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 -10.16 180) (length 2.54) + (name "Y3" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 -5.08 180) (length 2.54) + (name "Y4" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -7.62 0) (length 2.54) + (name "B1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -10.16 0) (length 2.54) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -12.7 0) (length 2.54) + (name "B2" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -15.24 0) (length 2.54) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -17.78 0) (length 2.54) + (name "B3" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -20.32 0) (length 2.54) + (name "A4" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -22.86 0) (length 2.54) + (name "B4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 -20.32 180) (length 2.54) + (name "Y1" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (wire (pts (xy 80.01 67.31) (xy 80.01 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03297b41-0531-4bcd-84e3-f0157a0b60e2) + ) + (wire (pts (xy 135.89 72.39) (xy 86.36 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a79e045-44bd-41c1-a5f1-823c2d0d9ae2) + ) + (wire (pts (xy 170.18 153.67) (xy 179.07 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16d1ac98-0a05-4827-9850-dd10ec92a444) + ) + (wire (pts (xy 97.79 80.01) (xy 97.79 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ac15816-9df3-469d-9357-263a5edc9d87) + ) + (wire (pts (xy 173.99 124.46) (xy 180.34 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28160ef8-2310-417f-888d-fce1ac41ed3b) + ) + (wire (pts (xy 135.89 64.77) (xy 77.47 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e695b19-1a61-4c83-a571-e11b13b39316) + ) + (wire (pts (xy 77.47 114.3) (xy 86.36 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f7e5a33-0d0f-4b98-903b-20ea8578f10a) + ) + (wire (pts (xy 90.17 125.73) (xy 77.47 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36d7611d-c5c1-4cc8-b45f-34aaecabc844) + ) + (wire (pts (xy 153.67 77.47) (xy 180.34 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38d6936b-aaef-4e4a-94f3-5cc4c52b43d9) + ) + (wire (pts (xy 153.67 67.31) (xy 173.99 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 584c0e30-df41-4ff4-b80a-2f4fc8ece030) + ) + (wire (pts (xy 93.98 77.47) (xy 93.98 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d51567e-fc7f-43c6-b144-7927876d63fa) + ) + (wire (pts (xy 135.89 62.23) (xy 135.89 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62acdffb-c62b-4ab3-9895-9060b3158764) + ) + (wire (pts (xy 80.01 85.09) (xy 77.47 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 692be0c1-6da6-42a0-b2fb-f0f1b91e5276) + ) + (wire (pts (xy 93.98 142.24) (xy 77.47 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6aa0d64b-d8f8-4aa2-860b-72844f443042) + ) + (wire (pts (xy 97.79 153.67) (xy 77.47 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e751794-bff0-458d-9128-c36df16a4327) + ) + (wire (pts (xy 170.18 62.23) (xy 170.18 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81964510-f392-4166-9bbd-900bd62c8437) + ) + (wire (pts (xy 177.8 72.39) (xy 177.8 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9098d17e-4cf0-42a7-b754-25c45da142fa) + ) + (wire (pts (xy 135.89 69.85) (xy 82.55 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 931b9146-2a8a-48d1-8c0a-e76136374881) + ) + (wire (pts (xy 135.89 80.01) (xy 97.79 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97f242f9-273a-4495-a986-27e3fadb6e40) + ) + (wire (pts (xy 177.8 95.25) (xy 180.34 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b1e8ab5-5fe3-4247-977a-831c503c191c) + ) + (wire (pts (xy 82.55 96.52) (xy 77.47 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa1ac45e-c680-41c4-b5db-b59881b26021) + ) + (wire (pts (xy 153.67 62.23) (xy 170.18 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aae15269-9711-46f8-9d08-487a18dfaf6a) + ) + (wire (pts (xy 90.17 74.93) (xy 90.17 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae5e2bb8-d3b2-46a7-a4eb-557cfe2b3d06) + ) + (wire (pts (xy 173.99 67.31) (xy 173.99 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1d9b4bb-784a-4404-9823-2e719a0ecba2) + ) + (wire (pts (xy 135.89 52.07) (xy 77.47 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b389b849-52d3-4ed2-a337-328b7ea926a6) + ) + (wire (pts (xy 82.55 69.85) (xy 82.55 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2ca74b0-ef20-40d7-9851-c9c05d68c8f0) + ) + (wire (pts (xy 77.47 64.77) (xy 77.47 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c82d82df-ad56-43c3-9799-d952b187a799) + ) + (wire (pts (xy 135.89 74.93) (xy 90.17 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd694e6d-9aa1-4ab3-b0d5-53aa13553a0e) + ) + (wire (pts (xy 153.67 72.39) (xy 177.8 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d014268e-a6bf-4b9e-9523-a111a4d66109) + ) + (wire (pts (xy 135.89 77.47) (xy 93.98 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d059ae51-e57c-498b-a96d-3e5ce1a13dd0) + ) + (wire (pts (xy 86.36 72.39) (xy 86.36 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d07c2abf-9812-451f-b912-bcbc03ddda4f) + ) + (wire (pts (xy 180.34 77.47) (xy 180.34 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec444e50-b98b-4a95-9b14-f067d2e7f325) + ) + (wire (pts (xy 135.89 67.31) (xy 80.01 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eceb817d-e4e1-4497-82fa-26c9ddaa6bb0) + ) + + (global_label "B1" (shape input) (at 77.47 63.5 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0101c080-e042-40df-addc-54f53a6859d6) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.3906 58.6074 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y1" (shape output) (at 209.55 62.23 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 08193895-a4c5-47d3-832e-13cc913317a6) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 214.2612 62.1506 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B4" (shape input) (at 77.47 153.67 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2cda4942-957d-4c0c-85b3-ad631997a0a5) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.3906 148.7774 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 77.47 52.07 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2f6b0174-a779-4d15-b074-fb63615a9efc) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.3906 47.3588 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y4" (shape output) (at 208.28 153.67 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4026973a-0bd9-4e8d-9041-3d996df53be8) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 212.9912 153.5906 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape input) (at 77.47 142.24 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 46da6643-03fc-4396-9a89-ea1ac0e0ed86) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.3906 137.5288 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A3" (shape input) (at 77.47 114.3 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 5f6406a8-61ee-4aa5-919f-d6a9c062eebe) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.3906 109.5888 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B3" (shape input) (at 77.47 125.73 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 84e125f3-6d8c-42da-9e3b-9e6eadb64805) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.3906 120.8374 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B2" (shape input) (at 77.47 96.52 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 89eac4ae-0eb7-4129-953f-679f0248fd3c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.3906 91.6274 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y3" (shape output) (at 209.55 124.46 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid a60161dc-3dd3-4720-bf73-684e00505304) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 214.2612 124.3806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y2" (shape output) (at 209.55 95.25 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b197c96f-79c8-4953-be24-c4093320228e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 214.2612 95.1706 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 77.47 85.09 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d7e165d3-f519-456c-aaf6-cd7f173e0c03) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.3906 80.3788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 66.04 114.3 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 11e112c9-4fe6-4b2f-a23d-7790ff5ed2ce) + (property "Reference" "v5" (id 0) (at 66.04 101.6 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 66.04 105.41 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 66.04 109.22 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb36cb86-6fa2-424c-ba7a-1cc2e3c231f1)) + (pin "2" (uuid 5225a6b4-b6c4-4cd1-a894-7a8e6dc62e06)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 54.61 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3bdd6332-a983-4deb-883b-3805541b33dd) + (property "Reference" "#PWR0105" (id 0) (at 54.61 120.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 54.61 119.38 0)) + (property "Footprint" "" (id 2) (at 54.61 114.3 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 114.3 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 963fda72-f8fb-41a0-bcb0-130f6f54e1b5)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 195.58 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4835a4c6-52a3-489a-8d40-f07e1cc275e1) + (property "Reference" "U3" (id 0) (at 194.945 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 194.945 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 195.58 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 195.58 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be957127-1996-4bbc-9222-80c2e3cbe70e)) + (pin "2" (uuid 3b20b027-4ea7-47b7-9cca-ba142981ec02)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 195.58 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 56e51e6b-4c11-47ca-8658-c6ffa6990f38) + (property "Reference" "U4" (id 0) (at 194.945 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 194.945 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 195.58 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 195.58 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dce255c4-19b8-4207-9014-41ea4c98f75d)) + (pin "2" (uuid e5197cb4-9724-4741-ae74-41e9b6dd8d99)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 66.04 125.73 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ad8a455-31f3-4daf-953f-8ec85714cf28) + (property "Reference" "v6" (id 0) (at 66.04 113.03 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 66.04 116.84 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 66.04 120.65 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 519f0523-1278-4542-946a-34301ca6d6cb)) + (pin "2" (uuid 21ecd709-794e-4a78-8a79-71b126754f46)) + ) + + (symbol (lib_id "eSim_Subckt:SN7486") (at 144.78 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7653bd3c-9548-416e-8fdc-ee02aacc1e65) + (property "Reference" "X1" (id 0) (at 144.78 54.61 0)) + (property "Value" "SN7486" (id 1) (at 144.78 57.15 0)) + (property "Footprint" "" (id 2) (at 144.78 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 144.78 57.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3e79259c-6baa-4829-83af-e6875d598386)) + (pin "10" (uuid 8cf338c1-ea0c-4142-9bf7-c23ffc0dbeca)) + (pin "11" (uuid b0bfbb37-6193-4459-b761-8cdee41cc5c4)) + (pin "12" (uuid 4fb17e09-36bb-42c6-8a5e-03a85d4d8f9c)) + (pin "2" (uuid 24bdd1a2-74ae-41b1-94d2-c950474bed4c)) + (pin "3" (uuid 704f1261-ef6e-4e24-8209-bbfa13cad413)) + (pin "4" (uuid 7077c6cb-6e4b-49c9-b979-ecdc5086095b)) + (pin "5" (uuid e98318df-f268-4457-a882-f475a5a30d1f)) + (pin "6" (uuid d6d96b74-b88c-4a0f-8c7d-d988fd8e69bf)) + (pin "7" (uuid c4abeea8-dda7-43cf-85f4-957aa48e8122)) + (pin "8" (uuid 3077dff8-0181-4056-ad4d-fe4748e0c684)) + (pin "9" (uuid f4cfc326-e261-4193-9407-8d22c928e6f9)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 66.04 52.07 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 77bcc040-64f0-4106-a303-d7c2e09f37df) + (property "Reference" "v1" (id 0) (at 66.04 39.37 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 66.04 43.18 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 66.04 46.99 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6ce75003-02a6-4ca7-b27c-25b0a8565f38)) + (pin "2" (uuid 51f12a6e-d53e-475a-ad07-fba515041410)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 66.04 142.24 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 802bc193-d83c-41a7-b9d6-be0d9360e8a6) + (property "Reference" "v7" (id 0) (at 66.04 129.54 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 66.04 133.35 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 66.04 137.16 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6eeb9d6b-f4ec-4302-a40c-bc4f8c67090d)) + (pin "2" (uuid dd87988c-00e2-4f32-a76b-646ee6704437)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 66.04 85.09 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 88fa39fb-4e1e-4834-9ddc-6d0ad2dbbc93) + (property "Reference" "v3" (id 0) (at 66.04 72.39 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 66.04 76.2 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 66.04 80.01 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e072c17-588a-4d1f-9e03-dd445861f001)) + (pin "2" (uuid 65412245-858b-4abf-a213-5d52153dccf2)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 66.04 153.67 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 921e165c-2507-41c3-ae19-da2a1d737df3) + (property "Reference" "v8" (id 0) (at 66.04 140.97 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 66.04 144.78 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 66.04 148.59 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e37bc0b0-c3f5-4643-98d4-8862f0fcad1f)) + (pin "2" (uuid f45db75a-75a3-41a5-a2b8-a3221fd4ce88)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 66.04 63.5 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a024f70-a40d-4008-a604-278ac418084b) + (property "Reference" "v2" (id 0) (at 66.04 50.8 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 66.04 54.61 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 66.04 58.42 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6d076047-1894-4de0-80aa-a828fe0f0201)) + (pin "2" (uuid 762ef720-08d8-4eb4-964c-ac0be366e109)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 54.61 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a8e6d76-c405-4ba6-8654-11603161c104) + (property "Reference" "#PWR0102" (id 0) (at 54.61 69.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 54.61 68.58 0)) + (property "Footprint" "" (id 2) (at 54.61 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 460a6b15-55a6-4f16-993c-15dd6cb3123a)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 54.61 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9fbe216d-a0f5-408b-9938-770389fc7b7c) + (property "Reference" "#PWR0101" (id 0) (at 54.61 91.44 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 54.61 90.17 0)) + (property "Footprint" "" (id 2) (at 54.61 85.09 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 85.09 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ebc42840-3210-48f8-a420-7525860b07d3)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 54.61 52.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a168dc43-7f05-4f70-aa93-7fb7269fc092) + (property "Reference" "#PWR0103" (id 0) (at 54.61 58.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 54.61 57.15 0)) + (property "Footprint" "" (id 2) (at 54.61 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 217bc676-f1c5-4bd6-a154-6d1215997e8c)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 54.61 153.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a3f7a45e-975f-414a-b503-957626433938) + (property "Reference" "#PWR0108" (id 0) (at 54.61 160.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 54.61 158.75 0)) + (property "Footprint" "" (id 2) (at 54.61 153.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 153.67 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 667a44bc-2cea-4efb-803d-47f239577362)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 194.31 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b742b03e-bac1-40ab-8701-35027ef3d6d9) + (property "Reference" "U1" (id 0) (at 193.675 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 193.675 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 194.31 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 194.31 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f734cbd1-0607-4ea9-ba52-983c833cdba8)) + (pin "2" (uuid 7bfeb1d2-f514-4c61-9ce4-0c47764421f4)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 195.58 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c883154c-8093-42f7-898a-1e76f76532d0) + (property "Reference" "U2" (id 0) (at 194.945 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 194.945 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 195.58 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 195.58 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e3e4ab25-8a9e-439c-ad40-12bf15936edd)) + (pin "2" (uuid a258b969-2b8a-40ba-abb8-d84448640d1b)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 54.61 142.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid df9100fb-f3d3-42f8-bfa8-7e13291da7b0) + (property "Reference" "#PWR0107" (id 0) (at 54.61 148.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 54.61 147.32 0)) + (property "Footprint" "" (id 2) (at 54.61 142.24 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 142.24 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8a7654ce-c261-40d0-b70d-fc004c288ad0)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 54.61 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e427c48a-6591-47ae-ab79-fc89629c56ae) + (property "Reference" "#PWR0106" (id 0) (at 54.61 102.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 54.61 101.6 0)) + (property "Footprint" "" (id 2) (at 54.61 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 96.52 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4ed1a0f5-9f51-4f15-a581-eb1d3a2d06e4)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 54.61 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f06b4648-8449-4dc0-993b-bdf058aec02b) + (property "Reference" "#PWR0104" (id 0) (at 54.61 132.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 54.61 130.81 0)) + (property "Footprint" "" (id 2) (at 54.61 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 125.73 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ca16e496-ad5d-49c5-8077-9e606b1c4693)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 66.04 96.52 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f4889d5d-a190-4601-bf77-4433b08f54f4) + (property "Reference" "v4" (id 0) (at 66.04 83.82 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 66.04 87.63 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 66.04 91.44 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 66.04 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 96c06ed2-dff6-468c-a866-3bb99681f58a)) + (pin "2" (uuid 521ab929-923b-4cec-84a0-c2e9f5fd8214)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/9fbe216d-a0f5-408b-9938-770389fc7b7c" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/9a8e6d76-c405-4ba6-8654-11603161c104" + (reference "#PWR0102") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/a168dc43-7f05-4f70-aa93-7fb7269fc092" + (reference "#PWR0103") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/f06b4648-8449-4dc0-993b-bdf058aec02b" + (reference "#PWR0104") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/3bdd6332-a983-4deb-883b-3805541b33dd" + (reference "#PWR0105") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/e427c48a-6591-47ae-ab79-fc89629c56ae" + (reference "#PWR0106") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/df9100fb-f3d3-42f8-bfa8-7e13291da7b0" + (reference "#PWR0107") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/a3f7a45e-975f-414a-b503-957626433938" + (reference "#PWR0108") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/b742b03e-bac1-40ab-8701-35027ef3d6d9" + (reference "U1") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/c883154c-8093-42f7-898a-1e76f76532d0" + (reference "U2") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/4835a4c6-52a3-489a-8d40-f07e1cc275e1" + (reference "U3") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/56e51e6b-4c11-47ca-8658-c6ffa6990f38" + (reference "U4") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/7653bd3c-9548-416e-8fdc-ee02aacc1e65" + (reference "X1") (unit 1) (value "SN7486") (footprint "") + ) + (path "/77bcc040-64f0-4106-a303-d7c2e09f37df" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/9a024f70-a40d-4008-a604-278ac418084b" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/88fa39fb-4e1e-4834-9ddc-6d0ad2dbbc93" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/f4889d5d-a190-4601-bf77-4433b08f54f4" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/11e112c9-4fe6-4b2f-a23d-7790ff5ed2ce" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/5ad8a455-31f3-4daf-953f-8ec85714cf28" + (reference "v6") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/802bc193-d83c-41a7-b9d6-be0d9360e8a6" + (reference "v7") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/921e165c-2507-41c3-ae19-da2a1d737df3" + (reference "v8") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN7486/Test_SN7486.proj b/library/SubcircuitLibrary/SN7486/Test_SN7486.proj new file mode 100644 index 000000000..3a36fbdb8 --- /dev/null +++ b/library/SubcircuitLibrary/SN7486/Test_SN7486.proj @@ -0,0 +1 @@ +schematicFile Test_SN7486.kicad_sch diff --git a/library/SubcircuitLibrary/SN7486/Test_SN7486_Previous_Values.xml b/library/SubcircuitLibrary/SN7486/Test_SN7486_Previous_Values.xml new file mode 100644 index 000000000..0747317a8 --- /dev/null +++ b/library/SubcircuitLibrary/SN7486/Test_SN7486_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.180msmsmspulse0501n1n20m40mpulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n20m40mpulse0501n1n20m40mpulse0501n1n10m20mpulse0501n1n10m20madc_bridgeadc_bridgeadc_bridged_inverterd_inverterd_inverterd_andd_andd_andd_inverterd_inverterd_inverterd_inverterd_ordac_bridgedac_bridged_ord_anddac_bridged_ord_ordac_bridged_andd_andd_andd_andadc_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridged_inverter \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7486/analysis b/library/SubcircuitLibrary/SN7486/analysis new file mode 100644 index 000000000..5857607c7 --- /dev/null +++ b/library/SubcircuitLibrary/SN7486/analysis @@ -0,0 +1 @@ +.tran 0.1e-03 80e-03 0e-03 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN7497_sub/SN7497_sub.cir b/library/SubcircuitLibrary/SN7497_sub/SN7497_sub.cir new file mode 100644 index 000000000..0be4f5a99 --- /dev/null +++ b/library/SubcircuitLibrary/SN7497_sub/SN7497_sub.cir @@ -0,0 +1,26 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ PORT +U2 Net-_U11-Pad2_ Net-_U1-Pad1_ unconnected-_U2-Pad3_ unconnected-_U2-Pad4_ Net-_U11-Pad1_ unconnected-_U2-Pad6_ d_dff +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ d_inverter +U14 Net-_U13-Pad1_ Net-_U1-Pad6_ Net-_U14-Pad3_ d_and +U18 Net-_U11-Pad1_ Net-_U1-Pad7_ Net-_U18-Pad3_ d_and +U20 Net-_U18-Pad3_ Net-_U14-Pad3_ Net-_U20-Pad3_ d_or +U13 Net-_U13-Pad1_ Net-_U13-Pad2_ d_inverter +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ d_inverter +U4 Net-_U12-Pad2_ Net-_U13-Pad1_ unconnected-_U4-Pad3_ unconnected-_U4-Pad4_ Net-_U12-Pad1_ unconnected-_U4-Pad6_ d_dff +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ d_inverter +U3 Net-_U13-Pad2_ Net-_U11-Pad1_ unconnected-_U3-Pad3_ unconnected-_U3-Pad4_ Net-_U13-Pad1_ unconnected-_U3-Pad6_ d_dff +U6 Net-_U6-Pad1_ Net-_U10-Pad1_ unconnected-_U6-Pad3_ unconnected-_U6-Pad4_ Net-_U17-Pad1_ unconnected-_U6-Pad6_ d_dff +U5 Net-_U10-Pad2_ Net-_U12-Pad1_ unconnected-_U5-Pad3_ unconnected-_U5-Pad4_ Net-_U10-Pad1_ unconnected-_U5-Pad6_ d_dff +U8 Net-_U17-Pad1_ Net-_U6-Pad1_ d_inverter +U9 Net-_U16-Pad1_ Net-_U7-Pad1_ d_inverter +U17 Net-_U17-Pad1_ Net-_U1-Pad3_ Net-_U17-Pad3_ d_and +U16 Net-_U16-Pad1_ Net-_U1-Pad2_ Net-_U16-Pad3_ d_and +U7 Net-_U7-Pad1_ Net-_U17-Pad1_ unconnected-_U7-Pad3_ unconnected-_U7-Pad4_ Net-_U16-Pad1_ unconnected-_U7-Pad6_ d_dff +U22 Net-_U17-Pad3_ Net-_U16-Pad3_ Net-_U22-Pad3_ d_or +U19 Net-_U10-Pad1_ Net-_U1-Pad4_ Net-_U19-Pad3_ d_and +U15 Net-_U12-Pad1_ Net-_U1-Pad5_ Net-_U15-Pad3_ d_and +U21 Net-_U15-Pad3_ Net-_U19-Pad3_ Net-_U21-Pad3_ d_or +U23 Net-_U20-Pad3_ Net-_U21-Pad3_ Net-_U23-Pad3_ d_or +U24 Net-_U23-Pad3_ Net-_U22-Pad3_ Net-_U1-Pad8_ d_or +.end diff --git a/library/SubcircuitLibrary/SN7497_sub/SN7497_sub.kicad_sch b/library/SubcircuitLibrary/SN7497_sub/SN7497_sub.kicad_sch new file mode 100644 index 000000000..6d40585a0 --- /dev/null +++ b/library/SubcircuitLibrary/SN7497_sub/SN7497_sub.kicad_sch @@ -0,0 +1,1788 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid e1cbd417-e5ea-40ef-8bcc-8c868ddf4cf9) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 243.84 167.64) (diameter 0) (color 0 0 0 0) + (uuid 1465515c-5b5d-45e4-aeae-5c86b1d859fc) + ) + (junction (at 240.03 298.45) (diameter 0) (color 0 0 0 0) + (uuid 36354e2c-5f7a-432f-a53b-af3daa8818f9) + ) + (junction (at 245.11 127) (diameter 0) (color 0 0 0 0) + (uuid 71883e44-32db-48d8-a31f-8d87c41cdb15) + ) + (junction (at 242.57 208.28) (diameter 0) (color 0 0 0 0) + (uuid 8860a189-1087-432f-b304-ab74897c64a5) + ) + (junction (at 242.57 127) (diameter 0) (color 0 0 0 0) + (uuid 95172554-6499-4f30-8ca4-8e279a82567c) + ) + (junction (at 245.11 81.28) (diameter 0) (color 0 0 0 0) + (uuid b07c599d-d2da-4301-ae00-0acf9991cb81) + ) + (junction (at 245.11 167.64) (diameter 0) (color 0 0 0 0) + (uuid b7c1122d-d35d-4a72-bbd7-d0af160efa86) + ) + (junction (at 243.84 208.28) (diameter 0) (color 0 0 0 0) + (uuid d3dbb04b-bacb-4632-8c1e-43565c03f064) + ) + (junction (at 243.84 81.28) (diameter 0) (color 0 0 0 0) + (uuid ecfe3925-d773-4872-8d57-440add0d2d2e) + ) + (junction (at 242.57 252.73) (diameter 0) (color 0 0 0 0) + (uuid f3c1f34c-fdcd-4f02-a72f-f46b9edf64dc) + ) + (junction (at 241.3 252.73) (diameter 0) (color 0 0 0 0) + (uuid f74c4007-a24a-4512-8a95-fd0665ac110f) + ) + + (wire (pts (xy 210.82 157.48) (xy 210.82 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0016e5bf-03df-4e9f-9c63-eaac6572326f) + ) + (wire (pts (xy 242.57 236.22) (xy 242.57 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01e7513b-1818-4db0-aa12-a3694cd1a88b) + ) + (wire (pts (xy 304.8 175.26) (xy 304.8 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0535a12b-857d-4026-99f4-4e22c6f8e336) + ) + (wire (pts (xy 304.8 130.81) (xy 304.8 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06aaeb90-e19a-47a3-b0b2-2df622fc95c9) + ) + (wire (pts (xy 205.74 224.79) (xy 205.74 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bec6c65-3ffa-4d65-9f53-4255c26d0b41) + ) + (wire (pts (xy 242.57 255.27) (xy 242.57 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0da0849e-c611-4063-b175-e77e8b094111) + ) + (wire (pts (xy 210.82 113.03) (xy 210.82 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13b5993b-4dc1-4e86-83b7-987b804f0dc6) + ) + (wire (pts (xy 259.08 287.02) (xy 212.09 287.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16bd8dcd-61ba-4d86-8e44-144535155ce7) + ) + (wire (pts (xy 243.84 81.28) (xy 245.11 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a0625d7-c4ff-4cde-8329-e224344cd69c) + ) + (wire (pts (xy 209.55 73.66) (xy 209.55 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d51810f-5589-4af7-9091-754a30f1aaf5) + ) + (wire (pts (xy 361.95 105.41) (xy 361.95 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 220fedfc-7c21-41cb-a99c-c5a5bcd8c744) + ) + (wire (pts (xy 304.8 275.59) (xy 331.47 275.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 229e2123-8058-414a-9d35-c841a41d022a) + ) + (wire (pts (xy 242.57 127) (xy 245.11 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ac9c5fa-92c8-49a0-825c-9fd0a2e4f943) + ) + (wire (pts (xy 193.04 78.74) (xy 185.42 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ba2cd09-16f6-4522-a82b-f821ed92f8d6) + ) + (wire (pts (xy 283.21 255.27) (xy 242.57 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bf67f64-9c12-4f91-98a5-5320def96a29) + ) + (wire (pts (xy 195.58 328.93) (xy 195.58 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2cd7466b-d178-4b65-93f7-827d40dba93f) + ) + (wire (pts (xy 281.94 173.99) (xy 245.11 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f53a4f9-8462-49eb-8018-fcf50a6021b1) + ) + (wire (pts (xy 210.82 71.12) (xy 210.82 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ff6f339-56a9-41de-931e-20667e9cda6d) + ) + (wire (pts (xy 238.76 252.73) (xy 241.3 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31163a81-dd51-438c-9f6e-b627074e61b1) + ) + (wire (pts (xy 210.82 224.79) (xy 205.74 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3150a3ec-c208-4264-b6bb-2a07de9c7909) + ) + (wire (pts (xy 309.88 104.14) (xy 328.93 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35639e9e-263e-4015-8886-054672390a31) + ) + (wire (pts (xy 238.76 167.64) (xy 243.84 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35879fac-670e-42fc-bba3-5cb2d65181ef) + ) + (wire (pts (xy 245.11 105.41) (xy 245.11 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a0e31f0-bba6-4455-b747-9471aeaccd57) + ) + (wire (pts (xy 287.02 82.55) (xy 269.24 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a8e761a-80aa-4626-b80d-5ea26f444cc6) + ) + (wire (pts (xy 190.5 118.11) (xy 185.42 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3afeff1d-cbea-4cc6-8e8e-0f7e0487829f) + ) + (wire (pts (xy 185.42 73.66) (xy 209.55 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b022235-301e-4336-8520-482f211ef0ca) + ) + (wire (pts (xy 190.5 152.4) (xy 190.5 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3caf743e-8b34-40a5-9b05-409e202eef82) + ) + (wire (pts (xy 205.74 184.15) (xy 205.74 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40473dc1-fc66-45b8-b26e-c3b1d439f8e2) + ) + (wire (pts (xy 189.23 120.65) (xy 185.42 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42bc9803-20d8-45ee-837e-21c0bc210ffe) + ) + (wire (pts (xy 187.96 234.95) (xy 187.96 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4356646e-c268-400a-a772-546ab283a1aa) + ) + (wire (pts (xy 257.81 252.73) (xy 257.81 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 458d5aac-f4c6-4933-aeaa-800cd39ece9c) + ) + (wire (pts (xy 283.21 257.81) (xy 283.21 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45d9159a-1b3e-4e79-8a5e-b38fa291018d) + ) + (wire (pts (xy 351.79 105.41) (xy 361.95 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48572454-15ce-4eed-a1d5-8aa04ec3573a) + ) + (wire (pts (xy 281.94 132.08) (xy 245.11 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49485f4e-84e7-46e5-8236-c66494195730) + ) + (wire (pts (xy 240.03 299.72) (xy 240.03 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a7c81ff-64ec-4a5d-9ac1-900d9f30714e) + ) + (wire (pts (xy 264.16 157.48) (xy 210.82 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4caf0aad-7f4d-450e-b1e4-2936854598ed) + ) + (wire (pts (xy 209.55 97.79) (xy 210.82 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ee656fa-c2b8-4acf-8553-ecafd18ced80) + ) + (wire (pts (xy 311.15 215.9) (xy 311.15 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 547c84ea-10f2-4a1b-996a-09655315e599) + ) + (wire (pts (xy 205.74 153.67) (xy 242.57 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55746ba1-aa80-459d-8101-3e7b6a33843a) + ) + (wire (pts (xy 288.29 234.95) (xy 187.96 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 599e55bd-7489-418d-9f60-f584720a0704) + ) + (wire (pts (xy 240.03 299.72) (xy 281.94 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5adad6ec-5531-45cd-b5f2-b32bbc6e6909) + ) + (wire (pts (xy 269.24 82.55) (xy 269.24 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c476c1b-4eba-47a7-9650-ddb60a1a92a6) + ) + (wire (pts (xy 407.67 220.98) (xy 443.23 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5eab883b-2ffe-45b2-8c27-a1858ce4d5fe) + ) + (wire (pts (xy 208.28 269.24) (xy 208.28 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f18c74e-698b-4bb0-8904-7e7338ca8cfe) + ) + (wire (pts (xy 212.09 287.02) (xy 212.09 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60588225-7cca-4985-886f-761a3008d8c3) + ) + (wire (pts (xy 309.88 81.28) (xy 309.88 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 629b5195-60fe-4068-9582-5eb44bfc44f6) + ) + (wire (pts (xy 207.01 143.51) (xy 207.01 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6318875b-f034-4124-a30f-b6ead45ddb33) + ) + (wire (pts (xy 304.8 106.68) (xy 328.93 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 658277ed-0b2f-4a12-9b25-995b815fabcd) + ) + (wire (pts (xy 351.79 193.04) (xy 361.95 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 680b1886-e78c-4882-97b3-b7b6e6a962ad) + ) + (wire (pts (xy 241.3 252.73) (xy 242.57 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a774467-23b2-4cab-b419-0e3cb4d19b35) + ) + (wire (pts (xy 304.8 300.99) (xy 304.8 275.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f59fa37-f6c2-4c92-b28c-1e2bc69305a4) + ) + (wire (pts (xy 245.11 81.28) (xy 248.92 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70426040-0785-40d5-be8f-a84d38488bfd) + ) + (wire (pts (xy 207.01 110.49) (xy 243.84 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73b65350-7d85-4dde-80dd-8b7c0fa2373b) + ) + (wire (pts (xy 245.11 127) (xy 250.19 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7515b8fc-3f4e-456a-b881-bb50f41c9fb8) + ) + (wire (pts (xy 245.11 152.4) (xy 190.5 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a8e4100-9b4c-4316-bdbf-4e7aa1103cc6) + ) + (wire (pts (xy 281.94 328.93) (xy 195.58 328.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7da42452-02ed-4e83-8487-07a4937f176c) + ) + (wire (pts (xy 243.84 208.28) (xy 246.38 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 829906dc-dd8f-4b30-bb74-eac8ea2fbe0c) + ) + (wire (pts (xy 281.94 176.53) (xy 281.94 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82f07aab-1703-4b70-aaaa-30de71edb107) + ) + (wire (pts (xy 238.76 81.28) (xy 243.84 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 863c27d3-4d9c-4907-8f49-f65693114761) + ) + (wire (pts (xy 281.94 129.54) (xy 245.11 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 878441ef-8ec5-46be-87d9-620aaf790061) + ) + (wire (pts (xy 210.82 143.51) (xy 207.01 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e65b9ae-d969-47e3-8686-92af6ab82eb8) + ) + (wire (pts (xy 245.11 132.08) (xy 245.11 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 906411bc-aa66-46ab-bdf1-3842ab5925da) + ) + (wire (pts (xy 281.94 302.26) (xy 281.94 328.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9238f7a2-af9f-43b0-811f-a923b9f5ddc2) + ) + (wire (pts (xy 210.82 242.57) (xy 210.82 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b7bdc46-4bfb-46b2-a063-81b0d81d50a6) + ) + (wire (pts (xy 269.24 109.22) (xy 189.23 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b7fd81f-1161-48a5-9e03-a3d6830a9977) + ) + (wire (pts (xy 245.11 173.99) (xy 245.11 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9da54c3d-fe7b-4cd0-86fe-8c82b3d4d705) + ) + (wire (pts (xy 266.7 105.41) (xy 245.11 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9def939f-f9c6-4737-b9cf-dc636b1ecad5) + ) + (wire (pts (xy 193.04 279.4) (xy 193.04 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e707f57-02bd-4fea-92f5-3b80db45b366) + ) + (wire (pts (xy 241.3 281.94) (xy 241.3 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e80bfed-8174-42c6-8ce6-82a6b5d147e7) + ) + (wire (pts (xy 243.84 167.64) (xy 245.11 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0fa7685-62f3-4968-9653-ce3c4a1d9228) + ) + (wire (pts (xy 287.02 80.01) (xy 266.7 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a11590ec-0be2-4bd5-bc92-23b95e225e27) + ) + (wire (pts (xy 261.62 198.12) (xy 261.62 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a157abaf-0d4f-4198-bbf0-364e39f61be7) + ) + (wire (pts (xy 205.74 194.31) (xy 243.84 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2ee0a2f-d558-446e-abc0-88d056d56a72) + ) + (wire (pts (xy 243.84 194.31) (xy 243.84 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6f33c5d-acea-4dde-8287-abf540c95131) + ) + (wire (pts (xy 238.76 127) (xy 242.57 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ace550bf-7039-43f9-b7f7-503f8cc8d17e) + ) + (wire (pts (xy 266.7 80.01) (xy 266.7 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0c69ee3-215a-4484-971f-d4038abbd6b8) + ) + (wire (pts (xy 264.16 71.12) (xy 210.82 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b559f220-7a66-419d-9299-c5c319a21601) + ) + (wire (pts (xy 195.58 76.2) (xy 185.42 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6bf1c19-3624-4c8a-adfd-9500cc351fa0) + ) + (wire (pts (xy 210.82 269.24) (xy 208.28 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba4bb44f-1bc1-4c13-9c00-d0a83b089f51) + ) + (wire (pts (xy 264.16 81.28) (xy 264.16 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf436e9d-afd3-4eb3-95c4-d6a048377598) + ) + (wire (pts (xy 189.23 109.22) (xy 189.23 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf5f0dfa-c1be-4e47-9922-4a0baecc9363) + ) + (wire (pts (xy 245.11 129.54) (xy 245.11 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c174567f-4968-4ed1-951a-54a2199fa6d5) + ) + (wire (pts (xy 186.69 193.04) (xy 186.69 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2925b3c-39f9-4b91-90b7-266e0743cc43) + ) + (wire (pts (xy 207.01 281.94) (xy 241.3 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c31ad6a8-cbef-45c7-abbf-4bb78d338597) + ) + (wire (pts (xy 207.01 314.96) (xy 207.01 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c56c8d3d-797d-4fb5-9ea7-6aba0e0aeffe) + ) + (wire (pts (xy 210.82 198.12) (xy 261.62 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c733607a-ba25-476f-be22-725218436ed8) + ) + (wire (pts (xy 242.57 153.67) (xy 242.57 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c95dfa31-12a8-4179-864f-ecd20d64034a) + ) + (wire (pts (xy 210.82 184.15) (xy 205.74 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca51c1d8-03a3-4ba6-9566-839b12da44ed) + ) + (wire (pts (xy 212.09 314.96) (xy 207.01 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cabd19c3-35a4-4c0e-a354-403c4fcbc9c7) + ) + (wire (pts (xy 210.82 208.28) (xy 210.82 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd000dc1-d467-4418-a837-bf689afae27c) + ) + (wire (pts (xy 361.95 193.04) (xy 361.95 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd53c7aa-f2f2-44d0-bdc2-057c6552aed4) + ) + (wire (pts (xy 331.47 256.54) (xy 331.47 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf909e4c-1f84-455e-9eb6-f732d53d1835) + ) + (wire (pts (xy 281.94 193.04) (xy 186.69 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d183d579-9cf7-4bee-b8f6-6d2ce2620c67) + ) + (wire (pts (xy 245.11 167.64) (xy 248.92 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2437e71-c230-4dd5-9dbd-94359e5f61dd) + ) + (wire (pts (xy 288.29 217.17) (xy 288.29 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d271fdc7-1dcc-4821-bf14-25dd7bb194a5) + ) + (wire (pts (xy 304.8 191.77) (xy 328.93 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2e2a7c2-2505-4223-9416-a670e263b039) + ) + (wire (pts (xy 208.28 236.22) (xy 242.57 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d522990f-8c25-40ba-92df-a56e40aeaf81) + ) + (wire (pts (xy 265.43 127) (xy 265.43 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d92cd277-e9a3-41d7-a957-e60b26211a2a) + ) + (wire (pts (xy 311.15 194.31) (xy 328.93 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db9ce6af-0786-46f2-9154-62a7860cdd7c) + ) + (wire (pts (xy 240.03 298.45) (xy 243.84 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df41ed31-7bc3-45d4-85d7-5a52360c176b) + ) + (wire (pts (xy 264.16 167.64) (xy 264.16 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dfeb0a4b-7f5b-4b4b-9198-2244962f4f61) + ) + (wire (pts (xy 238.76 208.28) (xy 242.57 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1d6b420-2f23-40f3-a755-079c21434e21) + ) + (wire (pts (xy 257.81 242.57) (xy 210.82 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5fa8db5-634a-49d1-a789-50d8b2982dde) + ) + (wire (pts (xy 306.07 256.54) (xy 331.47 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9c4c27c-cb4d-4e65-93a5-34898e21e419) + ) + (wire (pts (xy 283.21 279.4) (xy 193.04 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb6351b8-b194-418f-82ef-faf4fffe73c4) + ) + (wire (pts (xy 265.43 113.03) (xy 210.82 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec8532a6-699d-488e-8042-3a5f584ed678) + ) + (wire (pts (xy 384.81 274.32) (xy 384.81 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef1b5400-b645-42da-b516-e6c3826a361f) + ) + (wire (pts (xy 288.29 214.63) (xy 243.84 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0386a79-935d-42cd-b18e-286d6e0b3483) + ) + (wire (pts (xy 259.08 298.45) (xy 259.08 287.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f60c4a3d-6f32-44cb-a0c0-038c854cefca) + ) + (wire (pts (xy 243.84 110.49) (xy 243.84 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6c8c90b-4356-4de3-b94b-419c19a754f6) + ) + (wire (pts (xy 354.33 274.32) (xy 384.81 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6dcaefe-b277-4e03-b5d7-303cf7319a10) + ) + (wire (pts (xy 384.81 146.05) (xy 384.81 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8e917e0-7a18-4411-acbf-466b1b7d2df1) + ) + (wire (pts (xy 242.57 208.28) (xy 243.84 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc8459ad-84f9-4ca6-bba8-e22fd975f98b) + ) + (wire (pts (xy 243.84 214.63) (xy 243.84 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff04365e-39a3-490c-9053-8353f2744878) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 254 208.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 094cade2-b0be-45b3-9d86-c48d613762ed) + (property "Reference" "U10" (id 0) (at 254 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 254 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 255.27 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 255.27 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a0d04f88-4c81-420b-a935-2966db522e5c)) + (pin "2" (uuid b8b36de9-4f01-4bb9-b2a8-38499a597a34)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 224.79 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0de451f8-7997-419d-9521-b9e68c681b88) + (property "Reference" "U4" (id 0) (at 226.8094 160.02 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 226.8094 163.83 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 224.79 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 224.79 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 438d15b8-33a3-4c08-bc51-ceb71719d3d3)) + (pin "2" (uuid 06ebca01-67d1-40f5-b648-79f1e0193295)) + (pin "3" (uuid d16c6265-0702-4228-a950-1778aeb1986e)) + (pin "4" (uuid 4cc371df-4e9c-4286-a651-aec76e5d59d8)) + (pin "5" (uuid 64a42fc9-f621-46ca-b95c-fe99bf050b7e)) + (pin "6" (uuid 6bc12b2a-6531-4775-9cba-ddc5ac717488)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 449.58 220.98 180) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 12ebd600-a308-4819-9d05-fdd1b78cf326) + (property "Reference" "U1" (id 0) (at 453.39 220.345 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 453.39 222.885 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 449.58 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 449.58 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c0c50c98-cdf9-48cf-a316-506b7a3ed3de)) + (pin "2" (uuid d594c856-17af-4125-b8b6-faeb9c2e7f6f)) + (pin "3" (uuid 357e6d1f-b4cf-4b5c-ac53-275bf4010ef7)) + (pin "4" (uuid c73a7490-a187-4945-9332-75eee15517b0)) + (pin "5" (uuid c6c14178-9903-4953-90f6-0162952e1ee2)) + (pin "6" (uuid b0048da6-30aa-47c1-9c9a-1f44aa3ddf56)) + (pin "7" (uuid 94c13a9c-fc81-48f7-a9bc-59a6ac32f517)) + (pin "8" (uuid b9675a2f-df78-4ed4-a644-75c1cf522243)) + (pin "9" (uuid 47862820-e61a-48d3-aeba-b252e6d51744)) + (pin "10" (uuid 7b63f141-e590-493f-9401-9b6b1c257de0)) + (pin "11" (uuid 3f12da6d-db91-4f4a-80c1-65ec6033da17)) + (pin "12" (uuid b6ccebee-b22f-47c2-b61f-37dfadf7775d)) + (pin "13" (uuid 65538b8e-4689-46b8-ab63-d2c6704f5b80)) + (pin "14" (uuid 5c4692cf-5168-496e-a599-57a3d657b052)) + (pin "15" (uuid 3dcdcc28-ef11-4b7e-b78a-4485db02a2e0)) + (pin "16" (uuid daf7d5ec-54f5-4480-b94d-77433107c9c2)) + (pin "17" (uuid d7152a36-29b5-44e8-a355-2845f3a9f7b6)) + (pin "18" (uuid e7eb69bc-f91b-4ffa-aa89-4e101155e793)) + (pin "19" (uuid 7de7ea3c-b2aa-4372-ac3f-333d4403d788)) + (pin "20" (uuid 6d01e58a-6103-4ce7-b2e4-3939a18ba360)) + (pin "21" (uuid cdb6be12-a7cf-4571-85b9-f10c7a6769f8)) + (pin "22" (uuid 65d235f6-3ecf-4454-9544-f1b4ac579e55)) + (pin "23" (uuid 719312f4-2561-440d-89b5-2caf822dd194)) + (pin "24" (uuid befc5a4d-e4be-42a3-af60-e8276a459b72)) + (pin "25" (uuid 718014bb-4c86-4865-a452-0c9156ec0395)) + (pin "26" (uuid d2367a7a-24ca-4441-a1bb-c116fc83211b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 299.72 217.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15ec0ab3-5097-4ee3-b99e-5a9ccfc108b8) + (property "Reference" "U19" (id 0) (at 299.72 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 299.72 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 299.72 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 299.72 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f0b622ec-f1bb-4048-be74-c302f0407931)) + (pin "2" (uuid 34e2a230-09da-40b5-8b20-08ff3cd84ac9)) + (pin "3" (uuid 67c545ec-ca71-4950-8054-c14095230d97)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 293.37 302.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 16e4e4ed-aa44-4888-ac57-74cd777f6ef7) + (property "Reference" "U16" (id 0) (at 293.37 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 293.37 297.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 293.37 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 293.37 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 201ca0e9-809e-4bc6-a2b9-281716941a06)) + (pin "2" (uuid 3ec50d5b-0f3f-4acf-b885-c867ae6a310b)) + (pin "3" (uuid 2106b7ba-60e1-4175-b652-bb277ba95526)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 224.79 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1c2533b4-c982-4d55-96ec-a6749748f0f9) + (property "Reference" "U3" (id 0) (at 226.8094 119.38 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 226.8094 123.19 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 224.79 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 224.79 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a539f413-742a-47e6-8e4e-180ab7d02e8a)) + (pin "2" (uuid 64341141-b7f5-4b88-bccb-9b2225475573)) + (pin "3" (uuid c5aa15e5-7d15-4fb0-80f0-f39412096ecf)) + (pin "4" (uuid 1f603af5-0277-4493-b1ea-41af159bf151)) + (pin "5" (uuid 10343974-564a-407d-b92a-3d0f7090f834)) + (pin "6" (uuid 915157b7-fa17-4f1b-ba6a-4e135bd183f7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 251.46 298.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 238d5343-1f0e-49c4-8378-936c6ac6cda3) + (property "Reference" "U9" (id 0) (at 251.46 292.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 251.46 295.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 252.73 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 252.73 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae9818f9-bc0e-49fd-a1c5-c9e8de5e5005)) + (pin "2" (uuid 9255b682-e137-4de4-b0f2-bdecb24cd7b4)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 226.06 307.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26276016-3c5c-4bfb-93d0-af997b30c97a) + (property "Reference" "U7" (id 0) (at 228.0794 290.83 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 228.0794 294.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 226.06 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 226.06 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6de43b5e-560c-4bea-94c5-fbe7f613c925)) + (pin "2" (uuid 19667ee8-6239-4f72-ba17-23abe8a98563)) + (pin "3" (uuid 77c09ece-db57-49ac-826a-04e96e20d5f3)) + (pin "4" (uuid 81fbf748-49b9-4656-abd9-cab97ceef891)) + (pin "5" (uuid 26c62f77-414f-4d04-b15a-d1ebb5231a50)) + (pin "6" (uuid 8ebb5d92-109d-4b5e-ab78-1586386a9e6c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 293.37 132.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 272bd7f2-fa11-4391-8ded-de955038eaa1) + (property "Reference" "U14" (id 0) (at 293.37 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 293.37 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 293.37 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 293.37 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid da4108c0-8cc0-4787-87b3-5b581fb319f8)) + (pin "2" (uuid 7c819aca-192e-4a17-8f72-1e1bb530b707)) + (pin "3" (uuid 4fa0cd4a-d6a4-4a7f-85c0-c678de565a71)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 340.36 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 33eb7784-3c93-4ed3-b5c6-074db42ffd13) + (property "Reference" "U20" (id 0) (at 340.36 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 340.36 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 340.36 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 340.36 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58c2568f-d29f-4725-bbd7-7dd70dd36439)) + (pin "2" (uuid ae26cf88-17bc-4827-b929-91eb264dbc71)) + (pin "3" (uuid 09236989-fab3-4489-b388-1467755ecbb4)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 224.79 217.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b453da7-e27c-421f-9e72-afeb3caf701e) + (property "Reference" "U5" (id 0) (at 226.8094 200.66 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 226.8094 204.47 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 224.79 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 224.79 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cf500ea5-a4de-41a9-9b89-eab9507c9f69)) + (pin "2" (uuid d1e98e1d-30b4-4604-bb55-b3d6119a8056)) + (pin "3" (uuid c422c7ca-4a14-4f78-a155-02b76c2af64d)) + (pin "4" (uuid ba5dc54e-1c07-46ba-9d04-0f25164932a9)) + (pin "5" (uuid e149834c-bae5-4751-842a-caa95917c87e)) + (pin "6" (uuid fd6b2972-af96-44f3-a0d4-39037f22414a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 256.54 167.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b692399-c55e-4d04-adb3-9ebcbe075081) + (property "Reference" "U12" (id 0) (at 256.54 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 256.54 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 257.81 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 257.81 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 979c8f61-adc0-4d58-be32-8b284099ea97)) + (pin "2" (uuid c001c847-50ee-4eef-9911-2ffacab27f50)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 224.79 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 43ec2426-c184-487c-9ec9-f94b1cfcd65d) + (property "Reference" "U2" (id 0) (at 226.8094 73.66 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 226.8094 77.47 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 224.79 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 224.79 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid faa85de6-9ffe-4719-b9b6-60ca92e8d3ac)) + (pin "2" (uuid 57008037-29cb-4d75-93b6-713dffbff637)) + (pin "3" (uuid 10f3bf3b-0920-470f-a869-32f491c2b7e0)) + (pin "4" (uuid 26e34fd5-412b-49fb-98cf-cfb1bbbd7bed)) + (pin "5" (uuid a828351b-f835-4d1e-8f84-f6bb7fa6fd44)) + (pin "6" (uuid d501f986-cf75-4e65-9a99-c2d002bc17b2)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 298.45 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4414fdbc-8e81-4dce-b080-da8bcc258173) + (property "Reference" "U18" (id 0) (at 298.45 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 298.45 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 298.45 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 298.45 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 748c7d28-b904-4c73-bab8-968631ac09ad)) + (pin "2" (uuid 4f601078-95de-436f-86d7-0b022093849e)) + (pin "3" (uuid f7f689b1-d4e5-43c1-83b4-d79e75e02726)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 257.81 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 44789b07-2741-46d4-950d-b2436f6b4ea2) + (property "Reference" "U13" (id 0) (at 257.81 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 257.81 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 259.08 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 259.08 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c081ded7-5fdd-406d-814f-575922e65a1a)) + (pin "2" (uuid 51a26a69-a055-4a61-9e92-6d21aa342543)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 340.36 194.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5442df33-5cbb-4044-9306-5009ec9b8125) + (property "Reference" "U21" (id 0) (at 340.36 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 340.36 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 340.36 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 340.36 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7c9ec408-5bee-4b6c-aef5-325cc84b2c30)) + (pin "2" (uuid 7ee0dae5-b578-45b4-9e6c-e078c8436c00)) + (pin "3" (uuid 48d94dde-9348-4b29-b964-95e7742bf0f4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 294.64 257.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5859099f-5e43-497c-b12a-ef9f077e8327) + (property "Reference" "U17" (id 0) (at 294.64 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 294.64 252.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 294.64 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4769dd8e-cf9d-4b95-aa62-d620935f3b04)) + (pin "2" (uuid 7549e415-1ae0-4cc7-b4ed-35a840f54e96)) + (pin "3" (uuid 3976bfb9-433f-47b8-b415-75c2d2562bf9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 179.07 120.65 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58f9786b-a79b-43e4-a765-e7c56fcd6402) + (property "Reference" "U1" (id 0) (at 179.705 115.57 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 179.705 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 179.07 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4cb194d6-5169-4cfd-b6c9-32354ebb7fe9)) + (pin "2" (uuid e60585a3-d5b0-43f1-bc4d-a83f3fc9790f)) + (pin "3" (uuid 66f899e8-0009-4a75-8635-93a37d68b9a7)) + (pin "4" (uuid 28400d9d-9737-48f3-8ba5-04f224533b1f)) + (pin "5" (uuid 6b889127-f5d3-402a-80e9-511c04917f3d)) + (pin "6" (uuid a48c9f54-1cef-4d6c-bbc2-2c5947c27765)) + (pin "7" (uuid 2c744428-20b1-42d5-8797-eb32058c5900)) + (pin "8" (uuid ee1ce2c3-e425-41ec-af70-cc4771eb636d)) + (pin "9" (uuid 477d68ff-f4fb-46c6-9034-14ad05c868f8)) + (pin "10" (uuid 3b8208e7-8f5a-4968-b73b-b568cc74b7ac)) + (pin "11" (uuid 53323fbb-4200-49de-a492-893ff53684ad)) + (pin "12" (uuid d4adf3d1-2a16-4433-8a40-c72d412b28d9)) + (pin "13" (uuid 0b6a2e83-d2ae-42e4-a573-7792635343cc)) + (pin "14" (uuid ff6a4f29-9da8-49ab-8e09-fba5b473bfd5)) + (pin "15" (uuid 45f8990b-6930-482b-90f9-25679f4cf79c)) + (pin "16" (uuid 74bfa18f-c5ee-4dd2-a6bd-259d5384d9fc)) + (pin "17" (uuid 1385dbb3-f2ed-4430-bff4-8c103ac07347)) + (pin "18" (uuid e00af8b6-b590-48a3-997a-e40a14fbad21)) + (pin "19" (uuid f9597d2c-1a62-4b2f-ab11-2ad56cbe98d1)) + (pin "20" (uuid a219e02b-e385-4d3c-ae3e-5ae3043f84c9)) + (pin "21" (uuid 5b2d934e-0efb-4c02-90b4-b74510abbc6c)) + (pin "22" (uuid a34fa103-a9b5-46ca-a208-fee288fb2b81)) + (pin "23" (uuid 6565a61f-fddd-4323-89b0-fd6764478243)) + (pin "24" (uuid eea40a9c-e377-4936-84fb-58a0418aee93)) + (pin "25" (uuid 0a88af10-f05d-474f-b39e-d83898116152)) + (pin "26" (uuid 61fd7487-2c6c-4d0d-9892-56729939a644)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 342.9 275.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5e1fad9c-5c7a-4147-9431-b792f19da53f) + (property "Reference" "U22" (id 0) (at 342.9 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 342.9 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 342.9 275.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 342.9 275.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 65c790f0-10ad-4119-8dc1-5fbb4bdbc377)) + (pin "2" (uuid 91e831ff-df9e-4304-afbd-6475d2622549)) + (pin "3" (uuid 36903881-c71c-449c-b386-5e50c4cc7443)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 179.07 118.11 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6472c5f4-f134-4537-ad57-639bb39dfd76) + (property "Reference" "U1" (id 0) (at 179.705 113.03 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 179.705 115.57 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 179.07 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f11e219e-71e3-4848-aff8-93cb895e6337)) + (pin "2" (uuid 91b7de63-7d15-45d7-862e-4869f2dddc4c)) + (pin "3" (uuid 94e55772-64f4-44ae-8249-385835e8c8db)) + (pin "4" (uuid 41a0d310-01f3-4f7c-be5d-9fc5bfd01837)) + (pin "5" (uuid ea9dff8c-7446-4e47-92b8-c8704b2d55be)) + (pin "6" (uuid fcc8d632-f2d8-4a01-b975-ba940f28bc92)) + (pin "7" (uuid 68a9baea-fc06-478f-96e6-c0771a82afe7)) + (pin "8" (uuid eae17541-279f-4317-bd2f-ccbd4e30f5de)) + (pin "9" (uuid 03178f4a-034d-4feb-b31a-9fadc3c68b91)) + (pin "10" (uuid e34c6075-36f4-427c-a262-8e9491ab6efd)) + (pin "11" (uuid 1c20ec05-6b34-4bd9-ba53-ca1c40c4ba96)) + (pin "12" (uuid a01d4c41-5362-49bc-89dd-221d3c876d2d)) + (pin "13" (uuid c262c918-b05d-499c-8e13-a61898d97eed)) + (pin "14" (uuid 6aaba168-4f7e-43fd-9f72-a5ab05b880f3)) + (pin "15" (uuid 5c4ae996-8e98-40e5-a333-a9a54afc2483)) + (pin "16" (uuid 395b2bc5-7cbd-430b-8cb4-193da1e35f7e)) + (pin "17" (uuid 367c5f4c-abce-47c7-8da3-2c7d4258df5f)) + (pin "18" (uuid 7f889e30-0af7-486e-a79e-da855472f508)) + (pin "19" (uuid 2d4140bc-bbe4-4181-95e5-9f57d53a313d)) + (pin "20" (uuid ae2d42e8-66d7-45bd-a237-882dbdaa2b18)) + (pin "21" (uuid 4b57277e-796a-4cf9-9683-68c74f8c5d7e)) + (pin "22" (uuid b3bb68a1-40bd-4fc2-b50e-70ff07ef603c)) + (pin "23" (uuid 6705806c-fb9f-4bc8-a8ef-23d995d4ea50)) + (pin "24" (uuid fe090bfa-275b-422d-bb89-95fd29080946)) + (pin "25" (uuid 3769d437-529e-44c3-b43c-67e292034e52)) + (pin "26" (uuid 9c6ba203-70fe-4f36-9eb2-a9de7230767a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 81.28 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7da3357f-c97d-482d-97b1-1f7e2d4ea92c) + (property "Reference" "U1" (id 0) (at 182.245 76.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 78.74 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 71c2477c-e3c4-459d-a4a3-24e8c0144871)) + (pin "2" (uuid 260bb05d-7ba7-40d7-b3fd-757b7cf9036b)) + (pin "3" (uuid 4fa932d2-0251-4315-af23-00b50622a665)) + (pin "4" (uuid f6f399dc-34bc-488f-8af2-a3a86b2c6579)) + (pin "5" (uuid e206dbfc-cfd4-47b3-8ee8-d3355e4d7dee)) + (pin "6" (uuid a9cee1f6-b62d-48cf-bc7e-29873497cc5f)) + (pin "7" (uuid 000355da-1202-4c67-ac07-9de3e6c5be0f)) + (pin "8" (uuid 29198e32-4e58-4989-903f-1dba969104df)) + (pin "9" (uuid 0cf28f41-61a4-47b2-8214-7aa8b2045ad5)) + (pin "10" (uuid ddb68c2c-b3ed-4559-a74d-4122c7b53fac)) + (pin "11" (uuid 7fe6784e-8fd4-415f-989a-e00a3ceae3fe)) + (pin "12" (uuid 725a155e-e8f8-48ed-af10-c4c23fd01bc6)) + (pin "13" (uuid 1ebdcf8f-32ae-499b-a29c-663a6ee2273b)) + (pin "14" (uuid 0d8f815f-9e6f-442e-ab45-19eeff9f2a1b)) + (pin "15" (uuid 0cf43357-32bd-4ad7-a393-043c3da6ec8e)) + (pin "16" (uuid c6df0a2f-2889-4e21-b7f9-802b1462549a)) + (pin "17" (uuid 746c4541-1746-4328-9e8c-83a92a250242)) + (pin "18" (uuid 56aeae58-345e-4f2f-8ede-1a56a2430feb)) + (pin "19" (uuid cb7c9519-9f7f-4a57-b3bb-965c4e8357b9)) + (pin "20" (uuid fdcaa2c1-78ec-4b30-bcf7-dda62ee637f5)) + (pin "21" (uuid 08a1ab8a-3a06-40d1-9bdb-9c6c5a5d7c1a)) + (pin "22" (uuid de697b52-d5f3-4041-a523-b6c661178e8a)) + (pin "23" (uuid 9e728d0a-b1ae-466a-834d-2560b6115408)) + (pin "24" (uuid a81b7e16-aae1-4844-af6f-1dfd5fab7628)) + (pin "25" (uuid 9e519c21-594a-487b-ac0b-6a36d435a973)) + (pin "26" (uuid e1790049-06dd-4ded-96e3-4d25037e0276)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 179.07 78.74 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 849c1b6b-864c-42ae-9f74-26232c9397d0) + (property "Reference" "U1" (id 0) (at 179.705 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 179.705 76.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 179.07 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a52accf-7e64-4fab-9b06-185c57fd365f)) + (pin "2" (uuid 8da20485-dec1-437f-91fa-163d79d520f3)) + (pin "3" (uuid 4698500e-57b1-49e0-813c-b634ef512f07)) + (pin "4" (uuid bce7ab72-e026-49ca-be38-8edb791464d5)) + (pin "5" (uuid 79909e54-c611-4622-bcfe-b9939e64819e)) + (pin "6" (uuid 74f59c6d-bedc-45c8-8271-61bee6933113)) + (pin "7" (uuid 24446f2b-5c5d-4f1a-b906-8289156cc648)) + (pin "8" (uuid 3ca4bf8b-5fa0-45c3-8501-af7a4cc66b3e)) + (pin "9" (uuid 59fdb19e-c6d0-47af-a80e-1730fa839a2c)) + (pin "10" (uuid b32e626d-7d0d-48a1-818e-5e61d2eb875c)) + (pin "11" (uuid 597b1f54-d704-4954-a0b1-727ca29e3acb)) + (pin "12" (uuid d8dcd9dd-f3b9-4162-8c5c-d3e5641ee2d9)) + (pin "13" (uuid 1a336bfc-2cb7-44c7-ae5b-b8fdfb3d0f3d)) + (pin "14" (uuid 4aadd610-8a81-4d40-81a8-76c66114f509)) + (pin "15" (uuid 1b667206-2586-40c2-926b-6a4df6579cc9)) + (pin "16" (uuid 6f2cee6d-83cc-458f-986b-eabe30eae67e)) + (pin "17" (uuid 78e71262-9370-4eb6-b0ec-77e6b0fdc92a)) + (pin "18" (uuid 4fc97fa2-c6c8-42c8-a7a9-11b89c5336d3)) + (pin "19" (uuid ccc3bdce-8696-413a-aae2-ae0ae2888481)) + (pin "20" (uuid 484139e6-e78a-47d8-b46c-134501ebdc51)) + (pin "21" (uuid 2a61961b-eda9-4be9-bdea-c1cdddda2bb6)) + (pin "22" (uuid d3ad43f3-97ef-403c-827d-9583af185b01)) + (pin "23" (uuid 5ee2d92c-ccf8-46f6-ac71-bd237b4d0035)) + (pin "24" (uuid 1bf67215-d5de-4cf9-b5bc-17b53850e5d5)) + (pin "25" (uuid 27515d4a-7c44-4085-a7af-9d5074a40fb7)) + (pin "26" (uuid 90fdbf77-5329-42b9-9891-a7360eecb121)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 224.79 261.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a2374a8b-ae4d-4d5c-affa-9bc1b1b3d740) + (property "Reference" "U6" (id 0) (at 226.8094 245.11 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 226.8094 248.92 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 224.79 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 224.79 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bae363eb-9543-46c0-92db-160aeb1819f8)) + (pin "2" (uuid 886b050b-aa1e-4f45-8784-9c31c1fd5faf)) + (pin "3" (uuid 96c278f9-a589-4f54-ab58-3365953690db)) + (pin "4" (uuid 9c55b1d7-ed55-461c-a46d-2aaa1b94097b)) + (pin "5" (uuid 25dadf81-6a00-4e35-bf02-e02ec3643a8e)) + (pin "6" (uuid 2efa0ef7-36b1-419c-9b12-cff372372315)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 396.24 222.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a705abcc-089b-40f2-8eaa-aee3384b0dcf) + (property "Reference" "U24" (id 0) (at 396.24 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 396.24 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 396.24 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 396.24 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 13949db7-8d58-43f0-9744-beea236cee3d)) + (pin "2" (uuid 1bc1315c-0242-4d25-a252-9075b312d4eb)) + (pin "3" (uuid 5b9cb742-00a8-40be-8e19-3fcdf297db2e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 179.07 76.2 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7833df9-f881-47bc-b5ef-4c0313f1fed9) + (property "Reference" "U1" (id 0) (at 179.705 71.12 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 179.705 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 179.07 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f48b2c05-dfe2-4115-83b8-645baa86e3ce)) + (pin "2" (uuid f00b8156-386a-4a32-90aa-a3c59258c51e)) + (pin "3" (uuid 2be784bb-b957-4111-884b-679f77d26de0)) + (pin "4" (uuid ad69e10d-2897-4acb-ac45-5757a31b87ab)) + (pin "5" (uuid 374794e3-e1ad-4b4f-9ed9-b27d0a1a8b85)) + (pin "6" (uuid 995dd87b-861c-42c5-99e9-70b476efc38e)) + (pin "7" (uuid 2b9458b7-5377-4eb0-851e-2db7cce9d4fa)) + (pin "8" (uuid f5077686-8d0b-486a-a3a1-d0a808d61208)) + (pin "9" (uuid bab06ba9-8726-4ba0-9887-76354ba15264)) + (pin "10" (uuid f79add38-8cd7-4ec5-a24e-a5241fa38ccd)) + (pin "11" (uuid 2dc6a18a-8204-4ac6-bfed-85910f66a5e2)) + (pin "12" (uuid 00817d8e-1dbf-4226-8369-2759bcdd18ea)) + (pin "13" (uuid 36b05718-8a9b-4d6e-b57a-996474cf5ab7)) + (pin "14" (uuid f98525e0-d2be-4b93-aa5e-cab234de3a4f)) + (pin "15" (uuid 37781eb7-b926-4521-80c2-d0541ac05464)) + (pin "16" (uuid 556faaff-56be-4369-9f5e-d4919dafc1ab)) + (pin "17" (uuid 6fd31d08-e0dd-483f-8058-b2ab43d577cf)) + (pin "18" (uuid 02658725-1f92-4147-a517-571b60029026)) + (pin "19" (uuid 566d9db8-64a4-43ed-bc84-2962ec8d6cf0)) + (pin "20" (uuid f4161509-10a1-4aa1-9a52-6f0d62a766ca)) + (pin "21" (uuid 55031ebf-7f11-415a-8212-527f176ef09a)) + (pin "22" (uuid 89551c53-79e5-489b-8400-f6808b094b41)) + (pin "23" (uuid 1506c590-8a3d-4867-90cb-edd11a493703)) + (pin "24" (uuid b77582d6-df19-4980-9c60-a19a088bdb4d)) + (pin "25" (uuid 7d7c88f1-5d2b-4c3c-b0d7-52715f169c82)) + (pin "26" (uuid b4dc7809-aaab-453f-b434-c74f3df48a4b)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 373.38 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b27742f7-78d2-4727-b15b-c9d144d6840b) + (property "Reference" "U23" (id 0) (at 373.38 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 373.38 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 373.38 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 373.38 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 19907cd5-48d4-4d1a-8206-8245135669c3)) + (pin "2" (uuid 355997db-f554-4009-9ab8-ba347cbdfe4f)) + (pin "3" (uuid 6dffea4f-1bf3-41fb-a12b-731ea29ceed5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 179.07 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b3b6eb0d-746e-4564-bbaf-55ece88845c4) + (property "Reference" "U1" (id 0) (at 179.705 68.58 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 179.705 71.12 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 179.07 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 179.07 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e4c24798-b3d4-4594-8dbe-4ea985b70d96)) + (pin "2" (uuid 3b51e90f-a64e-40bc-9bad-8a198c252866)) + (pin "3" (uuid 50c8d3f7-fb4f-487a-8273-1060c7f413e9)) + (pin "4" (uuid d7d5e27a-2e03-42e0-870a-c17b046b47ab)) + (pin "5" (uuid 82f30db3-4d67-42cd-90fa-07be97775810)) + (pin "6" (uuid 4a3b56c8-93b8-4eca-b0cf-bb58a7dbb1a2)) + (pin "7" (uuid 3fb1f162-5f6f-44d5-aba8-8f7c312ff3c9)) + (pin "8" (uuid 6673f326-e414-46e8-8f2d-8c2f8591db86)) + (pin "9" (uuid cd131012-24eb-41b2-b144-e63814acf726)) + (pin "10" (uuid 3148c0d7-669f-4f5d-ae9c-8ade3817f433)) + (pin "11" (uuid a181c4db-10ef-48c0-9864-877befaffc99)) + (pin "12" (uuid bf8da9e7-2334-44c5-9045-b02ce0d1c1ae)) + (pin "13" (uuid bdacb2ce-89fa-4893-a35b-964e6c45052b)) + (pin "14" (uuid 0432431e-3c85-4c7d-9e98-87b49bc689c4)) + (pin "15" (uuid bb15c1cd-17a8-405d-8815-26633ed4eb14)) + (pin "16" (uuid 9bf3a727-afab-4174-8144-f13f4bd29d87)) + (pin "17" (uuid 62bb109f-7516-4684-b926-b5eeb7892593)) + (pin "18" (uuid 3cdc1ba8-678a-4184-977f-2e5ffe8b66fa)) + (pin "19" (uuid 38ffcb28-945f-4b87-9451-855aca6c6b2d)) + (pin "20" (uuid 8a5563e4-bc12-4bc8-aee4-081ccb6dd656)) + (pin "21" (uuid 29b21eab-a6b7-41b6-b275-cf5faac8753f)) + (pin "22" (uuid 888d6d82-152a-4534-b9d3-e82c291f99ee)) + (pin "23" (uuid 0f433b43-0078-4fc3-b400-8a356328a9ce)) + (pin "24" (uuid a531d35e-04bb-4c91-938f-14d4a3d1cc83)) + (pin "25" (uuid 9246e37a-9738-4600-9acc-4e6b5336d7b3)) + (pin "26" (uuid 2caf6df5-b0cf-4f08-a482-b58861759d91)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 250.19 252.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc582b56-0676-4037-b9bf-1f106e1a8a1f) + (property "Reference" "U8" (id 0) (at 250.19 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 250.19 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 251.46 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 251.46 254 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d536b36-173a-496e-ad02-1442bddfd148)) + (pin "2" (uuid 1bf8697a-c21f-4676-95db-4ed57cece3c9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 293.37 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ca4bf3ba-27d2-4992-ae3c-0ef96d8837c6) + (property "Reference" "U15" (id 0) (at 293.37 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 293.37 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 293.37 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 293.37 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 870cc038-ae8d-4974-84f4-242ef1814348)) + (pin "2" (uuid 4d031a65-978c-45c6-a3f4-80ae0ff37de1)) + (pin "3" (uuid 992b973e-0cf9-4c10-8ce1-82438dd37757)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 180.34 115.57 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ce50ddb0-261a-42b0-9beb-8c8d8c50c9df) + (property "Reference" "U1" (id 0) (at 180.975 110.49 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 180.975 113.03 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 180.34 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 180.34 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8937bf67-6152-4cdf-9b80-dce8f0fc0a22)) + (pin "2" (uuid a923e38b-1d82-4655-9dc5-c67b83bb0109)) + (pin "3" (uuid 736566d2-4fe5-462d-a43d-29b26b8a60f4)) + (pin "4" (uuid 54d14da8-20ef-4cd7-8e7d-700f96d6423a)) + (pin "5" (uuid 7ca545c8-f327-44d2-abc8-e8dd8657a1f1)) + (pin "6" (uuid b0d43252-2f66-44c7-92fc-5da2edc0e8a5)) + (pin "7" (uuid 0b4670b0-523a-4ba9-a2c7-a224bff23bf1)) + (pin "8" (uuid 231462f1-ba14-4ab7-8f1f-a1c550eb3b85)) + (pin "9" (uuid af473fb7-3dc6-4e6a-b370-baa62e5effb4)) + (pin "10" (uuid d651fed7-059e-4730-92b4-37603fbd1f72)) + (pin "11" (uuid 89a842c9-07e8-4005-98f8-595b56fdf9b2)) + (pin "12" (uuid 3fac80f9-5d97-4275-949c-d2c427e7158a)) + (pin "13" (uuid d5db9b12-9b69-45ec-8cc1-0e4a702c7fc9)) + (pin "14" (uuid ec318a6a-9f85-4f1c-966d-b1ea8e6f74f7)) + (pin "15" (uuid 34fc5000-5ed6-4927-bbed-a1fe6279d04d)) + (pin "16" (uuid c3a02d08-764d-4673-9ae9-549e47de14f2)) + (pin "17" (uuid f21eb570-0a88-41ad-bb6f-23ec49d6643d)) + (pin "18" (uuid e3c5653a-6f2c-4f68-8c7f-4487412c17a7)) + (pin "19" (uuid 3a25a0df-7e71-437b-947f-b4d60474150f)) + (pin "20" (uuid 9be43974-4442-42aa-bb20-db2cd23f210d)) + (pin "21" (uuid f6b8a178-4b0f-44c7-9af3-56d0e8eb78f5)) + (pin "22" (uuid 7def5913-4815-4a0d-a4ff-d493b0e3315e)) + (pin "23" (uuid e2a5eb05-501c-44d3-ba07-ec5cd4b4bc07)) + (pin "24" (uuid 01e8ec88-1022-4705-b09a-b5b22d526659)) + (pin "25" (uuid 5a37913c-b3d5-469e-9c65-ef4cd9e19d5a)) + (pin "26" (uuid edb3b7a8-0c06-4d42-86c6-716b9010ae29)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 256.54 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid de61b807-3539-47cd-9c9d-55dcf89d82bd) + (property "Reference" "U11" (id 0) (at 256.54 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 256.54 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 257.81 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 257.81 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53b18759-2215-41dc-8478-0b524f527cde)) + (pin "2" (uuid 200093c2-5a7d-4f04-91ea-4a0dfe7249ee)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/b3b6eb0d-746e-4564-bbaf-55ece88845c4" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/a7833df9-f881-47bc-b5ef-4c0313f1fed9" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/849c1b6b-864c-42ae-9f74-26232c9397d0" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/7da3357f-c97d-482d-97b1-1f7e2d4ea92c" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/ce50ddb0-261a-42b0-9beb-8c8d8c50c9df" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/6472c5f4-f134-4537-ad57-639bb39dfd76" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/58f9786b-a79b-43e4-a765-e7c56fcd6402" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/12ebd600-a308-4819-9d05-fdd1b78cf326" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/43ec2426-c184-487c-9ec9-f94b1cfcd65d" + (reference "U2") (unit 1) (value "d_dff") (footprint "") + ) + (path "/1c2533b4-c982-4d55-96ec-a6749748f0f9" + (reference "U3") (unit 1) (value "d_dff") (footprint "") + ) + (path "/0de451f8-7997-419d-9521-b9e68c681b88" + (reference "U4") (unit 1) (value "d_dff") (footprint "") + ) + (path "/3b453da7-e27c-421f-9e72-afeb3caf701e" + (reference "U5") (unit 1) (value "d_dff") (footprint "") + ) + (path "/a2374a8b-ae4d-4d5c-affa-9bc1b1b3d740" + (reference "U6") (unit 1) (value "d_dff") (footprint "") + ) + (path "/26276016-3c5c-4bfb-93d0-af997b30c97a" + (reference "U7") (unit 1) (value "d_dff") (footprint "") + ) + (path "/bc582b56-0676-4037-b9bf-1f106e1a8a1f" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/238d5343-1f0e-49c4-8378-936c6ac6cda3" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/094cade2-b0be-45b3-9d86-c48d613762ed" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/de61b807-3539-47cd-9c9d-55dcf89d82bd" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3b692399-c55e-4d04-adb3-9ebcbe075081" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/44789b07-2741-46d4-950d-b2436f6b4ea2" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/272bd7f2-fa11-4391-8ded-de955038eaa1" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/ca4bf3ba-27d2-4992-ae3c-0ef96d8837c6" + (reference "U15") (unit 1) (value "d_and") (footprint "") + ) + (path "/16e4e4ed-aa44-4888-ac57-74cd777f6ef7" + (reference "U16") (unit 1) (value "d_and") (footprint "") + ) + (path "/5859099f-5e43-497c-b12a-ef9f077e8327" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/4414fdbc-8e81-4dce-b080-da8bcc258173" + (reference "U18") (unit 1) (value "d_and") (footprint "") + ) + (path "/15ec0ab3-5097-4ee3-b99e-5a9ccfc108b8" + (reference "U19") (unit 1) (value "d_and") (footprint "") + ) + (path "/33eb7784-3c93-4ed3-b5c6-074db42ffd13" + (reference "U20") (unit 1) (value "d_or") (footprint "") + ) + (path "/5442df33-5cbb-4044-9306-5009ec9b8125" + (reference "U21") (unit 1) (value "d_or") (footprint "") + ) + (path "/5e1fad9c-5c7a-4147-9431-b792f19da53f" + (reference "U22") (unit 1) (value "d_or") (footprint "") + ) + (path "/b27742f7-78d2-4727-b15b-c9d144d6840b" + (reference "U23") (unit 1) (value "d_or") (footprint "") + ) + (path "/a705abcc-089b-40f2-8eaa-aee3384b0dcf" + (reference "U24") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN7497_sub/SN7497_sub.proj b/library/SubcircuitLibrary/SN7497_sub/SN7497_sub.proj new file mode 100644 index 000000000..4f66c0bbe --- /dev/null +++ b/library/SubcircuitLibrary/SN7497_sub/SN7497_sub.proj @@ -0,0 +1 @@ +schematicFile SN7497_sub.kicad_sch diff --git a/library/SubcircuitLibrary/SN7497_sub/SN7497_test.cir b/library/SubcircuitLibrary/SN7497_sub/SN7497_test.cir new file mode 100644 index 000000000..7a9b91edb --- /dev/null +++ b/library/SubcircuitLibrary/SN7497_sub/SN7497_test.cir @@ -0,0 +1,8 @@ +.title KiCad schematic +v1 Net-_U1-Pad1_ GND pulse +U2 GND GND GND GND Net-_U2-Pad5_ Net-_U2-Pad6_ Net-_U2-Pad7_ unconnected-_U2-Pad8_ adc_bridge_4 +U1 Net-_U1-Pad1_ Net-_U1-Pad1_ GND Net-_U1-Pad1_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ adc_bridge_4 +X1 Net-_U1-Pad5_ Net-_U2-Pad7_ Net-_U2-Pad6_ Net-_U2-Pad5_ Net-_U1-Pad8_ Net-_U1-Pad7_ Net-_U1-Pad6_ Net-_U3-Pad1_ SN7497 +U4 Net-_U3-Pad2_ plot_v1 +U3 Net-_U3-Pad1_ Net-_U3-Pad2_ dac_bridge_1 +.end diff --git a/library/SubcircuitLibrary/SN7497_sub/SN7497_test.kicad_sch b/library/SubcircuitLibrary/SN7497_sub/SN7497_test.kicad_sch new file mode 100644 index 000000000..f033c60de --- /dev/null +++ b/library/SubcircuitLibrary/SN7497_sub/SN7497_test.kicad_sch @@ -0,0 +1,654 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid c823f434-7bbd-43ef-949b-5f106769410f) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 0 7.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_4_0_1" + (rectangle (start -8.89 8.89) (end 8.89 -5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_4_1_1" + (pin input line (at -13.97 5.08 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 2.54 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 0 0) (length 5.08) + (name "IN3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -13.97 -2.54 0) (length 5.08) + (name "IN4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 5.08 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 5.08) + (name "OUT2" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 0 180) (length 5.08) + (name "OUT3" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -2.54 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN7497" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 2.54 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN7497" (id 1) (at 2.54 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at -6.35 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at -6.35 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN7497_0_1" + (rectangle (start -6.35 7.62) (end 6.35 -8.89) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN7497_1_1" + (pin input line (at -6.35 5.08 180) (length 2.54) + (name "CLK" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 2.54 180) (length 2.54) + (name "B0" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 0 180) (length 2.54) + (name "B1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -2.54 180) (length 2.54) + (name "B2" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -5.08 180) (length 2.54) + (name "B3" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -6.35 -7.62 180) (length 2.54) + (name "B4" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 6.35 -5.08 0) (length 2.54) + (name "B5" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 6.35 5.08 0) (length 2.54) + (name "RATE_OUT" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 72.39 59.69) (diameter 0) (color 0 0 0 0) + (uuid 151d2205-2880-4f2c-9409-4cfd0510bdf8) + ) + (junction (at 72.39 63.5) (diameter 0) (color 0 0 0 0) + (uuid 699fe4a0-56cf-4ebd-bb79-35374d9aa774) + ) + (junction (at 72.39 62.23) (diameter 0) (color 0 0 0 0) + (uuid 7cea4b64-003b-4eee-b843-51f7f50d1678) + ) + (junction (at 72.39 60.96) (diameter 0) (color 0 0 0 0) + (uuid a58ba19c-f3ab-47eb-ad8d-3b22ebb76504) + ) + (junction (at 72.39 64.77) (diameter 0) (color 0 0 0 0) + (uuid a6804faf-9c46-4cbf-95c8-1f1fb2883f2f) + ) + (junction (at 73.66 35.56) (diameter 0) (color 0 0 0 0) + (uuid a78433b7-a11b-47b3-a33b-377e3fdf3fd0) + ) + (junction (at 76.2 35.56) (diameter 0) (color 0 0 0 0) + (uuid d0c13598-5130-43d3-a4e5-bdb1214b6402) + ) + + (wire (pts (xy 128.27 41.91) (xy 128.27 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 021b0144-f2f5-43f6-a4a8-b3e3f173d3da) + ) + (wire (pts (xy 72.39 64.77) (xy 72.39 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03069ad5-7f8c-49cd-a0b2-472c7bb59b6c) + ) + (wire (pts (xy 72.39 62.23) (xy 72.39 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03a9d1b2-ebe9-41c2-9959-d3a9998d043f) + ) + (wire (pts (xy 116.84 30.48) (xy 128.27 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06eb1c92-3689-4be6-a881-d0916bc4fc07) + ) + (wire (pts (xy 73.66 35.56) (xy 76.2 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c61ed6b-a079-4f8f-9e78-204ed6ebb176) + ) + (wire (pts (xy 87.63 59.69) (xy 87.63 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f412218-331c-45b4-bbc4-7cb5b7a9a35d) + ) + (wire (pts (xy 85.09 59.69) (xy 72.39 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1671b86d-9f6e-4d30-92dd-02cccbd602d4) + ) + (wire (pts (xy 88.9 39.37) (xy 85.09 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b03942c-e1ad-4b4f-b5d6-2a0c29af4efc) + ) + (wire (pts (xy 142.24 41.91) (xy 140.97 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e8f4dac-dcf2-48a6-b2d6-543e8ca4339c) + ) + (wire (pts (xy 120.65 39.37) (xy 120.65 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20281384-e8cb-4290-9d24-ff37fe0f7c28) + ) + (wire (pts (xy 123.19 33.02) (xy 128.27 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 213607a3-f07b-4671-a46e-0abb990aedea) + ) + (wire (pts (xy 116.84 39.37) (xy 120.65 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 263f99de-3094-4385-9c64-8d9843e2e2d0) + ) + (wire (pts (xy 72.39 35.56) (xy 73.66 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 299c8582-9dd7-4971-8c0c-c72315ea8daf) + ) + (wire (pts (xy 88.9 36.83) (xy 73.66 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2aea97d8-27a1-4110-afd9-f963ba17dd63) + ) + (wire (pts (xy 86.36 60.96) (xy 72.39 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c6f82f8-b61a-45c8-8505-bc0de9c927d5) + ) + (wire (pts (xy 72.39 60.96) (xy 72.39 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c2c5fe2-0f82-4a0e-9ee0-943cad422bfb) + ) + (wire (pts (xy 116.84 41.91) (xy 128.27 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49ec58b8-751e-4afe-88cd-6cc7e5eac3e5) + ) + (wire (pts (xy 120.65 44.45) (xy 128.27 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d730fe3-25a1-4c35-9fdf-a22efea4fda7) + ) + (wire (pts (xy 88.9 57.15) (xy 86.36 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 598e371a-ca42-4edf-987a-5d47698a90f7) + ) + (wire (pts (xy 88.9 63.5) (xy 72.39 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d0dc0bf-0f08-48ae-a469-658560ea9b1d) + ) + (wire (pts (xy 88.9 62.23) (xy 88.9 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d2a1f58-cc1a-42d3-bcd8-6dab5411bf88) + ) + (wire (pts (xy 116.84 59.69) (xy 118.11 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60606e2f-e422-49f9-a615-503ff6e18ce6) + ) + (wire (pts (xy 72.39 63.5) (xy 72.39 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 669b9cdd-e2dd-4ff8-9bcc-2bb401b615bb) + ) + (wire (pts (xy 88.9 35.56) (xy 88.9 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c640455-eb02-4ff0-ad7f-8ec2f9831f1e) + ) + (wire (pts (xy 123.19 62.23) (xy 123.19 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6da74ef8-fa6d-42bb-acf8-9bd3ad7ea12c) + ) + (wire (pts (xy 76.2 35.56) (xy 88.9 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6eb17cda-3b79-4569-9b1d-39d500fddad6) + ) + (wire (pts (xy 119.38 57.15) (xy 119.38 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ee1e402-9900-47e7-9357-e573f044052b) + ) + (wire (pts (xy 118.11 59.69) (xy 118.11 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 703bd158-4310-432f-a4f1-07a2721116f7) + ) + (wire (pts (xy 76.2 41.91) (xy 76.2 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70687a71-6d57-4cb4-8a02-485145c84cd2) + ) + (wire (pts (xy 142.24 41.91) (xy 142.24 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71a3cafe-d0c4-453d-b03d-78ee2abddf5d) + ) + (wire (pts (xy 72.39 64.77) (xy 88.9 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74083df3-499b-4447-9d50-e4a6db5c98f0) + ) + (wire (pts (xy 72.39 59.69) (xy 72.39 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81421acb-9a68-44c4-8827-0f013a22fbad) + ) + (wire (pts (xy 87.63 62.23) (xy 72.39 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86ee21ff-4a01-40b1-a17e-0ae60d084ed8) + ) + (wire (pts (xy 118.11 35.56) (xy 128.27 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e38a3aa-b13e-425b-90f0-7b1715436647) + ) + (wire (pts (xy 140.97 41.91) (xy 140.97 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa5e0f6b-612e-4045-aea4-9c7373e2105f) + ) + (wire (pts (xy 73.66 36.83) (xy 73.66 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad621fde-105f-4daf-a8ef-08349dff536f) + ) + (wire (pts (xy 128.27 44.45) (xy 128.27 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae37afb4-46c5-44a7-a2a1-517b9e304ee2) + ) + (wire (pts (xy 116.84 34.29) (xy 116.84 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae76edca-4876-407e-a8c4-4abc818fd996) + ) + (wire (pts (xy 119.38 38.1) (xy 128.27 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1d543fc-2aeb-4ec8-be86-688253dbf534) + ) + (wire (pts (xy 121.92 36.83) (xy 121.92 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b75d1208-52b4-4a58-b758-dc8216a351a4) + ) + (wire (pts (xy 121.92 46.99) (xy 142.24 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c206ca83-fb66-4faf-ab11-ef018365fa0d) + ) + (wire (pts (xy 116.84 36.83) (xy 121.92 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf57393e-9a44-4f15-be28-02c743dc4588) + ) + (wire (pts (xy 88.9 59.69) (xy 87.63 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2a33200-cbf2-4b6f-8ef2-13992fa7ad15) + ) + (wire (pts (xy 88.9 41.91) (xy 76.2 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e43f4afe-4358-4ac9-8ced-89c5eb86d646) + ) + (wire (pts (xy 116.84 57.15) (xy 119.38 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e98a65c1-cbe8-492e-b8ca-79e5fa19a22c) + ) + (wire (pts (xy 140.97 30.48) (xy 156.21 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eae3ff7b-a788-4ece-9ba4-490a9374ef3c) + ) + (wire (pts (xy 116.84 62.23) (xy 123.19 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec3152c8-0143-4f40-bc25-6ac82c83e369) + ) + (wire (pts (xy 86.36 57.15) (xy 86.36 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0fb1823-53bb-4bfe-81e3-74a5abeec651) + ) + (wire (pts (xy 85.09 39.37) (xy 85.09 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fca8a887-0dcd-4527-849e-ac5409506015) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 185.42 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1701b680-321c-4b0d-affe-39fc5e1c3baf) + (property "Reference" "U4" (id 0) (at 189.23 21.59 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 189.23 25.4 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 185.42 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 185.42 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 6ae04bf3-d74d-4764-aebb-7bd8413a5073)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 72.39 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 198b428f-e083-45cf-90ff-496e678cc9e7) + (property "Reference" "#PWR0101" (id 0) (at 72.39 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 72.39 69.85 0)) + (property "Footprint" "" (id 2) (at 72.39 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 72.39 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 427af4ac-1d0e-4593-9161-5a13d5fb243f)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 102.87 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 61f9edb4-1b69-4768-826e-87f692af7686) + (property "Reference" "U2" (id 0) (at 102.87 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 102.87 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 102.87 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 08bb55bc-cf92-49c3-a6ec-0956db144db4)) + (pin "2" (uuid 8d036005-61b6-49c0-b45a-005eed401f70)) + (pin "3" (uuid a1b81942-1c7f-4873-9c13-59e59f4cbfbe)) + (pin "4" (uuid 176053f0-d6bf-4ca5-9719-db9fce45dba4)) + (pin "5" (uuid 1312558b-25a5-4864-8824-a227ce03a3ea)) + (pin "6" (uuid 203c80e3-fc6a-4a86-b3f5-439c79eb1435)) + (pin "7" (uuid d918491a-06ae-4d6d-b63b-5b0e86511858)) + (pin "8" (uuid 58810a25-3837-4905-b1d6-8c817b439e47)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 72.39 46.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d69b043-1dfe-4fba-8deb-cd635b5fd8dc) + (property "Reference" "v1" (id 0) (at 77.47 43.815 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pulse" (id 1) (at 77.47 47.625 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 77.47 51.435 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 72.39 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 691793fb-1e55-42ec-a239-0426bdd665f8)) + (pin "2" (uuid 468d6c59-d994-427a-86e8-e64607cb4efe)) + ) + + (symbol (lib_id "eSim_Subckt:SN7497") (at 134.62 35.56 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 892dcd2e-2bd6-4f00-a8f4-ab8070446683) + (property "Reference" "X1" (id 0) (at 134.62 33.02 0)) + (property "Value" "SN7497" (id 1) (at 134.62 35.56 0)) + (property "Footprint" "" (id 2) (at 128.27 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 128.27 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 578050a5-12d3-4a13-83e4-26ca7b252008)) + (pin "2" (uuid 7738d271-e932-4863-b027-2efff48cf2e9)) + (pin "3" (uuid f8f22ea5-80d7-41c2-b550-886e099ec442)) + (pin "4" (uuid 6fca6f7d-b981-4313-96bc-2d674458b9b2)) + (pin "5" (uuid 3e852b31-8a8e-461e-8582-fce7f162b39d)) + (pin "6" (uuid 3afe435b-1e6c-4271-a42a-199fbcdaf7d9)) + (pin "7" (uuid 70300dba-0ee7-4854-a4db-8eeea3f18e33)) + (pin "8" (uuid 6989c245-57d4-47ef-a570-97e084c2e766)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_4") (at 102.87 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 91e8670a-b1c2-4da9-ba49-d91167a7554e) + (property "Reference" "U1" (id 0) (at 102.87 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_4" (id 1) (at 102.87 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 102.87 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 102.87 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b1538341-17e1-4f4a-b8d8-f636fa8081b0)) + (pin "2" (uuid 73711b59-c16d-4f43-9935-8dfe3ba79624)) + (pin "3" (uuid 07250529-3649-4f0c-9534-0a015df68c9a)) + (pin "4" (uuid f8a2afd3-fa4a-4928-94d3-e8b7174ebc3d)) + (pin "5" (uuid 40024c73-bd89-49dd-b9a8-0f7d212a9085)) + (pin "6" (uuid 87e7ac19-7b5c-4051-9232-c01e30dc6e9f)) + (pin "7" (uuid 0045e288-8409-4d55-8ddf-08cb65dae225)) + (pin "8" (uuid dafc9d74-6a45-4a85-9251-2782fb735643)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 171.45 31.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d02e463d-3312-426e-b35c-b1c45b4997a1) + (property "Reference" "U3" (id 0) (at 170.815 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 170.815 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8cf67a65-898f-439d-ad3a-d51202115456)) + (pin "2" (uuid 89627180-d4ae-471a-9a08-4b0b77e6e851)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/198b428f-e083-45cf-90ff-496e678cc9e7" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/91e8670a-b1c2-4da9-ba49-d91167a7554e" + (reference "U1") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/61f9edb4-1b69-4768-826e-87f692af7686" + (reference "U2") (unit 1) (value "adc_bridge_4") (footprint "") + ) + (path "/d02e463d-3312-426e-b35c-b1c45b4997a1" + (reference "U3") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/1701b680-321c-4b0d-affe-39fc5e1c3baf" + (reference "U4") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/892dcd2e-2bd6-4f00-a8f4-ab8070446683" + (reference "X1") (unit 1) (value "SN7497") (footprint "") + ) + (path "/6d69b043-1dfe-4fba-8deb-cd635b5fd8dc" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN7497_sub/SN7497_test.proj b/library/SubcircuitLibrary/SN7497_sub/SN7497_test.proj new file mode 100644 index 000000000..bfe128004 --- /dev/null +++ b/library/SubcircuitLibrary/SN7497_sub/SN7497_test.proj @@ -0,0 +1 @@ +schematicFile SN7497_test.kicad_sch diff --git a/library/SubcircuitLibrary/SN74ABT337/NAND_3-cache.lib b/library/SubcircuitLibrary/SN74ABT337/NAND_3-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/NAND_3-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74ABT337/NAND_3.bak b/library/SubcircuitLibrary/SN74ABT337/NAND_3.bak new file mode 100644 index 000000000..d9890c5d1 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/NAND_3.bak @@ -0,0 +1,287 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684AF360 +P 5550 2300 +F 0 "SC3" H 5600 2600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5850 2387 50 0000 R CNN +F 2 "" H 5550 800 50 0001 C CNN +F 3 "" H 5550 2300 50 0001 C CNN + 1 5550 2300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 684AF39D +P 5550 3100 +F 0 "SC4" H 5600 3400 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5850 3187 50 0000 R CNN +F 2 "" H 5550 1600 50 0001 C CNN +F 3 "" H 5550 3100 50 0001 C CNN + 1 5550 3100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC5 +U 1 1 684AF420 +P 5950 3800 +F 0 "SC5" H 6000 4100 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6250 3887 50 0000 R CNN +F 2 "" H 5950 2300 50 0001 C CNN +F 3 "" H 5950 3800 50 0001 C CNN + 1 5950 3800 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF50C +P 4450 4700 +F 0 "SC1" H 4500 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4750 4787 50 0000 R CNN +F 2 "" H 4450 3200 50 0001 C CNN +F 3 "" H 4450 4700 50 0001 C CNN + 1 4450 4700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684AF577 +P 5500 4700 +F 0 "SC2" H 5550 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5800 4787 50 0000 R CNN +F 2 "" H 5500 3200 50 0001 C CNN +F 3 "" H 5500 4700 50 0001 C CNN + 1 5500 4700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC6 +U 1 1 684AF5EC +P 6450 4700 +F 0 "SC6" H 6500 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6750 4787 50 0000 R CNN +F 2 "" H 6450 3200 50 0001 C CNN +F 3 "" H 6450 4700 50 0001 C CNN + 1 6450 4700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF63F +P 3700 4000 +F 0 "U1" H 3750 4100 30 0000 C CNN +F 1 "PORT" H 3700 4000 30 0000 C CNN +F 2 "" H 3700 4000 60 0000 C CNN +F 3 "" H 3700 4000 60 0000 C CNN + 1 3700 4000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF6CC +P 4850 3850 +F 0 "U1" H 4900 3950 30 0000 C CNN +F 1 "PORT" H 4850 3850 30 0000 C CNN +F 2 "" H 4850 3850 60 0000 C CNN +F 3 "" H 4850 3850 60 0000 C CNN + 2 4850 3850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF829 +P 7050 3800 +F 0 "U1" H 7100 3900 30 0000 C CNN +F 1 "PORT" H 7050 3800 30 0000 C CNN +F 2 "" H 7050 3800 60 0000 C CNN +F 3 "" H 7050 3800 60 0000 C CNN + 5 7050 3800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684AF94D +P 7150 4200 +F 0 "U1" H 7200 4300 30 0000 C CNN +F 1 "PORT" H 7150 4200 30 0000 C CNN +F 2 "" H 7150 4200 60 0000 C CNN +F 3 "" H 7150 4200 60 0000 C CNN + 6 7150 4200 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF9FE +P 5100 5200 +F 0 "U1" H 5150 5300 30 0000 C CNN +F 1 "PORT" H 5100 5200 30 0000 C CNN +F 2 "" H 5100 5200 60 0000 C CNN +F 3 "" H 5100 5200 60 0000 C CNN + 3 5100 5200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AFAE6 +P 5500 1750 +F 0 "U1" H 5550 1850 30 0000 C CNN +F 1 "PORT" H 5500 1750 30 0000 C CNN +F 2 "" H 5500 1750 60 0000 C CNN +F 3 "" H 5500 1750 60 0000 C CNN + 4 5500 1750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5650 2300 5800 2300 +Wire Wire Line + 5800 2300 5800 1950 +Wire Wire Line + 5800 1950 5750 1950 +Wire Wire Line + 5750 1750 5750 2000 +Connection ~ 5750 1950 +Wire Wire Line + 5750 2600 5750 2800 +Wire Wire Line + 5650 3100 5800 3100 +Wire Wire Line + 5800 3100 5800 2750 +Wire Wire Line + 5800 2750 5750 2750 +Connection ~ 5750 2750 +Wire Wire Line + 5750 3500 5750 3400 +Wire Wire Line + 5850 3800 5700 3800 +Wire Wire Line + 5700 3800 5700 3450 +Wire Wire Line + 5700 3450 5750 3450 +Connection ~ 5750 3450 +Wire Wire Line + 4650 4400 4650 4300 +Wire Wire Line + 4650 4300 6250 4300 +Wire Wire Line + 6250 4300 6250 4400 +Wire Wire Line + 5700 4400 5700 4300 +Connection ~ 5700 4300 +Wire Wire Line + 5750 4100 5750 4300 +Connection ~ 5750 4300 +Wire Wire Line + 4650 5000 4650 5050 +Wire Wire Line + 4650 5050 6250 5050 +Wire Wire Line + 6250 5050 6250 5000 +Wire Wire Line + 5700 5000 5700 5050 +Connection ~ 5700 5050 +Wire Wire Line + 5350 5200 5350 5050 +Connection ~ 5350 5050 +Wire Wire Line + 4550 4700 4700 4700 +Wire Wire Line + 4700 4700 4700 5050 +Connection ~ 4700 5050 +Wire Wire Line + 5600 4700 5750 4700 +Wire Wire Line + 5750 4700 5750 5050 +Connection ~ 5750 5050 +Wire Wire Line + 6350 4700 6200 4700 +Wire Wire Line + 6200 4700 6200 5050 +Connection ~ 6200 5050 +Wire Wire Line + 4150 2300 4150 4700 +Wire Wire Line + 3950 4000 4150 4000 +Connection ~ 4150 4000 +Wire Wire Line + 5250 2300 4150 2300 +Wire Wire Line + 5250 3100 5200 3100 +Wire Wire Line + 5200 3100 5200 4700 +Wire Wire Line + 6250 3800 6800 3800 +Wire Wire Line + 6750 3800 6750 4700 +Connection ~ 6750 3800 +Wire Wire Line + 5100 3850 5200 3850 +Connection ~ 5200 3850 +Wire Wire Line + 6900 4200 5750 4200 +Connection ~ 5750 4200 +$Comp +L SKY130mode scmode1 +U 1 1 684B00C1 +P 8250 2900 +F 0 "scmode1" H 8250 3050 98 0000 C CNB +F 1 "SKY130mode" H 8250 2800 118 0000 C CNB +F 2 "" H 8250 3050 60 0001 C CNN +F 3 "" H 8250 3050 60 0001 C CNN + 1 8250 2900 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ABT337/NAND_3.cir b/library/SubcircuitLibrary/SN74ABT337/NAND_3.cir new file mode 100644 index 000000000..d9a4458ce --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/NAND_3.cir @@ -0,0 +1,18 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/NAND_3.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sun Jul 6 17:55:34 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC3 Net-_SC2-Pad1_ Net-_SC2-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__pfet_01v8 +SC4 Net-_SC2-Pad1_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__pfet_01v8 +SC5 Net-_SC2-Pad1_ Net-_SC5-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC6 Net-_SC1-Pad3_ Net-_SC5-Pad2_ Net-_SC6-Pad3_ Net-_SC6-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC2-Pad2_ Net-_SC1-Pad2_ Net-_SC6-Pad3_ Net-_SC3-Pad3_ Net-_SC2-Pad1_ Net-_SC5-Pad2_ PORT +scmode1 SKY130mode +SC2 Net-_SC2-Pad1_ Net-_SC2-Pad2_ Net-_SC1-Pad1_ Net-_SC1-Pad1_ sky130_fd_pr__nfet_01v8 + +.end diff --git a/library/SubcircuitLibrary/SN74ABT337/NAND_3.cir.out b/library/SubcircuitLibrary/SN74ABT337/NAND_3.cir.out new file mode 100644 index 000000000..bcb009b3c --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/NAND_3.cir.out @@ -0,0 +1,26 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_3/nand_3.cir + +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +xsc3 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc4 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc2-pad1_ net-_sc5-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc1-pad3_ net-_sc5-pad2_ net-_sc6-pad3_ net-_sc6-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc2-pad2_ net-_sc1-pad2_ net-_sc6-pad3_ net-_sc3-pad3_ net-_sc2-pad1_ net-_sc5-pad2_ port +* s c m o d e +xsc2 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74ABT337/NAND_3.pro b/library/SubcircuitLibrary/SN74ABT337/NAND_3.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/NAND_3.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74ABT337/NAND_3.sch b/library/SubcircuitLibrary/SN74ABT337/NAND_3.sch new file mode 100644 index 000000000..eb96f8eac --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/NAND_3.sch @@ -0,0 +1,289 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:NAND_3-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684AF360 +P 4200 2350 +F 0 "SC3" H 4250 2650 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4500 2437 50 0000 R CNN +F 2 "" H 4200 850 50 0001 C CNN +F 3 "" H 4200 2350 50 0001 C CNN + 1 4200 2350 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 684AF39D +P 5250 2350 +F 0 "SC4" H 5300 2650 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5550 2437 50 0000 R CNN +F 2 "" H 5250 850 50 0001 C CNN +F 3 "" H 5250 2350 50 0001 C CNN + 1 5250 2350 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC5 +U 1 1 684AF420 +P 6100 2350 +F 0 "SC5" H 6150 2650 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6400 2437 50 0000 R CNN +F 2 "" H 6100 850 50 0001 C CNN +F 3 "" H 6100 2350 50 0001 C CNN + 1 6100 2350 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF50C +P 5250 4000 +F 0 "SC1" H 5300 4300 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5550 4087 50 0000 R CNN +F 2 "" H 5250 2500 50 0001 C CNN +F 3 "" H 5250 4000 50 0001 C CNN + 1 5250 4000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC6 +U 1 1 684AF5EC +P 5650 4700 +F 0 "SC6" H 5700 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5950 4787 50 0000 R CNN +F 2 "" H 5650 3200 50 0001 C CNN +F 3 "" H 5650 4700 50 0001 C CNN + 1 5650 4700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF63F +P 3450 2350 +F 0 "U1" H 3500 2450 30 0000 C CNN +F 1 "PORT" H 3450 2350 30 0000 C CNN +F 2 "" H 3450 2350 60 0000 C CNN +F 3 "" H 3450 2350 60 0000 C CNN + 1 3450 2350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF6CC +P 4500 4000 +F 0 "U1" H 4550 4100 30 0000 C CNN +F 1 "PORT" H 4500 4000 30 0000 C CNN +F 2 "" H 4500 4000 60 0000 C CNN +F 3 "" H 4500 4000 60 0000 C CNN + 2 4500 4000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF829 +P 6300 2800 +F 0 "U1" H 6350 2900 30 0000 C CNN +F 1 "PORT" H 6300 2800 30 0000 C CNN +F 2 "" H 6300 2800 60 0000 C CNN +F 3 "" H 6300 2800 60 0000 C CNN + 5 6300 2800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684AF94D +P 6850 2350 +F 0 "U1" H 6900 2450 30 0000 C CNN +F 1 "PORT" H 6850 2350 30 0000 C CNN +F 2 "" H 6850 2350 60 0000 C CNN +F 3 "" H 6850 2350 60 0000 C CNN + 6 6850 2350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF9FE +P 5100 5200 +F 0 "U1" H 5150 5300 30 0000 C CNN +F 1 "PORT" H 5100 5200 30 0000 C CNN +F 2 "" H 5100 5200 60 0000 C CNN +F 3 "" H 5100 5200 60 0000 C CNN + 3 5100 5200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AFAE6 +P 5500 1750 +F 0 "U1" H 5550 1850 30 0000 C CNN +F 1 "PORT" H 5500 1750 30 0000 C CNN +F 2 "" H 5500 1750 60 0000 C CNN +F 3 "" H 5500 1750 60 0000 C CNN + 4 5500 1750 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B00C1 +P 8250 2900 +F 0 "scmode1" H 8250 3050 98 0000 C CNB +F 1 "SKY130mode" H 8250 2800 118 0000 C CNB +F 2 "" H 8250 3050 60 0001 C CNN +F 3 "" H 8250 3050 60 0001 C CNN + 1 8250 2900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684AF577 +P 5250 3250 +F 0 "SC2" H 5300 3550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5550 3337 50 0000 R CNN +F 2 "" H 5250 1750 50 0001 C CNN +F 3 "" H 5250 3250 50 0001 C CNN + 1 5250 3250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4400 2050 4400 2000 +Wire Wire Line + 4400 2000 5900 2000 +Wire Wire Line + 5900 2000 5900 2050 +Wire Wire Line + 5450 2050 5450 2000 +Connection ~ 5450 2000 +Wire Wire Line + 5750 1750 5750 2000 +Connection ~ 5750 2000 +Wire Wire Line + 4300 2350 4450 2350 +Wire Wire Line + 4450 2350 4450 2000 +Connection ~ 4450 2000 +Wire Wire Line + 5350 2350 5500 2350 +Wire Wire Line + 5500 2350 5500 2000 +Connection ~ 5500 2000 +Wire Wire Line + 6000 2350 5850 2350 +Wire Wire Line + 5850 2350 5850 2000 +Connection ~ 5850 2000 +Wire Wire Line + 4400 2650 4400 2700 +Wire Wire Line + 4400 2700 5900 2700 +Wire Wire Line + 5900 2700 5900 2650 +Wire Wire Line + 5450 2650 5450 2950 +Connection ~ 5450 2700 +Wire Wire Line + 6050 2800 5450 2800 +Connection ~ 5450 2800 +Wire Wire Line + 3700 2350 3900 2350 +Wire Wire Line + 3850 2350 3850 3250 +Wire Wire Line + 3850 3250 4950 3250 +Wire Wire Line + 4950 2350 4800 2350 +Wire Wire Line + 4800 2350 4800 4000 +Wire Wire Line + 4750 4000 4950 4000 +Wire Wire Line + 5350 3250 5500 3250 +Wire Wire Line + 5500 3250 5500 3600 +Wire Wire Line + 5500 3600 5450 3600 +Wire Wire Line + 5450 3550 5450 3700 +Connection ~ 5450 3600 +Wire Wire Line + 6400 2350 6600 2350 +Wire Wire Line + 6450 2350 6450 4700 +Wire Wire Line + 6450 4700 5950 4700 +Connection ~ 6450 2350 +Wire Wire Line + 5350 4000 5500 4000 +Wire Wire Line + 5500 4000 5500 4350 +Wire Wire Line + 5500 4350 5450 4350 +Wire Wire Line + 5450 4300 5450 4400 +Connection ~ 5450 4350 +Connection ~ 4800 4000 +Wire Wire Line + 5450 5000 5450 5200 +Wire Wire Line + 5450 5200 5350 5200 +Wire Wire Line + 5550 4700 5400 4700 +Wire Wire Line + 5400 4700 5400 5050 +Wire Wire Line + 5400 5050 5450 5050 +Connection ~ 5450 5050 +Connection ~ 3850 2350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ABT337/NAND_3.sub b/library/SubcircuitLibrary/SN74ABT337/NAND_3.sub new file mode 100644 index 000000000..5d17f8353 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/NAND_3.sub @@ -0,0 +1,20 @@ +* Subcircuit NAND_3 +.subckt NAND_3 net-_sc2-pad2_ net-_sc1-pad2_ net-_sc6-pad3_ net-_sc3-pad3_ net-_sc2-pad1_ net-_sc5-pad2_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_3/nand_3.cir +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +xsc3 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc4 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc2-pad1_ net-_sc5-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc1-pad3_ net-_sc5-pad2_ net-_sc6-pad3_ net-_sc6-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +xsc2 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* Control Statements + +.ends NAND_3 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ABT337/NAND_3_Previous_Values.xml b/library/SubcircuitLibrary/SN74ABT337/NAND_3_Previous_Values.xml new file mode 100644 index 000000000..c0934485a --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/NAND_3_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ABT337/SN74ABT337-cache.lib b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337-cache.lib new file mode 100644 index 000000000..bec1446a2 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337-cache.lib @@ -0,0 +1,95 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# TFF_SR +# +DEF TFF_SR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "TFF_SR" 50 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -250 200 350 -200 0 1 0 N +X Vdd 1 -450 150 200 R 50 50 1 1 I +X T 2 -450 50 200 R 50 50 1 1 I +X clk 3 -450 -50 200 R 50 50 1 1 I +X Gnd 4 550 -150 200 L 50 50 1 1 I +X set 5 550 150 200 L 50 50 1 1 I +X Rst 6 -450 -150 200 R 50 50 1 1 I +X Q 7 550 50 200 L 50 50 1 1 O +X Q_bar 8 550 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# tri_state +# +DEF tri_state X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "tri_state" 50 -200 60 H V C CNN +F2 "" 1450 -500 60 H I C CNN +F3 "" 1450 -500 60 H I C CNN +DRAW +C -50 150 50 0 1 0 N +P 2 0 1 0 -250 150 250 0 N +P 3 0 1 0 -250 150 -250 -150 250 0 N +X in 1 -450 0 200 R 50 50 1 1 I +X Vdd 2 -450 100 200 R 50 50 1 1 I +X Gnd 3 -450 -100 200 R 50 50 1 1 I +X En 4 -50 400 200 D 50 50 1 1 I +X out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.bak b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.bak new file mode 100644 index 000000000..ac9943764 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.bak @@ -0,0 +1,546 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN74ABT337-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L TFF_SR X4 +U 1 1 686E156C +P 3200 6550 +F 0 "X4" H 3200 6550 60 0000 C CNN +F 1 "TFF_SR" H 3250 6300 60 0000 C CNN +F 2 "" H 3200 6550 60 0001 C CNN +F 3 "" H 3200 6550 60 0001 C CNN + 1 3200 6550 + 1 0 0 -1 +$EndComp +$Comp +L TFF_SR X3 +U 1 1 686E15A5 +P 3200 5850 +F 0 "X3" H 3200 5850 60 0000 C CNN +F 1 "TFF_SR" H 3250 5600 60 0000 C CNN +F 2 "" H 3200 5850 60 0001 C CNN +F 3 "" H 3200 5850 60 0001 C CNN + 1 3200 5850 + 1 0 0 -1 +$EndComp +$Comp +L TFF_SR X2 +U 1 1 686E1626 +P 3200 5150 +F 0 "X2" H 3200 5150 60 0000 C CNN +F 1 "TFF_SR" H 3250 4900 60 0000 C CNN +F 2 "" H 3200 5150 60 0001 C CNN +F 3 "" H 3200 5150 60 0001 C CNN + 1 3200 5150 + 1 0 0 -1 +$EndComp +$Comp +L TFF_SR X1 +U 1 1 686E167B +P 3200 4400 +F 0 "X1" H 3200 4400 60 0000 C CNN +F 1 "TFF_SR" H 3250 4150 60 0000 C CNN +F 2 "" H 3200 4400 60 0001 C CNN +F 3 "" H 3200 4400 60 0001 C CNN + 1 3200 4400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3750 6500 4250 6500 +Wire Wire Line + 4250 6500 4250 6550 +Wire Wire Line + 4250 6550 4600 6550 +Wire Wire Line + 3750 5800 4600 5800 +Wire Wire Line + 3750 5100 4600 5100 +Wire Wire Line + 3750 4350 4350 4350 +Wire Wire Line + 4350 4350 4350 4400 +Wire Wire Line + 4350 4400 4600 4400 +Wire Wire Line + 2750 4550 2000 4550 +Wire Wire Line + 2750 5300 2550 5300 +Wire Wire Line + 2550 4550 2550 6700 +Connection ~ 2550 4550 +Wire Wire Line + 2550 6000 2750 6000 +Connection ~ 2550 5300 +Wire Wire Line + 2550 6700 2750 6700 +Connection ~ 2550 6000 +Wire Wire Line + 2750 4450 2000 4450 +Wire Wire Line + 2750 5200 2450 5200 +Wire Wire Line + 2450 1600 2450 6600 +Connection ~ 2450 4450 +Wire Wire Line + 2450 5900 2750 5900 +Connection ~ 2450 5200 +Wire Wire Line + 2450 6600 2750 6600 +Connection ~ 2450 5900 +Wire Wire Line + 4600 3700 2450 3700 +Wire Wire Line + 4600 3000 2450 3000 +Connection ~ 2450 3700 +Wire Wire Line + 4600 2300 2450 2300 +Connection ~ 2450 3000 +Wire Wire Line + 4550 1600 2450 1600 +Connection ~ 2450 2300 +Wire Wire Line + 4950 1200 1950 1200 +Wire Wire Line + 5000 1900 4200 1900 +Wire Wire Line + 4200 1200 4200 6150 +Connection ~ 4200 1200 +Wire Wire Line + 4200 2600 5000 2600 +Connection ~ 4200 1900 +Wire Wire Line + 4200 3300 5000 3300 +Connection ~ 4200 2600 +Wire Wire Line + 4200 4000 5000 4000 +Connection ~ 4200 3300 +Wire Wire Line + 4200 4700 5000 4700 +Connection ~ 4200 4000 +Wire Wire Line + 4200 5400 5000 5400 +Connection ~ 4200 4700 +Wire Wire Line + 4200 6150 5000 6150 +Connection ~ 4200 5400 +Wire Wire Line + 4550 1500 1950 1500 +Wire Wire Line + 4600 2200 4350 2200 +Wire Wire Line + 4350 1500 4350 6450 +Connection ~ 4350 1500 +Wire Wire Line + 4350 2900 4600 2900 +Connection ~ 4350 2200 +Wire Wire Line + 4350 3600 4600 3600 +Connection ~ 4350 2900 +Wire Wire Line + 4050 4300 4600 4300 +Connection ~ 4350 3600 +Wire Wire Line + 4050 5000 4600 5000 +Connection ~ 4350 4300 +Wire Wire Line + 3950 5700 4600 5700 +Connection ~ 4350 5000 +Wire Wire Line + 4100 6450 4600 6450 +Connection ~ 4350 5700 +Wire Wire Line + 2750 4250 2750 4100 +Wire Wire Line + 2750 4100 4050 4100 +Wire Wire Line + 4050 4100 4050 4300 +Wire Wire Line + 2750 5000 2750 4900 +Wire Wire Line + 2750 4900 4050 4900 +Wire Wire Line + 4050 4900 4050 5000 +Wire Wire Line + 2750 5700 2750 5600 +Wire Wire Line + 2750 5600 3950 5600 +Wire Wire Line + 3950 5600 3950 5700 +Wire Wire Line + 2750 6400 2750 6250 +Wire Wire Line + 2750 6250 4100 6250 +Wire Wire Line + 4100 6250 4100 6450 +Connection ~ 4350 6450 +Wire Wire Line + 4550 1700 4450 1700 +Wire Wire Line + 4450 1700 4450 7000 +Wire Wire Line + 4450 7000 2000 7000 +Wire Wire Line + 4600 6650 4450 6650 +Connection ~ 4450 6650 +Wire Wire Line + 3750 6700 4450 6700 +Connection ~ 4450 6700 +Wire Wire Line + 4600 5900 4450 5900 +Connection ~ 4450 5900 +Wire Wire Line + 3750 6000 4450 6000 +Connection ~ 4450 6000 +Wire Wire Line + 4600 5200 4450 5200 +Connection ~ 4450 5200 +Wire Wire Line + 3750 5300 4450 5300 +Connection ~ 4450 5300 +Wire Wire Line + 4600 4500 4450 4500 +Connection ~ 4450 4500 +Wire Wire Line + 3750 4550 4450 4550 +Connection ~ 4450 4550 +Wire Wire Line + 4600 3800 4450 3800 +Connection ~ 4450 3800 +Wire Wire Line + 4600 3100 4450 3100 +Connection ~ 4450 3100 +Wire Wire Line + 4600 2400 4450 2400 +Connection ~ 4450 2400 +Wire Wire Line + 2750 5100 2700 5100 +Wire Wire Line + 2750 5800 2650 5800 +Wire Wire Line + 2750 6500 2650 6500 +$Comp +L SKY130mode scmode1 +U 1 1 686E2E86 +P 10300 5750 +F 0 "scmode1" H 10300 5900 98 0000 C CNB +F 1 "SKY130mode" H 10300 5650 118 0000 C CNB +F 2 "" H 10300 5900 60 0001 C CNN +F 3 "" H 10300 5900 60 0001 C CNN + 1 10300 5750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686E2F88 +P 1700 1200 +F 0 "U1" H 1750 1300 30 0000 C CNN +F 1 "PORT" H 1700 1200 30 0000 C CNN +F 2 "" H 1700 1200 60 0000 C CNN +F 3 "" H 1700 1200 60 0000 C CNN + 1 1700 1200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E2FC9 +P 1700 1500 +F 0 "U1" H 1750 1600 30 0000 C CNN +F 1 "PORT" H 1700 1500 30 0000 C CNN +F 2 "" H 1700 1500 60 0000 C CNN +F 3 "" H 1700 1500 60 0000 C CNN + 2 1700 1500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E3231 +P 1750 4450 +F 0 "U1" H 1800 4550 30 0000 C CNN +F 1 "PORT" H 1750 4450 30 0000 C CNN +F 2 "" H 1750 4450 60 0000 C CNN +F 3 "" H 1750 4450 60 0000 C CNN + 3 1750 4450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E3286 +P 1750 4550 +F 0 "U1" H 1800 4650 30 0000 C CNN +F 1 "PORT" H 1750 4550 30 0000 C CNN +F 2 "" H 1750 4550 60 0000 C CNN +F 3 "" H 1750 4550 60 0000 C CNN + 4 1750 4550 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E3374 +P 1750 7000 +F 0 "U1" H 1800 7100 30 0000 C CNN +F 1 "PORT" H 1750 7000 30 0000 C CNN +F 2 "" H 1750 7000 60 0000 C CNN +F 3 "" H 1750 7000 60 0000 C CNN + 5 1750 7000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686E3583 +P 5700 1600 +F 0 "U1" H 5750 1700 30 0000 C CNN +F 1 "PORT" H 5700 1600 30 0000 C CNN +F 2 "" H 5700 1600 60 0000 C CNN +F 3 "" H 5700 1600 60 0000 C CNN + 6 5700 1600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686E365C +P 5750 2300 +F 0 "U1" H 5800 2400 30 0000 C CNN +F 1 "PORT" H 5750 2300 30 0000 C CNN +F 2 "" H 5750 2300 60 0000 C CNN +F 3 "" H 5750 2300 60 0000 C CNN + 7 5750 2300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 686E38DF +P 5750 3000 +F 0 "U1" H 5800 3100 30 0000 C CNN +F 1 "PORT" H 5750 3000 30 0000 C CNN +F 2 "" H 5750 3000 60 0000 C CNN +F 3 "" H 5750 3000 60 0000 C CNN + 8 5750 3000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 686E3947 +P 5750 3700 +F 0 "U1" H 5800 3800 30 0000 C CNN +F 1 "PORT" H 5750 3700 30 0000 C CNN +F 2 "" H 5750 3700 60 0000 C CNN +F 3 "" H 5750 3700 60 0000 C CNN + 9 5750 3700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 686E3A12 +P 5750 4400 +F 0 "U1" H 5800 4500 30 0000 C CNN +F 1 "PORT" H 5750 4400 30 0000 C CNN +F 2 "" H 5750 4400 60 0000 C CNN +F 3 "" H 5750 4400 60 0000 C CNN + 10 5750 4400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 686E3A91 +P 5750 5100 +F 0 "U1" H 5800 5200 30 0000 C CNN +F 1 "PORT" H 5750 5100 30 0000 C CNN +F 2 "" H 5750 5100 60 0000 C CNN +F 3 "" H 5750 5100 60 0000 C CNN + 11 5750 5100 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 686E3B2C +P 5750 5800 +F 0 "U1" H 5800 5900 30 0000 C CNN +F 1 "PORT" H 5750 5800 30 0000 C CNN +F 2 "" H 5750 5800 60 0000 C CNN +F 3 "" H 5750 5800 60 0000 C CNN + 12 5750 5800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 686E3C15 +P 5750 6550 +F 0 "U1" H 5800 6650 30 0000 C CNN +F 1 "PORT" H 5750 6550 30 0000 C CNN +F 2 "" H 5750 6550 60 0000 C CNN +F 3 "" H 5750 6550 60 0000 C CNN + 13 5750 6550 + -1 0 0 -1 +$EndComp +NoConn ~ 3750 4250 +NoConn ~ 3750 4450 +NoConn ~ 3750 5000 +NoConn ~ 3750 5200 +NoConn ~ 3750 5700 +NoConn ~ 3750 5900 +NoConn ~ 3750 6400 +NoConn ~ 3750 6600 +$Comp +L tri_state X5 +U 1 1 686E8300 +P 5000 1600 +F 0 "X5" H 5000 1600 60 0000 C CNN +F 1 "tri_state" H 5050 1400 60 0000 C CNN +F 2 "" H 6450 1100 60 0001 C CNN +F 3 "" H 6450 1100 60 0001 C CNN + 1 5000 1600 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X6 +U 1 1 686E8345 +P 5050 2300 +F 0 "X6" H 5050 2300 60 0000 C CNN +F 1 "tri_state" H 5100 2100 60 0000 C CNN +F 2 "" H 6500 1800 60 0001 C CNN +F 3 "" H 6500 1800 60 0001 C CNN + 1 5050 2300 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X7 +U 1 1 686E83D8 +P 5050 3000 +F 0 "X7" H 5050 3000 60 0000 C CNN +F 1 "tri_state" H 5100 2800 60 0000 C CNN +F 2 "" H 6500 2500 60 0001 C CNN +F 3 "" H 6500 2500 60 0001 C CNN + 1 5050 3000 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X8 +U 1 1 686E844B +P 5050 3700 +F 0 "X8" H 5050 3700 60 0000 C CNN +F 1 "tri_state" H 5100 3500 60 0000 C CNN +F 2 "" H 6500 3200 60 0001 C CNN +F 3 "" H 6500 3200 60 0001 C CNN + 1 5050 3700 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X9 +U 1 1 686E84D2 +P 5050 4400 +F 0 "X9" H 5050 4400 60 0000 C CNN +F 1 "tri_state" H 5100 4200 60 0000 C CNN +F 2 "" H 6500 3900 60 0001 C CNN +F 3 "" H 6500 3900 60 0001 C CNN + 1 5050 4400 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X10 +U 1 1 686E852F +P 5050 5100 +F 0 "X10" H 5050 5100 60 0000 C CNN +F 1 "tri_state" H 5100 4900 60 0000 C CNN +F 2 "" H 6500 4600 60 0001 C CNN +F 3 "" H 6500 4600 60 0001 C CNN + 1 5050 5100 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X11 +U 1 1 686E85EE +P 5050 5800 +F 0 "X11" H 5050 5800 60 0000 C CNN +F 1 "tri_state" H 5100 5600 60 0000 C CNN +F 2 "" H 6500 5300 60 0001 C CNN +F 3 "" H 6500 5300 60 0001 C CNN + 1 5050 5800 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X12 +U 1 1 686E865B +P 5050 6550 +F 0 "X12" H 5050 6550 60 0000 C CNN +F 1 "tri_state" H 5100 6350 60 0000 C CNN +F 2 "" H 6500 6050 60 0001 C CNN +F 3 "" H 6500 6050 60 0001 C CNN + 1 5050 6550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2650 6500 2650 6300 +Wire Wire Line + 2650 6300 2750 6300 +Connection ~ 2750 6300 +Wire Wire Line + 2650 5800 2650 5650 +Wire Wire Line + 2650 5650 2750 5650 +Connection ~ 2750 5650 +Wire Wire Line + 2700 5100 2700 4950 +Wire Wire Line + 2700 4950 2750 4950 +Connection ~ 2750 4950 +Wire Wire Line + 2750 4350 2700 4350 +Wire Wire Line + 2700 4350 2700 4200 +Wire Wire Line + 2700 4200 2750 4200 +Connection ~ 2750 4200 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.cir b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.cir new file mode 100644 index 000000000..75fa83172 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.cir @@ -0,0 +1,24 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Wed Jul 9 20:43:25 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X4 Net-_U1-Pad2_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad5_ ? Net-_U1-Pad4_ Net-_X12-Pad1_ ? TFF_SR +X3 Net-_U1-Pad2_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad5_ ? Net-_U1-Pad4_ Net-_X11-Pad1_ ? TFF_SR +X2 Net-_U1-Pad2_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad5_ ? Net-_U1-Pad4_ Net-_X10-Pad1_ ? TFF_SR +X1 Net-_U1-Pad2_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad5_ ? Net-_U1-Pad4_ Net-_X1-Pad7_ ? TFF_SR +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ PORT +X5 Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad5_ Net-_U1-Pad1_ Net-_U1-Pad6_ tri_state +X6 Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad5_ Net-_U1-Pad1_ Net-_U1-Pad7_ tri_state +X7 Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad5_ Net-_U1-Pad1_ Net-_U1-Pad8_ tri_state +X8 Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad5_ Net-_U1-Pad1_ Net-_U1-Pad9_ tri_state +X9 Net-_X1-Pad7_ Net-_U1-Pad2_ Net-_U1-Pad5_ Net-_U1-Pad1_ Net-_U1-Pad10_ tri_state +X10 Net-_X10-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad5_ Net-_U1-Pad1_ Net-_U1-Pad11_ tri_state +X11 Net-_X11-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad5_ Net-_U1-Pad1_ Net-_U1-Pad12_ tri_state +X12 Net-_X12-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad5_ Net-_U1-Pad1_ Net-_U1-Pad13_ tri_state + +.end diff --git a/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.cir.out b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.cir.out new file mode 100644 index 000000000..3aa5188f9 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.cir.out @@ -0,0 +1,34 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/sn74abt337/sn74abt337.cir + +.include TFF_SR.sub +.include tri_state.sub +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +x4 net-_u1-pad2_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad5_ ? net-_u1-pad4_ net-_x12-pad1_ ? TFF_SR +x3 net-_u1-pad2_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad5_ ? net-_u1-pad4_ net-_x11-pad1_ ? TFF_SR +x2 net-_u1-pad2_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad5_ ? net-_u1-pad4_ net-_x10-pad1_ ? TFF_SR +x1 net-_u1-pad2_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad5_ ? net-_u1-pad4_ net-_x1-pad7_ ? TFF_SR +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ port +x5 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad6_ tri_state +x6 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad7_ tri_state +x7 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad8_ tri_state +x8 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad9_ tri_state +x9 net-_x1-pad7_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad10_ tri_state +x10 net-_x10-pad1_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad11_ tri_state +x11 net-_x11-pad1_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad12_ tri_state +x12 net-_x12-pad1_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad13_ tri_state +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.pro b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.sch b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.sch new file mode 100644 index 000000000..0345b9554 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.sch @@ -0,0 +1,546 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN74ABT337-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L TFF_SR X4 +U 1 1 686E156C +P 3200 6550 +F 0 "X4" H 3200 6550 60 0000 C CNN +F 1 "TFF_SR" H 3250 6300 60 0000 C CNN +F 2 "" H 3200 6550 60 0001 C CNN +F 3 "" H 3200 6550 60 0001 C CNN + 1 3200 6550 + 1 0 0 -1 +$EndComp +$Comp +L TFF_SR X3 +U 1 1 686E15A5 +P 3200 5850 +F 0 "X3" H 3200 5850 60 0000 C CNN +F 1 "TFF_SR" H 3250 5600 60 0000 C CNN +F 2 "" H 3200 5850 60 0001 C CNN +F 3 "" H 3200 5850 60 0001 C CNN + 1 3200 5850 + 1 0 0 -1 +$EndComp +$Comp +L TFF_SR X2 +U 1 1 686E1626 +P 3200 5150 +F 0 "X2" H 3200 5150 60 0000 C CNN +F 1 "TFF_SR" H 3250 4900 60 0000 C CNN +F 2 "" H 3200 5150 60 0001 C CNN +F 3 "" H 3200 5150 60 0001 C CNN + 1 3200 5150 + 1 0 0 -1 +$EndComp +$Comp +L TFF_SR X1 +U 1 1 686E167B +P 3200 4400 +F 0 "X1" H 3200 4400 60 0000 C CNN +F 1 "TFF_SR" H 3250 4150 60 0000 C CNN +F 2 "" H 3200 4400 60 0001 C CNN +F 3 "" H 3200 4400 60 0001 C CNN + 1 3200 4400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3750 6500 4250 6500 +Wire Wire Line + 4250 6500 4250 6550 +Wire Wire Line + 4250 6550 4600 6550 +Wire Wire Line + 3750 5800 4600 5800 +Wire Wire Line + 3750 5100 4600 5100 +Wire Wire Line + 3750 4350 4350 4350 +Wire Wire Line + 4350 4350 4350 4400 +Wire Wire Line + 4350 4400 4600 4400 +Wire Wire Line + 2750 4550 2000 4550 +Wire Wire Line + 2750 5300 2550 5300 +Wire Wire Line + 2550 4550 2550 6700 +Connection ~ 2550 4550 +Wire Wire Line + 2550 6000 2750 6000 +Connection ~ 2550 5300 +Wire Wire Line + 2550 6700 2750 6700 +Connection ~ 2550 6000 +Wire Wire Line + 2750 4450 2000 4450 +Wire Wire Line + 2750 5200 2450 5200 +Wire Wire Line + 2450 1600 2450 6600 +Connection ~ 2450 4450 +Wire Wire Line + 2450 5900 2750 5900 +Connection ~ 2450 5200 +Wire Wire Line + 2450 6600 2750 6600 +Connection ~ 2450 5900 +Wire Wire Line + 4600 3700 2450 3700 +Wire Wire Line + 4600 3000 2450 3000 +Connection ~ 2450 3700 +Wire Wire Line + 4600 2300 2450 2300 +Connection ~ 2450 3000 +Wire Wire Line + 4550 1600 2450 1600 +Connection ~ 2450 2300 +Wire Wire Line + 4950 1200 1950 1200 +Wire Wire Line + 5000 1900 4200 1900 +Wire Wire Line + 4200 1200 4200 6150 +Connection ~ 4200 1200 +Wire Wire Line + 4200 2600 5000 2600 +Connection ~ 4200 1900 +Wire Wire Line + 4200 3300 5000 3300 +Connection ~ 4200 2600 +Wire Wire Line + 4200 4000 5000 4000 +Connection ~ 4200 3300 +Wire Wire Line + 4200 4700 5000 4700 +Connection ~ 4200 4000 +Wire Wire Line + 4200 5400 5000 5400 +Connection ~ 4200 4700 +Wire Wire Line + 4200 6150 5000 6150 +Connection ~ 4200 5400 +Wire Wire Line + 4550 1500 1950 1500 +Wire Wire Line + 4600 2200 4350 2200 +Wire Wire Line + 4350 1500 4350 6450 +Connection ~ 4350 1500 +Wire Wire Line + 4350 2900 4600 2900 +Connection ~ 4350 2200 +Wire Wire Line + 4350 3600 4600 3600 +Connection ~ 4350 2900 +Wire Wire Line + 4050 4300 4600 4300 +Connection ~ 4350 3600 +Wire Wire Line + 4050 5000 4600 5000 +Connection ~ 4350 4300 +Wire Wire Line + 3950 5700 4600 5700 +Connection ~ 4350 5000 +Wire Wire Line + 4100 6450 4600 6450 +Connection ~ 4350 5700 +Wire Wire Line + 2750 4250 2750 4100 +Wire Wire Line + 2750 4100 4050 4100 +Wire Wire Line + 4050 4100 4050 4300 +Wire Wire Line + 2750 5000 2750 4900 +Wire Wire Line + 2750 4900 4050 4900 +Wire Wire Line + 4050 4900 4050 5000 +Wire Wire Line + 2750 5700 2750 5600 +Wire Wire Line + 2750 5600 3950 5600 +Wire Wire Line + 3950 5600 3950 5700 +Wire Wire Line + 2750 6400 2750 6250 +Wire Wire Line + 2750 6250 4100 6250 +Wire Wire Line + 4100 6250 4100 6450 +Connection ~ 4350 6450 +Wire Wire Line + 4550 1700 4450 1700 +Wire Wire Line + 4450 1700 4450 7000 +Wire Wire Line + 4450 7000 2000 7000 +Wire Wire Line + 4600 6650 4450 6650 +Connection ~ 4450 6650 +Wire Wire Line + 3750 6700 4450 6700 +Connection ~ 4450 6700 +Wire Wire Line + 4600 5900 4450 5900 +Connection ~ 4450 5900 +Wire Wire Line + 3750 6000 4450 6000 +Connection ~ 4450 6000 +Wire Wire Line + 4600 5200 4450 5200 +Connection ~ 4450 5200 +Wire Wire Line + 3750 5300 4450 5300 +Connection ~ 4450 5300 +Wire Wire Line + 4600 4500 4450 4500 +Connection ~ 4450 4500 +Wire Wire Line + 3750 4550 4450 4550 +Connection ~ 4450 4550 +Wire Wire Line + 4600 3800 4450 3800 +Connection ~ 4450 3800 +Wire Wire Line + 4600 3100 4450 3100 +Connection ~ 4450 3100 +Wire Wire Line + 4600 2400 4450 2400 +Connection ~ 4450 2400 +Wire Wire Line + 2750 5100 2700 5100 +Wire Wire Line + 2750 5800 2650 5800 +Wire Wire Line + 2750 6500 2650 6500 +$Comp +L SKY130mode scmode1 +U 1 1 686E2E86 +P 1800 3350 +F 0 "scmode1" H 1800 3500 98 0000 C CNB +F 1 "SKY130mode" H 1800 3250 118 0000 C CNB +F 2 "" H 1800 3500 60 0001 C CNN +F 3 "" H 1800 3500 60 0001 C CNN + 1 1800 3350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686E2F88 +P 1700 1200 +F 0 "U1" H 1750 1300 30 0000 C CNN +F 1 "PORT" H 1700 1200 30 0000 C CNN +F 2 "" H 1700 1200 60 0000 C CNN +F 3 "" H 1700 1200 60 0000 C CNN + 1 1700 1200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E2FC9 +P 1700 1500 +F 0 "U1" H 1750 1600 30 0000 C CNN +F 1 "PORT" H 1700 1500 30 0000 C CNN +F 2 "" H 1700 1500 60 0000 C CNN +F 3 "" H 1700 1500 60 0000 C CNN + 2 1700 1500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E3231 +P 1750 4450 +F 0 "U1" H 1800 4550 30 0000 C CNN +F 1 "PORT" H 1750 4450 30 0000 C CNN +F 2 "" H 1750 4450 60 0000 C CNN +F 3 "" H 1750 4450 60 0000 C CNN + 3 1750 4450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E3286 +P 1750 4550 +F 0 "U1" H 1800 4650 30 0000 C CNN +F 1 "PORT" H 1750 4550 30 0000 C CNN +F 2 "" H 1750 4550 60 0000 C CNN +F 3 "" H 1750 4550 60 0000 C CNN + 4 1750 4550 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E3374 +P 1750 7000 +F 0 "U1" H 1800 7100 30 0000 C CNN +F 1 "PORT" H 1750 7000 30 0000 C CNN +F 2 "" H 1750 7000 60 0000 C CNN +F 3 "" H 1750 7000 60 0000 C CNN + 5 1750 7000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686E3583 +P 5700 1600 +F 0 "U1" H 5750 1700 30 0000 C CNN +F 1 "PORT" H 5700 1600 30 0000 C CNN +F 2 "" H 5700 1600 60 0000 C CNN +F 3 "" H 5700 1600 60 0000 C CNN + 6 5700 1600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686E365C +P 5750 2300 +F 0 "U1" H 5800 2400 30 0000 C CNN +F 1 "PORT" H 5750 2300 30 0000 C CNN +F 2 "" H 5750 2300 60 0000 C CNN +F 3 "" H 5750 2300 60 0000 C CNN + 7 5750 2300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 686E38DF +P 5750 3000 +F 0 "U1" H 5800 3100 30 0000 C CNN +F 1 "PORT" H 5750 3000 30 0000 C CNN +F 2 "" H 5750 3000 60 0000 C CNN +F 3 "" H 5750 3000 60 0000 C CNN + 8 5750 3000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 686E3947 +P 5750 3700 +F 0 "U1" H 5800 3800 30 0000 C CNN +F 1 "PORT" H 5750 3700 30 0000 C CNN +F 2 "" H 5750 3700 60 0000 C CNN +F 3 "" H 5750 3700 60 0000 C CNN + 9 5750 3700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 686E3A12 +P 5750 4400 +F 0 "U1" H 5800 4500 30 0000 C CNN +F 1 "PORT" H 5750 4400 30 0000 C CNN +F 2 "" H 5750 4400 60 0000 C CNN +F 3 "" H 5750 4400 60 0000 C CNN + 10 5750 4400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 686E3A91 +P 5750 5100 +F 0 "U1" H 5800 5200 30 0000 C CNN +F 1 "PORT" H 5750 5100 30 0000 C CNN +F 2 "" H 5750 5100 60 0000 C CNN +F 3 "" H 5750 5100 60 0000 C CNN + 11 5750 5100 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 686E3B2C +P 5750 5800 +F 0 "U1" H 5800 5900 30 0000 C CNN +F 1 "PORT" H 5750 5800 30 0000 C CNN +F 2 "" H 5750 5800 60 0000 C CNN +F 3 "" H 5750 5800 60 0000 C CNN + 12 5750 5800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 686E3C15 +P 5750 6550 +F 0 "U1" H 5800 6650 30 0000 C CNN +F 1 "PORT" H 5750 6550 30 0000 C CNN +F 2 "" H 5750 6550 60 0000 C CNN +F 3 "" H 5750 6550 60 0000 C CNN + 13 5750 6550 + -1 0 0 -1 +$EndComp +NoConn ~ 3750 4250 +NoConn ~ 3750 4450 +NoConn ~ 3750 5000 +NoConn ~ 3750 5200 +NoConn ~ 3750 5700 +NoConn ~ 3750 5900 +NoConn ~ 3750 6400 +NoConn ~ 3750 6600 +$Comp +L tri_state X5 +U 1 1 686E8300 +P 5000 1600 +F 0 "X5" H 5000 1600 60 0000 C CNN +F 1 "tri_state" H 5050 1400 60 0000 C CNN +F 2 "" H 6450 1100 60 0001 C CNN +F 3 "" H 6450 1100 60 0001 C CNN + 1 5000 1600 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X6 +U 1 1 686E8345 +P 5050 2300 +F 0 "X6" H 5050 2300 60 0000 C CNN +F 1 "tri_state" H 5100 2100 60 0000 C CNN +F 2 "" H 6500 1800 60 0001 C CNN +F 3 "" H 6500 1800 60 0001 C CNN + 1 5050 2300 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X7 +U 1 1 686E83D8 +P 5050 3000 +F 0 "X7" H 5050 3000 60 0000 C CNN +F 1 "tri_state" H 5100 2800 60 0000 C CNN +F 2 "" H 6500 2500 60 0001 C CNN +F 3 "" H 6500 2500 60 0001 C CNN + 1 5050 3000 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X8 +U 1 1 686E844B +P 5050 3700 +F 0 "X8" H 5050 3700 60 0000 C CNN +F 1 "tri_state" H 5100 3500 60 0000 C CNN +F 2 "" H 6500 3200 60 0001 C CNN +F 3 "" H 6500 3200 60 0001 C CNN + 1 5050 3700 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X9 +U 1 1 686E84D2 +P 5050 4400 +F 0 "X9" H 5050 4400 60 0000 C CNN +F 1 "tri_state" H 5100 4200 60 0000 C CNN +F 2 "" H 6500 3900 60 0001 C CNN +F 3 "" H 6500 3900 60 0001 C CNN + 1 5050 4400 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X10 +U 1 1 686E852F +P 5050 5100 +F 0 "X10" H 5050 5100 60 0000 C CNN +F 1 "tri_state" H 5100 4900 60 0000 C CNN +F 2 "" H 6500 4600 60 0001 C CNN +F 3 "" H 6500 4600 60 0001 C CNN + 1 5050 5100 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X11 +U 1 1 686E85EE +P 5050 5800 +F 0 "X11" H 5050 5800 60 0000 C CNN +F 1 "tri_state" H 5100 5600 60 0000 C CNN +F 2 "" H 6500 5300 60 0001 C CNN +F 3 "" H 6500 5300 60 0001 C CNN + 1 5050 5800 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X12 +U 1 1 686E865B +P 5050 6550 +F 0 "X12" H 5050 6550 60 0000 C CNN +F 1 "tri_state" H 5100 6350 60 0000 C CNN +F 2 "" H 6500 6050 60 0001 C CNN +F 3 "" H 6500 6050 60 0001 C CNN + 1 5050 6550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2650 6500 2650 6300 +Wire Wire Line + 2650 6300 2750 6300 +Connection ~ 2750 6300 +Wire Wire Line + 2650 5800 2650 5650 +Wire Wire Line + 2650 5650 2750 5650 +Connection ~ 2750 5650 +Wire Wire Line + 2700 5100 2700 4950 +Wire Wire Line + 2700 4950 2750 4950 +Connection ~ 2750 4950 +Wire Wire Line + 2750 4350 2700 4350 +Wire Wire Line + 2700 4350 2700 4200 +Wire Wire Line + 2700 4200 2750 4200 +Connection ~ 2750 4200 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.sub b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.sub new file mode 100644 index 000000000..2db5c09eb --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337.sub @@ -0,0 +1,28 @@ +* Subcircuit SN74ABT337 +.subckt SN74ABT337 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/sn74abt337/sn74abt337.cir +.include TFF_SR.sub +.include tri_state.sub +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +x4 net-_u1-pad2_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad5_ ? net-_u1-pad4_ net-_x12-pad1_ ? TFF_SR +x3 net-_u1-pad2_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad5_ ? net-_u1-pad4_ net-_x11-pad1_ ? TFF_SR +x2 net-_u1-pad2_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad5_ ? net-_u1-pad4_ net-_x10-pad1_ ? TFF_SR +x1 net-_u1-pad2_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad5_ ? net-_u1-pad4_ net-_x1-pad7_ ? TFF_SR +* s c m o d e +x5 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad6_ tri_state +x6 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad7_ tri_state +x7 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad8_ tri_state +x8 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad9_ tri_state +x9 net-_x1-pad7_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad10_ tri_state +x10 net-_x10-pad1_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad11_ tri_state +x11 net-_x11-pad1_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad12_ tri_state +x12 net-_x12-pad1_ net-_u1-pad2_ net-_u1-pad5_ net-_u1-pad1_ net-_u1-pad13_ tri_state +* Control Statements + +.ends SN74ABT337 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ABT337/SN74ABT337_Previous_Values.xml b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337_Previous_Values.xml new file mode 100644 index 000000000..a30490a42 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/SN74ABT337_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/TFF_SR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/TFF_SR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/TFF_SR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/TFF_SR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/tri_state/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/tri_state/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/tri_state/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/tri_state/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/tri_state/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/tri_state/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/tri_state/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/tri_statetruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ABT337/TFF_SR-cache.lib b/library/SubcircuitLibrary/SN74ABT337/TFF_SR-cache.lib new file mode 100644 index 000000000..ea3ce275e --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/TFF_SR-cache.lib @@ -0,0 +1,77 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# NAND_3 +# +DEF NAND_3 X 0 40 Y Y 1 F N +F0 "X" 150 0 60 H V C CNN +F1 "NAND_3" 50 -300 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 100 0 255 787 -787 0 1 0 N 150 250 150 -250 +C 400 0 50 0 1 0 N +P 2 0 1 0 -250 250 150 250 N +P 3 0 1 0 -250 250 -250 -250 150 -250 N +X in1 1 -450 100 200 R 50 50 1 1 I +X in2 2 -450 0 200 R 50 50 1 1 I +X Gnd 3 -450 -200 200 R 50 50 1 1 I +X Vdd 4 -450 200 200 R 50 50 1 1 I +X out 5 650 0 200 L 50 50 1 1 O +X in3 6 -450 -100 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74ABT337/TFF_SR.cir b/library/SubcircuitLibrary/SN74ABT337/TFF_SR.cir new file mode 100644 index 000000000..ccd8c470d --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/TFF_SR.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/TFF_SR/TFF_SR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Wed Jul 9 11:21:42 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad8_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_X1-Pad5_ Net-_U1-Pad3_ NAND_3 +X3 Net-_U1-Pad5_ Net-_X1-Pad5_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad8_ NAND_3 +X2 Net-_U1-Pad3_ Net-_U1-Pad7_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_X2-Pad5_ Net-_U1-Pad2_ NAND_3 +X4 Net-_U1-Pad7_ Net-_X2-Pad5_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad8_ Net-_U1-Pad6_ NAND_3 +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN74ABT337/TFF_SR.cir.out b/library/SubcircuitLibrary/SN74ABT337/TFF_SR.cir.out new file mode 100644 index 000000000..df845ba8f --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/TFF_SR.cir.out @@ -0,0 +1,25 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/tff_sr/tff_sr.cir + +.include NAND_3.sub +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +x1 net-_u1-pad2_ net-_u1-pad8_ net-_u1-pad4_ net-_u1-pad1_ net-_x1-pad5_ net-_u1-pad3_ NAND_3 +x3 net-_u1-pad5_ net-_x1-pad5_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad8_ NAND_3 +x2 net-_u1-pad3_ net-_u1-pad7_ net-_u1-pad4_ net-_u1-pad1_ net-_x2-pad5_ net-_u1-pad2_ NAND_3 +x4 net-_u1-pad7_ net-_x2-pad5_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad8_ net-_u1-pad6_ NAND_3 +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74ABT337/TFF_SR.pro b/library/SubcircuitLibrary/SN74ABT337/TFF_SR.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/TFF_SR.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74ABT337/TFF_SR.sch b/library/SubcircuitLibrary/SN74ABT337/TFF_SR.sch new file mode 100644 index 000000000..f777e5c3c --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/TFF_SR.sch @@ -0,0 +1,301 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L NAND_3 X1 +U 1 1 686E01E6 +P 4550 2450 +F 0 "X1" H 4700 2450 60 0000 C CNN +F 1 "NAND_3" H 4600 2150 60 0000 C CNN +F 2 "" H 4550 2450 60 0001 C CNN +F 3 "" H 4550 2450 60 0001 C CNN + 1 4550 2450 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X3 +U 1 1 686E0269 +P 6600 2450 +F 0 "X3" H 6750 2450 60 0000 C CNN +F 1 "NAND_3" H 6650 2150 60 0000 C CNN +F 2 "" H 6600 2450 60 0001 C CNN +F 3 "" H 6600 2450 60 0001 C CNN + 1 6600 2450 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X2 +U 1 1 686E03FC +P 4550 3400 +F 0 "X2" H 4700 3400 60 0000 C CNN +F 1 "NAND_3" H 4600 3100 60 0000 C CNN +F 2 "" H 4550 3400 60 0001 C CNN +F 3 "" H 4550 3400 60 0001 C CNN + 1 4550 3400 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X4 +U 1 1 686E047D +P 6600 3400 +F 0 "X4" H 6750 3400 60 0000 C CNN +F 1 "NAND_3" H 6650 3100 60 0000 C CNN +F 2 "" H 6600 3400 60 0001 C CNN +F 3 "" H 6600 3400 60 0001 C CNN + 1 6600 3400 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686E050A +P 10400 4900 +F 0 "scmode1" H 10400 5050 98 0000 C CNB +F 1 "SKY130mode" H 10400 4800 118 0000 C CNB +F 2 "" H 10400 5050 60 0001 C CNN +F 3 "" H 10400 5050 60 0001 C CNN + 1 10400 4900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4100 2550 3900 2550 +Wire Wire Line + 3900 2550 3900 3300 +Wire Wire Line + 3900 3300 4100 3300 +Wire Wire Line + 4100 2350 3850 2350 +Wire Wire Line + 3850 2350 3850 3500 +Wire Wire Line + 3850 2750 3200 2750 +Connection ~ 3850 2750 +Wire Wire Line + 3900 2900 3200 2900 +Connection ~ 3900 2900 +Wire Wire Line + 3850 3500 4100 3500 +Wire Wire Line + 6150 2350 5950 2350 +Wire Wire Line + 5950 2350 5950 1800 +Wire Wire Line + 6150 3500 5950 3500 +Wire Wire Line + 5950 3500 5950 3950 +Wire Wire Line + 6150 2550 6050 2550 +Wire Wire Line + 6050 2550 6050 2750 +Wire Wire Line + 4000 2750 7350 2750 +Wire Wire Line + 7350 2750 7350 3400 +Wire Wire Line + 7250 3400 7700 3400 +Wire Wire Line + 6150 3300 6050 3300 +Wire Wire Line + 6050 3300 6050 3100 +Wire Wire Line + 4000 3100 7350 3100 +Wire Wire Line + 7350 3100 7350 2450 +Wire Wire Line + 7250 2450 7700 2450 +Wire Wire Line + 5200 2450 6150 2450 +Wire Wire Line + 5200 3400 6150 3400 +Wire Wire Line + 4100 2450 4000 2450 +Wire Wire Line + 4000 2450 4000 2750 +Connection ~ 6050 2750 +Wire Wire Line + 4100 3400 4000 3400 +Wire Wire Line + 4000 3400 4000 3100 +Connection ~ 6050 3100 +Wire Wire Line + 4100 2250 3200 2250 +Wire Wire Line + 6150 2250 6150 2150 +Wire Wire Line + 6150 2150 4000 2150 +Wire Wire Line + 4000 2150 4000 2250 +Connection ~ 4000 2250 +Wire Wire Line + 4100 3600 3200 3600 +Wire Wire Line + 6150 3600 6150 3750 +Wire Wire Line + 6150 3750 3850 3750 +Wire Wire Line + 3850 3750 3850 3550 +Connection ~ 3850 3600 +Wire Wire Line + 6150 3200 5850 3200 +Wire Wire Line + 5850 3200 5850 2150 +Connection ~ 5850 2150 +Wire Wire Line + 4100 3200 3950 3200 +Wire Wire Line + 3950 3200 3950 2250 +Wire Wire Line + 3950 2250 4000 2250 +Wire Wire Line + 6150 2650 5750 2650 +Wire Wire Line + 5750 2650 5750 3750 +Connection ~ 5750 3750 +Wire Wire Line + 4100 2650 3800 2650 +Wire Wire Line + 3800 2650 3800 3550 +Wire Wire Line + 3800 3550 3850 3550 +Connection ~ 7350 2450 +Connection ~ 7350 3400 +$Comp +L PORT U1 +U 1 1 686E09C4 +P 2950 2250 +F 0 "U1" H 3000 2350 30 0000 C CNN +F 1 "PORT" H 2950 2250 30 0000 C CNN +F 2 "" H 2950 2250 60 0000 C CNN +F 3 "" H 2950 2250 60 0000 C CNN + 1 2950 2250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E0A05 +P 2950 2750 +F 0 "U1" H 3000 2850 30 0000 C CNN +F 1 "PORT" H 2950 2750 30 0000 C CNN +F 2 "" H 2950 2750 60 0000 C CNN +F 3 "" H 2950 2750 60 0000 C CNN + 2 2950 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E0A30 +P 2950 2900 +F 0 "U1" H 3000 3000 30 0000 C CNN +F 1 "PORT" H 2950 2900 30 0000 C CNN +F 2 "" H 2950 2900 60 0000 C CNN +F 3 "" H 2950 2900 60 0000 C CNN + 3 2950 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E0A61 +P 2950 3600 +F 0 "U1" H 3000 3700 30 0000 C CNN +F 1 "PORT" H 2950 3600 30 0000 C CNN +F 2 "" H 2950 3600 60 0000 C CNN +F 3 "" H 2950 3600 60 0000 C CNN + 4 2950 3600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E0AA4 +P 5700 1800 +F 0 "U1" H 5750 1900 30 0000 C CNN +F 1 "PORT" H 5700 1800 30 0000 C CNN +F 2 "" H 5700 1800 60 0000 C CNN +F 3 "" H 5700 1800 60 0000 C CNN + 5 5700 1800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686E0AE1 +P 5700 3950 +F 0 "U1" H 5750 4050 30 0000 C CNN +F 1 "PORT" H 5700 3950 30 0000 C CNN +F 2 "" H 5700 3950 60 0000 C CNN +F 3 "" H 5700 3950 60 0000 C CNN + 6 5700 3950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686E0B10 +P 7950 2450 +F 0 "U1" H 8000 2550 30 0000 C CNN +F 1 "PORT" H 7950 2450 30 0000 C CNN +F 2 "" H 7950 2450 60 0000 C CNN +F 3 "" H 7950 2450 60 0000 C CNN + 7 7950 2450 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 686E0BAD +P 7950 3400 +F 0 "U1" H 8000 3500 30 0000 C CNN +F 1 "PORT" H 7950 3400 30 0000 C CNN +F 2 "" H 7950 3400 60 0000 C CNN +F 3 "" H 7950 3400 60 0000 C CNN + 8 7950 3400 + -1 0 0 1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ABT337/TFF_SR.sub b/library/SubcircuitLibrary/SN74ABT337/TFF_SR.sub new file mode 100644 index 000000000..d099db6b1 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/TFF_SR.sub @@ -0,0 +1,19 @@ +* Subcircuit TFF_SR +.subckt TFF_SR net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/tff_sr/tff_sr.cir +.include NAND_3.sub +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +x1 net-_u1-pad2_ net-_u1-pad8_ net-_u1-pad4_ net-_u1-pad1_ net-_x1-pad5_ net-_u1-pad3_ NAND_3 +x3 net-_u1-pad5_ net-_x1-pad5_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad8_ NAND_3 +x2 net-_u1-pad3_ net-_u1-pad7_ net-_u1-pad4_ net-_u1-pad1_ net-_x2-pad5_ net-_u1-pad2_ NAND_3 +x4 net-_u1-pad7_ net-_x2-pad5_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad8_ net-_u1-pad6_ NAND_3 +* s c m o d e +* Control Statements + +.ends TFF_SR \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ABT337/TFF_SR_Previous_Values.xml b/library/SubcircuitLibrary/SN74ABT337/TFF_SR_Previous_Values.xml new file mode 100644 index 000000000..d8e2f2340 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/TFF_SR_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ABT337/analysis b/library/SubcircuitLibrary/SN74ABT337/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ABT337/tri_state-cache.lib b/library/SubcircuitLibrary/SN74ABT337/tri_state-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/tri_state-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74ABT337/tri_state.bak b/library/SubcircuitLibrary/SN74ABT337/tri_state.bak new file mode 100644 index 000000000..ead3208dc --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/tri_state.bak @@ -0,0 +1,194 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 686E04ED +P 5150 2450 +F 0 "SC1" H 5200 2750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 2537 50 0000 R CNN +F 2 "" H 5150 950 50 0001 C CNN +F 3 "" H 5150 2450 50 0001 C CNN + 1 5150 2450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 686E0554 +P 5150 3250 +F 0 "SC2" H 5200 3550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5450 3337 50 0000 R CNN +F 2 "" H 5150 1750 50 0001 C CNN +F 3 "" H 5150 3250 50 0001 C CNN + 1 5150 3250 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 686E0577 +P 5950 2600 +F 0 "SC3" H 6000 2900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6250 2687 50 0000 R CNN +F 2 "" H 5950 1100 50 0001 C CNN +F 3 "" H 5950 2600 50 0001 C CNN + 1 5950 2600 + 0 -1 1 0 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686E05B6 +P 9300 2250 +F 0 "scmode1" H 9300 2400 98 0000 C CNB +F 1 "SKY130mode" H 9300 2150 118 0000 C CNB +F 2 "" H 9300 2400 60 0001 C CNN +F 3 "" H 9300 2400 60 0001 C CNN + 1 9300 2250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686E061D +P 4200 2800 +F 0 "U1" H 4250 2900 30 0000 C CNN +F 1 "PORT" H 4200 2800 30 0000 C CNN +F 2 "" H 4200 2800 60 0000 C CNN +F 3 "" H 4200 2800 60 0000 C CNN + 1 4200 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E069C +P 5050 1900 +F 0 "U1" H 5100 2000 30 0000 C CNN +F 1 "PORT" H 5050 1900 30 0000 C CNN +F 2 "" H 5050 1900 60 0000 C CNN +F 3 "" H 5050 1900 60 0000 C CNN + 2 5050 1900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E0725 +P 5100 3750 +F 0 "U1" H 5150 3850 30 0000 C CNN +F 1 "PORT" H 5100 3750 30 0000 C CNN +F 2 "" H 5100 3750 60 0000 C CNN +F 3 "" H 5100 3750 60 0000 C CNN + 3 5100 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E0750 +P 6800 2800 +F 0 "U1" H 6850 2900 30 0000 C CNN +F 1 "PORT" H 6800 2800 30 0000 C CNN +F 2 "" H 6800 2800 60 0000 C CNN +F 3 "" H 6800 2800 60 0000 C CNN + 5 6800 2800 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E0793 +P 6200 2150 +F 0 "U1" H 6250 2250 30 0000 C CNN +F 1 "PORT" H 6200 2150 30 0000 C CNN +F 2 "" H 6200 2150 60 0000 C CNN +F 3 "" H 6200 2150 60 0000 C CNN + 4 6200 2150 + -1 0 0 1 +$EndComp +Wire Wire Line + 4850 2450 4850 3250 +Wire Wire Line + 4450 2800 4850 2800 +Connection ~ 4850 2800 +Wire Wire Line + 5350 2750 5350 2950 +Wire Wire Line + 5400 2450 5250 2450 +Wire Wire Line + 5400 1900 5400 2450 +Wire Wire Line + 5400 2150 5350 2150 +Wire Wire Line + 5300 1900 5400 1900 +Connection ~ 5400 2150 +Wire Wire Line + 5250 3250 5400 3250 +Wire Wire Line + 5400 3250 5400 3750 +Wire Wire Line + 5400 3550 5350 3550 +Wire Wire Line + 5400 3750 5350 3750 +Connection ~ 5400 3550 +Wire Wire Line + 5650 2800 5350 2800 +Connection ~ 5350 2800 +Wire Wire Line + 5950 2850 5950 2700 +Wire Wire Line + 5550 2850 5950 2850 +Wire Wire Line + 5550 2850 5550 2800 +Connection ~ 5550 2800 +Wire Wire Line + 6250 2800 6550 2800 +Wire Wire Line + 5950 2300 5950 2150 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ABT337/tri_state.cir b/library/SubcircuitLibrary/SN74ABT337/tri_state.cir new file mode 100644 index 000000000..9a1bd9419 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/tri_state.cir @@ -0,0 +1,15 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/tri_state/tri_state.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Wed Jul 9 20:18:58 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +scmode1 SKY130mode +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC3-Pad2_ Net-_SC3-Pad1_ PORT +SC3 Net-_SC3-Pad1_ Net-_SC3-Pad2_ Net-_SC1-Pad1_ Net-_SC1-Pad1_ sky130_fd_pr__nfet_01v8 + +.end diff --git a/library/SubcircuitLibrary/SN74ABT337/tri_state.cir.out b/library/SubcircuitLibrary/SN74ABT337/tri_state.cir.out new file mode 100644 index 000000000..31969d0e5 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/tri_state.cir.out @@ -0,0 +1,23 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/tri_state/tri_state.cir + +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc3-pad2_ net-_sc3-pad1_ port +xsc3 net-_sc3-pad1_ net-_sc3-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74ABT337/tri_state.pro b/library/SubcircuitLibrary/SN74ABT337/tri_state.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/tri_state.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74ABT337/tri_state.sch b/library/SubcircuitLibrary/SN74ABT337/tri_state.sch new file mode 100644 index 000000000..33449dcff --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/tri_state.sch @@ -0,0 +1,195 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:tri_state-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 686E04ED +P 5150 2450 +F 0 "SC1" H 5200 2750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 2537 50 0000 R CNN +F 2 "" H 5150 950 50 0001 C CNN +F 3 "" H 5150 2450 50 0001 C CNN + 1 5150 2450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 686E0554 +P 5150 3250 +F 0 "SC2" H 5200 3550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5450 3337 50 0000 R CNN +F 2 "" H 5150 1750 50 0001 C CNN +F 3 "" H 5150 3250 50 0001 C CNN + 1 5150 3250 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686E05B6 +P 9300 2250 +F 0 "scmode1" H 9300 2400 98 0000 C CNB +F 1 "SKY130mode" H 9300 2150 118 0000 C CNB +F 2 "" H 9300 2400 60 0001 C CNN +F 3 "" H 9300 2400 60 0001 C CNN + 1 9300 2250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686E061D +P 4200 2800 +F 0 "U1" H 4250 2900 30 0000 C CNN +F 1 "PORT" H 4200 2800 30 0000 C CNN +F 2 "" H 4200 2800 60 0000 C CNN +F 3 "" H 4200 2800 60 0000 C CNN + 1 4200 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E069C +P 5050 1900 +F 0 "U1" H 5100 2000 30 0000 C CNN +F 1 "PORT" H 5050 1900 30 0000 C CNN +F 2 "" H 5050 1900 60 0000 C CNN +F 3 "" H 5050 1900 60 0000 C CNN + 2 5050 1900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E0725 +P 5100 3750 +F 0 "U1" H 5150 3850 30 0000 C CNN +F 1 "PORT" H 5100 3750 30 0000 C CNN +F 2 "" H 5100 3750 60 0000 C CNN +F 3 "" H 5100 3750 60 0000 C CNN + 3 5100 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E0750 +P 6800 2800 +F 0 "U1" H 6850 2900 30 0000 C CNN +F 1 "PORT" H 6800 2800 30 0000 C CNN +F 2 "" H 6800 2800 60 0000 C CNN +F 3 "" H 6800 2800 60 0000 C CNN + 5 6800 2800 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E0793 +P 6200 2150 +F 0 "U1" H 6250 2250 30 0000 C CNN +F 1 "PORT" H 6200 2150 30 0000 C CNN +F 2 "" H 6200 2150 60 0000 C CNN +F 3 "" H 6200 2150 60 0000 C CNN + 4 6200 2150 + -1 0 0 1 +$EndComp +Wire Wire Line + 4850 2450 4850 3250 +Wire Wire Line + 4450 2800 4850 2800 +Connection ~ 4850 2800 +Wire Wire Line + 5350 2750 5350 2950 +Wire Wire Line + 5400 2450 5250 2450 +Wire Wire Line + 5400 1900 5400 2450 +Wire Wire Line + 5400 2150 5350 2150 +Wire Wire Line + 5300 1900 5400 1900 +Connection ~ 5400 2150 +Wire Wire Line + 5250 3250 5400 3250 +Wire Wire Line + 5400 3250 5400 3750 +Wire Wire Line + 5400 3550 5350 3550 +Wire Wire Line + 5400 3750 5350 3750 +Connection ~ 5400 3550 +Wire Wire Line + 5650 2800 5350 2800 +Connection ~ 5350 2800 +Wire Wire Line + 5950 2850 5950 2700 +Wire Wire Line + 5550 2850 5950 2850 +Wire Wire Line + 5550 2850 5550 2800 +Connection ~ 5550 2800 +Wire Wire Line + 6250 2800 6550 2800 +Wire Wire Line + 5950 2300 5950 2150 +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 686E7F5A +P 5950 2600 +F 0 "SC3" H 6000 2900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6250 2687 50 0000 R CNN +F 2 "" H 5950 1100 50 0001 C CNN +F 3 "" H 5950 2600 50 0001 C CNN + 1 5950 2600 + 0 1 1 0 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ABT337/tri_state.sub b/library/SubcircuitLibrary/SN74ABT337/tri_state.sub new file mode 100644 index 000000000..9669589c3 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/tri_state.sub @@ -0,0 +1,17 @@ +* Subcircuit tri_state +.subckt tri_state net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc3-pad2_ net-_sc3-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/tri_state/tri_state.cir +.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__pnp.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__linear.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__r+c.model.spice" +.include "/usr/share/local/sky130_fd_pr/models/sky130_fd_pr__model__inductors.model.spice" +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +xsc3 net-_sc3-pad1_ net-_sc3-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* Control Statements + +.ends tri_state \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ABT337/tri_state_Previous_Values.xml b/library/SubcircuitLibrary/SN74ABT337/tri_state_Previous_Values.xml new file mode 100644 index 000000000..bba801349 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ABT337/tri_state_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ALS1011A/3_in_and-cache.lib b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.cir b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.cir new file mode 100644 index 000000000..a1633ce81 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.cir @@ -0,0 +1,20 @@ +* H:\esim\eSim\library\SubcircuitLibrary\3_in_and\3_in_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/16/25 13:08:42 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC6 Net-_SC1-Pad1_ Net-_SC5-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC3 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC3-Pad3_ Net-_SC2-Pad2_ Net-_SC4-Pad3_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +SC5 Net-_SC4-Pad3_ Net-_SC5-Pad2_ Net-_SC3-Pad4_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +SC7 Net-_SC1-Pad1_ Net-_SC1-Pad1_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC8 Net-_SC1-Pad1_ Net-_SC1-Pad1_ Net-_SC3-Pad4_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +scmode1 SKY130mode +U1 Net-_SC1-Pad2_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC3-Pad4_ Net-_SC5-Pad2_ Net-_SC1-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.cir.out b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.cir.out new file mode 100644 index 000000000..e7d08eafc --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.cir.out @@ -0,0 +1,28 @@ +* h:\esim\esim\library\subcircuitlibrary\3_in_and\3_in_and.cir + +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__r+c.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__linear.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__inductors.model.spice" +.lib "H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spice" tt +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__pnp.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc6 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad3_ net-_sc2-pad2_ net-_sc4-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc4-pad3_ net-_sc5-pad2_ net-_sc3-pad4_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc7 net-_sc1-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc1-pad1_ net-_sc1-pad1_ net-_sc3-pad4_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* u1 net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad4_ net-_sc5-pad2_ net-_sc1-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.pro b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.sch b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.sch new file mode 100644 index 000000000..413d03374 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.sch @@ -0,0 +1,324 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 685EFB75 +P 4650 2000 +F 0 "SC1" H 4700 2300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4950 2087 50 0000 R CNN +F 2 "" H 4650 500 50 0001 C CNN +F 3 "" H 4650 2000 50 0001 C CNN + 1 4650 2000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 685EFBB1 +P 6200 2000 +F 0 "SC2" H 6250 2300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6500 2087 50 0000 R CNN +F 2 "" H 6200 500 50 0001 C CNN +F 3 "" H 6200 2000 50 0001 C CNN + 1 6200 2000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC6 +U 1 1 685EFC40 +P 7750 2000 +F 0 "SC6" H 7800 2300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 8050 2087 50 0000 R CNN +F 2 "" H 7750 500 50 0001 C CNN +F 3 "" H 7750 2000 50 0001 C CNN + 1 7750 2000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 685EFDF8 +P 6200 2950 +F 0 "SC3" H 6250 3250 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6500 3037 50 0000 R CNN +F 2 "" H 6200 1450 50 0001 C CNN +F 3 "" H 6200 2950 50 0001 C CNN + 1 6200 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 685EFE69 +P 6200 3750 +F 0 "SC4" H 6250 4050 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6500 3837 50 0000 R CNN +F 2 "" H 6200 2250 50 0001 C CNN +F 3 "" H 6200 3750 50 0001 C CNN + 1 6200 3750 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 685EFEFC +P 6600 4450 +F 0 "SC5" H 6650 4750 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6900 4537 50 0000 R CNN +F 2 "" H 6600 2950 50 0001 C CNN +F 3 "" H 6600 4450 50 0001 C CNN + 1 6600 4450 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC7 +U 1 1 685F0235 +P 8600 2000 +F 0 "SC7" H 8650 2300 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 8900 2087 50 0000 R CNN +F 2 "" H 8600 500 50 0001 C CNN +F 3 "" H 8600 2000 50 0001 C CNN + 1 8600 2000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC8 +U 1 1 685F02AE +P 8600 4500 +F 0 "SC8" H 8650 4800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 8900 4587 50 0000 R CNN +F 2 "" H 8600 3000 50 0001 C CNN +F 3 "" H 8600 4500 50 0001 C CNN + 1 8600 4500 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 685F03F9 +P 10450 6050 +F 0 "scmode1" H 10450 6200 98 0000 C CNB +F 1 "SKY130mode" H 10450 5950 118 0000 C CNB +F 2 "" H 10450 6200 60 0001 C CNN +F 3 "" H 10450 6200 60 0001 C CNN + 1 10450 6050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685F046F +P 3800 2000 +F 0 "U1" H 3850 2100 30 0000 C CNN +F 1 "PORT" H 3800 2000 30 0000 C CNN +F 2 "" H 3800 2000 60 0000 C CNN +F 3 "" H 3800 2000 60 0000 C CNN + 1 3800 2000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685F04F8 +P 5400 2000 +F 0 "U1" H 5450 2100 30 0000 C CNN +F 1 "PORT" H 5400 2000 30 0000 C CNN +F 2 "" H 5400 2000 60 0000 C CNN +F 3 "" H 5400 2000 60 0000 C CNN + 2 5400 2000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685F05AF +P 6950 2000 +F 0 "U1" H 7000 2100 30 0000 C CNN +F 1 "PORT" H 6950 2000 30 0000 C CNN +F 2 "" H 6950 2000 60 0000 C CNN +F 3 "" H 6950 2000 60 0000 C CNN + 5 6950 2000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685F0660 +P 9350 2950 +F 0 "U1" H 9400 3050 30 0000 C CNN +F 1 "PORT" H 9350 2950 30 0000 C CNN +F 2 "" H 9350 2950 60 0000 C CNN +F 3 "" H 9350 2950 60 0000 C CNN + 6 9350 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685F087C +P 6150 1250 +F 0 "U1" H 6200 1350 30 0000 C CNN +F 1 "PORT" H 6150 1250 30 0000 C CNN +F 2 "" H 6150 1250 60 0000 C CNN +F 3 "" H 6150 1250 60 0000 C CNN + 3 6150 1250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685F095F +P 6150 5100 +F 0 "U1" H 6200 5200 30 0000 C CNN +F 1 "PORT" H 6150 5100 30 0000 C CNN +F 2 "" H 6150 5100 60 0000 C CNN +F 3 "" H 6150 5100 60 0000 C CNN + 4 6150 5100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4850 1700 4850 1600 +Wire Wire Line + 4850 1600 8850 1600 +Wire Wire Line + 8800 1600 8800 1700 +Wire Wire Line + 6400 1250 6400 1700 +Connection ~ 6400 1600 +Wire Wire Line + 7950 1700 7950 1600 +Connection ~ 7950 1600 +Wire Wire Line + 4850 2300 4850 2350 +Wire Wire Line + 4850 2350 8800 2350 +Wire Wire Line + 8800 2300 8800 4200 +Wire Wire Line + 6400 2300 6400 2650 +Connection ~ 6400 2350 +Wire Wire Line + 7950 2300 7950 2350 +Connection ~ 7950 2350 +Wire Wire Line + 4750 2000 4950 2000 +Wire Wire Line + 4950 2000 4950 1600 +Connection ~ 4950 1600 +Wire Wire Line + 6300 2000 6500 2000 +Wire Wire Line + 6500 2000 6500 1600 +Connection ~ 6500 1600 +Wire Wire Line + 7850 2000 8050 2000 +Wire Wire Line + 8050 2000 8050 1600 +Connection ~ 8050 1600 +Wire Wire Line + 8700 2000 8850 2000 +Wire Wire Line + 8850 2000 8850 1600 +Connection ~ 8800 1600 +Wire Wire Line + 4350 2000 4050 2000 +Wire Wire Line + 5900 2000 5650 2000 +Wire Wire Line + 7450 2000 7200 2000 +Wire Wire Line + 8300 2000 8300 4500 +Wire Wire Line + 8300 2450 6400 2450 +Connection ~ 6400 2450 +Wire Wire Line + 5900 2950 4250 2950 +Wire Wire Line + 4250 2950 4250 2000 +Connection ~ 4250 2000 +Wire Wire Line + 5900 3750 5700 3750 +Wire Wire Line + 5700 3750 5700 2000 +Connection ~ 5700 2000 +Wire Wire Line + 6900 4450 7350 4450 +Wire Wire Line + 7350 4450 7350 2000 +Connection ~ 7350 2000 +Wire Wire Line + 6400 5100 6400 4750 +Wire Wire Line + 8700 4500 8900 4500 +Wire Wire Line + 8900 4500 8900 4900 +Wire Wire Line + 8900 4900 6350 4900 +Connection ~ 6400 4900 +Wire Wire Line + 8800 4800 8800 4900 +Connection ~ 8800 4900 +Wire Wire Line + 6500 4450 6350 4450 +Wire Wire Line + 6350 4450 6350 4900 +Wire Wire Line + 6400 4050 6400 4150 +Wire Wire Line + 6300 3750 7000 3750 +Wire Wire Line + 7000 2950 7000 4900 +Connection ~ 7000 4900 +Wire Wire Line + 6400 3250 6400 3450 +Wire Wire Line + 6300 2950 7000 2950 +Connection ~ 7000 3750 +Connection ~ 8800 2350 +Connection ~ 8300 2450 +Wire Wire Line + 9100 2950 8800 2950 +Connection ~ 8800 2950 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.sub b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.sub new file mode 100644 index 000000000..a88c47594 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and.sub @@ -0,0 +1,22 @@ +* Subcircuit 3_in_and +.subckt 3_in_and net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad4_ net-_sc5-pad2_ net-_sc1-pad1_ +* h:\esim\esim\library\subcircuitlibrary\3_in_and\3_in_and.cir +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__r+c.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__linear.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__inductors.model.spice" +.lib "H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spice" tt +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__pnp.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc6 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad3_ net-_sc2-pad2_ net-_sc4-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc4-pad3_ net-_sc5-pad2_ net-_sc3-pad4_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc7 net-_sc1-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc1-pad1_ net-_sc1-pad1_ net-_sc3-pad4_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends 3_in_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ALS1011A/3_in_and_Previous_Values.xml b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and_Previous_Values.xml new file mode 100644 index 000000000..f78519633 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/3_in_and_Previous_Values.xml @@ -0,0 +1 @@ +H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR-cache.lib b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.cir b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.cir new file mode 100644 index 000000000..798338152 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.cir @@ -0,0 +1,14 @@ +* H:\esim\eSim\library\SubcircuitLibrary\CMOS_INVTR\CMOS_INVTR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/12/25 16:02:08 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.cir.out b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.cir.out new file mode 100644 index 000000000..268de8701 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.cir.out @@ -0,0 +1,16 @@ +* h:\esim\esim\library\subcircuitlibrary\cmos_invtr\cmos_invtr.cir + + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.pro b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.sch b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.sch new file mode 100644 index 000000000..aa7a7ee81 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.sch @@ -0,0 +1,161 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 684B982F +P 5350 2950 +F 0 "SC1" H 5400 3250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5650 3037 50 0000 R CNN +F 2 "" H 5350 1450 50 0001 C CNN +F 3 "" H 5350 2950 50 0001 C CNN + 1 5350 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684B9856 +P 5350 3800 +F 0 "SC2" H 5400 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5650 3887 50 0000 R CNN +F 2 "" H 5350 2300 50 0001 C CNN +F 3 "" H 5350 3800 50 0001 C CNN + 1 5350 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684B98AD +P 4550 3300 +F 0 "U1" H 4600 3400 30 0000 C CNN +F 1 "PORT" H 4550 3300 30 0000 C CNN +F 2 "" H 4550 3300 60 0000 C CNN +F 3 "" H 4550 3300 60 0000 C CNN + 1 4550 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B98D8 +P 6300 3350 +F 0 "U1" H 6350 3450 30 0000 C CNN +F 1 "PORT" H 6300 3350 30 0000 C CNN +F 2 "" H 6300 3350 60 0000 C CNN +F 3 "" H 6300 3350 60 0000 C CNN + 4 6300 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B9935 +P 5300 4350 +F 0 "U1" H 5350 4450 30 0000 C CNN +F 1 "PORT" H 5300 4350 30 0000 C CNN +F 2 "" H 5300 4350 60 0000 C CNN +F 3 "" H 5300 4350 60 0000 C CNN + 3 5300 4350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684B999A +P 5300 2350 +F 0 "U1" H 5350 2450 30 0000 C CNN +F 1 "PORT" H 5300 2350 30 0000 C CNN +F 2 "" H 5300 2350 60 0000 C CNN +F 3 "" H 5300 2350 60 0000 C CNN + 2 5300 2350 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B99CD +P 7950 3000 +F 0 "scmode1" H 7950 3150 98 0000 C CNB +F 1 "SKY130mode" H 7950 2900 118 0000 C CNB +F 2 "" H 7950 3150 60 0001 C CNN +F 3 "" H 7950 3150 60 0001 C CNN + 1 7950 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5550 2650 5550 2350 +Wire Wire Line + 5450 2950 5600 2950 +Wire Wire Line + 5600 2950 5600 2550 +Wire Wire Line + 5600 2550 5550 2550 +Connection ~ 5550 2550 +Wire Wire Line + 5550 3250 5550 3500 +Wire Wire Line + 6050 3350 5550 3350 +Connection ~ 5550 3350 +Wire Wire Line + 5050 2950 5050 3800 +Wire Wire Line + 4800 3300 5050 3300 +Connection ~ 5050 3300 +Wire Wire Line + 5450 3800 5600 3800 +Wire Wire Line + 5600 3800 5600 4150 +Wire Wire Line + 5600 4150 5550 4150 +Wire Wire Line + 5550 4100 5550 4350 +Connection ~ 5550 4150 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.sub b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.sub new file mode 100644 index 000000000..dfe6de3e5 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR.sub @@ -0,0 +1,10 @@ +* Subcircuit CMOS_INVTR +.subckt CMOS_INVTR net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ +* h:\esim\esim\library\subcircuitlibrary\cmos_invtr\cmos_invtr.cir + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends CMOS_INVTR \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR_Previous_Values.xml b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR_Previous_Values.xml new file mode 100644 index 000000000..af4904616 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/CMOS_INVTR_Previous_Values.xml @@ -0,0 +1 @@ +H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spicettw=3 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A-cache.lib b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A-cache.lib new file mode 100644 index 000000000..be1f74a53 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A-cache.lib @@ -0,0 +1,128 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 250 0 50 0 1 0 N +P 2 0 1 0 -250 150 200 0 N +P 3 0 1 0 -250 150 -250 -150 200 0 N +X IN 1 -450 0 200 R 50 50 1 1 I +X VDD 2 -450 100 200 R 50 50 1 1 I +X GND 3 -450 -100 200 R 50 50 1 1 I +X OUT 4 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A-rescue.lib b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A-rescue.lib new file mode 100644 index 000000000..f0524b5d5 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A-rescue.lib @@ -0,0 +1,25 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_in_and-RESCUE-SN74ALS1011A +# +DEF 3_in_and-RESCUE-SN74ALS1011A X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "3_in_and-RESCUE-SN74ALS1011A" 50 -300 60 H V C CNN +F2 "" 600 -150 60 H I C CNN +F3 "" 600 -150 60 H I C CNN +DRAW +A 100 0 255 787 -787 0 1 0 N 150 250 150 -250 +P 2 0 1 0 -150 250 100 250 N +P 2 0 1 0 150 250 100 250 N +P 3 0 1 0 -150 250 -150 -250 150 -250 N +X in1 1 -350 100 200 R 50 50 1 1 I +X in2 2 -350 0 200 R 50 50 1 1 I +X Vdd 3 -350 200 200 R 50 50 1 1 I +X Gnd 4 -350 -200 200 R 50 50 1 1 I +X in3 5 -350 -100 200 R 50 50 1 1 I +X out 6 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.bak b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.bak new file mode 100644 index 000000000..158dcae59 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.bak @@ -0,0 +1,300 @@ +EESchema Schematic File Version 2 +LIBS:SN74ALS1011A-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN74ALS1011A-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +Wire Wire Line + 4450 2150 3550 2150 +Wire Wire Line + 4450 2250 3550 2250 +Wire Wire Line + 4450 2350 3550 2350 +Wire Wire Line + 4450 2450 3550 2450 +Wire Wire Line + 4450 2550 3550 2550 +Wire Wire Line + 4450 2850 4350 2850 +Wire Wire Line + 4350 2150 4350 3550 +Connection ~ 4350 2150 +Wire Wire Line + 4450 2950 3550 2950 +Wire Wire Line + 4450 3050 3550 3050 +Wire Wire Line + 4450 3150 3550 3150 +Wire Wire Line + 4450 3250 4250 3250 +Wire Wire Line + 4250 2550 4250 3950 +Connection ~ 4250 2550 +Wire Wire Line + 4350 3550 4450 3550 +Connection ~ 4350 2850 +Wire Wire Line + 4450 3650 3550 3650 +Wire Wire Line + 4450 3750 3550 3750 +Wire Wire Line + 4450 3850 3550 3850 +Wire Wire Line + 4250 3950 4450 3950 +Connection ~ 4250 3250 +Wire Wire Line + 5350 2350 5700 2350 +Wire Wire Line + 5350 3050 5700 3050 +Wire Wire Line + 5350 3750 5700 3750 +$Comp +L PORT U1 +U 1 1 686CB9D2 +P 3300 2150 +F 0 "U1" H 3350 2250 30 0000 C CNN +F 1 "PORT" H 3300 2150 30 0000 C CNN +F 2 "" H 3300 2150 60 0000 C CNN +F 3 "" H 3300 2150 60 0000 C CNN + 1 3300 2150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686CBAC3 +P 3300 2250 +F 0 "U1" H 3350 2350 30 0000 C CNN +F 1 "PORT" H 3300 2250 30 0000 C CNN +F 2 "" H 3300 2250 60 0000 C CNN +F 3 "" H 3300 2250 60 0000 C CNN + 2 3300 2250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686CBB69 +P 3300 2350 +F 0 "U1" H 3350 2450 30 0000 C CNN +F 1 "PORT" H 3300 2350 30 0000 C CNN +F 2 "" H 3300 2350 60 0000 C CNN +F 3 "" H 3300 2350 60 0000 C CNN + 3 3300 2350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686CBB98 +P 3300 2450 +F 0 "U1" H 3350 2550 30 0000 C CNN +F 1 "PORT" H 3300 2450 30 0000 C CNN +F 2 "" H 3300 2450 60 0000 C CNN +F 3 "" H 3300 2450 60 0000 C CNN + 4 3300 2450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686CBBD5 +P 3300 2550 +F 0 "U1" H 3350 2650 30 0000 C CNN +F 1 "PORT" H 3300 2550 30 0000 C CNN +F 2 "" H 3300 2550 60 0000 C CNN +F 3 "" H 3300 2550 60 0000 C CNN + 5 3300 2550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686CBCFE +P 3300 2950 +F 0 "U1" H 3350 3050 30 0000 C CNN +F 1 "PORT" H 3300 2950 30 0000 C CNN +F 2 "" H 3300 2950 60 0000 C CNN +F 3 "" H 3300 2950 60 0000 C CNN + 6 3300 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686CBDC7 +P 3300 3050 +F 0 "U1" H 3350 3150 30 0000 C CNN +F 1 "PORT" H 3300 3050 30 0000 C CNN +F 2 "" H 3300 3050 60 0000 C CNN +F 3 "" H 3300 3050 60 0000 C CNN + 7 3300 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 686CBE16 +P 3300 3150 +F 0 "U1" H 3350 3250 30 0000 C CNN +F 1 "PORT" H 3300 3150 30 0000 C CNN +F 2 "" H 3300 3150 60 0000 C CNN +F 3 "" H 3300 3150 60 0000 C CNN + 8 3300 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 686CBEA9 +P 3300 3650 +F 0 "U1" H 3350 3750 30 0000 C CNN +F 1 "PORT" H 3300 3650 30 0000 C CNN +F 2 "" H 3300 3650 60 0000 C CNN +F 3 "" H 3300 3650 60 0000 C CNN + 9 3300 3650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 686CC052 +P 3300 3750 +F 0 "U1" H 3350 3850 30 0000 C CNN +F 1 "PORT" H 3300 3750 30 0000 C CNN +F 2 "" H 3300 3750 60 0000 C CNN +F 3 "" H 3300 3750 60 0000 C CNN + 10 3300 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 686CC0CC +P 3300 3850 +F 0 "U1" H 3350 3950 30 0000 C CNN +F 1 "PORT" H 3300 3850 30 0000 C CNN +F 2 "" H 3300 3850 60 0000 C CNN +F 3 "" H 3300 3850 60 0000 C CNN + 11 3300 3850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 686CC1BD +P 5950 2350 +F 0 "U1" H 6000 2450 30 0000 C CNN +F 1 "PORT" H 5950 2350 30 0000 C CNN +F 2 "" H 5950 2350 60 0000 C CNN +F 3 "" H 5950 2350 60 0000 C CNN + 12 5950 2350 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 13 1 686CC2BA +P 5950 3050 +F 0 "U1" H 6000 3150 30 0000 C CNN +F 1 "PORT" H 5950 3050 30 0000 C CNN +F 2 "" H 5950 3050 60 0000 C CNN +F 3 "" H 5950 3050 60 0000 C CNN + 13 5950 3050 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 14 1 686CC54C +P 5950 3750 +F 0 "U1" H 6000 3850 30 0000 C CNN +F 1 "PORT" H 5950 3750 30 0000 C CNN +F 2 "" H 5950 3750 60 0000 C CNN +F 3 "" H 5950 3750 60 0000 C CNN + 14 5950 3750 + -1 0 0 1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686CC7EC +P 7950 3000 +F 0 "scmode1" H 7950 3150 98 0000 C CNB +F 1 "SKY130mode" H 7950 2900 118 0000 C CNB +F 2 "" H 7950 3150 60 0001 C CNN +F 3 "" H 7950 3150 60 0001 C CNN + 1 7950 3000 + 1 0 0 -1 +$EndComp +$Comp +L 3_in_and X1 +U 1 1 6877598F +P 4900 2350 +F 0 "X1" H 4900 2350 60 0000 C CNN +F 1 "3_in_and" H 4900 2050 60 0000 C CNN +F 2 "" H 4900 2350 60 0001 C CNN +F 3 "" H 4900 2350 60 0001 C CNN + 1 4900 2350 + 1 0 0 -1 +$EndComp +$Comp +L 3_in_and X2 +U 1 1 687759D6 +P 4900 3050 +F 0 "X2" H 4900 3050 60 0000 C CNN +F 1 "3_in_and" H 4900 2750 60 0000 C CNN +F 2 "" H 4900 3050 60 0001 C CNN +F 3 "" H 4900 3050 60 0001 C CNN + 1 4900 3050 + 1 0 0 -1 +$EndComp +$Comp +L 3_in_and X3 +U 1 1 68775A17 +P 4900 3750 +F 0 "X3" H 4900 3750 60 0000 C CNN +F 1 "3_in_and" H 4900 3450 60 0000 C CNN +F 2 "" H 4900 3750 60 0001 C CNN +F 3 "" H 4900 3750 60 0001 C CNN + 1 4900 3750 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.cir b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.cir new file mode 100644 index 000000000..e213b6679 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.cir @@ -0,0 +1,33 @@ +* H:\esim\eSim\library\SubcircuitLibrary\SN74ALS1011A\SN74ALS1011A.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/22/25 19:42:49 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC6 Net-_SC1-Pad1_ Net-_SC5-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC3 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC3-Pad3_ Net-_SC2-Pad2_ Net-_SC4-Pad3_ Net-_SC4-Pad3_ sky130_fd_pr__nfet_01v8 +SC5 Net-_SC4-Pad3_ Net-_SC5-Pad2_ Net-_SC11-Pad3_ Net-_SC11-Pad3_ sky130_fd_pr__nfet_01v8 +SC7 Net-_SC12-Pad1_ Net-_SC7-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC8 Net-_SC12-Pad1_ Net-_SC10-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC12 Net-_SC12-Pad1_ Net-_SC11-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC9 Net-_SC12-Pad1_ Net-_SC7-Pad2_ Net-_SC10-Pad1_ Net-_SC10-Pad1_ sky130_fd_pr__nfet_01v8 +SC10 Net-_SC10-Pad1_ Net-_SC10-Pad2_ Net-_SC10-Pad3_ Net-_SC10-Pad3_ sky130_fd_pr__nfet_01v8 +SC11 Net-_SC10-Pad3_ Net-_SC11-Pad2_ Net-_SC11-Pad3_ Net-_SC11-Pad3_ sky130_fd_pr__nfet_01v8 +SC13 Net-_SC13-Pad1_ Net-_SC13-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC14 Net-_SC13-Pad1_ Net-_SC14-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC18 Net-_SC13-Pad1_ Net-_SC17-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC15 Net-_SC13-Pad1_ Net-_SC13-Pad2_ Net-_SC15-Pad3_ Net-_SC15-Pad3_ sky130_fd_pr__nfet_01v8 +SC16 Net-_SC15-Pad3_ Net-_SC14-Pad2_ Net-_SC16-Pad3_ Net-_SC16-Pad3_ sky130_fd_pr__nfet_01v8 +SC17 Net-_SC16-Pad3_ Net-_SC17-Pad2_ Net-_SC11-Pad3_ Net-_SC11-Pad3_ sky130_fd_pr__nfet_01v8 +X1 Net-_SC1-Pad1_ Net-_SC1-Pad3_ Net-_SC11-Pad3_ Net-_U1-Pad6_ CMOS_INVTR +X2 Net-_SC12-Pad1_ Net-_SC1-Pad3_ Net-_SC11-Pad3_ Net-_U1-Pad10_ CMOS_INVTR +X3 Net-_SC13-Pad1_ Net-_SC1-Pad3_ Net-_SC11-Pad3_ Net-_U1-Pad14_ CMOS_INVTR +U1 Net-_SC2-Pad2_ Net-_SC1-Pad2_ Net-_SC5-Pad2_ Net-_SC11-Pad3_ Net-_SC1-Pad3_ Net-_U1-Pad6_ Net-_SC10-Pad2_ Net-_SC7-Pad2_ Net-_SC11-Pad2_ Net-_U1-Pad10_ Net-_SC14-Pad2_ Net-_SC13-Pad2_ Net-_SC17-Pad2_ Net-_U1-Pad14_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.cir.out b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.cir.out new file mode 100644 index 000000000..4473a3274 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.cir.out @@ -0,0 +1,42 @@ +* h:\esim\esim\library\subcircuitlibrary\sn74als1011a\sn74als1011a.cir + +.include CMOS_INVTR.sub +.lib "H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spice" tt +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__r+c.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__pnp.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__linear.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__inductors.model.spice" +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc6 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad3_ net-_sc2-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc4-pad3_ net-_sc5-pad2_ net-_sc11-pad3_ net-_sc11-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc7 net-_sc12-pad1_ net-_sc7-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc12-pad1_ net-_sc10-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc12 net-_sc12-pad1_ net-_sc11-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc9 net-_sc12-pad1_ net-_sc7-pad2_ net-_sc10-pad1_ net-_sc10-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc10 net-_sc10-pad1_ net-_sc10-pad2_ net-_sc10-pad3_ net-_sc10-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc11 net-_sc10-pad3_ net-_sc11-pad2_ net-_sc11-pad3_ net-_sc11-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc13 net-_sc13-pad1_ net-_sc13-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc14 net-_sc13-pad1_ net-_sc14-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc18 net-_sc13-pad1_ net-_sc17-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc15 net-_sc13-pad1_ net-_sc13-pad2_ net-_sc15-pad3_ net-_sc15-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc16 net-_sc15-pad3_ net-_sc14-pad2_ net-_sc16-pad3_ net-_sc16-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc17 net-_sc16-pad3_ net-_sc17-pad2_ net-_sc11-pad3_ net-_sc11-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +x1 net-_sc1-pad1_ net-_sc1-pad3_ net-_sc11-pad3_ net-_u1-pad6_ CMOS_INVTR +x2 net-_sc12-pad1_ net-_sc1-pad3_ net-_sc11-pad3_ net-_u1-pad10_ CMOS_INVTR +x3 net-_sc13-pad1_ net-_sc1-pad3_ net-_sc11-pad3_ net-_u1-pad14_ CMOS_INVTR +* u1 net-_sc2-pad2_ net-_sc1-pad2_ net-_sc5-pad2_ net-_sc11-pad3_ net-_sc1-pad3_ net-_u1-pad6_ net-_sc10-pad2_ net-_sc7-pad2_ net-_sc11-pad2_ net-_u1-pad10_ net-_sc14-pad2_ net-_sc13-pad2_ net-_sc17-pad2_ net-_u1-pad14_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.pro b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.pro new file mode 100644 index 000000000..bc66536a1 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.pro @@ -0,0 +1,74 @@ +update=07/16/25 13:11:19 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=SN74ALS1011A-rescue +LibName2=adc-dac +LibName3=memory +LibName4=xilinx +LibName5=microcontrollers +LibName6=dsp +LibName7=microchip +LibName8=analog_switches +LibName9=motorola +LibName10=texas +LibName11=intel +LibName12=audio +LibName13=interface +LibName14=digital-audio +LibName15=philips +LibName16=display +LibName17=cypress +LibName18=siliconi +LibName19=opto +LibName20=atmel +LibName21=contrib +LibName22=power +LibName23=eSim_Plot +LibName24=transistors +LibName25=conn +LibName26=eSim_User +LibName27=regul +LibName28=74xx +LibName29=cmos4000 +LibName30=eSim_Analog +LibName31=eSim_Devices +LibName32=eSim_Digital +LibName33=eSim_Hybrid +LibName34=eSim_Miscellaneous +LibName35=eSim_Power +LibName36=eSim_Sources +LibName37=eSim_Subckt +LibName38=eSim_Nghdl +LibName39=eSim_Ngveri +LibName40=eSim_SKY130 +LibName41=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.sch b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.sch new file mode 100644 index 000000000..e25e66845 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.sch @@ -0,0 +1,739 @@ +EESchema Schematic File Version 2 +LIBS:SN74ALS1011A-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN74ALS1011A-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 687F9C79 +P 1950 1450 +F 0 "SC1" H 2000 1750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 2250 1537 50 0000 R CNN +F 2 "" H 1950 -50 50 0001 C CNN +F 3 "" H 1950 1450 50 0001 C CNN + 1 1950 1450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 687F9CAD +P 2700 1450 +F 0 "SC2" H 2750 1750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 3000 1537 50 0000 R CNN +F 2 "" H 2700 -50 50 0001 C CNN +F 3 "" H 2700 1450 50 0001 C CNN + 1 2700 1450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC6 +U 1 1 687F9D00 +P 3450 1450 +F 0 "SC6" H 3500 1750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 3750 1537 50 0000 R CNN +F 2 "" H 3450 -50 50 0001 C CNN +F 3 "" H 3450 1450 50 0001 C CNN + 1 3450 1450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 687F9DBF +P 2700 2250 +F 0 "SC3" H 2750 2550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3000 2337 50 0000 R CNN +F 2 "" H 2700 750 50 0001 C CNN +F 3 "" H 2700 2250 50 0001 C CNN + 1 2700 2250 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 687F9DEA +P 2700 2950 +F 0 "SC4" H 2750 3250 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3000 3037 50 0000 R CNN +F 2 "" H 2700 1450 50 0001 C CNN +F 3 "" H 2700 2950 50 0001 C CNN + 1 2700 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 687F9E8F +P 3100 3650 +F 0 "SC5" H 3150 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 3400 3737 50 0000 R CNN +F 2 "" H 3100 2150 50 0001 C CNN +F 3 "" H 3100 3650 50 0001 C CNN + 1 3100 3650 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC7 +U 1 1 687FA621 +P 4850 1450 +F 0 "SC7" H 4900 1750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5150 1537 50 0000 R CNN +F 2 "" H 4850 -50 50 0001 C CNN +F 3 "" H 4850 1450 50 0001 C CNN + 1 4850 1450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC8 +U 1 1 687FA628 +P 5600 1450 +F 0 "SC8" H 5650 1750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5900 1537 50 0000 R CNN +F 2 "" H 5600 -50 50 0001 C CNN +F 3 "" H 5600 1450 50 0001 C CNN + 1 5600 1450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC12 +U 1 1 687FA62F +P 6350 1450 +F 0 "SC12" H 6400 1750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6650 1537 50 0000 R CNN +F 2 "" H 6350 -50 50 0001 C CNN +F 3 "" H 6350 1450 50 0001 C CNN + 1 6350 1450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC9 +U 1 1 687FA636 +P 5600 2250 +F 0 "SC9" H 5650 2550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5900 2337 50 0000 R CNN +F 2 "" H 5600 750 50 0001 C CNN +F 3 "" H 5600 2250 50 0001 C CNN + 1 5600 2250 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC10 +U 1 1 687FA63D +P 5600 2950 +F 0 "SC10" H 5650 3250 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5900 3037 50 0000 R CNN +F 2 "" H 5600 1450 50 0001 C CNN +F 3 "" H 5600 2950 50 0001 C CNN + 1 5600 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC11 +U 1 1 687FA644 +P 6000 3650 +F 0 "SC11" H 6050 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6300 3737 50 0000 R CNN +F 2 "" H 6000 2150 50 0001 C CNN +F 3 "" H 6000 3650 50 0001 C CNN + 1 6000 3650 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC13 +U 1 1 687FA842 +P 7700 1450 +F 0 "SC13" H 7750 1750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 8000 1537 50 0000 R CNN +F 2 "" H 7700 -50 50 0001 C CNN +F 3 "" H 7700 1450 50 0001 C CNN + 1 7700 1450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC14 +U 1 1 687FA849 +P 8450 1450 +F 0 "SC14" H 8500 1750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 8750 1537 50 0000 R CNN +F 2 "" H 8450 -50 50 0001 C CNN +F 3 "" H 8450 1450 50 0001 C CNN + 1 8450 1450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC18 +U 1 1 687FA850 +P 9200 1450 +F 0 "SC18" H 9250 1750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 9500 1537 50 0000 R CNN +F 2 "" H 9200 -50 50 0001 C CNN +F 3 "" H 9200 1450 50 0001 C CNN + 1 9200 1450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC15 +U 1 1 687FA857 +P 8450 2250 +F 0 "SC15" H 8500 2550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 8750 2337 50 0000 R CNN +F 2 "" H 8450 750 50 0001 C CNN +F 3 "" H 8450 2250 50 0001 C CNN + 1 8450 2250 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC16 +U 1 1 687FA85E +P 8450 2950 +F 0 "SC16" H 8500 3250 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 8750 3037 50 0000 R CNN +F 2 "" H 8450 1450 50 0001 C CNN +F 3 "" H 8450 2950 50 0001 C CNN + 1 8450 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC17 +U 1 1 687FA865 +P 8850 3650 +F 0 "SC17" H 8900 3950 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 9150 3737 50 0000 R CNN +F 2 "" H 8850 2150 50 0001 C CNN +F 3 "" H 8850 3650 50 0001 C CNN + 1 8850 3650 + -1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X1 +U 1 1 687FA8D3 +P 3800 2400 +F 0 "X1" H 3800 2400 60 0000 C CNN +F 1 "CMOS_INVTR" H 3750 2200 60 0000 C CNN +F 2 "" H 3800 2400 60 0001 C CNN +F 3 "" H 3800 2400 60 0001 C CNN + 1 3800 2400 + 0 1 1 0 +$EndComp +$Comp +L CMOS_INVTR X2 +U 1 1 687FA92F +P 6700 2400 +F 0 "X2" H 6700 2400 60 0000 C CNN +F 1 "CMOS_INVTR" H 6650 2200 60 0000 C CNN +F 2 "" H 6700 2400 60 0001 C CNN +F 3 "" H 6700 2400 60 0001 C CNN + 1 6700 2400 + 0 1 1 0 +$EndComp +$Comp +L CMOS_INVTR X3 +U 1 1 687FAA07 +P 9550 2450 +F 0 "X3" H 9550 2450 60 0000 C CNN +F 1 "CMOS_INVTR" H 9500 2250 60 0000 C CNN +F 2 "" H 9550 2450 60 0001 C CNN +F 3 "" H 9550 2450 60 0001 C CNN + 1 9550 2450 + 0 1 1 0 +$EndComp +Wire Wire Line + 1650 1450 1650 2250 +Wire Wire Line + 1650 2250 2400 2250 +Wire Wire Line + 2400 1450 2300 1450 +Wire Wire Line + 2300 1450 2300 2950 +Wire Wire Line + 2300 2950 2400 2950 +Wire Wire Line + 3150 1450 3150 3500 +Wire Wire Line + 3150 3500 3400 3500 +Wire Wire Line + 3400 3500 3400 3650 +Wire Wire Line + 2150 1150 2150 1100 +Wire Wire Line + 2150 1100 9650 1100 +Wire Wire Line + 3650 1100 3650 1150 +Wire Wire Line + 2050 1450 2200 1450 +Wire Wire Line + 2200 1450 2200 1100 +Connection ~ 2200 1100 +Wire Wire Line + 2800 1450 2950 1450 +Wire Wire Line + 2950 1450 2950 1100 +Connection ~ 2950 1100 +Wire Wire Line + 2900 1150 2900 1100 +Connection ~ 2900 1100 +Wire Wire Line + 3550 1450 3700 1450 +Wire Wire Line + 3700 1450 3700 1100 +Connection ~ 3650 1100 +Wire Wire Line + 2150 1750 2150 1800 +Wire Wire Line + 2150 1800 3800 1800 +Wire Wire Line + 3650 1800 3650 1750 +Wire Wire Line + 2900 1750 2900 1950 +Connection ~ 2900 1800 +Connection ~ 3650 1800 +Wire Wire Line + 3150 2000 3250 2000 +Connection ~ 3150 2000 +Wire Wire Line + 2300 2400 2150 2400 +Connection ~ 2300 2400 +Wire Wire Line + 1650 1900 1700 1900 +Connection ~ 1650 1900 +Wire Wire Line + 3000 3650 2850 3650 +Wire Wire Line + 2850 3650 2850 4000 +Wire Wire Line + 2850 3950 2900 3950 +Wire Wire Line + 2800 2950 2950 2950 +Wire Wire Line + 2950 2950 2950 3300 +Wire Wire Line + 2950 3300 2900 3300 +Wire Wire Line + 2900 3250 2900 3350 +Connection ~ 2900 3300 +Wire Wire Line + 2800 2250 2950 2250 +Wire Wire Line + 2950 2250 2950 2600 +Wire Wire Line + 2950 2600 2900 2600 +Wire Wire Line + 2900 2550 2900 2650 +Connection ~ 2900 2600 +Wire Wire Line + 4550 1450 4550 2250 +Wire Wire Line + 4550 2250 5300 2250 +Wire Wire Line + 5300 1450 5200 1450 +Wire Wire Line + 5200 1450 5200 2950 +Wire Wire Line + 5200 2950 5300 2950 +Wire Wire Line + 6050 1450 6050 3500 +Wire Wire Line + 6050 3500 6300 3500 +Wire Wire Line + 6300 3500 6300 3650 +Wire Wire Line + 5050 1100 5050 1150 +Wire Wire Line + 6550 1100 6550 1150 +Wire Wire Line + 4950 1450 5100 1450 +Wire Wire Line + 5100 1450 5100 1100 +Connection ~ 5100 1100 +Wire Wire Line + 5700 1450 5850 1450 +Wire Wire Line + 5850 1450 5850 1100 +Connection ~ 5850 1100 +Wire Wire Line + 5800 1150 5800 1100 +Connection ~ 5800 1100 +Wire Wire Line + 6450 1450 6600 1450 +Wire Wire Line + 6600 1450 6600 1100 +Connection ~ 6550 1100 +Wire Wire Line + 5050 1750 5050 1800 +Wire Wire Line + 5050 1800 6700 1800 +Wire Wire Line + 6550 1800 6550 1750 +Wire Wire Line + 5800 1750 5800 1950 +Connection ~ 5800 1800 +Connection ~ 6550 1800 +Wire Wire Line + 6050 2000 6150 2000 +Connection ~ 6050 2000 +Wire Wire Line + 5200 2400 5050 2400 +Connection ~ 5200 2400 +Wire Wire Line + 4550 1900 4600 1900 +Connection ~ 4550 1900 +Wire Wire Line + 5900 3650 5750 3650 +Wire Wire Line + 5750 3650 5750 4000 +Wire Wire Line + 5750 3950 5800 3950 +Wire Wire Line + 5700 2950 5850 2950 +Wire Wire Line + 5850 2950 5850 3300 +Wire Wire Line + 5850 3300 5800 3300 +Wire Wire Line + 5800 3250 5800 3350 +Connection ~ 5800 3300 +Wire Wire Line + 5700 2250 5850 2250 +Wire Wire Line + 5850 2250 5850 2600 +Wire Wire Line + 5850 2600 5800 2600 +Wire Wire Line + 5800 2550 5800 2650 +Connection ~ 5800 2600 +Wire Wire Line + 7400 1450 7400 2250 +Wire Wire Line + 7400 2250 8150 2250 +Wire Wire Line + 8150 1450 8050 1450 +Wire Wire Line + 8050 1450 8050 2950 +Wire Wire Line + 8050 2950 8150 2950 +Wire Wire Line + 8900 1450 8900 3500 +Wire Wire Line + 8900 3500 9150 3500 +Wire Wire Line + 9150 3500 9150 3650 +Wire Wire Line + 7900 1100 7900 1150 +Wire Wire Line + 9400 1100 9400 1150 +Wire Wire Line + 7800 1450 7950 1450 +Wire Wire Line + 7950 1450 7950 1100 +Connection ~ 7950 1100 +Wire Wire Line + 8550 1450 8700 1450 +Wire Wire Line + 8700 1450 8700 1100 +Connection ~ 8700 1100 +Wire Wire Line + 8650 1150 8650 1100 +Connection ~ 8650 1100 +Wire Wire Line + 9300 1450 9450 1450 +Wire Wire Line + 9450 1450 9450 1100 +Connection ~ 9400 1100 +Wire Wire Line + 7900 1750 7900 1800 +Wire Wire Line + 7900 1800 9550 1800 +Wire Wire Line + 9400 1800 9400 1750 +Wire Wire Line + 8650 1750 8650 1950 +Connection ~ 8650 1800 +Connection ~ 9400 1800 +Wire Wire Line + 8900 2000 9000 2000 +Connection ~ 8900 2000 +Wire Wire Line + 8050 2400 7900 2400 +Connection ~ 8050 2400 +Wire Wire Line + 7400 1900 7450 1900 +Connection ~ 7400 1900 +Wire Wire Line + 8750 3650 8600 3650 +Wire Wire Line + 8600 3650 8600 4000 +Wire Wire Line + 8600 3950 8650 3950 +Wire Wire Line + 8550 2950 8700 2950 +Wire Wire Line + 8700 2950 8700 3300 +Wire Wire Line + 8700 3300 8650 3300 +Wire Wire Line + 8650 3250 8650 3350 +Connection ~ 8650 3300 +Wire Wire Line + 8550 2250 8700 2250 +Wire Wire Line + 8700 2250 8700 2600 +Wire Wire Line + 8700 2600 8650 2600 +Wire Wire Line + 8650 2550 8650 2650 +Connection ~ 8650 2600 +Wire Wire Line + 9550 1800 9550 2000 +Wire Wire Line + 9450 2000 9400 2000 +Wire Wire Line + 9400 2000 9400 4000 +Wire Wire Line + 9400 4000 2850 4000 +Connection ~ 8600 3950 +Wire Wire Line + 9650 1100 9650 2000 +Connection ~ 9450 1100 +Wire Wire Line + 6700 1800 6700 1950 +Wire Wire Line + 6600 1950 6550 1950 +Wire Wire Line + 6550 1950 6550 4000 +Connection ~ 5750 3950 +Wire Wire Line + 6800 1100 6800 1950 +Connection ~ 6600 1100 +Wire Wire Line + 3800 1800 3800 1950 +Wire Wire Line + 3700 1950 3650 1950 +Wire Wire Line + 3650 1950 3650 4000 +Connection ~ 2850 3950 +Wire Wire Line + 3900 1100 3900 1950 +Connection ~ 3700 1100 +Connection ~ 5050 1100 +Connection ~ 3900 1100 +Connection ~ 7900 1100 +Connection ~ 6800 1100 +Connection ~ 8600 4000 +Connection ~ 6550 4000 +Connection ~ 5750 4000 +Connection ~ 3650 4000 +$Comp +L PORT U1 +U 5 1 687FBF6D +P 3900 850 +F 0 "U1" H 3950 950 30 0000 C CNN +F 1 "PORT" H 3900 850 30 0000 C CNN +F 2 "" H 3900 850 60 0000 C CNN +F 3 "" H 3900 850 60 0000 C CNN + 5 3900 850 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 2 1 687FC210 +P 1950 1900 +F 0 "U1" H 2000 2000 30 0000 C CNN +F 1 "PORT" H 1950 1900 30 0000 C CNN +F 2 "" H 1950 1900 60 0000 C CNN +F 3 "" H 1950 1900 60 0000 C CNN + 2 1950 1900 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 1 1 687FC2CE +P 1900 2400 +F 0 "U1" H 1950 2500 30 0000 C CNN +F 1 "PORT" H 1900 2400 30 0000 C CNN +F 2 "" H 1900 2400 60 0000 C CNN +F 3 "" H 1900 2400 60 0000 C CNN + 1 1900 2400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 687FC333 +P 3250 2250 +F 0 "U1" H 3300 2350 30 0000 C CNN +F 1 "PORT" H 3250 2250 30 0000 C CNN +F 2 "" H 3250 2250 60 0000 C CNN +F 3 "" H 3250 2250 60 0000 C CNN + 3 3250 2250 + 0 1 -1 0 +$EndComp +$Comp +L PORT U1 +U 6 1 687FC39A +P 4050 2900 +F 0 "U1" H 4100 3000 30 0000 C CNN +F 1 "PORT" H 4050 2900 30 0000 C CNN +F 2 "" H 4050 2900 60 0000 C CNN +F 3 "" H 4050 2900 60 0000 C CNN + 6 4050 2900 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 687FC537 +P 3650 4250 +F 0 "U1" H 3700 4350 30 0000 C CNN +F 1 "PORT" H 3650 4250 30 0000 C CNN +F 2 "" H 3650 4250 60 0000 C CNN +F 3 "" H 3650 4250 60 0000 C CNN + 4 3650 4250 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 8 1 687FC6F4 +P 4850 1900 +F 0 "U1" H 4900 2000 30 0000 C CNN +F 1 "PORT" H 4850 1900 30 0000 C CNN +F 2 "" H 4850 1900 60 0000 C CNN +F 3 "" H 4850 1900 60 0000 C CNN + 8 4850 1900 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 7 1 687FC787 +P 4800 2400 +F 0 "U1" H 4850 2500 30 0000 C CNN +F 1 "PORT" H 4800 2400 30 0000 C CNN +F 2 "" H 4800 2400 60 0000 C CNN +F 3 "" H 4800 2400 60 0000 C CNN + 7 4800 2400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 687FC84E +P 6150 2250 +F 0 "U1" H 6200 2350 30 0000 C CNN +F 1 "PORT" H 6150 2250 30 0000 C CNN +F 2 "" H 6150 2250 60 0000 C CNN +F 3 "" H 6150 2250 60 0000 C CNN + 9 6150 2250 + 0 1 -1 0 +$EndComp +$Comp +L PORT U1 +U 10 1 687FC8F4 +P 6950 2900 +F 0 "U1" H 7000 3000 30 0000 C CNN +F 1 "PORT" H 6950 2900 30 0000 C CNN +F 2 "" H 6950 2900 60 0000 C CNN +F 3 "" H 6950 2900 60 0000 C CNN + 10 6950 2900 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 12 1 687FCA0D +P 7700 1900 +F 0 "U1" H 7750 2000 30 0000 C CNN +F 1 "PORT" H 7700 1900 30 0000 C CNN +F 2 "" H 7700 1900 60 0000 C CNN +F 3 "" H 7700 1900 60 0000 C CNN + 12 7700 1900 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 11 1 687FCA6A +P 7650 2400 +F 0 "U1" H 7700 2500 30 0000 C CNN +F 1 "PORT" H 7650 2400 30 0000 C CNN +F 2 "" H 7650 2400 60 0000 C CNN +F 3 "" H 7650 2400 60 0000 C CNN + 11 7650 2400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 687FCBCF +P 9000 2250 +F 0 "U1" H 9050 2350 30 0000 C CNN +F 1 "PORT" H 9000 2250 30 0000 C CNN +F 2 "" H 9000 2250 60 0000 C CNN +F 3 "" H 9000 2250 60 0000 C CNN + 13 9000 2250 + 0 1 -1 0 +$EndComp +$Comp +L PORT U1 +U 14 1 687FCD4D +P 9800 2950 +F 0 "U1" H 9850 3050 30 0000 C CNN +F 1 "PORT" H 9800 2950 30 0000 C CNN +F 2 "" H 9800 2950 60 0000 C CNN +F 3 "" H 9800 2950 60 0000 C CNN + 14 9800 2950 + -1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 687FCE65 +P 7650 3600 +F 0 "scmode1" H 7650 3750 98 0000 C CNB +F 1 "SKY130mode" H 7650 3500 118 0000 C CNB +F 2 "" H 7650 3750 60 0001 C CNN +F 3 "" H 7650 3750 60 0001 C CNN + 1 7650 3600 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.sub b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.sub new file mode 100644 index 000000000..9c3996400 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A.sub @@ -0,0 +1,36 @@ +* Subcircuit SN74ALS1011A +.subckt SN74ALS1011A net-_sc2-pad2_ net-_sc1-pad2_ net-_sc5-pad2_ net-_sc11-pad3_ net-_sc1-pad3_ net-_u1-pad6_ net-_sc10-pad2_ net-_sc7-pad2_ net-_sc11-pad2_ net-_u1-pad10_ net-_sc14-pad2_ net-_sc13-pad2_ net-_sc17-pad2_ net-_u1-pad14_ +* h:\esim\esim\library\subcircuitlibrary\sn74als1011a\sn74als1011a.cir +.include CMOS_INVTR.sub +.lib "H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spice" tt +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__diode_pd2nw_11v0.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__r+c.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__pnp.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__linear.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__diode_pw2nd_11v0.model.spice" +.include "H:\esim\eSim\library\sky130_fd_pr\models\sky130_fd_pr__model__inductors.model.spice" +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc6 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad3_ net-_sc2-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc4-pad3_ net-_sc5-pad2_ net-_sc11-pad3_ net-_sc11-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc7 net-_sc12-pad1_ net-_sc7-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc12-pad1_ net-_sc10-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc12 net-_sc12-pad1_ net-_sc11-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc9 net-_sc12-pad1_ net-_sc7-pad2_ net-_sc10-pad1_ net-_sc10-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc10 net-_sc10-pad1_ net-_sc10-pad2_ net-_sc10-pad3_ net-_sc10-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc11 net-_sc10-pad3_ net-_sc11-pad2_ net-_sc11-pad3_ net-_sc11-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc13 net-_sc13-pad1_ net-_sc13-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc14 net-_sc13-pad1_ net-_sc14-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc18 net-_sc13-pad1_ net-_sc17-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc15 net-_sc13-pad1_ net-_sc13-pad2_ net-_sc15-pad3_ net-_sc15-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc16 net-_sc15-pad3_ net-_sc14-pad2_ net-_sc16-pad3_ net-_sc16-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc17 net-_sc16-pad3_ net-_sc17-pad2_ net-_sc11-pad3_ net-_sc11-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +x1 net-_sc1-pad1_ net-_sc1-pad3_ net-_sc11-pad3_ net-_u1-pad6_ CMOS_INVTR +x2 net-_sc12-pad1_ net-_sc1-pad3_ net-_sc11-pad3_ net-_u1-pad10_ CMOS_INVTR +x3 net-_sc13-pad1_ net-_sc1-pad3_ net-_sc11-pad3_ net-_u1-pad14_ CMOS_INVTR +* s c m o d e +* Control Statements + +.ends SN74ALS1011A \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A_Previous_Values.xml b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A_Previous_Values.xml new file mode 100644 index 000000000..020905d17 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/SN74ALS1011A_Previous_Values.xml @@ -0,0 +1 @@ +H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15H:\esim\eSim\library\SubcircuitLibrary\CMOS_INVTRH:\esim\eSim\library\SubcircuitLibrary\CMOS_INVTRH:\esim\eSim\library\SubcircuitLibrary\CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74ALS1011A/analysis b/library/SubcircuitLibrary/SN74ALS1011A/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74ALS1011A/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58-cache.lib b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58-cache.lib new file mode 100644 index 000000000..c743d042c --- /dev/null +++ b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58-cache.lib @@ -0,0 +1,94 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_nor +# +DEF d_nor U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nor" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.cir b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.cir new file mode 100644 index 000000000..bcc97dfc0 --- /dev/null +++ b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.cir @@ -0,0 +1,17 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\SN74AUP1G58\SN74AUP1G58.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/24/25 20:55:14 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U7 Net-_U1-Pad3_ Net-_U4-Pad1_ d_inverter +U2 Net-_U1-Pad1_ Net-_U2-Pad2_ d_inverter +U3 Net-_U1-Pad6_ Net-_U3-Pad2_ d_inverter +U4 Net-_U4-Pad1_ Net-_U3-Pad2_ Net-_U4-Pad3_ d_and +U5 Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U5-Pad3_ d_nor +U6 Net-_U4-Pad3_ Net-_U5-Pad3_ Net-_U1-Pad4_ d_nor +U1 Net-_U1-Pad1_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad6_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.cir.out b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.cir.out new file mode 100644 index 000000000..9f7fa54fe --- /dev/null +++ b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.cir.out @@ -0,0 +1,36 @@ +* c:\fossee\esim\library\subcircuitlibrary\sn74aup1g58\sn74aup1g58.cir + +* u7 net-_u1-pad3_ net-_u4-pad1_ d_inverter +* u2 net-_u1-pad1_ net-_u2-pad2_ d_inverter +* u3 net-_u1-pad6_ net-_u3-pad2_ d_inverter +* u4 net-_u4-pad1_ net-_u3-pad2_ net-_u4-pad3_ d_and +* u5 net-_u2-pad2_ net-_u3-pad2_ net-_u5-pad3_ d_nor +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u1-pad4_ d_nor +* u1 net-_u1-pad1_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad6_ port +a1 net-_u1-pad3_ net-_u4-pad1_ u7 +a2 net-_u1-pad1_ net-_u2-pad2_ u2 +a3 net-_u1-pad6_ net-_u3-pad2_ u3 +a4 [net-_u4-pad1_ net-_u3-pad2_ ] net-_u4-pad3_ u4 +a5 [net-_u2-pad2_ net-_u3-pad2_ ] net-_u5-pad3_ u5 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u1-pad4_ u6 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u5 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u6 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 250e-03 10e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.pro b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.sch b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.sch new file mode 100644 index 000000000..8b1d44e3f --- /dev/null +++ b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.sch @@ -0,0 +1,199 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_inverter U7 +U 1 1 685AC144 +P 4800 3050 +F 0 "U7" H 4800 2950 60 0000 C CNN +F 1 "d_inverter" H 4800 3200 60 0000 C CNN +F 2 "" H 4850 3000 60 0000 C CNN +F 3 "" H 4850 3000 60 0000 C CNN + 1 4800 3050 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U2 +U 1 1 685AC16D +P 4800 3700 +F 0 "U2" H 4800 3600 60 0000 C CNN +F 1 "d_inverter" H 4800 3850 60 0000 C CNN +F 2 "" H 4850 3650 60 0000 C CNN +F 3 "" H 4850 3650 60 0000 C CNN + 1 4800 3700 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U3 +U 1 1 685AC19E +P 4800 4400 +F 0 "U3" H 4800 4300 60 0000 C CNN +F 1 "d_inverter" H 4800 4550 60 0000 C CNN +F 2 "" H 4850 4350 60 0000 C CNN +F 3 "" H 4850 4350 60 0000 C CNN + 1 4800 4400 + 1 0 0 -1 +$EndComp +$Comp +L d_and U4 +U 1 1 685AC1E0 +P 6900 3350 +F 0 "U4" H 6900 3350 60 0000 C CNN +F 1 "d_and" H 6950 3450 60 0000 C CNN +F 2 "" H 6900 3350 60 0000 C CNN +F 3 "" H 6900 3350 60 0000 C CNN + 1 6900 3350 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U5 +U 1 1 685AC23D +P 6900 4000 +F 0 "U5" H 6900 4000 60 0000 C CNN +F 1 "d_nor" H 6950 4100 60 0000 C CNN +F 2 "" H 6900 4000 60 0000 C CNN +F 3 "" H 6900 4000 60 0000 C CNN + 1 6900 4000 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U6 +U 1 1 685AC29F +P 8450 3650 +F 0 "U6" H 8450 3650 60 0000 C CNN +F 1 "d_nor" H 8500 3750 60 0000 C CNN +F 2 "" H 8450 3650 60 0000 C CNN +F 3 "" H 8450 3650 60 0000 C CNN + 1 8450 3650 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5100 3050 6450 3050 +Wire Wire Line + 6450 3050 6450 3250 +Wire Wire Line + 5100 4400 6000 4400 +Wire Wire Line + 6000 4400 6000 3350 +Wire Wire Line + 6000 3350 6450 3350 +Wire Wire Line + 5100 3700 6450 3700 +Wire Wire Line + 6450 3700 6450 3900 +Wire Wire Line + 6000 4000 6450 4000 +Connection ~ 6000 4000 +Wire Wire Line + 7350 3300 7350 3550 +Wire Wire Line + 7350 3550 8000 3550 +Wire Wire Line + 7350 3950 7350 3650 +Wire Wire Line + 7350 3650 8000 3650 +$Comp +L PORT U1 +U 1 1 685AC4F6 +P 4000 3700 +F 0 "U1" H 4050 3800 30 0000 C CNN +F 1 "PORT" H 4000 3700 30 0000 C CNN +F 2 "" H 4000 3700 60 0000 C CNN +F 3 "" H 4000 3700 60 0000 C CNN + 1 4000 3700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685AC57C +P 4000 3050 +F 0 "U1" H 4050 3150 30 0000 C CNN +F 1 "PORT" H 4000 3050 30 0000 C CNN +F 2 "" H 4000 3050 60 0000 C CNN +F 3 "" H 4000 3050 60 0000 C CNN + 3 4000 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685AC5C3 +P 9500 3600 +F 0 "U1" H 9550 3700 30 0000 C CNN +F 1 "PORT" H 9500 3600 30 0000 C CNN +F 2 "" H 9500 3600 60 0000 C CNN +F 3 "" H 9500 3600 60 0000 C CNN + 4 9500 3600 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 6 1 685AC803 +P 4100 4400 +F 0 "U1" H 4150 4500 30 0000 C CNN +F 1 "PORT" H 4100 4400 30 0000 C CNN +F 2 "" H 4100 4400 60 0000 C CNN +F 3 "" H 4100 4400 60 0000 C CNN + 6 4100 4400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4250 3050 4500 3050 +Wire Wire Line + 4250 3700 4500 3700 +Wire Wire Line + 4350 4400 4500 4400 +Wire Wire Line + 8900 3600 9250 3600 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.sub b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.sub new file mode 100644 index 000000000..664a5de6c --- /dev/null +++ b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58.sub @@ -0,0 +1,30 @@ +* Subcircuit SN74AUP1G58 +.subckt SN74AUP1G58 net-_u1-pad1_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad6_ +* c:\fossee\esim\library\subcircuitlibrary\sn74aup1g58\sn74aup1g58.cir +* u7 net-_u1-pad3_ net-_u4-pad1_ d_inverter +* u2 net-_u1-pad1_ net-_u2-pad2_ d_inverter +* u3 net-_u1-pad6_ net-_u3-pad2_ d_inverter +* u4 net-_u4-pad1_ net-_u3-pad2_ net-_u4-pad3_ d_and +* u5 net-_u2-pad2_ net-_u3-pad2_ net-_u5-pad3_ d_nor +* u6 net-_u4-pad3_ net-_u5-pad3_ net-_u1-pad4_ d_nor +a1 net-_u1-pad3_ net-_u4-pad1_ u7 +a2 net-_u1-pad1_ net-_u2-pad2_ u2 +a3 net-_u1-pad6_ net-_u3-pad2_ u3 +a4 [net-_u4-pad1_ net-_u3-pad2_ ] net-_u4-pad3_ u4 +a5 [net-_u2-pad2_ net-_u3-pad2_ ] net-_u5-pad3_ u5 +a6 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u1-pad4_ u6 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u5 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u6 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN74AUP1G58 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58_Previous_Values.xml b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58_Previous_Values.xml new file mode 100644 index 000000000..a0ba30aa8 --- /dev/null +++ b/library/SubcircuitLibrary/SN74AUP1G58/SN74AUP1G58_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes025010secmssecd_inverterd_inverterd_inverterd_andd_nord_nor \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74AUP1G58/analysis b/library/SubcircuitLibrary/SN74AUP1G58/analysis new file mode 100644 index 000000000..0a6c83b5a --- /dev/null +++ b/library/SubcircuitLibrary/SN74AUP1G58/analysis @@ -0,0 +1 @@ +.tran 250e-03 10e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74H87/SN74H87_subckt.cir b/library/SubcircuitLibrary/SN74H87/SN74H87_subckt.cir new file mode 100644 index 000000000..db488d91b --- /dev/null +++ b/library/SubcircuitLibrary/SN74H87/SN74H87_subckt.cir @@ -0,0 +1,27 @@ +.title KiCad schematic +U21 Net-_U15-Pad3_ Net-_U16-Pad3_ Net-_U21-Pad3_ d_or +U20 Net-_U12-Pad3_ Net-_U13-Pad3_ Net-_U20-Pad3_ d_or +U12 S0 A3 Net-_U12-Pad3_ d_and +U13 S1 Net-_U13-Pad2_ Net-_U13-Pad3_ d_and +U14 S0 S1 Net-_U14-Pad3_ d_and +U24 Net-_U20-Pad3_ Net-_U14-Pad3_ Y3 d_or +U1 S0 S1 A1 A2 A3 A4 Y1 Y2 Y3 Y4 PORT +U16 S1 Net-_U16-Pad2_ Net-_U16-Pad3_ d_and +U17 S0 S1 Net-_U17-Pad3_ d_and +U15 S0 A4 Net-_U15-Pad3_ d_and +U25 Net-_U21-Pad3_ Net-_U17-Pad3_ Y4 d_or +U2 A1 Net-_U2-Pad2_ d_inverter +U3 A2 Net-_U10-Pad2_ d_inverter +U5 A4 Net-_U16-Pad2_ d_inverter +U4 A3 Net-_U13-Pad2_ d_inverter +U19 Net-_U19-Pad1_ Net-_U10-Pad3_ Net-_U19-Pad3_ d_or +U23 Net-_U19-Pad3_ Net-_U11-Pad3_ Y2 d_or +U7 S1 Net-_U2-Pad2_ Net-_U18-Pad2_ d_and +U8 S0 S1 Net-_U22-Pad2_ d_and +U6 S0 A1 Net-_U18-Pad1_ d_and +U18 Net-_U18-Pad1_ Net-_U18-Pad2_ Net-_U18-Pad3_ d_or +U22 Net-_U18-Pad3_ Net-_U22-Pad2_ Y1 d_or +U11 S0 S1 Net-_U11-Pad3_ d_and +U10 S1 Net-_U10-Pad2_ Net-_U10-Pad3_ d_and +U9 S0 A2 Net-_U19-Pad1_ d_and +.end diff --git a/library/SubcircuitLibrary/SN74H87/SN74H87_subckt.kicad_sch b/library/SubcircuitLibrary/SN74H87/SN74H87_subckt.kicad_sch new file mode 100644 index 000000000..17935dc8b --- /dev/null +++ b/library/SubcircuitLibrary/SN74H87/SN74H87_subckt.kicad_sch @@ -0,0 +1,1884 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid ccd7432f-e06a-4d64-b4f8-cf3b8d53583d) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 204.47 248.92) (diameter 0) (color 0 0 0 0) + (uuid 0318540a-eaa1-454e-a38b-8f0b59a2bf52) + ) + (junction (at 204.47 186.69) (diameter 0) (color 0 0 0 0) + (uuid 03ab183c-4ce2-4bad-bcd8-ddb48e16f03b) + ) + (junction (at 201.93 203.2) (diameter 0) (color 0 0 0 0) + (uuid 0cd19b4e-7f49-48ad-a417-86edefcc49e3) + ) + (junction (at 204.47 279.4) (diameter 0) (color 0 0 0 0) + (uuid 2e2abfd2-db21-4572-bffb-4f6b7fe95699) + ) + (junction (at 201.93 143.51) (diameter 0) (color 0 0 0 0) + (uuid 34eb8e80-6d58-4672-a8d0-b66834a6ad73) + ) + (junction (at 147.32 251.46) (diameter 0) (color 0 0 0 0) + (uuid 3f43966f-cf14-4f67-b92e-0cae36a03679) + ) + (junction (at 140.97 251.46) (diameter 0) (color 0 0 0 0) + (uuid 58474395-1f19-4b74-8ea6-7efe66e8ef2e) + ) + (junction (at 143.51 111.76) (diameter 0) (color 0 0 0 0) + (uuid 5db54247-0dfa-46e2-9d67-14dc0a1c0717) + ) + (junction (at 204.47 217.17) (diameter 0) (color 0 0 0 0) + (uuid 623109f0-2a4c-4e49-b900-3f1a72645010) + ) + (junction (at 146.05 189.23) (diameter 0) (color 0 0 0 0) + (uuid 71bafd08-90bc-414f-9e82-6d60eaeae121) + ) + (junction (at 201.93 281.94) (diameter 0) (color 0 0 0 0) + (uuid 74724e40-95ef-446b-9e68-4facb65c8bb1) + ) + (junction (at 204.47 312.42) (diameter 0) (color 0 0 0 0) + (uuid abd4647c-bb88-4cf2-b2a5-35056081ed3e) + ) + (junction (at 204.47 139.7) (diameter 0) (color 0 0 0 0) + (uuid b770de1a-fb20-4a8d-bdfe-5189487ec3b8) + ) + (junction (at 201.93 127) (diameter 0) (color 0 0 0 0) + (uuid c9d46722-9de6-4d77-90ed-885277fda13f) + ) + (junction (at 149.86 313.69) (diameter 0) (color 0 0 0 0) + (uuid d42c85fb-9cec-4179-88c1-7608fac6ae91) + ) + (junction (at 201.93 328.93) (diameter 0) (color 0 0 0 0) + (uuid e7161572-5990-4a28-8aaa-931187bacedb) + ) + (junction (at 204.47 110.49) (diameter 0) (color 0 0 0 0) + (uuid ed5e7880-a78d-41fc-a8bb-f41cc5f8d9e4) + ) + (junction (at 201.93 265.43) (diameter 0) (color 0 0 0 0) + (uuid f1faac5f-013e-4ce4-a5c0-4cf215eb1a42) + ) + (junction (at 201.93 219.71) (diameter 0) (color 0 0 0 0) + (uuid fb00fb93-d777-4114-aa4d-8e831fb74410) + ) + + (wire (pts (xy 388.62 313.69) (xy 391.16 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 005ef9b6-a6ca-4767-8261-05f1155295d8) + ) + (wire (pts (xy 389.89 187.96) (xy 389.89 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 019f1bea-99bc-42a1-877d-af882e3dc08b) + ) + (wire (pts (xy 387.35 218.44) (xy 415.29 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02e3fa78-8de2-488d-9afc-afd2c1f06a5e) + ) + (wire (pts (xy 363.22 139.7) (xy 363.22 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 035f5eba-aea6-41f0-828c-2e28d0d164be) + ) + (wire (pts (xy 391.16 250.19) (xy 391.16 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0706cc6f-0d02-467b-a49b-3c6dcd659053) + ) + (wire (pts (xy 149.86 318.77) (xy 365.76 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 082addca-6b86-4f68-86b2-343c57bc06f9) + ) + (wire (pts (xy 204.47 342.9) (xy 365.76 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 099fc117-67f9-4aa8-b8ca-03e53af984ff) + ) + (wire (pts (xy 201.93 203.2) (xy 201.93 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b593f89-b6da-44fd-9227-78cd6e3034b5) + ) + (wire (pts (xy 204.47 279.4) (xy 204.47 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ee2d814-90ff-4afc-be54-b88d377ab792) + ) + (wire (pts (xy 204.47 186.69) (xy 364.49 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10052c1c-f728-4dac-a316-e5c73b6dd11b) + ) + (wire (pts (xy 204.47 110.49) (xy 363.22 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12054a85-c930-49cd-9a61-3a8f9464d885) + ) + (wire (pts (xy 146.05 189.23) (xy 151.13 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12c69c93-fbe8-4ec7-b95b-707125cfb2c8) + ) + (wire (pts (xy 204.47 139.7) (xy 204.47 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c823935-d3cb-48dc-82e3-ed7784db8f66) + ) + (wire (pts (xy 204.47 110.49) (xy 204.47 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1da2d8ad-8b13-4114-8017-5f7dd0069030) + ) + (wire (pts (xy 204.47 248.92) (xy 204.47 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 228c1894-9591-4750-a6f0-52320d26ccd0) + ) + (wire (pts (xy 201.93 281.94) (xy 365.76 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2385146f-0306-4531-8df3-df1c8838984c) + ) + (wire (pts (xy 194.31 71.12) (xy 201.93 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ba7b3c4-1ba6-4250-8aa5-0224a2ab33b7) + ) + (wire (pts (xy 472.44 208.28) (xy 438.15 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f082036-f6c2-4ef5-9df4-4ceb7bf21b1f) + ) + (wire (pts (xy 138.43 111.76) (xy 143.51 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 304b14b0-d2e2-40ca-a641-fe7cbe1e2d24) + ) + (wire (pts (xy 201.93 71.12) (xy 201.93 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 354bf259-ec6e-46dd-88ac-c5440c43147e) + ) + (wire (pts (xy 201.93 219.71) (xy 201.93 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35d1650b-5e1c-4217-8317-fb9ef441735d) + ) + (wire (pts (xy 201.93 203.2) (xy 364.49 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35e221b8-144f-4251-8200-433ba603883c) + ) + (wire (pts (xy 388.62 280.67) (xy 416.56 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39dbc879-c791-4ea5-9ce7-bd911a7389b5) + ) + (wire (pts (xy 388.62 266.7) (xy 391.16 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dbdf5ec-4276-4eaa-a5ba-f3cb837dc232) + ) + (wire (pts (xy 473.71 334.01) (xy 439.42 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e17e344-0460-46c9-b7c1-7734f523f092) + ) + (wire (pts (xy 391.16 266.7) (xy 391.16 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 435a58ea-af1c-4382-849a-cab19c4a75e4) + ) + (wire (pts (xy 201.93 328.93) (xy 201.93 345.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 472a8903-48ae-4f19-9cd7-3d8159c13101) + ) + (wire (pts (xy 198.12 189.23) (xy 198.12 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b748f95-2401-4ce5-bcf9-8bf78d55ab01) + ) + (wire (pts (xy 147.32 255.27) (xy 365.76 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ccbb945-4ce5-4763-bc70-dec56c2f3a7e) + ) + (wire (pts (xy 201.93 281.94) (xy 201.93 328.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51e7ba4b-248c-45c0-8d00-1d4cf85c84e3) + ) + (wire (pts (xy 415.29 195.58) (xy 415.29 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 562328d1-8091-4d7c-853e-f263ac1fba78) + ) + (wire (pts (xy 143.51 111.76) (xy 151.13 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56ee7c0e-3af3-428a-9456-a58b04da95aa) + ) + (wire (pts (xy 204.47 217.17) (xy 364.49 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 572b49b2-6018-488b-865e-fca3547e1aa9) + ) + (wire (pts (xy 412.75 195.58) (xy 415.29 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59525781-2a0d-4cbe-aacc-49c39a8fa601) + ) + (wire (pts (xy 414.02 257.81) (xy 416.56 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5af5dfcd-d0bf-40d2-a8e5-9d4f570ca73e) + ) + (wire (pts (xy 204.47 139.7) (xy 363.22 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cbe7a69-89f6-4af5-9d58-69674247980b) + ) + (wire (pts (xy 204.47 217.17) (xy 204.47 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d01a72b-5923-4682-8b31-ae6e83d37386) + ) + (wire (pts (xy 143.51 111.76) (xy 143.51 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d82e740-0fc2-4a1c-a68e-6de151435246) + ) + (wire (pts (xy 201.93 127) (xy 363.22 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e0799e2-40d8-49db-92ff-3ed0c57a1aa9) + ) + (wire (pts (xy 166.37 189.23) (xy 198.12 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e743373-bf4b-4d52-8dfc-d82ca38a8845) + ) + (wire (pts (xy 140.97 251.46) (xy 147.32 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6029a853-bb53-41c0-8a14-c1154d8b47f5) + ) + (wire (pts (xy 414.02 142.24) (xy 414.02 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 610c1b04-532c-4851-aa84-0820d2520a8a) + ) + (wire (pts (xy 471.17 132.08) (xy 436.88 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 613700f2-e124-4297-8642-ef54b6bdbc68) + ) + (wire (pts (xy 166.37 129.54) (xy 166.37 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63a54d26-2cda-4d6e-aec5-71f4710b3b2b) + ) + (wire (pts (xy 204.47 279.4) (xy 365.76 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6adc620b-9fd3-49c9-b073-9f426ece5c70) + ) + (wire (pts (xy 204.47 48.26) (xy 204.47 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73e85731-e604-4939-86ff-5058d849505f) + ) + (wire (pts (xy 387.35 204.47) (xy 389.89 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 753d888a-a4f5-48fa-948a-6f17cb16dfa4) + ) + (wire (pts (xy 139.7 251.46) (xy 140.97 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75d7d9c0-f958-4dc0-ad02-d3c9360d882d) + ) + (wire (pts (xy 194.31 48.26) (xy 204.47 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76cccb12-7b71-45ac-a8ce-a00d96994d7c) + ) + (wire (pts (xy 386.08 128.27) (xy 388.62 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 790e7f3c-407e-49dc-bfab-5ea86cfc853a) + ) + (wire (pts (xy 387.35 187.96) (xy 389.89 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79a2f289-4645-4450-bc34-5cc8938357af) + ) + (wire (pts (xy 365.76 267.97) (xy 167.64 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c49a102-cf5f-4604-a180-a0f45ae4fcf2) + ) + (wire (pts (xy 416.56 257.81) (xy 416.56 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80845cef-9e56-4470-84d6-027bd198d1c6) + ) + (wire (pts (xy 140.97 313.69) (xy 149.86 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 833deb91-04ae-4605-98a3-5857d1221ef4) + ) + (wire (pts (xy 149.86 313.69) (xy 153.67 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84458682-c725-4713-9723-ac77737389c9) + ) + (wire (pts (xy 388.62 344.17) (xy 416.56 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 866649b3-9e33-4f55-a70a-d4033fbddc79) + ) + (wire (pts (xy 388.62 330.2) (xy 391.16 330.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8930578b-d988-45ab-b2b3-33acf321ca4a) + ) + (wire (pts (xy 204.47 312.42) (xy 365.76 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b1b38b0-d23d-4303-aaba-7384ffe02085) + ) + (wire (pts (xy 411.48 119.38) (xy 414.02 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b513f6c-df46-467e-b046-c5da0c734c98) + ) + (wire (pts (xy 416.56 321.31) (xy 416.56 332.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bd796be-9a7f-48e0-90d5-ec2d4f098c54) + ) + (wire (pts (xy 416.56 344.17) (xy 416.56 335.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8be2eb3c-ec16-483a-8621-66b96b14af87) + ) + (wire (pts (xy 204.47 312.42) (xy 204.47 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f8e1131-d2d7-40e7-a817-24d1f586db93) + ) + (wire (pts (xy 166.37 129.54) (xy 363.22 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 982f336d-e230-48e9-a3b9-51486a64d00b) + ) + (wire (pts (xy 201.93 265.43) (xy 365.76 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99574266-2ee1-4e0f-b273-8dfaab0b26da) + ) + (wire (pts (xy 204.47 248.92) (xy 365.76 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a386900-7dd0-4666-9356-372a3c02b6de) + ) + (wire (pts (xy 391.16 313.69) (xy 391.16 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a028df4e-0abc-4870-a339-f0edf3fe8252) + ) + (wire (pts (xy 201.93 143.51) (xy 201.93 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a274164c-45ae-4638-a9cb-6d8b08534161) + ) + (wire (pts (xy 201.93 328.93) (xy 365.76 328.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a56dc905-0e50-4703-ae18-499608f24751) + ) + (wire (pts (xy 386.08 111.76) (xy 388.62 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a63542d2-e541-4d81-ac62-b2511da88c13) + ) + (wire (pts (xy 389.89 204.47) (xy 389.89 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7802cb7-a99d-4fa2-b014-486c1f1245aa) + ) + (wire (pts (xy 146.05 189.23) (xy 146.05 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8e7ed30-cf4f-4b10-a1d2-e5eb1342fdb8) + ) + (wire (pts (xy 414.02 321.31) (xy 416.56 321.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9d36298-8dab-4eca-84ee-dab2e476009b) + ) + (wire (pts (xy 388.62 111.76) (xy 388.62 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac29e045-9beb-4289-a171-d1cbd3157f57) + ) + (wire (pts (xy 365.76 255.27) (xy 365.76 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aca97c5c-76d7-4071-a48b-4c9567b0d862) + ) + (wire (pts (xy 416.56 271.78) (xy 416.56 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aec5475e-f6f7-4246-b16b-1d86d8929d64) + ) + (wire (pts (xy 168.91 331.47) (xy 168.91 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b301e39d-98e7-4fe3-b413-77dccc4d6411) + ) + (wire (pts (xy 201.93 219.71) (xy 364.49 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5543788-76f0-4f5f-ac42-570e25cbfe7f) + ) + (wire (pts (xy 204.47 186.69) (xy 204.47 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bade2408-a47b-4ea7-8b7a-1267855276fe) + ) + (wire (pts (xy 414.02 119.38) (xy 414.02 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb982810-3271-4f18-ae04-e59fac61b478) + ) + (wire (pts (xy 147.32 251.46) (xy 147.32 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c14e0083-abdf-415f-9703-3e036dd63235) + ) + (wire (pts (xy 146.05 195.58) (xy 364.49 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4e4553e-3a44-41bf-869f-778caece8065) + ) + (wire (pts (xy 473.71 270.51) (xy 439.42 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5a5ed58-65ac-44de-b5de-5a3e868ede82) + ) + (wire (pts (xy 198.12 205.74) (xy 364.49 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6caec08-a40f-4f84-8a04-0d21eeee1709) + ) + (wire (pts (xy 143.51 115.57) (xy 363.22 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8ead5a9-4e1f-41f3-8a61-b22a73d23ca1) + ) + (wire (pts (xy 201.93 143.51) (xy 363.22 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd03c483-2099-4516-9405-ffe5eb7a6d45) + ) + (wire (pts (xy 391.16 330.2) (xy 391.16 322.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d06d5869-aee8-4e5c-92fd-ae6f31f4fc9b) + ) + (wire (pts (xy 201.93 265.43) (xy 201.93 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4bba37a-e694-4f6f-9267-df8e2b7611dd) + ) + (wire (pts (xy 201.93 345.44) (xy 365.76 345.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4e7b362-23b4-448f-8a6d-c804a0736711) + ) + (wire (pts (xy 167.64 267.97) (xy 167.64 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5c27faf-7525-4029-aac1-4d543e674f0b) + ) + (wire (pts (xy 138.43 189.23) (xy 146.05 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd11dab6-5a85-4b75-a019-d8cfe85f3e54) + ) + (wire (pts (xy 364.49 195.58) (xy 364.49 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dea65a73-a290-4621-8ccf-5c1908946e6e) + ) + (wire (pts (xy 386.08 142.24) (xy 414.02 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2827d82-96ed-45b6-8c73-2280bba3319a) + ) + (wire (pts (xy 201.93 127) (xy 201.93 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eacf7045-aaa7-4bd2-babd-5623df182862) + ) + (wire (pts (xy 149.86 313.69) (xy 149.86 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef393650-cd49-47f9-81fb-5107fcad8917) + ) + (wire (pts (xy 365.76 331.47) (xy 168.91 331.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f16cd579-18b2-4490-9db6-512e43af6aac) + ) + (wire (pts (xy 388.62 250.19) (xy 391.16 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f20a7c58-1323-4bfa-9e94-6ede6c13b603) + ) + (wire (pts (xy 388.62 128.27) (xy 388.62 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5aeacea-ad92-42eb-a54a-aa1230dee2cc) + ) + (wire (pts (xy 363.22 115.57) (xy 363.22 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f942540e-f34a-4f41-88a2-e15703f44b24) + ) + (wire (pts (xy 365.76 318.77) (xy 365.76 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb555872-b8c3-4ee2-8b33-c18b9ea41773) + ) + (wire (pts (xy 415.29 218.44) (xy 415.29 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbee1587-d846-4aac-8cf2-59800acd5606) + ) + (wire (pts (xy 147.32 251.46) (xy 152.4 251.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd720f8e-773e-48f8-8817-310282380627) + ) + + (global_label "S0" (shape input) (at 199.39 48.26 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 13880d81-bd62-417b-95dd-34a235300629) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 199.3106 43.4279 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y2" (shape output) (at 458.47 208.28 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 200a69cf-2f41-4389-9819-0ba5ccc2b71b) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 458.3906 203.5688 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape input) (at 146.05 313.69 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2b61779c-a94e-4f88-97a2-d6119821c23e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 145.9706 308.9788 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y4" (shape output) (at 458.47 334.01 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 323a1ee2-4500-455a-93ed-94be47d28a8e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 458.3906 329.2988 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 140.97 189.23 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 5de5e719-470e-4593-aa14-ced42b902753) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 140.8906 184.5188 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y3" (shape output) (at 462.28 270.51 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7373f5b8-435a-459f-874f-c6a6653889a9) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 462.2006 265.7988 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "S1" (shape input) (at 198.12 71.12 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 8ae3a28b-3895-4853-af16-24883160aaca) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 198.0406 66.2879 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 140.97 111.76 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 95af8728-fb25-4ad1-a8f9-76e95dfe9c42) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 140.8906 107.0488 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y1" (shape output) (at 450.85 132.08 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c30b07e8-b9ea-4a36-a55e-4d5ea8e68f17) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 450.7706 127.3688 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A3" (shape input) (at 144.78 251.46 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e70d9c8e-7aa0-4e46-b9b9-686116371277) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 144.7006 246.7488 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 377.19 251.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 00563e68-0586-4a21-a174-9655a33c53ff) + (property "Reference" "U12" (id 0) (at 377.19 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 377.19 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f11b285-3945-49d6-a91f-19af4351d115)) + (pin "2" (uuid 840763fc-3333-4bd6-b599-815658819082)) + (pin "3" (uuid 428ea58c-f929-429d-abca-d5b97f545837)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 427.99 335.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 03876ec4-536b-4696-a8c1-49ef42933a34) + (property "Reference" "U25" (id 0) (at 427.99 326.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 427.99 330.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 427.99 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 427.99 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76f6a62e-7067-4bed-b3a7-089dc36ce220)) + (pin "2" (uuid 35a7883f-e119-44ec-b5ea-d94b2fe365de)) + (pin "3" (uuid ffa02679-285a-454c-a01d-4a3dd4980c33)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 426.72 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04bd1687-f6f3-4786-a00b-c0606894252e) + (property "Reference" "U23" (id 0) (at 426.72 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 426.72 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 426.72 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 426.72 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6cef232a-c40d-4b4b-b894-11e5d3163f37)) + (pin "2" (uuid bc8352c8-a719-4c8f-828d-4aee620ce765)) + (pin "3" (uuid 3581177a-d049-4083-ab13-a9bffce7ae56)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 377.19 267.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 07c44418-f9f5-4c61-9285-e6579c2927ee) + (property "Reference" "U13" (id 0) (at 377.19 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 377.19 262.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 267.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 267.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9f812a98-d9c0-4e7e-87ac-d7f3c92c09b9)) + (pin "2" (uuid 3e08e0b5-8c43-4ecd-a97a-6f0fb9a16efa)) + (pin "3" (uuid d0081e1a-de44-4f6c-9b09-f179c68d6eef)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 480.06 334.01 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0addd7bc-287e-4494-85d0-7ede19ccf5df) + (property "Reference" "U1" (id 0) (at 483.87 333.375 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 483.87 335.915 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 480.06 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 480.06 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c42062c0-6bcd-47e4-a751-ccc1fa944e7b)) + (pin "2" (uuid 8731e33a-1d37-4617-98ac-bd397e38d2bd)) + (pin "3" (uuid 0fcd722f-3e6d-4490-a139-5caa6cc6b322)) + (pin "4" (uuid 748214b1-3ae0-4443-90ad-bc4c7477ae2b)) + (pin "5" (uuid 291f9ab3-e1e0-41ba-a550-1fd0ad25bb29)) + (pin "6" (uuid 402a388e-f361-4397-b308-be1e95621633)) + (pin "7" (uuid 55b0abf6-04c7-42d3-981b-e4cdcf1aa12a)) + (pin "8" (uuid ff7272c5-cd52-4101-a3fb-859ae15fa03f)) + (pin "9" (uuid 3b6b1065-ddee-477b-90f8-7aff7de013dc)) + (pin "10" (uuid 88762179-5b84-4ce3-9300-627805c0b870)) + (pin "11" (uuid cd381807-fca8-48a7-9b4e-052b4e27b015)) + (pin "12" (uuid d1adc1de-45ae-42c6-bc27-7c4fdb308566)) + (pin "13" (uuid f2717732-93db-4cb6-86b8-18b7e490c2b8)) + (pin "14" (uuid 34cfeb52-2f8e-42df-bb6c-81dda5ec6474)) + (pin "15" (uuid 8a062a84-717f-4204-ad7c-b29c81bc01a0)) + (pin "16" (uuid f2232894-0226-4e80-b6a1-7edaa85cc7e8)) + (pin "17" (uuid 01796f8a-82d2-4372-beec-099540457cea)) + (pin "18" (uuid a6e9e2ac-ebc0-424c-b4cd-e523332f6769)) + (pin "19" (uuid 21bb58c5-8446-4a1b-be48-81e26bfedf35)) + (pin "20" (uuid af5d46c2-69a1-4571-a951-9c1ed7d3ceb0)) + (pin "21" (uuid 3af895ba-18a8-4d24-90b5-af973fe07a59)) + (pin "22" (uuid c0048018-7b37-4a8a-a15f-e8ab0c74e2ee)) + (pin "23" (uuid 4d208abe-8404-4ba5-bfc2-2dd47080829a)) + (pin "24" (uuid 2e0d2190-c3d8-4a0e-a1dd-f2acc4b23360)) + (pin "25" (uuid d6e69238-474a-4843-8e9f-b3b833a4caac)) + (pin "26" (uuid 327f0b36-80c3-4a58-aa29-9abb21977796)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 374.65 143.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0b0a162b-43e2-408a-acd1-56b2449c94dd) + (property "Reference" "U8" (id 0) (at 374.65 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 374.65 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 374.65 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 50cbe299-a1a1-4388-b987-1961f61aaf34)) + (pin "2" (uuid 86ac9bf3-ac49-453e-8475-3de0990f9bbe)) + (pin "3" (uuid d3446dbf-ba4e-42ed-82f7-d92f3c8ad736)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 425.45 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1504dd13-850c-4e0b-8e56-6d0d56712e48) + (property "Reference" "U22" (id 0) (at 425.45 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 425.45 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 425.45 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 425.45 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b33c0660-be75-424b-a620-acdff430b4d5)) + (pin "2" (uuid bb13c001-ed1d-49bf-bed3-fff76e388b44)) + (pin "3" (uuid 9d2cb66e-b14d-4252-8588-d5032c29b8cd)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 375.92 219.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17a58b17-a93e-45c3-a82f-67f57f8a0a62) + (property "Reference" "U11" (id 0) (at 375.92 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 375.92 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 375.92 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 513457d3-2961-4d3e-acc7-fa2cdf75a0b3)) + (pin "2" (uuid 13c8cb9d-972b-40b4-8049-83a28881c246)) + (pin "3" (uuid 7c5c60c9-81c0-4057-a162-a13d7837b2cf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 375.92 189.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1cd05846-26bb-4237-8a3e-d02d4f35b145) + (property "Reference" "U9" (id 0) (at 375.92 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 375.92 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 375.92 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97efd115-bc28-43cb-b1c6-0d3faa7397ad)) + (pin "2" (uuid 39e06589-9a95-4984-a511-97ba411dc7d7)) + (pin "3" (uuid b8183242-6f68-493d-960e-46fd794e75ee)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 161.29 313.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 34b4fa1c-2d8b-4638-a7de-16832baeaecf) + (property "Reference" "U5" (id 0) (at 161.29 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 161.29 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 162.56 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 656cfb4e-3d0c-48e8-b700-b73fa7ec07f1)) + (pin "2" (uuid 28266616-413b-4322-845d-1bdf0f67b463)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 402.59 259.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 37977a70-d08d-4087-b094-f9a038a7b54a) + (property "Reference" "U20" (id 0) (at 402.59 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 402.59 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 402.59 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 402.59 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid df327aa1-bb69-43a5-a6c4-8eb198d58b7e)) + (pin "2" (uuid 1ceb89cc-a2ef-4d0f-84e6-fc51cb230567)) + (pin "3" (uuid c26ffc99-edc1-460f-8a41-8e09eb48ff82)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 480.06 270.51 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3e5eab1b-7252-4bf2-aba6-ca99b2fc78e1) + (property "Reference" "U1" (id 0) (at 483.87 269.875 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 483.87 272.415 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 480.06 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 480.06 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid efed319f-28cb-47b8-8bfd-3d7b11d111e0)) + (pin "2" (uuid a3d7158e-e9b6-4bc8-a60c-27056ace88d2)) + (pin "3" (uuid 7f0bff2a-a5e2-461f-8da8-569680b83bdd)) + (pin "4" (uuid 7c3b9ee1-0d54-42de-9c52-8687175edc8b)) + (pin "5" (uuid 7a65f260-0396-4657-bca2-2cdfa33bb180)) + (pin "6" (uuid 7be17fe7-45b6-4ea3-9b35-ab41d1a9c2eb)) + (pin "7" (uuid 04fc5e7f-08ea-4daf-bdec-f4d9917c18a2)) + (pin "8" (uuid 8b351c0e-5cfe-4468-b19b-4991095f74f4)) + (pin "9" (uuid e3545893-b8dc-4a6f-9f1f-11ac4a3a1793)) + (pin "10" (uuid 31bc38ab-3f9b-437d-a449-efdf21231014)) + (pin "11" (uuid 0bca373e-8bfb-4edd-9717-a0947822312d)) + (pin "12" (uuid 6aca86f5-3efd-496c-80b9-9d9bb13f431a)) + (pin "13" (uuid 5fb214ec-fe77-4f0b-8531-5adf5e921a84)) + (pin "14" (uuid 0b582682-9096-4d4a-9ecd-38b57af10104)) + (pin "15" (uuid 3be1ddac-6e74-42ec-960b-0c80f53e2ce3)) + (pin "16" (uuid 1f709fe0-4047-475f-8040-1b708ce33178)) + (pin "17" (uuid 57e700c8-bd83-41d1-b023-9bfa1081fca6)) + (pin "18" (uuid 0558a79e-95eb-4a71-a6de-23c755349c72)) + (pin "19" (uuid 9cd0836f-e19a-4ddb-9ff6-3abd988917ad)) + (pin "20" (uuid 878491df-8c01-4681-8339-ac127841f603)) + (pin "21" (uuid 1c5f81a8-f93d-4556-85b9-e2674887ac79)) + (pin "22" (uuid cd3fefeb-fb26-4cec-b16b-217ed7125772)) + (pin "23" (uuid 9c7fa24b-6e01-4d3a-9903-9c796da58609)) + (pin "24" (uuid c1fac89d-2461-4d59-b1ea-e33494ac7168)) + (pin "25" (uuid 4c256590-31c0-4653-b5a8-d58ea8229766)) + (pin "26" (uuid 3b367580-0c17-436e-8500-b75324468720)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 427.99 271.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 461fffaa-f4b3-455d-9e0e-33e5a457abb6) + (property "Reference" "U24" (id 0) (at 427.99 262.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 427.99 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 427.99 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 427.99 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0bbd667c-fb67-41e7-b7f7-a3aab4e1a9d4)) + (pin "2" (uuid c8a29cb5-e63e-4cb4-9312-74f0752fc3a6)) + (pin "3" (uuid 0b3f55a2-b7bf-431c-8572-ef047a4c1e27)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 375.92 205.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51c81dcf-b10c-4a83-bae4-d76f7725365c) + (property "Reference" "U10" (id 0) (at 375.92 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 375.92 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 375.92 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d6c8cc8c-dd88-4f3a-b207-fb78916035a9)) + (pin "2" (uuid 797fc212-9d82-45ac-b2e5-64a98b87539b)) + (pin "3" (uuid 5a082b25-eca7-4cca-b74b-ffd4711e6925)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 132.08 189.23 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7529a9e6-ac56-4bb7-a7fa-b183735a5044) + (property "Reference" "U1" (id 0) (at 132.715 184.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 132.715 186.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 132.08 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 132.08 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e3b269e6-c30c-426d-9649-b54df289a1de)) + (pin "2" (uuid 0a5f4c1d-8a5a-4343-91ca-31bc0c4193ce)) + (pin "3" (uuid 6affa5f5-f97e-4c4e-97ab-4c62ba237dfa)) + (pin "4" (uuid 29fa6ac1-affd-4bda-aaa5-e46b6142cc69)) + (pin "5" (uuid d927c766-0677-4b11-8eb3-b0211a63e1ef)) + (pin "6" (uuid ff90e6b8-a99d-43b5-9ecf-1e1119aea954)) + (pin "7" (uuid 9eb4140b-42ee-46e2-949b-22eff3a34183)) + (pin "8" (uuid 54951eb8-ffa1-49f7-8ad2-392e69ea90b8)) + (pin "9" (uuid b7e3552f-463d-442c-9e87-be5dce9db1c3)) + (pin "10" (uuid 5a7de553-da22-406a-ab5c-a0fa27eee9b2)) + (pin "11" (uuid 3dfb7ba7-1e31-4f43-8375-11761d86d442)) + (pin "12" (uuid f3b8d917-99a2-4698-ba93-777d4205edff)) + (pin "13" (uuid 270f2884-a312-44dc-a4e8-08c6cd0f8a82)) + (pin "14" (uuid aa3a5247-8f4f-421d-9f35-a01c01055e67)) + (pin "15" (uuid 3af2abdc-d7ca-491c-bd5e-cd77389c61c4)) + (pin "16" (uuid d4f03a1c-8fda-4349-ba66-023494f3e3ef)) + (pin "17" (uuid fdd28a5a-9c8e-496e-b68d-5e813cfa03e5)) + (pin "18" (uuid 92657579-f440-4735-97ad-0366db8048ef)) + (pin "19" (uuid 7e83c1d8-c157-48d2-8330-18de5a3c4ca5)) + (pin "20" (uuid f5bb8c36-aa45-4545-a5af-1ea0b334d0f4)) + (pin "21" (uuid dad68a26-2b22-4db5-9b91-36b3593ffad3)) + (pin "22" (uuid fe1c38f1-3fb7-40fa-bd64-51cffa974109)) + (pin "23" (uuid abb3cd5d-e396-42a8-8fb7-4a49cb6ac60b)) + (pin "24" (uuid 5f63748a-5ea8-4978-b1a9-c7492ea80cab)) + (pin "25" (uuid 69ad68b7-e094-4f67-9861-a967d75b51ce)) + (pin "26" (uuid d0876de3-93ad-4dcf-8d3c-dec5057141b7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 158.75 189.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 88f5e042-3aff-4d4c-a846-afa0d950bd7e) + (property "Reference" "U3" (id 0) (at 158.75 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 158.75 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 160.02 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 160.02 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6601a718-0d48-476c-b9ab-dc40ab417708)) + (pin "2" (uuid 0d4e3970-38fe-4ee9-8ab3-5682a411bc16)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 134.62 313.69 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8dc2cd70-1605-4433-b45c-ed8de42562be) + (property "Reference" "U1" (id 0) (at 135.255 308.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 135.255 311.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 134.62 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 134.62 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5b86adcc-9a9c-4dd0-9b56-7e7cafb2acdf)) + (pin "2" (uuid 9222e575-5dcf-46ca-890a-bd3696f3b8d3)) + (pin "3" (uuid 2ad31a8d-d607-4554-a933-f81377a3879d)) + (pin "4" (uuid 0c4a9d4f-5401-4906-9c6e-2f642370c7e7)) + (pin "5" (uuid d34dcbd9-5983-4d1f-8434-b7e8eaff64d1)) + (pin "6" (uuid 94809504-950c-4482-b36f-6a5cd82d4388)) + (pin "7" (uuid 5dfedb19-77bd-4a2e-9562-0362f8ae0738)) + (pin "8" (uuid 688fb4cd-947f-41ba-af0e-5d5bcc736936)) + (pin "9" (uuid 25498d06-5b9d-49f1-b74a-888db06c9b16)) + (pin "10" (uuid 5930c650-376a-4f3c-9a91-45e47de2b21b)) + (pin "11" (uuid 024be42c-529b-40b2-a024-c96197451e99)) + (pin "12" (uuid 7ab885f3-cabb-49e8-abf3-966df13dc81c)) + (pin "13" (uuid 4009ad27-debb-46f7-986d-2b88a6aa9d89)) + (pin "14" (uuid abbbde25-8fd3-4c93-b16c-f59e6b8ba027)) + (pin "15" (uuid 32ec353c-a931-4450-90ea-773e63b83d99)) + (pin "16" (uuid 9b6833e7-c735-48ce-972a-a23356e3422f)) + (pin "17" (uuid 7dbf2f77-3cc0-4737-ad17-695ff176410f)) + (pin "18" (uuid 3d35c443-d280-49ac-9502-b8c5e56537f4)) + (pin "19" (uuid 8b7641d6-6e8f-4a83-8b74-d1a38e368822)) + (pin "20" (uuid 5c7e29d9-10e8-4199-a3bd-8fb56405faf6)) + (pin "21" (uuid 2c478ca3-44fb-464a-a19a-4b3c14cc1a60)) + (pin "22" (uuid 5e196b94-7279-45b3-a4f9-e7f00d14bd53)) + (pin "23" (uuid 7b3675cc-98f8-43f2-8fbe-6c731aee822e)) + (pin "24" (uuid b2978279-515f-45af-aee9-627dd163cb70)) + (pin "25" (uuid 99ef197b-7ba1-496a-bf8b-638738b01deb)) + (pin "26" (uuid 60e37e9f-8c0d-41a6-9ab3-2364ecd0a9dd)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 187.96 71.12 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 94c292e2-556b-4447-b19a-54339c7ff555) + (property "Reference" "U1" (id 0) (at 188.595 66.04 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 188.595 68.58 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 187.96 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 649bb9dd-afd8-4ab5-b57b-8827d91f5d56)) + (pin "2" (uuid 17a486b9-3f89-4f9e-b546-59ed9545df79)) + (pin "3" (uuid 70f8d94e-0a3e-4532-99f7-6cd550deb8e4)) + (pin "4" (uuid 9906095d-3b2f-4a7a-8ae9-4378d23b0175)) + (pin "5" (uuid e8130722-39ae-45b6-a278-533cdc703219)) + (pin "6" (uuid f2df46a3-fb05-4a68-a3eb-99b87f37426e)) + (pin "7" (uuid d85cb70c-4fe9-4451-9df5-c0df5c6fff91)) + (pin "8" (uuid 6ca220b1-a807-49ef-ada3-3050936b7d81)) + (pin "9" (uuid 426d8da9-6a2d-4732-8288-87f6534be709)) + (pin "10" (uuid 7bbbd686-2823-48be-a5d7-57be1c394688)) + (pin "11" (uuid 11921fa9-7c91-4cdf-8ebe-8f349434d6c7)) + (pin "12" (uuid 0aeaef58-6945-4cc6-9806-d24cb33ed0ec)) + (pin "13" (uuid b88b97d1-28b3-4c64-8119-218edbca6238)) + (pin "14" (uuid 840659a5-0961-49f6-bdaf-399e5328ed7e)) + (pin "15" (uuid 42ba6079-30b5-4701-b3e2-04dc02710d9b)) + (pin "16" (uuid 0e9cc192-1eca-43f9-8daf-4a9f24fff408)) + (pin "17" (uuid fac9a49a-1b22-40d0-ac93-2fa1c2e5b83d)) + (pin "18" (uuid 6a3fc3ad-72fb-43b2-a663-b118219e2db9)) + (pin "19" (uuid 55dd3517-4276-4a89-9458-d3c316d9beb1)) + (pin "20" (uuid 8b1fe040-5926-4e91-acd6-a42d57bb762c)) + (pin "21" (uuid b179d1a3-ba89-4f4b-9b71-07525177be60)) + (pin "22" (uuid 7700511d-9efb-401a-abdd-e0375e118512)) + (pin "23" (uuid 2b81ecca-efce-4a82-a71d-b11e1dc85efe)) + (pin "24" (uuid 152e4a27-f2f7-486b-8505-7bfd9d253835)) + (pin "25" (uuid 7818cac5-25d4-4b20-bc89-fc435a95acf6)) + (pin "26" (uuid 0cccaae7-655d-415b-ac16-be1030a4475d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 187.96 48.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 952ce90c-08f9-4ae3-82cf-2beb9e2b00e8) + (property "Reference" "U1" (id 0) (at 188.595 43.18 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 188.595 45.72 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 187.96 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f43ec3f-b5fa-4c3f-957a-e98453b1c386)) + (pin "2" (uuid 738260e2-e4d5-40b4-b8e3-e119510221a1)) + (pin "3" (uuid 21415c3a-356d-43a9-af9d-34e805f1d480)) + (pin "4" (uuid 409b0611-a5b3-477e-97df-dbb63e548c0e)) + (pin "5" (uuid 91247e24-4eef-4d1d-99b8-ba4cce1459db)) + (pin "6" (uuid c6d72097-6592-42e1-9a96-11e80595d9b8)) + (pin "7" (uuid e2def481-caef-496e-9839-564fecd37ae9)) + (pin "8" (uuid 40a6c81d-12b3-400d-b899-75c7dba86bd7)) + (pin "9" (uuid 423d8299-f3be-4609-9cb1-7dc0d4727f73)) + (pin "10" (uuid 634371d7-d5aa-4394-bd25-d4b0598feadb)) + (pin "11" (uuid f1348834-5335-4211-970e-e561c1dd275a)) + (pin "12" (uuid 1154eb31-2f8c-49cf-9e32-08d845092284)) + (pin "13" (uuid 3f199125-bb21-4d42-814e-17481ffa9a05)) + (pin "14" (uuid 41f0e52f-1c11-488a-a77f-9a7d83a75296)) + (pin "15" (uuid cf2571a8-493f-4119-aa45-e65c742f1f43)) + (pin "16" (uuid 70434701-f20d-440a-baad-ec75af091114)) + (pin "17" (uuid 1b72594e-658c-4f8b-9851-d8650ac08d53)) + (pin "18" (uuid 57cbd7c2-34bd-4fd9-9f15-3f8bb0a894b1)) + (pin "19" (uuid 4e8a67fb-0907-4e27-9cd4-3444fa877abd)) + (pin "20" (uuid 5a3e5590-f3cf-40c3-8e1f-639bc4054eab)) + (pin "21" (uuid ab77186e-355d-46b9-9a45-ae5ac66768f7)) + (pin "22" (uuid d6035ed5-fdad-41df-9cc2-221c384338fb)) + (pin "23" (uuid 0d2ee4a0-b460-49f2-8280-c911aa3c8f05)) + (pin "24" (uuid ba3daac0-44a1-4cb5-b909-1adcfbc42e95)) + (pin "25" (uuid 23d8c71c-9011-4b5a-8a7d-1aa1f3870416)) + (pin "26" (uuid 2886fe56-5167-48e0-ade8-a202762cc1da)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 377.19 314.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 979f4c7d-f88e-47c1-af31-f8b7f950ea8c) + (property "Reference" "U15" (id 0) (at 377.19 306.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 377.19 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 52316c26-6d11-4a6c-817a-55800ec60ab1)) + (pin "2" (uuid 70a752a7-eac0-40e9-a056-019c6adaf42a)) + (pin "3" (uuid b0faddf5-b1e5-475c-bffb-4bf5f45b0c76)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 402.59 322.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 99453ba1-404a-4d71-8c77-9bc3247da186) + (property "Reference" "U21" (id 0) (at 402.59 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 402.59 317.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 402.59 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 402.59 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 49a6d910-02bf-4d42-842e-4cd70bac9238)) + (pin "2" (uuid 4ee8d88c-fd1c-4f25-8147-b3d8a9e6f9b6)) + (pin "3" (uuid 5f6d543e-8e95-4d39-92d1-364f14dc3f4f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 478.79 208.28 180) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a796a072-3706-4a9e-860c-9b8979b0cd17) + (property "Reference" "U1" (id 0) (at 482.6 207.645 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 482.6 210.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 478.79 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 478.79 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e473e3a-1c3d-45fa-963e-3c9c3301b9d9)) + (pin "2" (uuid 23c7f531-fc95-4845-952e-13950b70d8b9)) + (pin "3" (uuid 2c276d1b-9424-4b77-9bcc-31252550e16a)) + (pin "4" (uuid 8c701fc1-7b07-4668-8895-5e9e4363a746)) + (pin "5" (uuid de96856b-1d6a-4305-b59a-113718f1c06e)) + (pin "6" (uuid 9367ebca-17ff-4295-9a29-c01b126bba5a)) + (pin "7" (uuid 48052238-8dfa-47c7-b0de-2d4640edf739)) + (pin "8" (uuid ae1d316f-f3e0-4f0d-bc71-87911974a5da)) + (pin "9" (uuid 79c24fe2-ac95-4bd2-a9e5-0d15a71efbb6)) + (pin "10" (uuid 6ec268ba-0325-46b2-a133-6f4bd67a84df)) + (pin "11" (uuid f0e5fd2e-1022-4d06-a90b-496c047c3291)) + (pin "12" (uuid 652c9532-3122-4315-817f-652ad12d2877)) + (pin "13" (uuid 5bf1c64b-b55e-4ca5-a416-e751c8bf9a05)) + (pin "14" (uuid 44f807ca-1c1c-4ca4-a2bb-c98739c7a78f)) + (pin "15" (uuid 7ff43109-17ef-46f0-a65e-6bfc0e46db93)) + (pin "16" (uuid 3cc6fd69-1b37-40b7-898d-d6b962c87742)) + (pin "17" (uuid 2fd4eb82-5f3b-40fa-be86-93f64e3ea703)) + (pin "18" (uuid 6d931bb8-54e1-455a-b19a-6aca5a0c5b2e)) + (pin "19" (uuid 8e86f080-78b8-4eba-9da4-3d0db6e9e044)) + (pin "20" (uuid 94388684-9472-4b35-a9d0-928645d81666)) + (pin "21" (uuid eb272c15-a967-48cd-9f31-f39bb11d06e2)) + (pin "22" (uuid b53d21ba-7a8e-4581-89f6-31c482ff3f7d)) + (pin "23" (uuid ede61594-27c5-47be-865e-654cd419025c)) + (pin "24" (uuid b6d9adf7-bb92-42e2-91d6-2c05679ea48a)) + (pin "25" (uuid a69b8a64-31d7-400d-a7f9-93e4bcf04cfb)) + (pin "26" (uuid c451c404-a8c3-43a4-a166-543d70fbd649)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 158.75 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ac103ded-588e-47ea-bed3-ecfab8981da1) + (property "Reference" "U2" (id 0) (at 158.75 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 158.75 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 160.02 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 160.02 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid deafd9bc-80ee-4c0f-b482-5327ef7526fb)) + (pin "2" (uuid 6c7d89c1-0ef7-4a0b-99b7-1686d8ea1aff)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 134.62 251.46 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bebe272e-1487-4946-a287-3cc9421e6123) + (property "Reference" "U1" (id 0) (at 135.255 246.38 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 135.255 248.92 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 134.62 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 134.62 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b7c8be76-d19d-4ee2-bb69-a1b516a8cfeb)) + (pin "2" (uuid 8cc61910-c3bc-49be-a7f0-641188486e25)) + (pin "3" (uuid a97c7155-6c65-40ef-87a8-d82a2f4115c8)) + (pin "4" (uuid 53c4f186-fa7d-4304-ba2a-70452c6b6c13)) + (pin "5" (uuid 1d080ca6-43da-463b-b6c3-369da099cb3f)) + (pin "6" (uuid a474def9-65e2-46cb-aeeb-d017119b555e)) + (pin "7" (uuid f73bcad9-c112-4b37-9060-90d3deb9b44c)) + (pin "8" (uuid a0432ca6-c6d8-4f3e-9f30-2f98fb6a6170)) + (pin "9" (uuid 7f8828e2-cf4f-44ef-a862-ebc8c4b90036)) + (pin "10" (uuid 7e44475a-136b-4328-bed6-d82600183b84)) + (pin "11" (uuid 5a17d135-b0c0-479e-a8fd-55ff7819e9f0)) + (pin "12" (uuid 9c9cfe3e-9d7f-4c03-b4b8-2115d2162b8e)) + (pin "13" (uuid 23be01a9-2bc3-4253-8a59-f757cf564ee6)) + (pin "14" (uuid d8d78ee4-5ed1-4b23-b695-77dc28d8efd9)) + (pin "15" (uuid 5fc7f5a5-f6e8-40b8-ae65-c8dc44553bdd)) + (pin "16" (uuid ac77d8ce-df00-4a5c-baa4-3d813f7255bf)) + (pin "17" (uuid 7d697c0e-e62f-4880-81c6-22fee2d41db6)) + (pin "18" (uuid e5189131-d487-4f7a-bb15-1447d628d9ed)) + (pin "19" (uuid 3780375e-8d6f-4773-8991-f0b8f271b25e)) + (pin "20" (uuid 008b5527-9cf0-4922-802d-4a58f174c76d)) + (pin "21" (uuid 0f65a03c-bead-400f-af37-4e6646c24f0e)) + (pin "22" (uuid c727bb0b-9288-4683-b47d-ef2265c347f1)) + (pin "23" (uuid 7183e34d-fcc2-4723-b880-c81f9638fcc9)) + (pin "24" (uuid c8ab51a6-4fef-4da1-9b0e-cb93b9294885)) + (pin "25" (uuid a92ca825-c031-416a-b4f5-e5d5f6437e4a)) + (pin "26" (uuid 60484b6b-f75c-4e22-a450-316bd794f95c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 374.65 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c5120c6b-3f3d-4b07-916d-b57e04bee497) + (property "Reference" "U6" (id 0) (at 374.65 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 374.65 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 374.65 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e6a36de-ac9e-48dd-9a04-ddfc40af5478)) + (pin "2" (uuid 540f2f0c-3a59-497d-a98d-15cf32bf63ad)) + (pin "3" (uuid 28967797-dedc-4afa-8762-f5fb0b01866e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 377.19 331.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c88e75b3-22a1-4957-9836-964a36eddaf5) + (property "Reference" "U16" (id 0) (at 377.19 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 377.19 326.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 331.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 331.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c9eeb004-6700-49f7-825d-e5ff62a50e81)) + (pin "2" (uuid 02b9c2fc-2fa1-4ba1-bffe-c7f4b8087253)) + (pin "3" (uuid 38732dfc-b4e6-4b16-9d43-607505c59b86)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 132.08 111.76 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ccaa3111-3fb6-4318-9849-130648a25a38) + (property "Reference" "U1" (id 0) (at 132.715 106.68 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 132.715 109.22 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 132.08 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 132.08 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc3ba15a-2623-4e40-b008-03cadd38024a)) + (pin "2" (uuid 630d0882-ca14-4942-b3de-6a6cdf4291f3)) + (pin "3" (uuid 9764b511-5852-442f-b83a-b53e413420be)) + (pin "4" (uuid 800631de-141e-4634-ae30-d355d7d03797)) + (pin "5" (uuid 9d8cfc80-d5a1-4730-8ee3-ee897a9d6ddb)) + (pin "6" (uuid 28a4be69-7214-41fd-a8e2-f1ce42883480)) + (pin "7" (uuid cb57dec8-d7c3-41da-9927-3796a67b7f1f)) + (pin "8" (uuid 558ab566-e2b4-4f6e-adca-38ffb5ad0b1a)) + (pin "9" (uuid 671478d3-94b5-40e8-b2cd-253298e35a2f)) + (pin "10" (uuid 6a7f7d72-3110-4e81-beb8-5f6490fb841f)) + (pin "11" (uuid c3dc6d89-1992-4d07-8eed-283379d12c66)) + (pin "12" (uuid d8f92383-e47f-4569-aa9e-0ba34c4acf5f)) + (pin "13" (uuid f9fcb2a6-90ce-472e-b08c-6c1faa6e4454)) + (pin "14" (uuid 35248831-0227-4ad0-9d95-3a3d8b66e74a)) + (pin "15" (uuid d9202baf-d631-4360-acbb-22d83ecc6a56)) + (pin "16" (uuid 642fa0cd-4599-4e40-9c24-f1e8b6d2d4d5)) + (pin "17" (uuid 8c47f069-88a3-428a-a706-ae210a989276)) + (pin "18" (uuid 4035f101-a839-49e9-95c0-b0e968e5eec3)) + (pin "19" (uuid 90bc4044-6887-4c16-9d92-c357c860598f)) + (pin "20" (uuid 82ccabdb-28d0-4736-8ab9-72d6e75a6281)) + (pin "21" (uuid 535c5017-265f-4834-aaf1-3f127f0f2a9f)) + (pin "22" (uuid b35cd7db-569c-4f72-9dfa-2aafbd7022e4)) + (pin "23" (uuid 2918cbbc-28b0-40a2-b9b3-7f18584485b7)) + (pin "24" (uuid ee869279-4921-4899-99b5-06854acb7a2e)) + (pin "25" (uuid 00f7e643-05ef-4977-afd3-2a1d54fa05da)) + (pin "26" (uuid 8b02fe12-7b4b-4945-abf5-abfa7602c6c3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 374.65 129.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d1f82653-a70b-457d-9f13-7dcb55ec22e9) + (property "Reference" "U7" (id 0) (at 374.65 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 374.65 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 374.65 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b8075506-3316-4a12-af6a-b19a7b969672)) + (pin "2" (uuid a4d21416-9f0c-4edb-8c8b-1b82a870ff0a)) + (pin "3" (uuid f5ba331d-d974-4524-a70c-1720046d3b96)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 377.19 345.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d63e0255-6f36-4731-9932-67e80eec4ce6) + (property "Reference" "U17" (id 0) (at 377.19 336.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 377.19 340.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 345.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 345.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 98733335-dee9-4bb3-aedf-24ef473d7c17)) + (pin "2" (uuid 4e028125-3f43-45a4-89c5-9155edb107a2)) + (pin "3" (uuid ba48c689-1cb1-43bb-9065-88d9109be461)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 377.19 281.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d8a4d015-33fb-4b75-bbc2-f8ff8e3ca20f) + (property "Reference" "U14" (id 0) (at 377.19 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 377.19 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 08f14336-e407-475b-90ea-555de861ae3a)) + (pin "2" (uuid db962181-ced0-491b-9f05-33dc95ca1094)) + (pin "3" (uuid 4c6febf0-97db-4805-834f-c547cf7b40ad)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 160.02 251.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e0671531-58b4-409a-a1ba-657793aabfca) + (property "Reference" "U4" (id 0) (at 160.02 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 160.02 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 161.29 252.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 161.29 252.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7273f02b-2eeb-4c69-b681-3258dd47924e)) + (pin "2" (uuid 34e8da05-92b2-4562-ac47-271160be3720)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 400.05 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e385d498-b1fb-4f5b-8051-2db484bbc8cb) + (property "Reference" "U18" (id 0) (at 400.05 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 400.05 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 400.05 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 400.05 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ea3d61f0-a59a-4a8b-947f-6d53ca0b9c92)) + (pin "2" (uuid 09c877b4-0fdf-45ea-9e75-c373006893b9)) + (pin "3" (uuid caad5ac1-5bec-4d56-8886-fcc610915bb2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 477.52 132.08 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e74d3bef-c5cc-4880-82d4-2fc48218e0cc) + (property "Reference" "U1" (id 0) (at 481.33 131.445 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 481.33 133.985 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 477.52 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 477.52 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d28c1e12-71ed-419f-a319-d18b61def87e)) + (pin "2" (uuid d803e62d-a4e8-46cf-aa2d-98644ae15b90)) + (pin "3" (uuid f2e73320-af36-4f56-9f7e-9dea1e74a446)) + (pin "4" (uuid e5dc6aa5-bd3f-4c21-ae23-10e375904ed0)) + (pin "5" (uuid 05ce7d86-96ea-4744-9d34-f6f648514f4f)) + (pin "6" (uuid cc960f7f-7b0e-4e2a-a527-8ad70a51b780)) + (pin "7" (uuid 2b6275e7-7e54-4dbd-b512-0682b4cabf4e)) + (pin "8" (uuid b474253d-43d6-4cf0-bde1-de406f9f10df)) + (pin "9" (uuid 9d3dbbb5-c782-4ac9-8750-314c9ed6d777)) + (pin "10" (uuid e6eee771-d739-4f8d-b458-2865adb793ee)) + (pin "11" (uuid c9507232-e2ad-4d86-9f04-1a9e5109bb5d)) + (pin "12" (uuid 8be1cfbb-4e58-4c04-b674-1582cc2df498)) + (pin "13" (uuid 3bb430cc-101d-491b-9640-ef79b1f2a5e6)) + (pin "14" (uuid fbd3be5f-a780-40f0-9dfb-3ca672c22ca0)) + (pin "15" (uuid dd68bcb4-d75d-43e0-8e1d-7ab238f52080)) + (pin "16" (uuid 127f525f-03d5-4405-8e79-022666a5aafd)) + (pin "17" (uuid 40f36ff9-295f-4897-ac09-11c7da5f9f52)) + (pin "18" (uuid abeff9bb-1051-4604-8541-432bb392c0fd)) + (pin "19" (uuid e330fedb-4983-40fe-a8c8-5ae5ff527b36)) + (pin "20" (uuid c395c5c7-964c-43d6-9501-81d704d8d119)) + (pin "21" (uuid 466b5d5e-4c53-4995-932e-edc3f38e7eed)) + (pin "22" (uuid 488b4e34-8b66-4f59-91cc-cc68730cb9a3)) + (pin "23" (uuid c290e4f6-b809-4614-89b6-7aa28065747c)) + (pin "24" (uuid 026f6b0e-f2a3-4bad-a2d6-34d3ed6d7128)) + (pin "25" (uuid f1be1a41-6f18-4ae3-bb82-d589b1a01fac)) + (pin "26" (uuid c8055676-f89c-4deb-928e-4facb05ae92c)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 401.32 196.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f5382ca5-4c0e-4dbf-bc5d-6891125bd1dc) + (property "Reference" "U19" (id 0) (at 401.32 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 401.32 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3531300c-4d45-4b88-a56a-349444098263)) + (pin "2" (uuid 8a78e534-82a1-4c49-843f-56bb80d212b1)) + (pin "3" (uuid 04ecb662-c70b-4798-bcc5-ea1c252b420e)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/952ce90c-08f9-4ae3-82cf-2beb9e2b00e8" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/94c292e2-556b-4447-b19a-54339c7ff555" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/ccaa3111-3fb6-4318-9849-130648a25a38" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/7529a9e6-ac56-4bb7-a7fa-b183735a5044" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/bebe272e-1487-4946-a287-3cc9421e6123" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/8dc2cd70-1605-4433-b45c-ed8de42562be" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/e74d3bef-c5cc-4880-82d4-2fc48218e0cc" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/a796a072-3706-4a9e-860c-9b8979b0cd17" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/3e5eab1b-7252-4bf2-aba6-ca99b2fc78e1" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/0addd7bc-287e-4494-85d0-7ede19ccf5df" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/ac103ded-588e-47ea-bed3-ecfab8981da1" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/88f5e042-3aff-4d4c-a846-afa0d950bd7e" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e0671531-58b4-409a-a1ba-657793aabfca" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/34b4fa1c-2d8b-4638-a7de-16832baeaecf" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c5120c6b-3f3d-4b07-916d-b57e04bee497" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/d1f82653-a70b-457d-9f13-7dcb55ec22e9" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/0b0a162b-43e2-408a-acd1-56b2449c94dd" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/1cd05846-26bb-4237-8a3e-d02d4f35b145" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/51c81dcf-b10c-4a83-bae4-d76f7725365c" + (reference "U10") (unit 1) (value "d_and") (footprint "") + ) + (path "/17a58b17-a93e-45c3-a82f-67f57f8a0a62" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/00563e68-0586-4a21-a174-9655a33c53ff" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/07c44418-f9f5-4c61-9285-e6579c2927ee" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + (path "/d8a4d015-33fb-4b75-bbc2-f8ff8e3ca20f" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/979f4c7d-f88e-47c1-af31-f8b7f950ea8c" + (reference "U15") (unit 1) (value "d_and") (footprint "") + ) + (path "/c88e75b3-22a1-4957-9836-964a36eddaf5" + (reference "U16") (unit 1) (value "d_and") (footprint "") + ) + (path "/d63e0255-6f36-4731-9932-67e80eec4ce6" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/e385d498-b1fb-4f5b-8051-2db484bbc8cb" + (reference "U18") (unit 1) (value "d_or") (footprint "") + ) + (path "/f5382ca5-4c0e-4dbf-bc5d-6891125bd1dc" + (reference "U19") (unit 1) (value "d_or") (footprint "") + ) + (path "/37977a70-d08d-4087-b094-f9a038a7b54a" + (reference "U20") (unit 1) (value "d_or") (footprint "") + ) + (path "/99453ba1-404a-4d71-8c77-9bc3247da186" + (reference "U21") (unit 1) (value "d_or") (footprint "") + ) + (path "/1504dd13-850c-4e0b-8e56-6d0d56712e48" + (reference "U22") (unit 1) (value "d_or") (footprint "") + ) + (path "/04bd1687-f6f3-4786-a00b-c0606894252e" + (reference "U23") (unit 1) (value "d_or") (footprint "") + ) + (path "/461fffaa-f4b3-455d-9e0e-33e5a457abb6" + (reference "U24") (unit 1) (value "d_or") (footprint "") + ) + (path "/03876ec4-536b-4696-a8c1-49ef42933a34" + (reference "U25") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74H87/SN74H87_subckt.proj b/library/SubcircuitLibrary/SN74H87/SN74H87_subckt.proj new file mode 100644 index 000000000..e23c6f987 --- /dev/null +++ b/library/SubcircuitLibrary/SN74H87/SN74H87_subckt.proj @@ -0,0 +1 @@ +schematicFile SN74H87_subckt.kicad_sch diff --git a/library/SubcircuitLibrary/SN74H87/Test_SN74H87.cir b/library/SubcircuitLibrary/SN74H87/Test_SN74H87.cir new file mode 100644 index 000000000..acb96256e --- /dev/null +++ b/library/SubcircuitLibrary/SN74H87/Test_SN74H87.cir @@ -0,0 +1,19 @@ +.title KiCad schematic +U4 A4 Net-_U4-Pad2_ adc_bridge_1 +U3 A3 Net-_U3-Pad2_ adc_bridge_1 +v3 A3 GND pulse +v4 A4 GND pulse +U1 A1 Net-_U1-Pad2_ adc_bridge_1 +U2 A2 Net-_U2-Pad2_ adc_bridge_1 +v6 S1 GND pulse +v5 S0 GND pulse +U5 S0 Net-_U5-Pad2_ adc_bridge_1 +U6 S1 Net-_U6-Pad2_ adc_bridge_1 +v2 A2 GND pulse +v1 A1 GND pulse +X1 Net-_U5-Pad2_ Net-_U6-Pad2_ Net-_U1-Pad2_ Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U4-Pad2_ Net-_U7-Pad1_ Net-_U8-Pad1_ Net-_U9-Pad1_ Net-_U10-Pad1_ SN74H87 +U8 Net-_U8-Pad1_ Y2 dac_bridge_1 +U7 Net-_U7-Pad1_ Y1 dac_bridge_1 +U9 Net-_U9-Pad1_ Y3 dac_bridge_1 +U10 Net-_U10-Pad1_ Y4 dac_bridge_1 +.end diff --git a/library/SubcircuitLibrary/SN74H87/Test_SN74H87.cir.out b/library/SubcircuitLibrary/SN74H87/Test_SN74H87.cir.out new file mode 100644 index 000000000..f54c05637 --- /dev/null +++ b/library/SubcircuitLibrary/SN74H87/Test_SN74H87.cir.out @@ -0,0 +1,153 @@ +.title kicad schematic + +* u6 net-_u17-pad2_ net-_u6-pad2_ d_inverter +* u5 net-_u1-pad2_ net-_u14-pad2_ d_inverter +* u2 a2 net-_u17-pad2_ adc_bridge_1 +v2 a2 gnd pulse(0 5 0 1n 1n 10m 20m) +* u9 s0 net-_u13-pad1_ adc_bridge_1 +* u10 s1 net-_u10-pad2_ adc_bridge_1 +v5 s0 gnd pulse(0 5 0 1n 1n 40m 80m) +v6 s1 gnd pulse(0 5 0 1n 1n 80m 160m) +v1 a1 gnd pulse(0 5 0 1n 1n 10m 20m) +* u1 a1 net-_u1-pad2_ adc_bridge_1 +* u22 net-_u10-pad2_ net-_u22-pad2_ net-_u22-pad3_ d_and +* u23 net-_u13-pad1_ net-_u10-pad2_ net-_u23-pad3_ d_and +* u27 net-_u13-pad1_ net-_u10-pad2_ net-_u27-pad3_ d_and +* u26 net-_u10-pad2_ net-_u26-pad2_ net-_u26-pad3_ d_and +* u35 net-_u25-pad3_ net-_u26-pad3_ net-_u35-pad3_ d_or +* u25 net-_u13-pad1_ net-_u25-pad2_ net-_u25-pad3_ d_and +* u8 net-_u25-pad2_ net-_u26-pad2_ d_inverter +* u4 a4 net-_u25-pad2_ adc_bridge_1 +v4 a4 gnd pulse(0 5 0 1n 1n 10m 20m) +* u7 net-_u21-pad2_ net-_u22-pad2_ d_inverter +v3 a3 gnd pulse(0 5 0 1n 1n 10m 20m) +* u3 a3 net-_u21-pad2_ adc_bridge_1 +* u14 net-_u10-pad2_ net-_u14-pad2_ net-_u14-pad3_ d_and +* u13 net-_u13-pad1_ net-_u1-pad2_ net-_u13-pad3_ d_and +* u44 net-_u40-pad3_ y4 dac_bridge_1 +* u43 net-_u39-pad3_ y3 dac_bridge_1 +* u40 net-_u35-pad3_ net-_u27-pad3_ net-_u40-pad3_ d_or +* u39 net-_u33-pad3_ net-_u23-pad3_ net-_u39-pad3_ d_or +* u42 net-_u38-pad3_ y2 dac_bridge_1 +* u38 net-_u31-pad3_ net-_u19-pad3_ net-_u38-pad3_ d_or +* u41 net-_u37-pad3_ y1 dac_bridge_1 +* u37 net-_u29-pad3_ net-_u15-pad3_ net-_u37-pad3_ d_or +* u19 net-_u13-pad1_ net-_u10-pad2_ net-_u19-pad3_ d_and +* u18 net-_u10-pad2_ net-_u6-pad2_ net-_u18-pad3_ d_and +* u21 net-_u13-pad1_ net-_u21-pad2_ net-_u21-pad3_ d_and +* u33 net-_u21-pad3_ net-_u22-pad3_ net-_u33-pad3_ d_or +* u31 net-_u17-pad3_ net-_u18-pad3_ net-_u31-pad3_ d_or +* u17 net-_u13-pad1_ net-_u17-pad2_ net-_u17-pad3_ d_and +* u15 net-_u13-pad1_ net-_u10-pad2_ net-_u15-pad3_ d_and +* u29 net-_u13-pad3_ net-_u14-pad3_ net-_u29-pad3_ d_or +a1 net-_u17-pad2_ net-_u6-pad2_ u6 +a2 net-_u1-pad2_ net-_u14-pad2_ u5 +a3 [a2 ] [net-_u17-pad2_ ] u2 +a4 [s0 ] [net-_u13-pad1_ ] u9 +a5 [s1 ] [net-_u10-pad2_ ] u10 +a6 [a1 ] [net-_u1-pad2_ ] u1 +a7 [net-_u10-pad2_ net-_u22-pad2_ ] net-_u22-pad3_ u22 +a8 [net-_u13-pad1_ net-_u10-pad2_ ] net-_u23-pad3_ u23 +a9 [net-_u13-pad1_ net-_u10-pad2_ ] net-_u27-pad3_ u27 +a10 [net-_u10-pad2_ net-_u26-pad2_ ] net-_u26-pad3_ u26 +a11 [net-_u25-pad3_ net-_u26-pad3_ ] net-_u35-pad3_ u35 +a12 [net-_u13-pad1_ net-_u25-pad2_ ] net-_u25-pad3_ u25 +a13 net-_u25-pad2_ net-_u26-pad2_ u8 +a14 [a4 ] [net-_u25-pad2_ ] u4 +a15 net-_u21-pad2_ net-_u22-pad2_ u7 +a16 [a3 ] [net-_u21-pad2_ ] u3 +a17 [net-_u10-pad2_ net-_u14-pad2_ ] net-_u14-pad3_ u14 +a18 [net-_u13-pad1_ net-_u1-pad2_ ] net-_u13-pad3_ u13 +a19 [net-_u40-pad3_ ] [y4 ] u44 +a20 [net-_u39-pad3_ ] [y3 ] u43 +a21 [net-_u35-pad3_ net-_u27-pad3_ ] net-_u40-pad3_ u40 +a22 [net-_u33-pad3_ net-_u23-pad3_ ] net-_u39-pad3_ u39 +a23 [net-_u38-pad3_ ] [y2 ] u42 +a24 [net-_u31-pad3_ net-_u19-pad3_ ] net-_u38-pad3_ u38 +a25 [net-_u37-pad3_ ] [y1 ] u41 +a26 [net-_u29-pad3_ net-_u15-pad3_ ] net-_u37-pad3_ u37 +a27 [net-_u13-pad1_ net-_u10-pad2_ ] net-_u19-pad3_ u19 +a28 [net-_u10-pad2_ net-_u6-pad2_ ] net-_u18-pad3_ u18 +a29 [net-_u13-pad1_ net-_u21-pad2_ ] net-_u21-pad3_ u21 +a30 [net-_u21-pad3_ net-_u22-pad3_ ] net-_u33-pad3_ u33 +a31 [net-_u17-pad3_ net-_u18-pad3_ ] net-_u31-pad3_ u31 +a32 [net-_u13-pad1_ net-_u17-pad2_ ] net-_u17-pad3_ u17 +a33 [net-_u13-pad1_ net-_u10-pad2_ ] net-_u15-pad3_ u15 +a34 [net-_u13-pad3_ net-_u14-pad3_ ] net-_u29-pad3_ u29 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u9 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u10 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u35 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u44 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u43 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u40 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u39 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u42 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u38 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u41 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u37 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u33 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u31 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u15 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u29 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-03 320e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74H87/Test_SN74H87.kicad_sch b/library/SubcircuitLibrary/SN74H87/Test_SN74H87.kicad_sch new file mode 100644 index 000000000..d689bff65 --- /dev/null +++ b/library/SubcircuitLibrary/SN74H87/Test_SN74H87.kicad_sch @@ -0,0 +1,902 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 4d03e333-1a7e-485c-a56c-32cd34af7993) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN74H87" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -12.7 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN74H87" (id 1) (at 0 -19.05 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN74H87_0_1" + (rectangle (start -6.35 -5.08) (end 6.35 -20.32) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN74H87_1_1" + (pin input line (at -3.81 -5.08 90) (length 2.54) + (name "S0" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 -16.51 180) (length 2.54) + (name "Y4" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 3.81 -5.08 90) (length 2.54) + (name "S1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -8.89 0) (length 2.54) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -11.43 0) (length 2.54) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -13.97 0) (length 2.54) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -16.51 0) (length 2.54) + (name "A4" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 -8.89 180) (length 2.54) + (name "Y1" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 -11.43 180) (length 2.54) + (name "Y2" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 8.89 -13.97 180) (length 2.54) + (name "Y3" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (wire (pts (xy 96.52 86.36) (xy 96.52 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0098907d-16f2-43d5-87ce-cf36bf8450cf) + ) + (wire (pts (xy 224.79 97.79) (xy 243.84 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 035e6dd8-313b-4c72-a75d-5fe76bacd1e4) + ) + (wire (pts (xy 101.6 88.9) (xy 101.6 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05d2194b-5158-4b3b-bb58-0f9a661bd634) + ) + (wire (pts (xy 172.72 81.28) (xy 172.72 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16e6a2f7-d88b-4cd9-95d2-a2c16f0d93c5) + ) + (wire (pts (xy 172.72 113.03) (xy 195.58 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34267099-3f09-449a-8021-8badc4e7775d) + ) + (wire (pts (xy 92.71 83.82) (xy 92.71 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ac734e3-3b3d-4524-a8d3-673c9c1dd944) + ) + (wire (pts (xy 92.71 115.57) (xy 96.52 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3db1b1f9-30d0-413c-8aec-93f930d6f6c8) + ) + (wire (pts (xy 154.94 88.9) (xy 101.6 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 444a2bdc-8fa0-4640-812a-ff7ef8ca5f27) + ) + (wire (pts (xy 224.79 113.03) (xy 243.84 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46c18d19-1baa-448f-99b6-893346b990ae) + ) + (wire (pts (xy 224.79 64.77) (xy 243.84 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 567ada3f-b3be-48ca-825e-bce9549abf81) + ) + (wire (pts (xy 160.02 77.47) (xy 160.02 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b07fb9f-3287-4382-bcba-7f0efa3d5500) + ) + (wire (pts (xy 172.72 86.36) (xy 175.26 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cc36e4f-035e-4a65-8572-e3f68e82c86a) + ) + (wire (pts (xy 195.58 83.82) (xy 195.58 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74acf460-81cf-4502-8a66-67b8765121cf) + ) + (wire (pts (xy 224.79 81.28) (xy 243.84 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 811549ba-5ebd-487a-984f-672ec6c697c5) + ) + (wire (pts (xy 175.26 97.79) (xy 195.58 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a122d40-7380-49ad-bf4e-e346155a61e7) + ) + (wire (pts (xy 172.72 88.9) (xy 172.72 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bb91de1-af80-406a-a7d6-6547fc1d6d44) + ) + (wire (pts (xy 92.71 81.28) (xy 92.71 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8df7f51e-8941-49bf-b3e4-593b056f7f9d) + ) + (wire (pts (xy 101.6 134.62) (xy 92.71 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 987c2a7d-f591-415a-9ce8-90b635a64735) + ) + (wire (pts (xy 154.94 83.82) (xy 92.71 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99361cf3-ea1f-4e09-bdbc-d211a68c29fd) + ) + (wire (pts (xy 172.72 83.82) (xy 195.58 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2ceb823-9fdd-4ef0-bb37-ead01687a934) + ) + (wire (pts (xy 172.72 64.77) (xy 195.58 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a36c8425-f6ea-4582-b10b-07803177fe97) + ) + (wire (pts (xy 154.94 81.28) (xy 92.71 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa5c6195-7a05-495f-a599-70bddf182388) + ) + (wire (pts (xy 175.26 86.36) (xy 175.26 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b958e22c-ed2d-4396-9c58-c18ccab46e6a) + ) + (wire (pts (xy 160.02 33.02) (xy 139.7 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bcfe3335-d3fe-4cdc-901f-820f134d3d18) + ) + (wire (pts (xy 167.64 77.47) (xy 167.64 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4fb61de-2aab-49cb-8591-52d899093c44) + ) + (wire (pts (xy 154.94 86.36) (xy 96.52 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6596b58-c9a2-4bc1-a731-3ee47663a454) + ) + (wire (pts (xy 167.64 55.88) (xy 139.7 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc54eb87-5756-4ac3-b5a9-0b59954387be) + ) + + (global_label "Y2" (shape output) (at 243.84 81.28 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 1e19a5df-04ae-40fa-bbce-a8054e749417) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 248.5512 81.2006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y3" (shape output) (at 243.84 97.79 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 572b4b79-d061-4fa4-a8dc-7851f235b63b) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 248.5512 97.7106 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape input) (at 63.5 134.62 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6d0fbf7e-e806-442c-bbc5-4861d25f85ec) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 63.4206 129.9088 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "S0" (shape input) (at 110.49 33.02 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 74e033e6-bb1d-4bac-bb42-2d8b68658718) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.4106 28.1879 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 63.5 95.25 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 8771b49d-a1dd-4ff0-b492-31878117e921) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 63.4206 90.5388 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "S1" (shape input) (at 110.49 55.88 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c9e0ba73-dce0-4106-9858-655ac3649491) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.4106 51.0479 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A3" (shape input) (at 63.5 115.57 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d233063e-f130-4836-ba82-b064e21cf007) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 63.4206 110.8588 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape input) (at 63.5 74.93 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d6fd495e-826b-4390-8ddd-d561eb14b313) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 63.4206 70.2188 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y4" (shape output) (at 243.84 113.03 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d721b92b-f2d4-4f6d-998c-8d7ad04311c1) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 248.5512 112.9506 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y1" (shape output) (at 243.84 64.77 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f3debccb-5f76-4920-93dc-787ceaead078) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 248.5512 64.6906 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 99.06 33.02 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 208eddb1-d0cf-4e52-9177-7364fa5a52a5) + (property "Reference" "v?" (id 0) (at 99.06 20.32 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 99.06 24.13 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 99.06 27.94 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 99.06 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1ed5073b-8f5b-46b5-bfa0-fc4b0414485d)) + (pin "2" (uuid c557d6b0-393a-452a-aa34-3ef7af6526c2)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 78.74 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 32822815-5be3-4b06-aaac-f6cd4189387a) + (property "Reference" "U?" (id 0) (at 78.105 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 78.105 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 78.74 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 78.74 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2a8dbd37-15cd-4b29-a5d4-61b6c718d35e)) + (pin "2" (uuid 13d8c095-6a93-44b9-9334-a6a0599fa53e)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 87.63 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3edd0062-2ab6-439f-8175-d6be70e2e3cd) + (property "Reference" "#PWR?" (id 0) (at 87.63 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 87.63 60.96 0)) + (property "Footprint" "" (id 2) (at 87.63 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 87.63 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e0400fc8-a7fe-448d-83d4-17f03a7661f6)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 99.06 55.88 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 433dcc2f-a162-45c1-8af4-1e7bd1c54b0a) + (property "Reference" "v?" (id 0) (at 99.06 43.18 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 99.06 46.99 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 99.06 50.8 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 99.06 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 49e21914-a871-4a0a-a2f7-d8c3bcf28307)) + (pin "2" (uuid ac6c4d7b-2196-4bfc-a143-9919dfcafc43)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 78.74 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 462822f0-74ee-419d-bdb7-3cb32f335c05) + (property "Reference" "U?" (id 0) (at 78.105 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 78.105 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 78.74 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 78.74 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6139f453-685a-42fc-a7aa-86e5021f6b30)) + (pin "2" (uuid 5a141605-270d-48bb-afb8-3752e7938001)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 52.07 74.93 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 499d9197-6937-41d0-a3ff-6f3d4eeee205) + (property "Reference" "v?" (id 0) (at 52.07 62.23 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 52.07 66.04 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 52.07 69.85 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 52.07 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 70d8b5e3-2001-4f16-b745-3d74f197560e)) + (pin "2" (uuid af4f5fb3-b913-4a1e-b904-41ac2c9216c8)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 52.07 95.25 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4db3a4a6-8256-48d3-9586-e69f2a68a03f) + (property "Reference" "v?" (id 0) (at 52.07 82.55 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 52.07 86.36 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 52.07 90.17 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 52.07 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 094e6f27-f306-42a3-9f27-4e5b0fd92c94)) + (pin "2" (uuid a22e9416-9323-4835-ade8-9d3ae4d7058f)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 40.64 115.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 52f874f5-5b89-4da5-983b-bef598ca12af) + (property "Reference" "#PWR?" (id 0) (at 40.64 121.92 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 40.64 120.65 0)) + (property "Footprint" "" (id 2) (at 40.64 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 115.57 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1060fafe-b57c-457f-be34-0c79ac3828fb)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 52.07 134.62 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5532a4a6-8793-4f4b-b785-fce6df743601) + (property "Reference" "v?" (id 0) (at 52.07 121.92 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 52.07 125.73 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 52.07 129.54 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 52.07 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76c44207-6b21-4494-8867-7e05836eb078)) + (pin "2" (uuid 63a9c85a-142e-440a-8104-2eb949038058)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 210.82 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 57f98ba0-5027-4367-a872-c5cbacd4d785) + (property "Reference" "U?" (id 0) (at 210.185 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 210.185 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b862ff0-5b54-47aa-b3b3-880998de41d2)) + (pin "2" (uuid f2cd65fa-7b27-4947-9773-e41be6789ecc)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 125.73 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5be12982-8bd1-4929-b2d2-807bf12d9da5) + (property "Reference" "U?" (id 0) (at 125.095 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 125.095 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3c69c935-e6f3-4e8f-a029-94a861eff67e)) + (pin "2" (uuid aab12e75-6227-482f-8ddf-5b95c1f05e14)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 210.82 66.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67b01815-b90c-47e1-b12b-f5d78942e1c5) + (property "Reference" "U?" (id 0) (at 210.185 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 210.185 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 94d3ce73-08e8-4056-b3af-a64ca8237207)) + (pin "2" (uuid 7ba8fa05-dfb2-447f-9c36-fac28f3d4df4)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 40.64 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7231d47a-b1f9-4063-9b1d-0182e2f4ce5a) + (property "Reference" "#PWR?" (id 0) (at 40.64 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 40.64 139.7 0)) + (property "Footprint" "" (id 2) (at 40.64 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 134.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3298a0bf-71f2-46d0-8ecd-343d48998f6f)) + ) + + (symbol (lib_id "eSim_Subckt:SN74H87") (at 163.83 72.39 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 7a5b7355-4518-4c66-9d9b-3865825bc7f9) + (property "Reference" "X?" (id 0) (at 163.83 67.31 0)) + (property "Value" "SN74H87" (id 1) (at 163.83 69.85 0)) + (property "Footprint" "" (id 2) (at 163.83 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 163.83 72.39 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 03dccb14-bf4d-4df4-a300-bfbc8f9d7f1b)) + (pin "10" (uuid 660c5c5f-4d0c-4728-85ff-5f8c250b068f)) + (pin "2" (uuid 315a7976-7830-43de-bb1a-0b2558da577d)) + (pin "3" (uuid bc1f5e97-4683-4a13-a001-f3e443607a4e)) + (pin "4" (uuid 6073b250-39a8-444d-9554-99a858152389)) + (pin "5" (uuid d4dab061-386b-40f7-8f58-3bc60287d0b6)) + (pin "6" (uuid 63beee62-ab99-4277-a897-a78ef1e985c8)) + (pin "7" (uuid fbb8675c-bbcb-4cb5-97cc-e4116f3db917)) + (pin "8" (uuid e4d08580-b114-4837-8914-763d1e2fc2ac)) + (pin "9" (uuid 59aa77bb-cfc2-467e-bb6e-caa3868bea22)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 125.73 34.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8e7f609b-1e07-4ea8-847a-8f3f097f8536) + (property "Reference" "U?" (id 0) (at 125.095 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 125.095 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7d12afb5-2e49-47d5-aee3-86e9c67843f3)) + (pin "2" (uuid e38c2961-7cfd-4215-9f18-425f28935094)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 78.74 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5318ff9-ca73-46bf-b3e7-55b795339860) + (property "Reference" "U?" (id 0) (at 78.105 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 78.105 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 78.74 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 78.74 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1b03ecf2-bbe9-46c6-8ac9-3ff0e36a1412)) + (pin "2" (uuid c37b77b5-5482-4154-980c-736fa345a2f8)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 40.64 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a73d2e91-1400-4e76-ba5c-fac51c18c402) + (property "Reference" "#PWR?" (id 0) (at 40.64 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 40.64 80.01 0)) + (property "Footprint" "" (id 2) (at 40.64 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5342a790-d965-4603-b1e3-c7615d033f0c)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 210.82 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aeee62ef-54a2-4105-9246-4a0a50ced5ce) + (property "Reference" "U?" (id 0) (at 210.185 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 210.185 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bf912f19-e4c7-49c1-84e2-efc01347bd60)) + (pin "2" (uuid 2b61e82f-aee1-46ff-a00a-958159fcb537)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 40.64 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b1745612-35ed-41d4-a6ba-3498ea725408) + (property "Reference" "#PWR?" (id 0) (at 40.64 101.6 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 40.64 100.33 0)) + (property "Footprint" "" (id 2) (at 40.64 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 258ed77a-8e68-4395-a348-1c4348d90491)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 87.63 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba818bf1-78d4-493e-a303-20790d6138af) + (property "Reference" "#PWR?" (id 0) (at 87.63 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 87.63 38.1 0)) + (property "Footprint" "" (id 2) (at 87.63 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 87.63 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fe7eb42d-ba02-4764-bb7e-ee6467cd3750)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 52.07 115.57 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c38ca23f-d77e-4920-b5da-ffff4b278d13) + (property "Reference" "v?" (id 0) (at 52.07 102.87 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 52.07 106.68 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 52.07 110.49 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 52.07 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 579232c1-d663-48cf-8b33-4693d07f2278)) + (pin "2" (uuid 507510f3-7942-4c20-8de9-d974b1a68ba4)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 78.74 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e85603d9-dcaf-4936-97b2-dd6416d41e0f) + (property "Reference" "U?" (id 0) (at 78.105 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 78.105 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 78.74 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 78.74 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 67157fcd-bf8a-492d-8ebc-8d0616217b98)) + (pin "2" (uuid b688b654-0ac3-4924-acfa-42457b0b8ada)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 210.82 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ec3f9dfd-1c25-4686-85af-35ed34ea9cec) + (property "Reference" "U?" (id 0) (at 210.185 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 210.185 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 210.82 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 210.82 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a317bbc3-3bfd-44fb-b68f-ddfbc2e11abe)) + (pin "2" (uuid aecce8de-e4c1-4cff-8b1f-bbb9dc15d93c)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/3edd0062-2ab6-439f-8175-d6be70e2e3cd" + (reference "#PWR?") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/52f874f5-5b89-4da5-983b-bef598ca12af" + (reference "#PWR?") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/7231d47a-b1f9-4063-9b1d-0182e2f4ce5a" + (reference "#PWR?") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/a73d2e91-1400-4e76-ba5c-fac51c18c402" + (reference "#PWR?") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/b1745612-35ed-41d4-a6ba-3498ea725408" + (reference "#PWR?") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/ba818bf1-78d4-493e-a303-20790d6138af" + (reference "#PWR?") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/32822815-5be3-4b06-aaac-f6cd4189387a" + (reference "U?") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/462822f0-74ee-419d-bdb7-3cb32f335c05" + (reference "U?") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/57f98ba0-5027-4367-a872-c5cbacd4d785" + (reference "U?") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/5be12982-8bd1-4929-b2d2-807bf12d9da5" + (reference "U?") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/67b01815-b90c-47e1-b12b-f5d78942e1c5" + (reference "U?") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/8e7f609b-1e07-4ea8-847a-8f3f097f8536" + (reference "U?") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/a5318ff9-ca73-46bf-b3e7-55b795339860" + (reference "U?") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/aeee62ef-54a2-4105-9246-4a0a50ced5ce" + (reference "U?") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/e85603d9-dcaf-4936-97b2-dd6416d41e0f" + (reference "U?") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/ec3f9dfd-1c25-4686-85af-35ed34ea9cec" + (reference "U?") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/7a5b7355-4518-4c66-9d9b-3865825bc7f9" + (reference "X?") (unit 1) (value "SN74H87") (footprint "") + ) + (path "/208eddb1-d0cf-4e52-9177-7364fa5a52a5" + (reference "v?") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/433dcc2f-a162-45c1-8af4-1e7bd1c54b0a" + (reference "v?") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/499d9197-6937-41d0-a3ff-6f3d4eeee205" + (reference "v?") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/4db3a4a6-8256-48d3-9586-e69f2a68a03f" + (reference "v?") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/5532a4a6-8793-4f4b-b785-fce6df743601" + (reference "v?") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/c38ca23f-d77e-4920-b5da-ffff4b278d13" + (reference "v?") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74H87/Test_SN74H87.proj b/library/SubcircuitLibrary/SN74H87/Test_SN74H87.proj new file mode 100644 index 000000000..ca41b5e3c --- /dev/null +++ b/library/SubcircuitLibrary/SN74H87/Test_SN74H87.proj @@ -0,0 +1 @@ +schematicFile Test_SN74H87.kicad_sch diff --git a/library/SubcircuitLibrary/SN74H87/Test_SN74H87_Previous_Values.xml b/library/SubcircuitLibrary/SN74H87/Test_SN74H87_Previous_Values.xml new file mode 100644 index 000000000..6ced67694 --- /dev/null +++ b/library/SubcircuitLibrary/SN74H87/Test_SN74H87_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0.1320secmsmspulse0501n1n10m20mpulse0501n1n40m80mpulse0501n1n80m160mpulse0501n1n10m20mpulse0501n1n10m20mpulse0501n1n10m20md_inverterd_inverteradc_bridgeadc_bridgeadc_bridgeadc_bridged_andd_andd_andd_andd_ord_andd_inverteradc_bridged_inverteradc_bridged_andd_anddac_bridgedac_bridged_ord_ordac_bridged_ordac_bridged_ord_andd_andd_andd_ord_ord_andd_andd_or \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74H87/analysis b/library/SubcircuitLibrary/SN74H87/analysis new file mode 100644 index 000000000..ce83b2a2d --- /dev/null +++ b/library/SubcircuitLibrary/SN74H87/analysis @@ -0,0 +1 @@ +.tran 0.1e-03 320e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC138/3_and-cache.lib b/library/SubcircuitLibrary/SN74HC138/3_and-cache.lib new file mode 100644 index 000000000..af0586415 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/3_and-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC138/3_and.cir b/library/SubcircuitLibrary/SN74HC138/3_and.cir new file mode 100644 index 000000000..ba296cf01 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/3_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\3_and\3_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/26/19 18:42:57 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad4_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN74HC138/3_and.cir.out b/library/SubcircuitLibrary/SN74HC138/3_and.cir.out new file mode 100644 index 000000000..d7cf79a07 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/3_and.cir.out @@ -0,0 +1,20 @@ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC138/3_and.pro b/library/SubcircuitLibrary/SN74HC138/3_and.pro new file mode 100644 index 000000000..00597a5ad --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/3_and.pro @@ -0,0 +1,43 @@ +update=05/31/19 15:26:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=eSim_Analog +LibName2=eSim_Devices +LibName3=eSim_Digital +LibName4=eSim_Hybrid +LibName5=eSim_Miscellaneous +LibName6=eSim_Plot +LibName7=eSim_Power +LibName8=eSim_User +LibName9=eSim_Sources +LibName10=eSim_Subckt diff --git a/library/SubcircuitLibrary/SN74HC138/3_and.sch b/library/SubcircuitLibrary/SN74HC138/3_and.sch new file mode 100644 index 000000000..d6ac89f95 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/3_and.sch @@ -0,0 +1,130 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:3_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U2 +U 1 1 5C9A24D8 +P 4250 2700 +F 0 "U2" H 4250 2700 60 0000 C CNN +F 1 "d_and" H 4300 2800 60 0000 C CNN +F 2 "" H 4250 2700 60 0000 C CNN +F 3 "" H 4250 2700 60 0000 C CNN + 1 4250 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 5C9A2538 +P 5150 2900 +F 0 "U3" H 5150 2900 60 0000 C CNN +F 1 "d_and" H 5200 3000 60 0000 C CNN +F 2 "" H 5150 2900 60 0000 C CNN +F 3 "" H 5150 2900 60 0000 C CNN + 1 5150 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 5C9A259A +P 3050 2600 +F 0 "U1" H 3100 2700 30 0000 C CNN +F 1 "PORT" H 3050 2600 30 0000 C CNN +F 2 "" H 3050 2600 60 0000 C CNN +F 3 "" H 3050 2600 60 0000 C CNN + 1 3050 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A25D9 +P 3050 2800 +F 0 "U1" H 3100 2900 30 0000 C CNN +F 1 "PORT" H 3050 2800 30 0000 C CNN +F 2 "" H 3050 2800 60 0000 C CNN +F 3 "" H 3050 2800 60 0000 C CNN + 2 3050 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A260A +P 3050 3100 +F 0 "U1" H 3100 3200 30 0000 C CNN +F 1 "PORT" H 3050 3100 30 0000 C CNN +F 2 "" H 3050 3100 60 0000 C CNN +F 3 "" H 3050 3100 60 0000 C CNN + 3 3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2637 +P 6900 2850 +F 0 "U1" H 6950 2950 30 0000 C CNN +F 1 "PORT" H 6900 2850 30 0000 C CNN +F 2 "" H 6900 2850 60 0000 C CNN +F 3 "" H 6900 2850 60 0000 C CNN + 4 6900 2850 + -1 0 0 1 +$EndComp +Wire Wire Line + 4700 2650 4700 2800 +Wire Wire Line + 5600 2850 6650 2850 +Wire Wire Line + 3800 2600 3300 2600 +Wire Wire Line + 3800 2700 3300 2700 +Wire Wire Line + 3300 2700 3300 2800 +Wire Wire Line + 3300 3100 4700 3100 +Wire Wire Line + 4700 3100 4700 2900 +Text Notes 3500 2600 0 60 ~ 12 +in1 +Text Notes 3450 2800 0 60 ~ 12 +in2\n +Text Notes 3500 3100 0 60 ~ 12 +in3 +Text Notes 6100 2850 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC138/3_and.sub b/library/SubcircuitLibrary/SN74HC138/3_and.sub new file mode 100644 index 000000000..3d9120bb6 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/3_and.sub @@ -0,0 +1,14 @@ +* Subcircuit 3_and +.subckt 3_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC138/3_and_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC138/3_and_Previous_Values.xml new file mode 100644 index 000000000..abc5faaae --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/3_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC138/_autosave-sn74hc138.sch b/library/SubcircuitLibrary/SN74HC138/_autosave-sn74hc138.sch new file mode 100644 index 000000000..0bf75c9fa --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/_autosave-sn74hc138.sch @@ -0,0 +1,768 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ -14000 2200 +Connection ~ -13950 2800 +Connection ~ -13950 3350 +Connection ~ -12650 1850 +Connection ~ -12650 2450 +Connection ~ -12650 3350 +Connection ~ -12650 3750 +Connection ~ -12650 4400 +Connection ~ -12650 5050 +Connection ~ -11950 1750 +Connection ~ -11950 2800 +Connection ~ -11950 3650 +Connection ~ -11650 3000 +Connection ~ -11650 3200 +Connection ~ -11650 4950 +Connection ~ -11500 2200 +Connection ~ -11500 2250 +Connection ~ -11500 3550 +Connection ~ -11350 1650 +Connection ~ -11350 2900 +Connection ~ -11350 4200 +Connection ~ -8650 2250 +Connection ~ -8650 2900 +Connection ~ -8650 3550 +Connection ~ -8650 4150 +Connection ~ -8650 4750 +Connection ~ -8650 5350 +Connection ~ -8650 6050 +NoConn ~ -7950 800 +NoConn ~ -6450 6100 +Wire Wire Line + -15100 2200 -14750 2200 +Wire Wire Line + -15100 2800 -14750 2800 +Wire Wire Line + -15100 3350 -14750 3350 +Wire Wire Line + -15100 6000 -14700 6000 +Wire Wire Line + -15100 6550 -14700 6550 +Wire Wire Line + -15100 7200 -14700 7200 +Wire Wire Line + -14150 2200 -14000 2200 +Wire Wire Line + -14150 2800 -13950 2800 +Wire Wire Line + -14150 3350 -13950 3350 +Wire Wire Line + -14100 6000 -13850 6000 +Wire Wire Line + -14100 6550 -13800 6550 +Wire Wire Line + -14100 7200 -13700 7200 +Wire Wire Line + -14000 550 -11350 550 +Wire Wire Line + -14000 2200 -14000 550 +Wire Wire Line + -14000 2200 -13650 2200 +Wire Wire Line + -13950 2800 -13950 3000 +Wire Wire Line + -13950 2800 -13650 2800 +Wire Wire Line + -13950 3000 -11650 3000 +Wire Wire Line + -13950 3350 -13950 3750 +Wire Wire Line + -13950 3350 -13650 3350 +Wire Wire Line + -13950 3750 -12650 3750 +Wire Wire Line + -13850 6000 -13850 6350 +Wire Wire Line + -13850 6350 -13700 6350 +Wire Wire Line + -13800 6450 -13700 6450 +Wire Wire Line + -13800 6550 -13800 6450 +Wire Wire Line + -13700 6550 -13700 7200 +Wire Wire Line + -13050 2200 -11500 2200 +Wire Wire Line + -13050 2800 -11950 2800 +Wire Wire Line + -13050 3350 -12650 3350 +Wire Wire Line + -12650 1250 -12650 1850 +Wire Wire Line + -12650 1850 -12650 2450 +Wire Wire Line + -12650 1850 -11150 1850 +Wire Wire Line + -12650 2450 -12650 3350 +Wire Wire Line + -12650 2450 -11150 2450 +Wire Wire Line + -12650 3350 -11150 3350 +Wire Wire Line + -12650 3750 -12650 4400 +Wire Wire Line + -12650 3750 -11150 3750 +Wire Wire Line + -12650 4400 -12650 5050 +Wire Wire Line + -12650 4400 -11150 4400 +Wire Wire Line + -12650 5050 -12650 5700 +Wire Wire Line + -12650 5050 -11150 5050 +Wire Wire Line + -12650 5700 -11150 5700 +Wire Wire Line + -11950 1150 -11950 1750 +Wire Wire Line + -11950 1750 -11950 2800 +Wire Wire Line + -11950 1750 -11150 1750 +Wire Wire Line + -11950 2800 -11950 3650 +Wire Wire Line + -11950 3650 -11950 4300 +Wire Wire Line + -11950 3650 -11150 3650 +Wire Wire Line + -11950 4300 -11150 4300 +Wire Wire Line + -11650 2350 -11150 2350 +Wire Wire Line + -11650 3000 -11650 2350 +Wire Wire Line + -11650 3200 -11650 3000 +Wire Wire Line + -11650 3200 -11550 3200 +Wire Wire Line + -11650 4950 -11650 3200 +Wire Wire Line + -11650 4950 -11150 4950 +Wire Wire Line + -11650 5600 -11650 4950 +Wire Wire Line + -11550 3000 -11550 3200 +Wire Wire Line + -11500 1050 -11500 2200 +Wire Wire Line + -11500 2200 -11500 2250 +Wire Wire Line + -11500 2250 -11500 3550 +Wire Wire Line + -11500 2250 -11150 2250 +Wire Wire Line + -11500 3550 -11500 4850 +Wire Wire Line + -11500 3550 -11150 3550 +Wire Wire Line + -11500 4850 -11150 4850 +Wire Wire Line + -11350 550 -11350 1650 +Wire Wire Line + -11350 1650 -11350 2900 +Wire Wire Line + -11350 1650 -11150 1650 +Wire Wire Line + -11350 2900 -11350 4200 +Wire Wire Line + -11350 2900 -11150 2900 +Wire Wire Line + -11350 4200 -11350 5500 +Wire Wire Line + -11350 4200 -11150 4200 +Wire Wire Line + -11350 5500 -11150 5500 +Wire Wire Line + -11150 1050 -11500 1050 +Wire Wire Line + -11150 1150 -11950 1150 +Wire Wire Line + -11150 1250 -12650 1250 +Wire Wire Line + -11150 3000 -11550 3000 +Wire Wire Line + -11150 3350 -11150 3100 +Wire Wire Line + -11150 5600 -11650 5600 +Wire Wire Line + -10300 1150 -8150 1150 +Wire Wire Line + -10300 1750 -8150 1750 +Wire Wire Line + -10300 2350 -8150 2350 +Wire Wire Line + -10300 3000 -8150 3000 +Wire Wire Line + -10300 3650 -8150 3650 +Wire Wire Line + -10300 4300 -8150 4300 +Wire Wire Line + -10300 4950 -8150 4950 +Wire Wire Line + -10300 5600 -8150 5600 +Wire Wire Line + -9800 6450 -12850 6450 +Wire Wire Line + -9200 6450 -8650 6450 +Wire Wire Line + -8650 1550 -8650 2250 +Wire Wire Line + -8650 2250 -8650 2900 +Wire Wire Line + -8650 2250 -8150 2250 +Wire Wire Line + -8650 2900 -8650 3550 +Wire Wire Line + -8650 2900 -8150 2900 +Wire Wire Line + -8650 3550 -8650 4150 +Wire Wire Line + -8650 3550 -8150 3550 +Wire Wire Line + -8650 4150 -8650 4750 +Wire Wire Line + -8650 4150 -8150 4150 +Wire Wire Line + -8650 4750 -8650 5350 +Wire Wire Line + -8650 4750 -8150 4750 +Wire Wire Line + -8650 5350 -8650 6050 +Wire Wire Line + -8650 5350 -8150 5350 +Wire Wire Line + -8650 6050 -8650 6450 +Wire Wire Line + -8650 6050 -8150 6050 +Wire Wire Line + -8150 1150 -8150 1450 +Wire Wire Line + -8150 1550 -8650 1550 +Wire Wire Line + -8150 1750 -8150 2150 +Wire Wire Line + -8150 2350 -8150 2800 +Wire Wire Line + -8150 3000 -8150 3450 +Wire Wire Line + -8150 3650 -8150 4050 +Wire Wire Line + -8150 4300 -8150 4650 +Wire Wire Line + -8150 4950 -8150 5250 +Wire Wire Line + -8150 5600 -8150 5950 +Wire Wire Line + -7950 800 -7100 800 +Wire Wire Line + -7150 1500 -7250 1500 +Wire Wire Line + -7150 2200 -7250 2200 +Wire Wire Line + -7150 2850 -7250 2850 +Wire Wire Line + -7150 3500 -7250 3500 +Wire Wire Line + -7150 4100 -7250 4100 +Wire Wire Line + -7150 4700 -7250 4700 +Wire Wire Line + -7150 5300 -7250 5300 +Wire Wire Line + -7150 6000 -7250 6000 +Wire Wire Line + -6450 5450 -6450 6100 +$Comp +L eSim_Miscellaneous:PORT U1 +U 1 1 00000000 +P -15350 2200 +F 0 "U1" H -15325 2400 30 0000 C CNN +F 1 "PORT" H -15325 2300 30 0000 C CNN +F 2 "" H -15350 2200 60 0000 C CNN +F 3 "" H -15350 2200 60 0000 C CNN + 1 -15350 2200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 2 1 00000000 +P -15350 2800 +F 0 "U1" H -15325 3000 30 0000 C CNN +F 1 "PORT" H -15325 2900 30 0000 C CNN +F 2 "" H -15350 2800 60 0000 C CNN +F 3 "" H -15350 2800 60 0000 C CNN + 2 -15350 2800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 3 1 00000000 +P -15350 3350 +F 0 "U1" H -15325 3550 30 0000 C CNN +F 1 "PORT" H -15325 3450 30 0000 C CNN +F 2 "" H -15350 3350 60 0000 C CNN +F 3 "" H -15350 3350 60 0000 C CNN + 3 -15350 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 6 1 00000000 +P -15350 6000 +F 0 "U1" H -15325 6200 30 0000 C CNN +F 1 "PORT" H -15325 6100 30 0000 C CNN +F 2 "" H -15350 6000 60 0000 C CNN +F 3 "" H -15350 6000 60 0000 C CNN + 6 -15350 6000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 4 1 00000000 +P -15350 6550 +F 0 "U1" H -15325 6750 30 0000 C CNN +F 1 "PORT" H -15325 6650 30 0000 C CNN +F 2 "" H -15350 6550 60 0000 C CNN +F 3 "" H -15350 6550 60 0000 C CNN + 4 -15350 6550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 5 1 00000000 +P -15350 7200 +F 0 "U1" H -15325 7400 30 0000 C CNN +F 1 "PORT" H -15325 7300 30 0000 C CNN +F 2 "" H -15350 7200 60 0000 C CNN +F 3 "" H -15350 7200 60 0000 C CNN + 5 -15350 7200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 15 1 00000000 +P -6900 1500 +F 0 "U1" H -7050 1475 30 0000 R CNN +F 1 "PORT" H -7050 1575 30 0000 R CNN +F 2 "" H -6900 1500 60 0000 C CNN +F 3 "" H -6900 1500 60 0000 C CNN + 15 -6900 1500 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 14 1 00000000 +P -6900 2200 +F 0 "U1" H -7050 2175 30 0000 R CNN +F 1 "PORT" H -7050 2275 30 0000 R CNN +F 2 "" H -6900 2200 60 0000 C CNN +F 3 "" H -6900 2200 60 0000 C CNN + 14 -6900 2200 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 13 1 00000000 +P -6900 2850 +F 0 "U1" H -7050 2825 30 0000 R CNN +F 1 "PORT" H -7050 2925 30 0000 R CNN +F 2 "" H -6900 2850 60 0000 C CNN +F 3 "" H -6900 2850 60 0000 C CNN + 13 -6900 2850 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 12 1 00000000 +P -6900 3500 +F 0 "U1" H -7050 3475 30 0000 R CNN +F 1 "PORT" H -7050 3575 30 0000 R CNN +F 2 "" H -6900 3500 60 0000 C CNN +F 3 "" H -6900 3500 60 0000 C CNN + 12 -6900 3500 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 11 1 00000000 +P -6900 4100 +F 0 "U1" H -7050 4075 30 0000 R CNN +F 1 "PORT" H -7050 4175 30 0000 R CNN +F 2 "" H -6900 4100 60 0000 C CNN +F 3 "" H -6900 4100 60 0000 C CNN + 11 -6900 4100 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 10 1 00000000 +P -6900 4700 +F 0 "U1" H -7050 4675 30 0000 R CNN +F 1 "PORT" H -7050 4775 30 0000 R CNN +F 2 "" H -6900 4700 60 0000 C CNN +F 3 "" H -6900 4700 60 0000 C CNN + 10 -6900 4700 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 9 1 00000000 +P -6900 5300 +F 0 "U1" H -7050 5275 30 0000 R CNN +F 1 "PORT" H -7050 5375 30 0000 R CNN +F 2 "" H -6900 5300 60 0000 C CNN +F 3 "" H -6900 5300 60 0000 C CNN + 9 -6900 5300 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 7 1 00000000 +P -6900 6000 +F 0 "U1" H -7050 5975 30 0000 R CNN +F 1 "PORT" H -7050 6075 30 0000 R CNN +F 2 "" H -6900 6000 60 0000 C CNN +F 3 "" H -6900 6000 60 0000 C CNN + 7 -6900 6000 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 16 1 00000000 +P -6850 800 +F 0 "U1" H -7000 775 30 0000 R CNN +F 1 "PORT" H -7000 875 30 0000 R CNN +F 2 "" H -6850 800 60 0000 C CNN +F 3 "" H -6850 800 60 0000 C CNN + 16 -6850 800 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 8 1 00000000 +P -6200 5450 +F 0 "U1" H -6350 5425 30 0000 R CNN +F 1 "PORT" H -6350 5525 30 0000 R CNN +F 2 "" H -6200 5450 60 0000 C CNN +F 3 "" H -6200 5450 60 0000 C CNN + 8 -6200 5450 + -1 0 0 1 +$EndComp +$Comp +L eSim_Digital:d_inverter U2 +U 1 1 00000000 +P -14450 2200 +F 0 "U2" H -14450 2450 60 0000 C CNN +F 1 "d_inverter" H -14450 2300 60 0000 C CNN +F 2 "" H -14400 2150 60 0000 C CNN +F 3 "" H -14400 2150 60 0000 C CNN + 1 -14450 2200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U3 +U 1 1 00000000 +P -14450 2800 +F 0 "U3" H -14450 3050 60 0000 C CNN +F 1 "d_inverter" H -14450 2900 60 0000 C CNN +F 2 "" H -14400 2750 60 0000 C CNN +F 3 "" H -14400 2750 60 0000 C CNN + 1 -14450 2800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U4 +U 1 1 00000000 +P -14450 3350 +F 0 "U4" H -14450 3600 60 0000 C CNN +F 1 "d_inverter" H -14450 3450 60 0000 C CNN +F 2 "" H -14400 3300 60 0000 C CNN +F 3 "" H -14400 3300 60 0000 C CNN + 1 -14450 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U5 +U 1 1 00000000 +P -14400 6000 +F 0 "U5" H -14400 6250 60 0000 C CNN +F 1 "d_inverter" H -14400 6100 60 0000 C CNN +F 2 "" H -14350 5950 60 0000 C CNN +F 3 "" H -14350 5950 60 0000 C CNN + 1 -14400 6000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U6 +U 1 1 00000000 +P -14400 6550 +F 0 "U6" H -14400 6800 60 0000 C CNN +F 1 "d_inverter" H -14400 6650 60 0000 C CNN +F 2 "" H -14350 6500 60 0000 C CNN +F 3 "" H -14350 6500 60 0000 C CNN + 1 -14400 6550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U7 +U 1 1 00000000 +P -14400 7200 +F 0 "U7" H -14400 7450 60 0000 C CNN +F 1 "d_inverter" H -14400 7300 60 0000 C CNN +F 2 "" H -14350 7150 60 0000 C CNN +F 3 "" H -14350 7150 60 0000 C CNN + 1 -14400 7200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U8 +U 1 1 00000000 +P -13350 2200 +F 0 "U8" H -13350 2450 60 0000 C CNN +F 1 "d_inverter" H -13350 2300 60 0000 C CNN +F 2 "" H -13300 2150 60 0000 C CNN +F 3 "" H -13300 2150 60 0000 C CNN + 1 -13350 2200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U9 +U 1 1 00000000 +P -13350 2800 +F 0 "U9" H -13350 3050 60 0000 C CNN +F 1 "d_inverter" H -13350 2900 60 0000 C CNN +F 2 "" H -13300 2750 60 0000 C CNN +F 3 "" H -13300 2750 60 0000 C CNN + 1 -13350 2800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U10 +U 1 1 00000000 +P -13350 3350 +F 0 "U10" H -13350 3600 60 0000 C CNN +F 1 "d_inverter" H -13350 3450 60 0000 C CNN +F 2 "" H -13300 3300 60 0000 C CNN +F 3 "" H -13300 3300 60 0000 C CNN + 1 -13350 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U11 +U 1 1 00000000 +P -9500 6450 +F 0 "U11" H -9500 6700 60 0000 C CNN +F 1 "d_inverter" H -9500 6550 60 0000 C CNN +F 2 "" H -9450 6400 60 0000 C CNN +F 3 "" H -9450 6400 60 0000 C CNN + 1 -9500 6450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U12 +U 1 1 00000000 +P -7700 1550 +F 0 "U12" H -7700 1900 60 0000 C CNN +F 1 "d_nand" H -7700 1750 60 0000 C CNN +F 2 "" H -7700 1550 60 0000 C CNN +F 3 "" H -7700 1550 60 0000 C CNN + 1 -7700 1550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U13 +U 1 1 00000000 +P -7700 2250 +F 0 "U13" H -7700 2600 60 0000 C CNN +F 1 "d_nand" H -7700 2450 60 0000 C CNN +F 2 "" H -7700 2250 60 0000 C CNN +F 3 "" H -7700 2250 60 0000 C CNN + 1 -7700 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U14 +U 1 1 00000000 +P -7700 2900 +F 0 "U14" H -7700 3250 60 0000 C CNN +F 1 "d_nand" H -7700 3100 60 0000 C CNN +F 2 "" H -7700 2900 60 0000 C CNN +F 3 "" H -7700 2900 60 0000 C CNN + 1 -7700 2900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U15 +U 1 1 00000000 +P -7700 3550 +F 0 "U15" H -7700 3900 60 0000 C CNN +F 1 "d_nand" H -7700 3750 60 0000 C CNN +F 2 "" H -7700 3550 60 0000 C CNN +F 3 "" H -7700 3550 60 0000 C CNN + 1 -7700 3550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U16 +U 1 1 00000000 +P -7700 4150 +F 0 "U16" H -7700 4500 60 0000 C CNN +F 1 "d_nand" H -7700 4350 60 0000 C CNN +F 2 "" H -7700 4150 60 0000 C CNN +F 3 "" H -7700 4150 60 0000 C CNN + 1 -7700 4150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U17 +U 1 1 00000000 +P -7700 4750 +F 0 "U17" H -7700 5100 60 0000 C CNN +F 1 "d_nand" H -7700 4950 60 0000 C CNN +F 2 "" H -7700 4750 60 0000 C CNN +F 3 "" H -7700 4750 60 0000 C CNN + 1 -7700 4750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U18 +U 1 1 00000000 +P -7700 5350 +F 0 "U18" H -7700 5700 60 0000 C CNN +F 1 "d_nand" H -7700 5550 60 0000 C CNN +F 2 "" H -7700 5350 60 0000 C CNN +F 3 "" H -7700 5350 60 0000 C CNN + 1 -7700 5350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U19 +U 1 1 00000000 +P -7700 6050 +F 0 "U19" H -7700 6400 60 0000 C CNN +F 1 "d_nand" H -7700 6250 60 0000 C CNN +F 2 "" H -7700 6050 60 0000 C CNN +F 3 "" H -7700 6050 60 0000 C CNN + 1 -7700 6050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X1 +U 1 1 00000000 +P -13350 6500 +F 0 "X1" H -13271 6900 60 0000 C CNN +F 1 "3_and" H -13271 6750 60 0000 C CNN +F 2 "" H -13350 6500 60 0000 C CNN +F 3 "" H -13350 6500 60 0000 C CNN + 1 -13350 6500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X2 +U 1 1 00000000 +P -10800 1200 +F 0 "X2" H -10721 1600 60 0000 C CNN +F 1 "3_and" H -10721 1450 60 0000 C CNN +F 2 "" H -10800 1200 60 0000 C CNN +F 3 "" H -10800 1200 60 0000 C CNN + 1 -10800 1200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X3 +U 1 1 00000000 +P -10800 1800 +F 0 "X3" H -10721 2200 60 0000 C CNN +F 1 "3_and" H -10721 2050 60 0000 C CNN +F 2 "" H -10800 1800 60 0000 C CNN +F 3 "" H -10800 1800 60 0000 C CNN + 1 -10800 1800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X4 +U 1 1 00000000 +P -10800 2400 +F 0 "X4" H -10721 2800 60 0000 C CNN +F 1 "3_and" H -10721 2650 60 0000 C CNN +F 2 "" H -10800 2400 60 0000 C CNN +F 3 "" H -10800 2400 60 0000 C CNN + 1 -10800 2400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X5 +U 1 1 00000000 +P -10800 3050 +F 0 "X5" H -10721 3450 60 0000 C CNN +F 1 "3_and" H -10721 3300 60 0000 C CNN +F 2 "" H -10800 3050 60 0000 C CNN +F 3 "" H -10800 3050 60 0000 C CNN + 1 -10800 3050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X6 +U 1 1 00000000 +P -10800 3700 +F 0 "X6" H -10721 4100 60 0000 C CNN +F 1 "3_and" H -10721 3950 60 0000 C CNN +F 2 "" H -10800 3700 60 0000 C CNN +F 3 "" H -10800 3700 60 0000 C CNN + 1 -10800 3700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X7 +U 1 1 00000000 +P -10800 4350 +F 0 "X7" H -10721 4750 60 0000 C CNN +F 1 "3_and" H -10721 4600 60 0000 C CNN +F 2 "" H -10800 4350 60 0000 C CNN +F 3 "" H -10800 4350 60 0000 C CNN + 1 -10800 4350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X8 +U 1 1 00000000 +P -10800 5000 +F 0 "X8" H -10721 5400 60 0000 C CNN +F 1 "3_and" H -10721 5250 60 0000 C CNN +F 2 "" H -10800 5000 60 0000 C CNN +F 3 "" H -10800 5000 60 0000 C CNN + 1 -10800 5000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X9 +U 1 1 00000000 +P -10800 5650 +F 0 "X9" H -10721 6050 60 0000 C CNN +F 1 "3_and" H -10721 5900 60 0000 C CNN +F 2 "" H -10800 5650 60 0000 C CNN +F 3 "" H -10800 5650 60 0000 C CNN + 1 -10800 5650 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC138/analysis b/library/SubcircuitLibrary/SN74HC138/analysis new file mode 100644 index 000000000..97842f7ac --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/analysis @@ -0,0 +1 @@ +.tran 0.1e-00 50e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC138/sn74hc138.cir b/library/SubcircuitLibrary/SN74HC138/sn74hc138.cir new file mode 100644 index 000000000..62b9b9cfd --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/sn74hc138.cir @@ -0,0 +1,30 @@ +.title KiCad schematic +U14 Net-_U14-Pad1_ Net-_U11-Pad2_ Net-_U1-Pad13_ d_nand +X5 Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U10-Pad2_ Net-_U15-Pad1_ 3_and +X4 Net-_U8-Pad2_ Net-_U3-Pad2_ Net-_U10-Pad2_ Net-_U14-Pad1_ 3_and +X2 Net-_U8-Pad2_ Net-_U9-Pad2_ Net-_U10-Pad2_ Net-_U12-Pad1_ 3_and +X3 Net-_U2-Pad2_ Net-_U9-Pad2_ Net-_U10-Pad2_ Net-_U13-Pad1_ 3_and +U13 Net-_U13-Pad1_ Net-_U11-Pad2_ Net-_U1-Pad14_ d_nand +U12 Net-_U12-Pad1_ Net-_U11-Pad2_ Net-_U1-Pad15_ d_nand +U16 Net-_U16-Pad1_ Net-_U11-Pad2_ Net-_U1-Pad11_ d_nand +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ unconnected-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ unconnected-_U1-Pad16_ PORT +U15 Net-_U15-Pad1_ Net-_U11-Pad2_ Net-_U1-Pad12_ d_nand +U17 Net-_U17-Pad1_ Net-_U11-Pad2_ Net-_U1-Pad10_ d_nand +U19 Net-_U19-Pad1_ Net-_U11-Pad2_ Net-_U1-Pad7_ d_nand +U18 Net-_U18-Pad1_ Net-_U11-Pad2_ Net-_U1-Pad9_ d_nand +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ d_inverter +X9 Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U10-Pad1_ Net-_U19-Pad1_ 3_and +X8 Net-_U8-Pad2_ Net-_U3-Pad2_ Net-_U10-Pad1_ Net-_U18-Pad1_ 3_and +X1 Net-_U5-Pad2_ Net-_U6-Pad2_ Net-_U7-Pad2_ Net-_U11-Pad1_ 3_and +U5 Net-_U1-Pad6_ Net-_U5-Pad2_ d_inverter +U6 Net-_U1-Pad4_ Net-_U6-Pad2_ d_inverter +U7 Net-_U1-Pad5_ Net-_U7-Pad2_ d_inverter +U4 Net-_U1-Pad3_ Net-_U10-Pad1_ d_inverter +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ d_inverter +U9 Net-_U3-Pad2_ Net-_U9-Pad2_ d_inverter +U8 Net-_U2-Pad2_ Net-_U8-Pad2_ d_inverter +U3 Net-_U1-Pad2_ Net-_U3-Pad2_ d_inverter +U2 Net-_U1-Pad1_ Net-_U2-Pad2_ d_inverter +X7 Net-_U2-Pad2_ Net-_U9-Pad2_ Net-_U10-Pad1_ Net-_U17-Pad1_ 3_and +X6 Net-_U8-Pad2_ Net-_U9-Pad2_ Net-_U10-Pad1_ Net-_U16-Pad1_ 3_and +.end diff --git a/library/SubcircuitLibrary/SN74HC138/sn74hc138.cir.out b/library/SubcircuitLibrary/SN74HC138/sn74hc138.cir.out new file mode 100644 index 000000000..e3be75532 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/sn74hc138.cir.out @@ -0,0 +1,94 @@ +.title kicad schematic + +.include 3_and.sub +* u14 net-_u14-pad1_ net-_u11-pad2_ net-_u1-pad13_ d_nand +x5 net-_u2-pad2_ net-_u3-pad2_ net-_u10-pad2_ net-_u15-pad1_ 3_and +x4 net-_u8-pad2_ net-_u3-pad2_ net-_u10-pad2_ net-_u14-pad1_ 3_and +x2 net-_u8-pad2_ net-_u9-pad2_ net-_u10-pad2_ net-_u12-pad1_ 3_and +x3 net-_u2-pad2_ net-_u9-pad2_ net-_u10-pad2_ net-_u13-pad1_ 3_and +* u13 net-_u13-pad1_ net-_u11-pad2_ net-_u1-pad14_ d_nand +* u12 net-_u12-pad1_ net-_u11-pad2_ net-_u1-pad15_ d_nand +* u16 net-_u16-pad1_ net-_u11-pad2_ net-_u1-pad11_ d_nand +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ unconnected-_u1-pad16_ port +* u15 net-_u15-pad1_ net-_u11-pad2_ net-_u1-pad12_ d_nand +* u17 net-_u17-pad1_ net-_u11-pad2_ net-_u1-pad10_ d_nand +* u19 net-_u19-pad1_ net-_u11-pad2_ net-_u1-pad7_ d_nand +* u18 net-_u18-pad1_ net-_u11-pad2_ net-_u1-pad9_ d_nand +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +x9 net-_u2-pad2_ net-_u3-pad2_ net-_u10-pad1_ net-_u19-pad1_ 3_and +x8 net-_u8-pad2_ net-_u3-pad2_ net-_u10-pad1_ net-_u18-pad1_ 3_and +x1 net-_u5-pad2_ net-_u6-pad2_ net-_u7-pad2_ net-_u11-pad1_ 3_and +* u5 net-_u1-pad6_ net-_u5-pad2_ d_inverter +* u6 net-_u1-pad4_ net-_u6-pad2_ d_inverter +* u7 net-_u1-pad5_ net-_u7-pad2_ d_inverter +* u4 net-_u1-pad3_ net-_u10-pad1_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u9 net-_u3-pad2_ net-_u9-pad2_ d_inverter +* u8 net-_u2-pad2_ net-_u8-pad2_ d_inverter +* u3 net-_u1-pad2_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad1_ net-_u2-pad2_ d_inverter +x7 net-_u2-pad2_ net-_u9-pad2_ net-_u10-pad1_ net-_u17-pad1_ 3_and +x6 net-_u8-pad2_ net-_u9-pad2_ net-_u10-pad1_ net-_u16-pad1_ 3_and +a1 [net-_u14-pad1_ net-_u11-pad2_ ] net-_u1-pad13_ u14 +a2 [net-_u13-pad1_ net-_u11-pad2_ ] net-_u1-pad14_ u13 +a3 [net-_u12-pad1_ net-_u11-pad2_ ] net-_u1-pad15_ u12 +a4 [net-_u16-pad1_ net-_u11-pad2_ ] net-_u1-pad11_ u16 +a5 [net-_u15-pad1_ net-_u11-pad2_ ] net-_u1-pad12_ u15 +a6 [net-_u17-pad1_ net-_u11-pad2_ ] net-_u1-pad10_ u17 +a7 [net-_u19-pad1_ net-_u11-pad2_ ] net-_u1-pad7_ u19 +a8 [net-_u18-pad1_ net-_u11-pad2_ ] net-_u1-pad9_ u18 +a9 net-_u11-pad1_ net-_u11-pad2_ u11 +a10 net-_u1-pad6_ net-_u5-pad2_ u5 +a11 net-_u1-pad4_ net-_u6-pad2_ u6 +a12 net-_u1-pad5_ net-_u7-pad2_ u7 +a13 net-_u1-pad3_ net-_u10-pad1_ u4 +a14 net-_u10-pad1_ net-_u10-pad2_ u10 +a15 net-_u3-pad2_ net-_u9-pad2_ u9 +a16 net-_u2-pad2_ net-_u8-pad2_ u8 +a17 net-_u1-pad2_ net-_u3-pad2_ u3 +a18 net-_u1-pad1_ net-_u2-pad2_ u2 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u14 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u12 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u16 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u15 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u17 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u19 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u18 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0.1e-00 50e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC138/sn74hc138.kicad_sch b/library/SubcircuitLibrary/SN74HC138/sn74hc138.kicad_sch new file mode 100644 index 000000000..5dc645ab5 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/sn74hc138.kicad_sch @@ -0,0 +1,2272 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 1338d1be-5ac6-435f-bf9d-8ce246672f5b) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nand" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nand_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nand_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Subckt:3_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 2.54 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 3.81 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "3_and_0_1" + (polyline + (pts + (xy -3.81 5.08) + (xy 5.08 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 5.08) + (xy -3.81 -2.54) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 5.08 -2.54) (mid 7.8261 1.27) (end 5.08 5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "3_and_1_1" + (pin input line (at -8.89 3.81 0) (length 5.08) + (name "in1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 1.27 0) (length 5.08) + (name "in2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -1.27 0) (length 5.08) + (name "in3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 1.27 180) (length 5.08) + (name "out" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at -303.53 92.71) (diameter 0) (color 0 0 0 0) + (uuid 066a0a28-877d-4df6-8fde-25a96e1a311d) + ) + (junction (at -321.31 95.25) (diameter 0) (color 0 0 0 0) + (uuid 140968b1-24eb-469f-9eeb-16e4fe233876) + ) + (junction (at -292.1 55.88) (diameter 0) (color 0 0 0 0) + (uuid 1c160920-f66c-426d-ae33-3cb6a2b8c1f1) + ) + (junction (at -321.31 85.09) (diameter 0) (color 0 0 0 0) + (uuid 20546cfb-751e-46e8-842b-04f072c0af47) + ) + (junction (at -219.71 153.67) (diameter 0) (color 0 0 0 0) + (uuid 2ba167a6-9060-4e81-8dad-cfeef22bbc75) + ) + (junction (at -219.71 90.17) (diameter 0) (color 0 0 0 0) + (uuid 3841f2c7-cc35-42f3-8a22-d097e03fea5d) + ) + (junction (at -303.53 44.45) (diameter 0) (color 0 0 0 0) + (uuid 3be25062-1c5b-4a25-aa09-0392072dc17f) + ) + (junction (at -219.71 73.66) (diameter 0) (color 0 0 0 0) + (uuid 525c0594-26f6-4d73-b6d2-17488b8a63ad) + ) + (junction (at -219.71 120.65) (diameter 0) (color 0 0 0 0) + (uuid 536d74bd-8522-491f-a5da-6de5e50b6309) + ) + (junction (at -288.29 106.68) (diameter 0) (color 0 0 0 0) + (uuid 5961a863-0c59-46a6-ae18-9049b05b66b4) + ) + (junction (at -288.29 73.66) (diameter 0) (color 0 0 0 0) + (uuid 6a37e046-ace6-4630-894e-8116a16eff1f) + ) + (junction (at -321.31 128.27) (diameter 0) (color 0 0 0 0) + (uuid 7512b4ee-b82c-48a0-9625-c0d1cd5df186) + ) + (junction (at -354.33 85.09) (diameter 0) (color 0 0 0 0) + (uuid 8856bfa9-ffbd-4935-8fcd-dd9f0dc9ab98) + ) + (junction (at -219.71 57.15) (diameter 0) (color 0 0 0 0) + (uuid 9525feb2-7ee9-4f51-b7f8-f2dc290cb8d7) + ) + (junction (at -321.31 46.99) (diameter 0) (color 0 0 0 0) + (uuid 9f56a6dc-9d5d-4095-8193-2739b14b8dac) + ) + (junction (at -292.1 57.15) (diameter 0) (color 0 0 0 0) + (uuid 9fda2222-46e9-4099-af47-053b6eaed57c) + ) + (junction (at -303.53 71.12) (diameter 0) (color 0 0 0 0) + (uuid aeebd72e-b70b-4985-89bb-bf03932d5acf) + ) + (junction (at -321.31 62.23) (diameter 0) (color 0 0 0 0) + (uuid b5d9179a-7e68-4230-9fa1-ef47908b824c) + ) + (junction (at -295.91 76.2) (diameter 0) (color 0 0 0 0) + (uuid b891811a-53f4-47c4-9e53-bd15a7983fd2) + ) + (junction (at -355.6 55.88) (diameter 0) (color 0 0 0 0) + (uuid b8cf9cb2-7e75-4d63-80bb-8e9d3ab9659d) + ) + (junction (at -219.71 135.89) (diameter 0) (color 0 0 0 0) + (uuid c62116da-afdf-4d45-8ed9-c8389026f136) + ) + (junction (at -295.91 125.73) (diameter 0) (color 0 0 0 0) + (uuid ccc40b21-df0f-4ada-a74d-631631c43330) + ) + (junction (at -295.91 81.28) (diameter 0) (color 0 0 0 0) + (uuid d1bd5151-3b0e-420e-820c-e2bf8e8d8979) + ) + (junction (at -354.33 71.12) (diameter 0) (color 0 0 0 0) + (uuid d68c8acb-ad83-43c7-b07e-2865175d79e8) + ) + (junction (at -321.31 111.76) (diameter 0) (color 0 0 0 0) + (uuid e13bb547-b889-4423-ba76-3077f08fcb89) + ) + (junction (at -219.71 105.41) (diameter 0) (color 0 0 0 0) + (uuid f10acf3f-2e6d-4d39-9e79-da5980c01dba) + ) + (junction (at -288.29 41.91) (diameter 0) (color 0 0 0 0) + (uuid f4f9c30d-f026-4778-884a-73d237f7a867) + ) + (junction (at -292.1 90.17) (diameter 0) (color 0 0 0 0) + (uuid f583119e-7bb0-4aa3-8e5a-abb9c94d2633) + ) + + (no_connect (at -201.93 20.32) (uuid 5a9a8d23-fcfd-4c41-b1d7-4e6b63bc2446)) + (no_connect (at -163.83 154.94) (uuid e04768f8-213d-4e67-8038-62bf433d799d)) + + (wire (pts (xy -358.14 182.88) (xy -347.98 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01887c39-f188-4d3d-b7c8-fc5b09fd8fdf) + ) + (wire (pts (xy -354.33 71.12) (xy -346.71 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 020e6069-2aae-4c6d-a669-3390edd1148a) + ) + (wire (pts (xy -207.01 109.22) (xy -207.01 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0318674d-010c-4df4-9a1f-265378ac512f) + ) + (wire (pts (xy -219.71 90.17) (xy -219.71 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03a649f7-dabb-4316-aaff-77aadd46a7f0) + ) + (wire (pts (xy -383.54 152.4) (xy -373.38 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05fc4f13-ac7e-46ee-a730-82a9dc9971b3) + ) + (wire (pts (xy -355.6 55.88) (xy -346.71 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0953e4a1-d869-4ff7-b35a-74beda58a76e) + ) + (wire (pts (xy -350.52 166.37) (xy -350.52 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b48d307-f8cc-4fa1-96cf-d04f5cb74336) + ) + (wire (pts (xy -207.01 92.71) (xy -207.01 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b576686-042f-4ed9-a649-5064bd982b8a) + ) + (wire (pts (xy -163.83 138.43) (xy -163.83 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d51df35-a65a-4d33-851c-d27e829d0319) + ) + (wire (pts (xy -219.71 105.41) (xy -219.71 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 115148d2-5a7f-47e2-9185-eac4eea596c6) + ) + (wire (pts (xy -283.21 85.09) (xy -283.21 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 154aa802-adfd-4f4d-917f-1a47506b0c2d) + ) + (wire (pts (xy -358.14 152.4) (xy -351.79 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 167cc0c8-dad6-49b8-b7c1-f1cb1031d302) + ) + (wire (pts (xy -207.01 142.24) (xy -207.01 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16f007e5-2b7d-4541-9eed-43f1f37e27c9) + ) + (wire (pts (xy -321.31 62.23) (xy -283.21 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19391bd5-fade-4dc2-955c-fffa4466326f) + ) + (wire (pts (xy -321.31 31.75) (xy -321.31 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a14c746-b258-4ade-8a31-a77499cedace) + ) + (wire (pts (xy -321.31 111.76) (xy -321.31 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a9955f7-e70a-45b6-8cab-8742432e8a30) + ) + (wire (pts (xy -288.29 106.68) (xy -283.21 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ae2fb9d-ed89-427a-a35a-3f7a73aaef56) + ) + (wire (pts (xy -181.61 72.39) (xy -184.15 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ebb5d33-4713-47a0-a7d6-5d58c7f67ffc) + ) + (wire (pts (xy -283.21 142.24) (xy -295.91 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f4b2b35-37c0-4758-b1e5-63b884e00f8e) + ) + (wire (pts (xy -295.91 59.69) (xy -283.21 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2265b0d8-e464-4483-8769-a2fcf4f627d7) + ) + (wire (pts (xy -292.1 57.15) (xy -292.1 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2396dece-ca87-47e1-918c-f4654bdc4dae) + ) + (wire (pts (xy -347.98 166.37) (xy -347.98 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 250d50c7-1f7a-4fdd-96c7-845fdcb2ea96) + ) + (wire (pts (xy -321.31 46.99) (xy -321.31 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26fb73d6-c2de-4d72-b888-89a5647ebf94) + ) + (wire (pts (xy -207.01 59.69) (xy -207.01 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a2571ec-897f-4da0-8168-98ddc5111e26) + ) + (wire (pts (xy -219.71 39.37) (xy -219.71 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31c2c444-3210-480b-b26b-50d3676b0acf) + ) + (wire (pts (xy -359.41 71.12) (xy -354.33 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 339dc0bf-a5cc-4e45-bb29-bd9062c99cec) + ) + (wire (pts (xy -261.62 76.2) (xy -207.01 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38769fcd-944d-4a5a-944b-b885aeef8722) + ) + (wire (pts (xy -351.79 152.4) (xy -351.79 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 390cd1a2-6fff-481c-9e75-a198ae29d635) + ) + (wire (pts (xy -303.53 92.71) (xy -283.21 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 398160dc-2345-47c3-8dcc-b767b7c70142) + ) + (wire (pts (xy -283.21 31.75) (xy -321.31 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c57a557-30da-43b1-93bd-8a9e618241a1) + ) + (wire (pts (xy -261.62 92.71) (xy -207.01 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ed24656-2546-4a1d-9984-480401da2fc6) + ) + (wire (pts (xy -383.54 85.09) (xy -374.65 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42e07ee3-2761-4327-a7f8-8ff7da74c65f) + ) + (wire (pts (xy -295.91 125.73) (xy -283.21 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44ea0c0e-2853-41b9-93a7-fc9ed378b51f) + ) + (wire (pts (xy -321.31 95.25) (xy -321.31 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 499d28c7-a203-4ddd-b7a5-a8939c7ce7e1) + ) + (wire (pts (xy -292.1 123.19) (xy -283.21 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a2c8cc0-c807-4b56-b518-3f8726607bc8) + ) + (wire (pts (xy -295.91 81.28) (xy -295.91 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b7ed8d5-24ce-4963-9524-b7e2ff2d1d50) + ) + (wire (pts (xy -219.71 153.67) (xy -219.71 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cc2a45f-9fa3-49fc-bfb0-574b6777432a) + ) + (wire (pts (xy -303.53 71.12) (xy -303.53 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d7fb65b-7bcf-49a4-9aee-920b98637b36) + ) + (wire (pts (xy -207.01 76.2) (xy -207.01 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ed665ba-0d35-429e-a3b7-fc6e84c115e1) + ) + (wire (pts (xy -321.31 144.78) (xy -283.21 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5086f0ea-0af5-47bb-8ee0-25aa9929c8a9) + ) + (wire (pts (xy -321.31 62.23) (xy -321.31 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51aad206-6ff1-4688-bb6b-7f23f68469e8) + ) + (wire (pts (xy -354.33 95.25) (xy -321.31 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51c3d4b4-3f88-4237-9769-efebd4ac6ad2) + ) + (wire (pts (xy -331.47 85.09) (xy -321.31 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 520e5203-b133-4dc1-af18-70b5a6b651ef) + ) + (wire (pts (xy -288.29 41.91) (xy -283.21 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56104005-621a-4377-ad84-e9191ab8ef7c) + ) + (wire (pts (xy -354.33 85.09) (xy -346.71 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56543341-6c38-4a5b-b24f-ca7a2facc25a) + ) + (wire (pts (xy -261.62 142.24) (xy -207.01 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56eebe0d-d581-42c2-a7c0-d740930b2ade) + ) + (wire (pts (xy -233.68 163.83) (xy -219.71 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57619bdd-dd44-4d62-aa54-f4dba1472d36) + ) + (wire (pts (xy -207.01 125.73) (xy -207.01 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 578495d7-b772-4bfc-a612-a3715336e422) + ) + (wire (pts (xy -354.33 85.09) (xy -354.33 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a531a93-3897-468d-af59-f6178c3ae790) + ) + (wire (pts (xy -321.31 95.25) (xy -283.21 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a6818bd-e84e-4dc5-99d6-b9fb31d2f22c) + ) + (wire (pts (xy -288.29 13.97) (xy -288.29 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a7f6ed8-1e2a-40b6-bf20-d223b7ffa08e) + ) + (wire (pts (xy -303.53 109.22) (xy -283.21 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5eb891ea-4fe9-4d0e-9529-aa1d1824451e) + ) + (wire (pts (xy -383.54 71.12) (xy -374.65 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60938fd5-265d-43f0-afbc-70e091a97733) + ) + (wire (pts (xy -261.62 59.69) (xy -207.01 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a077a57-23e7-4ce4-bd1c-51ffcda8274b) + ) + (wire (pts (xy -292.1 90.17) (xy -283.21 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ab10ee1-386d-4cb5-b293-dab399b0d753) + ) + (wire (pts (xy -219.71 135.89) (xy -207.01 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c4a819c-f9db-4463-93bf-6fc91c4e8db6) + ) + (wire (pts (xy -219.71 73.66) (xy -207.01 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70e7f643-6c93-4095-aea8-2139492443ec) + ) + (wire (pts (xy -181.61 38.1) (xy -184.15 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73e2aba1-8745-4377-ae2d-e18b9d8f3bdf) + ) + (wire (pts (xy -219.71 90.17) (xy -207.01 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74cb59a5-2d48-426e-99a1-081cb2561230) + ) + (wire (pts (xy -261.62 125.73) (xy -207.01 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75d52e65-a8e0-4646-88c4-1e5c39e06409) + ) + (wire (pts (xy -261.62 109.22) (xy -207.01 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79c762f0-1ebf-4c55-8c79-d2956a3a6b58) + ) + (wire (pts (xy -288.29 106.68) (xy -288.29 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b51f434-6ca6-42c2-8b4e-12119725e27c) + ) + (wire (pts (xy -331.47 71.12) (xy -303.53 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e42c90d-ea84-485b-9cdf-590af9d5659a) + ) + (wire (pts (xy -359.41 55.88) (xy -355.6 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f631c15-beaa-4854-9af7-48f8007f6e9f) + ) + (wire (pts (xy -248.92 163.83) (xy -326.39 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8006b848-b281-4744-8207-c893fecdab3a) + ) + (wire (pts (xy -295.91 81.28) (xy -293.37 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 852a2e63-90a9-4acb-9b71-52b24f4c926c) + ) + (wire (pts (xy -288.29 73.66) (xy -283.21 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88c9c012-af62-41bd-8c21-be58a27d7464) + ) + (wire (pts (xy -219.71 120.65) (xy -207.01 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89ae4844-ce6c-4c5a-97a8-7408f6a08bf2) + ) + (wire (pts (xy -331.47 55.88) (xy -292.1 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89f26f98-e74e-4ac8-aea0-96458c5d7f7b) + ) + (wire (pts (xy -359.41 85.09) (xy -354.33 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c94c918-51f3-410f-9180-658e424b4dd3) + ) + (wire (pts (xy -181.61 104.14) (xy -184.15 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cef2f01-a313-46e2-941f-4e1bf67b3d93) + ) + (wire (pts (xy -321.31 46.99) (xy -283.21 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95c2afdf-9294-4149-89fa-49d6041673ed) + ) + (wire (pts (xy -219.71 73.66) (xy -219.71 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 985a25ae-b388-4c7a-bd04-4d7dc0d7179b) + ) + (wire (pts (xy -295.91 76.2) (xy -295.91 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 990a5202-a715-43ab-8665-718c0ece03c7) + ) + (wire (pts (xy -350.52 163.83) (xy -347.98 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a8460ad-4813-473c-b7b6-e1f22126ad73) + ) + (wire (pts (xy -219.71 105.41) (xy -207.01 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b690036-c61d-41e3-b241-5c8361f1cc9e) + ) + (wire (pts (xy -354.33 71.12) (xy -354.33 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cf60383-0be2-493e-9c0e-c7b388d58d93) + ) + (wire (pts (xy -358.14 166.37) (xy -350.52 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fe2b416-1c05-4a2d-a616-d77a25a5ecce) + ) + (wire (pts (xy -383.54 166.37) (xy -373.38 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0499064-b7ad-4722-aa23-94efca474cda) + ) + (wire (pts (xy -261.62 29.21) (xy -207.01 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0a26ff0-d4f2-4f1a-93aa-4729dea7845f) + ) + (wire (pts (xy -288.29 139.7) (xy -283.21 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2aaa5e9-ffad-4108-ba8c-38062857f374) + ) + (wire (pts (xy -219.71 153.67) (xy -207.01 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3307aaa-e1e7-428a-84ee-10d23bb16f97) + ) + (wire (pts (xy -293.37 76.2) (xy -293.37 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4c6342d-5723-494a-9093-591a323bbb0a) + ) + (wire (pts (xy -261.62 44.45) (xy -207.01 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa186f01-14e6-444e-927c-baa1c0691e05) + ) + (wire (pts (xy -303.53 44.45) (xy -283.21 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acbe51d5-f867-4c29-8ab3-7e5eb4ade6ac) + ) + (wire (pts (xy -303.53 92.71) (xy -303.53 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad67c3c0-dbb5-4099-bb7d-f66e8bbcc974) + ) + (wire (pts (xy -219.71 57.15) (xy -219.71 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid add17052-36f6-4099-b610-ee2f836deb91) + ) + (wire (pts (xy -207.01 44.45) (xy -207.01 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0fe4464-b853-4445-861e-b61f548d9e14) + ) + (wire (pts (xy -219.71 120.65) (xy -219.71 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3347735-1a1c-41f4-b5ba-7bfbd0df755a) + ) + (wire (pts (xy -288.29 41.91) (xy -288.29 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b379e5eb-f102-41c9-83fe-56bd2ebc8487) + ) + (wire (pts (xy -181.61 134.62) (xy -184.15 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7143bc1-db69-42bb-ac8a-8e4ba4763676) + ) + (wire (pts (xy -303.53 44.45) (xy -303.53 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8dd101b-dd90-4722-9b32-8d7ec9e4af68) + ) + (wire (pts (xy -207.01 39.37) (xy -219.71 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba418389-aab8-4a22-8aa3-83a1664fa0b2) + ) + (wire (pts (xy -207.01 29.21) (xy -207.01 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba7fec50-1367-48b9-ad9d-7f8018fa5aa4) + ) + (wire (pts (xy -321.31 128.27) (xy -283.21 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbf4057d-efb6-4eba-a6f3-35cc7a77108e) + ) + (wire (pts (xy -181.61 55.88) (xy -184.15 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2766573-a737-4153-9ff1-0201fc9bfe33) + ) + (wire (pts (xy -355.6 55.88) (xy -355.6 13.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c33a367d-d276-4b21-8f24-522df73bcce5) + ) + (wire (pts (xy -321.31 85.09) (xy -283.21 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c65def0e-825f-46cc-8ac7-48589cd85adb) + ) + (wire (pts (xy -292.1 26.67) (xy -292.1 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7cf91c3-1dbd-428c-b01e-67d693a41aea) + ) + (wire (pts (xy -354.33 76.2) (xy -295.91 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd441d60-ff58-4e0a-aeb8-7b72a3f44a2c) + ) + (wire (pts (xy -292.1 55.88) (xy -292.1 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce07dd5b-6a10-42da-9b72-91b6a68dd695) + ) + (wire (pts (xy -292.1 90.17) (xy -292.1 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf98a015-9c9a-4d93-8b30-9ee09c68d1ee) + ) + (wire (pts (xy -288.29 73.66) (xy -288.29 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0cdc76c-08d8-4ce8-ad5e-d5b62f5315fa) + ) + (wire (pts (xy -383.54 55.88) (xy -374.65 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2074bd6-7e94-4791-a661-706f83982292) + ) + (wire (pts (xy -292.1 57.15) (xy -283.21 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d23efac3-0592-4e10-baf9-d1e82da0ed71) + ) + (wire (pts (xy -181.61 119.38) (xy -184.15 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d552aac4-3489-4687-ae60-210f450e4ec7) + ) + (wire (pts (xy -303.53 29.21) (xy -303.53 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de903fe5-f605-4202-9d30-c05fb722c53f) + ) + (wire (pts (xy -283.21 76.2) (xy -293.37 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e02179c6-3654-4a12-8679-3c8d9ec167d2) + ) + (wire (pts (xy -219.71 57.15) (xy -207.01 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0224fca-6dca-4e0d-b50d-0d2ab5b56d58) + ) + (wire (pts (xy -181.61 88.9) (xy -184.15 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e079031b-3f0e-42b8-aff4-32743e0cc6eb) + ) + (wire (pts (xy -321.31 128.27) (xy -321.31 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8fc36d5-4a54-4c4a-a091-d90f468fe744) + ) + (wire (pts (xy -355.6 13.97) (xy -288.29 13.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e94507e5-8996-4224-ae20-58232d3a7d22) + ) + (wire (pts (xy -383.54 182.88) (xy -373.38 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb5e8bb3-65eb-406e-a432-cf411ceda46b) + ) + (wire (pts (xy -295.91 142.24) (xy -295.91 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef7109a5-0e08-44e9-8f11-68e79d01c59f) + ) + (wire (pts (xy -181.61 152.4) (xy -184.15 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef8b0907-f5de-46fc-ae1e-cb70b71b8bde) + ) + (wire (pts (xy -283.21 29.21) (xy -303.53 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1e607f0-d155-4584-89e6-a3de26406dc2) + ) + (wire (pts (xy -219.71 135.89) (xy -219.71 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f46be0d7-6621-4598-b11d-ed17e6b0397e) + ) + (wire (pts (xy -351.79 161.29) (xy -347.98 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7d5486d-a501-41cc-bf9e-010b2656c118) + ) + (wire (pts (xy -283.21 26.67) (xy -292.1 26.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7f77631-d442-44f8-8036-c58afccd7621) + ) + (wire (pts (xy -321.31 111.76) (xy -283.21 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd240856-2ea7-4360-878b-8fc45d474c71) + ) + (wire (pts (xy -295.91 125.73) (xy -295.91 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff8e7451-7bd2-4ba6-b60b-b7cc9db4e413) + ) + (wire (pts (xy -201.93 20.32) (xy -180.34 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fffd09de-0063-481b-8604-d0c4fc409071) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -389.89 152.4 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 03080865-787f-4ff7-8b8a-edd7444b5a99) + (property "Reference" "U1" (id 0) (at -389.255 147.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -389.255 149.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -389.89 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -389.89 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fdd43ce2-f859-47f1-8ebb-ea2d9a0c4794)) + (pin "2" (uuid 4a3a56a8-00a6-4058-be6c-c41e22e275ca)) + (pin "3" (uuid 1c96f905-7730-4254-9a61-b9ae49f87d19)) + (pin "4" (uuid cfe5b684-a7c1-4827-b8f8-62195bc8cbf3)) + (pin "5" (uuid b948373b-d0e5-491e-a68e-d801ca29b031)) + (pin "6" (uuid 017cc6c4-0712-434c-9ebf-b3ef42ad687d)) + (pin "7" (uuid f7d87e0a-0d21-4b1e-9d11-949257716ee9)) + (pin "8" (uuid 28ed7904-a052-48d6-9f20-fbf25a1abc83)) + (pin "9" (uuid 0b96b3e5-1732-491b-aa95-81803310aa31)) + (pin "10" (uuid f8fab3d1-75a0-488e-9f0f-096142a3943f)) + (pin "11" (uuid 18fb6215-8b60-405b-98c5-5e0f15b552b9)) + (pin "12" (uuid 093e1715-6a0e-4195-9e75-ea5716c1e3be)) + (pin "13" (uuid b9c294ae-3dc1-46bc-b026-615c0264f831)) + (pin "14" (uuid 5ea180e2-f4bf-4d5c-94d7-03fee338233a)) + (pin "15" (uuid 9da3d320-1775-446b-8e17-cbc2986d0a73)) + (pin "16" (uuid aa70f644-4726-47e6-b02c-6fafa82c1837)) + (pin "17" (uuid 02a77cb2-0278-4efc-bec4-3555429ed8ed)) + (pin "18" (uuid 2829dd1a-1436-4d01-8f85-df676f8a552b)) + (pin "19" (uuid 7205a2e6-74f5-4dbc-a473-c77532407a83)) + (pin "20" (uuid 4c814aed-9e47-4fa5-8a05-2c387c518393)) + (pin "21" (uuid db8d8cbe-fcd0-4005-b634-34700dbfe667)) + (pin "22" (uuid 7aea21f7-521b-42cf-ad8a-f3b9c2b6fa63)) + (pin "23" (uuid 646c554e-bb7d-48f7-a4d6-afe3b3c3ab25)) + (pin "24" (uuid 3072e227-9cc0-4737-81a2-9315ba63e48e)) + (pin "25" (uuid 54a3f2c7-ea83-45e8-9287-be316133118a)) + (pin "26" (uuid d84656ff-f219-4218-8508-f4eb05f8464e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -157.48 138.43 180) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0ba1dbe9-4bae-4429-9b37-67c200e9afe4) + (property "Reference" "U1" (id 0) (at -153.67 137.795 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at -153.67 140.335 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at -157.48 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -157.48 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d22093f9-353b-462b-9eb6-cf9d5e91cd28)) + (pin "2" (uuid d000a1db-feb2-4062-af60-44493de64cb1)) + (pin "3" (uuid 96ab9967-139b-4341-9822-a493166a79b7)) + (pin "4" (uuid 20d634d5-1fee-4eb7-80cb-3bb01b1aa5c6)) + (pin "5" (uuid 6ceefac9-fa32-41ff-ab79-f84d16b1a5f5)) + (pin "6" (uuid 37ecac3c-f9ba-49c4-aea0-a5a527d313c5)) + (pin "7" (uuid 3c46d7ca-15d9-492d-98cf-403df28eafce)) + (pin "8" (uuid 5c04d7ef-fa33-4ca6-b3fc-ec22dc293e31)) + (pin "9" (uuid ec482a8b-af6c-48f7-b29e-168204c1dd23)) + (pin "10" (uuid 1ce0db11-dc2c-4e4d-9953-616ee8fa09f4)) + (pin "11" (uuid a9d735f0-f7f4-4349-b435-be7d5f78a68f)) + (pin "12" (uuid 1c513504-10ee-4675-b2f9-96927317a598)) + (pin "13" (uuid bc160cf0-4823-4866-b73d-35362b875175)) + (pin "14" (uuid 94ae9183-57df-4825-9157-555b7b103c0a)) + (pin "15" (uuid 2ded4a95-88b7-44a6-ac04-7cfab5cf2909)) + (pin "16" (uuid e4ed4b03-639c-4481-8aeb-de665c4cf660)) + (pin "17" (uuid d281da0f-d8e9-4955-ba2e-eea0e84ae94d)) + (pin "18" (uuid e364cef5-8a46-4b05-af7f-d30e55cf589b)) + (pin "19" (uuid 68dafead-b88f-4f3d-a56f-096a5f56903f)) + (pin "20" (uuid 88b583da-c10b-47ed-96cb-16cc5cabb63a)) + (pin "21" (uuid 0521fa3d-d999-4bc4-8db7-307688dfdced)) + (pin "22" (uuid f2019928-7174-427d-a1b4-419694f60d65)) + (pin "23" (uuid 1990098c-02dd-404b-bcff-05da8d351d5b)) + (pin "24" (uuid 05617dea-146d-4021-8024-a41d9f51957d)) + (pin "25" (uuid 68c408d1-0c2e-494f-92ce-278a98562be9)) + (pin "26" (uuid d4161b91-d17d-4506-87a8-3ef4b70df30f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -175.26 104.14 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0d06027b-bf94-48ce-ad5c-556b58be387b) + (property "Reference" "U1" (id 0) (at -171.45 103.505 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at -171.45 106.045 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at -175.26 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -175.26 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4b642be6-39d2-4376-97d7-5cb600d5fecb)) + (pin "2" (uuid d36b0d62-42f1-4d38-90d2-1da98c57ac95)) + (pin "3" (uuid d109a13e-7259-488a-b03e-c34f4a71ac11)) + (pin "4" (uuid d2968cc8-4e6b-4889-a8d7-ae839478f117)) + (pin "5" (uuid 1365fbe3-3c76-4a02-8e96-c4037fa35d57)) + (pin "6" (uuid e63fbe3b-493e-4d12-b10f-e86843e34fb8)) + (pin "7" (uuid f38a67ba-54ef-496e-9347-bee821267bec)) + (pin "8" (uuid 26c9374f-894b-4d32-a466-0b5df60ddc1a)) + (pin "9" (uuid bc690114-a499-4157-9fae-62a5219c486e)) + (pin "10" (uuid db4c3d2a-7396-4754-a5ec-7557e47ad215)) + (pin "11" (uuid ce0beaba-e74b-405d-b724-a019434cabea)) + (pin "12" (uuid 0d343bc5-f8bc-4447-8779-5cf4ce653f91)) + (pin "13" (uuid 1ef054aa-eedf-4b5a-8a08-12282eda8341)) + (pin "14" (uuid 13ba457a-b30f-4c9d-97f7-0f5a3f9563ce)) + (pin "15" (uuid bd751950-7f92-496b-a656-062f6f9f6fa7)) + (pin "16" (uuid 4a7393f2-3059-49f2-a735-f365e1290577)) + (pin "17" (uuid 1a221f0c-cde7-46f5-8dee-caa673ed6f61)) + (pin "18" (uuid 6d862495-1b57-4b23-9712-ed8f1f6afd2f)) + (pin "19" (uuid 13f63493-03c2-40e8-9d6f-78f5b71d8d6f)) + (pin "20" (uuid 969fa541-9e59-40c4-a4d3-c84b88e7a40a)) + (pin "21" (uuid 5f2c67a6-79c9-406a-95b3-7dd817fbd72a)) + (pin "22" (uuid a217b30f-ce17-4d80-b88a-fd5e4edc73b1)) + (pin "23" (uuid d899e412-3462-466b-945e-e5c1bb0e3875)) + (pin "24" (uuid fe4495fd-1707-4200-a797-71abc7d3574f)) + (pin "25" (uuid 62af908c-bf81-49b9-9464-f41a8f4779d9)) + (pin "26" (uuid 73d2a186-0671-4d17-8124-9cdcb8744ca5)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at -195.58 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0d9ea947-46a0-46f6-a665-b408548d4e9a) + (property "Reference" "U14" (id 0) (at -195.58 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at -195.58 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -195.58 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -195.58 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8fbdb467-2962-4828-a99a-a1a1c9acfc59)) + (pin "2" (uuid 0f21bf9c-9235-4277-b88b-da542adc0206)) + (pin "3" (uuid bb5061b5-e92c-40bc-84b1-908509037779)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -389.89 166.37 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 108da92b-d42f-43a9-9f08-1596bdeccec5) + (property "Reference" "U1" (id 0) (at -389.255 161.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -389.255 163.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -389.89 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -389.89 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid edf9caa4-8d7a-4628-ab4e-95ccf3652cd2)) + (pin "2" (uuid 9cdab0f3-f68c-4a6d-a2ff-540311a77516)) + (pin "3" (uuid 1ad42ec8-cd70-426e-b859-e8e7bc3a2402)) + (pin "4" (uuid 45fe3179-5e10-433a-a46f-fc6d9165fb50)) + (pin "5" (uuid 1a5dea17-d24e-41ba-8137-d9f809a9f5ee)) + (pin "6" (uuid eb8e9156-e000-4641-a0dd-18951a6f43cb)) + (pin "7" (uuid 21032f57-340f-4a51-a0ed-68813309f413)) + (pin "8" (uuid 6e3bd8b9-de25-4ac9-adbc-01d370ad8934)) + (pin "9" (uuid 849414fa-9752-48d8-bcec-1665f3801706)) + (pin "10" (uuid 02ec2172-9f99-4b3d-a174-5e6903750cdc)) + (pin "11" (uuid 2a546904-609c-4d0e-9570-8e478e3796bf)) + (pin "12" (uuid 5ba1546e-5de2-4730-ae38-2946c2844b19)) + (pin "13" (uuid a952c00e-9be5-4538-89ca-e480abd6d13a)) + (pin "14" (uuid 866bea2e-756d-4d4b-ac4e-2d5ef4a4e920)) + (pin "15" (uuid 01654039-f5f7-4452-91d4-ca1ccddb296e)) + (pin "16" (uuid f7832c31-3785-4ef4-a888-0244a82c5710)) + (pin "17" (uuid d127ec6c-62ed-4ed4-89db-18768f0a38e7)) + (pin "18" (uuid 3f311206-d5ac-45e2-b5cc-9cd7ef6df28b)) + (pin "19" (uuid 1f294293-8687-4874-994f-965f6de11d13)) + (pin "20" (uuid 92fbd6ff-fc20-47a1-a3b3-5c0050b80d3f)) + (pin "21" (uuid 6da582e0-3618-4a93-a996-ad64e9487a24)) + (pin "22" (uuid 755483e1-a247-4528-b92a-100d7365df69)) + (pin "23" (uuid 681aaf57-7aed-4462-b9a5-ab8c4f6a10bb)) + (pin "24" (uuid eff08f11-15b1-4a39-95d1-b67a5b7ba4e4)) + (pin "25" (uuid 36de8614-0ba9-4924-9c6e-b1f7ac67d8cb)) + (pin "26" (uuid c10a0b4d-80a2-4704-9ce0-ffe1646dc0f3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -241.3 163.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15fed1b3-6603-4815-879d-8c35f542ef29) + (property "Reference" "U11" (id 0) (at -241.3 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -241.3 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -240.03 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -240.03 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 489c23b4-2ff9-4908-8b3a-af94c3eece07)) + (pin "2" (uuid f965be19-4bda-4a28-a3c2-d0202bc88936)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at -195.58 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 21fa0d38-7373-4c19-b169-3a58f8001325) + (property "Reference" "U15" (id 0) (at -195.58 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at -195.58 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -195.58 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -195.58 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f03a6bc-51df-4b5e-b2dc-87caa91c1ec5)) + (pin "2" (uuid cc6f6e80-f1ff-4214-a0ca-27156799b3a1)) + (pin "3" (uuid 4f27574d-5746-4a88-a6f1-3cbf0c0f8492)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -339.09 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 234ce2dd-61cf-4862-bfb0-8753bfd542fd) + (property "Reference" "U8" (id 0) (at -339.09 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -339.09 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -337.82 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -337.82 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53e87f80-3148-4dd4-a1f9-2e40925b7d13)) + (pin "2" (uuid c9658759-9c1b-43b1-9196-8f19569cb91b)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at -195.58 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3074bc65-7f32-4074-8ae8-b1db4082d524) + (property "Reference" "U12" (id 0) (at -195.58 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at -195.58 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -195.58 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -195.58 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7c54c510-be62-4edb-a329-7bd1b9ad43af)) + (pin "2" (uuid 7b0a4e9e-7d25-45f6-be4e-fc5e57b03297)) + (pin "3" (uuid c0470032-5217-4b48-b912-004dca135bc4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -389.89 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 358337e3-4877-492b-b721-b56c21181b73) + (property "Reference" "U1" (id 0) (at -389.255 50.8 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -389.255 53.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -389.89 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -389.89 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c44768ea-dcdd-4f60-8111-f6d8baf1cbb3)) + (pin "2" (uuid 67bd095c-7026-42b1-a7cc-01ce19d43697)) + (pin "3" (uuid f3a463a0-b652-438f-bcf5-8a1e11e81590)) + (pin "4" (uuid f96e11af-c1dc-4851-a6f9-2e1836b29fdb)) + (pin "5" (uuid 032cea03-cc0a-4e6f-8b62-fa8a6d4e27ab)) + (pin "6" (uuid 6bb15681-d67b-4d61-87cb-fcd50059ff62)) + (pin "7" (uuid b7070ec5-c64f-4f37-9caa-9d128644ae37)) + (pin "8" (uuid da2fe5a0-bb3e-47d2-9dc4-c1a2ec1f2364)) + (pin "9" (uuid 760467de-03b9-4bd9-b45e-89c102ed9d51)) + (pin "10" (uuid 4a3d0973-01a6-4a0a-9615-4bbfdd80dbb0)) + (pin "11" (uuid 86abdd15-deb3-4f8d-8447-34f24eba6e44)) + (pin "12" (uuid 0a506cb6-7bfc-4688-bd77-9eda0e924a3c)) + (pin "13" (uuid 223463a4-c1af-464f-8ab6-36819b0c1e4c)) + (pin "14" (uuid fe42bb9b-f9b0-4577-ae0a-9d6b895cb5e2)) + (pin "15" (uuid 6030b2bd-51d7-4d44-a1c4-864fe957e761)) + (pin "16" (uuid 55ec028a-4da8-42af-bcc5-47fde4cf2321)) + (pin "17" (uuid 388f354b-d4e3-4afc-900c-d544064e5f43)) + (pin "18" (uuid 9c3c4a10-ad0e-4014-8c34-29ab551e2f92)) + (pin "19" (uuid b91d716c-1577-4a49-9643-63db80de8e0e)) + (pin "20" (uuid de2fa5f2-18cf-45ec-919c-202ffa0339db)) + (pin "21" (uuid 1a297f88-0192-4f0f-81bd-23b7cd02a4b4)) + (pin "22" (uuid 149234f8-4ebf-4137-acae-2ef412308175)) + (pin "23" (uuid 6e8817f5-8da9-454b-8a81-70b66fafc2e6)) + (pin "24" (uuid 883291dc-6099-4ebe-9d72-24e931f0cf27)) + (pin "25" (uuid 463b1fde-dbc6-4eee-addc-d664244da1f1)) + (pin "26" (uuid 88eaa828-034d-4c48-90e1-34f7ce5d4eeb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -175.26 119.38 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38c6b90a-3b15-418c-95a9-02aaf5a6ca4b) + (property "Reference" "U1" (id 0) (at -171.45 118.745 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at -171.45 121.285 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at -175.26 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -175.26 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b03aa93-aed6-4c54-be73-88ffd6476527)) + (pin "2" (uuid 79b778e2-ef5f-49e2-8926-9416eefedc98)) + (pin "3" (uuid 648a7212-2d82-44e1-a1eb-4a84eb4e23bb)) + (pin "4" (uuid f36f6204-0114-48db-b68d-e20b7b50b92c)) + (pin "5" (uuid 695e6e56-2ee4-4205-96ad-839d3127d139)) + (pin "6" (uuid 6f795d18-b21c-403d-b1f1-2624e5cd660f)) + (pin "7" (uuid 4f6a48a2-6c8f-4306-9127-cddde8f5656a)) + (pin "8" (uuid a5f83f74-2717-46aa-b27e-60cdebcbf1a8)) + (pin "9" (uuid 067cbb2a-e522-4f1f-b221-d97f69d95eec)) + (pin "10" (uuid a2cbee6f-1cfa-40ad-9086-c885d33de2c2)) + (pin "11" (uuid e0553158-9b9b-49f8-855f-7c68b2fef1d5)) + (pin "12" (uuid 5e6369b6-6f9b-4b8b-b0bd-5347db88997e)) + (pin "13" (uuid 5c747519-1648-4694-9647-d16b595b9e60)) + (pin "14" (uuid 7a0be9a0-696f-4288-b65a-94036edaa6d5)) + (pin "15" (uuid 32d502ef-cc37-45c6-bf2f-a48be4a522e8)) + (pin "16" (uuid 353e96d6-f12e-4ba2-ae6c-21d5a8c8695a)) + (pin "17" (uuid d9db47ce-530e-4518-8ce0-cda2272eeab5)) + (pin "18" (uuid d929a481-c07a-4225-89d5-72e6171538f4)) + (pin "19" (uuid d65e60c4-a4cf-497a-b132-0a28138b8e0a)) + (pin "20" (uuid 144a1b8e-8a5e-4dd4-a16e-598e3475491e)) + (pin "21" (uuid 34903e38-51b0-40fb-9202-260b5fcbb140)) + (pin "22" (uuid 5746fa8e-26ca-474f-86e7-0febe2adbc9e)) + (pin "23" (uuid 3af1e56f-0f3c-4459-a842-8e2d0ae56e21)) + (pin "24" (uuid 85d72891-7313-4785-9345-276e13cc4223)) + (pin "25" (uuid 8bed4df4-9ec9-4f84-b8c9-a04855a437ed)) + (pin "26" (uuid 716cfc95-8090-469e-8145-81b3c1af3796)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -339.09 71.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 39091fef-49e2-437b-92a0-714d96faa50e) + (property "Reference" "U9" (id 0) (at -339.09 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -339.09 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -337.82 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -337.82 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7224bfe-999c-48ce-a793-17dce6eed4fe)) + (pin "2" (uuid 3ad05b8a-7a71-4dbb-9a80-4bcb0f3d0b71)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -175.26 72.39 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3990d38b-302a-4c23-8883-46b8b12b2891) + (property "Reference" "U1" (id 0) (at -171.45 71.755 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at -171.45 74.295 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at -175.26 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -175.26 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8175a58a-cb82-4956-a80c-027b4317fe03)) + (pin "2" (uuid ff177f6a-73ac-4489-b1fd-c6249ad4b192)) + (pin "3" (uuid c11b8403-75e0-4f0d-9b30-d181fc85ab6a)) + (pin "4" (uuid cbb02e8f-aedc-4fd1-8412-a5bf6cec253c)) + (pin "5" (uuid e3438f29-2139-4085-aaf5-c8d834af11f5)) + (pin "6" (uuid a80f3aaa-94b5-48b3-9575-02a82f3e5a0c)) + (pin "7" (uuid 6462a497-f065-4283-b34a-9c65439389c7)) + (pin "8" (uuid 18e522a2-377a-4cfb-8e18-8dffc2a80731)) + (pin "9" (uuid 00abca36-e56f-4638-a9c5-f7685d087a81)) + (pin "10" (uuid 3c5aa50b-6705-4aa9-bb8a-f8ef8e934ead)) + (pin "11" (uuid fc483513-4fb6-49b5-a7b7-e9b9be78d7d5)) + (pin "12" (uuid 2ce3bf1e-8756-4c6d-a563-fde146ecf23c)) + (pin "13" (uuid f05a4c58-b8ee-4e8e-af94-e74e0c1e0621)) + (pin "14" (uuid 120c0c08-1b8c-4f1a-826a-453290785404)) + (pin "15" (uuid 32fce55f-42d5-487d-abcb-48a15413ec12)) + (pin "16" (uuid a3f700a3-ac81-416b-ae0d-7d7436116fd0)) + (pin "17" (uuid 5a1f843a-f293-46ed-9b27-9168d360db63)) + (pin "18" (uuid 2c23bdfa-ef41-429b-885c-06f6bb9e6356)) + (pin "19" (uuid 83cdb7a5-e94f-41b0-b665-a1fb331514ce)) + (pin "20" (uuid 77c22fa2-b736-4335-a267-6792866879f9)) + (pin "21" (uuid bfba4571-76db-489e-95fe-834deb6dd65e)) + (pin "22" (uuid 5ebad524-3a9d-4b36-9a58-af20ec2ffa23)) + (pin "23" (uuid ca2e3aad-28f3-49e4-99d4-30f0afc17d03)) + (pin "24" (uuid db096527-5d4a-47ee-865f-4cf6ccb844b8)) + (pin "25" (uuid f715cbc0-e40e-4cd6-975e-1edd7edef27b)) + (pin "26" (uuid 6d74c3f6-bf5f-45d3-bc36-99a56855f2bb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -389.89 182.88 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3abb65ad-3b3f-4819-b3e9-cc9181580df5) + (property "Reference" "U1" (id 0) (at -389.255 177.8 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -389.255 180.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -389.89 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -389.89 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6ef787e8-d10e-4c0d-b983-4e6617f6f719)) + (pin "2" (uuid 6edde102-cb9f-45c3-a42a-f71720f2fc38)) + (pin "3" (uuid 3ea55c22-c5ca-4721-807b-de81a38eddbb)) + (pin "4" (uuid 56344485-e290-4af3-b675-666318e5b7b3)) + (pin "5" (uuid bd9811c5-63dd-4b93-b965-a091e331ac0c)) + (pin "6" (uuid 912543a5-ff38-402e-aa87-e03bdeae1eeb)) + (pin "7" (uuid 7f035b81-a1e9-4b25-9511-b47d6d3b11dc)) + (pin "8" (uuid 8ba16a26-2a6d-4f6f-adff-79531a175880)) + (pin "9" (uuid 04421d33-068f-4363-a200-8d0e45af3d7f)) + (pin "10" (uuid 505d6f63-017d-40f4-a055-0728691b7787)) + (pin "11" (uuid d8c7dc1a-ff9e-468c-a3c3-6c12468fdd8f)) + (pin "12" (uuid c71014b1-b6d9-42e8-b643-4ecacf547f3c)) + (pin "13" (uuid 54e9dd72-e99c-4d65-95e6-75a19fec06cf)) + (pin "14" (uuid 256480f3-40fc-4714-a881-92f4703c6a46)) + (pin "15" (uuid 78b50503-20ea-4b21-8503-0e5340901c87)) + (pin "16" (uuid 6e7084b5-c94c-4ba0-b534-7f2cde2b90db)) + (pin "17" (uuid a5927cfb-834c-4ad5-895f-3e2d6287d3b0)) + (pin "18" (uuid 5bd7cce1-f4f3-4f30-8dca-18cc048b6a84)) + (pin "19" (uuid 07cfaeb0-a5a0-45d0-b524-0145666bdad8)) + (pin "20" (uuid c13fdd2b-26b4-44da-aac7-962cae7ba71f)) + (pin "21" (uuid 22c43b40-6a30-49f0-b5ea-43f9c874e1d5)) + (pin "22" (uuid 44b10e7e-2281-43fd-9669-69feda3de01d)) + (pin "23" (uuid 906902d9-2b06-4254-b063-5f67671b81a5)) + (pin "24" (uuid 6d9f6ab6-4b8d-402f-bacf-1c4104acf119)) + (pin "25" (uuid e0d1970a-891b-437d-8c0d-00f647c60025)) + (pin "26" (uuid d11cd965-fd9a-426e-b416-10597a36e4d6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -365.76 166.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3d570391-90a7-4f85-8113-807fe4f2d361) + (property "Reference" "U6" (id 0) (at -365.76 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -365.76 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -364.49 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -364.49 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 82ca5bca-af35-447e-b5bd-eb3984170872)) + (pin "2" (uuid 0055e384-0e52-4d81-850a-4135ba943868)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at -274.32 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4c56aa00-457e-4f3a-aed7-df0ae82bb087) + (property "Reference" "X5" (id 0) (at -272.312 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at -272.312 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -274.32 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -274.32 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6a4dd654-c048-434a-bd07-d507823d5801)) + (pin "2" (uuid ba7f1e55-ac3f-472a-b53c-eca21a9d2576)) + (pin "3" (uuid 02e188b9-9902-467f-97ef-83e4b7fec498)) + (pin "4" (uuid 3f5eb77f-f214-4e59-83fe-0997b907a2ea)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -367.03 71.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ab303c7-37c6-495c-bb32-568fbe06e340) + (property "Reference" "U3" (id 0) (at -367.03 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -367.03 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -365.76 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -365.76 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2f0f995c-6fd5-4ac7-88c7-ab1bfbf94bf4)) + (pin "2" (uuid f46e2f85-fba9-432f-bf33-53953755790d)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at -274.32 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6dc0fda6-7144-4d44-a9d8-bcdd470086e6) + (property "Reference" "X6" (id 0) (at -272.312 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at -272.312 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -274.32 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -274.32 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f4083e42-5670-46f3-91e9-fdeef95efb52)) + (pin "2" (uuid e90adf53-4d8c-4c65-90d0-c3b63037d726)) + (pin "3" (uuid 1cee5cbf-2186-4936-8a8e-a9d96b291bc9)) + (pin "4" (uuid 70fb9973-820c-4c05-95f8-898992440ac0)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -367.03 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7057ca75-37a7-4321-9fbb-a988ab5f149b) + (property "Reference" "U2" (id 0) (at -367.03 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -367.03 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -365.76 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -365.76 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1f1a3528-d4cd-40d3-8277-0d79376dc47d)) + (pin "2" (uuid ddb90a57-5728-434d-bf57-9a2cf8d6a75f)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at -274.32 30.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 72183ee4-7ce5-4233-8cb9-39e4faf939e6) + (property "Reference" "X2" (id 0) (at -272.312 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at -272.312 24.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -274.32 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -274.32 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 301ee469-b0d0-4a77-ba97-dc0f9200bd8a)) + (pin "2" (uuid bb51d9a5-299e-445c-8060-bab9b6a914ae)) + (pin "3" (uuid 7374dd6d-8389-4987-91f3-4585d5105d4c)) + (pin "4" (uuid 0920b24b-9842-4698-bf7f-0941d289545c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -175.26 134.62 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 75a83265-8130-4699-b92e-936a43b0031e) + (property "Reference" "U1" (id 0) (at -171.45 133.985 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at -171.45 136.525 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at -175.26 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -175.26 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 148cbed7-99e8-4f8f-a8f2-5a177f256cf4)) + (pin "2" (uuid c4043df5-b589-4d47-b543-5b1d12f228e5)) + (pin "3" (uuid 27519652-bdd7-4ef7-9eb3-46ce4bcbceca)) + (pin "4" (uuid 47525867-40da-48a5-9444-d842007acf29)) + (pin "5" (uuid ba86f98b-b5ad-499e-b6ac-182da954dedb)) + (pin "6" (uuid 080e9082-ddb3-4768-a6fc-5ae0a3c1f05e)) + (pin "7" (uuid b2a6cd6b-1577-4220-a97f-7a1d17779321)) + (pin "8" (uuid babdfac6-9c1e-4955-b054-89eb2608c33a)) + (pin "9" (uuid 2284cb89-ffaf-4b6d-9ab2-185bfe9fb3f7)) + (pin "10" (uuid f0a952c6-209e-4f40-bdbd-9414d08a356e)) + (pin "11" (uuid 8f4f1b4e-ad20-49d9-89fa-0c99fec40219)) + (pin "12" (uuid 3cfd2f79-eb55-402b-b12b-13c327a49cca)) + (pin "13" (uuid 43a00e46-9d48-4021-8499-3343aefc1556)) + (pin "14" (uuid a21179f8-92ad-4204-8d4f-18a4e9573f90)) + (pin "15" (uuid 08cf8d9b-ed4f-45e3-8eac-5ec7ab319e6b)) + (pin "16" (uuid 087e4d02-d42f-43e3-8116-bb47bdb22d36)) + (pin "17" (uuid c7c872cd-3a28-4689-a788-9b578d81ce31)) + (pin "18" (uuid 7cf8e553-379d-4e7d-a572-0056ae63d647)) + (pin "19" (uuid 2b0bce7d-29d9-4f2d-b188-ca572c0b4f16)) + (pin "20" (uuid d39857d4-2144-433f-850a-a4e182536439)) + (pin "21" (uuid 25b2d7b7-afb5-4d11-802a-f21b2b7b2292)) + (pin "22" (uuid 09515107-5e45-4ff7-8a8c-86457aefb798)) + (pin "23" (uuid 54838bab-e1bc-4766-838b-142f5a70070e)) + (pin "24" (uuid 1bde0580-6e2e-4f0b-aa09-3ce226c0e606)) + (pin "25" (uuid e847da71-187e-4d44-a19d-d5b7eef7385f)) + (pin "26" (uuid 899084fe-6949-423d-b078-9ad8a92adba4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -365.76 182.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8078de83-5044-4842-b69b-d2fe84eafa2d) + (property "Reference" "U7" (id 0) (at -365.76 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -365.76 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -364.49 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -364.49 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5e58bc50-33a6-49a7-bb9b-984966db1f68)) + (pin "2" (uuid 130096a6-bcda-4c90-b3dc-7345688ab453)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at -195.58 105.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 81b39720-233a-4909-8003-75c4d7619ad2) + (property "Reference" "U16" (id 0) (at -195.58 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at -195.58 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -195.58 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -195.58 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 23b7f968-8474-4419-9b1b-222a2acaf038)) + (pin "2" (uuid d1edb49b-9931-432f-9de3-3d5bfd1f90b1)) + (pin "3" (uuid 6c6d5b56-ac73-4dc2-b972-0a561b8de0bd)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at -274.32 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8e16e3dc-3ba3-4e92-aceb-156559d1ddf0) + (property "Reference" "X8" (id 0) (at -272.312 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at -272.312 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -274.32 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -274.32 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid af4f55b6-b035-42c9-ade1-c8997e26a9c3)) + (pin "2" (uuid 72dc665d-5f39-4f03-937e-628ec08fcb8c)) + (pin "3" (uuid 135d0676-99f5-4fae-bc32-a9ca2644174c)) + (pin "4" (uuid e73c63f3-2ec8-4ba1-99bc-9c429562bcec)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -175.26 38.1 180) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f387cd4-6ce1-4a60-af95-9435d0fd39a8) + (property "Reference" "U1" (id 0) (at -171.45 37.465 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at -171.45 40.005 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at -175.26 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -175.26 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1fe83046-072c-4a3f-943a-a9a89e942463)) + (pin "2" (uuid f771461d-6b2b-448b-842b-6bea5dc22742)) + (pin "3" (uuid 0af75d02-df6e-4513-9617-65bba39e8f4f)) + (pin "4" (uuid 926f1848-c5b8-4988-b149-d6484697fc8e)) + (pin "5" (uuid 8081653c-2213-4351-87bb-d7fc3ae03c9f)) + (pin "6" (uuid be696781-0743-44e9-8194-751965924559)) + (pin "7" (uuid 5edc1ad8-6bf3-4a33-bda8-644df22bf6c6)) + (pin "8" (uuid 4af7b428-61b1-4345-a3e5-9c9781e719f1)) + (pin "9" (uuid a18f0b0b-bdc2-4489-8a27-2563a9d1ae97)) + (pin "10" (uuid 7f034e65-b7bd-4037-a1a6-2d8b20533e2c)) + (pin "11" (uuid e28730eb-3914-4ed7-aabf-9fd8eb72a3ed)) + (pin "12" (uuid 036f4425-7841-40c3-be1e-67a72bba1f4c)) + (pin "13" (uuid b4ea419b-80d9-4600-8003-4853e2aa5ef8)) + (pin "14" (uuid 3818be13-9d4b-41d5-a471-56dc9821a365)) + (pin "15" (uuid 6db5ca11-9006-4717-a0f3-32864b6a80a6)) + (pin "16" (uuid 477a47ae-29d6-42c4-bd52-c3d798959a06)) + (pin "17" (uuid 6d73a33c-3c42-4c57-a664-29b563542db8)) + (pin "18" (uuid 8eb777f4-333f-4c8f-b587-6b4a45a4882b)) + (pin "19" (uuid 609a5e4d-06f7-4bd9-bfd4-a84c9bf3f130)) + (pin "20" (uuid 54c39de4-5576-4218-b822-79df7ea47a0c)) + (pin "21" (uuid d4baeaac-6e04-4305-9cb5-f8c8f8524b7e)) + (pin "22" (uuid 6553b690-74d9-46f8-a91d-a64d0de4fb50)) + (pin "23" (uuid d1e279e5-e33f-4c41-8cb8-48a40f802061)) + (pin "24" (uuid 87acce4b-65b1-4ecf-a54b-61a87b9c1042)) + (pin "25" (uuid 8354293a-b7f6-4ea5-b04f-38e7cff2f4ea)) + (pin "26" (uuid 1e34c97f-42aa-401c-962d-5623a0832085)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -175.26 88.9 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 90ec69a4-f881-4c33-8570-b832560d07a4) + (property "Reference" "U1" (id 0) (at -171.45 88.265 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at -171.45 90.805 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at -175.26 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -175.26 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4b72c2f3-152b-46ba-9cc5-db1559963856)) + (pin "2" (uuid 840ac645-8df6-4ee3-8ae0-61efc5cdc3fc)) + (pin "3" (uuid e38e6fdd-851c-4fe2-9b76-dff542c1e3ba)) + (pin "4" (uuid 53249ed6-380f-40f7-9933-978cd0896665)) + (pin "5" (uuid 5fb7fc3f-8679-434a-80e3-05394a3756c6)) + (pin "6" (uuid de5d22d4-568a-48fb-ac37-0fa6d85994b3)) + (pin "7" (uuid ce29f3d4-fd28-4d69-8695-8d1ca8e1c530)) + (pin "8" (uuid a22eaad9-55c4-4d5d-b132-25e1692536ee)) + (pin "9" (uuid d16a8b7d-e0bc-405b-97d8-c1996731046a)) + (pin "10" (uuid dd1aff27-e6a7-448e-ae45-815adb3b37fe)) + (pin "11" (uuid add0e4ab-2a07-4085-a8e1-1c464c1df676)) + (pin "12" (uuid 0081d1cd-d690-4da5-9e64-4827552506bb)) + (pin "13" (uuid 1aa870b7-b8a6-4d78-9a93-da14f46bb24d)) + (pin "14" (uuid 21ae20d4-0724-4166-8caa-b0e4dd5fdc54)) + (pin "15" (uuid 0fa7378f-f718-4a99-9724-6c467f1f5009)) + (pin "16" (uuid 2c522e88-1e07-42bd-88b0-395fe38dbe2c)) + (pin "17" (uuid cf899af1-91de-4f7a-b512-1f4175286138)) + (pin "18" (uuid 8b124490-1f41-4b95-ae29-08fd75c9cbb1)) + (pin "19" (uuid 6aad66b1-ecb2-4263-b3f9-18411d847bb1)) + (pin "20" (uuid 0a1edf55-4720-46d7-a1f6-20f6f7f03d05)) + (pin "21" (uuid 55e508e5-62f2-40ce-a06d-30948bc0ca2a)) + (pin "22" (uuid f02d90b3-ad90-4fcc-803e-a75c823cf6ad)) + (pin "23" (uuid 32d2a978-2a10-439e-b727-e4298b4ccebd)) + (pin "24" (uuid 63265ed9-de86-41f3-9ad7-f5c422070d3d)) + (pin "25" (uuid fc74a593-d3a8-4743-b6f1-1367d2e6c65e)) + (pin "26" (uuid 80fcabc9-5eb9-4f02-bf6d-f951ac32a3bf)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -173.99 20.32 180) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 93e48f39-da4a-4b1c-8d1e-88ea76c9d3bc) + (property "Reference" "U1" (id 0) (at -170.18 19.685 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at -170.18 22.225 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at -173.99 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -173.99 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 62e7eb58-5e9f-4b52-ae20-34fee2ccbb95)) + (pin "2" (uuid f1b2f0b6-3b81-49db-8619-be72a359288a)) + (pin "3" (uuid 65638624-2eb8-4bd1-81d6-cdc02fd5c9b6)) + (pin "4" (uuid 0ec7e28c-0daf-4a98-b9bb-44abddbe7aca)) + (pin "5" (uuid b74ea531-0636-44d0-8e6a-5ac50c9278d9)) + (pin "6" (uuid 06db0a91-2b5d-4ead-b16c-51ec982d6f7f)) + (pin "7" (uuid 373e308d-70b5-4428-9cf4-8f80fc21fd7b)) + (pin "8" (uuid b971af0e-3b74-419e-8b12-c959df150699)) + (pin "9" (uuid 6496e41d-d9a9-4a7c-a340-3a64bccdb58d)) + (pin "10" (uuid e1c3571a-b6ac-4423-a82e-fdba537b368e)) + (pin "11" (uuid 25ef9c0b-1ce8-4687-af72-d85254fddc7c)) + (pin "12" (uuid 026d7c29-81fb-4742-a4fa-a45ab01cc7d3)) + (pin "13" (uuid f00eb577-7315-4ea3-87e5-baec48a7d884)) + (pin "14" (uuid 5d1161c1-84a3-42e9-ab09-4a0e61b8a89d)) + (pin "15" (uuid 602bf629-02c3-4c02-9802-ea5012e5b0fd)) + (pin "16" (uuid 5bc92ff6-ff36-4b7e-874b-7c4c2b8289d4)) + (pin "17" (uuid 1a6caeac-7dd7-44d2-bf9c-524950528525)) + (pin "18" (uuid 823e0514-7a43-406d-b2ae-7613e35e9d15)) + (pin "19" (uuid e6626ff3-aa95-4f8c-b7fa-3e9fbb8c9140)) + (pin "20" (uuid 9ca78143-7bd1-4e75-adc5-051b10e85f49)) + (pin "21" (uuid d5ee2169-6cf0-4c48-b146-7eb3950caed2)) + (pin "22" (uuid 07ea8c3a-5dbd-490b-8203-98d71a1150c2)) + (pin "23" (uuid 5ad86d07-1b72-49f6-9d44-5d8652be593f)) + (pin "24" (uuid 93aed7ff-9e50-47a1-aaf4-1b4c15dad3bf)) + (pin "25" (uuid 9c829cc9-58ba-417b-bce4-ee40256a7274)) + (pin "26" (uuid 923fbe13-97ea-41c5-ad94-0eee23f56024)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at -195.58 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a2b4193-4610-488f-bfb8-978890900167) + (property "Reference" "U18" (id 0) (at -195.58 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at -195.58 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -195.58 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -195.58 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f70352e9-5119-4198-a272-71902c2a6119)) + (pin "2" (uuid 6904cb98-4daf-4ab5-af41-5e8c4d1fffd8)) + (pin "3" (uuid 0475e6a3-d955-47a9-a188-bc91cbbdebcf)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -339.09 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1c77b30-3b74-487b-a86f-b3dfd2132e25) + (property "Reference" "U10" (id 0) (at -339.09 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -339.09 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -337.82 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -337.82 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7fd232db-fd5b-431b-a4fe-3bd97f1ceffc)) + (pin "2" (uuid 184c0ccc-0dd1-410c-a781-bab8b032c56c)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at -274.32 143.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a3ad0e18-931c-43c2-895d-6825864c4bcc) + (property "Reference" "X9" (id 0) (at -272.312 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at -272.312 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -274.32 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -274.32 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 51038623-86dc-43c3-8d71-2135937fc30b)) + (pin "2" (uuid ae106cd9-2fee-4a91-a171-dd153ed9d7a2)) + (pin "3" (uuid a44f7b4b-0500-4382-9706-09875b7b9387)) + (pin "4" (uuid 4e8e171a-422a-4f8b-9c8e-9934da81aa42)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -389.89 71.12 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid af5d885e-c754-4fde-aa97-623a1df49e76) + (property "Reference" "U1" (id 0) (at -389.255 66.04 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -389.255 68.58 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -389.89 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -389.89 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c4f331e-51a6-4c18-8652-3b8ff59a569c)) + (pin "2" (uuid 505d81be-685b-4983-98f7-1448413b4cc1)) + (pin "3" (uuid 7ed447e1-adfa-4f62-a0a2-3aad8240164c)) + (pin "4" (uuid fdc5c5e1-2c6a-4b9d-95a3-f2a97420d7da)) + (pin "5" (uuid 8a80cbe4-0491-41b7-b9b2-ba0cccd6a1ac)) + (pin "6" (uuid e1dac1a2-f355-4a8e-bd95-f375954e12a1)) + (pin "7" (uuid 2a2a6ca2-b96b-4f61-966f-46c0302fb98c)) + (pin "8" (uuid 688e4796-9596-401e-b3b7-6d4c7655de2d)) + (pin "9" (uuid a6b8d35a-b167-4270-8f13-077bcbe7e429)) + (pin "10" (uuid 2e177304-dba3-4189-b878-f5addd3db98d)) + (pin "11" (uuid 49f6a618-7c12-477f-8326-b99acad0f86b)) + (pin "12" (uuid 27ba54ae-1586-4e9b-b0a2-c46ca2eef8f4)) + (pin "13" (uuid db0594af-b6f9-4693-a398-b485f1868531)) + (pin "14" (uuid e522307c-b37f-4f90-b903-1125e316b785)) + (pin "15" (uuid 5a473691-e041-47d4-a279-272a5dd069b6)) + (pin "16" (uuid 742c6869-d111-4388-8da0-7e4599d05359)) + (pin "17" (uuid 14a63e6d-ddbf-4ee4-bfd8-a81ac2a31966)) + (pin "18" (uuid c0222f20-f989-4e1e-8095-d906eb27f42a)) + (pin "19" (uuid f3281f2f-caa9-40bd-896b-21272061f1e6)) + (pin "20" (uuid 8df00f02-a91e-4765-b61b-a4450ef8569f)) + (pin "21" (uuid 5e1c30ab-6e79-464a-b435-23a8d4d9578f)) + (pin "22" (uuid a762f040-e02f-44cf-a8cd-7469692004a7)) + (pin "23" (uuid bdbdb9a3-370e-4138-9b05-6d45fdf4c55a)) + (pin "24" (uuid 5f902598-9155-4873-ab88-0e10690ad7c3)) + (pin "25" (uuid 235315ca-bdb1-44ce-95f9-22fb60e13fe6)) + (pin "26" (uuid da3e3adc-3e99-43ac-b5da-210d4a5814a4)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at -274.32 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b20690a5-2788-43c5-af82-3534da3f24de) + (property "Reference" "X3" (id 0) (at -272.312 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at -272.312 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -274.32 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -274.32 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1025f75f-4c61-4399-a0fe-9142d03531d9)) + (pin "2" (uuid 0e263170-13d1-4fe8-a137-266c249ed0c9)) + (pin "3" (uuid 60429199-6d19-4d0a-8e5b-c5388a14f9e4)) + (pin "4" (uuid baf5e096-c1db-41ac-82a9-9ca6e9fe9116)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at -274.32 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b39708f5-8462-40fb-981b-d28ce610b790) + (property "Reference" "X7" (id 0) (at -272.312 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at -272.312 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -274.32 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -274.32 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid deeb6271-bcfb-4e11-82a5-d50aa00994d0)) + (pin "2" (uuid a2c63e77-4146-4dae-b37e-9a0bd46c02e0)) + (pin "3" (uuid a050fedd-c148-4c78-9328-5901dc95431f)) + (pin "4" (uuid 5a1677b5-fdc8-4b4e-a19f-abc66eaa9184)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at -195.58 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b40342ba-f3ec-4be4-9a27-567c2fe1714e) + (property "Reference" "U13" (id 0) (at -195.58 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at -195.58 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -195.58 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -195.58 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2a469bf8-5f12-4582-9952-d5479fc5b9fc)) + (pin "2" (uuid d9b9c417-72b3-4427-8d63-2bd7dbd5aa39)) + (pin "3" (uuid 019dd107-61a7-4aab-98cd-53f2e85cd250)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at -274.32 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba8b0da7-3cf4-4289-8deb-4498a97024ca) + (property "Reference" "X4" (id 0) (at -272.312 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at -272.312 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -274.32 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -274.32 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e3a520f-85c2-4dbb-8140-45eb18d2e499)) + (pin "2" (uuid 463da924-68f1-43f8-aa29-aa9c44695b75)) + (pin "3" (uuid ac8ebb0e-7c62-4872-908b-8c77f12609c2)) + (pin "4" (uuid 8e1ed0e6-054f-42ba-9cf7-c4ce8b705c11)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at -195.58 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid caa030ac-8838-40c1-95bf-534a96fe11ca) + (property "Reference" "U17" (id 0) (at -195.58 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at -195.58 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -195.58 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -195.58 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ca22ad8c-0932-461a-b6e2-d2a2e2a76737)) + (pin "2" (uuid 6af5218d-dee3-4862-9b57-542661ce627e)) + (pin "3" (uuid 1b16eaac-63b9-49c1-a4c7-6a699938805a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -367.03 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d6c925e4-7ea3-413c-a071-d2d3877735f4) + (property "Reference" "U4" (id 0) (at -367.03 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -367.03 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -365.76 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -365.76 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9adbf78c-b88e-420a-9f58-c80201d3cd96)) + (pin "2" (uuid 53e12f2f-0865-48e8-ae3f-de6cda4eede9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -175.26 55.88 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dae04477-1ae4-419e-9ee2-d6d8cb91a7f6) + (property "Reference" "U1" (id 0) (at -171.45 55.245 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at -171.45 57.785 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at -175.26 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -175.26 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 21f1984d-8303-4b4a-b34b-bc8d61561aeb)) + (pin "2" (uuid 66516835-dd9b-4775-a28f-e84188538cd4)) + (pin "3" (uuid b8d8711b-681c-452c-9e4a-3b0eec7a74ea)) + (pin "4" (uuid f3a7c3b0-f6aa-4571-932d-f7922fce5f18)) + (pin "5" (uuid 0757a70d-cbd2-41c3-a116-18170287cb07)) + (pin "6" (uuid 9237d737-c3db-428d-a826-4240a46511c9)) + (pin "7" (uuid db9bb0e7-55c6-4598-9ae4-fa965bc1fadf)) + (pin "8" (uuid 9f3c5966-fa4a-4fdc-ba3e-84ed6d911416)) + (pin "9" (uuid f87520e6-4a97-46e1-b0a4-8e2abed3c7a3)) + (pin "10" (uuid 76de2564-82ad-4e48-b22c-3da12aab5fcd)) + (pin "11" (uuid 3f7fe206-2a0f-444c-a92c-b05450655dfd)) + (pin "12" (uuid b8f0654f-4e4b-4271-9ec6-2987222d40e2)) + (pin "13" (uuid eedb4148-a218-4096-80db-9b4fdced1c85)) + (pin "14" (uuid d96bd95f-e2b8-4ab6-b86e-31b0ca44e17e)) + (pin "15" (uuid 7e268fa1-a2db-423f-ad2e-bd7eefb6cba3)) + (pin "16" (uuid 3d655ab8-3b50-4c5e-83fb-711f771775d0)) + (pin "17" (uuid 60d6c07f-6145-48c2-a5b3-6e5452d810a6)) + (pin "18" (uuid 62c19d04-1d7e-4c5d-be30-956a602ac7a6)) + (pin "19" (uuid 2bf8e6a7-0a15-4362-b9b2-a55c4711bbf3)) + (pin "20" (uuid 7aaa6bef-af19-4a8d-85d2-26ceb24d5736)) + (pin "21" (uuid b58d4d27-a440-4913-9bd8-34da9752fde7)) + (pin "22" (uuid 1fe93209-48f7-45db-b7dc-cf6d59915e82)) + (pin "23" (uuid 9438a80c-783f-40cc-b638-12dea9761873)) + (pin "24" (uuid dab043c0-49e6-49c1-83e9-1788475194b3)) + (pin "25" (uuid e9aa6946-f542-4d10-b51d-65209f9bc788)) + (pin "26" (uuid cbe18a69-7543-41ce-9ca4-b2d8a9fb7d3e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -389.89 85.09 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dcdaf6c6-5ddb-4d1e-94ef-84c6b59350cf) + (property "Reference" "U1" (id 0) (at -389.255 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at -389.255 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at -389.89 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -389.89 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6f5b4529-131b-4eeb-9d74-63cc22d1d843)) + (pin "2" (uuid 86b400b3-337f-4419-8cba-953a344d13ba)) + (pin "3" (uuid 20d831ef-9308-4cff-b765-7476803fc547)) + (pin "4" (uuid 60066b3c-2c93-49f2-aba5-e58dee3174e9)) + (pin "5" (uuid b7a3c049-7426-4bfc-b92b-c1c1f6f9aac7)) + (pin "6" (uuid 75f639ab-d47f-457f-aac1-ca5247ec1c5a)) + (pin "7" (uuid 3745fb89-9bee-4c3e-bba1-d6aa49dd288e)) + (pin "8" (uuid 3042ee61-c885-4e97-af4f-1aa06ee50184)) + (pin "9" (uuid ab1094d5-c512-4e13-b80a-30c2e77e1386)) + (pin "10" (uuid cb3ecae5-36c9-4262-8a7b-91091f603401)) + (pin "11" (uuid 46b874e0-2a92-4726-aca3-b24f7f946269)) + (pin "12" (uuid 42200d47-1cd2-4995-aa02-387e95db4e9a)) + (pin "13" (uuid 4a0602b5-1826-4673-811d-a921eba9fee7)) + (pin "14" (uuid 408a99f6-dc0b-43df-99eb-30434b21c1b0)) + (pin "15" (uuid c65cf70b-3d1e-4658-93a0-506b7348f7e7)) + (pin "16" (uuid 64d401dc-ac46-4628-8212-2253f6b141d4)) + (pin "17" (uuid 96984b1e-0b3e-4313-bbc7-37bf95a12f92)) + (pin "18" (uuid 3ca3e16e-d78e-4800-b73b-7ef4c9f2792f)) + (pin "19" (uuid 1475ecb1-92c8-480e-a363-b6a01607247d)) + (pin "20" (uuid 3d119145-8ffd-4cd8-bcc6-bfc3cdded256)) + (pin "21" (uuid 2653c409-8f90-4d35-9eff-66fe346891dc)) + (pin "22" (uuid 7f98c3a8-6aec-40de-9a8e-3c64b6100db7)) + (pin "23" (uuid f090c24d-e7bd-4dbe-a564-c10d68d4986c)) + (pin "24" (uuid 7062a233-7910-4c2b-93c3-dc08d35e2b77)) + (pin "25" (uuid bb894bde-e31c-4716-a5f0-32cd284f3dd0)) + (pin "26" (uuid ed339742-dc94-4bfd-a921-a4ed41e58b7a)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at -339.09 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e3e4bc4e-9e01-4f00-a0ae-8eff7658422d) + (property "Reference" "X1" (id 0) (at -337.082 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at -337.082 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -339.09 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -339.09 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 65c9f75e-0027-4420-8503-fa599e882aae)) + (pin "2" (uuid 612af877-58b5-44a3-8325-5d42fcc92917)) + (pin "3" (uuid 69f7e77a-1172-434e-9ea6-ff89e2d8cf5e)) + (pin "4" (uuid 778c5dea-d6a9-4d8b-bdfb-5c54bd1a1a43)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at -365.76 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8b959c8-55b4-4133-a0cc-063893c016c4) + (property "Reference" "U5" (id 0) (at -365.76 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at -365.76 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -364.49 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -364.49 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fbecca3d-5957-4a6b-b033-5c742689bdea)) + (pin "2" (uuid 6607c087-5b5f-42d9-a5e4-74884eb499ce)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at -175.26 152.4 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f8c60101-4e75-4a9e-9d24-779edd4fa587) + (property "Reference" "U1" (id 0) (at -171.45 151.765 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at -171.45 154.305 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at -175.26 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -175.26 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c0b3859d-80f8-42d2-a005-24635a260497)) + (pin "2" (uuid dfd34e8d-b4d0-4622-8dcf-81d1325a0b02)) + (pin "3" (uuid 43513c78-9fdb-4434-9c55-9cd99b67ee4b)) + (pin "4" (uuid 3bc579b6-3da0-419b-972a-a09537eca0e8)) + (pin "5" (uuid 183aa6bc-6bba-4160-885d-865b32de21bd)) + (pin "6" (uuid b983f8c4-e28b-4bcb-a3fb-0258baf4d6af)) + (pin "7" (uuid 55040473-61ca-4349-afc9-ec2dedea3c1f)) + (pin "8" (uuid 264d2024-be58-4f1c-b08f-9c1785b3f7ae)) + (pin "9" (uuid e60b3685-cf96-47e3-a540-29d9a72ca420)) + (pin "10" (uuid dd0d6046-9b61-411a-a9cd-cca803ec9e98)) + (pin "11" (uuid 3d7b4a57-785c-4278-9a52-1a440d30c1a4)) + (pin "12" (uuid 4dffbaa7-1aa0-4e78-8a2a-dccbd0f6a8d9)) + (pin "13" (uuid 2dae70e4-6329-4e3f-b427-5aea328c6063)) + (pin "14" (uuid fb37af45-ba7c-4850-a7c4-4601907e8e47)) + (pin "15" (uuid 1a1676fc-d1af-4cdd-b07c-7660a5900aff)) + (pin "16" (uuid d0d6d652-320a-4ce3-8e74-942dad234ce5)) + (pin "17" (uuid 90c3c7b7-316a-42a7-bcb6-21b50d9d858f)) + (pin "18" (uuid fc3a338a-77ee-4264-b419-7f332cef12e9)) + (pin "19" (uuid 36bd9d5b-fa2e-4bcc-ace7-90d8ae14eac0)) + (pin "20" (uuid dfa13b18-db82-4962-8858-f788c2227259)) + (pin "21" (uuid 00ae0715-1b52-449d-ac7e-40ff5b80faba)) + (pin "22" (uuid fb02ef8e-c718-43c1-8746-49205b84c897)) + (pin "23" (uuid d876f240-d4ed-4826-a9bb-7911a3b5d4e8)) + (pin "24" (uuid df31c67f-8079-447c-a7ae-97c586698979)) + (pin "25" (uuid 91ff5ced-2bae-48e6-aa57-905e84d7eae4)) + (pin "26" (uuid ed780aed-5be0-405d-ba9f-3929f8413896)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at -195.58 153.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fca78887-2503-4f2b-a60a-37ab61ae3325) + (property "Reference" "U19" (id 0) (at -195.58 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at -195.58 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -195.58 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -195.58 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 72997615-965f-4963-b033-442acd482b39)) + (pin "2" (uuid 725e6ffc-fbc2-4617-b3fa-97b92df22300)) + (pin "3" (uuid 7fd64542-078f-4b25-ab3e-b23d3aa39b15)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/358337e3-4877-492b-b721-b56c21181b73" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/af5d885e-c754-4fde-aa97-623a1df49e76" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/dcdaf6c6-5ddb-4d1e-94ef-84c6b59350cf" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/108da92b-d42f-43a9-9f08-1596bdeccec5" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/3abb65ad-3b3f-4819-b3e9-cc9181580df5" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/03080865-787f-4ff7-8b8a-edd7444b5a99" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/f8c60101-4e75-4a9e-9d24-779edd4fa587" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/0ba1dbe9-4bae-4429-9b37-67c200e9afe4" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/75a83265-8130-4699-b92e-936a43b0031e" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/38c6b90a-3b15-418c-95a9-02aaf5a6ca4b" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/0d06027b-bf94-48ce-ad5c-556b58be387b" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/90ec69a4-f881-4c33-8570-b832560d07a4" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/3990d38b-302a-4c23-8883-46b8b12b2891" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/dae04477-1ae4-419e-9ee2-d6d8cb91a7f6" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/8f387cd4-6ce1-4a60-af95-9435d0fd39a8" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/93e48f39-da4a-4b1c-8d1e-88ea76c9d3bc" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/7057ca75-37a7-4321-9fbb-a988ab5f149b" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5ab303c7-37c6-495c-bb32-568fbe06e340" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d6c925e4-7ea3-413c-a071-d2d3877735f4" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e8b959c8-55b4-4133-a0cc-063893c016c4" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3d570391-90a7-4f85-8113-807fe4f2d361" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/8078de83-5044-4842-b69b-d2fe84eafa2d" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/234ce2dd-61cf-4862-bfb0-8753bfd542fd" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/39091fef-49e2-437b-92a0-714d96faa50e" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a1c77b30-3b74-487b-a86f-b3dfd2132e25" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/15fed1b3-6603-4815-879d-8c35f542ef29" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3074bc65-7f32-4074-8ae8-b1db4082d524" + (reference "U12") (unit 1) (value "d_nand") (footprint "") + ) + (path "/b40342ba-f3ec-4be4-9a27-567c2fe1714e" + (reference "U13") (unit 1) (value "d_nand") (footprint "") + ) + (path "/0d9ea947-46a0-46f6-a665-b408548d4e9a" + (reference "U14") (unit 1) (value "d_nand") (footprint "") + ) + (path "/21fa0d38-7373-4c19-b169-3a58f8001325" + (reference "U15") (unit 1) (value "d_nand") (footprint "") + ) + (path "/81b39720-233a-4909-8003-75c4d7619ad2" + (reference "U16") (unit 1) (value "d_nand") (footprint "") + ) + (path "/caa030ac-8838-40c1-95bf-534a96fe11ca" + (reference "U17") (unit 1) (value "d_nand") (footprint "") + ) + (path "/9a2b4193-4610-488f-bfb8-978890900167" + (reference "U18") (unit 1) (value "d_nand") (footprint "") + ) + (path "/fca78887-2503-4f2b-a60a-37ab61ae3325" + (reference "U19") (unit 1) (value "d_nand") (footprint "") + ) + (path "/e3e4bc4e-9e01-4f00-a0ae-8eff7658422d" + (reference "X1") (unit 1) (value "3_and") (footprint "") + ) + (path "/72183ee4-7ce5-4233-8cb9-39e4faf939e6" + (reference "X2") (unit 1) (value "3_and") (footprint "") + ) + (path "/b20690a5-2788-43c5-af82-3534da3f24de" + (reference "X3") (unit 1) (value "3_and") (footprint "") + ) + (path "/ba8b0da7-3cf4-4289-8deb-4498a97024ca" + (reference "X4") (unit 1) (value "3_and") (footprint "") + ) + (path "/4c56aa00-457e-4f3a-aed7-df0ae82bb087" + (reference "X5") (unit 1) (value "3_and") (footprint "") + ) + (path "/6dc0fda6-7144-4d44-a9d8-bcdd470086e6" + (reference "X6") (unit 1) (value "3_and") (footprint "") + ) + (path "/b39708f5-8462-40fb-981b-d28ce610b790" + (reference "X7") (unit 1) (value "3_and") (footprint "") + ) + (path "/8e16e3dc-3ba3-4e92-aceb-156559d1ddf0" + (reference "X8") (unit 1) (value "3_and") (footprint "") + ) + (path "/a3ad0e18-931c-43c2-895d-6825864c4bcc" + (reference "X9") (unit 1) (value "3_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74HC138/sn74hc138.sub b/library/SubcircuitLibrary/SN74HC138/sn74hc138.sub new file mode 100644 index 000000000..832d21fba --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/sn74hc138.sub @@ -0,0 +1,88 @@ +* Subcircuit sn74hc138 +.subckt sn74hc138 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ unconnected-_u1-pad16_ +.title kicad schematic +.include 3_and.sub +* u14 net-_u14-pad1_ net-_u11-pad2_ net-_u1-pad13_ d_nand +x5 net-_u2-pad2_ net-_u3-pad2_ net-_u10-pad2_ net-_u15-pad1_ 3_and +x4 net-_u8-pad2_ net-_u3-pad2_ net-_u10-pad2_ net-_u14-pad1_ 3_and +x2 net-_u8-pad2_ net-_u9-pad2_ net-_u10-pad2_ net-_u12-pad1_ 3_and +x3 net-_u2-pad2_ net-_u9-pad2_ net-_u10-pad2_ net-_u13-pad1_ 3_and +* u13 net-_u13-pad1_ net-_u11-pad2_ net-_u1-pad14_ d_nand +* u12 net-_u12-pad1_ net-_u11-pad2_ net-_u1-pad15_ d_nand +* u16 net-_u16-pad1_ net-_u11-pad2_ net-_u1-pad11_ d_nand +* u15 net-_u15-pad1_ net-_u11-pad2_ net-_u1-pad12_ d_nand +* u17 net-_u17-pad1_ net-_u11-pad2_ net-_u1-pad10_ d_nand +* u19 net-_u19-pad1_ net-_u11-pad2_ net-_u1-pad7_ d_nand +* u18 net-_u18-pad1_ net-_u11-pad2_ net-_u1-pad9_ d_nand +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +x9 net-_u2-pad2_ net-_u3-pad2_ net-_u10-pad1_ net-_u19-pad1_ 3_and +x8 net-_u8-pad2_ net-_u3-pad2_ net-_u10-pad1_ net-_u18-pad1_ 3_and +x1 net-_u5-pad2_ net-_u6-pad2_ net-_u7-pad2_ net-_u11-pad1_ 3_and +* u5 net-_u1-pad6_ net-_u5-pad2_ d_inverter +* u6 net-_u1-pad4_ net-_u6-pad2_ d_inverter +* u7 net-_u1-pad5_ net-_u7-pad2_ d_inverter +* u4 net-_u1-pad3_ net-_u10-pad1_ d_inverter +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u9 net-_u3-pad2_ net-_u9-pad2_ d_inverter +* u8 net-_u2-pad2_ net-_u8-pad2_ d_inverter +* u3 net-_u1-pad2_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad1_ net-_u2-pad2_ d_inverter +x7 net-_u2-pad2_ net-_u9-pad2_ net-_u10-pad1_ net-_u17-pad1_ 3_and +x6 net-_u8-pad2_ net-_u9-pad2_ net-_u10-pad1_ net-_u16-pad1_ 3_and +a1 [net-_u14-pad1_ net-_u11-pad2_ ] net-_u1-pad13_ u14 +a2 [net-_u13-pad1_ net-_u11-pad2_ ] net-_u1-pad14_ u13 +a3 [net-_u12-pad1_ net-_u11-pad2_ ] net-_u1-pad15_ u12 +a4 [net-_u16-pad1_ net-_u11-pad2_ ] net-_u1-pad11_ u16 +a5 [net-_u15-pad1_ net-_u11-pad2_ ] net-_u1-pad12_ u15 +a6 [net-_u17-pad1_ net-_u11-pad2_ ] net-_u1-pad10_ u17 +a7 [net-_u19-pad1_ net-_u11-pad2_ ] net-_u1-pad7_ u19 +a8 [net-_u18-pad1_ net-_u11-pad2_ ] net-_u1-pad9_ u18 +a9 net-_u11-pad1_ net-_u11-pad2_ u11 +a10 net-_u1-pad6_ net-_u5-pad2_ u5 +a11 net-_u1-pad4_ net-_u6-pad2_ u6 +a12 net-_u1-pad5_ net-_u7-pad2_ u7 +a13 net-_u1-pad3_ net-_u10-pad1_ u4 +a14 net-_u10-pad1_ net-_u10-pad2_ u10 +a15 net-_u3-pad2_ net-_u9-pad2_ u9 +a16 net-_u2-pad2_ net-_u8-pad2_ u8 +a17 net-_u1-pad2_ net-_u3-pad2_ u3 +a18 net-_u1-pad1_ net-_u2-pad2_ u2 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u14 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u12 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u16 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u15 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u17 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u19 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u18 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends sn74hc138 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC138/sn74hc138_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC138/sn74hc138_Previous_Values.xml new file mode 100644 index 000000000..bfb5c37f5 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC138/sn74hc138_Previous_Values.xml @@ -0,0 +1 @@ +d_nandd_nandd_nandd_inverterd_nandd_nandd_nandd_nandd_nandd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.150secsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC139/3_and-cache.lib b/library/SubcircuitLibrary/SN74HC139/3_and-cache.lib new file mode 100644 index 000000000..af0586415 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/3_and-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC139/3_and.cir b/library/SubcircuitLibrary/SN74HC139/3_and.cir new file mode 100644 index 000000000..ba296cf01 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/3_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\3_and\3_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/26/19 18:42:57 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad4_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN74HC139/3_and.cir.out b/library/SubcircuitLibrary/SN74HC139/3_and.cir.out new file mode 100644 index 000000000..d7cf79a07 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/3_and.cir.out @@ -0,0 +1,20 @@ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC139/3_and.pro b/library/SubcircuitLibrary/SN74HC139/3_and.pro new file mode 100644 index 000000000..00597a5ad --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/3_and.pro @@ -0,0 +1,43 @@ +update=05/31/19 15:26:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=eSim_Analog +LibName2=eSim_Devices +LibName3=eSim_Digital +LibName4=eSim_Hybrid +LibName5=eSim_Miscellaneous +LibName6=eSim_Plot +LibName7=eSim_Power +LibName8=eSim_User +LibName9=eSim_Sources +LibName10=eSim_Subckt diff --git a/library/SubcircuitLibrary/SN74HC139/3_and.sch b/library/SubcircuitLibrary/SN74HC139/3_and.sch new file mode 100644 index 000000000..d6ac89f95 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/3_and.sch @@ -0,0 +1,130 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:3_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U2 +U 1 1 5C9A24D8 +P 4250 2700 +F 0 "U2" H 4250 2700 60 0000 C CNN +F 1 "d_and" H 4300 2800 60 0000 C CNN +F 2 "" H 4250 2700 60 0000 C CNN +F 3 "" H 4250 2700 60 0000 C CNN + 1 4250 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 5C9A2538 +P 5150 2900 +F 0 "U3" H 5150 2900 60 0000 C CNN +F 1 "d_and" H 5200 3000 60 0000 C CNN +F 2 "" H 5150 2900 60 0000 C CNN +F 3 "" H 5150 2900 60 0000 C CNN + 1 5150 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 5C9A259A +P 3050 2600 +F 0 "U1" H 3100 2700 30 0000 C CNN +F 1 "PORT" H 3050 2600 30 0000 C CNN +F 2 "" H 3050 2600 60 0000 C CNN +F 3 "" H 3050 2600 60 0000 C CNN + 1 3050 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A25D9 +P 3050 2800 +F 0 "U1" H 3100 2900 30 0000 C CNN +F 1 "PORT" H 3050 2800 30 0000 C CNN +F 2 "" H 3050 2800 60 0000 C CNN +F 3 "" H 3050 2800 60 0000 C CNN + 2 3050 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A260A +P 3050 3100 +F 0 "U1" H 3100 3200 30 0000 C CNN +F 1 "PORT" H 3050 3100 30 0000 C CNN +F 2 "" H 3050 3100 60 0000 C CNN +F 3 "" H 3050 3100 60 0000 C CNN + 3 3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2637 +P 6900 2850 +F 0 "U1" H 6950 2950 30 0000 C CNN +F 1 "PORT" H 6900 2850 30 0000 C CNN +F 2 "" H 6900 2850 60 0000 C CNN +F 3 "" H 6900 2850 60 0000 C CNN + 4 6900 2850 + -1 0 0 1 +$EndComp +Wire Wire Line + 4700 2650 4700 2800 +Wire Wire Line + 5600 2850 6650 2850 +Wire Wire Line + 3800 2600 3300 2600 +Wire Wire Line + 3800 2700 3300 2700 +Wire Wire Line + 3300 2700 3300 2800 +Wire Wire Line + 3300 3100 4700 3100 +Wire Wire Line + 4700 3100 4700 2900 +Text Notes 3500 2600 0 60 ~ 12 +in1 +Text Notes 3450 2800 0 60 ~ 12 +in2\n +Text Notes 3500 3100 0 60 ~ 12 +in3 +Text Notes 6100 2850 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC139/3_and.sub b/library/SubcircuitLibrary/SN74HC139/3_and.sub new file mode 100644 index 000000000..3d9120bb6 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/3_and.sub @@ -0,0 +1,14 @@ +* Subcircuit 3_and +.subckt 3_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC139/3_and_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC139/3_and_Previous_Values.xml new file mode 100644 index 000000000..abc5faaae --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/3_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC139/SN74HC139.cir b/library/SubcircuitLibrary/SN74HC139/SN74HC139.cir new file mode 100644 index 000000000..f6655f1c3 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/SN74HC139.cir @@ -0,0 +1,35 @@ +.title KiCad schematic +U21 Net-_U21-Pad1_ Net-_U1-Pad4_ d_inverter +U24 Net-_U24-Pad1_ Net-_U1-Pad5_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ unconnected-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ unconnected-_U1-Pad16_ PORT +U25 Net-_U25-Pad1_ Net-_U1-Pad6_ d_inverter +U22 Net-_U22-Pad1_ Net-_U1-Pad7_ d_inverter +X5 Net-_U11-Pad1_ Net-_U13-Pad1_ Net-_U12-Pad2_ Net-_U21-Pad1_ 3_and +X6 Net-_U12-Pad2_ Net-_U13-Pad1_ Net-_U16-Pad2_ Net-_U24-Pad1_ 3_and +X8 Net-_U12-Pad2_ Net-_U16-Pad2_ Net-_U17-Pad2_ Net-_U22-Pad1_ 3_and +X7 Net-_U12-Pad2_ Net-_U11-Pad1_ Net-_U17-Pad2_ Net-_U25-Pad1_ 3_and +U6 Net-_U1-Pad2_ Net-_U11-Pad1_ d_inverter +U5 Net-_U1-Pad1_ Net-_U12-Pad1_ d_inverter +U17 Net-_U13-Pad2_ Net-_U17-Pad2_ d_buffer +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ d_buffer +U16 Net-_U11-Pad2_ Net-_U16-Pad2_ d_buffer +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ d_inverter +U20 Net-_U20-Pad1_ Net-_U1-Pad11_ d_inverter +U18 Net-_U18-Pad1_ Net-_U1-Pad12_ d_inverter +X1 Net-_U3-Pad2_ Net-_U10-Pad1_ Net-_U9-Pad2_ Net-_U18-Pad1_ 3_and +X2 Net-_U9-Pad2_ Net-_U10-Pad1_ Net-_U14-Pad2_ Net-_U20-Pad1_ 3_and +X3 Net-_U9-Pad2_ Net-_U3-Pad2_ Net-_U15-Pad2_ Net-_U23-Pad1_ 3_and +X4 Net-_U9-Pad2_ Net-_U14-Pad2_ Net-_U15-Pad2_ Net-_U19-Pad1_ 3_and +U23 Net-_U23-Pad1_ Net-_U1-Pad10_ d_inverter +U19 Net-_U19-Pad1_ Net-_U1-Pad9_ d_inverter +U7 Net-_U1-Pad3_ Net-_U13-Pad1_ d_inverter +U13 Net-_U13-Pad1_ Net-_U13-Pad2_ d_inverter +U4 Net-_U1-Pad13_ Net-_U10-Pad1_ d_inverter +U3 Net-_U1-Pad14_ Net-_U3-Pad2_ d_inverter +U2 Net-_U1-Pad15_ Net-_U2-Pad2_ d_inverter +U9 Net-_U2-Pad2_ Net-_U9-Pad2_ d_buffer +U14 Net-_U14-Pad1_ Net-_U14-Pad2_ d_buffer +U15 Net-_U10-Pad2_ Net-_U15-Pad2_ d_buffer +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ d_inverter +U8 Net-_U3-Pad2_ Net-_U14-Pad1_ d_inverter +.end diff --git a/library/SubcircuitLibrary/SN74HC139/SN74HC139.cir.out b/library/SubcircuitLibrary/SN74HC139/SN74HC139.cir.out new file mode 100644 index 000000000..5d68653c7 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/SN74HC139.cir.out @@ -0,0 +1,117 @@ +.title kicad schematic + +.include 3_and.sub +* u21 net-_u21-pad1_ net-_u1-pad4_ d_inverter +* u24 net-_u24-pad1_ net-_u1-pad5_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ unconnected-_u1-pad16_ port +* u25 net-_u25-pad1_ net-_u1-pad6_ d_inverter +* u22 net-_u22-pad1_ net-_u1-pad7_ d_inverter +x5 net-_u11-pad1_ net-_u13-pad1_ net-_u12-pad2_ net-_u21-pad1_ 3_and +x6 net-_u12-pad2_ net-_u13-pad1_ net-_u16-pad2_ net-_u24-pad1_ 3_and +x8 net-_u12-pad2_ net-_u16-pad2_ net-_u17-pad2_ net-_u22-pad1_ 3_and +x7 net-_u12-pad2_ net-_u11-pad1_ net-_u17-pad2_ net-_u25-pad1_ 3_and +* u6 net-_u1-pad2_ net-_u11-pad1_ d_inverter +* u5 net-_u1-pad1_ net-_u12-pad1_ d_inverter +* u17 net-_u13-pad2_ net-_u17-pad2_ d_buffer +* u12 net-_u12-pad1_ net-_u12-pad2_ d_buffer +* u16 net-_u11-pad2_ net-_u16-pad2_ d_buffer +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +* u20 net-_u20-pad1_ net-_u1-pad11_ d_inverter +* u18 net-_u18-pad1_ net-_u1-pad12_ d_inverter +x1 net-_u3-pad2_ net-_u10-pad1_ net-_u9-pad2_ net-_u18-pad1_ 3_and +x2 net-_u9-pad2_ net-_u10-pad1_ net-_u14-pad2_ net-_u20-pad1_ 3_and +x3 net-_u9-pad2_ net-_u3-pad2_ net-_u15-pad2_ net-_u23-pad1_ 3_and +x4 net-_u9-pad2_ net-_u14-pad2_ net-_u15-pad2_ net-_u19-pad1_ 3_and +* u23 net-_u23-pad1_ net-_u1-pad10_ d_inverter +* u19 net-_u19-pad1_ net-_u1-pad9_ d_inverter +* u7 net-_u1-pad3_ net-_u13-pad1_ d_inverter +* u13 net-_u13-pad1_ net-_u13-pad2_ d_inverter +* u4 net-_u1-pad13_ net-_u10-pad1_ d_inverter +* u3 net-_u1-pad14_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad15_ net-_u2-pad2_ d_inverter +* u9 net-_u2-pad2_ net-_u9-pad2_ d_buffer +* u14 net-_u14-pad1_ net-_u14-pad2_ d_buffer +* u15 net-_u10-pad2_ net-_u15-pad2_ d_buffer +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u8 net-_u3-pad2_ net-_u14-pad1_ d_inverter +a1 net-_u21-pad1_ net-_u1-pad4_ u21 +a2 net-_u24-pad1_ net-_u1-pad5_ u24 +a3 net-_u25-pad1_ net-_u1-pad6_ u25 +a4 net-_u22-pad1_ net-_u1-pad7_ u22 +a5 net-_u1-pad2_ net-_u11-pad1_ u6 +a6 net-_u1-pad1_ net-_u12-pad1_ u5 +a7 net-_u13-pad2_ net-_u17-pad2_ u17 +a8 net-_u12-pad1_ net-_u12-pad2_ u12 +a9 net-_u11-pad2_ net-_u16-pad2_ u16 +a10 net-_u11-pad1_ net-_u11-pad2_ u11 +a11 net-_u20-pad1_ net-_u1-pad11_ u20 +a12 net-_u18-pad1_ net-_u1-pad12_ u18 +a13 net-_u23-pad1_ net-_u1-pad10_ u23 +a14 net-_u19-pad1_ net-_u1-pad9_ u19 +a15 net-_u1-pad3_ net-_u13-pad1_ u7 +a16 net-_u13-pad1_ net-_u13-pad2_ u13 +a17 net-_u1-pad13_ net-_u10-pad1_ u4 +a18 net-_u1-pad14_ net-_u3-pad2_ u3 +a19 net-_u1-pad15_ net-_u2-pad2_ u2 +a20 net-_u2-pad2_ net-_u9-pad2_ u9 +a21 net-_u14-pad1_ net-_u14-pad2_ u14 +a22 net-_u10-pad2_ net-_u15-pad2_ u15 +a23 net-_u10-pad1_ net-_u10-pad2_ u10 +a24 net-_u3-pad2_ net-_u14-pad1_ u8 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u22 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u17 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u12 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u16 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u14 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u15 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC139/SN74HC139.kicad_sch b/library/SubcircuitLibrary/SN74HC139/SN74HC139.kicad_sch new file mode 100644 index 000000000..4a8f20f07 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/SN74HC139.kicad_sch @@ -0,0 +1,2180 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 04c184f1-40b8-499c-b432-741d2fe9e907) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + (symbol "eSim_Subckt:3_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 2.54 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 3.81 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "3_and_0_1" + (polyline + (pts + (xy -3.81 5.08) + (xy 5.08 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 5.08) + (xy -3.81 -2.54) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 5.08 -2.54) (mid 7.8261 1.27) (end 5.08 5.08) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "3_and_1_1" + (pin input line (at -8.89 3.81 0) (length 5.08) + (name "in1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 1.27 0) (length 5.08) + (name "in2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -8.89 -1.27 0) (length 5.08) + (name "in3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 12.7 1.27 180) (length 5.08) + (name "out" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 71.12 50.8) (diameter 0) (color 0 0 0 0) + (uuid 0493c3e4-516d-41e5-b3a1-f042d8750541) + ) + (junction (at 76.2 43.18) (diameter 0) (color 0 0 0 0) + (uuid 1702c59a-b999-40ee-b3c8-f71eddf399f6) + ) + (junction (at 185.42 168.91) (diameter 0) (color 0 0 0 0) + (uuid 2777d9f2-39ec-4c8c-b49f-8f87c7551237) + ) + (junction (at 68.58 168.91) (diameter 0) (color 0 0 0 0) + (uuid 4c72eb2d-5825-4584-a305-da502f71b0ec) + ) + (junction (at 73.66 149.86) (diameter 0) (color 0 0 0 0) + (uuid 629e0acf-a0c2-45ae-ac36-e6f78e13bcd2) + ) + (junction (at 68.58 157.48) (diameter 0) (color 0 0 0 0) + (uuid 7b43e89d-b42f-4516-b049-374dcc71a3ef) + ) + (junction (at 175.26 184.15) (diameter 0) (color 0 0 0 0) + (uuid 9cf70205-9403-49bb-9466-2f7de68b0a71) + ) + (junction (at 177.8 77.47) (diameter 0) (color 0 0 0 0) + (uuid 9f30be89-98c5-456d-bc45-877b8f7751fc) + ) + (junction (at 76.2 80.01) (diameter 0) (color 0 0 0 0) + (uuid a661fa41-793f-4287-a8bd-43792970a0be) + ) + (junction (at 73.66 186.69) (diameter 0) (color 0 0 0 0) + (uuid b57925fc-01c7-4c55-8edc-77e66df6b809) + ) + (junction (at 71.12 62.23) (diameter 0) (color 0 0 0 0) + (uuid bb06ae69-33a1-4fd8-9db0-c70b096e1aed) + ) + (junction (at 182.88 35.56) (diameter 0) (color 0 0 0 0) + (uuid d7e02d19-0cb3-4e38-999d-a63d1d9bf9c0) + ) + (junction (at 187.96 62.23) (diameter 0) (color 0 0 0 0) + (uuid da612e0b-b647-4aa3-9b8b-e9de0d913a2d) + ) + (junction (at 182.88 54.61) (diameter 0) (color 0 0 0 0) + (uuid e0670219-57ab-4808-bfb3-027edf40598f) + ) + (junction (at 180.34 161.29) (diameter 0) (color 0 0 0 0) + (uuid e8a7bb84-d302-4613-b55d-74864c135110) + ) + (junction (at 180.34 142.24) (diameter 0) (color 0 0 0 0) + (uuid f2902333-c340-46a7-8131-100fe2bda181) + ) + + (no_connect (at 238.76 91.44) (uuid bba8a949-d6e5-488d-aba1-476eec5cf814)) + (no_connect (at 31.75 123.19) (uuid ce6948e1-87b5-4ad6-9fe1-d3862600c312)) + + (wire (pts (xy 100.33 168.91) (xy 91.44 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 011b3a57-8b1d-4032-8394-f677c47d2c1c) + ) + (wire (pts (xy 182.88 21.59) (xy 182.88 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c4ca990-5714-461d-9833-ac507e042552) + ) + (wire (pts (xy 191.77 16.51) (xy 71.12 16.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d395918-a635-498e-bf7c-01e06871a2e1) + ) + (wire (pts (xy 217.17 181.61) (xy 210.82 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f2e80e8-7a71-4366-bb97-2c23665e54d1) + ) + (wire (pts (xy 74.93 35.56) (xy 66.04 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 160b56c3-bdd4-4ce9-a644-2aa5c378f97a) + ) + (wire (pts (xy 189.23 166.37) (xy 175.26 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17f5d4d0-e910-442a-b2a5-cd5eb6318624) + ) + (wire (pts (xy 175.26 184.15) (xy 134.62 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23cda170-538d-42a8-a771-473e716f5853) + ) + (wire (pts (xy 66.04 62.23) (xy 71.12 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26740291-c5c0-46ee-9184-16b409eb16e6) + ) + (wire (pts (xy 238.76 91.44) (xy 250.19 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 290cc3f0-595a-4e16-8cc1-640ada41cc93) + ) + (wire (pts (xy 180.34 179.07) (xy 180.34 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b5a3881-e957-40b9-a6d2-7a7cb6b7229d) + ) + (wire (pts (xy 134.62 184.15) (xy 134.62 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c24528e-b429-4536-9819-09d23adcb9e9) + ) + (wire (pts (xy 63.5 168.91) (xy 68.58 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c34a48e-439f-4824-8683-977fe1ebf090) + ) + (wire (pts (xy 189.23 128.27) (xy 180.34 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c871a72-25ac-4add-8efe-06a369d53212) + ) + (wire (pts (xy 72.39 142.24) (xy 63.5 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ccd5a94-fef2-49db-9a99-3c3910c544ce) + ) + (wire (pts (xy 104.14 80.01) (xy 95.25 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e258870-0cc9-403e-875c-6cddacb00dbb) + ) + (wire (pts (xy 180.34 161.29) (xy 189.23 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f7da8dd-788b-4470-828d-398a183329b2) + ) + (wire (pts (xy 219.71 19.05) (xy 213.36 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f97a29d-f1dc-4def-a5c0-d67a8389f049) + ) + (wire (pts (xy 177.8 77.47) (xy 137.16 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 385e2f5a-ea45-4ebd-81a2-c2f16e128e64) + ) + (wire (pts (xy 73.66 149.86) (xy 73.66 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e48d471-5e04-4d2d-9541-1dd9d179b392) + ) + (wire (pts (xy 102.87 62.23) (xy 93.98 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 412f6c1c-2016-4d9d-8ab9-adb17530844a) + ) + (wire (pts (xy 191.77 38.1) (xy 96.52 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41bee850-9d69-43e2-8b4a-732e8b40af6b) + ) + (wire (pts (xy 191.77 72.39) (xy 182.88 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41ca4a7b-0ca8-4432-a453-bcc52b65254a) + ) + (wire (pts (xy 187.96 40.64) (xy 187.96 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42d5a088-d2c2-4172-b51d-b57dfb0e3412) + ) + (wire (pts (xy 177.8 59.69) (xy 177.8 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42da8a13-a1eb-44d7-b634-b40109e62e66) + ) + (wire (pts (xy 76.2 80.01) (xy 76.2 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4415f665-031f-4955-9657-a07c9d013c47) + ) + (wire (pts (xy 180.34 142.24) (xy 180.34 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4829da8e-2b90-4edf-b9e9-f1411dde3225) + ) + (wire (pts (xy 185.42 168.91) (xy 185.42 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b3ae183-3115-4b1f-8ee1-5a94abb443bc) + ) + (wire (pts (xy 73.66 125.73) (xy 189.23 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c8783b0-cacf-4c6d-ba30-1626fa9b2ebd) + ) + (wire (pts (xy 71.12 62.23) (xy 78.74 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5507c1ec-5c22-4a5c-bc39-5152cf3e3dbb) + ) + (wire (pts (xy 219.71 163.83) (xy 210.82 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56186da0-0516-42df-a0cb-4072bee939f2) + ) + (wire (pts (xy 101.6 186.69) (xy 92.71 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 571062d3-a235-4016-b73e-5a0f4a445d60) + ) + (wire (pts (xy 76.2 19.05) (xy 191.77 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59e663cc-28d0-446a-8013-286810921425) + ) + (wire (pts (xy 104.14 35.56) (xy 182.88 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5aad00c2-deec-4cb1-ab4c-77bbb39e0959) + ) + (wire (pts (xy 191.77 21.59) (xy 182.88 21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b9e89dd-91a5-4c2b-acfd-2ed2db22051b) + ) + (wire (pts (xy 189.23 163.83) (xy 165.1 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d19c82d-82bb-4805-9420-a43dea6173e0) + ) + (wire (pts (xy 189.23 123.19) (xy 68.58 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 633dba98-89bf-4fe3-8737-9e6b017db8b7) + ) + (wire (pts (xy 93.98 149.86) (xy 73.66 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64c86c6f-1bc1-4c94-9760-3aa7b9b2051f) + ) + (wire (pts (xy 189.23 179.07) (xy 180.34 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b879934-4b61-4e82-949a-4f21adc19efe) + ) + (wire (pts (xy 182.88 54.61) (xy 191.77 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bd9281a-f5b5-4bae-bdd7-f3018185455f) + ) + (wire (pts (xy 182.88 35.56) (xy 182.88 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 740c6146-4de8-4a35-91b9-9fa9a2dd8c84) + ) + (wire (pts (xy 130.81 186.69) (xy 134.62 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7adf5fb7-dae9-47f6-bbb4-bcaaeeac8cb3) + ) + (wire (pts (xy 71.12 50.8) (xy 167.64 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 836253ea-b01c-4133-89ec-bfb06af79460) + ) + (wire (pts (xy 167.64 57.15) (xy 167.64 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 859abd5c-71b9-400e-a0d5-9fc04b6d8f74) + ) + (wire (pts (xy 63.5 186.69) (xy 73.66 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87e86354-6f52-4cb9-b4f5-eacd997c7a4a) + ) + (wire (pts (xy 191.77 59.69) (xy 177.8 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8aaab32f-1806-45c8-9c56-84a1787895fb) + ) + (wire (pts (xy 185.42 147.32) (xy 185.42 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d2c69f8-4cdb-4a56-b317-5fc1fae02ae2) + ) + (wire (pts (xy 73.66 186.69) (xy 77.47 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e8d5d47-8a78-4c87-ac1a-18e2dd043d79) + ) + (wire (pts (xy 187.96 74.93) (xy 191.77 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90f522c4-b83d-42b7-abd8-9832d24a7997) + ) + (wire (pts (xy 96.52 43.18) (xy 76.2 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 974075d9-72c0-4ebd-9da9-b470ae5fa062) + ) + (wire (pts (xy 191.77 57.15) (xy 167.64 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b5666d4-283b-41f1-b638-6009f0cf61f1) + ) + (wire (pts (xy 101.6 142.24) (xy 180.34 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1ada9f4-5510-4ac0-86ef-24583cdc52a5) + ) + (wire (pts (xy 222.25 57.15) (xy 213.36 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1b524b9-39f4-4666-951f-9d238ef22b0d) + ) + (wire (pts (xy 175.26 166.37) (xy 175.26 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a52818e3-5819-465e-b92c-7f3477f2fe40) + ) + (wire (pts (xy 189.23 184.15) (xy 175.26 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a67c1e93-b2ac-4ead-a9eb-d7e69009ed80) + ) + (wire (pts (xy 129.54 168.91) (xy 185.42 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6ef07f2-1e5d-4059-a2ac-f7ebc0352242) + ) + (wire (pts (xy 66.04 80.01) (xy 76.2 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a92edec8-2cdc-4184-8146-5147cb4e7eb7) + ) + (wire (pts (xy 133.35 80.01) (xy 137.16 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab6d01cf-af52-4b08-b776-2d833ff67726) + ) + (wire (pts (xy 185.42 181.61) (xy 189.23 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abc5cb10-8c96-424e-a781-79a619bd16db) + ) + (wire (pts (xy 189.23 144.78) (xy 93.98 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abf1bd50-e663-419f-b529-656790d6f968) + ) + (wire (pts (xy 180.34 128.27) (xy 180.34 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac492045-a643-4fbd-be08-6acf6dccbf3e) + ) + (wire (pts (xy 68.58 123.19) (xy 68.58 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid adfa36a2-6b09-4444-ab95-327ef30030f8) + ) + (wire (pts (xy 217.17 125.73) (xy 210.82 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5096759-49fe-41dc-a7e6-38f4b07d063b) + ) + (wire (pts (xy 76.2 80.01) (xy 80.01 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b59f3577-3cdf-48c7-b87e-7d5671601829) + ) + (wire (pts (xy 132.08 62.23) (xy 187.96 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b649269a-69b6-488e-bbbf-d579057d6226) + ) + (wire (pts (xy 218.44 144.78) (xy 210.82 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b65317ad-8e41-476a-be83-d9091fc3f2e5) + ) + (wire (pts (xy 191.77 77.47) (xy 177.8 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6748887-fc23-4ec7-a802-2c1c447a7d93) + ) + (wire (pts (xy 220.98 38.1) (xy 213.36 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b957cbef-bbbd-48bb-a3af-42d7397d3edc) + ) + (wire (pts (xy 31.75 123.19) (xy 27.94 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf0d53c0-802f-46db-a0c0-7add65d8ef40) + ) + (wire (pts (xy 93.98 144.78) (xy 93.98 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c468d089-d5ba-441b-aa53-06ee399e8121) + ) + (wire (pts (xy 71.12 50.8) (xy 71.12 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c67829f9-0086-4e47-b777-51736c919030) + ) + (wire (pts (xy 68.58 157.48) (xy 68.58 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9e215ec-3ca1-40b8-957d-0980433f5384) + ) + (wire (pts (xy 219.71 74.93) (xy 213.36 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d13476c0-d345-4bf5-bfd3-461e7d079a60) + ) + (wire (pts (xy 182.88 35.56) (xy 191.77 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d20a8799-0c6c-4a4b-b423-75ae7c53c9f0) + ) + (wire (pts (xy 68.58 157.48) (xy 165.1 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d287d6cf-0c58-42d7-9fdd-891723fd5a05) + ) + (wire (pts (xy 137.16 77.47) (xy 137.16 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5db7b92-7d12-4571-af4c-b00c0d7d7453) + ) + (wire (pts (xy 73.66 186.69) (xy 73.66 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7e2b732-01bc-4498-8954-d38333f7f3b0) + ) + (wire (pts (xy 182.88 72.39) (xy 182.88 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da4ee5be-6dc7-4da0-bf96-dc99ccd34184) + ) + (wire (pts (xy 76.2 43.18) (xy 76.2 19.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e285f103-c931-4f59-a1a3-b82625e3c275) + ) + (wire (pts (xy 189.23 147.32) (xy 185.42 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ece70825-2e08-4056-96d4-ac8d4ebaa16d) + ) + (wire (pts (xy 180.34 142.24) (xy 189.23 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid efa5a2df-629a-453f-b2d0-a349d9c95878) + ) + (wire (pts (xy 187.96 62.23) (xy 187.96 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f17ec19e-8882-433c-a01f-9b6ad715b0e3) + ) + (wire (pts (xy 191.77 40.64) (xy 187.96 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f559bc39-7c15-4f93-95da-296348bfcfe6) + ) + (wire (pts (xy 71.12 16.51) (xy 71.12 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f721ee23-8156-4539-8c7e-f9bb3fdaa1df) + ) + (wire (pts (xy 96.52 38.1) (xy 96.52 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9545b68-8f40-4d75-b08c-21cca9cdd174) + ) + (wire (pts (xy 165.1 163.83) (xy 165.1 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd707724-2338-46b4-9691-9b0409b0a902) + ) + (wire (pts (xy 68.58 168.91) (xy 76.2 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe7a49b2-b564-4998-b918-5c21b700f9ef) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 200.66 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 037afa56-1af8-4732-9fa7-b017ae51cfab) + (property "Reference" "X8" (id 0) (at 202.668 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 202.668 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 200.66 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c3527065-5456-4750-b147-c5d5e1229713)) + (pin "2" (uuid 5ed6a2cc-132f-4f68-abdd-6e11f5100f38)) + (pin "3" (uuid c8db209d-d9a7-42bf-8eca-72ddc4c634b3)) + (pin "4" (uuid 53cb221f-aac1-4ca8-915b-d73cbeb65c60)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 224.79 181.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 05ee0dfe-f6e4-4962-9bfd-df2dc6dd038d) + (property "Reference" "U19" (id 0) (at 224.79 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 224.79 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 226.06 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 226.06 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e0df18a-64ed-4ca9-9b2c-9e26de702406)) + (pin "2" (uuid 102e89b4-1edd-4b68-b749-e5b18262380f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 241.3 163.83 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0df7fdb4-5291-468a-82c0-a5a67df713e0) + (property "Reference" "U1" (id 0) (at 245.11 163.195 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 245.11 165.735 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 241.3 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7b390b9-7445-4180-800f-379255722e52)) + (pin "2" (uuid 22e78149-6bb8-4a86-806d-4b664627a64e)) + (pin "3" (uuid 835751f4-eb28-4dda-ab64-4f86a981cf88)) + (pin "4" (uuid 26483e27-5683-4313-9492-352439e49175)) + (pin "5" (uuid 8175c2ed-af72-4f97-8ad6-596ffb9c72b4)) + (pin "6" (uuid 63a8a43d-2a15-415d-87da-ff7c3ed09072)) + (pin "7" (uuid cfbace83-c13b-4044-8eda-e6b635fea41d)) + (pin "8" (uuid 29fa57c4-d1e7-4e34-8f65-e603af1c556f)) + (pin "9" (uuid 3333073c-15b6-4a2f-85fc-d7637d9ba1a0)) + (pin "10" (uuid e5e22539-be7f-47f6-98d2-3080ce7e15a0)) + (pin "11" (uuid f032a59a-0bc8-416a-8432-0088f520583d)) + (pin "12" (uuid 8b6344af-4f6b-43d2-a6bc-634c0339658c)) + (pin "13" (uuid 247ae5bb-a05e-4d34-be3e-37d6ac45b038)) + (pin "14" (uuid ae69a978-0320-40ad-b2cd-81e3f42f7ca4)) + (pin "15" (uuid 71dd01ee-2ed2-45a1-af35-c478a15e8821)) + (pin "16" (uuid f3cf7ee0-c583-468c-9ca7-50cd92499e49)) + (pin "17" (uuid d9c8235a-fa42-455f-bc7c-31315a6674bc)) + (pin "18" (uuid e56c25e0-c242-4b9c-8e75-89101d6e7db1)) + (pin "19" (uuid 8516e32b-8125-43d1-9ebd-7b59b007e71d)) + (pin "20" (uuid 5d081786-a7be-47d7-bad6-f9c36ed47c1b)) + (pin "21" (uuid e1e141ef-47a1-4a06-b8fc-81284d7f67b7)) + (pin "22" (uuid 582828c0-a08c-4168-a64d-37fd859b90fc)) + (pin "23" (uuid 10946c2c-bff1-43a6-8095-9f62fd0721b2)) + (pin "24" (uuid f0f9bdd1-7868-4f2b-9121-f9a241e17f20)) + (pin "25" (uuid 375008e2-e44f-4806-9bfd-b7465567ead6)) + (pin "26" (uuid 9627e4ee-e2b8-4aaf-8f6a-a57fda6265d0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 44.45 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 121d8688-1d8d-40e9-9263-2b244d45ea04) + (property "Reference" "U1" (id 0) (at 45.085 30.48 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 45.085 33.02 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 44.45 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 44.45 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be0f199a-2eb7-44c9-8018-c26097aaf465)) + (pin "2" (uuid f90a7ddf-3bf8-4628-97bd-eb70851b7c9f)) + (pin "3" (uuid 315d616d-badf-47dd-884b-51f58c66a36b)) + (pin "4" (uuid 75419409-6c18-4c01-923e-fefc666f7530)) + (pin "5" (uuid 4abf68f1-275f-43b6-af6a-6db386e99660)) + (pin "6" (uuid 22bf3bf2-0a8b-4a87-a425-a9913b79dbe7)) + (pin "7" (uuid e2a2fa5c-9847-452f-a8f8-15107ec17dab)) + (pin "8" (uuid 280f0db2-6a58-4df4-877f-59df683f243d)) + (pin "9" (uuid 4488f382-adfe-434d-be85-62500e35ba13)) + (pin "10" (uuid 020ed899-2368-4580-8200-604a425c5849)) + (pin "11" (uuid 5f0679cc-445e-430a-9d76-37465f393a48)) + (pin "12" (uuid 54c99cd2-6a87-4ec3-8956-382427a9618f)) + (pin "13" (uuid c7b7c715-da93-474f-abfb-e3bc5ba5c324)) + (pin "14" (uuid cafb6b40-9d13-48f0-82f4-e789245d7dea)) + (pin "15" (uuid f96b69df-36dc-4c44-8571-57c2e6cfd2c9)) + (pin "16" (uuid 69f575c9-a403-4e0f-87a4-ddb59dad710f)) + (pin "17" (uuid 342cbf3b-f672-4f8b-ab86-5f8cf17a1cfd)) + (pin "18" (uuid a8d72bb6-c2e6-4cb1-8d5c-3a525d271a26)) + (pin "19" (uuid 4b59a43a-219b-4a4c-abb0-43e94fc89be2)) + (pin "20" (uuid ce771c9c-1b82-423f-bea0-f24defbc93a3)) + (pin "21" (uuid dd5f5ebd-4216-4210-ba2a-cc73e829409b)) + (pin "22" (uuid cffe8b0c-f112-4a07-a5e6-dc25fd0c9187)) + (pin "23" (uuid fae1270e-c424-4bf9-a95c-1348946d271b)) + (pin "24" (uuid 9d6e5860-c411-4869-9e97-5cf4488edfaf)) + (pin "25" (uuid d0537b37-f2ed-484d-b9e1-a11891c0c584)) + (pin "26" (uuid 3993b4fe-f3a5-4fe7-9a42-f64d51d6efda)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 115.57 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1ae5ac5e-faa1-497f-8fbd-ff89b43e1dd6) + (property "Reference" "U16" (id 0) (at 117.475 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 117.475 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 115.57 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 115.57 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 23c23121-49e6-4f20-883c-083886372fb6)) + (pin "2" (uuid 352e0fb2-53e0-4b22-a012-9e1983f8bcb9)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 87.63 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 20dbd82d-e083-4bcb-80ef-407b9f003a05) + (property "Reference" "U12" (id 0) (at 89.535 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 89.535 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2d2df82a-3804-45db-8318-2f969ad1d0e0)) + (pin "2" (uuid 5bd0b664-6bf4-4e83-8869-1cdba315170b)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 198.12 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2235db50-30fa-4bf9-8355-8623cae456da) + (property "Reference" "X3" (id 0) (at 200.128 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 200.128 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bd5f8ad7-f0cf-4aa8-adf1-7a88f3c3811c)) + (pin "2" (uuid 499baf77-788b-43d6-bf78-43c136bdb6e3)) + (pin "3" (uuid d938b03a-acfb-4a6b-9163-26be9b6a0533)) + (pin "4" (uuid dec8a7e9-e861-4fc0-8ae5-b11ef4d3360a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 86.36 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 270e21da-8390-44d6-a566-e4f05ffff9f8) + (property "Reference" "U11" (id 0) (at 86.36 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 86.36 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9e49e99b-09fd-4112-b84b-a55b7eeb6e29)) + (pin "2" (uuid e7fd8e56-f5b5-4740-82c4-53996360de5a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 85.09 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38173ebb-b26a-4e46-b3a8-7f7c39ba3e1a) + (property "Reference" "U10" (id 0) (at 85.09 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 85.09 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 86.36 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c18d2b85-254e-4c6d-9939-6dea288455f5)) + (pin "2" (uuid b171c3d1-4aa7-4dce-8067-8077ab03c5d7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 242.57 38.1 180) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a98f699-5721-4794-814c-5767205ddb2f) + (property "Reference" "U1" (id 0) (at 246.38 37.465 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 246.38 40.005 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 242.57 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 242.57 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 52c44cf5-c01c-4051-bb71-d07318ea315c)) + (pin "2" (uuid 49a2de37-701a-46f9-b507-07ade5e0ce4d)) + (pin "3" (uuid 647f6441-dddb-437b-b725-db50925d4cb9)) + (pin "4" (uuid 4376d9f1-66d1-4ccb-bc47-1d05c9fd6b1d)) + (pin "5" (uuid 16e3f694-3182-431e-8c20-f7cdbe022e70)) + (pin "6" (uuid e4ad954d-ee15-4b8b-8aac-38e9262196a2)) + (pin "7" (uuid 40d5c32b-d8b5-4780-9ab0-3fd6949bb12f)) + (pin "8" (uuid 9ece3b6e-5423-406a-bf07-dd232fd4d4a3)) + (pin "9" (uuid 22e8359a-5b3a-49e2-b200-cde1b4cf5e88)) + (pin "10" (uuid da769643-be0e-473b-ab9f-eecf88bfbcb8)) + (pin "11" (uuid d4339154-e8ac-4a25-ac9d-7a8f484adbee)) + (pin "12" (uuid f7ed403b-8c89-4171-8636-fa6b0053a2f9)) + (pin "13" (uuid 47422728-be70-4ac8-9351-27524c390b00)) + (pin "14" (uuid 32aed9bc-11f6-43c7-bf6e-aba60ef05ce8)) + (pin "15" (uuid 04b50ade-3db5-43b8-b4ff-96eb409d2f00)) + (pin "16" (uuid abe743fe-c59c-4351-ac69-c0a88da8edf8)) + (pin "17" (uuid 5520929f-7a68-464c-9e56-35eab67f1bd7)) + (pin "18" (uuid 24928397-79ff-496e-8496-308ba496eefb)) + (pin "19" (uuid 359ab6a3-0f38-4d70-8953-992c754e8718)) + (pin "20" (uuid ea2312dc-f907-47c4-b94f-975ad43bb832)) + (pin "21" (uuid b3c6b835-1bed-48b8-9887-baf44dc66243)) + (pin "22" (uuid 433987e5-7cfa-4cf3-85ae-131fe0d0f2aa)) + (pin "23" (uuid a9d70749-5d58-4a7a-997a-665481e68de2)) + (pin "24" (uuid 6dc4cdae-d319-4611-ac1c-a80f4ab4e1d4)) + (pin "25" (uuid 4b948d81-f87c-44d4-87a2-1c48c2306440)) + (pin "26" (uuid a269b7e1-2864-42e9-82df-3d5da36f52de)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 21.59 123.19 0) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45db4464-4125-48b8-8031-134dad993af8) + (property "Reference" "U1" (id 0) (at 22.225 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 22.225 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 21.59 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 21.59 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c056393d-1326-4160-8572-2d0a4a75864c)) + (pin "2" (uuid b2fe4ae5-c341-4eea-847d-2c684ec52d17)) + (pin "3" (uuid 843e8edd-d23a-486c-91e6-f9b5fb9fd21d)) + (pin "4" (uuid 40297f9e-5319-4f1c-82da-4b38a346726f)) + (pin "5" (uuid 392ea3e7-cdfb-42ca-b6c0-abdcca6805f2)) + (pin "6" (uuid b81a5b13-9aee-41f2-8658-47876de105ac)) + (pin "7" (uuid 2947d5a9-f9e4-40ae-ba64-b55d37b83802)) + (pin "8" (uuid d1d7253e-d9c0-4521-8856-7683eb49eab3)) + (pin "9" (uuid 2ac43196-5f61-4f35-a6a3-658bd20447d3)) + (pin "10" (uuid 6a4cdc7e-ba52-41bf-bd1e-3e807330cb07)) + (pin "11" (uuid ddd7d056-cb34-4257-a46f-f1227543cf67)) + (pin "12" (uuid 854e6e6a-67df-4566-9a39-4c2dd721e011)) + (pin "13" (uuid 6308ad7d-e796-410f-8567-2ca4a23d396e)) + (pin "14" (uuid 6c61c3c9-ce31-4e46-b669-87fa7f29f7c8)) + (pin "15" (uuid d5eed759-2311-4a6a-b9e4-130d41c1847d)) + (pin "16" (uuid bc94acef-4e1a-408a-a32a-254faa37a5f9)) + (pin "17" (uuid 8f63d1c3-3d2a-43fa-b8cf-1485b58f35d9)) + (pin "18" (uuid 878a5be7-2d71-4b53-afbc-b7d973756aac)) + (pin "19" (uuid f1a1d54a-29ed-492d-ac13-0b4ea376b32a)) + (pin "20" (uuid c6574610-734e-4c23-9b98-1a14f139917a)) + (pin "21" (uuid 9be44ae3-dddd-4ae4-9700-b27a437b0203)) + (pin "22" (uuid 4d47e119-1dad-4e4f-a921-e532e8cb4811)) + (pin "23" (uuid 36b7108d-a3d0-4e79-8d13-32a29d3a2310)) + (pin "24" (uuid d97a799b-eb3a-4cd1-9162-1867e8bcd9ad)) + (pin "25" (uuid 10536022-a8d1-4ad6-a1b2-ef715d43b5a5)) + (pin "26" (uuid f6cdbd0f-c76b-44be-876f-79e4294414b5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 58.42 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 479c222e-1c0c-44bc-9dcd-828762bbfb7e) + (property "Reference" "U6" (id 0) (at 58.42 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 58.42 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 59.69 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 86706518-365c-4fc8-ab61-55d263e4fb62)) + (pin "2" (uuid e6052654-e20f-4f94-b6b8-7af2dbd3429f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 55.88 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5035a001-814f-42c8-8b59-05a4bb3686f2) + (property "Reference" "U3" (id 0) (at 55.88 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 55.88 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 57.15 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 57.15 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ea784024-3c21-404b-b1e7-bc8f89b35189)) + (pin "2" (uuid 85eb6739-63a5-471e-9047-ca8570a7d2d6)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 114.3 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 55eda1dc-2a55-4007-bd48-61d9da627ca4) + (property "Reference" "U15" (id 0) (at 116.205 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 116.205 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 114.3 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 114.3 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e431ad89-d377-4188-a625-85742f829f5b)) + (pin "2" (uuid af54db67-98d0-485d-83ed-356c4d4e2d17)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 116.84 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 56c0ca23-a442-4f98-a4f9-eaf57a38e491) + (property "Reference" "U17" (id 0) (at 118.745 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 118.745 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 091eea49-fe6a-4f71-a211-7ccbb33ca6b1)) + (pin "2" (uuid 474fb33d-59fc-4c15-97a5-b26f7750f9b2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 241.3 74.93 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 583b707d-4987-4a5a-a8ae-9fecd24a47d9) + (property "Reference" "U1" (id 0) (at 245.11 74.295 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 245.11 76.835 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 241.3 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8d5b3c18-b3b8-4724-a49b-a2705ff8ec22)) + (pin "2" (uuid 495b1a7d-5534-4909-8060-ad0f1dfb9290)) + (pin "3" (uuid 779e12dd-0856-476a-89fe-ee1e99789c88)) + (pin "4" (uuid 3fb1aec6-afeb-44dc-8a7b-3aaaf330989e)) + (pin "5" (uuid b4bf7936-2de3-499b-879b-35ee2965ca56)) + (pin "6" (uuid 945079ce-7905-455f-8647-020f9024531b)) + (pin "7" (uuid 0602317c-78fc-44a1-bca5-6ae6fb6cbf19)) + (pin "8" (uuid eef5b78d-9ed3-4f69-8697-a2c9827c6397)) + (pin "9" (uuid 803fc383-a5ab-493c-bf79-f78d2217d258)) + (pin "10" (uuid bedeb92a-a5ee-4a24-9711-c359ad999c25)) + (pin "11" (uuid 5f444f49-1e6e-40dc-affe-124539962b29)) + (pin "12" (uuid f92a6efe-990f-45f2-af14-e863316de32b)) + (pin "13" (uuid 41fc4962-d949-4b2b-8ee6-9c4360347be0)) + (pin "14" (uuid d7068625-1639-4fe4-9065-39a22029a962)) + (pin "15" (uuid 5dceef3e-99a3-4f79-bec6-e065fa708fc2)) + (pin "16" (uuid 3237abd0-116d-43e7-a840-60755f986b35)) + (pin "17" (uuid 351c8a85-81fb-4bda-8697-d5fa216d07de)) + (pin "18" (uuid e78b436c-736a-4e3d-b35c-8551165888b7)) + (pin "19" (uuid 86309ccf-c6d5-4b18-a8e7-93cb685c166f)) + (pin "20" (uuid 119da1b7-9a0e-490e-8503-21c8ed2e8e60)) + (pin "21" (uuid 1b5cd119-4dd7-4491-9fa0-9e7fbb584afb)) + (pin "22" (uuid 77a7fdc6-9165-4e72-9426-5f2017ed7762)) + (pin "23" (uuid f0d4942c-679a-495a-a52c-dd0e92550008)) + (pin "24" (uuid 463c229a-6f8a-4240-94e4-57056247d558)) + (pin "25" (uuid 59f5bd3e-036d-4f65-9e69-ca062b1d2c26)) + (pin "26" (uuid 93c76b68-c433-4def-9401-cff4de42450f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 241.3 19.05 180) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5f21fe8b-89ce-4b3a-a914-c1b4e65719ba) + (property "Reference" "U1" (id 0) (at 245.11 18.415 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 245.11 20.955 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 241.3 19.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 19.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 912dddce-bad7-4eb2-aa6a-f6019de4a52f)) + (pin "2" (uuid 390db22b-c018-49c5-af8d-3c30613da907)) + (pin "3" (uuid 99991e47-81f0-4011-abf1-57696c9b2564)) + (pin "4" (uuid 53d5749c-90fb-47d2-9c71-c075d132e446)) + (pin "5" (uuid 5c28380f-72c7-4d9f-9d63-0942be680a62)) + (pin "6" (uuid c2fca86d-08d8-4f5d-8d92-db7dfb8fa0a5)) + (pin "7" (uuid 6a87b4ef-5efa-4e2b-b93d-d489903389f9)) + (pin "8" (uuid df46d6d1-85ad-41e5-93f4-b2167210ac2e)) + (pin "9" (uuid 3546dcac-b911-45ea-b20d-bf22bade3d27)) + (pin "10" (uuid 9f4b52f5-e829-4f2c-a710-786a57f8eb76)) + (pin "11" (uuid ada3cdb0-8039-42a4-b61f-23117eef38fd)) + (pin "12" (uuid 60237365-bb6d-418b-a83f-ace3a102201c)) + (pin "13" (uuid 77a5d72c-2b7e-4038-be96-ce5f3d652932)) + (pin "14" (uuid 0a0a6701-c412-44d0-bd0d-296f881dacad)) + (pin "15" (uuid 5bcb3c43-f1f9-403e-8e2c-dc01aab751fc)) + (pin "16" (uuid b318b103-c9c3-44e7-9e68-1b828a4c9c30)) + (pin "17" (uuid 66544f70-16d5-44c2-bc22-a9ba329e5e0d)) + (pin "18" (uuid 4dc4f472-5527-4c14-880f-61e0493cbafa)) + (pin "19" (uuid 4a7f27a3-dc99-4b25-a6db-1271a444597e)) + (pin "20" (uuid c88bc9b5-a596-4a8c-be59-252b182bca4e)) + (pin "21" (uuid 0b7dce28-f3a5-4914-a5ba-9b83e8fb9d66)) + (pin "22" (uuid 4c8655da-ddcb-45cd-922f-401324b721b7)) + (pin "23" (uuid efc0fea7-a798-4f42-8b2c-73ff0ab0eb08)) + (pin "24" (uuid 20fba8bd-382a-451c-a562-a93de7cab684)) + (pin "25" (uuid 2111e26e-fcf8-4c1d-abb2-6312a7e474bf)) + (pin "26" (uuid 95d3a8e8-9f79-4996-b0cf-3f0abd4bf2fa)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 224.79 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 65c324ec-e357-43e8-902f-0e7ca8e0c5ea) + (property "Reference" "U18" (id 0) (at 224.79 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 224.79 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 226.06 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 226.06 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d518f8fc-bc67-49ac-b29d-8aab0545d299)) + (pin "2" (uuid bf98076d-4947-4af1-8f9c-b3e09762f799)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 227.33 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7143a590-2b7e-4af5-ab89-1257a92a92e2) + (property "Reference" "U22" (id 0) (at 227.33 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 227.33 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 228.6 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4fa922fb-ce60-454b-bb7f-93cf9bb5ad75)) + (pin "2" (uuid 6656ef6b-5843-40c4-aea4-be61c0473b29)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 113.03 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 71b71e62-682a-4821-9bbb-dc417e9a9607) + (property "Reference" "U14" (id 0) (at 114.935 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 114.935 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 113.03 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 113.03 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8ca571b6-ce65-4d84-9f33-9fa569b7d3d6)) + (pin "2" (uuid 29e69e0b-d931-40e1-92ac-4ac6cb853bde)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 256.54 91.44 180) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7622cff9-0743-4afe-b143-fe29d0b3401f) + (property "Reference" "U1" (id 0) (at 260.35 90.805 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 260.35 93.345 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 256.54 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 256.54 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7bb31ac4-52f5-4f32-8cb2-99a83427acb7)) + (pin "2" (uuid 0d3f5094-351b-445c-b3f6-4be9cc3dc2e7)) + (pin "3" (uuid 6dbca6ee-36e8-4a7f-aad7-ee45c8c688cd)) + (pin "4" (uuid ca76a2c4-c2fe-4138-bd20-e461c0070fbe)) + (pin "5" (uuid 3fe81311-f32e-4167-8b16-8784d2e79119)) + (pin "6" (uuid 1e233a12-1468-45c4-aa63-4883cc6399e6)) + (pin "7" (uuid 8d7a7d80-0aae-449b-a813-c0b2c94ee007)) + (pin "8" (uuid 15b258d7-c87a-47fb-836f-0cfb8e6d068c)) + (pin "9" (uuid eb381dd6-0580-46a8-9cc5-1e0280dd55b3)) + (pin "10" (uuid 3d792ae1-c63a-45a6-9848-3538c9164c39)) + (pin "11" (uuid 5d388d66-6cb5-43e7-a8fd-8054abe44b37)) + (pin "12" (uuid 68c2074c-3f3a-47a0-ae50-6143174c76af)) + (pin "13" (uuid d153edeb-cca3-4ba9-98f7-cb3f1fafb804)) + (pin "14" (uuid c0258187-0ec6-42d3-8089-085efab4f266)) + (pin "15" (uuid 5d2d4d6d-1f09-40cb-9227-5fca69c02cea)) + (pin "16" (uuid e183d4ae-1f67-4015-bdf9-7b891ad7c9d7)) + (pin "17" (uuid 394e4165-91ef-4f6f-b080-17c0be4ccba8)) + (pin "18" (uuid 2e2997fa-8c7d-455b-837c-d546bde47118)) + (pin "19" (uuid 785ac958-05b7-4c63-874c-64256d0ccb4a)) + (pin "20" (uuid 97a7b4e9-541a-4692-aeb4-57745d153b46)) + (pin "21" (uuid 1fa525d5-ffd9-4a28-a2a4-d51c8c11e56b)) + (pin "22" (uuid 0c24fbd9-e7d0-4276-bbec-00314a89d6b8)) + (pin "23" (uuid 813655b7-c059-4210-9161-2e337a5f2cb4)) + (pin "24" (uuid e933df26-8377-4443-9f6b-0f83ace1e70d)) + (pin "25" (uuid dd1965ff-aa30-4922-bf5e-698cf802ce50)) + (pin "26" (uuid b6cebcc9-786c-4b88-99be-5fbb76541175)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 58.42 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 777ed1ae-f19f-457e-9623-98906cac6009) + (property "Reference" "U7" (id 0) (at 58.42 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 58.42 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 59.69 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 89e069e8-b014-4f71-8c66-4b8f11c5570d)) + (pin "2" (uuid b187b535-79e1-4ddb-9911-e2a08644d53d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 44.45 80.01 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7aab504d-4d39-4fbd-b43d-83cafa279718) + (property "Reference" "U1" (id 0) (at 45.085 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 45.085 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 44.45 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 44.45 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b03c7bb6-3366-44ac-943b-cb0c5019c423)) + (pin "2" (uuid fa70101a-4572-4306-a83b-ec840c55b224)) + (pin "3" (uuid cf749319-8c5e-420c-83ae-5b45cb3e4862)) + (pin "4" (uuid 06d2cb95-077a-45e6-9317-073a57baa76b)) + (pin "5" (uuid 2e1dbe4f-4e7e-477a-981b-42e8786fe42e)) + (pin "6" (uuid e52fbf19-10d5-4da8-b7cc-439dd6d47375)) + (pin "7" (uuid d2567ef9-82e3-4b1f-9a82-0602bd37aec5)) + (pin "8" (uuid 91c993e8-6a4a-4cad-bfe0-fd19a0d8ad09)) + (pin "9" (uuid efdf25d0-68f4-4648-873e-e89a67ba4b12)) + (pin "10" (uuid bf85be65-5d0c-4821-9bf3-0e8d5e56eed4)) + (pin "11" (uuid c31b30ca-3a0d-4ec7-a0a5-c0f128292fc6)) + (pin "12" (uuid e762ddc5-3a80-46d3-8145-b6ccc370b248)) + (pin "13" (uuid 25902357-0f24-4822-84d3-f3700fac8810)) + (pin "14" (uuid ad0116af-64f4-4515-b8f6-a91753ef0a92)) + (pin "15" (uuid f344f224-8258-489e-898a-ee06ce877e60)) + (pin "16" (uuid 7ea440b5-b5d9-4172-b85b-aa52d750fd94)) + (pin "17" (uuid eec22158-5a07-4a12-bcc9-95133a81f3d5)) + (pin "18" (uuid fc50f05e-c744-4b0c-942e-2421709b7a26)) + (pin "19" (uuid 143c8237-4e56-4be9-959b-93be7e7a067d)) + (pin "20" (uuid 7a39cb05-e2e8-498c-89e5-466e824019b9)) + (pin "21" (uuid fb5bd5bd-037a-4a11-b703-fa8c3ba4aac2)) + (pin "22" (uuid 5f322c5a-f1d6-4ab3-b59f-3404d20f3b89)) + (pin "23" (uuid 66bb3428-b642-444a-81f8-8c5e83fce7d8)) + (pin "24" (uuid 4caabe72-d59a-421c-9779-7aa22d9caf03)) + (pin "25" (uuid f5f0c574-a3ec-485b-9914-24aa6717fed2)) + (pin "26" (uuid d5b8eb20-ada1-45c1-b112-d74114e2f34c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 226.06 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7adee40d-082c-45e6-8c4a-7538b2be9e41) + (property "Reference" "U20" (id 0) (at 226.06 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 226.06 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 227.33 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 227.33 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 418b9e84-38b8-47b8-8375-6e3dd2b0ae12)) + (pin "2" (uuid 449e7e9f-c3ea-4bd9-a869-b997aa9e423e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 227.33 163.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 83a444f9-839d-40ac-a45c-93280935c657) + (property "Reference" "U23" (id 0) (at 227.33 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 227.33 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 228.6 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 35290ee8-1c9b-4b0c-97fd-fd06f5be1fd9)) + (pin "2" (uuid f046fa9b-65d2-4600-8a10-72b36e79c437)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 55.88 142.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 83e6f044-a295-49b1-91d3-1d1dba08c327) + (property "Reference" "U2" (id 0) (at 55.88 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 55.88 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 57.15 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 57.15 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5614a26a-b2e8-4508-823a-0f837535165c)) + (pin "2" (uuid 497d5372-f747-4750-ae4e-a203112166a0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 243.84 57.15 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a33218a3-ce12-4680-958e-e3c68183e21a) + (property "Reference" "U1" (id 0) (at 247.65 56.515 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 247.65 59.055 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 243.84 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 243.84 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aab7094b-9be2-4349-a1db-0fc8a3156497)) + (pin "2" (uuid 5ddeeb7e-075b-42c9-8e14-a008969433f9)) + (pin "3" (uuid f1807f99-5c99-44c3-9ec4-64e630c7e0fb)) + (pin "4" (uuid 72f7be32-c312-4c24-a41e-7e5a881a2cb1)) + (pin "5" (uuid 06aa84b5-d879-4dab-9f3b-4cde1411faae)) + (pin "6" (uuid f8bc5996-2183-4884-8331-0c1f6ffb1af4)) + (pin "7" (uuid 7cc773e1-0fd1-479f-bc7a-4b5fdd12cf74)) + (pin "8" (uuid b32e7b2c-a65c-4eef-b7c1-2fbb461b28ba)) + (pin "9" (uuid baf086ac-d0ea-45f3-aed6-b1a76f3fb0c8)) + (pin "10" (uuid 17b14777-7b12-44d4-ab90-6e51949a0762)) + (pin "11" (uuid 0054bb30-3baf-4d71-96f2-d1e0cea59e1f)) + (pin "12" (uuid 4086df19-5b29-464e-bf5f-1c7e32bd7979)) + (pin "13" (uuid ec046250-d81e-4a6f-848c-5cf204f0728f)) + (pin "14" (uuid 7c88e1f9-b54f-4c01-82bf-6a9fa28ca968)) + (pin "15" (uuid 3386f730-98e3-4c92-bede-5f437446b116)) + (pin "16" (uuid b33f0db0-662b-4261-90ce-db33217e34fc)) + (pin "17" (uuid 38a77027-ea31-4a21-9495-b5e6a5f7ad8b)) + (pin "18" (uuid 0fdb766b-4522-413c-ac1e-54b90a9f25a8)) + (pin "19" (uuid 5c1844c4-28db-414a-b5f1-2dc546ab6ebd)) + (pin "20" (uuid 93fefcb3-60f7-4421-9900-43d9bac0197a)) + (pin "21" (uuid 5c50c7c0-e029-4bab-bc58-d2ed8b868f79)) + (pin "22" (uuid caa92549-c058-40ac-8cc7-a48858c88d16)) + (pin "23" (uuid 1ae81466-9edd-40d4-bf2d-ec33fe238089)) + (pin "24" (uuid 102bc4b2-0f52-447c-88f6-a872d53134c2)) + (pin "25" (uuid daf39a1b-e62c-4a34-87a7-3daf33bcde9e)) + (pin "26" (uuid 007bff22-9fda-4b0f-b982-cda2a3baed95)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 200.66 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7de0ad3-df2b-48f6-b73a-6f0524413b19) + (property "Reference" "X6" (id 0) (at 202.668 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 202.668 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 200.66 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f6b51296-bc6f-418a-b13a-3ce453befc42)) + (pin "2" (uuid 7e7d9462-576f-4e46-93fd-66f50a68e7c1)) + (pin "3" (uuid d9aa2e8c-c150-43e7-8ef9-4ae22c77e192)) + (pin "4" (uuid 5c8dd54a-86a1-4858-9a23-21b98cba6661)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 83.82 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b15ed110-0571-4a20-b9ee-ffacfade0298) + (property "Reference" "U8" (id 0) (at 83.82 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 83.82 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 85.09 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 85.09 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c45577a9-70ed-431d-8999-8033d79aa897)) + (pin "2" (uuid 8432d76c-fff9-4e3b-bf9d-60ec4543b3b4)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 198.12 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b5fa6a6f-c895-49de-9602-d4c61d996697) + (property "Reference" "X2" (id 0) (at 200.128 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 200.128 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ba20ef29-4436-4525-b1aa-4b2473d59a34)) + (pin "2" (uuid a118414d-b58b-4493-8445-f6c4317ecbf7)) + (pin "3" (uuid 20b67218-b778-4cae-8a48-c342f90243a4)) + (pin "4" (uuid 065bf276-00b5-4184-8a52-dd8e272cca0b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 41.91 142.24 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb419d96-7917-44c6-ac37-198003a0db5f) + (property "Reference" "U1" (id 0) (at 42.545 137.16 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 42.545 139.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 41.91 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 41.91 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5cdd94c6-653d-46f4-ac01-375054f83dc2)) + (pin "2" (uuid a98be99c-378f-4089-b5ee-d7b17c1d492c)) + (pin "3" (uuid 6f4a8908-2b2f-4da2-ae2b-1696a6cc9de7)) + (pin "4" (uuid 36102749-6f19-4cdc-a64e-4d6842d512c9)) + (pin "5" (uuid c745043e-7799-4110-86ec-1a296fbf0aea)) + (pin "6" (uuid 3d05bc75-c373-48cc-8293-654a6225d5b9)) + (pin "7" (uuid d3d42f54-d29a-4ece-b5d4-46e050a0a15f)) + (pin "8" (uuid 4614cffe-a2bd-482e-b003-2c6588c3f45f)) + (pin "9" (uuid f1746d0f-e471-4f20-8459-7454f9f365e6)) + (pin "10" (uuid 69dd2289-ca26-428f-ba56-357b935a0e73)) + (pin "11" (uuid 622f236b-1c97-42fe-a00c-4984e189a4ac)) + (pin "12" (uuid f08cb3ca-cc05-4e9e-94f0-3d44802ff9bb)) + (pin "13" (uuid b56a70e9-56c9-4cf3-a48c-80fa294f3ed0)) + (pin "14" (uuid bc038d24-f178-4e44-b36f-91eda39a14ba)) + (pin "15" (uuid 8cd1aa20-3b42-4b6a-b73c-800022e2ec21)) + (pin "16" (uuid 64dd9391-635f-4fc8-b2e1-85b41e322ffc)) + (pin "17" (uuid d32fcec0-921e-48f5-9e02-60a3e4907b67)) + (pin "18" (uuid 03c82a96-18fa-496f-94db-751fe4af5533)) + (pin "19" (uuid 25f26b83-238c-452b-8b97-693e685c2c0e)) + (pin "20" (uuid e6d9294b-b179-4f2a-ade0-84b607ef3080)) + (pin "21" (uuid 272010b3-6de6-4cdb-8b80-2c2ad5648b2f)) + (pin "22" (uuid adbbe4ae-d832-4676-9f13-3503950822fe)) + (pin "23" (uuid cf9382f1-40ae-4906-8789-192227be34a8)) + (pin "24" (uuid 86a9abc6-96c5-4d06-9b62-bc4516012a0f)) + (pin "25" (uuid b8c26b2b-407a-4d86-8807-aefedaff3134)) + (pin "26" (uuid 853b108b-e46d-497d-aad5-bf7b15892958)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 198.12 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bbe29f60-eb45-4897-b1ac-bcdbd7cec3cf) + (property "Reference" "X1" (id 0) (at 200.128 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 200.128 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bb56daff-f9fb-476e-a3a8-5b85d4fc3dd8)) + (pin "2" (uuid 665ab87d-e8d2-45f3-bdbd-e8c68050853f)) + (pin "3" (uuid 779be968-4739-403e-8746-453e7b89744a)) + (pin "4" (uuid 1a48982f-eb1d-48b4-bc77-cfdddc72122e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 41.91 186.69 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bf65fb93-8fb8-40ef-ae18-4bcc9a0ce06b) + (property "Reference" "U1" (id 0) (at 42.545 181.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 42.545 184.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 41.91 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 41.91 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59da97f4-6da6-4610-add7-77ba629760ce)) + (pin "2" (uuid a0b94c2b-a940-4c19-83b0-1143fe7a3299)) + (pin "3" (uuid b3a1526e-9fae-461f-b50e-e4a0cb5bef2a)) + (pin "4" (uuid 4149ac53-4e89-4fc6-839d-d4e623bf2a57)) + (pin "5" (uuid a871ea9c-317a-4b47-b85a-563c06b10f7e)) + (pin "6" (uuid f0f39edd-3a2c-4c29-8627-d83a059d5ead)) + (pin "7" (uuid 76afa0b3-292b-4364-85d3-b9b5d1796113)) + (pin "8" (uuid 6659ee32-b9e9-4c35-baea-363ac27547d0)) + (pin "9" (uuid c4ed1768-1ed0-4637-8d12-278656b132c2)) + (pin "10" (uuid 6dca1549-4563-4a9e-a22d-4684fcee30a9)) + (pin "11" (uuid 6ef20534-d74a-487d-9037-7f638f20c1ee)) + (pin "12" (uuid ec0becb5-a810-4c68-b8d5-328afb8a36ec)) + (pin "13" (uuid 183dc274-b8c4-45a6-884b-e1240782e404)) + (pin "14" (uuid 99af8843-ab48-41bc-9b18-bbed3c10ad2a)) + (pin "15" (uuid fabc350e-7fc6-43a6-9d8a-052b3ebe5050)) + (pin "16" (uuid 5ac16ccc-1f3d-47c6-955b-d95bfde755c3)) + (pin "17" (uuid 6e1c5fec-3730-4b8f-9916-40734ff285ca)) + (pin "18" (uuid aeff3e0f-6c1e-4147-9510-65c9e367fb5e)) + (pin "19" (uuid 44624274-ba27-4efe-aec0-71bb76aba580)) + (pin "20" (uuid 24289f64-fc82-44f5-b875-2ea49d0b21f9)) + (pin "21" (uuid ad3fae5f-a387-4a43-a884-4f0292d3d72d)) + (pin "22" (uuid fe2e7608-a5ef-42c9-a77a-ec0d425b95a1)) + (pin "23" (uuid a1667d10-395d-4a7f-a5c0-d65c775a104c)) + (pin "24" (uuid 3167ba31-0e7e-47cb-a3db-614815f00425)) + (pin "25" (uuid e8d764ea-4df0-4b97-bb0e-f12b72030380)) + (pin "26" (uuid 32f54839-d178-4b2a-a6fc-5e9a75bc2634)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 58.42 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c336a991-7dbd-41ed-a219-25cd822029fd) + (property "Reference" "U5" (id 0) (at 58.42 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 58.42 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 59.69 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4469a00a-92a8-40ce-a56b-65069af1b095)) + (pin "2" (uuid 76e803e3-5cfd-453d-9871-9a9a8fc89b98)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 229.87 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2a591bc-912e-4fd9-9a7a-ca6c9083133a) + (property "Reference" "U25" (id 0) (at 229.87 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 229.87 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 231.14 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 231.14 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b67058b-ed90-422d-acc6-7999b96221e4)) + (pin "2" (uuid f3819d85-2bf2-4001-a75f-95370b8b3c24)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 198.12 182.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d5db2873-9f8d-4edc-ae4a-525b1d855714) + (property "Reference" "X4" (id 0) (at 200.128 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 200.128 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 198.12 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 198.12 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b207bca-06ef-4df2-b7c0-df367dfa8b1c)) + (pin "2" (uuid 35580acb-07b0-4dd4-9189-d33c1f3b412c)) + (pin "3" (uuid 84b96d3e-5820-4893-9656-f410d9df1b1d)) + (pin "4" (uuid 578b7f5e-3c1f-46c9-ab70-fd48b3bf966c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 87.63 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da3d74e6-1c51-4237-b9e7-bf5dc292fa83) + (property "Reference" "U13" (id 0) (at 87.63 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 87.63 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 88.9 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 88.9 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2db2f757-d955-4aa3-9bd7-a71fd7d25eaa)) + (pin "2" (uuid 5aef689e-2fe9-438d-be1d-daa1f67004e1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 238.76 181.61 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ddc75e92-4c06-4ae4-8cea-b484119d1d45) + (property "Reference" "U1" (id 0) (at 242.57 180.975 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 242.57 183.515 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 238.76 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 238.76 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d95feacc-c1b0-45e7-9407-b87ea5954991)) + (pin "2" (uuid 7387811e-7fc7-40f3-a016-a4d17aab175e)) + (pin "3" (uuid c5ad777b-ca75-423b-b9f6-5c2b1367ea25)) + (pin "4" (uuid 53a8c263-ea0e-4333-9f25-ae9936c23f89)) + (pin "5" (uuid 43e075dc-3e0b-4e03-abbe-a27ac89a38ca)) + (pin "6" (uuid b7eef1a6-116f-4da2-b897-c0ece4ebd9f0)) + (pin "7" (uuid b0d9147e-f8db-46d2-88b1-57e94838365c)) + (pin "8" (uuid f1957745-8031-47d6-b7f2-ffda4552959b)) + (pin "9" (uuid dafea9bf-d2e5-4932-97d3-9fc4fb669f0b)) + (pin "10" (uuid 2a90744a-5b35-41e6-8a77-ef3a1485d75a)) + (pin "11" (uuid 241c616d-4f3e-4199-9f15-918e8aabb760)) + (pin "12" (uuid 85bab564-a45e-4dda-8751-394c754ed689)) + (pin "13" (uuid 91669669-c7fc-4e5d-bb79-064198b706d3)) + (pin "14" (uuid f7ce3e61-1851-49ca-8d9d-c907a56dd41b)) + (pin "15" (uuid 0e7cbf01-9358-4a21-b991-7322928a0c1d)) + (pin "16" (uuid eb6c3426-60f5-4a32-a3a5-301407ac0157)) + (pin "17" (uuid 7b9fcf69-7a01-409a-8a5a-b216969228f9)) + (pin "18" (uuid b8690396-7fe2-4e90-97c8-a1d9e2b49e7e)) + (pin "19" (uuid fae06395-f35d-4b71-9288-0855c63d2612)) + (pin "20" (uuid f60d07bf-fe62-45cb-bace-70a7fe6dbf6b)) + (pin "21" (uuid d11130af-c57c-4105-b8b6-3bff34f12bdd)) + (pin "22" (uuid 2bbba47a-1795-49bd-aad7-0ee987d830f0)) + (pin "23" (uuid fbada47a-648f-4305-82a0-1c7753269e8e)) + (pin "24" (uuid 7ba8175b-0653-40ff-a9c9-9a1f5bd05e76)) + (pin "25" (uuid 3610135a-12f4-4348-9904-8241c3bab796)) + (pin "26" (uuid aff298ad-b2bb-4e4f-b5a0-4fcf6a51efa7)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 200.66 20.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e0bfdd0e-9c22-4581-bb03-0df38b6350d4) + (property "Reference" "X5" (id 0) (at 202.668 10.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 202.668 13.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 200.66 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6c9c8e53-1be7-4298-bacf-a1619cb5bfff)) + (pin "2" (uuid c195a1a7-75f0-4cac-be62-1ec7df62e6df)) + (pin "3" (uuid 3b8b7684-9297-4fb0-95ea-9e48e3360078)) + (pin "4" (uuid 5616c3e7-f51e-4a68-81d0-b0bf1a29cf05)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 228.6 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e299b849-849b-40f8-bbd1-f8e04c28e704) + (property "Reference" "U24" (id 0) (at 228.6 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 228.6 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 229.87 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 229.87 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 42007ce3-0992-4160-9db5-7033725f97ae)) + (pin "2" (uuid 3d572517-6a95-4195-ae85-596af6bd8f53)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 85.09 142.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2de4f42-3d34-4d8d-a18f-213e2c1d57ae) + (property "Reference" "U9" (id 0) (at 86.995 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 86.995 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 85.09 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 85.09 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e982a8e1-7624-48af-a972-aea37cf5847a)) + (pin "2" (uuid d36ef299-7f2b-46ed-a273-6aa25bff55b8)) + ) + + (symbol (lib_id "eSim_Subckt:3_and") (at 200.66 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e34d6dbe-171c-4229-85da-bccfdcc258ec) + (property "Reference" "X7" (id 0) (at 202.668 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "3_and" (id 1) (at 202.668 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 200.66 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3f00d424-6886-45ad-9ff2-1377a0787ca3)) + (pin "2" (uuid f3d697a6-b1e5-4c45-94a0-3448f89418c0)) + (pin "3" (uuid 6a40ab25-c390-4429-a554-fba68b1c31c0)) + (pin "4" (uuid 6b14d65b-5073-492c-9a8a-4904efa3ad90)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 41.91 168.91 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e6ddbfcc-c90a-4c61-8994-95b45092190c) + (property "Reference" "U1" (id 0) (at 42.545 163.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 42.545 166.37 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 41.91 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 41.91 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a02f7e8-7b90-4bed-b6be-962cd8ece2a8)) + (pin "2" (uuid 1e5dd5be-3b7f-4923-a8e1-34cdb16dbc5d)) + (pin "3" (uuid ee5fb6a2-fdf8-4581-ab1e-84cd5fcfa45a)) + (pin "4" (uuid 4d2e8aa0-0b3e-42df-b068-16f49a2d17dd)) + (pin "5" (uuid 0656005e-7d10-4c59-abaa-2495f876d24a)) + (pin "6" (uuid c7bc94ab-1df9-407c-b060-da2f97f01446)) + (pin "7" (uuid 304199cb-0225-4bc0-84ec-3c3f2df14330)) + (pin "8" (uuid 3b4e04fc-81a4-439e-9a86-623b86ec06ea)) + (pin "9" (uuid 6f3b6943-be4a-45d3-a14a-6baaf70797f0)) + (pin "10" (uuid 7fa080c0-bfaf-4bd5-bc23-c57de3b1fb94)) + (pin "11" (uuid 490081b0-2093-4744-b804-c876c1c5c9ef)) + (pin "12" (uuid 193a0234-3513-4890-83bc-cf41cc3aabe6)) + (pin "13" (uuid 26c2ccba-fba1-49e5-a608-c4614ac14347)) + (pin "14" (uuid befae2d5-ac02-4713-9117-852d6ca94c47)) + (pin "15" (uuid 43899bb8-e7e0-4f74-a7a7-25f29f0b8ab4)) + (pin "16" (uuid b2da27e7-8082-47f0-acf4-dcf7476540bb)) + (pin "17" (uuid 017fe1f7-0be4-40f4-9076-2f32fc4a659d)) + (pin "18" (uuid 0684ea99-fc79-4b7a-925b-f1072841ae98)) + (pin "19" (uuid 96cbd0fb-2e94-4005-9fee-d002469943e3)) + (pin "20" (uuid 1990cff8-3b22-4a08-bd31-5acde3000b09)) + (pin "21" (uuid d3579342-d378-49f3-86a9-554abee4c4e5)) + (pin "22" (uuid d9544e35-5563-4519-bec6-4d2647cfb7fb)) + (pin "23" (uuid 4819e1ef-5a90-432e-b055-8d529216ec70)) + (pin "24" (uuid 4d6c01b1-ff46-46a3-8ba9-6023bd0a03a5)) + (pin "25" (uuid e8c2ec5a-d865-4ed7-ad0b-371101be6ba0)) + (pin "26" (uuid 2631d0f1-ef91-4050-8684-7acb2e714834)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 227.33 19.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ece6663f-085d-4197-8b2b-3eda72c7fe7f) + (property "Reference" "U21" (id 0) (at 227.33 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 227.33 16.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 228.6 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ce0787ce-65b1-4d44-9315-c125dd7d4b6e)) + (pin "2" (uuid fe084943-df23-4b3d-a780-9dd1c4b981dc)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 44.45 62.23 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed5999ee-ac2f-421b-99c8-708b79b83662) + (property "Reference" "U1" (id 0) (at 45.085 57.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 45.085 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 44.45 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 44.45 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7a94e10-ef34-4489-a08a-e2fc88773614)) + (pin "2" (uuid 4142d308-54c9-4730-a08a-39c311e62e37)) + (pin "3" (uuid 8cd0852f-09cd-4c3f-89a1-ee946d0406e7)) + (pin "4" (uuid 531ab324-8290-4f4a-aeb2-5d5a33f340b4)) + (pin "5" (uuid a18bee27-2d08-4aa8-a708-4c0cfd018a95)) + (pin "6" (uuid f8f1abe8-4c80-4751-b5b6-26e6d1378367)) + (pin "7" (uuid d666ecb2-c947-464b-9c42-0a159ccb4f1f)) + (pin "8" (uuid d8d37d62-bb5c-444d-bcc3-da61dc93bd82)) + (pin "9" (uuid 16189fb4-924b-49dc-a1e1-8ffa03b5eef7)) + (pin "10" (uuid 9ab4004b-610e-49db-ae04-5ed55b0483a2)) + (pin "11" (uuid f700064f-26c4-4e77-84a9-98235bdaedab)) + (pin "12" (uuid c465bc9e-986b-4ea6-b189-572f6012557f)) + (pin "13" (uuid c49ab196-48d2-4342-9b76-1b91deaa02b8)) + (pin "14" (uuid 8daf6a5e-151b-42db-9a02-0c856862c7ac)) + (pin "15" (uuid 17d143d3-836a-4729-8f24-46814357fb80)) + (pin "16" (uuid 40284513-484d-4db7-be3b-06ddd55e4942)) + (pin "17" (uuid 7d0d7f83-2f10-4303-8674-2632a2865dbb)) + (pin "18" (uuid 10209ea7-70e8-474d-91b8-49cb4c68ef95)) + (pin "19" (uuid 7cd0d291-7fea-4122-a1fe-16caa90e4a82)) + (pin "20" (uuid 81373066-99a5-4850-86c5-6ca780516b72)) + (pin "21" (uuid 5461a5c3-84ee-4572-9b6a-c5abea291a1d)) + (pin "22" (uuid b405ebf9-131a-4a4b-80a1-38cb767ddc73)) + (pin "23" (uuid 9b12727e-994b-465b-9fa4-692867ddfdbc)) + (pin "24" (uuid 11c1eff8-1c39-4116-b5da-87a89060202d)) + (pin "25" (uuid 78906b1f-3ffb-4f5b-b4e6-d09effc5c772)) + (pin "26" (uuid 03c0e316-10c5-4108-919d-332e3bc16b06)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 238.76 125.73 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid edcf7c31-1216-492b-b808-ad4302dd4e58) + (property "Reference" "U1" (id 0) (at 242.57 125.095 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 242.57 127.635 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 238.76 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 238.76 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid da91e326-1ff6-41f0-bd69-711dcdd18272)) + (pin "2" (uuid 5b3730bb-bb6d-47db-8075-ad3d084a1f40)) + (pin "3" (uuid 163f8f27-3e28-44f2-a501-91c45ff18086)) + (pin "4" (uuid 5944fdd8-b821-4260-b0d6-4e0302bcc200)) + (pin "5" (uuid ece6f7a8-04cd-4ed2-91d9-da8da4b5321d)) + (pin "6" (uuid 2d142a87-9cee-4e2f-80ed-1eab555b1f97)) + (pin "7" (uuid c4acd475-7cbe-472c-9ec4-df638bac4422)) + (pin "8" (uuid bda025dc-d56d-41d6-b754-766a753419ea)) + (pin "9" (uuid 33775f47-b899-4322-8852-f259d9eb7b57)) + (pin "10" (uuid 8fedeedb-bf04-435e-aa39-bae31e5eaeab)) + (pin "11" (uuid 65ec5a1c-3e52-427e-ab48-3146f9e2b453)) + (pin "12" (uuid 94048797-81d9-43fc-b073-3014707bb1f2)) + (pin "13" (uuid 911aa6ec-acd9-432a-8089-ff215805f76e)) + (pin "14" (uuid 4c90fce5-6c50-4ebe-9f8b-3afebeb9c157)) + (pin "15" (uuid 184eda39-f5c4-4f98-9d06-c6972d7e8aa6)) + (pin "16" (uuid 69144369-d806-4c54-b1a6-21b38eb90d8b)) + (pin "17" (uuid 64ffa5b9-cd9c-4f27-9ecb-b40643354f8f)) + (pin "18" (uuid b0ad4c6f-f751-4b6a-b6aa-e2ed62b6f44d)) + (pin "19" (uuid 9e231d34-e7d4-4da2-8e23-93625a8f31a0)) + (pin "20" (uuid 6d7b48c8-8cb2-4e25-afc7-a05d514aa500)) + (pin "21" (uuid ef9e16d7-5f9c-493b-aeb0-3db81063f46c)) + (pin "22" (uuid 8c077680-63d9-416b-9281-8f973b86edcc)) + (pin "23" (uuid 46c8f22e-8df3-488f-aa1c-8e520ed93b68)) + (pin "24" (uuid 4a934ff0-59e1-4459-bbc0-2b09117821a1)) + (pin "25" (uuid 4a16c165-4f45-4d7b-8c11-9807da041c35)) + (pin "26" (uuid 149292fd-38a9-4b7d-9865-5871dbbfb4d9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 240.03 144.78 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f6a4048b-8512-4c75-ae12-57339d524d2e) + (property "Reference" "U1" (id 0) (at 243.84 144.145 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 243.84 146.685 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 240.03 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 240.03 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 47c43ba0-7d44-4720-b8a8-e30828795b28)) + (pin "2" (uuid eaa506e9-f305-4646-8d1a-fff9166192dc)) + (pin "3" (uuid 959ac8f7-d6e6-46b8-a1af-4b41749aede7)) + (pin "4" (uuid 0a69ddc5-f417-414d-9c69-c57e6473a6b5)) + (pin "5" (uuid 16e9ba61-ed3a-430e-8b6e-e410dc1eb3d5)) + (pin "6" (uuid 1f6636aa-5765-4567-9d21-518f1529c7fe)) + (pin "7" (uuid 551c67aa-1a3e-4863-a8f3-9467a4410719)) + (pin "8" (uuid 1c1642e0-7e0f-4996-99ac-2d9ed07d6b73)) + (pin "9" (uuid 53e44fc4-7f63-4b70-87aa-7147ba038584)) + (pin "10" (uuid 424c7ba8-56ce-4d0b-928f-1d585ea341e0)) + (pin "11" (uuid 72e1ae79-38c3-4a95-adb7-3684c5b21d18)) + (pin "12" (uuid 08001ac6-8271-47dd-93bf-bd9dd8d9b4b1)) + (pin "13" (uuid 3254159f-0c88-440c-bdcb-8a3843573efd)) + (pin "14" (uuid 4ebcbaca-21b0-4f0b-87cc-43a2cd58bf09)) + (pin "15" (uuid 53089a7a-758d-4cdf-9fb1-d4f1bb883db2)) + (pin "16" (uuid 8a6952a2-d55b-49d8-8c40-54f4f1393844)) + (pin "17" (uuid 6c8c7555-1639-4abf-93cc-00d0f1376374)) + (pin "18" (uuid d8aa2cdd-f2fc-4d74-82ff-b75c591241c1)) + (pin "19" (uuid d1b21b26-d57f-4c62-b878-92c0d9adac13)) + (pin "20" (uuid a6e8d635-9c1e-4a29-ad60-5cdba2e8db99)) + (pin "21" (uuid a87a07af-8217-4e7f-816b-70d30899a7b7)) + (pin "22" (uuid 91416901-b1be-40d2-ace6-d8752728bec7)) + (pin "23" (uuid 89d8852b-465a-4675-bafe-032257459892)) + (pin "24" (uuid b18cd07a-3227-4a3c-803e-1d89cc865019)) + (pin "25" (uuid 7dea435a-ae38-4f09-b94b-aed3b64644e7)) + (pin "26" (uuid f1622bea-a3ea-4e75-b04a-74ab020614e1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 55.88 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fab83bf0-8efa-42a3-a611-c1385f478007) + (property "Reference" "U4" (id 0) (at 55.88 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 55.88 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 57.15 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 57.15 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e3159478-0e99-4d71-b14a-19154309eff8)) + (pin "2" (uuid 374b4356-1691-4110-aa43-a5ca4afabc49)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/121d8688-1d8d-40e9-9263-2b244d45ea04" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/ed5999ee-ac2f-421b-99c8-708b79b83662" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/7aab504d-4d39-4fbd-b43d-83cafa279718" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/5f21fe8b-89ce-4b3a-a914-c1b4e65719ba" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/3a98f699-5721-4794-814c-5767205ddb2f" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/a33218a3-ce12-4680-958e-e3c68183e21a" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/583b707d-4987-4a5a-a8ae-9fecd24a47d9" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/7622cff9-0743-4afe-b143-fe29d0b3401f" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/ddc75e92-4c06-4ae4-8cea-b484119d1d45" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/0df7fdb4-5291-468a-82c0-a5a67df713e0" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/f6a4048b-8512-4c75-ae12-57339d524d2e" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/edcf7c31-1216-492b-b808-ad4302dd4e58" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/bf65fb93-8fb8-40ef-ae18-4bcc9a0ce06b" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/e6ddbfcc-c90a-4c61-8994-95b45092190c" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/bb419d96-7917-44c6-ac37-198003a0db5f" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/45db4464-4125-48b8-8031-134dad993af8" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/83e6f044-a295-49b1-91d3-1d1dba08c327" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5035a001-814f-42c8-8b59-05a4bb3686f2" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/fab83bf0-8efa-42a3-a611-c1385f478007" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c336a991-7dbd-41ed-a219-25cd822029fd" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/479c222e-1c0c-44bc-9dcd-828762bbfb7e" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/777ed1ae-f19f-457e-9623-98906cac6009" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b15ed110-0571-4a20-b9ee-ffacfade0298" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e2de4f42-3d34-4d8d-a18f-213e2c1d57ae" + (reference "U9") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/38173ebb-b26a-4e46-b3a8-7f7c39ba3e1a" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/270e21da-8390-44d6-a566-e4f05ffff9f8" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/20dbd82d-e083-4bcb-80ef-407b9f003a05" + (reference "U12") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/da3d74e6-1c51-4237-b9e7-bf5dc292fa83" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/71b71e62-682a-4821-9bbb-dc417e9a9607" + (reference "U14") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/55eda1dc-2a55-4007-bd48-61d9da627ca4" + (reference "U15") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/1ae5ac5e-faa1-497f-8fbd-ff89b43e1dd6" + (reference "U16") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/56c0ca23-a442-4f98-a4f9-eaf57a38e491" + (reference "U17") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/65c324ec-e357-43e8-902f-0e7ca8e0c5ea" + (reference "U18") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/05ee0dfe-f6e4-4962-9bfd-df2dc6dd038d" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7adee40d-082c-45e6-8c4a-7538b2be9e41" + (reference "U20") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ece6663f-085d-4197-8b2b-3eda72c7fe7f" + (reference "U21") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7143a590-2b7e-4af5-ab89-1257a92a92e2" + (reference "U22") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/83a444f9-839d-40ac-a45c-93280935c657" + (reference "U23") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e299b849-849b-40f8-bbd1-f8e04c28e704" + (reference "U24") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d2a591bc-912e-4fd9-9a7a-ca6c9083133a" + (reference "U25") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bbe29f60-eb45-4897-b1ac-bcdbd7cec3cf" + (reference "X1") (unit 1) (value "3_and") (footprint "") + ) + (path "/b5fa6a6f-c895-49de-9602-d4c61d996697" + (reference "X2") (unit 1) (value "3_and") (footprint "") + ) + (path "/2235db50-30fa-4bf9-8355-8623cae456da" + (reference "X3") (unit 1) (value "3_and") (footprint "") + ) + (path "/d5db2873-9f8d-4edc-ae4a-525b1d855714" + (reference "X4") (unit 1) (value "3_and") (footprint "") + ) + (path "/e0bfdd0e-9c22-4581-bb03-0df38b6350d4" + (reference "X5") (unit 1) (value "3_and") (footprint "") + ) + (path "/a7de0ad3-df2b-48f6-b73a-6f0524413b19" + (reference "X6") (unit 1) (value "3_and") (footprint "") + ) + (path "/e34d6dbe-171c-4229-85da-bccfdcc258ec" + (reference "X7") (unit 1) (value "3_and") (footprint "") + ) + (path "/037afa56-1af8-4732-9fa7-b017ae51cfab" + (reference "X8") (unit 1) (value "3_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74HC139/SN74HC139.sub b/library/SubcircuitLibrary/SN74HC139/SN74HC139.sub new file mode 100644 index 000000000..95ad4e416 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/SN74HC139.sub @@ -0,0 +1,111 @@ +* Subcircuit SN74HC139 +.subckt SN74HC139 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ unconnected-_u1-pad16_ +.title kicad schematic +.include 3_and.sub +* u21 net-_u21-pad1_ net-_u1-pad4_ d_inverter +* u24 net-_u24-pad1_ net-_u1-pad5_ d_inverter +* u25 net-_u25-pad1_ net-_u1-pad6_ d_inverter +* u22 net-_u22-pad1_ net-_u1-pad7_ d_inverter +x5 net-_u11-pad1_ net-_u13-pad1_ net-_u12-pad2_ net-_u21-pad1_ 3_and +x6 net-_u12-pad2_ net-_u13-pad1_ net-_u16-pad2_ net-_u24-pad1_ 3_and +x8 net-_u12-pad2_ net-_u16-pad2_ net-_u17-pad2_ net-_u22-pad1_ 3_and +x7 net-_u12-pad2_ net-_u11-pad1_ net-_u17-pad2_ net-_u25-pad1_ 3_and +* u6 net-_u1-pad2_ net-_u11-pad1_ d_inverter +* u5 net-_u1-pad1_ net-_u12-pad1_ d_inverter +* u17 net-_u13-pad2_ net-_u17-pad2_ d_buffer +* u12 net-_u12-pad1_ net-_u12-pad2_ d_buffer +* u16 net-_u11-pad2_ net-_u16-pad2_ d_buffer +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +* u20 net-_u20-pad1_ net-_u1-pad11_ d_inverter +* u18 net-_u18-pad1_ net-_u1-pad12_ d_inverter +x1 net-_u3-pad2_ net-_u10-pad1_ net-_u9-pad2_ net-_u18-pad1_ 3_and +x2 net-_u9-pad2_ net-_u10-pad1_ net-_u14-pad2_ net-_u20-pad1_ 3_and +x3 net-_u9-pad2_ net-_u3-pad2_ net-_u15-pad2_ net-_u23-pad1_ 3_and +x4 net-_u9-pad2_ net-_u14-pad2_ net-_u15-pad2_ net-_u19-pad1_ 3_and +* u23 net-_u23-pad1_ net-_u1-pad10_ d_inverter +* u19 net-_u19-pad1_ net-_u1-pad9_ d_inverter +* u7 net-_u1-pad3_ net-_u13-pad1_ d_inverter +* u13 net-_u13-pad1_ net-_u13-pad2_ d_inverter +* u4 net-_u1-pad13_ net-_u10-pad1_ d_inverter +* u3 net-_u1-pad14_ net-_u3-pad2_ d_inverter +* u2 net-_u1-pad15_ net-_u2-pad2_ d_inverter +* u9 net-_u2-pad2_ net-_u9-pad2_ d_buffer +* u14 net-_u14-pad1_ net-_u14-pad2_ d_buffer +* u15 net-_u10-pad2_ net-_u15-pad2_ d_buffer +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u8 net-_u3-pad2_ net-_u14-pad1_ d_inverter +a1 net-_u21-pad1_ net-_u1-pad4_ u21 +a2 net-_u24-pad1_ net-_u1-pad5_ u24 +a3 net-_u25-pad1_ net-_u1-pad6_ u25 +a4 net-_u22-pad1_ net-_u1-pad7_ u22 +a5 net-_u1-pad2_ net-_u11-pad1_ u6 +a6 net-_u1-pad1_ net-_u12-pad1_ u5 +a7 net-_u13-pad2_ net-_u17-pad2_ u17 +a8 net-_u12-pad1_ net-_u12-pad2_ u12 +a9 net-_u11-pad2_ net-_u16-pad2_ u16 +a10 net-_u11-pad1_ net-_u11-pad2_ u11 +a11 net-_u20-pad1_ net-_u1-pad11_ u20 +a12 net-_u18-pad1_ net-_u1-pad12_ u18 +a13 net-_u23-pad1_ net-_u1-pad10_ u23 +a14 net-_u19-pad1_ net-_u1-pad9_ u19 +a15 net-_u1-pad3_ net-_u13-pad1_ u7 +a16 net-_u13-pad1_ net-_u13-pad2_ u13 +a17 net-_u1-pad13_ net-_u10-pad1_ u4 +a18 net-_u1-pad14_ net-_u3-pad2_ u3 +a19 net-_u1-pad15_ net-_u2-pad2_ u2 +a20 net-_u2-pad2_ net-_u9-pad2_ u9 +a21 net-_u14-pad1_ net-_u14-pad2_ u14 +a22 net-_u10-pad2_ net-_u15-pad2_ u15 +a23 net-_u10-pad1_ net-_u10-pad2_ u10 +a24 net-_u3-pad2_ net-_u14-pad1_ u8 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u22 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u17 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u12 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u16 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u14 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u15 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN74HC139 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC139/SN74HC139_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC139/SN74HC139_Previous_Values.xml new file mode 100644 index 000000000..9e0846868 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/SN74HC139_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_bufferd_bufferd_bufferd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_bufferd_bufferd_bufferd_inverterd_inverterC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC139/_autosave-SN74HC139.sch b/library/SubcircuitLibrary/SN74HC139/_autosave-SN74HC139.sch new file mode 100644 index 000000000..3ad6c2629 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/_autosave-SN74HC139.sch @@ -0,0 +1,739 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 2700 6200 +Connection ~ 2700 6650 +Connection ~ 2800 2000 +Connection ~ 2800 2450 +Connection ~ 2900 5900 +Connection ~ 2900 7350 +Connection ~ 3000 1700 +Connection ~ 3000 3150 +Connection ~ 6900 7250 +Connection ~ 7000 3050 +Connection ~ 7100 5600 +Connection ~ 7100 6350 +Connection ~ 7200 1400 +Connection ~ 7200 2150 +Connection ~ 7300 6650 +Connection ~ 7400 2450 +NoConn ~ 1250 4850 +NoConn ~ 9400 3600 +Wire Wire Line + 1250 4850 1100 4850 +Wire Wire Line + 2500 6650 2700 6650 +Wire Wire Line + 2500 7350 2900 7350 +Wire Wire Line + 2600 2450 2800 2450 +Wire Wire Line + 2600 3150 3000 3150 +Wire Wire Line + 2700 4850 2700 6200 +Wire Wire Line + 2700 6200 2700 6650 +Wire Wire Line + 2700 6200 6500 6200 +Wire Wire Line + 2700 6650 3000 6650 +Wire Wire Line + 2800 650 2800 2000 +Wire Wire Line + 2800 2000 2800 2450 +Wire Wire Line + 2800 2000 6600 2000 +Wire Wire Line + 2800 2450 3100 2450 +Wire Wire Line + 2850 5600 2500 5600 +Wire Wire Line + 2900 4950 7450 4950 +Wire Wire Line + 2900 5900 2900 4950 +Wire Wire Line + 2900 7350 2900 5900 +Wire Wire Line + 2900 7350 3050 7350 +Wire Wire Line + 2950 1400 2600 1400 +Wire Wire Line + 3000 750 7550 750 +Wire Wire Line + 3000 1700 3000 750 +Wire Wire Line + 3000 3150 3000 1700 +Wire Wire Line + 3000 3150 3150 3150 +Wire Wire Line + 3700 5700 3700 5900 +Wire Wire Line + 3700 5900 2900 5900 +Wire Wire Line + 3800 1500 3800 1700 +Wire Wire Line + 3800 1700 3000 1700 +Wire Wire Line + 3950 6650 3600 6650 +Wire Wire Line + 4000 5600 7100 5600 +Wire Wire Line + 4000 7350 3650 7350 +Wire Wire Line + 4050 2450 3700 2450 +Wire Wire Line + 4100 1400 7200 1400 +Wire Wire Line + 4100 3150 3750 3150 +Wire Wire Line + 5100 6650 7300 6650 +Wire Wire Line + 5150 7350 5300 7350 +Wire Wire Line + 5200 2450 7400 2450 +Wire Wire Line + 5250 3150 5400 3150 +Wire Wire Line + 5300 7250 5300 7350 +Wire Wire Line + 5400 3050 5400 3150 +Wire Wire Line + 6500 6450 6500 6200 +Wire Wire Line + 6600 2250 6600 2000 +Wire Wire Line + 6900 6550 6900 7250 +Wire Wire Line + 6900 7250 5300 7250 +Wire Wire Line + 7000 2350 7000 3050 +Wire Wire Line + 7000 3050 5400 3050 +Wire Wire Line + 7100 5050 7100 5600 +Wire Wire Line + 7100 5600 7100 6350 +Wire Wire Line + 7100 5600 7450 5600 +Wire Wire Line + 7100 6350 7450 6350 +Wire Wire Line + 7100 7050 7100 6350 +Wire Wire Line + 7200 850 7200 1400 +Wire Wire Line + 7200 1400 7200 2150 +Wire Wire Line + 7200 1400 7550 1400 +Wire Wire Line + 7200 2150 7550 2150 +Wire Wire Line + 7200 2850 7200 2150 +Wire Wire Line + 7300 5800 7300 6650 +Wire Wire Line + 7300 6650 7300 7150 +Wire Wire Line + 7300 7150 7450 7150 +Wire Wire Line + 7400 1600 7400 2450 +Wire Wire Line + 7400 2450 7400 2950 +Wire Wire Line + 7400 2950 7550 2950 +Wire Wire Line + 7450 4850 2700 4850 +Wire Wire Line + 7450 5050 7100 5050 +Wire Wire Line + 7450 5700 3700 5700 +Wire Wire Line + 7450 5800 7300 5800 +Wire Wire Line + 7450 6450 6500 6450 +Wire Wire Line + 7450 6550 6900 6550 +Wire Wire Line + 7450 7050 7100 7050 +Wire Wire Line + 7450 7250 6900 7250 +Wire Wire Line + 7550 650 2800 650 +Wire Wire Line + 7550 850 7200 850 +Wire Wire Line + 7550 1500 3800 1500 +Wire Wire Line + 7550 1600 7400 1600 +Wire Wire Line + 7550 2250 6600 2250 +Wire Wire Line + 7550 2350 7000 2350 +Wire Wire Line + 7550 2850 7200 2850 +Wire Wire Line + 7550 3050 7000 3050 +Wire Wire Line + 8550 4950 8300 4950 +Wire Wire Line + 8550 7150 8300 7150 +Wire Wire Line + 8600 5700 8300 5700 +Wire Wire Line + 8650 750 8400 750 +Wire Wire Line + 8650 2950 8400 2950 +Wire Wire Line + 8650 6450 8300 6450 +Wire Wire Line + 8700 1500 8400 1500 +Wire Wire Line + 8750 2250 8400 2250 +Wire Wire Line + 9400 3600 9850 3600 +$Comp +L eSim_Miscellaneous:PORT U1 +U 16 1 00000000 +P 850 4850 +F 0 "U1" H 875 5050 30 0000 C CNN +F 1 "PORT" H 875 4950 30 0000 C CNN +F 2 "" H 850 4850 60 0000 C CNN +F 3 "" H 850 4850 60 0000 C CNN + 16 850 4850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 15 1 00000000 +P 1650 5600 +F 0 "U1" H 1675 5800 30 0000 C CNN +F 1 "PORT" H 1675 5700 30 0000 C CNN +F 2 "" H 1650 5600 60 0000 C CNN +F 3 "" H 1650 5600 60 0000 C CNN + 15 1650 5600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 14 1 00000000 +P 1650 6650 +F 0 "U1" H 1675 6850 30 0000 C CNN +F 1 "PORT" H 1675 6750 30 0000 C CNN +F 2 "" H 1650 6650 60 0000 C CNN +F 3 "" H 1650 6650 60 0000 C CNN + 14 1650 6650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 13 1 00000000 +P 1650 7350 +F 0 "U1" H 1675 7550 30 0000 C CNN +F 1 "PORT" H 1675 7450 30 0000 C CNN +F 2 "" H 1650 7350 60 0000 C CNN +F 3 "" H 1650 7350 60 0000 C CNN + 13 1650 7350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 1 1 00000000 +P 1750 1400 +F 0 "U1" H 1775 1600 30 0000 C CNN +F 1 "PORT" H 1775 1500 30 0000 C CNN +F 2 "" H 1750 1400 60 0000 C CNN +F 3 "" H 1750 1400 60 0000 C CNN + 1 1750 1400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 2 1 00000000 +P 1750 2450 +F 0 "U1" H 1775 2650 30 0000 C CNN +F 1 "PORT" H 1775 2550 30 0000 C CNN +F 2 "" H 1750 2450 60 0000 C CNN +F 3 "" H 1750 2450 60 0000 C CNN + 2 1750 2450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 3 1 00000000 +P 1750 3150 +F 0 "U1" H 1775 3350 30 0000 C CNN +F 1 "PORT" H 1775 3250 30 0000 C CNN +F 2 "" H 1750 3150 60 0000 C CNN +F 3 "" H 1750 3150 60 0000 C CNN + 3 1750 3150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 12 1 00000000 +P 9400 4950 +F 0 "U1" H 9250 4925 30 0000 R CNN +F 1 "PORT" H 9250 5025 30 0000 R CNN +F 2 "" H 9400 4950 60 0000 C CNN +F 3 "" H 9400 4950 60 0000 C CNN + 12 9400 4950 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 9 1 00000000 +P 9400 7150 +F 0 "U1" H 9250 7125 30 0000 R CNN +F 1 "PORT" H 9250 7225 30 0000 R CNN +F 2 "" H 9400 7150 60 0000 C CNN +F 3 "" H 9400 7150 60 0000 C CNN + 9 9400 7150 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 11 1 00000000 +P 9450 5700 +F 0 "U1" H 9300 5675 30 0000 R CNN +F 1 "PORT" H 9300 5775 30 0000 R CNN +F 2 "" H 9450 5700 60 0000 C CNN +F 3 "" H 9450 5700 60 0000 C CNN + 11 9450 5700 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 4 1 00000000 +P 9500 750 +F 0 "U1" H 9350 725 30 0000 R CNN +F 1 "PORT" H 9350 825 30 0000 R CNN +F 2 "" H 9500 750 60 0000 C CNN +F 3 "" H 9500 750 60 0000 C CNN + 4 9500 750 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 7 1 00000000 +P 9500 2950 +F 0 "U1" H 9350 2925 30 0000 R CNN +F 1 "PORT" H 9350 3025 30 0000 R CNN +F 2 "" H 9500 2950 60 0000 C CNN +F 3 "" H 9500 2950 60 0000 C CNN + 7 9500 2950 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 10 1 00000000 +P 9500 6450 +F 0 "U1" H 9350 6425 30 0000 R CNN +F 1 "PORT" H 9350 6525 30 0000 R CNN +F 2 "" H 9500 6450 60 0000 C CNN +F 3 "" H 9500 6450 60 0000 C CNN + 10 9500 6450 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 5 1 00000000 +P 9550 1500 +F 0 "U1" H 9400 1475 30 0000 R CNN +F 1 "PORT" H 9400 1575 30 0000 R CNN +F 2 "" H 9550 1500 60 0000 C CNN +F 3 "" H 9550 1500 60 0000 C CNN + 5 9550 1500 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 6 1 00000000 +P 9600 2250 +F 0 "U1" H 9450 2225 30 0000 R CNN +F 1 "PORT" H 9450 2325 30 0000 R CNN +F 2 "" H 9600 2250 60 0000 C CNN +F 3 "" H 9600 2250 60 0000 C CNN + 6 9600 2250 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 8 1 00000000 +P 10100 3600 +F 0 "U1" H 9950 3575 30 0000 R CNN +F 1 "PORT" H 9950 3675 30 0000 R CNN +F 2 "" H 10100 3600 60 0000 C CNN +F 3 "" H 10100 3600 60 0000 C CNN + 8 10100 3600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Digital:d_inverter U2 +U 1 1 00000000 +P 2200 5600 +F 0 "U2" H 2200 5850 60 0000 C CNN +F 1 "d_inverter" H 2200 5700 60 0000 C CNN +F 2 "" H 2250 5550 60 0000 C CNN +F 3 "" H 2250 5550 60 0000 C CNN + 1 2200 5600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U3 +U 1 1 00000000 +P 2200 6650 +F 0 "U3" H 2200 6900 60 0000 C CNN +F 1 "d_inverter" H 2200 6750 60 0000 C CNN +F 2 "" H 2250 6600 60 0000 C CNN +F 3 "" H 2250 6600 60 0000 C CNN + 1 2200 6650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U4 +U 1 1 00000000 +P 2200 7350 +F 0 "U4" H 2200 7600 60 0000 C CNN +F 1 "d_inverter" H 2200 7450 60 0000 C CNN +F 2 "" H 2250 7300 60 0000 C CNN +F 3 "" H 2250 7300 60 0000 C CNN + 1 2200 7350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U5 +U 1 1 00000000 +P 2300 1400 +F 0 "U5" H 2300 1650 60 0000 C CNN +F 1 "d_inverter" H 2300 1500 60 0000 C CNN +F 2 "" H 2350 1350 60 0000 C CNN +F 3 "" H 2350 1350 60 0000 C CNN + 1 2300 1400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U6 +U 1 1 00000000 +P 2300 2450 +F 0 "U6" H 2300 2700 60 0000 C CNN +F 1 "d_inverter" H 2300 2550 60 0000 C CNN +F 2 "" H 2350 2400 60 0000 C CNN +F 3 "" H 2350 2400 60 0000 C CNN + 1 2300 2450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U7 +U 1 1 00000000 +P 2300 3150 +F 0 "U7" H 2300 3400 60 0000 C CNN +F 1 "d_inverter" H 2300 3250 60 0000 C CNN +F 2 "" H 2350 3100 60 0000 C CNN +F 3 "" H 2350 3100 60 0000 C CNN + 1 2300 3150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U8 +U 1 1 00000000 +P 3300 6650 +F 0 "U8" H 3300 6900 60 0000 C CNN +F 1 "d_inverter" H 3300 6750 60 0000 C CNN +F 2 "" H 3350 6600 60 0000 C CNN +F 3 "" H 3350 6600 60 0000 C CNN + 1 3300 6650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U10 +U 1 1 00000000 +P 3350 7350 +F 0 "U10" H 3350 7600 60 0000 C CNN +F 1 "d_inverter" H 3350 7450 60 0000 C CNN +F 2 "" H 3400 7300 60 0000 C CNN +F 3 "" H 3400 7300 60 0000 C CNN + 1 3350 7350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U11 +U 1 1 00000000 +P 3400 2450 +F 0 "U11" H 3400 2700 60 0000 C CNN +F 1 "d_inverter" H 3400 2550 60 0000 C CNN +F 2 "" H 3450 2400 60 0000 C CNN +F 3 "" H 3450 2400 60 0000 C CNN + 1 3400 2450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U13 +U 1 1 00000000 +P 3450 3150 +F 0 "U13" H 3450 3400 60 0000 C CNN +F 1 "d_inverter" H 3450 3250 60 0000 C CNN +F 2 "" H 3500 3100 60 0000 C CNN +F 3 "" H 3500 3100 60 0000 C CNN + 1 3450 3150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U18 +U 1 1 00000000 +P 8850 4950 +F 0 "U18" H 8850 5200 60 0000 C CNN +F 1 "d_inverter" H 8850 5050 60 0000 C CNN +F 2 "" H 8900 4900 60 0000 C CNN +F 3 "" H 8900 4900 60 0000 C CNN + 1 8850 4950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U19 +U 1 1 00000000 +P 8850 7150 +F 0 "U19" H 8850 7400 60 0000 C CNN +F 1 "d_inverter" H 8850 7250 60 0000 C CNN +F 2 "" H 8900 7100 60 0000 C CNN +F 3 "" H 8900 7100 60 0000 C CNN + 1 8850 7150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U20 +U 1 1 00000000 +P 8900 5700 +F 0 "U20" H 8900 5950 60 0000 C CNN +F 1 "d_inverter" H 8900 5800 60 0000 C CNN +F 2 "" H 8950 5650 60 0000 C CNN +F 3 "" H 8950 5650 60 0000 C CNN + 1 8900 5700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U21 +U 1 1 00000000 +P 8950 750 +F 0 "U21" H 8950 1000 60 0000 C CNN +F 1 "d_inverter" H 8950 850 60 0000 C CNN +F 2 "" H 9000 700 60 0000 C CNN +F 3 "" H 9000 700 60 0000 C CNN + 1 8950 750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U22 +U 1 1 00000000 +P 8950 2950 +F 0 "U22" H 8950 3200 60 0000 C CNN +F 1 "d_inverter" H 8950 3050 60 0000 C CNN +F 2 "" H 9000 2900 60 0000 C CNN +F 3 "" H 9000 2900 60 0000 C CNN + 1 8950 2950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U23 +U 1 1 00000000 +P 8950 6450 +F 0 "U23" H 8950 6700 60 0000 C CNN +F 1 "d_inverter" H 8950 6550 60 0000 C CNN +F 2 "" H 9000 6400 60 0000 C CNN +F 3 "" H 9000 6400 60 0000 C CNN + 1 8950 6450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U24 +U 1 1 00000000 +P 9000 1500 +F 0 "U24" H 9000 1750 60 0000 C CNN +F 1 "d_inverter" H 9000 1600 60 0000 C CNN +F 2 "" H 9050 1450 60 0000 C CNN +F 3 "" H 9050 1450 60 0000 C CNN + 1 9000 1500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U25 +U 1 1 00000000 +P 9050 2250 +F 0 "U25" H 9050 2500 60 0000 C CNN +F 1 "d_inverter" H 9050 2350 60 0000 C CNN +F 2 "" H 9100 2200 60 0000 C CNN +F 3 "" H 9100 2200 60 0000 C CNN + 1 9050 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X1 +U 1 1 00000000 +P 7800 5000 +F 0 "X1" H 7879 5400 60 0000 C CNN +F 1 "3_and" H 7879 5250 60 0000 C CNN +F 2 "" H 7800 5000 60 0000 C CNN +F 3 "" H 7800 5000 60 0000 C CNN + 1 7800 5000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X2 +U 1 1 00000000 +P 7800 5750 +F 0 "X2" H 7879 6150 60 0000 C CNN +F 1 "3_and" H 7879 6000 60 0000 C CNN +F 2 "" H 7800 5750 60 0000 C CNN +F 3 "" H 7800 5750 60 0000 C CNN + 1 7800 5750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X3 +U 1 1 00000000 +P 7800 6500 +F 0 "X3" H 7879 6900 60 0000 C CNN +F 1 "3_and" H 7879 6750 60 0000 C CNN +F 2 "" H 7800 6500 60 0000 C CNN +F 3 "" H 7800 6500 60 0000 C CNN + 1 7800 6500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X4 +U 1 1 00000000 +P 7800 7200 +F 0 "X4" H 7879 7600 60 0000 C CNN +F 1 "3_and" H 7879 7450 60 0000 C CNN +F 2 "" H 7800 7200 60 0000 C CNN +F 3 "" H 7800 7200 60 0000 C CNN + 1 7800 7200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X5 +U 1 1 00000000 +P 7900 800 +F 0 "X5" H 7979 1200 60 0000 C CNN +F 1 "3_and" H 7979 1050 60 0000 C CNN +F 2 "" H 7900 800 60 0000 C CNN +F 3 "" H 7900 800 60 0000 C CNN + 1 7900 800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X6 +U 1 1 00000000 +P 7900 1550 +F 0 "X6" H 7979 1950 60 0000 C CNN +F 1 "3_and" H 7979 1800 60 0000 C CNN +F 2 "" H 7900 1550 60 0000 C CNN +F 3 "" H 7900 1550 60 0000 C CNN + 1 7900 1550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X7 +U 1 1 00000000 +P 7900 2300 +F 0 "X7" H 7979 2700 60 0000 C CNN +F 1 "3_and" H 7979 2550 60 0000 C CNN +F 2 "" H 7900 2300 60 0000 C CNN +F 3 "" H 7900 2300 60 0000 C CNN + 1 7900 2300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Subckt:3_and X8 +U 1 1 00000000 +P 7900 3000 +F 0 "X8" H 7979 3400 60 0000 C CNN +F 1 "3_and" H 7979 3250 60 0000 C CNN +F 2 "" H 7900 3000 60 0000 C CNN +F 3 "" H 7900 3000 60 0000 C CNN + 1 7900 3000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U9 +U 1 1 00000000 +P 3350 5600 +F 0 "U9" H 3425 6000 60 0000 C CNN +F 1 "d_buffer" H 3425 5850 60 0000 C CNN +F 2 "" H 3350 5600 60 0000 C CNN +F 3 "" H 3350 5600 60 0000 C CNN + 1 3350 5600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U12 +U 1 1 00000000 +P 3450 1400 +F 0 "U12" H 3525 1800 60 0000 C CNN +F 1 "d_buffer" H 3525 1650 60 0000 C CNN +F 2 "" H 3450 1400 60 0000 C CNN +F 3 "" H 3450 1400 60 0000 C CNN + 1 3450 1400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U14 +U 1 1 00000000 +P 4450 6650 +F 0 "U14" H 4525 7050 60 0000 C CNN +F 1 "d_buffer" H 4525 6900 60 0000 C CNN +F 2 "" H 4450 6650 60 0000 C CNN +F 3 "" H 4450 6650 60 0000 C CNN + 1 4450 6650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U15 +U 1 1 00000000 +P 4500 7350 +F 0 "U15" H 4575 7750 60 0000 C CNN +F 1 "d_buffer" H 4575 7600 60 0000 C CNN +F 2 "" H 4500 7350 60 0000 C CNN +F 3 "" H 4500 7350 60 0000 C CNN + 1 4500 7350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U16 +U 1 1 00000000 +P 4550 2450 +F 0 "U16" H 4625 2850 60 0000 C CNN +F 1 "d_buffer" H 4625 2700 60 0000 C CNN +F 2 "" H 4550 2450 60 0000 C CNN +F 3 "" H 4550 2450 60 0000 C CNN + 1 4550 2450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_buffer U17 +U 1 1 00000000 +P 4600 3150 +F 0 "U17" H 4675 3550 60 0000 C CNN +F 1 "d_buffer" H 4675 3400 60 0000 C CNN +F 2 "" H 4600 3150 60 0000 C CNN +F 3 "" H 4600 3150 60 0000 C CNN + 1 4600 3150 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC139/analysis b/library/SubcircuitLibrary/SN74HC139/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC139/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR-cache.lib b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.cir b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.cir new file mode 100644 index 000000000..d2199ddbb --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.cir @@ -0,0 +1,14 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/CMOS_INVTR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Fri Jun 13 08:49:20 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.cir.out b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.cir.out new file mode 100644 index 000000000..dec1c5fa5 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir + + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.pro b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.sch b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.sch new file mode 100644 index 000000000..aa7a7ee81 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.sch @@ -0,0 +1,161 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 684B982F +P 5350 2950 +F 0 "SC1" H 5400 3250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5650 3037 50 0000 R CNN +F 2 "" H 5350 1450 50 0001 C CNN +F 3 "" H 5350 2950 50 0001 C CNN + 1 5350 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684B9856 +P 5350 3800 +F 0 "SC2" H 5400 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5650 3887 50 0000 R CNN +F 2 "" H 5350 2300 50 0001 C CNN +F 3 "" H 5350 3800 50 0001 C CNN + 1 5350 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684B98AD +P 4550 3300 +F 0 "U1" H 4600 3400 30 0000 C CNN +F 1 "PORT" H 4550 3300 30 0000 C CNN +F 2 "" H 4550 3300 60 0000 C CNN +F 3 "" H 4550 3300 60 0000 C CNN + 1 4550 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B98D8 +P 6300 3350 +F 0 "U1" H 6350 3450 30 0000 C CNN +F 1 "PORT" H 6300 3350 30 0000 C CNN +F 2 "" H 6300 3350 60 0000 C CNN +F 3 "" H 6300 3350 60 0000 C CNN + 4 6300 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B9935 +P 5300 4350 +F 0 "U1" H 5350 4450 30 0000 C CNN +F 1 "PORT" H 5300 4350 30 0000 C CNN +F 2 "" H 5300 4350 60 0000 C CNN +F 3 "" H 5300 4350 60 0000 C CNN + 3 5300 4350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684B999A +P 5300 2350 +F 0 "U1" H 5350 2450 30 0000 C CNN +F 1 "PORT" H 5300 2350 30 0000 C CNN +F 2 "" H 5300 2350 60 0000 C CNN +F 3 "" H 5300 2350 60 0000 C CNN + 2 5300 2350 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B99CD +P 7950 3000 +F 0 "scmode1" H 7950 3150 98 0000 C CNB +F 1 "SKY130mode" H 7950 2900 118 0000 C CNB +F 2 "" H 7950 3150 60 0001 C CNN +F 3 "" H 7950 3150 60 0001 C CNN + 1 7950 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5550 2650 5550 2350 +Wire Wire Line + 5450 2950 5600 2950 +Wire Wire Line + 5600 2950 5600 2550 +Wire Wire Line + 5600 2550 5550 2550 +Connection ~ 5550 2550 +Wire Wire Line + 5550 3250 5550 3500 +Wire Wire Line + 6050 3350 5550 3350 +Connection ~ 5550 3350 +Wire Wire Line + 5050 2950 5050 3800 +Wire Wire Line + 4800 3300 5050 3300 +Connection ~ 5050 3300 +Wire Wire Line + 5450 3800 5600 3800 +Wire Wire Line + 5600 3800 5600 4150 +Wire Wire Line + 5600 4150 5550 4150 +Wire Wire Line + 5550 4100 5550 4350 +Connection ~ 5550 4150 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.sub b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.sub new file mode 100644 index 000000000..8283bca86 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR.sub @@ -0,0 +1,11 @@ +* Subcircuit CMOS_INVTR +.subckt CMOS_INVTR net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/cmos_invtr/cmos_invtr.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends CMOS_INVTR diff --git a/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR_Previous_Values.xml new file mode 100644 index 000000000..d17c4f93e --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/CMOS_INVTR_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3, l=0.15w=1, l=0.15 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC259/D_latch-cache.lib b/library/SubcircuitLibrary/SN74HC259/D_latch-cache.lib new file mode 100644 index 000000000..00b011e78 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/D_latch-cache.lib @@ -0,0 +1,98 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# NAND_2 +# +DEF NAND_2 X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "NAND_2" 400 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 400 0 255 787 -787 0 1 0 N 450 250 450 -250 +C 700 0 0 0 1 0 N +C 700 0 50 0 1 0 N +P 2 0 1 0 -300 250 450 250 N +P 3 0 1 0 -300 250 -300 -250 450 -250 N +X inA 1 -500 100 200 R 50 50 1 1 I +X Gnd 2 0 -450 200 U 50 50 1 1 I +X Vdd 3 0 450 200 D 50 50 1 1 I +X Out 4 950 0 200 L 50 50 1 1 O +X inB 5 -500 -100 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# NAND_3 +# +DEF NAND_3 X 0 40 Y Y 1 F N +F0 "X" 150 0 60 H V C CNN +F1 "NAND_3" 450 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 500 0 255 787 -787 0 1 0 N 550 250 550 -250 +C 800 0 50 0 1 0 N +P 2 0 1 0 -250 250 550 250 N +P 3 0 1 0 -250 250 -250 -250 550 -250 N +X inA 1 -450 150 200 R 50 50 1 1 I +X inB 2 -450 0 200 R 50 50 1 1 I +X Gnd 3 0 -450 200 U 50 50 1 1 I +X Vdd 4 0 450 200 D 50 50 1 1 I +X Out 5 1050 0 200 L 50 50 1 1 O +X inC 6 -450 -150 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC259/D_latch-rescue.lib b/library/SubcircuitLibrary/SN74HC259/D_latch-rescue.lib new file mode 100644 index 000000000..7569c1e39 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/D_latch-rescue.lib @@ -0,0 +1,46 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# NAND_2-RESCUE-D_latch +# +DEF NAND_2-RESCUE-D_latch X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "NAND_2-RESCUE-D_latch" 400 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 400 0 255 787 -787 0 1 0 N 450 250 450 -250 +C 700 0 0 0 1 0 N +C 700 0 50 0 1 0 N +P 2 0 1 0 -300 250 450 250 N +P 3 0 1 0 -300 250 -300 -250 450 -250 N +X inA 1 -500 100 200 R 50 50 1 1 I +X Gnd 2 0 -450 200 U 50 50 1 1 I +X Vdd 3 0 450 200 D 50 50 1 1 I +X inB 4 -500 -100 200 R 50 50 1 1 I +X Out 5 950 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NAND_3-RESCUE-D_latch +# +DEF NAND_3-RESCUE-D_latch X 0 40 Y Y 1 F N +F0 "X" 150 0 60 H V C CNN +F1 "NAND_3-RESCUE-D_latch" 450 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 500 0 255 787 -787 0 1 0 N 550 250 550 -250 +C 800 0 50 0 1 0 N +P 2 0 1 0 -250 250 550 250 N +P 3 0 1 0 -250 250 -250 -250 550 -250 N +X inA 1 -450 150 200 R 50 50 1 1 I +X inB 2 -450 0 200 R 50 50 1 1 I +X Gnd 3 0 -450 200 U 50 50 1 1 I +X Vdd 4 0 450 200 D 50 50 1 1 I +X inC 5 -450 -150 200 R 50 50 1 1 I +X Out 6 1050 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC259/D_latch.bak b/library/SubcircuitLibrary/SN74HC259/D_latch.bak new file mode 100644 index 000000000..1330c40b2 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/D_latch.bak @@ -0,0 +1,362 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L NAND_2 X4 +U 1 1 684AF5ED +P 3900 1800 +F 0 "X4" H 4000 1800 60 0000 C CNN +F 1 "NAND_2" H 4300 1800 60 0000 C CNN +F 2 "" H 3900 1800 60 0001 C CNN +F 3 "" H 3900 1800 60 0001 C CNN + 1 3900 1800 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X6 +U 1 1 684AF614 +P 8000 2950 +F 0 "X6" H 8100 2950 60 0000 C CNN +F 1 "NAND_2" H 8400 2950 60 0000 C CNN +F 2 "" H 8000 2950 60 0001 C CNN +F 3 "" H 8000 2950 60 0001 C CNN + 1 8000 2950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X1 +U 1 1 684AF795 +P 3850 3100 +F 0 "X1" H 4000 3100 60 0000 C CNN +F 1 "NAND_3" H 4300 3100 60 0000 C CNN +F 2 "" H 3850 3100 60 0001 C CNN +F 3 "" H 3850 3100 60 0001 C CNN + 1 3850 3100 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X2 +U 1 1 684AF829 +P 3850 4350 +F 0 "X2" H 4000 4350 60 0000 C CNN +F 1 "NAND_3" H 4300 4350 60 0000 C CNN +F 2 "" H 3850 4350 60 0001 C CNN +F 3 "" H 3850 4350 60 0001 C CNN + 1 3850 4350 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X3 +U 1 1 684AF8A8 +P 3850 5600 +F 0 "X3" H 4000 5600 60 0000 C CNN +F 1 "NAND_3" H 4300 5600 60 0000 C CNN +F 2 "" H 3850 5600 60 0001 C CNN +F 3 "" H 3850 5600 60 0001 C CNN + 1 3850 5600 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X5 +U 1 1 684AF935 +P 7950 4400 +F 0 "X5" H 8100 4400 60 0000 C CNN +F 1 "NAND_3" H 8400 4400 60 0000 C CNN +F 2 "" H 7950 4400 60 0001 C CNN +F 3 "" H 7950 4400 60 0001 C CNN + 1 7950 4400 + 1 0 0 -1 +$EndComp +Text Label 3050 3700 0 60 ~ 0 +LE +Wire Wire Line + 3400 3100 3050 3100 +Wire Wire Line + 3050 3100 3050 4350 +Wire Wire Line + 3050 4350 3400 4350 +Wire Wire Line + 3050 3700 2400 3700 +Connection ~ 3050 3700 +Wire Wire Line + 3400 2950 3400 2550 +Wire Wire Line + 3400 2550 4900 2550 +Wire Wire Line + 4900 2550 4900 1800 +Wire Wire Line + 4900 1800 4850 1800 +Wire Wire Line + 3400 1900 3400 2500 +Wire Wire Line + 3400 2500 4950 2500 +Wire Wire Line + 4950 2500 4950 3750 +Wire Wire Line + 4900 3100 6950 3100 +Wire Wire Line + 4900 5600 5000 5600 +Wire Wire Line + 5000 4950 5000 6500 +Wire Wire Line + 5000 6500 2700 6500 +Wire Wire Line + 2700 6500 2700 1700 +Wire Wire Line + 2700 1700 3400 1700 +Wire Wire Line + 3400 4500 3300 4500 +Wire Wire Line + 3300 4500 3300 4950 +Wire Wire Line + 3300 4950 5000 4950 +Connection ~ 5000 5600 +Wire Wire Line + 4900 4350 7350 4350 +Wire Wire Line + 4950 4350 4950 5000 +Wire Wire Line + 4950 5000 3300 5000 +Wire Wire Line + 3300 5000 3300 5450 +Wire Wire Line + 3300 5450 3400 5450 +Wire Wire Line + 3400 5600 2400 5600 +Wire Wire Line + 3400 3250 2850 3250 +Wire Wire Line + 2850 3250 2850 6350 +Wire Wire Line + 2850 6350 5650 6350 +Wire Wire Line + 2400 5750 3400 5750 +Connection ~ 2850 5750 +Text Label 2850 5750 0 60 ~ 0 +RE +Text Label 2500 5600 0 60 ~ 0 +D +Wire Wire Line + 3400 4200 3300 4200 +Wire Wire Line + 3300 4200 3300 3750 +Wire Wire Line + 3300 3750 4950 3750 +Connection ~ 4950 3100 +Wire Wire Line + 8950 2950 9600 2950 +Wire Wire Line + 9000 2950 9000 3600 +Wire Wire Line + 9000 3600 7500 3600 +Wire Wire Line + 7500 3600 7500 4250 +Wire Wire Line + 7500 3050 7400 3050 +Wire Wire Line + 7400 3050 7400 3750 +Wire Wire Line + 7400 3750 9100 3750 +Wire Wire Line + 9100 3750 9100 4400 +Wire Wire Line + 9000 4400 9750 4400 +Wire Wire Line + 6950 3100 6950 2850 +Wire Wire Line + 6950 2850 7500 2850 +Wire Wire Line + 7350 4350 7350 4400 +Wire Wire Line + 7350 4400 7500 4400 +Connection ~ 4950 4350 +Wire Wire Line + 7500 4550 5650 4550 +Wire Wire Line + 5650 4550 5650 6350 +Connection ~ 9000 2950 +Connection ~ 9100 4400 +$Comp +L PORT U1 +U 2 1 684B0C88 +P 2150 5600 +F 0 "U1" H 2200 5700 30 0000 C CNN +F 1 "PORT" H 2150 5600 30 0000 C CNN +F 2 "" H 2150 5600 60 0000 C CNN +F 3 "" H 2150 5600 60 0000 C CNN + 2 2150 5600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684B0F85 +P 2150 3700 +F 0 "U1" H 2200 3800 30 0000 C CNN +F 1 "PORT" H 2150 3700 30 0000 C CNN +F 2 "" H 2150 3700 60 0000 C CNN +F 3 "" H 2150 3700 60 0000 C CNN + 1 2150 3700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B1102 +P 2150 5750 +F 0 "U1" H 2200 5850 30 0000 C CNN +F 1 "PORT" H 2150 5750 30 0000 C CNN +F 2 "" H 2150 5750 60 0000 C CNN +F 3 "" H 2150 5750 60 0000 C CNN + 3 2150 5750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684B120F +P 9850 2950 +F 0 "U1" H 9900 3050 30 0000 C CNN +F 1 "PORT" H 9850 2950 30 0000 C CNN +F 2 "" H 9850 2950 60 0000 C CNN +F 3 "" H 9850 2950 60 0000 C CNN + 6 9850 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 684B1432 +P 10000 4400 +F 0 "U1" H 10050 4500 30 0000 C CNN +F 1 "PORT" H 10000 4400 30 0000 C CNN +F 2 "" H 10000 4400 60 0000 C CNN +F 3 "" H 10000 4400 60 0000 C CNN + 7 10000 4400 + -1 0 0 1 +$EndComp +Wire Wire Line + 3900 1350 8000 1350 +Wire Wire Line + 8000 1350 8000 2500 +Wire Wire Line + 3850 2650 5300 2650 +Wire Wire Line + 5300 1350 5300 5150 +Connection ~ 5300 1350 +Wire Wire Line + 5300 3900 3850 3900 +Connection ~ 5300 2650 +Wire Wire Line + 5300 5150 3850 5150 +Connection ~ 5300 3900 +Wire Wire Line + 7950 3950 5300 3950 +Wire Wire Line + 5300 3950 5300 3900 +Wire Wire Line + 3900 2250 4200 2250 +Wire Wire Line + 4200 2250 4200 6050 +Wire Wire Line + 4200 6050 3850 6050 +Wire Wire Line + 3850 4800 4200 4800 +Connection ~ 4200 4800 +Wire Wire Line + 3850 3550 4200 3550 +Connection ~ 4200 3550 +Wire Wire Line + 8000 3400 4200 3400 +Connection ~ 4200 3400 +Wire Wire Line + 7950 4850 4200 4850 +Connection ~ 4200 4850 +$Comp +L PORT U1 +U 5 1 684B1B45 +P 4800 1550 +F 0 "U1" H 4850 1650 30 0000 C CNN +F 1 "PORT" H 4800 1550 30 0000 C CNN +F 2 "" H 4800 1550 60 0000 C CNN +F 3 "" H 4800 1550 60 0000 C CNN + 5 4800 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B1E48 +P 3750 2400 +F 0 "U1" H 3800 2500 30 0000 C CNN +F 1 "PORT" H 3750 2400 30 0000 C CNN +F 2 "" H 3750 2400 60 0000 C CNN +F 3 "" H 3750 2400 60 0000 C CNN + 4 3750 2400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4000 2400 4000 2250 +Connection ~ 4000 2250 +Wire Wire Line + 5050 1550 5050 1350 +Connection ~ 5050 1350 +$Comp +L SKY130mode scmode1 +U 1 1 684B2043 +P 10100 1700 +F 0 "scmode1" H 10100 1850 98 0000 C CNB +F 1 "SKY130mode" H 10100 1600 118 0000 C CNB +F 2 "" H 10100 1850 60 0001 C CNN +F 3 "" H 10100 1850 60 0001 C CNN + 1 10100 1700 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/D_latch.cir b/library/SubcircuitLibrary/SN74HC259/D_latch.cir new file mode 100644 index 000000000..e0414df84 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/D_latch.cir @@ -0,0 +1,18 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_latch/D_latch.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 09:45:19 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 /LE /D /RE Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT +scmode1 SKY130mode +X4 Net-_X2-Pad6_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_X1-Pad1_ Net-_X1-Pad5_ NAND_2 +X1 Net-_X1-Pad1_ /LE Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_X1-Pad5_ /RE NAND_3 +X2 Net-_X1-Pad5_ /LE Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_X2-Pad5_ Net-_X2-Pad6_ NAND_3 +X3 Net-_X2-Pad5_ /D Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_X2-Pad6_ /RE NAND_3 +X6 Net-_X1-Pad5_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ NAND_2 +X5 Net-_U1-Pad6_ Net-_X2-Pad5_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad7_ /RE NAND_3 + +.end diff --git a/library/SubcircuitLibrary/SN74HC259/D_latch.cir.out b/library/SubcircuitLibrary/SN74HC259/D_latch.cir.out new file mode 100644 index 000000000..cc8164a26 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/D_latch.cir.out @@ -0,0 +1,23 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/d_latch/d_latch.cir + +.include NAND_2.sub +.include NAND_3.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* u1 /le /d /re net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +* s c m o d e +x4 net-_x2-pad6_ net-_u1-pad4_ net-_u1-pad5_ net-_x1-pad1_ net-_x1-pad5_ NAND_2 +x1 net-_x1-pad1_ /le net-_u1-pad4_ net-_u1-pad5_ net-_x1-pad5_ /re NAND_3 +x2 net-_x1-pad5_ /le net-_u1-pad4_ net-_u1-pad5_ net-_x2-pad5_ net-_x2-pad6_ NAND_3 +x3 net-_x2-pad5_ /d net-_u1-pad4_ net-_u1-pad5_ net-_x2-pad6_ /re NAND_3 +x6 net-_x1-pad5_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ NAND_2 +x5 net-_u1-pad6_ net-_x2-pad5_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad7_ /re NAND_3 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC259/D_latch.pro b/library/SubcircuitLibrary/SN74HC259/D_latch.pro new file mode 100644 index 000000000..973266fee --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/D_latch.pro @@ -0,0 +1,74 @@ +update=Sat Jun 14 09:43:16 2025 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=D_latch-rescue +LibName2=adc-dac +LibName3=memory +LibName4=xilinx +LibName5=microcontrollers +LibName6=dsp +LibName7=microchip +LibName8=analog_switches +LibName9=motorola +LibName10=texas +LibName11=intel +LibName12=audio +LibName13=interface +LibName14=digital-audio +LibName15=philips +LibName16=display +LibName17=cypress +LibName18=siliconi +LibName19=opto +LibName20=atmel +LibName21=contrib +LibName22=power +LibName23=eSim_Plot +LibName24=transistors +LibName25=conn +LibName26=eSim_User +LibName27=regul +LibName28=74xx +LibName29=cmos4000 +LibName30=eSim_Analog +LibName31=eSim_Devices +LibName32=eSim_Digital +LibName33=eSim_Hybrid +LibName34=eSim_Miscellaneous +LibName35=eSim_Power +LibName36=eSim_Sources +LibName37=eSim_Subckt +LibName38=eSim_Nghdl +LibName39=eSim_Ngveri +LibName40=eSim_SKY130 +LibName41=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74HC259/D_latch.sch b/library/SubcircuitLibrary/SN74HC259/D_latch.sch new file mode 100644 index 000000000..98739abf0 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/D_latch.sch @@ -0,0 +1,364 @@ +EESchema Schematic File Version 2 +LIBS:D_latch-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:D_latch-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +Text Label 3050 3700 0 60 ~ 0 +LE +Wire Wire Line + 3400 3100 3050 3100 +Wire Wire Line + 3050 3100 3050 4350 +Wire Wire Line + 3050 4350 3400 4350 +Wire Wire Line + 3050 3700 2400 3700 +Connection ~ 3050 3700 +Wire Wire Line + 3400 2950 3400 2550 +Wire Wire Line + 3400 2550 4900 2550 +Wire Wire Line + 4900 2550 4900 1800 +Wire Wire Line + 4900 1800 4850 1800 +Wire Wire Line + 3400 1900 3400 2500 +Wire Wire Line + 3400 2500 4950 2500 +Wire Wire Line + 4950 2500 4950 3750 +Wire Wire Line + 4900 3100 6950 3100 +Wire Wire Line + 4900 5600 5000 5600 +Wire Wire Line + 5000 4950 5000 6500 +Wire Wire Line + 5000 6500 2700 6500 +Wire Wire Line + 2700 6500 2700 1700 +Wire Wire Line + 2700 1700 3400 1700 +Wire Wire Line + 3400 4500 3300 4500 +Wire Wire Line + 3300 4500 3300 4950 +Wire Wire Line + 3300 4950 5000 4950 +Connection ~ 5000 5600 +Wire Wire Line + 4900 4350 7350 4350 +Wire Wire Line + 4950 4350 4950 5000 +Wire Wire Line + 4950 5000 3300 5000 +Wire Wire Line + 3300 5000 3300 5450 +Wire Wire Line + 3300 5450 3400 5450 +Wire Wire Line + 3400 5600 2400 5600 +Wire Wire Line + 3400 3250 2850 3250 +Wire Wire Line + 2850 3250 2850 6350 +Wire Wire Line + 2850 6350 5650 6350 +Wire Wire Line + 2400 5750 3400 5750 +Connection ~ 2850 5750 +Text Label 2850 5750 0 60 ~ 0 +RE +Text Label 2500 5600 0 60 ~ 0 +D +Wire Wire Line + 3400 4200 3300 4200 +Wire Wire Line + 3300 4200 3300 3750 +Wire Wire Line + 3300 3750 4950 3750 +Connection ~ 4950 3100 +Wire Wire Line + 8950 2950 9600 2950 +Wire Wire Line + 9000 2950 9000 3600 +Wire Wire Line + 9000 3600 7500 3600 +Wire Wire Line + 7500 3600 7500 4250 +Wire Wire Line + 7500 3050 7400 3050 +Wire Wire Line + 7400 3050 7400 3750 +Wire Wire Line + 7400 3750 9100 3750 +Wire Wire Line + 9100 3750 9100 4400 +Wire Wire Line + 9000 4400 9750 4400 +Wire Wire Line + 6950 3100 6950 2850 +Wire Wire Line + 6950 2850 7500 2850 +Wire Wire Line + 7350 4350 7350 4400 +Wire Wire Line + 7350 4400 7500 4400 +Connection ~ 4950 4350 +Wire Wire Line + 7500 4550 5650 4550 +Wire Wire Line + 5650 4550 5650 6350 +Connection ~ 9000 2950 +Connection ~ 9100 4400 +$Comp +L PORT U1 +U 2 1 684B0C88 +P 2150 5600 +F 0 "U1" H 2200 5700 30 0000 C CNN +F 1 "PORT" H 2150 5600 30 0000 C CNN +F 2 "" H 2150 5600 60 0000 C CNN +F 3 "" H 2150 5600 60 0000 C CNN + 2 2150 5600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684B0F85 +P 2150 3700 +F 0 "U1" H 2200 3800 30 0000 C CNN +F 1 "PORT" H 2150 3700 30 0000 C CNN +F 2 "" H 2150 3700 60 0000 C CNN +F 3 "" H 2150 3700 60 0000 C CNN + 1 2150 3700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B1102 +P 2150 5750 +F 0 "U1" H 2200 5850 30 0000 C CNN +F 1 "PORT" H 2150 5750 30 0000 C CNN +F 2 "" H 2150 5750 60 0000 C CNN +F 3 "" H 2150 5750 60 0000 C CNN + 3 2150 5750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684B120F +P 9850 2950 +F 0 "U1" H 9900 3050 30 0000 C CNN +F 1 "PORT" H 9850 2950 30 0000 C CNN +F 2 "" H 9850 2950 60 0000 C CNN +F 3 "" H 9850 2950 60 0000 C CNN + 6 9850 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 684B1432 +P 10000 4400 +F 0 "U1" H 10050 4500 30 0000 C CNN +F 1 "PORT" H 10000 4400 30 0000 C CNN +F 2 "" H 10000 4400 60 0000 C CNN +F 3 "" H 10000 4400 60 0000 C CNN + 7 10000 4400 + -1 0 0 1 +$EndComp +Wire Wire Line + 3900 1350 8000 1350 +Wire Wire Line + 8000 1350 8000 2500 +Wire Wire Line + 3850 2650 5300 2650 +Wire Wire Line + 5300 1350 5300 5150 +Connection ~ 5300 1350 +Wire Wire Line + 5300 3900 3850 3900 +Connection ~ 5300 2650 +Wire Wire Line + 5300 5150 3850 5150 +Connection ~ 5300 3900 +Wire Wire Line + 7950 3950 5300 3950 +Wire Wire Line + 5300 3950 5300 3900 +Wire Wire Line + 3900 2250 4200 2250 +Wire Wire Line + 4200 2250 4200 6050 +Wire Wire Line + 4200 6050 3850 6050 +Wire Wire Line + 3850 4800 4200 4800 +Connection ~ 4200 4800 +Wire Wire Line + 3850 3550 4200 3550 +Connection ~ 4200 3550 +Wire Wire Line + 8000 3400 4200 3400 +Connection ~ 4200 3400 +Wire Wire Line + 7950 4850 4200 4850 +Connection ~ 4200 4850 +$Comp +L PORT U1 +U 5 1 684B1B45 +P 4800 1550 +F 0 "U1" H 4850 1650 30 0000 C CNN +F 1 "PORT" H 4800 1550 30 0000 C CNN +F 2 "" H 4800 1550 60 0000 C CNN +F 3 "" H 4800 1550 60 0000 C CNN + 5 4800 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B1E48 +P 3750 2400 +F 0 "U1" H 3800 2500 30 0000 C CNN +F 1 "PORT" H 3750 2400 30 0000 C CNN +F 2 "" H 3750 2400 60 0000 C CNN +F 3 "" H 3750 2400 60 0000 C CNN + 4 3750 2400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4000 2400 4000 2250 +Connection ~ 4000 2250 +Wire Wire Line + 5050 1550 5050 1350 +Connection ~ 5050 1350 +$Comp +L SKY130mode scmode1 +U 1 1 684B2043 +P 10100 1700 +F 0 "scmode1" H 10100 1850 98 0000 C CNB +F 1 "SKY130mode" H 10100 1600 118 0000 C CNB +F 2 "" H 10100 1850 60 0001 C CNN +F 3 "" H 10100 1850 60 0001 C CNN + 1 10100 1700 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X4 +U 1 1 684CF80D +P 3900 1800 +F 0 "X4" H 4000 1800 60 0000 C CNN +F 1 "NAND_2" H 4300 1800 60 0000 C CNN +F 2 "" H 3900 1800 60 0001 C CNN +F 3 "" H 3900 1800 60 0001 C CNN + 1 3900 1800 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X1 +U 1 1 684CF882 +P 3850 3100 +F 0 "X1" H 4000 3100 60 0000 C CNN +F 1 "NAND_3" H 4300 3100 60 0000 C CNN +F 2 "" H 3850 3100 60 0001 C CNN +F 3 "" H 3850 3100 60 0001 C CNN + 1 3850 3100 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X2 +U 1 1 684CF905 +P 3850 4350 +F 0 "X2" H 4000 4350 60 0000 C CNN +F 1 "NAND_3" H 4300 4350 60 0000 C CNN +F 2 "" H 3850 4350 60 0001 C CNN +F 3 "" H 3850 4350 60 0001 C CNN + 1 3850 4350 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X3 +U 1 1 684CF986 +P 3850 5600 +F 0 "X3" H 4000 5600 60 0000 C CNN +F 1 "NAND_3" H 4300 5600 60 0000 C CNN +F 2 "" H 3850 5600 60 0001 C CNN +F 3 "" H 3850 5600 60 0001 C CNN + 1 3850 5600 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X6 +U 1 1 684CFB07 +P 8000 2950 +F 0 "X6" H 8100 2950 60 0000 C CNN +F 1 "NAND_2" H 8400 2950 60 0000 C CNN +F 2 "" H 8000 2950 60 0001 C CNN +F 3 "" H 8000 2950 60 0001 C CNN + 1 8000 2950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X5 +U 1 1 684CFBB2 +P 7950 4400 +F 0 "X5" H 8100 4400 60 0000 C CNN +F 1 "NAND_3" H 8400 4400 60 0000 C CNN +F 2 "" H 7950 4400 60 0001 C CNN +F 3 "" H 7950 4400 60 0001 C CNN + 1 7950 4400 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/D_latch.sub b/library/SubcircuitLibrary/SN74HC259/D_latch.sub new file mode 100644 index 000000000..be42d30cc --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/D_latch.sub @@ -0,0 +1,17 @@ +* Subcircuit D_latch +.subckt D_latch /le /d /re net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/d_latch/d_latch.cir +.include NAND_2.sub +.include NAND_3.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* s c m o d e +x4 net-_x2-pad6_ net-_u1-pad4_ net-_u1-pad5_ net-_x1-pad1_ net-_x1-pad5_ NAND_2 +x1 net-_x1-pad1_ /le net-_u1-pad4_ net-_u1-pad5_ net-_x1-pad5_ /re NAND_3 +x2 net-_x1-pad5_ /le net-_u1-pad4_ net-_u1-pad5_ net-_x2-pad5_ net-_x2-pad6_ NAND_3 +x3 net-_x2-pad5_ /d net-_u1-pad4_ net-_u1-pad5_ net-_x2-pad6_ /re NAND_3 +x6 net-_x1-pad5_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ NAND_2 +x5 net-_u1-pad6_ net-_x2-pad5_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad7_ /re NAND_3 +* Control Statements + +.ends D_latch diff --git a/library/SubcircuitLibrary/SN74HC259/D_latch_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC259/D_latch_Previous_Values.xml new file mode 100644 index 000000000..d8d7bbcf4 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/D_latch_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38-cache.lib b/library/SubcircuitLibrary/SN74HC259/Decoder_38-cache.lib new file mode 100644 index 000000000..00b011e78 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38-cache.lib @@ -0,0 +1,98 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# NAND_2 +# +DEF NAND_2 X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "NAND_2" 400 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 400 0 255 787 -787 0 1 0 N 450 250 450 -250 +C 700 0 0 0 1 0 N +C 700 0 50 0 1 0 N +P 2 0 1 0 -300 250 450 250 N +P 3 0 1 0 -300 250 -300 -250 450 -250 N +X inA 1 -500 100 200 R 50 50 1 1 I +X Gnd 2 0 -450 200 U 50 50 1 1 I +X Vdd 3 0 450 200 D 50 50 1 1 I +X Out 4 950 0 200 L 50 50 1 1 O +X inB 5 -500 -100 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# NAND_3 +# +DEF NAND_3 X 0 40 Y Y 1 F N +F0 "X" 150 0 60 H V C CNN +F1 "NAND_3" 450 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 500 0 255 787 -787 0 1 0 N 550 250 550 -250 +C 800 0 50 0 1 0 N +P 2 0 1 0 -250 250 550 250 N +P 3 0 1 0 -250 250 -250 -250 550 -250 N +X inA 1 -450 150 200 R 50 50 1 1 I +X inB 2 -450 0 200 R 50 50 1 1 I +X Gnd 3 0 -450 200 U 50 50 1 1 I +X Vdd 4 0 450 200 D 50 50 1 1 I +X Out 5 1050 0 200 L 50 50 1 1 O +X inC 6 -450 -150 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38-rescue.lib b/library/SubcircuitLibrary/SN74HC259/Decoder_38-rescue.lib new file mode 100644 index 000000000..e66f87023 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38-rescue.lib @@ -0,0 +1,46 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# NAND_2-RESCUE-Decoder_38 +# +DEF NAND_2-RESCUE-Decoder_38 X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "NAND_2-RESCUE-Decoder_38" 400 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 400 0 255 787 -787 0 1 0 N 450 250 450 -250 +C 700 0 0 0 1 0 N +C 700 0 50 0 1 0 N +P 2 0 1 0 -300 250 450 250 N +P 3 0 1 0 -300 250 -300 -250 450 -250 N +X inA 1 -500 100 200 R 50 50 1 1 I +X Gnd 2 0 -450 200 U 50 50 1 1 I +X Vdd 3 0 450 200 D 50 50 1 1 I +X inB 4 -500 -100 200 R 50 50 1 1 I +X Out 5 950 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# NAND_3-RESCUE-Decoder_38 +# +DEF NAND_3-RESCUE-Decoder_38 X 0 40 Y Y 1 F N +F0 "X" 150 0 60 H V C CNN +F1 "NAND_3-RESCUE-Decoder_38" 450 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 500 0 255 787 -787 0 1 0 N 550 250 550 -250 +C 800 0 50 0 1 0 N +P 2 0 1 0 -250 250 550 250 N +P 3 0 1 0 -250 250 -250 -250 550 -250 N +X inA 1 -450 150 200 R 50 50 1 1 I +X inB 2 -450 0 200 R 50 50 1 1 I +X Gnd 3 0 -450 200 U 50 50 1 1 I +X Vdd 4 0 450 200 D 50 50 1 1 I +X inC 5 -450 -150 200 R 50 50 1 1 I +X Out 6 1050 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38.bak b/library/SubcircuitLibrary/SN74HC259/Decoder_38.bak new file mode 100644 index 000000000..12de0aaf8 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38.bak @@ -0,0 +1,745 @@ +EESchema Schematic File Version 2 +LIBS:Decoder_38-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:Decoder_38-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +Connection ~ 1150 2900 +Connection ~ 1150 3050 +Connection ~ 1150 3200 +Connection ~ 1150 3500 +Connection ~ 1150 3650 +Connection ~ 1150 3800 +Wire Wire Line + 3050 800 1350 800 +Wire Wire Line + 1350 800 1350 2900 +Wire Wire Line + 1350 2900 1150 2900 +Wire Wire Line + 3050 950 1400 950 +Wire Wire Line + 1400 950 1400 3050 +Wire Wire Line + 1150 3050 1750 3050 +Wire Wire Line + 3050 1100 1450 1100 +Wire Wire Line + 1450 1100 1450 3200 +Wire Wire Line + 1150 3200 1850 3200 +Wire Wire Line + 1150 3800 1500 3800 +Wire Wire Line + 1350 3800 1350 8200 +Wire Wire Line + 1150 3650 1550 3650 +Wire Wire Line + 1400 3650 1400 8050 +Wire Wire Line + 1150 3500 1450 3500 +Wire Wire Line + 1450 3500 1450 7900 +Wire Wire Line + 3100 1800 1350 1800 +Connection ~ 1350 1800 +Wire Wire Line + 3100 1950 1400 1950 +Connection ~ 1400 1950 +Wire Wire Line + 3100 2100 1500 2100 +Wire Wire Line + 1500 2100 1500 3800 +Connection ~ 1350 3800 +Wire Wire Line + 3000 2800 1350 2800 +Connection ~ 1350 2800 +Wire Wire Line + 3000 2950 1550 2950 +Wire Wire Line + 1550 2950 1550 3650 +Connection ~ 1400 3650 +Wire Wire Line + 3000 3100 1450 3100 +Connection ~ 1450 3100 +Wire Wire Line + 3100 3800 1600 3800 +Wire Wire Line + 1600 3800 1600 2800 +Connection ~ 1600 2800 +Wire Wire Line + 3100 3950 1400 3950 +Connection ~ 1400 3950 +Wire Wire Line + 3100 4100 1350 4100 +Connection ~ 1350 4100 +Wire Wire Line + 3000 4800 1450 4800 +Connection ~ 1450 4800 +Wire Wire Line + 3000 4950 1650 4950 +Wire Wire Line + 1650 4950 1650 3050 +Connection ~ 1400 3050 +Wire Wire Line + 3000 5100 1700 5100 +Wire Wire Line + 1700 5100 1700 3200 +Connection ~ 1450 3200 +Wire Wire Line + 1450 7900 3150 7900 +Wire Wire Line + 1400 8050 3150 8050 +Wire Wire Line + 1350 8200 3150 8200 +Wire Wire Line + 3100 5800 1450 5800 +Connection ~ 1450 5800 +Wire Wire Line + 3100 6100 1350 6100 +Connection ~ 1350 6100 +Wire Wire Line + 3100 5950 1750 5950 +Wire Wire Line + 1750 5950 1750 3050 +Connection ~ 1650 3050 +Wire Wire Line + 3000 6800 1450 6800 +Connection ~ 1450 6800 +Wire Wire Line + 3000 6950 1400 6950 +Connection ~ 1400 6950 +Wire Wire Line + 3000 7100 1850 7100 +Wire Wire Line + 1850 7100 1850 3200 +Connection ~ 1700 3200 +Wire Wire Line + 3500 500 5600 500 +Wire Wire Line + 3950 500 3950 7650 +Wire Wire Line + 3950 7600 3600 7600 +Wire Wire Line + 3600 8500 3800 8500 +Wire Wire Line + 3800 1400 3800 8550 +Wire Wire Line + 3500 1400 5600 1400 +Wire Wire Line + 3550 1500 5400 1500 +Connection ~ 3950 1500 +Wire Wire Line + 3550 2400 5400 2400 +Connection ~ 3800 2400 +Wire Wire Line + 3450 2500 5600 2500 +Connection ~ 3950 2500 +Wire Wire Line + 3450 3400 5600 3400 +Connection ~ 3800 3400 +Wire Wire Line + 3550 3500 5400 3500 +Connection ~ 3950 3500 +Wire Wire Line + 3550 4400 5300 4400 +Connection ~ 3800 4400 +Wire Wire Line + 3450 4500 5600 4500 +Connection ~ 3950 4500 +Wire Wire Line + 3450 5400 5500 5400 +Connection ~ 3800 5400 +Wire Wire Line + 3550 5500 5450 5500 +Connection ~ 3950 5500 +Wire Wire Line + 3550 6400 5350 6400 +Connection ~ 3800 6400 +Wire Wire Line + 3450 6500 5550 6500 +Connection ~ 3950 6500 +Wire Wire Line + 3450 7400 5400 7400 +Connection ~ 3800 7400 +Wire Wire Line + 4550 950 4800 950 +Wire Wire Line + 4800 950 4800 850 +Wire Wire Line + 4800 850 5100 850 +Wire Wire Line + 4600 1950 4600 1850 +Wire Wire Line + 4600 1850 4900 1850 +Wire Wire Line + 4500 2950 4700 2950 +Wire Wire Line + 4700 2950 4700 2850 +Wire Wire Line + 4700 2850 5100 2850 +Wire Wire Line + 4600 3950 4600 3900 +Wire Wire Line + 4600 3900 4900 3900 +Wire Wire Line + 4500 4950 4850 4950 +Wire Wire Line + 4850 4950 4850 4900 +Wire Wire Line + 4850 4900 5100 4900 +Wire Wire Line + 4600 5950 4650 5950 +Wire Wire Line + 4650 5950 4650 5900 +Wire Wire Line + 4650 5900 4950 5900 +Wire Wire Line + 4500 6950 5050 6950 +Wire Wire Line + 4650 8050 4650 8000 +Wire Wire Line + 4650 8000 4900 8000 +Connection ~ 3950 500 +Connection ~ 3800 1400 +Wire Wire Line + 5400 3500 5400 3550 +Wire Wire Line + 5300 4400 5300 4450 +Wire Wire Line + 5300 4450 5400 4450 +Wire Wire Line + 5600 4500 5600 4550 +Wire Wire Line + 5500 5400 5500 5450 +Wire Wire Line + 5500 5450 5600 5450 +Wire Wire Line + 5450 5500 5450 5550 +Wire Wire Line + 5350 6400 5350 6450 +Wire Wire Line + 5350 6450 5450 6450 +Wire Wire Line + 5550 6500 5550 6600 +Wire Wire Line + 5400 7400 5400 7500 +Wire Wire Line + 5400 7500 5550 7500 +Wire Wire Line + 3950 7650 5400 7650 +Connection ~ 3950 7600 +Wire Wire Line + 3800 8550 5400 8550 +Connection ~ 3800 8500 +Wire Wire Line + 5100 1050 4750 1050 +Wire Wire Line + 4750 1050 4750 8800 +Wire Wire Line + 4750 8800 1200 8800 +Wire Wire Line + 4900 2050 4750 2050 +Connection ~ 4750 2050 +Wire Wire Line + 5100 3050 4750 3050 +Connection ~ 4750 3050 +Wire Wire Line + 4900 4100 4750 4100 +Connection ~ 4750 4100 +Wire Wire Line + 5100 5100 4750 5100 +Connection ~ 4750 5100 +Wire Wire Line + 5050 7150 4750 7150 +Connection ~ 4750 7150 +Wire Wire Line + 4750 8200 4900 8200 +Connection ~ 4750 8200 +$Comp +L PORT U1 +U 1 1 684B4EE5 +P 900 2900 +F 0 "U1" H 950 3000 30 0000 C CNN +F 1 "PORT" H 900 2900 30 0000 C CNN +F 2 "" H 900 2900 60 0000 C CNN +F 3 "" H 900 2900 60 0000 C CNN + 1 900 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684B5027 +P 900 3050 +F 0 "U1" H 950 3150 30 0000 C CNN +F 1 "PORT" H 900 3050 30 0000 C CNN +F 2 "" H 900 3050 60 0000 C CNN +F 3 "" H 900 3050 60 0000 C CNN + 2 900 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B5070 +P 900 3200 +F 0 "U1" H 950 3300 30 0000 C CNN +F 1 "PORT" H 900 3200 30 0000 C CNN +F 2 "" H 900 3200 60 0000 C CNN +F 3 "" H 900 3200 60 0000 C CNN + 3 900 3200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B50ED +P 900 3500 +F 0 "U1" H 950 3600 30 0000 C CNN +F 1 "PORT" H 900 3500 30 0000 C CNN +F 2 "" H 900 3500 60 0000 C CNN +F 3 "" H 900 3500 60 0000 C CNN + 4 900 3500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684B5144 +P 900 3650 +F 0 "U1" H 950 3750 30 0000 C CNN +F 1 "PORT" H 900 3650 30 0000 C CNN +F 2 "" H 900 3650 60 0000 C CNN +F 3 "" H 900 3650 60 0000 C CNN + 5 900 3650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684B51C5 +P 900 3800 +F 0 "U1" H 950 3900 30 0000 C CNN +F 1 "PORT" H 900 3800 30 0000 C CNN +F 2 "" H 900 3800 60 0000 C CNN +F 3 "" H 900 3800 60 0000 C CNN + 6 900 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 684B53AC +P 950 8800 +F 0 "U1" H 1000 8900 30 0000 C CNN +F 1 "PORT" H 950 8800 30 0000 C CNN +F 2 "" H 950 8800 60 0000 C CNN +F 3 "" H 950 8800 60 0000 C CNN + 7 950 8800 + 1 0 0 -1 +$EndComp +Text Label 1500 8800 0 60 ~ 0 +G_Bar +Text Label 1150 2900 0 60 ~ 0 +S0_Bar +Text Label 1150 3050 0 60 ~ 0 +S1_Bar +Text Label 1150 3200 0 60 ~ 0 +S2_Bar +Text Label 1150 3500 0 60 ~ 0 +S0 +Text Label 1150 3650 0 60 ~ 0 +S1 +Text Label 1150 3800 0 60 ~ 0 +S2 +$Comp +L PORT U1 +U 8 1 684B5AAA +P 4300 600 +F 0 "U1" H 4350 700 30 0000 C CNN +F 1 "PORT" H 4300 600 30 0000 C CNN +F 2 "" H 4300 600 60 0000 C CNN +F 3 "" H 4300 600 60 0000 C CNN + 8 4300 600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 684B5B1B +P 4350 1300 +F 0 "U1" H 4400 1400 30 0000 C CNN +F 1 "PORT" H 4350 1300 30 0000 C CNN +F 2 "" H 4350 1300 60 0000 C CNN +F 3 "" H 4350 1300 60 0000 C CNN + 9 4350 1300 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4050 600 4000 600 +Wire Wire Line + 4000 600 4000 500 +Connection ~ 4000 500 +Wire Wire Line + 4100 1300 4100 1400 +Connection ~ 4100 1400 +Text Label 4000 500 0 60 ~ 0 +Vdd +Text Label 4100 1400 0 60 ~ 0 +Gnd +$Comp +L PORT U1 +U 13 1 684B5F75 +P 6900 950 +F 0 "U1" H 6950 1050 30 0000 C CNN +F 1 "PORT" H 6900 950 30 0000 C CNN +F 2 "" H 6900 950 60 0000 C CNN +F 3 "" H 6900 950 60 0000 C CNN + 13 6900 950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 684B6132 +P 6750 1950 +F 0 "U1" H 6800 2050 30 0000 C CNN +F 1 "PORT" H 6750 1950 30 0000 C CNN +F 2 "" H 6750 1950 60 0000 C CNN +F 3 "" H 6750 1950 60 0000 C CNN + 10 6750 1950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 684B6260 +P 6900 2950 +F 0 "U1" H 6950 3050 30 0000 C CNN +F 1 "PORT" H 6900 2950 30 0000 C CNN +F 2 "" H 6900 2950 60 0000 C CNN +F 3 "" H 6900 2950 60 0000 C CNN + 14 6900 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 684B63FD +P 6750 4000 +F 0 "U1" H 6800 4100 30 0000 C CNN +F 1 "PORT" H 6750 4000 30 0000 C CNN +F 2 "" H 6750 4000 60 0000 C CNN +F 3 "" H 6750 4000 60 0000 C CNN + 11 6750 4000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 17 1 684B6812 +P 6950 5000 +F 0 "U1" H 7000 5100 30 0000 C CNN +F 1 "PORT" H 6950 5000 30 0000 C CNN +F 2 "" H 6950 5000 60 0000 C CNN +F 3 "" H 6950 5000 60 0000 C CNN + 17 6950 5000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 684B6911 +P 6900 6000 +F 0 "U1" H 6950 6100 30 0000 C CNN +F 1 "PORT" H 6900 6000 30 0000 C CNN +F 2 "" H 6900 6000 60 0000 C CNN +F 3 "" H 6900 6000 60 0000 C CNN + 15 6900 6000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 684B6A00 +P 6900 7050 +F 0 "U1" H 6950 7150 30 0000 C CNN +F 1 "PORT" H 6900 7050 30 0000 C CNN +F 2 "" H 6900 7050 60 0000 C CNN +F 3 "" H 6900 7050 60 0000 C CNN + 16 6900 7050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 684B6ADF +P 6800 8100 +F 0 "U1" H 6850 8200 30 0000 C CNN +F 1 "PORT" H 6800 8100 30 0000 C CNN +F 2 "" H 6800 8100 60 0000 C CNN +F 3 "" H 6800 8100 60 0000 C CNN + 12 6800 8100 + -1 0 0 -1 +$EndComp +Wire Wire Line + 6550 950 6650 950 +Text Label 6550 950 0 60 ~ 0 +d7 +Wire Wire Line + 6350 1950 6500 1950 +Wire Wire Line + 6550 2950 6650 2950 +Wire Wire Line + 6550 5000 6700 5000 +Wire Wire Line + 6350 4000 6500 4000 +Wire Wire Line + 6400 6000 6650 6000 +Wire Wire Line + 6500 7050 6650 7050 +Wire Wire Line + 6350 8100 6550 8100 +Text Label 6400 1950 0 60 ~ 0 +d6 +Text Label 6550 2950 0 60 ~ 0 +d5 +Text Label 6400 4000 0 60 ~ 0 +d4 +Text Label 6600 5000 0 60 ~ 0 +d3 +Text Label 6450 6000 0 60 ~ 0 +d2 +Text Label 6550 7050 0 60 ~ 0 +d1 +Text Label 6400 8100 0 60 ~ 0 +d0 +$Comp +L SKY130mode scmode1 +U 1 1 684B80A5 +P 9300 2750 +F 0 "scmode1" H 9300 2900 98 0000 C CNB +F 1 "SKY130mode" H 9300 2650 118 0000 C CNB +F 2 "" H 9300 2900 60 0001 C CNN +F 3 "" H 9300 2900 60 0001 C CNN + 1 9300 2750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4950 6100 4750 6100 +Connection ~ 4750 6100 +$Comp +L NAND_3 X? +U 1 1 684CF822 +P 3500 950 +F 0 "X?" H 3650 950 60 0000 C CNN +F 1 "NAND_3" H 3950 950 60 0000 C CNN +F 2 "" H 3500 950 60 0001 C CNN +F 3 "" H 3500 950 60 0001 C CNN + 1 3500 950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X? +U 1 1 684CF965 +P 3550 1950 +F 0 "X?" H 3700 1950 60 0000 C CNN +F 1 "NAND_3" H 4000 1950 60 0000 C CNN +F 2 "" H 3550 1950 60 0001 C CNN +F 3 "" H 3550 1950 60 0001 C CNN + 1 3550 1950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X? +U 1 1 684CFC72 +P 3450 2950 +F 0 "X?" H 3600 2950 60 0000 C CNN +F 1 "NAND_3" H 3900 2950 60 0000 C CNN +F 2 "" H 3450 2950 60 0001 C CNN +F 3 "" H 3450 2950 60 0001 C CNN + 1 3450 2950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X? +U 1 1 684CFD5F +P 3550 3950 +F 0 "X?" H 3700 3950 60 0000 C CNN +F 1 "NAND_3" H 4000 3950 60 0000 C CNN +F 2 "" H 3550 3950 60 0001 C CNN +F 3 "" H 3550 3950 60 0001 C CNN + 1 3550 3950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X? +U 1 1 684CFEB8 +P 3450 4950 +F 0 "X?" H 3600 4950 60 0000 C CNN +F 1 "NAND_3" H 3900 4950 60 0000 C CNN +F 2 "" H 3450 4950 60 0001 C CNN +F 3 "" H 3450 4950 60 0001 C CNN + 1 3450 4950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X? +U 1 1 684CFFA3 +P 3550 5950 +F 0 "X?" H 3700 5950 60 0000 C CNN +F 1 "NAND_3" H 4000 5950 60 0000 C CNN +F 2 "" H 3550 5950 60 0001 C CNN +F 3 "" H 3550 5950 60 0001 C CNN + 1 3550 5950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X? +U 1 1 684D025A +P 3450 6950 +F 0 "X?" H 3600 6950 60 0000 C CNN +F 1 "NAND_3" H 3900 6950 60 0000 C CNN +F 2 "" H 3450 6950 60 0001 C CNN +F 3 "" H 3450 6950 60 0001 C CNN + 1 3450 6950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X? +U 1 1 684D0467 +P 3600 8050 +F 0 "X?" H 3750 8050 60 0000 C CNN +F 1 "NAND_3" H 4050 8050 60 0000 C CNN +F 2 "" H 3600 8050 60 0001 C CNN +F 3 "" H 3600 8050 60 0001 C CNN + 1 3600 8050 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X? +U 1 1 684D06B2 +P 5400 8100 +F 0 "X?" H 5500 8100 60 0000 C CNN +F 1 "NAND_2" H 5800 8100 60 0000 C CNN +F 2 "" H 5400 8100 60 0001 C CNN +F 3 "" H 5400 8100 60 0001 C CNN + 1 5400 8100 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X? +U 1 1 684D0797 +P 5550 7050 +F 0 "X?" H 5650 7050 60 0000 C CNN +F 1 "NAND_2" H 5950 7050 60 0000 C CNN +F 2 "" H 5550 7050 60 0001 C CNN +F 3 "" H 5550 7050 60 0001 C CNN + 1 5550 7050 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X? +U 1 1 684D08E8 +P 5450 6000 +F 0 "X?" H 5550 6000 60 0000 C CNN +F 1 "NAND_2" H 5850 6000 60 0000 C CNN +F 2 "" H 5450 6000 60 0001 C CNN +F 3 "" H 5450 6000 60 0001 C CNN + 1 5450 6000 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X? +U 1 1 684D0B9F +P 5600 5000 +F 0 "X?" H 5700 5000 60 0000 C CNN +F 1 "NAND_2" H 6000 5000 60 0000 C CNN +F 2 "" H 5600 5000 60 0001 C CNN +F 3 "" H 5600 5000 60 0001 C CNN + 1 5600 5000 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X? +U 1 1 684D0CA6 +P 5400 4000 +F 0 "X?" H 5500 4000 60 0000 C CNN +F 1 "NAND_2" H 5800 4000 60 0000 C CNN +F 2 "" H 5400 4000 60 0001 C CNN +F 3 "" H 5400 4000 60 0001 C CNN + 1 5400 4000 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X? +U 1 1 684D0DA7 +P 5600 2950 +F 0 "X?" H 5700 2950 60 0000 C CNN +F 1 "NAND_2" H 6000 2950 60 0000 C CNN +F 2 "" H 5600 2950 60 0001 C CNN +F 3 "" H 5600 2950 60 0001 C CNN + 1 5600 2950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X? +U 1 1 684D0F38 +P 5400 1950 +F 0 "X?" H 5500 1950 60 0000 C CNN +F 1 "NAND_2" H 5800 1950 60 0000 C CNN +F 2 "" H 5400 1950 60 0001 C CNN +F 3 "" H 5400 1950 60 0001 C CNN + 1 5400 1950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X? +U 1 1 684D10A7 +P 5600 950 +F 0 "X?" H 5700 950 60 0000 C CNN +F 1 "NAND_2" H 6000 950 60 0000 C CNN +F 2 "" H 5600 950 60 0001 C CNN +F 3 "" H 5600 950 60 0001 C CNN + 1 5600 950 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38.cir b/library/SubcircuitLibrary/SN74HC259/Decoder_38.cir new file mode 100644 index 000000000..4a6e20d08 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38.cir @@ -0,0 +1,28 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Decoder_38/Decoder_38.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 09:39:18 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 /S0_Bar /S1_Bar /S2_Bar /S0 /S1 /S2 /G_Bar /Vdd /Gnd /d6 /d4 /d0 /d7 /d5 /d2 /d1 /d3 PORT +scmode1 SKY130mode +X4 /S0_Bar /S1_Bar /Gnd /Vdd Net-_X14-Pad1_ /S2_Bar NAND_3 +X5 /S0_Bar /S1_Bar /Gnd /Vdd Net-_X5-Pad5_ /S2 NAND_3 +X1 /S0_Bar /S1 /Gnd /Vdd Net-_X1-Pad5_ /S2_Bar NAND_3 +X6 /S0_Bar /S1 /Gnd /Vdd Net-_X10-Pad1_ /S2 NAND_3 +X2 /S0 /S1_Bar /Gnd /Vdd Net-_X16-Pad1_ /S2_Bar NAND_3 +X7 /S0 /S1_Bar /Gnd /Vdd Net-_X12-Pad1_ /S2 NAND_3 +X3 /S0 /S1 /Gnd /Vdd Net-_X13-Pad1_ /S2_Bar NAND_3 +X8 /S0 /S1 /Gnd /Vdd Net-_X11-Pad1_ /S2 NAND_3 +X11 Net-_X11-Pad1_ /Gnd /Vdd /d0 /G_Bar NAND_2 +X13 Net-_X13-Pad1_ /Gnd /Vdd /d1 /G_Bar NAND_2 +X12 Net-_X12-Pad1_ /Gnd /Vdd /d2 /G_Bar NAND_2 +X16 Net-_X16-Pad1_ /Gnd /Vdd /d3 /G_Bar NAND_2 +X10 Net-_X10-Pad1_ /Gnd /Vdd /d4 /G_Bar NAND_2 +X15 Net-_X1-Pad5_ /Gnd /Vdd /d5 /G_Bar NAND_2 +X9 Net-_X5-Pad5_ /Gnd /Vdd /d6 /G_Bar NAND_2 +X14 Net-_X14-Pad1_ /Gnd /Vdd /d7 /G_Bar NAND_2 + +.end diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38.cir.out b/library/SubcircuitLibrary/SN74HC259/Decoder_38.cir.out new file mode 100644 index 000000000..66b8007cd --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38.cir.out @@ -0,0 +1,33 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/decoder_38/decoder_38.cir + +.include NAND_2.sub +.include NAND_3.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* u1 /s0_bar /s1_bar /s2_bar /s0 /s1 /s2 /g_bar /vdd /gnd /d6 /d4 /d0 /d7 /d5 /d2 /d1 /d3 port +* s c m o d e +x4 /s0_bar /s1_bar /gnd /vdd net-_x14-pad1_ /s2_bar NAND_3 +x5 /s0_bar /s1_bar /gnd /vdd net-_x5-pad5_ /s2 NAND_3 +x1 /s0_bar /s1 /gnd /vdd net-_x1-pad5_ /s2_bar NAND_3 +x6 /s0_bar /s1 /gnd /vdd net-_x10-pad1_ /s2 NAND_3 +x2 /s0 /s1_bar /gnd /vdd net-_x16-pad1_ /s2_bar NAND_3 +x7 /s0 /s1_bar /gnd /vdd net-_x12-pad1_ /s2 NAND_3 +x3 /s0 /s1 /gnd /vdd net-_x13-pad1_ /s2_bar NAND_3 +x8 /s0 /s1 /gnd /vdd net-_x11-pad1_ /s2 NAND_3 +x11 net-_x11-pad1_ /gnd /vdd /d0 /g_bar NAND_2 +x13 net-_x13-pad1_ /gnd /vdd /d1 /g_bar NAND_2 +x12 net-_x12-pad1_ /gnd /vdd /d2 /g_bar NAND_2 +x16 net-_x16-pad1_ /gnd /vdd /d3 /g_bar NAND_2 +x10 net-_x10-pad1_ /gnd /vdd /d4 /g_bar NAND_2 +x15 net-_x1-pad5_ /gnd /vdd /d5 /g_bar NAND_2 +x9 net-_x5-pad5_ /gnd /vdd /d6 /g_bar NAND_2 +x14 net-_x14-pad1_ /gnd /vdd /d7 /g_bar NAND_2 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38.pro b/library/SubcircuitLibrary/SN74HC259/Decoder_38.pro new file mode 100644 index 000000000..3b4e7cf7a --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38.pro @@ -0,0 +1,74 @@ +update=Sat Jun 14 09:34:32 2025 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=Decoder_38-rescue +LibName2=adc-dac +LibName3=memory +LibName4=xilinx +LibName5=microcontrollers +LibName6=dsp +LibName7=microchip +LibName8=analog_switches +LibName9=motorola +LibName10=texas +LibName11=intel +LibName12=audio +LibName13=interface +LibName14=digital-audio +LibName15=philips +LibName16=display +LibName17=cypress +LibName18=siliconi +LibName19=opto +LibName20=atmel +LibName21=contrib +LibName22=power +LibName23=eSim_Plot +LibName24=transistors +LibName25=conn +LibName26=eSim_User +LibName27=regul +LibName28=74xx +LibName29=cmos4000 +LibName30=eSim_Analog +LibName31=eSim_Devices +LibName32=eSim_Digital +LibName33=eSim_Hybrid +LibName34=eSim_Miscellaneous +LibName35=eSim_Power +LibName36=eSim_Sources +LibName37=eSim_Subckt +LibName38=eSim_Nghdl +LibName39=eSim_Ngveri +LibName40=eSim_SKY130 +LibName41=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38.sch b/library/SubcircuitLibrary/SN74HC259/Decoder_38.sch new file mode 100644 index 000000000..935b86cf1 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38.sch @@ -0,0 +1,745 @@ +EESchema Schematic File Version 2 +LIBS:Decoder_38-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:Decoder_38-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +Connection ~ 1150 2900 +Connection ~ 1150 3050 +Connection ~ 1150 3200 +Connection ~ 1150 3500 +Connection ~ 1150 3650 +Connection ~ 1150 3800 +Wire Wire Line + 3050 800 1350 800 +Wire Wire Line + 1350 800 1350 2900 +Wire Wire Line + 1350 2900 1150 2900 +Wire Wire Line + 3050 950 1400 950 +Wire Wire Line + 1400 950 1400 3050 +Wire Wire Line + 1150 3050 1750 3050 +Wire Wire Line + 3050 1100 1450 1100 +Wire Wire Line + 1450 1100 1450 3200 +Wire Wire Line + 1150 3200 1850 3200 +Wire Wire Line + 1150 3800 1500 3800 +Wire Wire Line + 1350 3800 1350 8200 +Wire Wire Line + 1150 3650 1550 3650 +Wire Wire Line + 1400 3650 1400 8050 +Wire Wire Line + 1150 3500 1450 3500 +Wire Wire Line + 1450 3500 1450 7900 +Wire Wire Line + 3100 1800 1350 1800 +Connection ~ 1350 1800 +Wire Wire Line + 3100 1950 1400 1950 +Connection ~ 1400 1950 +Wire Wire Line + 3100 2100 1500 2100 +Wire Wire Line + 1500 2100 1500 3800 +Connection ~ 1350 3800 +Wire Wire Line + 3000 2800 1350 2800 +Connection ~ 1350 2800 +Wire Wire Line + 3000 2950 1550 2950 +Wire Wire Line + 1550 2950 1550 3650 +Connection ~ 1400 3650 +Wire Wire Line + 3000 3100 1450 3100 +Connection ~ 1450 3100 +Wire Wire Line + 3100 3800 1600 3800 +Wire Wire Line + 1600 3800 1600 2800 +Connection ~ 1600 2800 +Wire Wire Line + 3100 3950 1400 3950 +Connection ~ 1400 3950 +Wire Wire Line + 3100 4100 1350 4100 +Connection ~ 1350 4100 +Wire Wire Line + 3000 4800 1450 4800 +Connection ~ 1450 4800 +Wire Wire Line + 3000 4950 1650 4950 +Wire Wire Line + 1650 4950 1650 3050 +Connection ~ 1400 3050 +Wire Wire Line + 3000 5100 1700 5100 +Wire Wire Line + 1700 5100 1700 3200 +Connection ~ 1450 3200 +Wire Wire Line + 1450 7900 3150 7900 +Wire Wire Line + 1400 8050 3150 8050 +Wire Wire Line + 1350 8200 3150 8200 +Wire Wire Line + 3100 5800 1450 5800 +Connection ~ 1450 5800 +Wire Wire Line + 3100 6100 1350 6100 +Connection ~ 1350 6100 +Wire Wire Line + 3100 5950 1750 5950 +Wire Wire Line + 1750 5950 1750 3050 +Connection ~ 1650 3050 +Wire Wire Line + 3000 6800 1450 6800 +Connection ~ 1450 6800 +Wire Wire Line + 3000 6950 1400 6950 +Connection ~ 1400 6950 +Wire Wire Line + 3000 7100 1850 7100 +Wire Wire Line + 1850 7100 1850 3200 +Connection ~ 1700 3200 +Wire Wire Line + 3500 500 5600 500 +Wire Wire Line + 3950 500 3950 7650 +Wire Wire Line + 3950 7600 3600 7600 +Wire Wire Line + 3600 8500 3800 8500 +Wire Wire Line + 3800 1400 3800 8550 +Wire Wire Line + 3500 1400 5600 1400 +Wire Wire Line + 3550 1500 5400 1500 +Connection ~ 3950 1500 +Wire Wire Line + 3550 2400 5400 2400 +Connection ~ 3800 2400 +Wire Wire Line + 3450 2500 5600 2500 +Connection ~ 3950 2500 +Wire Wire Line + 3450 3400 5600 3400 +Connection ~ 3800 3400 +Wire Wire Line + 3550 3500 5400 3500 +Connection ~ 3950 3500 +Wire Wire Line + 3550 4400 5300 4400 +Connection ~ 3800 4400 +Wire Wire Line + 3450 4500 5600 4500 +Connection ~ 3950 4500 +Wire Wire Line + 3450 5400 5500 5400 +Connection ~ 3800 5400 +Wire Wire Line + 3550 5500 5450 5500 +Connection ~ 3950 5500 +Wire Wire Line + 3550 6400 5350 6400 +Connection ~ 3800 6400 +Wire Wire Line + 3450 6500 5550 6500 +Connection ~ 3950 6500 +Wire Wire Line + 3450 7400 5400 7400 +Connection ~ 3800 7400 +Wire Wire Line + 4550 950 4800 950 +Wire Wire Line + 4800 950 4800 850 +Wire Wire Line + 4800 850 5100 850 +Wire Wire Line + 4600 1950 4600 1850 +Wire Wire Line + 4600 1850 4900 1850 +Wire Wire Line + 4500 2950 4700 2950 +Wire Wire Line + 4700 2950 4700 2850 +Wire Wire Line + 4700 2850 5100 2850 +Wire Wire Line + 4600 3950 4600 3900 +Wire Wire Line + 4600 3900 4900 3900 +Wire Wire Line + 4500 4950 4850 4950 +Wire Wire Line + 4850 4950 4850 4900 +Wire Wire Line + 4850 4900 5100 4900 +Wire Wire Line + 4600 5950 4650 5950 +Wire Wire Line + 4650 5950 4650 5900 +Wire Wire Line + 4650 5900 4950 5900 +Wire Wire Line + 4500 6950 5050 6950 +Wire Wire Line + 4650 8050 4650 8000 +Wire Wire Line + 4650 8000 4900 8000 +Connection ~ 3950 500 +Connection ~ 3800 1400 +Wire Wire Line + 5400 3500 5400 3550 +Wire Wire Line + 5300 4400 5300 4450 +Wire Wire Line + 5300 4450 5400 4450 +Wire Wire Line + 5600 4500 5600 4550 +Wire Wire Line + 5500 5400 5500 5450 +Wire Wire Line + 5500 5450 5600 5450 +Wire Wire Line + 5450 5500 5450 5550 +Wire Wire Line + 5350 6400 5350 6450 +Wire Wire Line + 5350 6450 5450 6450 +Wire Wire Line + 5550 6500 5550 6600 +Wire Wire Line + 5400 7400 5400 7500 +Wire Wire Line + 5400 7500 5550 7500 +Wire Wire Line + 3950 7650 5400 7650 +Connection ~ 3950 7600 +Wire Wire Line + 3800 8550 5400 8550 +Connection ~ 3800 8500 +Wire Wire Line + 5100 1050 4750 1050 +Wire Wire Line + 4750 1050 4750 8800 +Wire Wire Line + 4750 8800 1200 8800 +Wire Wire Line + 4900 2050 4750 2050 +Connection ~ 4750 2050 +Wire Wire Line + 5100 3050 4750 3050 +Connection ~ 4750 3050 +Wire Wire Line + 4900 4100 4750 4100 +Connection ~ 4750 4100 +Wire Wire Line + 5100 5100 4750 5100 +Connection ~ 4750 5100 +Wire Wire Line + 5050 7150 4750 7150 +Connection ~ 4750 7150 +Wire Wire Line + 4750 8200 4900 8200 +Connection ~ 4750 8200 +$Comp +L PORT U1 +U 1 1 684B4EE5 +P 900 2900 +F 0 "U1" H 950 3000 30 0000 C CNN +F 1 "PORT" H 900 2900 30 0000 C CNN +F 2 "" H 900 2900 60 0000 C CNN +F 3 "" H 900 2900 60 0000 C CNN + 1 900 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684B5027 +P 900 3050 +F 0 "U1" H 950 3150 30 0000 C CNN +F 1 "PORT" H 900 3050 30 0000 C CNN +F 2 "" H 900 3050 60 0000 C CNN +F 3 "" H 900 3050 60 0000 C CNN + 2 900 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B5070 +P 900 3200 +F 0 "U1" H 950 3300 30 0000 C CNN +F 1 "PORT" H 900 3200 30 0000 C CNN +F 2 "" H 900 3200 60 0000 C CNN +F 3 "" H 900 3200 60 0000 C CNN + 3 900 3200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B50ED +P 900 3500 +F 0 "U1" H 950 3600 30 0000 C CNN +F 1 "PORT" H 900 3500 30 0000 C CNN +F 2 "" H 900 3500 60 0000 C CNN +F 3 "" H 900 3500 60 0000 C CNN + 4 900 3500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684B5144 +P 900 3650 +F 0 "U1" H 950 3750 30 0000 C CNN +F 1 "PORT" H 900 3650 30 0000 C CNN +F 2 "" H 900 3650 60 0000 C CNN +F 3 "" H 900 3650 60 0000 C CNN + 5 900 3650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684B51C5 +P 900 3800 +F 0 "U1" H 950 3900 30 0000 C CNN +F 1 "PORT" H 900 3800 30 0000 C CNN +F 2 "" H 900 3800 60 0000 C CNN +F 3 "" H 900 3800 60 0000 C CNN + 6 900 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 684B53AC +P 950 8800 +F 0 "U1" H 1000 8900 30 0000 C CNN +F 1 "PORT" H 950 8800 30 0000 C CNN +F 2 "" H 950 8800 60 0000 C CNN +F 3 "" H 950 8800 60 0000 C CNN + 7 950 8800 + 1 0 0 -1 +$EndComp +Text Label 1500 8800 0 60 ~ 0 +G_Bar +Text Label 1150 2900 0 60 ~ 0 +S0_Bar +Text Label 1150 3050 0 60 ~ 0 +S1_Bar +Text Label 1150 3200 0 60 ~ 0 +S2_Bar +Text Label 1150 3500 0 60 ~ 0 +S0 +Text Label 1150 3650 0 60 ~ 0 +S1 +Text Label 1150 3800 0 60 ~ 0 +S2 +$Comp +L PORT U1 +U 8 1 684B5AAA +P 4300 600 +F 0 "U1" H 4350 700 30 0000 C CNN +F 1 "PORT" H 4300 600 30 0000 C CNN +F 2 "" H 4300 600 60 0000 C CNN +F 3 "" H 4300 600 60 0000 C CNN + 8 4300 600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 684B5B1B +P 4350 1300 +F 0 "U1" H 4400 1400 30 0000 C CNN +F 1 "PORT" H 4350 1300 30 0000 C CNN +F 2 "" H 4350 1300 60 0000 C CNN +F 3 "" H 4350 1300 60 0000 C CNN + 9 4350 1300 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4050 600 4000 600 +Wire Wire Line + 4000 600 4000 500 +Connection ~ 4000 500 +Wire Wire Line + 4100 1300 4100 1400 +Connection ~ 4100 1400 +Text Label 4000 500 0 60 ~ 0 +Vdd +Text Label 4100 1400 0 60 ~ 0 +Gnd +$Comp +L PORT U1 +U 13 1 684B5F75 +P 6900 950 +F 0 "U1" H 6950 1050 30 0000 C CNN +F 1 "PORT" H 6900 950 30 0000 C CNN +F 2 "" H 6900 950 60 0000 C CNN +F 3 "" H 6900 950 60 0000 C CNN + 13 6900 950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 684B6132 +P 6750 1950 +F 0 "U1" H 6800 2050 30 0000 C CNN +F 1 "PORT" H 6750 1950 30 0000 C CNN +F 2 "" H 6750 1950 60 0000 C CNN +F 3 "" H 6750 1950 60 0000 C CNN + 10 6750 1950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 684B6260 +P 6900 2950 +F 0 "U1" H 6950 3050 30 0000 C CNN +F 1 "PORT" H 6900 2950 30 0000 C CNN +F 2 "" H 6900 2950 60 0000 C CNN +F 3 "" H 6900 2950 60 0000 C CNN + 14 6900 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 684B63FD +P 6750 4000 +F 0 "U1" H 6800 4100 30 0000 C CNN +F 1 "PORT" H 6750 4000 30 0000 C CNN +F 2 "" H 6750 4000 60 0000 C CNN +F 3 "" H 6750 4000 60 0000 C CNN + 11 6750 4000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 17 1 684B6812 +P 6950 5000 +F 0 "U1" H 7000 5100 30 0000 C CNN +F 1 "PORT" H 6950 5000 30 0000 C CNN +F 2 "" H 6950 5000 60 0000 C CNN +F 3 "" H 6950 5000 60 0000 C CNN + 17 6950 5000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 684B6911 +P 6900 6000 +F 0 "U1" H 6950 6100 30 0000 C CNN +F 1 "PORT" H 6900 6000 30 0000 C CNN +F 2 "" H 6900 6000 60 0000 C CNN +F 3 "" H 6900 6000 60 0000 C CNN + 15 6900 6000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 684B6A00 +P 6900 7050 +F 0 "U1" H 6950 7150 30 0000 C CNN +F 1 "PORT" H 6900 7050 30 0000 C CNN +F 2 "" H 6900 7050 60 0000 C CNN +F 3 "" H 6900 7050 60 0000 C CNN + 16 6900 7050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 684B6ADF +P 6800 8100 +F 0 "U1" H 6850 8200 30 0000 C CNN +F 1 "PORT" H 6800 8100 30 0000 C CNN +F 2 "" H 6800 8100 60 0000 C CNN +F 3 "" H 6800 8100 60 0000 C CNN + 12 6800 8100 + -1 0 0 -1 +$EndComp +Wire Wire Line + 6550 950 6650 950 +Text Label 6550 950 0 60 ~ 0 +d7 +Wire Wire Line + 6350 1950 6500 1950 +Wire Wire Line + 6550 2950 6650 2950 +Wire Wire Line + 6550 5000 6700 5000 +Wire Wire Line + 6350 4000 6500 4000 +Wire Wire Line + 6400 6000 6650 6000 +Wire Wire Line + 6500 7050 6650 7050 +Wire Wire Line + 6350 8100 6550 8100 +Text Label 6400 1950 0 60 ~ 0 +d6 +Text Label 6550 2950 0 60 ~ 0 +d5 +Text Label 6400 4000 0 60 ~ 0 +d4 +Text Label 6600 5000 0 60 ~ 0 +d3 +Text Label 6450 6000 0 60 ~ 0 +d2 +Text Label 6550 7050 0 60 ~ 0 +d1 +Text Label 6400 8100 0 60 ~ 0 +d0 +$Comp +L SKY130mode scmode1 +U 1 1 684B80A5 +P 9300 2750 +F 0 "scmode1" H 9300 2900 98 0000 C CNB +F 1 "SKY130mode" H 9300 2650 118 0000 C CNB +F 2 "" H 9300 2900 60 0001 C CNN +F 3 "" H 9300 2900 60 0001 C CNN + 1 9300 2750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4950 6100 4750 6100 +Connection ~ 4750 6100 +$Comp +L NAND_3 X4 +U 1 1 684CF822 +P 3500 950 +F 0 "X4" H 3650 950 60 0000 C CNN +F 1 "NAND_3" H 3950 950 60 0000 C CNN +F 2 "" H 3500 950 60 0001 C CNN +F 3 "" H 3500 950 60 0001 C CNN + 1 3500 950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X5 +U 1 1 684CF965 +P 3550 1950 +F 0 "X5" H 3700 1950 60 0000 C CNN +F 1 "NAND_3" H 4000 1950 60 0000 C CNN +F 2 "" H 3550 1950 60 0001 C CNN +F 3 "" H 3550 1950 60 0001 C CNN + 1 3550 1950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X1 +U 1 1 684CFC72 +P 3450 2950 +F 0 "X1" H 3600 2950 60 0000 C CNN +F 1 "NAND_3" H 3900 2950 60 0000 C CNN +F 2 "" H 3450 2950 60 0001 C CNN +F 3 "" H 3450 2950 60 0001 C CNN + 1 3450 2950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X6 +U 1 1 684CFD5F +P 3550 3950 +F 0 "X6" H 3700 3950 60 0000 C CNN +F 1 "NAND_3" H 4000 3950 60 0000 C CNN +F 2 "" H 3550 3950 60 0001 C CNN +F 3 "" H 3550 3950 60 0001 C CNN + 1 3550 3950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X2 +U 1 1 684CFEB8 +P 3450 4950 +F 0 "X2" H 3600 4950 60 0000 C CNN +F 1 "NAND_3" H 3900 4950 60 0000 C CNN +F 2 "" H 3450 4950 60 0001 C CNN +F 3 "" H 3450 4950 60 0001 C CNN + 1 3450 4950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X7 +U 1 1 684CFFA3 +P 3550 5950 +F 0 "X7" H 3700 5950 60 0000 C CNN +F 1 "NAND_3" H 4000 5950 60 0000 C CNN +F 2 "" H 3550 5950 60 0001 C CNN +F 3 "" H 3550 5950 60 0001 C CNN + 1 3550 5950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X3 +U 1 1 684D025A +P 3450 6950 +F 0 "X3" H 3600 6950 60 0000 C CNN +F 1 "NAND_3" H 3900 6950 60 0000 C CNN +F 2 "" H 3450 6950 60 0001 C CNN +F 3 "" H 3450 6950 60 0001 C CNN + 1 3450 6950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_3 X8 +U 1 1 684D0467 +P 3600 8050 +F 0 "X8" H 3750 8050 60 0000 C CNN +F 1 "NAND_3" H 4050 8050 60 0000 C CNN +F 2 "" H 3600 8050 60 0001 C CNN +F 3 "" H 3600 8050 60 0001 C CNN + 1 3600 8050 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X11 +U 1 1 684D06B2 +P 5400 8100 +F 0 "X11" H 5500 8100 60 0000 C CNN +F 1 "NAND_2" H 5800 8100 60 0000 C CNN +F 2 "" H 5400 8100 60 0001 C CNN +F 3 "" H 5400 8100 60 0001 C CNN + 1 5400 8100 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X13 +U 1 1 684D0797 +P 5550 7050 +F 0 "X13" H 5650 7050 60 0000 C CNN +F 1 "NAND_2" H 5950 7050 60 0000 C CNN +F 2 "" H 5550 7050 60 0001 C CNN +F 3 "" H 5550 7050 60 0001 C CNN + 1 5550 7050 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X12 +U 1 1 684D08E8 +P 5450 6000 +F 0 "X12" H 5550 6000 60 0000 C CNN +F 1 "NAND_2" H 5850 6000 60 0000 C CNN +F 2 "" H 5450 6000 60 0001 C CNN +F 3 "" H 5450 6000 60 0001 C CNN + 1 5450 6000 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X16 +U 1 1 684D0B9F +P 5600 5000 +F 0 "X16" H 5700 5000 60 0000 C CNN +F 1 "NAND_2" H 6000 5000 60 0000 C CNN +F 2 "" H 5600 5000 60 0001 C CNN +F 3 "" H 5600 5000 60 0001 C CNN + 1 5600 5000 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X10 +U 1 1 684D0CA6 +P 5400 4000 +F 0 "X10" H 5500 4000 60 0000 C CNN +F 1 "NAND_2" H 5800 4000 60 0000 C CNN +F 2 "" H 5400 4000 60 0001 C CNN +F 3 "" H 5400 4000 60 0001 C CNN + 1 5400 4000 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X15 +U 1 1 684D0DA7 +P 5600 2950 +F 0 "X15" H 5700 2950 60 0000 C CNN +F 1 "NAND_2" H 6000 2950 60 0000 C CNN +F 2 "" H 5600 2950 60 0001 C CNN +F 3 "" H 5600 2950 60 0001 C CNN + 1 5600 2950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X9 +U 1 1 684D0F38 +P 5400 1950 +F 0 "X9" H 5500 1950 60 0000 C CNN +F 1 "NAND_2" H 5800 1950 60 0000 C CNN +F 2 "" H 5400 1950 60 0001 C CNN +F 3 "" H 5400 1950 60 0001 C CNN + 1 5400 1950 + 1 0 0 -1 +$EndComp +$Comp +L NAND_2 X14 +U 1 1 684D10A7 +P 5600 950 +F 0 "X14" H 5700 950 60 0000 C CNN +F 1 "NAND_2" H 6000 950 60 0000 C CNN +F 2 "" H 5600 950 60 0001 C CNN +F 3 "" H 5600 950 60 0001 C CNN + 1 5600 950 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38.sub b/library/SubcircuitLibrary/SN74HC259/Decoder_38.sub new file mode 100644 index 000000000..67271ac43 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38.sub @@ -0,0 +1,27 @@ +* Subcircuit Decoder_38 +.subckt Decoder_38 /s0_bar /s1_bar /s2_bar /s0 /s1 /s2 /g_bar /vdd /gnd /d6 /d4 /d0 /d7 /d5 /d2 /d1 /d3 +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/decoder_38/decoder_38.cir +.include NAND_2.sub +.include NAND_3.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* s c m o d e +x4 /s0_bar /s1_bar /gnd /vdd net-_x14-pad1_ /s2_bar NAND_3 +x5 /s0_bar /s1_bar /gnd /vdd net-_x5-pad5_ /s2 NAND_3 +x1 /s0_bar /s1 /gnd /vdd net-_x1-pad5_ /s2_bar NAND_3 +x6 /s0_bar /s1 /gnd /vdd net-_x10-pad1_ /s2 NAND_3 +x2 /s0 /s1_bar /gnd /vdd net-_x16-pad1_ /s2_bar NAND_3 +x7 /s0 /s1_bar /gnd /vdd net-_x12-pad1_ /s2 NAND_3 +x3 /s0 /s1 /gnd /vdd net-_x13-pad1_ /s2_bar NAND_3 +x8 /s0 /s1 /gnd /vdd net-_x11-pad1_ /s2 NAND_3 +x11 net-_x11-pad1_ /gnd /vdd /d0 /g_bar NAND_2 +x13 net-_x13-pad1_ /gnd /vdd /d1 /g_bar NAND_2 +x12 net-_x12-pad1_ /gnd /vdd /d2 /g_bar NAND_2 +x16 net-_x16-pad1_ /gnd /vdd /d3 /g_bar NAND_2 +x10 net-_x10-pad1_ /gnd /vdd /d4 /g_bar NAND_2 +x15 net-_x1-pad5_ /gnd /vdd /d5 /g_bar NAND_2 +x9 net-_x5-pad5_ /gnd /vdd /d6 /g_bar NAND_2 +x14 net-_x14-pad1_ /gnd /vdd /d7 /g_bar NAND_2 +* Control Statements + +.ends Decoder_38 diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage-cache.lib b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage-cache.lib new file mode 100644 index 000000000..5d471583c --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage-cache.lib @@ -0,0 +1,104 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# D_Latch +# +DEF D_Latch X 0 40 Y Y 1 F N +F0 "X" 100 -100 60 H V C CNN +F1 "D_Latch" 100 50 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -500 500 650 -450 0 1 0 N +X D 1 -700 300 200 R 50 50 1 1 I +X LE 2 -700 0 200 R 50 50 1 1 I +X RE 3 -700 -300 200 R 50 50 1 1 I +X Gnd 4 0 -650 200 U 50 50 1 1 I +X Vdd 5 0 700 200 D 50 50 1 1 I +X Q 6 850 200 200 L 50 50 1 1 O +X Q_Bar 7 850 -150 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Decoder_38 +# +DEF Decoder_38 X 0 40 Y Y 1 F N +F0 "X" 0 -200 60 H V C CNN +F1 "Decoder_38" 0 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -700 1200 700 -1200 0 1 0 N +X S0_Bar 1 -900 850 200 R 50 50 1 1 I +X S1_Bar 2 -900 550 200 R 50 50 1 1 I +X S2_Bar 3 -900 250 200 R 50 50 1 1 I +X S0 4 -900 -300 200 R 50 50 1 1 I +X S1 5 -900 -600 200 R 50 50 1 1 I +X S2 6 -900 -900 200 R 50 50 1 1 I +X G_Bar 7 -900 0 200 R 50 50 1 1 I +X Vdd 8 0 1400 200 D 50 50 1 1 I +X Gnd 9 0 -1400 200 U 50 50 1 1 I +X d6 10 900 -650 200 L 50 50 1 1 O +X d4 11 900 -150 200 L 50 50 1 1 O +X d0 12 900 900 200 L 50 50 1 1 O +X d7 13 900 -900 200 L 50 50 1 1 O +X d5 14 900 -400 200 L 50 50 1 1 O +X d2 15 900 400 200 L 50 50 1 1 O +X d1 16 900 650 200 L 50 50 1 1 O +X d3 17 900 150 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.bak b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.bak new file mode 100644 index 000000000..584a16a11 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.bak @@ -0,0 +1,583 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:Decoder_38_Address_Latch_storage-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L D_Latch X2 +U 1 1 684B8D5D +P 2100 1700 +F 0 "X2" H 2200 1600 60 0000 C CNN +F 1 "D_Latch" H 2200 1750 60 0000 C CNN +F 2 "" H 2100 1700 60 0001 C CNN +F 3 "" H 2100 1700 60 0001 C CNN + 1 2100 1700 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X1 +U 1 1 684B8DE8 +P 1950 3300 +F 0 "X1" H 2050 3200 60 0000 C CNN +F 1 "D_Latch" H 2050 3350 60 0000 C CNN +F 2 "" H 1950 3300 60 0001 C CNN +F 3 "" H 1950 3300 60 0001 C CNN + 1 1950 3300 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X3 +U 1 1 684B8EF1 +P 2100 4750 +F 0 "X3" H 2200 4650 60 0000 C CNN +F 1 "D_Latch" H 2200 4800 60 0000 C CNN +F 2 "" H 2100 4750 60 0001 C CNN +F 3 "" H 2100 4750 60 0001 C CNN + 1 2100 4750 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X4 +U 1 1 684B8FAC +P 2200 6350 +F 0 "X4" H 2300 6250 60 0000 C CNN +F 1 "D_Latch" H 2300 6400 60 0000 C CNN +F 2 "" H 2200 6350 60 0001 C CNN +F 3 "" H 2200 6350 60 0001 C CNN + 1 2200 6350 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X5 +U 1 1 684B9053 +P 4650 1700 +F 0 "X5" H 4750 1600 60 0000 C CNN +F 1 "D_Latch" H 4750 1750 60 0000 C CNN +F 2 "" H 4650 1700 60 0001 C CNN +F 3 "" H 4650 1700 60 0001 C CNN + 1 4650 1700 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X6 +U 1 1 684B90D4 +P 4750 3300 +F 0 "X6" H 4850 3200 60 0000 C CNN +F 1 "D_Latch" H 4850 3350 60 0000 C CNN +F 2 "" H 4750 3300 60 0001 C CNN +F 3 "" H 4750 3300 60 0001 C CNN + 1 4750 3300 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X7 +U 1 1 684B9169 +P 4950 4750 +F 0 "X7" H 5050 4650 60 0000 C CNN +F 1 "D_Latch" H 5050 4800 60 0000 C CNN +F 2 "" H 4950 4750 60 0001 C CNN +F 3 "" H 4950 4750 60 0001 C CNN + 1 4950 4750 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X8 +U 1 1 684B91E8 +P 5150 6350 +F 0 "X8" H 5250 6250 60 0000 C CNN +F 1 "D_Latch" H 5250 6400 60 0000 C CNN +F 2 "" H 5150 6350 60 0001 C CNN +F 3 "" H 5150 6350 60 0001 C CNN + 1 5150 6350 + -1 0 0 -1 +$EndComp +Wire Wire Line + 2100 1000 4650 1000 +Wire Wire Line + 2200 5650 5150 5650 +Wire Wire Line + 3450 800 3450 5650 +Connection ~ 3450 5650 +Connection ~ 3450 1000 +Wire Wire Line + 2200 7000 5150 7000 +Wire Wire Line + 2100 2350 4650 2350 +Wire Wire Line + 3300 2200 3300 7000 +Connection ~ 3300 7000 +Connection ~ 3300 2350 +Wire Wire Line + 2100 4050 4950 4050 +Connection ~ 3450 4050 +Wire Wire Line + 1950 2600 4750 2600 +Connection ~ 3450 2600 +Wire Wire Line + 1950 3950 4750 3950 +Connection ~ 3300 3950 +Wire Wire Line + 2100 5400 4950 5400 +Connection ~ 3300 5400 +Wire Wire Line + 2800 1400 3050 1400 +Wire Wire Line + 3050 1400 3050 6050 +Wire Wire Line + 3050 6050 2900 6050 +Wire Wire Line + 5850 6050 6200 6050 +Wire Wire Line + 6200 6050 6200 1400 +Wire Wire Line + 5350 1400 6400 1400 +Wire Wire Line + 2650 3000 3050 3000 +Connection ~ 3050 3000 +Wire Wire Line + 5450 3000 6200 3000 +Connection ~ 6200 3000 +Wire Wire Line + 2800 4450 3050 4450 +Connection ~ 3050 4450 +Wire Wire Line + 5650 4450 6200 4450 +Connection ~ 6200 4450 +Wire Wire Line + 3050 5850 6200 5850 +Connection ~ 6200 5850 +Connection ~ 3050 5850 +Text Label 6200 1400 0 60 ~ 0 +D +Text Label 3450 1000 0 60 ~ 0 +Vdd +Text Label 3300 2350 0 60 ~ 0 +Gnd +Wire Wire Line + 2800 2000 3200 2000 +Wire Wire Line + 3200 2000 3200 6650 +Wire Wire Line + 3200 6650 2900 6650 +Wire Wire Line + 2800 5050 3200 5050 +Connection ~ 3200 5050 +Wire Wire Line + 2650 3600 3200 3600 +Connection ~ 3200 3600 +Wire Wire Line + 5350 2000 6000 2000 +Wire Wire Line + 6000 2000 6000 6650 +Wire Wire Line + 6000 6650 5850 6650 +Wire Wire Line + 5650 5050 6000 5050 +Connection ~ 6000 5050 +Wire Wire Line + 5450 3600 6000 3600 +Connection ~ 6000 3600 +Wire Wire Line + 3200 2500 6000 2500 +Connection ~ 6000 2500 +Connection ~ 3200 2500 +$Comp +L PORT U1 +U 12 1 684BA095 +P 6650 1400 +F 0 "U1" H 6700 1500 30 0000 C CNN +F 1 "PORT" H 6650 1400 30 0000 C CNN +F 2 "" H 6650 1400 60 0000 C CNN +F 3 "" H 6650 1400 60 0000 C CNN + 12 6650 1400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 684BA0F0 +P 5650 2200 +F 0 "U1" H 5700 2300 30 0000 C CNN +F 1 "PORT" H 5650 2200 30 0000 C CNN +F 2 "" H 5650 2200 60 0000 C CNN +F 3 "" H 5650 2200 60 0000 C CNN + 11 5650 2200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684BA2EB +P 3200 800 +F 0 "U1" H 3250 900 30 0000 C CNN +F 1 "PORT" H 3200 800 30 0000 C CNN +F 2 "" H 3200 800 60 0000 C CNN +F 3 "" H 3200 800 60 0000 C CNN + 5 3200 800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684BA392 +P 3300 1950 +F 0 "U1" H 3350 2050 30 0000 C CNN +F 1 "PORT" H 3300 1950 30 0000 C CNN +F 2 "" H 3300 1950 60 0000 C CNN +F 3 "" H 3300 1950 60 0000 C CNN + 6 3300 1950 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 3 1 684BA46C +P 850 1500 +F 0 "U1" H 900 1600 30 0000 C CNN +F 1 "PORT" H 850 1500 30 0000 C CNN +F 2 "" H 850 1500 60 0000 C CNN +F 3 "" H 850 1500 60 0000 C CNN + 3 850 1500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684BA757 +P 750 3100 +F 0 "U1" H 800 3200 30 0000 C CNN +F 1 "PORT" H 750 3100 30 0000 C CNN +F 2 "" H 750 3100 60 0000 C CNN +F 3 "" H 750 3100 60 0000 C CNN + 1 750 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684BA82C +P 800 4550 +F 0 "U1" H 850 4650 30 0000 C CNN +F 1 "PORT" H 800 4550 30 0000 C CNN +F 2 "" H 800 4550 60 0000 C CNN +F 3 "" H 800 4550 60 0000 C CNN + 2 800 4550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684BA923 +P 900 6150 +F 0 "U1" H 950 6250 30 0000 C CNN +F 1 "PORT" H 900 6150 30 0000 C CNN +F 2 "" H 900 6150 60 0000 C CNN +F 3 "" H 900 6150 60 0000 C CNN + 4 900 6150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 684BA9CD +P 3950 6150 +F 0 "U1" H 4000 6250 30 0000 C CNN +F 1 "PORT" H 3950 6150 30 0000 C CNN +F 2 "" H 3950 6150 60 0000 C CNN +F 3 "" H 3950 6150 60 0000 C CNN + 10 3950 6150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 684BAAB0 +P 3750 4550 +F 0 "U1" H 3800 4650 30 0000 C CNN +F 1 "PORT" H 3750 4550 30 0000 C CNN +F 2 "" H 3750 4550 60 0000 C CNN +F 3 "" H 3750 4550 60 0000 C CNN + 9 3750 4550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 684BAB6F +P 3600 3100 +F 0 "U1" H 3650 3200 30 0000 C CNN +F 1 "PORT" H 3600 3100 30 0000 C CNN +F 2 "" H 3600 3100 60 0000 C CNN +F 3 "" H 3600 3100 60 0000 C CNN + 8 3600 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 684BAC3A +P 3500 1500 +F 0 "U1" H 3550 1600 30 0000 C CNN +F 1 "PORT" H 3500 1500 30 0000 C CNN +F 2 "" H 3500 1500 60 0000 C CNN +F 3 "" H 3500 1500 60 0000 C CNN + 7 3500 1500 + 1 0 0 -1 +$EndComp +Connection ~ 6200 1400 +Wire Wire Line + 5900 2200 6000 2200 +Connection ~ 6000 2200 +Wire Wire Line + 3750 1500 3800 1500 +Wire Wire Line + 3850 3100 3900 3100 +Wire Wire Line + 4000 4550 4100 4550 +Wire Wire Line + 4200 6150 4300 6150 +Wire Wire Line + 1150 6150 1350 6150 +Wire Wire Line + 1050 4550 1250 4550 +Wire Wire Line + 1000 3100 1100 3100 +Wire Wire Line + 1100 1500 1250 1500 +Wire Wire Line + 7550 2500 6400 2500 +Wire Wire Line + 6400 2500 6400 2900 +Wire Wire Line + 6400 2900 2800 2900 +Wire Wire Line + 2800 2900 2800 3300 +Wire Wire Line + 2800 3300 2650 3300 +Wire Wire Line + 7550 2750 4850 2750 +Wire Wire Line + 4850 2750 4850 2400 +Wire Wire Line + 4850 2400 2900 2400 +Wire Wire Line + 2900 2400 2900 1700 +Wire Wire Line + 2900 1700 2800 1700 +Wire Wire Line + 2800 4750 3550 4750 +Wire Wire Line + 3550 4750 3550 3650 +Wire Wire Line + 3550 3650 6550 3650 +Wire Wire Line + 6550 3650 6550 3000 +Wire Wire Line + 6550 3000 7550 3000 +Wire Wire Line + 2900 6350 3600 6350 +Wire Wire Line + 3600 6350 3600 3700 +Wire Wire Line + 3600 3700 6650 3700 +Wire Wire Line + 6650 3700 6650 3250 +Wire Wire Line + 6650 3250 7550 3250 +Wire Wire Line + 7550 3550 6700 3550 +Wire Wire Line + 6700 3550 6700 1700 +Wire Wire Line + 6700 1700 5350 1700 +Wire Wire Line + 7550 3800 6850 3800 +Wire Wire Line + 6850 3800 6850 3300 +Wire Wire Line + 6850 3300 5450 3300 +Wire Wire Line + 5650 4750 6450 4750 +Wire Wire Line + 6450 4750 6450 4050 +Wire Wire Line + 6450 4050 7550 4050 +Wire Wire Line + 5850 6350 6650 6350 +Wire Wire Line + 6650 6350 6650 4300 +Wire Wire Line + 6650 4300 7550 4300 +Wire Wire Line + 8450 4800 8450 5500 +Wire Wire Line + 8450 5500 3450 5500 +Connection ~ 3450 5500 +Wire Wire Line + 3450 900 8450 900 +Wire Wire Line + 8450 900 8450 2000 +Connection ~ 3450 900 +$Comp +L Decoder_38 X9 +U 1 1 684B931F +P 8450 3400 +F 0 "X9" H 8450 3200 60 0000 C CNN +F 1 "Decoder_38" H 8450 3400 60 0000 C CNN +F 2 "" H 8450 3400 60 0001 C CNN +F 3 "" H 8450 3400 60 0001 C CNN + 1 8450 3400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 684B9841 +P 9900 2550 +F 0 "U1" H 9950 2650 30 0000 C CNN +F 1 "PORT" H 9900 2550 30 0000 C CNN +F 2 "" H 9900 2550 60 0000 C CNN +F 3 "" H 9900 2550 60 0000 C CNN + 13 9900 2550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 684B989E +P 9900 2850 +F 0 "U1" H 9950 2950 30 0000 C CNN +F 1 "PORT" H 9900 2850 30 0000 C CNN +F 2 "" H 9900 2850 60 0000 C CNN +F 3 "" H 9900 2850 60 0000 C CNN + 14 9900 2850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 684B9931 +P 9900 3150 +F 0 "U1" H 9950 3250 30 0000 C CNN +F 1 "PORT" H 9900 3150 30 0000 C CNN +F 2 "" H 9900 3150 60 0000 C CNN +F 3 "" H 9900 3150 60 0000 C CNN + 15 9900 3150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 684B99A6 +P 9900 3400 +F 0 "U1" H 9950 3500 30 0000 C CNN +F 1 "PORT" H 9900 3400 30 0000 C CNN +F 2 "" H 9900 3400 60 0000 C CNN +F 3 "" H 9900 3400 60 0000 C CNN + 16 9900 3400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 17 1 684B9A1F +P 9900 3700 +F 0 "U1" H 9950 3800 30 0000 C CNN +F 1 "PORT" H 9900 3700 30 0000 C CNN +F 2 "" H 9900 3700 60 0000 C CNN +F 3 "" H 9900 3700 60 0000 C CNN + 17 9900 3700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 18 1 684B9B14 +P 9900 4000 +F 0 "U1" H 9950 4100 30 0000 C CNN +F 1 "PORT" H 9900 4000 30 0000 C CNN +F 2 "" H 9900 4000 60 0000 C CNN +F 3 "" H 9900 4000 60 0000 C CNN + 18 9900 4000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 19 1 684B9B8D +P 9900 4300 +F 0 "U1" H 9950 4400 30 0000 C CNN +F 1 "PORT" H 9900 4300 30 0000 C CNN +F 2 "" H 9900 4300 60 0000 C CNN +F 3 "" H 9900 4300 60 0000 C CNN + 19 9900 4300 + -1 0 0 -1 +$EndComp +Wire Wire Line + 9350 2550 9650 2550 +Wire Wire Line + 9350 2850 9650 2850 +Wire Wire Line + 9350 3150 9650 3150 +Wire Wire Line + 9350 3400 9650 3400 +Wire Wire Line + 9350 3700 9650 3700 +Wire Wire Line + 9350 4000 9650 4000 +Wire Wire Line + 9350 4300 9650 4300 +$Comp +L SKY130mode scmode1 +U 1 1 684BA49C +P 10150 1300 +F 0 "scmode1" H 10150 1450 98 0000 C CNB +F 1 "SKY130mode" H 10150 1200 118 0000 C CNB +F 2 "" H 10150 1450 60 0001 C CNN +F 3 "" H 10150 1450 60 0001 C CNN + 1 10150 1300 + 1 0 0 -1 +$EndComp +NoConn ~ 1250 1850 +NoConn ~ 3800 1850 +NoConn ~ 1100 3450 +NoConn ~ 3900 3450 +NoConn ~ 1250 4900 +NoConn ~ 4100 4900 +NoConn ~ 1350 6500 +NoConn ~ 4300 6500 +NoConn ~ 17800 2250 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.cir b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.cir new file mode 100644 index 000000000..af8ba3eaa --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.cir @@ -0,0 +1,21 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Decoder_38_Address_Latch_storage/Decoder_38_Address_Latch_storage.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 09:52:10 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ /Vdd /Gnd Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ /D Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ Net-_U1-Pad19_ PORT +scmode1 SKY130mode +X2 /D Net-_X2-Pad2_ Net-_U1-Pad11_ /Gnd /Vdd Net-_U1-Pad3_ ? D_Latch +X1 /D Net-_X1-Pad2_ Net-_U1-Pad11_ /Gnd /Vdd Net-_U1-Pad1_ ? D_Latch +X3 /D Net-_X3-Pad2_ Net-_U1-Pad11_ /Gnd /Vdd Net-_U1-Pad2_ ? D_Latch +X4 /D Net-_X4-Pad2_ Net-_U1-Pad11_ /Gnd /Vdd Net-_U1-Pad4_ ? D_Latch +X8 /D Net-_X8-Pad2_ Net-_U1-Pad11_ /Gnd /Vdd Net-_U1-Pad10_ ? D_Latch +X7 /D Net-_X7-Pad2_ Net-_U1-Pad11_ /Gnd /Vdd Net-_U1-Pad9_ ? D_Latch +X6 /D Net-_X6-Pad2_ Net-_U1-Pad11_ /Gnd /Vdd Net-_U1-Pad8_ ? D_Latch +X5 /D Net-_X5-Pad2_ Net-_U1-Pad11_ /Gnd /Vdd Net-_U1-Pad7_ ? D_Latch +X9 Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad17_ Net-_U1-Pad18_ Net-_U1-Pad19_ Net-_U1-Pad16_ /Vdd /Vdd Net-_X7-Pad2_ Net-_X5-Pad2_ Net-_X1-Pad2_ Net-_X8-Pad2_ Net-_X6-Pad2_ Net-_X3-Pad2_ Net-_X2-Pad2_ Net-_X4-Pad2_ Decoder_38 + +.end diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.cir.out b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.cir.out new file mode 100644 index 000000000..44855644c --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.cir.out @@ -0,0 +1,26 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/decoder_38_address_latch_storage/decoder_38_address_latch_storage.cir + +.include D_latch.sub +.include Decoder_38.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ /vdd /gnd net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ /d net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ port +* s c m o d e +x2 /d net-_x2-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad3_ ? D_latch +x1 /d net-_x1-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad1_ ? D_latch +x3 /d net-_x3-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad2_ ? D_latch +x4 /d net-_x4-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad4_ ? D_latch +x8 /d net-_x8-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad10_ ? D_latch +x7 /d net-_x7-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad9_ ? D_latch +x6 /d net-_x6-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad8_ ? D_latch +x5 /d net-_x5-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad7_ ? D_latch +x9 net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ net-_u1-pad16_ /vdd /vdd net-_x7-pad2_ net-_x5-pad2_ net-_x1-pad2_ net-_x8-pad2_ net-_x6-pad2_ net-_x3-pad2_ net-_x2-pad2_ net-_x4-pad2_ Decoder_38 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.pro b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.sch b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.sch new file mode 100644 index 000000000..d9508a2dc --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.sch @@ -0,0 +1,583 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:Decoder_38_Address_Latch_storage-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +Wire Wire Line + 2100 1000 4650 1000 +Wire Wire Line + 2200 5650 5150 5650 +Wire Wire Line + 3450 800 3450 5650 +Connection ~ 3450 5650 +Connection ~ 3450 1000 +Wire Wire Line + 2200 7000 5150 7000 +Wire Wire Line + 2100 2350 4650 2350 +Wire Wire Line + 3300 2200 3300 7000 +Connection ~ 3300 7000 +Connection ~ 3300 2350 +Wire Wire Line + 2100 4050 4950 4050 +Connection ~ 3450 4050 +Wire Wire Line + 1950 2600 4750 2600 +Connection ~ 3450 2600 +Wire Wire Line + 1950 3950 4750 3950 +Connection ~ 3300 3950 +Wire Wire Line + 2100 5400 4950 5400 +Connection ~ 3300 5400 +Wire Wire Line + 2800 1400 3050 1400 +Wire Wire Line + 3050 1400 3050 6050 +Wire Wire Line + 3050 6050 2900 6050 +Wire Wire Line + 5850 6050 6200 6050 +Wire Wire Line + 6200 6050 6200 1400 +Wire Wire Line + 5350 1400 6400 1400 +Wire Wire Line + 2650 3000 3050 3000 +Connection ~ 3050 3000 +Wire Wire Line + 5450 3000 6200 3000 +Connection ~ 6200 3000 +Wire Wire Line + 2800 4450 3050 4450 +Connection ~ 3050 4450 +Wire Wire Line + 5650 4450 6200 4450 +Connection ~ 6200 4450 +Wire Wire Line + 3050 5850 6200 5850 +Connection ~ 6200 5850 +Connection ~ 3050 5850 +Text Label 6200 1400 0 60 ~ 0 +D +Text Label 3450 1000 0 60 ~ 0 +Vdd +Text Label 3300 2350 0 60 ~ 0 +Gnd +Wire Wire Line + 2800 2000 3200 2000 +Wire Wire Line + 3200 2000 3200 6650 +Wire Wire Line + 3200 6650 2900 6650 +Wire Wire Line + 2800 5050 3200 5050 +Connection ~ 3200 5050 +Wire Wire Line + 2650 3600 3200 3600 +Connection ~ 3200 3600 +Wire Wire Line + 5350 2000 6000 2000 +Wire Wire Line + 6000 2000 6000 6650 +Wire Wire Line + 6000 6650 5850 6650 +Wire Wire Line + 5650 5050 6000 5050 +Connection ~ 6000 5050 +Wire Wire Line + 5450 3600 6000 3600 +Connection ~ 6000 3600 +Wire Wire Line + 3200 2500 6000 2500 +Connection ~ 6000 2500 +Connection ~ 3200 2500 +$Comp +L PORT U1 +U 12 1 684BA095 +P 6650 1400 +F 0 "U1" H 6700 1500 30 0000 C CNN +F 1 "PORT" H 6650 1400 30 0000 C CNN +F 2 "" H 6650 1400 60 0000 C CNN +F 3 "" H 6650 1400 60 0000 C CNN + 12 6650 1400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 684BA0F0 +P 5650 2200 +F 0 "U1" H 5700 2300 30 0000 C CNN +F 1 "PORT" H 5650 2200 30 0000 C CNN +F 2 "" H 5650 2200 60 0000 C CNN +F 3 "" H 5650 2200 60 0000 C CNN + 11 5650 2200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684BA2EB +P 3200 800 +F 0 "U1" H 3250 900 30 0000 C CNN +F 1 "PORT" H 3200 800 30 0000 C CNN +F 2 "" H 3200 800 60 0000 C CNN +F 3 "" H 3200 800 60 0000 C CNN + 5 3200 800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684BA392 +P 3300 1950 +F 0 "U1" H 3350 2050 30 0000 C CNN +F 1 "PORT" H 3300 1950 30 0000 C CNN +F 2 "" H 3300 1950 60 0000 C CNN +F 3 "" H 3300 1950 60 0000 C CNN + 6 3300 1950 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 3 1 684BA46C +P 850 1500 +F 0 "U1" H 900 1600 30 0000 C CNN +F 1 "PORT" H 850 1500 30 0000 C CNN +F 2 "" H 850 1500 60 0000 C CNN +F 3 "" H 850 1500 60 0000 C CNN + 3 850 1500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684BA757 +P 750 3100 +F 0 "U1" H 800 3200 30 0000 C CNN +F 1 "PORT" H 750 3100 30 0000 C CNN +F 2 "" H 750 3100 60 0000 C CNN +F 3 "" H 750 3100 60 0000 C CNN + 1 750 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684BA82C +P 800 4550 +F 0 "U1" H 850 4650 30 0000 C CNN +F 1 "PORT" H 800 4550 30 0000 C CNN +F 2 "" H 800 4550 60 0000 C CNN +F 3 "" H 800 4550 60 0000 C CNN + 2 800 4550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684BA923 +P 900 6150 +F 0 "U1" H 950 6250 30 0000 C CNN +F 1 "PORT" H 900 6150 30 0000 C CNN +F 2 "" H 900 6150 60 0000 C CNN +F 3 "" H 900 6150 60 0000 C CNN + 4 900 6150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 684BA9CD +P 3950 6150 +F 0 "U1" H 4000 6250 30 0000 C CNN +F 1 "PORT" H 3950 6150 30 0000 C CNN +F 2 "" H 3950 6150 60 0000 C CNN +F 3 "" H 3950 6150 60 0000 C CNN + 10 3950 6150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 684BAAB0 +P 3750 4550 +F 0 "U1" H 3800 4650 30 0000 C CNN +F 1 "PORT" H 3750 4550 30 0000 C CNN +F 2 "" H 3750 4550 60 0000 C CNN +F 3 "" H 3750 4550 60 0000 C CNN + 9 3750 4550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 684BAB6F +P 3600 3100 +F 0 "U1" H 3650 3200 30 0000 C CNN +F 1 "PORT" H 3600 3100 30 0000 C CNN +F 2 "" H 3600 3100 60 0000 C CNN +F 3 "" H 3600 3100 60 0000 C CNN + 8 3600 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 684BAC3A +P 3500 1500 +F 0 "U1" H 3550 1600 30 0000 C CNN +F 1 "PORT" H 3500 1500 30 0000 C CNN +F 2 "" H 3500 1500 60 0000 C CNN +F 3 "" H 3500 1500 60 0000 C CNN + 7 3500 1500 + 1 0 0 -1 +$EndComp +Connection ~ 6200 1400 +Wire Wire Line + 5900 2200 6000 2200 +Connection ~ 6000 2200 +Wire Wire Line + 3750 1500 3800 1500 +Wire Wire Line + 3850 3100 3900 3100 +Wire Wire Line + 4000 4550 4100 4550 +Wire Wire Line + 4200 6150 4300 6150 +Wire Wire Line + 1150 6150 1350 6150 +Wire Wire Line + 1050 4550 1250 4550 +Wire Wire Line + 1000 3100 1100 3100 +Wire Wire Line + 1100 1500 1250 1500 +Wire Wire Line + 7550 2500 6400 2500 +Wire Wire Line + 6400 2500 6400 2900 +Wire Wire Line + 6400 2900 2800 2900 +Wire Wire Line + 2800 2900 2800 3300 +Wire Wire Line + 2800 3300 2650 3300 +Wire Wire Line + 7550 2750 4850 2750 +Wire Wire Line + 4850 2750 4850 2400 +Wire Wire Line + 4850 2400 2900 2400 +Wire Wire Line + 2900 2400 2900 1700 +Wire Wire Line + 2900 1700 2800 1700 +Wire Wire Line + 2800 4750 3550 4750 +Wire Wire Line + 3550 4750 3550 3650 +Wire Wire Line + 3550 3650 6550 3650 +Wire Wire Line + 6550 3650 6550 3000 +Wire Wire Line + 6550 3000 7550 3000 +Wire Wire Line + 2900 6350 3600 6350 +Wire Wire Line + 3600 6350 3600 3700 +Wire Wire Line + 3600 3700 6650 3700 +Wire Wire Line + 6650 3700 6650 3250 +Wire Wire Line + 6650 3250 7550 3250 +Wire Wire Line + 7550 3550 6700 3550 +Wire Wire Line + 6700 3550 6700 1700 +Wire Wire Line + 6700 1700 5350 1700 +Wire Wire Line + 7550 3800 6850 3800 +Wire Wire Line + 6850 3800 6850 3300 +Wire Wire Line + 6850 3300 5450 3300 +Wire Wire Line + 5650 4750 6450 4750 +Wire Wire Line + 6450 4750 6450 4050 +Wire Wire Line + 6450 4050 7550 4050 +Wire Wire Line + 5850 6350 6650 6350 +Wire Wire Line + 6650 6350 6650 4300 +Wire Wire Line + 6650 4300 7550 4300 +Wire Wire Line + 8450 4800 8450 5500 +Wire Wire Line + 8450 5500 3450 5500 +Connection ~ 3450 5500 +Wire Wire Line + 3450 900 8450 900 +Wire Wire Line + 8450 900 8450 2000 +Connection ~ 3450 900 +$Comp +L PORT U1 +U 13 1 684B9841 +P 9900 2550 +F 0 "U1" H 9950 2650 30 0000 C CNN +F 1 "PORT" H 9900 2550 30 0000 C CNN +F 2 "" H 9900 2550 60 0000 C CNN +F 3 "" H 9900 2550 60 0000 C CNN + 13 9900 2550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 684B989E +P 9900 2850 +F 0 "U1" H 9950 2950 30 0000 C CNN +F 1 "PORT" H 9900 2850 30 0000 C CNN +F 2 "" H 9900 2850 60 0000 C CNN +F 3 "" H 9900 2850 60 0000 C CNN + 14 9900 2850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 684B9931 +P 9900 3150 +F 0 "U1" H 9950 3250 30 0000 C CNN +F 1 "PORT" H 9900 3150 30 0000 C CNN +F 2 "" H 9900 3150 60 0000 C CNN +F 3 "" H 9900 3150 60 0000 C CNN + 15 9900 3150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 684B99A6 +P 9900 3400 +F 0 "U1" H 9950 3500 30 0000 C CNN +F 1 "PORT" H 9900 3400 30 0000 C CNN +F 2 "" H 9900 3400 60 0000 C CNN +F 3 "" H 9900 3400 60 0000 C CNN + 16 9900 3400 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 17 1 684B9A1F +P 9900 3700 +F 0 "U1" H 9950 3800 30 0000 C CNN +F 1 "PORT" H 9900 3700 30 0000 C CNN +F 2 "" H 9900 3700 60 0000 C CNN +F 3 "" H 9900 3700 60 0000 C CNN + 17 9900 3700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 18 1 684B9B14 +P 9900 4000 +F 0 "U1" H 9950 4100 30 0000 C CNN +F 1 "PORT" H 9900 4000 30 0000 C CNN +F 2 "" H 9900 4000 60 0000 C CNN +F 3 "" H 9900 4000 60 0000 C CNN + 18 9900 4000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 19 1 684B9B8D +P 9900 4300 +F 0 "U1" H 9950 4400 30 0000 C CNN +F 1 "PORT" H 9900 4300 30 0000 C CNN +F 2 "" H 9900 4300 60 0000 C CNN +F 3 "" H 9900 4300 60 0000 C CNN + 19 9900 4300 + -1 0 0 -1 +$EndComp +Wire Wire Line + 9350 2550 9650 2550 +Wire Wire Line + 9350 2850 9650 2850 +Wire Wire Line + 9350 3150 9650 3150 +Wire Wire Line + 9350 3400 9650 3400 +Wire Wire Line + 9350 3700 9650 3700 +Wire Wire Line + 9350 4000 9650 4000 +Wire Wire Line + 9350 4300 9650 4300 +$Comp +L SKY130mode scmode1 +U 1 1 684BA49C +P 10150 1300 +F 0 "scmode1" H 10150 1450 98 0000 C CNB +F 1 "SKY130mode" H 10150 1200 118 0000 C CNB +F 2 "" H 10150 1450 60 0001 C CNN +F 3 "" H 10150 1450 60 0001 C CNN + 1 10150 1300 + 1 0 0 -1 +$EndComp +NoConn ~ 1250 1850 +NoConn ~ 3800 1850 +NoConn ~ 1100 3450 +NoConn ~ 3900 3450 +NoConn ~ 1250 4900 +NoConn ~ 4100 4900 +NoConn ~ 1350 6500 +NoConn ~ 4300 6500 +NoConn ~ 17800 2250 +$Comp +L D_Latch X2 +U 1 1 684CF9C0 +P 2100 1700 +F 0 "X2" H 2200 1600 60 0000 C CNN +F 1 "D_Latch" H 2200 1750 60 0000 C CNN +F 2 "" H 2100 1700 60 0001 C CNN +F 3 "" H 2100 1700 60 0001 C CNN + 1 2100 1700 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X1 +U 1 1 684CFAF2 +P 1950 3300 +F 0 "X1" H 2050 3200 60 0000 C CNN +F 1 "D_Latch" H 2050 3350 60 0000 C CNN +F 2 "" H 1950 3300 60 0001 C CNN +F 3 "" H 1950 3300 60 0001 C CNN + 1 1950 3300 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X3 +U 1 1 684D09F6 +P 2100 4750 +F 0 "X3" H 2200 4650 60 0000 C CNN +F 1 "D_Latch" H 2200 4800 60 0000 C CNN +F 2 "" H 2100 4750 60 0001 C CNN +F 3 "" H 2100 4750 60 0001 C CNN + 1 2100 4750 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X4 +U 1 1 684D0B3B +P 2200 6350 +F 0 "X4" H 2300 6250 60 0000 C CNN +F 1 "D_Latch" H 2300 6400 60 0000 C CNN +F 2 "" H 2200 6350 60 0001 C CNN +F 3 "" H 2200 6350 60 0001 C CNN + 1 2200 6350 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X8 +U 1 1 684D0C60 +P 5150 6350 +F 0 "X8" H 5250 6250 60 0000 C CNN +F 1 "D_Latch" H 5250 6400 60 0000 C CNN +F 2 "" H 5150 6350 60 0001 C CNN +F 3 "" H 5150 6350 60 0001 C CNN + 1 5150 6350 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X7 +U 1 1 684D0D81 +P 4950 4750 +F 0 "X7" H 5050 4650 60 0000 C CNN +F 1 "D_Latch" H 5050 4800 60 0000 C CNN +F 2 "" H 4950 4750 60 0001 C CNN +F 3 "" H 4950 4750 60 0001 C CNN + 1 4950 4750 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X6 +U 1 1 684D0EF8 +P 4750 3300 +F 0 "X6" H 4850 3200 60 0000 C CNN +F 1 "D_Latch" H 4850 3350 60 0000 C CNN +F 2 "" H 4750 3300 60 0001 C CNN +F 3 "" H 4750 3300 60 0001 C CNN + 1 4750 3300 + -1 0 0 -1 +$EndComp +$Comp +L D_Latch X5 +U 1 1 684D103D +P 4650 1700 +F 0 "X5" H 4750 1600 60 0000 C CNN +F 1 "D_Latch" H 4750 1750 60 0000 C CNN +F 2 "" H 4650 1700 60 0001 C CNN +F 3 "" H 4650 1700 60 0001 C CNN + 1 4650 1700 + -1 0 0 -1 +$EndComp +$Comp +L Decoder_38 X9 +U 1 1 684D1335 +P 8450 3400 +F 0 "X9" H 8450 3200 60 0000 C CNN +F 1 "Decoder_38" H 8450 3400 60 0000 C CNN +F 2 "" H 8450 3400 60 0001 C CNN +F 3 "" H 8450 3400 60 0001 C CNN + 1 8450 3400 + -1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.sub b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.sub new file mode 100644 index 000000000..8175b2236 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage.sub @@ -0,0 +1,20 @@ +* Subcircuit Decoder_38_Address_Latch_storage +.subckt Decoder_38_Address_Latch_storage net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ /vdd /gnd net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ /d net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/decoder_38_address_latch_storage/decoder_38_address_latch_storage.cir +.include D_latch.sub +.include Decoder_38.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +* s c m o d e +x2 /d net-_x2-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad3_ ? D_latch +x1 /d net-_x1-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad1_ ? D_latch +x3 /d net-_x3-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad2_ ? D_latch +x4 /d net-_x4-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad4_ ? D_latch +x8 /d net-_x8-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad10_ ? D_latch +x7 /d net-_x7-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad9_ ? D_latch +x6 /d net-_x6-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad8_ ? D_latch +x5 /d net-_x5-pad2_ net-_u1-pad11_ /gnd /vdd net-_u1-pad7_ ? D_latch +x9 net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ net-_u1-pad16_ /vdd /vdd net-_x7-pad2_ net-_x5-pad2_ net-_x1-pad2_ net-_x8-pad2_ net-_x6-pad2_ net-_x3-pad2_ net-_x2-pad2_ net-_x4-pad2_ Decoder_38 +* Control Statements + +.ends Decoder_38_Address_Latch_storage diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage_Previous_Values.xml new file mode 100644 index 000000000..f954fbc7b --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Address_Latch_storage_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_latch/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_latch/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_latch/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_latch/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_latch/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_latch/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_latch/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/D_latch/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Decoder_38truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC259/Decoder_38_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Previous_Values.xml new file mode 100644 index 000000000..b91e445ab --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Decoder_38_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_2-cache.lib b/library/SubcircuitLibrary/SN74HC259/NAND_2-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_2-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_2.bak b/library/SubcircuitLibrary/SN74HC259/NAND_2.bak new file mode 100644 index 000000000..ad9819396 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_2.bak @@ -0,0 +1,221 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684AF0E9 +P 4750 2050 +F 0 "SC2" H 4800 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5050 2137 50 0000 R CNN +F 2 "" H 4750 550 50 0001 C CNN +F 3 "" H 4750 2050 50 0001 C CNN + 1 4750 2050 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684AF14C +P 5150 2750 +F 0 "SC3" H 5200 3050 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 2837 50 0000 R CNN +F 2 "" H 5150 1250 50 0001 C CNN +F 3 "" H 5150 2750 50 0001 C CNN + 1 5150 2750 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF1CF +P 4200 3600 +F 0 "SC1" H 4250 3900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4500 3687 50 0000 R CNN +F 2 "" H 4200 2100 50 0001 C CNN +F 3 "" H 4200 3600 50 0001 C CNN + 1 4200 3600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684AF20C +P 5550 3600 +F 0 "SC4" H 5600 3900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5850 3687 50 0000 R CNN +F 2 "" H 5550 2100 50 0001 C CNN +F 3 "" H 5550 3600 50 0001 C CNN + 1 5550 3600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF271 +P 4650 1550 +F 0 "U1" H 4700 1650 30 0000 C CNN +F 1 "PORT" H 4650 1550 30 0000 C CNN +F 2 "" H 4650 1550 60 0000 C CNN +F 3 "" H 4650 1550 60 0000 C CNN + 3 4650 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF336 +P 3550 2650 +F 0 "U1" H 3600 2750 30 0000 C CNN +F 1 "PORT" H 3550 2650 30 0000 C CNN +F 2 "" H 3550 2650 60 0000 C CNN +F 3 "" H 3550 2650 60 0000 C CNN + 1 3550 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AF413 +P 6200 2750 +F 0 "U1" H 6250 2850 30 0000 C CNN +F 1 "PORT" H 6200 2750 30 0000 C CNN +F 2 "" H 6200 2750 60 0000 C CNN +F 3 "" H 6200 2750 60 0000 C CNN + 4 6200 2750 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF82C +P 6200 3150 +F 0 "U1" H 6250 3250 30 0000 C CNN +F 1 "PORT" H 6200 3150 30 0000 C CNN +F 2 "" H 6200 3150 60 0000 C CNN +F 3 "" H 6200 3150 60 0000 C CNN + 5 6200 3150 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF895 +P 4550 4050 +F 0 "U1" H 4600 4150 30 0000 C CNN +F 1 "PORT" H 4550 4050 30 0000 C CNN +F 2 "" H 4550 4050 60 0000 C CNN +F 3 "" H 4550 4050 60 0000 C CNN + 2 4550 4050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4400 3900 5350 3900 +Wire Wire Line + 4800 4050 4800 3900 +Connection ~ 4800 3900 +Wire Wire Line + 4300 3600 4450 3600 +Wire Wire Line + 4450 3600 4450 3900 +Connection ~ 4450 3900 +Wire Wire Line + 5450 3600 5300 3600 +Wire Wire Line + 5300 3600 5300 3900 +Connection ~ 5300 3900 +Wire Wire Line + 4400 3300 5350 3300 +Wire Wire Line + 4950 3050 4950 3300 +Connection ~ 4950 3300 +Wire Wire Line + 5950 3150 4950 3150 +Connection ~ 4950 3150 +Wire Wire Line + 5450 2750 5950 2750 +Wire Wire Line + 5850 2750 5850 3600 +Wire Wire Line + 5050 2750 4900 2750 +Wire Wire Line + 4900 2750 4900 2400 +Wire Wire Line + 4900 2400 4950 2400 +Wire Wire Line + 4950 2350 4950 2450 +Connection ~ 4950 2400 +Wire Wire Line + 4450 2050 3900 2050 +Wire Wire Line + 3900 2050 3900 3600 +Wire Wire Line + 3800 2650 3900 2650 +Connection ~ 3900 2650 +Connection ~ 5850 2750 +Wire Wire Line + 4850 2050 5000 2050 +Wire Wire Line + 5000 2050 5000 1650 +Wire Wire Line + 5000 1650 4950 1650 +Wire Wire Line + 4950 1550 4950 1750 +Wire Wire Line + 4900 1550 4950 1550 +Connection ~ 4950 1650 +$Comp +L SKY130mode scmode1 +U 1 1 684AFD6B +P 7350 2150 +F 0 "scmode1" H 7350 2300 98 0000 C CNB +F 1 "SKY130mode" H 7350 2050 118 0000 C CNB +F 2 "" H 7350 2300 60 0001 C CNN +F 3 "" H 7350 2300 60 0001 C CNN + 1 7350 2150 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_2.cir b/library/SubcircuitLibrary/SN74HC259/NAND_2.cir new file mode 100644 index 000000000..1fa1e05e8 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_2.cir @@ -0,0 +1,16 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_2/NAND_2.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 09:19:59 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC1-Pad3_ Net-_SC3-Pad2_ Net-_SC4-Pad3_ Net-_SC4-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC4-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ Net-_SC3-Pad2_ PORT +scmode1 SKY130mode +SC3 Net-_SC1-Pad1_ Net-_SC3-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__pfet_01v8 + +.end diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_2.cir.out b/library/SubcircuitLibrary/SN74HC259/NAND_2.cir.out new file mode 100644 index 000000000..079b2d2c2 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_2.cir.out @@ -0,0 +1,19 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_2/nand_2.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad3_ net-_sc3-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc4-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ net-_sc3-pad2_ port +* s c m o d e +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_2.pro b/library/SubcircuitLibrary/SN74HC259/NAND_2.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_2.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_2.sch b/library/SubcircuitLibrary/SN74HC259/NAND_2.sch new file mode 100644 index 000000000..ebef1d4c6 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_2.sch @@ -0,0 +1,222 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:NAND_2-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 684AF0E9 +P 4200 2050 +F 0 "SC2" H 4250 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4500 2137 50 0000 R CNN +F 2 "" H 4200 550 50 0001 C CNN +F 3 "" H 4200 2050 50 0001 C CNN + 1 4200 2050 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF1CF +P 4450 2850 +F 0 "SC1" H 4500 3150 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4750 2937 50 0000 R CNN +F 2 "" H 4450 1350 50 0001 C CNN +F 3 "" H 4450 2850 50 0001 C CNN + 1 4450 2850 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 684AF20C +P 4850 3550 +F 0 "SC4" H 4900 3850 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5150 3637 50 0000 R CNN +F 2 "" H 4850 2050 50 0001 C CNN +F 3 "" H 4850 3550 50 0001 C CNN + 1 4850 3550 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF271 +P 4350 1550 +F 0 "U1" H 4400 1650 30 0000 C CNN +F 1 "PORT" H 4350 1550 30 0000 C CNN +F 2 "" H 4350 1550 60 0000 C CNN +F 3 "" H 4350 1550 60 0000 C CNN + 3 4350 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF336 +P 3550 2650 +F 0 "U1" H 3600 2750 30 0000 C CNN +F 1 "PORT" H 3550 2650 30 0000 C CNN +F 2 "" H 3550 2650 60 0000 C CNN +F 3 "" H 3550 2650 60 0000 C CNN + 1 3550 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AF413 +P 5750 2450 +F 0 "U1" H 5800 2550 30 0000 C CNN +F 1 "PORT" H 5750 2450 30 0000 C CNN +F 2 "" H 5750 2450 60 0000 C CNN +F 3 "" H 5750 2450 60 0000 C CNN + 4 5750 2450 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF82C +P 5750 3300 +F 0 "U1" H 5800 3400 30 0000 C CNN +F 1 "PORT" H 5750 3300 30 0000 C CNN +F 2 "" H 5750 3300 60 0000 C CNN +F 3 "" H 5750 3300 60 0000 C CNN + 5 5750 3300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF895 +P 4400 4000 +F 0 "U1" H 4450 4100 30 0000 C CNN +F 1 "PORT" H 4400 4000 30 0000 C CNN +F 2 "" H 4400 4000 60 0000 C CNN +F 3 "" H 4400 4000 60 0000 C CNN + 2 4400 4000 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684AFD6B +P 7350 2150 +F 0 "scmode1" H 7350 2300 98 0000 C CNB +F 1 "SKY130mode" H 7350 2050 118 0000 C CNB +F 2 "" H 7350 2300 60 0001 C CNN +F 3 "" H 7350 2300 60 0001 C CNN + 1 7350 2150 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684CF41D +P 5000 2050 +F 0 "SC3" H 5050 2350 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5300 2137 50 0000 R CNN +F 2 "" H 5000 550 50 0001 C CNN +F 3 "" H 5000 2050 50 0001 C CNN + 1 5000 2050 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4400 1750 4800 1750 +Wire Wire Line + 4600 1550 4600 1750 +Connection ~ 4600 1750 +Wire Wire Line + 4300 2050 4450 2050 +Wire Wire Line + 4450 2050 4450 1750 +Connection ~ 4450 1750 +Wire Wire Line + 4900 2050 4750 2050 +Wire Wire Line + 4750 2050 4750 1750 +Connection ~ 4750 1750 +Wire Wire Line + 4400 2350 4800 2350 +Wire Wire Line + 4650 2550 4650 2350 +Connection ~ 4650 2350 +Wire Wire Line + 5500 2450 4650 2450 +Connection ~ 4650 2450 +Wire Wire Line + 3900 2050 3900 2850 +Wire Wire Line + 3900 2850 4150 2850 +Wire Wire Line + 3800 2650 3900 2650 +Connection ~ 3900 2650 +Wire Wire Line + 5300 2050 5300 3550 +Wire Wire Line + 5300 3550 5150 3550 +Wire Wire Line + 5500 3300 5300 3300 +Connection ~ 5300 3300 +Wire Wire Line + 4550 2850 4700 2850 +Wire Wire Line + 4700 2850 4700 3200 +Wire Wire Line + 4700 3200 4650 3200 +Wire Wire Line + 4650 3150 4650 3250 +Connection ~ 4650 3200 +Wire Wire Line + 4650 3850 4650 4000 +Wire Wire Line + 4750 3550 4600 3550 +Wire Wire Line + 4600 3550 4600 3900 +Wire Wire Line + 4600 3900 4650 3900 +Connection ~ 4650 3900 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_2.sub b/library/SubcircuitLibrary/SN74HC259/NAND_2.sub new file mode 100644 index 000000000..47d0bd150 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_2.sub @@ -0,0 +1,13 @@ +* Subcircuit NAND_2 +.subckt NAND_2 net-_sc1-pad2_ net-_sc4-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ net-_sc3-pad2_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_2/nand_2.cir +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc1-pad3_ net-_sc3-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +xsc3 net-_sc1-pad1_ net-_sc3-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +* Control Statements + +.ends NAND_2 diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_2_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC259/NAND_2_Previous_Values.xml new file mode 100644 index 000000000..066d43a60 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_2_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_3-cache.lib b/library/SubcircuitLibrary/SN74HC259/NAND_3-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_3-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_3.bak b/library/SubcircuitLibrary/SN74HC259/NAND_3.bak new file mode 100644 index 000000000..d9890c5d1 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_3.bak @@ -0,0 +1,287 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684AF360 +P 5550 2300 +F 0 "SC3" H 5600 2600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5850 2387 50 0000 R CNN +F 2 "" H 5550 800 50 0001 C CNN +F 3 "" H 5550 2300 50 0001 C CNN + 1 5550 2300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 684AF39D +P 5550 3100 +F 0 "SC4" H 5600 3400 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5850 3187 50 0000 R CNN +F 2 "" H 5550 1600 50 0001 C CNN +F 3 "" H 5550 3100 50 0001 C CNN + 1 5550 3100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC5 +U 1 1 684AF420 +P 5950 3800 +F 0 "SC5" H 6000 4100 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6250 3887 50 0000 R CNN +F 2 "" H 5950 2300 50 0001 C CNN +F 3 "" H 5950 3800 50 0001 C CNN + 1 5950 3800 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF50C +P 4450 4700 +F 0 "SC1" H 4500 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4750 4787 50 0000 R CNN +F 2 "" H 4450 3200 50 0001 C CNN +F 3 "" H 4450 4700 50 0001 C CNN + 1 4450 4700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684AF577 +P 5500 4700 +F 0 "SC2" H 5550 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5800 4787 50 0000 R CNN +F 2 "" H 5500 3200 50 0001 C CNN +F 3 "" H 5500 4700 50 0001 C CNN + 1 5500 4700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC6 +U 1 1 684AF5EC +P 6450 4700 +F 0 "SC6" H 6500 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6750 4787 50 0000 R CNN +F 2 "" H 6450 3200 50 0001 C CNN +F 3 "" H 6450 4700 50 0001 C CNN + 1 6450 4700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF63F +P 3700 4000 +F 0 "U1" H 3750 4100 30 0000 C CNN +F 1 "PORT" H 3700 4000 30 0000 C CNN +F 2 "" H 3700 4000 60 0000 C CNN +F 3 "" H 3700 4000 60 0000 C CNN + 1 3700 4000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF6CC +P 4850 3850 +F 0 "U1" H 4900 3950 30 0000 C CNN +F 1 "PORT" H 4850 3850 30 0000 C CNN +F 2 "" H 4850 3850 60 0000 C CNN +F 3 "" H 4850 3850 60 0000 C CNN + 2 4850 3850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF829 +P 7050 3800 +F 0 "U1" H 7100 3900 30 0000 C CNN +F 1 "PORT" H 7050 3800 30 0000 C CNN +F 2 "" H 7050 3800 60 0000 C CNN +F 3 "" H 7050 3800 60 0000 C CNN + 5 7050 3800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684AF94D +P 7150 4200 +F 0 "U1" H 7200 4300 30 0000 C CNN +F 1 "PORT" H 7150 4200 30 0000 C CNN +F 2 "" H 7150 4200 60 0000 C CNN +F 3 "" H 7150 4200 60 0000 C CNN + 6 7150 4200 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF9FE +P 5100 5200 +F 0 "U1" H 5150 5300 30 0000 C CNN +F 1 "PORT" H 5100 5200 30 0000 C CNN +F 2 "" H 5100 5200 60 0000 C CNN +F 3 "" H 5100 5200 60 0000 C CNN + 3 5100 5200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AFAE6 +P 5500 1750 +F 0 "U1" H 5550 1850 30 0000 C CNN +F 1 "PORT" H 5500 1750 30 0000 C CNN +F 2 "" H 5500 1750 60 0000 C CNN +F 3 "" H 5500 1750 60 0000 C CNN + 4 5500 1750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5650 2300 5800 2300 +Wire Wire Line + 5800 2300 5800 1950 +Wire Wire Line + 5800 1950 5750 1950 +Wire Wire Line + 5750 1750 5750 2000 +Connection ~ 5750 1950 +Wire Wire Line + 5750 2600 5750 2800 +Wire Wire Line + 5650 3100 5800 3100 +Wire Wire Line + 5800 3100 5800 2750 +Wire Wire Line + 5800 2750 5750 2750 +Connection ~ 5750 2750 +Wire Wire Line + 5750 3500 5750 3400 +Wire Wire Line + 5850 3800 5700 3800 +Wire Wire Line + 5700 3800 5700 3450 +Wire Wire Line + 5700 3450 5750 3450 +Connection ~ 5750 3450 +Wire Wire Line + 4650 4400 4650 4300 +Wire Wire Line + 4650 4300 6250 4300 +Wire Wire Line + 6250 4300 6250 4400 +Wire Wire Line + 5700 4400 5700 4300 +Connection ~ 5700 4300 +Wire Wire Line + 5750 4100 5750 4300 +Connection ~ 5750 4300 +Wire Wire Line + 4650 5000 4650 5050 +Wire Wire Line + 4650 5050 6250 5050 +Wire Wire Line + 6250 5050 6250 5000 +Wire Wire Line + 5700 5000 5700 5050 +Connection ~ 5700 5050 +Wire Wire Line + 5350 5200 5350 5050 +Connection ~ 5350 5050 +Wire Wire Line + 4550 4700 4700 4700 +Wire Wire Line + 4700 4700 4700 5050 +Connection ~ 4700 5050 +Wire Wire Line + 5600 4700 5750 4700 +Wire Wire Line + 5750 4700 5750 5050 +Connection ~ 5750 5050 +Wire Wire Line + 6350 4700 6200 4700 +Wire Wire Line + 6200 4700 6200 5050 +Connection ~ 6200 5050 +Wire Wire Line + 4150 2300 4150 4700 +Wire Wire Line + 3950 4000 4150 4000 +Connection ~ 4150 4000 +Wire Wire Line + 5250 2300 4150 2300 +Wire Wire Line + 5250 3100 5200 3100 +Wire Wire Line + 5200 3100 5200 4700 +Wire Wire Line + 6250 3800 6800 3800 +Wire Wire Line + 6750 3800 6750 4700 +Connection ~ 6750 3800 +Wire Wire Line + 5100 3850 5200 3850 +Connection ~ 5200 3850 +Wire Wire Line + 6900 4200 5750 4200 +Connection ~ 5750 4200 +$Comp +L SKY130mode scmode1 +U 1 1 684B00C1 +P 8250 2900 +F 0 "scmode1" H 8250 3050 98 0000 C CNB +F 1 "SKY130mode" H 8250 2800 118 0000 C CNB +F 2 "" H 8250 3050 60 0001 C CNN +F 3 "" H 8250 3050 60 0001 C CNN + 1 8250 2900 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_3.cir b/library/SubcircuitLibrary/SN74HC259/NAND_3.cir new file mode 100644 index 000000000..e4f46e26d --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_3.cir @@ -0,0 +1,18 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/NAND_3/NAND_3.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 09:30:02 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC3 Net-_SC2-Pad1_ Net-_SC2-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__pfet_01v8 +SC4 Net-_SC2-Pad1_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__pfet_01v8 +SC5 Net-_SC2-Pad1_ Net-_SC5-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__pfet_01v8 +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC6 Net-_SC1-Pad3_ Net-_SC5-Pad2_ Net-_SC6-Pad3_ Net-_SC6-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC2-Pad2_ Net-_SC1-Pad2_ Net-_SC6-Pad3_ Net-_SC3-Pad3_ Net-_SC2-Pad1_ Net-_SC5-Pad2_ PORT +scmode1 SKY130mode +SC2 Net-_SC2-Pad1_ Net-_SC2-Pad2_ Net-_SC1-Pad1_ Net-_SC1-Pad1_ sky130_fd_pr__nfet_01v8 + +.end diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_3.cir.out b/library/SubcircuitLibrary/SN74HC259/NAND_3.cir.out new file mode 100644 index 000000000..b08a2163a --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_3.cir.out @@ -0,0 +1,21 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_3/nand_3.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc3 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc4 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc2-pad1_ net-_sc5-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc1-pad3_ net-_sc5-pad2_ net-_sc6-pad3_ net-_sc6-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc2-pad2_ net-_sc1-pad2_ net-_sc6-pad3_ net-_sc3-pad3_ net-_sc2-pad1_ net-_sc5-pad2_ port +* s c m o d e +xsc2 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_3.pro b/library/SubcircuitLibrary/SN74HC259/NAND_3.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_3.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_3.sch b/library/SubcircuitLibrary/SN74HC259/NAND_3.sch new file mode 100644 index 000000000..eb96f8eac --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_3.sch @@ -0,0 +1,289 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:NAND_3-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC3 +U 1 1 684AF360 +P 4200 2350 +F 0 "SC3" H 4250 2650 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4500 2437 50 0000 R CNN +F 2 "" H 4200 850 50 0001 C CNN +F 3 "" H 4200 2350 50 0001 C CNN + 1 4200 2350 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 684AF39D +P 5250 2350 +F 0 "SC4" H 5300 2650 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5550 2437 50 0000 R CNN +F 2 "" H 5250 850 50 0001 C CNN +F 3 "" H 5250 2350 50 0001 C CNN + 1 5250 2350 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC5 +U 1 1 684AF420 +P 6100 2350 +F 0 "SC5" H 6150 2650 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6400 2437 50 0000 R CNN +F 2 "" H 6100 850 50 0001 C CNN +F 3 "" H 6100 2350 50 0001 C CNN + 1 6100 2350 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 684AF50C +P 5250 4000 +F 0 "SC1" H 5300 4300 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5550 4087 50 0000 R CNN +F 2 "" H 5250 2500 50 0001 C CNN +F 3 "" H 5250 4000 50 0001 C CNN + 1 5250 4000 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC6 +U 1 1 684AF5EC +P 5650 4700 +F 0 "SC6" H 5700 5000 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5950 4787 50 0000 R CNN +F 2 "" H 5650 3200 50 0001 C CNN +F 3 "" H 5650 4700 50 0001 C CNN + 1 5650 4700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684AF63F +P 3450 2350 +F 0 "U1" H 3500 2450 30 0000 C CNN +F 1 "PORT" H 3450 2350 30 0000 C CNN +F 2 "" H 3450 2350 60 0000 C CNN +F 3 "" H 3450 2350 60 0000 C CNN + 1 3450 2350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AF6CC +P 4500 4000 +F 0 "U1" H 4550 4100 30 0000 C CNN +F 1 "PORT" H 4500 4000 30 0000 C CNN +F 2 "" H 4500 4000 60 0000 C CNN +F 3 "" H 4500 4000 60 0000 C CNN + 2 4500 4000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AF829 +P 6300 2800 +F 0 "U1" H 6350 2900 30 0000 C CNN +F 1 "PORT" H 6300 2800 30 0000 C CNN +F 2 "" H 6300 2800 60 0000 C CNN +F 3 "" H 6300 2800 60 0000 C CNN + 5 6300 2800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684AF94D +P 6850 2350 +F 0 "U1" H 6900 2450 30 0000 C CNN +F 1 "PORT" H 6850 2350 30 0000 C CNN +F 2 "" H 6850 2350 60 0000 C CNN +F 3 "" H 6850 2350 60 0000 C CNN + 6 6850 2350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AF9FE +P 5100 5200 +F 0 "U1" H 5150 5300 30 0000 C CNN +F 1 "PORT" H 5100 5200 30 0000 C CNN +F 2 "" H 5100 5200 60 0000 C CNN +F 3 "" H 5100 5200 60 0000 C CNN + 3 5100 5200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AFAE6 +P 5500 1750 +F 0 "U1" H 5550 1850 30 0000 C CNN +F 1 "PORT" H 5500 1750 30 0000 C CNN +F 2 "" H 5500 1750 60 0000 C CNN +F 3 "" H 5500 1750 60 0000 C CNN + 4 5500 1750 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B00C1 +P 8250 2900 +F 0 "scmode1" H 8250 3050 98 0000 C CNB +F 1 "SKY130mode" H 8250 2800 118 0000 C CNB +F 2 "" H 8250 3050 60 0001 C CNN +F 3 "" H 8250 3050 60 0001 C CNN + 1 8250 2900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684AF577 +P 5250 3250 +F 0 "SC2" H 5300 3550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5550 3337 50 0000 R CNN +F 2 "" H 5250 1750 50 0001 C CNN +F 3 "" H 5250 3250 50 0001 C CNN + 1 5250 3250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4400 2050 4400 2000 +Wire Wire Line + 4400 2000 5900 2000 +Wire Wire Line + 5900 2000 5900 2050 +Wire Wire Line + 5450 2050 5450 2000 +Connection ~ 5450 2000 +Wire Wire Line + 5750 1750 5750 2000 +Connection ~ 5750 2000 +Wire Wire Line + 4300 2350 4450 2350 +Wire Wire Line + 4450 2350 4450 2000 +Connection ~ 4450 2000 +Wire Wire Line + 5350 2350 5500 2350 +Wire Wire Line + 5500 2350 5500 2000 +Connection ~ 5500 2000 +Wire Wire Line + 6000 2350 5850 2350 +Wire Wire Line + 5850 2350 5850 2000 +Connection ~ 5850 2000 +Wire Wire Line + 4400 2650 4400 2700 +Wire Wire Line + 4400 2700 5900 2700 +Wire Wire Line + 5900 2700 5900 2650 +Wire Wire Line + 5450 2650 5450 2950 +Connection ~ 5450 2700 +Wire Wire Line + 6050 2800 5450 2800 +Connection ~ 5450 2800 +Wire Wire Line + 3700 2350 3900 2350 +Wire Wire Line + 3850 2350 3850 3250 +Wire Wire Line + 3850 3250 4950 3250 +Wire Wire Line + 4950 2350 4800 2350 +Wire Wire Line + 4800 2350 4800 4000 +Wire Wire Line + 4750 4000 4950 4000 +Wire Wire Line + 5350 3250 5500 3250 +Wire Wire Line + 5500 3250 5500 3600 +Wire Wire Line + 5500 3600 5450 3600 +Wire Wire Line + 5450 3550 5450 3700 +Connection ~ 5450 3600 +Wire Wire Line + 6400 2350 6600 2350 +Wire Wire Line + 6450 2350 6450 4700 +Wire Wire Line + 6450 4700 5950 4700 +Connection ~ 6450 2350 +Wire Wire Line + 5350 4000 5500 4000 +Wire Wire Line + 5500 4000 5500 4350 +Wire Wire Line + 5500 4350 5450 4350 +Wire Wire Line + 5450 4300 5450 4400 +Connection ~ 5450 4350 +Connection ~ 4800 4000 +Wire Wire Line + 5450 5000 5450 5200 +Wire Wire Line + 5450 5200 5350 5200 +Wire Wire Line + 5550 4700 5400 4700 +Wire Wire Line + 5400 4700 5400 5050 +Wire Wire Line + 5400 5050 5450 5050 +Connection ~ 5450 5050 +Connection ~ 3850 2350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_3.sub b/library/SubcircuitLibrary/SN74HC259/NAND_3.sub new file mode 100644 index 000000000..3b4f4b3ff --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_3.sub @@ -0,0 +1,15 @@ +* Subcircuit NAND_3 +.subckt NAND_3 net-_sc2-pad2_ net-_sc1-pad2_ net-_sc6-pad3_ net-_sc3-pad3_ net-_sc2-pad1_ net-_sc5-pad2_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/nand_3/nand_3.cir +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc3 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc4 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc2-pad1_ net-_sc5-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc1-pad3_ net-_sc5-pad2_ net-_sc6-pad3_ net-_sc6-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +xsc2 net-_sc2-pad1_ net-_sc2-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* Control Statements + +.ends NAND_3 diff --git a/library/SubcircuitLibrary/SN74HC259/NAND_3_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC259/NAND_3_Previous_Values.xml new file mode 100644 index 000000000..c0934485a --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/NAND_3_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC259/SN74HC259-cache.lib b/library/SubcircuitLibrary/SN74HC259/SN74HC259-cache.lib new file mode 100644 index 000000000..aeffc2259 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/SN74HC259-cache.lib @@ -0,0 +1,126 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" 100 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 550 0 50 0 1 0 N +P 2 0 1 0 -450 250 500 0 N +P 3 0 1 0 -450 250 -450 -250 500 0 N +X IN 1 -650 0 200 R 50 50 1 1 I +X VDD 2 -650 150 200 R 50 50 1 1 I +X GND 3 -650 -150 200 R 50 50 1 1 I +X OUT 4 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Decoder_38_Address_Latch_storage +# +DEF Decoder_38_Address_Latch_storage X 0 40 Y Y 1 F N +F0 "X" 0 -150 60 H V C CNN +F1 "Decoder_38_Address_Latch_storage" 100 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -900 1150 900 -1250 0 1 0 N +X Q1 1 1100 1000 200 L 50 50 1 1 O +X Q3 2 1100 500 200 L 50 50 1 1 O +X Q2 3 1100 750 200 L 50 50 1 1 O +X Q4 4 1100 250 200 L 50 50 1 1 O +X VDD 5 -1100 1000 200 R 50 50 1 1 I +X GND 6 -1150 -1000 200 R 50 50 1 1 I +X Q5 7 1100 -200 200 L 50 50 1 1 O +X Q6 8 1100 -400 200 L 50 50 1 1 O +X Q7 9 1100 -650 200 L 50 50 1 1 O +X Q8 10 1100 -950 200 L 50 50 1 1 O +X RE 11 -1100 -450 200 R 50 50 1 1 I +X D 12 -1100 -650 200 R 50 50 1 1 I +X S0_BAR 13 -1100 850 200 R 50 50 1 1 I +X S1_BAR 14 -1100 700 200 R 50 50 1 1 I +X S2_BAR 15 -1100 550 200 R 50 50 1 1 I +X G_BAR 16 -1150 -250 200 R 50 50 1 1 I +X S0 17 -1100 350 200 R 50 50 1 1 I +X S1 18 -1100 200 200 R 50 50 1 1 I +X S2 19 -1100 50 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Schmitt_Trigger +# +DEF Schmitt_Trigger X 0 40 Y Y 1 F N +F0 "X" -400 0 60 H V C CNN +F1 "Schmitt_Trigger" 50 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +P 2 0 1 0 -650 -150 -700 -150 N +P 2 0 1 0 -550 150 -450 150 N +P 2 0 1 0 -450 150 -400 150 N +P 3 0 1 0 -550 150 -600 -150 -650 -150 N +P 3 0 1 0 -500 150 -550 -150 -600 -150 N +P 4 0 1 0 -800 350 900 0 -800 -350 -800 350 N +X In 1 -1000 0 200 R 50 50 1 1 I +X Vdd 2 -300 450 200 D 50 50 1 1 I +X Gnd 3 -300 -450 200 U 50 50 1 1 I +X Out 4 1100 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC259/SN74HC259.bak b/library/SubcircuitLibrary/SN74HC259/SN74HC259.bak new file mode 100644 index 000000000..ea9ed7bf8 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/SN74HC259.bak @@ -0,0 +1,531 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN74HC259-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L CMOS_INVTR X6 +U 1 1 684B99C4 +P 5350 1700 +F 0 "X6" H 5350 1700 60 0000 C CNN +F 1 "CMOS_INVTR" H 5450 1450 60 0000 C CNN +F 2 "" H 5350 1700 60 0001 C CNN +F 3 "" H 5350 1700 60 0001 C CNN + 1 5350 1700 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X7 +U 1 1 684B9A21 +P 5350 2400 +F 0 "X7" H 5350 2400 60 0000 C CNN +F 1 "CMOS_INVTR" H 5450 2150 60 0000 C CNN +F 2 "" H 5350 2400 60 0001 C CNN +F 3 "" H 5350 2400 60 0001 C CNN + 1 5350 2400 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X8 +U 1 1 684B9A8E +P 5350 3250 +F 0 "X8" H 5350 3250 60 0000 C CNN +F 1 "CMOS_INVTR" H 5450 3000 60 0000 C CNN +F 2 "" H 5350 3250 60 0001 C CNN +F 3 "" H 5350 3250 60 0001 C CNN + 1 5350 3250 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X9 +U 1 1 684B9B4B +P 5350 4100 +F 0 "X9" H 5350 4100 60 0000 C CNN +F 1 "CMOS_INVTR" H 5450 3850 60 0000 C CNN +F 2 "" H 5350 4100 60 0001 C CNN +F 3 "" H 5350 4100 60 0001 C CNN + 1 5350 4100 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X10 +U 1 1 684B9D35 +P 5350 4850 +F 0 "X10" H 5350 4850 60 0000 C CNN +F 1 "CMOS_INVTR" H 5450 4600 60 0000 C CNN +F 2 "" H 5350 4850 60 0001 C CNN +F 3 "" H 5350 4850 60 0001 C CNN + 1 5350 4850 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6150 1700 7750 1700 +Wire Wire Line + 7750 1700 7750 1750 +Wire Wire Line + 6150 2400 6150 1900 +Wire Wire Line + 6150 1900 7750 1900 +Wire Wire Line + 6150 3250 6350 3250 +Wire Wire Line + 6350 3250 6350 2050 +Wire Wire Line + 6350 2050 7750 2050 +Wire Wire Line + 4000 1700 4700 1700 +Wire Wire Line + 4350 1700 4350 2100 +Wire Wire Line + 4350 2100 7750 2100 +Wire Wire Line + 7750 2100 7750 2250 +Connection ~ 4350 1700 +Wire Wire Line + 7750 2400 6400 2400 +Wire Wire Line + 6400 2400 6400 2700 +Wire Wire Line + 6400 2700 4000 2700 +Wire Wire Line + 4700 2400 4350 2400 +Wire Wire Line + 4350 2400 4350 2700 +Connection ~ 4350 2700 +Wire Wire Line + 7750 2550 6450 2550 +Wire Wire Line + 6450 2550 6450 2950 +Wire Wire Line + 6450 2950 4000 2950 +Wire Wire Line + 4700 3250 4350 3250 +Wire Wire Line + 4350 3250 4350 2950 +Connection ~ 4350 2950 +Wire Wire Line + 6150 4100 6750 4100 +Wire Wire Line + 6750 4100 6750 2850 +Wire Wire Line + 6750 2850 7700 2850 +Wire Wire Line + 6150 4850 6900 4850 +Wire Wire Line + 6900 4850 6900 3050 +Wire Wire Line + 6900 3050 7750 3050 +Wire Wire Line + 4700 1850 4550 1850 +Wire Wire Line + 4550 1850 4550 5450 +Wire Wire Line + 4550 5000 4700 5000 +Wire Wire Line + 4700 1550 4450 1550 +Wire Wire Line + 4450 1250 4450 4700 +Wire Wire Line + 4450 4700 4700 4700 +Wire Wire Line + 3950 4100 4700 4100 +Wire Wire Line + 4700 4850 4050 4850 +Wire Wire Line + 4700 4250 4550 4250 +Connection ~ 4550 4250 +Wire Wire Line + 4700 3950 4450 3950 +Connection ~ 4450 3950 +Wire Wire Line + 4700 3400 4550 3400 +Connection ~ 4550 3400 +Wire Wire Line + 4700 3100 4450 3100 +Connection ~ 4450 3100 +Wire Wire Line + 4700 2550 4550 2550 +Connection ~ 4550 2550 +Wire Wire Line + 2600 2250 4700 2250 +Connection ~ 4450 2250 +Wire Wire Line + 7700 3600 4550 3600 +Connection ~ 4550 3600 +Wire Wire Line + 7750 1600 4450 1600 +Connection ~ 4450 1600 +$Comp +L Schmitt_Trigger X2 +U 1 1 684BA479 +P 2900 1700 +F 0 "X2" H 2500 1700 60 0000 C CNN +F 1 "Schmitt_Trigger" H 2950 1700 60 0000 C CNN +F 2 "" H 2900 1700 60 0001 C CNN +F 3 "" H 2900 1700 60 0001 C CNN + 1 2900 1700 + 1 0 0 -1 +$EndComp +$Comp +L Schmitt_Trigger X3 +U 1 1 684BA5DA +P 2900 2700 +F 0 "X3" H 2500 2700 60 0000 C CNN +F 1 "Schmitt_Trigger" H 2950 2700 60 0000 C CNN +F 2 "" H 2900 2700 60 0001 C CNN +F 3 "" H 2900 2700 60 0001 C CNN + 1 2900 2700 + 1 0 0 -1 +$EndComp +$Comp +L Schmitt_Trigger X4 +U 1 1 684BA619 +P 2900 3750 +F 0 "X4" H 2500 3750 60 0000 C CNN +F 1 "Schmitt_Trigger" H 2950 3750 60 0000 C CNN +F 2 "" H 2900 3750 60 0001 C CNN +F 3 "" H 2900 3750 60 0001 C CNN + 1 2900 3750 + 1 0 0 -1 +$EndComp +$Comp +L Schmitt_Trigger X1 +U 1 1 684BA672 +P 2850 5000 +F 0 "X1" H 2450 5000 60 0000 C CNN +F 1 "Schmitt_Trigger" H 2900 5000 60 0000 C CNN +F 2 "" H 2850 5000 60 0001 C CNN +F 3 "" H 2850 5000 60 0001 C CNN + 1 2850 5000 + 1 0 0 -1 +$EndComp +$Comp +L Schmitt_Trigger X5 +U 1 1 684BA77B +P 2950 6250 +F 0 "X5" H 2550 6250 60 0000 C CNN +F 1 "Schmitt_Trigger" H 3000 6250 60 0000 C CNN +F 2 "" H 2950 6250 60 0001 C CNN +F 3 "" H 2950 6250 60 0001 C CNN + 1 2950 6250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4000 2950 4000 3750 +Wire Wire Line + 3950 5000 3950 4100 +Wire Wire Line + 4050 4850 4050 6250 +Wire Wire Line + 2600 1250 4450 1250 +Connection ~ 4450 1550 +Wire Wire Line + 2600 2150 4550 2150 +Connection ~ 4550 2150 +Wire Wire Line + 2600 3150 4550 3150 +Connection ~ 4550 3150 +Wire Wire Line + 2600 3300 4450 3300 +Connection ~ 4450 3300 +Wire Wire Line + 2600 4200 4550 4200 +Connection ~ 4550 4200 +Wire Wire Line + 2550 4550 4450 4550 +Connection ~ 4450 4550 +Wire Wire Line + 4550 5450 2550 5450 +Connection ~ 4550 5000 +Wire Wire Line + 2650 5800 2650 4550 +Connection ~ 2650 4550 +Wire Wire Line + 2650 6700 2850 6700 +Wire Wire Line + 2850 6700 2850 5450 +Connection ~ 2850 5450 +$Comp +L PORT U1 +U 1 1 684BB024 +P 1400 1700 +F 0 "U1" H 1450 1800 30 0000 C CNN +F 1 "PORT" H 1400 1700 30 0000 C CNN +F 2 "" H 1400 1700 60 0000 C CNN +F 3 "" H 1400 1700 60 0000 C CNN + 1 1400 1700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684BB087 +P 1400 2700 +F 0 "U1" H 1450 2800 30 0000 C CNN +F 1 "PORT" H 1400 2700 30 0000 C CNN +F 2 "" H 1400 2700 60 0000 C CNN +F 3 "" H 1400 2700 60 0000 C CNN + 2 1400 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684BB103 +P 1400 3750 +F 0 "U1" H 1450 3850 30 0000 C CNN +F 1 "PORT" H 1400 3750 30 0000 C CNN +F 2 "" H 1400 3750 60 0000 C CNN +F 3 "" H 1400 3750 60 0000 C CNN + 3 1400 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684BB194 +P 1400 5000 +F 0 "U1" H 1450 5100 30 0000 C CNN +F 1 "PORT" H 1400 5000 30 0000 C CNN +F 2 "" H 1400 5000 60 0000 C CNN +F 3 "" H 1400 5000 60 0000 C CNN + 4 1400 5000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684BB25E +P 1400 6250 +F 0 "U1" H 1450 6350 30 0000 C CNN +F 1 "PORT" H 1400 6250 30 0000 C CNN +F 2 "" H 1400 6250 60 0000 C CNN +F 3 "" H 1400 6250 60 0000 C CNN + 5 1400 6250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684BB3D1 +P 7350 1500 +F 0 "U1" H 7400 1600 30 0000 C CNN +F 1 "PORT" H 7350 1500 30 0000 C CNN +F 2 "" H 7350 1500 60 0000 C CNN +F 3 "" H 7350 1500 60 0000 C CNN + 6 7350 1500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 684BB471 +P 7350 3250 +F 0 "U1" H 7400 3350 30 0000 C CNN +F 1 "PORT" H 7350 3250 30 0000 C CNN +F 2 "" H 7350 3250 60 0000 C CNN +F 3 "" H 7350 3250 60 0000 C CNN + 7 7350 3250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 684BB4EC +P 7350 3700 +F 0 "U1" H 7400 3800 30 0000 C CNN +F 1 "PORT" H 7350 3700 30 0000 C CNN +F 2 "" H 7350 3700 60 0000 C CNN +F 3 "" H 7350 3700 60 0000 C CNN + 8 7350 3700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 684BB5BA +P 10500 1600 +F 0 "U1" H 10550 1700 30 0000 C CNN +F 1 "PORT" H 10500 1600 30 0000 C CNN +F 2 "" H 10500 1600 60 0000 C CNN +F 3 "" H 10500 1600 60 0000 C CNN + 9 10500 1600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 684BB6E5 +P 10500 1850 +F 0 "U1" H 10550 1950 30 0000 C CNN +F 1 "PORT" H 10500 1850 30 0000 C CNN +F 2 "" H 10500 1850 60 0000 C CNN +F 3 "" H 10500 1850 60 0000 C CNN + 10 10500 1850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 684BB74E +P 10500 2100 +F 0 "U1" H 10550 2200 30 0000 C CNN +F 1 "PORT" H 10500 2100 30 0000 C CNN +F 2 "" H 10500 2100 60 0000 C CNN +F 3 "" H 10500 2100 60 0000 C CNN + 11 10500 2100 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 684BB809 +P 10500 2350 +F 0 "U1" H 10550 2450 30 0000 C CNN +F 1 "PORT" H 10500 2350 30 0000 C CNN +F 2 "" H 10500 2350 60 0000 C CNN +F 3 "" H 10500 2350 60 0000 C CNN + 12 10500 2350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 684BB87A +P 10500 2800 +F 0 "U1" H 10550 2900 30 0000 C CNN +F 1 "PORT" H 10500 2800 30 0000 C CNN +F 2 "" H 10500 2800 60 0000 C CNN +F 3 "" H 10500 2800 60 0000 C CNN + 13 10500 2800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 684BB913 +P 10500 3000 +F 0 "U1" H 10550 3100 30 0000 C CNN +F 1 "PORT" H 10500 3000 30 0000 C CNN +F 2 "" H 10500 3000 60 0000 C CNN +F 3 "" H 10500 3000 60 0000 C CNN + 14 10500 3000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 684BB98A +P 10500 3250 +F 0 "U1" H 10550 3350 30 0000 C CNN +F 1 "PORT" H 10500 3250 30 0000 C CNN +F 2 "" H 10500 3250 60 0000 C CNN +F 3 "" H 10500 3250 60 0000 C CNN + 15 10500 3250 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 684BB9EB +P 10500 3550 +F 0 "U1" H 10550 3650 30 0000 C CNN +F 1 "PORT" H 10500 3550 30 0000 C CNN +F 2 "" H 10500 3550 60 0000 C CNN +F 3 "" H 10500 3550 60 0000 C CNN + 16 10500 3550 + -1 0 0 -1 +$EndComp +Wire Wire Line + 9950 1600 10250 1600 +Wire Wire Line + 9950 1850 10250 1850 +Wire Wire Line + 9950 2100 10250 2100 +Wire Wire Line + 9950 2350 10250 2350 +Wire Wire Line + 9950 2800 10250 2800 +Wire Wire Line + 9950 3000 10250 3000 +Wire Wire Line + 9950 3250 10250 3250 +Wire Wire Line + 9950 3550 10250 3550 +Wire Wire Line + 7600 3250 7750 3250 +Wire Wire Line + 7600 3700 7600 3600 +Connection ~ 7600 3600 +Wire Wire Line + 7600 1500 7600 1600 +Connection ~ 7600 1600 +Wire Wire Line + 1650 1700 1900 1700 +Wire Wire Line + 1650 2700 1900 2700 +Wire Wire Line + 1650 3750 1900 3750 +Wire Wire Line + 1650 5000 1850 5000 +Wire Wire Line + 1650 6250 1950 6250 +$Comp +L SKY130mode scmode1 +U 1 1 684BCA2F +P 8750 5500 +F 0 "scmode1" H 8750 5650 98 0000 C CNB +F 1 "SKY130mode" H 8750 5400 118 0000 C CNB +F 2 "" H 8750 5650 60 0001 C CNN +F 3 "" H 8750 5650 60 0001 C CNN + 1 8750 5500 + 1 0 0 -1 +$EndComp +$Comp +L Decoder_38_Address_Latch_storage X? +U 1 1 684CFBD4 +P 8850 2600 +F 0 "X?" H 8850 2450 60 0000 C CNN +F 1 "Decoder_38_Address_Latch_storage" H 8950 2600 60 0000 C CNN +F 2 "" H 8850 2600 60 0001 C CNN +F 3 "" H 8850 2600 60 0001 C CNN + 1 8850 2600 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/SN74HC259.cir b/library/SubcircuitLibrary/SN74HC259/SN74HC259.cir new file mode 100644 index 000000000..37dd5be78 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/SN74HC259.cir @@ -0,0 +1,23 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/SN74HC259/SN74HC259.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jun 14 09:55:16 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X6 Net-_X11-Pad17_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_X11-Pad13_ CMOS_INVTR +X7 Net-_X11-Pad18_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_X11-Pad14_ CMOS_INVTR +X8 Net-_X11-Pad19_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_X11-Pad15_ CMOS_INVTR +X9 Net-_X1-Pad4_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_X11-Pad16_ CMOS_INVTR +X10 Net-_X10-Pad1_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_X10-Pad4_ CMOS_INVTR +X2 Net-_U1-Pad1_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_X11-Pad17_ Schmitt_Trigger +X3 Net-_U1-Pad2_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_X11-Pad18_ Schmitt_Trigger +X4 Net-_U1-Pad3_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_X11-Pad19_ Schmitt_Trigger +X1 Net-_U1-Pad4_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_X1-Pad4_ Schmitt_Trigger +X5 Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_X10-Pad1_ Schmitt_Trigger +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ PORT +scmode1 SKY130mode +X11 Net-_U1-Pad9_ Net-_U1-Pad11_ Net-_U1-Pad10_ Net-_U1-Pad12_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_X10-Pad4_ Net-_U1-Pad7_ Net-_X11-Pad13_ Net-_X11-Pad14_ Net-_X11-Pad15_ Net-_X11-Pad16_ Net-_X11-Pad17_ Net-_X11-Pad18_ Net-_X11-Pad19_ Decoder_38_Address_Latch_storage + +.end diff --git a/library/SubcircuitLibrary/SN74HC259/SN74HC259.cir.out b/library/SubcircuitLibrary/SN74HC259/SN74HC259.cir.out new file mode 100644 index 000000000..15ad3bb0a --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/SN74HC259.cir.out @@ -0,0 +1,29 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/sn74hc259/sn74hc259.cir + +.include CMOS_INVTR.sub +.include Schmitt_Trigger.sub +.include Decoder_38_Address_Latch_storage.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x6 net-_x11-pad17_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad13_ CMOS_INVTR +x7 net-_x11-pad18_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad14_ CMOS_INVTR +x8 net-_x11-pad19_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad15_ CMOS_INVTR +x9 net-_x1-pad4_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad16_ CMOS_INVTR +x10 net-_x10-pad1_ net-_u1-pad6_ net-_u1-pad8_ net-_x10-pad4_ CMOS_INVTR +x2 net-_u1-pad1_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad17_ Schmitt_Trigger +x3 net-_u1-pad2_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad18_ Schmitt_Trigger +x4 net-_u1-pad3_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad19_ Schmitt_Trigger +x1 net-_u1-pad4_ net-_u1-pad6_ net-_u1-pad8_ net-_x1-pad4_ Schmitt_Trigger +x5 net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad8_ net-_x10-pad1_ Schmitt_Trigger +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ port +* s c m o d e +x11 net-_u1-pad9_ net-_u1-pad11_ net-_u1-pad10_ net-_u1-pad12_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_x10-pad4_ net-_u1-pad7_ net-_x11-pad13_ net-_x11-pad14_ net-_x11-pad15_ net-_x11-pad16_ net-_x11-pad17_ net-_x11-pad18_ net-_x11-pad19_ Decoder_38_Address_Latch_storage +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC259/SN74HC259.pro b/library/SubcircuitLibrary/SN74HC259/SN74HC259.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/SN74HC259.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74HC259/SN74HC259.sch b/library/SubcircuitLibrary/SN74HC259/SN74HC259.sch new file mode 100644 index 000000000..f4dbfed48 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/SN74HC259.sch @@ -0,0 +1,531 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN74HC259-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L CMOS_INVTR X6 +U 1 1 684B99C4 +P 5350 1700 +F 0 "X6" H 5350 1700 60 0000 C CNN +F 1 "CMOS_INVTR" H 5450 1450 60 0000 C CNN +F 2 "" H 5350 1700 60 0001 C CNN +F 3 "" H 5350 1700 60 0001 C CNN + 1 5350 1700 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X7 +U 1 1 684B9A21 +P 5350 2400 +F 0 "X7" H 5350 2400 60 0000 C CNN +F 1 "CMOS_INVTR" H 5450 2150 60 0000 C CNN +F 2 "" H 5350 2400 60 0001 C CNN +F 3 "" H 5350 2400 60 0001 C CNN + 1 5350 2400 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X8 +U 1 1 684B9A8E +P 5350 3250 +F 0 "X8" H 5350 3250 60 0000 C CNN +F 1 "CMOS_INVTR" H 5450 3000 60 0000 C CNN +F 2 "" H 5350 3250 60 0001 C CNN +F 3 "" H 5350 3250 60 0001 C CNN + 1 5350 3250 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X9 +U 1 1 684B9B4B +P 5350 4100 +F 0 "X9" H 5350 4100 60 0000 C CNN +F 1 "CMOS_INVTR" H 5450 3850 60 0000 C CNN +F 2 "" H 5350 4100 60 0001 C CNN +F 3 "" H 5350 4100 60 0001 C CNN + 1 5350 4100 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X10 +U 1 1 684B9D35 +P 5350 4850 +F 0 "X10" H 5350 4850 60 0000 C CNN +F 1 "CMOS_INVTR" H 5450 4600 60 0000 C CNN +F 2 "" H 5350 4850 60 0001 C CNN +F 3 "" H 5350 4850 60 0001 C CNN + 1 5350 4850 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6150 1700 7750 1700 +Wire Wire Line + 7750 1700 7750 1750 +Wire Wire Line + 6150 2400 6150 1900 +Wire Wire Line + 6150 1900 7750 1900 +Wire Wire Line + 6150 3250 6350 3250 +Wire Wire Line + 6350 3250 6350 2050 +Wire Wire Line + 6350 2050 7750 2050 +Wire Wire Line + 4000 1700 4700 1700 +Wire Wire Line + 4350 1700 4350 2100 +Wire Wire Line + 4350 2100 7750 2100 +Wire Wire Line + 7750 2100 7750 2250 +Connection ~ 4350 1700 +Wire Wire Line + 7750 2400 6400 2400 +Wire Wire Line + 6400 2400 6400 2700 +Wire Wire Line + 6400 2700 4000 2700 +Wire Wire Line + 4700 2400 4350 2400 +Wire Wire Line + 4350 2400 4350 2700 +Connection ~ 4350 2700 +Wire Wire Line + 7750 2550 6450 2550 +Wire Wire Line + 6450 2550 6450 2950 +Wire Wire Line + 6450 2950 4000 2950 +Wire Wire Line + 4700 3250 4350 3250 +Wire Wire Line + 4350 3250 4350 2950 +Connection ~ 4350 2950 +Wire Wire Line + 6150 4100 6750 4100 +Wire Wire Line + 6750 4100 6750 2850 +Wire Wire Line + 6750 2850 7700 2850 +Wire Wire Line + 6150 4850 6900 4850 +Wire Wire Line + 6900 4850 6900 3050 +Wire Wire Line + 6900 3050 7750 3050 +Wire Wire Line + 4700 1850 4550 1850 +Wire Wire Line + 4550 1850 4550 5450 +Wire Wire Line + 4550 5000 4700 5000 +Wire Wire Line + 4700 1550 4450 1550 +Wire Wire Line + 4450 1250 4450 4700 +Wire Wire Line + 4450 4700 4700 4700 +Wire Wire Line + 3950 4100 4700 4100 +Wire Wire Line + 4700 4850 4050 4850 +Wire Wire Line + 4700 4250 4550 4250 +Connection ~ 4550 4250 +Wire Wire Line + 4700 3950 4450 3950 +Connection ~ 4450 3950 +Wire Wire Line + 4700 3400 4550 3400 +Connection ~ 4550 3400 +Wire Wire Line + 4700 3100 4450 3100 +Connection ~ 4450 3100 +Wire Wire Line + 4700 2550 4550 2550 +Connection ~ 4550 2550 +Wire Wire Line + 2600 2250 4700 2250 +Connection ~ 4450 2250 +Wire Wire Line + 7700 3600 4550 3600 +Connection ~ 4550 3600 +Wire Wire Line + 7750 1600 4450 1600 +Connection ~ 4450 1600 +$Comp +L Schmitt_Trigger X2 +U 1 1 684BA479 +P 2900 1700 +F 0 "X2" H 2500 1700 60 0000 C CNN +F 1 "Schmitt_Trigger" H 2950 1700 60 0000 C CNN +F 2 "" H 2900 1700 60 0001 C CNN +F 3 "" H 2900 1700 60 0001 C CNN + 1 2900 1700 + 1 0 0 -1 +$EndComp +$Comp +L Schmitt_Trigger X3 +U 1 1 684BA5DA +P 2900 2700 +F 0 "X3" H 2500 2700 60 0000 C CNN +F 1 "Schmitt_Trigger" H 2950 2700 60 0000 C CNN +F 2 "" H 2900 2700 60 0001 C CNN +F 3 "" H 2900 2700 60 0001 C CNN + 1 2900 2700 + 1 0 0 -1 +$EndComp +$Comp +L Schmitt_Trigger X4 +U 1 1 684BA619 +P 2900 3750 +F 0 "X4" H 2500 3750 60 0000 C CNN +F 1 "Schmitt_Trigger" H 2950 3750 60 0000 C CNN +F 2 "" H 2900 3750 60 0001 C CNN +F 3 "" H 2900 3750 60 0001 C CNN + 1 2900 3750 + 1 0 0 -1 +$EndComp +$Comp +L Schmitt_Trigger X1 +U 1 1 684BA672 +P 2850 5000 +F 0 "X1" H 2450 5000 60 0000 C CNN +F 1 "Schmitt_Trigger" H 2900 5000 60 0000 C CNN +F 2 "" H 2850 5000 60 0001 C CNN +F 3 "" H 2850 5000 60 0001 C CNN + 1 2850 5000 + 1 0 0 -1 +$EndComp +$Comp +L Schmitt_Trigger X5 +U 1 1 684BA77B +P 2950 6250 +F 0 "X5" H 2550 6250 60 0000 C CNN +F 1 "Schmitt_Trigger" H 3000 6250 60 0000 C CNN +F 2 "" H 2950 6250 60 0001 C CNN +F 3 "" H 2950 6250 60 0001 C CNN + 1 2950 6250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4000 2950 4000 3750 +Wire Wire Line + 3950 5000 3950 4100 +Wire Wire Line + 4050 4850 4050 6250 +Wire Wire Line + 2600 1250 4450 1250 +Connection ~ 4450 1550 +Wire Wire Line + 2600 2150 4550 2150 +Connection ~ 4550 2150 +Wire Wire Line + 2600 3150 4550 3150 +Connection ~ 4550 3150 +Wire Wire Line + 2600 3300 4450 3300 +Connection ~ 4450 3300 +Wire Wire Line + 2600 4200 4550 4200 +Connection ~ 4550 4200 +Wire Wire Line + 2550 4550 4450 4550 +Connection ~ 4450 4550 +Wire Wire Line + 4550 5450 2550 5450 +Connection ~ 4550 5000 +Wire Wire Line + 2650 5800 2650 4550 +Connection ~ 2650 4550 +Wire Wire Line + 2650 6700 2850 6700 +Wire Wire Line + 2850 6700 2850 5450 +Connection ~ 2850 5450 +$Comp +L PORT U1 +U 1 1 684BB024 +P 1400 1700 +F 0 "U1" H 1450 1800 30 0000 C CNN +F 1 "PORT" H 1400 1700 30 0000 C CNN +F 2 "" H 1400 1700 60 0000 C CNN +F 3 "" H 1400 1700 60 0000 C CNN + 1 1400 1700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684BB087 +P 1400 2700 +F 0 "U1" H 1450 2800 30 0000 C CNN +F 1 "PORT" H 1400 2700 30 0000 C CNN +F 2 "" H 1400 2700 60 0000 C CNN +F 3 "" H 1400 2700 60 0000 C CNN + 2 1400 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684BB103 +P 1400 3750 +F 0 "U1" H 1450 3850 30 0000 C CNN +F 1 "PORT" H 1400 3750 30 0000 C CNN +F 2 "" H 1400 3750 60 0000 C CNN +F 3 "" H 1400 3750 60 0000 C CNN + 3 1400 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684BB194 +P 1400 5000 +F 0 "U1" H 1450 5100 30 0000 C CNN +F 1 "PORT" H 1400 5000 30 0000 C CNN +F 2 "" H 1400 5000 60 0000 C CNN +F 3 "" H 1400 5000 60 0000 C CNN + 4 1400 5000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684BB25E +P 1400 6250 +F 0 "U1" H 1450 6350 30 0000 C CNN +F 1 "PORT" H 1400 6250 30 0000 C CNN +F 2 "" H 1400 6250 60 0000 C CNN +F 3 "" H 1400 6250 60 0000 C CNN + 5 1400 6250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684BB3D1 +P 7350 1500 +F 0 "U1" H 7400 1600 30 0000 C CNN +F 1 "PORT" H 7350 1500 30 0000 C CNN +F 2 "" H 7350 1500 60 0000 C CNN +F 3 "" H 7350 1500 60 0000 C CNN + 6 7350 1500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 684BB471 +P 7350 3250 +F 0 "U1" H 7400 3350 30 0000 C CNN +F 1 "PORT" H 7350 3250 30 0000 C CNN +F 2 "" H 7350 3250 60 0000 C CNN +F 3 "" H 7350 3250 60 0000 C CNN + 7 7350 3250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 684BB4EC +P 7350 3700 +F 0 "U1" H 7400 3800 30 0000 C CNN +F 1 "PORT" H 7350 3700 30 0000 C CNN +F 2 "" H 7350 3700 60 0000 C CNN +F 3 "" H 7350 3700 60 0000 C CNN + 8 7350 3700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 684BB5BA +P 10500 1600 +F 0 "U1" H 10550 1700 30 0000 C CNN +F 1 "PORT" H 10500 1600 30 0000 C CNN +F 2 "" H 10500 1600 60 0000 C CNN +F 3 "" H 10500 1600 60 0000 C CNN + 9 10500 1600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 684BB6E5 +P 10500 1850 +F 0 "U1" H 10550 1950 30 0000 C CNN +F 1 "PORT" H 10500 1850 30 0000 C CNN +F 2 "" H 10500 1850 60 0000 C CNN +F 3 "" H 10500 1850 60 0000 C CNN + 10 10500 1850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 684BB74E +P 10500 2100 +F 0 "U1" H 10550 2200 30 0000 C CNN +F 1 "PORT" H 10500 2100 30 0000 C CNN +F 2 "" H 10500 2100 60 0000 C CNN +F 3 "" H 10500 2100 60 0000 C CNN + 11 10500 2100 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 684BB809 +P 10500 2350 +F 0 "U1" H 10550 2450 30 0000 C CNN +F 1 "PORT" H 10500 2350 30 0000 C CNN +F 2 "" H 10500 2350 60 0000 C CNN +F 3 "" H 10500 2350 60 0000 C CNN + 12 10500 2350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 684BB87A +P 10500 2800 +F 0 "U1" H 10550 2900 30 0000 C CNN +F 1 "PORT" H 10500 2800 30 0000 C CNN +F 2 "" H 10500 2800 60 0000 C CNN +F 3 "" H 10500 2800 60 0000 C CNN + 13 10500 2800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 684BB913 +P 10500 3000 +F 0 "U1" H 10550 3100 30 0000 C CNN +F 1 "PORT" H 10500 3000 30 0000 C CNN +F 2 "" H 10500 3000 60 0000 C CNN +F 3 "" H 10500 3000 60 0000 C CNN + 14 10500 3000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 684BB98A +P 10500 3250 +F 0 "U1" H 10550 3350 30 0000 C CNN +F 1 "PORT" H 10500 3250 30 0000 C CNN +F 2 "" H 10500 3250 60 0000 C CNN +F 3 "" H 10500 3250 60 0000 C CNN + 15 10500 3250 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 684BB9EB +P 10500 3550 +F 0 "U1" H 10550 3650 30 0000 C CNN +F 1 "PORT" H 10500 3550 30 0000 C CNN +F 2 "" H 10500 3550 60 0000 C CNN +F 3 "" H 10500 3550 60 0000 C CNN + 16 10500 3550 + -1 0 0 -1 +$EndComp +Wire Wire Line + 9950 1600 10250 1600 +Wire Wire Line + 9950 1850 10250 1850 +Wire Wire Line + 9950 2100 10250 2100 +Wire Wire Line + 9950 2350 10250 2350 +Wire Wire Line + 9950 2800 10250 2800 +Wire Wire Line + 9950 3000 10250 3000 +Wire Wire Line + 9950 3250 10250 3250 +Wire Wire Line + 9950 3550 10250 3550 +Wire Wire Line + 7600 3250 7750 3250 +Wire Wire Line + 7600 3700 7600 3600 +Connection ~ 7600 3600 +Wire Wire Line + 7600 1500 7600 1600 +Connection ~ 7600 1600 +Wire Wire Line + 1650 1700 1900 1700 +Wire Wire Line + 1650 2700 1900 2700 +Wire Wire Line + 1650 3750 1900 3750 +Wire Wire Line + 1650 5000 1850 5000 +Wire Wire Line + 1650 6250 1950 6250 +$Comp +L SKY130mode scmode1 +U 1 1 684BCA2F +P 8750 5500 +F 0 "scmode1" H 8750 5650 98 0000 C CNB +F 1 "SKY130mode" H 8750 5400 118 0000 C CNB +F 2 "" H 8750 5650 60 0001 C CNN +F 3 "" H 8750 5650 60 0001 C CNN + 1 8750 5500 + 1 0 0 -1 +$EndComp +$Comp +L Decoder_38_Address_Latch_storage X11 +U 1 1 684CFBD4 +P 8850 2600 +F 0 "X11" H 8850 2450 60 0000 C CNN +F 1 "Decoder_38_Address_Latch_storage" H 8950 2600 60 0000 C CNN +F 2 "" H 8850 2600 60 0001 C CNN +F 3 "" H 8850 2600 60 0001 C CNN + 1 8850 2600 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/SN74HC259.sub b/library/SubcircuitLibrary/SN74HC259/SN74HC259.sub new file mode 100644 index 000000000..279089f43 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/SN74HC259.sub @@ -0,0 +1,23 @@ +* Subcircuit SN74HC259 +.subckt SN74HC259 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/sn74hc259/sn74hc259.cir +.include CMOS_INVTR.sub +.include Schmitt_Trigger.sub +.include Decoder_38_Address_Latch_storage.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x6 net-_x11-pad17_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad13_ CMOS_INVTR +x7 net-_x11-pad18_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad14_ CMOS_INVTR +x8 net-_x11-pad19_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad15_ CMOS_INVTR +x9 net-_x1-pad4_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad16_ CMOS_INVTR +x10 net-_x10-pad1_ net-_u1-pad6_ net-_u1-pad8_ net-_x10-pad4_ CMOS_INVTR +x2 net-_u1-pad1_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad17_ Schmitt_Trigger +x3 net-_u1-pad2_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad18_ Schmitt_Trigger +x4 net-_u1-pad3_ net-_u1-pad6_ net-_u1-pad8_ net-_x11-pad19_ Schmitt_Trigger +x1 net-_u1-pad4_ net-_u1-pad6_ net-_u1-pad8_ net-_x1-pad4_ Schmitt_Trigger +x5 net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad8_ net-_x10-pad1_ Schmitt_Trigger +* s c m o d e +x11 net-_u1-pad9_ net-_u1-pad11_ net-_u1-pad10_ net-_u1-pad12_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_x10-pad4_ net-_u1-pad7_ net-_x11-pad13_ net-_x11-pad14_ net-_x11-pad15_ net-_x11-pad16_ net-_x11-pad17_ net-_x11-pad18_ net-_x11-pad19_ Decoder_38_Address_Latch_storage +* Control Statements + +.ends SN74HC259 diff --git a/library/SubcircuitLibrary/SN74HC259/SN74HC259_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC259/SN74HC259_Previous_Values.xml new file mode 100644 index 000000000..67532ae04 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/SN74HC259_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/CMOS_INVTR/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Schmitt_Trigger/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Schmitt_Trigger/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Schmitt_Trigger/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Schmitt_Trigger/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Schmitt_Trigger/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Decoder_38_Address_Latch_storagetruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger-cache.lib b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.cir b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.cir new file mode 100644 index 000000000..36477c500 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.cir @@ -0,0 +1,20 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Schmitt_Trigger/Schmitt_Trigger.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Mon Jun 9 08:39:40 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC2-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad1_ Net-_SC1-Pad1_ sky130_fd_pr__pfet_01v8 +SC3 Net-_SC2-Pad1_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC3-Pad3_ Net-_SC1-Pad2_ Net-_SC4-Pad3_ Net-_SC4-Pad3_ sky130_fd_pr__nfet_01v8 +SC5 Net-_SC4-Pad3_ Net-_SC2-Pad1_ Net-_SC1-Pad1_ Net-_SC1-Pad1_ sky130_fd_pr__pfet_01v8 +SC6 Net-_SC1-Pad3_ Net-_SC2-Pad1_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +SC7 Net-_SC7-Pad1_ Net-_SC2-Pad1_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC8 Net-_SC7-Pad1_ Net-_SC2-Pad1_ Net-_SC4-Pad3_ Net-_SC4-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC4-Pad3_ Net-_SC7-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.cir.out b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.cir.out new file mode 100644 index 000000000..3935e9ff4 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.cir.out @@ -0,0 +1,24 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/schmitt_trigger/schmitt_trigger.cir + + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad3_ net-_sc1-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc4-pad3_ net-_sc2-pad1_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc6 net-_sc1-pad3_ net-_sc2-pad1_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc7 net-_sc7-pad1_ net-_sc2-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc7-pad1_ net-_sc2-pad1_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc4-pad3_ net-_sc7-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.pro b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.sch b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.sch new file mode 100644 index 000000000..f8fee114a --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.sch @@ -0,0 +1,312 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 68464E7B +P 3850 1600 +F 0 "SC1" H 3900 1900 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4150 1687 50 0000 R CNN +F 2 "" H 3850 100 50 0001 C CNN +F 3 "" H 3850 1600 50 0001 C CNN + 1 3850 1600 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 68465252 +P 3850 2400 +F 0 "SC2" H 3900 2700 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4150 2487 50 0000 R CNN +F 2 "" H 3850 900 50 0001 C CNN +F 3 "" H 3850 2400 50 0001 C CNN + 1 3850 2400 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 68465307 +P 3850 3400 +F 0 "SC3" H 3900 3700 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4150 3487 50 0000 R CNN +F 2 "" H 3850 1900 50 0001 C CNN +F 3 "" H 3850 3400 50 0001 C CNN + 1 3850 3400 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 68465392 +P 3850 4200 +F 0 "SC4" H 3900 4500 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4150 4287 50 0000 R CNN +F 2 "" H 3850 2700 50 0001 C CNN +F 3 "" H 3850 4200 50 0001 C CNN + 1 3850 4200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC5 +U 1 1 68465403 +P 4850 2200 +F 0 "SC5" H 4900 2500 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5150 2287 50 0000 R CNN +F 2 "" H 4850 700 50 0001 C CNN +F 3 "" H 4850 2200 50 0001 C CNN + 1 4850 2200 + 0 -1 -1 0 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC6 +U 1 1 6846558D +P 4850 3600 +F 0 "SC6" H 4900 3900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5150 3687 50 0000 R CNN +F 2 "" H 4850 2100 50 0001 C CNN +F 3 "" H 4850 3600 50 0001 C CNN + 1 4850 3600 + 0 1 1 0 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC7 +U 1 1 68465896 +P 5900 1900 +F 0 "SC7" H 5950 2200 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6200 1987 50 0000 R CNN +F 2 "" H 5900 400 50 0001 C CNN +F 3 "" H 5900 1900 50 0001 C CNN + 1 5900 1900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC8 +U 1 1 68465B12 +P 5900 3900 +F 0 "SC8" H 5950 4200 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6200 3987 50 0000 R CNN +F 2 "" H 5900 2400 50 0001 C CNN +F 3 "" H 5900 3900 50 0001 C CNN + 1 5900 3900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6100 2200 6100 3600 +Wire Wire Line + 5600 1900 5600 3900 +Wire Wire Line + 4050 2700 4050 3100 +Wire Wire Line + 4050 2900 5600 2900 +Connection ~ 5600 2900 +Connection ~ 4050 2900 +Wire Wire Line + 4850 2500 4850 3300 +Connection ~ 4850 2900 +Wire Wire Line + 4050 1900 4050 2100 +Wire Wire Line + 4550 2000 4050 2000 +Connection ~ 4050 2000 +Wire Wire Line + 4050 1300 6100 1300 +Wire Wire Line + 6100 1300 6100 1600 +Wire Wire Line + 4050 4500 6100 4500 +Wire Wire Line + 6100 4500 6100 4200 +Wire Wire Line + 5150 2000 5500 2000 +Wire Wire Line + 5500 2000 5500 4500 +Connection ~ 5500 4500 +Wire Wire Line + 5150 3800 5400 3800 +Wire Wire Line + 5400 3800 5400 1300 +Connection ~ 5400 1300 +Wire Wire Line + 3550 1600 3350 1600 +Wire Wire Line + 3350 1600 3350 4200 +Wire Wire Line + 3350 4200 3550 4200 +Wire Wire Line + 4050 3700 4050 3900 +Wire Wire Line + 4550 3800 4050 3800 +Connection ~ 4050 3800 +Wire Wire Line + 4850 3700 4850 3900 +Wire Wire Line + 4850 3900 4450 3900 +Wire Wire Line + 4450 3900 4450 3800 +Connection ~ 4450 3800 +Wire Wire Line + 3950 4200 4100 4200 +Wire Wire Line + 4100 4200 4100 4500 +Connection ~ 4100 4500 +Wire Wire Line + 6000 3900 6150 3900 +Wire Wire Line + 6150 3900 6150 4250 +Wire Wire Line + 6150 4250 6100 4250 +Connection ~ 6100 4250 +Wire Wire Line + 3950 3400 4150 3400 +Wire Wire Line + 4150 3400 4150 3800 +Connection ~ 4150 3800 +Wire Wire Line + 3950 2400 4100 2400 +Wire Wire Line + 4100 2400 4100 2000 +Connection ~ 4100 2000 +Wire Wire Line + 4850 2100 4850 1950 +Wire Wire Line + 4850 1950 4500 1950 +Wire Wire Line + 4500 1950 4500 2000 +Connection ~ 4500 2000 +Wire Wire Line + 3950 1600 4100 1600 +Wire Wire Line + 4100 1600 4100 1300 +Connection ~ 4100 1300 +Wire Wire Line + 6000 1900 6150 1900 +Wire Wire Line + 6150 1900 6150 1500 +Wire Wire Line + 6150 1500 6100 1500 +Connection ~ 6100 1500 +Wire Wire Line + 3550 2400 3350 2400 +Connection ~ 3350 2400 +Wire Wire Line + 3550 3400 3350 3400 +Connection ~ 3350 3400 +$Comp +L PORT U1 +U 1 1 68466403 +P 2850 2900 +F 0 "U1" H 2900 3000 30 0000 C CNN +F 1 "PORT" H 2850 2900 30 0000 C CNN +F 2 "" H 2850 2900 60 0000 C CNN +F 3 "" H 2850 2900 60 0000 C CNN + 1 2850 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684664D8 +P 4500 1050 +F 0 "U1" H 4550 1150 30 0000 C CNN +F 1 "PORT" H 4500 1050 30 0000 C CNN +F 2 "" H 4500 1050 60 0000 C CNN +F 3 "" H 4500 1050 60 0000 C CNN + 2 4500 1050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68466579 +P 6600 2950 +F 0 "U1" H 6650 3050 30 0000 C CNN +F 1 "PORT" H 6600 2950 30 0000 C CNN +F 2 "" H 6600 2950 60 0000 C CNN +F 3 "" H 6600 2950 60 0000 C CNN + 4 6600 2950 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 68466640 +P 4600 4800 +F 0 "U1" H 4650 4900 30 0000 C CNN +F 1 "PORT" H 4600 4800 30 0000 C CNN +F 2 "" H 4600 4800 60 0000 C CNN +F 3 "" H 4600 4800 60 0000 C CNN + 3 4600 4800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4850 4800 4850 4500 +Connection ~ 4850 4500 +Wire Wire Line + 3100 2900 3350 2900 +Connection ~ 3350 2900 +Wire Wire Line + 6350 2950 6100 2950 +Connection ~ 6100 2950 +Wire Wire Line + 4750 1050 4750 1300 +Connection ~ 4750 1300 +$Comp +L SKY130mode scmode1 +U 1 1 6846736A +P 8750 3650 +F 0 "scmode1" H 8750 3800 98 0000 C CNB +F 1 "SKY130mode" H 8750 3550 118 0000 C CNB +F 2 "" H 8750 3800 60 0001 C CNN +F 3 "" H 8750 3800 60 0001 C CNN + 1 8750 3650 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.sub b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.sub new file mode 100644 index 000000000..48e9e5d96 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger.sub @@ -0,0 +1,18 @@ +* Subcircuit Schmitt_Trigger +.subckt Schmitt_Trigger net-_sc1-pad2_ net-_sc1-pad3_ net-_sc4-pad3_ net-_sc7-pad1_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/schmitt_trigger/schmitt_trigger.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc2-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad3_ net-_sc1-pad2_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc4-pad3_ net-_sc2-pad1_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc6 net-_sc1-pad3_ net-_sc2-pad1_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc7 net-_sc7-pad1_ net-_sc2-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc7-pad1_ net-_sc2-pad1_ net-_sc4-pad3_ net-_sc4-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends Schmitt_Trigger diff --git a/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger_Previous_Values.xml new file mode 100644 index 000000000..7d6ec6b4d --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/Schmitt_Trigger_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=1 l=0.15w=3 l=0.15w=1 l=0.15 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC259/analysis b/library/SubcircuitLibrary/SN74HC259/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC259/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC623/SN74HC623.cir b/library/SubcircuitLibrary/SN74HC623/SN74HC623.cir new file mode 100644 index 000000000..67144c56f --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC623/SN74HC623.cir @@ -0,0 +1,21 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ Net-_U1-Pad19_ PORT +U7 Net-_U1-Pad13_ Net-_U1-Pad17_ Net-_U1-Pad7_ d_tristate +U15 Net-_U1-Pad7_ Net-_U11-Pad2_ Net-_U1-Pad13_ d_tristate +U13 Net-_U1-Pad5_ Net-_U11-Pad2_ Net-_U1-Pad15_ d_tristate +U5 Net-_U1-Pad15_ Net-_U1-Pad17_ Net-_U1-Pad5_ d_tristate +U14 Net-_U1-Pad6_ Net-_U11-Pad2_ Net-_U1-Pad14_ d_tristate +U6 Net-_U1-Pad14_ Net-_U1-Pad17_ Net-_U1-Pad6_ d_tristate +U2 Net-_U1-Pad1_ Net-_U11-Pad2_ d_buffer +U19 Net-_U1-Pad19_ Net-_U1-Pad17_ d_inverter +U3 Net-_U1-Pad18_ Net-_U1-Pad17_ Net-_U1-Pad2_ d_tristate +U11 Net-_U1-Pad2_ Net-_U11-Pad2_ Net-_U1-Pad18_ d_tristate +U10 Net-_U1-Pad17_ Net-_U1-Pad17_ Net-_U1-Pad3_ d_tristate +U18 Net-_U1-Pad3_ Net-_U11-Pad2_ Net-_U1-Pad17_ d_tristate +U4 Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad4_ d_tristate +U12 Net-_U1-Pad4_ Net-_U11-Pad2_ Net-_U1-Pad16_ d_tristate +U9 Net-_U1-Pad11_ Net-_U1-Pad17_ Net-_U1-Pad9_ d_tristate +U17 Net-_U1-Pad9_ Net-_U11-Pad2_ Net-_U1-Pad11_ d_tristate +U8 Net-_U1-Pad12_ Net-_U1-Pad17_ Net-_U1-Pad8_ d_tristate +U16 Net-_U1-Pad8_ Net-_U11-Pad2_ Net-_U1-Pad12_ d_tristate +.end diff --git a/library/SubcircuitLibrary/SN74HC623/SN74HC623.cir.out b/library/SubcircuitLibrary/SN74HC623/SN74HC623.cir.out new file mode 100644 index 000000000..01707f36c --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC623/SN74HC623.cir.out @@ -0,0 +1,84 @@ +.title kicad schematic + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ port +* u7 net-_u1-pad13_ net-_u1-pad17_ net-_u1-pad7_ d_tristate +* u15 net-_u1-pad7_ net-_u11-pad2_ net-_u1-pad13_ d_tristate +* u13 net-_u1-pad5_ net-_u11-pad2_ net-_u1-pad15_ d_tristate +* u5 net-_u1-pad15_ net-_u1-pad17_ net-_u1-pad5_ d_tristate +* u14 net-_u1-pad6_ net-_u11-pad2_ net-_u1-pad14_ d_tristate +* u6 net-_u1-pad14_ net-_u1-pad17_ net-_u1-pad6_ d_tristate +* u2 net-_u1-pad1_ net-_u11-pad2_ d_buffer +* u19 net-_u1-pad19_ net-_u1-pad17_ d_inverter +* u3 net-_u1-pad18_ net-_u1-pad17_ net-_u1-pad2_ d_tristate +* u11 net-_u1-pad2_ net-_u11-pad2_ net-_u1-pad18_ d_tristate +* u10 net-_u1-pad17_ net-_u1-pad17_ net-_u1-pad3_ d_tristate +* u18 net-_u1-pad3_ net-_u11-pad2_ net-_u1-pad17_ d_tristate +* u4 net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad4_ d_tristate +* u12 net-_u1-pad4_ net-_u11-pad2_ net-_u1-pad16_ d_tristate +* u9 net-_u1-pad11_ net-_u1-pad17_ net-_u1-pad9_ d_tristate +* u17 net-_u1-pad9_ net-_u11-pad2_ net-_u1-pad11_ d_tristate +* u8 net-_u1-pad12_ net-_u1-pad17_ net-_u1-pad8_ d_tristate +* u16 net-_u1-pad8_ net-_u11-pad2_ net-_u1-pad12_ d_tristate +a1 net-_u1-pad13_ net-_u1-pad17_ net-_u1-pad7_ u7 +a2 net-_u1-pad7_ net-_u11-pad2_ net-_u1-pad13_ u15 +a3 net-_u1-pad5_ net-_u11-pad2_ net-_u1-pad15_ u13 +a4 net-_u1-pad15_ net-_u1-pad17_ net-_u1-pad5_ u5 +a5 net-_u1-pad6_ net-_u11-pad2_ net-_u1-pad14_ u14 +a6 net-_u1-pad14_ net-_u1-pad17_ net-_u1-pad6_ u6 +a7 net-_u1-pad1_ net-_u11-pad2_ u2 +a8 net-_u1-pad19_ net-_u1-pad17_ u19 +a9 net-_u1-pad18_ net-_u1-pad17_ net-_u1-pad2_ u3 +a10 net-_u1-pad2_ net-_u11-pad2_ net-_u1-pad18_ u11 +a11 net-_u1-pad17_ net-_u1-pad17_ net-_u1-pad3_ u10 +a12 net-_u1-pad3_ net-_u11-pad2_ net-_u1-pad17_ u18 +a13 net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad4_ u4 +a14 net-_u1-pad4_ net-_u11-pad2_ net-_u1-pad16_ u12 +a15 net-_u1-pad11_ net-_u1-pad17_ net-_u1-pad9_ u9 +a16 net-_u1-pad9_ net-_u11-pad2_ net-_u1-pad11_ u17 +a17 net-_u1-pad12_ net-_u1-pad17_ net-_u1-pad8_ u8 +a18 net-_u1-pad8_ net-_u11-pad2_ net-_u1-pad12_ u16 +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u7 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u15 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u13 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u5 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u14 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u2 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u3 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u11 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u10 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u18 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u4 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u12 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u9 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u17 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u8 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u16 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74HC623/SN74HC623.kicad_sch b/library/SubcircuitLibrary/SN74HC623/SN74HC623.kicad_sch new file mode 100644 index 000000000..5a06619a2 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC623/SN74HC623.kicad_sch @@ -0,0 +1,2119 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 4936536a-b75d-40de-ab40-0602f2caa703) + + (paper "A1") + + (lib_symbols + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_tristate" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -6.35 6.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at -5.08 11.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at -2.54 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_tristate_0_1" + (polyline + (pts + (xy -10.16 13.97) + (xy -10.16 3.81) + (xy 8.89 8.89) + (xy -10.16 13.97) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_tristate_1_1" + (pin input line (at -15.24 8.89 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -1.27 1.27 90) (length 4.9022) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 105.41 124.46) (diameter 0) (color 0 0 0 0) + (uuid 0d350582-a0a9-499e-a716-424dafeb0aa2) + ) + (junction (at 105.41 139.7) (diameter 0) (color 0 0 0 0) + (uuid 0dd2033e-ea87-470e-bf26-d56583cea789) + ) + (junction (at 67.31 58.42) (diameter 0) (color 0 0 0 0) + (uuid 11ed0af2-0703-465d-946f-5e14d01b9acd) + ) + (junction (at 105.41 34.29) (diameter 0) (color 0 0 0 0) + (uuid 13699197-91d2-40b6-8278-5de9264afeb3) + ) + (junction (at 71.12 132.08) (diameter 0) (color 0 0 0 0) + (uuid 144038fb-340a-498a-9a05-197b6ffe9ea3) + ) + (junction (at 111.76 218.44) (diameter 0) (color 0 0 0 0) + (uuid 1eba4974-acd8-49da-9794-75f857cac13e) + ) + (junction (at 67.31 323.85) (diameter 0) (color 0 0 0 0) + (uuid 21f73f3a-d765-4d78-b358-578a409143b4) + ) + (junction (at 71.12 241.3) (diameter 0) (color 0 0 0 0) + (uuid 3883db0b-8f2a-4f17-aa3b-c2b5ddc5e24c) + ) + (junction (at 111.76 325.12) (diameter 0) (color 0 0 0 0) + (uuid 420d570e-76d7-4d3e-a12e-5d6e044109d7) + ) + (junction (at 113.03 107.95) (diameter 0) (color 0 0 0 0) + (uuid 4371d237-fe8b-4f0c-b605-f8b94d8b97ea) + ) + (junction (at 71.12 403.86) (diameter 0) (color 0 0 0 0) + (uuid 50ca756d-eeef-42ec-a440-5ab54ee65d37) + ) + (junction (at 67.31 271.78) (diameter 0) (color 0 0 0 0) + (uuid 55a212b6-85fd-49c4-b3d3-24a0f5ec0ea8) + ) + (junction (at 71.12 349.25) (diameter 0) (color 0 0 0 0) + (uuid 7037fa86-eb7f-4182-b4e3-01d827dd0cc2) + ) + (junction (at 111.76 273.05) (diameter 0) (color 0 0 0 0) + (uuid 825d0d07-3129-4d04-9aae-94a894d0ba65) + ) + (junction (at 105.41 250.19) (diameter 0) (color 0 0 0 0) + (uuid 851e9161-d9f0-483f-b2b5-badfea02a713) + ) + (junction (at 105.41 303.53) (diameter 0) (color 0 0 0 0) + (uuid 866991dd-5512-49f5-b2db-ec2024ef6ebf) + ) + (junction (at 71.12 186.69) (diameter 0) (color 0 0 0 0) + (uuid 899f745d-7c92-44f4-9fe4-954266797f3a) + ) + (junction (at 67.31 379.73) (diameter 0) (color 0 0 0 0) + (uuid 92b4299a-832d-4160-873e-39cda4be3a00) + ) + (junction (at 67.31 435.61) (diameter 0) (color 0 0 0 0) + (uuid a1d615e9-87a9-4e0b-b019-61a4089a7265) + ) + (junction (at 111.76 379.73) (diameter 0) (color 0 0 0 0) + (uuid af9b9961-147b-46a5-87b3-2072fd44dc46) + ) + (junction (at 111.76 162.56) (diameter 0) (color 0 0 0 0) + (uuid bb63810c-e453-4833-a31e-b72b4f9574c6) + ) + (junction (at 111.76 55.88) (diameter 0) (color 0 0 0 0) + (uuid bfb6ae1c-330a-4998-8dab-b7783e598bc5) + ) + (junction (at 105.41 86.36) (diameter 0) (color 0 0 0 0) + (uuid c1e307cf-4ef4-4d38-b980-79ebdf476dc2) + ) + (junction (at 68.58 106.68) (diameter 0) (color 0 0 0 0) + (uuid c55f7395-5f7b-4355-9598-7c25def4718d) + ) + (junction (at 67.31 157.48) (diameter 0) (color 0 0 0 0) + (uuid cdb898a8-0726-4ef0-aa76-131f5d838c90) + ) + (junction (at 105.41 195.58) (diameter 0) (color 0 0 0 0) + (uuid e7540f68-3c0c-48fe-a2ae-433da98337e0) + ) + (junction (at 111.76 431.8) (diameter 0) (color 0 0 0 0) + (uuid e7691c21-7b7c-44d6-8106-c8a12abc733a) + ) + (junction (at 71.12 80.01) (diameter 0) (color 0 0 0 0) + (uuid ec123836-e5fb-40ae-8a91-61dc52eea91b) + ) + (junction (at 67.31 214.63) (diameter 0) (color 0 0 0 0) + (uuid ecbc7880-54eb-4591-9b49-e62e08e4498d) + ) + (junction (at 105.41 358.14) (diameter 0) (color 0 0 0 0) + (uuid efcaea8c-cae6-48f7-83d1-fd8c9a1a6093) + ) + (junction (at 71.12 295.91) (diameter 0) (color 0 0 0 0) + (uuid fcfaa009-d44c-42d0-a687-a3f7d8c1663b) + ) + + (wire (pts (xy 88.9 250.19) (xy 105.41 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0084ec2e-2c83-4030-b5d0-7f147384ca4c) + ) + (wire (pts (xy 111.76 379.73) (xy 111.76 396.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 010a496f-1bcc-4848-80d6-b21bcc1034ef) + ) + (wire (pts (xy 111.76 450.85) (xy 104.14 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06f9fdc5-f3fa-49a8-a61d-fefb097c8576) + ) + (wire (pts (xy 55.88 214.63) (xy 67.31 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 094caf14-d976-4290-badc-2a9a75d0ee95) + ) + (wire (pts (xy 67.31 203.2) (xy 67.31 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 098cf08f-dccd-4ee4-a8f6-2f24ea7b2563) + ) + (wire (pts (xy 67.31 257.81) (xy 67.31 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09b2c246-6c2c-4572-b274-eb62cda2ab16) + ) + (wire (pts (xy 111.76 420.37) (xy 111.76 431.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d5a2cb2-775f-45a0-b937-5032f1055827) + ) + (wire (pts (xy 71.12 403.86) (xy 88.9 403.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d933477-11a9-4751-8bb0-f241130cc85f) + ) + (wire (pts (xy 71.12 132.08) (xy 71.12 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e32085f-281b-42c5-ae5a-11be2a9ab9c4) + ) + (wire (pts (xy 73.66 420.37) (xy 67.31 420.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ec07f84-6f81-4497-af59-887571394f81) + ) + (wire (pts (xy 67.31 233.68) (xy 74.93 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10bbb4f4-5745-4d2d-9f82-e007e8c9f992) + ) + (wire (pts (xy 71.12 295.91) (xy 71.12 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b67aa21-310f-432f-bf3f-dcb28f519057) + ) + (wire (pts (xy 67.31 450.85) (xy 74.93 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f94336a-66ec-49ae-87ae-9319bdfaf355) + ) + (wire (pts (xy 105.41 86.36) (xy 105.41 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 212dbeb5-35c6-42d5-aab1-42a3446a3619) + ) + (wire (pts (xy 39.37 58.42) (xy 67.31 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2508257b-6c26-4745-b613-9f98f06bc91a) + ) + (wire (pts (xy 105.41 21.59) (xy 105.41 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25358904-d5b4-4faf-93f2-0150bb696388) + ) + (wire (pts (xy 105.41 139.7) (xy 105.41 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2538e2dd-c5e3-40b7-985f-4870a7f19872) + ) + (wire (pts (xy 88.9 34.29) (xy 105.41 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a0b52d5-be45-4941-a3dd-b0178f9d522a) + ) + (wire (pts (xy 67.31 179.07) (xy 74.93 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a339bba-82fc-4d3d-b48a-00736d7f24df) + ) + (wire (pts (xy 102.87 257.81) (xy 111.76 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2cd2f7e1-44a3-47b0-b20e-0e1cf13e3bee) + ) + (wire (pts (xy 105.41 195.58) (xy 105.41 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d83552d-f7c1-4870-b873-bcb0cac09b6b) + ) + (wire (pts (xy 71.12 403.86) (xy 71.12 458.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2eb16baa-c4aa-4ec2-9550-b9a844b66dfb) + ) + (wire (pts (xy 102.87 148.59) (xy 111.76 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ee88801-11e0-4b92-9e43-293afc9a2702) + ) + (wire (pts (xy 102.87 420.37) (xy 111.76 420.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30367073-a85b-42af-bb86-ccc4dddc6339) + ) + (wire (pts (xy 64.77 39.37) (xy 71.12 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3156471f-89d2-47a9-96fe-da213372d8bd) + ) + (wire (pts (xy 113.03 124.46) (xy 105.41 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35e294f4-04d3-4b1a-bcef-9a6cf408a34e) + ) + (wire (pts (xy 67.31 72.39) (xy 74.93 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b9af62b-059e-48b0-818b-ebcecd3be581) + ) + (wire (pts (xy 111.76 41.91) (xy 111.76 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d598553-d270-4840-b439-0422bde1ab07) + ) + (wire (pts (xy 71.12 349.25) (xy 71.12 403.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d7de99c-7daa-47e8-8921-b541182a1bba) + ) + (wire (pts (xy 88.9 195.58) (xy 105.41 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44aaa522-c7ee-400c-a690-18d1147aa500) + ) + (wire (pts (xy 105.41 303.53) (xy 105.41 358.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4550805a-89b8-459f-a562-7fa066e70d00) + ) + (wire (pts (xy 67.31 435.61) (xy 67.31 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45e25496-5760-4332-90a6-e7644beca856) + ) + (wire (pts (xy 102.87 365.76) (xy 111.76 365.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ab27c51-73fd-4060-97ca-3af3ffd22e8a) + ) + (wire (pts (xy 71.12 241.3) (xy 88.9 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d8c1227-d082-4fbb-a1d4-673cc4fe0de0) + ) + (wire (pts (xy 111.76 257.81) (xy 111.76 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e95cba1-5f01-4f89-b617-59b86658175a) + ) + (wire (pts (xy 111.76 162.56) (xy 121.92 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f67a60b-25c6-4e66-a048-815bc085f3bd) + ) + (wire (pts (xy 104.14 93.98) (xy 113.03 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 508e3d0b-38a5-464a-bac9-069c0a4065b9) + ) + (wire (pts (xy 102.87 41.91) (xy 111.76 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5252c336-f13c-4fa7-ae39-6db5254cbe74) + ) + (wire (pts (xy 57.15 435.61) (xy 67.31 435.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 539ef225-0971-4501-855c-32a5606e1733) + ) + (wire (pts (xy 111.76 365.76) (xy 111.76 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53e06c91-f26b-4451-8c49-57a735c99f9f) + ) + (wire (pts (xy 73.66 148.59) (xy 67.31 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54fcf6f3-8daf-409d-bee8-868a1c0e8f11) + ) + (wire (pts (xy 36.83 21.59) (xy 90.17 21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 552cd179-9f89-4e2d-b904-8c8814b1f1ef) + ) + (wire (pts (xy 68.58 124.46) (xy 76.2 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5820147c-15d9-49cc-a579-6cba15c03ab6) + ) + (wire (pts (xy 71.12 39.37) (xy 71.12 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b791838-85ab-49ad-a1cb-61182b23c4ef) + ) + (wire (pts (xy 102.87 311.15) (xy 111.76 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5fd344b3-2037-44aa-9656-f2840b030c39) + ) + (wire (pts (xy 67.31 379.73) (xy 67.31 396.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 620f084b-d389-4b14-9fb3-6fdb711a3ef7) + ) + (wire (pts (xy 111.76 55.88) (xy 121.92 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 633555ca-ed80-4a31-a6d3-2225759517e4) + ) + (wire (pts (xy 67.31 365.76) (xy 67.31 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66205b37-4445-4b00-82a2-8601cccf25e8) + ) + (wire (pts (xy 67.31 58.42) (xy 67.31 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66ae9629-eddd-4dd4-8508-f656caa551c1) + ) + (wire (pts (xy 111.76 162.56) (xy 111.76 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 683c9c1b-90d2-4dbc-a361-979afd5ccfab) + ) + (wire (pts (xy 54.61 323.85) (xy 67.31 323.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a7ecdc0-cb01-4b57-b189-88063527eeca) + ) + (wire (pts (xy 111.76 148.59) (xy 111.76 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6db9413d-2b18-43fc-b2b6-c52922d9f98c) + ) + (wire (pts (xy 102.87 203.2) (xy 111.76 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ea8b61d-8168-408e-8c62-572ff03bbac9) + ) + (wire (pts (xy 88.9 295.91) (xy 71.12 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 710782e7-bd95-4fec-9b08-f30a59adfbf3) + ) + (wire (pts (xy 111.76 341.63) (xy 104.14 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7688adc7-5263-479f-9c4a-53ff5c201f43) + ) + (wire (pts (xy 111.76 325.12) (xy 111.76 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78d1c0ca-9b00-4069-b2b1-dc1886141f70) + ) + (wire (pts (xy 111.76 273.05) (xy 123.19 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b8f882a-ee7c-42c0-bf10-5b1554e15d5f) + ) + (wire (pts (xy 88.9 458.47) (xy 71.12 458.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bc820e5-59f1-4572-a311-8c04673a2de8) + ) + (wire (pts (xy 111.76 325.12) (xy 127 325.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dadd754-780a-47d7-9302-c493a07fde62) + ) + (wire (pts (xy 88.9 186.69) (xy 71.12 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e48c29c-784a-42e5-9e46-b3be9bfea0b9) + ) + (wire (pts (xy 111.76 431.8) (xy 111.76 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 821c7bbb-9759-479e-be06-ae7783b7068c) + ) + (wire (pts (xy 105.41 124.46) (xy 105.41 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86e58c19-6cd6-4c0e-9737-c99688f67d28) + ) + (wire (pts (xy 113.03 93.98) (xy 113.03 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ae9a817-62ed-4f44-9043-6842c88fdc2e) + ) + (wire (pts (xy 111.76 431.8) (xy 135.89 431.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c614be4-21e8-4080-87bc-7165bc775f07) + ) + (wire (pts (xy 68.58 106.68) (xy 68.58 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cb9925e-9c58-4d37-ae0e-8e57b3ee559f) + ) + (wire (pts (xy 111.76 55.88) (xy 111.76 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ce337fe-2baa-4bc4-afe8-b9692c1f753c) + ) + (wire (pts (xy 73.66 311.15) (xy 67.31 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f3cedc2-7654-41df-8874-175a329ce8a9) + ) + (wire (pts (xy 67.31 157.48) (xy 67.31 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 911c63a9-4797-457f-8e0d-59e8a9a388d3) + ) + (wire (pts (xy 88.9 412.75) (xy 105.41 412.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91cb1f06-6f97-49e7-8215-37fe6b5a25d8) + ) + (wire (pts (xy 88.9 139.7) (xy 105.41 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91e51140-17a3-442d-bcf5-478418607edc) + ) + (wire (pts (xy 67.31 148.59) (xy 67.31 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91fb99ee-c3ce-48eb-a855-5d4fbd596ed6) + ) + (wire (pts (xy 54.61 157.48) (xy 67.31 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94755906-7c08-4e71-958b-d6fcd34f1d24) + ) + (wire (pts (xy 71.12 186.69) (xy 71.12 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 973bbe24-4d99-49f4-858b-4ccbfc6e1f5c) + ) + (wire (pts (xy 71.12 241.3) (xy 71.12 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3ce18bd-0263-4df2-a915-c69b2ed26ac7) + ) + (wire (pts (xy 73.66 257.81) (xy 67.31 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a555817b-186f-4776-b149-f4b4a6dbb2a0) + ) + (wire (pts (xy 90.17 132.08) (xy 71.12 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9d3e405-f5a1-4683-8e28-485701ca6971) + ) + (wire (pts (xy 67.31 271.78) (xy 67.31 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac5b1df5-8037-4f2a-bb7d-0c14dd1852b8) + ) + (wire (pts (xy 111.76 233.68) (xy 104.14 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae213519-4f0f-4395-8102-fe38de1de1a4) + ) + (wire (pts (xy 90.17 86.36) (xy 105.41 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aebc87a8-e0da-48e7-b20a-c0ec69094f1b) + ) + (wire (pts (xy 88.9 303.53) (xy 105.41 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b31a622f-a771-4bdd-81c2-37bc9cd841d6) + ) + (wire (pts (xy 88.9 80.01) (xy 71.12 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3412a45-88fd-40dc-bea2-c96b0f49b4e8) + ) + (wire (pts (xy 111.76 311.15) (xy 111.76 325.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b36bdcae-c62a-47e3-ab9a-0a33c4da1295) + ) + (wire (pts (xy 67.31 396.24) (xy 74.93 396.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4112d7c-c790-4e28-8d8f-225a02e6bfa8) + ) + (wire (pts (xy 105.41 250.19) (xy 105.41 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b492d93c-5cb9-4d5f-8a71-a1298484d294) + ) + (wire (pts (xy 105.41 358.14) (xy 105.41 412.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba81dcd1-5c54-42b7-a996-653ddc096495) + ) + (wire (pts (xy 88.9 349.25) (xy 71.12 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdd68e10-6549-4f96-b968-5fc122e6b205) + ) + (wire (pts (xy 88.9 140.97) (xy 88.9 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bde807c8-e18e-4981-97ed-79d0f490c465) + ) + (wire (pts (xy 67.31 323.85) (xy 67.31 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0b12f28-4f9e-482e-bb35-d1d6e98ee5ef) + ) + (wire (pts (xy 113.03 107.95) (xy 113.03 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0ddef47-8794-4be1-9a2b-577854a73037) + ) + (wire (pts (xy 73.66 203.2) (xy 67.31 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c193ae9c-d9dc-46bf-bf68-99f168818b08) + ) + (wire (pts (xy 53.34 106.68) (xy 68.58 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3572ada-427a-4206-a02d-29f9cdaf0fb5) + ) + (wire (pts (xy 55.88 375.92) (xy 55.88 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c653d2e3-a19e-4ad2-bbdf-3b3ce02c9aec) + ) + (wire (pts (xy 71.12 80.01) (xy 71.12 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7de0eff-efc0-4ec4-9fc0-d3aa9f0d7130) + ) + (wire (pts (xy 111.76 218.44) (xy 119.38 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c87ff8b0-e581-49b7-92d4-192a7a5df8af) + ) + (wire (pts (xy 88.9 358.14) (xy 105.41 358.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca88dc07-e454-47c3-aee9-7e0b1d6aae56) + ) + (wire (pts (xy 105.41 34.29) (xy 105.41 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc2ae0db-d323-42e3-a121-d5979749f867) + ) + (wire (pts (xy 67.31 41.91) (xy 67.31 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdd72da9-aaaf-4d3f-81f8-25de917187f5) + ) + (wire (pts (xy 67.31 420.37) (xy 67.31 435.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce2d860d-393d-4775-98cc-7ee45bb3a95b) + ) + (wire (pts (xy 111.76 288.29) (xy 104.14 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ceec1ef3-52a1-4d6d-be0c-04192b9ec2a0) + ) + (wire (pts (xy 55.88 379.73) (xy 67.31 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d02800a2-612e-4b25-8739-afcdf89eb7ef) + ) + (wire (pts (xy 33.02 39.37) (xy 35.56 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d288e927-f0ae-4d64-a534-4f4e57eece6d) + ) + (wire (pts (xy 111.76 72.39) (xy 104.14 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5683b00-928f-43ae-aac5-a1d239ae1725) + ) + (wire (pts (xy 73.66 41.91) (xy 67.31 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da2f97ad-b5fd-4dc6-a271-355b7cab3828) + ) + (wire (pts (xy 74.93 93.98) (xy 68.58 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de607fdf-d5d8-4568-b766-f518b6b8737c) + ) + (wire (pts (xy 67.31 341.63) (xy 74.93 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e30f499e-a000-4aea-b4be-1fd9d190d262) + ) + (wire (pts (xy 68.58 93.98) (xy 68.58 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e523cd43-4d49-4c2d-b3fa-982d0a6fbf36) + ) + (wire (pts (xy 111.76 396.24) (xy 104.14 396.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e810fa60-521e-4ede-8eb9-d2e7e1d65c57) + ) + (wire (pts (xy 67.31 214.63) (xy 67.31 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8b84a3f-094f-4481-9ec2-e31b98888227) + ) + (wire (pts (xy 55.88 271.78) (xy 67.31 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eaa50190-667d-4584-9601-4b07f2501fc3) + ) + (wire (pts (xy 67.31 311.15) (xy 67.31 323.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec853db8-c843-4500-9d33-fb9b3791322c) + ) + (wire (pts (xy 111.76 203.2) (xy 111.76 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee10b6b6-e6cd-41fb-a4d3-d068e301a4fd) + ) + (wire (pts (xy 111.76 273.05) (xy 111.76 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef352ff5-d7b1-4ef0-8f2a-b74233412a97) + ) + (wire (pts (xy 111.76 179.07) (xy 104.14 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f44791b7-93e7-4072-a5d7-bf4059ca5f2a) + ) + (wire (pts (xy 67.31 288.29) (xy 74.93 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f45bfd11-1c8b-4e4f-9079-0d1d9198ef2d) + ) + (wire (pts (xy 113.03 107.95) (xy 120.65 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5461640-6fcf-4bc7-b351-66cea89d94bd) + ) + (wire (pts (xy 111.76 379.73) (xy 129.54 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5a1e4ae-c7bf-4307-a7ea-2971118f810d) + ) + (wire (pts (xy 111.76 218.44) (xy 111.76 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc44edfc-52fe-43f3-b64a-b00638e1133d) + ) + (wire (pts (xy 73.66 365.76) (xy 67.31 365.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid feb5bde0-2183-4eec-9c7a-c6cc0b204a64) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 142.24 431.8 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 00d35cbd-a6f0-48cb-8eeb-577a50db8c54) + (property "Reference" "U1" (id 0) (at 146.05 431.165 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 146.05 433.705 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 142.24 431.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 431.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ed94b884-e773-4b36-b4b3-bf1b8655f177)) + (pin "2" (uuid c977f5df-6889-402f-90d1-fffdeee04da0)) + (pin "3" (uuid cbfd8449-4858-42cf-8f89-d80c928b39a1)) + (pin "4" (uuid 0bd384ad-0bbd-493c-9bcd-7eb1b8756cb0)) + (pin "5" (uuid 48a8c1d2-4866-4af7-8dbd-9254d7a4ac6f)) + (pin "6" (uuid 7e372ec3-442c-4993-960c-45eb54e25d74)) + (pin "7" (uuid bf7803c7-c251-476c-a057-4072a372e2b3)) + (pin "8" (uuid c58eff3d-e821-4d21-b5f1-c1ba4bcdb242)) + (pin "9" (uuid 276d09d2-0a6a-4095-9325-8f7ef061e31a)) + (pin "10" (uuid 0af5f810-78b7-4f5e-9651-180388bf500f)) + (pin "11" (uuid 99160f90-f6a9-48c0-8a16-7e2d0b8ed347)) + (pin "12" (uuid fe6ff2f7-0cd4-44ee-bd03-7eaa3fbbf0e9)) + (pin "13" (uuid af7d018a-7005-42e3-9a29-8dc9da48885b)) + (pin "14" (uuid 8d3c1383-df13-4d57-9d8f-8e706a57012e)) + (pin "15" (uuid 8bc75466-6eea-4947-aea0-16377a19a838)) + (pin "16" (uuid f3008ae2-7638-4042-b8ce-28e6e29cf15a)) + (pin "17" (uuid be7207a9-b367-45db-b2c7-1a1d532cde45)) + (pin "18" (uuid 141ac76c-f99e-4196-a2c7-ed2d9b224122)) + (pin "19" (uuid f8e2140c-799e-4bd9-af89-cc45f30b8504)) + (pin "20" (uuid 3225100a-6ae1-41d9-836c-b1ad68dfd100)) + (pin "21" (uuid a32d57a3-44c2-484e-866a-b53b3b4b38d1)) + (pin "22" (uuid 9ed69286-f29a-4e8e-84c8-1ca920e5f50e)) + (pin "23" (uuid ec499d21-c64a-48af-a464-23edf1eb23f4)) + (pin "24" (uuid 458792df-200e-4426-b17b-3aabad3759e2)) + (pin "25" (uuid c3a247f8-4cff-47de-a0fc-59ca40ed3ad8)) + (pin "26" (uuid d67a6f31-f100-4356-8060-4723a0d61746)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 87.63 411.48 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 01f9c39e-43fd-4430-b9b3-433cca613b50) + (property "Reference" "U9" (id 0) (at 88.265 427.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 88.265 431.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 94ec8802-5aef-470b-924f-a4dead665e9d)) + (pin "2" (uuid 96abfa97-1fe4-400b-aec3-c62cdaea8bad)) + (pin "3" (uuid 14372439-a10b-47d8-b320-3b25682d7a9d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 49.53 214.63 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0ae6354b-42ef-464d-bba3-1577cffa93d9) + (property "Reference" "U1" (id 0) (at 50.165 209.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 50.165 212.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 49.53 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 49.53 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7d04409-7517-4aa5-896c-c2b93232b10f)) + (pin "2" (uuid d792f662-fc6b-4a4e-b585-5cb4387c542d)) + (pin "3" (uuid 83f7c968-5062-4a34-98f2-b8f11c6ca42f)) + (pin "4" (uuid 2d07b659-f533-4864-b9ad-1691c8dec23d)) + (pin "5" (uuid 31c7e29e-db41-44c9-8d75-d92d493d87b2)) + (pin "6" (uuid 22f40aa1-4231-4556-8a29-65e6e8d86b37)) + (pin "7" (uuid 524911bc-0663-4e86-9a19-551b62fff8ff)) + (pin "8" (uuid 624a1b4d-1d87-4983-9f1d-9ec17f0314d3)) + (pin "9" (uuid 1e1437bf-e1b6-48c2-b6c3-bf3a073f16b5)) + (pin "10" (uuid e2457390-cc90-494d-b04e-585742197278)) + (pin "11" (uuid 34205b47-e15d-4358-ac5a-d697f5fe9476)) + (pin "12" (uuid eeddf739-d3c6-44fd-96a6-8097b8165386)) + (pin "13" (uuid da5b68f0-4acc-467c-91ba-b5247c93651d)) + (pin "14" (uuid f821b76a-9d36-42bf-9b7b-b5031b25b727)) + (pin "15" (uuid 53be71ed-66d6-4089-b66f-5afc3ce2c900)) + (pin "16" (uuid a320f625-13d6-4c69-a386-4431b5885c83)) + (pin "17" (uuid 2321f92c-6b59-4af5-8ec6-e4cfb6bbe214)) + (pin "18" (uuid 98edff39-87c1-49ae-b21b-ce7e694b8a59)) + (pin "19" (uuid e05850c4-ebe6-49e0-9c55-e0a10f798930)) + (pin "20" (uuid ed75f3f8-054b-4f21-8933-45fac781a9a5)) + (pin "21" (uuid 17f0314a-f2e6-44c7-9f2e-426740a3e051)) + (pin "22" (uuid 2021f401-782a-4203-904a-2fbe7558af98)) + (pin "23" (uuid 135cb41a-8d05-4ac3-9590-9bd756d1e551)) + (pin "24" (uuid 523f3d22-a2ba-45c3-963b-99f98df5f78e)) + (pin "25" (uuid 59041893-9afa-473a-9049-957825b9e1d6)) + (pin "26" (uuid f997a5e7-2556-43f8-afde-230376c84a18)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 88.9 85.09 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2bec8357-fac5-448a-a8c6-77cc87d53fe3) + (property "Reference" "U10" (id 0) (at 89.535 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 89.535 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 91.44 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 91.44 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c446921c-0f35-4ae5-a897-f36b734ec15a)) + (pin "2" (uuid 7decdba1-1941-42dd-8d2a-6329656ec399)) + (pin "3" (uuid dd78eb09-6034-4b9b-a975-d5556de69783)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 106.68 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a01e954-7683-4612-bb8c-1275c35f4d6e) + (property "Reference" "U1" (id 0) (at 47.625 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 104.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6bbe5364-dff2-4a9d-b22a-48a5f84a8c58)) + (pin "2" (uuid b39365d6-2a91-4237-94be-0f4ee4449f5d)) + (pin "3" (uuid 1c0c4716-c0be-4aea-9ea1-8f9d5af5d9d0)) + (pin "4" (uuid ca8d1a1c-1cec-47fd-b34f-5fe24a94a2dd)) + (pin "5" (uuid 606ca2ef-bffd-4e21-b439-bd039715035e)) + (pin "6" (uuid 544f4e10-5749-4e12-9af1-8191dc64ef64)) + (pin "7" (uuid 59439719-96cb-4c30-bdbe-813096f87c46)) + (pin "8" (uuid a48fa35e-8d63-4c86-bba0-14ce182aa438)) + (pin "9" (uuid 13779684-b1d7-4bf8-a0a8-148de1de1c0c)) + (pin "10" (uuid 65691ac1-175b-4334-9948-8c08efdaa605)) + (pin "11" (uuid 86ed5a9d-1eea-43af-9888-12d9aa90154e)) + (pin "12" (uuid 8bf18132-a1d8-4a72-aa37-4643044e6268)) + (pin "13" (uuid 0f9b12dd-8edd-48c2-a66b-acc89172f280)) + (pin "14" (uuid 6d26d632-273e-4861-b0ca-0abb87a29c26)) + (pin "15" (uuid 384827a5-c928-4763-8071-430767141fd3)) + (pin "16" (uuid b286ac91-e1a7-4650-9576-25c194757b9a)) + (pin "17" (uuid 8e370509-abe8-41bc-8644-fa07a50f6ceb)) + (pin "18" (uuid b78059b5-e893-40ce-90d7-91bc7b0aa627)) + (pin "19" (uuid f5a1c5a8-4494-42bf-98c7-1d9f160f1911)) + (pin "20" (uuid 9deb9b67-c072-4402-9d29-a9d1382712fe)) + (pin "21" (uuid fef4669a-eb9f-4ba2-bb12-536334110e49)) + (pin "22" (uuid 8389d21c-ebc8-4628-8a3d-459d02a3c6b7)) + (pin "23" (uuid afcaa4f7-903b-4fee-a4fb-f5224befbce8)) + (pin "24" (uuid a13552d3-30f7-45dc-9c1b-e1eaacd27b28)) + (pin "25" (uuid 14da6b48-6a70-4e46-a3da-449dc5833603)) + (pin "26" (uuid 4a7749dd-1a70-401f-922c-9fc4f7432a7b)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 87.63 356.87 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c01b51b-badc-4a7c-bb24-82c132ba090f) + (property "Reference" "U8" (id 0) (at 88.265 373.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 88.265 377.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 365.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 365.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9e7e0f61-76c0-45c4-9826-0bab3dbf67e6)) + (pin "2" (uuid 9bcaec83-2b4c-480c-abf3-6a63bb57747c)) + (pin "3" (uuid da95a665-4606-481a-923b-79d1b860af21)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 87.63 248.92 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6dba4e59-1406-41e7-9c3f-17d963e79d6e) + (property "Reference" "U6" (id 0) (at 88.265 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 88.265 269.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f492f2ec-c479-4a1a-b7aa-bcad794aeb0e)) + (pin "2" (uuid 77fff660-906a-4181-9765-1165c8db62d3)) + (pin "3" (uuid 1b7b340c-db98-4fc3-95e5-c86bcc8abb25)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 90.17 459.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7353bcbf-9c95-4857-a9af-daf4670635da) + (property "Reference" "U17" (id 0) (at 89.535 440.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 89.535 444.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 450.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 450.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b23f2819-0bc0-481d-b7bb-69cece290c9f)) + (pin "2" (uuid 66e306b7-9650-47c8-bc7d-98f8d5285076)) + (pin "3" (uuid 26f1f7de-0d10-4d70-a2d6-8942517431bc)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 129.54 273.05 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7828feac-b7a4-4438-8070-19169bf279af) + (property "Reference" "U1" (id 0) (at 133.35 272.415 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 133.35 274.955 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 129.54 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 129.54 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 103ccb1c-185d-4a20-9f74-95a3e05a490e)) + (pin "2" (uuid 339266af-058a-4b84-87f1-662edca2c306)) + (pin "3" (uuid 9420f290-1b59-4625-83ca-6fe65f6ab4e3)) + (pin "4" (uuid 7d470ab8-3450-45db-89da-504c815100ea)) + (pin "5" (uuid e0bcceb2-0db8-42e6-a842-3489c52cc72c)) + (pin "6" (uuid b4977368-bca2-4b8b-b7e1-0ca654efa59c)) + (pin "7" (uuid beb806b9-6d68-4108-9101-32c6216cbe1e)) + (pin "8" (uuid 2def9fb7-b4f9-4612-9952-7c3d8556424e)) + (pin "9" (uuid e2ce9380-ee2f-47b9-b962-43bff3ff5ca3)) + (pin "10" (uuid d8eb1ad3-fe01-4af3-9626-168b4688a1f0)) + (pin "11" (uuid 92fcba02-39e5-462b-b752-9dd71cbb4fc7)) + (pin "12" (uuid ee75c2b3-a30b-44d7-8a5c-3e9a1624c6bc)) + (pin "13" (uuid b0ede820-97db-4659-bf88-d1849f5ac35f)) + (pin "14" (uuid fc13942b-9b25-402d-b7e5-5ab4e6e8cc94)) + (pin "15" (uuid b1441b4e-95c0-4a9c-a3ab-49dfbb4f8973)) + (pin "16" (uuid d5a6e14a-1d53-476b-98b6-a2bbe6467ada)) + (pin "17" (uuid a02b19b7-ccb6-443d-b2e6-c868e258a1f9)) + (pin "18" (uuid cbe63b29-8d69-42ed-a202-64ac32a25dd3)) + (pin "19" (uuid ef359fd3-c247-4258-b6a2-2cd854ea8504)) + (pin "20" (uuid 9a7bc975-d104-46fe-95a6-c241657fddce)) + (pin "21" (uuid 51de65b5-b570-4c15-83dd-44b89403873a)) + (pin "22" (uuid d75e6db8-89a4-42b3-8b96-b4687542b41e)) + (pin "23" (uuid eddad66b-db8a-41ec-8f84-2d5af2bb250f)) + (pin "24" (uuid 44b8b795-5062-49ea-abec-9e2ee1ed9804)) + (pin "25" (uuid 677e0d5d-8b4b-466a-a3fd-e77adf0450be)) + (pin "26" (uuid a81aaa7f-f321-40f1-84c0-4a8ac90cee90)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 30.48 21.59 0) (unit 19) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 79a3e14a-443f-4259-95b8-73921b906124) + (property "Reference" "U1" (id 0) (at 31.115 16.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 31.115 19.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 30.48 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 30.48 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 561b8e79-5042-47b2-b9fb-b619d3bce36a)) + (pin "2" (uuid 297d8b0f-1010-480b-9a3c-0394f730b3fa)) + (pin "3" (uuid 6af463b8-5c64-42aa-b3ab-ca5b6868846b)) + (pin "4" (uuid 5670a383-f334-4db8-836a-0084352f72fa)) + (pin "5" (uuid 0dce05f0-02df-4047-b21d-d8ad151a2e00)) + (pin "6" (uuid 2d373e95-602d-4683-832e-7aea8ff3d468)) + (pin "7" (uuid 1e4a89d8-0bdc-45d9-87e4-93b156b979ca)) + (pin "8" (uuid 54b4a6dd-0f51-444e-af55-5f137a474b0e)) + (pin "9" (uuid 0225b51b-92ff-458d-934c-0efebff1b270)) + (pin "10" (uuid fa1916f0-4afa-4361-ac3f-301051fffa2e)) + (pin "11" (uuid c4872853-1e52-48c6-baf9-0240fb7e325e)) + (pin "12" (uuid 24e10ab4-eef0-425c-9387-868985e8e66c)) + (pin "13" (uuid 1dc49d46-b266-47cc-b62a-8bcc612eaad9)) + (pin "14" (uuid 72f5618b-b768-47ba-a3dc-bc77b074b134)) + (pin "15" (uuid 218dd1a7-9295-42ee-86cf-5f6caaabfc43)) + (pin "16" (uuid 7c9a1725-b0a8-49a9-82a2-b52c43060da0)) + (pin "17" (uuid ec4bf236-4190-4a80-b09a-b917da3a21e5)) + (pin "18" (uuid 24c5996b-2bad-406b-8e8e-d9663219ed9e)) + (pin "19" (uuid aecbabf4-d74e-47fd-973a-70be477e0835)) + (pin "20" (uuid cb3ebb46-5566-49c4-b9ed-f738e3a1e27d)) + (pin "21" (uuid 7df8e09e-f5c7-4551-aa82-7035106e6bea)) + (pin "22" (uuid 0a65c93c-be70-4241-b3d7-51e80f430f46)) + (pin "23" (uuid 55048319-a7d3-4f45-9dc4-e733d20569e2)) + (pin "24" (uuid f0a9a302-f5dd-4b9d-b4c4-e4d2655badd0)) + (pin "25" (uuid 3e6c0492-fc33-4f43-a491-c1b809277734)) + (pin "26" (uuid 42fe1f20-1b37-4988-ba76-b53596ac819a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 128.27 162.56 180) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7d370e35-3551-4ce3-9ca4-57410dfdb0f2) + (property "Reference" "U1" (id 0) (at 132.08 161.925 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 132.08 164.465 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 128.27 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 805f662f-cdbf-40c8-a4ed-2f7f631518b6)) + (pin "2" (uuid 67f573af-ab3c-46f6-aa7c-149818bc96ba)) + (pin "3" (uuid 14a74168-5347-4b58-9de9-7b1aa1b8a23d)) + (pin "4" (uuid 1de3d766-1753-4aa9-97c7-4a513ba580a2)) + (pin "5" (uuid 28c096eb-3015-40bd-95f8-183787d42094)) + (pin "6" (uuid a7dec33b-3503-437f-94df-23dc358caf36)) + (pin "7" (uuid 0614ec9c-a78e-4ba0-b5be-9a6da4e96c11)) + (pin "8" (uuid 4d0bd89a-3a50-44e3-9033-0aa1cc10213c)) + (pin "9" (uuid d4ec679f-9c5a-4911-b6ef-ce29377736a1)) + (pin "10" (uuid e3fa3384-a6f6-4bba-a3da-d966fa67a1ac)) + (pin "11" (uuid 5103d2bc-c3d9-4b70-88fd-43cad1cefffe)) + (pin "12" (uuid 1fc79761-067c-45d1-94e0-5fc76a4da710)) + (pin "13" (uuid 913da999-ff5a-467f-ba5b-260b602a44e4)) + (pin "14" (uuid 4da316cb-48f3-408a-a5ac-8f46dfaf296c)) + (pin "15" (uuid 14da20f1-c93b-49b6-9042-f44402974214)) + (pin "16" (uuid cfe9f9a1-08f6-491d-ae62-eb69ccd56204)) + (pin "17" (uuid 324e7a72-4992-445a-abf3-f65a8ef3617d)) + (pin "18" (uuid 1a80b8c6-849a-47f5-ba4d-1f01e493e018)) + (pin "19" (uuid a0827f6b-15a2-4c68-9952-6fcc6c829e08)) + (pin "20" (uuid 73d7a4be-8c66-4a01-b540-e53eee6c8235)) + (pin "21" (uuid 74516e00-7313-426c-9994-0da154558486)) + (pin "22" (uuid 39f37028-6877-4768-bbd8-86d8dcf6745d)) + (pin "23" (uuid 26357b2c-b3fc-43de-b3bb-330807961f1a)) + (pin "24" (uuid c7422b5d-bab6-4d02-b58d-765769983cf5)) + (pin "25" (uuid 774e5994-984d-4dba-b4af-a8db0a6938e1)) + (pin "26" (uuid baee514b-8565-454d-afb4-8fdea1ad29aa)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 90.17 405.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7e420174-6364-4c0e-bfa9-ff526941df4a) + (property "Reference" "U16" (id 0) (at 89.535 386.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 89.535 389.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 396.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 396.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 82947e80-9b4d-41c5-a998-19d77e007520)) + (pin "2" (uuid ceb268db-b661-4fc1-b1ba-677cdfe10c93)) + (pin "3" (uuid 94b88b9c-8708-472c-9828-8d3d888db78b)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 90.17 350.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 926a00e6-0fc3-471e-a94a-2573c44c68eb) + (property "Reference" "U15" (id 0) (at 89.535 331.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 89.535 335.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87515ee6-78eb-4195-aa5f-c7d6148e4e3f)) + (pin "2" (uuid c9079f31-c743-4411-8117-aaed1e487016)) + (pin "3" (uuid d7412774-c20b-4dd4-9963-de261946e66d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 48.26 323.85 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 94a1bc44-118d-4613-9df8-11c0b1b4e226) + (property "Reference" "U1" (id 0) (at 48.895 318.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 48.895 321.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 48.26 323.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 48.26 323.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb7f79ea-b746-4d82-8425-7d4be1170593)) + (pin "2" (uuid c0e1f62a-085b-4cdd-a8fe-63181fc6acc1)) + (pin "3" (uuid 986a95d5-bae0-4741-98a3-df18bfa58be0)) + (pin "4" (uuid 2dda67b1-fb0a-44f4-9259-266468fb533a)) + (pin "5" (uuid 903c325f-500a-4f4a-b5c5-5689161c5ffa)) + (pin "6" (uuid acbac08d-8dfe-4bba-b463-f3f561dbd39f)) + (pin "7" (uuid 3c461431-e85b-4bf0-9825-62a871820cb5)) + (pin "8" (uuid cede8f76-014f-4755-a271-f771a59fb024)) + (pin "9" (uuid feabc774-0902-4ede-9796-5f758e55dc57)) + (pin "10" (uuid 06250a9e-e587-4475-9a74-133983ab790b)) + (pin "11" (uuid 52fdbea1-e5ee-465d-9725-ef73deb056a5)) + (pin "12" (uuid 7d80ffe8-cbdd-4d54-8809-1147b31cf49c)) + (pin "13" (uuid 423f1b74-ac79-420e-b7ca-67ccda4dec08)) + (pin "14" (uuid 5f3ef99f-97b7-480e-a309-0c0a9b96251e)) + (pin "15" (uuid 71338a2d-a91b-4b84-bebb-d1af543e6c79)) + (pin "16" (uuid 5eac3df1-3e3f-409d-8412-bc2f2eba94d1)) + (pin "17" (uuid 84f299ec-0c7f-44e2-aeed-0791e90e0c9b)) + (pin "18" (uuid e68a6047-ae1e-4476-98b8-fc9ce92aceca)) + (pin "19" (uuid 55dfec57-2867-4ce7-998f-d073ed978611)) + (pin "20" (uuid e8090d48-a2d9-40ab-b638-2e1006e8b691)) + (pin "21" (uuid 94d3058b-eed7-4333-b18d-c1d968d3040a)) + (pin "22" (uuid 44559b52-0926-4efa-849e-ee62cd704aa1)) + (pin "23" (uuid 473f3abd-fef8-48d4-9066-8ccbcf0e583b)) + (pin "24" (uuid 20d8b37e-b4dd-4060-bc50-9b71f4714692)) + (pin "25" (uuid 9c39531b-fc16-414c-9453-31850e5081bb)) + (pin "26" (uuid 2868ea0e-6d6a-499e-b2ae-04c540ce511c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 97.79 21.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9b67a56d-a99f-49b6-a01e-dcb775def150) + (property "Reference" "U19" (id 0) (at 97.79 15.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 97.79 19.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 99.06 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 99.06 22.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e2b15496-69a3-4585-afa2-80caac14f2bf)) + (pin "2" (uuid 1bec567f-a72b-4962-a6a5-221bdac77763)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 87.63 302.26 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9beadb08-ac3e-4bd7-b26f-b810409b05b4) + (property "Reference" "U7" (id 0) (at 88.265 318.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 88.265 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ff9af9f8-6b15-4c30-89ee-2127e39a8de6)) + (pin "2" (uuid 47298f18-aaea-4049-9aa1-aef02618d60b)) + (pin "3" (uuid f41f4935-1db1-495c-9f96-3e8ddb0700f5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 50.8 435.61 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9db7ecf6-9a6a-42e4-b4f1-b94aa8ce8418) + (property "Reference" "U1" (id 0) (at 51.435 430.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 51.435 433.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 50.8 435.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 50.8 435.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c58f0506-a55f-4fe6-9896-ff80711d2fc5)) + (pin "2" (uuid eaba16d9-75cb-426f-abaa-07b61e79d8c1)) + (pin "3" (uuid b20d21e4-370a-4e2a-bc7d-810873801813)) + (pin "4" (uuid edd0ba3c-e347-448f-b131-9687e74a3451)) + (pin "5" (uuid 20aedb72-dd76-48a9-b035-936abc6099f8)) + (pin "6" (uuid 25ecf574-952f-42a1-b3e8-32a8ba420f0b)) + (pin "7" (uuid 60086167-a2b4-4945-a3fe-ac89521808c4)) + (pin "8" (uuid f37cd20e-a397-41b8-ae50-5c5033a5ad89)) + (pin "9" (uuid e398a359-a9a4-4395-b2bd-4dc77b159109)) + (pin "10" (uuid a8aefaca-4bfd-4fd4-9a14-fb56f18f86da)) + (pin "11" (uuid 7faba0cf-4f66-49a5-baa7-c1c760e9a008)) + (pin "12" (uuid 01891d9d-7a59-43c8-a03b-2ec6a4d4b8c5)) + (pin "13" (uuid 1b978fea-a1f7-4ab2-af22-ed437764dd7d)) + (pin "14" (uuid feedc24f-5cf2-4ed7-aeca-cf00d99c713b)) + (pin "15" (uuid 8ab99571-88b1-4fa3-bafa-d0f5aab48272)) + (pin "16" (uuid 2f126c20-4e9b-4313-86a7-59b574c4b064)) + (pin "17" (uuid 289e398e-f54c-4e06-868a-c490113b0eb6)) + (pin "18" (uuid c3eccc9d-f57a-46cd-890f-78265bd0c4cc)) + (pin "19" (uuid 3c943793-836e-4b7a-b4e9-690b225b0bcc)) + (pin "20" (uuid 824613f0-dc34-44ca-8a44-de13a2dc2da3)) + (pin "21" (uuid a38e284b-6162-424e-90f5-0e21ef8784b4)) + (pin "22" (uuid ccd018ff-5a1f-4f56-9e5b-bb74b9774e69)) + (pin "23" (uuid a601f7b5-2d65-487a-a2dd-1f4735eab78a)) + (pin "24" (uuid 67f86620-b88f-4495-8002-cfbbb67dfcaf)) + (pin "25" (uuid d7a73af7-e94c-42e0-a385-446e57151811)) + (pin "26" (uuid 1473172a-e308-4b18-b799-9cb8be825397)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 48.26 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9f2f591c-25e6-467f-bfd8-7a533561ae93) + (property "Reference" "U2" (id 0) (at 50.165 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 50.165 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 48.26 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 48.26 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ee40494-b4dc-40b7-a41d-d046abd40b47)) + (pin "2" (uuid 1211cec8-0d97-4083-946a-733fa8a44e72)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 87.63 139.7 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7ea859a-83f7-4e6d-8749-5cea9106c5ff) + (property "Reference" "U4" (id 0) (at 88.265 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 88.265 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c3ce98c3-e205-48ba-81a3-dbfeaa0c63b6)) + (pin "2" (uuid fa93b3dd-36a5-435d-a7e4-5c122c1fa7cf)) + (pin "3" (uuid b4bffe8b-8c25-45f8-9821-4185bcde577c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 49.53 271.78 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a9612eac-cffd-4e7e-a24c-7e0ba9676dad) + (property "Reference" "U1" (id 0) (at 50.165 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 50.165 269.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 49.53 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 49.53 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 330c171c-bbfa-4717-8c90-6e24486c6545)) + (pin "2" (uuid 4bfe7074-1b47-40b0-9ae2-00b0933ad38f)) + (pin "3" (uuid 870ca9b3-4003-4313-908d-5448f76ba536)) + (pin "4" (uuid 1c1908cd-67e8-43cf-9142-a0893efdd348)) + (pin "5" (uuid 121d8339-619d-4e99-9542-dd7e6369a142)) + (pin "6" (uuid 8dd27632-c94a-4519-9a98-125b1f3b888e)) + (pin "7" (uuid 0b56c6b3-b40f-4d19-a178-50fede183ea1)) + (pin "8" (uuid ce3a6679-b8fe-4534-8b81-02b312b3fe34)) + (pin "9" (uuid 2995d2be-d25b-4789-947e-3adc84451f2c)) + (pin "10" (uuid b7316d8b-967d-4b0c-a519-35fa69890e88)) + (pin "11" (uuid 799338c5-bdff-45f1-93d1-f2afd8fd328d)) + (pin "12" (uuid 4fbe2779-6b37-4880-a0dd-5bc40417c842)) + (pin "13" (uuid 6e5e3bab-ac5b-4682-9fa7-d65424a369c0)) + (pin "14" (uuid 09b194ab-763c-426c-a80d-677399e210fa)) + (pin "15" (uuid ac596979-963f-43b0-ab45-1151cb2a6d98)) + (pin "16" (uuid 65d068f0-bf56-45bb-b616-0ab798fdbb98)) + (pin "17" (uuid 86ab8643-4c91-41d8-bad5-5861946ae7e6)) + (pin "18" (uuid 5fdc1b13-44c2-4898-8ca6-6843d8b48544)) + (pin "19" (uuid 8672aa2b-d59f-456c-8baa-fa8bda6580ac)) + (pin "20" (uuid ca81a563-1c29-479c-9788-b0bfc1629a15)) + (pin "21" (uuid 88718bdd-4eba-4dcc-959d-112f9136d687)) + (pin "22" (uuid 22bfea65-0d2f-48e0-938b-2ba7cb353c6f)) + (pin "23" (uuid f3ff776f-9341-416d-882e-dae65cfeed1d)) + (pin "24" (uuid b0d5abf8-f29a-4755-a378-54001b69d5c8)) + (pin "25" (uuid e31e39fc-8e9f-4c12-b20c-e6900004c8b5)) + (pin "26" (uuid 0e553bc6-84fd-45ed-b8c7-dfaaf5669d5b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 133.35 325.12 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aacfbfa4-67db-4ccd-a338-4825f60ff486) + (property "Reference" "U1" (id 0) (at 137.16 324.485 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 137.16 327.025 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 133.35 325.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 325.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bcbdc85d-6560-46ec-9626-5ec3a9c398ce)) + (pin "2" (uuid 5a2840e4-760c-4a4b-9722-65cd66b0ab0b)) + (pin "3" (uuid d9d93dfa-834d-40b9-885c-b92eb720f2d3)) + (pin "4" (uuid e55ea052-68ce-4195-958a-3c164c527219)) + (pin "5" (uuid 23a623a6-9b7f-4a21-b29c-126663f6027a)) + (pin "6" (uuid 3b2bedae-fdcd-4ade-a2e0-8486a9814363)) + (pin "7" (uuid c3753ef4-c5a2-4d1e-9f95-cb5d0a926291)) + (pin "8" (uuid 5da161d4-6baf-4ed7-9437-6a9ac1cdedf3)) + (pin "9" (uuid b5762ecc-fb22-4299-8cd1-6e18d015acc9)) + (pin "10" (uuid b9ee7e34-1a55-497d-b610-f7440f5388bd)) + (pin "11" (uuid 9aa17e4c-99e7-4ea4-b7e5-c33edce68f15)) + (pin "12" (uuid 56dc84b3-a3cb-4c34-8dfa-30441fb4cdea)) + (pin "13" (uuid e81b8674-012a-4075-bbf4-687bc8be9a83)) + (pin "14" (uuid 6ffb0586-141e-4194-be9b-6e04db141a36)) + (pin "15" (uuid 7c7e3f98-e872-4b0f-91ae-219190f265c5)) + (pin "16" (uuid 019afc29-5fa4-4009-8758-3f62418387ca)) + (pin "17" (uuid 2788c4d8-a207-48c3-834a-81f917f1f710)) + (pin "18" (uuid cc053193-5767-4578-b7cd-2b3e32331506)) + (pin "19" (uuid 888481dd-336c-4ac1-91c8-83207101e6ee)) + (pin "20" (uuid 533f896b-0ee2-4391-bc0f-9a1105014994)) + (pin "21" (uuid 6ff1e5ae-c285-4212-bc96-368954a0dc19)) + (pin "22" (uuid acbc3d43-94b3-4f34-aecc-4a30de8b742c)) + (pin "23" (uuid e406a976-09a1-46d4-aa6a-91e6fb6175ea)) + (pin "24" (uuid 6496f668-9dd3-47ff-a2da-44b1537ef19e)) + (pin "25" (uuid 1e326d76-6706-4f9c-a2fb-dc34c42872a3)) + (pin "26" (uuid 2d68b5a4-cba1-48e8-b352-3a1e6cafaf6b)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 87.63 194.31 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b7b517a7-700d-42b5-8048-ead60e9bc532) + (property "Reference" "U5" (id 0) (at 88.265 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 88.265 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid de8f67c3-a2a0-4b7a-b643-ca95e997446d)) + (pin "2" (uuid 3f0eaf6f-909c-4ef9-96f3-22dbc66d81a5)) + (pin "3" (uuid 762d7aa7-109b-415a-971d-450d2ecb382c)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 90.17 297.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b87fd261-128c-4cd7-8edf-84d1195a9d57) + (property "Reference" "U14" (id 0) (at 89.535 278.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 89.535 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d46b24dc-85a2-4992-a5da-a71c5ba8bf67)) + (pin "2" (uuid 3dfe6c0f-dd8c-4d34-a606-0c44b4eefdd6)) + (pin "3" (uuid b4441c2d-6d69-4f5c-ab30-7c8fe83329e6)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 90.17 187.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc602088-e697-4db2-96cd-8ec1be9f9ea4) + (property "Reference" "U12" (id 0) (at 89.535 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 89.535 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8301908d-c22d-4579-84e6-b96413a29d4e)) + (pin "2" (uuid 6cc988d9-9f58-4493-b048-34c0a25c8fe2)) + (pin "3" (uuid 3daede14-d749-40d3-a01d-fc1507713a7a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 49.53 375.92 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c3a291dd-16c8-41fc-8d33-ae1e99dedd54) + (property "Reference" "U1" (id 0) (at 50.165 370.84 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 50.165 373.38 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 49.53 375.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 49.53 375.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3c035ab1-d1af-45dd-94bc-d765fc7daf0f)) + (pin "2" (uuid 73e98d31-e18f-4b0a-b200-dea81d391f31)) + (pin "3" (uuid 0355c8cf-6fbd-4dfa-a748-989b4648a575)) + (pin "4" (uuid cd8c27d6-0e7f-4899-9e50-5c89411df03c)) + (pin "5" (uuid dbac8109-3dcf-42de-90be-4e16b29ea92f)) + (pin "6" (uuid a5cc2e7d-c2c5-456c-99b5-b00fe6085cb6)) + (pin "7" (uuid c3a4e447-dd66-4b63-88c1-28af1c91158d)) + (pin "8" (uuid 67e15e09-fbe5-485a-ab50-f38306a88016)) + (pin "9" (uuid ff65f242-8c9f-475a-b84f-33e0ad4d0f30)) + (pin "10" (uuid c2c36159-4485-49bf-b965-e64727ca5680)) + (pin "11" (uuid de0867d6-3d04-47ab-a608-8c453f6bce63)) + (pin "12" (uuid f0d0fa2a-30d2-4472-a38f-17f483c7268a)) + (pin "13" (uuid ba46d205-70aa-4115-9296-a8c44422e548)) + (pin "14" (uuid 366c4343-ff29-4f8b-83ce-67cf225ad4b3)) + (pin "15" (uuid cc14a39b-474f-480b-acd0-6d631396bad9)) + (pin "16" (uuid 094b5e13-e709-4e2f-a5cc-9ce210902e29)) + (pin "17" (uuid 9871724a-815e-473f-9882-98fa2c6d42e5)) + (pin "18" (uuid c17b8bfc-f142-4862-b579-effafee3ea3c)) + (pin "19" (uuid ab48aad8-15c0-42d3-ac76-49e29e864558)) + (pin "20" (uuid 1b5df3a8-85ba-4a56-93b8-d405191ddd48)) + (pin "21" (uuid 86c4e386-401a-4351-80dc-4e8e9eec85b4)) + (pin "22" (uuid 22c02d65-8c99-46a0-b595-761ced02a421)) + (pin "23" (uuid d3df18d3-0acd-4af8-a430-c729590d9255)) + (pin "24" (uuid 4bd0f216-920d-4ba5-b108-62189919cdcc)) + (pin "25" (uuid d7819a6b-ff47-4a73-9edf-99cb007df261)) + (pin "26" (uuid dd10e747-1f05-4db3-8b65-920e40616a05)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 26.67 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9bee520-e4b7-4123-9f42-ef4310fc9935) + (property "Reference" "U1" (id 0) (at 27.305 34.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 27.305 36.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 26.67 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 26.67 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 88cf4492-0408-4188-9fe3-fd510be8e517)) + (pin "2" (uuid 0ec136c1-a28e-4405-a8f8-22b87e06d8de)) + (pin "3" (uuid 501a078b-ea36-4beb-9ff2-7225e277861f)) + (pin "4" (uuid 282d3261-2b25-47d4-a6ec-0a74629d27cc)) + (pin "5" (uuid 2d4f61b7-40e5-4a10-a548-de4319df22ba)) + (pin "6" (uuid 167ed687-24ca-4a6e-a696-5103e34142b9)) + (pin "7" (uuid 49010de1-7ab7-4fa9-8a1d-edf45e521364)) + (pin "8" (uuid 713d3d7b-03b8-4e97-acf6-8a20bf61078d)) + (pin "9" (uuid e6fa0a72-1468-4299-ad70-6fc0e7301493)) + (pin "10" (uuid 215117c1-4c6c-43ac-984c-996b852ecc1d)) + (pin "11" (uuid 62b80e45-a688-4b94-adbe-029793325b48)) + (pin "12" (uuid 9f135144-d353-4d0a-b6b7-428844ca9f77)) + (pin "13" (uuid 8584a46b-5347-49fc-936a-6d278f72d7ad)) + (pin "14" (uuid 45e42243-4ce0-4199-9337-b93306dacc48)) + (pin "15" (uuid 4c24e091-df7e-4626-a949-c7e9105b9f36)) + (pin "16" (uuid 41dfb9eb-0301-4a5b-8d40-35dba6097d48)) + (pin "17" (uuid 34f1ef43-c3af-46da-8576-fd5541c1a028)) + (pin "18" (uuid 71750eaa-fee4-432c-9fd2-12cd5495f74e)) + (pin "19" (uuid e80be5f1-8503-4475-995e-9b33d8150035)) + (pin "20" (uuid 11e36a8f-5bc8-4512-b18a-c5a6d6a44328)) + (pin "21" (uuid c09a16a5-8a45-46a1-8aec-f23642698bd2)) + (pin "22" (uuid 422e7c15-4f4b-4eea-a457-0643aff046f2)) + (pin "23" (uuid 528e931e-1b07-4c45-b4dd-e2ad515894cc)) + (pin "24" (uuid fb85d038-bb03-466a-8884-a17d8de468d7)) + (pin "25" (uuid d1a5eea2-1486-4c59-ac54-6fbc834d5704)) + (pin "26" (uuid 09a86fd1-3887-4c41-a6b2-4bf4e6215e5c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 128.27 55.88 180) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e506cc6c-5627-49d1-950f-5d619420fd38) + (property "Reference" "U1" (id 0) (at 132.08 55.245 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 132.08 57.785 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 128.27 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 128.27 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 02a938c1-99f8-4236-a7c9-f6b362ec2434)) + (pin "2" (uuid b3f29627-d540-4701-a8d7-97b810518366)) + (pin "3" (uuid 4bd18b06-015e-4dac-a66e-cee432da304d)) + (pin "4" (uuid 988a5ed1-5757-40cc-9dc1-40f20887e21f)) + (pin "5" (uuid 83bd8eba-7990-48f6-91c5-ac1961ed05de)) + (pin "6" (uuid 9d9b05bf-b802-41c3-b19e-43d68428cc11)) + (pin "7" (uuid 21f00904-454e-4df6-ba4a-84df1b66792a)) + (pin "8" (uuid 836727e0-2019-4881-b20b-c6acbfcd2d77)) + (pin "9" (uuid 61f8d472-f87e-4f2f-9f8d-e5fee350a56d)) + (pin "10" (uuid 85711856-216e-4978-a12b-d40b0766dbda)) + (pin "11" (uuid f23df37c-df37-416c-b5dd-a0d1a1486763)) + (pin "12" (uuid cc79ed98-25d9-47cb-a5df-a67274e81228)) + (pin "13" (uuid 0c3a28ac-be09-406f-8184-2ac0e0a39f24)) + (pin "14" (uuid 98ed3cd3-a0d6-4521-8d1f-4e446edd4fca)) + (pin "15" (uuid 3f6c9458-c972-43bf-9bd8-0f6db88578c5)) + (pin "16" (uuid 20325089-1673-44a9-b01f-c3fc6207e7cf)) + (pin "17" (uuid 674720ea-1c3b-458d-86c1-2031b79dd682)) + (pin "18" (uuid ed5df0d4-350c-4282-b1e7-4d75b0ef47e1)) + (pin "19" (uuid 7c31f818-38b0-44ce-bbf7-5d8f181dd329)) + (pin "20" (uuid b5a879d6-c381-4576-8c50-a9ccc5c2cd18)) + (pin "21" (uuid 8ab6a216-c3fb-4f19-8790-3f7068e34f8a)) + (pin "22" (uuid ad83678c-2334-48b8-b145-7cc6d7995d77)) + (pin "23" (uuid 0ebe2499-37ba-4ddb-8eb0-735991f8a2a8)) + (pin "24" (uuid 37bbc716-d4ad-43cf-ad8e-cff16e6fb41f)) + (pin "25" (uuid 976767bf-dd6f-4460-b201-763d855ce275)) + (pin "26" (uuid 241565d8-be53-4332-892b-f373b747f663)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 48.26 157.48 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e756e02c-5725-4b56-b07a-4da910906d87) + (property "Reference" "U1" (id 0) (at 48.895 152.4 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 48.895 154.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 48.26 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 48.26 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b84204d6-07ab-4156-bad0-085c632e6d5e)) + (pin "2" (uuid fed483a3-069d-4b9b-9392-d25b9884a147)) + (pin "3" (uuid 9767bedd-5b05-4c70-922b-e3f182c50d8d)) + (pin "4" (uuid ffaa9649-e62b-4b6b-b005-bfaa9ffc8bbb)) + (pin "5" (uuid 93ab7798-c5bb-41a2-9503-d58d75b37dc3)) + (pin "6" (uuid 9c74fc7f-d9a9-49d5-8921-ff5ff7e64f72)) + (pin "7" (uuid 75f4acb6-53e6-4293-9da3-051199898da4)) + (pin "8" (uuid 778bbc7a-78b7-4c94-92f9-46a3e8abc6c3)) + (pin "9" (uuid 8a206744-866a-44f6-baa2-bcca6199c1e3)) + (pin "10" (uuid d23c0cf7-80f9-4413-95e7-908feda168ec)) + (pin "11" (uuid 4d440d1e-3541-45a7-935e-e406dab20fba)) + (pin "12" (uuid 232687f8-b103-45f3-a553-96142f525a01)) + (pin "13" (uuid a34a653a-b791-4c80-82a7-b55bd8385155)) + (pin "14" (uuid 047c0b2b-091d-43c2-a100-ee2776a0db88)) + (pin "15" (uuid 0fcc6844-4977-4949-8915-7381a7cd2a40)) + (pin "16" (uuid 26a39a4c-cb1c-4fa7-aba5-ecba9b99446d)) + (pin "17" (uuid a347f977-bb3c-4bd5-8722-9539d5773e5e)) + (pin "18" (uuid 0cdf3ee1-8a01-44e5-901d-6cfb6563c53c)) + (pin "19" (uuid 7c66ecc0-93c9-4386-9162-ef393307c167)) + (pin "20" (uuid 523bfefc-41a1-4ee7-9014-98d3272bdf1b)) + (pin "21" (uuid b42f0ad5-4cc2-47f4-b2a0-3d725dc26684)) + (pin "22" (uuid cf11086c-6f64-4c87-9778-e0cbed012532)) + (pin "23" (uuid 2ac76ca6-421a-4ec7-87c9-5e96adf4bcfd)) + (pin "24" (uuid 9970155c-aaa3-4bcb-ae97-616b597460f5)) + (pin "25" (uuid ba04f758-d8c4-4b51-998a-603f3c0e6652)) + (pin "26" (uuid 8a94d30e-8112-4992-9ef3-7a3b28474c60)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 91.44 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e823aaa7-29d7-4975-b488-8049f8e22073) + (property "Reference" "U18" (id 0) (at 90.805 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 90.805 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 88.9 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 88.9 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b9157b39-12e0-4daf-8aa5-82544bec7576)) + (pin "2" (uuid d8b5613b-3f32-4ae7-a8ab-9d03f6d5e562)) + (pin "3" (uuid 6f738faa-af9f-445d-8f3c-ea079e94626e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 33.02 58.42 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8a994e3-b8a5-4837-84fd-b4ddec7d4bf0) + (property "Reference" "U1" (id 0) (at 33.655 53.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 33.655 55.88 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 33.02 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 33.02 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 46027961-ee35-4f43-8469-3692bda9f19e)) + (pin "2" (uuid baa84912-bec0-4011-be76-d0acd95d7330)) + (pin "3" (uuid c92609aa-9d25-4920-a8ea-ab16ae8eac8b)) + (pin "4" (uuid 7d134d64-6f87-4bd6-968f-130029687a77)) + (pin "5" (uuid 1a87e51b-fab2-49c4-b640-84735345d2a3)) + (pin "6" (uuid 1173d4a8-d4b3-4f28-9c13-39bcd3510883)) + (pin "7" (uuid 8666135b-1b13-4baf-a712-87748bf7c11f)) + (pin "8" (uuid bbfb0111-b76b-405f-963d-4a31cc92adc0)) + (pin "9" (uuid c9461988-fdae-4337-ae27-e9b4e47d16c1)) + (pin "10" (uuid 9e471371-b83e-49ae-adcc-74ed2b174712)) + (pin "11" (uuid b5398335-ad41-44e2-882e-19849dd506a3)) + (pin "12" (uuid faf6ce41-7c3f-4eb9-bcf3-119884e505ca)) + (pin "13" (uuid 541fe323-43fa-43da-97ae-77be190cb75f)) + (pin "14" (uuid 5a4bd073-1500-456e-80c4-6f732bc77965)) + (pin "15" (uuid 5cfa3678-49fc-407c-9911-b3987ca4bbd0)) + (pin "16" (uuid 13e5b124-b4f3-45ef-afbd-6036c3e2a1d6)) + (pin "17" (uuid 6e9f22bc-ce38-446c-a7ce-e0b051b88b7e)) + (pin "18" (uuid ff4ea128-a3a1-400b-9149-3447605319f9)) + (pin "19" (uuid 4d578a07-64f1-4f03-b064-6dd67e7c267b)) + (pin "20" (uuid 655607cc-bfc5-4289-9113-e75da354efa5)) + (pin "21" (uuid 2477b155-7a1f-4b8d-8eb8-15de8faddd38)) + (pin "22" (uuid ad0357e1-0254-482c-b825-e0fc6d88fe35)) + (pin "23" (uuid 93878ddc-d493-4df7-a782-c9f3274f5a53)) + (pin "24" (uuid a24579cf-d136-4641-8629-ac4d26762f51)) + (pin "25" (uuid e446ff8c-2bc9-4910-8b6e-461ff46ee864)) + (pin "26" (uuid fdab7cc4-ed43-4e51-9974-fe810270b93a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 135.89 379.73 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9243872-bb69-4ae0-a723-c551552996a4) + (property "Reference" "U1" (id 0) (at 139.7 379.095 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 139.7 381.635 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 135.89 379.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 135.89 379.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 33bec703-27a7-4ddf-9afa-7eaba5260411)) + (pin "2" (uuid 4a1e05d4-8abe-4af9-9339-940f2b65c1ec)) + (pin "3" (uuid acc3648b-e2dd-4807-bf33-ba05cac187d2)) + (pin "4" (uuid 99da8a87-e950-483d-86bb-af8494f8bf69)) + (pin "5" (uuid 475a1fc8-8f60-412b-a3e2-1e9427f07647)) + (pin "6" (uuid 12933932-9f79-4ccb-8475-7498778708a8)) + (pin "7" (uuid c2bf5914-6258-4750-9aa6-a05357f401d6)) + (pin "8" (uuid 5d6d5a64-ab17-417a-8b6d-d15f10142a4c)) + (pin "9" (uuid 7e2b26c0-b17a-47dd-9baa-aa42a89ebbfe)) + (pin "10" (uuid fddab489-e3a4-480b-bffc-ad82d8e9e53b)) + (pin "11" (uuid 9275a58d-6d2b-4af2-bd99-b33442d07c00)) + (pin "12" (uuid a5ac7999-c56b-4a69-84dd-d314aaa3056d)) + (pin "13" (uuid 49aba8fb-406b-4caf-ba5a-3fd6839fca1b)) + (pin "14" (uuid 2b1007fa-77ff-4355-9899-7d87511cb2c3)) + (pin "15" (uuid f8e2de49-c896-4ed1-99d5-7dd341dd482a)) + (pin "16" (uuid c336851f-2e10-4d2f-9781-e6b79741e851)) + (pin "17" (uuid 9e2066c5-169f-454e-ae44-3ae2b69ed6a0)) + (pin "18" (uuid 8df455fe-87a9-46dc-8285-6533cf7a63fa)) + (pin "19" (uuid d510a172-35ca-4165-8a82-022382b2ee3b)) + (pin "20" (uuid 6c50162e-8497-4db7-a92f-6bfd39daa842)) + (pin "21" (uuid c2efcb07-2d22-4d0f-a015-4f8e658a9827)) + (pin "22" (uuid 0ddb4d48-d2e6-41eb-b59b-746eca30e4df)) + (pin "23" (uuid 8cce0ad5-a8cb-4490-9d4e-afe58a56500f)) + (pin "24" (uuid c3d0f583-4872-4fed-bb7b-56d8c15ab757)) + (pin "25" (uuid 296e4293-5297-492a-b983-3981befb8b20)) + (pin "26" (uuid 56741307-c5ca-480a-851d-76b850eefa57)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 90.17 242.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ee06f206-05fb-46ae-8a5b-d99930acb96a) + (property "Reference" "U13" (id 0) (at 89.535 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 89.535 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3b7fec1f-2e2d-44c2-a928-92bbed821fe1)) + (pin "2" (uuid f99f1dd7-ee3c-4c68-9900-566c80261a6c)) + (pin "3" (uuid 877150ef-0b1b-451a-90ca-b4d35fc178c1)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 87.63 33.02 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f03f7dd0-edc4-4d65-92e8-4f0ade3c1982) + (property "Reference" "U3" (id 0) (at 88.265 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 88.265 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6d72bac2-5214-4fbd-8f77-2077d5d9e7e3)) + (pin "2" (uuid 849a79ca-85a6-446e-a93b-2b9eab5a796b)) + (pin "3" (uuid d43810f2-b02f-4c2e-b07f-acb3708cf76d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 125.73 218.44 180) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f92e6571-d243-478a-88e9-90dbd7c182d9) + (property "Reference" "U1" (id 0) (at 129.54 217.805 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 129.54 220.345 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 125.73 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7aa8aa48-4c3b-4eed-906f-ed185ebfa569)) + (pin "2" (uuid 3e21260a-b9ca-4946-a497-4bb08885926b)) + (pin "3" (uuid bbaf680e-8517-43c3-9344-b66593cd3b24)) + (pin "4" (uuid aaa4ce52-52f3-425c-b4e3-4894c1b81489)) + (pin "5" (uuid 0820f8df-5059-4060-8000-a99a75a6c0be)) + (pin "6" (uuid 448cffc7-d7bf-4f0c-bf9b-a9c0e876dae5)) + (pin "7" (uuid 2f24661d-53d8-4e77-a7b4-f7adc0092754)) + (pin "8" (uuid de778d7a-d4e5-4344-b381-f575c1a901a6)) + (pin "9" (uuid b1913184-82ca-463d-8f62-8fba88b32199)) + (pin "10" (uuid 719153f8-3341-4112-8a9e-4ed99cb0caca)) + (pin "11" (uuid 36ec5799-55bb-4b95-9c8c-2d79198615e0)) + (pin "12" (uuid 43541114-44c2-4cc6-a481-c704b442f755)) + (pin "13" (uuid abce04a9-7686-4541-9f4f-210cdf36e1a1)) + (pin "14" (uuid a55d44da-001a-44a2-97ec-6760795aa194)) + (pin "15" (uuid 86d3f3b2-f33d-482e-b821-ee4aff95c9fe)) + (pin "16" (uuid 364edf9a-b132-4494-963f-eade991fbf09)) + (pin "17" (uuid aa063f6f-75f3-4bc3-8dfb-9ae813c70e8c)) + (pin "18" (uuid 47abed62-d024-46b2-b752-0e844001fae5)) + (pin "19" (uuid 86444a6d-b205-4f80-89d6-d14dbca40c18)) + (pin "20" (uuid d381b702-2047-401a-9135-516eb6c87ebc)) + (pin "21" (uuid 6975ae02-93b6-4441-9ccb-9542c86d6761)) + (pin "22" (uuid 2deaf766-fd94-4da0-9f78-ae62d90bdc65)) + (pin "23" (uuid cf363bf6-98ca-426d-bb4a-39b0a1d158ad)) + (pin "24" (uuid fa53d806-2fca-4b79-bfdb-62767605fbe6)) + (pin "25" (uuid 26b6c3e7-e036-4c66-9e46-465f6ce5d0b9)) + (pin "26" (uuid 01fc9813-79a0-4f75-bb1d-5f0f89b6c469)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 127 107.95 180) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb57a7f6-5e19-4c6e-88c5-c25200a49a94) + (property "Reference" "U1" (id 0) (at 130.81 107.315 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 130.81 109.855 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 127 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 127 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 44fa91f5-5bf4-4f96-967a-afe07a9e6291)) + (pin "2" (uuid 4acc3066-1e39-4f55-ad57-ec132b1a553f)) + (pin "3" (uuid f60634bb-2bde-4833-9afb-d21de5b0219e)) + (pin "4" (uuid c69ac270-445f-4b9f-aec8-1b529a8b717d)) + (pin "5" (uuid 4f327eb6-a07c-405d-ae84-4836f834664f)) + (pin "6" (uuid 735d0e08-ebfb-4862-99d1-c1e4893ebe31)) + (pin "7" (uuid 31bfda94-35c5-4aa4-af6a-bb06ce53a905)) + (pin "8" (uuid 94d4de66-ab45-42e8-9c81-8ee2f79d2256)) + (pin "9" (uuid dec0b0eb-715a-406f-bde4-022ed1fcab6e)) + (pin "10" (uuid 65a973de-e833-402b-839b-ce41603dbaa9)) + (pin "11" (uuid 3210ab74-44bf-4c61-8382-d66c9f084724)) + (pin "12" (uuid 63245ae2-b548-4811-bd63-5922f5e7b90e)) + (pin "13" (uuid 563efff4-1333-42cb-aa06-df3fc0c2689a)) + (pin "14" (uuid 642495f9-75d2-4ed4-aa97-f8e0b9a62667)) + (pin "15" (uuid 9cc65821-9a05-4b37-909e-74e71a7397fb)) + (pin "16" (uuid 3f42ab4b-4768-4e46-89b5-8c17a63efb06)) + (pin "17" (uuid 0c95fc9b-98b0-4cf7-be03-c1d2cc340f9b)) + (pin "18" (uuid 0f305f79-ea60-42ba-9537-411b9c15ccb8)) + (pin "19" (uuid a0b69c07-3fe6-4055-9ca5-2f162291a9a2)) + (pin "20" (uuid 695aa42a-1532-41aa-9fa7-cb6edc40e7da)) + (pin "21" (uuid 7a78da71-eff0-4a58-b525-df27d137e180)) + (pin "22" (uuid a577fcb4-5bec-416f-8961-92d603008cc3)) + (pin "23" (uuid 25106b9b-9795-4e67-a0af-67c1fed05495)) + (pin "24" (uuid d69674a5-afb1-4bf7-a0fe-ce1310f9fa82)) + (pin "25" (uuid a4979858-7379-4885-bc14-bc86d852438a)) + (pin "26" (uuid 1358d40f-282a-4a6d-be41-d8d39ff55853)) + ) + + (symbol (lib_id "eSim_Digital:d_tristate") (at 90.17 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe8fcf89-d58b-48dc-87fe-97afe97dc286) + (property "Reference" "U11" (id 0) (at 89.535 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_tristate" (id 1) (at 89.535 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 87.63 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 87.63 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c2eee446-7df2-4c4c-8923-52f97821e3c9)) + (pin "2" (uuid 5adf090d-e88c-4bac-aa7b-43ff9bd7d61e)) + (pin "3" (uuid 2783b3be-5594-4921-a2dd-1f62c2a6e1e3)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/d9bee520-e4b7-4123-9f42-ef4310fc9935" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/e8a994e3-b8a5-4837-84fd-b4ddec7d4bf0" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/3a01e954-7683-4612-bb8c-1275c35f4d6e" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/e756e02c-5725-4b56-b07a-4da910906d87" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/0ae6354b-42ef-464d-bba3-1577cffa93d9" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/a9612eac-cffd-4e7e-a24c-7e0ba9676dad" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/94a1bc44-118d-4613-9df8-11c0b1b4e226" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/c3a291dd-16c8-41fc-8d33-ae1e99dedd54" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/9db7ecf6-9a6a-42e4-b4f1-b94aa8ce8418" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/00d35cbd-a6f0-48cb-8eeb-577a50db8c54" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/e9243872-bb69-4ae0-a723-c551552996a4" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/aacfbfa4-67db-4ccd-a338-4825f60ff486" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/7828feac-b7a4-4438-8070-19169bf279af" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/f92e6571-d243-478a-88e9-90dbd7c182d9" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/7d370e35-3551-4ce3-9ca4-57410dfdb0f2" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/fb57a7f6-5e19-4c6e-88c5-c25200a49a94" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/e506cc6c-5627-49d1-950f-5d619420fd38" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/79a3e14a-443f-4259-95b8-73921b906124" + (reference "U1") (unit 19) (value "PORT") (footprint "") + ) + (path "/9f2f591c-25e6-467f-bfd8-7a533561ae93" + (reference "U2") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/f03f7dd0-edc4-4d65-92e8-4f0ade3c1982" + (reference "U3") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/a7ea859a-83f7-4e6d-8749-5cea9106c5ff" + (reference "U4") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/b7b517a7-700d-42b5-8048-ead60e9bc532" + (reference "U5") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/6dba4e59-1406-41e7-9c3f-17d963e79d6e" + (reference "U6") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/9beadb08-ac3e-4bd7-b26f-b810409b05b4" + (reference "U7") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/3c01b51b-badc-4a7c-bb24-82c132ba090f" + (reference "U8") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/01f9c39e-43fd-4430-b9b3-433cca613b50" + (reference "U9") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/2bec8357-fac5-448a-a8c6-77cc87d53fe3" + (reference "U10") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/fe8fcf89-d58b-48dc-87fe-97afe97dc286" + (reference "U11") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/bc602088-e697-4db2-96cd-8ec1be9f9ea4" + (reference "U12") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/ee06f206-05fb-46ae-8a5b-d99930acb96a" + (reference "U13") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/b87fd261-128c-4cd7-8edf-84d1195a9d57" + (reference "U14") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/926a00e6-0fc3-471e-a94a-2573c44c68eb" + (reference "U15") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/7e420174-6364-4c0e-bfa9-ff526941df4a" + (reference "U16") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/7353bcbf-9c95-4857-a9af-daf4670635da" + (reference "U17") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/e823aaa7-29d7-4975-b488-8049f8e22073" + (reference "U18") (unit 1) (value "d_tristate") (footprint "") + ) + (path "/9b67a56d-a99f-49b6-a01e-dcb775def150" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74HC623/SN74HC623.sub b/library/SubcircuitLibrary/SN74HC623/SN74HC623.sub new file mode 100644 index 000000000..d9faa9e07 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC623/SN74HC623.sub @@ -0,0 +1,78 @@ +* Subcircuit SN74HC623 +.subckt SN74HC623 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ +.title kicad schematic +* u7 net-_u1-pad13_ net-_u1-pad17_ net-_u1-pad7_ d_tristate +* u15 net-_u1-pad7_ net-_u11-pad2_ net-_u1-pad13_ d_tristate +* u13 net-_u1-pad5_ net-_u11-pad2_ net-_u1-pad15_ d_tristate +* u5 net-_u1-pad15_ net-_u1-pad17_ net-_u1-pad5_ d_tristate +* u14 net-_u1-pad6_ net-_u11-pad2_ net-_u1-pad14_ d_tristate +* u6 net-_u1-pad14_ net-_u1-pad17_ net-_u1-pad6_ d_tristate +* u2 net-_u1-pad1_ net-_u11-pad2_ d_buffer +* u19 net-_u1-pad19_ net-_u1-pad17_ d_inverter +* u3 net-_u1-pad18_ net-_u1-pad17_ net-_u1-pad2_ d_tristate +* u11 net-_u1-pad2_ net-_u11-pad2_ net-_u1-pad18_ d_tristate +* u10 net-_u1-pad17_ net-_u1-pad17_ net-_u1-pad3_ d_tristate +* u18 net-_u1-pad3_ net-_u11-pad2_ net-_u1-pad17_ d_tristate +* u4 net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad4_ d_tristate +* u12 net-_u1-pad4_ net-_u11-pad2_ net-_u1-pad16_ d_tristate +* u9 net-_u1-pad11_ net-_u1-pad17_ net-_u1-pad9_ d_tristate +* u17 net-_u1-pad9_ net-_u11-pad2_ net-_u1-pad11_ d_tristate +* u8 net-_u1-pad12_ net-_u1-pad17_ net-_u1-pad8_ d_tristate +* u16 net-_u1-pad8_ net-_u11-pad2_ net-_u1-pad12_ d_tristate +a1 net-_u1-pad13_ net-_u1-pad17_ net-_u1-pad7_ u7 +a2 net-_u1-pad7_ net-_u11-pad2_ net-_u1-pad13_ u15 +a3 net-_u1-pad5_ net-_u11-pad2_ net-_u1-pad15_ u13 +a4 net-_u1-pad15_ net-_u1-pad17_ net-_u1-pad5_ u5 +a5 net-_u1-pad6_ net-_u11-pad2_ net-_u1-pad14_ u14 +a6 net-_u1-pad14_ net-_u1-pad17_ net-_u1-pad6_ u6 +a7 net-_u1-pad1_ net-_u11-pad2_ u2 +a8 net-_u1-pad19_ net-_u1-pad17_ u19 +a9 net-_u1-pad18_ net-_u1-pad17_ net-_u1-pad2_ u3 +a10 net-_u1-pad2_ net-_u11-pad2_ net-_u1-pad18_ u11 +a11 net-_u1-pad17_ net-_u1-pad17_ net-_u1-pad3_ u10 +a12 net-_u1-pad3_ net-_u11-pad2_ net-_u1-pad17_ u18 +a13 net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad4_ u4 +a14 net-_u1-pad4_ net-_u11-pad2_ net-_u1-pad16_ u12 +a15 net-_u1-pad11_ net-_u1-pad17_ net-_u1-pad9_ u9 +a16 net-_u1-pad9_ net-_u11-pad2_ net-_u1-pad11_ u17 +a17 net-_u1-pad12_ net-_u1-pad17_ net-_u1-pad8_ u8 +a18 net-_u1-pad8_ net-_u11-pad2_ net-_u1-pad12_ u16 +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u7 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u15 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u13 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u5 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u14 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u6 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u2 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u3 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u11 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u10 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u18 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u4 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u12 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u9 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u17 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u8 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Schematic Name: d_tristate, Ngspice Name: d_tristate +.model u16 d_tristate(delay=1.0e-9 input_load=1.0e-12 enable_load=1.0e-12 ) +* Control Statements + +.ends SN74HC623 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC623/SN74HC623_Previous_Values.xml b/library/SubcircuitLibrary/SN74HC623/SN74HC623_Previous_Values.xml new file mode 100644 index 000000000..d1633a83e --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC623/SN74HC623_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_tristated_tristated_tristated_tristated_tristated_tristated_bufferd_inverterd_tristated_tristated_tristated_tristated_tristated_tristated_tristated_tristated_tristated_tristate \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74HC623/analysis b/library/SubcircuitLibrary/SN74HC623/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74HC623/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS156/SN74LS156.cir b/library/SubcircuitLibrary/SN74LS156/SN74LS156.cir new file mode 100644 index 000000000..6adac1c26 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS156/SN74LS156.cir @@ -0,0 +1,34 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ PORT +U25 Net-_U17-Pad2_ Net-_U25-Pad2_ Net-_U1-Pad7_ d_nand +U28 Net-_U20-Pad2_ Net-_U25-Pad2_ Net-_U1-Pad4_ d_nand +U26 Net-_U18-Pad2_ Net-_U25-Pad2_ Net-_U1-Pad6_ d_nand +U29 Net-_U21-Pad2_ Net-_U29-Pad2_ Net-_U1-Pad9_ d_nand +U27 Net-_U19-Pad2_ Net-_U25-Pad2_ Net-_U1-Pad5_ d_nand +U9 Net-_U10-Pad1_ Net-_U11-Pad2_ Net-_U17-Pad1_ d_nand +U17 Net-_U17-Pad1_ Net-_U17-Pad2_ d_inverter +U30 Net-_U22-Pad2_ Net-_U29-Pad2_ Net-_U1-Pad10_ d_nand +U31 Net-_U23-Pad2_ Net-_U29-Pad2_ Net-_U1-Pad11_ d_nand +U32 Net-_U24-Pad2_ Net-_U29-Pad2_ Net-_U1-Pad12_ d_nand +U16 Net-_U1-Pad3_ Net-_U1-Pad13_ Net-_U16-Pad3_ d_nand +U23 Net-_U15-Pad3_ Net-_U23-Pad2_ d_inverter +U24 Net-_U16-Pad3_ Net-_U24-Pad2_ d_inverter +U7 Net-_U5-Pad2_ Net-_U1-Pad1_ Net-_U25-Pad2_ d_and +U8 Net-_U6-Pad2_ Net-_U4-Pad2_ Net-_U29-Pad2_ d_and +U5 Net-_U1-Pad2_ Net-_U5-Pad2_ d_inverter +U4 Net-_U1-Pad14_ Net-_U4-Pad2_ d_inverter +U6 Net-_U1-Pad15_ Net-_U6-Pad2_ d_inverter +U3 Net-_U1-Pad13_ Net-_U11-Pad2_ d_inverter +U2 Net-_U1-Pad3_ Net-_U10-Pad1_ d_inverter +U10 Net-_U10-Pad1_ Net-_U1-Pad13_ Net-_U10-Pad3_ d_nand +U18 Net-_U10-Pad3_ Net-_U18-Pad2_ d_inverter +U11 Net-_U1-Pad3_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_nand +U21 Net-_U13-Pad3_ Net-_U21-Pad2_ d_inverter +U14 Net-_U10-Pad1_ Net-_U1-Pad13_ Net-_U14-Pad3_ d_nand +U12 Net-_U1-Pad3_ Net-_U1-Pad13_ Net-_U12-Pad3_ d_nand +U13 Net-_U10-Pad1_ Net-_U11-Pad2_ Net-_U13-Pad3_ d_nand +U19 Net-_U11-Pad3_ Net-_U19-Pad2_ d_inverter +U20 Net-_U12-Pad3_ Net-_U20-Pad2_ d_inverter +U15 Net-_U1-Pad3_ Net-_U11-Pad2_ Net-_U15-Pad3_ d_nand +U22 Net-_U14-Pad3_ Net-_U22-Pad2_ d_inverter +.end diff --git a/library/SubcircuitLibrary/SN74LS156/SN74LS156.cir.out b/library/SubcircuitLibrary/SN74LS156/SN74LS156.cir.out new file mode 100644 index 000000000..8906a0953 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS156/SN74LS156.cir.out @@ -0,0 +1,136 @@ +.title kicad schematic + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ port +* u25 net-_u17-pad2_ net-_u25-pad2_ net-_u1-pad7_ d_nand +* u28 net-_u20-pad2_ net-_u25-pad2_ net-_u1-pad4_ d_nand +* u26 net-_u18-pad2_ net-_u25-pad2_ net-_u1-pad6_ d_nand +* u29 net-_u21-pad2_ net-_u29-pad2_ net-_u1-pad9_ d_nand +* u27 net-_u19-pad2_ net-_u25-pad2_ net-_u1-pad5_ d_nand +* u9 net-_u10-pad1_ net-_u11-pad2_ net-_u17-pad1_ d_nand +* u17 net-_u17-pad1_ net-_u17-pad2_ d_inverter +* u30 net-_u22-pad2_ net-_u29-pad2_ net-_u1-pad10_ d_nand +* u31 net-_u23-pad2_ net-_u29-pad2_ net-_u1-pad11_ d_nand +* u32 net-_u24-pad2_ net-_u29-pad2_ net-_u1-pad12_ d_nand +* u16 net-_u1-pad3_ net-_u1-pad13_ net-_u16-pad3_ d_nand +* u23 net-_u15-pad3_ net-_u23-pad2_ d_inverter +* u24 net-_u16-pad3_ net-_u24-pad2_ d_inverter +* u7 net-_u5-pad2_ net-_u1-pad1_ net-_u25-pad2_ d_and +* u8 net-_u6-pad2_ net-_u4-pad2_ net-_u29-pad2_ d_and +* u5 net-_u1-pad2_ net-_u5-pad2_ d_inverter +* u4 net-_u1-pad14_ net-_u4-pad2_ d_inverter +* u6 net-_u1-pad15_ net-_u6-pad2_ d_inverter +* u3 net-_u1-pad13_ net-_u11-pad2_ d_inverter +* u2 net-_u1-pad3_ net-_u10-pad1_ d_inverter +* u10 net-_u10-pad1_ net-_u1-pad13_ net-_u10-pad3_ d_nand +* u18 net-_u10-pad3_ net-_u18-pad2_ d_inverter +* u11 net-_u1-pad3_ net-_u11-pad2_ net-_u11-pad3_ d_nand +* u21 net-_u13-pad3_ net-_u21-pad2_ d_inverter +* u14 net-_u10-pad1_ net-_u1-pad13_ net-_u14-pad3_ d_nand +* u12 net-_u1-pad3_ net-_u1-pad13_ net-_u12-pad3_ d_nand +* u13 net-_u10-pad1_ net-_u11-pad2_ net-_u13-pad3_ d_nand +* u19 net-_u11-pad3_ net-_u19-pad2_ d_inverter +* u20 net-_u12-pad3_ net-_u20-pad2_ d_inverter +* u15 net-_u1-pad3_ net-_u11-pad2_ net-_u15-pad3_ d_nand +* u22 net-_u14-pad3_ net-_u22-pad2_ d_inverter +a1 [net-_u17-pad2_ net-_u25-pad2_ ] net-_u1-pad7_ u25 +a2 [net-_u20-pad2_ net-_u25-pad2_ ] net-_u1-pad4_ u28 +a3 [net-_u18-pad2_ net-_u25-pad2_ ] net-_u1-pad6_ u26 +a4 [net-_u21-pad2_ net-_u29-pad2_ ] net-_u1-pad9_ u29 +a5 [net-_u19-pad2_ net-_u25-pad2_ ] net-_u1-pad5_ u27 +a6 [net-_u10-pad1_ net-_u11-pad2_ ] net-_u17-pad1_ u9 +a7 net-_u17-pad1_ net-_u17-pad2_ u17 +a8 [net-_u22-pad2_ net-_u29-pad2_ ] net-_u1-pad10_ u30 +a9 [net-_u23-pad2_ net-_u29-pad2_ ] net-_u1-pad11_ u31 +a10 [net-_u24-pad2_ net-_u29-pad2_ ] net-_u1-pad12_ u32 +a11 [net-_u1-pad3_ net-_u1-pad13_ ] net-_u16-pad3_ u16 +a12 net-_u15-pad3_ net-_u23-pad2_ u23 +a13 net-_u16-pad3_ net-_u24-pad2_ u24 +a14 [net-_u5-pad2_ net-_u1-pad1_ ] net-_u25-pad2_ u7 +a15 [net-_u6-pad2_ net-_u4-pad2_ ] net-_u29-pad2_ u8 +a16 net-_u1-pad2_ net-_u5-pad2_ u5 +a17 net-_u1-pad14_ net-_u4-pad2_ u4 +a18 net-_u1-pad15_ net-_u6-pad2_ u6 +a19 net-_u1-pad13_ net-_u11-pad2_ u3 +a20 net-_u1-pad3_ net-_u10-pad1_ u2 +a21 [net-_u10-pad1_ net-_u1-pad13_ ] net-_u10-pad3_ u10 +a22 net-_u10-pad3_ net-_u18-pad2_ u18 +a23 [net-_u1-pad3_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a24 net-_u13-pad3_ net-_u21-pad2_ u21 +a25 [net-_u10-pad1_ net-_u1-pad13_ ] net-_u14-pad3_ u14 +a26 [net-_u1-pad3_ net-_u1-pad13_ ] net-_u12-pad3_ u12 +a27 [net-_u10-pad1_ net-_u11-pad2_ ] net-_u13-pad3_ u13 +a28 net-_u11-pad3_ net-_u19-pad2_ u19 +a29 net-_u12-pad3_ net-_u20-pad2_ u20 +a30 [net-_u1-pad3_ net-_u11-pad2_ ] net-_u15-pad3_ u15 +a31 net-_u14-pad3_ net-_u22-pad2_ u22 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u25 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u28 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u26 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u29 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u27 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u9 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u30 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u31 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u32 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u16 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u10 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u11 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u14 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u12 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u15 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u22 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS156/SN74LS156.kicad_sch b/library/SubcircuitLibrary/SN74LS156/SN74LS156.kicad_sch new file mode 100644 index 000000000..e7a0d4773 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS156/SN74LS156.kicad_sch @@ -0,0 +1,2142 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 7df7c78f-f334-4787-9a38-be008d9a83a3) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_nand" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nand_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nand_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 46.99 146.05) (diameter 0) (color 0 0 0 0) + (uuid 01477087-c070-427f-bb45-d2b5712ad598) + ) + (junction (at 219.71 168.91) (diameter 0) (color 0 0 0 0) + (uuid 0a2ab8f7-c8e2-4f4c-b61c-ad35549e0e09) + ) + (junction (at 205.74 143.51) (diameter 0) (color 0 0 0 0) + (uuid 141aad3a-d0c0-4480-8725-596b87e9b0db) + ) + (junction (at 199.39 130.81) (diameter 0) (color 0 0 0 0) + (uuid 204c6ebb-e6d2-4a77-bdd9-36e21f46adbb) + ) + (junction (at 205.74 93.98) (diameter 0) (color 0 0 0 0) + (uuid 2a93d137-d524-4644-a512-5d0aab2d4b0e) + ) + (junction (at 213.36 106.68) (diameter 0) (color 0 0 0 0) + (uuid 2b38cc7c-f81d-49c0-bde4-01c682c29332) + ) + (junction (at 213.36 146.05) (diameter 0) (color 0 0 0 0) + (uuid 2e3a4486-056e-44a7-a001-5d23b7d10413) + ) + (junction (at 228.6 74.93) (diameter 0) (color 0 0 0 0) + (uuid 30fd52a0-561f-4e8a-abf9-b8b85632fc7c) + ) + (junction (at 219.71 128.27) (diameter 0) (color 0 0 0 0) + (uuid 4a4dd4e5-9c0d-4951-9332-3dcdb15d1c85) + ) + (junction (at 228.6 88.9) (diameter 0) (color 0 0 0 0) + (uuid 7167d0dd-0f4a-45b5-8ca6-770108f4bcdf) + ) + (junction (at 219.71 99.06) (diameter 0) (color 0 0 0 0) + (uuid 7f4ed952-6c74-4ccb-befe-280d720009ca) + ) + (junction (at 213.36 66.04) (diameter 0) (color 0 0 0 0) + (uuid 83f046a3-96e7-4af8-af5e-f379b1df92f1) + ) + (junction (at 228.6 198.12) (diameter 0) (color 0 0 0 0) + (uuid 84d3fc16-0f35-4aa3-83bd-1d0203d8785b) + ) + (junction (at 199.39 190.5) (diameter 0) (color 0 0 0 0) + (uuid 8935f63d-27b9-4b35-a5f0-4d88eda27cf0) + ) + (junction (at 228.6 207.01) (diameter 0) (color 0 0 0 0) + (uuid 95f1f42c-c2a7-4642-b828-9654fffed8bb) + ) + (junction (at 57.15 119.38) (diameter 0) (color 0 0 0 0) + (uuid 988511a2-ffd8-4530-83c3-2bc8835ae4db) + ) + (junction (at 205.74 81.28) (diameter 0) (color 0 0 0 0) + (uuid 99f26894-84c0-489e-bc7f-ec472a6b44af) + ) + (junction (at 228.6 172.72) (diameter 0) (color 0 0 0 0) + (uuid a30971a9-e0fe-4170-b865-ff98cdd475c2) + ) + (junction (at 199.39 125.73) (diameter 0) (color 0 0 0 0) + (uuid d9ccadbc-ecbc-47d7-9dd1-1c21cf26512d) + ) + (junction (at 228.6 113.03) (diameter 0) (color 0 0 0 0) + (uuid e609eca0-4b88-4405-a895-38e3d5d7a4e4) + ) + + (wire (pts (xy 280.67 153.67) (xy 228.6 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 036f3729-d1a0-44a7-b566-63519d9fb0fb) + ) + (wire (pts (xy 228.6 224.79) (xy 228.6 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0502c7f7-4c73-4c8e-978d-a569b1bb824d) + ) + (wire (pts (xy 219.71 128.27) (xy 242.57 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07f329ca-ebd7-49f1-8423-2878043fffb5) + ) + (wire (pts (xy 360.68 146.05) (xy 360.68 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 081aa090-62a5-4fa1-afc4-ba4c93a8b59b) + ) + (wire (pts (xy 359.41 106.68) (xy 359.41 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08c7c84b-8735-404d-951c-44d2a5232c12) + ) + (wire (pts (xy 213.36 146.05) (xy 213.36 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0dd705fb-7c3b-4d14-b09b-f76b8c7c7b71) + ) + (wire (pts (xy 144.78 85.09) (xy 144.78 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 115c5bc1-df41-4e1c-831c-1cfbb93e59f2) + ) + (wire (pts (xy 219.71 128.27) (xy 219.71 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1171c9e8-14d1-4af7-92e7-61b4adf400f3) + ) + (wire (pts (xy 213.36 106.68) (xy 238.76 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 123ddf31-bdc5-48f9-b6c9-9084b4435029) + ) + (wire (pts (xy 363.22 218.44) (xy 363.22 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dc3c2bb-2fdb-4b9a-9186-f59d82d8cd54) + ) + (wire (pts (xy 194.31 146.05) (xy 194.31 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dd6bdf2-dffc-4044-bfce-82fa41e9957e) + ) + (wire (pts (xy 219.71 218.44) (xy 219.71 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ec06cf7-5e39-4824-9052-6b1676540641) + ) + (wire (pts (xy 228.6 198.12) (xy 228.6 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2008c71e-21d3-458c-943b-a3230ad9fa04) + ) + (wire (pts (xy 205.74 93.98) (xy 205.74 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23f3c87d-0ab0-4eb3-8c7c-c1b6a3088a03) + ) + (wire (pts (xy 130.81 187.96) (xy 130.81 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26e0f3d1-0975-4c0a-bcd1-aa393ecbac33) + ) + (wire (pts (xy 219.71 99.06) (xy 219.71 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 295b1d8d-a6bc-4377-a8f8-609b4adde3e1) + ) + (wire (pts (xy 280.67 133.35) (xy 228.6 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a8255fc-1013-4ba1-b095-4faefbe144c3) + ) + (wire (pts (xy 205.74 57.15) (xy 205.74 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 309d37b2-fe17-4c7f-b2db-9bdc65383c66) + ) + (wire (pts (xy 238.76 104.14) (xy 199.39 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31e1f865-cb3f-4c4c-bd52-34c247ed03ea) + ) + (wire (pts (xy 274.32 60.96) (xy 274.32 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3411149d-d9db-492a-9299-2e47c44af942) + ) + (wire (pts (xy 205.74 81.28) (xy 238.76 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 381e1ea6-b484-4bd9-a2c5-7ba09520c5e6) + ) + (wire (pts (xy 153.67 207.01) (xy 228.6 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39435220-cc00-4f13-8fcb-bcbc07cc8f9c) + ) + (wire (pts (xy 44.45 93.98) (xy 121.92 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c0a65fc-2737-4e96-9649-9ace0485bb5c) + ) + (wire (pts (xy 247.65 193.04) (xy 213.36 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e2b260d-3ac1-4028-9940-e869b0d661e5) + ) + (wire (pts (xy 46.99 146.05) (xy 46.99 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40d200f3-b1fc-4d82-9f5c-0e809da0e35e) + ) + (wire (pts (xy 213.36 66.04) (xy 213.36 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 431d8496-820e-4ecd-a463-c2069e116fbb) + ) + (wire (pts (xy 276.86 113.03) (xy 228.6 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48fc53ba-e304-45e8-aba4-b9859878d079) + ) + (wire (pts (xy 81.28 187.96) (xy 130.81 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a5aeb38-4448-4ee9-b016-c88fbc8aaac4) + ) + (wire (pts (xy 236.22 59.69) (xy 213.36 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a8098c0-6ffb-4bcb-81d1-416426b4850a) + ) + (wire (pts (xy 228.6 74.93) (xy 228.6 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b25e098-0fac-4f0a-8cbe-36349bc448df) + ) + (wire (pts (xy 274.32 64.77) (xy 228.6 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bfac435-153c-4b2e-ad5a-2ca917de9722) + ) + (wire (pts (xy 228.6 153.67) (xy 228.6 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50493f06-c246-4dcb-a0ec-798ab6cabef9) + ) + (wire (pts (xy 281.94 172.72) (xy 281.94 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50e14e56-0fe4-43f1-998f-1c4cca567980) + ) + (wire (pts (xy 228.6 172.72) (xy 281.94 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53f3266a-730b-4e3e-bfd9-96710f816178) + ) + (wire (pts (xy 199.39 130.81) (xy 199.39 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 540939f4-0d94-482a-a528-cf9b4c5697ba) + ) + (wire (pts (xy 199.39 130.81) (xy 199.39 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 541c3280-a130-4257-8a80-3c224a83ac16) + ) + (wire (pts (xy 361.95 193.04) (xy 361.95 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55e86374-6e4e-4eb3-8cc4-d2dce0e66739) + ) + (wire (pts (xy 360.68 128.27) (xy 360.68 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55fd482b-8c3e-4904-9541-9d2038e9943d) + ) + (wire (pts (xy 290.83 224.79) (xy 228.6 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b298587-aa69-401c-9dd0-ba818a80553d) + ) + (wire (pts (xy 303.53 128.27) (xy 360.68 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ce974cb-87c0-4f26-b18a-17b3080a782d) + ) + (wire (pts (xy 285.75 198.12) (xy 228.6 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 621c082f-195b-45ce-8e99-e58f79ba0356) + ) + (wire (pts (xy 205.74 166.37) (xy 205.74 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63e756d3-2fb8-4b3c-a36b-a5c7db482c50) + ) + (wire (pts (xy 57.15 130.81) (xy 199.39 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65941fd6-13ba-46b4-890f-2650f689cff9) + ) + (wire (pts (xy 243.84 166.37) (xy 205.74 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66265161-448a-4a8d-b224-75c9cdf4b3bf) + ) + (wire (pts (xy 199.39 190.5) (xy 199.39 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66a64700-22a3-490b-b8b8-f8033f533f37) + ) + (wire (pts (xy 285.75 194.31) (xy 285.75 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6dd6d558-4642-445f-bc98-3d48af59a7e6) + ) + (wire (pts (xy 297.18 59.69) (xy 358.14 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 709b2e50-bb98-4a8d-9052-4547b44b4d29) + ) + (wire (pts (xy 252.73 215.9) (xy 199.39 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71d87305-76b1-4d19-90cb-0bc7bb8fca13) + ) + (wire (pts (xy 247.65 190.5) (xy 199.39 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 720ed554-9c26-4c62-bcaf-8f6720de3145) + ) + (wire (pts (xy 130.81 172.72) (xy 130.81 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 733e00d0-ab7d-4b6c-859a-6071c6c89972) + ) + (wire (pts (xy 48.26 172.72) (xy 67.31 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ed0ef1a-c290-4b02-9e69-3af3fc7f23f8) + ) + (wire (pts (xy 276.86 107.95) (xy 276.86 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81d78801-b958-4f72-b912-18bc8c8b179f) + ) + (wire (pts (xy 213.36 146.05) (xy 213.36 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 834cab37-847c-4829-bfdc-8e77ba56b08a) + ) + (wire (pts (xy 121.92 93.98) (xy 121.92 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8633c81c-a596-48d8-8db4-2f2ce095b993) + ) + (wire (pts (xy 57.15 119.38) (xy 57.15 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88367291-7996-45eb-8a7e-c2df1d7a4025) + ) + (wire (pts (xy 228.6 113.03) (xy 228.6 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dbef13f-47d5-4e4a-8fc0-3df679f7ea1c) + ) + (wire (pts (xy 144.78 74.93) (xy 228.6 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e2bcfa4-69d7-43de-897d-6bc8d2e9abab) + ) + (wire (pts (xy 228.6 207.01) (xy 228.6 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9041f9ba-74c3-4448-abb4-e6a93d80cb0d) + ) + (wire (pts (xy 80.01 146.05) (xy 194.31 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92d6f5ac-9a2f-4a8b-a08e-9839e46f21c3) + ) + (wire (pts (xy 121.92 77.47) (xy 121.92 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 960c532c-e563-4e27-91a5-2ed5b006c524) + ) + (wire (pts (xy 276.86 88.9) (xy 276.86 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0a8714e-3aa7-4d49-b4b0-1046cd69be63) + ) + (wire (pts (xy 199.39 104.14) (xy 199.39 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a49c3ed1-36d3-42e3-807c-36e1e5c8dc76) + ) + (wire (pts (xy 280.67 147.32) (xy 280.67 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a58260a4-a447-4607-a4fe-598e08307566) + ) + (wire (pts (xy 189.23 158.75) (xy 189.23 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acf13339-6cb2-416d-9d76-b7b3558d4b94) + ) + (wire (pts (xy 194.31 66.04) (xy 213.36 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae34374f-5404-4da3-acca-d1a3ad928e94) + ) + (wire (pts (xy 66.04 186.69) (xy 66.04 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b097765c-8745-463d-a42c-164ba5fae85a) + ) + (wire (pts (xy 46.99 158.75) (xy 189.23 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b413bc8b-d183-4085-97a3-4a5cf83b5f25) + ) + (wire (pts (xy 363.22 168.91) (xy 363.22 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfdc98ec-d3ab-419b-bd82-22a9ce10c591) + ) + (wire (pts (xy 303.53 146.05) (xy 360.68 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1e04143-2543-4c29-bb8a-22ba02ce431e) + ) + (wire (pts (xy 228.6 64.77) (xy 228.6 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5bdfffb-6372-46cf-8025-3492cf4c0b53) + ) + (wire (pts (xy 243.84 168.91) (xy 219.71 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6d81d38-c744-4a84-848f-0009b1015e82) + ) + (wire (pts (xy 313.69 218.44) (xy 363.22 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c828e9df-3dbf-427d-93b6-d9f299e5c241) + ) + (wire (pts (xy 82.55 77.47) (xy 121.92 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8b145ab-a393-4b78-990b-4991c6beb01d) + ) + (wire (pts (xy 57.15 119.38) (xy 64.77 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9793d42-9fef-465b-9346-cc2e8ddfe943) + ) + (wire (pts (xy 304.8 168.91) (xy 363.22 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca748091-9f89-42a3-863b-52807b6602ea) + ) + (wire (pts (xy 242.57 146.05) (xy 213.36 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb550144-4af2-477c-b864-1fca1f00b7b5) + ) + (wire (pts (xy 290.83 219.71) (xy 290.83 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbda3f3c-7e7c-4d32-9138-645b048014d2) + ) + (wire (pts (xy 308.61 193.04) (xy 361.95 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d025fe79-1a30-4e96-bf59-9ac28d69db4c) + ) + (wire (pts (xy 299.72 106.68) (xy 359.41 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d212006a-62cc-4bd4-bd19-b0cbb1d6d058) + ) + (wire (pts (xy 179.07 93.98) (xy 205.74 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d53be4f3-2704-4a9e-acfd-598895ecf414) + ) + (wire (pts (xy 242.57 143.51) (xy 205.74 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6fc6a27-069f-4a06-a486-401db089e5bd) + ) + (wire (pts (xy 45.72 77.47) (xy 67.31 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8832430-97ff-497d-80f2-6f6c9297d2b5) + ) + (wire (pts (xy 299.72 83.82) (xy 358.14 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d88cb4e3-ddf7-4d42-b0d0-0f6d65279ed1) + ) + (wire (pts (xy 179.07 119.38) (xy 179.07 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d88db1f1-346d-4686-a393-f071a5cfe1e9) + ) + (wire (pts (xy 213.36 59.69) (xy 213.36 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d95fd619-9e08-4498-8087-8fcd0209fbc5) + ) + (wire (pts (xy 80.01 119.38) (xy 179.07 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de35100c-2d3f-4eb6-b9be-c8a76e816001) + ) + (wire (pts (xy 189.23 99.06) (xy 219.71 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1591e77-f674-4b36-8871-40c8c68a2395) + ) + (wire (pts (xy 236.22 57.15) (xy 205.74 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2e2e717-22ef-4237-9e47-1e62367f7098) + ) + (wire (pts (xy 228.6 133.35) (xy 228.6 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e390ffc2-1f1d-4605-800b-bd009db2b0e6) + ) + (wire (pts (xy 205.74 143.51) (xy 205.74 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5788f5d-6d9a-4258-94d9-847d6b5ee3e5) + ) + (wire (pts (xy 280.67 129.54) (xy 280.67 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7f80237-e92b-428b-a35d-f8f9f1522b4d) + ) + (wire (pts (xy 82.55 172.72) (xy 130.81 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eab43dd4-9717-4304-a3e8-a86a75e5e0ac) + ) + (wire (pts (xy 153.67 180.34) (xy 153.67 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb283ed0-8e18-45ce-a5bb-b6e0bd94b3a6) + ) + (wire (pts (xy 219.71 83.82) (xy 219.71 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecf38142-6ae5-4aa2-a695-c635a50a76fb) + ) + (wire (pts (xy 238.76 83.82) (xy 219.71 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eeaaf6c1-6bd2-41f6-9b22-662dc4fb1221) + ) + (wire (pts (xy 45.72 119.38) (xy 57.15 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eec9965a-0bde-4f68-92cf-ddcfc3b971a8) + ) + (wire (pts (xy 46.99 146.05) (xy 64.77 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid faf1800c-b6a0-41a6-abe1-e31f11bc79e6) + ) + (wire (pts (xy 199.39 125.73) (xy 242.57 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb205221-ca3d-45c4-86d5-a5a6b4cd7dc3) + ) + (wire (pts (xy 252.73 218.44) (xy 219.71 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb987b42-2b3d-48d6-872b-0674765c99ed) + ) + (wire (pts (xy 228.6 88.9) (xy 276.86 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe3e71ab-3f83-4dd7-81af-87717d5d8603) + ) + (wire (pts (xy 48.26 186.69) (xy 66.04 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffdc4f43-5c14-4980-9279-4aecba1c0748) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 73.66 187.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0404f955-f087-4b29-9c0d-27d516411112) + (property "Reference" "U4" (id 0) (at 73.66 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 73.66 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 74.93 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 74.93 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 094a0ea9-4fa9-43aa-b519-fd5e6f6fcab5)) + (pin "2" (uuid 1304465d-8236-425d-b409-fa6f40d7da89)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 259.08 193.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0558d13d-d04e-4906-a231-e0a384283931) + (property "Reference" "U15" (id 0) (at 259.08 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 259.08 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 259.08 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 259.08 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7a3a6ac0-fc90-4bd6-81b3-ac36cfc811f1)) + (pin "2" (uuid 4ca96eb1-028a-490e-9f82-aaee15fa57d0)) + (pin "3" (uuid 5c34b97c-1bd4-4a42-b756-2842fa00bf65)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 292.1 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06696cd8-4107-4bb1-8493-abdc74d92d26) + (property "Reference" "U29" (id 0) (at 292.1 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 292.1 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 292.1 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 292.1 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 172c11fa-1203-4259-836a-75e4716059f3)) + (pin "2" (uuid f265e436-1efe-4392-9365-98b1a7161e32)) + (pin "3" (uuid 2d6dee05-44b4-4623-9bfb-cf4888e0b060)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 254 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0a290d32-8256-4072-905b-d150def2953f) + (property "Reference" "U13" (id 0) (at 254 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 254 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 254 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 248af6a9-9454-4c79-a723-7a01a7c40c0b)) + (pin "2" (uuid d4c34ad4-9d0e-459d-aeda-a282d08c46fe)) + (pin "3" (uuid 4110afc2-7686-46c0-a9de-9f03d6a0927d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 369.57 215.9 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0baa8192-8199-4fa2-9800-d7c5cda613c5) + (property "Reference" "U1" (id 0) (at 373.38 215.265 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 373.38 217.805 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 369.57 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 369.57 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 50d2a8b4-4554-468a-bb89-44814efe9f38)) + (pin "2" (uuid 78f41dcc-2fa6-4d0c-8459-5d625515f44b)) + (pin "3" (uuid b9687796-0f5d-4024-a06a-f432af3bdfb9)) + (pin "4" (uuid 23836e1a-eb12-497c-94bd-8f648bfd7995)) + (pin "5" (uuid 578d126b-b899-4755-aa62-d163bda3df74)) + (pin "6" (uuid c589d8d8-f66d-4171-8915-eb7ab7b53ced)) + (pin "7" (uuid 1b82ce40-0a42-4818-a78f-f8d94fd860ab)) + (pin "8" (uuid e24cc282-f865-4189-8201-c7e4b361a0cf)) + (pin "9" (uuid b7a88591-4285-4b42-b828-1b1f45157093)) + (pin "10" (uuid bf089950-33f6-481b-bd29-d7bf3dcf381f)) + (pin "11" (uuid 7f8a3575-8b32-407e-b6a2-9b71050a4d79)) + (pin "12" (uuid cccc2d26-d716-4667-9cd6-bc0cdfe970d3)) + (pin "13" (uuid 5a940e83-e125-424e-a69a-ed95ba367abd)) + (pin "14" (uuid 640e15f0-e3e8-4aa8-a41b-bf6b17d0dc7e)) + (pin "15" (uuid e69e5309-e184-43d3-9f31-0c9fbb0e8011)) + (pin "16" (uuid f5698c8a-7581-4876-b2f4-f9eee58589a6)) + (pin "17" (uuid ba455598-fb38-4b3f-8f69-add78a33e568)) + (pin "18" (uuid 3ab5578e-b328-41fe-b085-d3fc2133d401)) + (pin "19" (uuid db6bc358-43f1-4dd1-b916-3dfb85e874f3)) + (pin "20" (uuid 7d5b81e7-3435-4e71-b08e-4e13e56f3bde)) + (pin "21" (uuid 33ed9968-4ef7-4731-989b-ff7e5c87c662)) + (pin "22" (uuid 71cc4fe0-c7da-450c-9424-92b0b948d1f4)) + (pin "23" (uuid b55bf9b7-9832-4a01-8221-e8d03a5a4d47)) + (pin "24" (uuid af5bd317-f848-4000-bb15-ddf5d30cb3b2)) + (pin "25" (uuid 9c94c410-db51-4daf-9fd2-9602b6e7d3cc)) + (pin "26" (uuid 42b6afc3-4afd-4c81-9b4e-7c251cd1f266)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 74.93 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e575601-62c4-4e13-9195-afe8177b638f) + (property "Reference" "U5" (id 0) (at 74.93 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 74.93 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 76.2 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 76.2 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b6f1d3e3-6c7b-41da-9768-e51aa315b560)) + (pin "2" (uuid 93aec871-55eb-4eca-91c8-dc80116bb108)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 274.32 167.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1cfee459-68fd-46f9-a607-0c5833858918) + (property "Reference" "U22" (id 0) (at 274.32 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 274.32 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 275.59 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 275.59 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e17ae3ba-6d20-4cc6-9be8-77cfbe3dc6fc)) + (pin "2" (uuid 78de4901-9013-497a-9ae0-ca93129afda1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 368.3 191.77 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 324242b7-2cee-4034-b9db-6cf4a3bd2439) + (property "Reference" "U1" (id 0) (at 372.11 191.135 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 372.11 193.675 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 368.3 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 368.3 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76c868ec-7b6e-44fd-84a2-0967b7348b9a)) + (pin "2" (uuid 9ab36140-5a57-4686-adb1-b7b75c206a58)) + (pin "3" (uuid 4c3bd4d4-29da-445b-b14a-a91f63740c0f)) + (pin "4" (uuid 2686f0cb-d582-41a3-b82d-aa47446f43ce)) + (pin "5" (uuid 7e310e14-ba13-48f4-9098-93eff35bc62a)) + (pin "6" (uuid e3a06a32-0711-4463-b133-d01d5f1253b7)) + (pin "7" (uuid 33365128-6f28-4894-aae8-5208cfd463f0)) + (pin "8" (uuid 50fae98d-bd50-43c1-a675-3ef38d0c909c)) + (pin "9" (uuid 1d5f9ec7-154f-451a-957e-fdab184a67a5)) + (pin "10" (uuid 2790a510-02cb-4ad2-96ed-4fff1f98b7b8)) + (pin "11" (uuid 2e779db3-2191-4200-a066-1c401f306c86)) + (pin "12" (uuid 4009a038-62fd-4187-8016-842e58e05d12)) + (pin "13" (uuid 273a0812-0011-41ff-af3b-8327c0a97dbf)) + (pin "14" (uuid 46c041b2-9eca-43bd-adda-85c296b23c5b)) + (pin "15" (uuid 89a8b0bd-391c-4145-b232-5c401d4dc467)) + (pin "16" (uuid 8e6dab31-5d10-4a72-a096-e2d35f30f65a)) + (pin "17" (uuid 78eccb90-dca1-4925-b5fa-02426a1dcb84)) + (pin "18" (uuid dbc72ce4-5491-408e-b718-1d08cbf1ebe8)) + (pin "19" (uuid 62ce4b5e-668a-412a-8d46-4f8ae917a344)) + (pin "20" (uuid cd9caa3f-2f32-4003-8f0e-ea9b2cc67cd9)) + (pin "21" (uuid 781b8807-5700-4a48-9802-15aacb6dd88f)) + (pin "22" (uuid 7a5604e3-82ee-40b0-abb5-52f6e1907455)) + (pin "23" (uuid c78dcd76-5885-446d-9936-b2fb9c4c50f0)) + (pin "24" (uuid a5a29de3-9f8b-432a-bc93-ee889e16757c)) + (pin "25" (uuid f949c86d-43c6-487b-b7a0-7fd2ba2f7c02)) + (pin "26" (uuid 7d1e36f4-ed9d-46a1-a4ea-ea8c2f6c4bf1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 74.93 172.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 330d0025-5dce-4aa0-94b5-ab2c5e8fcdeb) + (property "Reference" "U6" (id 0) (at 74.93 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 74.93 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 76.2 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 76.2 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5e63c217-b62c-475d-acbc-4b796185718c)) + (pin "2" (uuid 12b389bb-8cf7-4158-a838-ce1442c6c60c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 367.03 142.24 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 37046130-df5c-4079-b0de-6586b9d162a7) + (property "Reference" "U1" (id 0) (at 366.395 147.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 366.395 144.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 367.03 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 367.03 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0afda3b5-d643-4d2c-811c-b0f9c38b1b44)) + (pin "2" (uuid 26fb89ce-cc87-491a-b68b-616c779aad9c)) + (pin "3" (uuid 80b87195-ffad-409d-a229-fdcacaa6823d)) + (pin "4" (uuid c982e84a-d683-4be3-9e24-1b8c9b5bbfed)) + (pin "5" (uuid e8d29087-7ae2-4c7a-ad42-2d173b79ec52)) + (pin "6" (uuid 673a25c7-e849-4cd0-8ff1-75e3c0375485)) + (pin "7" (uuid 211e3389-69df-4276-bde3-cc199abaedd3)) + (pin "8" (uuid a06d387a-4979-466f-a8d5-6869123eb6ec)) + (pin "9" (uuid 40c17a73-5d7e-4d32-8a31-bbb0a398f543)) + (pin "10" (uuid 78cd0627-8373-466d-9947-483d4804f493)) + (pin "11" (uuid fa031f3f-2ff9-44da-b8f9-7d84fa53f6fa)) + (pin "12" (uuid 5bedf7c1-78cd-4a60-8a72-cf5ebde71239)) + (pin "13" (uuid cdaef5f9-e174-425d-b536-bf254696dc6a)) + (pin "14" (uuid a34cd9b9-c888-4dc3-b402-d599c9f92510)) + (pin "15" (uuid 52fa73ee-6097-4c80-bc3d-3fdc5e93adc5)) + (pin "16" (uuid 7b2ae32c-1383-4283-9633-8d34a5398e3a)) + (pin "17" (uuid ecf6c9dd-71ff-4e2d-8795-0c94ea31f948)) + (pin "18" (uuid 97c1e14c-9d92-41d3-a367-97317ee478ac)) + (pin "19" (uuid 5a91dddd-1e38-4a55-8cd8-a57e9ad182c6)) + (pin "20" (uuid 719159d8-fd12-4ef6-8fd3-e293505621f2)) + (pin "21" (uuid b211c79d-fc8a-42cf-bc10-da6a561b8572)) + (pin "22" (uuid d79f37cb-cac9-4ccb-a5fa-b9e835e8fbe3)) + (pin "23" (uuid da68ae55-eca1-4081-856b-a2fa559c9be5)) + (pin "24" (uuid 3610b204-da74-4240-8bde-a688cfc99676)) + (pin "25" (uuid fed9aaea-d679-47ab-b85f-ff3ef58130f6)) + (pin "26" (uuid 0c556def-f218-43b4-a21d-2fd58eae9e27)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 364.49 83.82 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b009d94-3d50-42da-afcf-5f1871b69154) + (property "Reference" "U1" (id 0) (at 368.3 83.185 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 368.3 85.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 364.49 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 364.49 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7b50c898-40ff-4d24-aaa2-e9c57d59eb18)) + (pin "2" (uuid 2af227dd-965f-4494-ab32-2f8e71b7fe78)) + (pin "3" (uuid 7ddd44af-bc60-44ab-a670-73f8df778347)) + (pin "4" (uuid bb555874-2f86-4c28-b329-84a6279fd4d4)) + (pin "5" (uuid 89509839-fc20-4c01-a999-2b681dd7d9d6)) + (pin "6" (uuid 25aa655e-50fa-43da-acef-6eda030ed898)) + (pin "7" (uuid e334dcca-e237-43a3-8cd8-0925b0741489)) + (pin "8" (uuid 0f69f0e2-a662-4fc4-bf54-51b54da7957b)) + (pin "9" (uuid b3db3a75-eff9-4b5e-8979-2833186d3706)) + (pin "10" (uuid d3e20168-215c-4d21-b0db-8806bca08fed)) + (pin "11" (uuid de12398d-376d-4d04-a6cf-b1fbd8d6b20d)) + (pin "12" (uuid ce151fb2-69eb-4aa8-ab0c-8cb9b5b5c751)) + (pin "13" (uuid 0fe05600-b7bc-43bd-bb8a-2f14ebe0fb33)) + (pin "14" (uuid b1f4d71c-dc28-4d72-a388-f5f696bc0fd5)) + (pin "15" (uuid 655d3296-fe64-4193-9010-1127667595ef)) + (pin "16" (uuid 9e5d7d98-ec00-4b39-9323-7679b94ea6a1)) + (pin "17" (uuid b9608fd9-126c-4894-b5b1-3047dc43e819)) + (pin "18" (uuid 5aabaad6-bbaf-421c-946a-e38294f8436d)) + (pin "19" (uuid c9c993d2-a351-4238-89e7-f6c02fc99e06)) + (pin "20" (uuid 3cd22387-da0c-47eb-b449-010077cffbbb)) + (pin "21" (uuid cc11280a-5843-4271-a4de-39d3c7093ee5)) + (pin "22" (uuid 883e15c4-6889-49ad-9d3d-18d97e1ef51a)) + (pin "23" (uuid 6fb97c52-89da-48a8-a16f-69d73ea2b151)) + (pin "24" (uuid e85791bd-975c-4dda-920d-a0d89613f543)) + (pin "25" (uuid 195e0272-fd1a-4ece-ae51-fad0f31336f5)) + (pin "26" (uuid 693c921f-3c38-4dd0-89c8-7e8e3759ef23)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 292.1 129.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4297a1ad-84c5-4c01-8144-d0624375079d) + (property "Reference" "U28" (id 0) (at 292.1 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 292.1 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 292.1 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 292.1 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 19e618e2-93c5-4985-91cf-fdd6d97394e2)) + (pin "2" (uuid a3d55351-0b04-4973-96e1-cd0b01a10f26)) + (pin "3" (uuid f264a404-57d7-4a75-b742-e9d07aae1e4a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 266.7 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 46ebd5a4-041f-4daa-9e48-bc24f2991a7e) + (property "Reference" "U17" (id 0) (at 266.7 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 266.7 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 267.97 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 267.97 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 33b40a7d-279d-4d35-86ee-c8b9a7fda55d)) + (pin "2" (uuid 7b6efa83-4b40-4c02-a007-bf4bc3038243)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 264.16 218.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b69e7fa-30c4-4d2f-bec5-4b7207ae23bb) + (property "Reference" "U16" (id 0) (at 264.16 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 264.16 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 264.16 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 264.16 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 81e425bd-bb58-4d5f-9268-8fb15cbf3d44)) + (pin "2" (uuid 1c1c3f78-e73b-4970-8b47-e5f669e3114b)) + (pin "3" (uuid a5793fa0-c5b0-42f9-9c95-f66e6b11de05)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 367.03 125.73 180) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4bdf3e78-e5b3-403c-b76d-84395e596b37) + (property "Reference" "U1" (id 0) (at 366.395 130.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 366.395 128.27 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 367.03 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 367.03 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 721ef7f3-bd27-49b5-9750-b72044309d31)) + (pin "2" (uuid 5434458c-e1ed-4676-b6da-2af3f9ee1dd1)) + (pin "3" (uuid 654b3342-7242-4564-b80d-038a4b522348)) + (pin "4" (uuid ccd5459a-5a09-4dc6-a518-4c16badc4988)) + (pin "5" (uuid 887e5829-af3b-4416-abb0-2825f55a9135)) + (pin "6" (uuid 77c64a72-09e0-441e-926c-88310b601738)) + (pin "7" (uuid f3f99af8-155c-4037-aef1-1bcb260b96ce)) + (pin "8" (uuid 0536848f-3dab-4f28-9c98-927c613184c0)) + (pin "9" (uuid 0b612973-8a4e-46b7-ab50-11e61d7c56ac)) + (pin "10" (uuid 6c809eab-f3d0-46c6-b53d-834345ee236c)) + (pin "11" (uuid 05b9db22-8566-4379-9963-673187d5d2d5)) + (pin "12" (uuid 2fcbe8fd-501f-4195-bb6d-8d45b8f24c54)) + (pin "13" (uuid 158c1817-77d5-4faa-b6c6-f023b281ead0)) + (pin "14" (uuid 3a88c913-72c6-4df2-ad36-39516d4567df)) + (pin "15" (uuid ad44ec76-728e-41a9-ad5f-b22059c2461d)) + (pin "16" (uuid 4a024808-ab42-44c8-b0f0-baf320b1563a)) + (pin "17" (uuid fd2d3f92-36e6-4667-8885-e18c4fb2ca3f)) + (pin "18" (uuid e448a0ca-3cef-4578-9d03-d737279401ed)) + (pin "19" (uuid cc0590ae-4a47-40e5-9fbe-9627ee4efe1d)) + (pin "20" (uuid 6d725463-b711-49bd-9b93-ed6ea1794bf8)) + (pin "21" (uuid 46f25eee-4faa-4930-a05c-d8798b87da80)) + (pin "22" (uuid b0ab2c04-6265-48f5-b6b1-1927a15c9dcd)) + (pin "23" (uuid c4ca6417-777b-44e5-abb4-f11adbf29662)) + (pin "24" (uuid aeec76cd-eca6-4ef4-b8b3-b3150b0d8b3f)) + (pin "25" (uuid 8088d7d1-dc5a-4214-9242-2b5cebef3c65)) + (pin "26" (uuid 87a06ce8-d276-49b4-8e19-861e6c561868)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 364.49 59.69 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51b9de43-8a43-4918-a715-b3b09026be92) + (property "Reference" "U1" (id 0) (at 368.3 59.055 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 368.3 61.595 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 364.49 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 364.49 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7a78525b-b188-4486-a829-38b3f4cbdd85)) + (pin "2" (uuid 5296e9b6-8fe2-4eb5-a67b-143d17d15213)) + (pin "3" (uuid 8472ae4a-fbff-4184-8fd5-9da6ebb2d3ae)) + (pin "4" (uuid c73bd791-c615-448a-b697-1dc466654b36)) + (pin "5" (uuid dab25117-875d-4d15-b577-f5f764e52ce7)) + (pin "6" (uuid 1100efee-129d-40df-be89-f940a3e8ffa5)) + (pin "7" (uuid 85a73112-6046-4719-b4b1-88659873c9c8)) + (pin "8" (uuid 1a31e2cc-1e1b-4e98-81b8-efc9e6c6b7cc)) + (pin "9" (uuid ab07e6ee-35d0-4b00-9f56-dfb935679466)) + (pin "10" (uuid 9aad9f4f-673e-4b3f-bd37-d36defad8ced)) + (pin "11" (uuid f9cf761d-0f4f-4a62-a46a-2e0fe26c25f9)) + (pin "12" (uuid 1fcd81c2-c76a-4ce4-9fb3-411b0a25c77c)) + (pin "13" (uuid 54976a8e-37b1-4061-893b-1fedfa7c7fee)) + (pin "14" (uuid 741f8c4b-04ab-48d6-9635-46c10a9cfa76)) + (pin "15" (uuid 5edcdac0-9e60-4f3f-9de5-1a60593391a1)) + (pin "16" (uuid bc4bb380-40b5-4558-aca6-f15c1e55cc7a)) + (pin "17" (uuid bbe16ac9-969c-429f-8cf1-2a164d9fef57)) + (pin "18" (uuid fc9a45f9-25ae-4c1c-84cf-2f76c3d39dad)) + (pin "19" (uuid 8d3e4c28-3ae2-4b8d-8f47-094bcbc9079f)) + (pin "20" (uuid 3bbef7f0-ca47-4c94-bfb0-2f2cfb86aaab)) + (pin "21" (uuid 853ada07-498a-4901-b09a-3541012f7673)) + (pin "22" (uuid efa41d38-0408-42da-958d-c7e88e44956d)) + (pin "23" (uuid cee854e5-77c8-42bc-9260-575d15076cf5)) + (pin "24" (uuid 91717b36-6a3a-41a4-b37c-ee16e3514d89)) + (pin "25" (uuid fbdaaa1f-883d-47c1-9c4a-aa47928e1af5)) + (pin "26" (uuid 67e72d22-e311-4bb5-a05e-5785448e57b4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 39.37 119.38 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51c11922-bd7e-4e0d-a7e9-c906838db5a5) + (property "Reference" "U1" (id 0) (at 40.005 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 40.005 116.84 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 39.37 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 39.37 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f2be484-4e4a-46ac-bfa0-5af33a04b6fe)) + (pin "2" (uuid 549e6508-6e2b-442d-acda-81c20a337595)) + (pin "3" (uuid 2abed958-3c83-40e8-8beb-a2ea1576a12c)) + (pin "4" (uuid 9b115bfa-9c02-410d-82a1-f81ab2b43bc5)) + (pin "5" (uuid 368e5bed-e1f5-4b85-b1b6-6041ed51cbd0)) + (pin "6" (uuid ec06fae4-77cd-479a-a979-e043af7af917)) + (pin "7" (uuid 2fd26d71-1402-467b-b334-f2d5d37ca45a)) + (pin "8" (uuid d27a0301-4f6b-46a6-9674-593d208cebc5)) + (pin "9" (uuid 249a0c73-e64e-4ca7-91bf-5a97afe20cfd)) + (pin "10" (uuid 9074ebb9-1e3f-4bdb-8ae2-34c43a75bdec)) + (pin "11" (uuid 2e0ea10f-dcfe-4759-8261-c0826c58f4c1)) + (pin "12" (uuid a32d5351-b15f-4d83-b604-137217b88aae)) + (pin "13" (uuid 7f07a826-4bbc-4705-80a8-339eefbe9778)) + (pin "14" (uuid 3c1cb125-91a6-4c73-97df-7c957c3079ef)) + (pin "15" (uuid 3deefd6f-9077-468b-af14-1bd04e8868b2)) + (pin "16" (uuid d6e6a8ba-9739-4691-9fd2-d4e6111b562e)) + (pin "17" (uuid 2e284010-38e2-4751-903c-a4e87c086ad2)) + (pin "18" (uuid b287f472-eb2f-4f7b-9681-6049e80b2230)) + (pin "19" (uuid 5f6151d7-857f-4ff9-aa83-650b575cbb80)) + (pin "20" (uuid 6da9adfc-71ea-4ac3-9ef4-e7a4a0144280)) + (pin "21" (uuid a02d0cef-32ee-4296-8bc6-4fb26c57683d)) + (pin "22" (uuid 62f70f7a-2410-4d5a-acbd-a6bccbc7609a)) + (pin "23" (uuid 46440bb0-360f-48c3-bdfd-175e52d86f16)) + (pin "24" (uuid 54ded881-2592-46cb-8c83-6f649974b3f6)) + (pin "25" (uuid 0c97966c-c6a8-4481-9708-6bef573a4dcb)) + (pin "26" (uuid 60c8f19e-1550-40dc-b778-c75f350494db)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 369.57 166.37 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6475161b-75e0-4929-8561-663e770e3375) + (property "Reference" "U1" (id 0) (at 368.935 171.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 368.935 168.91 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 369.57 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 369.57 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 86ade4ca-f029-4c5c-ac3e-f95a8431e52c)) + (pin "2" (uuid 254540d9-ac61-4f58-a442-7b75dccae14b)) + (pin "3" (uuid fca1723d-ec2a-48ac-8ec3-4c6079fee0a3)) + (pin "4" (uuid 7e260f65-9bc5-43cb-b283-7f40dcf7ab4b)) + (pin "5" (uuid f2782543-c85e-44e6-98d6-fd3e58d1f448)) + (pin "6" (uuid fac5d7c2-3075-4871-85be-f0f196c63e0c)) + (pin "7" (uuid 4135f3b1-6c74-4071-b6c6-3eb45f05f4c8)) + (pin "8" (uuid 533afdb2-f23f-4b25-acb5-141aea64ff8b)) + (pin "9" (uuid d1ab81c3-80c1-4db8-bea2-969a1ea00d1b)) + (pin "10" (uuid 23b09d93-be6e-4d9c-9ebf-68ca5b6623ca)) + (pin "11" (uuid b86c30bb-4162-41fd-b852-dc9d86e4b980)) + (pin "12" (uuid bcc42c2b-7f53-4776-a760-eedeaded4935)) + (pin "13" (uuid ec0fa7f0-af09-48e6-ba63-61db8470249e)) + (pin "14" (uuid 60cfb537-90db-4969-826e-ccec0583cc65)) + (pin "15" (uuid 4825ae7b-fb25-4d71-aa6c-b26f6271fae7)) + (pin "16" (uuid c2c94ca2-20f8-4420-a7e9-91d6e537d11c)) + (pin "17" (uuid b7ad7582-382a-4d0d-9d64-6cc716575fd4)) + (pin "18" (uuid 4e1ef3b6-3906-456c-8346-931b7a09af37)) + (pin "19" (uuid d8040c22-7ca4-4aaa-9971-c9fe1675600e)) + (pin "20" (uuid 7a5735d8-4bc0-4c95-95cd-54c910cf280d)) + (pin "21" (uuid 608fb0ce-a590-4338-b6a2-f04714f43220)) + (pin "22" (uuid a1899c2a-1d14-43c3-8c03-0d0f1e5c2e12)) + (pin "23" (uuid 29244420-3214-4cdd-8e9c-0d14f8479883)) + (pin "24" (uuid 9ddb1981-73ce-48ae-a824-c0d45f575edb)) + (pin "25" (uuid 975dbaca-bd02-4cf0-8009-0503cf1ec8e1)) + (pin "26" (uuid a330fd42-81bf-4543-b213-34cd5707b55f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 365.76 102.87 180) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 658ad50f-fe56-4683-9424-38b03e16ceec) + (property "Reference" "U1" (id 0) (at 365.125 107.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 365.125 105.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 365.76 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 365.76 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d7d6c5f-1d6b-46e8-89a3-a905983c463a)) + (pin "2" (uuid 03797786-fe86-4b8b-8861-7e1015785bd6)) + (pin "3" (uuid bb9a1d5d-38dd-450a-ad3a-01660c8f9d3a)) + (pin "4" (uuid dc7899bd-dd1e-41e6-b4b7-17aed9ce0ec1)) + (pin "5" (uuid 0053f7b6-45f7-4b46-9c99-31e20c2545e4)) + (pin "6" (uuid c6642a42-d2e5-46c0-947f-762a76f11cb9)) + (pin "7" (uuid f545594f-5d2a-4d62-afe5-ab9242161949)) + (pin "8" (uuid 2722bfaf-6866-43a1-972c-5f4e2f23ce57)) + (pin "9" (uuid cb777667-8c77-46da-a72b-d6de8a8717a6)) + (pin "10" (uuid 10194c97-b316-467b-bcdb-d97337f21eb9)) + (pin "11" (uuid 830405b8-69ea-4ce2-810e-7c221bc1a654)) + (pin "12" (uuid 384ab186-0f3b-4fab-8187-ede5ecd5f49f)) + (pin "13" (uuid fe063295-9ba9-4f31-91c8-5076c006bd6e)) + (pin "14" (uuid cb9138ef-5f59-4b4a-8162-12b25e5b23a8)) + (pin "15" (uuid 072387fd-3e90-42b0-b0b7-a7e1226b6e50)) + (pin "16" (uuid f9b93e55-f7b5-4cc9-b5ca-ee4ea2107c64)) + (pin "17" (uuid 9333484b-2750-49c7-b5dd-e61c6e7bb975)) + (pin "18" (uuid 94170370-7e82-4949-b885-b067adc25d4a)) + (pin "19" (uuid 21166061-78b6-4c90-bd97-fa901506a611)) + (pin "20" (uuid 1dd7a834-402f-4fbe-8923-0563f2591fa8)) + (pin "21" (uuid 741fff95-5fa2-4fe2-a9b2-53e082789ebc)) + (pin "22" (uuid 1cc483d0-5837-4899-81ce-5afeb1dcb60c)) + (pin "23" (uuid eabaf5c3-ba4d-4ca1-91f9-96648373ee09)) + (pin "24" (uuid 49123d53-a687-452a-9379-aa52b4574f7a)) + (pin "25" (uuid be8613eb-a9fd-4fff-8cae-c846a6b48a5e)) + (pin "26" (uuid 673ff8c0-5089-4f0b-8d19-300c50767e7f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 273.05 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 696a1951-7215-4859-8ca1-f78fc4facd9b) + (property "Reference" "U20" (id 0) (at 273.05 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 273.05 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 274.32 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 274.32 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 74fb214d-0167-421f-90c3-c188be133e2d)) + (pin "2" (uuid 9d3e8223-e695-4293-9073-b39969d6afaa)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 39.37 77.47 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6fe99402-9a45-4c90-b49c-0839825a7b53) + (property "Reference" "U1" (id 0) (at 40.005 72.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 40.005 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 39.37 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 39.37 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f81ee620-40c2-4e91-835c-46085086da45)) + (pin "2" (uuid 24b89851-f8a9-4aba-9195-797be9afb371)) + (pin "3" (uuid 2bd23ad2-b965-4319-9106-94a564dc651b)) + (pin "4" (uuid c8ffee66-450f-43cc-b180-018547f31a9c)) + (pin "5" (uuid 9361f451-35cb-4e05-8a3f-8784a3486e0d)) + (pin "6" (uuid 37bd56ae-a740-4d11-a7e1-5c745ae9b0e1)) + (pin "7" (uuid 8f303e51-6277-43d4-b2c9-658856513f8e)) + (pin "8" (uuid 8fc9efbd-a534-4d0e-b3fc-efe1b4d52d7c)) + (pin "9" (uuid a24507e5-2763-4c44-af64-7ef468f13866)) + (pin "10" (uuid 3880794d-5f7a-46f2-bd9b-203dc18a6d3c)) + (pin "11" (uuid be51bbee-6cd5-493c-89c2-4cae75dfd6d8)) + (pin "12" (uuid 51935624-ce3d-4b6d-8ade-83eee4c3fb1c)) + (pin "13" (uuid 7753e240-d77c-4702-ac14-8f2935fc786d)) + (pin "14" (uuid 98015e90-0670-40d7-8fdd-405f4d3c691b)) + (pin "15" (uuid f8b2a6e5-bda4-4d9c-867d-b430fdb7884f)) + (pin "16" (uuid 32e84628-0e9b-4d0e-810d-fefe51d4fa18)) + (pin "17" (uuid b141ac22-82b9-478b-9ccb-aedc2ea093e6)) + (pin "18" (uuid 3008b15c-8eee-418d-b697-d33a21f9d21c)) + (pin "19" (uuid 6d11140f-b946-403b-a009-dac36966a5fb)) + (pin "20" (uuid f2d7fbe8-c1fc-41cc-9720-0ef9dba3d623)) + (pin "21" (uuid bac86ff4-3702-4be7-b0e9-bb7aad21dfc1)) + (pin "22" (uuid eb199725-ee3b-44b7-bb97-7604f0c928b7)) + (pin "23" (uuid 73ae7d1e-79c0-478c-aedf-c1e9e89dcbaf)) + (pin "24" (uuid dd0e8244-f0ce-433c-9c59-e20f9f945f88)) + (pin "25" (uuid 361ba3f8-ee69-4dd3-8ab1-7ffb47f6578a)) + (pin "26" (uuid 19c3ebca-150a-4c84-838b-a8f5cc13ece1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 72.39 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73f28c5b-ba13-4a0a-b08b-1e871ac3faac) + (property "Reference" "U2" (id 0) (at 72.39 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 72.39 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 73.66 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 73.66 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5c61cfc1-58e9-4c6c-ab51-e0875fbae7a5)) + (pin "2" (uuid bc545ebe-cd08-4fc0-87ba-768859961a57)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 297.18 194.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 78088708-9f83-4f7e-a7a5-ab96037d3e61) + (property "Reference" "U31" (id 0) (at 297.18 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 297.18 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 297.18 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 297.18 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ee366fe4-6c42-4279-b121-cdd5ccd52a76)) + (pin "2" (uuid bcc1b360-5776-4702-98d8-02f6fe3e5b7a)) + (pin "3" (uuid e2a6542e-62e2-4f33-bc39-2ca82ccb2fb3)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 255.27 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f7b7c95-5a1d-492d-b05a-b573437bc342) + (property "Reference" "U14" (id 0) (at 255.27 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 255.27 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 255.27 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 255.27 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ef2002a2-145e-44de-9d51-cf4a40ca6f67)) + (pin "2" (uuid 22367f09-63b5-4aea-bab7-cd2682895cb4)) + (pin "3" (uuid 910e3a8f-995f-4580-b0a4-f1e3346bd382)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 285.75 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 81c9cfce-b6c0-466d-88ce-04813e4d64dd) + (property "Reference" "U25" (id 0) (at 285.75 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 285.75 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 285.75 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 285.75 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 31a3ce5a-5938-404b-826d-6a19e6c553d2)) + (pin "2" (uuid 7c4a1c71-f83c-45eb-89cb-e433dbd43e61)) + (pin "3" (uuid 7245c847-d000-4063-b5f2-bf179f5b2ab8)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 269.24 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 827acdc3-ca29-41bf-ad3c-f223b31c6652) + (property "Reference" "U18" (id 0) (at 269.24 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 269.24 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 270.51 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 270.51 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8d32c0a8-4fbd-40ad-b94a-3cfdfc3cbe63)) + (pin "2" (uuid 7b221494-fbcb-402a-872f-2b946dbb8182)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 273.05 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 96f8a4e4-e444-4af5-9946-906ab7cf8db1) + (property "Reference" "U21" (id 0) (at 273.05 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 273.05 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 274.32 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 274.32 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 701b6734-aa22-4c70-b415-3790d489e430)) + (pin "2" (uuid 1a754233-2384-46a1-8e11-c6e096ad2b7c)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 302.26 219.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a5ffa2c-3566-4f9a-aafc-c4a4f6363ac2) + (property "Reference" "U32" (id 0) (at 302.26 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 302.26 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 302.26 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 302.26 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8d681647-1f70-4428-93c6-c059d646d775)) + (pin "2" (uuid f2a9115b-0f4e-4cb8-b383-ae887d5e08bd)) + (pin "3" (uuid 6eadea87-078f-48f7-a3b3-366521292821)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 72.39 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a328421a-b41e-46d5-88e9-483680ba3b76) + (property "Reference" "U3" (id 0) (at 72.39 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 72.39 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 73.66 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 73.66 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 21fa2ac0-f5a1-48f1-8870-116c3ccc7a1d)) + (pin "2" (uuid 66768c88-63a4-4012-9d6c-8454c4fda5f2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 40.64 146.05 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab3f990d-855a-4ff2-9c99-f3e8db44f336) + (property "Reference" "U1" (id 0) (at 41.275 140.97 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 41.275 143.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 40.64 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 40.64 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid df1408c2-cc52-4321-a0c7-b1217cc5af5d)) + (pin "2" (uuid 43b5bd86-4047-4e21-aee2-f6d4e85a462b)) + (pin "3" (uuid 24808f85-d4d9-4752-951e-f05026c54a1b)) + (pin "4" (uuid 2f473d4f-7ec6-4438-a8d0-9570ac4ebba0)) + (pin "5" (uuid 9d87616a-2d5e-49da-9876-165f1c736a9c)) + (pin "6" (uuid eb972a53-ef66-4d3e-a6b3-31ac20b555a2)) + (pin "7" (uuid 8345eb14-8acb-48d9-8b28-221c023125cc)) + (pin "8" (uuid 65067280-7bf0-4f07-9880-4f0e3012cd26)) + (pin "9" (uuid 91131d9c-5643-47ca-9e82-efe66d0508c2)) + (pin "10" (uuid cc942a27-9c5c-4c32-a194-c9bca030a9c6)) + (pin "11" (uuid fd35ec92-1202-4030-86f8-ba8177e7cee6)) + (pin "12" (uuid b4455bd2-8582-499b-957b-503cf5a6578d)) + (pin "13" (uuid 4f2846f0-445b-4330-b243-d16794bf7ec3)) + (pin "14" (uuid f48135f5-dc33-4594-8ff5-eea070f956d7)) + (pin "15" (uuid a509fd21-9f3e-4880-abef-be806bc66dbc)) + (pin "16" (uuid 25aae7a4-0776-4757-b644-64efdd4e4325)) + (pin "17" (uuid e216169f-51b3-4b87-a1e0-3a918c48f4f7)) + (pin "18" (uuid 3d874d09-f150-4d73-9fc6-6450240d737f)) + (pin "19" (uuid 853100a2-b883-429a-95d7-13a023d609e3)) + (pin "20" (uuid 10298b48-8f91-4e2f-86ed-d7ca33d811d6)) + (pin "21" (uuid 1c409ffc-8c29-4b21-a48d-2fd7cb8306a2)) + (pin "22" (uuid b414c64f-d291-4455-92b9-086e87ddb75c)) + (pin "23" (uuid e77a2711-f293-4dd6-9c80-f5df8d073055)) + (pin "24" (uuid 63bd4f31-b3ae-4ad7-bcf6-402bde7928f2)) + (pin "25" (uuid dd68c4d1-d1e7-4acc-abb1-5ab1f71cd7f2)) + (pin "26" (uuid 668db7a2-d73f-4599-bf5c-c7b0f32468fd)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 247.65 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ad5fda76-1e17-439e-ab76-dc756fdee2bf) + (property "Reference" "U9" (id 0) (at 247.65 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 247.65 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 247.65 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 247.65 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid af2f5b42-aca2-4216-92a5-7ca36df4867d)) + (pin "2" (uuid 9ec04264-b954-42b0-a1d0-a2dc0ed7f241)) + (pin "3" (uuid cbea70a1-7b71-4a45-9999-095bab74ae06)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 41.91 186.69 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b03df520-24ce-4f75-b170-5a0d89235d32) + (property "Reference" "U1" (id 0) (at 42.545 181.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 42.545 184.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 41.91 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 41.91 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c5cf5503-a4bf-4940-b8cb-b0ee783b3ef8)) + (pin "2" (uuid 217897c9-b4a2-4a07-bf78-d3a6418cfc73)) + (pin "3" (uuid 2121285a-0658-46e1-9b9b-679312662f61)) + (pin "4" (uuid 3d210125-8422-4bbf-99b4-0ed069715113)) + (pin "5" (uuid 24a02017-f152-4ed1-a25e-4f45bdd667f4)) + (pin "6" (uuid 56e77de7-3ad2-427b-bdf5-f9c725e53421)) + (pin "7" (uuid 6670f5ca-0f6d-4da5-b6e6-87b6d5a906f1)) + (pin "8" (uuid fcf98977-e457-4cc9-9636-4b02afd59c4e)) + (pin "9" (uuid 22b96980-de1a-459a-8119-0ba23cff32b9)) + (pin "10" (uuid 7d42331c-f9ff-4e67-8bd3-cf11c0b7218c)) + (pin "11" (uuid b0bf92b8-66f8-4215-a92e-57143687178f)) + (pin "12" (uuid 60c82a1f-b665-4c99-8698-d53ec2d5e5fd)) + (pin "13" (uuid f5d4bf37-5cf6-48e9-8c3a-7f0425993349)) + (pin "14" (uuid f3a1dbcb-b8ef-4ab3-a128-d7b3af9e2f32)) + (pin "15" (uuid ed03a398-8542-422f-a2c5-08e7dc271b58)) + (pin "16" (uuid e6719a6c-5e75-445c-a125-f7adc1b40e5e)) + (pin "17" (uuid 1c157e73-6470-4431-88c4-968d87813e21)) + (pin "18" (uuid cdb0c76d-30b6-4678-b067-617dbc99021d)) + (pin "19" (uuid 30513b75-0626-471a-9f0d-f4005463a207)) + (pin "20" (uuid df114689-c1d8-43e2-94aa-32d538e0bb5b)) + (pin "21" (uuid f1c55551-b963-4d92-9bed-7f8c3e391402)) + (pin "22" (uuid 7dd31567-5f14-4707-a20b-09c0350f1fca)) + (pin "23" (uuid e620dcde-fbf4-4f10-b06a-157e5e9b6c4f)) + (pin "24" (uuid 905b943c-2b55-4124-8227-6ae963fc6930)) + (pin "25" (uuid 1c6be7bb-09f7-474a-b3a6-9b657ee2ad1f)) + (pin "26" (uuid df1ad2d3-a15a-4b4f-a782-3774fa69fc15)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 269.24 105.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bf76fdd4-f636-4d28-957a-02aee0a7bc78) + (property "Reference" "U19" (id 0) (at 269.24 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 269.24 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 270.51 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 270.51 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b43a35fe-2002-4bbc-aeda-c59fd097ed00)) + (pin "2" (uuid c2bf0bd0-90d4-46f9-bd37-f0b9abaa9e46)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 142.24 181.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bf8e4895-e37c-428c-b6f9-a7d43b0627c6) + (property "Reference" "U8" (id 0) (at 142.24 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 142.24 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 142.24 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 142.24 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c1419b22-2770-4f2e-83e4-f25260ea53e9)) + (pin "2" (uuid 625e6806-ca4b-49f8-b60f-bb226d1d3e71)) + (pin "3" (uuid e3bb8a14-deee-4052-9f59-4fd0c95765c6)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 293.37 170.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ca4acdcd-382e-4c0b-bfe0-4b8dcef60475) + (property "Reference" "U30" (id 0) (at 293.37 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 293.37 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 293.37 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 293.37 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8cfb006d-cdf5-4114-8491-6a91d218ac89)) + (pin "2" (uuid ad90370a-01d2-4699-98d7-c7f15a269dd2)) + (pin "3" (uuid c91979c3-a714-479c-b5d7-3091e90a7e26)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 133.35 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d0c24cd7-4e97-4449-9fb5-3d473afad658) + (property "Reference" "U7" (id 0) (at 133.35 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 133.35 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 133.35 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8256173c-ea58-4665-ae4a-dac8b29c37ec)) + (pin "2" (uuid e7e8d2e6-d51a-4d03-83b7-10edab980184)) + (pin "3" (uuid 12bbbf3e-78e9-4592-bbc3-0ee7904fec8b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 38.1 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d40abafd-8f04-4a91-a7ab-f87cfa79bb96) + (property "Reference" "U1" (id 0) (at 38.735 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 38.735 91.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 38.1 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 38.1 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e3f1a47-1da3-4c4d-9786-555feb000174)) + (pin "2" (uuid 32d39e72-5018-4c63-9f4f-f0c9040a022f)) + (pin "3" (uuid 7628ec62-62d4-42d5-9adb-0346c3878cad)) + (pin "4" (uuid 65850cac-781b-467a-a92a-810d175f77a5)) + (pin "5" (uuid 7951376f-c2c3-402d-a5d8-ce09c95536c0)) + (pin "6" (uuid 5dcdff8e-f096-4a2f-ab07-9766648db99c)) + (pin "7" (uuid 2ca1a883-dbb7-4576-8244-7c77271728fc)) + (pin "8" (uuid 3ecd10cd-2ea5-43ff-9fc7-22a8e97544b5)) + (pin "9" (uuid 7c179fd4-e74f-4f10-99d8-da89602e71ba)) + (pin "10" (uuid bfcb1105-3d17-4641-8806-dbfa1401ba6e)) + (pin "11" (uuid 3028c034-f8eb-4c89-bd27-0b68c033fe27)) + (pin "12" (uuid 3354883a-a4bc-475d-93bd-46af108dfcdb)) + (pin "13" (uuid cd5f8c0d-2b9a-419a-80d7-cac8180c68f7)) + (pin "14" (uuid 82ad5906-cdae-4ff0-ba2a-7cc2137f72ed)) + (pin "15" (uuid a1193050-d5f6-4a90-bb69-1479e9590703)) + (pin "16" (uuid 68c1297c-3cf9-4734-a9cb-90ceb6253be0)) + (pin "17" (uuid 07fb07a8-6501-486f-a1fb-5971c7be1071)) + (pin "18" (uuid c8145c98-4d02-457e-ab66-b88a88b65ccc)) + (pin "19" (uuid 1dfaea81-9b02-4650-87bd-1b26897109f9)) + (pin "20" (uuid d898fad1-8cfb-49d6-9998-a3118e669bcd)) + (pin "21" (uuid bf57923d-4dc9-4d17-a7ca-fcd55684126b)) + (pin "22" (uuid 412fe7a8-740d-4bdb-8a06-126b637ae371)) + (pin "23" (uuid f490b71a-8168-4c8f-b9e0-ae5adba961d4)) + (pin "24" (uuid d12cc440-032f-4ad4-b411-b6469f5d7136)) + (pin "25" (uuid 36a8fa0c-4725-4020-a1f8-c4198743ff06)) + (pin "26" (uuid 1680b55d-ccd2-416b-8a91-a4a3e6408e13)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 250.19 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d7dee486-8692-4423-8c11-063e9f1b80d3) + (property "Reference" "U11" (id 0) (at 250.19 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 250.19 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 250.19 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 250.19 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76a57426-ace4-4d01-bc38-3280849e55bd)) + (pin "2" (uuid 5319a1ab-130a-43a6-9f34-e0a9437547a0)) + (pin "3" (uuid 749ff02e-63e7-4f27-b769-8336a0178be8)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 254 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ddcf39ad-4020-434e-ac72-716adc1b2116) + (property "Reference" "U12" (id 0) (at 254 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 254 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 254 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 254 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 875ff895-7e9e-4df8-b6d1-d2ede5a4bb70)) + (pin "2" (uuid ec76f63d-028c-41f5-94a8-c3904e7c5f8d)) + (pin "3" (uuid c1d0cb96-ce05-42d7-beaa-8b1e684bf1f1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 278.13 191.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9a008f4-9c62-469b-bdda-a4f0d014a280) + (property "Reference" "U23" (id 0) (at 278.13 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 278.13 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 279.4 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 359f40a4-44af-4fd1-87f7-80adf2e67354)) + (pin "2" (uuid 20389187-bf79-4bec-b6f4-e6259d1055bf)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 283.21 217.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed6ac280-0c12-4eaf-b28c-0b45e9ba02db) + (property "Reference" "U24" (id 0) (at 283.21 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 283.21 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 284.48 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 284.48 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7bfdd420-2dfa-4080-a96d-66b41c566193)) + (pin "2" (uuid 3b311641-d079-4424-8a9a-1bd8118df254)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 41.91 172.72 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f0caba54-0e61-4982-81dc-cb9907cf312b) + (property "Reference" "U1" (id 0) (at 42.545 167.64 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 42.545 170.18 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 41.91 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 41.91 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d07f64c8-55db-4f48-9cd6-8936f83abbb6)) + (pin "2" (uuid c44df513-27fe-4f1b-9a02-91bfd0a20ca9)) + (pin "3" (uuid ccc684df-8e1f-411c-9d1e-a1b8daf917a8)) + (pin "4" (uuid 24bfbdfc-eb75-4ab4-8de9-6c3c7100d675)) + (pin "5" (uuid a91e1f5c-033e-453b-bc64-0e41bc2d370a)) + (pin "6" (uuid 0051c990-c69b-4d2c-9717-dadb69f9df32)) + (pin "7" (uuid 17c6dbf6-bdbe-42cc-96ce-8f13b9850461)) + (pin "8" (uuid e0afcbc7-aa93-48e0-b8c8-2c84879f6b83)) + (pin "9" (uuid 2199c19b-b3fc-452b-8994-a8139147ee4f)) + (pin "10" (uuid 5680667b-8d0f-4655-a0d5-435f23c970e5)) + (pin "11" (uuid f9423471-8293-46cc-9ee7-8d2662d6a085)) + (pin "12" (uuid 6edfce9e-69e7-4342-8595-ad3824830dc7)) + (pin "13" (uuid 101c4a26-5ee7-4a2b-a026-d9b22361c035)) + (pin "14" (uuid fa0e3044-fd77-493b-87b7-12604e4c2a70)) + (pin "15" (uuid 38d780ac-4a3e-4700-a37d-408db38712c9)) + (pin "16" (uuid a7ea57f6-2518-43f6-87fe-b98683cac799)) + (pin "17" (uuid 101e4b2a-1768-4921-bcd7-49dd6b150529)) + (pin "18" (uuid 5b665634-ae54-45f4-a830-a01ff255b8b2)) + (pin "19" (uuid 26190a54-d052-4961-bac9-fb9ce4341f87)) + (pin "20" (uuid c7203568-f72b-4627-bcee-705beb9d908e)) + (pin "21" (uuid af6c35c4-e7dd-424e-aa64-d81812d621ba)) + (pin "22" (uuid 7b43663b-3f23-4452-ad25-ba45081228ab)) + (pin "23" (uuid 9a96b5be-1d78-4162-a946-102f2b6aaecb)) + (pin "24" (uuid 2280a18a-2bc1-40d8-95fe-7a23e7a8e37c)) + (pin "25" (uuid 7c703376-8589-4d31-afd3-739df47bce56)) + (pin "26" (uuid b2a4a885-42aa-4979-b142-8d72cf3a8ebc)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 288.29 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f2547dca-a61c-49f5-b505-40f148bd7161) + (property "Reference" "U27" (id 0) (at 288.29 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 288.29 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 288.29 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 288.29 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 371beb7a-5f4d-47d2-94e7-90ddc3c96c18)) + (pin "2" (uuid 8a478745-0d95-4e08-9ebb-a63d763e9cbb)) + (pin "3" (uuid 44e3234b-080f-44da-a186-45598ab2cdb2)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 288.29 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f2cf6963-4bcf-4a90-b5b2-ed1a0dd00368) + (property "Reference" "U26" (id 0) (at 288.29 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 288.29 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 288.29 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 288.29 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58819973-6239-4baf-9c23-b37c5dde26ad)) + (pin "2" (uuid e13c8bcd-b764-4d22-b8b0-5e6c15eeb360)) + (pin "3" (uuid a9dd52d8-7275-4ae3-9c8f-58a2506f4d74)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 250.19 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f4df8f56-e303-4078-b889-17e886f2db61) + (property "Reference" "U10" (id 0) (at 250.19 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 250.19 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 250.19 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 250.19 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 62db6ba2-b79f-4cd6-b6bd-58bacab94a2b)) + (pin "2" (uuid c85c63eb-7703-4880-90ae-e0de965cfe94)) + (pin "3" (uuid c03a2eea-a549-4684-9fcd-a78d13b7a14d)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/d40abafd-8f04-4a91-a7ab-f87cfa79bb96" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/6fe99402-9a45-4c90-b49c-0839825a7b53" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/51c11922-bd7e-4e0d-a7e9-c906838db5a5" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/4bdf3e78-e5b3-403c-b76d-84395e596b37" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/658ad50f-fe56-4683-9424-38b03e16ceec" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/3b009d94-3d50-42da-afcf-5f1871b69154" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/51b9de43-8a43-4918-a715-b3b09026be92" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/37046130-df5c-4079-b0de-6586b9d162a7" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/6475161b-75e0-4929-8561-663e770e3375" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/324242b7-2cee-4034-b9db-6cf4a3bd2439" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/0baa8192-8199-4fa2-9800-d7c5cda613c5" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/ab3f990d-855a-4ff2-9c99-f3e8db44f336" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/b03df520-24ce-4f75-b170-5a0d89235d32" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/f0caba54-0e61-4982-81dc-cb9907cf312b" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/73f28c5b-ba13-4a0a-b08b-1e871ac3faac" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a328421a-b41e-46d5-88e9-483680ba3b76" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0404f955-f087-4b29-9c0d-27d516411112" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0e575601-62c4-4e13-9195-afe8177b638f" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/330d0025-5dce-4aa0-94b5-ab2c5e8fcdeb" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d0c24cd7-4e97-4449-9fb5-3d473afad658" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/bf8e4895-e37c-428c-b6f9-a7d43b0627c6" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/ad5fda76-1e17-439e-ab76-dc756fdee2bf" + (reference "U9") (unit 1) (value "d_nand") (footprint "") + ) + (path "/f4df8f56-e303-4078-b889-17e886f2db61" + (reference "U10") (unit 1) (value "d_nand") (footprint "") + ) + (path "/d7dee486-8692-4423-8c11-063e9f1b80d3" + (reference "U11") (unit 1) (value "d_nand") (footprint "") + ) + (path "/ddcf39ad-4020-434e-ac72-716adc1b2116" + (reference "U12") (unit 1) (value "d_nand") (footprint "") + ) + (path "/0a290d32-8256-4072-905b-d150def2953f" + (reference "U13") (unit 1) (value "d_nand") (footprint "") + ) + (path "/7f7b7c95-5a1d-492d-b05a-b573437bc342" + (reference "U14") (unit 1) (value "d_nand") (footprint "") + ) + (path "/0558d13d-d04e-4906-a231-e0a384283931" + (reference "U15") (unit 1) (value "d_nand") (footprint "") + ) + (path "/4b69e7fa-30c4-4d2f-bec5-4b7207ae23bb" + (reference "U16") (unit 1) (value "d_nand") (footprint "") + ) + (path "/46ebd5a4-041f-4daa-9e48-bc24f2991a7e" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/827acdc3-ca29-41bf-ad3c-f223b31c6652" + (reference "U18") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bf76fdd4-f636-4d28-957a-02aee0a7bc78" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/696a1951-7215-4859-8ca1-f78fc4facd9b" + (reference "U20") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/96f8a4e4-e444-4af5-9946-906ab7cf8db1" + (reference "U21") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1cfee459-68fd-46f9-a607-0c5833858918" + (reference "U22") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e9a008f4-9c62-469b-bdda-a4f0d014a280" + (reference "U23") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ed6ac280-0c12-4eaf-b28c-0b45e9ba02db" + (reference "U24") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/81c9cfce-b6c0-466d-88ce-04813e4d64dd" + (reference "U25") (unit 1) (value "d_nand") (footprint "") + ) + (path "/f2cf6963-4bcf-4a90-b5b2-ed1a0dd00368" + (reference "U26") (unit 1) (value "d_nand") (footprint "") + ) + (path "/f2547dca-a61c-49f5-b505-40f148bd7161" + (reference "U27") (unit 1) (value "d_nand") (footprint "") + ) + (path "/4297a1ad-84c5-4c01-8144-d0624375079d" + (reference "U28") (unit 1) (value "d_nand") (footprint "") + ) + (path "/06696cd8-4107-4bb1-8493-abdc74d92d26" + (reference "U29") (unit 1) (value "d_nand") (footprint "") + ) + (path "/ca4acdcd-382e-4c0b-bfe0-4b8dcef60475" + (reference "U30") (unit 1) (value "d_nand") (footprint "") + ) + (path "/78088708-9f83-4f7e-a7a5-ab96037d3e61" + (reference "U31") (unit 1) (value "d_nand") (footprint "") + ) + (path "/9a5ffa2c-3566-4f9a-aafc-c4a4f6363ac2" + (reference "U32") (unit 1) (value "d_nand") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74LS156/SN74LS156.sub b/library/SubcircuitLibrary/SN74LS156/SN74LS156.sub new file mode 100644 index 000000000..ccf280429 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS156/SN74LS156.sub @@ -0,0 +1,130 @@ +* Subcircuit SN74LS156 +.subckt SN74LS156 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ +.title kicad schematic +* u25 net-_u17-pad2_ net-_u25-pad2_ net-_u1-pad7_ d_nand +* u28 net-_u20-pad2_ net-_u25-pad2_ net-_u1-pad4_ d_nand +* u26 net-_u18-pad2_ net-_u25-pad2_ net-_u1-pad6_ d_nand +* u29 net-_u21-pad2_ net-_u29-pad2_ net-_u1-pad9_ d_nand +* u27 net-_u19-pad2_ net-_u25-pad2_ net-_u1-pad5_ d_nand +* u9 net-_u10-pad1_ net-_u11-pad2_ net-_u17-pad1_ d_nand +* u17 net-_u17-pad1_ net-_u17-pad2_ d_inverter +* u30 net-_u22-pad2_ net-_u29-pad2_ net-_u1-pad10_ d_nand +* u31 net-_u23-pad2_ net-_u29-pad2_ net-_u1-pad11_ d_nand +* u32 net-_u24-pad2_ net-_u29-pad2_ net-_u1-pad12_ d_nand +* u16 net-_u1-pad3_ net-_u1-pad13_ net-_u16-pad3_ d_nand +* u23 net-_u15-pad3_ net-_u23-pad2_ d_inverter +* u24 net-_u16-pad3_ net-_u24-pad2_ d_inverter +* u7 net-_u5-pad2_ net-_u1-pad1_ net-_u25-pad2_ d_and +* u8 net-_u6-pad2_ net-_u4-pad2_ net-_u29-pad2_ d_and +* u5 net-_u1-pad2_ net-_u5-pad2_ d_inverter +* u4 net-_u1-pad14_ net-_u4-pad2_ d_inverter +* u6 net-_u1-pad15_ net-_u6-pad2_ d_inverter +* u3 net-_u1-pad13_ net-_u11-pad2_ d_inverter +* u2 net-_u1-pad3_ net-_u10-pad1_ d_inverter +* u10 net-_u10-pad1_ net-_u1-pad13_ net-_u10-pad3_ d_nand +* u18 net-_u10-pad3_ net-_u18-pad2_ d_inverter +* u11 net-_u1-pad3_ net-_u11-pad2_ net-_u11-pad3_ d_nand +* u21 net-_u13-pad3_ net-_u21-pad2_ d_inverter +* u14 net-_u10-pad1_ net-_u1-pad13_ net-_u14-pad3_ d_nand +* u12 net-_u1-pad3_ net-_u1-pad13_ net-_u12-pad3_ d_nand +* u13 net-_u10-pad1_ net-_u11-pad2_ net-_u13-pad3_ d_nand +* u19 net-_u11-pad3_ net-_u19-pad2_ d_inverter +* u20 net-_u12-pad3_ net-_u20-pad2_ d_inverter +* u15 net-_u1-pad3_ net-_u11-pad2_ net-_u15-pad3_ d_nand +* u22 net-_u14-pad3_ net-_u22-pad2_ d_inverter +a1 [net-_u17-pad2_ net-_u25-pad2_ ] net-_u1-pad7_ u25 +a2 [net-_u20-pad2_ net-_u25-pad2_ ] net-_u1-pad4_ u28 +a3 [net-_u18-pad2_ net-_u25-pad2_ ] net-_u1-pad6_ u26 +a4 [net-_u21-pad2_ net-_u29-pad2_ ] net-_u1-pad9_ u29 +a5 [net-_u19-pad2_ net-_u25-pad2_ ] net-_u1-pad5_ u27 +a6 [net-_u10-pad1_ net-_u11-pad2_ ] net-_u17-pad1_ u9 +a7 net-_u17-pad1_ net-_u17-pad2_ u17 +a8 [net-_u22-pad2_ net-_u29-pad2_ ] net-_u1-pad10_ u30 +a9 [net-_u23-pad2_ net-_u29-pad2_ ] net-_u1-pad11_ u31 +a10 [net-_u24-pad2_ net-_u29-pad2_ ] net-_u1-pad12_ u32 +a11 [net-_u1-pad3_ net-_u1-pad13_ ] net-_u16-pad3_ u16 +a12 net-_u15-pad3_ net-_u23-pad2_ u23 +a13 net-_u16-pad3_ net-_u24-pad2_ u24 +a14 [net-_u5-pad2_ net-_u1-pad1_ ] net-_u25-pad2_ u7 +a15 [net-_u6-pad2_ net-_u4-pad2_ ] net-_u29-pad2_ u8 +a16 net-_u1-pad2_ net-_u5-pad2_ u5 +a17 net-_u1-pad14_ net-_u4-pad2_ u4 +a18 net-_u1-pad15_ net-_u6-pad2_ u6 +a19 net-_u1-pad13_ net-_u11-pad2_ u3 +a20 net-_u1-pad3_ net-_u10-pad1_ u2 +a21 [net-_u10-pad1_ net-_u1-pad13_ ] net-_u10-pad3_ u10 +a22 net-_u10-pad3_ net-_u18-pad2_ u18 +a23 [net-_u1-pad3_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a24 net-_u13-pad3_ net-_u21-pad2_ u21 +a25 [net-_u10-pad1_ net-_u1-pad13_ ] net-_u14-pad3_ u14 +a26 [net-_u1-pad3_ net-_u1-pad13_ ] net-_u12-pad3_ u12 +a27 [net-_u10-pad1_ net-_u11-pad2_ ] net-_u13-pad3_ u13 +a28 net-_u11-pad3_ net-_u19-pad2_ u19 +a29 net-_u12-pad3_ net-_u20-pad2_ u20 +a30 [net-_u1-pad3_ net-_u11-pad2_ ] net-_u15-pad3_ u15 +a31 net-_u14-pad3_ net-_u22-pad2_ u22 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u25 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u28 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u26 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u29 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u27 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u9 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u30 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u31 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u32 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u16 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u10 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u11 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u14 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u12 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u15 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u22 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN74LS156 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS156/SN74LS156_Previous_Values.xml b/library/SubcircuitLibrary/SN74LS156/SN74LS156_Previous_Values.xml new file mode 100644 index 000000000..32af6ea48 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS156/SN74LS156_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_nandd_nandd_nandd_nandd_nandd_nandd_inverterd_nandd_nandd_nandd_nandd_inverterd_inverterd_andd_andd_inverterd_inverterd_inverterd_inverterd_inverterd_nandd_inverterd_nandd_inverterd_nandd_nandd_nandd_inverterd_inverterd_nandd_inverter \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS156/_autosave-SN74LS156.sch b/library/SubcircuitLibrary/SN74LS156/_autosave-SN74LS156.sch new file mode 100644 index 000000000..9391c0948 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS156/_autosave-SN74LS156.sch @@ -0,0 +1,604 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A3 16535 11693 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 8400 4200 +Connection ~ 8400 5750 +Connection ~ 9000 3500 +Connection ~ 9000 4450 +Connection ~ 9000 6800 +Connection ~ 9000 7800 +Wire Wire Line + 1750 3700 4800 3700 +Wire Wire Line + 1800 3050 2650 3050 +Wire Wire Line + 1900 6800 2650 6800 +Wire Wire Line + 1900 7350 2600 7350 +Wire Wire Line + 2600 7350 2600 7400 +Wire Wire Line + 3200 7400 5150 7400 +Wire Wire Line + 3250 3050 4800 3050 +Wire Wire Line + 3250 6800 5150 6800 +Wire Wire Line + 4800 3050 4800 3300 +Wire Wire Line + 4800 3700 4800 3400 +Wire Wire Line + 5150 6800 5150 7050 +Wire Wire Line + 5150 7400 5150 7150 +Wire Wire Line + 8400 2350 8400 4200 +Wire Wire Line + 8400 4200 9400 4200 +Wire Wire Line + 8400 5750 8400 4200 +Wire Wire Line + 8400 5750 8400 7600 +Wire Wire Line + 9000 2550 9000 3500 +Wire Wire Line + 9000 3500 10900 3500 +Wire Wire Line + 9000 4450 9000 3500 +Wire Wire Line + 9000 5250 9000 4450 +Wire Wire Line + 9000 6050 9000 6800 +Wire Wire Line + 9000 6800 11100 6800 +Wire Wire Line + 9000 7800 9000 6800 +Wire Wire Line + 9000 8850 9000 7800 +Wire Wire Line + 9300 2350 8400 2350 +Wire Wire Line + 9550 5750 8400 5750 +Wire Wire Line + 9750 7600 8400 7600 +Wire Wire Line + 10800 2400 10800 2550 +Wire Wire Line + 10800 2550 9000 2550 +Wire Wire Line + 10900 3500 10900 3350 +Wire Wire Line + 10900 4250 10900 4450 +Wire Wire Line + 10900 4450 9000 4450 +Wire Wire Line + 11050 5100 11050 5250 +Wire Wire Line + 11050 5250 9000 5250 +Wire Wire Line + 11050 5800 11050 6050 +Wire Wire Line + 11050 6050 9000 6050 +Wire Wire Line + 11100 6800 11100 6700 +Wire Wire Line + 11250 7650 11250 7800 +Wire Wire Line + 11250 7800 9000 7800 +Wire Wire Line + 11450 8650 11450 8850 +Wire Wire Line + 11450 8850 9000 8850 +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 1500 3700 +F 0 "U?" H 1525 3900 30 0000 C CNN +F 1 "PORT" H 1525 3800 30 0000 C CNN +F 2 "" H 1500 3700 60 0000 C CNN +F 3 "" H 1500 3700 60 0000 C CNN + 1 1500 3700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 2 1 00000000 +P 1550 3050 +F 0 "U?" H 1575 3250 30 0000 C CNN +F 1 "PORT" H 1575 3150 30 0000 C CNN +F 2 "" H 1550 3050 60 0000 C CNN +F 3 "" H 1550 3050 60 0000 C CNN + 2 1550 3050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 3 1 00000000 +P 1550 4700 +F 0 "U?" H 1575 4900 30 0000 C CNN +F 1 "PORT" H 1575 4800 30 0000 C CNN +F 2 "" H 1550 4700 60 0000 C CNN +F 3 "" H 1550 4700 60 0000 C CNN + 3 1550 4700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 13 1 00000000 +P 1600 5750 +F 0 "U?" H 1625 5950 30 0000 C CNN +F 1 "PORT" H 1625 5850 30 0000 C CNN +F 2 "" H 1600 5750 60 0000 C CNN +F 3 "" H 1600 5750 60 0000 C CNN + 13 1600 5750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 15 1 00000000 +P 1650 6800 +F 0 "U?" H 1675 7000 30 0000 C CNN +F 1 "PORT" H 1675 6900 30 0000 C CNN +F 2 "" H 1650 6800 60 0000 C CNN +F 3 "" H 1650 6800 60 0000 C CNN + 15 1650 6800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 14 1 00000000 +P 1650 7350 +F 0 "U?" H 1675 7550 30 0000 C CNN +F 1 "PORT" H 1675 7450 30 0000 C CNN +F 2 "" H 1650 7350 60 0000 C CNN +F 3 "" H 1650 7350 60 0000 C CNN + 14 1650 7350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 7 1 00000000 +P 14350 2350 +F 0 "U?" H 14200 2325 30 0000 R CNN +F 1 "PORT" H 14200 2425 30 0000 R CNN +F 2 "" H 14350 2350 60 0000 C CNN +F 3 "" H 14350 2350 60 0000 C CNN + 7 14350 2350 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 6 1 00000000 +P 14350 3300 +F 0 "U?" H 14200 3275 30 0000 R CNN +F 1 "PORT" H 14200 3375 30 0000 R CNN +F 2 "" H 14350 3300 60 0000 C CNN +F 3 "" H 14350 3300 60 0000 C CNN + 6 14350 3300 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 5 1 00000000 +P 14400 4050 +F 0 "U?" H 14425 4250 30 0000 C CNN +F 1 "PORT" H 14425 4150 30 0000 C CNN +F 2 "" H 14400 4050 60 0000 C CNN +F 3 "" H 14400 4050 60 0000 C CNN + 5 14400 4050 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 4 1 00000000 +P 14450 4950 +F 0 "U?" H 14475 5150 30 0000 C CNN +F 1 "PORT" H 14475 5050 30 0000 C CNN +F 2 "" H 14450 4950 60 0000 C CNN +F 3 "" H 14450 4950 60 0000 C CNN + 4 14450 4950 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 9 1 00000000 +P 14450 5600 +F 0 "U?" H 14475 5800 30 0000 C CNN +F 1 "PORT" H 14475 5700 30 0000 C CNN +F 2 "" H 14450 5600 60 0000 C CNN +F 3 "" H 14450 5600 60 0000 C CNN + 9 14450 5600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 11 1 00000000 +P 14500 7550 +F 0 "U?" H 14350 7525 30 0000 R CNN +F 1 "PORT" H 14350 7625 30 0000 R CNN +F 2 "" H 14500 7550 60 0000 C CNN +F 3 "" H 14500 7550 60 0000 C CNN + 11 14500 7550 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 10 1 00000000 +P 14550 6550 +F 0 "U?" H 14575 6750 30 0000 C CNN +F 1 "PORT" H 14575 6650 30 0000 C CNN +F 2 "" H 14550 6550 60 0000 C CNN +F 3 "" H 14550 6550 60 0000 C CNN + 10 14550 6550 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 12 1 00000000 +P 14550 8500 +F 0 "U?" H 14400 8475 30 0000 R CNN +F 1 "PORT" H 14400 8575 30 0000 R CNN +F 2 "" H 14550 8500 60 0000 C CNN +F 3 "" H 14550 8500 60 0000 C CNN + 12 14550 8500 + -1 0 0 1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 2850 4700 +F 0 "U?" H 2850 4950 60 0000 C CNN +F 1 "d_inverter" H 2850 4800 60 0000 C CNN +F 2 "" H 2900 4650 60 0000 C CNN +F 3 "" H 2900 4650 60 0000 C CNN + 1 2850 4700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 2850 5750 +F 0 "U?" H 2850 6000 60 0000 C CNN +F 1 "d_inverter" H 2850 5850 60 0000 C CNN +F 2 "" H 2900 5700 60 0000 C CNN +F 3 "" H 2900 5700 60 0000 C CNN + 1 2850 5750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 2900 7400 +F 0 "U?" H 2900 7650 60 0000 C CNN +F 1 "d_inverter" H 2900 7500 60 0000 C CNN +F 2 "" H 2950 7350 60 0000 C CNN +F 3 "" H 2950 7350 60 0000 C CNN + 1 2900 7400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 2950 3050 +F 0 "U?" H 2950 3300 60 0000 C CNN +F 1 "d_inverter" H 2950 3150 60 0000 C CNN +F 2 "" H 3000 3000 60 0000 C CNN +F 3 "" H 3000 3000 60 0000 C CNN + 1 2950 3050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 2950 6800 +F 0 "U?" H 2950 7050 60 0000 C CNN +F 1 "d_inverter" H 2950 6900 60 0000 C CNN +F 2 "" H 3000 6750 60 0000 C CNN +F 3 "" H 3000 6750 60 0000 C CNN + 1 2950 6800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 10500 2300 +F 0 "U?" H 10500 2550 60 0000 C CNN +F 1 "d_inverter" H 10500 2400 60 0000 C CNN +F 2 "" H 10550 2250 60 0000 C CNN +F 3 "" H 10550 2250 60 0000 C CNN + 1 10500 2300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 10600 3250 +F 0 "U?" H 10600 3500 60 0000 C CNN +F 1 "d_inverter" H 10600 3350 60 0000 C CNN +F 2 "" H 10650 3200 60 0000 C CNN +F 3 "" H 10650 3200 60 0000 C CNN + 1 10600 3250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 10600 4150 +F 0 "U?" H 10600 4400 60 0000 C CNN +F 1 "d_inverter" H 10600 4250 60 0000 C CNN +F 2 "" H 10650 4100 60 0000 C CNN +F 3 "" H 10650 4100 60 0000 C CNN + 1 10600 4150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 10750 5000 +F 0 "U?" H 10750 5250 60 0000 C CNN +F 1 "d_inverter" H 10750 5100 60 0000 C CNN +F 2 "" H 10800 4950 60 0000 C CNN +F 3 "" H 10800 4950 60 0000 C CNN + 1 10750 5000 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 10750 5700 +F 0 "U?" H 10750 5950 60 0000 C CNN +F 1 "d_inverter" H 10750 5800 60 0000 C CNN +F 2 "" H 10800 5650 60 0000 C CNN +F 3 "" H 10800 5650 60 0000 C CNN + 1 10750 5700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 10800 6600 +F 0 "U?" H 10800 6850 60 0000 C CNN +F 1 "d_inverter" H 10800 6700 60 0000 C CNN +F 2 "" H 10850 6550 60 0000 C CNN +F 3 "" H 10850 6550 60 0000 C CNN + 1 10800 6600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 10950 7550 +F 0 "U?" H 10950 7800 60 0000 C CNN +F 1 "d_inverter" H 10950 7650 60 0000 C CNN +F 2 "" H 11000 7500 60 0000 C CNN +F 3 "" H 11000 7500 60 0000 C CNN + 1 10950 7550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_inverter U? +U 1 1 00000000 +P 11150 8550 +F 0 "U?" H 11150 8800 60 0000 C CNN +F 1 "d_inverter" H 11150 8650 60 0000 C CNN +F 2 "" H 11200 8500 60 0000 C CNN +F 3 "" H 11200 8500 60 0000 C CNN + 1 11150 8550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_and U? +U 1 1 00000000 +P 5250 3400 +F 0 "U?" H 5250 3750 60 0000 C CNN +F 1 "d_and" H 5250 3600 60 0000 C CNN +F 2 "" H 5250 3400 60 0000 C CNN +F 3 "" H 5250 3400 60 0000 C CNN + 1 5250 3400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 5600 7150 +F 0 "U?" H 5600 7500 60 0000 C CNN +F 1 "d_nand" H 5600 7350 60 0000 C CNN +F 2 "" H 5600 7150 60 0000 C CNN +F 3 "" H 5600 7150 60 0000 C CNN + 1 5600 7150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 9750 2350 +F 0 "U?" H 9750 2700 60 0000 C CNN +F 1 "d_nand" H 9750 2550 60 0000 C CNN +F 2 "" H 9750 2350 60 0000 C CNN +F 3 "" H 9750 2350 60 0000 C CNN + 1 9750 2350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 9850 3300 +F 0 "U?" H 9850 3650 60 0000 C CNN +F 1 "d_nand" H 9850 3500 60 0000 C CNN +F 2 "" H 9850 3300 60 0000 C CNN +F 3 "" H 9850 3300 60 0000 C CNN + 1 9850 3300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 9850 4200 +F 0 "U?" H 9850 4550 60 0000 C CNN +F 1 "d_nand" H 9850 4400 60 0000 C CNN +F 2 "" H 9850 4200 60 0000 C CNN +F 3 "" H 9850 4200 60 0000 C CNN + 1 9850 4200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 10000 5050 +F 0 "U?" H 10000 5400 60 0000 C CNN +F 1 "d_nand" H 10000 5250 60 0000 C CNN +F 2 "" H 10000 5050 60 0000 C CNN +F 3 "" H 10000 5050 60 0000 C CNN + 1 10000 5050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 10000 5750 +F 0 "U?" H 10000 6100 60 0000 C CNN +F 1 "d_nand" H 10000 5950 60 0000 C CNN +F 2 "" H 10000 5750 60 0000 C CNN +F 3 "" H 10000 5750 60 0000 C CNN + 1 10000 5750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 10050 6650 +F 0 "U?" H 10050 7000 60 0000 C CNN +F 1 "d_nand" H 10050 6850 60 0000 C CNN +F 2 "" H 10050 6650 60 0000 C CNN +F 3 "" H 10050 6650 60 0000 C CNN + 1 10050 6650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 10200 7600 +F 0 "U?" H 10200 7950 60 0000 C CNN +F 1 "d_nand" H 10200 7800 60 0000 C CNN +F 2 "" H 10200 7600 60 0000 C CNN +F 3 "" H 10200 7600 60 0000 C CNN + 1 10200 7600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 10400 8600 +F 0 "U?" H 10400 8950 60 0000 C CNN +F 1 "d_nand" H 10400 8800 60 0000 C CNN +F 2 "" H 10400 8600 60 0000 C CNN +F 3 "" H 10400 8600 60 0000 C CNN + 1 10400 8600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 11250 2400 +F 0 "U?" H 11250 2750 60 0000 C CNN +F 1 "d_nand" H 11250 2600 60 0000 C CNN +F 2 "" H 11250 2400 60 0000 C CNN +F 3 "" H 11250 2400 60 0000 C CNN + 1 11250 2400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 11350 3350 +F 0 "U?" H 11350 3700 60 0000 C CNN +F 1 "d_nand" H 11350 3550 60 0000 C CNN +F 2 "" H 11350 3350 60 0000 C CNN +F 3 "" H 11350 3350 60 0000 C CNN + 1 11350 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 11350 4250 +F 0 "U?" H 11350 4600 60 0000 C CNN +F 1 "d_nand" H 11350 4450 60 0000 C CNN +F 2 "" H 11350 4250 60 0000 C CNN +F 3 "" H 11350 4250 60 0000 C CNN + 1 11350 4250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 11500 5100 +F 0 "U?" H 11500 5450 60 0000 C CNN +F 1 "d_nand" H 11500 5300 60 0000 C CNN +F 2 "" H 11500 5100 60 0000 C CNN +F 3 "" H 11500 5100 60 0000 C CNN + 1 11500 5100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 11500 5800 +F 0 "U?" H 11500 6150 60 0000 C CNN +F 1 "d_nand" H 11500 6000 60 0000 C CNN +F 2 "" H 11500 5800 60 0000 C CNN +F 3 "" H 11500 5800 60 0000 C CNN + 1 11500 5800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 11550 6700 +F 0 "U?" H 11550 7050 60 0000 C CNN +F 1 "d_nand" H 11550 6900 60 0000 C CNN +F 2 "" H 11550 6700 60 0000 C CNN +F 3 "" H 11550 6700 60 0000 C CNN + 1 11550 6700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 11700 7650 +F 0 "U?" H 11700 8000 60 0000 C CNN +F 1 "d_nand" H 11700 7850 60 0000 C CNN +F 2 "" H 11700 7650 60 0000 C CNN +F 3 "" H 11700 7650 60 0000 C CNN + 1 11700 7650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U? +U 1 1 00000000 +P 11900 8650 +F 0 "U?" H 11900 9000 60 0000 C CNN +F 1 "d_nand" H 11900 8850 60 0000 C CNN +F 2 "" H 11900 8650 60 0000 C CNN +F 3 "" H 11900 8650 60 0000 C CNN + 1 11900 8650 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS156/analysis b/library/SubcircuitLibrary/SN74LS156/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS156/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS25/SN74LS25.cir b/library/SubcircuitLibrary/SN74LS25/SN74LS25.cir new file mode 100644 index 000000000..ecac5df36 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS25/SN74LS25.cir @@ -0,0 +1,15 @@ +.title KiCad schematic +U3 Net-_U1-Pad2_ Net-_U1-Pad4_ Net-_U3-Pad3_ d_or +U2 Net-_U1-Pad1_ Net-_U1-Pad3_ Net-_U2-Pad3_ d_or +U4 Net-_U2-Pad3_ Net-_U1-Pad5_ Net-_U4-Pad3_ d_or +U5 Net-_U3-Pad3_ Net-_U1-Pad6_ Net-_U5-Pad3_ d_or +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ PORT +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U1-Pad11_ d_and +U9 Net-_U1-Pad9_ Net-_U12-Pad2_ d_buffer +U8 Net-_U6-Pad3_ Net-_U12-Pad1_ d_buffer +U13 Net-_U10-Pad2_ Net-_U11-Pad2_ Net-_U1-Pad12_ d_and +U11 Net-_U1-Pad10_ Net-_U11-Pad2_ d_buffer +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ d_buffer +U6 Net-_U4-Pad3_ Net-_U1-Pad7_ Net-_U6-Pad3_ d_or +U7 Net-_U5-Pad3_ Net-_U1-Pad8_ Net-_U10-Pad1_ d_or +.end diff --git a/library/SubcircuitLibrary/SN74LS25/SN74LS25.cir.out b/library/SubcircuitLibrary/SN74LS25/SN74LS25.cir.out new file mode 100644 index 000000000..8f7e43ba3 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS25/SN74LS25.cir.out @@ -0,0 +1,60 @@ +.title kicad schematic + +* u3 net-_u1-pad2_ net-_u1-pad4_ net-_u3-pad3_ d_or +* u2 net-_u1-pad1_ net-_u1-pad3_ net-_u2-pad3_ d_or +* u4 net-_u2-pad3_ net-_u1-pad5_ net-_u4-pad3_ d_or +* u5 net-_u3-pad3_ net-_u1-pad6_ net-_u5-pad3_ d_or +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ port +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u1-pad11_ d_and +* u9 net-_u1-pad9_ net-_u12-pad2_ d_buffer +* u8 net-_u6-pad3_ net-_u12-pad1_ d_buffer +* u13 net-_u10-pad2_ net-_u11-pad2_ net-_u1-pad12_ d_and +* u11 net-_u1-pad10_ net-_u11-pad2_ d_buffer +* u10 net-_u10-pad1_ net-_u10-pad2_ d_buffer +* u6 net-_u4-pad3_ net-_u1-pad7_ net-_u6-pad3_ d_or +* u7 net-_u5-pad3_ net-_u1-pad8_ net-_u10-pad1_ d_or +a1 [net-_u1-pad2_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a2 [net-_u1-pad1_ net-_u1-pad3_ ] net-_u2-pad3_ u2 +a3 [net-_u2-pad3_ net-_u1-pad5_ ] net-_u4-pad3_ u4 +a4 [net-_u3-pad3_ net-_u1-pad6_ ] net-_u5-pad3_ u5 +a5 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u1-pad11_ u12 +a6 net-_u1-pad9_ net-_u12-pad2_ u9 +a7 net-_u6-pad3_ net-_u12-pad1_ u8 +a8 [net-_u10-pad2_ net-_u11-pad2_ ] net-_u1-pad12_ u13 +a9 net-_u1-pad10_ net-_u11-pad2_ u11 +a10 net-_u10-pad1_ net-_u10-pad2_ u10 +a11 [net-_u4-pad3_ net-_u1-pad7_ ] net-_u6-pad3_ u6 +a12 [net-_u5-pad3_ net-_u1-pad8_ ] net-_u10-pad1_ u7 +* Schematic Name: d_or, Ngspice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u2 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u8 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u11 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u10 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u7 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS25/SN74LS25.kicad_sch b/library/SubcircuitLibrary/SN74LS25/SN74LS25.kicad_sch new file mode 100644 index 000000000..61894a062 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS25/SN74LS25.kicad_sch @@ -0,0 +1,1388 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid f91a537b-da46-43ce-aa45-45fb2c5ca916) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (wire (pts (xy 250.19 53.34) (xy 250.19 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 139910b4-f3bf-4921-ba04-a0ff3d9084a2) + ) + (wire (pts (xy 71.12 86.36) (xy 212.09 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21e2cac4-d5dd-4891-950a-71f5ca9a4c93) + ) + (wire (pts (xy 207.01 54.61) (xy 207.01 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 250c3742-2e25-4129-a21c-fef07a5158bb) + ) + (wire (pts (xy 207.01 44.45) (xy 220.98 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2af24632-f3a4-4af6-ba82-8cc7c03ea0ae) + ) + (wire (pts (xy 60.96 62.23) (xy 72.39 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35bdf7be-2900-4d70-940e-206538e2b9aa) + ) + (wire (pts (xy 142.24 58.42) (xy 142.24 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d49c61c-889a-4fe4-9ab1-ee83211be29c) + ) + (wire (pts (xy 72.39 58.42) (xy 142.24 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e2f7991-99bc-4c23-9826-30fdee883482) + ) + (wire (pts (xy 71.12 95.25) (xy 220.98 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40ac63da-3f7c-480c-bfbb-6982bf8bc6a0) + ) + (wire (pts (xy 64.77 43.18) (xy 91.44 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4422bd99-7dd8-4b98-b754-b4a1b02234bd) + ) + (wire (pts (xy 66.04 57.15) (xy 66.04 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a7416a4-200f-47be-86c1-d4c699dd4ee2) + ) + (wire (pts (xy 60.96 78.74) (xy 60.96 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cc63bd9-df99-4f5d-96d4-0844b79361ad) + ) + (wire (pts (xy 60.96 78.74) (xy 184.15 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51ee5791-ae54-43d0-b92d-0fb90120388c) + ) + (wire (pts (xy 60.96 52.07) (xy 63.5 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 529263c4-e6ac-4c8f-bf47-e51c44ca1773) + ) + (wire (pts (xy 207.01 77.47) (xy 220.98 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5361cb89-b858-43d0-b98f-fe9396c06e11) + ) + (wire (pts (xy 60.96 57.15) (xy 66.04 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 553b99a6-2b26-47ae-a189-0123faa8a76e) + ) + (wire (pts (xy 184.15 55.88) (xy 184.15 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a7384db-051f-4cc6-965d-6a3663d565e7) + ) + (wire (pts (xy 139.7 36.83) (xy 135.89 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ef79d71-4a0e-4bda-8b04-3db3e1ce29f8) + ) + (wire (pts (xy 175.26 55.88) (xy 175.26 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6519c4db-2a75-4816-b4d3-cbb946271cc4) + ) + (wire (pts (xy 184.15 35.56) (xy 184.15 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6985e269-b408-4121-a1ce-da06c79cfb5f) + ) + (wire (pts (xy 250.19 44.45) (xy 250.19 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e1914c5-6c6f-4d08-980c-161ea5ac10e2) + ) + (wire (pts (xy 105.41 53.34) (xy 87.63 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70913013-11ab-4d28-8fb5-9d20e89435a3) + ) + (wire (pts (xy 66.04 50.8) (xy 92.71 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79326e6f-9064-42ff-b001-4d4356386c66) + ) + (wire (pts (xy 162.56 35.56) (xy 184.15 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bcb827b-2c45-4f22-8fab-c83ce77de577) + ) + (wire (pts (xy 91.44 33.02) (xy 91.44 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e073119-e471-45bf-9778-3bd5f2c3f3e6) + ) + (wire (pts (xy 64.77 54.61) (xy 60.96 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8281a6cf-03d8-4c01-8466-edba2d682e2e) + ) + (wire (pts (xy 92.71 43.18) (xy 92.71 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86905a1d-a294-4106-b46c-50844c2c8a51) + ) + (wire (pts (xy 175.26 76.2) (xy 184.15 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91999b67-00e3-40ed-b971-10527bd75772) + ) + (wire (pts (xy 128.27 54.61) (xy 142.24 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96a3e0a6-a7cf-421c-acd8-76e75bed7dbd) + ) + (wire (pts (xy 135.89 36.83) (xy 135.89 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a88298d-292f-4155-b75d-2b4f444f2b92) + ) + (wire (pts (xy 220.98 77.47) (xy 220.98 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9efded99-d808-4f5b-985a-475f2409de3a) + ) + (wire (pts (xy 72.39 62.23) (xy 72.39 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6238eb5-87fb-4e1e-a2db-c77525c10311) + ) + (wire (pts (xy 60.96 59.69) (xy 72.39 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6599168-b87f-4013-9c08-0d89df1a16ad) + ) + (wire (pts (xy 62.23 27.94) (xy 87.63 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a80f9555-c1c0-422c-9e16-b3926c99e6db) + ) + (wire (pts (xy 135.89 43.18) (xy 92.71 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbcf2c9a-ff4b-4b9d-9aee-cb23981ace5f) + ) + (wire (pts (xy 125.73 34.29) (xy 139.7 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd60e9f3-e3b4-4e9e-9494-748f8f7bccce) + ) + (wire (pts (xy 91.44 55.88) (xy 91.44 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2472e4b-537e-42b6-8c0e-46e5afe86d0f) + ) + (wire (pts (xy 105.41 55.88) (xy 91.44 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3c0da30-ecff-4970-b9be-5c556a33046f) + ) + (wire (pts (xy 87.63 53.34) (xy 87.63 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9532a4a-c79e-4904-bc12-60117f76c878) + ) + (wire (pts (xy 60.96 20.32) (xy 91.44 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c97bd269-85d2-4e0b-9490-fdc29abf74a0) + ) + (wire (pts (xy 165.1 55.88) (xy 175.26 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid caa72be3-00b3-483b-ac01-bf1395581616) + ) + (wire (pts (xy 102.87 33.02) (xy 91.44 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cda564bb-a0f6-41a9-afeb-562400726ca2) + ) + (wire (pts (xy 71.12 92.71) (xy 71.12 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d182e098-704b-4915-a6d4-78c13f6c0956) + ) + (wire (pts (xy 250.19 80.01) (xy 250.19 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1b1ced4-c6d8-4269-9ab1-a95cd59901fd) + ) + (wire (pts (xy 72.39 59.69) (xy 72.39 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbaabb21-6e64-4531-8510-a99196c01232) + ) + (wire (pts (xy 71.12 86.36) (xy 71.12 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc68468c-fd56-4003-8ef0-58a68ddd2cda) + ) + (wire (pts (xy 62.23 49.53) (xy 60.96 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1326eac-a3f6-4a2e-862a-38e8b0158348) + ) + (wire (pts (xy 220.98 59.69) (xy 212.09 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2fb0405-6102-41aa-8fc6-cb3568539aca) + ) + (wire (pts (xy 212.09 59.69) (xy 212.09 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7025596-f8ec-430a-bbf7-840eef3aa73e) + ) + (wire (pts (xy 64.77 43.18) (xy 64.77 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb08dd6b-d28a-44fd-90ee-32becf8a7d02) + ) + (wire (pts (xy 60.96 46.99) (xy 60.96 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0c6a339-83e4-45b1-a47c-2c552ee8404c) + ) + (wire (pts (xy 63.5 35.56) (xy 102.87 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f194b34b-2e8f-434f-a32d-a841c495d27d) + ) + (wire (pts (xy 72.39 66.04) (xy 184.15 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f48ce3de-095e-464c-987b-116ca91fd686) + ) + (wire (pts (xy 250.19 88.9) (xy 250.19 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4b023de-f6d3-470e-9f81-cfb81a604f1f) + ) + (wire (pts (xy 62.23 27.94) (xy 62.23 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f51bc8d3-1e19-4df1-af57-0da1a2213454) + ) + (wire (pts (xy 63.5 52.07) (xy 63.5 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f82a3e2e-a63e-439e-8ec7-beb4c68ea167) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 195.58 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 09ad47cb-688f-4960-8107-b9e6ba5d2e3a) + (property "Reference" "U7" (id 0) (at 195.58 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 195.58 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 195.58 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 195.58 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d8c38822-5f90-473a-b6b4-ac1e68e1a4c5)) + (pin "2" (uuid 80d0e918-bd2b-407f-b9e4-0e6c1eefef09)) + (pin "3" (uuid 359cfc3c-21d5-4d3d-b229-5a0a8ef0cb2d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 279.4 52.07 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1ce2cad3-08b2-4910-9ba2-1258a8f9e28a) + (property "Reference" "U1" (id 0) (at 283.21 51.435 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 283.21 53.975 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 279.4 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc5728ef-5a4b-40da-8ed9-f80d097a6383)) + (pin "2" (uuid 4c1d6456-b512-4967-a0c7-71fd3fbae000)) + (pin "3" (uuid 97410fee-78e7-4100-9827-96d9ede75fc3)) + (pin "4" (uuid e53b1767-9f24-40db-99d6-27e942719e41)) + (pin "5" (uuid ecb2df02-03d8-4b31-9097-2bb32f00cd73)) + (pin "6" (uuid b1baa900-205b-4cba-a37e-2ee9f25f2135)) + (pin "7" (uuid 654b56e5-7b41-4d27-90d1-a0bf8b271fdb)) + (pin "8" (uuid 3d75d45c-3a77-4f6e-b8b6-2e9b79237b33)) + (pin "9" (uuid d34b1174-81df-4e31-8a7b-f57399a53ab8)) + (pin "10" (uuid 123de3fe-4e0f-4c9d-a29a-e809c0205bae)) + (pin "11" (uuid 59069ff8-b24c-4268-bd0d-be4fc99e2f1a)) + (pin "12" (uuid c087241f-892d-49f0-a985-19314a66a813)) + (pin "13" (uuid 2a98d3b2-e588-4225-965e-a9e33f4c39aa)) + (pin "14" (uuid bb6f9e92-9ce2-4efc-8405-913cd2cc3d3d)) + (pin "15" (uuid e1be3510-e848-4ead-b18d-29d2eba851c3)) + (pin "16" (uuid e222fce7-2590-466c-808b-6c5d41a93ccd)) + (pin "17" (uuid 1e2b3aca-32d7-4a41-9174-f0dcf53bff00)) + (pin "18" (uuid f427e03a-fdaf-4b11-80b9-5085943d24e6)) + (pin "19" (uuid 2df47b75-fa1f-49de-9c0a-82e92745f7a8)) + (pin "20" (uuid fa20dd13-1087-480b-b52e-90c2e16f38f2)) + (pin "21" (uuid 631f455b-766d-49b0-95c2-8bfd16c9ded3)) + (pin "22" (uuid 50ab41e6-36a3-4b7d-a7c6-e4e1c0b8365f)) + (pin "23" (uuid a0857f62-75bb-46ef-bb25-ff96277c986e)) + (pin "24" (uuid 2561fe89-1e1b-44e8-9764-4cd00c2d67e4)) + (pin "25" (uuid 49f25b36-3b08-45f1-9a40-02f26bc93e85)) + (pin "26" (uuid bf115c5d-592e-4147-bbde-0b4d249c127c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 261.62 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e934b59-0dce-4c47-a37c-571e2595123b) + (property "Reference" "U13" (id 0) (at 261.62 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 261.62 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 261.62 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 261.62 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 77d57924-064a-4aaf-9e3a-dd99afa1b27f)) + (pin "2" (uuid 3077aaf9-ef60-47bd-848f-1c2a5f6f75b9)) + (pin "3" (uuid d13d6579-0cce-45cc-a945-968eafe2fd76)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 54.61 49.53 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38516805-86a8-4283-af38-674c554cfdd7) + (property "Reference" "U1" (id 0) (at 55.245 44.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 55.245 46.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 54.61 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb6938ad-e2bd-4643-8393-b00f2024528c)) + (pin "2" (uuid c7f56143-8d7e-49bb-970c-86687fd1b14a)) + (pin "3" (uuid 5aa23e27-e5a9-463e-94fa-19c84bf6574b)) + (pin "4" (uuid 18b8ff6e-d694-4dfa-8f9c-cef10c086db3)) + (pin "5" (uuid cc2a0d41-fc87-4544-bece-2022c5897221)) + (pin "6" (uuid b6effb75-c9c6-46ac-9de6-4d39e33b1f56)) + (pin "7" (uuid 47b6033d-c674-410a-93b6-ff1dab1a1da5)) + (pin "8" (uuid f3d1a090-5861-4d31-9f2f-dbfdd0c823d8)) + (pin "9" (uuid c471cfcb-2040-4db8-a65c-e598ec51e534)) + (pin "10" (uuid c085f627-f980-4868-be37-0dcd7cbded4f)) + (pin "11" (uuid 8f79b88d-f3f3-47f7-8add-6f7052d0ecf4)) + (pin "12" (uuid c9494b6d-da11-4a9e-8af4-59c6ba950429)) + (pin "13" (uuid 5f82796f-6033-435c-baa0-fc63ccf0dedf)) + (pin "14" (uuid b265cce1-03c0-429f-a3e4-074d78f7e5d6)) + (pin "15" (uuid 029a7267-1283-419e-856e-27395e3ebb1b)) + (pin "16" (uuid f55095d2-fdfe-49ee-aeb2-23950f4000d1)) + (pin "17" (uuid 1e046d65-bb0c-4ea6-b0d2-d1a159d67351)) + (pin "18" (uuid 904887c3-0c23-4531-be48-6c2e6e58dacb)) + (pin "19" (uuid bfa169af-f85d-43e6-a9e8-f4462ebffb9f)) + (pin "20" (uuid faa45d69-0996-4ed3-9403-3308c9631f6f)) + (pin "21" (uuid b5b2431d-5e48-450b-8d16-02478ec67e3a)) + (pin "22" (uuid 9b565ea1-99a4-42ea-a09f-ad7a48ab6835)) + (pin "23" (uuid 63fd0132-b2ef-41ae-8f54-4208877693a8)) + (pin "24" (uuid 3ec3de1d-4206-4c0c-bf13-92f813a02191)) + (pin "25" (uuid 0ae4b80f-2c9d-46ec-b388-d2afac6e8322)) + (pin "26" (uuid bea5067f-711f-454b-a9c2-67bf59a34740)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 64.77 92.71 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 575fe671-1eaa-473f-9042-6762cdf0390f) + (property "Reference" "U1" (id 0) (at 65.405 87.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 65.405 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 64.77 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 64.77 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 784db6cf-5550-4c61-b4c8-dbcec06951ac)) + (pin "2" (uuid 4f454738-6bef-449c-a340-68bd6bb9b475)) + (pin "3" (uuid 7ebf406e-6769-4ea0-b81b-c3909c5b3cfa)) + (pin "4" (uuid 0a5c2849-a182-4896-a73e-5d52788d1776)) + (pin "5" (uuid 245271a4-fb4a-44eb-be46-cec59485e8dd)) + (pin "6" (uuid ebb13ed0-7ea1-4e77-a512-f66407ab7a65)) + (pin "7" (uuid b37c4593-3afd-458e-9417-bd7c2824bb58)) + (pin "8" (uuid 6f2c6a57-232d-4dd4-b73b-467289d63f89)) + (pin "9" (uuid 702be7f2-48bb-47a2-a7ec-87b8263817e6)) + (pin "10" (uuid f577eb44-4030-4d4c-8dd1-02822d351101)) + (pin "11" (uuid 0ec2193e-8f77-4760-93d6-23ae8edde6ab)) + (pin "12" (uuid 945da69e-ca84-4b0e-9640-6e513276fd14)) + (pin "13" (uuid a17312e8-301b-46aa-90ab-01cb13afe59d)) + (pin "14" (uuid 45b86e1a-452b-430b-81dd-8bb0a34e6ed1)) + (pin "15" (uuid 84de1028-aec2-4490-802e-0139d46e1822)) + (pin "16" (uuid 2d7cadf8-cb67-4fb3-99b7-e28c6678eb8f)) + (pin "17" (uuid 9b58d704-b3dc-4f38-8281-6cb369da720a)) + (pin "18" (uuid 5e74ba3d-5864-47cd-ad41-36f1e5b15442)) + (pin "19" (uuid 2a0a561f-33e2-4157-8b27-b04a148625b6)) + (pin "20" (uuid 64cd92af-35c7-401a-90fc-38dac7a07f5d)) + (pin "21" (uuid 0b5c7b02-2b10-4254-9bbe-b0771398efe3)) + (pin "22" (uuid 7a0db8b0-d7a6-4cec-be97-51a0ca937ab6)) + (pin "23" (uuid 25c223c1-76dd-4073-b837-034cf34600c7)) + (pin "24" (uuid 9c71e43e-ef68-46ef-80ee-c76edbddc7bd)) + (pin "25" (uuid b04f173d-6d8c-48c0-85a6-dc033de13919)) + (pin "26" (uuid 20a871bc-b2b7-4941-9e7a-77093911b19d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 54.61 54.61 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 624d8ee2-7f53-4f75-ae67-10615d9e414f) + (property "Reference" "U1" (id 0) (at 55.245 49.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 55.245 52.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 54.61 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fe4f223f-3a43-44ec-be51-71a81487d75a)) + (pin "2" (uuid b13dfde0-de0a-4c55-a824-652a75cd8364)) + (pin "3" (uuid f7147eb7-32cf-48bd-a6a2-13651a948f3b)) + (pin "4" (uuid 89a20584-f621-44af-808b-8a5e80ec91a2)) + (pin "5" (uuid f17f3b05-408d-42d1-866b-4c619036c43a)) + (pin "6" (uuid da7265ca-d263-46aa-8218-f21fc9415357)) + (pin "7" (uuid 1e34d9ea-bfe9-45d2-9dc9-23528262195a)) + (pin "8" (uuid 4c67c912-f405-46fd-8663-b0b912cba1af)) + (pin "9" (uuid f6e36847-6f9e-4cbc-b21b-7f8e9578a2ee)) + (pin "10" (uuid c1dc8ec1-f60d-45f0-9416-6f69d4ef87e5)) + (pin "11" (uuid bdb77f2a-1e83-4d3f-a48f-6c4734fec4f0)) + (pin "12" (uuid 269fa1fc-bd16-45b8-888f-b3ff8867f233)) + (pin "13" (uuid 63dbf9b1-b60a-41a1-94ec-a297243ddc6b)) + (pin "14" (uuid dd9f5b4c-1aed-47c9-9fbb-7d264b997bf4)) + (pin "15" (uuid 086a7bd3-08f5-40a3-8bcf-f6750c863401)) + (pin "16" (uuid 552d5b43-3b76-42d7-88ca-dc46222e4219)) + (pin "17" (uuid e6537c11-7a62-4b63-ad85-43a1a34c8fb0)) + (pin "18" (uuid c7b4786e-4317-4540-bc19-34e10e8522e3)) + (pin "19" (uuid c37c21cc-76fe-4b09-8954-49c9b3153e84)) + (pin "20" (uuid 342e89cf-1725-4015-9baf-8b754b1c0154)) + (pin "21" (uuid fea2b7d7-ffa9-4a71-949f-d6b185572f1e)) + (pin "22" (uuid d90128ca-2ea0-44af-a29d-4c2e5fba6aef)) + (pin "23" (uuid cf5124a2-1ba8-4f5f-9438-2629fbfc0176)) + (pin "24" (uuid 91ecbc98-15ca-4bde-ac1c-a3cca3b72070)) + (pin "25" (uuid 33d6bddf-f22f-4772-a26d-449796f91e12)) + (pin "26" (uuid 2692dbb2-5901-4554-8445-a14283e0e1d1)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 195.58 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 636803ea-fb29-4987-8c04-9aa1ca413636) + (property "Reference" "U6" (id 0) (at 195.58 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 195.58 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 195.58 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 195.58 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b704221e-0da8-4b98-b7ec-b52aef135839)) + (pin "2" (uuid 50b48d7a-f34f-49ef-869e-cae721ee6b02)) + (pin "3" (uuid 02e2042d-217f-4e36-92d2-0da9d4c384c4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 54.61 52.07 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 644447c4-c28a-44d6-83bc-5ceed58d36ea) + (property "Reference" "U1" (id 0) (at 55.245 46.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 55.245 49.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 54.61 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 865aa558-2db8-41dd-81e8-76b40957b68a)) + (pin "2" (uuid 580a03f2-8063-49db-a15a-f04577ffdd02)) + (pin "3" (uuid b8268ba3-18fa-4f20-85af-bcc2b3a2f083)) + (pin "4" (uuid a76ec862-5963-47ec-8b42-826c31f5376a)) + (pin "5" (uuid 84460c75-3d30-4155-a516-5b28e5036a94)) + (pin "6" (uuid daff7ac3-0580-40d0-9416-1850431570e2)) + (pin "7" (uuid 9cde8eb5-b52c-4093-9fc2-a375319df67f)) + (pin "8" (uuid e9b02eb6-e868-4149-8acc-3751a068aa4f)) + (pin "9" (uuid 1165a108-34c5-403f-9bf6-1fe108561656)) + (pin "10" (uuid fa63dcb3-720f-489e-9161-ffdbffa22b97)) + (pin "11" (uuid 884b82d0-2ab9-4b47-b326-781f9eb5a7b4)) + (pin "12" (uuid 525894e5-e281-46ca-950a-8966c5075e3c)) + (pin "13" (uuid f1d27370-ab83-41f7-b12f-adc46f65eebd)) + (pin "14" (uuid b638d601-cd51-40fa-9ace-28b2be633e7f)) + (pin "15" (uuid 574d2ef9-3450-4a36-9a3f-38ad2f50e543)) + (pin "16" (uuid 5fa2f716-b120-496d-9856-ad8a408da93b)) + (pin "17" (uuid f8dbfc48-1f1b-4aba-b535-5c21aef80bd1)) + (pin "18" (uuid 8dbe56e5-0695-4f45-8529-da491499b989)) + (pin "19" (uuid d6fd9838-c4ec-43d8-9486-d4ce0d9a7300)) + (pin "20" (uuid eeb188f8-1337-414d-87ec-4d0e9b1f3ada)) + (pin "21" (uuid 129a3d1f-f5db-4945-ac2c-7c89707e33b1)) + (pin "22" (uuid f5d6b329-5cf6-41cd-a412-b3d950bab594)) + (pin "23" (uuid 6693c672-2af4-4cf3-a361-da6152ff0252)) + (pin "24" (uuid 6e1c5fb6-50f0-4056-bda9-7be87fa64607)) + (pin "25" (uuid 6bed9498-0e9e-4835-86c7-7ff59f399d21)) + (pin "26" (uuid a49be8fc-4ab8-484e-a3d2-ef1ddf186eda)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 233.68 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 66d15965-9b24-4fd3-88b3-b84039c81b45) + (property "Reference" "U8" (id 0) (at 235.585 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 235.585 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 233.68 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 233.68 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 56a16ef0-0f1c-48a2-bac5-bd7297498eb4)) + (pin "2" (uuid 0edf1dd7-11d7-4ce8-8871-f314b4408a2c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 54.61 46.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6de89d24-cf54-40fd-b252-2fc770382884) + (property "Reference" "U1" (id 0) (at 55.245 41.91 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 55.245 44.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 54.61 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7df0ac03-4b9c-48b1-a6b4-61bea82fe9a4)) + (pin "2" (uuid 1bad4cae-f268-45aa-8558-b5faf61036e5)) + (pin "3" (uuid 71ad1905-252e-4011-ae7d-25197f0eaa94)) + (pin "4" (uuid a924aa9b-aceb-40ab-be2f-54b2872a144c)) + (pin "5" (uuid 7977b450-65d2-41af-bee7-763b283a96a2)) + (pin "6" (uuid 58581285-7d54-438b-9b72-707db6da91d0)) + (pin "7" (uuid 8feba706-fad0-4789-8176-bb3bc31862f7)) + (pin "8" (uuid 97cfaba5-c2d0-4df5-ad62-3f0cec06fb24)) + (pin "9" (uuid 4b11b339-4462-46ad-ad67-1ce7c53d1465)) + (pin "10" (uuid f83f5d4f-2e5c-45d7-9624-6bbb6f32df5c)) + (pin "11" (uuid e5f9806e-b7cf-46fd-aaa7-05a78e2d693d)) + (pin "12" (uuid 79ab0fea-14a9-40c2-9c83-9717c5a18d47)) + (pin "13" (uuid a0fb2f8e-8a13-4558-9829-0a4914b2fdcc)) + (pin "14" (uuid 50c48b5c-94cf-4ad1-9999-d4e4765a4416)) + (pin "15" (uuid cf3266b4-268f-476f-b4f2-06bd31ae2430)) + (pin "16" (uuid 4ecc07a2-713b-4ee9-a734-6fe5d455d8e7)) + (pin "17" (uuid f23a4a4e-0032-4e24-bcdb-538f13364c70)) + (pin "18" (uuid 3b45cc02-35ee-48df-8364-64f8c2f7d34c)) + (pin "19" (uuid 2fc1fcd0-a197-4e84-8654-ca58b3dabf79)) + (pin "20" (uuid 2085936d-a471-4897-8f5c-6407b11a6d97)) + (pin "21" (uuid 37634e71-ca6d-478e-9368-1ac454fb3965)) + (pin "22" (uuid c7f8883f-a4c4-4914-ace1-e51c0904e150)) + (pin "23" (uuid 7f42e719-3d7e-4e7b-a5c4-6148909a570e)) + (pin "24" (uuid 3f37d344-04ae-425c-a065-fc59c08ff1dd)) + (pin "25" (uuid 99418851-1535-4ed9-b789-66ce4e0684ed)) + (pin "26" (uuid cb20d676-d88d-48f2-a369-6d0c5beebd2e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 261.62 53.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e710294-2119-4ee2-9816-9f304a821f0f) + (property "Reference" "U12" (id 0) (at 261.62 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 261.62 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 261.62 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 261.62 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 09844b36-f06e-48f7-b417-301f1fcb607a)) + (pin "2" (uuid 7895c2f2-de40-42e7-b7bf-ccf5f4376806)) + (pin "3" (uuid ae1d0402-c221-4c60-9be4-beaadf9ae760)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 233.68 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7147e289-d3ad-4a58-9f81-2072beffbdfe) + (property "Reference" "U10" (id 0) (at 235.585 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 235.585 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 233.68 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 233.68 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 61ace587-2383-40dd-93ab-516885cdd0ff)) + (pin "2" (uuid d7157d0e-8f3d-47b7-ad43-bfb1ca84b781)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 54.61 62.23 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 848e9093-2c65-4906-9387-9277b0c7a7e5) + (property "Reference" "U1" (id 0) (at 55.245 57.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 55.245 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 54.61 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b71f40f4-e626-4fcf-8a21-a77016d16d12)) + (pin "2" (uuid 6647d1f9-3fdf-4fd8-8d70-01639e52059f)) + (pin "3" (uuid afda39b5-b30d-45df-9ebe-0899a4344950)) + (pin "4" (uuid 5631f1db-fadd-48da-b3e9-077d4c1561d7)) + (pin "5" (uuid e83f0a06-8b19-4188-a71a-2d8f9d74d429)) + (pin "6" (uuid d1dbea15-1883-457c-b4d2-21d9e11ea4cc)) + (pin "7" (uuid 8654c35b-4815-4e50-a4de-d4dcfb9bbc3c)) + (pin "8" (uuid 04ade183-46ed-4d91-9cf5-1af6f0fbafe0)) + (pin "9" (uuid beac33f8-e4b7-46fd-bea5-6d3dc27536c4)) + (pin "10" (uuid e505a83f-3c37-4151-94c0-c366b0efea87)) + (pin "11" (uuid dcc883b5-a235-4900-884e-fc38d51db46b)) + (pin "12" (uuid 3db2eed1-d82a-4bf3-b2ed-c6b409947e6d)) + (pin "13" (uuid fbd5956e-dc9e-4c5a-ab37-520ccd5f5344)) + (pin "14" (uuid d39146b4-1ecd-4e4d-9e33-fd3d1d504c06)) + (pin "15" (uuid 313d78ba-657d-45c0-9027-f352266a38a2)) + (pin "16" (uuid 00769e8f-b064-447a-ad67-46571a700c71)) + (pin "17" (uuid caa3ac65-5dfd-4d16-a00a-50f75da84691)) + (pin "18" (uuid ccda2836-4352-46b6-b953-6892ceef2fe3)) + (pin "19" (uuid f0864163-f04a-4125-b176-91222aeaaaeb)) + (pin "20" (uuid 00ad981b-bae7-4087-865b-a3c633769882)) + (pin "21" (uuid 39cef27d-d9d1-446d-9b50-40d1926c8f0c)) + (pin "22" (uuid 9553a3b5-5aa1-4b9e-93eb-1afccae0e001)) + (pin "23" (uuid e2ee418d-9a14-409e-b86c-5ff6d0228ff8)) + (pin "24" (uuid 7ee895a5-7786-47f4-b2bc-f37f207784dc)) + (pin "25" (uuid 7dec8a26-99cd-4b42-912f-2c8ffe2b88e1)) + (pin "26" (uuid eee9d7b8-3ef7-4bca-894e-51a4a96a0f69)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 151.13 36.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9649ca31-8748-457e-84a5-b6a47c57b616) + (property "Reference" "U4" (id 0) (at 151.13 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 151.13 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 151.13 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 151.13 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6fc5e936-a150-4752-8b37-75f4be5db84f)) + (pin "2" (uuid 2dc6508e-1a9f-45ee-b0cd-75df4b3c472e)) + (pin "3" (uuid b981ba2c-c597-4afb-bf35-70e9808dd73e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 64.77 90.17 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b18af17e-4ea2-44d3-98c1-9665e24a3f8e) + (property "Reference" "U1" (id 0) (at 65.405 85.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 65.405 87.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 64.77 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 64.77 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a11217e3-c3f9-4f5f-930e-7610d60199e9)) + (pin "2" (uuid 7e28803c-deea-40e4-b0a1-85ba504b70fa)) + (pin "3" (uuid 48f1cfa5-b47f-48fe-8f27-80419a3b9f71)) + (pin "4" (uuid 6dd6a19c-ac98-47fd-9f14-68b27ed0b9e9)) + (pin "5" (uuid 52b32292-86b3-4c11-80d9-0238a3a4db3a)) + (pin "6" (uuid c6187cfe-fb71-4575-86d2-db57332b0ff8)) + (pin "7" (uuid 3c782878-48fc-427a-a6cf-3e2b89ba56b0)) + (pin "8" (uuid c744ddeb-7113-4fee-83af-eb83978e2437)) + (pin "9" (uuid 59400b56-938a-4e7a-9e5c-820bd8ba7bc2)) + (pin "10" (uuid 95566eba-5c1d-4b0e-9956-0b196ac9ac46)) + (pin "11" (uuid fba97038-02fe-4b94-bf9e-4cc7e4b51f9b)) + (pin "12" (uuid 0099aa71-ecd9-4476-8372-66494a53ee18)) + (pin "13" (uuid 07bc5c29-088f-4277-b126-1da351e86139)) + (pin "14" (uuid 490ef14f-fbe2-450f-a803-5c0d2fe4235e)) + (pin "15" (uuid 274596eb-f2c7-43b1-b455-4680c0e38f63)) + (pin "16" (uuid fbbb6baf-2916-4425-bd37-37b21d119cb0)) + (pin "17" (uuid b17fbbaa-c1a4-4294-8bd9-64523e436816)) + (pin "18" (uuid e4f4e537-7ee1-463e-8d0a-dc18033dbd91)) + (pin "19" (uuid cf5a6586-f97a-4b74-ab80-787e83e7ed38)) + (pin "20" (uuid fc1f354c-34e1-433c-bee0-72c9df49127f)) + (pin "21" (uuid b846208f-4b79-4afc-a041-7799e5cbd581)) + (pin "22" (uuid 921e158b-f17b-4cf4-8753-fdc5d1baabe3)) + (pin "23" (uuid f7514f3b-491a-4e0d-8f9c-4f79c699ef93)) + (pin "24" (uuid 5184704e-b12e-46a5-8fdf-04298825b25f)) + (pin "25" (uuid b7c659c3-454d-4589-9bd1-647c3ef411a7)) + (pin "26" (uuid 098ef362-489c-4db6-8677-5daaf211f3f0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 54.61 64.77 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b7ad4258-0487-44ab-aaef-2447e3abdcf6) + (property "Reference" "U1" (id 0) (at 55.245 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 55.245 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 54.61 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 30985dd9-7b47-4a97-8159-9c00d0f4d8e5)) + (pin "2" (uuid 77bafb16-bc53-4405-82af-62040aeb40e4)) + (pin "3" (uuid 59d6ea46-b6d2-4ecb-b170-a3a94f0de85b)) + (pin "4" (uuid 6ad6e25a-ed56-4bd4-be29-31d0796c54e6)) + (pin "5" (uuid 5e571ba0-1d48-4922-b0df-564332b1d420)) + (pin "6" (uuid 16aa3fcf-5423-404b-a028-0266bf05de4c)) + (pin "7" (uuid e504882d-48db-4732-ac03-90acc0ca3d44)) + (pin "8" (uuid 498641cb-e31f-4ccd-a5d6-3aeaadd84816)) + (pin "9" (uuid 31d6ad31-ad0a-4490-9bc1-99b5ecc5f3b4)) + (pin "10" (uuid 2ce5ab2c-4c66-4d10-9a23-f6c0afe5f5e3)) + (pin "11" (uuid c65006bc-a1da-4cd4-8fe1-6a1ebfd3bf25)) + (pin "12" (uuid 58d65341-d7c0-43b5-8560-7c25acb9a398)) + (pin "13" (uuid f425fcd9-bf6f-43e0-86f1-ecd18744e501)) + (pin "14" (uuid deb4c4c3-9061-42cf-a520-5da73409ab8f)) + (pin "15" (uuid 6d4fe9c8-71bc-41fc-86c7-06f5fafcaab9)) + (pin "16" (uuid fcdf33b8-1c32-45ec-9f52-9e3400e7a3aa)) + (pin "17" (uuid e7464967-4a0b-40ff-a59d-8cbd75c963ed)) + (pin "18" (uuid 75863f5c-b969-4ad8-b077-a595a4b9f09f)) + (pin "19" (uuid 0394c929-3ee1-4217-8115-16bd6f6d7b77)) + (pin "20" (uuid cd0a8ad2-5af4-4c4b-8194-ca170a814421)) + (pin "21" (uuid 9037d91c-a548-4e5b-b363-6c13512fe7b0)) + (pin "22" (uuid 7efcae17-0c22-41fc-9bd9-2f9305478b38)) + (pin "23" (uuid 69e5ddaf-65fe-4c23-8974-c47d61dc21b2)) + (pin "24" (uuid 25920ce9-3255-4556-8eb4-8b5cbecad172)) + (pin "25" (uuid f56b4593-d0a4-4741-b214-df526017c3c1)) + (pin "26" (uuid 97be4704-c463-4019-9dec-0c2b72889808)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 233.68 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb281179-02a4-4573-ad10-73c154e72c72) + (property "Reference" "U11" (id 0) (at 235.585 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 235.585 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 233.68 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 233.68 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3047b666-24c8-41c4-9b27-8466647872a7)) + (pin "2" (uuid d15771ea-6aac-489d-ab34-1c2f465f19e2)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 233.68 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c05fbf9e-6249-4bb4-ac2e-e9be4ef74447) + (property "Reference" "U9" (id 0) (at 235.585 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 235.585 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 233.68 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 233.68 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1aaa55fc-b641-4c9c-95ea-480eb7e9ee67)) + (pin "2" (uuid 71dbd7a1-dec2-4caf-9360-04886beb5454)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 116.84 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c263845c-0a36-49a0-a683-852da0998286) + (property "Reference" "U3" (id 0) (at 116.84 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 116.84 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 116.84 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 566754ba-86d4-4658-9c57-9f1ef6415444)) + (pin "2" (uuid 1002f6bd-044f-4eda-8955-23e9094580d4)) + (pin "3" (uuid 0720fc69-d06c-4436-a44c-5deb2395db83)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 153.67 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cb3a924f-6a43-4898-befa-b6175b4f2e04) + (property "Reference" "U5" (id 0) (at 153.67 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 153.67 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 153.67 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 79c386ac-5bdb-428e-92ec-cd471de2fc23)) + (pin "2" (uuid 64a41c0e-aa64-49ee-93a4-aab4efee529c)) + (pin "3" (uuid f635f9f6-1df9-411a-98b7-09544e70e580)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 279.4 87.63 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9fb4134-8a8b-434b-a1b6-a876fde306b2) + (property "Reference" "U1" (id 0) (at 283.21 86.995 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 283.21 89.535 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 279.4 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 279.4 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2a033229-e57b-4448-92e4-90be98cde006)) + (pin "2" (uuid ec25342f-02a8-4843-9ac6-01c809d81ae7)) + (pin "3" (uuid 5962980c-969e-40fd-a5bf-d432642bb95a)) + (pin "4" (uuid 5e764d7d-8ceb-4453-ba34-9920cdd8520b)) + (pin "5" (uuid 1934af00-fa73-49e6-9b60-66b0f86605c6)) + (pin "6" (uuid b8725ef7-1773-4461-80de-c76a8d554377)) + (pin "7" (uuid bb84b5ee-3aeb-40ce-90dc-2f2b73ad8288)) + (pin "8" (uuid 7d9ac27f-d530-49f4-98e6-7f00b14eaae2)) + (pin "9" (uuid c075d992-47bb-45e4-8654-d0a45032cec9)) + (pin "10" (uuid 55496d3f-af01-4db7-a375-9f27f3297d82)) + (pin "11" (uuid cd2aa357-da21-43f2-a143-b5a8a64a8acf)) + (pin "12" (uuid 996931dc-8fd7-416d-bfa6-ec158e077b40)) + (pin "13" (uuid 0ee7333d-1701-4cf4-9427-cda891f879d1)) + (pin "14" (uuid 8ba9eaed-2670-4b69-af9b-1e7ff4f3daa5)) + (pin "15" (uuid 4d1ec1cb-c96b-48cb-b475-868a9e35dea4)) + (pin "16" (uuid 63f37f38-8285-4189-8d77-de1507358eb3)) + (pin "17" (uuid d6de3ecc-2ab7-4d38-8183-7dd9f8105380)) + (pin "18" (uuid e65e19f7-aa9f-4fab-b256-c9b2d8911e8e)) + (pin "19" (uuid c3667a96-10a1-4c1e-b4d2-1e7b2ec02d60)) + (pin "20" (uuid 4520dfc3-c76a-40b4-ae9f-45ba26c7eabd)) + (pin "21" (uuid f41f5ae1-a62f-4619-b994-3368a5a2ffe4)) + (pin "22" (uuid 95440e41-6ee5-4bf8-b694-a2ad36548279)) + (pin "23" (uuid 0d4411b8-e61c-4b02-b480-685b3c7546ab)) + (pin "24" (uuid ca921cef-5f3d-4d13-9f15-de14d77b4f37)) + (pin "25" (uuid 2814796e-fd01-4e98-aa45-f44450cca072)) + (pin "26" (uuid ba580e8f-3b49-405d-b7bd-bc14934de34e)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 114.3 35.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e7584381-408e-4ce6-a0ea-f38434dd8ecd) + (property "Reference" "U2" (id 0) (at 114.3 26.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 114.3 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 114.3 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 114.3 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6c32dc14-55f4-407b-849a-d92a79e1e449)) + (pin "2" (uuid 2bd3237a-b1fe-4cce-abbf-98b956640375)) + (pin "3" (uuid 7b238244-d160-4e49-92b4-cd0138bbe56c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 54.61 59.69 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f5dfb881-4a7a-4a75-aa0e-90b5ee2bf5d9) + (property "Reference" "U1" (id 0) (at 55.245 54.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 55.245 57.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 54.61 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid caa696a3-9292-423d-9772-69f3db916690)) + (pin "2" (uuid f4d40357-db46-4e6c-ad6e-e5f7b8e2243c)) + (pin "3" (uuid 1d754185-da79-4850-aa13-8211a34e82e8)) + (pin "4" (uuid cbcbea96-e10d-476c-8cf2-86dea9d54071)) + (pin "5" (uuid 6e6178d8-2308-43ab-9fb0-54ed9a5043d2)) + (pin "6" (uuid c94b371a-78e6-4ce3-8c99-65def1773d27)) + (pin "7" (uuid c06cc27d-2f8e-4e3e-85b3-2e084e742df3)) + (pin "8" (uuid f28f5234-3858-4924-a1e3-c3000b76f987)) + (pin "9" (uuid c2ff07f2-de9c-4366-b81e-7f12037e62c0)) + (pin "10" (uuid 31bc1a99-8177-43d6-ba0c-0fe7e4f6e447)) + (pin "11" (uuid 2d690045-e1a7-4ef8-bf02-8a68d96b1f09)) + (pin "12" (uuid a07d0426-dfcd-4bfe-8154-1aee12510cc9)) + (pin "13" (uuid ab2d0572-0b7b-49f2-abc6-6dca018af1f7)) + (pin "14" (uuid c5fe9e3a-8e3a-40f2-9fb9-cd95898a38c2)) + (pin "15" (uuid 21ebf7de-6c01-4d5c-bbd5-512ba4969372)) + (pin "16" (uuid 820c2323-c1f6-4470-b7d8-0a9f1ee635a8)) + (pin "17" (uuid d10d3574-3167-4b24-8359-8534f3a821f3)) + (pin "18" (uuid c7a24e41-0d1b-4af7-bd2a-85569ef2929c)) + (pin "19" (uuid 21b56ffc-35e5-4ce0-8e76-ebf099ebd20a)) + (pin "20" (uuid e2bee083-f353-4a81-b437-bfe45c00c802)) + (pin "21" (uuid 80354933-98f0-455a-ae6f-e7a9ea95cd7e)) + (pin "22" (uuid cb07ec2d-7739-49e1-a605-7e555e089899)) + (pin "23" (uuid 25cd0b9d-fea2-447f-a06c-8757b04cce5d)) + (pin "24" (uuid b287a698-9f72-4592-97ef-cae5149f2fb6)) + (pin "25" (uuid 6bfa5068-938c-40e2-8a68-9a1ee48a95d7)) + (pin "26" (uuid 84c7b4d7-bec2-47ae-80d5-1383177959e9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 54.61 57.15 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f6f3041c-7591-4679-a4e3-19419548d99a) + (property "Reference" "U1" (id 0) (at 55.245 52.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 55.245 54.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 54.61 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d8953506-826d-4041-a98c-d39a1d108628)) + (pin "2" (uuid a51cbc05-4642-47df-9b0e-0648d8dc76bc)) + (pin "3" (uuid 6f1fbebd-de3d-488f-b4b7-9d7e01fbb261)) + (pin "4" (uuid bdb9aaf9-2aa1-4eb6-b6e2-c00f1f42ee72)) + (pin "5" (uuid e9d9ba56-c008-49db-b701-06eaadacdd93)) + (pin "6" (uuid 938caf4c-8b56-4b9c-9457-84f4ebcd0515)) + (pin "7" (uuid 3e3d8cd3-d06b-4c6d-ba6b-97fe8dda87ea)) + (pin "8" (uuid 41b22f9c-d8ae-482f-9760-3620209f7269)) + (pin "9" (uuid a1d42d0a-4193-44cd-bcd9-c05556c6d050)) + (pin "10" (uuid 560c5120-1d6b-420b-8c6d-95737bc4b7ea)) + (pin "11" (uuid e05f2a55-6c51-4dc7-9e65-b2758327ac27)) + (pin "12" (uuid 0d910fb9-3a44-418f-ac37-e80cc2b1842c)) + (pin "13" (uuid 26b76054-8fd9-42bc-836d-db18a8c6c614)) + (pin "14" (uuid c18744d9-f0e2-42e2-98ea-7682986b9f29)) + (pin "15" (uuid 87621c83-de30-459e-a84d-31448c192e09)) + (pin "16" (uuid e5629999-5629-4940-b7b3-d70401a13927)) + (pin "17" (uuid dc49a31c-9ce7-42d0-a470-ff75fb10f88a)) + (pin "18" (uuid 19d04812-eb67-4c7d-a052-c415fd7dc634)) + (pin "19" (uuid b3412a08-5c6b-4e81-aff2-546988fbd108)) + (pin "20" (uuid b3ada3c3-178a-49e9-a4a4-729986e135b8)) + (pin "21" (uuid e159d9a4-2d5c-4763-a4fb-e5b6e634d00e)) + (pin "22" (uuid fdb3d3ea-e900-4783-a5e3-73e9a1f9b323)) + (pin "23" (uuid d73a1ae4-3794-4411-bfb7-43500a634c8f)) + (pin "24" (uuid 1057d67d-d7f6-40ce-bc62-e9b1b1e3dc78)) + (pin "25" (uuid fca23915-fd04-4caa-adff-db770e039025)) + (pin "26" (uuid 6b6f9693-31e3-4909-9903-cd63683910fb)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/6de89d24-cf54-40fd-b252-2fc770382884" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/38516805-86a8-4283-af38-674c554cfdd7" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/644447c4-c28a-44d6-83bc-5ceed58d36ea" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/624d8ee2-7f53-4f75-ae67-10615d9e414f" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/f6f3041c-7591-4679-a4e3-19419548d99a" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/f5dfb881-4a7a-4a75-aa0e-90b5ee2bf5d9" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/848e9093-2c65-4906-9387-9277b0c7a7e5" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/b7ad4258-0487-44ab-aaef-2447e3abdcf6" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/b18af17e-4ea2-44d3-98c1-9665e24a3f8e" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/575fe671-1eaa-473f-9042-6762cdf0390f" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/1ce2cad3-08b2-4910-9ba2-1258a8f9e28a" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/d9fb4134-8a8b-434b-a1b6-a876fde306b2" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/e7584381-408e-4ce6-a0ea-f38434dd8ecd" + (reference "U2") (unit 1) (value "d_or") (footprint "") + ) + (path "/c263845c-0a36-49a0-a683-852da0998286" + (reference "U3") (unit 1) (value "d_or") (footprint "") + ) + (path "/9649ca31-8748-457e-84a5-b6a47c57b616" + (reference "U4") (unit 1) (value "d_or") (footprint "") + ) + (path "/cb3a924f-6a43-4898-befa-b6175b4f2e04" + (reference "U5") (unit 1) (value "d_or") (footprint "") + ) + (path "/636803ea-fb29-4987-8c04-9aa1ca413636" + (reference "U6") (unit 1) (value "d_or") (footprint "") + ) + (path "/09ad47cb-688f-4960-8107-b9e6ba5d2e3a" + (reference "U7") (unit 1) (value "d_or") (footprint "") + ) + (path "/66d15965-9b24-4fd3-88b3-b84039c81b45" + (reference "U8") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/c05fbf9e-6249-4bb4-ac2e-e9be4ef74447" + (reference "U9") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/7147e289-d3ad-4a58-9f81-2072beffbdfe" + (reference "U10") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/bb281179-02a4-4573-ad10-73c154e72c72" + (reference "U11") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/6e710294-2119-4ee2-9816-9f304a821f0f" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/2e934b59-0dce-4c47-a37c-571e2595123b" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74LS25/SN74LS25.sub b/library/SubcircuitLibrary/SN74LS25/SN74LS25.sub new file mode 100644 index 000000000..c5e96e93b --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS25/SN74LS25.sub @@ -0,0 +1,54 @@ +* Subcircuit SN74LS25 +.subckt SN74LS25 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ +.title kicad schematic +* u3 net-_u1-pad2_ net-_u1-pad4_ net-_u3-pad3_ d_or +* u2 net-_u1-pad1_ net-_u1-pad3_ net-_u2-pad3_ d_or +* u4 net-_u2-pad3_ net-_u1-pad5_ net-_u4-pad3_ d_or +* u5 net-_u3-pad3_ net-_u1-pad6_ net-_u5-pad3_ d_or +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u1-pad11_ d_and +* u9 net-_u1-pad9_ net-_u12-pad2_ d_buffer +* u8 net-_u6-pad3_ net-_u12-pad1_ d_buffer +* u13 net-_u10-pad2_ net-_u11-pad2_ net-_u1-pad12_ d_and +* u11 net-_u1-pad10_ net-_u11-pad2_ d_buffer +* u10 net-_u10-pad1_ net-_u10-pad2_ d_buffer +* u6 net-_u4-pad3_ net-_u1-pad7_ net-_u6-pad3_ d_or +* u7 net-_u5-pad3_ net-_u1-pad8_ net-_u10-pad1_ d_or +a1 [net-_u1-pad2_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a2 [net-_u1-pad1_ net-_u1-pad3_ ] net-_u2-pad3_ u2 +a3 [net-_u2-pad3_ net-_u1-pad5_ ] net-_u4-pad3_ u4 +a4 [net-_u3-pad3_ net-_u1-pad6_ ] net-_u5-pad3_ u5 +a5 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u1-pad11_ u12 +a6 net-_u1-pad9_ net-_u12-pad2_ u9 +a7 net-_u6-pad3_ net-_u12-pad1_ u8 +a8 [net-_u10-pad2_ net-_u11-pad2_ ] net-_u1-pad12_ u13 +a9 net-_u1-pad10_ net-_u11-pad2_ u11 +a10 net-_u10-pad1_ net-_u10-pad2_ u10 +a11 [net-_u4-pad3_ net-_u1-pad7_ ] net-_u6-pad3_ u6 +a12 [net-_u5-pad3_ net-_u1-pad8_ ] net-_u10-pad1_ u7 +* Schematic Name: d_or, Ngspice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u2 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u8 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u11 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u10 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u7 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN74LS25 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS25/SN74LS25_Previous_Values.xml b/library/SubcircuitLibrary/SN74LS25/SN74LS25_Previous_Values.xml new file mode 100644 index 000000000..a5141a18c --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS25/SN74LS25_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_ord_ord_ord_ord_andd_bufferd_bufferd_andd_bufferd_bufferd_ord_or \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS25/analysis b/library/SubcircuitLibrary/SN74LS25/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS25/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR-cache.lib b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.cir b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.cir new file mode 100644 index 000000000..798338152 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.cir @@ -0,0 +1,14 @@ +* H:\esim\eSim\library\SubcircuitLibrary\CMOS_INVTR\CMOS_INVTR.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/12/25 16:02:08 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.cir.out b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.cir.out new file mode 100644 index 000000000..268de8701 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.cir.out @@ -0,0 +1,16 @@ +* h:\esim\esim\library\subcircuitlibrary\cmos_invtr\cmos_invtr.cir + + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.pro b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.sch b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.sch new file mode 100644 index 000000000..aa7a7ee81 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.sch @@ -0,0 +1,161 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 684B982F +P 5350 2950 +F 0 "SC1" H 5400 3250 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5650 3037 50 0000 R CNN +F 2 "" H 5350 1450 50 0001 C CNN +F 3 "" H 5350 2950 50 0001 C CNN + 1 5350 2950 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 684B9856 +P 5350 3800 +F 0 "SC2" H 5400 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5650 3887 50 0000 R CNN +F 2 "" H 5350 2300 50 0001 C CNN +F 3 "" H 5350 3800 50 0001 C CNN + 1 5350 3800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 684B98AD +P 4550 3300 +F 0 "U1" H 4600 3400 30 0000 C CNN +F 1 "PORT" H 4550 3300 30 0000 C CNN +F 2 "" H 4550 3300 60 0000 C CNN +F 3 "" H 4550 3300 60 0000 C CNN + 1 4550 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 684B98D8 +P 6300 3350 +F 0 "U1" H 6350 3450 30 0000 C CNN +F 1 "PORT" H 6300 3350 30 0000 C CNN +F 2 "" H 6300 3350 60 0000 C CNN +F 3 "" H 6300 3350 60 0000 C CNN + 4 6300 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 684B9935 +P 5300 4350 +F 0 "U1" H 5350 4450 30 0000 C CNN +F 1 "PORT" H 5300 4350 30 0000 C CNN +F 2 "" H 5300 4350 60 0000 C CNN +F 3 "" H 5300 4350 60 0000 C CNN + 3 5300 4350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684B999A +P 5300 2350 +F 0 "U1" H 5350 2450 30 0000 C CNN +F 1 "PORT" H 5300 2350 30 0000 C CNN +F 2 "" H 5300 2350 60 0000 C CNN +F 3 "" H 5300 2350 60 0000 C CNN + 2 5300 2350 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 684B99CD +P 7950 3000 +F 0 "scmode1" H 7950 3150 98 0000 C CNB +F 1 "SKY130mode" H 7950 2900 118 0000 C CNB +F 2 "" H 7950 3150 60 0001 C CNN +F 3 "" H 7950 3150 60 0001 C CNN + 1 7950 3000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5550 2650 5550 2350 +Wire Wire Line + 5450 2950 5600 2950 +Wire Wire Line + 5600 2950 5600 2550 +Wire Wire Line + 5600 2550 5550 2550 +Connection ~ 5550 2550 +Wire Wire Line + 5550 3250 5550 3500 +Wire Wire Line + 6050 3350 5550 3350 +Connection ~ 5550 3350 +Wire Wire Line + 5050 2950 5050 3800 +Wire Wire Line + 4800 3300 5050 3300 +Connection ~ 5050 3300 +Wire Wire Line + 5450 3800 5600 3800 +Wire Wire Line + 5600 3800 5600 4150 +Wire Wire Line + 5600 4150 5550 4150 +Wire Wire Line + 5550 4100 5550 4350 +Connection ~ 5550 4150 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.sub b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.sub new file mode 100644 index 000000000..dfe6de3e5 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR.sub @@ -0,0 +1,10 @@ +* Subcircuit CMOS_INVTR +.subckt CMOS_INVTR net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc1-pad1_ +* h:\esim\esim\library\subcircuitlibrary\cmos_invtr\cmos_invtr.cir + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends CMOS_INVTR \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR_Previous_Values.xml b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR_Previous_Values.xml new file mode 100644 index 000000000..af4904616 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/CMOS_INVTR_Previous_Values.xml @@ -0,0 +1 @@ +H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spicettw=3 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/DFF_CE-cache.lib b/library/SubcircuitLibrary/SN74LS548/DFF_CE-cache.lib new file mode 100644 index 000000000..8f800f53f --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/DFF_CE-cache.lib @@ -0,0 +1,103 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# D_FF +# +DEF D_FF X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "D_FF" 50 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -250 200 300 -200 0 1 0 N +X D 1 -450 50 200 R 50 50 1 1 I +X CLK 2 -450 -50 200 R 50 50 1 1 I +X VDD 3 -450 150 200 R 50 50 1 1 I +X GND 4 -450 -150 200 R 50 50 1 1 I +X OUT 5 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/DFF_CE-rescue.lib b/library/SubcircuitLibrary/SN74LS548/DFF_CE-rescue.lib new file mode 100644 index 000000000..970123cab --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/DFF_CE-rescue.lib @@ -0,0 +1,21 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# D_FF-RESCUE-DFF_CE +# +DEF D_FF-RESCUE-DFF_CE X 0 40 Y Y 1 F N +F0 "X" 100 100 60 H V C CNN +F1 "D_FF-RESCUE-DFF_CE" 0 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -200 200 200 -150 0 1 0 N +X D 1 -400 50 200 R 50 50 1 1 I +X Clk 2 -400 -50 200 R 50 50 1 1 I +X Vdd 3 0 400 200 D 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X Q 5 400 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/DFF_CE.bak b/library/SubcircuitLibrary/SN74LS548/DFF_CE.bak new file mode 100644 index 000000000..749dc6a77 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/DFF_CE.bak @@ -0,0 +1,172 @@ +EESchema Schematic File Version 2 +LIBS:DFF_CE-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:DFF_CE-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 68712618 +P 4750 2800 +F 0 "SC1" H 4800 3100 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5050 2887 50 0000 R CNN +F 2 "" H 4750 1300 50 0001 C CNN +F 3 "" H 4750 2800 50 0001 C CNN + 1 4750 2800 + 0 -1 1 0 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 6871269E +P 9750 3750 +F 0 "scmode1" H 9750 3900 98 0000 C CNB +F 1 "SKY130mode" H 9750 3650 118 0000 C CNB +F 2 "" H 9750 3900 60 0001 C CNN +F 3 "" H 9750 3900 60 0001 C CNN + 1 9750 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 687126DC +P 4200 3050 +F 0 "U1" H 4250 3150 30 0000 C CNN +F 1 "PORT" H 4200 3050 30 0000 C CNN +F 2 "" H 4200 3050 60 0000 C CNN +F 3 "" H 4200 3050 60 0000 C CNN + 1 4200 3050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4750 2900 4750 3050 +Wire Wire Line + 4750 3050 4450 3050 +Wire Wire Line + 4450 3050 4450 3000 +Connection ~ 4450 3050 +$Comp +L PORT U1 +U 3 1 687127CB +P 5000 2300 +F 0 "U1" H 5050 2400 30 0000 C CNN +F 1 "PORT" H 5000 2300 30 0000 C CNN +F 2 "" H 5000 2300 60 0000 C CNN +F 3 "" H 5000 2300 60 0000 C CNN + 3 5000 2300 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 2 1 68712813 +P 4500 2500 +F 0 "U1" H 4550 2600 30 0000 C CNN +F 1 "PORT" H 4500 2500 30 0000 C CNN +F 2 "" H 4500 2500 60 0000 C CNN +F 3 "" H 4500 2500 60 0000 C CNN + 2 4500 2500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 6871285A +P 5300 2650 +F 0 "U1" H 5350 2750 30 0000 C CNN +F 1 "PORT" H 5300 2650 30 0000 C CNN +F 2 "" H 5300 2650 60 0000 C CNN +F 3 "" H 5300 2650 60 0000 C CNN + 4 5300 2650 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 687128A1 +P 5300 3250 +F 0 "U1" H 5350 3350 30 0000 C CNN +F 1 "PORT" H 5300 3250 30 0000 C CNN +F 2 "" H 5300 3250 60 0000 C CNN +F 3 "" H 5300 3250 60 0000 C CNN + 5 5300 3250 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 6 1 687128DA +P 6250 2950 +F 0 "U1" H 6300 3050 30 0000 C CNN +F 1 "PORT" H 6250 2950 30 0000 C CNN +F 2 "" H 6250 2950 60 0000 C CNN +F 3 "" H 6250 2950 60 0000 C CNN + 6 6250 2950 + -1 0 0 -1 +$EndComp +$Comp +L D_FF X1 +U 1 1 6877C57A +P 5500 2950 +F 0 "X1" H 5500 2950 60 0000 C CNN +F 1 "D_FF" H 5550 2700 60 0000 C CNN +F 2 "" H 5500 2950 60 0001 C CNN +F 3 "" H 5500 2950 60 0001 C CNN + 1 5500 2950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5050 2650 5050 2800 +Wire Wire Line + 5000 2550 5000 2900 +Wire Wire Line + 5000 2900 5050 2900 +Wire Wire Line + 5050 3250 5050 3100 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/DFF_CE.cir b/library/SubcircuitLibrary/SN74LS548/DFF_CE.cir new file mode 100644 index 000000000..bdc89679c --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/DFF_CE.cir @@ -0,0 +1,14 @@ +* H:\esim\eSim\library\SubcircuitLibrary\DFF_CE\DFF_CE.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/16/25 20:58:59 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +scmode1 SKY130mode +U1 Net-_SC1-Pad3_ Net-_SC1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ PORT +X1 Net-_U1-Pad3_ Net-_SC1-Pad1_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ D_FF + +.end diff --git a/library/SubcircuitLibrary/SN74LS548/DFF_CE.cir.out b/library/SubcircuitLibrary/SN74LS548/DFF_CE.cir.out new file mode 100644 index 000000000..227f8666c --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/DFF_CE.cir.out @@ -0,0 +1,17 @@ +* h:\esim\esim\library\subcircuitlibrary\dff_ce\dff_ce.cir + +.include D_FF.sub + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +* s c m o d e +* u1 net-_sc1-pad3_ net-_sc1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ port +x1 net-_u1-pad3_ net-_sc1-pad1_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ D_FF +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS548/DFF_CE.pro b/library/SubcircuitLibrary/SN74LS548/DFF_CE.pro new file mode 100644 index 000000000..0cac01afd --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/DFF_CE.pro @@ -0,0 +1,74 @@ +update=07/16/25 20:56:16 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=DFF_CE-rescue +LibName2=adc-dac +LibName3=memory +LibName4=xilinx +LibName5=microcontrollers +LibName6=dsp +LibName7=microchip +LibName8=analog_switches +LibName9=motorola +LibName10=texas +LibName11=intel +LibName12=audio +LibName13=interface +LibName14=digital-audio +LibName15=philips +LibName16=display +LibName17=cypress +LibName18=siliconi +LibName19=opto +LibName20=atmel +LibName21=contrib +LibName22=power +LibName23=eSim_Plot +LibName24=transistors +LibName25=conn +LibName26=eSim_User +LibName27=regul +LibName28=74xx +LibName29=cmos4000 +LibName30=eSim_Analog +LibName31=eSim_Devices +LibName32=eSim_Digital +LibName33=eSim_Hybrid +LibName34=eSim_Miscellaneous +LibName35=eSim_Power +LibName36=eSim_Sources +LibName37=eSim_Subckt +LibName38=eSim_Nghdl +LibName39=eSim_Ngveri +LibName40=eSim_SKY130 +LibName41=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74LS548/DFF_CE.sch b/library/SubcircuitLibrary/SN74LS548/DFF_CE.sch new file mode 100644 index 000000000..749dc6a77 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/DFF_CE.sch @@ -0,0 +1,172 @@ +EESchema Schematic File Version 2 +LIBS:DFF_CE-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:DFF_CE-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 68712618 +P 4750 2800 +F 0 "SC1" H 4800 3100 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5050 2887 50 0000 R CNN +F 2 "" H 4750 1300 50 0001 C CNN +F 3 "" H 4750 2800 50 0001 C CNN + 1 4750 2800 + 0 -1 1 0 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 6871269E +P 9750 3750 +F 0 "scmode1" H 9750 3900 98 0000 C CNB +F 1 "SKY130mode" H 9750 3650 118 0000 C CNB +F 2 "" H 9750 3900 60 0001 C CNN +F 3 "" H 9750 3900 60 0001 C CNN + 1 9750 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 687126DC +P 4200 3050 +F 0 "U1" H 4250 3150 30 0000 C CNN +F 1 "PORT" H 4200 3050 30 0000 C CNN +F 2 "" H 4200 3050 60 0000 C CNN +F 3 "" H 4200 3050 60 0000 C CNN + 1 4200 3050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4750 2900 4750 3050 +Wire Wire Line + 4750 3050 4450 3050 +Wire Wire Line + 4450 3050 4450 3000 +Connection ~ 4450 3050 +$Comp +L PORT U1 +U 3 1 687127CB +P 5000 2300 +F 0 "U1" H 5050 2400 30 0000 C CNN +F 1 "PORT" H 5000 2300 30 0000 C CNN +F 2 "" H 5000 2300 60 0000 C CNN +F 3 "" H 5000 2300 60 0000 C CNN + 3 5000 2300 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 2 1 68712813 +P 4500 2500 +F 0 "U1" H 4550 2600 30 0000 C CNN +F 1 "PORT" H 4500 2500 30 0000 C CNN +F 2 "" H 4500 2500 60 0000 C CNN +F 3 "" H 4500 2500 60 0000 C CNN + 2 4500 2500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 6871285A +P 5300 2650 +F 0 "U1" H 5350 2750 30 0000 C CNN +F 1 "PORT" H 5300 2650 30 0000 C CNN +F 2 "" H 5300 2650 60 0000 C CNN +F 3 "" H 5300 2650 60 0000 C CNN + 4 5300 2650 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 687128A1 +P 5300 3250 +F 0 "U1" H 5350 3350 30 0000 C CNN +F 1 "PORT" H 5300 3250 30 0000 C CNN +F 2 "" H 5300 3250 60 0000 C CNN +F 3 "" H 5300 3250 60 0000 C CNN + 5 5300 3250 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 6 1 687128DA +P 6250 2950 +F 0 "U1" H 6300 3050 30 0000 C CNN +F 1 "PORT" H 6250 2950 30 0000 C CNN +F 2 "" H 6250 2950 60 0000 C CNN +F 3 "" H 6250 2950 60 0000 C CNN + 6 6250 2950 + -1 0 0 -1 +$EndComp +$Comp +L D_FF X1 +U 1 1 6877C57A +P 5500 2950 +F 0 "X1" H 5500 2950 60 0000 C CNN +F 1 "D_FF" H 5550 2700 60 0000 C CNN +F 2 "" H 5500 2950 60 0001 C CNN +F 3 "" H 5500 2950 60 0001 C CNN + 1 5500 2950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5050 2650 5050 2800 +Wire Wire Line + 5000 2550 5000 2900 +Wire Wire Line + 5000 2900 5050 2900 +Wire Wire Line + 5050 3250 5050 3100 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/DFF_CE.sub b/library/SubcircuitLibrary/SN74LS548/DFF_CE.sub new file mode 100644 index 000000000..4bb98577f --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/DFF_CE.sub @@ -0,0 +1,10 @@ +* Subcircuit DFF_CE +.subckt DFF_CE net-_sc1-pad3_ net-_sc1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ +* h:\esim\esim\library\subcircuitlibrary\dff_ce\dff_ce.cir +.include D_FF.sub +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +* s c m o d e +x1 net-_u1-pad3_ net-_sc1-pad1_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ D_FF +* Control Statements + +.ends DFF_CE \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/DFF_CE_Previous_Values.xml b/library/SubcircuitLibrary/SN74LS548/DFF_CE_Previous_Values.xml new file mode 100644 index 000000000..21a8422bd --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/DFF_CE_Previous_Values.xml @@ -0,0 +1 @@ +H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spicettw=3 l=0.15H:\esim\eSim\library\SubcircuitLibrary\D_FFtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/D_FF-cache.lib b/library/SubcircuitLibrary/SN74LS548/D_FF-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/D_FF-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/D_FF.bak b/library/SubcircuitLibrary/SN74LS548/D_FF.bak new file mode 100644 index 000000000..61b02ff48 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/D_FF.bak @@ -0,0 +1,246 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode? +U 1 1 685A3E76 +P 9400 3200 +F 0 "scmode?" H 9400 3350 98 0000 C CNB +F 1 "SKY130mode" H 9400 3100 118 0000 C CNB +F 2 "" H 9400 3350 60 0001 C CNN +F 3 "" H 9400 3350 60 0001 C CNN + 1 9400 3200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC? +U 1 1 685A3EBD +P 4000 3300 +F 0 "SC?" H 4050 3600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4300 3387 50 0000 R CNN +F 2 "" H 4000 1800 50 0001 C CNN +F 3 "" H 4000 3300 50 0001 C CNN + 1 4000 3300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3EFC +P 4000 4100 +F 0 "SC?" H 4050 4400 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4187 50 0000 R CNN +F 2 "" H 4000 2600 50 0001 C CNN +F 3 "" H 4000 4100 50 0001 C CNN + 1 4000 4100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3F47 +P 4000 4900 +F 0 "SC?" H 4050 5200 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4987 50 0000 R CNN +F 2 "" H 4000 3400 50 0001 C CNN +F 3 "" H 4000 4900 50 0001 C CNN + 1 4000 4900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC? +U 1 1 685A3F7A +P 4950 3700 +F 0 "SC?" H 5000 4000 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5250 3787 50 0000 R CNN +F 2 "" H 4950 2200 50 0001 C CNN +F 3 "" H 4950 3700 50 0001 C CNN + 1 4950 3700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC? +U 1 1 685A3FCF +P 4950 4500 +F 0 "SC?" H 5000 4800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5250 4587 50 0000 R CNN +F 2 "" H 4950 3000 50 0001 C CNN +F 3 "" H 4950 4500 50 0001 C CNN + 1 4950 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 1 1 685A401A +P 3250 3550 +F 0 "U?" H 3300 3650 30 0000 C CNN +F 1 "PORT" H 3250 3550 30 0000 C CNN +F 2 "" H 3250 3550 60 0000 C CNN +F 3 "" H 3250 3550 60 0000 C CNN + 1 3250 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 2 1 685A40FF +P 3250 4100 +F 0 "U?" H 3300 4200 30 0000 C CNN +F 1 "PORT" H 3250 4100 30 0000 C CNN +F 2 "" H 3250 4100 60 0000 C CNN +F 3 "" H 3250 4100 60 0000 C CNN + 2 3250 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 3 1 685A4132 +P 3950 2750 +F 0 "U?" H 4000 2850 30 0000 C CNN +F 1 "PORT" H 3950 2750 30 0000 C CNN +F 2 "" H 3950 2750 60 0000 C CNN +F 3 "" H 3950 2750 60 0000 C CNN + 3 3950 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 4 1 685A41B1 +P 3950 5350 +F 0 "U?" H 4000 5450 30 0000 C CNN +F 1 "PORT" H 3950 5350 30 0000 C CNN +F 2 "" H 3950 5350 60 0000 C CNN +F 3 "" H 3950 5350 60 0000 C CNN + 4 3950 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 5 1 685A4206 +P 5700 4100 +F 0 "U?" H 5750 4200 30 0000 C CNN +F 1 "PORT" H 5700 4100 30 0000 C CNN +F 2 "" H 5700 4100 60 0000 C CNN +F 3 "" H 5700 4100 60 0000 C CNN + 5 5700 4100 + -1 0 0 1 +$EndComp +Wire Wire Line + 4200 3600 4200 3800 +Wire Wire Line + 3700 3300 3600 3300 +Wire Wire Line + 3600 3300 3600 4900 +Wire Wire Line + 3600 4900 3700 4900 +Wire Wire Line + 3500 3550 3600 3550 +Connection ~ 3600 3550 +Wire Wire Line + 3500 4100 3700 4100 +Wire Wire Line + 4200 2750 4200 3000 +Wire Wire Line + 4650 3700 4200 3700 +Connection ~ 4200 3700 +Wire Wire Line + 4200 4400 4200 4600 +Wire Wire Line + 4650 4500 4200 4500 +Connection ~ 4200 4500 +Wire Wire Line + 5150 4000 5150 4200 +Wire Wire Line + 5450 4100 5150 4100 +Connection ~ 5150 4100 +Wire Wire Line + 4200 5200 4200 5350 +Wire Wire Line + 4100 4900 4250 4900 +Wire Wire Line + 4250 4900 4250 5250 +Wire Wire Line + 4200 5250 5150 5250 +Connection ~ 4200 5250 +Wire Wire Line + 5150 5250 5150 4800 +Connection ~ 4250 5250 +Wire Wire Line + 5050 4500 5200 4500 +Wire Wire Line + 5200 4500 5200 4850 +Wire Wire Line + 5200 4850 5150 4850 +Connection ~ 5150 4850 +Wire Wire Line + 4100 4100 4250 4100 +Wire Wire Line + 4250 4100 4250 4500 +Connection ~ 4250 4500 +Wire Wire Line + 4100 3300 4250 3300 +Wire Wire Line + 4250 3300 4250 2950 +Wire Wire Line + 4200 2950 5150 2950 +Connection ~ 4200 2950 +Wire Wire Line + 5150 2950 5150 3400 +Connection ~ 4250 2950 +Wire Wire Line + 5050 3700 5200 3700 +Wire Wire Line + 5200 3700 5200 3350 +Wire Wire Line + 5200 3350 5150 3350 +Connection ~ 5150 3350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/D_FF.cir b/library/SubcircuitLibrary/SN74LS548/D_FF.cir new file mode 100644 index 000000000..0a7e96074 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/D_FF.cir @@ -0,0 +1,17 @@ +* H:\esim\eSim\library\SubcircuitLibrary\D_FF\D_FF.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/16/25 12:03:13 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +scmode1 SKY130mode +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +SC3 Net-_SC2-Pad3_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC4-Pad1_ Net-_SC1-Pad1_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC5 Net-_SC4-Pad1_ Net-_SC2-Pad3_ Net-_SC3-Pad3_ Net-_SC3-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC3-Pad3_ Net-_SC4-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN74LS548/D_FF.cir.out b/library/SubcircuitLibrary/SN74LS548/D_FF.cir.out new file mode 100644 index 000000000..27dfd2ff9 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/D_FF.cir.out @@ -0,0 +1,19 @@ +* h:\esim\esim\library\subcircuitlibrary\d_ff\d_ff.cir + + +* s c m o d e +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc3 net-_sc2-pad3_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc4-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc4-pad1_ net-_sc2-pad3_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad3_ net-_sc4-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS548/D_FF.pro b/library/SubcircuitLibrary/SN74LS548/D_FF.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/D_FF.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74LS548/D_FF.sch b/library/SubcircuitLibrary/SN74LS548/D_FF.sch new file mode 100644 index 000000000..722069493 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/D_FF.sch @@ -0,0 +1,246 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 685A3E76 +P 9400 3200 +F 0 "scmode1" H 9400 3350 98 0000 C CNB +F 1 "SKY130mode" H 9400 3100 118 0000 C CNB +F 2 "" H 9400 3350 60 0001 C CNN +F 3 "" H 9400 3350 60 0001 C CNN + 1 9400 3200 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 685A3EBD +P 4000 3300 +F 0 "SC1" H 4050 3600 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4300 3387 50 0000 R CNN +F 2 "" H 4000 1800 50 0001 C CNN +F 3 "" H 4000 3300 50 0001 C CNN + 1 4000 3300 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 685A3EFC +P 4000 4100 +F 0 "SC2" H 4050 4400 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4187 50 0000 R CNN +F 2 "" H 4000 2600 50 0001 C CNN +F 3 "" H 4000 4100 50 0001 C CNN + 1 4000 4100 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 685A3F47 +P 4000 4900 +F 0 "SC3" H 4050 5200 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 4300 4987 50 0000 R CNN +F 2 "" H 4000 3400 50 0001 C CNN +F 3 "" H 4000 4900 50 0001 C CNN + 1 4000 4900 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC4 +U 1 1 685A3F7A +P 4950 3700 +F 0 "SC4" H 5000 4000 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5250 3787 50 0000 R CNN +F 2 "" H 4950 2200 50 0001 C CNN +F 3 "" H 4950 3700 50 0001 C CNN + 1 4950 3700 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 685A3FCF +P 4950 4500 +F 0 "SC5" H 5000 4800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5250 4587 50 0000 R CNN +F 2 "" H 4950 3000 50 0001 C CNN +F 3 "" H 4950 4500 50 0001 C CNN + 1 4950 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 685A401A +P 3250 3550 +F 0 "U1" H 3300 3650 30 0000 C CNN +F 1 "PORT" H 3250 3550 30 0000 C CNN +F 2 "" H 3250 3550 60 0000 C CNN +F 3 "" H 3250 3550 60 0000 C CNN + 1 3250 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685A40FF +P 3250 4100 +F 0 "U1" H 3300 4200 30 0000 C CNN +F 1 "PORT" H 3250 4100 30 0000 C CNN +F 2 "" H 3250 4100 60 0000 C CNN +F 3 "" H 3250 4100 60 0000 C CNN + 2 3250 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685A4132 +P 3950 2750 +F 0 "U1" H 4000 2850 30 0000 C CNN +F 1 "PORT" H 3950 2750 30 0000 C CNN +F 2 "" H 3950 2750 60 0000 C CNN +F 3 "" H 3950 2750 60 0000 C CNN + 3 3950 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 685A41B1 +P 3950 5350 +F 0 "U1" H 4000 5450 30 0000 C CNN +F 1 "PORT" H 3950 5350 30 0000 C CNN +F 2 "" H 3950 5350 60 0000 C CNN +F 3 "" H 3950 5350 60 0000 C CNN + 4 3950 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 685A4206 +P 5700 4100 +F 0 "U1" H 5750 4200 30 0000 C CNN +F 1 "PORT" H 5700 4100 30 0000 C CNN +F 2 "" H 5700 4100 60 0000 C CNN +F 3 "" H 5700 4100 60 0000 C CNN + 5 5700 4100 + -1 0 0 1 +$EndComp +Wire Wire Line + 4200 3600 4200 3800 +Wire Wire Line + 3700 3300 3600 3300 +Wire Wire Line + 3600 3300 3600 4900 +Wire Wire Line + 3600 4900 3700 4900 +Wire Wire Line + 3500 3550 3600 3550 +Connection ~ 3600 3550 +Wire Wire Line + 3500 4100 3700 4100 +Wire Wire Line + 4200 2750 4200 3000 +Wire Wire Line + 4650 3700 4200 3700 +Connection ~ 4200 3700 +Wire Wire Line + 4200 4400 4200 4600 +Wire Wire Line + 4650 4500 4200 4500 +Connection ~ 4200 4500 +Wire Wire Line + 5150 4000 5150 4200 +Wire Wire Line + 5450 4100 5150 4100 +Connection ~ 5150 4100 +Wire Wire Line + 4200 5200 4200 5350 +Wire Wire Line + 4100 4900 4250 4900 +Wire Wire Line + 4250 4900 4250 5250 +Wire Wire Line + 4200 5250 5150 5250 +Connection ~ 4200 5250 +Wire Wire Line + 5150 5250 5150 4800 +Connection ~ 4250 5250 +Wire Wire Line + 5050 4500 5200 4500 +Wire Wire Line + 5200 4500 5200 4850 +Wire Wire Line + 5200 4850 5150 4850 +Connection ~ 5150 4850 +Wire Wire Line + 4100 4100 4250 4100 +Wire Wire Line + 4250 4100 4250 4500 +Connection ~ 4250 4500 +Wire Wire Line + 4100 3300 4250 3300 +Wire Wire Line + 4250 3300 4250 2950 +Wire Wire Line + 4200 2950 5150 2950 +Connection ~ 4200 2950 +Wire Wire Line + 5150 2950 5150 3400 +Connection ~ 4250 2950 +Wire Wire Line + 5050 3700 5200 3700 +Wire Wire Line + 5200 3700 5200 3350 +Wire Wire Line + 5200 3350 5150 3350 +Connection ~ 5150 3350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/D_FF.sub b/library/SubcircuitLibrary/SN74LS548/D_FF.sub new file mode 100644 index 000000000..194596578 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/D_FF.sub @@ -0,0 +1,13 @@ +* Subcircuit D_FF +.subckt D_FF net-_sc1-pad2_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc3-pad3_ net-_sc4-pad1_ +* h:\esim\esim\library\subcircuitlibrary\d_ff\d_ff.cir + +* s c m o d e +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc3 net-_sc2-pad3_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc4-pad1_ net-_sc1-pad1_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc5 net-_sc4-pad1_ net-_sc2-pad3_ net-_sc3-pad3_ net-_sc3-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* Control Statements + +.ends D_FF \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/D_FF_Previous_Values.xml b/library/SubcircuitLibrary/SN74LS548/D_FF_Previous_Values.xml new file mode 100644 index 000000000..cdc78294b --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/D_FF_Previous_Values.xml @@ -0,0 +1 @@ +H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=1 l=0.15w=3 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/MUX_21-cache.lib b/library/SubcircuitLibrary/SN74LS548/MUX_21-cache.lib new file mode 100644 index 000000000..cd968f1fb --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/MUX_21-cache.lib @@ -0,0 +1,98 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 250 0 50 0 1 0 N +P 2 0 1 0 -250 150 200 0 N +P 3 0 1 0 -250 150 -250 -150 200 0 N +X IN 1 -450 0 200 R 50 50 1 1 I +X VDD 2 -450 100 200 R 50 50 1 1 I +X GND 3 -450 -100 200 R 50 50 1 1 I +X OUT 4 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/MUX_21-rescue.lib b/library/SubcircuitLibrary/SN74LS548/MUX_21-rescue.lib new file mode 100644 index 000000000..d9053d1b6 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/MUX_21-rescue.lib @@ -0,0 +1,22 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# CMOS_INVTR-RESCUE-MUX_21 +# +DEF CMOS_INVTR-RESCUE-MUX_21 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR-RESCUE-MUX_21" 50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 300 0 50 0 1 0 N +P 2 0 1 0 -200 150 250 0 N +P 3 0 1 0 -200 150 -200 -150 250 0 N +X in 1 -400 0 200 R 50 50 1 1 I +X Vdd 2 -400 100 200 R 50 50 1 1 I +X Gnd 3 -400 -100 200 R 50 50 1 1 I +X Out 4 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/MUX_21.bak b/library/SubcircuitLibrary/SN74LS548/MUX_21.bak new file mode 100644 index 000000000..fea7fc6c8 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/MUX_21.bak @@ -0,0 +1,196 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L CMOS_INVTR X1 +U 1 1 68711FA9 +P 5650 1650 +F 0 "X1" H 5650 1650 60 0000 C CNN +F 1 "CMOS_INVTR" H 5700 1450 60 0000 C CNN +F 2 "" H 5650 1650 60 0001 C CNN +F 3 "" H 5650 1650 60 0001 C CNN + 1 5650 1650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 68711FE2 +P 4700 2000 +F 0 "SC1" H 4750 2300 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5000 2087 50 0000 R CNN +F 2 "" H 4700 500 50 0001 C CNN +F 3 "" H 4700 2000 50 0001 C CNN + 1 4700 2000 + 0 1 1 0 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 68712114 +P 6200 2300 +F 0 "SC2" H 6250 2600 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6500 2387 50 0000 R CNN +F 2 "" H 6200 800 50 0001 C CNN +F 3 "" H 6200 2300 50 0001 C CNN + 1 6200 2300 + 0 1 1 0 +$EndComp +Wire Wire Line + 4250 1650 5250 1650 +Wire Wire Line + 4700 1700 4700 1650 +Connection ~ 4700 1650 +Wire Wire Line + 4400 2200 4250 2200 +Wire Wire Line + 4700 2100 4700 2250 +Wire Wire Line + 4700 2250 4350 2250 +Wire Wire Line + 4350 2250 4350 2200 +Connection ~ 4350 2200 +Wire Wire Line + 6200 1650 6200 2000 +Wire Wire Line + 5900 2500 4250 2500 +Wire Wire Line + 6200 2400 6200 2550 +Wire Wire Line + 6200 2550 5800 2550 +Wire Wire Line + 5800 2550 5800 2500 +Connection ~ 5800 2500 +Wire Wire Line + 5000 2200 6850 2200 +Wire Wire Line + 6500 2200 6500 2500 +Connection ~ 6500 2200 +$Comp +L PORT U1 +U 1 1 687121FA +P 4000 1650 +F 0 "U1" H 4050 1750 30 0000 C CNN +F 1 "PORT" H 4000 1650 30 0000 C CNN +F 2 "" H 4000 1650 60 0000 C CNN +F 3 "" H 4000 1650 60 0000 C CNN + 1 4000 1650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68712241 +P 4000 2200 +F 0 "U1" H 4050 2300 30 0000 C CNN +F 1 "PORT" H 4000 2200 30 0000 C CNN +F 2 "" H 4000 2200 60 0000 C CNN +F 3 "" H 4000 2200 60 0000 C CNN + 2 4000 2200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6871226C +P 4000 2500 +F 0 "U1" H 4050 2600 30 0000 C CNN +F 1 "PORT" H 4000 2500 30 0000 C CNN +F 2 "" H 4000 2500 60 0000 C CNN +F 3 "" H 4000 2500 60 0000 C CNN + 3 4000 2500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68712295 +P 5000 1550 +F 0 "U1" H 5050 1650 30 0000 C CNN +F 1 "PORT" H 5000 1550 30 0000 C CNN +F 2 "" H 5000 1550 60 0000 C CNN +F 3 "" H 5000 1550 60 0000 C CNN + 4 5000 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 687122E8 +P 5000 1750 +F 0 "U1" H 5050 1850 30 0000 C CNN +F 1 "PORT" H 5000 1750 30 0000 C CNN +F 2 "" H 5000 1750 60 0000 C CNN +F 3 "" H 5000 1750 60 0000 C CNN + 5 5000 1750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68712317 +P 7100 2200 +F 0 "U1" H 7150 2300 30 0000 C CNN +F 1 "PORT" H 7100 2200 30 0000 C CNN +F 2 "" H 7100 2200 60 0000 C CNN +F 3 "" H 7100 2200 60 0000 C CNN + 6 7100 2200 + -1 0 0 1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68712384 +P 8900 2800 +F 0 "scmode1" H 8900 2950 98 0000 C CNB +F 1 "SKY130mode" H 8900 2700 118 0000 C CNB +F 2 "" H 8900 2950 60 0001 C CNN +F 3 "" H 8900 2950 60 0001 C CNN + 1 8900 2800 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/MUX_21.cir b/library/SubcircuitLibrary/SN74LS548/MUX_21.cir new file mode 100644 index 000000000..7c308d4a4 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/MUX_21.cir @@ -0,0 +1,15 @@ +* H:\esim\eSim\library\SubcircuitLibrary\MUX_21\MUX_21.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/16/25 20:44:44 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__nfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_SC1-Pad1_ PORT +scmode1 SKY130mode +X1 Net-_SC1-Pad2_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_SC2-Pad2_ CMOS_INVTR + +.end diff --git a/library/SubcircuitLibrary/SN74LS548/MUX_21.cir.out b/library/SubcircuitLibrary/SN74LS548/MUX_21.cir.out new file mode 100644 index 000000000..7eff53e07 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/MUX_21.cir.out @@ -0,0 +1,18 @@ +* h:\esim\esim\library\subcircuitlibrary\mux_21\mux_21.cir + +.include CMOS_INVTR.sub + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_sc1-pad1_ port +* s c m o d e +x1 net-_sc1-pad2_ net-_u1-pad4_ net-_u1-pad5_ net-_sc2-pad2_ CMOS_INVTR +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS548/MUX_21.pro b/library/SubcircuitLibrary/SN74LS548/MUX_21.pro new file mode 100644 index 000000000..95be4d314 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/MUX_21.pro @@ -0,0 +1,74 @@ +update=07/16/25 20:43:20 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=MUX_21-rescue +LibName2=adc-dac +LibName3=memory +LibName4=xilinx +LibName5=microcontrollers +LibName6=dsp +LibName7=microchip +LibName8=analog_switches +LibName9=motorola +LibName10=texas +LibName11=intel +LibName12=audio +LibName13=interface +LibName14=digital-audio +LibName15=philips +LibName16=display +LibName17=cypress +LibName18=siliconi +LibName19=opto +LibName20=atmel +LibName21=contrib +LibName22=power +LibName23=eSim_Plot +LibName24=transistors +LibName25=conn +LibName26=eSim_User +LibName27=regul +LibName28=74xx +LibName29=cmos4000 +LibName30=eSim_Analog +LibName31=eSim_Devices +LibName32=eSim_Digital +LibName33=eSim_Hybrid +LibName34=eSim_Miscellaneous +LibName35=eSim_Power +LibName36=eSim_Sources +LibName37=eSim_Subckt +LibName38=eSim_Nghdl +LibName39=eSim_Ngveri +LibName40=eSim_SKY130 +LibName41=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74LS548/MUX_21.sch b/library/SubcircuitLibrary/SN74LS548/MUX_21.sch new file mode 100644 index 000000000..31974c758 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/MUX_21.sch @@ -0,0 +1,198 @@ +EESchema Schematic File Version 2 +LIBS:MUX_21-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:MUX_21-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__nfet_01v8 SC1 +U 1 1 68711FE2 +P 4700 2000 +F 0 "SC1" H 4750 2300 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5000 2087 50 0000 R CNN +F 2 "" H 4700 500 50 0001 C CNN +F 3 "" H 4700 2000 50 0001 C CNN + 1 4700 2000 + 0 1 1 0 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 68712114 +P 6200 2300 +F 0 "SC2" H 6250 2600 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6500 2387 50 0000 R CNN +F 2 "" H 6200 800 50 0001 C CNN +F 3 "" H 6200 2300 50 0001 C CNN + 1 6200 2300 + 0 1 1 0 +$EndComp +Wire Wire Line + 4250 1650 5250 1650 +Wire Wire Line + 4700 1700 4700 1650 +Connection ~ 4700 1650 +Wire Wire Line + 4400 2200 4250 2200 +Wire Wire Line + 4700 2100 4700 2250 +Wire Wire Line + 4700 2250 4350 2250 +Wire Wire Line + 4350 2250 4350 2200 +Connection ~ 4350 2200 +Wire Wire Line + 6200 1650 6200 2000 +Wire Wire Line + 5900 2500 4250 2500 +Wire Wire Line + 6200 2400 6200 2550 +Wire Wire Line + 6200 2550 5800 2550 +Wire Wire Line + 5800 2550 5800 2500 +Connection ~ 5800 2500 +Wire Wire Line + 5000 2200 6850 2200 +Wire Wire Line + 6500 2200 6500 2500 +Connection ~ 6500 2200 +$Comp +L PORT U1 +U 1 1 687121FA +P 4000 1650 +F 0 "U1" H 4050 1750 30 0000 C CNN +F 1 "PORT" H 4000 1650 30 0000 C CNN +F 2 "" H 4000 1650 60 0000 C CNN +F 3 "" H 4000 1650 60 0000 C CNN + 1 4000 1650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68712241 +P 4000 2200 +F 0 "U1" H 4050 2300 30 0000 C CNN +F 1 "PORT" H 4000 2200 30 0000 C CNN +F 2 "" H 4000 2200 60 0000 C CNN +F 3 "" H 4000 2200 60 0000 C CNN + 2 4000 2200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6871226C +P 4000 2500 +F 0 "U1" H 4050 2600 30 0000 C CNN +F 1 "PORT" H 4000 2500 30 0000 C CNN +F 2 "" H 4000 2500 60 0000 C CNN +F 3 "" H 4000 2500 60 0000 C CNN + 3 4000 2500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68712295 +P 5000 1550 +F 0 "U1" H 5050 1650 30 0000 C CNN +F 1 "PORT" H 5000 1550 30 0000 C CNN +F 2 "" H 5000 1550 60 0000 C CNN +F 3 "" H 5000 1550 60 0000 C CNN + 4 5000 1550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 687122E8 +P 5000 1750 +F 0 "U1" H 5050 1850 30 0000 C CNN +F 1 "PORT" H 5000 1750 30 0000 C CNN +F 2 "" H 5000 1750 60 0000 C CNN +F 3 "" H 5000 1750 60 0000 C CNN + 5 5000 1750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68712317 +P 7100 2200 +F 0 "U1" H 7150 2300 30 0000 C CNN +F 1 "PORT" H 7100 2200 30 0000 C CNN +F 2 "" H 7100 2200 60 0000 C CNN +F 3 "" H 7100 2200 60 0000 C CNN + 6 7100 2200 + -1 0 0 1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68712384 +P 8900 2800 +F 0 "scmode1" H 8900 2950 98 0000 C CNB +F 1 "SKY130mode" H 8900 2700 118 0000 C CNB +F 2 "" H 8900 2950 60 0001 C CNN +F 3 "" H 8900 2950 60 0001 C CNN + 1 8900 2800 + 1 0 0 -1 +$EndComp +$Comp +L CMOS_INVTR X1 +U 1 1 6877C242 +P 5700 1650 +F 0 "X1" H 5700 1650 60 0000 C CNN +F 1 "CMOS_INVTR" H 5650 1450 60 0000 C CNN +F 2 "" H 5700 1650 60 0001 C CNN +F 3 "" H 5700 1650 60 0001 C CNN + 1 5700 1650 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/MUX_21.sub b/library/SubcircuitLibrary/SN74LS548/MUX_21.sub new file mode 100644 index 000000000..bba590027 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/MUX_21.sub @@ -0,0 +1,12 @@ +* Subcircuit MUX_21 +.subckt MUX_21 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_sc1-pad1_ +* h:\esim\esim\library\subcircuitlibrary\mux_21\mux_21.cir +.include CMOS_INVTR.sub + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +x1 net-_sc1-pad2_ net-_u1-pad4_ net-_u1-pad5_ net-_sc2-pad2_ CMOS_INVTR +* Control Statements + +.ends MUX_21 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/MUX_21_Previous_Values.xml b/library/SubcircuitLibrary/SN74LS548/MUX_21_Previous_Values.xml new file mode 100644 index 000000000..1f3ca4497 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/MUX_21_Previous_Values.xml @@ -0,0 +1 @@ +H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spicettw=1 l=0.15w=1 l=0.15H:\esim\eSim\library\SubcircuitLibrary\CMOS_INVTRtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/Rnk_Blk-cache.lib b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk-cache.lib new file mode 100644 index 000000000..a31ec5ac2 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk-cache.lib @@ -0,0 +1,109 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# DFF_CE +# +DEF DFF_CE X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "DFF_CE" 0 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -400 150 300 -150 0 1 0 N +X CLK 1 -600 -100 200 R 50 50 1 1 I +X CLK_EN 2 -600 0 200 R 50 50 1 1 I +X D 3 -600 100 200 R 50 50 1 1 I +X VDD 4 500 100 200 L 50 50 1 1 I +X GND 5 500 -100 200 L 50 50 1 1 I +X OUT 6 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# MUX_21 +# +DEF MUX_21 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "MUX_21" 200 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +P 5 0 1 0 -250 200 -250 -200 200 -100 200 100 -250 200 N +X S 1 0 -350 200 U 50 50 1 1 O +X B 2 -450 -50 200 R 50 50 1 1 I +X A 3 -450 50 200 R 50 50 1 1 I +X VDD 4 -450 150 200 R 50 50 1 1 I +X GND 5 -450 -150 200 R 50 50 1 1 I +X Y 6 400 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# tri_state +# +DEF tri_state X 0 40 Y Y 1 F N +F0 "X" 100 0 60 H V C CNN +F1 "tri_state" 150 -150 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +P 4 0 1 0 -250 150 350 0 -250 -150 -250 150 N +X IN 1 -450 0 200 R 50 50 1 1 I +X VDD 2 -450 100 200 R 50 50 1 1 I +X GND 3 -450 -100 200 R 50 50 1 1 I +X EN 4 0 300 200 D 50 50 1 1 I I +X OUT 5 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/Rnk_Blk-rescue.lib b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk-rescue.lib new file mode 100644 index 000000000..4fbf03adc --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk-rescue.lib @@ -0,0 +1,23 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# tri_state-RESCUE-Rnk_Blk +# +DEF tri_state-RESCUE-Rnk_Blk X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "tri_state-RESCUE-Rnk_Blk" 50 -200 60 H V C CNN +F2 "" 1450 -500 60 H I C CNN +F3 "" 1450 -500 60 H I C CNN +DRAW +C -50 150 50 0 1 0 N +P 2 0 1 0 -250 150 250 0 N +P 3 0 1 0 -250 150 -250 -150 250 0 N +X in 1 -450 0 200 R 50 50 1 1 I +X Vdd 2 -450 100 200 R 50 50 1 1 I +X Gnd 3 -450 -100 200 R 50 50 1 1 I +X En 4 -50 400 200 D 50 50 1 1 I +X out 5 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.bak b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.bak new file mode 100644 index 000000000..ba355107f --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.bak @@ -0,0 +1,319 @@ +EESchema Schematic File Version 2 +LIBS:Rnk_Blk-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:Rnk_Blk-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +Wire Wire Line + 4250 2350 4500 2350 +Wire Wire Line + 3200 2050 4400 2050 +Wire Wire Line + 4400 2050 4400 2250 +Wire Wire Line + 4400 2250 4500 2250 +Wire Wire Line + 5350 2300 5450 2300 +Wire Wire Line + 5450 2300 5450 2250 +Wire Wire Line + 5450 2250 5600 2250 +Wire Wire Line + 6900 2250 6800 2250 +Wire Wire Line + 6800 2250 6800 2000 +Wire Wire Line + 6800 2000 4350 2000 +Wire Wire Line + 4350 2000 4350 2350 +Connection ~ 4350 2350 +Wire Wire Line + 4250 2450 4250 2550 +Wire Wire Line + 4250 2550 7750 2550 +Wire Wire Line + 7750 2550 7750 2400 +Wire Wire Line + 6900 2450 6900 2550 +Connection ~ 6900 2550 +Connection ~ 6650 2550 +Wire Wire Line + 4500 2450 4500 2550 +Connection ~ 4500 2550 +Wire Wire Line + 5600 2450 5600 2600 +Wire Wire Line + 5600 2600 3200 2600 +Wire Wire Line + 4250 2250 4250 1950 +Wire Wire Line + 4250 1950 7750 1950 +Wire Wire Line + 7750 1950 7750 2200 +Wire Wire Line + 6900 2150 6900 1950 +Connection ~ 6900 1950 +Connection ~ 6650 1950 +Wire Wire Line + 4500 2150 4500 1950 +Connection ~ 4500 1950 +$Comp +L PORT U1 +U 1 1 68712BF8 +P 2950 2050 +F 0 "U1" H 3000 2150 30 0000 C CNN +F 1 "PORT" H 2950 2050 30 0000 C CNN +F 2 "" H 2950 2050 60 0000 C CNN +F 3 "" H 2950 2050 60 0000 C CNN + 1 2950 2050 + 1 0 0 -1 +$EndComp +Connection ~ 3200 2050 +Connection ~ 3200 2600 +$Comp +L PORT U1 +U 2 1 68712D01 +P 2900 2350 +F 0 "U1" H 2950 2450 30 0000 C CNN +F 1 "PORT" H 2900 2350 30 0000 C CNN +F 2 "" H 2900 2350 60 0000 C CNN +F 3 "" H 2900 2350 60 0000 C CNN + 2 2900 2350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68712D4B +P 2950 2600 +F 0 "U1" H 3000 2700 30 0000 C CNN +F 1 "PORT" H 2950 2600 30 0000 C CNN +F 2 "" H 2950 2600 60 0000 C CNN +F 3 "" H 2950 2600 60 0000 C CNN + 3 2950 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68712D90 +P 4500 1700 +F 0 "U1" H 4550 1800 30 0000 C CNN +F 1 "PORT" H 4500 1700 30 0000 C CNN +F 2 "" H 4500 1700 60 0000 C CNN +F 3 "" H 4500 1700 60 0000 C CNN + 4 4500 1700 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 5 1 68712DD7 +P 4500 2800 +F 0 "U1" H 4550 2900 30 0000 C CNN +F 1 "PORT" H 4500 2800 30 0000 C CNN +F 2 "" H 4500 2800 60 0000 C CNN +F 3 "" H 4500 2800 60 0000 C CNN + 5 4500 2800 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 6 1 68712F5A +P 4950 2900 +F 0 "U1" H 5000 3000 30 0000 C CNN +F 1 "PORT" H 4950 2900 30 0000 C CNN +F 2 "" H 4950 2900 60 0000 C CNN +F 3 "" H 4950 2900 60 0000 C CNN + 6 4950 2900 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 7 1 68713016 +P 5350 2350 +F 0 "U1" H 5400 2450 30 0000 C CNN +F 1 "PORT" H 5350 2350 30 0000 C CNN +F 2 "" H 5350 2350 60 0000 C CNN +F 3 "" H 5350 2350 60 0000 C CNN + 7 5350 2350 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 687130AE +P 7100 2650 +F 0 "U1" H 7150 2750 30 0000 C CNN +F 1 "PORT" H 7100 2650 30 0000 C CNN +F 2 "" H 7100 2650 60 0000 C CNN +F 3 "" H 7100 2650 60 0000 C CNN + 8 7100 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 68713163 +P 8400 1900 +F 0 "U1" H 8450 2000 30 0000 C CNN +F 1 "PORT" H 8400 1900 30 0000 C CNN +F 2 "" H 8400 1900 60 0000 C CNN +F 3 "" H 8400 1900 60 0000 C CNN + 9 8400 1900 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 6871323C +P 9000 2300 +F 0 "U1" H 9050 2400 30 0000 C CNN +F 1 "PORT" H 9000 2300 30 0000 C CNN +F 2 "" H 9000 2300 60 0000 C CNN +F 3 "" H 9000 2300 60 0000 C CNN + 10 9000 2300 + -1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 6871331A +P 9150 3800 +F 0 "scmode1" H 9150 3950 98 0000 C CNB +F 1 "SKY130mode" H 9150 3700 118 0000 C CNB +F 2 "" H 9150 3950 60 0001 C CNN +F 3 "" H 9150 3950 60 0001 C CNN + 1 9150 3800 + 1 0 0 -1 +$EndComp +$Comp +L DFF_CE X1 +U 1 1 6877CD0C +P 3750 2350 +F 0 "X1" H 3750 2350 60 0000 C CNN +F 1 "DFF_CE" H 3750 2150 60 0000 C CNN +F 2 "" H 3750 2350 60 0001 C CNN +F 3 "" H 3750 2350 60 0001 C CNN + 1 3750 2350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3200 2050 3200 2150 +Wire Wire Line + 3200 2150 3150 2150 +Wire Wire Line + 3150 2150 3150 2250 +Wire Wire Line + 3200 2600 3200 2500 +Wire Wire Line + 3200 2500 3150 2500 +Wire Wire Line + 3150 2500 3150 2450 +$Comp +L MUX_21 X2 +U 1 1 6877CE6E +P 4950 2300 +F 0 "X2" H 4950 2300 60 0000 C CNN +F 1 "MUX_21" H 5150 2100 60 0000 C CNN +F 2 "" H 4950 2300 60 0001 C CNN +F 3 "" H 4950 2300 60 0001 C CNN + 1 4950 2300 + 1 0 0 -1 +$EndComp +$Comp +L DFF_CE X3 +U 1 1 6877CF81 +P 6200 2350 +F 0 "X3" H 6200 2350 60 0000 C CNN +F 1 "DFF_CE" H 6200 2150 60 0000 C CNN +F 2 "" H 6200 2350 60 0001 C CNN +F 3 "" H 6200 2350 60 0001 C CNN + 1 6200 2350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6650 1950 6650 2150 +Wire Wire Line + 6650 2150 6700 2150 +Wire Wire Line + 6700 2150 6700 2250 +Wire Wire Line + 6700 2350 6900 2350 +Wire Wire Line + 6700 2450 6700 2500 +Wire Wire Line + 6700 2500 6650 2500 +Wire Wire Line + 6650 2500 6650 2550 +$Comp +L MUX_21 X4 +U 1 1 6877D0DB +P 7350 2300 +F 0 "X4" H 7350 2300 60 0000 C CNN +F 1 "MUX_21" H 7550 2100 60 0000 C CNN +F 2 "" H 7350 2300 60 0001 C CNN +F 3 "" H 7350 2300 60 0001 C CNN + 1 7350 2300 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X5 +U 1 1 6877D186 +P 8200 2300 +F 0 "X5" H 8300 2300 60 0000 C CNN +F 1 "tri_state" H 8350 2150 60 0000 C CNN +F 2 "" H 8200 2300 60 0001 C CNN +F 3 "" H 8200 2300 60 0001 C CNN + 1 8200 2300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 8150 1900 8150 2000 +Wire Wire Line + 8150 2000 8200 2000 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.cir b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.cir new file mode 100644 index 000000000..2b3dc307a --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.cir @@ -0,0 +1,17 @@ +* H:\esim\eSim\library\SubcircuitLibrary\Rnk_Blk\Rnk_Blk.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/17/25 16:26:27 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ PORT +scmode1 SKY130mode +X1 Net-_U1-Pad3_ Net-_U1-Pad2_ Net-_U1-Pad1_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_X1-Pad6_ DFF_CE +X2 Net-_U1-Pad6_ Net-_X1-Pad6_ Net-_U1-Pad1_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_X2-Pad6_ MUX_21 +X3 Net-_U1-Pad3_ Net-_U1-Pad7_ Net-_X2-Pad6_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_X3-Pad6_ DFF_CE +X4 Net-_U1-Pad8_ Net-_X3-Pad6_ Net-_X1-Pad6_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_X4-Pad6_ MUX_21 +X5 Net-_X4-Pad6_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad9_ Net-_U1-Pad10_ tri_state + +.end diff --git a/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.cir.out b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.cir.out new file mode 100644 index 000000000..34c92dedd --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.cir.out @@ -0,0 +1,22 @@ +* h:\esim\esim\library\subcircuitlibrary\rnk_blk\rnk_blk.cir + +.include MUX_21.sub +.include DFF_CE.sub +.include tri_state.sub + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ port +* s c m o d e +x1 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad1_ net-_u1-pad4_ net-_u1-pad5_ net-_x1-pad6_ DFF_CE +x2 net-_u1-pad6_ net-_x1-pad6_ net-_u1-pad1_ net-_u1-pad4_ net-_u1-pad5_ net-_x2-pad6_ MUX_21 +x3 net-_u1-pad3_ net-_u1-pad7_ net-_x2-pad6_ net-_u1-pad4_ net-_u1-pad5_ net-_x3-pad6_ DFF_CE +x4 net-_u1-pad8_ net-_x3-pad6_ net-_x1-pad6_ net-_u1-pad4_ net-_u1-pad5_ net-_x4-pad6_ MUX_21 +x5 net-_x4-pad6_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad9_ net-_u1-pad10_ tri_state +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.pro b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.pro new file mode 100644 index 000000000..24526b126 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.pro @@ -0,0 +1,74 @@ +update=07/16/25 21:27:45 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=Rnk_Blk-rescue +LibName2=adc-dac +LibName3=memory +LibName4=xilinx +LibName5=microcontrollers +LibName6=dsp +LibName7=microchip +LibName8=analog_switches +LibName9=motorola +LibName10=texas +LibName11=intel +LibName12=audio +LibName13=interface +LibName14=digital-audio +LibName15=philips +LibName16=display +LibName17=cypress +LibName18=siliconi +LibName19=opto +LibName20=atmel +LibName21=contrib +LibName22=power +LibName23=eSim_Plot +LibName24=transistors +LibName25=conn +LibName26=eSim_User +LibName27=regul +LibName28=74xx +LibName29=cmos4000 +LibName30=eSim_Analog +LibName31=eSim_Devices +LibName32=eSim_Digital +LibName33=eSim_Hybrid +LibName34=eSim_Miscellaneous +LibName35=eSim_Power +LibName36=eSim_Sources +LibName37=eSim_Subckt +LibName38=eSim_Nghdl +LibName39=eSim_Ngveri +LibName40=eSim_SKY130 +LibName41=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.sch b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.sch new file mode 100644 index 000000000..ba355107f --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.sch @@ -0,0 +1,319 @@ +EESchema Schematic File Version 2 +LIBS:Rnk_Blk-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:Rnk_Blk-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +Wire Wire Line + 4250 2350 4500 2350 +Wire Wire Line + 3200 2050 4400 2050 +Wire Wire Line + 4400 2050 4400 2250 +Wire Wire Line + 4400 2250 4500 2250 +Wire Wire Line + 5350 2300 5450 2300 +Wire Wire Line + 5450 2300 5450 2250 +Wire Wire Line + 5450 2250 5600 2250 +Wire Wire Line + 6900 2250 6800 2250 +Wire Wire Line + 6800 2250 6800 2000 +Wire Wire Line + 6800 2000 4350 2000 +Wire Wire Line + 4350 2000 4350 2350 +Connection ~ 4350 2350 +Wire Wire Line + 4250 2450 4250 2550 +Wire Wire Line + 4250 2550 7750 2550 +Wire Wire Line + 7750 2550 7750 2400 +Wire Wire Line + 6900 2450 6900 2550 +Connection ~ 6900 2550 +Connection ~ 6650 2550 +Wire Wire Line + 4500 2450 4500 2550 +Connection ~ 4500 2550 +Wire Wire Line + 5600 2450 5600 2600 +Wire Wire Line + 5600 2600 3200 2600 +Wire Wire Line + 4250 2250 4250 1950 +Wire Wire Line + 4250 1950 7750 1950 +Wire Wire Line + 7750 1950 7750 2200 +Wire Wire Line + 6900 2150 6900 1950 +Connection ~ 6900 1950 +Connection ~ 6650 1950 +Wire Wire Line + 4500 2150 4500 1950 +Connection ~ 4500 1950 +$Comp +L PORT U1 +U 1 1 68712BF8 +P 2950 2050 +F 0 "U1" H 3000 2150 30 0000 C CNN +F 1 "PORT" H 2950 2050 30 0000 C CNN +F 2 "" H 2950 2050 60 0000 C CNN +F 3 "" H 2950 2050 60 0000 C CNN + 1 2950 2050 + 1 0 0 -1 +$EndComp +Connection ~ 3200 2050 +Connection ~ 3200 2600 +$Comp +L PORT U1 +U 2 1 68712D01 +P 2900 2350 +F 0 "U1" H 2950 2450 30 0000 C CNN +F 1 "PORT" H 2900 2350 30 0000 C CNN +F 2 "" H 2900 2350 60 0000 C CNN +F 3 "" H 2900 2350 60 0000 C CNN + 2 2900 2350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68712D4B +P 2950 2600 +F 0 "U1" H 3000 2700 30 0000 C CNN +F 1 "PORT" H 2950 2600 30 0000 C CNN +F 2 "" H 2950 2600 60 0000 C CNN +F 3 "" H 2950 2600 60 0000 C CNN + 3 2950 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68712D90 +P 4500 1700 +F 0 "U1" H 4550 1800 30 0000 C CNN +F 1 "PORT" H 4500 1700 30 0000 C CNN +F 2 "" H 4500 1700 60 0000 C CNN +F 3 "" H 4500 1700 60 0000 C CNN + 4 4500 1700 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 5 1 68712DD7 +P 4500 2800 +F 0 "U1" H 4550 2900 30 0000 C CNN +F 1 "PORT" H 4500 2800 30 0000 C CNN +F 2 "" H 4500 2800 60 0000 C CNN +F 3 "" H 4500 2800 60 0000 C CNN + 5 4500 2800 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 6 1 68712F5A +P 4950 2900 +F 0 "U1" H 5000 3000 30 0000 C CNN +F 1 "PORT" H 4950 2900 30 0000 C CNN +F 2 "" H 4950 2900 60 0000 C CNN +F 3 "" H 4950 2900 60 0000 C CNN + 6 4950 2900 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 7 1 68713016 +P 5350 2350 +F 0 "U1" H 5400 2450 30 0000 C CNN +F 1 "PORT" H 5350 2350 30 0000 C CNN +F 2 "" H 5350 2350 60 0000 C CNN +F 3 "" H 5350 2350 60 0000 C CNN + 7 5350 2350 + 1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 687130AE +P 7100 2650 +F 0 "U1" H 7150 2750 30 0000 C CNN +F 1 "PORT" H 7100 2650 30 0000 C CNN +F 2 "" H 7100 2650 60 0000 C CNN +F 3 "" H 7100 2650 60 0000 C CNN + 8 7100 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 68713163 +P 8400 1900 +F 0 "U1" H 8450 2000 30 0000 C CNN +F 1 "PORT" H 8400 1900 30 0000 C CNN +F 2 "" H 8400 1900 60 0000 C CNN +F 3 "" H 8400 1900 60 0000 C CNN + 9 8400 1900 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 6871323C +P 9000 2300 +F 0 "U1" H 9050 2400 30 0000 C CNN +F 1 "PORT" H 9000 2300 30 0000 C CNN +F 2 "" H 9000 2300 60 0000 C CNN +F 3 "" H 9000 2300 60 0000 C CNN + 10 9000 2300 + -1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 6871331A +P 9150 3800 +F 0 "scmode1" H 9150 3950 98 0000 C CNB +F 1 "SKY130mode" H 9150 3700 118 0000 C CNB +F 2 "" H 9150 3950 60 0001 C CNN +F 3 "" H 9150 3950 60 0001 C CNN + 1 9150 3800 + 1 0 0 -1 +$EndComp +$Comp +L DFF_CE X1 +U 1 1 6877CD0C +P 3750 2350 +F 0 "X1" H 3750 2350 60 0000 C CNN +F 1 "DFF_CE" H 3750 2150 60 0000 C CNN +F 2 "" H 3750 2350 60 0001 C CNN +F 3 "" H 3750 2350 60 0001 C CNN + 1 3750 2350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3200 2050 3200 2150 +Wire Wire Line + 3200 2150 3150 2150 +Wire Wire Line + 3150 2150 3150 2250 +Wire Wire Line + 3200 2600 3200 2500 +Wire Wire Line + 3200 2500 3150 2500 +Wire Wire Line + 3150 2500 3150 2450 +$Comp +L MUX_21 X2 +U 1 1 6877CE6E +P 4950 2300 +F 0 "X2" H 4950 2300 60 0000 C CNN +F 1 "MUX_21" H 5150 2100 60 0000 C CNN +F 2 "" H 4950 2300 60 0001 C CNN +F 3 "" H 4950 2300 60 0001 C CNN + 1 4950 2300 + 1 0 0 -1 +$EndComp +$Comp +L DFF_CE X3 +U 1 1 6877CF81 +P 6200 2350 +F 0 "X3" H 6200 2350 60 0000 C CNN +F 1 "DFF_CE" H 6200 2150 60 0000 C CNN +F 2 "" H 6200 2350 60 0001 C CNN +F 3 "" H 6200 2350 60 0001 C CNN + 1 6200 2350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6650 1950 6650 2150 +Wire Wire Line + 6650 2150 6700 2150 +Wire Wire Line + 6700 2150 6700 2250 +Wire Wire Line + 6700 2350 6900 2350 +Wire Wire Line + 6700 2450 6700 2500 +Wire Wire Line + 6700 2500 6650 2500 +Wire Wire Line + 6650 2500 6650 2550 +$Comp +L MUX_21 X4 +U 1 1 6877D0DB +P 7350 2300 +F 0 "X4" H 7350 2300 60 0000 C CNN +F 1 "MUX_21" H 7550 2100 60 0000 C CNN +F 2 "" H 7350 2300 60 0001 C CNN +F 3 "" H 7350 2300 60 0001 C CNN + 1 7350 2300 + 1 0 0 -1 +$EndComp +$Comp +L tri_state X5 +U 1 1 6877D186 +P 8200 2300 +F 0 "X5" H 8300 2300 60 0000 C CNN +F 1 "tri_state" H 8350 2150 60 0000 C CNN +F 2 "" H 8200 2300 60 0001 C CNN +F 3 "" H 8200 2300 60 0001 C CNN + 1 8200 2300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 8150 1900 8150 2000 +Wire Wire Line + 8150 2000 8200 2000 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.sub b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.sub new file mode 100644 index 000000000..0ba174c5b --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk.sub @@ -0,0 +1,16 @@ +* Subcircuit Rnk_Blk +.subckt Rnk_Blk net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ +* h:\esim\esim\library\subcircuitlibrary\rnk_blk\rnk_blk.cir +.include MUX_21.sub +.include DFF_CE.sub +.include tri_state.sub + +* s c m o d e +x1 net-_u1-pad3_ net-_u1-pad2_ net-_u1-pad1_ net-_u1-pad4_ net-_u1-pad5_ net-_x1-pad6_ DFF_CE +x2 net-_u1-pad6_ net-_x1-pad6_ net-_u1-pad1_ net-_u1-pad4_ net-_u1-pad5_ net-_x2-pad6_ MUX_21 +x3 net-_u1-pad3_ net-_u1-pad7_ net-_x2-pad6_ net-_u1-pad4_ net-_u1-pad5_ net-_x3-pad6_ DFF_CE +x4 net-_u1-pad8_ net-_x3-pad6_ net-_x1-pad6_ net-_u1-pad4_ net-_u1-pad5_ net-_x4-pad6_ MUX_21 +x5 net-_x4-pad6_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad9_ net-_u1-pad10_ tri_state +* Control Statements + +.ends Rnk_Blk \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/Rnk_Blk_Previous_Values.xml b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk_Previous_Values.xml new file mode 100644 index 000000000..b337a3d34 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/Rnk_Blk_Previous_Values.xml @@ -0,0 +1 @@ +H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spicettH:\esim\eSim\library\SubcircuitLibrary\DFF_CEH:\esim\eSim\library\SubcircuitLibrary\MUX_21H:\esim\eSim\library\SubcircuitLibrary\DFF_CEH:\esim\eSim\library\SubcircuitLibrary\MUX_21H:\esim\eSim\library\SubcircuitLibrary\tri_statetruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/SN74LS548-cache.lib b/library/SubcircuitLibrary/SN74LS548/SN74LS548-cache.lib new file mode 100644 index 000000000..cbbbe5d45 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/SN74LS548-cache.lib @@ -0,0 +1,78 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# Rnk_Blk +# +DEF Rnk_Blk X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "Rnk_Blk" 0 -300 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -300 250 350 -250 0 1 0 N +X D_In 1 -500 100 200 R 50 50 1 1 I +X CKE1 2 -500 0 200 R 50 50 1 1 I I +X CLK 3 -500 -100 200 R 50 50 1 1 I C +X VDD 4 -500 200 200 R 50 50 1 1 I +X GND 5 550 -200 200 L 50 50 1 1 I +X INSEL 6 -500 -200 200 R 50 50 1 1 I +X CKE2 7 550 0 200 L 50 50 1 1 I I +X OUTSEL 8 550 100 200 L 50 50 1 1 I +X OE 9 550 200 200 L 50 50 1 1 I I +X OUT 10 550 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/SN74LS548-rescue.lib b/library/SubcircuitLibrary/SN74LS548/SN74LS548-rescue.lib new file mode 100644 index 000000000..8bf544d48 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/SN74LS548-rescue.lib @@ -0,0 +1,26 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# Rnk_Blk-RESCUE-SN74LS548 +# +DEF Rnk_Blk-RESCUE-SN74LS548 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "Rnk_Blk-RESCUE-SN74LS548" 0 -300 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -400 250 400 -250 0 1 0 N +X D_in 1 -600 100 200 R 50 50 1 1 I +X CKE1 2 -600 0 200 R 50 50 1 1 I I +X Clk 3 -600 -100 200 R 50 50 1 1 I C +X Vdd 4 -600 200 200 R 50 50 1 1 I +X Gnd 5 600 -200 200 L 50 50 1 1 I +X INSEL 6 -600 -200 200 R 50 50 1 1 I +X CKE2 7 600 0 200 L 50 50 1 1 I I +X OUTSEL 8 600 100 200 L 50 50 1 1 I +X OE 9 600 200 200 L 50 50 1 1 I I +X Y_out 10 600 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/SN74LS548.bak b/library/SubcircuitLibrary/SN74LS548/SN74LS548.bak new file mode 100644 index 000000000..80ed428cb --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/SN74LS548.bak @@ -0,0 +1,685 @@ +EESchema Schematic File Version 2 +LIBS:SN74LS548-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN74LS548-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 68713AEF +P 6200 7250 +F 0 "scmode1" H 6200 7400 98 0000 C CNB +F 1 "SKY130mode" H 6200 7150 118 0000 C CNB +F 2 "" H 6200 7400 60 0001 C CNN +F 3 "" H 6200 7400 60 0001 C CNN + 1 6200 7250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 6871413B +P 1900 2750 +F 0 "U1" H 1950 2850 30 0000 C CNN +F 1 "PORT" H 1900 2750 30 0000 C CNN +F 2 "" H 1900 2750 60 0000 C CNN +F 3 "" H 1900 2750 60 0000 C CNN + 1 1900 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 24 1 68714254 +P 10450 3350 +F 0 "U1" H 10500 3450 30 0000 C CNN +F 1 "PORT" H 10450 3350 30 0000 C CNN +F 2 "" H 10450 3350 60 0000 C CNN +F 3 "" H 10450 3350 60 0000 C CNN + 24 10450 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 687142F2 +P 2550 2850 +F 0 "U1" H 2600 2950 30 0000 C CNN +F 1 "PORT" H 2550 2850 30 0000 C CNN +F 2 "" H 2550 2850 60 0000 C CNN +F 3 "" H 2550 2850 60 0000 C CNN + 5 2550 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 68714377 +P 4400 2850 +F 0 "U1" H 4450 2950 30 0000 C CNN +F 1 "PORT" H 4400 2850 30 0000 C CNN +F 2 "" H 4400 2850 60 0000 C CNN +F 3 "" H 4400 2850 60 0000 C CNN + 9 4400 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 687143B4 +P 6250 2850 +F 0 "U1" H 6300 2950 30 0000 C CNN +F 1 "PORT" H 6250 2850 30 0000 C CNN +F 2 "" H 6250 2850 60 0000 C CNN +F 3 "" H 6250 2850 60 0000 C CNN + 13 6250 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 17 1 68714411 +P 8000 2850 +F 0 "U1" H 8050 2950 30 0000 C CNN +F 1 "PORT" H 8000 2850 30 0000 C CNN +F 2 "" H 8000 2850 60 0000 C CNN +F 3 "" H 8000 2850 60 0000 C CNN + 17 8000 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 18 1 687144B3 +P 8000 4600 +F 0 "U1" H 8050 4700 30 0000 C CNN +F 1 "PORT" H 8000 4600 30 0000 C CNN +F 2 "" H 8000 4600 60 0000 C CNN +F 3 "" H 8000 4600 60 0000 C CNN + 18 8000 4600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 6871452C +P 6250 4600 +F 0 "U1" H 6300 4700 30 0000 C CNN +F 1 "PORT" H 6250 4600 30 0000 C CNN +F 2 "" H 6250 4600 60 0000 C CNN +F 3 "" H 6250 4600 60 0000 C CNN + 14 6250 4600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 6871458B +P 4400 4600 +F 0 "U1" H 4450 4700 30 0000 C CNN +F 1 "PORT" H 4400 4600 30 0000 C CNN +F 2 "" H 4400 4600 60 0000 C CNN +F 3 "" H 4400 4600 60 0000 C CNN + 10 4400 4600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 687145F8 +P 2550 4600 +F 0 "U1" H 2600 4700 30 0000 C CNN +F 1 "PORT" H 2550 4600 30 0000 C CNN +F 2 "" H 2550 4600 60 0000 C CNN +F 3 "" H 2550 4600 60 0000 C CNN + 6 2550 4600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 687147CD +P 1950 3400 +F 0 "U1" H 2000 3500 30 0000 C CNN +F 1 "PORT" H 1950 3400 30 0000 C CNN +F 2 "" H 1950 3400 60 0000 C CNN +F 3 "" H 1950 3400 60 0000 C CNN + 2 1950 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68714C33 +P 2000 3550 +F 0 "U1" H 2050 3650 30 0000 C CNN +F 1 "PORT" H 2000 3550 30 0000 C CNN +F 2 "" H 2000 3550 60 0000 C CNN +F 3 "" H 2000 3550 60 0000 C CNN + 3 2000 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 687151F2 +P 2050 3750 +F 0 "U1" H 2100 3850 30 0000 C CNN +F 1 "PORT" H 2050 3750 30 0000 C CNN +F 2 "" H 2050 3750 60 0000 C CNN +F 3 "" H 2050 3750 60 0000 C CNN + 4 2050 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 23 1 68715B07 +P 10400 3850 +F 0 "U1" H 10450 3950 30 0000 C CNN +F 1 "PORT" H 10400 3850 30 0000 C CNN +F 2 "" H 10400 3850 60 0000 C CNN +F 3 "" H 10400 3850 60 0000 C CNN + 23 10400 3850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 22 1 68716166 +P 10350 4000 +F 0 "U1" H 10400 4100 30 0000 C CNN +F 1 "PORT" H 10350 4000 30 0000 C CNN +F 2 "" H 10350 4000 60 0000 C CNN +F 3 "" H 10350 4000 60 0000 C CNN + 22 10350 4000 + -1 0 0 -1 +$EndComp +Wire Wire Line + 2800 2750 2150 2750 +Wire Wire Line + 2150 2600 2150 4500 +Wire Wire Line + 2150 4500 2800 4500 +Wire Wire Line + 2150 2600 8250 2600 +Wire Wire Line + 8250 2600 8250 2750 +Connection ~ 2150 2750 +Wire Wire Line + 8250 4500 8250 4350 +Wire Wire Line + 8250 4350 2150 4350 +Connection ~ 2150 4350 +Wire Wire Line + 9300 3150 10200 3150 +Wire Wire Line + 10200 3150 10200 5100 +Wire Wire Line + 9300 4900 10200 4900 +Wire Wire Line + 10200 5100 4000 5100 +Wire Wire Line + 4000 5100 4000 4900 +Connection ~ 10200 4900 +Wire Wire Line + 4000 3150 4000 3350 +Wire Wire Line + 4000 3350 10200 3350 +Connection ~ 10200 3350 +Wire Wire Line + 4650 2750 4650 2600 +Connection ~ 4650 2600 +Wire Wire Line + 6500 2750 6500 2600 +Connection ~ 6500 2600 +Wire Wire Line + 5850 3150 5850 3350 +Connection ~ 5850 3350 +Wire Wire Line + 7700 3150 7700 3350 +Connection ~ 7700 3350 +Wire Wire Line + 7700 4900 7700 5100 +Connection ~ 7700 5100 +Wire Wire Line + 6500 4500 6500 4350 +Connection ~ 6500 4350 +Wire Wire Line + 5850 4900 5850 5100 +Connection ~ 5850 5100 +Wire Wire Line + 4650 4500 4650 4350 +Connection ~ 4650 4350 +Wire Wire Line + 2800 2950 2200 2950 +Wire Wire Line + 2200 2950 2200 4700 +Wire Wire Line + 2200 4700 2800 4700 +Wire Wire Line + 4650 2950 4300 2950 +Wire Wire Line + 4300 2950 4300 4700 +Wire Wire Line + 2200 3400 7900 3400 +Connection ~ 2200 3400 +Wire Wire Line + 6500 2950 6150 2950 +Wire Wire Line + 6150 2950 6150 4700 +Connection ~ 4300 3400 +Wire Wire Line + 8250 2950 7900 2950 +Wire Wire Line + 7900 2950 7900 4700 +Connection ~ 6150 3400 +Wire Wire Line + 4300 4700 4650 4700 +Wire Wire Line + 6150 4700 6500 4700 +Wire Wire Line + 7900 4700 8250 4700 +Connection ~ 7900 3400 +Wire Wire Line + 2800 3050 2250 3050 +Wire Wire Line + 2250 3050 2250 4800 +Wire Wire Line + 2250 4800 2800 4800 +Wire Wire Line + 4650 3050 4350 3050 +Wire Wire Line + 4350 3050 4350 4800 +Wire Wire Line + 2250 3550 7950 3550 +Connection ~ 2250 3550 +Wire Wire Line + 6500 3050 6200 3050 +Wire Wire Line + 6200 3050 6200 4800 +Connection ~ 4350 3550 +Wire Wire Line + 7950 3050 7950 4800 +Wire Wire Line + 7950 3050 8250 3050 +Connection ~ 6200 3550 +Wire Wire Line + 4350 4800 4650 4800 +Wire Wire Line + 6200 4800 6500 4800 +Wire Wire Line + 7950 4800 8250 4800 +Connection ~ 7950 3550 +Wire Wire Line + 2800 3150 2300 3150 +Wire Wire Line + 2300 3150 2300 4900 +Wire Wire Line + 2300 4900 2800 4900 +Wire Wire Line + 4650 3150 4400 3150 +Wire Wire Line + 4400 3150 4400 4900 +Wire Wire Line + 2300 3750 8000 3750 +Connection ~ 2300 3750 +Wire Wire Line + 6250 3150 6250 4900 +Wire Wire Line + 6250 3150 6500 3150 +Connection ~ 4400 3750 +Wire Wire Line + 8000 3150 8000 4900 +Wire Wire Line + 8000 3150 8250 3150 +Connection ~ 6250 3750 +Wire Wire Line + 4400 4900 4650 4900 +Wire Wire Line + 6250 4900 6500 4900 +Wire Wire Line + 8000 4900 8250 4900 +Connection ~ 8000 3750 +Wire Wire Line + 9300 2750 10150 2750 +Wire Wire Line + 10150 2750 10150 4500 +Wire Wire Line + 10150 4500 9300 4500 +Wire Wire Line + 7550 2750 7850 2750 +Wire Wire Line + 7850 2750 7850 4500 +Wire Wire Line + 4250 3850 10150 3850 +Connection ~ 10150 3850 +Wire Wire Line + 6100 4500 6100 2750 +Wire Wire Line + 6100 2750 5700 2750 +Connection ~ 7850 3850 +Wire Wire Line + 4250 4500 4250 2750 +Wire Wire Line + 4250 2750 3850 2750 +Connection ~ 6100 3850 +Wire Wire Line + 7850 4500 7550 4500 +Wire Wire Line + 5700 4500 6100 4500 +Wire Wire Line + 3850 4500 4250 4500 +Connection ~ 4250 3850 +Wire Wire Line + 9300 2850 10100 2850 +Wire Wire Line + 10100 2850 10100 4600 +Wire Wire Line + 10100 4600 9300 4600 +Wire Wire Line + 7550 2850 7800 2850 +Wire Wire Line + 7800 2850 7800 4600 +Wire Wire Line + 4200 4000 10100 4000 +Connection ~ 10100 4000 +Wire Wire Line + 7800 4600 7550 4600 +Connection ~ 7800 4000 +Wire Wire Line + 6050 4600 6050 2850 +Wire Wire Line + 5700 4600 6050 4600 +Wire Wire Line + 6050 2850 5700 2850 +Connection ~ 6050 4000 +Wire Wire Line + 4200 4600 4200 2850 +Wire Wire Line + 3850 4600 4200 4600 +Wire Wire Line + 4200 2850 3850 2850 +Connection ~ 4200 4000 +Wire Wire Line + 9300 2950 10050 2950 +Wire Wire Line + 10050 2950 10050 4700 +Wire Wire Line + 10050 4700 9300 4700 +Wire Wire Line + 7550 2950 7750 2950 +Wire Wire Line + 7750 2950 7750 4700 +Wire Wire Line + 4150 4100 10050 4100 +Connection ~ 10050 4100 +Wire Wire Line + 7750 4700 7550 4700 +Connection ~ 7750 4100 +Wire Wire Line + 6000 4700 6000 2950 +Wire Wire Line + 5700 4700 6000 4700 +Wire Wire Line + 6000 2950 5700 2950 +Connection ~ 6000 4100 +Wire Wire Line + 4150 4700 4150 2950 +Wire Wire Line + 3850 4700 4150 4700 +Wire Wire Line + 4150 2950 3850 2950 +Connection ~ 4150 4100 +$Comp +L PORT U1 +U 21 1 68716B57 +P 10300 4100 +F 0 "U1" H 10350 4200 30 0000 C CNN +F 1 "PORT" H 10300 4100 30 0000 C CNN +F 2 "" H 10300 4100 60 0000 C CNN +F 3 "" H 10300 4100 60 0000 C CNN + 21 10300 4100 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 7 1 68716CBD +P 4250 3050 +F 0 "U1" H 4300 3150 30 0000 C CNN +F 1 "PORT" H 4250 3050 30 0000 C CNN +F 2 "" H 4250 3050 60 0000 C CNN +F 3 "" H 4250 3050 60 0000 C CNN + 7 4250 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 68716D64 +P 6100 3050 +F 0 "U1" H 6150 3150 30 0000 C CNN +F 1 "PORT" H 6100 3050 30 0000 C CNN +F 2 "" H 6100 3050 60 0000 C CNN +F 3 "" H 6100 3050 60 0000 C CNN + 11 6100 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 68716DFD +P 7950 3050 +F 0 "U1" H 8000 3150 30 0000 C CNN +F 1 "PORT" H 7950 3050 30 0000 C CNN +F 2 "" H 7950 3050 60 0000 C CNN +F 3 "" H 7950 3050 60 0000 C CNN + 15 7950 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 19 1 68716E98 +P 9700 3050 +F 0 "U1" H 9750 3150 30 0000 C CNN +F 1 "PORT" H 9700 3050 30 0000 C CNN +F 2 "" H 9700 3050 60 0000 C CNN +F 3 "" H 9700 3050 60 0000 C CNN + 19 9700 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 20 1 68716FB5 +P 9700 4800 +F 0 "U1" H 9750 4900 30 0000 C CNN +F 1 "PORT" H 9700 4800 30 0000 C CNN +F 2 "" H 9700 4800 60 0000 C CNN +F 3 "" H 9700 4800 60 0000 C CNN + 20 9700 4800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 68717072 +P 7950 4800 +F 0 "U1" H 8000 4900 30 0000 C CNN +F 1 "PORT" H 7950 4800 30 0000 C CNN +F 2 "" H 7950 4800 60 0000 C CNN +F 3 "" H 7950 4800 60 0000 C CNN + 16 7950 4800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 68717115 +P 6100 4800 +F 0 "U1" H 6150 4900 30 0000 C CNN +F 1 "PORT" H 6100 4800 30 0000 C CNN +F 2 "" H 6100 4800 60 0000 C CNN +F 3 "" H 6100 4800 60 0000 C CNN + 12 6100 4800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 687171B4 +P 4250 4800 +F 0 "U1" H 4300 4900 30 0000 C CNN +F 1 "PORT" H 4250 4800 30 0000 C CNN +F 2 "" H 4250 4800 60 0000 C CNN +F 3 "" H 4250 4800 60 0000 C CNN + 8 4250 4800 + -1 0 0 -1 +$EndComp +$Comp +L Rnk_Blk X1 +U 1 1 6878DC64 +P 3300 2950 +F 0 "X1" H 3300 2950 60 0000 C CNN +F 1 "Rnk_Blk" H 3300 2650 60 0000 C CNN +F 2 "" H 3300 2950 60 0001 C CNN +F 3 "" H 3300 2950 60 0001 C CNN + 1 3300 2950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3850 3050 4000 3050 +Wire Wire Line + 3850 3150 4000 3150 +$Comp +L Rnk_Blk X3 +U 1 1 6878E1D0 +P 5150 2950 +F 0 "X3" H 5150 2950 60 0000 C CNN +F 1 "Rnk_Blk" H 5150 2650 60 0000 C CNN +F 2 "" H 5150 2950 60 0001 C CNN +F 3 "" H 5150 2950 60 0001 C CNN + 1 5150 2950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5850 3050 5700 3050 +Wire Wire Line + 5850 3150 5700 3150 +$Comp +L Rnk_Blk X5 +U 1 1 6878E69D +P 7000 2950 +F 0 "X5" H 7000 2950 60 0000 C CNN +F 1 "Rnk_Blk" H 7000 2650 60 0000 C CNN +F 2 "" H 7000 2950 60 0001 C CNN +F 3 "" H 7000 2950 60 0001 C CNN + 1 7000 2950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7700 3050 7550 3050 +Wire Wire Line + 7550 3150 7700 3150 +$Comp +L Rnk_Blk X7 +U 1 1 6878EB72 +P 8750 2950 +F 0 "X7" H 8750 2950 60 0000 C CNN +F 1 "Rnk_Blk" H 8750 2650 60 0000 C CNN +F 2 "" H 8750 2950 60 0001 C CNN +F 3 "" H 8750 2950 60 0001 C CNN + 1 8750 2950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9450 3050 9300 3050 +$Comp +L Rnk_Blk X2 +U 1 1 6878F17E +P 3300 4700 +F 0 "X2" H 3300 4700 60 0000 C CNN +F 1 "Rnk_Blk" H 3300 4400 60 0000 C CNN +F 2 "" H 3300 4700 60 0001 C CNN +F 3 "" H 3300 4700 60 0001 C CNN + 1 3300 4700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4000 4800 3850 4800 +Wire Wire Line + 4000 4900 3850 4900 +$Comp +L Rnk_Blk X4 +U 1 1 6878F665 +P 5150 4700 +F 0 "X4" H 5150 4700 60 0000 C CNN +F 1 "Rnk_Blk" H 5150 4400 60 0000 C CNN +F 2 "" H 5150 4700 60 0001 C CNN +F 3 "" H 5150 4700 60 0001 C CNN + 1 5150 4700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5850 4800 5700 4800 +Wire Wire Line + 5850 4900 5700 4900 +$Comp +L Rnk_Blk X6 +U 1 1 6878FB38 +P 7000 4700 +F 0 "X6" H 7000 4700 60 0000 C CNN +F 1 "Rnk_Blk" H 7000 4400 60 0000 C CNN +F 2 "" H 7000 4700 60 0001 C CNN +F 3 "" H 7000 4700 60 0001 C CNN + 1 7000 4700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7700 4800 7550 4800 +Wire Wire Line + 7700 4900 7550 4900 +$Comp +L Rnk_Blk X8 +U 1 1 6878FFD1 +P 8750 4700 +F 0 "X8" H 8750 4700 60 0000 C CNN +F 1 "Rnk_Blk" H 8750 4400 60 0000 C CNN +F 2 "" H 8750 4700 60 0001 C CNN +F 3 "" H 8750 4700 60 0001 C CNN + 1 8750 4700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9450 4800 9300 4800 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/SN74LS548.cir b/library/SubcircuitLibrary/SN74LS548/SN74LS548.cir new file mode 100644 index 000000000..90427dc2c --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/SN74LS548.cir @@ -0,0 +1,20 @@ +* H:\esim\eSim\library\SubcircuitLibrary\SN74LS548\SN74LS548.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/17/25 16:46:39 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad18_ Net-_U1-Pad19_ Net-_U1-Pad20_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U1-Pad24_ PORT +X1 Net-_U1-Pad5_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad24_ Net-_U1-Pad4_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U1-Pad7_ Rnk_Blk +X3 Net-_U1-Pad9_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad24_ Net-_U1-Pad4_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U1-Pad11_ Rnk_Blk +X5 Net-_U1-Pad13_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad24_ Net-_U1-Pad4_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U1-Pad15_ Rnk_Blk +X7 Net-_U1-Pad17_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad24_ Net-_U1-Pad4_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U1-Pad19_ Rnk_Blk +X2 Net-_U1-Pad6_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad24_ Net-_U1-Pad4_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U1-Pad8_ Rnk_Blk +X4 Net-_U1-Pad10_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad24_ Net-_U1-Pad4_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U1-Pad12_ Rnk_Blk +X6 Net-_U1-Pad14_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad24_ Net-_U1-Pad4_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U1-Pad16_ Rnk_Blk +X8 Net-_U1-Pad18_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad24_ Net-_U1-Pad4_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U1-Pad20_ Rnk_Blk + +.end diff --git a/library/SubcircuitLibrary/SN74LS548/SN74LS548.cir.out b/library/SubcircuitLibrary/SN74LS548/SN74LS548.cir.out new file mode 100644 index 000000000..26f92dc98 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/SN74LS548.cir.out @@ -0,0 +1,23 @@ +* h:\esim\esim\library\subcircuitlibrary\sn74ls548\sn74ls548.cir + +.include Rnk_Blk.sub + +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ net-_u1-pad20_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad24_ port +x1 net-_u1-pad5_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad7_ Rnk_Blk +x3 net-_u1-pad9_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad11_ Rnk_Blk +x5 net-_u1-pad13_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad15_ Rnk_Blk +x7 net-_u1-pad17_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad19_ Rnk_Blk +x2 net-_u1-pad6_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad8_ Rnk_Blk +x4 net-_u1-pad10_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad12_ Rnk_Blk +x6 net-_u1-pad14_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad16_ Rnk_Blk +x8 net-_u1-pad18_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad20_ Rnk_Blk +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS548/SN74LS548.pro b/library/SubcircuitLibrary/SN74LS548/SN74LS548.pro new file mode 100644 index 000000000..c268182c0 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/SN74LS548.pro @@ -0,0 +1,74 @@ +update=07/17/25 16:40:51 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=SN74LS548-rescue +LibName2=adc-dac +LibName3=memory +LibName4=xilinx +LibName5=microcontrollers +LibName6=dsp +LibName7=microchip +LibName8=analog_switches +LibName9=motorola +LibName10=texas +LibName11=intel +LibName12=audio +LibName13=interface +LibName14=digital-audio +LibName15=philips +LibName16=display +LibName17=cypress +LibName18=siliconi +LibName19=opto +LibName20=atmel +LibName21=contrib +LibName22=power +LibName23=eSim_Plot +LibName24=transistors +LibName25=conn +LibName26=eSim_User +LibName27=regul +LibName28=74xx +LibName29=cmos4000 +LibName30=eSim_Analog +LibName31=eSim_Devices +LibName32=eSim_Digital +LibName33=eSim_Hybrid +LibName34=eSim_Miscellaneous +LibName35=eSim_Power +LibName36=eSim_Sources +LibName37=eSim_Subckt +LibName38=eSim_Nghdl +LibName39=eSim_Ngveri +LibName40=eSim_SKY130 +LibName41=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74LS548/SN74LS548.sch b/library/SubcircuitLibrary/SN74LS548/SN74LS548.sch new file mode 100644 index 000000000..b36e16465 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/SN74LS548.sch @@ -0,0 +1,685 @@ +EESchema Schematic File Version 2 +LIBS:SN74LS548-rescue +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN74LS548-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L SKY130mode scmode1 +U 1 1 68713AEF +P 9000 3850 +F 0 "scmode1" H 9000 4000 98 0000 C CNB +F 1 "SKY130mode" H 9000 3750 118 0000 C CNB +F 2 "" H 9000 4000 60 0001 C CNN +F 3 "" H 9000 4000 60 0001 C CNN + 1 9000 3850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 6871413B +P 1900 2750 +F 0 "U1" H 1950 2850 30 0000 C CNN +F 1 "PORT" H 1900 2750 30 0000 C CNN +F 2 "" H 1900 2750 60 0000 C CNN +F 3 "" H 1900 2750 60 0000 C CNN + 1 1900 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 24 1 68714254 +P 10450 3350 +F 0 "U1" H 10500 3450 30 0000 C CNN +F 1 "PORT" H 10450 3350 30 0000 C CNN +F 2 "" H 10450 3350 60 0000 C CNN +F 3 "" H 10450 3350 60 0000 C CNN + 24 10450 3350 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 687142F2 +P 2550 2850 +F 0 "U1" H 2600 2950 30 0000 C CNN +F 1 "PORT" H 2550 2850 30 0000 C CNN +F 2 "" H 2550 2850 60 0000 C CNN +F 3 "" H 2550 2850 60 0000 C CNN + 5 2550 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 68714377 +P 4400 2850 +F 0 "U1" H 4450 2950 30 0000 C CNN +F 1 "PORT" H 4400 2850 30 0000 C CNN +F 2 "" H 4400 2850 60 0000 C CNN +F 3 "" H 4400 2850 60 0000 C CNN + 9 4400 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 687143B4 +P 6250 2850 +F 0 "U1" H 6300 2950 30 0000 C CNN +F 1 "PORT" H 6250 2850 30 0000 C CNN +F 2 "" H 6250 2850 60 0000 C CNN +F 3 "" H 6250 2850 60 0000 C CNN + 13 6250 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 17 1 68714411 +P 8000 2850 +F 0 "U1" H 8050 2950 30 0000 C CNN +F 1 "PORT" H 8000 2850 30 0000 C CNN +F 2 "" H 8000 2850 60 0000 C CNN +F 3 "" H 8000 2850 60 0000 C CNN + 17 8000 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 18 1 687144B3 +P 8000 4600 +F 0 "U1" H 8050 4700 30 0000 C CNN +F 1 "PORT" H 8000 4600 30 0000 C CNN +F 2 "" H 8000 4600 60 0000 C CNN +F 3 "" H 8000 4600 60 0000 C CNN + 18 8000 4600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 6871452C +P 6250 4600 +F 0 "U1" H 6300 4700 30 0000 C CNN +F 1 "PORT" H 6250 4600 30 0000 C CNN +F 2 "" H 6250 4600 60 0000 C CNN +F 3 "" H 6250 4600 60 0000 C CNN + 14 6250 4600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 6871458B +P 4400 4600 +F 0 "U1" H 4450 4700 30 0000 C CNN +F 1 "PORT" H 4400 4600 30 0000 C CNN +F 2 "" H 4400 4600 60 0000 C CNN +F 3 "" H 4400 4600 60 0000 C CNN + 10 4400 4600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 687145F8 +P 2550 4600 +F 0 "U1" H 2600 4700 30 0000 C CNN +F 1 "PORT" H 2550 4600 30 0000 C CNN +F 2 "" H 2550 4600 60 0000 C CNN +F 3 "" H 2550 4600 60 0000 C CNN + 6 2550 4600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 687147CD +P 1950 3400 +F 0 "U1" H 2000 3500 30 0000 C CNN +F 1 "PORT" H 1950 3400 30 0000 C CNN +F 2 "" H 1950 3400 60 0000 C CNN +F 3 "" H 1950 3400 60 0000 C CNN + 2 1950 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68714C33 +P 2000 3550 +F 0 "U1" H 2050 3650 30 0000 C CNN +F 1 "PORT" H 2000 3550 30 0000 C CNN +F 2 "" H 2000 3550 60 0000 C CNN +F 3 "" H 2000 3550 60 0000 C CNN + 3 2000 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 687151F2 +P 2050 3750 +F 0 "U1" H 2100 3850 30 0000 C CNN +F 1 "PORT" H 2050 3750 30 0000 C CNN +F 2 "" H 2050 3750 60 0000 C CNN +F 3 "" H 2050 3750 60 0000 C CNN + 4 2050 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 23 1 68715B07 +P 10400 3850 +F 0 "U1" H 10450 3950 30 0000 C CNN +F 1 "PORT" H 10400 3850 30 0000 C CNN +F 2 "" H 10400 3850 60 0000 C CNN +F 3 "" H 10400 3850 60 0000 C CNN + 23 10400 3850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 22 1 68716166 +P 10350 4000 +F 0 "U1" H 10400 4100 30 0000 C CNN +F 1 "PORT" H 10350 4000 30 0000 C CNN +F 2 "" H 10350 4000 60 0000 C CNN +F 3 "" H 10350 4000 60 0000 C CNN + 22 10350 4000 + -1 0 0 -1 +$EndComp +Wire Wire Line + 2800 2750 2150 2750 +Wire Wire Line + 2150 2600 2150 4500 +Wire Wire Line + 2150 4500 2800 4500 +Wire Wire Line + 2150 2600 8250 2600 +Wire Wire Line + 8250 2600 8250 2750 +Connection ~ 2150 2750 +Wire Wire Line + 8250 4500 8250 4350 +Wire Wire Line + 8250 4350 2150 4350 +Connection ~ 2150 4350 +Wire Wire Line + 9300 3150 10200 3150 +Wire Wire Line + 10200 3150 10200 5100 +Wire Wire Line + 9300 4900 10200 4900 +Wire Wire Line + 10200 5100 4000 5100 +Wire Wire Line + 4000 5100 4000 4900 +Connection ~ 10200 4900 +Wire Wire Line + 4000 3150 4000 3350 +Wire Wire Line + 4000 3350 10200 3350 +Connection ~ 10200 3350 +Wire Wire Line + 4650 2750 4650 2600 +Connection ~ 4650 2600 +Wire Wire Line + 6500 2750 6500 2600 +Connection ~ 6500 2600 +Wire Wire Line + 5850 3150 5850 3350 +Connection ~ 5850 3350 +Wire Wire Line + 7700 3150 7700 3350 +Connection ~ 7700 3350 +Wire Wire Line + 7700 4900 7700 5100 +Connection ~ 7700 5100 +Wire Wire Line + 6500 4500 6500 4350 +Connection ~ 6500 4350 +Wire Wire Line + 5850 4900 5850 5100 +Connection ~ 5850 5100 +Wire Wire Line + 4650 4500 4650 4350 +Connection ~ 4650 4350 +Wire Wire Line + 2800 2950 2200 2950 +Wire Wire Line + 2200 2950 2200 4700 +Wire Wire Line + 2200 4700 2800 4700 +Wire Wire Line + 4650 2950 4300 2950 +Wire Wire Line + 4300 2950 4300 4700 +Wire Wire Line + 2200 3400 7900 3400 +Connection ~ 2200 3400 +Wire Wire Line + 6500 2950 6150 2950 +Wire Wire Line + 6150 2950 6150 4700 +Connection ~ 4300 3400 +Wire Wire Line + 8250 2950 7900 2950 +Wire Wire Line + 7900 2950 7900 4700 +Connection ~ 6150 3400 +Wire Wire Line + 4300 4700 4650 4700 +Wire Wire Line + 6150 4700 6500 4700 +Wire Wire Line + 7900 4700 8250 4700 +Connection ~ 7900 3400 +Wire Wire Line + 2800 3050 2250 3050 +Wire Wire Line + 2250 3050 2250 4800 +Wire Wire Line + 2250 4800 2800 4800 +Wire Wire Line + 4650 3050 4350 3050 +Wire Wire Line + 4350 3050 4350 4800 +Wire Wire Line + 2250 3550 7950 3550 +Connection ~ 2250 3550 +Wire Wire Line + 6500 3050 6200 3050 +Wire Wire Line + 6200 3050 6200 4800 +Connection ~ 4350 3550 +Wire Wire Line + 7950 3050 7950 4800 +Wire Wire Line + 7950 3050 8250 3050 +Connection ~ 6200 3550 +Wire Wire Line + 4350 4800 4650 4800 +Wire Wire Line + 6200 4800 6500 4800 +Wire Wire Line + 7950 4800 8250 4800 +Connection ~ 7950 3550 +Wire Wire Line + 2800 3150 2300 3150 +Wire Wire Line + 2300 3150 2300 4900 +Wire Wire Line + 2300 4900 2800 4900 +Wire Wire Line + 4650 3150 4400 3150 +Wire Wire Line + 4400 3150 4400 4900 +Wire Wire Line + 2300 3750 8000 3750 +Connection ~ 2300 3750 +Wire Wire Line + 6250 3150 6250 4900 +Wire Wire Line + 6250 3150 6500 3150 +Connection ~ 4400 3750 +Wire Wire Line + 8000 3150 8000 4900 +Wire Wire Line + 8000 3150 8250 3150 +Connection ~ 6250 3750 +Wire Wire Line + 4400 4900 4650 4900 +Wire Wire Line + 6250 4900 6500 4900 +Wire Wire Line + 8000 4900 8250 4900 +Connection ~ 8000 3750 +Wire Wire Line + 9300 2750 10150 2750 +Wire Wire Line + 10150 2750 10150 4500 +Wire Wire Line + 10150 4500 9300 4500 +Wire Wire Line + 7550 2750 7850 2750 +Wire Wire Line + 7850 2750 7850 4500 +Wire Wire Line + 4250 3850 10150 3850 +Connection ~ 10150 3850 +Wire Wire Line + 6100 4500 6100 2750 +Wire Wire Line + 6100 2750 5700 2750 +Connection ~ 7850 3850 +Wire Wire Line + 4250 4500 4250 2750 +Wire Wire Line + 4250 2750 3850 2750 +Connection ~ 6100 3850 +Wire Wire Line + 7850 4500 7550 4500 +Wire Wire Line + 5700 4500 6100 4500 +Wire Wire Line + 3850 4500 4250 4500 +Connection ~ 4250 3850 +Wire Wire Line + 9300 2850 10100 2850 +Wire Wire Line + 10100 2850 10100 4600 +Wire Wire Line + 10100 4600 9300 4600 +Wire Wire Line + 7550 2850 7800 2850 +Wire Wire Line + 7800 2850 7800 4600 +Wire Wire Line + 4200 4000 10100 4000 +Connection ~ 10100 4000 +Wire Wire Line + 7800 4600 7550 4600 +Connection ~ 7800 4000 +Wire Wire Line + 6050 4600 6050 2850 +Wire Wire Line + 5700 4600 6050 4600 +Wire Wire Line + 6050 2850 5700 2850 +Connection ~ 6050 4000 +Wire Wire Line + 4200 4600 4200 2850 +Wire Wire Line + 3850 4600 4200 4600 +Wire Wire Line + 4200 2850 3850 2850 +Connection ~ 4200 4000 +Wire Wire Line + 9300 2950 10050 2950 +Wire Wire Line + 10050 2950 10050 4700 +Wire Wire Line + 10050 4700 9300 4700 +Wire Wire Line + 7550 2950 7750 2950 +Wire Wire Line + 7750 2950 7750 4700 +Wire Wire Line + 4150 4100 10050 4100 +Connection ~ 10050 4100 +Wire Wire Line + 7750 4700 7550 4700 +Connection ~ 7750 4100 +Wire Wire Line + 6000 4700 6000 2950 +Wire Wire Line + 5700 4700 6000 4700 +Wire Wire Line + 6000 2950 5700 2950 +Connection ~ 6000 4100 +Wire Wire Line + 4150 4700 4150 2950 +Wire Wire Line + 3850 4700 4150 4700 +Wire Wire Line + 4150 2950 3850 2950 +Connection ~ 4150 4100 +$Comp +L PORT U1 +U 21 1 68716B57 +P 10300 4100 +F 0 "U1" H 10350 4200 30 0000 C CNN +F 1 "PORT" H 10300 4100 30 0000 C CNN +F 2 "" H 10300 4100 60 0000 C CNN +F 3 "" H 10300 4100 60 0000 C CNN + 21 10300 4100 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 7 1 68716CBD +P 4250 3050 +F 0 "U1" H 4300 3150 30 0000 C CNN +F 1 "PORT" H 4250 3050 30 0000 C CNN +F 2 "" H 4250 3050 60 0000 C CNN +F 3 "" H 4250 3050 60 0000 C CNN + 7 4250 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 68716D64 +P 6100 3050 +F 0 "U1" H 6150 3150 30 0000 C CNN +F 1 "PORT" H 6100 3050 30 0000 C CNN +F 2 "" H 6100 3050 60 0000 C CNN +F 3 "" H 6100 3050 60 0000 C CNN + 11 6100 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 68716DFD +P 7950 3050 +F 0 "U1" H 8000 3150 30 0000 C CNN +F 1 "PORT" H 7950 3050 30 0000 C CNN +F 2 "" H 7950 3050 60 0000 C CNN +F 3 "" H 7950 3050 60 0000 C CNN + 15 7950 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 19 1 68716E98 +P 9700 3050 +F 0 "U1" H 9750 3150 30 0000 C CNN +F 1 "PORT" H 9700 3050 30 0000 C CNN +F 2 "" H 9700 3050 60 0000 C CNN +F 3 "" H 9700 3050 60 0000 C CNN + 19 9700 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 20 1 68716FB5 +P 9700 4800 +F 0 "U1" H 9750 4900 30 0000 C CNN +F 1 "PORT" H 9700 4800 30 0000 C CNN +F 2 "" H 9700 4800 60 0000 C CNN +F 3 "" H 9700 4800 60 0000 C CNN + 20 9700 4800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 68717072 +P 7950 4800 +F 0 "U1" H 8000 4900 30 0000 C CNN +F 1 "PORT" H 7950 4800 30 0000 C CNN +F 2 "" H 7950 4800 60 0000 C CNN +F 3 "" H 7950 4800 60 0000 C CNN + 16 7950 4800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 68717115 +P 6100 4800 +F 0 "U1" H 6150 4900 30 0000 C CNN +F 1 "PORT" H 6100 4800 30 0000 C CNN +F 2 "" H 6100 4800 60 0000 C CNN +F 3 "" H 6100 4800 60 0000 C CNN + 12 6100 4800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 687171B4 +P 4250 4800 +F 0 "U1" H 4300 4900 30 0000 C CNN +F 1 "PORT" H 4250 4800 30 0000 C CNN +F 2 "" H 4250 4800 60 0000 C CNN +F 3 "" H 4250 4800 60 0000 C CNN + 8 4250 4800 + -1 0 0 -1 +$EndComp +$Comp +L Rnk_Blk X1 +U 1 1 6878DC64 +P 3300 2950 +F 0 "X1" H 3300 2950 60 0000 C CNN +F 1 "Rnk_Blk" H 3300 2650 60 0000 C CNN +F 2 "" H 3300 2950 60 0001 C CNN +F 3 "" H 3300 2950 60 0001 C CNN + 1 3300 2950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3850 3050 4000 3050 +Wire Wire Line + 3850 3150 4000 3150 +$Comp +L Rnk_Blk X3 +U 1 1 6878E1D0 +P 5150 2950 +F 0 "X3" H 5150 2950 60 0000 C CNN +F 1 "Rnk_Blk" H 5150 2650 60 0000 C CNN +F 2 "" H 5150 2950 60 0001 C CNN +F 3 "" H 5150 2950 60 0001 C CNN + 1 5150 2950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5850 3050 5700 3050 +Wire Wire Line + 5850 3150 5700 3150 +$Comp +L Rnk_Blk X5 +U 1 1 6878E69D +P 7000 2950 +F 0 "X5" H 7000 2950 60 0000 C CNN +F 1 "Rnk_Blk" H 7000 2650 60 0000 C CNN +F 2 "" H 7000 2950 60 0001 C CNN +F 3 "" H 7000 2950 60 0001 C CNN + 1 7000 2950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7700 3050 7550 3050 +Wire Wire Line + 7550 3150 7700 3150 +$Comp +L Rnk_Blk X7 +U 1 1 6878EB72 +P 8750 2950 +F 0 "X7" H 8750 2950 60 0000 C CNN +F 1 "Rnk_Blk" H 8750 2650 60 0000 C CNN +F 2 "" H 8750 2950 60 0001 C CNN +F 3 "" H 8750 2950 60 0001 C CNN + 1 8750 2950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9450 3050 9300 3050 +$Comp +L Rnk_Blk X2 +U 1 1 6878F17E +P 3300 4700 +F 0 "X2" H 3300 4700 60 0000 C CNN +F 1 "Rnk_Blk" H 3300 4400 60 0000 C CNN +F 2 "" H 3300 4700 60 0001 C CNN +F 3 "" H 3300 4700 60 0001 C CNN + 1 3300 4700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4000 4800 3850 4800 +Wire Wire Line + 4000 4900 3850 4900 +$Comp +L Rnk_Blk X4 +U 1 1 6878F665 +P 5150 4700 +F 0 "X4" H 5150 4700 60 0000 C CNN +F 1 "Rnk_Blk" H 5150 4400 60 0000 C CNN +F 2 "" H 5150 4700 60 0001 C CNN +F 3 "" H 5150 4700 60 0001 C CNN + 1 5150 4700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5850 4800 5700 4800 +Wire Wire Line + 5850 4900 5700 4900 +$Comp +L Rnk_Blk X6 +U 1 1 6878FB38 +P 7000 4700 +F 0 "X6" H 7000 4700 60 0000 C CNN +F 1 "Rnk_Blk" H 7000 4400 60 0000 C CNN +F 2 "" H 7000 4700 60 0001 C CNN +F 3 "" H 7000 4700 60 0001 C CNN + 1 7000 4700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7700 4800 7550 4800 +Wire Wire Line + 7700 4900 7550 4900 +$Comp +L Rnk_Blk X8 +U 1 1 6878FFD1 +P 8750 4700 +F 0 "X8" H 8750 4700 60 0000 C CNN +F 1 "Rnk_Blk" H 8750 4400 60 0000 C CNN +F 2 "" H 8750 4700 60 0001 C CNN +F 3 "" H 8750 4700 60 0001 C CNN + 1 8750 4700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9450 4800 9300 4800 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/SN74LS548.sub b/library/SubcircuitLibrary/SN74LS548/SN74LS548.sub new file mode 100644 index 000000000..910a910bd --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/SN74LS548.sub @@ -0,0 +1,17 @@ +* Subcircuit SN74LS548 +.subckt SN74LS548 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad18_ net-_u1-pad19_ net-_u1-pad20_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad24_ +* h:\esim\esim\library\subcircuitlibrary\sn74ls548\sn74ls548.cir +.include Rnk_Blk.sub + +* s c m o d e +x1 net-_u1-pad5_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad7_ Rnk_Blk +x3 net-_u1-pad9_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad11_ Rnk_Blk +x5 net-_u1-pad13_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad15_ Rnk_Blk +x7 net-_u1-pad17_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad19_ Rnk_Blk +x2 net-_u1-pad6_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad8_ Rnk_Blk +x4 net-_u1-pad10_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad12_ Rnk_Blk +x6 net-_u1-pad14_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad16_ Rnk_Blk +x8 net-_u1-pad18_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad1_ net-_u1-pad24_ net-_u1-pad4_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad20_ Rnk_Blk +* Control Statements + +.ends SN74LS548 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/SN74LS548_Previous_Values.xml b/library/SubcircuitLibrary/SN74LS548/SN74LS548_Previous_Values.xml new file mode 100644 index 000000000..d52c3ae76 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/SN74LS548_Previous_Values.xml @@ -0,0 +1 @@ +H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spicettH:\esim\eSim\library\SubcircuitLibrary\Rnk_BlkH:\esim\eSim\library\SubcircuitLibrary\Rnk_BlkH:\esim\eSim\library\SubcircuitLibrary\Rnk_BlkH:\esim\eSim\library\SubcircuitLibrary\Rnk_BlkH:\esim\eSim\library\SubcircuitLibrary\Rnk_BlkH:\esim\eSim\library\SubcircuitLibrary\Rnk_BlkH:\esim\eSim\library\SubcircuitLibrary\Rnk_BlkH:\esim\eSim\library\SubcircuitLibrary\Rnk_BlktruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/analysis b/library/SubcircuitLibrary/SN74LS548/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/tri_state-cache.lib b/library/SubcircuitLibrary/SN74LS548/tri_state-cache.lib new file mode 100644 index 000000000..e99b45ce5 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/tri_state-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LS548/tri_state.bak b/library/SubcircuitLibrary/SN74LS548/tri_state.bak new file mode 100644 index 000000000..42f6325e1 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/tri_state.bak @@ -0,0 +1,195 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:tri_state-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 686E04ED +P 5150 2450 +F 0 "SC1" H 5200 2750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 2537 50 0000 R CNN +F 2 "" H 5150 950 50 0001 C CNN +F 3 "" H 5150 2450 50 0001 C CNN + 1 5150 2450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 686E0554 +P 5150 3250 +F 0 "SC2" H 5200 3550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5450 3337 50 0000 R CNN +F 2 "" H 5150 1750 50 0001 C CNN +F 3 "" H 5150 3250 50 0001 C CNN + 1 5150 3250 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686E05B6 +P 9300 2250 +F 0 "scmode1" H 9300 2400 98 0000 C CNB +F 1 "SKY130mode" H 9300 2150 118 0000 C CNB +F 2 "" H 9300 2400 60 0001 C CNN +F 3 "" H 9300 2400 60 0001 C CNN + 1 9300 2250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686E061D +P 4200 2800 +F 0 "U1" H 4250 2900 30 0000 C CNN +F 1 "PORT" H 4200 2800 30 0000 C CNN +F 2 "" H 4200 2800 60 0000 C CNN +F 3 "" H 4200 2800 60 0000 C CNN + 1 4200 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E069C +P 5050 1900 +F 0 "U1" H 5100 2000 30 0000 C CNN +F 1 "PORT" H 5050 1900 30 0000 C CNN +F 2 "" H 5050 1900 60 0000 C CNN +F 3 "" H 5050 1900 60 0000 C CNN + 2 5050 1900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E0725 +P 5100 3750 +F 0 "U1" H 5150 3850 30 0000 C CNN +F 1 "PORT" H 5100 3750 30 0000 C CNN +F 2 "" H 5100 3750 60 0000 C CNN +F 3 "" H 5100 3750 60 0000 C CNN + 3 5100 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E0750 +P 6800 2800 +F 0 "U1" H 6850 2900 30 0000 C CNN +F 1 "PORT" H 6800 2800 30 0000 C CNN +F 2 "" H 6800 2800 60 0000 C CNN +F 3 "" H 6800 2800 60 0000 C CNN + 5 6800 2800 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E0793 +P 6200 2150 +F 0 "U1" H 6250 2250 30 0000 C CNN +F 1 "PORT" H 6200 2150 30 0000 C CNN +F 2 "" H 6200 2150 60 0000 C CNN +F 3 "" H 6200 2150 60 0000 C CNN + 4 6200 2150 + -1 0 0 1 +$EndComp +Wire Wire Line + 4850 2450 4850 3250 +Wire Wire Line + 4450 2800 4850 2800 +Connection ~ 4850 2800 +Wire Wire Line + 5350 2750 5350 2950 +Wire Wire Line + 5400 2450 5250 2450 +Wire Wire Line + 5400 1900 5400 2450 +Wire Wire Line + 5400 2150 5350 2150 +Wire Wire Line + 5300 1900 5400 1900 +Connection ~ 5400 2150 +Wire Wire Line + 5250 3250 5400 3250 +Wire Wire Line + 5400 3250 5400 3750 +Wire Wire Line + 5400 3550 5350 3550 +Wire Wire Line + 5400 3750 5350 3750 +Connection ~ 5400 3550 +Wire Wire Line + 5650 2800 5350 2800 +Connection ~ 5350 2800 +Wire Wire Line + 5950 2850 5950 2700 +Wire Wire Line + 5550 2850 5950 2850 +Wire Wire Line + 5550 2850 5550 2800 +Connection ~ 5550 2800 +Wire Wire Line + 6250 2800 6550 2800 +Wire Wire Line + 5950 2300 5950 2150 +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 686E7F5A +P 5950 2600 +F 0 "SC3" H 6000 2900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6250 2687 50 0000 R CNN +F 2 "" H 5950 1100 50 0001 C CNN +F 3 "" H 5950 2600 50 0001 C CNN + 1 5950 2600 + 0 1 1 0 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/tri_state.cir b/library/SubcircuitLibrary/SN74LS548/tri_state.cir new file mode 100644 index 000000000..344a32960 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/tri_state.cir @@ -0,0 +1,15 @@ +* H:\esim\eSim\library\SubcircuitLibrary\tri_state\tri_state.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/16/25 21:17:02 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC2-Pad3_ Net-_SC2-Pad3_ sky130_fd_pr__nfet_01v8 +scmode1 SKY130mode +U1 Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC2-Pad3_ Net-_SC3-Pad2_ Net-_SC3-Pad1_ PORT +SC3 Net-_SC3-Pad1_ Net-_SC3-Pad2_ Net-_SC1-Pad1_ Net-_SC1-Pad1_ sky130_fd_pr__nfet_01v8 + +.end diff --git a/library/SubcircuitLibrary/SN74LS548/tri_state.cir.out b/library/SubcircuitLibrary/SN74LS548/tri_state.cir.out new file mode 100644 index 000000000..b8ee10126 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/tri_state.cir.out @@ -0,0 +1,17 @@ +* h:\esim\esim\library\subcircuitlibrary\tri_state\tri_state.cir + + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* u1 net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc3-pad2_ net-_sc3-pad1_ port +xsc3 net-_sc3-pad1_ net-_sc3-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS548/tri_state.pro b/library/SubcircuitLibrary/SN74LS548/tri_state.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/tri_state.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74LS548/tri_state.sch b/library/SubcircuitLibrary/SN74LS548/tri_state.sch new file mode 100644 index 000000000..42f6325e1 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/tri_state.sch @@ -0,0 +1,195 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:tri_state-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 686E04ED +P 5150 2450 +F 0 "SC1" H 5200 2750 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5450 2537 50 0000 R CNN +F 2 "" H 5150 950 50 0001 C CNN +F 3 "" H 5150 2450 50 0001 C CNN + 1 5150 2450 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC2 +U 1 1 686E0554 +P 5150 3250 +F 0 "SC2" H 5200 3550 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5450 3337 50 0000 R CNN +F 2 "" H 5150 1750 50 0001 C CNN +F 3 "" H 5150 3250 50 0001 C CNN + 1 5150 3250 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 686E05B6 +P 9300 2250 +F 0 "scmode1" H 9300 2400 98 0000 C CNB +F 1 "SKY130mode" H 9300 2150 118 0000 C CNB +F 2 "" H 9300 2400 60 0001 C CNN +F 3 "" H 9300 2400 60 0001 C CNN + 1 9300 2250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 686E061D +P 4200 2800 +F 0 "U1" H 4250 2900 30 0000 C CNN +F 1 "PORT" H 4200 2800 30 0000 C CNN +F 2 "" H 4200 2800 60 0000 C CNN +F 3 "" H 4200 2800 60 0000 C CNN + 1 4200 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686E069C +P 5050 1900 +F 0 "U1" H 5100 2000 30 0000 C CNN +F 1 "PORT" H 5050 1900 30 0000 C CNN +F 2 "" H 5050 1900 60 0000 C CNN +F 3 "" H 5050 1900 60 0000 C CNN + 2 5050 1900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686E0725 +P 5100 3750 +F 0 "U1" H 5150 3850 30 0000 C CNN +F 1 "PORT" H 5100 3750 30 0000 C CNN +F 2 "" H 5100 3750 60 0000 C CNN +F 3 "" H 5100 3750 60 0000 C CNN + 3 5100 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686E0750 +P 6800 2800 +F 0 "U1" H 6850 2900 30 0000 C CNN +F 1 "PORT" H 6800 2800 30 0000 C CNN +F 2 "" H 6800 2800 60 0000 C CNN +F 3 "" H 6800 2800 60 0000 C CNN + 5 6800 2800 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 686E0793 +P 6200 2150 +F 0 "U1" H 6250 2250 30 0000 C CNN +F 1 "PORT" H 6200 2150 30 0000 C CNN +F 2 "" H 6200 2150 60 0000 C CNN +F 3 "" H 6200 2150 60 0000 C CNN + 4 6200 2150 + -1 0 0 1 +$EndComp +Wire Wire Line + 4850 2450 4850 3250 +Wire Wire Line + 4450 2800 4850 2800 +Connection ~ 4850 2800 +Wire Wire Line + 5350 2750 5350 2950 +Wire Wire Line + 5400 2450 5250 2450 +Wire Wire Line + 5400 1900 5400 2450 +Wire Wire Line + 5400 2150 5350 2150 +Wire Wire Line + 5300 1900 5400 1900 +Connection ~ 5400 2150 +Wire Wire Line + 5250 3250 5400 3250 +Wire Wire Line + 5400 3250 5400 3750 +Wire Wire Line + 5400 3550 5350 3550 +Wire Wire Line + 5400 3750 5350 3750 +Connection ~ 5400 3550 +Wire Wire Line + 5650 2800 5350 2800 +Connection ~ 5350 2800 +Wire Wire Line + 5950 2850 5950 2700 +Wire Wire Line + 5550 2850 5950 2850 +Wire Wire Line + 5550 2850 5550 2800 +Connection ~ 5550 2800 +Wire Wire Line + 6250 2800 6550 2800 +Wire Wire Line + 5950 2300 5950 2150 +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 686E7F5A +P 5950 2600 +F 0 "SC3" H 6000 2900 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 6250 2687 50 0000 R CNN +F 2 "" H 5950 1100 50 0001 C CNN +F 3 "" H 5950 2600 50 0001 C CNN + 1 5950 2600 + 0 1 1 0 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LS548/tri_state.sub b/library/SubcircuitLibrary/SN74LS548/tri_state.sub new file mode 100644 index 000000000..603f6daee --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/tri_state.sub @@ -0,0 +1,11 @@ +* Subcircuit tri_state +.subckt tri_state net-_sc1-pad2_ net-_sc1-pad3_ net-_sc2-pad3_ net-_sc3-pad2_ net-_sc3-pad1_ +* h:\esim\esim\library\subcircuitlibrary\tri_state\tri_state.cir + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc2-pad3_ net-_sc2-pad3_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +xsc3 net-_sc3-pad1_ net-_sc3-pad2_ net-_sc1-pad1_ net-_sc1-pad1_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* Control Statements + +.ends tri_state \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS548/tri_state_Previous_Values.xml b/library/SubcircuitLibrary/SN74LS548/tri_state_Previous_Values.xml new file mode 100644 index 000000000..3490db45b --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS548/tri_state_Previous_Values.xml @@ -0,0 +1 @@ +H:\esim\eSim\library\sky130_fd_pr\models\sky130.lib.spicettw=3 l=0.15w=1 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.cir b/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.cir new file mode 100644 index 000000000..784a51c08 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.cir @@ -0,0 +1,11 @@ +.title KiCad schematic +U3 C D Net-_U3-Pad3_ d_and +U1 A B C D E F G H Y PORT +U5 G H Net-_U5-Pad3_ d_and +U4 E F Net-_U4-Pad3_ d_and +U7 Net-_U4-Pad3_ Net-_U5-Pad3_ Net-_U7-Pad3_ d_and +U2 A B Net-_U2-Pad3_ d_and +U6 Net-_U2-Pad3_ Net-_U3-Pad3_ Net-_U6-Pad3_ d_and +U9 Net-_U8-Pad3_ Y d_inverter +U8 Net-_U6-Pad3_ Net-_U7-Pad3_ Net-_U8-Pad3_ d_or +.end diff --git a/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.cir.out b/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.cir.out new file mode 100644 index 000000000..323d24a3c --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.cir.out @@ -0,0 +1,44 @@ +.title kicad schematic + +* u3 c d net-_u3-pad3_ d_and +* u1 a b c d e f g h y port +* u5 g h net-_u5-pad3_ d_and +* u4 e f net-_u4-pad3_ d_and +* u7 net-_u4-pad3_ net-_u5-pad3_ net-_u7-pad3_ d_and +* u2 a b net-_u2-pad3_ d_and +* u6 net-_u2-pad3_ net-_u3-pad3_ net-_u6-pad3_ d_and +* u9 net-_u8-pad3_ y d_inverter +* u8 net-_u6-pad3_ net-_u7-pad3_ net-_u8-pad3_ d_or +a1 [c d ] net-_u3-pad3_ u3 +a2 [g h ] net-_u5-pad3_ u5 +a3 [e f ] net-_u4-pad3_ u4 +a4 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u7-pad3_ u7 +a5 [a b ] net-_u2-pad3_ u2 +a6 [net-_u2-pad3_ net-_u3-pad3_ ] net-_u6-pad3_ u6 +a7 net-_u8-pad3_ y u9 +a8 [net-_u6-pad3_ net-_u7-pad3_ ] net-_u8-pad3_ u8 +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u8 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.kicad_sch b/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.kicad_sch new file mode 100644 index 000000000..c2ec5acbd --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.kicad_sch @@ -0,0 +1,1121 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid f3131d5d-8462-4218-9136-ff71ee6dde5a) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (wire (pts (xy 118.11 58.42) (xy 142.24 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 056532de-1655-4065-a8f0-74faab2e7477) + ) + (wire (pts (xy 86.36 119.38) (xy 95.25 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10f680a9-2e05-42b3-bb76-d72c97ffe94d) + ) + (wire (pts (xy 53.34 49.53) (xy 63.5 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12da4281-dfad-4845-8f91-e7f58984850c) + ) + (wire (pts (xy 53.34 30.48) (xy 63.5 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 149fb867-6e61-4f16-a9d7-b16fe47064fd) + ) + (wire (pts (xy 86.36 158.75) (xy 95.25 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15cea304-3872-4c18-ae6e-dda933468481) + ) + (wire (pts (xy 63.5 30.48) (xy 63.5 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2dc874c1-ef54-4c05-ac54-a5b493a82e21) + ) + (wire (pts (xy 142.24 138.43) (xy 142.24 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 321f783f-05ec-430f-b2cc-492a22ce980c) + ) + (wire (pts (xy 180.34 99.06) (xy 181.61 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cc1500f-49f6-419d-b105-08d60882865d) + ) + (wire (pts (xy 95.25 158.75) (xy 95.25 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f39fadb-c6f8-4207-adba-6c50b4538dad) + ) + (wire (pts (xy 53.34 69.85) (xy 63.5 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43280697-70f0-4567-bda4-fe90f599c7d9) + ) + (wire (pts (xy 118.11 138.43) (xy 142.24 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ecabf9c-0b25-4fd9-b2dd-7b85cdf6ab9b) + ) + (wire (pts (xy 53.34 110.49) (xy 63.5 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62a6b490-72d2-445f-ac09-4f3e3741dd50) + ) + (wire (pts (xy 95.25 119.38) (xy 95.25 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 698a5639-9c22-42eb-aa88-43806fd9edb0) + ) + (wire (pts (xy 86.36 80.01) (xy 95.25 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e54a331-cba0-4565-9c89-eb6ef17c45a2) + ) + (wire (pts (xy 53.34 129.54) (xy 63.5 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 817b3bf4-887d-4141-8f4d-3deed86d1977) + ) + (wire (pts (xy 53.34 91.44) (xy 63.5 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 852d2e35-0d1b-4993-b98b-e6e58040cc5c) + ) + (wire (pts (xy 63.5 91.44) (xy 63.5 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8688ca7a-349d-491d-8471-3c71753389e7) + ) + (wire (pts (xy 63.5 110.49) (xy 63.5 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a29cb76-da26-46e5-98a9-7a8a1c1b7298) + ) + (wire (pts (xy 63.5 149.86) (xy 63.5 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8aea7f3b-fa75-4060-abef-44e10fd54d76) + ) + (wire (pts (xy 142.24 58.42) (xy 142.24 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cdfb0ce-8fe8-4edc-9054-ce100fdc6a48) + ) + (wire (pts (xy 95.25 39.37) (xy 95.25 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2c2ad52-0148-4b19-96f1-52063de6cd88) + ) + (wire (pts (xy 53.34 168.91) (xy 63.5 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4fb532d-a73f-47fb-a785-5be3e3abeae3) + ) + (wire (pts (xy 95.25 80.01) (xy 95.25 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfa1b89a-905a-4b31-a26b-4eab977b0074) + ) + (wire (pts (xy 63.5 49.53) (xy 63.5 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d133dcd7-cc55-4ea2-916f-43f13be03392) + ) + (wire (pts (xy 53.34 149.86) (xy 63.5 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d50a2b10-c730-4fa2-b44c-4407d8a5101f) + ) + (wire (pts (xy 63.5 69.85) (xy 63.5 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d59245f6-e343-45f2-9070-1c5c5c587a46) + ) + (wire (pts (xy 63.5 168.91) (xy 63.5 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6470c9f-527b-4cce-866d-d493b961276e) + ) + (wire (pts (xy 86.36 39.37) (xy 95.25 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4d2f603-0037-43b4-8e8e-55ddafe85cfe) + ) + (wire (pts (xy 63.5 129.54) (xy 63.5 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f918f5b5-09a3-47f2-a66e-640c8fc3bf70) + ) + + (global_label "H" (shape input) (at 57.15 168.91 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 1fa8a334-d6ac-41be-b440-9ddef254a629) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 57.0706 165.1664 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "F" (shape input) (at 57.15 129.54 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 3faf8d9b-7457-4109-98fe-1cab9e1acb85) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 57.0706 126.0383 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y" (shape output) (at 180.34 99.06 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6c1b3410-422a-4acb-a6d7-e1a7780e2743) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 180.2606 95.5583 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "D" (shape input) (at 57.15 91.44 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 73739d9f-14dc-4255-9997-1c175ee8c75f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 57.0706 87.7569 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "G" (shape input) (at 55.88 149.86 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7ff1ebd8-7815-483c-93a3-44e769e51d6d) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 55.8006 146.1769 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "E" (shape input) (at 57.15 110.49 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 8ecac1e4-2401-42a5-8aa8-2590b3b47c3d) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 57.0706 106.9279 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A" (shape input) (at 58.42 30.48 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid a7df7dc4-410c-4551-999a-d8cf39926e1f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.3406 26.9783 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B" (shape input) (at 57.15 49.53 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid af303c2a-9704-4a17-b982-8c2ef0fdba82) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 57.0706 45.8469 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "C" (shape input) (at 57.15 69.85 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d8a4e33b-538e-4ff8-8b72-a40d4ec48648) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 57.0706 66.1669 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 149.86 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1232422e-1b30-4d92-aa17-478cf5c5c864) + (property "Reference" "U1" (id 0) (at 47.625 144.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 147.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 927bf5b9-c708-492e-8d2a-c7acb364aea5)) + (pin "2" (uuid 3c1f958d-2a2d-454a-9885-c6b00ec78353)) + (pin "3" (uuid 20f52093-748e-4c91-9a6f-60e28339ad85)) + (pin "4" (uuid 84ff7841-5201-407f-88b2-09c20af5846e)) + (pin "5" (uuid 5e75f681-4178-4294-90dc-5c4d5573ad87)) + (pin "6" (uuid c5e58a87-3b09-4d35-b02a-0ce6b1eec1d1)) + (pin "7" (uuid 44cb2161-75fd-4149-9ea7-e79390285836)) + (pin "8" (uuid 8044f539-2a4d-44d3-b3eb-cf809e0fd224)) + (pin "9" (uuid 63467551-9294-442b-bea5-0352bdc07a65)) + (pin "10" (uuid 9ca262c2-abf8-4c83-992d-f191afba4dc9)) + (pin "11" (uuid cc4fb818-2eab-430a-86ce-f27829fe2cfa)) + (pin "12" (uuid 7062ee6e-329c-428b-b64c-6b72a3ada87f)) + (pin "13" (uuid 5e75fb89-4588-446a-8708-47eba3e5a6ca)) + (pin "14" (uuid f76cd8fe-1aea-4ffe-80f4-e987df5b894f)) + (pin "15" (uuid 923dee99-5fae-44bc-88df-29c0eae1d606)) + (pin "16" (uuid f5317100-1802-4021-85e5-2b83033b62ed)) + (pin "17" (uuid 32404cf3-3abf-414e-a9f6-ed75349043dc)) + (pin "18" (uuid 92593492-14c1-404f-a004-3a5582781cfe)) + (pin "19" (uuid 52570e95-8e30-4560-bd09-7c76e66378fe)) + (pin "20" (uuid aaef729b-5fd4-4abd-b62b-0494d4fecc4d)) + (pin "21" (uuid 7e79c68c-b683-46d1-ab58-5a8d0624874a)) + (pin "22" (uuid fb84bcb7-28ca-4534-b2e3-c620e2855003)) + (pin "23" (uuid 271c2a70-d188-427b-b5fe-3dce97ef6f3e)) + (pin "24" (uuid 62850c5b-2f58-4766-b668-e6326524cbdb)) + (pin "25" (uuid b8b31275-0413-45b3-9b57-b4746fdab6a7)) + (pin "26" (uuid 862aa9c5-0ce5-4f82-95dd-ca74bb598a4a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 110.49 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 151bde01-83fc-4036-81ce-f7e9ee4600ef) + (property "Reference" "U1" (id 0) (at 47.625 105.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 107.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 44a33c36-932a-4d04-ba67-135a1b22e298)) + (pin "2" (uuid cd45c0eb-b725-4a9d-bab2-3caa904f2cf4)) + (pin "3" (uuid 0908010c-bfad-4ebc-aeb8-89f7a515a6ab)) + (pin "4" (uuid 27e61a85-2ad7-45ef-bc13-f3f3f9c63b13)) + (pin "5" (uuid b8386985-91c5-44e6-aa7f-0c742f993ece)) + (pin "6" (uuid 921bc12f-b6e9-43c2-950a-f90bd8d8eb69)) + (pin "7" (uuid 80342cb2-0b03-4531-8f27-098093faf1b2)) + (pin "8" (uuid 580c70bf-f03b-4408-be57-620d5f5d959d)) + (pin "9" (uuid 8d62ec4c-8c59-45a0-80f2-7b2381c83ef4)) + (pin "10" (uuid 3a7ace96-9f9b-4e68-a86a-4424c7f20eba)) + (pin "11" (uuid 89764217-d45c-4be3-a453-73e558d009a1)) + (pin "12" (uuid 3a2b175e-69ef-4bf3-8ba8-5d4f56a16027)) + (pin "13" (uuid a58d89f8-a2ac-4836-875f-a710d09a2588)) + (pin "14" (uuid 0a2e71b7-ae2a-40b4-805f-0e843ce21b1c)) + (pin "15" (uuid 3aeaf56e-e7eb-4d29-a1b5-8eaf7955b1cc)) + (pin "16" (uuid 79c9bba2-7a2a-47a8-8625-83dc157bb363)) + (pin "17" (uuid b7fc017a-aa95-483a-9044-bf9697a6a444)) + (pin "18" (uuid 651e41e1-c908-493b-817b-24c7af0f7452)) + (pin "19" (uuid ec12790c-ab90-430c-9a13-32010bcbcc15)) + (pin "20" (uuid cfcb7b0a-035b-4576-8a16-8cb34a4dfd78)) + (pin "21" (uuid 55a0c728-140c-41d9-9a4f-c766737e1ea4)) + (pin "22" (uuid 76c3fe6d-88a3-484c-bcab-f2afd03e8396)) + (pin "23" (uuid 31b62195-c339-4898-913b-c6f600457773)) + (pin "24" (uuid b8f19acd-f20c-4ae7-b930-1b4a086a9315)) + (pin "25" (uuid d25a23bd-a3ac-49b5-8acf-1d478e22d1c5)) + (pin "26" (uuid bd772e44-4cf1-4d65-aaef-8b11b7e02363)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 74.93 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 161be476-7ba1-48d3-846d-b5918ce2076f) + (property "Reference" "U4" (id 0) (at 74.93 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 74.93 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 74.93 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 74.93 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d01dd90d-c820-4ae8-aea6-9b59489d2825)) + (pin "2" (uuid a079cce5-7f7f-4770-aaf7-4e5f1ed640d9)) + (pin "3" (uuid ebf646f4-1700-4fc6-b9db-23d90a2990c2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 91.44 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 163f2f94-2340-4936-bfd9-cca910064f68) + (property "Reference" "U1" (id 0) (at 47.625 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 88.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d44c38f3-b2d0-475d-9b7f-7c89bc8ad5a3)) + (pin "2" (uuid eff84c98-3c9c-4d4d-a9e9-ca7a03c35fbf)) + (pin "3" (uuid 17aee978-962b-437a-94f0-7fb4e7f3dde7)) + (pin "4" (uuid c2d046a1-1869-4768-8ad9-00f90ce81934)) + (pin "5" (uuid 8d423172-0eed-472e-93fe-42bb3c6d4984)) + (pin "6" (uuid fb25bd06-f01f-4317-a211-c040bd6f555c)) + (pin "7" (uuid 77a201eb-7cd9-432d-ab1f-17e3be9c1774)) + (pin "8" (uuid 59423510-9da2-45a4-a82f-f1c191b236e4)) + (pin "9" (uuid 755b0173-fd46-4fbd-957e-bc68d82056e1)) + (pin "10" (uuid 728d9e91-e47d-4d3f-a0c2-7cbb907c1581)) + (pin "11" (uuid e528cddc-a364-40b5-a016-0bd3f83a73af)) + (pin "12" (uuid df430539-0555-4b8a-8b51-903f970bb5a1)) + (pin "13" (uuid 9af64c12-c086-415c-a013-c255c49e6250)) + (pin "14" (uuid 7b948ce6-d938-4257-a7a8-c181ed699f33)) + (pin "15" (uuid d00f92bc-ea53-4d91-91fe-3a79ccfc5a19)) + (pin "16" (uuid 45706f07-6367-4f24-a670-cb6c366b269c)) + (pin "17" (uuid 9c4e0a35-893a-4e2a-8524-d36c9191c453)) + (pin "18" (uuid 84040352-fd7b-4594-b053-c5ec551c8e4e)) + (pin "19" (uuid c1e8c063-1042-4345-a08c-b25f28164f6e)) + (pin "20" (uuid a28eb422-4e82-434e-90ba-c08145747191)) + (pin "21" (uuid b8f0194b-d335-473c-baf2-7e9535ce1e47)) + (pin "22" (uuid 19eeadec-59ab-49b2-a202-e712ca4b5e03)) + (pin "23" (uuid 9ceab6f1-ae69-41d8-9b48-f874dce18cd8)) + (pin "24" (uuid 69f0857d-6f2c-416f-8c5e-cf49e95f6309)) + (pin "25" (uuid 58595ba7-8888-4311-8e20-4761272ce0db)) + (pin "26" (uuid 62903897-8478-4652-aef9-83039c5efe7b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 30.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1e0dd6c3-1414-4a96-bc21-b34aa6baefa9) + (property "Reference" "U1" (id 0) (at 47.625 25.4 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 27.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7602ad36-ea34-4e5f-83e2-dec4ec1dc992)) + (pin "2" (uuid a439a1ac-bb44-41d3-bab9-3a231d943219)) + (pin "3" (uuid 6d7b9e1b-e73f-4a8a-96cb-7dc3fe4e6a55)) + (pin "4" (uuid 1c6cd16c-565b-45f8-a57f-faf3d61c1453)) + (pin "5" (uuid 83f6db21-71e4-4c68-a644-3ee2e28b85fa)) + (pin "6" (uuid a9b904e8-10f6-41ad-acb2-31a1af69e534)) + (pin "7" (uuid 2f0392c8-e193-4257-a6f9-bddc835db86b)) + (pin "8" (uuid 8e173df7-0e39-4c35-b47a-ae5938abbb44)) + (pin "9" (uuid 7f44c481-d124-41d4-804b-4238095b0dd4)) + (pin "10" (uuid 6c81201d-c0ee-45d8-976b-a32cedb29f46)) + (pin "11" (uuid 432d6460-30e1-401c-89fe-48608b0f65ed)) + (pin "12" (uuid 90760708-8d39-4fba-a4e6-567aad42eb8e)) + (pin "13" (uuid bfaf3a61-87c6-4cae-beb2-0d4d21488f51)) + (pin "14" (uuid f780f712-1613-41d0-afde-94c3abb423c0)) + (pin "15" (uuid 17c24b56-3eea-42c9-b88a-c33aa1b62f32)) + (pin "16" (uuid d6053d05-609a-431e-a449-a4b63a6c0d98)) + (pin "17" (uuid 0ad84654-ea97-48c5-87f9-5eff3c8046d1)) + (pin "18" (uuid 3df28629-eaa3-4a92-8106-53d6ece0275c)) + (pin "19" (uuid 657bc2de-3d7b-4947-8648-787ca742a099)) + (pin "20" (uuid 35c1a717-74fb-4e61-96da-352e2b12c3dc)) + (pin "21" (uuid 89f231be-cbae-4255-a9b6-dd2264ab6109)) + (pin "22" (uuid 4b135274-bd87-45ae-b163-cbee12a349e8)) + (pin "23" (uuid ee1530bf-b9d4-4da9-a09a-197d02c7898c)) + (pin "24" (uuid 070e08f5-15a5-4cf3-8318-1f860699fa45)) + (pin "25" (uuid a1e16df4-5eda-4b2e-ba48-27b632f4d17c)) + (pin "26" (uuid f1aa941f-f0ad-417c-b1fe-15e8c57eb0c0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 49.53 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 24b246fd-ed95-4d30-b8f7-c39dd542217a) + (property "Reference" "U1" (id 0) (at 47.625 44.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 46.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d46dad05-252d-4139-ba2e-60ccc0168de0)) + (pin "2" (uuid 00138d22-b9df-457a-88d6-90166ae472cb)) + (pin "3" (uuid 8309f6dd-c6c0-4512-ad74-83020eb41148)) + (pin "4" (uuid 05c4e044-4fa2-40e1-a20f-e9350d919e41)) + (pin "5" (uuid a237f5a7-e51f-4be1-ac9d-b9fb45dc51c7)) + (pin "6" (uuid 80f42060-dcfd-48b4-8808-ec7f0797dbe3)) + (pin "7" (uuid 501f00a8-1472-44fe-964c-3f3e51ca38c8)) + (pin "8" (uuid 219ca21d-2231-48b4-af65-a2d6b52b035b)) + (pin "9" (uuid 5f7edd23-7df4-4ed2-b038-ad55ac50db19)) + (pin "10" (uuid 126c7847-d8c6-42d0-994a-72e6637801e8)) + (pin "11" (uuid a2760d0a-c2e2-42bd-9f07-57468e4a714d)) + (pin "12" (uuid e96e9b91-6b4b-4160-962b-1532782f9708)) + (pin "13" (uuid bbafb5fb-578a-45d3-9598-eab48d0e2693)) + (pin "14" (uuid b69475e8-0716-46d1-846b-1c4bb1e61b41)) + (pin "15" (uuid 308bf4e8-1950-42a1-9f0b-100e6d0d92e3)) + (pin "16" (uuid c3c3de01-05f8-4a35-857f-a7e6787f2b88)) + (pin "17" (uuid 937469a3-ae22-4c26-b832-20e6f6dda7d7)) + (pin "18" (uuid 06e1c519-3239-4f25-a5b7-9d67b0a8409b)) + (pin "19" (uuid 36773566-a3ce-4dc7-9500-c6b406cd5de4)) + (pin "20" (uuid a50954ce-5352-445d-86fe-df25506d58cd)) + (pin "21" (uuid 5ec55fad-b91c-41a5-a955-0bd371de2d8e)) + (pin "22" (uuid dc614d87-4af0-4f55-b537-6f5566bd959d)) + (pin "23" (uuid 6e464756-a3e1-4d01-b3d5-108bdb8f64dc)) + (pin "24" (uuid 85c58561-55e1-4847-a0a9-a052bd55b72a)) + (pin "25" (uuid d2e08f89-734e-4e5d-b9a6-b4061af64403)) + (pin "26" (uuid 8b85c478-d317-4f3b-9f9f-fdc661bad9ac)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 129.54 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2b12a58f-5951-448e-86ce-09f51d8af57a) + (property "Reference" "U1" (id 0) (at 47.625 124.46 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 127 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 96995332-45ce-46e8-89e6-f196037b8025)) + (pin "2" (uuid 6aa12096-9b6f-4131-a6ed-04f1e0a39871)) + (pin "3" (uuid a7e8aa9b-3883-417f-a298-b9bd6fa50435)) + (pin "4" (uuid c7d9419c-3a86-45f5-a319-cda7c8cf55cc)) + (pin "5" (uuid b9ba8f14-e70e-4758-a7bf-f6e0477a19a8)) + (pin "6" (uuid da1fe6d2-3e26-431b-8d15-97f271381574)) + (pin "7" (uuid 637e03a5-2c9a-47bd-ab77-13d889039443)) + (pin "8" (uuid dd294dea-695f-4e58-8998-9ffee93cb1ca)) + (pin "9" (uuid 3fa81c91-e378-469f-8043-abb2f6d4ba97)) + (pin "10" (uuid a74db6b1-23b4-4b5c-a25c-b1505a940636)) + (pin "11" (uuid 88ec045d-d1da-48c5-9ea1-7d7a65d351d6)) + (pin "12" (uuid b91e7695-3054-4477-9185-34126bf5bb01)) + (pin "13" (uuid daed4bec-7fcb-40f7-be23-61b27ae4cbad)) + (pin "14" (uuid 37b4a2a7-3211-41da-962a-2beed77763c2)) + (pin "15" (uuid 94e7997e-83cd-433b-9145-151b05171f0a)) + (pin "16" (uuid 03793ae5-4a3a-4eb3-8491-10138deaa5f8)) + (pin "17" (uuid a7112293-0b2b-4627-8d26-e4c6b4e12220)) + (pin "18" (uuid 7a3ce2bd-3739-4233-b040-bb524a662c6b)) + (pin "19" (uuid fc7c78d6-c200-44a0-aa00-88d03aeede8a)) + (pin "20" (uuid 5c196f0b-310c-4675-9d33-d4f949c49fd0)) + (pin "21" (uuid 7b5d9f30-31cf-4366-ad36-2d7bdc1fbdf6)) + (pin "22" (uuid 62021da3-0b28-4c48-a87d-54bfdfa50077)) + (pin "23" (uuid 4d1773a9-188a-4ca7-867f-55fe92c26268)) + (pin "24" (uuid 9f2bc33e-9b10-49eb-9fbb-c5c6cefbfbb1)) + (pin "25" (uuid cdb368c0-99cb-43fb-a54f-7a137297b592)) + (pin "26" (uuid d2b1306f-ef9a-408b-92ab-4fe3ff8e18c8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 74.93 160.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e5fedc1-af5b-4649-a2db-c5a50157a914) + (property "Reference" "U5" (id 0) (at 74.93 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 74.93 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 74.93 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 74.93 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 30bea983-7ab8-42bc-b59d-c808a8210e21)) + (pin "2" (uuid 59c18116-9fb3-41da-85eb-b85aac7e8717)) + (pin "3" (uuid a0ec381a-74fa-424b-bc83-57b4ce3aa647)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a184d7e-75a2-4842-a4e3-be32fe9d7c77) + (property "Reference" "U6" (id 0) (at 106.68 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9855e27f-8370-46d0-9c59-b45401fcf024)) + (pin "2" (uuid 89fea91a-75b8-4b7c-8e9a-0825c485a25f)) + (pin "3" (uuid 8b953347-27fc-46ff-8bc7-23274e5dd4e8)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 172.72 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 538e7365-019b-4746-aa4b-0d0c8b1a4d61) + (property "Reference" "U9" (id 0) (at 172.72 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 172.72 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 173.99 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 173.99 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d445703-eab7-4fde-a355-e6a709ed35e9)) + (pin "2" (uuid 3b30b0d9-e128-4c1a-a1e7-0f1664dde924)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 153.67 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 54eddd8b-ec55-4b1f-afae-735e9755bc34) + (property "Reference" "U8" (id 0) (at 153.67 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 153.67 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 153.67 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 21b778d8-a9b7-4424-8952-c789ae838830)) + (pin "2" (uuid 43c75d85-fe6c-40d4-a447-1b38f5b2054e)) + (pin "3" (uuid faf2c136-3780-429d-9f56-6ee655dff24e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 187.96 99.06 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 599e1b10-607d-49e6-bb8d-96b8c65092aa) + (property "Reference" "U1" (id 0) (at 191.77 98.425 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 191.77 100.965 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 187.96 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 187.96 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1ffc9ff6-884a-49e5-ad7b-dfa9069779b3)) + (pin "2" (uuid c1e8f956-a447-4cef-8a3b-48a136d8a796)) + (pin "3" (uuid a13b6dc3-d741-4001-bac8-8db6eff240e5)) + (pin "4" (uuid 977657b2-afbe-4e44-bc55-988a4a7a7920)) + (pin "5" (uuid 26336e8d-ba37-4f83-ad0e-69b44face2f8)) + (pin "6" (uuid 701ee355-97df-4455-a6cf-050f50601f74)) + (pin "7" (uuid 6e495b55-8225-446f-a0ec-ed53d6086bd1)) + (pin "8" (uuid 18fb1bf4-2641-45f7-ae49-2b9195b940dd)) + (pin "9" (uuid 0b69f721-3491-4804-80fc-be992fde6bc3)) + (pin "10" (uuid 468412a6-c52e-4991-bfc7-a2ee065dcc40)) + (pin "11" (uuid 429c7da8-35df-467f-a551-b45735e18c49)) + (pin "12" (uuid c25153d7-e2fd-491c-86f4-2f15935d9063)) + (pin "13" (uuid 5e4f04ff-635e-4cae-ac43-ba6a01a9ddb0)) + (pin "14" (uuid 542411eb-10fe-4b5b-9675-2f85a2c4ec2f)) + (pin "15" (uuid fa7c6b60-7b6c-480e-b37a-76f4e115cdb0)) + (pin "16" (uuid 64dc409b-6931-40c9-9d2f-5e313adca1b1)) + (pin "17" (uuid 38fc4cc5-ba89-4793-846f-482457c56aed)) + (pin "18" (uuid ffd640a2-494c-4ef2-a92e-462bba25b1c6)) + (pin "19" (uuid 6066c8ac-2cf5-455b-b7f5-da1ad4ccf495)) + (pin "20" (uuid 3b1c48c9-687f-432c-906a-34c6e96bb298)) + (pin "21" (uuid d8d47bde-7d6f-4cb3-ac35-d7c3a0d3c06f)) + (pin "22" (uuid 85510f63-0374-4975-b6dc-fcbdab41cb78)) + (pin "23" (uuid d77a4482-725e-4642-8835-58e3c07db221)) + (pin "24" (uuid bc0fe488-7583-4b82-872e-bf3c97d9fc6a)) + (pin "25" (uuid b61b2de7-26fd-4d94-8dde-ddada4065cd3)) + (pin "26" (uuid eb15306b-8fb2-4bd4-8067-f51f0b838002)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 74.93 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 69e6cebc-8f07-4fcb-8396-f40fca2fc0f3) + (property "Reference" "U3" (id 0) (at 74.93 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 74.93 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 74.93 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 74.93 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 15d6a828-470c-4db6-84cd-3db0650bb895)) + (pin "2" (uuid 922c3df1-0a9f-4201-971a-1d269cb7c7e8)) + (pin "3" (uuid 66ee5aaa-5ef2-4c89-ada8-c9ae8580919e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 168.91 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7428bafa-d99e-48ae-bd38-581ff011402b) + (property "Reference" "U1" (id 0) (at 47.625 163.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 166.37 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bd87c3fc-176b-4a1d-8afa-cd0cf043efaf)) + (pin "2" (uuid 981d55bf-3572-4308-9c33-3cbc394665a1)) + (pin "3" (uuid f1e5bf5a-68ab-434d-ac48-8fbd271aac74)) + (pin "4" (uuid 70ce240e-fcab-4c51-8750-0a7531372c83)) + (pin "5" (uuid b7af4c1b-faf9-4826-8269-1bcb912bc84e)) + (pin "6" (uuid d58688b1-908a-4068-8cd1-0739e1344cdd)) + (pin "7" (uuid 3098b113-2191-4f9c-b87e-18ab12692e16)) + (pin "8" (uuid e369d6c1-22e7-4b07-a6e9-1ceea7c8e4d9)) + (pin "9" (uuid b98ebc8f-a01f-4421-9974-7694acb3ea27)) + (pin "10" (uuid 484d1f5d-d4ea-4cb4-8084-866995283562)) + (pin "11" (uuid ee178b86-c631-46f6-a9b5-b382355cd213)) + (pin "12" (uuid 42d7ca00-697d-4454-a908-0e9348cfab4d)) + (pin "13" (uuid 5d4ea5da-4ab4-431d-b645-c78c1fbbbe74)) + (pin "14" (uuid a19193e2-78ca-4882-9392-26bc99a27705)) + (pin "15" (uuid 5484d7af-cd40-4f03-9d5a-34682a54d329)) + (pin "16" (uuid fa54d7ec-ebf8-4e93-8f9d-1d9cc8663085)) + (pin "17" (uuid 23fb1c79-3a84-4ece-9a22-5d325cf51837)) + (pin "18" (uuid 94120d9d-e0fe-4913-a429-1707cc79ed7a)) + (pin "19" (uuid bac3dabd-65d8-4bfa-af92-e16e405fbf51)) + (pin "20" (uuid ae0bc766-adaf-4b09-9d56-1b315f4107fa)) + (pin "21" (uuid 52a81d26-7ba3-485e-acdc-ec41c804bb4b)) + (pin "22" (uuid d42b5062-a41c-40ae-ab0d-9e72e4039c81)) + (pin "23" (uuid c707400b-ade7-4011-a9a4-45bf0de7fc03)) + (pin "24" (uuid 9f30f886-65f1-4f78-b90f-c43e5532bb86)) + (pin "25" (uuid 9e55e8aa-f704-47cf-8803-ae7548686728)) + (pin "26" (uuid c94bd33d-29c2-452c-99eb-7dbe34aad11b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 74.93 40.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7ef11f6-1029-4723-abc6-efbcd81a06b6) + (property "Reference" "U2" (id 0) (at 74.93 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 74.93 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 74.93 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 74.93 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2bee1f06-08b0-4f33-8438-fd4899fd532a)) + (pin "2" (uuid 85da3f35-fdde-474f-b4a3-37a7f4a26822)) + (pin "3" (uuid 9300c178-2d28-4df2-89ff-167a0d16bd23)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 46.99 69.85 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c6dc95de-a678-4fd7-a86c-d684e49d86cd) + (property "Reference" "U1" (id 0) (at 47.625 64.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 47.625 67.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 46.99 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 46.99 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d5f247fa-8868-494c-bf53-c6a1a3f85e76)) + (pin "2" (uuid b391c71f-f678-47a2-857d-0ca361e6c100)) + (pin "3" (uuid f9729755-ec03-49ea-9f69-e9d76643316c)) + (pin "4" (uuid 61b2cc38-578e-4070-b103-0ad6a2162208)) + (pin "5" (uuid 3070eae9-ef0a-4082-b376-9c2b4a1f63f2)) + (pin "6" (uuid 8d878658-21d8-484c-bed7-f57e305f2cc2)) + (pin "7" (uuid 26f09764-ec31-4bcc-8ab7-61f7166346cb)) + (pin "8" (uuid 5835c8da-c90d-4078-a990-83e769054891)) + (pin "9" (uuid 209175b7-596e-418c-a8b0-43506ba05d80)) + (pin "10" (uuid 699f4c00-8ee9-4175-800d-e376606ef3a2)) + (pin "11" (uuid 17689941-5d7e-4b99-aa17-a18c5598d8e9)) + (pin "12" (uuid ffff7b2d-4f6e-449f-83fb-47e4f0bbe4aa)) + (pin "13" (uuid da2aa510-aa95-4785-942a-91aa033f5e30)) + (pin "14" (uuid 99b3b22f-ba85-4a57-98d1-0a63f8474612)) + (pin "15" (uuid c85d18c7-8f25-4699-8dbb-8499ea4d1112)) + (pin "16" (uuid 48cd0427-3cf2-4e4f-8109-5eb71d177542)) + (pin "17" (uuid f9b1fc0f-6d88-4725-ba80-012af6c885ce)) + (pin "18" (uuid 3ae84e4f-8878-4a57-8dd7-9d38d9430af4)) + (pin "19" (uuid 8257b7d7-b550-4658-97b6-16667b0886ec)) + (pin "20" (uuid 66206f99-0787-49ca-94fa-e51452a009bb)) + (pin "21" (uuid e4e6d66e-caef-4c16-bd04-5856b585c141)) + (pin "22" (uuid 198f475d-6845-48a1-95f3-465b59913868)) + (pin "23" (uuid ee53fb71-a33d-4afd-a150-7341f5c0ae73)) + (pin "24" (uuid 11baebfe-5779-4aad-84a5-f7b3aafe8e8d)) + (pin "25" (uuid 911df25d-5cc3-4369-be51-32ddce0b6aad)) + (pin "26" (uuid 0e316be9-7541-4462-babf-21eac9518109)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 106.68 139.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f6e85c81-2094-4a25-a924-56cb7d52a513) + (property "Reference" "U7" (id 0) (at 106.68 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 106.68 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e82a428-6b75-4f9b-8816-02e1b08a4d6a)) + (pin "2" (uuid dc418e90-56ef-4935-ae8f-853115ffbb07)) + (pin "3" (uuid cb3caea3-454d-4ae0-a8b9-4f9d7a27768f)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/1e0dd6c3-1414-4a96-bc21-b34aa6baefa9" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/24b246fd-ed95-4d30-b8f7-c39dd542217a" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/c6dc95de-a678-4fd7-a86c-d684e49d86cd" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/163f2f94-2340-4936-bfd9-cca910064f68" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/151bde01-83fc-4036-81ce-f7e9ee4600ef" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/2b12a58f-5951-448e-86ce-09f51d8af57a" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/1232422e-1b30-4d92-aa17-478cf5c5c864" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/7428bafa-d99e-48ae-bd38-581ff011402b" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/599e1b10-607d-49e6-bb8d-96b8c65092aa" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/a7ef11f6-1029-4723-abc6-efbcd81a06b6" + (reference "U2") (unit 1) (value "d_and") (footprint "") + ) + (path "/69e6cebc-8f07-4fcb-8396-f40fca2fc0f3" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/161be476-7ba1-48d3-846d-b5918ce2076f" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/2e5fedc1-af5b-4649-a2db-c5a50157a914" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/3a184d7e-75a2-4842-a4e3-be32fe9d7c77" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/f6e85c81-2094-4a25-a924-56cb7d52a513" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/54eddd8b-ec55-4b1f-afae-735e9755bc34" + (reference "U8") (unit 1) (value "d_or") (footprint "") + ) + (path "/538e7365-019b-4746-aa4b-0d0c8b1a4d61" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.proj b/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.proj new file mode 100644 index 000000000..8fffc1d67 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.proj @@ -0,0 +1 @@ +schematicFile SN74LS55_subckt.kicad_sch diff --git a/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.sub b/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.sub new file mode 100644 index 000000000..53ed19de4 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/SN74LS55_subckt.sub @@ -0,0 +1,38 @@ +* Subcircuit SN74LS55_subckt +.subckt SN74LS55_subckt a b c d e f g h y +.title kicad schematic +* u3 c d net-_u3-pad3_ d_and +* u5 g h net-_u5-pad3_ d_and +* u4 e f net-_u4-pad3_ d_and +* u7 net-_u4-pad3_ net-_u5-pad3_ net-_u7-pad3_ d_and +* u2 a b net-_u2-pad3_ d_and +* u6 net-_u2-pad3_ net-_u3-pad3_ net-_u6-pad3_ d_and +* u9 net-_u8-pad3_ y d_inverter +* u8 net-_u6-pad3_ net-_u7-pad3_ net-_u8-pad3_ d_or +a1 [c d ] net-_u3-pad3_ u3 +a2 [g h ] net-_u5-pad3_ u5 +a3 [e f ] net-_u4-pad3_ u4 +a4 [net-_u4-pad3_ net-_u5-pad3_ ] net-_u7-pad3_ u7 +a5 [a b ] net-_u2-pad3_ u2 +a6 [net-_u2-pad3_ net-_u3-pad3_ ] net-_u6-pad3_ u6 +a7 net-_u8-pad3_ y u9 +a8 [net-_u6-pad3_ net-_u7-pad3_ ] net-_u8-pad3_ u8 +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u8 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN74LS55_subckt \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.cir b/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.cir new file mode 100644 index 000000000..a5890b198 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.cir @@ -0,0 +1,20 @@ +.title KiCad schematic +U1 A Net-_U1-Pad2_ adc_bridge_1 +U3 C Net-_U3-Pad2_ adc_bridge_1 +U2 B Net-_U2-Pad2_ adc_bridge_1 +v3 C GND pulse +v4 D GND pulse +v1 A GND pulse +v2 B GND pulse +X1 Net-_U1-Pad2_ Net-_U2-Pad2_ Net-_U3-Pad2_ Net-_U4-Pad2_ Net-_U5-Pad2_ Net-_U6-Pad2_ Net-_U7-Pad2_ Net-_U8-Pad2_ Net-_U9-Pad1_ SN74LS55 +U9 Net-_U9-Pad1_ Y dac_bridge_1 +v8 H GND pulse +U8 H Net-_U8-Pad2_ adc_bridge_1 +U7 G Net-_U7-Pad2_ adc_bridge_1 +v7 G GND pulse +v6 F GND pulse +v5 E GND pulse +U4 D Net-_U4-Pad2_ adc_bridge_1 +U5 E Net-_U5-Pad2_ adc_bridge_1 +U6 F Net-_U6-Pad2_ adc_bridge_1 +.end diff --git a/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.cir.out b/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.cir.out new file mode 100644 index 000000000..6f95dbe7c --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.cir.out @@ -0,0 +1,57 @@ +.title kicad schematic + +.include SN74LS55_subckt.sub +* u1 a net-_u1-pad2_ adc_bridge_1 +* u3 c net-_u3-pad2_ adc_bridge_1 +* u2 b net-_u2-pad2_ adc_bridge_1 +v3 c gnd pulse(0 0 0 0 0 0 0) +v4 d gnd pulse(0 0 0 0 0 0 0) +v1 a gnd pulse(0 0 0 0 0 0 0) +v2 b gnd pulse(0 0 0 0 0 0 0) +x1 net-_u1-pad2_ net-_u2-pad2_ net-_u3-pad2_ net-_u4-pad2_ net-_u5-pad2_ net-_u6-pad2_ net-_u7-pad2_ net-_u8-pad2_ net-_u9-pad1_ SN74LS55_subckt +* u9 net-_u9-pad1_ y dac_bridge_1 +v8 h gnd pulse(0 0 0 0 0 0 0) +* u8 h net-_u8-pad2_ adc_bridge_1 +* u7 g net-_u7-pad2_ adc_bridge_1 +v7 g gnd pulse(0 0 0 0 0 0 0) +v6 f gnd pulse(0 0 0 0 0 0 0) +v5 e gnd pulse(0 0 0 0 0 0 0) +* u4 d net-_u4-pad2_ adc_bridge_1 +* u5 e net-_u5-pad2_ adc_bridge_1 +* u6 f net-_u6-pad2_ adc_bridge_1 +a1 [a ] [net-_u1-pad2_ ] u1 +a2 [c ] [net-_u3-pad2_ ] u3 +a3 [b ] [net-_u2-pad2_ ] u2 +a4 [net-_u9-pad1_ ] [y ] u9 +a5 [h ] [net-_u8-pad2_ ] u8 +a6 [g ] [net-_u7-pad2_ ] u7 +a7 [d ] [net-_u4-pad2_ ] u4 +a8 [e ] [net-_u5-pad2_ ] u5 +a9 [f ] [net-_u6-pad2_ ] u6 +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u1 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u3 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u9 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u8 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u7 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u4 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u5 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: adc_bridge_1, Ngspice Name: adc_bridge +.model u6 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 0.1e-03 320e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.kicad_sch b/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.kicad_sch new file mode 100644 index 000000000..58b304a26 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.kicad_sch @@ -0,0 +1,946 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid ebbc5a6a-dafe-489d-abd2-4c66310d1e13) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Hybrid:adc_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "adc_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "adc_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pulse" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pulse_0_1" + (arc (start -1.27 1.27) (mid -1.3491 0) (end -1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2876) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.635 1.2859) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 1.27) (mid -0.0703 0) (end 0 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.2124 0) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 1.27) (mid 1.905 1.2556) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pulse_1_1" + (pin passive line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Subckt:SN74LS55" (in_bom yes) (on_board yes) + (property "Reference" "X" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SN74LS55" (id 1) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SN74LS55_0_1" + (rectangle (start -7.62 -2.54) (end 7.62 -22.86) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SN74LS55_1_1" + (pin input line (at -10.16 -3.81 0) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -6.35 0) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -8.89 0) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -11.43 0) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -13.97 0) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -16.51 0) (length 2.54) + (name "F" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -19.05 0) (length 2.54) + (name "G" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -21.59 0) (length 2.54) + (name "H" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 10.16 -12.7 180) (length 2.54) + (name "Y" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (wire (pts (xy 133.35 99.06) (xy 119.38 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e735612-3535-4eb8-8578-34b88751830a) + ) + (wire (pts (xy 133.35 96.52) (xy 114.3 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1034508e-bccd-4719-82e2-0eb28b1af403) + ) + (wire (pts (xy 114.3 96.52) (xy 114.3 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1264acb0-12cb-4503-b8da-297353f551ee) + ) + (wire (pts (xy 125.73 83.82) (xy 125.73 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 179af1b5-7472-4023-b8f4-cada7ef3fb1d) + ) + (wire (pts (xy 121.92 86.36) (xy 121.92 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 269172da-9812-43af-934f-eaca02fa8eea) + ) + (wire (pts (xy 104.14 88.9) (xy 104.14 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2929dbca-2994-40f2-8b5c-b8208da2c5c8) + ) + (wire (pts (xy 125.73 83.82) (xy 133.35 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f776029-76c6-4c6c-9c4e-ec108fecf015) + ) + (wire (pts (xy 129.54 36.83) (xy 104.14 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 389eeac9-b71c-45fe-a039-b264dc1b90bb) + ) + (wire (pts (xy 110.49 93.98) (xy 110.49 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b1a56e2-f2a8-46ff-9fb0-858f2e87974c) + ) + (wire (pts (xy 104.14 135.89) (xy 110.49 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 754d7806-0da4-451d-b58e-8f8f90e083b3) + ) + (wire (pts (xy 133.35 91.44) (xy 106.68 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b60e8e4-ce1d-4880-9d67-2644d0679005) + ) + (wire (pts (xy 104.14 74.93) (xy 104.14 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fb97457-6b7d-4599-a320-a54c8cc3b31c) + ) + (wire (pts (xy 184.15 90.17) (xy 195.58 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 889c0540-1100-4e3c-94bc-fea780be6480) + ) + (wire (pts (xy 119.38 99.06) (xy 119.38 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d33344c-6520-43e5-af6e-e3349f93667b) + ) + (wire (pts (xy 129.54 81.28) (xy 133.35 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f5d3646-315a-4245-a6aa-354d07b95bd1) + ) + (wire (pts (xy 121.92 74.93) (xy 104.14 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a024e4cc-a7b9-4c3d-97bf-a2b671379879) + ) + (wire (pts (xy 153.67 90.17) (xy 154.94 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba4d529a-1671-414b-bcd9-6651b409d9f0) + ) + (wire (pts (xy 104.14 175.26) (xy 119.38 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bab7af1d-0dbd-41ae-b2fd-ba5d2d6bad73) + ) + (wire (pts (xy 129.54 81.28) (xy 129.54 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3b6e177-fdd8-4c70-b14c-c4d6932d8c06) + ) + (wire (pts (xy 133.35 93.98) (xy 110.49 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0973952-a27e-4667-a20a-cb2c70836120) + ) + (wire (pts (xy 106.68 91.44) (xy 106.68 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4cc586b-5148-45ab-99f0-1e031257c2f9) + ) + (wire (pts (xy 133.35 88.9) (xy 104.14 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbe18528-18f6-4951-8b45-482a40e1b559) + ) + (wire (pts (xy 104.14 116.84) (xy 106.68 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbe5b0d1-1932-4e74-9138-f07dfe9c059d) + ) + (wire (pts (xy 114.3 156.21) (xy 104.14 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8327e69-fb7c-41a4-8dc4-29e2fdfd075a) + ) + (wire (pts (xy 133.35 86.36) (xy 121.92 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0b530de-59c9-4f21-97d8-41e6144d213b) + ) + (wire (pts (xy 125.73 55.88) (xy 104.14 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2327a3c-31f1-43ef-8701-1d4425ba32d3) + ) + + (global_label "A" (shape input) (at 74.93 36.83 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2c99a2c9-db53-450a-a195-47312f41021c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 74.8506 33.3283 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "E" (shape input) (at 74.93 116.84 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 349656f5-4706-4e0a-981c-c2ff4fd798f9) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 74.8506 113.2779 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "H" (shape input) (at 74.93 175.26 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4c557a60-7a85-4134-b92c-f71965717a49) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 74.8506 171.5164 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "D" (shape input) (at 74.93 97.79 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 510f3ebf-9a55-445f-81e0-7e0483671fc4) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 74.8506 94.1069 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "Y" (shape output) (at 195.58 90.17 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 74909deb-80ff-4374-9750-ddb31e1a03cc) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 199.0817 90.0906 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "B" (shape input) (at 74.93 55.88 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid a773d115-4325-46e4-ac62-ac0430ce19ef) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 74.8506 52.1969 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "G" (shape input) (at 74.93 156.21 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b607f285-c6c5-4fa8-b238-d07772acd8d3) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 74.8506 152.5269 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "C" (shape input) (at 74.93 76.2 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid bcafc36f-1497-466f-86f1-be5169274f91) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 74.8506 72.5169 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "F" (shape input) (at 74.93 135.89 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c4829769-b8e9-43b5-8650-91835aa81b5e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 74.8506 132.3883 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 90.17 99.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 03a338a3-ffab-4ea3-b6e3-9d295196aeed) + (property "Reference" "U4" (id 0) (at 89.535 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 89.535 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5217fc9e-2df1-4a61-a371-76835471ff58)) + (pin "2" (uuid 7751d648-d0b8-409b-abcc-4a65d54490b6)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 52.07 55.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 05630539-e4d5-4bb0-9ecb-eb1e383ab84a) + (property "Reference" "#PWR0103" (id 0) (at 52.07 62.23 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 52.07 60.96 0)) + (property "Footprint" "" (id 2) (at 52.07 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7efc42ad-23ba-4fba-9cb6-cbb749b1be12)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 63.5 36.83 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0a6a29c8-f36f-4b35-b4bc-d28d66b63013) + (property "Reference" "v1" (id 0) (at 63.5 24.13 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 63.5 27.94 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 63.5 31.75 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f9bfc0ff-867b-4533-867c-291cbed8624d)) + (pin "2" (uuid 0f3365a5-a006-4ccb-816b-1f48d21e6bd8)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 90.17 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26f0980e-b766-4a66-b3b9-4f1958c16be1) + (property "Reference" "U5" (id 0) (at 89.535 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 89.535 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e6d66507-0a5e-49db-8656-58617e4a7bba)) + (pin "2" (uuid 83c9c139-bee2-4a1d-97ab-dc3481dacaee)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 52.07 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2c5de945-14c5-4167-9095-67a7c1870cc6) + (property "Reference" "#PWR0101" (id 0) (at 52.07 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 52.07 81.28 0)) + (property "Footprint" "" (id 2) (at 52.07 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4167efaf-8d8b-403d-a300-0fa5f971b9d3)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 52.07 36.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2f3bef57-1103-46f3-8947-78c905f315f4) + (property "Reference" "#PWR0102" (id 0) (at 52.07 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 52.07 41.91 0)) + (property "Footprint" "" (id 2) (at 52.07 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 91245343-6eaa-4062-bba9-4dc4ad0e415d)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 52.07 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 434c0905-91db-4e26-99ec-72e8e78d5d7f) + (property "Reference" "#PWR0108" (id 0) (at 52.07 142.24 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 52.07 140.97 0)) + (property "Footprint" "" (id 2) (at 52.07 135.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 135.89 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fdd1bec2-4393-464f-bcad-4984e04ff6bc)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 63.5 135.89 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45fb9cfd-d717-4e0b-aa5f-7c690958422d) + (property "Reference" "v6" (id 0) (at 63.5 123.19 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 63.5 127 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 63.5 130.81 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad9d3475-f832-41b2-a15b-fcd501d347f9)) + (pin "2" (uuid d30a1706-07b9-4234-8593-d05f20c94653)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 52.07 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5434b943-5678-4794-817e-19404f3990b0) + (property "Reference" "#PWR0107" (id 0) (at 52.07 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 52.07 121.92 0)) + (property "Footprint" "" (id 2) (at 52.07 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4b11299f-c616-4d89-a76b-6ccce6637d3d)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 90.17 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 600bac79-44db-484d-988c-55dc528c0fed) + (property "Reference" "U2" (id 0) (at 89.535 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 89.535 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 323a7161-913c-4531-b21f-c9e4b3f1fba0)) + (pin "2" (uuid a3b50742-0f88-40b2-81cb-253edf1f294d)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 52.07 175.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6bafe232-4a4d-4a76-9f7f-af6c5baf6285) + (property "Reference" "#PWR0105" (id 0) (at 52.07 181.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 52.07 180.34 0)) + (property "Footprint" "" (id 2) (at 52.07 175.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 175.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 637df436-4962-4357-90bf-82af45b15644)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 63.5 55.88 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b2c8549-7961-4585-a07b-16e8ffa00c2b) + (property "Reference" "v2" (id 0) (at 63.5 43.18 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 63.5 46.99 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 63.5 50.8 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1b40e1f7-f1ec-4607-a200-acb82e616817)) + (pin "2" (uuid 2f5d8f4c-55da-45fd-84d2-050be29c0b2d)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 90.17 137.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f1086df-aa2b-4fc6-8f8f-9c16e2ca650b) + (property "Reference" "U6" (id 0) (at 89.535 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 89.535 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 868aa3a2-f01e-4434-8610-f7b42394a329)) + (pin "2" (uuid e5d6361b-edb7-4b0f-9905-db7272e3c00e)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 90.17 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e048682-c606-4d48-b0df-4391713e9d1e) + (property "Reference" "U3" (id 0) (at 89.535 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 89.535 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8510f8fb-9c1e-40ac-b46b-dbf25d556606)) + (pin "2" (uuid 0187cac2-3c11-4fcd-90f0-75627f2b24cf)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 52.07 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aa1d621a-1a2b-4b6f-a070-61fbb4c4d676) + (property "Reference" "#PWR0106" (id 0) (at 52.07 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 52.07 102.87 0)) + (property "Footprint" "" (id 2) (at 52.07 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 764ffc72-2504-486f-9f3b-2c83fe330b60)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 63.5 175.26 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b74a2d58-a069-4f1a-baba-155011b3ffc2) + (property "Reference" "v8" (id 0) (at 63.5 162.56 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 63.5 166.37 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 63.5 170.18 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9acf8b93-ca7d-433e-b5f8-f4d1b35ef87c)) + (pin "2" (uuid 72585d67-3bc9-4556-991c-0d2004383e37)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 170.18 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c0d9c6c1-4661-4577-94a5-1fd7cf59e7ab) + (property "Reference" "U9" (id 0) (at 169.545 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 169.545 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 170.18 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 170.18 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fd8e1571-abfe-4ea9-a496-ec66e1976586)) + (pin "2" (uuid 90f28311-74b0-42c9-91f1-7404ff449602)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 63.5 116.84 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cc0a7e11-e1a0-4509-8cdc-e087c92a54c1) + (property "Reference" "v5" (id 0) (at 63.5 104.14 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 63.5 107.95 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 63.5 111.76 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e2285761-b49d-440e-b4e5-96b26a809e9e)) + (pin "2" (uuid f39b6e6f-6528-4b0b-82f7-383843f7887d)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 63.5 76.2 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d1d2a0ee-7122-4514-a1e9-7ead2ffead5e) + (property "Reference" "v3" (id 0) (at 63.5 63.5 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 63.5 67.31 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 63.5 71.12 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dc2e5b3c-89c8-47a6-b459-1d754f8e8be2)) + (pin "2" (uuid 0a3fae86-7a09-4aed-9511-c4240a803857)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 52.07 156.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2306736-a5bd-411f-80d8-6dc86ffc14e1) + (property "Reference" "#PWR0104" (id 0) (at 52.07 162.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 52.07 161.29 0)) + (property "Footprint" "" (id 2) (at 52.07 156.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 156.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 199dde32-4c4b-434d-a3f6-b4ef49782cf3)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 90.17 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2ce79c5-e607-427b-94f9-b3df4ccae2d1) + (property "Reference" "U8" (id 0) (at 89.535 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 89.535 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1dda2dbd-6591-4dbe-b1a3-7df7a624fd74)) + (pin "2" (uuid d8606060-a16f-4448-914e-20b68048b8fe)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 63.5 97.79 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d66ed6fe-bba5-46d6-abae-8c5d7abda418) + (property "Reference" "v4" (id 0) (at 63.5 85.09 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 63.5 88.9 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 63.5 92.71 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7678a94b-01e7-4580-ac00-a3a480b2bfe2)) + (pin "2" (uuid 7eb3bac3-3f0f-4793-b707-b3085bc053b6)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 90.17 157.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d8af2a93-c4d4-4a9f-8fe1-42f383198890) + (property "Reference" "U7" (id 0) (at 89.535 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 89.535 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 480a8d18-3195-47f1-bc1f-bb0a930b77b3)) + (pin "2" (uuid 3866c676-f58d-4f5c-a7c7-80781a43aeb7)) + ) + + (symbol (lib_id "eSim_Sources:pulse") (at 63.5 156.21 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e59d3802-a017-46e9-9874-1571dd84a3fc) + (property "Reference" "v7" (id 0) (at 63.5 143.51 90) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pulse" (id 1) (at 63.5 147.32 90) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at 63.5 151.13 90) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c45657a5-7f9c-447b-ab1e-1386cff673a3)) + (pin "2" (uuid c0e1c432-1898-436e-a352-63a5e810a55f)) + ) + + (symbol (lib_id "eSim_Subckt:SN74LS55") (at 143.51 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f25bb45e-6a34-4c32-913c-43bd19390e72) + (property "Reference" "X1" (id 0) (at 143.51 74.93 0)) + (property "Value" "SN74LS55" (id 1) (at 143.51 77.47 0)) + (property "Footprint" "" (id 2) (at 143.51 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 143.51 77.47 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fdddae87-84f5-4336-b55b-7e0d2cb93afc)) + (pin "2" (uuid 95f9d41a-494e-48d3-bb47-924393a50ae8)) + (pin "3" (uuid 458dce97-b0fd-4ed6-9e47-a35a87efd627)) + (pin "4" (uuid a685978f-25a5-4c02-b7f6-8912cf4ff8b4)) + (pin "5" (uuid 842be472-0b10-43f7-bdad-8431036cc308)) + (pin "6" (uuid 9ebe1cab-23a8-4ba0-b63d-17e55099ded3)) + (pin "7" (uuid e7b8aafc-69f1-4f5c-99fb-e17763fddba8)) + (pin "8" (uuid 1226a258-fe79-4c48-8232-b05e1983fdac)) + (pin "9" (uuid 646ac106-cc38-4602-91b7-289de5bd2262)) + ) + + (symbol (lib_id "eSim_Hybrid:adc_bridge_1") (at 90.17 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f6dcd494-96c1-4c8b-9dd6-5ea591a3c272) + (property "Reference" "U1" (id 0) (at 89.535 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "adc_bridge_1" (id 1) (at 89.535 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 578249af-219e-4ceb-98ae-9ef13b7ea0b2)) + (pin "2" (uuid 3cc46720-fad0-428f-808a-766e4715bfe6)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/2c5de945-14c5-4167-9095-67a7c1870cc6" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/2f3bef57-1103-46f3-8947-78c905f315f4" + (reference "#PWR0102") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/05630539-e4d5-4bb0-9ecb-eb1e383ab84a" + (reference "#PWR0103") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/d2306736-a5bd-411f-80d8-6dc86ffc14e1" + (reference "#PWR0104") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/6bafe232-4a4d-4a76-9f7f-af6c5baf6285" + (reference "#PWR0105") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/aa1d621a-1a2b-4b6f-a070-61fbb4c4d676" + (reference "#PWR0106") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/5434b943-5678-4794-817e-19404f3990b0" + (reference "#PWR0107") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/434c0905-91db-4e26-99ec-72e8e78d5d7f" + (reference "#PWR0108") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/f6dcd494-96c1-4c8b-9dd6-5ea591a3c272" + (reference "U1") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/600bac79-44db-484d-988c-55dc528c0fed" + (reference "U2") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/9e048682-c606-4d48-b0df-4391713e9d1e" + (reference "U3") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/03a338a3-ffab-4ea3-b6e3-9d295196aeed" + (reference "U4") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/26f0980e-b766-4a66-b3b9-4f1958c16be1" + (reference "U5") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/8f1086df-aa2b-4fc6-8f8f-9c16e2ca650b" + (reference "U6") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/d8af2a93-c4d4-4a9f-8fe1-42f383198890" + (reference "U7") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/d2ce79c5-e607-427b-94f9-b3df4ccae2d1" + (reference "U8") (unit 1) (value "adc_bridge_1") (footprint "") + ) + (path "/c0d9c6c1-4661-4577-94a5-1fd7cf59e7ab" + (reference "U9") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/f25bb45e-6a34-4c32-913c-43bd19390e72" + (reference "X1") (unit 1) (value "SN74LS55") (footprint "") + ) + (path "/0a6a29c8-f36f-4b35-b4bc-d28d66b63013" + (reference "v1") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/8b2c8549-7961-4585-a07b-16e8ffa00c2b" + (reference "v2") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/d1d2a0ee-7122-4514-a1e9-7ead2ffead5e" + (reference "v3") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/d66ed6fe-bba5-46d6-abae-8c5d7abda418" + (reference "v4") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/cc0a7e11-e1a0-4509-8cdc-e087c92a54c1" + (reference "v5") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/45fb9cfd-d717-4e0b-aa5f-7c690958422d" + (reference "v6") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/e59d3802-a017-46e9-9874-1571dd84a3fc" + (reference "v7") (unit 1) (value "pulse") (footprint "R1") + ) + (path "/b74a2d58-a069-4f1a-baba-155011b3ffc2" + (reference "v8") (unit 1) (value "pulse") (footprint "R1") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.proj b/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.proj new file mode 100644 index 000000000..618bb24ec --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55.proj @@ -0,0 +1 @@ +schematicFile Test_SN74LS55.kicad_sch diff --git a/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55_Previous_Values.xml b/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55_Previous_Values.xml new file mode 100644 index 000000000..b466d9971 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/Test_SN74LS55_Previous_Values.xml @@ -0,0 +1 @@ +20m)40m)80m)160m)20m)40m)80m)160m)pulsepulsepulsepulsepulsepulsepulsepulsed_ord_inverterdac_bridgeadc_bridgeadc_bridgeadc_bridgeadc_bridged_andd_andd_andadc_bridgeadc_bridged_andd_andadc_bridgeadc_bridged_anddac_bridgeE:\apps\ESIM\FOSSEE\eSim\library\SubcircuitLibrary\SN74LS55_subckttruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes0.1320secmsms \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LS55/analysis b/library/SubcircuitLibrary/SN74LS55/analysis new file mode 100644 index 000000000..ce83b2a2d --- /dev/null +++ b/library/SubcircuitLibrary/SN74LS55/analysis @@ -0,0 +1 @@ +.tran 0.1e-03 320e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/NMOS-5um.lib b/library/SubcircuitLibrary/SN74LVC1G3157/NMOS-5um.lib new file mode 100644 index 000000000..a237e1fe3 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/NMOS-5um.lib @@ -0,0 +1,5 @@ +* 5um technology + +.model mos_n NMOS( Cgso=0.4n Tox=85n Vto=1 phi=0.7 ++ Level=1 ++ Mj=.5 UO=750 Cgdo=0.4n Gamma=1.4 LAMBDA=0.01 LD=0.7u JS=1u CJ=0.4m CJSW=0.8n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/PMOS-5um.lib b/library/SubcircuitLibrary/SN74LVC1G3157/PMOS-5um.lib new file mode 100644 index 000000000..9c3ed9760 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/PMOS-5um.lib @@ -0,0 +1,5 @@ +*5um technology + +.model mos_p PMOS( Cgso=0.4n Tox=85n Vto=-1 phi=0.65 ++ Level=1 ++ Mj=.5 UO=250 Cgdo=0.4n Gamma=0.65 LAMBDA=0.03 LD=0.6u JS=1u CJ=0.18m CJSW=0.6n MJSW=0.5 PB=0.7 CGBO=0.2n ) diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157-cache.lib b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157-cache.lib new file mode 100644 index 000000000..3b7d214a1 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157-cache.lib @@ -0,0 +1,128 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# dac_bridge_1 +# +DEF dac_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "dac_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# eSim_MOS_N +# +DEF eSim_MOS_N M 0 0 Y N 1 F N +F0 "M" 0 -150 50 H V R CNN +F1 "eSim_MOS_N" 100 -50 50 H V R CNN +F2 "" 300 -300 29 H V C CNN +F3 "" 100 -200 60 H V C CNN +ALIAS mosfet_n +DRAW +C 150 -200 111 0 1 10 N +P 2 0 1 10 130 -290 130 -250 N +P 2 0 1 0 130 -270 200 -270 N +P 2 0 1 10 130 -220 130 -180 N +P 2 0 1 0 130 -200 200 -200 N +P 2 0 1 10 130 -150 130 -110 N +P 2 0 1 0 130 -130 200 -130 N +P 2 0 1 0 200 -300 200 -270 N +P 2 0 1 0 200 -130 200 -100 N +P 3 0 1 10 110 -275 110 -125 110 -125 N +P 3 0 1 0 200 -200 300 -200 300 -250 N +P 4 0 1 0 140 -200 180 -215 180 -185 140 -200 F +X D 1 200 0 100 D 50 50 1 1 P +X G 2 -100 -200 210 R 50 50 1 1 P +X S 3 200 -400 100 U 50 50 1 1 P +X B 4 300 -350 98 U 47 47 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_P +# +DEF eSim_MOS_P M 0 0 Y N 1 F N +F0 "M" -50 50 50 H V R CNN +F1 "eSim_MOS_P" 50 150 50 H V R CNN +F2 "" 250 100 29 H V C CNN +F3 "" 50 0 60 H V C CNN +ALIAS mosfet_p +DRAW +C 100 0 111 0 1 10 N +P 2 0 1 0 80 -70 150 -70 N +P 2 0 1 10 80 -50 80 -90 N +P 2 0 1 0 80 0 150 0 N +P 2 0 1 10 80 20 80 -20 N +P 2 0 1 0 80 70 150 70 N +P 2 0 1 10 80 90 80 50 N +P 2 0 1 0 150 -70 150 -100 N +P 2 0 1 0 150 100 150 70 N +P 3 0 1 10 60 75 60 -75 60 -75 N +P 3 0 1 0 150 0 250 0 250 -50 N +P 4 0 1 0 140 0 100 -15 100 15 140 0 F +X D 1 150 200 100 D 50 50 1 1 P +X G 2 -150 0 210 R 50 50 1 1 P +X S 3 150 -200 100 U 50 50 1 1 P +X B 4 250 -150 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.cir b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.cir new file mode 100644 index 000000000..85fc047cf --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.cir @@ -0,0 +1,20 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\SN74LVC1G3157\SN74LVC1G3157.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/04/25 13:13:46 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ d_inverter +U2 Net-_U1-Pad2_ Net-_U2-Pad2_ d_inverter +U5 Net-_U2-Pad2_ Net-_M2-Pad2_ dac_bridge_1 +M1 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad4_ eSim_MOS_P +M3 Net-_M1-Pad1_ Net-_M2-Pad2_ Net-_M1-Pad3_ Net-_M3-Pad4_ eSim_MOS_N +M2 Net-_M1-Pad1_ Net-_M2-Pad2_ Net-_M2-Pad3_ Net-_M1-Pad4_ eSim_MOS_P +M4 Net-_M1-Pad1_ Net-_M4-Pad2_ Net-_M2-Pad3_ Net-_M3-Pad4_ eSim_MOS_N +U4 Net-_U1-Pad2_ Net-_M4-Pad2_ dac_bridge_1 +U3 Net-_U1-Pad2_ Net-_M1-Pad2_ dac_bridge_1 +U6 Net-_M1-Pad3_ Net-_M3-Pad4_ Net-_M2-Pad3_ Net-_M1-Pad1_ Net-_M1-Pad4_ Net-_U1-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.cir.out b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.cir.out new file mode 100644 index 000000000..f29415042 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.cir.out @@ -0,0 +1,38 @@ +* c:\fossee\esim\library\subcircuitlibrary\sn74lvc1g3157\sn74lvc1g3157.cir + +.include NMOS-5um.lib +.include PMOS-5um.lib +* u1 net-_u1-pad1_ net-_u1-pad2_ d_inverter +* u2 net-_u1-pad2_ net-_u2-pad2_ d_inverter +* u5 net-_u2-pad2_ net-_m2-pad2_ dac_bridge_1 +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad4_ mos_p W=100u L=100u M=1 +m3 net-_m1-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m3-pad4_ mos_n W=100u L=100u M=1 +m2 net-_m1-pad1_ net-_m2-pad2_ net-_m2-pad3_ net-_m1-pad4_ mos_p W=100u L=100u M=1 +m4 net-_m1-pad1_ net-_m4-pad2_ net-_m2-pad3_ net-_m3-pad4_ mos_n W=100u L=100u M=1 +* u4 net-_u1-pad2_ net-_m4-pad2_ dac_bridge_1 +* u3 net-_u1-pad2_ net-_m1-pad2_ dac_bridge_1 +* u6 net-_m1-pad3_ net-_m3-pad4_ net-_m2-pad3_ net-_m1-pad1_ net-_m1-pad4_ net-_u1-pad1_ port +a1 net-_u1-pad1_ net-_u1-pad2_ u1 +a2 net-_u1-pad2_ net-_u2-pad2_ u2 +a3 [net-_u2-pad2_ ] [net-_m2-pad2_ ] u5 +a4 [net-_u1-pad2_ ] [net-_m4-pad2_ ] u4 +a5 [net-_u1-pad2_ ] [net-_m1-pad2_ ] u3 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u1 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u5 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u4 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u3 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.pro b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.proj b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.proj new file mode 100644 index 000000000..14734c208 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.proj @@ -0,0 +1 @@ +schematicFile SN74LVC1G3157.sch diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.sch b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.sch new file mode 100644 index 000000000..40a02c9fc --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.sch @@ -0,0 +1,318 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN74LVC1G3157-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_inverter U1 +U 1 1 683FDC62 +P 3850 4350 +F 0 "U1" H 3850 4250 60 0000 C CNN +F 1 "d_inverter" H 3850 4500 60 0000 C CNN +F 2 "" H 3900 4300 60 0000 C CNN +F 3 "" H 3900 4300 60 0000 C CNN + 1 3850 4350 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U2 +U 1 1 683FDCF4 +P 4750 4350 +F 0 "U2" H 4750 4250 60 0000 C CNN +F 1 "d_inverter" H 4750 4500 60 0000 C CNN +F 2 "" H 4800 4300 60 0000 C CNN +F 3 "" H 4800 4300 60 0000 C CNN + 1 4750 4350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4150 4350 4300 4350 +Wire Wire Line + 4300 4350 4350 4350 +Wire Wire Line + 4350 4350 4450 4350 +$Comp +L dac_bridge_1 U5 +U 1 1 683FDDA0 +P 5850 4400 +F 0 "U5" H 5850 4400 60 0000 C CNN +F 1 "dac_bridge_1" H 5850 4550 60 0000 C CNN +F 2 "" H 5850 4400 60 0000 C CNN +F 3 "" H 5850 4400 60 0000 C CNN + 1 5850 4400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5050 4350 5250 4350 +$Comp +L eSim_MOS_P M1 +U 1 1 683FDDD1 +P 7000 3400 +F 0 "M1" H 6950 3450 50 0000 R CNN +F 1 "eSim_MOS_P" H 7050 3550 50 0000 R CNN +F 2 "" H 7250 3500 29 0000 C CNN +F 3 "" H 7050 3400 60 0000 C CNN + 1 7000 3400 + 0 1 1 0 +$EndComp +$Comp +L eSim_MOS_N M3 +U 1 1 683FDE2F +P 7200 4100 +F 0 "M3" H 7200 3950 50 0000 R CNN +F 1 "eSim_MOS_N" H 7300 4050 50 0000 R CNN +F 2 "" H 7500 3800 29 0000 C CNN +F 3 "" H 7300 3900 60 0000 C CNN + 1 7200 4100 + 0 1 -1 0 +$EndComp +Wire Wire Line + 6800 3550 6800 3750 +Wire Wire Line + 6800 3750 6800 3900 +Wire Wire Line + 7200 3550 7200 3700 +Wire Wire Line + 7200 3700 7200 3900 +$Comp +L eSim_MOS_P M2 +U 1 1 683FDF1C +P 7000 4700 +F 0 "M2" H 6950 4750 50 0000 R CNN +F 1 "eSim_MOS_P" H 7050 4850 50 0000 R CNN +F 2 "" H 7250 4800 29 0000 C CNN +F 3 "" H 7050 4700 60 0000 C CNN + 1 7000 4700 + 0 1 1 0 +$EndComp +$Comp +L eSim_MOS_N M4 +U 1 1 683FDF22 +P 7200 5400 +F 0 "M4" H 7200 5250 50 0000 R CNN +F 1 "eSim_MOS_N" H 7300 5350 50 0000 R CNN +F 2 "" H 7500 5100 29 0000 C CNN +F 3 "" H 7300 5200 60 0000 C CNN + 1 7200 5400 + 0 1 -1 0 +$EndComp +Wire Wire Line + 6800 4850 6800 5050 +Wire Wire Line + 6800 5050 6800 5200 +Wire Wire Line + 7200 4850 7200 5000 +Wire Wire Line + 7200 5000 7200 5200 +Wire Wire Line + 7000 4200 7000 4350 +Wire Wire Line + 7000 4350 7000 4550 +Wire Wire Line + 6400 4350 7000 4350 +Connection ~ 7000 4350 +$Comp +L dac_bridge_1 U4 +U 1 1 683FE0BF +P 5500 5350 +F 0 "U4" H 5500 5350 60 0000 C CNN +F 1 "dac_bridge_1" H 5500 5500 60 0000 C CNN +F 2 "" H 5500 5350 60 0000 C CNN +F 3 "" H 5500 5350 60 0000 C CNN + 1 5500 5350 + 1 0 0 -1 +$EndComp +$Comp +L dac_bridge_1 U3 +U 1 1 683FE0F7 +P 5500 3400 +F 0 "U3" H 5500 3400 60 0000 C CNN +F 1 "dac_bridge_1" H 5500 3550 60 0000 C CNN +F 2 "" H 5500 3400 60 0000 C CNN +F 3 "" H 5500 3400 60 0000 C CNN + 1 5500 3400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4300 4350 4300 3350 +Wire Wire Line + 4300 3350 4900 3350 +Connection ~ 4300 4350 +Wire Wire Line + 6050 3350 6900 3350 +Wire Wire Line + 6900 3350 6900 3250 +Wire Wire Line + 6900 3250 7000 3250 +Wire Wire Line + 4350 4350 4350 5300 +Wire Wire Line + 4350 5300 4900 5300 +Connection ~ 4350 4350 +Wire Wire Line + 6050 5300 6500 5300 +Wire Wire Line + 6500 5300 6500 5500 +Wire Wire Line + 6500 5500 7000 5500 +Wire Wire Line + 7200 3700 7650 3700 +Wire Wire Line + 7650 3700 7650 4300 +Wire Wire Line + 7650 4300 7650 4550 +Wire Wire Line + 7650 4550 7650 5000 +Wire Wire Line + 7650 5000 7200 5000 +Connection ~ 7200 5000 +Connection ~ 7200 3700 +$Comp +L PORT U6 +U 4 1 683FE1B2 +P 8000 4300 +F 0 "U6" H 8050 4400 30 0000 C CNN +F 1 "PORT" H 8000 4300 30 0000 C CNN +F 2 "" H 8000 4300 60 0000 C CNN +F 3 "" H 8000 4300 60 0000 C CNN + 4 8000 4300 + -1 0 0 -1 +$EndComp +$Comp +L PORT U6 +U 2 1 683FE61F +P 7850 5100 +F 0 "U6" H 7900 5200 30 0000 C CNN +F 1 "PORT" H 7850 5100 30 0000 C CNN +F 2 "" H 7850 5100 60 0000 C CNN +F 3 "" H 7850 5100 60 0000 C CNN + 2 7850 5100 + -1 0 0 -1 +$EndComp +$Comp +L PORT U6 +U 3 1 683FE668 +P 6400 5050 +F 0 "U6" H 6450 5150 30 0000 C CNN +F 1 "PORT" H 6400 5050 30 0000 C CNN +F 2 "" H 6400 5050 60 0000 C CNN +F 3 "" H 6400 5050 60 0000 C CNN + 3 6400 5050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U6 +U 1 1 683FE6AD +P 6250 3750 +F 0 "U6" H 6300 3850 30 0000 C CNN +F 1 "PORT" H 6250 3750 30 0000 C CNN +F 2 "" H 6250 3750 60 0000 C CNN +F 3 "" H 6250 3750 60 0000 C CNN + 1 6250 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U6 +U 5 1 683FE6F2 +P 6250 4650 +F 0 "U6" H 6300 4750 30 0000 C CNN +F 1 "PORT" H 6250 4650 30 0000 C CNN +F 2 "" H 6250 4650 60 0000 C CNN +F 3 "" H 6250 4650 60 0000 C CNN + 5 6250 4650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U6 +U 6 1 683FE73B +P 3050 4350 +F 0 "U6" H 3100 4450 30 0000 C CNN +F 1 "PORT" H 3050 4350 30 0000 C CNN +F 2 "" H 3050 4350 60 0000 C CNN +F 3 "" H 3050 4350 60 0000 C CNN + 6 3050 4350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6850 3650 6650 3650 +Wire Wire Line + 6650 3650 6650 4650 +Wire Wire Line + 6650 4650 6650 4950 +Wire Wire Line + 6650 4950 6850 4950 +Wire Wire Line + 6500 4650 6650 4650 +Connection ~ 6650 4650 +Wire Wire Line + 6850 3800 7500 3800 +Wire Wire Line + 7500 3800 7500 5100 +Wire Wire Line + 6850 5100 7500 5100 +Wire Wire Line + 7500 5100 7600 5100 +Connection ~ 7500 5100 +Wire Wire Line + 7750 4300 7650 4300 +Connection ~ 7650 4300 +Wire Wire Line + 6500 3750 6800 3750 +Connection ~ 6800 3750 +Wire Wire Line + 6650 5050 6800 5050 +Connection ~ 6800 5050 +Wire Wire Line + 3300 4350 3550 4350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.sub b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.sub new file mode 100644 index 000000000..58166855c --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157.sub @@ -0,0 +1,32 @@ +* Subcircuit SN74LVC1G3157 +.subckt SN74LVC1G3157 net-_m1-pad3_ net-_m3-pad4_ net-_m2-pad3_ net-_m1-pad1_ net-_m1-pad4_ net-_u1-pad1_ +* c:\fossee\esim\library\subcircuitlibrary\sn74lvc1g3157\sn74lvc1g3157.cir +.include NMOS-5um.lib +.include PMOS-5um.lib +* u1 net-_u1-pad1_ net-_u1-pad2_ d_inverter +* u2 net-_u1-pad2_ net-_u2-pad2_ d_inverter +* u5 net-_u2-pad2_ net-_m2-pad2_ dac_bridge_1 +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad4_ mos_p W=100u L=100u M=1 +m3 net-_m1-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m3-pad4_ mos_n W=100u L=100u M=1 +m2 net-_m1-pad1_ net-_m2-pad2_ net-_m2-pad3_ net-_m1-pad4_ mos_p W=100u L=100u M=1 +m4 net-_m1-pad1_ net-_m4-pad2_ net-_m2-pad3_ net-_m3-pad4_ mos_n W=100u L=100u M=1 +* u4 net-_u1-pad2_ net-_m4-pad2_ dac_bridge_1 +* u3 net-_u1-pad2_ net-_m1-pad2_ dac_bridge_1 +a1 net-_u1-pad1_ net-_u1-pad2_ u1 +a2 net-_u1-pad2_ net-_u2-pad2_ u2 +a3 [net-_u2-pad2_ ] [net-_m2-pad2_ ] u5 +a4 [net-_u1-pad2_ ] [net-_m4-pad2_ ] u4 +a5 [net-_u1-pad2_ ] [net-_m1-pad2_ ] u3 +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u1 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u5 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u4 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, NgSpice Name: dac_bridge +.model u3 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Control Statements + +.ends SN74LVC1G3157 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157_Previous_Values.xml b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157_Previous_Values.xml new file mode 100644 index 000000000..46288713c --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74LVC1G3157_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_inverterdac_bridgedac_bridgedac_bridgeC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-5um.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-5um.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test-cache.lib b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test-cache.lib new file mode 100644 index 000000000..c99ca626e --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test-cache.lib @@ -0,0 +1,117 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# DC +# +DEF DC v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "DC" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 w +X - 2 0 -450 300 U 50 50 1 1 w +ENDDRAW +ENDDEF +# +# SN74LVC1G3157 +# +DEF SN74LVC1G3157 X 0 40 Y Y 1 F N +F0 "X" 0 -600 60 H V C CNN +F1 "SN74LVC1G3157" 50 650 60 H V C CNN +F2 "" 0 -600 60 H I C CNN +F3 "" 0 -600 60 H I C CNN +DRAW +S -400 500 400 -450 0 1 0 N +S 400 -350 400 -350 0 1 0 N +X B2 1 -600 300 200 R 50 50 1 1 I +X Gnd 2 -600 0 200 R 50 50 1 1 I +X B1 3 -600 -250 200 R 50 50 1 1 I +X A 4 600 -300 200 L 50 50 1 1 O +X Vcc 5 600 0 200 L 50 50 1 1 I +X S 6 600 300 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# adc_bridge_1 +# +DEF adc_bridge_1 U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "adc_bridge_1" 0 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -400 200 350 -50 0 1 0 N +X IN1 1 -600 50 200 R 50 50 1 1 I +X OUT1 2 550 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# eSim_GND +# +DEF eSim_GND #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -250 50 H I C CNN +F1 "eSim_GND" 0 -150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N +X GND 1 0 0 0 D 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# eSim_VCC +# +DEF eSim_VCC #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -150 50 H I C CNN +F1 "eSim_VCC" 0 150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +C 0 75 25 0 1 0 N +P 2 0 1 0 0 0 0 50 N +X VCC 1 0 0 0 U 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# plot_v1 +# +DEF plot_v1 U 0 40 Y Y 1 F N +F0 "U" 0 500 60 H V C CNN +F1 "plot_v1" 200 350 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 0 500 100 0 1 0 N +X ~ ~ 0 200 200 U 50 50 1 1 I +ENDDRAW +ENDDEF +# +# pulse +# +DEF pulse v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "pulse" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -25 -450 501 928 871 0 1 0 N -50 50 0 50 +A 25 400 451 -931 -868 0 1 0 N 0 -50 50 -50 +A 75 600 551 -926 -873 0 1 0 N 50 50 100 50 +A 350 0 403 -1728 1728 0 1 0 N -50 -50 -50 50 +A 450 0 453 1736 -1736 0 1 0 N 0 50 0 -50 +A 600 0 552 -1748 1748 0 1 0 N 50 -50 50 50 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 50 1 1 P +X - 2 0 -450 300 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.cir b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.cir new file mode 100644 index 000000000..35ab3cbc8 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.cir @@ -0,0 +1,17 @@ +* C:\Users\pavithra\eSim-Workspace\SN74VC1G3157_test\SN74VC1G3157_test.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/04/25 13:14:27 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +v1 Net-_X1-Pad3_ GND DC +v2 Net-_X1-Pad1_ GND DC +U2 S Net-_U2-Pad2_ adc_bridge_1 +v3 S GND pulse +U3 Out plot_v1 +U1 S plot_v1 +X1 Net-_X1-Pad1_ GND Net-_X1-Pad3_ Out VCC Net-_U2-Pad2_ SN74LVC1G3157 + +.end diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.cir.out b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.cir.out new file mode 100644 index 000000000..d025cccff --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.cir.out @@ -0,0 +1,24 @@ +* c:\users\pavithra\esim-workspace\sn74vc1g3157_test\sn74vc1g3157_test.cir + +.include SN74LVC1G3157.sub +v1 net-_x1-pad3_ gnd dc 1 +v2 net-_x1-pad1_ gnd dc 3 +* u2 s net-_u2-pad2_ adc_bridge_1 +v3 s gnd pulse(5 0 0 0.5n 0.5n 1m 2m) +* u3 out plot_v1 +* u1 s plot_v1 +x1 net-_x1-pad1_ gnd net-_x1-pad3_ out vcc net-_u2-pad2_ SN74LVC1G3157 +a1 [s ] [net-_u2-pad2_ ] u2 +* Schematic Name: adc_bridge_1, NgSpice Name: adc_bridge +.model u2 adc_bridge(in_low=1.0 in_high=2.0 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 10e-06 10e-03 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt + +plot v(s) + 6 v(out) +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.pro b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.proj b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.proj new file mode 100644 index 000000000..1d4fe58e3 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.proj @@ -0,0 +1 @@ +schematicFile SN74VC1G3157_test.sch diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.sch b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.sch new file mode 100644 index 000000000..ad5a8b942 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test.sch @@ -0,0 +1,230 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:SN74VC1G3157_test-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_GND #PWR01 +U 1 1 683FE1D3 +P 4950 3550 +F 0 "#PWR01" H 4950 3300 50 0001 C CNN +F 1 "eSim_GND" H 4950 3400 50 0000 C CNN +F 2 "" H 4950 3550 50 0001 C CNN +F 3 "" H 4950 3550 50 0001 C CNN + 1 4950 3550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4950 3550 5100 3550 +$Comp +L eSim_VCC #PWR02 +U 1 1 683FE1EC +P 6450 3500 +F 0 "#PWR02" H 6450 3350 50 0001 C CNN +F 1 "eSim_VCC" H 6450 3650 50 0000 C CNN +F 2 "" H 6450 3500 50 0001 C CNN +F 3 "" H 6450 3500 50 0001 C CNN + 1 6450 3500 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6450 3500 6450 3550 +Wire Wire Line + 6450 3550 6300 3550 +$Comp +L DC v1 +U 1 1 683FE208 +P 5000 4300 +F 0 "v1" H 4800 4400 60 0000 C CNN +F 1 "DC" H 4800 4250 60 0000 C CNN +F 2 "R1" H 4700 4300 60 0000 C CNN +F 3 "" H 5000 4300 60 0000 C CNN + 1 5000 4300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4550 3250 5100 3250 +$Comp +L eSim_GND #PWR03 +U 1 1 683FE254 +P 4550 4250 +F 0 "#PWR03" H 4550 4000 50 0001 C CNN +F 1 "eSim_GND" H 4550 4100 50 0000 C CNN +F 2 "" H 4550 4250 50 0001 C CNN +F 3 "" H 4550 4250 50 0001 C CNN + 1 4550 4250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4550 4150 4550 4250 +$Comp +L DC v2 +U 1 1 683FE26D +P 4550 3700 +F 0 "v2" H 4350 3800 60 0000 C CNN +F 1 "DC" H 4350 3650 60 0000 C CNN +F 2 "R1" H 4250 3700 60 0000 C CNN +F 3 "" H 4550 3700 60 0000 C CNN + 1 4550 3700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5000 3850 5000 3800 +Wire Wire Line + 5000 3800 5100 3800 +$Comp +L eSim_GND #PWR04 +U 1 1 683FE32A +P 5000 4900 +F 0 "#PWR04" H 5000 4650 50 0001 C CNN +F 1 "eSim_GND" H 5000 4750 50 0000 C CNN +F 2 "" H 5000 4900 50 0001 C CNN +F 3 "" H 5000 4900 50 0001 C CNN + 1 5000 4900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5000 4750 5000 4900 +$Comp +L adc_bridge_1 U2 +U 1 1 683FE349 +P 7300 3300 +F 0 "U2" H 7300 3300 60 0000 C CNN +F 1 "adc_bridge_1" H 7300 3450 60 0000 C CNN +F 2 "" H 7300 3300 60 0000 C CNN +F 3 "" H 7300 3300 60 0000 C CNN + 1 7300 3300 + -1 0 0 -1 +$EndComp +Wire Wire Line + 6750 3250 6300 3250 +$Comp +L pulse v3 +U 1 1 683FE3A5 +P 8150 3700 +F 0 "v3" H 7950 3800 60 0000 C CNN +F 1 "pulse" H 7950 3650 60 0000 C CNN +F 2 "R1" H 7850 3700 60 0000 C CNN +F 3 "" H 8150 3700 60 0000 C CNN + 1 8150 3700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7900 3250 8150 3250 +$Comp +L eSim_GND #PWR05 +U 1 1 683FE58E +P 8150 4300 +F 0 "#PWR05" H 8150 4050 50 0001 C CNN +F 1 "eSim_GND" H 8150 4150 50 0000 C CNN +F 2 "" H 8150 4300 50 0001 C CNN +F 3 "" H 8150 4300 50 0001 C CNN + 1 8150 4300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 8150 4150 8150 4300 +$Comp +L plot_v1 U3 +U 1 1 683FE5B6 +P 6700 4000 +F 0 "U3" H 6700 4500 60 0000 C CNN +F 1 "plot_v1" H 6900 4350 60 0000 C CNN +F 2 "" H 6700 4000 60 0000 C CNN +F 3 "" H 6700 4000 60 0000 C CNN + 1 6700 4000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6300 3850 6700 3850 +Text GLabel 6600 4000 2 60 Input ~ 0 +Out +Wire Wire Line + 6700 3850 6700 3800 +Wire Wire Line + 6600 4000 6500 4000 +Wire Wire Line + 6500 4000 6500 3850 +Connection ~ 6500 3850 +$Comp +L plot_v1 U1 +U 1 1 683FE9E3 +P 8000 3300 +F 0 "U1" H 8000 3800 60 0000 C CNN +F 1 "plot_v1" H 8200 3650 60 0000 C CNN +F 2 "" H 8000 3300 60 0000 C CNN +F 3 "" H 8000 3300 60 0000 C CNN + 1 8000 3300 + 1 0 0 -1 +$EndComp +Wire Wire Line + 8000 3100 8000 3250 +Connection ~ 8000 3250 +Text GLabel 8150 3150 2 60 Input ~ 0 +S +Wire Wire Line + 8150 3150 8000 3150 +Connection ~ 8000 3150 +$Comp +L SN74LVC1G3157 X1 +U 1 1 683FFB48 +P 5700 3550 +F 0 "X1" H 5700 2950 60 0000 C CNN +F 1 "SN74LVC1G3157" H 5750 4200 60 0000 C CNN +F 2 "" H 5700 2950 60 0001 C CNN +F 3 "" H 5700 2950 60 0001 C CNN + 1 5700 3550 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test_Previous_Values.xml b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test_Previous_Values.xml new file mode 100644 index 000000000..a07854b8e --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/SN74VC1G3157_test_Previous_Values.xml @@ -0,0 +1 @@ +dc1dc3pulse5000.5n0.5n1m2madc_bridgedac_bridgeC:\FOSSEE\eSim\library\SubcircuitLibrary\SN74LVC1G3157truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes01010secusms \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LVC1G3157/analysis b/library/SubcircuitLibrary/SN74LVC1G3157/analysis new file mode 100644 index 000000000..f4bb3b56f --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC1G3157/analysis @@ -0,0 +1 @@ +.tran 10e-06 10e-03 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LVC2G100/#auto_saved_files# b/library/SubcircuitLibrary/SN74LVC2G100/#auto_saved_files# new file mode 100644 index 000000000..7da69fc91 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC2G100/#auto_saved_files# @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\SubcircuitLibrary\SN74LVC2G100\_autosave-SN74LVC2G100.kicad_sch diff --git a/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.cir b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.cir new file mode 100644 index 000000000..e4609b1d5 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.cir @@ -0,0 +1,15 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ unconnected-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ unconnected-_U1-Pad16_ PORT +U3 Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U3-Pad3_ d_and +U4 Net-_U1-Pad2_ Net-_U2-Pad2_ Net-_U4-Pad3_ d_and +U2 Net-_U1-Pad4_ Net-_U2-Pad2_ d_inverter +U5 Net-_U4-Pad3_ Net-_U3-Pad3_ Net-_U5-Pad3_ d_or +U6 Net-_U5-Pad3_ Net-_U1-Pad5_ Net-_U6-Pad3_ d_xor +U8 Net-_U1-Pad12_ Net-_U10-Pad2_ d_inverter +U12 Net-_U11-Pad3_ Net-_U1-Pad11_ Net-_U12-Pad3_ d_xor +U13 Net-_U12-Pad3_ Net-_U1-Pad9_ unconnected-_U13-Pad3_ Net-_U1-Pad15_ Net-_U1-Pad10_ unconnected-_U13-Pad6_ d_dff +U11 Net-_U10-Pad3_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_or +U7 Net-_U6-Pad3_ Net-_U1-Pad7_ unconnected-_U7-Pad3_ Net-_U1-Pad1_ Net-_U1-Pad6_ unconnected-_U7-Pad6_ d_dff +U9 Net-_U1-Pad13_ Net-_U1-Pad12_ Net-_U11-Pad2_ d_and +U10 Net-_U1-Pad14_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.cir.out b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.cir.out new file mode 100644 index 000000000..c2de82b03 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.cir.out @@ -0,0 +1,60 @@ +.title kicad schematic + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ unconnected-_u1-pad16_ port +* u3 net-_u1-pad3_ net-_u1-pad4_ net-_u3-pad3_ d_and +* u4 net-_u1-pad2_ net-_u2-pad2_ net-_u4-pad3_ d_and +* u2 net-_u1-pad4_ net-_u2-pad2_ d_inverter +* u5 net-_u4-pad3_ net-_u3-pad3_ net-_u5-pad3_ d_or +* u6 net-_u5-pad3_ net-_u1-pad5_ net-_u6-pad3_ d_xor +* u8 net-_u1-pad12_ net-_u10-pad2_ d_inverter +* u12 net-_u11-pad3_ net-_u1-pad11_ net-_u12-pad3_ d_xor +* u13 net-_u12-pad3_ net-_u1-pad9_ unconnected-_u13-pad3_ net-_u1-pad15_ net-_u1-pad10_ unconnected-_u13-pad6_ d_dff +* u11 net-_u10-pad3_ net-_u11-pad2_ net-_u11-pad3_ d_or +* u7 net-_u6-pad3_ net-_u1-pad7_ unconnected-_u7-pad3_ net-_u1-pad1_ net-_u1-pad6_ unconnected-_u7-pad6_ d_dff +* u9 net-_u1-pad13_ net-_u1-pad12_ net-_u11-pad2_ d_and +* u10 net-_u1-pad14_ net-_u10-pad2_ net-_u10-pad3_ d_and +a1 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a2 [net-_u1-pad2_ net-_u2-pad2_ ] net-_u4-pad3_ u4 +a3 net-_u1-pad4_ net-_u2-pad2_ u2 +a4 [net-_u4-pad3_ net-_u3-pad3_ ] net-_u5-pad3_ u5 +a5 [net-_u5-pad3_ net-_u1-pad5_ ] net-_u6-pad3_ u6 +a6 net-_u1-pad12_ net-_u10-pad2_ u8 +a7 [net-_u11-pad3_ net-_u1-pad11_ ] net-_u12-pad3_ u12 +a8 net-_u12-pad3_ net-_u1-pad9_ unconnected-_u13-pad3_ net-_u1-pad15_ net-_u1-pad10_ unconnected-_u13-pad6_ u13 +a9 [net-_u10-pad3_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a10 net-_u6-pad3_ net-_u1-pad7_ unconnected-_u7-pad3_ net-_u1-pad1_ net-_u1-pad6_ unconnected-_u7-pad6_ u7 +a11 [net-_u1-pad13_ net-_u1-pad12_ ] net-_u11-pad2_ u9 +a12 [net-_u1-pad14_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u6 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u12 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u13 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u11 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u7 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.kicad_sch b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.kicad_sch new file mode 100644 index 000000000..31f6cc6aa --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.kicad_sch @@ -0,0 +1,1801 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 31bb3ee2-e5e3-46b8-8f37-f529f71db006) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_xor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_xor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -5.08 -1.27) (mid -4.3109 1.27) (end -5.08 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.27) + (xy -5.08 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 3.81) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_xor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.0922 1.0922)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.0922 1.0922)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 0.9906 0.9906)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 191.77 185.42) (diameter 0) (color 0 0 0 0) + (uuid 49a53bb9-6582-4299-97bb-9700a3df8d65) + ) + (junction (at 38.1 64.77) (diameter 0) (color 0 0 0 0) + (uuid a81cf9d3-a66d-46a9-ae2b-61c577a15f8a) + ) + + (no_connect (at 350.52 189.23) (uuid 2b7c7f3a-04d1-4de9-9f4f-e1f42308dd92)) + (no_connect (at 210.82 92.71) (uuid 48c76255-67d1-432c-be3d-b9e9b2f54d4d)) + (no_connect (at 57.15 168.91) (uuid 8b5d3a05-1ecf-4f1c-b0a6-facf3547c9de)) + (no_connect (at 364.49 213.36) (uuid 8d52b4ae-7bb6-4af3-adea-508686141d52)) + (no_connect (at 54.61 148.59) (uuid cd7231ed-8a70-40fb-99ac-9ddd50628beb)) + (no_connect (at 196.85 68.58) (uuid d9770f4e-3af7-45cf-a555-69293b533129)) + + (wire (pts (xy 275.59 160.02) (xy 276.86 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 098c85ee-2064-409d-b49a-b03efd5c1c4d) + ) + (wire (pts (xy 304.8 198.12) (xy 304.8 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0beb3e59-3f24-4ea5-bbfb-ae2c83ec8e7a) + ) + (wire (pts (xy 151.13 68.58) (xy 151.13 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c243e5d-ddf6-4de9-b8c8-8f29f047dd06) + ) + (wire (pts (xy 102.87 29.21) (xy 111.76 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c8d3712-9807-4b54-9807-822d809cf1cf) + ) + (wire (pts (xy 35.56 43.18) (xy 72.39 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0df56a33-afb4-4385-8d59-4e12d7a4d89f) + ) + (wire (pts (xy 121.92 39.37) (xy 123.19 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1084097c-9c60-49c6-9b2f-de8e67b83de1) + ) + (wire (pts (xy 34.29 123.19) (xy 196.85 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1413b3ec-45b2-42a2-9d8f-05e004ef9d82) + ) + (wire (pts (xy 187.96 185.42) (xy 191.77 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c2d58ba-71ff-4753-b77a-f5c400a5272e) + ) + (wire (pts (xy 179.07 104.14) (xy 179.07 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e7ed344-b128-4f5d-b3db-7c3c72df4d18) + ) + (wire (pts (xy 196.85 121.92) (xy 196.85 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fe2bd4d-a0d9-4f3f-8381-e08bea7a8a7c) + ) + (wire (pts (xy 151.13 74.93) (xy 153.67 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22706f21-a60b-40d4-aa9a-edb4aaa45176) + ) + (wire (pts (xy 265.43 149.86) (xy 265.43 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b241bf3-a7ea-403a-a8d3-1f7db1586137) + ) + (wire (pts (xy 191.77 185.42) (xy 195.58 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e27d46b-ffe7-41ee-aa9f-cff06365f937) + ) + (wire (pts (xy 72.39 43.18) (xy 72.39 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3881d235-acdd-4222-bde5-305993d647a4) + ) + (wire (pts (xy 228.6 181.61) (xy 228.6 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b7e52c1-85da-4379-8d56-6adf732563ec) + ) + (wire (pts (xy 222.25 148.59) (xy 233.68 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ed183c8-44b6-4633-9470-0146063c7fc6) + ) + (wire (pts (xy 121.92 48.26) (xy 123.19 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ff0d81c-3d60-4526-b276-0f281f9d6430) + ) + (wire (pts (xy 68.58 20.32) (xy 68.58 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4461e308-d7eb-4802-b5f8-2d789d0baa0f) + ) + (wire (pts (xy 101.6 62.23) (xy 111.76 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44950242-2424-4941-8256-aa3a94a5e48f) + ) + (wire (pts (xy 332.74 213.36) (xy 336.55 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45fbac85-6f3b-4873-a56f-428bc75b656b) + ) + (wire (pts (xy 222.25 151.13) (xy 233.68 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48820594-64b3-4d2e-bf40-fb7169bda571) + ) + (wire (pts (xy 111.76 29.21) (xy 111.76 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49d1015a-e144-41a1-8b39-e3ff98bfc32d) + ) + (wire (pts (xy 299.72 163.83) (xy 302.26 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a9b3266-09aa-46d6-be10-d2e75b4f2fb6) + ) + (wire (pts (xy 232.41 173.99) (xy 232.41 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d44b628-0650-45f0-837d-93979fe1d5f3) + ) + (wire (pts (xy 187.96 243.84) (xy 350.52 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ddd045d-601e-40c1-880a-1322d71e17e9) + ) + (wire (pts (xy 111.76 48.26) (xy 121.92 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e5bb7d9-2880-4d0d-b857-1d7c33adb859) + ) + (wire (pts (xy 265.43 182.88) (xy 265.43 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ebb651f-fe99-4410-9dd0-2bc9387e782d) + ) + (wire (pts (xy 332.74 224.79) (xy 332.74 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fa3bae7-f30d-48a4-b728-0f0431425e85) + ) + (wire (pts (xy 34.29 85.09) (xy 151.13 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50bb4d0a-9305-410a-b574-5d6a5e22b034) + ) + (wire (pts (xy 187.96 226.06) (xy 332.74 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53863e8f-2ffc-4472-bbe4-9dc64bb52095) + ) + (wire (pts (xy 57.15 64.77) (xy 68.58 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b79286d-6336-4c16-a958-5d7e378e80d5) + ) + (wire (pts (xy 34.29 105.41) (xy 179.07 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e028680-e9b3-4e11-ad86-8eca88f805cd) + ) + (wire (pts (xy 222.25 76.2) (xy 210.82 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f552264-9e26-4e6f-a478-d2a6c7ac6980) + ) + (wire (pts (xy 146.05 43.18) (xy 148.59 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60ce08eb-85f3-4381-8410-641d5938b741) + ) + (wire (pts (xy 72.39 53.34) (xy 78.74 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63f96988-44c0-4206-a442-2da630a5dd67) + ) + (wire (pts (xy 68.58 27.94) (xy 80.01 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 669536a6-c025-4230-9af2-721d5f9fb029) + ) + (wire (pts (xy 222.25 140.97) (xy 222.25 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bf1ffc6-a0a0-4140-b6c9-98668f177a30) + ) + (wire (pts (xy 148.59 43.18) (xy 148.59 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e646a52-087a-4380-a010-ea9d7332a849) + ) + (wire (pts (xy 179.07 92.71) (xy 182.88 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7096487a-65d8-4e26-8dcd-c0ea6ab4c062) + ) + (wire (pts (xy 189.23 163.83) (xy 226.06 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75ceda96-59d1-4a39-9904-f4aca87041b7) + ) + (wire (pts (xy 68.58 30.48) (xy 80.01 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76ac2912-96d3-408e-ac2a-153240560791) + ) + (wire (pts (xy 275.59 168.91) (xy 276.86 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a17dc35-802a-46e0-b172-746c4bd310a4) + ) + (wire (pts (xy 191.77 181.61) (xy 191.77 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ab2f9c4-eb11-4458-a09b-d6af067a2855) + ) + (wire (pts (xy 148.59 68.58) (xy 151.13 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 840728ac-e0b8-42ec-9b7c-a7c264ae36ae) + ) + (wire (pts (xy 265.43 168.91) (xy 275.59 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f976b26-1959-46d1-aef5-7eb899691364) + ) + (wire (pts (xy 187.96 140.97) (xy 222.25 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9051876d-fb08-42d6-8f81-6c2a659dd589) + ) + (wire (pts (xy 302.26 189.23) (xy 304.8 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9405bc6b-5e0d-4250-994f-349d73466d27) + ) + (wire (pts (xy 29.21 148.59) (xy 54.61 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 983a3159-9a49-46cb-adce-0e1d5b3aaf9b) + ) + (wire (pts (xy 78.74 53.34) (xy 78.74 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c1e4f4a-b624-42b3-a6a4-94f16a5b9846) + ) + (wire (pts (xy 265.43 160.02) (xy 275.59 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ed4ee30-e27a-4a02-8aa5-dcad8008d3a3) + ) + (wire (pts (xy 256.54 149.86) (xy 265.43 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fc835b7-b0e4-4f2b-98f5-9c0a345cc985) + ) + (wire (pts (xy 151.13 77.47) (xy 151.13 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2875ae2-144c-4f7a-9518-72fc0844ff3e) + ) + (wire (pts (xy 38.1 60.96) (xy 38.1 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a45bae6d-5c37-4c20-ab5b-bee1c7b672c9) + ) + (wire (pts (xy 151.13 77.47) (xy 153.67 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac3547c0-6ede-4fa3-9878-5dc94303da39) + ) + (wire (pts (xy 210.82 185.42) (xy 222.25 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8a3d6b5-b7ad-4be1-8320-6732ae6cfd5c) + ) + (wire (pts (xy 304.8 198.12) (xy 307.34 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b988df86-dd17-43ca-b4f8-48a849392e69) + ) + (wire (pts (xy 226.06 163.83) (xy 226.06 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbeb8b48-898c-473e-b9fa-adead23b1e37) + ) + (wire (pts (xy 34.29 20.32) (xy 68.58 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc4b2258-76ee-4ae5-91c0-aabac7afcfdc) + ) + (wire (pts (xy 255.27 182.88) (xy 265.43 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdcd4f3a-31cc-4a92-a095-b8a2975cbff9) + ) + (wire (pts (xy 111.76 62.23) (xy 111.76 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be9a3bc2-c897-4cc1-b787-9487b8754ba5) + ) + (wire (pts (xy 228.6 184.15) (xy 232.41 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c58404e8-8727-4048-978d-eaddcf3b6630) + ) + (wire (pts (xy 304.8 195.58) (xy 307.34 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c734f98c-6792-4200-bb32-49da24ddcecb) + ) + (wire (pts (xy 74.93 60.96) (xy 74.93 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c74407ad-8dbe-4936-97c1-620ec2d65724) + ) + (wire (pts (xy 226.06 173.99) (xy 232.41 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c75ca6a7-947b-4686-b356-45d4ff86d0f2) + ) + (wire (pts (xy 222.25 185.42) (xy 222.25 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d116335c-ed8c-46d3-89a5-b5e33bdceb5d) + ) + (wire (pts (xy 68.58 64.77) (xy 68.58 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d439d8e7-681e-4af9-b477-248c95d62588) + ) + (wire (pts (xy 74.93 63.5) (xy 78.74 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4d8aa5a-7775-4e04-ad17-024d4b1e6d45) + ) + (wire (pts (xy 38.1 64.77) (xy 41.91 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d74db7ee-25d6-49dd-8851-0d8585441a7c) + ) + (wire (pts (xy 350.52 242.57) (xy 350.52 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8b14c18-2315-4351-9aee-7ba512caf9d2) + ) + (wire (pts (xy 304.8 189.23) (xy 304.8 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da496307-6c1c-4245-a5c4-7fc5ea599fea) + ) + (wire (pts (xy 38.1 60.96) (xy 74.93 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de15d070-39e4-422c-84cf-c055b18dd6a5) + ) + (wire (pts (xy 191.77 181.61) (xy 228.6 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid def09581-cda2-43b5-a6eb-6a385d0de054) + ) + (wire (pts (xy 29.21 168.91) (xy 57.15 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e02f7ebd-486f-460c-8fee-344c15e9f94b) + ) + (wire (pts (xy 330.2 196.85) (xy 336.55 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e403ea78-c903-44aa-93a1-a8f5e9a3ce20) + ) + (wire (pts (xy 176.53 76.2) (xy 182.88 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecb35c4a-cd62-40a5-af83-18395c8073c0) + ) + (wire (pts (xy 111.76 39.37) (xy 121.92 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed00a4b4-8d2f-477e-8bdb-c148e3422f61) + ) + (wire (pts (xy 187.96 205.74) (xy 304.8 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef5a5866-3bc3-481f-b5c8-c4cf88f4e340) + ) + (wire (pts (xy 302.26 163.83) (xy 302.26 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f09b5acd-b314-401c-a95b-630a47aa5056) + ) + (wire (pts (xy 34.29 64.77) (xy 38.1 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f367842f-1c42-45ff-bac6-7c70c8bfba14) + ) + (wire (pts (xy 377.19 196.85) (xy 364.49 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f560a758-e1fd-45e8-8c8a-ce2cba099bc0) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 288.29 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 09b4815b-0dc1-42af-8080-55554666f2a2) + (property "Reference" "U11" (id 0) (at 288.29 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 288.29 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 288.29 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 288.29 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 90717b1e-09e6-4737-9d72-641edd427a55)) + (pin "2" (uuid ec65ccdb-0686-4984-9aa6-35e1412ec39f)) + (pin "3" (uuid 7e808543-0965-4de4-a944-5e9c82e44484)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 226.06 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e3896b0-ffb7-4908-a944-9376c6fe4b8f) + (property "Reference" "U1" (id 0) (at 182.245 220.98 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 223.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9b3cfc24-03da-47d0-90ab-b54650ab5835)) + (pin "2" (uuid d5f6db56-f2a1-4733-9075-96ba6ef650e9)) + (pin "3" (uuid 101a96f6-291b-40f9-a3e3-84a4075a7cd9)) + (pin "4" (uuid 4f0ea0d8-4654-4d34-840e-6cf77756d039)) + (pin "5" (uuid fc1c424d-71e5-4acb-bc12-e81f02d02a41)) + (pin "6" (uuid f70fb563-2abe-453c-a3db-d714f401bfde)) + (pin "7" (uuid 58d59474-eac5-4df4-83e8-dfc8825331ea)) + (pin "8" (uuid dafaafa6-a585-4ed3-bb80-489efe3f56ce)) + (pin "9" (uuid 9bfa8c03-2c7c-4695-be45-9931c4847a0f)) + (pin "10" (uuid 9cf0f243-6014-4999-b62d-89d4ac43a54a)) + (pin "11" (uuid ddaaae35-8158-40a2-9dc0-208ea92a3f61)) + (pin "12" (uuid 82650f6e-e7db-4db8-83d6-a2d94d9f268c)) + (pin "13" (uuid c9f401fd-d1ba-44bf-a5a6-d086268716c5)) + (pin "14" (uuid 3a57d85d-27aa-4435-bd55-50c7b0ffffeb)) + (pin "15" (uuid 7258245c-4987-4f73-a729-b20d8230e1a8)) + (pin "16" (uuid b55aa9d0-3255-4ca0-aa84-85ecaa8287c3)) + (pin "17" (uuid 4b61980f-840b-4794-aa57-1b1575f7d13d)) + (pin "18" (uuid 14b926c6-8e4e-4dc1-96b8-b132abbd1ac6)) + (pin "19" (uuid 6e5834aa-f75b-46e4-809f-e27a274af8ab)) + (pin "20" (uuid 877e7ea7-9013-48e0-8018-49a79ebe33ec)) + (pin "21" (uuid 3c66d756-9087-4bc1-a470-84f1dda7cff1)) + (pin "22" (uuid 17476fc4-a518-43a4-b201-08369fde61cc)) + (pin "23" (uuid 84a305b8-887b-410d-b134-c35f82c4b734)) + (pin "24" (uuid 3e1a994f-b16d-4c6b-a8be-d38432a88b4d)) + (pin "25" (uuid b7f78dfa-be7c-4baf-a0c7-d8f8ff37a95d)) + (pin "26" (uuid 89f5284c-6293-4385-8b27-4e36b2ba00df)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 22.86 168.91 0) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13b6c329-1b5d-4e89-8062-628eaee2f2c0) + (property "Reference" "U1" (id 0) (at 23.495 163.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 23.495 166.37 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 22.86 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 22.86 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d768e59-6d11-41eb-ba4e-6f53bb297b73)) + (pin "2" (uuid 2e983776-c43a-4293-906e-05c578091a7f)) + (pin "3" (uuid 5c048579-2497-4cd7-9880-76062ec26c22)) + (pin "4" (uuid aff0467b-b0df-451f-b0f7-67eee3765206)) + (pin "5" (uuid d55a80af-9b0b-4ab1-bcef-904d6d20175c)) + (pin "6" (uuid 8caa5966-56dc-4388-a070-020ab2d9c438)) + (pin "7" (uuid 5eb9a8e8-ac24-4144-acb5-b934b96f0712)) + (pin "8" (uuid 81209314-56cd-48b7-9f89-b2cacc764da4)) + (pin "9" (uuid 93e0153d-23f6-4eb5-8731-1b3661afc233)) + (pin "10" (uuid 6d96f0ec-3984-43ba-827e-ae39b4761dd9)) + (pin "11" (uuid 7a84e87e-ab91-41f0-b6ca-8d4f480b8191)) + (pin "12" (uuid 34001e0a-3528-4ccb-ba45-537268db8f65)) + (pin "13" (uuid 440645f7-2d0e-4b50-880d-43171faf9fb9)) + (pin "14" (uuid c61e2cc1-3df8-44ba-9175-9d5b2010e0f1)) + (pin "15" (uuid 33b2d494-f60e-49c7-9951-f79119a294cc)) + (pin "16" (uuid 8b6cd0ba-6415-4c72-91fa-e5cd633d2b17)) + (pin "17" (uuid 5aa369c5-6b01-4240-bea4-ddfeed6ae2d4)) + (pin "18" (uuid f9146ba2-0a25-41d8-8614-2a95c87f9d7d)) + (pin "19" (uuid ea0f6f98-24d3-43bd-a97b-b291bfe96a50)) + (pin "20" (uuid 439ba981-133c-4156-8197-8326854114eb)) + (pin "21" (uuid b798e7a2-d2eb-4615-89cc-570febbb6591)) + (pin "22" (uuid 91f38d6f-c8d8-4e64-8564-8942db08750e)) + (pin "23" (uuid 37363b60-c656-46cc-8266-4cb94a8aa1ce)) + (pin "24" (uuid c0420f18-b8a4-4a3f-99ef-e992a7304686)) + (pin "25" (uuid 15f11672-3f0b-4571-96d3-02f845725878)) + (pin "26" (uuid fa4c3179-6ca6-4cff-8885-46e64a4b6ff9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 123.19 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1527dda0-f85c-4eaa-b25b-5d7944cbf1cc) + (property "Reference" "U1" (id 0) (at 28.575 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e7df2f9e-3708-4f52-a546-13a046aab679)) + (pin "2" (uuid 0b33ac5a-2327-4f11-8569-c545c0a19c63)) + (pin "3" (uuid 1b8dabd8-3dcd-44e2-85f7-6ab8826c0ba0)) + (pin "4" (uuid 9199e33c-15ef-4af5-b310-b43fc42cbd68)) + (pin "5" (uuid b7c3dd7e-c1aa-4399-bb99-1ffe827fca0f)) + (pin "6" (uuid 9bcc581c-8523-4a2a-9bea-7adc2a9d84cc)) + (pin "7" (uuid 88de7aa6-c991-47ce-bad0-c0a1cc54c879)) + (pin "8" (uuid cdeca36b-d7f1-4cfa-9a82-774c3ba6f8cc)) + (pin "9" (uuid e845f717-a9a1-4e2c-95c6-1f58fa7f9c53)) + (pin "10" (uuid d24e9a76-77cf-4be4-bcd1-c0530df24dd5)) + (pin "11" (uuid f5a5b242-bb8a-4438-a361-73f749560ce7)) + (pin "12" (uuid 40cd1e29-8165-4085-ae37-4a4f36737bda)) + (pin "13" (uuid dfc6b62a-419e-41f5-9223-26e6bd991b1f)) + (pin "14" (uuid b44ac5b2-36e4-4688-9659-a2eec94202ed)) + (pin "15" (uuid ac889659-1bad-4791-923b-9e19fe73cce0)) + (pin "16" (uuid ec581ac3-5866-4799-becd-e8ee49c35e31)) + (pin "17" (uuid 1ca1c722-90fb-422d-aab4-180d5b63aa4f)) + (pin "18" (uuid 6b64d07b-e7a0-4fc2-9d56-1715641c3143)) + (pin "19" (uuid ffb62f6f-b9b7-4405-aa59-d4a536e1f0a4)) + (pin "20" (uuid e139ebd3-9eab-4cc4-934c-48082521daaf)) + (pin "21" (uuid ed580205-48bd-4741-80a3-16842ee5565e)) + (pin "22" (uuid 2c990db3-015a-44be-93be-c7033ca5235b)) + (pin "23" (uuid 9420f6b8-80e3-4b5f-a9fa-45a78c73bb3d)) + (pin "24" (uuid eb62b4b2-7af2-40dd-8358-65bfc214c59b)) + (pin "25" (uuid c174e35d-25f4-43bf-8167-161099419422)) + (pin "26" (uuid e91bb3de-8ebb-44cf-b4f4-f89e3791f271)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 49.53 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d860f5f-d07f-4406-b647-3cc9608b5a03) + (property "Reference" "U2" (id 0) (at 49.53 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 49.53 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 50.8 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 50.8 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 207d3f61-e982-4b51-bdc4-80ef7db0bb46)) + (pin "2" (uuid 31a5d643-5ce6-403b-ad7b-36816d46baa8)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 196.85 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 29f13e57-6de3-4eb4-a145-ebddc9118b16) + (property "Reference" "U7" (id 0) (at 198.8694 68.58 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 198.8694 72.39 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 196.85 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d1414df5-faca-4318-a10c-3987aeb32cf8)) + (pin "2" (uuid ecdb9cc7-1000-4d70-87e6-25dac3004a41)) + (pin "3" (uuid 9250de9c-2a7e-403d-bc2c-2fed36ded790)) + (pin "4" (uuid 55723efd-35c7-4550-8ef7-a9b281333ca5)) + (pin "5" (uuid 6d038618-65db-4b31-88ba-7061660eaa5f)) + (pin "6" (uuid 760ce2a5-5179-4d44-ae2e-361cd985bdba)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 20.32 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 355ec12d-3171-4662-a60e-5222fb7f7636) + (property "Reference" "U1" (id 0) (at 28.575 15.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 17.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ba5c93f-80a0-4b9e-b46b-103edf4376dd)) + (pin "2" (uuid 8e43ac36-9bbe-4fad-b2b7-30e5bdd56b4c)) + (pin "3" (uuid 0696b9c2-8b69-4d7b-883a-231fbdde63a8)) + (pin "4" (uuid 17d3b04f-064b-4bbf-91c5-110156515169)) + (pin "5" (uuid 70589b6d-a369-440a-8eb5-46c9bf305aff)) + (pin "6" (uuid 2e1956e7-a377-4b8d-ac74-38520fb7b92f)) + (pin "7" (uuid 4f7695cf-d016-4e92-ae29-61a864938a57)) + (pin "8" (uuid c43974e5-14af-4562-8c06-8564af0f3934)) + (pin "9" (uuid 49d40b35-5926-470f-96f1-f1c708027e56)) + (pin "10" (uuid a4c702f2-662c-4a02-bb48-158c87d95cb0)) + (pin "11" (uuid f881f19f-73ae-4f64-8278-25c94baba916)) + (pin "12" (uuid 531b74e2-62f2-4349-a62b-42090a7b35aa)) + (pin "13" (uuid fa8ea1cc-c916-440f-b901-dc91aeea74cd)) + (pin "14" (uuid d26623b8-476c-4f8b-8129-78356fe95721)) + (pin "15" (uuid bf03c46b-3348-4a6a-8ee4-ff8e7f819fcd)) + (pin "16" (uuid 5fd5cd19-6125-4851-88e5-5bc7dbaeb146)) + (pin "17" (uuid 717012f2-e7f2-41fb-9a83-8156e6c38c2b)) + (pin "18" (uuid 46406654-4e6c-4959-ba6c-7c6d37279fae)) + (pin "19" (uuid 6ac85629-e227-4a7d-acf5-da2005ae85e2)) + (pin "20" (uuid ae5ec377-f112-4d71-97cf-773a0896f609)) + (pin "21" (uuid c213e727-daae-42af-95c0-54f313be8b67)) + (pin "22" (uuid 747931ee-97ac-4e20-a2f5-3785fece765d)) + (pin "23" (uuid 9074b182-9ba0-454f-b580-817a38e0cf24)) + (pin "24" (uuid 3ed333a4-8f2d-4495-8a8e-546a48e06ba8)) + (pin "25" (uuid 93a988c7-3bd2-46df-beb2-00856a0033a4)) + (pin "26" (uuid 87773d26-7775-4d5b-a88a-c60b0f027104)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 22.86 148.59 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 35e9ea0d-99e1-44e4-aa7e-0eb9344c8774) + (property "Reference" "U1" (id 0) (at 23.495 143.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 23.495 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 22.86 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 22.86 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e9bd51eb-b354-4073-9209-03956cdd16ea)) + (pin "2" (uuid 0263d526-e89e-4500-9418-054b4df83cd5)) + (pin "3" (uuid c16da6d7-9aaa-4491-83be-94602bfb4377)) + (pin "4" (uuid 3e42b9f2-1734-4213-9789-926c979f77be)) + (pin "5" (uuid e0f00994-b067-4d46-a552-997947539b5f)) + (pin "6" (uuid 49f0cf57-a6d0-440c-9045-2d905b892b5c)) + (pin "7" (uuid d7e238ad-95ae-4275-ac01-ff62c58ebb12)) + (pin "8" (uuid 5b37242a-e036-40bd-a9c8-db66bfa90c7f)) + (pin "9" (uuid d9dce2b4-d9dc-48dd-921a-f362145ec116)) + (pin "10" (uuid 0c8187d4-65e6-4064-bde7-8d4ab560cad8)) + (pin "11" (uuid 9adfa75b-a20d-48a0-8b9d-cb2d78e71ce5)) + (pin "12" (uuid 13c77c32-a901-4787-aa64-a6e67f3316f2)) + (pin "13" (uuid cb15df14-d281-4a88-b852-adb60d52316f)) + (pin "14" (uuid 5f16fa69-35da-4313-a663-54339aad792c)) + (pin "15" (uuid a905d3e1-41af-45b5-a843-207582b38a46)) + (pin "16" (uuid fe8daa03-7bb3-477c-b072-25c324ea5d76)) + (pin "17" (uuid 6258de34-75ad-494c-96d4-4fd9bfe28997)) + (pin "18" (uuid da570b5c-ada5-49f4-a749-5c58b49967fe)) + (pin "19" (uuid 8aabdf20-bd89-464a-9d5c-70f897ccf9a8)) + (pin "20" (uuid 5a9e6e16-b665-4a0f-8de7-934480ba3fb1)) + (pin "21" (uuid 0446a5ba-def5-4de4-80be-9400732a37e4)) + (pin "22" (uuid 3746129e-ed5e-4d48-933a-4e8cb93b353b)) + (pin "23" (uuid 5f95d4e9-ac89-4102-99ef-ee7ff0029097)) + (pin "24" (uuid 17222be6-1adf-4918-9d9c-b968aa4aa2f9)) + (pin "25" (uuid 86b94892-127b-4ee7-90f9-8e9684f58536)) + (pin "26" (uuid 4888a460-f10b-4b0e-8d79-1f78632467ec)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 243.84 184.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4843dc79-d72c-4d1b-9398-eb469ebf8804) + (property "Reference" "U9" (id 0) (at 243.84 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 243.84 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 243.84 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 243.84 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 84b9bda6-50c5-447a-af95-8022ec538fd5)) + (pin "2" (uuid f05118ca-eef1-418c-911b-508f3a807c78)) + (pin "3" (uuid 0a45128d-e70e-4ce1-a457-eee049736687)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 64.77 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51236645-2d2a-44b2-b80f-ad5d651dde40) + (property "Reference" "U1" (id 0) (at 28.575 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b55732ab-65c2-4ae4-9003-1b414ad75810)) + (pin "2" (uuid fb9a6ebd-67f9-475b-aedf-f7d243e87db9)) + (pin "3" (uuid 15cbc5d6-90b5-452f-9e4f-7cdeb1dc698f)) + (pin "4" (uuid 20ebb368-1ae8-4912-a8bb-c2fd2f7a75b6)) + (pin "5" (uuid 2c76f1fe-8c11-407b-b560-9c9bb8c10557)) + (pin "6" (uuid f80ffe1d-a93a-4d9d-a8df-765e30bdc0e0)) + (pin "7" (uuid 61ecf974-904b-4964-b4a1-68799a5d1388)) + (pin "8" (uuid 484bb065-1529-4a27-8a93-96f23ae49644)) + (pin "9" (uuid 9a9085d1-4dc6-4e45-8962-95059e597ff9)) + (pin "10" (uuid e289c155-8357-4247-af69-3291bdabf9e4)) + (pin "11" (uuid 67f50d95-2534-4f72-84f8-d04e3225a0e5)) + (pin "12" (uuid 1f52b01f-e5e1-4392-87f6-8768f43f6d33)) + (pin "13" (uuid e837d685-a8f4-46a4-8c88-8169a67d611c)) + (pin "14" (uuid c7e89c07-df23-438d-84fe-f5ddf15c5952)) + (pin "15" (uuid 973fae50-7cf2-4169-b64f-c3d8cbed723a)) + (pin "16" (uuid 1a592543-ff61-4ed6-92da-f5ea40e92533)) + (pin "17" (uuid 365bbdc2-4de5-43a0-9c78-2ca4241074e2)) + (pin "18" (uuid 9f275e7c-8a81-4435-b4dd-791ca55ea9b7)) + (pin "19" (uuid 0208b97a-570a-4023-8f8e-95c99a43cb85)) + (pin "20" (uuid cd85b10c-3408-4736-b251-8f420d926c44)) + (pin "21" (uuid d2b134b9-97e4-499e-b946-693da9c9af6c)) + (pin "22" (uuid 66e78bbd-0183-4d5e-9bca-95011de66925)) + (pin "23" (uuid 04fc6edc-e8dc-4edd-9a74-adcb1ca3fe5e)) + (pin "24" (uuid e23dc552-27bc-445a-9b53-46089338e6cc)) + (pin "25" (uuid d88382ed-96ec-42b4-88d4-9bad47c2a798)) + (pin "26" (uuid 276a1782-1c58-4f8c-9bdb-6a4ea87fa4bb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 90.17 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53fba5e1-63b0-4afc-9d8a-df604f3299ed) + (property "Reference" "U3" (id 0) (at 90.17 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 90.17 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 14e0e7e8-3bbf-4969-85ae-ad1e0cfc8e55)) + (pin "2" (uuid 80c192ca-13db-44e8-923a-8d3a5068f3ec)) + (pin "3" (uuid c63933ed-d4f0-4dc8-a7f8-b1b71b463f47)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 105.41 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 634d043b-1612-4d53-a470-30ab3f745e21) + (property "Reference" "U1" (id 0) (at 28.575 100.33 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 102.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 14ddd7e0-5446-4a2d-821d-b97aa242e9f8)) + (pin "2" (uuid 388eb1f4-fbdc-4bc8-9ad1-6476d9927417)) + (pin "3" (uuid 26b33d93-75ee-4611-9b8d-6455c8595f2b)) + (pin "4" (uuid ee58e97a-5699-4105-b2b0-80d0a90265ee)) + (pin "5" (uuid eb9338c2-9cea-46cc-97c7-d1f100924bae)) + (pin "6" (uuid f27f0014-5a55-404d-8fa6-1ed5ef184a2a)) + (pin "7" (uuid 5430a227-3141-47ac-98ef-b721ef2a5a22)) + (pin "8" (uuid 253d13c4-a639-49b6-ab17-af228e43bc7f)) + (pin "9" (uuid 1a1a5714-ed31-4343-a9ba-dcf99f45e7f4)) + (pin "10" (uuid 9b9ae717-8d08-45dd-8ea8-89ef4a83630f)) + (pin "11" (uuid f0932fec-480e-45b8-b0be-e736537b1a0b)) + (pin "12" (uuid f1a2f3c2-9bdc-4171-9860-420a7a2c4149)) + (pin "13" (uuid d914bc39-544e-4a43-acfd-98b692415bd4)) + (pin "14" (uuid b859a0cf-343c-4454-98fd-9dbd25ab4ca2)) + (pin "15" (uuid dafcdd3c-f134-4e2e-aa35-22b819e11fab)) + (pin "16" (uuid 478b219d-6854-4588-90b8-1e58c72c7b7a)) + (pin "17" (uuid 00ffe9f7-30be-42ce-9828-dbcab1b14595)) + (pin "18" (uuid 8eb40817-22dd-45fb-aecb-0ad8044c17a8)) + (pin "19" (uuid 0033e3b1-4e76-4405-9d2f-9f81ea3b2c69)) + (pin "20" (uuid dce05b63-153b-4a3a-b6f5-4d57539a0f8e)) + (pin "21" (uuid 92b813f0-9b9f-461a-a22d-6427e68cc471)) + (pin "22" (uuid 12dd6469-6d9d-4c1c-8a66-a55d22f90778)) + (pin "23" (uuid 6b4389dc-b3d1-4e78-ad78-c3efda610952)) + (pin "24" (uuid b2233fed-6900-4327-a172-76024e98e1bc)) + (pin "25" (uuid 3589c0e3-2841-44ed-a07c-1411fa47c8b1)) + (pin "26" (uuid 53bb4163-0ae1-45c2-8a0d-a07782159aaf)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 318.77 198.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e717a61-a645-4058-ba25-2ad82a45b840) + (property "Reference" "U12" (id 0) (at 318.77 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 318.77 191.77 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 318.77 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 318.77 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e0e7a1a9-6059-4ac7-9911-8291a639d2e0)) + (pin "2" (uuid 1ebc0d44-f74b-4170-bd9b-716ac64c6cc6)) + (pin "3" (uuid 00690832-180e-429b-82e6-452ac8bc422d)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 350.52 205.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 74c7bc96-2ff7-47c3-8294-65a43b317cd7) + (property "Reference" "U13" (id 0) (at 352.5394 189.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 352.5394 193.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 350.52 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 350.52 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 24f9d158-ba01-469b-b3d4-793baafc7835)) + (pin "2" (uuid ecd0fcb8-b052-45e0-834d-c5c89ca04524)) + (pin "3" (uuid 8bd0cae3-8cf5-4e0c-b46a-85db724d7e31)) + (pin "4" (uuid 9997b836-b847-478e-b5c3-d53e848253d8)) + (pin "5" (uuid ce2f2597-31c0-4e41-be45-377e3ef36fdd)) + (pin "6" (uuid 3795eed2-f396-495c-a75e-8b72c12d42df)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 91.44 30.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8994e838-d17b-48d8-afdd-47fc7bc41f7b) + (property "Reference" "U4" (id 0) (at 91.44 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 91.44 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 91.44 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 91.44 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad47fd28-a209-461b-84e3-2fdd29ee862f)) + (pin "2" (uuid 0960bbf6-617a-49a7-979e-448be3bfa4bc)) + (pin "3" (uuid 3b100096-6870-4210-aad6-f7d98dd25558)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 205.74 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab793578-d4af-47c7-9b7a-fd8d0a26d872) + (property "Reference" "U1" (id 0) (at 182.245 200.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 203.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2297aa69-469c-4b59-afe4-54ffee1831da)) + (pin "2" (uuid 3b97a204-e5cd-44cd-a1c5-ee5d6a8b80ab)) + (pin "3" (uuid 0867f4b5-67e4-4478-9b12-7a7d8bee0285)) + (pin "4" (uuid 350f964c-fa11-4bd0-bacd-8b68620a4e52)) + (pin "5" (uuid 22129b4d-a233-418b-951c-17432cd78b1e)) + (pin "6" (uuid a307d86d-479c-42c2-a4d1-b03bffa0dfaf)) + (pin "7" (uuid f873207d-8f41-4259-aacf-6a9208a378f0)) + (pin "8" (uuid 0e2f8bf0-937b-4fab-8ec1-169517dbddb3)) + (pin "9" (uuid 3c7598fc-70b7-4024-9dcd-3ad489fe8ba8)) + (pin "10" (uuid f8b86698-1837-406c-9c0b-31974c9b6270)) + (pin "11" (uuid f2cddaaf-459e-4478-990f-2423a5c83eea)) + (pin "12" (uuid 6353f99f-5c8f-4176-9907-0c9a1600c629)) + (pin "13" (uuid 46b91712-bd34-42de-8433-3aa77f4ebe08)) + (pin "14" (uuid 53e80dfb-d8a8-4109-b25b-f4b6045a2c03)) + (pin "15" (uuid faaab865-2606-4872-8905-359f724baa16)) + (pin "16" (uuid d6d4cb24-375c-455a-abb0-b5b69a8746fc)) + (pin "17" (uuid fb1d0eca-9734-401b-a5df-c7d46c72df10)) + (pin "18" (uuid 58101b53-ea63-48cb-bcf4-d628bba8fdc8)) + (pin "19" (uuid e1bd2980-24bd-4795-ad96-fb5585d24a3b)) + (pin "20" (uuid 781ddba8-8d87-4517-9844-8ffa3e322813)) + (pin "21" (uuid 1ff4ee52-fdd9-453e-ac6c-0d0217009476)) + (pin "22" (uuid cd889445-34c8-44ae-86d5-27c118010fd8)) + (pin "23" (uuid c7fdb560-61c4-4c16-9476-80884fc819c9)) + (pin "24" (uuid 20b749a7-fcea-4322-bf8b-1ec81abb8a6c)) + (pin "25" (uuid 6607a36f-6709-4046-a2c4-01c8b5630135)) + (pin "26" (uuid 41a5a572-ef7b-4ffa-a90a-55c15a2e17aa)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 243.84 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ad8eeb81-cd4f-4883-87ed-15cf2cbef498) + (property "Reference" "U1" (id 0) (at 182.245 238.76 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 241.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 124d45b8-d605-4d54-9e36-3257fd282487)) + (pin "2" (uuid 7114315b-0c45-4d40-a64d-fb911ca5b3d8)) + (pin "3" (uuid b4a41045-fab8-4034-b1d4-356627cbeae7)) + (pin "4" (uuid a0dbd147-f439-4fbe-8685-b8708e16f4a9)) + (pin "5" (uuid 24883811-489c-4d9a-896c-996ffd2813cc)) + (pin "6" (uuid 16a4a410-1e3c-4e61-9e16-8b453ab31c7d)) + (pin "7" (uuid 6d352580-4bc5-48e8-8c09-61366d130d2d)) + (pin "8" (uuid 98e8d5b3-0815-4e0d-a3d5-dc00b9e57706)) + (pin "9" (uuid 291049b9-fd7b-4d07-a0c4-a80386285444)) + (pin "10" (uuid 3a0aa33d-27f4-41f5-ad45-0706612e7837)) + (pin "11" (uuid c1affb49-6d4b-470f-813a-b4ff812ca7f3)) + (pin "12" (uuid 7f11e185-b93e-4827-b225-879127c0f6b9)) + (pin "13" (uuid e609452c-ccdd-4de5-b154-f66927fe33f4)) + (pin "14" (uuid dee007dc-2f2b-4c3d-bbef-6008678820a5)) + (pin "15" (uuid 74408519-25c7-47ec-b7c5-238d19097d68)) + (pin "16" (uuid 2e767171-56dd-47f8-acb2-28cf520cac35)) + (pin "17" (uuid 54083b67-33a0-4b8b-b152-bbe4e75b1d1a)) + (pin "18" (uuid 364995ed-a5ad-4cad-92aa-cf87226de9b9)) + (pin "19" (uuid b51a4be5-0488-4955-a80d-1ebb271f1bba)) + (pin "20" (uuid 73eadfb4-9c14-43e4-bc30-4e364870f34b)) + (pin "21" (uuid 05d736db-5622-41a3-b0d5-538850924aaf)) + (pin "22" (uuid c54aabd6-b439-42d1-b119-ba2901065474)) + (pin "23" (uuid 5a12f217-3bf3-48af-88a8-8e43bd9caa7a)) + (pin "24" (uuid e76a00d9-c1bd-42e1-82d2-440c801ce716)) + (pin "25" (uuid ba4ffe8e-6f65-494f-b851-cb0b4fab50b4)) + (pin "26" (uuid 1d9ab63b-4a9e-4f80-9db2-acae1f759c09)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 140.97 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b147815d-8d8e-442b-929e-ddff14165f03) + (property "Reference" "U1" (id 0) (at 182.245 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 138.43 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92136cfe-b45b-48d7-b67e-163cf3a38c56)) + (pin "2" (uuid 68f9c027-f32b-42ad-be9d-07e8e03ff77e)) + (pin "3" (uuid 8911c359-998b-408b-babe-5529fc0d4a79)) + (pin "4" (uuid 79dd9199-8533-460e-a17b-b4965dd134a4)) + (pin "5" (uuid 24d47506-5037-4d53-a0f1-a0ac80be1814)) + (pin "6" (uuid 6248bd3a-7a30-4480-bd2b-922228ebbca6)) + (pin "7" (uuid f2d79607-5d46-4ea7-9fe2-c5d0452c509c)) + (pin "8" (uuid fae7c13f-5ce5-4fd2-9822-fa3d6619eee1)) + (pin "9" (uuid 135600c0-e8a6-43e2-aa57-96a1fb49ec31)) + (pin "10" (uuid 75d45e4b-60a7-4241-a84f-2b8df663ab7a)) + (pin "11" (uuid 82aba878-c32c-4e92-9900-325a1dd27263)) + (pin "12" (uuid 806a3421-fc32-47e0-93da-9388ffece9ae)) + (pin "13" (uuid 23a9f6bd-4772-47b6-a241-531cfad761cc)) + (pin "14" (uuid cb7418f0-b2c4-45cb-8f14-179947979979)) + (pin "15" (uuid 93851a8a-c575-4c9a-8ad7-7f80a5b9f901)) + (pin "16" (uuid ee8220b9-32cd-4789-99f5-7e5066f3bb17)) + (pin "17" (uuid 901e6a11-2605-423a-91b5-ab8caa27ac8c)) + (pin "18" (uuid cf7ccbf9-59b5-40f4-9cc6-595d5bac3607)) + (pin "19" (uuid 850188d2-b1bf-40b3-b050-9875014a4961)) + (pin "20" (uuid 322c7f37-3676-49b9-9c59-e65c79fa1177)) + (pin "21" (uuid 043454fb-1f3a-4a10-b87f-7e7bae7674f0)) + (pin "22" (uuid 99f666a2-7fd7-49f5-9c36-13d4fe577e00)) + (pin "23" (uuid aa9cf810-4f24-438f-8b98-b2e4f0acc300)) + (pin "24" (uuid 03db4c83-59d9-4054-b2c2-43f2263d6f2e)) + (pin "25" (uuid 6dec4ffb-9fbe-4b6f-b851-84bfad9fb7d1)) + (pin "26" (uuid 5029b98c-3cf0-4c90-8cd1-27fd5b76234e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 203.2 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b38723d8-5acc-4f77-bfa6-9892fc1093b8) + (property "Reference" "U8" (id 0) (at 203.2 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 203.2 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid df6e82a3-30ba-41b8-a527-761fd3fe8f3d)) + (pin "2" (uuid 2d5e0af3-536c-4c09-825c-5f50f8f5771f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 85.09 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b8068420-3713-4781-aa01-a74e0e8cba76) + (property "Reference" "U1" (id 0) (at 28.575 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 991d5307-735d-480f-acc3-7e344a38ab56)) + (pin "2" (uuid d5be3f9d-8cf8-4457-a802-28f29f64fd6c)) + (pin "3" (uuid 04ef701f-dd99-4981-9be4-401e57ff41ba)) + (pin "4" (uuid 7db89092-4522-4018-a6b2-1629443b9a88)) + (pin "5" (uuid a62da559-d860-45dc-8744-fb62d900972a)) + (pin "6" (uuid 948b5e41-2d42-4c02-9899-d3539989de81)) + (pin "7" (uuid a5682e77-3897-4bbc-b87a-b2a1124c6b53)) + (pin "8" (uuid 47a98e0a-ebf2-4e66-9e1c-6bdc68e563f1)) + (pin "9" (uuid d6ff1a03-aa85-481f-b566-b49e79f963b1)) + (pin "10" (uuid f8b81dda-bdea-4249-990f-f35c5b7a9422)) + (pin "11" (uuid 045de480-6833-406d-adfb-9023b5a162b8)) + (pin "12" (uuid 1cc07506-639f-4731-938a-9ad307556bb2)) + (pin "13" (uuid 00364ae3-c8db-4861-835f-849012705349)) + (pin "14" (uuid ada31dea-99fb-4d0e-99a4-5e49ad917995)) + (pin "15" (uuid 7efe92d0-5475-4bfc-acb0-fa126eff2cf4)) + (pin "16" (uuid 205e611a-7cd9-4d45-85e5-a76cdbc847dd)) + (pin "17" (uuid 43ad2e57-1807-4c42-bd75-8a4e36c442d9)) + (pin "18" (uuid 7d97aebc-ff55-4796-8596-567a23de8e87)) + (pin "19" (uuid de598d04-f823-4880-8b50-01f22ade93d5)) + (pin "20" (uuid a66bb4ac-0a27-4c16-85f6-f8f9366f74e7)) + (pin "21" (uuid 913fe5bf-e208-4a23-a2ad-3d7d51235372)) + (pin "22" (uuid a1c6b980-1f7e-4389-8ef3-49b3e0ebdabe)) + (pin "23" (uuid 926f64a4-c44a-4860-9562-17208fe085b6)) + (pin "24" (uuid d8bfbda6-5d99-4c53-948f-59e4b125c08e)) + (pin "25" (uuid a58fe7ae-a37d-42c3-a6ab-e7ab44b88939)) + (pin "26" (uuid 09c2d07b-b98e-47a1-953f-91d30fae1c0b)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 165.1 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc0347c3-4361-401e-94ef-944b3f0714fe) + (property "Reference" "U6" (id 0) (at 165.1 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 165.1 71.12 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 165.1 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 165.1 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dc2fd609-e357-48da-a225-c4119caf5ea9)) + (pin "2" (uuid 2f0e6489-2329-42a4-99da-d7366498326e)) + (pin "3" (uuid 1cfa6fae-95ed-48de-827b-711619a62448)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 228.6 76.2 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c5c46c4d-2b98-46e9-a462-64c049c3eacc) + (property "Reference" "U1" (id 0) (at 232.41 75.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 232.41 78.105 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 228.6 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97a4d351-17f4-4bb9-8cfd-1affe9d08008)) + (pin "2" (uuid ebc523a5-70fe-460c-89b7-275aa3a5df2e)) + (pin "3" (uuid 2e1d5371-366a-4394-a330-2cd0190943ec)) + (pin "4" (uuid 910f58b3-b9e9-46fd-8c08-1293760fbc94)) + (pin "5" (uuid a0828bf1-81b7-49a4-94aa-e6c24d0c6d19)) + (pin "6" (uuid bc495216-fa7f-412d-8eb5-4358f9f2909a)) + (pin "7" (uuid 839db165-31cd-490f-88ed-dad76c6ec349)) + (pin "8" (uuid 2a35c9e4-051d-470d-be8c-e70cb39d6631)) + (pin "9" (uuid 7d3240e2-b8c9-491e-8080-3aba362ac268)) + (pin "10" (uuid a662660d-7d55-4628-8cd8-0ee2175ac617)) + (pin "11" (uuid 4c9161a8-7ba2-4cfd-88f2-b1b8b2cee6cf)) + (pin "12" (uuid d793d471-dbed-414e-9795-11404557c5f1)) + (pin "13" (uuid e2c6f23f-1ae9-4128-86c3-02b0b6e2b023)) + (pin "14" (uuid 183ea4dd-e3b0-4702-b085-29f1cd93b80e)) + (pin "15" (uuid 523816ab-4dfe-4a1a-a4f3-c45f1a986ddc)) + (pin "16" (uuid 105ad5ff-f51b-40e5-856b-8479749cc513)) + (pin "17" (uuid d9287449-44e6-4475-9cf9-f8e808662cdc)) + (pin "18" (uuid 21a0a2e6-6c52-4141-8f29-77a468f0d7e1)) + (pin "19" (uuid bd25ee79-b409-4e33-9413-8d06f4c04ce6)) + (pin "20" (uuid f0a27245-cb5a-4f97-9bd3-f57ad258fde3)) + (pin "21" (uuid bcda9cb2-9de9-4a48-bb0d-f9d3d04da5f4)) + (pin "22" (uuid cfe1f929-7752-499c-bfa0-aa75d20441fa)) + (pin "23" (uuid d9fec553-0b40-4894-afc8-9b30accf3fca)) + (pin "24" (uuid 0de7516f-a6ab-4e9c-b150-32156f0f8da8)) + (pin "25" (uuid 322945e4-7969-4c73-9206-78322f3da38f)) + (pin "26" (uuid 0081c9b9-7c6e-4211-bf68-cfafe1b5c60f)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 134.62 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d27a3e7a-480c-4f17-a33e-8dc6072c1d17) + (property "Reference" "U5" (id 0) (at 134.62 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 134.62 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 134.62 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 134.62 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 059f0804-416b-4b7d-ab0d-dc7599e534e0)) + (pin "2" (uuid 51782874-b692-46fa-a4c9-54a336f32176)) + (pin "3" (uuid c5c72053-600d-44fa-be25-002e2c73afaf)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 185.42 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d412bce0-3a60-4657-9dc3-876df421e997) + (property "Reference" "U1" (id 0) (at 182.245 180.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 182.88 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 27c2f092-5a8d-4da0-a0d5-ce5e78b57606)) + (pin "2" (uuid 23123db2-9e5e-4443-a5f5-aaa8e7a7030f)) + (pin "3" (uuid 52b51c05-c5be-4d1c-ab91-9f908b8fb8dc)) + (pin "4" (uuid a8653799-7b14-44fb-99be-c3190354ac51)) + (pin "5" (uuid 662d9130-e888-4041-91c9-beee4bc4304b)) + (pin "6" (uuid ce427292-7af4-4525-acd5-746f324b7a06)) + (pin "7" (uuid 3e3c5fcd-831b-494d-8700-3daed2d29e0a)) + (pin "8" (uuid ab8ef1b2-4c1e-4fd5-918b-96e6756fb80c)) + (pin "9" (uuid 894913f4-4f6d-4875-aebd-fc510bd944a1)) + (pin "10" (uuid 125085b8-6273-4766-b2ad-b025500b024e)) + (pin "11" (uuid 3d12561f-32b8-4646-94a4-82494e1f6809)) + (pin "12" (uuid 09836232-e58b-4933-8dbd-a10ccab2680b)) + (pin "13" (uuid c622ee67-9f2a-4c2e-8c1d-793203524ebd)) + (pin "14" (uuid 053f7753-7163-4b62-a4de-1cbdb562f4ec)) + (pin "15" (uuid 0db318ff-dea5-4d32-8720-b2053ea1f43a)) + (pin "16" (uuid 76d30341-bbb4-48b6-845c-6e7fbc3e78f6)) + (pin "17" (uuid ae288e01-62de-435b-9239-ce12d8ed1828)) + (pin "18" (uuid d733e86d-448f-4c11-b434-297340011b9c)) + (pin "19" (uuid beaea314-cb2b-47fb-9ebe-e466528875df)) + (pin "20" (uuid ca4b5d0e-d60b-4c88-88c6-d3e6337b189f)) + (pin "21" (uuid f505d0b1-5342-4b59-8918-9d126b3811b1)) + (pin "22" (uuid a295dff2-abfb-4417-a545-06bfe1073b4d)) + (pin "23" (uuid fcdc49e1-dac6-4866-bc8b-1d1b93c90e77)) + (pin "24" (uuid 023b9ac6-d528-40fc-85c3-a15c5eb5d65a)) + (pin "25" (uuid a0e6dbf5-ed6a-4aa7-acc2-2c377d6566d3)) + (pin "26" (uuid 77716f7e-1b1b-4fdc-9ab6-e67313662785)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 245.11 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9219176-fe85-4d0c-93e0-7dc12f710dc0) + (property "Reference" "U10" (id 0) (at 245.11 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 245.11 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 245.11 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 245.11 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4df3c233-61c5-47b3-8582-922339f1922e)) + (pin "2" (uuid 31951016-dfc6-4e23-8e38-16d2aec72702)) + (pin "3" (uuid 0c827cd1-ade8-43f0-b13b-60c66091aaba)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 29.21 43.18 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f379b4dc-0357-49b7-8390-ae970c07d8ee) + (property "Reference" "U1" (id 0) (at 29.845 38.1 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 29.845 40.64 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 29.21 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 29.21 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f79cb863-1c6d-42e8-934a-e69c6fe60d13)) + (pin "2" (uuid c28d202d-f76f-40ad-a11f-981ce66a2613)) + (pin "3" (uuid 5d91ee97-cf17-4877-b118-20e46377976e)) + (pin "4" (uuid 5ed32948-9f19-4b04-98fe-645f83a5310e)) + (pin "5" (uuid e55cf8bd-8a76-4102-8f70-fbfde6a82523)) + (pin "6" (uuid 7ef0e9c0-21da-46ec-a3e8-8bf051bcf2ee)) + (pin "7" (uuid 2a53130a-6b11-445a-a0a7-634647824e96)) + (pin "8" (uuid 3559ec9b-a379-484a-bed7-21a193a386fe)) + (pin "9" (uuid 59e61083-d45e-42b4-bd72-fcac44b667ed)) + (pin "10" (uuid e1b9c36e-eaaf-4497-928c-bab080e3a578)) + (pin "11" (uuid 044bb50e-e087-4a29-9a5b-98f0e93bd6e7)) + (pin "12" (uuid a920e886-cd88-426a-abfd-dc1b2faceaf1)) + (pin "13" (uuid 46f7255d-6022-4ec2-ac0e-74513a259fee)) + (pin "14" (uuid 1fe722be-0694-4702-b7bc-442aa74f98ac)) + (pin "15" (uuid e43188f2-2835-4d49-950d-2fa8a776cd75)) + (pin "16" (uuid 91288e7f-102f-419c-bef4-95bd97cf080f)) + (pin "17" (uuid 80015c67-7960-4086-8a8e-9681a6993656)) + (pin "18" (uuid 28ca17f6-8d2e-4db9-8070-89b4d3b49fc0)) + (pin "19" (uuid 395f860f-d315-4f40-9f52-c6e5e296acd8)) + (pin "20" (uuid b8147afa-b027-4cf6-b832-50e45970ce7a)) + (pin "21" (uuid 5ea5feff-6233-4887-bb92-a3f076f40c16)) + (pin "22" (uuid d2aebd49-bffc-42e4-926d-ae54861f870a)) + (pin "23" (uuid 533008f8-4079-416a-b5fe-9ab27568441a)) + (pin "24" (uuid 75febac6-d4df-4825-bd56-5341b3967723)) + (pin "25" (uuid 7a7228ba-bca4-46cb-92f7-000c6d88781e)) + (pin "26" (uuid 6c9f8ea5-9910-4f1d-b8fd-83bc7d9df023)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 383.54 196.85 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f742a491-72dd-420e-ac4b-2d7b71cba5a6) + (property "Reference" "U1" (id 0) (at 387.35 196.215 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 387.35 198.755 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 383.54 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 383.54 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a3fe89a5-732a-431b-89a1-f034f24087d3)) + (pin "2" (uuid 9a279f79-8e81-4407-93b8-862662585a0b)) + (pin "3" (uuid 20ac725d-5ccf-45e0-9384-c16ac3ba8d6d)) + (pin "4" (uuid 10b9bab9-6e8a-4b87-8a23-45c147f1a447)) + (pin "5" (uuid 282173c9-b3d6-4f92-ad6c-1411b89b5baf)) + (pin "6" (uuid cbd55ea1-1afe-4ac6-bae6-584cb42f5561)) + (pin "7" (uuid 23dbd95e-8898-42dc-94af-0de589185bc1)) + (pin "8" (uuid d0eb95e9-b629-4c60-bdd9-8ac46f4a3da5)) + (pin "9" (uuid 4d370db4-edaf-4975-b95a-80430aafc6f6)) + (pin "10" (uuid 57cd6132-8acf-49e9-9582-f5f91da67dc6)) + (pin "11" (uuid af1d76b9-c2b3-44f2-93e7-480d2fa3dec1)) + (pin "12" (uuid 126ca0fb-20c2-4c51-8617-c50af5aa0d72)) + (pin "13" (uuid 3f51d5e8-81fd-404d-8821-55e6a33af609)) + (pin "14" (uuid 32b4ec98-9e3b-4ac7-b674-3dcb1436b454)) + (pin "15" (uuid 0f8e763a-4e39-4253-9d0b-4bc0e1fd25aa)) + (pin "16" (uuid 763d7f9d-72a9-4a4b-b09f-af10889aeb4c)) + (pin "17" (uuid 709c12d0-3010-43a2-b86d-4b32e0ab005d)) + (pin "18" (uuid 3750a673-5574-4008-86c1-53fe94e05923)) + (pin "19" (uuid c0d29a4a-ffc6-4d18-acdb-9e7cd1b18d18)) + (pin "20" (uuid 5d197da3-9b00-495e-b33c-2bab31c78e9a)) + (pin "21" (uuid 51b329eb-0520-4879-99cc-c4eec8546759)) + (pin "22" (uuid f310f78b-110f-46d8-b84f-4608a67b38e5)) + (pin "23" (uuid 2167da47-29db-489d-a532-b4ccfcf4b146)) + (pin "24" (uuid 5eb79dd5-9c3a-4ab7-97fe-2d813ced7f1f)) + (pin "25" (uuid 43f6eeea-3733-44a8-bf23-2eedfa85e3a9)) + (pin "26" (uuid c87b5b99-2386-4701-ad21-d08a3d56569a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 182.88 163.83 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe2b32b9-709a-49d0-b801-7d71c43989d9) + (property "Reference" "U1" (id 0) (at 183.515 158.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 183.515 161.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 182.88 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 60df745c-c4f9-4a27-9e3e-beb3fc9d6c59)) + (pin "2" (uuid ecd2c39e-6029-4d8d-a6e6-e620fa9829b3)) + (pin "3" (uuid af2bad12-3004-46c9-b3a3-7ca14b5c7ebf)) + (pin "4" (uuid b53c42b5-12e2-452c-915e-f40a5793e166)) + (pin "5" (uuid 0ad52bbe-a790-4668-91b4-6ad9d47174ed)) + (pin "6" (uuid d4d1b088-b49e-49fc-9f61-b22b0289cfcd)) + (pin "7" (uuid 06dfc3a8-a177-4189-930d-000d92b7b44e)) + (pin "8" (uuid f484614e-874d-4469-9807-4e2371e901f2)) + (pin "9" (uuid 5c5ef470-dea8-4eb5-b0d3-acc44303db9e)) + (pin "10" (uuid a0270e4e-8db1-4ed4-954e-5f35f947dd0f)) + (pin "11" (uuid 707fd269-1153-4f59-9293-1afabcd628a8)) + (pin "12" (uuid 4b332a1d-0003-48c2-b901-5431977ab77e)) + (pin "13" (uuid c71b40b4-2e6d-4169-a210-93bc7502daeb)) + (pin "14" (uuid 26ed537b-c5f0-4d11-8708-cd3ede68d3d2)) + (pin "15" (uuid 1b17c73b-d479-4c4f-a2da-c3f39c5703b0)) + (pin "16" (uuid 23464918-c5dc-4f6d-abee-f0764c7d2211)) + (pin "17" (uuid b1f6963f-941c-4112-8a40-76e0128bedd4)) + (pin "18" (uuid 23d37d20-6d21-443f-bf1e-319f7bd637a9)) + (pin "19" (uuid ff3daf6e-6eac-45aa-a856-a2d6471ec279)) + (pin "20" (uuid 3de9e939-5094-4300-8850-e83bcfc905ed)) + (pin "21" (uuid c2479f80-4a44-4ec1-8a4b-fda23f949dbf)) + (pin "22" (uuid 99c54d91-9add-4282-8191-d4d621042689)) + (pin "23" (uuid cefa112d-7f92-4dbf-8df7-1216333117d2)) + (pin "24" (uuid ee238eb8-f278-40d6-ba75-9544ff7e73f7)) + (pin "25" (uuid 63f3a8a7-1505-41eb-9df3-57ebfc6bd813)) + (pin "26" (uuid 3d068d5c-ba43-4411-aa6b-491c9b00c8a3)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/1527dda0-f85c-4eaa-b25b-5d7944cbf1cc" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/355ec12d-3171-4662-a60e-5222fb7f7636" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/f379b4dc-0357-49b7-8390-ae970c07d8ee" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/51236645-2d2a-44b2-b80f-ad5d651dde40" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/b8068420-3713-4781-aa01-a74e0e8cba76" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/c5c46c4d-2b98-46e9-a462-64c049c3eacc" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/634d043b-1612-4d53-a470-30ab3f745e21" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/35e9ea0d-99e1-44e4-aa7e-0eb9344c8774" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/0e3896b0-ffb7-4908-a944-9376c6fe4b8f" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/f742a491-72dd-420e-ac4b-2d7b71cba5a6" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/ab793578-d4af-47c7-9b7a-fd8d0a26d872" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/d412bce0-3a60-4657-9dc3-876df421e997" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/fe2b32b9-709a-49d0-b801-7d71c43989d9" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/b147815d-8d8e-442b-929e-ddff14165f03" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/ad8eeb81-cd4f-4883-87ed-15cf2cbef498" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/13b6c329-1b5d-4e89-8062-628eaee2f2c0" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/1d860f5f-d07f-4406-b647-3cc9608b5a03" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/53fba5e1-63b0-4afc-9d8a-df604f3299ed" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/8994e838-d17b-48d8-afdd-47fc7bc41f7b" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/d27a3e7a-480c-4f17-a33e-8dc6072c1d17" + (reference "U5") (unit 1) (value "d_or") (footprint "") + ) + (path "/bc0347c3-4361-401e-94ef-944b3f0714fe" + (reference "U6") (unit 1) (value "d_xor") (footprint "") + ) + (path "/29f13e57-6de3-4eb4-a145-ebddc9118b16" + (reference "U7") (unit 1) (value "d_dff") (footprint "") + ) + (path "/b38723d8-5acc-4f77-bfa6-9892fc1093b8" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4843dc79-d72c-4d1b-9398-eb469ebf8804" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/e9219176-fe85-4d0c-93e0-7dc12f710dc0" + (reference "U10") (unit 1) (value "d_and") (footprint "") + ) + (path "/09b4815b-0dc1-42af-8080-55554666f2a2" + (reference "U11") (unit 1) (value "d_or") (footprint "") + ) + (path "/6e717a61-a645-4058-ba25-2ad82a45b840" + (reference "U12") (unit 1) (value "d_xor") (footprint "") + ) + (path "/74c7bc96-2ff7-47c3-8294-65a43b317cd7" + (reference "U13") (unit 1) (value "d_dff") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.kicad_sch-bak b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.kicad_sch-bak new file mode 100644 index 000000000..8b6fa8a2b --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.kicad_sch-bak @@ -0,0 +1,1801 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 31bb3ee2-e5e3-46b8-8f37-f529f71db006) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_xor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_xor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -5.08 -1.27) (mid -4.3109 1.27) (end -5.08 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.27) + (xy -5.08 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 3.81) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_xor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.0922 1.0922)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.0922 1.0922)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 0.9906 0.9906)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 191.77 185.42) (diameter 0) (color 0 0 0 0) + (uuid 49a53bb9-6582-4299-97bb-9700a3df8d65) + ) + (junction (at 38.1 64.77) (diameter 0) (color 0 0 0 0) + (uuid a81cf9d3-a66d-46a9-ae2b-61c577a15f8a) + ) + + (no_connect (at 350.52 189.23) (uuid 2b7c7f3a-04d1-4de9-9f4f-e1f42308dd92)) + (no_connect (at 210.82 92.71) (uuid 48c76255-67d1-432c-be3d-b9e9b2f54d4d)) + (no_connect (at 57.15 168.91) (uuid 8b5d3a05-1ecf-4f1c-b0a6-facf3547c9de)) + (no_connect (at 364.49 213.36) (uuid 8d52b4ae-7bb6-4af3-adea-508686141d52)) + (no_connect (at 54.61 148.59) (uuid cd7231ed-8a70-40fb-99ac-9ddd50628beb)) + (no_connect (at 196.85 68.58) (uuid d9770f4e-3af7-45cf-a555-69293b533129)) + + (wire (pts (xy 275.59 160.02) (xy 276.86 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 098c85ee-2064-409d-b49a-b03efd5c1c4d) + ) + (wire (pts (xy 304.8 198.12) (xy 304.8 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0beb3e59-3f24-4ea5-bbfb-ae2c83ec8e7a) + ) + (wire (pts (xy 151.13 68.58) (xy 151.13 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c243e5d-ddf6-4de9-b8c8-8f29f047dd06) + ) + (wire (pts (xy 102.87 29.21) (xy 111.76 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c8d3712-9807-4b54-9807-822d809cf1cf) + ) + (wire (pts (xy 35.56 43.18) (xy 72.39 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0df56a33-afb4-4385-8d59-4e12d7a4d89f) + ) + (wire (pts (xy 121.92 39.37) (xy 123.19 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1084097c-9c60-49c6-9b2f-de8e67b83de1) + ) + (wire (pts (xy 34.29 123.19) (xy 196.85 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1413b3ec-45b2-42a2-9d8f-05e004ef9d82) + ) + (wire (pts (xy 187.96 185.42) (xy 191.77 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c2d58ba-71ff-4753-b77a-f5c400a5272e) + ) + (wire (pts (xy 179.07 104.14) (xy 179.07 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e7ed344-b128-4f5d-b3db-7c3c72df4d18) + ) + (wire (pts (xy 196.85 121.92) (xy 196.85 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fe2bd4d-a0d9-4f3f-8381-e08bea7a8a7c) + ) + (wire (pts (xy 151.13 74.93) (xy 153.67 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22706f21-a60b-40d4-aa9a-edb4aaa45176) + ) + (wire (pts (xy 265.43 149.86) (xy 265.43 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b241bf3-a7ea-403a-a8d3-1f7db1586137) + ) + (wire (pts (xy 191.77 185.42) (xy 195.58 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e27d46b-ffe7-41ee-aa9f-cff06365f937) + ) + (wire (pts (xy 72.39 43.18) (xy 72.39 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3881d235-acdd-4222-bde5-305993d647a4) + ) + (wire (pts (xy 228.6 181.61) (xy 228.6 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b7e52c1-85da-4379-8d56-6adf732563ec) + ) + (wire (pts (xy 222.25 148.59) (xy 233.68 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ed183c8-44b6-4633-9470-0146063c7fc6) + ) + (wire (pts (xy 121.92 48.26) (xy 123.19 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ff0d81c-3d60-4526-b276-0f281f9d6430) + ) + (wire (pts (xy 68.58 20.32) (xy 68.58 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4461e308-d7eb-4802-b5f8-2d789d0baa0f) + ) + (wire (pts (xy 101.6 62.23) (xy 111.76 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44950242-2424-4941-8256-aa3a94a5e48f) + ) + (wire (pts (xy 332.74 213.36) (xy 336.55 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45fbac85-6f3b-4873-a56f-428bc75b656b) + ) + (wire (pts (xy 222.25 151.13) (xy 233.68 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48820594-64b3-4d2e-bf40-fb7169bda571) + ) + (wire (pts (xy 111.76 29.21) (xy 111.76 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49d1015a-e144-41a1-8b39-e3ff98bfc32d) + ) + (wire (pts (xy 299.72 163.83) (xy 302.26 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a9b3266-09aa-46d6-be10-d2e75b4f2fb6) + ) + (wire (pts (xy 232.41 173.99) (xy 232.41 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d44b628-0650-45f0-837d-93979fe1d5f3) + ) + (wire (pts (xy 187.96 243.84) (xy 350.52 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ddd045d-601e-40c1-880a-1322d71e17e9) + ) + (wire (pts (xy 111.76 48.26) (xy 121.92 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e5bb7d9-2880-4d0d-b857-1d7c33adb859) + ) + (wire (pts (xy 265.43 182.88) (xy 265.43 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ebb651f-fe99-4410-9dd0-2bc9387e782d) + ) + (wire (pts (xy 332.74 224.79) (xy 332.74 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fa3bae7-f30d-48a4-b728-0f0431425e85) + ) + (wire (pts (xy 34.29 85.09) (xy 151.13 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50bb4d0a-9305-410a-b574-5d6a5e22b034) + ) + (wire (pts (xy 187.96 226.06) (xy 332.74 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53863e8f-2ffc-4472-bbe4-9dc64bb52095) + ) + (wire (pts (xy 57.15 64.77) (xy 68.58 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b79286d-6336-4c16-a958-5d7e378e80d5) + ) + (wire (pts (xy 34.29 105.41) (xy 179.07 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e028680-e9b3-4e11-ad86-8eca88f805cd) + ) + (wire (pts (xy 222.25 76.2) (xy 210.82 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f552264-9e26-4e6f-a478-d2a6c7ac6980) + ) + (wire (pts (xy 146.05 43.18) (xy 148.59 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60ce08eb-85f3-4381-8410-641d5938b741) + ) + (wire (pts (xy 72.39 53.34) (xy 78.74 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63f96988-44c0-4206-a442-2da630a5dd67) + ) + (wire (pts (xy 68.58 27.94) (xy 80.01 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 669536a6-c025-4230-9af2-721d5f9fb029) + ) + (wire (pts (xy 222.25 140.97) (xy 222.25 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bf1ffc6-a0a0-4140-b6c9-98668f177a30) + ) + (wire (pts (xy 148.59 43.18) (xy 148.59 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e646a52-087a-4380-a010-ea9d7332a849) + ) + (wire (pts (xy 179.07 92.71) (xy 182.88 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7096487a-65d8-4e26-8dcd-c0ea6ab4c062) + ) + (wire (pts (xy 189.23 163.83) (xy 226.06 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75ceda96-59d1-4a39-9904-f4aca87041b7) + ) + (wire (pts (xy 68.58 30.48) (xy 80.01 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76ac2912-96d3-408e-ac2a-153240560791) + ) + (wire (pts (xy 275.59 168.91) (xy 276.86 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a17dc35-802a-46e0-b172-746c4bd310a4) + ) + (wire (pts (xy 191.77 181.61) (xy 191.77 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ab2f9c4-eb11-4458-a09b-d6af067a2855) + ) + (wire (pts (xy 148.59 68.58) (xy 151.13 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 840728ac-e0b8-42ec-9b7c-a7c264ae36ae) + ) + (wire (pts (xy 265.43 168.91) (xy 275.59 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f976b26-1959-46d1-aef5-7eb899691364) + ) + (wire (pts (xy 187.96 140.97) (xy 222.25 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9051876d-fb08-42d6-8f81-6c2a659dd589) + ) + (wire (pts (xy 302.26 189.23) (xy 304.8 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9405bc6b-5e0d-4250-994f-349d73466d27) + ) + (wire (pts (xy 29.21 148.59) (xy 54.61 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 983a3159-9a49-46cb-adce-0e1d5b3aaf9b) + ) + (wire (pts (xy 78.74 53.34) (xy 78.74 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c1e4f4a-b624-42b3-a6a4-94f16a5b9846) + ) + (wire (pts (xy 265.43 160.02) (xy 275.59 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ed4ee30-e27a-4a02-8aa5-dcad8008d3a3) + ) + (wire (pts (xy 256.54 149.86) (xy 265.43 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fc835b7-b0e4-4f2b-98f5-9c0a345cc985) + ) + (wire (pts (xy 151.13 77.47) (xy 151.13 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2875ae2-144c-4f7a-9518-72fc0844ff3e) + ) + (wire (pts (xy 38.1 60.96) (xy 38.1 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a45bae6d-5c37-4c20-ab5b-bee1c7b672c9) + ) + (wire (pts (xy 151.13 77.47) (xy 153.67 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac3547c0-6ede-4fa3-9878-5dc94303da39) + ) + (wire (pts (xy 210.82 185.42) (xy 222.25 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8a3d6b5-b7ad-4be1-8320-6732ae6cfd5c) + ) + (wire (pts (xy 304.8 198.12) (xy 307.34 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b988df86-dd17-43ca-b4f8-48a849392e69) + ) + (wire (pts (xy 226.06 163.83) (xy 226.06 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbeb8b48-898c-473e-b9fa-adead23b1e37) + ) + (wire (pts (xy 34.29 20.32) (xy 68.58 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc4b2258-76ee-4ae5-91c0-aabac7afcfdc) + ) + (wire (pts (xy 255.27 182.88) (xy 265.43 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdcd4f3a-31cc-4a92-a095-b8a2975cbff9) + ) + (wire (pts (xy 111.76 62.23) (xy 111.76 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be9a3bc2-c897-4cc1-b787-9487b8754ba5) + ) + (wire (pts (xy 228.6 184.15) (xy 232.41 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c58404e8-8727-4048-978d-eaddcf3b6630) + ) + (wire (pts (xy 304.8 195.58) (xy 307.34 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c734f98c-6792-4200-bb32-49da24ddcecb) + ) + (wire (pts (xy 74.93 60.96) (xy 74.93 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c74407ad-8dbe-4936-97c1-620ec2d65724) + ) + (wire (pts (xy 226.06 173.99) (xy 232.41 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c75ca6a7-947b-4686-b356-45d4ff86d0f2) + ) + (wire (pts (xy 222.25 185.42) (xy 222.25 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d116335c-ed8c-46d3-89a5-b5e33bdceb5d) + ) + (wire (pts (xy 68.58 64.77) (xy 68.58 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d439d8e7-681e-4af9-b477-248c95d62588) + ) + (wire (pts (xy 74.93 63.5) (xy 78.74 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4d8aa5a-7775-4e04-ad17-024d4b1e6d45) + ) + (wire (pts (xy 38.1 64.77) (xy 41.91 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d74db7ee-25d6-49dd-8851-0d8585441a7c) + ) + (wire (pts (xy 350.52 242.57) (xy 350.52 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8b14c18-2315-4351-9aee-7ba512caf9d2) + ) + (wire (pts (xy 304.8 189.23) (xy 304.8 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da496307-6c1c-4245-a5c4-7fc5ea599fea) + ) + (wire (pts (xy 38.1 60.96) (xy 74.93 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de15d070-39e4-422c-84cf-c055b18dd6a5) + ) + (wire (pts (xy 191.77 181.61) (xy 228.6 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid def09581-cda2-43b5-a6eb-6a385d0de054) + ) + (wire (pts (xy 29.21 168.91) (xy 57.15 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e02f7ebd-486f-460c-8fee-344c15e9f94b) + ) + (wire (pts (xy 330.2 196.85) (xy 336.55 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e403ea78-c903-44aa-93a1-a8f5e9a3ce20) + ) + (wire (pts (xy 176.53 76.2) (xy 182.88 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecb35c4a-cd62-40a5-af83-18395c8073c0) + ) + (wire (pts (xy 111.76 39.37) (xy 121.92 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed00a4b4-8d2f-477e-8bdb-c148e3422f61) + ) + (wire (pts (xy 187.96 205.74) (xy 304.8 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef5a5866-3bc3-481f-b5c8-c4cf88f4e340) + ) + (wire (pts (xy 302.26 163.83) (xy 302.26 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f09b5acd-b314-401c-a95b-630a47aa5056) + ) + (wire (pts (xy 34.29 64.77) (xy 38.1 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f367842f-1c42-45ff-bac6-7c70c8bfba14) + ) + (wire (pts (xy 377.19 196.85) (xy 364.49 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f560a758-e1fd-45e8-8c8a-ce2cba099bc0) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 288.29 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 09b4815b-0dc1-42af-8080-55554666f2a2) + (property "Reference" "U?" (id 0) (at 288.29 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 288.29 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 288.29 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 288.29 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 90717b1e-09e6-4737-9d72-641edd427a55)) + (pin "2" (uuid ec65ccdb-0686-4984-9aa6-35e1412ec39f)) + (pin "3" (uuid 7e808543-0965-4de4-a944-5e9c82e44484)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 226.06 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e3896b0-ffb7-4908-a944-9376c6fe4b8f) + (property "Reference" "U?" (id 0) (at 182.245 220.98 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 223.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9b3cfc24-03da-47d0-90ab-b54650ab5835)) + (pin "2" (uuid d5f6db56-f2a1-4733-9075-96ba6ef650e9)) + (pin "3" (uuid 101a96f6-291b-40f9-a3e3-84a4075a7cd9)) + (pin "4" (uuid 4f0ea0d8-4654-4d34-840e-6cf77756d039)) + (pin "5" (uuid fc1c424d-71e5-4acb-bc12-e81f02d02a41)) + (pin "6" (uuid f70fb563-2abe-453c-a3db-d714f401bfde)) + (pin "7" (uuid 58d59474-eac5-4df4-83e8-dfc8825331ea)) + (pin "8" (uuid dafaafa6-a585-4ed3-bb80-489efe3f56ce)) + (pin "9" (uuid 9bfa8c03-2c7c-4695-be45-9931c4847a0f)) + (pin "10" (uuid 9cf0f243-6014-4999-b62d-89d4ac43a54a)) + (pin "11" (uuid ddaaae35-8158-40a2-9dc0-208ea92a3f61)) + (pin "12" (uuid 82650f6e-e7db-4db8-83d6-a2d94d9f268c)) + (pin "13" (uuid c9f401fd-d1ba-44bf-a5a6-d086268716c5)) + (pin "14" (uuid 3a57d85d-27aa-4435-bd55-50c7b0ffffeb)) + (pin "15" (uuid 7258245c-4987-4f73-a729-b20d8230e1a8)) + (pin "16" (uuid b55aa9d0-3255-4ca0-aa84-85ecaa8287c3)) + (pin "17" (uuid 4b61980f-840b-4794-aa57-1b1575f7d13d)) + (pin "18" (uuid 14b926c6-8e4e-4dc1-96b8-b132abbd1ac6)) + (pin "19" (uuid 6e5834aa-f75b-46e4-809f-e27a274af8ab)) + (pin "20" (uuid 877e7ea7-9013-48e0-8018-49a79ebe33ec)) + (pin "21" (uuid 3c66d756-9087-4bc1-a470-84f1dda7cff1)) + (pin "22" (uuid 17476fc4-a518-43a4-b201-08369fde61cc)) + (pin "23" (uuid 84a305b8-887b-410d-b134-c35f82c4b734)) + (pin "24" (uuid 3e1a994f-b16d-4c6b-a8be-d38432a88b4d)) + (pin "25" (uuid b7f78dfa-be7c-4baf-a0c7-d8f8ff37a95d)) + (pin "26" (uuid 89f5284c-6293-4385-8b27-4e36b2ba00df)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 22.86 168.91 0) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13b6c329-1b5d-4e89-8062-628eaee2f2c0) + (property "Reference" "U?" (id 0) (at 23.495 163.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 23.495 166.37 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 22.86 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 22.86 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d768e59-6d11-41eb-ba4e-6f53bb297b73)) + (pin "2" (uuid 2e983776-c43a-4293-906e-05c578091a7f)) + (pin "3" (uuid 5c048579-2497-4cd7-9880-76062ec26c22)) + (pin "4" (uuid aff0467b-b0df-451f-b0f7-67eee3765206)) + (pin "5" (uuid d55a80af-9b0b-4ab1-bcef-904d6d20175c)) + (pin "6" (uuid 8caa5966-56dc-4388-a070-020ab2d9c438)) + (pin "7" (uuid 5eb9a8e8-ac24-4144-acb5-b934b96f0712)) + (pin "8" (uuid 81209314-56cd-48b7-9f89-b2cacc764da4)) + (pin "9" (uuid 93e0153d-23f6-4eb5-8731-1b3661afc233)) + (pin "10" (uuid 6d96f0ec-3984-43ba-827e-ae39b4761dd9)) + (pin "11" (uuid 7a84e87e-ab91-41f0-b6ca-8d4f480b8191)) + (pin "12" (uuid 34001e0a-3528-4ccb-ba45-537268db8f65)) + (pin "13" (uuid 440645f7-2d0e-4b50-880d-43171faf9fb9)) + (pin "14" (uuid c61e2cc1-3df8-44ba-9175-9d5b2010e0f1)) + (pin "15" (uuid 33b2d494-f60e-49c7-9951-f79119a294cc)) + (pin "16" (uuid 8b6cd0ba-6415-4c72-91fa-e5cd633d2b17)) + (pin "17" (uuid 5aa369c5-6b01-4240-bea4-ddfeed6ae2d4)) + (pin "18" (uuid f9146ba2-0a25-41d8-8614-2a95c87f9d7d)) + (pin "19" (uuid ea0f6f98-24d3-43bd-a97b-b291bfe96a50)) + (pin "20" (uuid 439ba981-133c-4156-8197-8326854114eb)) + (pin "21" (uuid b798e7a2-d2eb-4615-89cc-570febbb6591)) + (pin "22" (uuid 91f38d6f-c8d8-4e64-8564-8942db08750e)) + (pin "23" (uuid 37363b60-c656-46cc-8266-4cb94a8aa1ce)) + (pin "24" (uuid c0420f18-b8a4-4a3f-99ef-e992a7304686)) + (pin "25" (uuid 15f11672-3f0b-4571-96d3-02f845725878)) + (pin "26" (uuid fa4c3179-6ca6-4cff-8885-46e64a4b6ff9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 123.19 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1527dda0-f85c-4eaa-b25b-5d7944cbf1cc) + (property "Reference" "U?" (id 0) (at 28.575 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e7df2f9e-3708-4f52-a546-13a046aab679)) + (pin "2" (uuid 0b33ac5a-2327-4f11-8569-c545c0a19c63)) + (pin "3" (uuid 1b8dabd8-3dcd-44e2-85f7-6ab8826c0ba0)) + (pin "4" (uuid 9199e33c-15ef-4af5-b310-b43fc42cbd68)) + (pin "5" (uuid b7c3dd7e-c1aa-4399-bb99-1ffe827fca0f)) + (pin "6" (uuid 9bcc581c-8523-4a2a-9bea-7adc2a9d84cc)) + (pin "7" (uuid 88de7aa6-c991-47ce-bad0-c0a1cc54c879)) + (pin "8" (uuid cdeca36b-d7f1-4cfa-9a82-774c3ba6f8cc)) + (pin "9" (uuid e845f717-a9a1-4e2c-95c6-1f58fa7f9c53)) + (pin "10" (uuid d24e9a76-77cf-4be4-bcd1-c0530df24dd5)) + (pin "11" (uuid f5a5b242-bb8a-4438-a361-73f749560ce7)) + (pin "12" (uuid 40cd1e29-8165-4085-ae37-4a4f36737bda)) + (pin "13" (uuid dfc6b62a-419e-41f5-9223-26e6bd991b1f)) + (pin "14" (uuid b44ac5b2-36e4-4688-9659-a2eec94202ed)) + (pin "15" (uuid ac889659-1bad-4791-923b-9e19fe73cce0)) + (pin "16" (uuid ec581ac3-5866-4799-becd-e8ee49c35e31)) + (pin "17" (uuid 1ca1c722-90fb-422d-aab4-180d5b63aa4f)) + (pin "18" (uuid 6b64d07b-e7a0-4fc2-9d56-1715641c3143)) + (pin "19" (uuid ffb62f6f-b9b7-4405-aa59-d4a536e1f0a4)) + (pin "20" (uuid e139ebd3-9eab-4cc4-934c-48082521daaf)) + (pin "21" (uuid ed580205-48bd-4741-80a3-16842ee5565e)) + (pin "22" (uuid 2c990db3-015a-44be-93be-c7033ca5235b)) + (pin "23" (uuid 9420f6b8-80e3-4b5f-a9fa-45a78c73bb3d)) + (pin "24" (uuid eb62b4b2-7af2-40dd-8358-65bfc214c59b)) + (pin "25" (uuid c174e35d-25f4-43bf-8167-161099419422)) + (pin "26" (uuid e91bb3de-8ebb-44cf-b4f4-f89e3791f271)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 49.53 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d860f5f-d07f-4406-b647-3cc9608b5a03) + (property "Reference" "U?" (id 0) (at 49.53 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 49.53 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 50.8 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 50.8 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 207d3f61-e982-4b51-bdc4-80ef7db0bb46)) + (pin "2" (uuid 31a5d643-5ce6-403b-ad7b-36816d46baa8)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 196.85 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 29f13e57-6de3-4eb4-a145-ebddc9118b16) + (property "Reference" "U?" (id 0) (at 198.8694 68.58 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 198.8694 72.39 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 196.85 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d1414df5-faca-4318-a10c-3987aeb32cf8)) + (pin "2" (uuid ecdb9cc7-1000-4d70-87e6-25dac3004a41)) + (pin "3" (uuid 9250de9c-2a7e-403d-bc2c-2fed36ded790)) + (pin "4" (uuid 55723efd-35c7-4550-8ef7-a9b281333ca5)) + (pin "5" (uuid 6d038618-65db-4b31-88ba-7061660eaa5f)) + (pin "6" (uuid 760ce2a5-5179-4d44-ae2e-361cd985bdba)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 20.32 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 355ec12d-3171-4662-a60e-5222fb7f7636) + (property "Reference" "U?" (id 0) (at 28.575 15.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 17.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ba5c93f-80a0-4b9e-b46b-103edf4376dd)) + (pin "2" (uuid 8e43ac36-9bbe-4fad-b2b7-30e5bdd56b4c)) + (pin "3" (uuid 0696b9c2-8b69-4d7b-883a-231fbdde63a8)) + (pin "4" (uuid 17d3b04f-064b-4bbf-91c5-110156515169)) + (pin "5" (uuid 70589b6d-a369-440a-8eb5-46c9bf305aff)) + (pin "6" (uuid 2e1956e7-a377-4b8d-ac74-38520fb7b92f)) + (pin "7" (uuid 4f7695cf-d016-4e92-ae29-61a864938a57)) + (pin "8" (uuid c43974e5-14af-4562-8c06-8564af0f3934)) + (pin "9" (uuid 49d40b35-5926-470f-96f1-f1c708027e56)) + (pin "10" (uuid a4c702f2-662c-4a02-bb48-158c87d95cb0)) + (pin "11" (uuid f881f19f-73ae-4f64-8278-25c94baba916)) + (pin "12" (uuid 531b74e2-62f2-4349-a62b-42090a7b35aa)) + (pin "13" (uuid fa8ea1cc-c916-440f-b901-dc91aeea74cd)) + (pin "14" (uuid d26623b8-476c-4f8b-8129-78356fe95721)) + (pin "15" (uuid bf03c46b-3348-4a6a-8ee4-ff8e7f819fcd)) + (pin "16" (uuid 5fd5cd19-6125-4851-88e5-5bc7dbaeb146)) + (pin "17" (uuid 717012f2-e7f2-41fb-9a83-8156e6c38c2b)) + (pin "18" (uuid 46406654-4e6c-4959-ba6c-7c6d37279fae)) + (pin "19" (uuid 6ac85629-e227-4a7d-acf5-da2005ae85e2)) + (pin "20" (uuid ae5ec377-f112-4d71-97cf-773a0896f609)) + (pin "21" (uuid c213e727-daae-42af-95c0-54f313be8b67)) + (pin "22" (uuid 747931ee-97ac-4e20-a2f5-3785fece765d)) + (pin "23" (uuid 9074b182-9ba0-454f-b580-817a38e0cf24)) + (pin "24" (uuid 3ed333a4-8f2d-4495-8a8e-546a48e06ba8)) + (pin "25" (uuid 93a988c7-3bd2-46df-beb2-00856a0033a4)) + (pin "26" (uuid 87773d26-7775-4d5b-a88a-c60b0f027104)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 22.86 148.59 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 35e9ea0d-99e1-44e4-aa7e-0eb9344c8774) + (property "Reference" "U?" (id 0) (at 23.495 143.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 23.495 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 22.86 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 22.86 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e9bd51eb-b354-4073-9209-03956cdd16ea)) + (pin "2" (uuid 0263d526-e89e-4500-9418-054b4df83cd5)) + (pin "3" (uuid c16da6d7-9aaa-4491-83be-94602bfb4377)) + (pin "4" (uuid 3e42b9f2-1734-4213-9789-926c979f77be)) + (pin "5" (uuid e0f00994-b067-4d46-a552-997947539b5f)) + (pin "6" (uuid 49f0cf57-a6d0-440c-9045-2d905b892b5c)) + (pin "7" (uuid d7e238ad-95ae-4275-ac01-ff62c58ebb12)) + (pin "8" (uuid 5b37242a-e036-40bd-a9c8-db66bfa90c7f)) + (pin "9" (uuid d9dce2b4-d9dc-48dd-921a-f362145ec116)) + (pin "10" (uuid 0c8187d4-65e6-4064-bde7-8d4ab560cad8)) + (pin "11" (uuid 9adfa75b-a20d-48a0-8b9d-cb2d78e71ce5)) + (pin "12" (uuid 13c77c32-a901-4787-aa64-a6e67f3316f2)) + (pin "13" (uuid cb15df14-d281-4a88-b852-adb60d52316f)) + (pin "14" (uuid 5f16fa69-35da-4313-a663-54339aad792c)) + (pin "15" (uuid a905d3e1-41af-45b5-a843-207582b38a46)) + (pin "16" (uuid fe8daa03-7bb3-477c-b072-25c324ea5d76)) + (pin "17" (uuid 6258de34-75ad-494c-96d4-4fd9bfe28997)) + (pin "18" (uuid da570b5c-ada5-49f4-a749-5c58b49967fe)) + (pin "19" (uuid 8aabdf20-bd89-464a-9d5c-70f897ccf9a8)) + (pin "20" (uuid 5a9e6e16-b665-4a0f-8de7-934480ba3fb1)) + (pin "21" (uuid 0446a5ba-def5-4de4-80be-9400732a37e4)) + (pin "22" (uuid 3746129e-ed5e-4d48-933a-4e8cb93b353b)) + (pin "23" (uuid 5f95d4e9-ac89-4102-99ef-ee7ff0029097)) + (pin "24" (uuid 17222be6-1adf-4918-9d9c-b968aa4aa2f9)) + (pin "25" (uuid 86b94892-127b-4ee7-90f9-8e9684f58536)) + (pin "26" (uuid 4888a460-f10b-4b0e-8d79-1f78632467ec)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 243.84 184.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4843dc79-d72c-4d1b-9398-eb469ebf8804) + (property "Reference" "U?" (id 0) (at 243.84 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 243.84 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 243.84 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 243.84 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 84b9bda6-50c5-447a-af95-8022ec538fd5)) + (pin "2" (uuid f05118ca-eef1-418c-911b-508f3a807c78)) + (pin "3" (uuid 0a45128d-e70e-4ce1-a457-eee049736687)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 64.77 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51236645-2d2a-44b2-b80f-ad5d651dde40) + (property "Reference" "U?" (id 0) (at 28.575 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b55732ab-65c2-4ae4-9003-1b414ad75810)) + (pin "2" (uuid fb9a6ebd-67f9-475b-aedf-f7d243e87db9)) + (pin "3" (uuid 15cbc5d6-90b5-452f-9e4f-7cdeb1dc698f)) + (pin "4" (uuid 20ebb368-1ae8-4912-a8bb-c2fd2f7a75b6)) + (pin "5" (uuid 2c76f1fe-8c11-407b-b560-9c9bb8c10557)) + (pin "6" (uuid f80ffe1d-a93a-4d9d-a8df-765e30bdc0e0)) + (pin "7" (uuid 61ecf974-904b-4964-b4a1-68799a5d1388)) + (pin "8" (uuid 484bb065-1529-4a27-8a93-96f23ae49644)) + (pin "9" (uuid 9a9085d1-4dc6-4e45-8962-95059e597ff9)) + (pin "10" (uuid e289c155-8357-4247-af69-3291bdabf9e4)) + (pin "11" (uuid 67f50d95-2534-4f72-84f8-d04e3225a0e5)) + (pin "12" (uuid 1f52b01f-e5e1-4392-87f6-8768f43f6d33)) + (pin "13" (uuid e837d685-a8f4-46a4-8c88-8169a67d611c)) + (pin "14" (uuid c7e89c07-df23-438d-84fe-f5ddf15c5952)) + (pin "15" (uuid 973fae50-7cf2-4169-b64f-c3d8cbed723a)) + (pin "16" (uuid 1a592543-ff61-4ed6-92da-f5ea40e92533)) + (pin "17" (uuid 365bbdc2-4de5-43a0-9c78-2ca4241074e2)) + (pin "18" (uuid 9f275e7c-8a81-4435-b4dd-791ca55ea9b7)) + (pin "19" (uuid 0208b97a-570a-4023-8f8e-95c99a43cb85)) + (pin "20" (uuid cd85b10c-3408-4736-b251-8f420d926c44)) + (pin "21" (uuid d2b134b9-97e4-499e-b946-693da9c9af6c)) + (pin "22" (uuid 66e78bbd-0183-4d5e-9bca-95011de66925)) + (pin "23" (uuid 04fc6edc-e8dc-4edd-9a74-adcb1ca3fe5e)) + (pin "24" (uuid e23dc552-27bc-445a-9b53-46089338e6cc)) + (pin "25" (uuid d88382ed-96ec-42b4-88d4-9bad47c2a798)) + (pin "26" (uuid 276a1782-1c58-4f8c-9bdb-6a4ea87fa4bb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 90.17 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53fba5e1-63b0-4afc-9d8a-df604f3299ed) + (property "Reference" "U?" (id 0) (at 90.17 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 90.17 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 14e0e7e8-3bbf-4969-85ae-ad1e0cfc8e55)) + (pin "2" (uuid 80c192ca-13db-44e8-923a-8d3a5068f3ec)) + (pin "3" (uuid c63933ed-d4f0-4dc8-a7f8-b1b71b463f47)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 105.41 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 634d043b-1612-4d53-a470-30ab3f745e21) + (property "Reference" "U?" (id 0) (at 28.575 100.33 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 102.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 14ddd7e0-5446-4a2d-821d-b97aa242e9f8)) + (pin "2" (uuid 388eb1f4-fbdc-4bc8-9ad1-6476d9927417)) + (pin "3" (uuid 26b33d93-75ee-4611-9b8d-6455c8595f2b)) + (pin "4" (uuid ee58e97a-5699-4105-b2b0-80d0a90265ee)) + (pin "5" (uuid eb9338c2-9cea-46cc-97c7-d1f100924bae)) + (pin "6" (uuid f27f0014-5a55-404d-8fa6-1ed5ef184a2a)) + (pin "7" (uuid 5430a227-3141-47ac-98ef-b721ef2a5a22)) + (pin "8" (uuid 253d13c4-a639-49b6-ab17-af228e43bc7f)) + (pin "9" (uuid 1a1a5714-ed31-4343-a9ba-dcf99f45e7f4)) + (pin "10" (uuid 9b9ae717-8d08-45dd-8ea8-89ef4a83630f)) + (pin "11" (uuid f0932fec-480e-45b8-b0be-e736537b1a0b)) + (pin "12" (uuid f1a2f3c2-9bdc-4171-9860-420a7a2c4149)) + (pin "13" (uuid d914bc39-544e-4a43-acfd-98b692415bd4)) + (pin "14" (uuid b859a0cf-343c-4454-98fd-9dbd25ab4ca2)) + (pin "15" (uuid dafcdd3c-f134-4e2e-aa35-22b819e11fab)) + (pin "16" (uuid 478b219d-6854-4588-90b8-1e58c72c7b7a)) + (pin "17" (uuid 00ffe9f7-30be-42ce-9828-dbcab1b14595)) + (pin "18" (uuid 8eb40817-22dd-45fb-aecb-0ad8044c17a8)) + (pin "19" (uuid 0033e3b1-4e76-4405-9d2f-9f81ea3b2c69)) + (pin "20" (uuid dce05b63-153b-4a3a-b6f5-4d57539a0f8e)) + (pin "21" (uuid 92b813f0-9b9f-461a-a22d-6427e68cc471)) + (pin "22" (uuid 12dd6469-6d9d-4c1c-8a66-a55d22f90778)) + (pin "23" (uuid 6b4389dc-b3d1-4e78-ad78-c3efda610952)) + (pin "24" (uuid b2233fed-6900-4327-a172-76024e98e1bc)) + (pin "25" (uuid 3589c0e3-2841-44ed-a07c-1411fa47c8b1)) + (pin "26" (uuid 53bb4163-0ae1-45c2-8a0d-a07782159aaf)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 318.77 198.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e717a61-a645-4058-ba25-2ad82a45b840) + (property "Reference" "U?" (id 0) (at 318.77 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 318.77 191.77 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 318.77 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 318.77 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e0e7a1a9-6059-4ac7-9911-8291a639d2e0)) + (pin "2" (uuid 1ebc0d44-f74b-4170-bd9b-716ac64c6cc6)) + (pin "3" (uuid 00690832-180e-429b-82e6-452ac8bc422d)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 350.52 205.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 74c7bc96-2ff7-47c3-8294-65a43b317cd7) + (property "Reference" "U?" (id 0) (at 352.5394 189.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 352.5394 193.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 350.52 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 350.52 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 24f9d158-ba01-469b-b3d4-793baafc7835)) + (pin "2" (uuid ecd0fcb8-b052-45e0-834d-c5c89ca04524)) + (pin "3" (uuid 8bd0cae3-8cf5-4e0c-b46a-85db724d7e31)) + (pin "4" (uuid 9997b836-b847-478e-b5c3-d53e848253d8)) + (pin "5" (uuid ce2f2597-31c0-4e41-be45-377e3ef36fdd)) + (pin "6" (uuid 3795eed2-f396-495c-a75e-8b72c12d42df)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 91.44 30.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8994e838-d17b-48d8-afdd-47fc7bc41f7b) + (property "Reference" "U?" (id 0) (at 91.44 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 91.44 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 91.44 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 91.44 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad47fd28-a209-461b-84e3-2fdd29ee862f)) + (pin "2" (uuid 0960bbf6-617a-49a7-979e-448be3bfa4bc)) + (pin "3" (uuid 3b100096-6870-4210-aad6-f7d98dd25558)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 205.74 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab793578-d4af-47c7-9b7a-fd8d0a26d872) + (property "Reference" "U?" (id 0) (at 182.245 200.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 203.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2297aa69-469c-4b59-afe4-54ffee1831da)) + (pin "2" (uuid 3b97a204-e5cd-44cd-a1c5-ee5d6a8b80ab)) + (pin "3" (uuid 0867f4b5-67e4-4478-9b12-7a7d8bee0285)) + (pin "4" (uuid 350f964c-fa11-4bd0-bacd-8b68620a4e52)) + (pin "5" (uuid 22129b4d-a233-418b-951c-17432cd78b1e)) + (pin "6" (uuid a307d86d-479c-42c2-a4d1-b03bffa0dfaf)) + (pin "7" (uuid f873207d-8f41-4259-aacf-6a9208a378f0)) + (pin "8" (uuid 0e2f8bf0-937b-4fab-8ec1-169517dbddb3)) + (pin "9" (uuid 3c7598fc-70b7-4024-9dcd-3ad489fe8ba8)) + (pin "10" (uuid f8b86698-1837-406c-9c0b-31974c9b6270)) + (pin "11" (uuid f2cddaaf-459e-4478-990f-2423a5c83eea)) + (pin "12" (uuid 6353f99f-5c8f-4176-9907-0c9a1600c629)) + (pin "13" (uuid 46b91712-bd34-42de-8433-3aa77f4ebe08)) + (pin "14" (uuid 53e80dfb-d8a8-4109-b25b-f4b6045a2c03)) + (pin "15" (uuid faaab865-2606-4872-8905-359f724baa16)) + (pin "16" (uuid d6d4cb24-375c-455a-abb0-b5b69a8746fc)) + (pin "17" (uuid fb1d0eca-9734-401b-a5df-c7d46c72df10)) + (pin "18" (uuid 58101b53-ea63-48cb-bcf4-d628bba8fdc8)) + (pin "19" (uuid e1bd2980-24bd-4795-ad96-fb5585d24a3b)) + (pin "20" (uuid 781ddba8-8d87-4517-9844-8ffa3e322813)) + (pin "21" (uuid 1ff4ee52-fdd9-453e-ac6c-0d0217009476)) + (pin "22" (uuid cd889445-34c8-44ae-86d5-27c118010fd8)) + (pin "23" (uuid c7fdb560-61c4-4c16-9476-80884fc819c9)) + (pin "24" (uuid 20b749a7-fcea-4322-bf8b-1ec81abb8a6c)) + (pin "25" (uuid 6607a36f-6709-4046-a2c4-01c8b5630135)) + (pin "26" (uuid 41a5a572-ef7b-4ffa-a90a-55c15a2e17aa)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 243.84 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ad8eeb81-cd4f-4883-87ed-15cf2cbef498) + (property "Reference" "U?" (id 0) (at 182.245 238.76 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 241.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 124d45b8-d605-4d54-9e36-3257fd282487)) + (pin "2" (uuid 7114315b-0c45-4d40-a64d-fb911ca5b3d8)) + (pin "3" (uuid b4a41045-fab8-4034-b1d4-356627cbeae7)) + (pin "4" (uuid a0dbd147-f439-4fbe-8685-b8708e16f4a9)) + (pin "5" (uuid 24883811-489c-4d9a-896c-996ffd2813cc)) + (pin "6" (uuid 16a4a410-1e3c-4e61-9e16-8b453ab31c7d)) + (pin "7" (uuid 6d352580-4bc5-48e8-8c09-61366d130d2d)) + (pin "8" (uuid 98e8d5b3-0815-4e0d-a3d5-dc00b9e57706)) + (pin "9" (uuid 291049b9-fd7b-4d07-a0c4-a80386285444)) + (pin "10" (uuid 3a0aa33d-27f4-41f5-ad45-0706612e7837)) + (pin "11" (uuid c1affb49-6d4b-470f-813a-b4ff812ca7f3)) + (pin "12" (uuid 7f11e185-b93e-4827-b225-879127c0f6b9)) + (pin "13" (uuid e609452c-ccdd-4de5-b154-f66927fe33f4)) + (pin "14" (uuid dee007dc-2f2b-4c3d-bbef-6008678820a5)) + (pin "15" (uuid 74408519-25c7-47ec-b7c5-238d19097d68)) + (pin "16" (uuid 2e767171-56dd-47f8-acb2-28cf520cac35)) + (pin "17" (uuid 54083b67-33a0-4b8b-b152-bbe4e75b1d1a)) + (pin "18" (uuid 364995ed-a5ad-4cad-92aa-cf87226de9b9)) + (pin "19" (uuid b51a4be5-0488-4955-a80d-1ebb271f1bba)) + (pin "20" (uuid 73eadfb4-9c14-43e4-bc30-4e364870f34b)) + (pin "21" (uuid 05d736db-5622-41a3-b0d5-538850924aaf)) + (pin "22" (uuid c54aabd6-b439-42d1-b119-ba2901065474)) + (pin "23" (uuid 5a12f217-3bf3-48af-88a8-8e43bd9caa7a)) + (pin "24" (uuid e76a00d9-c1bd-42e1-82d2-440c801ce716)) + (pin "25" (uuid ba4ffe8e-6f65-494f-b851-cb0b4fab50b4)) + (pin "26" (uuid 1d9ab63b-4a9e-4f80-9db2-acae1f759c09)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 140.97 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b147815d-8d8e-442b-929e-ddff14165f03) + (property "Reference" "U?" (id 0) (at 182.245 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 138.43 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92136cfe-b45b-48d7-b67e-163cf3a38c56)) + (pin "2" (uuid 68f9c027-f32b-42ad-be9d-07e8e03ff77e)) + (pin "3" (uuid 8911c359-998b-408b-babe-5529fc0d4a79)) + (pin "4" (uuid 79dd9199-8533-460e-a17b-b4965dd134a4)) + (pin "5" (uuid 24d47506-5037-4d53-a0f1-a0ac80be1814)) + (pin "6" (uuid 6248bd3a-7a30-4480-bd2b-922228ebbca6)) + (pin "7" (uuid f2d79607-5d46-4ea7-9fe2-c5d0452c509c)) + (pin "8" (uuid fae7c13f-5ce5-4fd2-9822-fa3d6619eee1)) + (pin "9" (uuid 135600c0-e8a6-43e2-aa57-96a1fb49ec31)) + (pin "10" (uuid 75d45e4b-60a7-4241-a84f-2b8df663ab7a)) + (pin "11" (uuid 82aba878-c32c-4e92-9900-325a1dd27263)) + (pin "12" (uuid 806a3421-fc32-47e0-93da-9388ffece9ae)) + (pin "13" (uuid 23a9f6bd-4772-47b6-a241-531cfad761cc)) + (pin "14" (uuid cb7418f0-b2c4-45cb-8f14-179947979979)) + (pin "15" (uuid 93851a8a-c575-4c9a-8ad7-7f80a5b9f901)) + (pin "16" (uuid ee8220b9-32cd-4789-99f5-7e5066f3bb17)) + (pin "17" (uuid 901e6a11-2605-423a-91b5-ab8caa27ac8c)) + (pin "18" (uuid cf7ccbf9-59b5-40f4-9cc6-595d5bac3607)) + (pin "19" (uuid 850188d2-b1bf-40b3-b050-9875014a4961)) + (pin "20" (uuid 322c7f37-3676-49b9-9c59-e65c79fa1177)) + (pin "21" (uuid 043454fb-1f3a-4a10-b87f-7e7bae7674f0)) + (pin "22" (uuid 99f666a2-7fd7-49f5-9c36-13d4fe577e00)) + (pin "23" (uuid aa9cf810-4f24-438f-8b98-b2e4f0acc300)) + (pin "24" (uuid 03db4c83-59d9-4054-b2c2-43f2263d6f2e)) + (pin "25" (uuid 6dec4ffb-9fbe-4b6f-b851-84bfad9fb7d1)) + (pin "26" (uuid 5029b98c-3cf0-4c90-8cd1-27fd5b76234e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 203.2 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b38723d8-5acc-4f77-bfa6-9892fc1093b8) + (property "Reference" "U?" (id 0) (at 203.2 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 203.2 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid df6e82a3-30ba-41b8-a527-761fd3fe8f3d)) + (pin "2" (uuid 2d5e0af3-536c-4c09-825c-5f50f8f5771f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 85.09 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b8068420-3713-4781-aa01-a74e0e8cba76) + (property "Reference" "U?" (id 0) (at 28.575 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 991d5307-735d-480f-acc3-7e344a38ab56)) + (pin "2" (uuid d5be3f9d-8cf8-4457-a802-28f29f64fd6c)) + (pin "3" (uuid 04ef701f-dd99-4981-9be4-401e57ff41ba)) + (pin "4" (uuid 7db89092-4522-4018-a6b2-1629443b9a88)) + (pin "5" (uuid a62da559-d860-45dc-8744-fb62d900972a)) + (pin "6" (uuid 948b5e41-2d42-4c02-9899-d3539989de81)) + (pin "7" (uuid a5682e77-3897-4bbc-b87a-b2a1124c6b53)) + (pin "8" (uuid 47a98e0a-ebf2-4e66-9e1c-6bdc68e563f1)) + (pin "9" (uuid d6ff1a03-aa85-481f-b566-b49e79f963b1)) + (pin "10" (uuid f8b81dda-bdea-4249-990f-f35c5b7a9422)) + (pin "11" (uuid 045de480-6833-406d-adfb-9023b5a162b8)) + (pin "12" (uuid 1cc07506-639f-4731-938a-9ad307556bb2)) + (pin "13" (uuid 00364ae3-c8db-4861-835f-849012705349)) + (pin "14" (uuid ada31dea-99fb-4d0e-99a4-5e49ad917995)) + (pin "15" (uuid 7efe92d0-5475-4bfc-acb0-fa126eff2cf4)) + (pin "16" (uuid 205e611a-7cd9-4d45-85e5-a76cdbc847dd)) + (pin "17" (uuid 43ad2e57-1807-4c42-bd75-8a4e36c442d9)) + (pin "18" (uuid 7d97aebc-ff55-4796-8596-567a23de8e87)) + (pin "19" (uuid de598d04-f823-4880-8b50-01f22ade93d5)) + (pin "20" (uuid a66bb4ac-0a27-4c16-85f6-f8f9366f74e7)) + (pin "21" (uuid 913fe5bf-e208-4a23-a2ad-3d7d51235372)) + (pin "22" (uuid a1c6b980-1f7e-4389-8ef3-49b3e0ebdabe)) + (pin "23" (uuid 926f64a4-c44a-4860-9562-17208fe085b6)) + (pin "24" (uuid d8bfbda6-5d99-4c53-948f-59e4b125c08e)) + (pin "25" (uuid a58fe7ae-a37d-42c3-a6ab-e7ab44b88939)) + (pin "26" (uuid 09c2d07b-b98e-47a1-953f-91d30fae1c0b)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 165.1 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc0347c3-4361-401e-94ef-944b3f0714fe) + (property "Reference" "U?" (id 0) (at 165.1 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 165.1 71.12 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 165.1 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 165.1 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dc2fd609-e357-48da-a225-c4119caf5ea9)) + (pin "2" (uuid 2f0e6489-2329-42a4-99da-d7366498326e)) + (pin "3" (uuid 1cfa6fae-95ed-48de-827b-711619a62448)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 228.6 76.2 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c5c46c4d-2b98-46e9-a462-64c049c3eacc) + (property "Reference" "U?" (id 0) (at 232.41 75.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 232.41 78.105 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 228.6 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97a4d351-17f4-4bb9-8cfd-1affe9d08008)) + (pin "2" (uuid ebc523a5-70fe-460c-89b7-275aa3a5df2e)) + (pin "3" (uuid 2e1d5371-366a-4394-a330-2cd0190943ec)) + (pin "4" (uuid 910f58b3-b9e9-46fd-8c08-1293760fbc94)) + (pin "5" (uuid a0828bf1-81b7-49a4-94aa-e6c24d0c6d19)) + (pin "6" (uuid bc495216-fa7f-412d-8eb5-4358f9f2909a)) + (pin "7" (uuid 839db165-31cd-490f-88ed-dad76c6ec349)) + (pin "8" (uuid 2a35c9e4-051d-470d-be8c-e70cb39d6631)) + (pin "9" (uuid 7d3240e2-b8c9-491e-8080-3aba362ac268)) + (pin "10" (uuid a662660d-7d55-4628-8cd8-0ee2175ac617)) + (pin "11" (uuid 4c9161a8-7ba2-4cfd-88f2-b1b8b2cee6cf)) + (pin "12" (uuid d793d471-dbed-414e-9795-11404557c5f1)) + (pin "13" (uuid e2c6f23f-1ae9-4128-86c3-02b0b6e2b023)) + (pin "14" (uuid 183ea4dd-e3b0-4702-b085-29f1cd93b80e)) + (pin "15" (uuid 523816ab-4dfe-4a1a-a4f3-c45f1a986ddc)) + (pin "16" (uuid 105ad5ff-f51b-40e5-856b-8479749cc513)) + (pin "17" (uuid d9287449-44e6-4475-9cf9-f8e808662cdc)) + (pin "18" (uuid 21a0a2e6-6c52-4141-8f29-77a468f0d7e1)) + (pin "19" (uuid bd25ee79-b409-4e33-9413-8d06f4c04ce6)) + (pin "20" (uuid f0a27245-cb5a-4f97-9bd3-f57ad258fde3)) + (pin "21" (uuid bcda9cb2-9de9-4a48-bb0d-f9d3d04da5f4)) + (pin "22" (uuid cfe1f929-7752-499c-bfa0-aa75d20441fa)) + (pin "23" (uuid d9fec553-0b40-4894-afc8-9b30accf3fca)) + (pin "24" (uuid 0de7516f-a6ab-4e9c-b150-32156f0f8da8)) + (pin "25" (uuid 322945e4-7969-4c73-9206-78322f3da38f)) + (pin "26" (uuid 0081c9b9-7c6e-4211-bf68-cfafe1b5c60f)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 134.62 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d27a3e7a-480c-4f17-a33e-8dc6072c1d17) + (property "Reference" "U?" (id 0) (at 134.62 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 134.62 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 134.62 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 134.62 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 059f0804-416b-4b7d-ab0d-dc7599e534e0)) + (pin "2" (uuid 51782874-b692-46fa-a4c9-54a336f32176)) + (pin "3" (uuid c5c72053-600d-44fa-be25-002e2c73afaf)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 185.42 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d412bce0-3a60-4657-9dc3-876df421e997) + (property "Reference" "U?" (id 0) (at 182.245 180.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 182.88 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 27c2f092-5a8d-4da0-a0d5-ce5e78b57606)) + (pin "2" (uuid 23123db2-9e5e-4443-a5f5-aaa8e7a7030f)) + (pin "3" (uuid 52b51c05-c5be-4d1c-ab91-9f908b8fb8dc)) + (pin "4" (uuid a8653799-7b14-44fb-99be-c3190354ac51)) + (pin "5" (uuid 662d9130-e888-4041-91c9-beee4bc4304b)) + (pin "6" (uuid ce427292-7af4-4525-acd5-746f324b7a06)) + (pin "7" (uuid 3e3c5fcd-831b-494d-8700-3daed2d29e0a)) + (pin "8" (uuid ab8ef1b2-4c1e-4fd5-918b-96e6756fb80c)) + (pin "9" (uuid 894913f4-4f6d-4875-aebd-fc510bd944a1)) + (pin "10" (uuid 125085b8-6273-4766-b2ad-b025500b024e)) + (pin "11" (uuid 3d12561f-32b8-4646-94a4-82494e1f6809)) + (pin "12" (uuid 09836232-e58b-4933-8dbd-a10ccab2680b)) + (pin "13" (uuid c622ee67-9f2a-4c2e-8c1d-793203524ebd)) + (pin "14" (uuid 053f7753-7163-4b62-a4de-1cbdb562f4ec)) + (pin "15" (uuid 0db318ff-dea5-4d32-8720-b2053ea1f43a)) + (pin "16" (uuid 76d30341-bbb4-48b6-845c-6e7fbc3e78f6)) + (pin "17" (uuid ae288e01-62de-435b-9239-ce12d8ed1828)) + (pin "18" (uuid d733e86d-448f-4c11-b434-297340011b9c)) + (pin "19" (uuid beaea314-cb2b-47fb-9ebe-e466528875df)) + (pin "20" (uuid ca4b5d0e-d60b-4c88-88c6-d3e6337b189f)) + (pin "21" (uuid f505d0b1-5342-4b59-8918-9d126b3811b1)) + (pin "22" (uuid a295dff2-abfb-4417-a545-06bfe1073b4d)) + (pin "23" (uuid fcdc49e1-dac6-4866-bc8b-1d1b93c90e77)) + (pin "24" (uuid 023b9ac6-d528-40fc-85c3-a15c5eb5d65a)) + (pin "25" (uuid a0e6dbf5-ed6a-4aa7-acc2-2c377d6566d3)) + (pin "26" (uuid 77716f7e-1b1b-4fdc-9ab6-e67313662785)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 245.11 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9219176-fe85-4d0c-93e0-7dc12f710dc0) + (property "Reference" "U?" (id 0) (at 245.11 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 245.11 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 245.11 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 245.11 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4df3c233-61c5-47b3-8582-922339f1922e)) + (pin "2" (uuid 31951016-dfc6-4e23-8e38-16d2aec72702)) + (pin "3" (uuid 0c827cd1-ade8-43f0-b13b-60c66091aaba)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 29.21 43.18 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f379b4dc-0357-49b7-8390-ae970c07d8ee) + (property "Reference" "U?" (id 0) (at 29.845 38.1 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 29.845 40.64 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 29.21 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 29.21 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f79cb863-1c6d-42e8-934a-e69c6fe60d13)) + (pin "2" (uuid c28d202d-f76f-40ad-a11f-981ce66a2613)) + (pin "3" (uuid 5d91ee97-cf17-4877-b118-20e46377976e)) + (pin "4" (uuid 5ed32948-9f19-4b04-98fe-645f83a5310e)) + (pin "5" (uuid e55cf8bd-8a76-4102-8f70-fbfde6a82523)) + (pin "6" (uuid 7ef0e9c0-21da-46ec-a3e8-8bf051bcf2ee)) + (pin "7" (uuid 2a53130a-6b11-445a-a0a7-634647824e96)) + (pin "8" (uuid 3559ec9b-a379-484a-bed7-21a193a386fe)) + (pin "9" (uuid 59e61083-d45e-42b4-bd72-fcac44b667ed)) + (pin "10" (uuid e1b9c36e-eaaf-4497-928c-bab080e3a578)) + (pin "11" (uuid 044bb50e-e087-4a29-9a5b-98f0e93bd6e7)) + (pin "12" (uuid a920e886-cd88-426a-abfd-dc1b2faceaf1)) + (pin "13" (uuid 46f7255d-6022-4ec2-ac0e-74513a259fee)) + (pin "14" (uuid 1fe722be-0694-4702-b7bc-442aa74f98ac)) + (pin "15" (uuid e43188f2-2835-4d49-950d-2fa8a776cd75)) + (pin "16" (uuid 91288e7f-102f-419c-bef4-95bd97cf080f)) + (pin "17" (uuid 80015c67-7960-4086-8a8e-9681a6993656)) + (pin "18" (uuid 28ca17f6-8d2e-4db9-8070-89b4d3b49fc0)) + (pin "19" (uuid 395f860f-d315-4f40-9f52-c6e5e296acd8)) + (pin "20" (uuid b8147afa-b027-4cf6-b832-50e45970ce7a)) + (pin "21" (uuid 5ea5feff-6233-4887-bb92-a3f076f40c16)) + (pin "22" (uuid d2aebd49-bffc-42e4-926d-ae54861f870a)) + (pin "23" (uuid 533008f8-4079-416a-b5fe-9ab27568441a)) + (pin "24" (uuid 75febac6-d4df-4825-bd56-5341b3967723)) + (pin "25" (uuid 7a7228ba-bca4-46cb-92f7-000c6d88781e)) + (pin "26" (uuid 6c9f8ea5-9910-4f1d-b8fd-83bc7d9df023)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 383.54 196.85 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f742a491-72dd-420e-ac4b-2d7b71cba5a6) + (property "Reference" "U?" (id 0) (at 387.35 196.215 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 387.35 198.755 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 383.54 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 383.54 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a3fe89a5-732a-431b-89a1-f034f24087d3)) + (pin "2" (uuid 9a279f79-8e81-4407-93b8-862662585a0b)) + (pin "3" (uuid 20ac725d-5ccf-45e0-9384-c16ac3ba8d6d)) + (pin "4" (uuid 10b9bab9-6e8a-4b87-8a23-45c147f1a447)) + (pin "5" (uuid 282173c9-b3d6-4f92-ad6c-1411b89b5baf)) + (pin "6" (uuid cbd55ea1-1afe-4ac6-bae6-584cb42f5561)) + (pin "7" (uuid 23dbd95e-8898-42dc-94af-0de589185bc1)) + (pin "8" (uuid d0eb95e9-b629-4c60-bdd9-8ac46f4a3da5)) + (pin "9" (uuid 4d370db4-edaf-4975-b95a-80430aafc6f6)) + (pin "10" (uuid 57cd6132-8acf-49e9-9582-f5f91da67dc6)) + (pin "11" (uuid af1d76b9-c2b3-44f2-93e7-480d2fa3dec1)) + (pin "12" (uuid 126ca0fb-20c2-4c51-8617-c50af5aa0d72)) + (pin "13" (uuid 3f51d5e8-81fd-404d-8821-55e6a33af609)) + (pin "14" (uuid 32b4ec98-9e3b-4ac7-b674-3dcb1436b454)) + (pin "15" (uuid 0f8e763a-4e39-4253-9d0b-4bc0e1fd25aa)) + (pin "16" (uuid 763d7f9d-72a9-4a4b-b09f-af10889aeb4c)) + (pin "17" (uuid 709c12d0-3010-43a2-b86d-4b32e0ab005d)) + (pin "18" (uuid 3750a673-5574-4008-86c1-53fe94e05923)) + (pin "19" (uuid c0d29a4a-ffc6-4d18-acdb-9e7cd1b18d18)) + (pin "20" (uuid 5d197da3-9b00-495e-b33c-2bab31c78e9a)) + (pin "21" (uuid 51b329eb-0520-4879-99cc-c4eec8546759)) + (pin "22" (uuid f310f78b-110f-46d8-b84f-4608a67b38e5)) + (pin "23" (uuid 2167da47-29db-489d-a532-b4ccfcf4b146)) + (pin "24" (uuid 5eb79dd5-9c3a-4ab7-97fe-2d813ced7f1f)) + (pin "25" (uuid 43f6eeea-3733-44a8-bf23-2eedfa85e3a9)) + (pin "26" (uuid c87b5b99-2386-4701-ad21-d08a3d56569a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 182.88 163.83 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe2b32b9-709a-49d0-b801-7d71c43989d9) + (property "Reference" "U?" (id 0) (at 183.515 158.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 183.515 161.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 182.88 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 60df745c-c4f9-4a27-9e3e-beb3fc9d6c59)) + (pin "2" (uuid ecd2c39e-6029-4d8d-a6e6-e620fa9829b3)) + (pin "3" (uuid af2bad12-3004-46c9-b3a3-7ca14b5c7ebf)) + (pin "4" (uuid b53c42b5-12e2-452c-915e-f40a5793e166)) + (pin "5" (uuid 0ad52bbe-a790-4668-91b4-6ad9d47174ed)) + (pin "6" (uuid d4d1b088-b49e-49fc-9f61-b22b0289cfcd)) + (pin "7" (uuid 06dfc3a8-a177-4189-930d-000d92b7b44e)) + (pin "8" (uuid f484614e-874d-4469-9807-4e2371e901f2)) + (pin "9" (uuid 5c5ef470-dea8-4eb5-b0d3-acc44303db9e)) + (pin "10" (uuid a0270e4e-8db1-4ed4-954e-5f35f947dd0f)) + (pin "11" (uuid 707fd269-1153-4f59-9293-1afabcd628a8)) + (pin "12" (uuid 4b332a1d-0003-48c2-b901-5431977ab77e)) + (pin "13" (uuid c71b40b4-2e6d-4169-a210-93bc7502daeb)) + (pin "14" (uuid 26ed537b-c5f0-4d11-8708-cd3ede68d3d2)) + (pin "15" (uuid 1b17c73b-d479-4c4f-a2da-c3f39c5703b0)) + (pin "16" (uuid 23464918-c5dc-4f6d-abee-f0764c7d2211)) + (pin "17" (uuid b1f6963f-941c-4112-8a40-76e0128bedd4)) + (pin "18" (uuid 23d37d20-6d21-443f-bf1e-319f7bd637a9)) + (pin "19" (uuid ff3daf6e-6eac-45aa-a856-a2d6471ec279)) + (pin "20" (uuid 3de9e939-5094-4300-8850-e83bcfc905ed)) + (pin "21" (uuid c2479f80-4a44-4ec1-8a4b-fda23f949dbf)) + (pin "22" (uuid 99c54d91-9add-4282-8191-d4d621042689)) + (pin "23" (uuid cefa112d-7f92-4dbf-8df7-1216333117d2)) + (pin "24" (uuid ee238eb8-f278-40d6-ba75-9544ff7e73f7)) + (pin "25" (uuid 63f3a8a7-1505-41eb-9df3-57ebfc6bd813)) + (pin "26" (uuid 3d068d5c-ba43-4411-aa6b-491c9b00c8a3)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/09b4815b-0dc1-42af-8080-55554666f2a2" + (reference "U?") (unit 1) (value "d_or") (footprint "") + ) + (path "/1527dda0-f85c-4eaa-b25b-5d7944cbf1cc" + (reference "U?") (unit 1) (value "PORT") (footprint "") + ) + (path "/1d860f5f-d07f-4406-b647-3cc9608b5a03" + (reference "U?") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/29f13e57-6de3-4eb4-a145-ebddc9118b16" + (reference "U?") (unit 1) (value "d_dff") (footprint "") + ) + (path "/4843dc79-d72c-4d1b-9398-eb469ebf8804" + (reference "U?") (unit 1) (value "d_and") (footprint "") + ) + (path "/53fba5e1-63b0-4afc-9d8a-df604f3299ed" + (reference "U?") (unit 1) (value "d_and") (footprint "") + ) + (path "/6e717a61-a645-4058-ba25-2ad82a45b840" + (reference "U?") (unit 1) (value "d_xor") (footprint "") + ) + (path "/74c7bc96-2ff7-47c3-8294-65a43b317cd7" + (reference "U?") (unit 1) (value "d_dff") (footprint "") + ) + (path "/8994e838-d17b-48d8-afdd-47fc7bc41f7b" + (reference "U?") (unit 1) (value "d_and") (footprint "") + ) + (path "/b38723d8-5acc-4f77-bfa6-9892fc1093b8" + (reference "U?") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bc0347c3-4361-401e-94ef-944b3f0714fe" + (reference "U?") (unit 1) (value "d_xor") (footprint "") + ) + (path "/d27a3e7a-480c-4f17-a33e-8dc6072c1d17" + (reference "U?") (unit 1) (value "d_or") (footprint "") + ) + (path "/e9219176-fe85-4d0c-93e0-7dc12f710dc0" + (reference "U?") (unit 1) (value "d_and") (footprint "") + ) + (path "/355ec12d-3171-4662-a60e-5222fb7f7636" + (reference "U?") (unit 2) (value "PORT") (footprint "") + ) + (path "/f379b4dc-0357-49b7-8390-ae970c07d8ee" + (reference "U?") (unit 3) (value "PORT") (footprint "") + ) + (path "/51236645-2d2a-44b2-b80f-ad5d651dde40" + (reference "U?") (unit 4) (value "PORT") (footprint "") + ) + (path "/b8068420-3713-4781-aa01-a74e0e8cba76" + (reference "U?") (unit 5) (value "PORT") (footprint "") + ) + (path "/c5c46c4d-2b98-46e9-a462-64c049c3eacc" + (reference "U?") (unit 6) (value "PORT") (footprint "") + ) + (path "/634d043b-1612-4d53-a470-30ab3f745e21" + (reference "U?") (unit 7) (value "PORT") (footprint "") + ) + (path "/35e9ea0d-99e1-44e4-aa7e-0eb9344c8774" + (reference "U?") (unit 8) (value "PORT") (footprint "") + ) + (path "/0e3896b0-ffb7-4908-a944-9376c6fe4b8f" + (reference "U?") (unit 9) (value "PORT") (footprint "") + ) + (path "/f742a491-72dd-420e-ac4b-2d7b71cba5a6" + (reference "U?") (unit 10) (value "PORT") (footprint "") + ) + (path "/ab793578-d4af-47c7-9b7a-fd8d0a26d872" + (reference "U?") (unit 11) (value "PORT") (footprint "") + ) + (path "/d412bce0-3a60-4657-9dc3-876df421e997" + (reference "U?") (unit 12) (value "PORT") (footprint "") + ) + (path "/fe2b32b9-709a-49d0-b801-7d71c43989d9" + (reference "U?") (unit 13) (value "PORT") (footprint "") + ) + (path "/b147815d-8d8e-442b-929e-ddff14165f03" + (reference "U?") (unit 14) (value "PORT") (footprint "") + ) + (path "/ad8eeb81-cd4f-4883-87ed-15cf2cbef498" + (reference "U?") (unit 15) (value "PORT") (footprint "") + ) + (path "/13b6c329-1b5d-4e89-8062-628eaee2f2c0" + (reference "U?") (unit 16) (value "PORT") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.sub b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.sub new file mode 100644 index 000000000..7136cd3c1 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100.sub @@ -0,0 +1,54 @@ +* Subcircuit SN74LVC2G100 +.subckt SN74LVC2G100 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ unconnected-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ unconnected-_u1-pad16_ +.title kicad schematic +* u3 net-_u1-pad3_ net-_u1-pad4_ net-_u3-pad3_ d_and +* u4 net-_u1-pad2_ net-_u2-pad2_ net-_u4-pad3_ d_and +* u2 net-_u1-pad4_ net-_u2-pad2_ d_inverter +* u5 net-_u4-pad3_ net-_u3-pad3_ net-_u5-pad3_ d_or +* u6 net-_u5-pad3_ net-_u1-pad5_ net-_u6-pad3_ d_xor +* u8 net-_u1-pad12_ net-_u10-pad2_ d_inverter +* u12 net-_u11-pad3_ net-_u1-pad11_ net-_u12-pad3_ d_xor +* u13 net-_u12-pad3_ net-_u1-pad9_ unconnected-_u13-pad3_ net-_u1-pad15_ net-_u1-pad10_ unconnected-_u13-pad6_ d_dff +* u11 net-_u10-pad3_ net-_u11-pad2_ net-_u11-pad3_ d_or +* u7 net-_u6-pad3_ net-_u1-pad7_ unconnected-_u7-pad3_ net-_u1-pad1_ net-_u1-pad6_ unconnected-_u7-pad6_ d_dff +* u9 net-_u1-pad13_ net-_u1-pad12_ net-_u11-pad2_ d_and +* u10 net-_u1-pad14_ net-_u10-pad2_ net-_u10-pad3_ d_and +a1 [net-_u1-pad3_ net-_u1-pad4_ ] net-_u3-pad3_ u3 +a2 [net-_u1-pad2_ net-_u2-pad2_ ] net-_u4-pad3_ u4 +a3 net-_u1-pad4_ net-_u2-pad2_ u2 +a4 [net-_u4-pad3_ net-_u3-pad3_ ] net-_u5-pad3_ u5 +a5 [net-_u5-pad3_ net-_u1-pad5_ ] net-_u6-pad3_ u6 +a6 net-_u1-pad12_ net-_u10-pad2_ u8 +a7 [net-_u11-pad3_ net-_u1-pad11_ ] net-_u12-pad3_ u12 +a8 net-_u12-pad3_ net-_u1-pad9_ unconnected-_u13-pad3_ net-_u1-pad15_ net-_u1-pad10_ unconnected-_u13-pad6_ u13 +a9 [net-_u10-pad3_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a10 net-_u6-pad3_ net-_u1-pad7_ unconnected-_u7-pad3_ net-_u1-pad1_ net-_u1-pad6_ unconnected-_u7-pad6_ u7 +a11 [net-_u1-pad13_ net-_u1-pad12_ ] net-_u11-pad2_ u9 +a12 [net-_u1-pad14_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u6 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u12 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u13 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u11 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u7 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN74LVC2G100 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100_Previous_Values.xml b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100_Previous_Values.xml new file mode 100644 index 000000000..c78e0e239 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC2G100/SN74LVC2G100_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andd_inverterd_ord_xord_inverterd_xord_dffd_ord_dffd_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74LVC2G100/_autosave-SN74LVC2G100.kicad_sch b/library/SubcircuitLibrary/SN74LVC2G100/_autosave-SN74LVC2G100.kicad_sch new file mode 100644 index 000000000..31f6cc6aa --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC2G100/_autosave-SN74LVC2G100.kicad_sch @@ -0,0 +1,1801 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 31bb3ee2-e5e3-46b8-8f37-f529f71db006) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_xor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_xor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -5.08 -1.27) (mid -4.3109 1.27) (end -5.08 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.27) + (xy -5.08 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 3.81) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_xor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.0922 1.0922)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.0922 1.0922)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 0.9906 0.9906)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 191.77 185.42) (diameter 0) (color 0 0 0 0) + (uuid 49a53bb9-6582-4299-97bb-9700a3df8d65) + ) + (junction (at 38.1 64.77) (diameter 0) (color 0 0 0 0) + (uuid a81cf9d3-a66d-46a9-ae2b-61c577a15f8a) + ) + + (no_connect (at 350.52 189.23) (uuid 2b7c7f3a-04d1-4de9-9f4f-e1f42308dd92)) + (no_connect (at 210.82 92.71) (uuid 48c76255-67d1-432c-be3d-b9e9b2f54d4d)) + (no_connect (at 57.15 168.91) (uuid 8b5d3a05-1ecf-4f1c-b0a6-facf3547c9de)) + (no_connect (at 364.49 213.36) (uuid 8d52b4ae-7bb6-4af3-adea-508686141d52)) + (no_connect (at 54.61 148.59) (uuid cd7231ed-8a70-40fb-99ac-9ddd50628beb)) + (no_connect (at 196.85 68.58) (uuid d9770f4e-3af7-45cf-a555-69293b533129)) + + (wire (pts (xy 275.59 160.02) (xy 276.86 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 098c85ee-2064-409d-b49a-b03efd5c1c4d) + ) + (wire (pts (xy 304.8 198.12) (xy 304.8 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0beb3e59-3f24-4ea5-bbfb-ae2c83ec8e7a) + ) + (wire (pts (xy 151.13 68.58) (xy 151.13 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c243e5d-ddf6-4de9-b8c8-8f29f047dd06) + ) + (wire (pts (xy 102.87 29.21) (xy 111.76 29.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c8d3712-9807-4b54-9807-822d809cf1cf) + ) + (wire (pts (xy 35.56 43.18) (xy 72.39 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0df56a33-afb4-4385-8d59-4e12d7a4d89f) + ) + (wire (pts (xy 121.92 39.37) (xy 123.19 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1084097c-9c60-49c6-9b2f-de8e67b83de1) + ) + (wire (pts (xy 34.29 123.19) (xy 196.85 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1413b3ec-45b2-42a2-9d8f-05e004ef9d82) + ) + (wire (pts (xy 187.96 185.42) (xy 191.77 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c2d58ba-71ff-4753-b77a-f5c400a5272e) + ) + (wire (pts (xy 179.07 104.14) (xy 179.07 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e7ed344-b128-4f5d-b3db-7c3c72df4d18) + ) + (wire (pts (xy 196.85 121.92) (xy 196.85 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fe2bd4d-a0d9-4f3f-8381-e08bea7a8a7c) + ) + (wire (pts (xy 151.13 74.93) (xy 153.67 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22706f21-a60b-40d4-aa9a-edb4aaa45176) + ) + (wire (pts (xy 265.43 149.86) (xy 265.43 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b241bf3-a7ea-403a-a8d3-1f7db1586137) + ) + (wire (pts (xy 191.77 185.42) (xy 195.58 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e27d46b-ffe7-41ee-aa9f-cff06365f937) + ) + (wire (pts (xy 72.39 43.18) (xy 72.39 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3881d235-acdd-4222-bde5-305993d647a4) + ) + (wire (pts (xy 228.6 181.61) (xy 228.6 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b7e52c1-85da-4379-8d56-6adf732563ec) + ) + (wire (pts (xy 222.25 148.59) (xy 233.68 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ed183c8-44b6-4633-9470-0146063c7fc6) + ) + (wire (pts (xy 121.92 48.26) (xy 123.19 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ff0d81c-3d60-4526-b276-0f281f9d6430) + ) + (wire (pts (xy 68.58 20.32) (xy 68.58 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4461e308-d7eb-4802-b5f8-2d789d0baa0f) + ) + (wire (pts (xy 101.6 62.23) (xy 111.76 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44950242-2424-4941-8256-aa3a94a5e48f) + ) + (wire (pts (xy 332.74 213.36) (xy 336.55 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45fbac85-6f3b-4873-a56f-428bc75b656b) + ) + (wire (pts (xy 222.25 151.13) (xy 233.68 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48820594-64b3-4d2e-bf40-fb7169bda571) + ) + (wire (pts (xy 111.76 29.21) (xy 111.76 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49d1015a-e144-41a1-8b39-e3ff98bfc32d) + ) + (wire (pts (xy 299.72 163.83) (xy 302.26 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a9b3266-09aa-46d6-be10-d2e75b4f2fb6) + ) + (wire (pts (xy 232.41 173.99) (xy 232.41 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d44b628-0650-45f0-837d-93979fe1d5f3) + ) + (wire (pts (xy 187.96 243.84) (xy 350.52 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ddd045d-601e-40c1-880a-1322d71e17e9) + ) + (wire (pts (xy 111.76 48.26) (xy 121.92 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e5bb7d9-2880-4d0d-b857-1d7c33adb859) + ) + (wire (pts (xy 265.43 182.88) (xy 265.43 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ebb651f-fe99-4410-9dd0-2bc9387e782d) + ) + (wire (pts (xy 332.74 224.79) (xy 332.74 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fa3bae7-f30d-48a4-b728-0f0431425e85) + ) + (wire (pts (xy 34.29 85.09) (xy 151.13 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50bb4d0a-9305-410a-b574-5d6a5e22b034) + ) + (wire (pts (xy 187.96 226.06) (xy 332.74 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53863e8f-2ffc-4472-bbe4-9dc64bb52095) + ) + (wire (pts (xy 57.15 64.77) (xy 68.58 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b79286d-6336-4c16-a958-5d7e378e80d5) + ) + (wire (pts (xy 34.29 105.41) (xy 179.07 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e028680-e9b3-4e11-ad86-8eca88f805cd) + ) + (wire (pts (xy 222.25 76.2) (xy 210.82 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f552264-9e26-4e6f-a478-d2a6c7ac6980) + ) + (wire (pts (xy 146.05 43.18) (xy 148.59 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60ce08eb-85f3-4381-8410-641d5938b741) + ) + (wire (pts (xy 72.39 53.34) (xy 78.74 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63f96988-44c0-4206-a442-2da630a5dd67) + ) + (wire (pts (xy 68.58 27.94) (xy 80.01 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 669536a6-c025-4230-9af2-721d5f9fb029) + ) + (wire (pts (xy 222.25 140.97) (xy 222.25 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bf1ffc6-a0a0-4140-b6c9-98668f177a30) + ) + (wire (pts (xy 148.59 43.18) (xy 148.59 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e646a52-087a-4380-a010-ea9d7332a849) + ) + (wire (pts (xy 179.07 92.71) (xy 182.88 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7096487a-65d8-4e26-8dcd-c0ea6ab4c062) + ) + (wire (pts (xy 189.23 163.83) (xy 226.06 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75ceda96-59d1-4a39-9904-f4aca87041b7) + ) + (wire (pts (xy 68.58 30.48) (xy 80.01 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76ac2912-96d3-408e-ac2a-153240560791) + ) + (wire (pts (xy 275.59 168.91) (xy 276.86 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a17dc35-802a-46e0-b172-746c4bd310a4) + ) + (wire (pts (xy 191.77 181.61) (xy 191.77 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ab2f9c4-eb11-4458-a09b-d6af067a2855) + ) + (wire (pts (xy 148.59 68.58) (xy 151.13 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 840728ac-e0b8-42ec-9b7c-a7c264ae36ae) + ) + (wire (pts (xy 265.43 168.91) (xy 275.59 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f976b26-1959-46d1-aef5-7eb899691364) + ) + (wire (pts (xy 187.96 140.97) (xy 222.25 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9051876d-fb08-42d6-8f81-6c2a659dd589) + ) + (wire (pts (xy 302.26 189.23) (xy 304.8 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9405bc6b-5e0d-4250-994f-349d73466d27) + ) + (wire (pts (xy 29.21 148.59) (xy 54.61 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 983a3159-9a49-46cb-adce-0e1d5b3aaf9b) + ) + (wire (pts (xy 78.74 53.34) (xy 78.74 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c1e4f4a-b624-42b3-a6a4-94f16a5b9846) + ) + (wire (pts (xy 265.43 160.02) (xy 275.59 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ed4ee30-e27a-4a02-8aa5-dcad8008d3a3) + ) + (wire (pts (xy 256.54 149.86) (xy 265.43 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fc835b7-b0e4-4f2b-98f5-9c0a345cc985) + ) + (wire (pts (xy 151.13 77.47) (xy 151.13 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2875ae2-144c-4f7a-9518-72fc0844ff3e) + ) + (wire (pts (xy 38.1 60.96) (xy 38.1 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a45bae6d-5c37-4c20-ab5b-bee1c7b672c9) + ) + (wire (pts (xy 151.13 77.47) (xy 153.67 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac3547c0-6ede-4fa3-9878-5dc94303da39) + ) + (wire (pts (xy 210.82 185.42) (xy 222.25 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8a3d6b5-b7ad-4be1-8320-6732ae6cfd5c) + ) + (wire (pts (xy 304.8 198.12) (xy 307.34 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b988df86-dd17-43ca-b4f8-48a849392e69) + ) + (wire (pts (xy 226.06 163.83) (xy 226.06 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbeb8b48-898c-473e-b9fa-adead23b1e37) + ) + (wire (pts (xy 34.29 20.32) (xy 68.58 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc4b2258-76ee-4ae5-91c0-aabac7afcfdc) + ) + (wire (pts (xy 255.27 182.88) (xy 265.43 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdcd4f3a-31cc-4a92-a095-b8a2975cbff9) + ) + (wire (pts (xy 111.76 62.23) (xy 111.76 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be9a3bc2-c897-4cc1-b787-9487b8754ba5) + ) + (wire (pts (xy 228.6 184.15) (xy 232.41 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c58404e8-8727-4048-978d-eaddcf3b6630) + ) + (wire (pts (xy 304.8 195.58) (xy 307.34 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c734f98c-6792-4200-bb32-49da24ddcecb) + ) + (wire (pts (xy 74.93 60.96) (xy 74.93 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c74407ad-8dbe-4936-97c1-620ec2d65724) + ) + (wire (pts (xy 226.06 173.99) (xy 232.41 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c75ca6a7-947b-4686-b356-45d4ff86d0f2) + ) + (wire (pts (xy 222.25 185.42) (xy 222.25 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d116335c-ed8c-46d3-89a5-b5e33bdceb5d) + ) + (wire (pts (xy 68.58 64.77) (xy 68.58 30.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d439d8e7-681e-4af9-b477-248c95d62588) + ) + (wire (pts (xy 74.93 63.5) (xy 78.74 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4d8aa5a-7775-4e04-ad17-024d4b1e6d45) + ) + (wire (pts (xy 38.1 64.77) (xy 41.91 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d74db7ee-25d6-49dd-8851-0d8585441a7c) + ) + (wire (pts (xy 350.52 242.57) (xy 350.52 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8b14c18-2315-4351-9aee-7ba512caf9d2) + ) + (wire (pts (xy 304.8 189.23) (xy 304.8 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da496307-6c1c-4245-a5c4-7fc5ea599fea) + ) + (wire (pts (xy 38.1 60.96) (xy 74.93 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de15d070-39e4-422c-84cf-c055b18dd6a5) + ) + (wire (pts (xy 191.77 181.61) (xy 228.6 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid def09581-cda2-43b5-a6eb-6a385d0de054) + ) + (wire (pts (xy 29.21 168.91) (xy 57.15 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e02f7ebd-486f-460c-8fee-344c15e9f94b) + ) + (wire (pts (xy 330.2 196.85) (xy 336.55 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e403ea78-c903-44aa-93a1-a8f5e9a3ce20) + ) + (wire (pts (xy 176.53 76.2) (xy 182.88 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ecb35c4a-cd62-40a5-af83-18395c8073c0) + ) + (wire (pts (xy 111.76 39.37) (xy 121.92 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed00a4b4-8d2f-477e-8bdb-c148e3422f61) + ) + (wire (pts (xy 187.96 205.74) (xy 304.8 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef5a5866-3bc3-481f-b5c8-c4cf88f4e340) + ) + (wire (pts (xy 302.26 163.83) (xy 302.26 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f09b5acd-b314-401c-a95b-630a47aa5056) + ) + (wire (pts (xy 34.29 64.77) (xy 38.1 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f367842f-1c42-45ff-bac6-7c70c8bfba14) + ) + (wire (pts (xy 377.19 196.85) (xy 364.49 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f560a758-e1fd-45e8-8c8a-ce2cba099bc0) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 288.29 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 09b4815b-0dc1-42af-8080-55554666f2a2) + (property "Reference" "U11" (id 0) (at 288.29 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 288.29 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 288.29 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 288.29 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 90717b1e-09e6-4737-9d72-641edd427a55)) + (pin "2" (uuid ec65ccdb-0686-4984-9aa6-35e1412ec39f)) + (pin "3" (uuid 7e808543-0965-4de4-a944-5e9c82e44484)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 226.06 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0e3896b0-ffb7-4908-a944-9376c6fe4b8f) + (property "Reference" "U1" (id 0) (at 182.245 220.98 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 223.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9b3cfc24-03da-47d0-90ab-b54650ab5835)) + (pin "2" (uuid d5f6db56-f2a1-4733-9075-96ba6ef650e9)) + (pin "3" (uuid 101a96f6-291b-40f9-a3e3-84a4075a7cd9)) + (pin "4" (uuid 4f0ea0d8-4654-4d34-840e-6cf77756d039)) + (pin "5" (uuid fc1c424d-71e5-4acb-bc12-e81f02d02a41)) + (pin "6" (uuid f70fb563-2abe-453c-a3db-d714f401bfde)) + (pin "7" (uuid 58d59474-eac5-4df4-83e8-dfc8825331ea)) + (pin "8" (uuid dafaafa6-a585-4ed3-bb80-489efe3f56ce)) + (pin "9" (uuid 9bfa8c03-2c7c-4695-be45-9931c4847a0f)) + (pin "10" (uuid 9cf0f243-6014-4999-b62d-89d4ac43a54a)) + (pin "11" (uuid ddaaae35-8158-40a2-9dc0-208ea92a3f61)) + (pin "12" (uuid 82650f6e-e7db-4db8-83d6-a2d94d9f268c)) + (pin "13" (uuid c9f401fd-d1ba-44bf-a5a6-d086268716c5)) + (pin "14" (uuid 3a57d85d-27aa-4435-bd55-50c7b0ffffeb)) + (pin "15" (uuid 7258245c-4987-4f73-a729-b20d8230e1a8)) + (pin "16" (uuid b55aa9d0-3255-4ca0-aa84-85ecaa8287c3)) + (pin "17" (uuid 4b61980f-840b-4794-aa57-1b1575f7d13d)) + (pin "18" (uuid 14b926c6-8e4e-4dc1-96b8-b132abbd1ac6)) + (pin "19" (uuid 6e5834aa-f75b-46e4-809f-e27a274af8ab)) + (pin "20" (uuid 877e7ea7-9013-48e0-8018-49a79ebe33ec)) + (pin "21" (uuid 3c66d756-9087-4bc1-a470-84f1dda7cff1)) + (pin "22" (uuid 17476fc4-a518-43a4-b201-08369fde61cc)) + (pin "23" (uuid 84a305b8-887b-410d-b134-c35f82c4b734)) + (pin "24" (uuid 3e1a994f-b16d-4c6b-a8be-d38432a88b4d)) + (pin "25" (uuid b7f78dfa-be7c-4baf-a0c7-d8f8ff37a95d)) + (pin "26" (uuid 89f5284c-6293-4385-8b27-4e36b2ba00df)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 22.86 168.91 0) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13b6c329-1b5d-4e89-8062-628eaee2f2c0) + (property "Reference" "U1" (id 0) (at 23.495 163.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 23.495 166.37 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 22.86 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 22.86 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d768e59-6d11-41eb-ba4e-6f53bb297b73)) + (pin "2" (uuid 2e983776-c43a-4293-906e-05c578091a7f)) + (pin "3" (uuid 5c048579-2497-4cd7-9880-76062ec26c22)) + (pin "4" (uuid aff0467b-b0df-451f-b0f7-67eee3765206)) + (pin "5" (uuid d55a80af-9b0b-4ab1-bcef-904d6d20175c)) + (pin "6" (uuid 8caa5966-56dc-4388-a070-020ab2d9c438)) + (pin "7" (uuid 5eb9a8e8-ac24-4144-acb5-b934b96f0712)) + (pin "8" (uuid 81209314-56cd-48b7-9f89-b2cacc764da4)) + (pin "9" (uuid 93e0153d-23f6-4eb5-8731-1b3661afc233)) + (pin "10" (uuid 6d96f0ec-3984-43ba-827e-ae39b4761dd9)) + (pin "11" (uuid 7a84e87e-ab91-41f0-b6ca-8d4f480b8191)) + (pin "12" (uuid 34001e0a-3528-4ccb-ba45-537268db8f65)) + (pin "13" (uuid 440645f7-2d0e-4b50-880d-43171faf9fb9)) + (pin "14" (uuid c61e2cc1-3df8-44ba-9175-9d5b2010e0f1)) + (pin "15" (uuid 33b2d494-f60e-49c7-9951-f79119a294cc)) + (pin "16" (uuid 8b6cd0ba-6415-4c72-91fa-e5cd633d2b17)) + (pin "17" (uuid 5aa369c5-6b01-4240-bea4-ddfeed6ae2d4)) + (pin "18" (uuid f9146ba2-0a25-41d8-8614-2a95c87f9d7d)) + (pin "19" (uuid ea0f6f98-24d3-43bd-a97b-b291bfe96a50)) + (pin "20" (uuid 439ba981-133c-4156-8197-8326854114eb)) + (pin "21" (uuid b798e7a2-d2eb-4615-89cc-570febbb6591)) + (pin "22" (uuid 91f38d6f-c8d8-4e64-8564-8942db08750e)) + (pin "23" (uuid 37363b60-c656-46cc-8266-4cb94a8aa1ce)) + (pin "24" (uuid c0420f18-b8a4-4a3f-99ef-e992a7304686)) + (pin "25" (uuid 15f11672-3f0b-4571-96d3-02f845725878)) + (pin "26" (uuid fa4c3179-6ca6-4cff-8885-46e64a4b6ff9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 123.19 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1527dda0-f85c-4eaa-b25b-5d7944cbf1cc) + (property "Reference" "U1" (id 0) (at 28.575 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 120.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e7df2f9e-3708-4f52-a546-13a046aab679)) + (pin "2" (uuid 0b33ac5a-2327-4f11-8569-c545c0a19c63)) + (pin "3" (uuid 1b8dabd8-3dcd-44e2-85f7-6ab8826c0ba0)) + (pin "4" (uuid 9199e33c-15ef-4af5-b310-b43fc42cbd68)) + (pin "5" (uuid b7c3dd7e-c1aa-4399-bb99-1ffe827fca0f)) + (pin "6" (uuid 9bcc581c-8523-4a2a-9bea-7adc2a9d84cc)) + (pin "7" (uuid 88de7aa6-c991-47ce-bad0-c0a1cc54c879)) + (pin "8" (uuid cdeca36b-d7f1-4cfa-9a82-774c3ba6f8cc)) + (pin "9" (uuid e845f717-a9a1-4e2c-95c6-1f58fa7f9c53)) + (pin "10" (uuid d24e9a76-77cf-4be4-bcd1-c0530df24dd5)) + (pin "11" (uuid f5a5b242-bb8a-4438-a361-73f749560ce7)) + (pin "12" (uuid 40cd1e29-8165-4085-ae37-4a4f36737bda)) + (pin "13" (uuid dfc6b62a-419e-41f5-9223-26e6bd991b1f)) + (pin "14" (uuid b44ac5b2-36e4-4688-9659-a2eec94202ed)) + (pin "15" (uuid ac889659-1bad-4791-923b-9e19fe73cce0)) + (pin "16" (uuid ec581ac3-5866-4799-becd-e8ee49c35e31)) + (pin "17" (uuid 1ca1c722-90fb-422d-aab4-180d5b63aa4f)) + (pin "18" (uuid 6b64d07b-e7a0-4fc2-9d56-1715641c3143)) + (pin "19" (uuid ffb62f6f-b9b7-4405-aa59-d4a536e1f0a4)) + (pin "20" (uuid e139ebd3-9eab-4cc4-934c-48082521daaf)) + (pin "21" (uuid ed580205-48bd-4741-80a3-16842ee5565e)) + (pin "22" (uuid 2c990db3-015a-44be-93be-c7033ca5235b)) + (pin "23" (uuid 9420f6b8-80e3-4b5f-a9fa-45a78c73bb3d)) + (pin "24" (uuid eb62b4b2-7af2-40dd-8358-65bfc214c59b)) + (pin "25" (uuid c174e35d-25f4-43bf-8167-161099419422)) + (pin "26" (uuid e91bb3de-8ebb-44cf-b4f4-f89e3791f271)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 49.53 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d860f5f-d07f-4406-b647-3cc9608b5a03) + (property "Reference" "U2" (id 0) (at 49.53 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 49.53 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 50.8 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 50.8 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 207d3f61-e982-4b51-bdc4-80ef7db0bb46)) + (pin "2" (uuid 31a5d643-5ce6-403b-ad7b-36816d46baa8)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 196.85 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 29f13e57-6de3-4eb4-a145-ebddc9118b16) + (property "Reference" "U7" (id 0) (at 198.8694 68.58 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 198.8694 72.39 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 196.85 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 196.85 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d1414df5-faca-4318-a10c-3987aeb32cf8)) + (pin "2" (uuid ecdb9cc7-1000-4d70-87e6-25dac3004a41)) + (pin "3" (uuid 9250de9c-2a7e-403d-bc2c-2fed36ded790)) + (pin "4" (uuid 55723efd-35c7-4550-8ef7-a9b281333ca5)) + (pin "5" (uuid 6d038618-65db-4b31-88ba-7061660eaa5f)) + (pin "6" (uuid 760ce2a5-5179-4d44-ae2e-361cd985bdba)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 20.32 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 355ec12d-3171-4662-a60e-5222fb7f7636) + (property "Reference" "U1" (id 0) (at 28.575 15.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 17.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 20.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4ba5c93f-80a0-4b9e-b46b-103edf4376dd)) + (pin "2" (uuid 8e43ac36-9bbe-4fad-b2b7-30e5bdd56b4c)) + (pin "3" (uuid 0696b9c2-8b69-4d7b-883a-231fbdde63a8)) + (pin "4" (uuid 17d3b04f-064b-4bbf-91c5-110156515169)) + (pin "5" (uuid 70589b6d-a369-440a-8eb5-46c9bf305aff)) + (pin "6" (uuid 2e1956e7-a377-4b8d-ac74-38520fb7b92f)) + (pin "7" (uuid 4f7695cf-d016-4e92-ae29-61a864938a57)) + (pin "8" (uuid c43974e5-14af-4562-8c06-8564af0f3934)) + (pin "9" (uuid 49d40b35-5926-470f-96f1-f1c708027e56)) + (pin "10" (uuid a4c702f2-662c-4a02-bb48-158c87d95cb0)) + (pin "11" (uuid f881f19f-73ae-4f64-8278-25c94baba916)) + (pin "12" (uuid 531b74e2-62f2-4349-a62b-42090a7b35aa)) + (pin "13" (uuid fa8ea1cc-c916-440f-b901-dc91aeea74cd)) + (pin "14" (uuid d26623b8-476c-4f8b-8129-78356fe95721)) + (pin "15" (uuid bf03c46b-3348-4a6a-8ee4-ff8e7f819fcd)) + (pin "16" (uuid 5fd5cd19-6125-4851-88e5-5bc7dbaeb146)) + (pin "17" (uuid 717012f2-e7f2-41fb-9a83-8156e6c38c2b)) + (pin "18" (uuid 46406654-4e6c-4959-ba6c-7c6d37279fae)) + (pin "19" (uuid 6ac85629-e227-4a7d-acf5-da2005ae85e2)) + (pin "20" (uuid ae5ec377-f112-4d71-97cf-773a0896f609)) + (pin "21" (uuid c213e727-daae-42af-95c0-54f313be8b67)) + (pin "22" (uuid 747931ee-97ac-4e20-a2f5-3785fece765d)) + (pin "23" (uuid 9074b182-9ba0-454f-b580-817a38e0cf24)) + (pin "24" (uuid 3ed333a4-8f2d-4495-8a8e-546a48e06ba8)) + (pin "25" (uuid 93a988c7-3bd2-46df-beb2-00856a0033a4)) + (pin "26" (uuid 87773d26-7775-4d5b-a88a-c60b0f027104)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 22.86 148.59 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 35e9ea0d-99e1-44e4-aa7e-0eb9344c8774) + (property "Reference" "U1" (id 0) (at 23.495 143.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 23.495 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 22.86 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 22.86 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e9bd51eb-b354-4073-9209-03956cdd16ea)) + (pin "2" (uuid 0263d526-e89e-4500-9418-054b4df83cd5)) + (pin "3" (uuid c16da6d7-9aaa-4491-83be-94602bfb4377)) + (pin "4" (uuid 3e42b9f2-1734-4213-9789-926c979f77be)) + (pin "5" (uuid e0f00994-b067-4d46-a552-997947539b5f)) + (pin "6" (uuid 49f0cf57-a6d0-440c-9045-2d905b892b5c)) + (pin "7" (uuid d7e238ad-95ae-4275-ac01-ff62c58ebb12)) + (pin "8" (uuid 5b37242a-e036-40bd-a9c8-db66bfa90c7f)) + (pin "9" (uuid d9dce2b4-d9dc-48dd-921a-f362145ec116)) + (pin "10" (uuid 0c8187d4-65e6-4064-bde7-8d4ab560cad8)) + (pin "11" (uuid 9adfa75b-a20d-48a0-8b9d-cb2d78e71ce5)) + (pin "12" (uuid 13c77c32-a901-4787-aa64-a6e67f3316f2)) + (pin "13" (uuid cb15df14-d281-4a88-b852-adb60d52316f)) + (pin "14" (uuid 5f16fa69-35da-4313-a663-54339aad792c)) + (pin "15" (uuid a905d3e1-41af-45b5-a843-207582b38a46)) + (pin "16" (uuid fe8daa03-7bb3-477c-b072-25c324ea5d76)) + (pin "17" (uuid 6258de34-75ad-494c-96d4-4fd9bfe28997)) + (pin "18" (uuid da570b5c-ada5-49f4-a749-5c58b49967fe)) + (pin "19" (uuid 8aabdf20-bd89-464a-9d5c-70f897ccf9a8)) + (pin "20" (uuid 5a9e6e16-b665-4a0f-8de7-934480ba3fb1)) + (pin "21" (uuid 0446a5ba-def5-4de4-80be-9400732a37e4)) + (pin "22" (uuid 3746129e-ed5e-4d48-933a-4e8cb93b353b)) + (pin "23" (uuid 5f95d4e9-ac89-4102-99ef-ee7ff0029097)) + (pin "24" (uuid 17222be6-1adf-4918-9d9c-b968aa4aa2f9)) + (pin "25" (uuid 86b94892-127b-4ee7-90f9-8e9684f58536)) + (pin "26" (uuid 4888a460-f10b-4b0e-8d79-1f78632467ec)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 243.84 184.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4843dc79-d72c-4d1b-9398-eb469ebf8804) + (property "Reference" "U9" (id 0) (at 243.84 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 243.84 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 243.84 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 243.84 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 84b9bda6-50c5-447a-af95-8022ec538fd5)) + (pin "2" (uuid f05118ca-eef1-418c-911b-508f3a807c78)) + (pin "3" (uuid 0a45128d-e70e-4ce1-a457-eee049736687)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 64.77 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51236645-2d2a-44b2-b80f-ad5d651dde40) + (property "Reference" "U1" (id 0) (at 28.575 59.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 62.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b55732ab-65c2-4ae4-9003-1b414ad75810)) + (pin "2" (uuid fb9a6ebd-67f9-475b-aedf-f7d243e87db9)) + (pin "3" (uuid 15cbc5d6-90b5-452f-9e4f-7cdeb1dc698f)) + (pin "4" (uuid 20ebb368-1ae8-4912-a8bb-c2fd2f7a75b6)) + (pin "5" (uuid 2c76f1fe-8c11-407b-b560-9c9bb8c10557)) + (pin "6" (uuid f80ffe1d-a93a-4d9d-a8df-765e30bdc0e0)) + (pin "7" (uuid 61ecf974-904b-4964-b4a1-68799a5d1388)) + (pin "8" (uuid 484bb065-1529-4a27-8a93-96f23ae49644)) + (pin "9" (uuid 9a9085d1-4dc6-4e45-8962-95059e597ff9)) + (pin "10" (uuid e289c155-8357-4247-af69-3291bdabf9e4)) + (pin "11" (uuid 67f50d95-2534-4f72-84f8-d04e3225a0e5)) + (pin "12" (uuid 1f52b01f-e5e1-4392-87f6-8768f43f6d33)) + (pin "13" (uuid e837d685-a8f4-46a4-8c88-8169a67d611c)) + (pin "14" (uuid c7e89c07-df23-438d-84fe-f5ddf15c5952)) + (pin "15" (uuid 973fae50-7cf2-4169-b64f-c3d8cbed723a)) + (pin "16" (uuid 1a592543-ff61-4ed6-92da-f5ea40e92533)) + (pin "17" (uuid 365bbdc2-4de5-43a0-9c78-2ca4241074e2)) + (pin "18" (uuid 9f275e7c-8a81-4435-b4dd-791ca55ea9b7)) + (pin "19" (uuid 0208b97a-570a-4023-8f8e-95c99a43cb85)) + (pin "20" (uuid cd85b10c-3408-4736-b251-8f420d926c44)) + (pin "21" (uuid d2b134b9-97e4-499e-b946-693da9c9af6c)) + (pin "22" (uuid 66e78bbd-0183-4d5e-9bca-95011de66925)) + (pin "23" (uuid 04fc6edc-e8dc-4edd-9a74-adcb1ca3fe5e)) + (pin "24" (uuid e23dc552-27bc-445a-9b53-46089338e6cc)) + (pin "25" (uuid d88382ed-96ec-42b4-88d4-9bad47c2a798)) + (pin "26" (uuid 276a1782-1c58-4f8c-9bdb-6a4ea87fa4bb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 90.17 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53fba5e1-63b0-4afc-9d8a-df604f3299ed) + (property "Reference" "U3" (id 0) (at 90.17 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 90.17 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 90.17 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 90.17 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 14e0e7e8-3bbf-4969-85ae-ad1e0cfc8e55)) + (pin "2" (uuid 80c192ca-13db-44e8-923a-8d3a5068f3ec)) + (pin "3" (uuid c63933ed-d4f0-4dc8-a7f8-b1b71b463f47)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 105.41 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 634d043b-1612-4d53-a470-30ab3f745e21) + (property "Reference" "U1" (id 0) (at 28.575 100.33 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 102.87 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 14ddd7e0-5446-4a2d-821d-b97aa242e9f8)) + (pin "2" (uuid 388eb1f4-fbdc-4bc8-9ad1-6476d9927417)) + (pin "3" (uuid 26b33d93-75ee-4611-9b8d-6455c8595f2b)) + (pin "4" (uuid ee58e97a-5699-4105-b2b0-80d0a90265ee)) + (pin "5" (uuid eb9338c2-9cea-46cc-97c7-d1f100924bae)) + (pin "6" (uuid f27f0014-5a55-404d-8fa6-1ed5ef184a2a)) + (pin "7" (uuid 5430a227-3141-47ac-98ef-b721ef2a5a22)) + (pin "8" (uuid 253d13c4-a639-49b6-ab17-af228e43bc7f)) + (pin "9" (uuid 1a1a5714-ed31-4343-a9ba-dcf99f45e7f4)) + (pin "10" (uuid 9b9ae717-8d08-45dd-8ea8-89ef4a83630f)) + (pin "11" (uuid f0932fec-480e-45b8-b0be-e736537b1a0b)) + (pin "12" (uuid f1a2f3c2-9bdc-4171-9860-420a7a2c4149)) + (pin "13" (uuid d914bc39-544e-4a43-acfd-98b692415bd4)) + (pin "14" (uuid b859a0cf-343c-4454-98fd-9dbd25ab4ca2)) + (pin "15" (uuid dafcdd3c-f134-4e2e-aa35-22b819e11fab)) + (pin "16" (uuid 478b219d-6854-4588-90b8-1e58c72c7b7a)) + (pin "17" (uuid 00ffe9f7-30be-42ce-9828-dbcab1b14595)) + (pin "18" (uuid 8eb40817-22dd-45fb-aecb-0ad8044c17a8)) + (pin "19" (uuid 0033e3b1-4e76-4405-9d2f-9f81ea3b2c69)) + (pin "20" (uuid dce05b63-153b-4a3a-b6f5-4d57539a0f8e)) + (pin "21" (uuid 92b813f0-9b9f-461a-a22d-6427e68cc471)) + (pin "22" (uuid 12dd6469-6d9d-4c1c-8a66-a55d22f90778)) + (pin "23" (uuid 6b4389dc-b3d1-4e78-ad78-c3efda610952)) + (pin "24" (uuid b2233fed-6900-4327-a172-76024e98e1bc)) + (pin "25" (uuid 3589c0e3-2841-44ed-a07c-1411fa47c8b1)) + (pin "26" (uuid 53bb4163-0ae1-45c2-8a0d-a07782159aaf)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 318.77 198.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e717a61-a645-4058-ba25-2ad82a45b840) + (property "Reference" "U12" (id 0) (at 318.77 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 318.77 191.77 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 318.77 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 318.77 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e0e7a1a9-6059-4ac7-9911-8291a639d2e0)) + (pin "2" (uuid 1ebc0d44-f74b-4170-bd9b-716ac64c6cc6)) + (pin "3" (uuid 00690832-180e-429b-82e6-452ac8bc422d)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 350.52 205.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 74c7bc96-2ff7-47c3-8294-65a43b317cd7) + (property "Reference" "U13" (id 0) (at 352.5394 189.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 352.5394 193.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 350.52 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 350.52 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 24f9d158-ba01-469b-b3d4-793baafc7835)) + (pin "2" (uuid ecd0fcb8-b052-45e0-834d-c5c89ca04524)) + (pin "3" (uuid 8bd0cae3-8cf5-4e0c-b46a-85db724d7e31)) + (pin "4" (uuid 9997b836-b847-478e-b5c3-d53e848253d8)) + (pin "5" (uuid ce2f2597-31c0-4e41-be45-377e3ef36fdd)) + (pin "6" (uuid 3795eed2-f396-495c-a75e-8b72c12d42df)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 91.44 30.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8994e838-d17b-48d8-afdd-47fc7bc41f7b) + (property "Reference" "U4" (id 0) (at 91.44 21.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 91.44 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 91.44 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 91.44 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad47fd28-a209-461b-84e3-2fdd29ee862f)) + (pin "2" (uuid 0960bbf6-617a-49a7-979e-448be3bfa4bc)) + (pin "3" (uuid 3b100096-6870-4210-aad6-f7d98dd25558)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 205.74 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ab793578-d4af-47c7-9b7a-fd8d0a26d872) + (property "Reference" "U1" (id 0) (at 182.245 200.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 203.2 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2297aa69-469c-4b59-afe4-54ffee1831da)) + (pin "2" (uuid 3b97a204-e5cd-44cd-a1c5-ee5d6a8b80ab)) + (pin "3" (uuid 0867f4b5-67e4-4478-9b12-7a7d8bee0285)) + (pin "4" (uuid 350f964c-fa11-4bd0-bacd-8b68620a4e52)) + (pin "5" (uuid 22129b4d-a233-418b-951c-17432cd78b1e)) + (pin "6" (uuid a307d86d-479c-42c2-a4d1-b03bffa0dfaf)) + (pin "7" (uuid f873207d-8f41-4259-aacf-6a9208a378f0)) + (pin "8" (uuid 0e2f8bf0-937b-4fab-8ec1-169517dbddb3)) + (pin "9" (uuid 3c7598fc-70b7-4024-9dcd-3ad489fe8ba8)) + (pin "10" (uuid f8b86698-1837-406c-9c0b-31974c9b6270)) + (pin "11" (uuid f2cddaaf-459e-4478-990f-2423a5c83eea)) + (pin "12" (uuid 6353f99f-5c8f-4176-9907-0c9a1600c629)) + (pin "13" (uuid 46b91712-bd34-42de-8433-3aa77f4ebe08)) + (pin "14" (uuid 53e80dfb-d8a8-4109-b25b-f4b6045a2c03)) + (pin "15" (uuid faaab865-2606-4872-8905-359f724baa16)) + (pin "16" (uuid d6d4cb24-375c-455a-abb0-b5b69a8746fc)) + (pin "17" (uuid fb1d0eca-9734-401b-a5df-c7d46c72df10)) + (pin "18" (uuid 58101b53-ea63-48cb-bcf4-d628bba8fdc8)) + (pin "19" (uuid e1bd2980-24bd-4795-ad96-fb5585d24a3b)) + (pin "20" (uuid 781ddba8-8d87-4517-9844-8ffa3e322813)) + (pin "21" (uuid 1ff4ee52-fdd9-453e-ac6c-0d0217009476)) + (pin "22" (uuid cd889445-34c8-44ae-86d5-27c118010fd8)) + (pin "23" (uuid c7fdb560-61c4-4c16-9476-80884fc819c9)) + (pin "24" (uuid 20b749a7-fcea-4322-bf8b-1ec81abb8a6c)) + (pin "25" (uuid 6607a36f-6709-4046-a2c4-01c8b5630135)) + (pin "26" (uuid 41a5a572-ef7b-4ffa-a90a-55c15a2e17aa)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 243.84 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ad8eeb81-cd4f-4883-87ed-15cf2cbef498) + (property "Reference" "U1" (id 0) (at 182.245 238.76 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 241.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 124d45b8-d605-4d54-9e36-3257fd282487)) + (pin "2" (uuid 7114315b-0c45-4d40-a64d-fb911ca5b3d8)) + (pin "3" (uuid b4a41045-fab8-4034-b1d4-356627cbeae7)) + (pin "4" (uuid a0dbd147-f439-4fbe-8685-b8708e16f4a9)) + (pin "5" (uuid 24883811-489c-4d9a-896c-996ffd2813cc)) + (pin "6" (uuid 16a4a410-1e3c-4e61-9e16-8b453ab31c7d)) + (pin "7" (uuid 6d352580-4bc5-48e8-8c09-61366d130d2d)) + (pin "8" (uuid 98e8d5b3-0815-4e0d-a3d5-dc00b9e57706)) + (pin "9" (uuid 291049b9-fd7b-4d07-a0c4-a80386285444)) + (pin "10" (uuid 3a0aa33d-27f4-41f5-ad45-0706612e7837)) + (pin "11" (uuid c1affb49-6d4b-470f-813a-b4ff812ca7f3)) + (pin "12" (uuid 7f11e185-b93e-4827-b225-879127c0f6b9)) + (pin "13" (uuid e609452c-ccdd-4de5-b154-f66927fe33f4)) + (pin "14" (uuid dee007dc-2f2b-4c3d-bbef-6008678820a5)) + (pin "15" (uuid 74408519-25c7-47ec-b7c5-238d19097d68)) + (pin "16" (uuid 2e767171-56dd-47f8-acb2-28cf520cac35)) + (pin "17" (uuid 54083b67-33a0-4b8b-b152-bbe4e75b1d1a)) + (pin "18" (uuid 364995ed-a5ad-4cad-92aa-cf87226de9b9)) + (pin "19" (uuid b51a4be5-0488-4955-a80d-1ebb271f1bba)) + (pin "20" (uuid 73eadfb4-9c14-43e4-bc30-4e364870f34b)) + (pin "21" (uuid 05d736db-5622-41a3-b0d5-538850924aaf)) + (pin "22" (uuid c54aabd6-b439-42d1-b119-ba2901065474)) + (pin "23" (uuid 5a12f217-3bf3-48af-88a8-8e43bd9caa7a)) + (pin "24" (uuid e76a00d9-c1bd-42e1-82d2-440c801ce716)) + (pin "25" (uuid ba4ffe8e-6f65-494f-b851-cb0b4fab50b4)) + (pin "26" (uuid 1d9ab63b-4a9e-4f80-9db2-acae1f759c09)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 140.97 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b147815d-8d8e-442b-929e-ddff14165f03) + (property "Reference" "U1" (id 0) (at 182.245 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 138.43 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92136cfe-b45b-48d7-b67e-163cf3a38c56)) + (pin "2" (uuid 68f9c027-f32b-42ad-be9d-07e8e03ff77e)) + (pin "3" (uuid 8911c359-998b-408b-babe-5529fc0d4a79)) + (pin "4" (uuid 79dd9199-8533-460e-a17b-b4965dd134a4)) + (pin "5" (uuid 24d47506-5037-4d53-a0f1-a0ac80be1814)) + (pin "6" (uuid 6248bd3a-7a30-4480-bd2b-922228ebbca6)) + (pin "7" (uuid f2d79607-5d46-4ea7-9fe2-c5d0452c509c)) + (pin "8" (uuid fae7c13f-5ce5-4fd2-9822-fa3d6619eee1)) + (pin "9" (uuid 135600c0-e8a6-43e2-aa57-96a1fb49ec31)) + (pin "10" (uuid 75d45e4b-60a7-4241-a84f-2b8df663ab7a)) + (pin "11" (uuid 82aba878-c32c-4e92-9900-325a1dd27263)) + (pin "12" (uuid 806a3421-fc32-47e0-93da-9388ffece9ae)) + (pin "13" (uuid 23a9f6bd-4772-47b6-a241-531cfad761cc)) + (pin "14" (uuid cb7418f0-b2c4-45cb-8f14-179947979979)) + (pin "15" (uuid 93851a8a-c575-4c9a-8ad7-7f80a5b9f901)) + (pin "16" (uuid ee8220b9-32cd-4789-99f5-7e5066f3bb17)) + (pin "17" (uuid 901e6a11-2605-423a-91b5-ab8caa27ac8c)) + (pin "18" (uuid cf7ccbf9-59b5-40f4-9cc6-595d5bac3607)) + (pin "19" (uuid 850188d2-b1bf-40b3-b050-9875014a4961)) + (pin "20" (uuid 322c7f37-3676-49b9-9c59-e65c79fa1177)) + (pin "21" (uuid 043454fb-1f3a-4a10-b87f-7e7bae7674f0)) + (pin "22" (uuid 99f666a2-7fd7-49f5-9c36-13d4fe577e00)) + (pin "23" (uuid aa9cf810-4f24-438f-8b98-b2e4f0acc300)) + (pin "24" (uuid 03db4c83-59d9-4054-b2c2-43f2263d6f2e)) + (pin "25" (uuid 6dec4ffb-9fbe-4b6f-b851-84bfad9fb7d1)) + (pin "26" (uuid 5029b98c-3cf0-4c90-8cd1-27fd5b76234e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 203.2 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b38723d8-5acc-4f77-bfa6-9892fc1093b8) + (property "Reference" "U8" (id 0) (at 203.2 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 203.2 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 204.47 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 204.47 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid df6e82a3-30ba-41b8-a527-761fd3fe8f3d)) + (pin "2" (uuid 2d5e0af3-536c-4c09-825c-5f50f8f5771f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 27.94 85.09 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b8068420-3713-4781-aa01-a74e0e8cba76) + (property "Reference" "U1" (id 0) (at 28.575 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 28.575 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 27.94 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 27.94 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 991d5307-735d-480f-acc3-7e344a38ab56)) + (pin "2" (uuid d5be3f9d-8cf8-4457-a802-28f29f64fd6c)) + (pin "3" (uuid 04ef701f-dd99-4981-9be4-401e57ff41ba)) + (pin "4" (uuid 7db89092-4522-4018-a6b2-1629443b9a88)) + (pin "5" (uuid a62da559-d860-45dc-8744-fb62d900972a)) + (pin "6" (uuid 948b5e41-2d42-4c02-9899-d3539989de81)) + (pin "7" (uuid a5682e77-3897-4bbc-b87a-b2a1124c6b53)) + (pin "8" (uuid 47a98e0a-ebf2-4e66-9e1c-6bdc68e563f1)) + (pin "9" (uuid d6ff1a03-aa85-481f-b566-b49e79f963b1)) + (pin "10" (uuid f8b81dda-bdea-4249-990f-f35c5b7a9422)) + (pin "11" (uuid 045de480-6833-406d-adfb-9023b5a162b8)) + (pin "12" (uuid 1cc07506-639f-4731-938a-9ad307556bb2)) + (pin "13" (uuid 00364ae3-c8db-4861-835f-849012705349)) + (pin "14" (uuid ada31dea-99fb-4d0e-99a4-5e49ad917995)) + (pin "15" (uuid 7efe92d0-5475-4bfc-acb0-fa126eff2cf4)) + (pin "16" (uuid 205e611a-7cd9-4d45-85e5-a76cdbc847dd)) + (pin "17" (uuid 43ad2e57-1807-4c42-bd75-8a4e36c442d9)) + (pin "18" (uuid 7d97aebc-ff55-4796-8596-567a23de8e87)) + (pin "19" (uuid de598d04-f823-4880-8b50-01f22ade93d5)) + (pin "20" (uuid a66bb4ac-0a27-4c16-85f6-f8f9366f74e7)) + (pin "21" (uuid 913fe5bf-e208-4a23-a2ad-3d7d51235372)) + (pin "22" (uuid a1c6b980-1f7e-4389-8ef3-49b3e0ebdabe)) + (pin "23" (uuid 926f64a4-c44a-4860-9562-17208fe085b6)) + (pin "24" (uuid d8bfbda6-5d99-4c53-948f-59e4b125c08e)) + (pin "25" (uuid a58fe7ae-a37d-42c3-a6ab-e7ab44b88939)) + (pin "26" (uuid 09c2d07b-b98e-47a1-953f-91d30fae1c0b)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 165.1 77.47 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc0347c3-4361-401e-94ef-944b3f0714fe) + (property "Reference" "U6" (id 0) (at 165.1 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 165.1 71.12 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 165.1 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 165.1 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dc2fd609-e357-48da-a225-c4119caf5ea9)) + (pin "2" (uuid 2f0e6489-2329-42a4-99da-d7366498326e)) + (pin "3" (uuid 1cfa6fae-95ed-48de-827b-711619a62448)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 228.6 76.2 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c5c46c4d-2b98-46e9-a462-64c049c3eacc) + (property "Reference" "U1" (id 0) (at 232.41 75.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 232.41 78.105 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 228.6 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 228.6 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97a4d351-17f4-4bb9-8cfd-1affe9d08008)) + (pin "2" (uuid ebc523a5-70fe-460c-89b7-275aa3a5df2e)) + (pin "3" (uuid 2e1d5371-366a-4394-a330-2cd0190943ec)) + (pin "4" (uuid 910f58b3-b9e9-46fd-8c08-1293760fbc94)) + (pin "5" (uuid a0828bf1-81b7-49a4-94aa-e6c24d0c6d19)) + (pin "6" (uuid bc495216-fa7f-412d-8eb5-4358f9f2909a)) + (pin "7" (uuid 839db165-31cd-490f-88ed-dad76c6ec349)) + (pin "8" (uuid 2a35c9e4-051d-470d-be8c-e70cb39d6631)) + (pin "9" (uuid 7d3240e2-b8c9-491e-8080-3aba362ac268)) + (pin "10" (uuid a662660d-7d55-4628-8cd8-0ee2175ac617)) + (pin "11" (uuid 4c9161a8-7ba2-4cfd-88f2-b1b8b2cee6cf)) + (pin "12" (uuid d793d471-dbed-414e-9795-11404557c5f1)) + (pin "13" (uuid e2c6f23f-1ae9-4128-86c3-02b0b6e2b023)) + (pin "14" (uuid 183ea4dd-e3b0-4702-b085-29f1cd93b80e)) + (pin "15" (uuid 523816ab-4dfe-4a1a-a4f3-c45f1a986ddc)) + (pin "16" (uuid 105ad5ff-f51b-40e5-856b-8479749cc513)) + (pin "17" (uuid d9287449-44e6-4475-9cf9-f8e808662cdc)) + (pin "18" (uuid 21a0a2e6-6c52-4141-8f29-77a468f0d7e1)) + (pin "19" (uuid bd25ee79-b409-4e33-9413-8d06f4c04ce6)) + (pin "20" (uuid f0a27245-cb5a-4f97-9bd3-f57ad258fde3)) + (pin "21" (uuid bcda9cb2-9de9-4a48-bb0d-f9d3d04da5f4)) + (pin "22" (uuid cfe1f929-7752-499c-bfa0-aa75d20441fa)) + (pin "23" (uuid d9fec553-0b40-4894-afc8-9b30accf3fca)) + (pin "24" (uuid 0de7516f-a6ab-4e9c-b150-32156f0f8da8)) + (pin "25" (uuid 322945e4-7969-4c73-9206-78322f3da38f)) + (pin "26" (uuid 0081c9b9-7c6e-4211-bf68-cfafe1b5c60f)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 134.62 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d27a3e7a-480c-4f17-a33e-8dc6072c1d17) + (property "Reference" "U5" (id 0) (at 134.62 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 134.62 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 134.62 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 134.62 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 059f0804-416b-4b7d-ab0d-dc7599e534e0)) + (pin "2" (uuid 51782874-b692-46fa-a4c9-54a336f32176)) + (pin "3" (uuid c5c72053-600d-44fa-be25-002e2c73afaf)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 181.61 185.42 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d412bce0-3a60-4657-9dc3-876df421e997) + (property "Reference" "U1" (id 0) (at 182.245 180.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 182.245 182.88 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 181.61 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 27c2f092-5a8d-4da0-a0d5-ce5e78b57606)) + (pin "2" (uuid 23123db2-9e5e-4443-a5f5-aaa8e7a7030f)) + (pin "3" (uuid 52b51c05-c5be-4d1c-ab91-9f908b8fb8dc)) + (pin "4" (uuid a8653799-7b14-44fb-99be-c3190354ac51)) + (pin "5" (uuid 662d9130-e888-4041-91c9-beee4bc4304b)) + (pin "6" (uuid ce427292-7af4-4525-acd5-746f324b7a06)) + (pin "7" (uuid 3e3c5fcd-831b-494d-8700-3daed2d29e0a)) + (pin "8" (uuid ab8ef1b2-4c1e-4fd5-918b-96e6756fb80c)) + (pin "9" (uuid 894913f4-4f6d-4875-aebd-fc510bd944a1)) + (pin "10" (uuid 125085b8-6273-4766-b2ad-b025500b024e)) + (pin "11" (uuid 3d12561f-32b8-4646-94a4-82494e1f6809)) + (pin "12" (uuid 09836232-e58b-4933-8dbd-a10ccab2680b)) + (pin "13" (uuid c622ee67-9f2a-4c2e-8c1d-793203524ebd)) + (pin "14" (uuid 053f7753-7163-4b62-a4de-1cbdb562f4ec)) + (pin "15" (uuid 0db318ff-dea5-4d32-8720-b2053ea1f43a)) + (pin "16" (uuid 76d30341-bbb4-48b6-845c-6e7fbc3e78f6)) + (pin "17" (uuid ae288e01-62de-435b-9239-ce12d8ed1828)) + (pin "18" (uuid d733e86d-448f-4c11-b434-297340011b9c)) + (pin "19" (uuid beaea314-cb2b-47fb-9ebe-e466528875df)) + (pin "20" (uuid ca4b5d0e-d60b-4c88-88c6-d3e6337b189f)) + (pin "21" (uuid f505d0b1-5342-4b59-8918-9d126b3811b1)) + (pin "22" (uuid a295dff2-abfb-4417-a545-06bfe1073b4d)) + (pin "23" (uuid fcdc49e1-dac6-4866-bc8b-1d1b93c90e77)) + (pin "24" (uuid 023b9ac6-d528-40fc-85c3-a15c5eb5d65a)) + (pin "25" (uuid a0e6dbf5-ed6a-4aa7-acc2-2c377d6566d3)) + (pin "26" (uuid 77716f7e-1b1b-4fdc-9ab6-e67313662785)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 245.11 151.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9219176-fe85-4d0c-93e0-7dc12f710dc0) + (property "Reference" "U10" (id 0) (at 245.11 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 245.11 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 245.11 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 245.11 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4df3c233-61c5-47b3-8582-922339f1922e)) + (pin "2" (uuid 31951016-dfc6-4e23-8e38-16d2aec72702)) + (pin "3" (uuid 0c827cd1-ade8-43f0-b13b-60c66091aaba)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 29.21 43.18 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f379b4dc-0357-49b7-8390-ae970c07d8ee) + (property "Reference" "U1" (id 0) (at 29.845 38.1 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 29.845 40.64 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 29.21 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 29.21 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f79cb863-1c6d-42e8-934a-e69c6fe60d13)) + (pin "2" (uuid c28d202d-f76f-40ad-a11f-981ce66a2613)) + (pin "3" (uuid 5d91ee97-cf17-4877-b118-20e46377976e)) + (pin "4" (uuid 5ed32948-9f19-4b04-98fe-645f83a5310e)) + (pin "5" (uuid e55cf8bd-8a76-4102-8f70-fbfde6a82523)) + (pin "6" (uuid 7ef0e9c0-21da-46ec-a3e8-8bf051bcf2ee)) + (pin "7" (uuid 2a53130a-6b11-445a-a0a7-634647824e96)) + (pin "8" (uuid 3559ec9b-a379-484a-bed7-21a193a386fe)) + (pin "9" (uuid 59e61083-d45e-42b4-bd72-fcac44b667ed)) + (pin "10" (uuid e1b9c36e-eaaf-4497-928c-bab080e3a578)) + (pin "11" (uuid 044bb50e-e087-4a29-9a5b-98f0e93bd6e7)) + (pin "12" (uuid a920e886-cd88-426a-abfd-dc1b2faceaf1)) + (pin "13" (uuid 46f7255d-6022-4ec2-ac0e-74513a259fee)) + (pin "14" (uuid 1fe722be-0694-4702-b7bc-442aa74f98ac)) + (pin "15" (uuid e43188f2-2835-4d49-950d-2fa8a776cd75)) + (pin "16" (uuid 91288e7f-102f-419c-bef4-95bd97cf080f)) + (pin "17" (uuid 80015c67-7960-4086-8a8e-9681a6993656)) + (pin "18" (uuid 28ca17f6-8d2e-4db9-8070-89b4d3b49fc0)) + (pin "19" (uuid 395f860f-d315-4f40-9f52-c6e5e296acd8)) + (pin "20" (uuid b8147afa-b027-4cf6-b832-50e45970ce7a)) + (pin "21" (uuid 5ea5feff-6233-4887-bb92-a3f076f40c16)) + (pin "22" (uuid d2aebd49-bffc-42e4-926d-ae54861f870a)) + (pin "23" (uuid 533008f8-4079-416a-b5fe-9ab27568441a)) + (pin "24" (uuid 75febac6-d4df-4825-bd56-5341b3967723)) + (pin "25" (uuid 7a7228ba-bca4-46cb-92f7-000c6d88781e)) + (pin "26" (uuid 6c9f8ea5-9910-4f1d-b8fd-83bc7d9df023)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 383.54 196.85 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f742a491-72dd-420e-ac4b-2d7b71cba5a6) + (property "Reference" "U1" (id 0) (at 387.35 196.215 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 387.35 198.755 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 383.54 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 383.54 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a3fe89a5-732a-431b-89a1-f034f24087d3)) + (pin "2" (uuid 9a279f79-8e81-4407-93b8-862662585a0b)) + (pin "3" (uuid 20ac725d-5ccf-45e0-9384-c16ac3ba8d6d)) + (pin "4" (uuid 10b9bab9-6e8a-4b87-8a23-45c147f1a447)) + (pin "5" (uuid 282173c9-b3d6-4f92-ad6c-1411b89b5baf)) + (pin "6" (uuid cbd55ea1-1afe-4ac6-bae6-584cb42f5561)) + (pin "7" (uuid 23dbd95e-8898-42dc-94af-0de589185bc1)) + (pin "8" (uuid d0eb95e9-b629-4c60-bdd9-8ac46f4a3da5)) + (pin "9" (uuid 4d370db4-edaf-4975-b95a-80430aafc6f6)) + (pin "10" (uuid 57cd6132-8acf-49e9-9582-f5f91da67dc6)) + (pin "11" (uuid af1d76b9-c2b3-44f2-93e7-480d2fa3dec1)) + (pin "12" (uuid 126ca0fb-20c2-4c51-8617-c50af5aa0d72)) + (pin "13" (uuid 3f51d5e8-81fd-404d-8821-55e6a33af609)) + (pin "14" (uuid 32b4ec98-9e3b-4ac7-b674-3dcb1436b454)) + (pin "15" (uuid 0f8e763a-4e39-4253-9d0b-4bc0e1fd25aa)) + (pin "16" (uuid 763d7f9d-72a9-4a4b-b09f-af10889aeb4c)) + (pin "17" (uuid 709c12d0-3010-43a2-b86d-4b32e0ab005d)) + (pin "18" (uuid 3750a673-5574-4008-86c1-53fe94e05923)) + (pin "19" (uuid c0d29a4a-ffc6-4d18-acdb-9e7cd1b18d18)) + (pin "20" (uuid 5d197da3-9b00-495e-b33c-2bab31c78e9a)) + (pin "21" (uuid 51b329eb-0520-4879-99cc-c4eec8546759)) + (pin "22" (uuid f310f78b-110f-46d8-b84f-4608a67b38e5)) + (pin "23" (uuid 2167da47-29db-489d-a532-b4ccfcf4b146)) + (pin "24" (uuid 5eb79dd5-9c3a-4ab7-97fe-2d813ced7f1f)) + (pin "25" (uuid 43f6eeea-3733-44a8-bf23-2eedfa85e3a9)) + (pin "26" (uuid c87b5b99-2386-4701-ad21-d08a3d56569a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 182.88 163.83 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe2b32b9-709a-49d0-b801-7d71c43989d9) + (property "Reference" "U1" (id 0) (at 183.515 158.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 183.515 161.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 182.88 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 182.88 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 60df745c-c4f9-4a27-9e3e-beb3fc9d6c59)) + (pin "2" (uuid ecd2c39e-6029-4d8d-a6e6-e620fa9829b3)) + (pin "3" (uuid af2bad12-3004-46c9-b3a3-7ca14b5c7ebf)) + (pin "4" (uuid b53c42b5-12e2-452c-915e-f40a5793e166)) + (pin "5" (uuid 0ad52bbe-a790-4668-91b4-6ad9d47174ed)) + (pin "6" (uuid d4d1b088-b49e-49fc-9f61-b22b0289cfcd)) + (pin "7" (uuid 06dfc3a8-a177-4189-930d-000d92b7b44e)) + (pin "8" (uuid f484614e-874d-4469-9807-4e2371e901f2)) + (pin "9" (uuid 5c5ef470-dea8-4eb5-b0d3-acc44303db9e)) + (pin "10" (uuid a0270e4e-8db1-4ed4-954e-5f35f947dd0f)) + (pin "11" (uuid 707fd269-1153-4f59-9293-1afabcd628a8)) + (pin "12" (uuid 4b332a1d-0003-48c2-b901-5431977ab77e)) + (pin "13" (uuid c71b40b4-2e6d-4169-a210-93bc7502daeb)) + (pin "14" (uuid 26ed537b-c5f0-4d11-8708-cd3ede68d3d2)) + (pin "15" (uuid 1b17c73b-d479-4c4f-a2da-c3f39c5703b0)) + (pin "16" (uuid 23464918-c5dc-4f6d-abee-f0764c7d2211)) + (pin "17" (uuid b1f6963f-941c-4112-8a40-76e0128bedd4)) + (pin "18" (uuid 23d37d20-6d21-443f-bf1e-319f7bd637a9)) + (pin "19" (uuid ff3daf6e-6eac-45aa-a856-a2d6471ec279)) + (pin "20" (uuid 3de9e939-5094-4300-8850-e83bcfc905ed)) + (pin "21" (uuid c2479f80-4a44-4ec1-8a4b-fda23f949dbf)) + (pin "22" (uuid 99c54d91-9add-4282-8191-d4d621042689)) + (pin "23" (uuid cefa112d-7f92-4dbf-8df7-1216333117d2)) + (pin "24" (uuid ee238eb8-f278-40d6-ba75-9544ff7e73f7)) + (pin "25" (uuid 63f3a8a7-1505-41eb-9df3-57ebfc6bd813)) + (pin "26" (uuid 3d068d5c-ba43-4411-aa6b-491c9b00c8a3)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/1527dda0-f85c-4eaa-b25b-5d7944cbf1cc" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/355ec12d-3171-4662-a60e-5222fb7f7636" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/f379b4dc-0357-49b7-8390-ae970c07d8ee" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/51236645-2d2a-44b2-b80f-ad5d651dde40" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/b8068420-3713-4781-aa01-a74e0e8cba76" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/c5c46c4d-2b98-46e9-a462-64c049c3eacc" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/634d043b-1612-4d53-a470-30ab3f745e21" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/35e9ea0d-99e1-44e4-aa7e-0eb9344c8774" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/0e3896b0-ffb7-4908-a944-9376c6fe4b8f" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/f742a491-72dd-420e-ac4b-2d7b71cba5a6" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/ab793578-d4af-47c7-9b7a-fd8d0a26d872" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/d412bce0-3a60-4657-9dc3-876df421e997" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/fe2b32b9-709a-49d0-b801-7d71c43989d9" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/b147815d-8d8e-442b-929e-ddff14165f03" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/ad8eeb81-cd4f-4883-87ed-15cf2cbef498" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/13b6c329-1b5d-4e89-8062-628eaee2f2c0" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/1d860f5f-d07f-4406-b647-3cc9608b5a03" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/53fba5e1-63b0-4afc-9d8a-df604f3299ed" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/8994e838-d17b-48d8-afdd-47fc7bc41f7b" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/d27a3e7a-480c-4f17-a33e-8dc6072c1d17" + (reference "U5") (unit 1) (value "d_or") (footprint "") + ) + (path "/bc0347c3-4361-401e-94ef-944b3f0714fe" + (reference "U6") (unit 1) (value "d_xor") (footprint "") + ) + (path "/29f13e57-6de3-4eb4-a145-ebddc9118b16" + (reference "U7") (unit 1) (value "d_dff") (footprint "") + ) + (path "/b38723d8-5acc-4f77-bfa6-9892fc1093b8" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4843dc79-d72c-4d1b-9398-eb469ebf8804" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/e9219176-fe85-4d0c-93e0-7dc12f710dc0" + (reference "U10") (unit 1) (value "d_and") (footprint "") + ) + (path "/09b4815b-0dc1-42af-8080-55554666f2a2" + (reference "U11") (unit 1) (value "d_or") (footprint "") + ) + (path "/6e717a61-a645-4058-ba25-2ad82a45b840" + (reference "U12") (unit 1) (value "d_xor") (footprint "") + ) + (path "/74c7bc96-2ff7-47c3-8294-65a43b317cd7" + (reference "U13") (unit 1) (value "d_dff") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74LVC2G100/analysis b/library/SubcircuitLibrary/SN74LVC2G100/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74LVC2G100/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74S134/SN74S134.cir b/library/SubcircuitLibrary/SN74S134/SN74S134.cir new file mode 100644 index 000000000..94bd1be97 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S134/SN74S134.cir @@ -0,0 +1,16 @@ +.title KiCad schematic +U7 Net-_U4-Pad3_ Net-_U1-Pad11_ Net-_U10-Pad1_ d_and +U10 Net-_U10-Pad1_ Net-_U1-Pad12_ Net-_U10-Pad3_ d_and +U14 Net-_U13-Pad2_ Net-_U1-Pad13_ Net-_U1-Pad14_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ PORT +U13 Net-_U12-Pad3_ Net-_U13-Pad2_ d_inverter +U6 Net-_U3-Pad3_ Net-_U1-Pad7_ Net-_U6-Pad3_ d_and +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U5 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U5-Pad3_ d_and +U12 Net-_U11-Pad3_ Net-_U10-Pad3_ Net-_U12-Pad3_ d_and +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ Net-_U11-Pad3_ d_and +U9 Net-_U6-Pad3_ Net-_U1-Pad8_ Net-_U11-Pad2_ d_and +U8 Net-_U5-Pad3_ Net-_U1-Pad4_ Net-_U11-Pad1_ d_and +U4 Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U4-Pad3_ d_and +U3 Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U3-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/SN74S134/SN74S134.cir.out b/library/SubcircuitLibrary/SN74S134/SN74S134.cir.out new file mode 100644 index 000000000..dd8d5ae35 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S134/SN74S134.cir.out @@ -0,0 +1,64 @@ +.title kicad schematic + +* u7 net-_u4-pad3_ net-_u1-pad11_ net-_u10-pad1_ d_and +* u10 net-_u10-pad1_ net-_u1-pad12_ net-_u10-pad3_ d_and +* u14 net-_u13-pad2_ net-_u1-pad13_ net-_u1-pad14_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ port +* u13 net-_u12-pad3_ net-_u13-pad2_ d_inverter +* u6 net-_u3-pad3_ net-_u1-pad7_ net-_u6-pad3_ d_and +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u5 net-_u2-pad3_ net-_u1-pad3_ net-_u5-pad3_ d_and +* u12 net-_u11-pad3_ net-_u10-pad3_ net-_u12-pad3_ d_and +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_and +* u9 net-_u6-pad3_ net-_u1-pad8_ net-_u11-pad2_ d_and +* u8 net-_u5-pad3_ net-_u1-pad4_ net-_u11-pad1_ d_and +* u4 net-_u1-pad9_ net-_u1-pad10_ net-_u4-pad3_ d_and +* u3 net-_u1-pad5_ net-_u1-pad6_ net-_u3-pad3_ d_and +a1 [net-_u4-pad3_ net-_u1-pad11_ ] net-_u10-pad1_ u7 +a2 [net-_u10-pad1_ net-_u1-pad12_ ] net-_u10-pad3_ u10 +a3 [net-_u13-pad2_ net-_u1-pad13_ ] net-_u1-pad14_ u14 +a4 net-_u12-pad3_ net-_u13-pad2_ u13 +a5 [net-_u3-pad3_ net-_u1-pad7_ ] net-_u6-pad3_ u6 +a6 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a7 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u5-pad3_ u5 +a8 [net-_u11-pad3_ net-_u10-pad3_ ] net-_u12-pad3_ u12 +a9 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a10 [net-_u6-pad3_ net-_u1-pad8_ ] net-_u11-pad2_ u9 +a11 [net-_u5-pad3_ net-_u1-pad4_ ] net-_u11-pad1_ u8 +a12 [net-_u1-pad9_ net-_u1-pad10_ ] net-_u4-pad3_ u4 +a13 [net-_u1-pad5_ net-_u1-pad6_ ] net-_u3-pad3_ u3 +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74S134/SN74S134.kicad_sch b/library/SubcircuitLibrary/SN74S134/SN74S134.kicad_sch new file mode 100644 index 000000000..d6ae5224f --- /dev/null +++ b/library/SubcircuitLibrary/SN74S134/SN74S134.kicad_sch @@ -0,0 +1,1496 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 1994e1d2-a364-4d83-88ff-e33d1629ec2a) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (wire (pts (xy 223.52 92.71) (xy 224.79 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00a12170-cc7a-41af-98f1-4d0f3cd7aae4) + ) + (wire (pts (xy 72.39 85.09) (xy 66.04 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01fc23f5-74e2-47c8-960a-7d12eb440923) + ) + (wire (pts (xy 161.29 71.12) (xy 161.29 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02b80c68-7826-47bb-adcf-225ed3b68fa9) + ) + (wire (pts (xy 134.62 107.95) (xy 134.62 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c6a8eaa-9531-4171-8325-4e6a9b144923) + ) + (wire (pts (xy 114.3 82.55) (xy 110.49 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f14f394-e9e0-4d78-91bc-7c0fd5d7027a) + ) + (wire (pts (xy 238.76 100.33) (xy 238.76 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f2b83f4-b556-452f-aa26-98cc7ca6c8a2) + ) + (wire (pts (xy 74.93 109.22) (xy 66.04 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ffdc074-e5d9-4936-9331-3628e1b7fbb3) + ) + (wire (pts (xy 161.29 58.42) (xy 161.29 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1781298b-85ec-4b9d-a142-f5aee53453dc) + ) + (wire (pts (xy 74.93 88.9) (xy 135.89 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17ca4459-4916-4606-9767-1cef9146961c) + ) + (wire (pts (xy 71.12 78.74) (xy 88.9 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21b9250e-7d5a-4f12-a419-dde27c10a95d) + ) + (wire (pts (xy 111.76 80.01) (xy 114.3 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21dd1e48-0086-40c6-a550-0a441408bc63) + ) + (wire (pts (xy 66.04 105.41) (xy 66.04 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 296d332c-d07b-4742-a023-636f17483df0) + ) + (wire (pts (xy 74.93 113.03) (xy 134.62 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a71ed7f-b1c7-4d9d-a128-44a6c37b2405) + ) + (wire (pts (xy 184.15 69.85) (xy 184.15 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bcdd6d5-fe3a-4686-823a-cfb95ea983bf) + ) + (wire (pts (xy 114.3 106.68) (xy 110.49 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c6f3a5e-9dd7-48ce-916a-675be776eb00) + ) + (wire (pts (xy 69.85 80.01) (xy 66.04 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33027ebf-1f77-47fd-bda4-315724226b1f) + ) + (wire (pts (xy 110.49 106.68) (xy 110.49 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34b7cbe4-d662-4e32-96fb-2df5ac18c345) + ) + (wire (pts (xy 110.49 58.42) (xy 110.49 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3902cf03-dd10-4b76-abc5-64bf8bf70fa1) + ) + (wire (pts (xy 74.93 113.03) (xy 74.93 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39ae2edf-7262-4dfd-b8f8-73d085df5d83) + ) + (wire (pts (xy 66.04 106.68) (xy 77.47 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4336b826-8a6d-4705-8986-d925a2bf2399) + ) + (wire (pts (xy 135.89 83.82) (xy 135.89 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c64ce11-acef-49e4-87d4-52e8824478e0) + ) + (wire (pts (xy 77.47 101.6) (xy 77.47 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e5c02ed-40a2-4080-9b3d-5b5f4e5cfd94) + ) + (wire (pts (xy 231.14 100.33) (xy 231.14 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4edd54cd-71a9-44de-9225-e31a82b8d3ed) + ) + (wire (pts (xy 134.62 59.69) (xy 134.62 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5100e16f-902a-40ea-8398-3e03606a00c0) + ) + (wire (pts (xy 77.47 102.87) (xy 88.9 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52f4691c-8738-4920-aefb-c2aa5db8d0ab) + ) + (wire (pts (xy 110.49 82.55) (xy 110.49 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 554755be-7274-4ce2-893d-cc0908ea6ba8) + ) + (wire (pts (xy 68.58 60.96) (xy 110.49 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58d2cc6a-b23a-4e8f-9dc9-f7393475ce61) + ) + (wire (pts (xy 184.15 93.98) (xy 184.15 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59f6ec05-4d64-4a0b-9c81-cffc9885d179) + ) + (wire (pts (xy 137.16 81.28) (xy 138.43 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b1a2427-7571-46da-b308-c9f1f55eb3db) + ) + (wire (pts (xy 111.76 55.88) (xy 114.3 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e8b083b-a7a8-4ff0-b8c8-0dd1b566bd4e) + ) + (wire (pts (xy 68.58 115.57) (xy 238.76 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61c90d15-3859-432b-aba0-26a42a0de522) + ) + (wire (pts (xy 74.93 90.17) (xy 66.04 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6402601b-8df1-4e3c-a203-c1a2ce30ad98) + ) + (wire (pts (xy 67.31 57.15) (xy 88.9 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66230567-ff75-413e-a67b-f413bd1d3367) + ) + (wire (pts (xy 66.04 82.55) (xy 71.12 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68045dff-7e0f-427b-8051-0e2ca814fea4) + ) + (wire (pts (xy 114.3 58.42) (xy 110.49 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6cacd414-d031-4107-ad5b-ee08afb2d98a) + ) + (wire (pts (xy 66.04 87.63) (xy 73.66 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70b9eff5-aefb-4966-a696-cafedadcaa09) + ) + (wire (pts (xy 68.58 111.76) (xy 68.58 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72e6ef41-822e-4e91-90ba-c606ca09bacb) + ) + (wire (pts (xy 224.79 92.71) (xy 224.79 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7333cd12-b2ed-4fc7-be8a-0ec7e8dc335a) + ) + (wire (pts (xy 66.04 111.76) (xy 68.58 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78e56b5f-cbca-4d02-841e-cd8d96e79574) + ) + (wire (pts (xy 66.04 77.47) (xy 68.58 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80af087a-96ab-491c-9a39-cfafced2141e) + ) + (wire (pts (xy 67.31 74.93) (xy 66.04 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81e218d2-0303-4924-ae80-633a6968ec95) + ) + (wire (pts (xy 72.39 81.28) (xy 88.9 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d821492-e6d6-4a14-a634-129026c6d145) + ) + (wire (pts (xy 224.79 91.44) (xy 231.14 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 958c8227-9634-495e-9713-3e6acb62181f) + ) + (wire (pts (xy 71.12 82.55) (xy 71.12 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96b3deab-9085-431e-b3b6-60140365e868) + ) + (wire (pts (xy 73.66 87.63) (xy 73.66 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 976a1983-62f5-4342-b538-6a561d4fcc54) + ) + (wire (pts (xy 137.16 57.15) (xy 138.43 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 992feae2-a530-4e8e-bb89-2116e5bcbf3b) + ) + (wire (pts (xy 68.58 77.47) (xy 68.58 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2412caa-f66d-47f4-8b39-c6996480abff) + ) + (wire (pts (xy 138.43 107.95) (xy 134.62 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6e3bbbc-4536-4d74-a5c4-1c6f1cdf1100) + ) + (wire (pts (xy 238.76 100.33) (xy 231.14 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8b68b1e-4e23-4f18-9f51-31efbc4db403) + ) + (wire (pts (xy 69.85 63.5) (xy 134.62 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5c0fed8-e367-42be-a445-9ac175ce0966) + ) + (wire (pts (xy 67.31 57.15) (xy 67.31 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6e6c0fb-81bb-4e43-9154-b0211709810a) + ) + (wire (pts (xy 207.01 92.71) (xy 208.28 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c179732d-69d0-4a83-9002-fa5d920cca7b) + ) + (wire (pts (xy 77.47 106.68) (xy 77.47 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c792349e-963b-47a9-b685-d484c444e9da) + ) + (wire (pts (xy 66.04 54.61) (xy 88.9 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c84e3479-97d5-44b4-94f9-609cadd3ddf9) + ) + (wire (pts (xy 73.66 85.09) (xy 110.49 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb344381-ad57-46a6-ab12-683f92a098f4) + ) + (wire (pts (xy 161.29 106.68) (xy 184.15 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d37cf053-b7b5-4869-974f-be3fcd0c8a83) + ) + (wire (pts (xy 66.04 101.6) (xy 77.47 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dca0b0bd-8759-4d6d-a4f6-98730d096e79) + ) + (wire (pts (xy 137.16 105.41) (xy 138.43 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd33496a-de69-4399-8f83-c86d2a51ac8c) + ) + (wire (pts (xy 138.43 83.82) (xy 135.89 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed29bdd3-796d-4f86-a482-b4934ae4c14e) + ) + (wire (pts (xy 138.43 59.69) (xy 134.62 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef0deb7e-a50c-4c94-9e9b-ac4a82ce8727) + ) + (wire (pts (xy 77.47 110.49) (xy 110.49 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f273bfad-7e95-4093-b91c-39d0be60b69a) + ) + (wire (pts (xy 69.85 63.5) (xy 69.85 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f85201de-2606-4ab4-b3e2-a02d2b489d54) + ) + (wire (pts (xy 74.93 88.9) (xy 74.93 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f877fbfb-2044-4190-8bf9-e91f3a14cf3a) + ) + (wire (pts (xy 66.04 105.41) (xy 88.9 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8c6ebca-6a38-492b-83fe-5f5777efd42a) + ) + (wire (pts (xy 66.04 54.61) (xy 66.04 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8ebee26-4ec1-4044-9f30-bda991a5bb05) + ) + (wire (pts (xy 111.76 104.14) (xy 114.3 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbe85368-46c9-44b7-b219-9689f245c0d8) + ) + (wire (pts (xy 72.39 81.28) (xy 72.39 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe214a78-7940-49b4-b223-42f5add3420d) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 03c1c17b-c83c-4a7c-9bc1-945c7f495339) + (property "Reference" "U3" (id 0) (at 100.33 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c75cb4fb-0839-48fd-83b0-bd7d953508ad)) + (pin "2" (uuid efc20755-71d2-466e-85ed-42602255d797)) + (pin "3" (uuid afcb5b2e-4cdb-4994-b438-493a92b10fd9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 90.17 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0c0c4230-3f93-4f38-81c0-3c8e0ccc8087) + (property "Reference" "U1" (id 0) (at 60.325 85.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 87.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58357790-ad19-4995-800a-61dc0e8d004e)) + (pin "2" (uuid 7f89a5c0-e952-41ad-bc4f-66a1fa022240)) + (pin "3" (uuid 875bdb99-868f-4382-bf6d-cb07fe449929)) + (pin "4" (uuid 70f3b4bc-ec95-4062-b7eb-1194eb8c281f)) + (pin "5" (uuid 2141844c-c55f-4975-8b66-366fde74a94b)) + (pin "6" (uuid d0dbc5d1-2ec5-441b-863d-b1c3104588e1)) + (pin "7" (uuid f8a38368-c819-4556-ac4f-ce09fdbadbc1)) + (pin "8" (uuid 4b2aa0c3-7652-4197-a11b-f80284c14109)) + (pin "9" (uuid c7ad6fc1-07b5-401e-aeeb-6da05079c159)) + (pin "10" (uuid 4a250b68-3e91-45be-9da1-dba2a2ca6f6b)) + (pin "11" (uuid f05ec108-3199-4660-ad5c-c6a5699f275f)) + (pin "12" (uuid 58a7db7c-0a19-4654-aae7-11037dd093b9)) + (pin "13" (uuid e44597d2-2c14-46b1-89c6-be3d9f48426e)) + (pin "14" (uuid 27513c19-43d8-450e-b4ac-b6dbd5bc214d)) + (pin "15" (uuid 9e1aade5-2498-407b-a84e-fc4df3dcb306)) + (pin "16" (uuid 1f209c53-22fc-4729-b175-9dc8ab534c14)) + (pin "17" (uuid 66843126-b3ff-402f-976c-0f6b73c32966)) + (pin "18" (uuid d6a37faf-fb64-44a3-bfa9-1c87faa66eca)) + (pin "19" (uuid 1fab3d81-7340-426f-9bd0-d3a006cf86df)) + (pin "20" (uuid ab597dc6-958d-4ba7-baa9-b12e452e66e0)) + (pin "21" (uuid 66545d89-dfed-4473-bd3f-c3b0798de4c6)) + (pin "22" (uuid 726c00ea-fca4-4a70-b4d2-8806fb5ffae2)) + (pin "23" (uuid 8111b484-92a4-4b93-a642-b1de0992c10b)) + (pin "24" (uuid bc0beb87-bb34-41c4-92bc-64369586ccba)) + (pin "25" (uuid 54f98340-5d05-4821-a973-90dfee5f43a9)) + (pin "26" (uuid 140b23e1-c7f7-4827-8664-440b689812a9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 109.22 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1269fb2e-75ac-4f2d-9e87-8dacd2b2c69d) + (property "Reference" "U1" (id 0) (at 60.325 104.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 106.68 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4fb8b638-0661-4d6e-8c26-a7914e41f205)) + (pin "2" (uuid 4a690c1b-cd0c-4826-aefe-151607fc5ac1)) + (pin "3" (uuid ce9a44c3-c35b-4a5a-a911-daa563af9bdb)) + (pin "4" (uuid c3c1e34c-23fd-4ea1-b855-30dd0a7fe74b)) + (pin "5" (uuid 9f114e3b-ecc0-4c3a-bc78-503d65935e93)) + (pin "6" (uuid 3666c70e-5714-4185-b999-244f455c6643)) + (pin "7" (uuid 3ce93894-3a85-4fb3-b97d-c4847f430e89)) + (pin "8" (uuid f6be3882-423d-41b2-a1ad-1337416aea0d)) + (pin "9" (uuid 75b0727c-d126-4086-8e83-fea61aa43fed)) + (pin "10" (uuid f951c730-c125-4821-b0ae-2807a14b99e3)) + (pin "11" (uuid 858a70ec-477a-474a-bedd-71beba9419e9)) + (pin "12" (uuid cd9e0512-1037-40a3-8d15-b5fd769745cb)) + (pin "13" (uuid ae358be4-d34e-4477-af76-059cb575a3d1)) + (pin "14" (uuid ee048546-c4c8-4cdd-b44c-dc35e6d34156)) + (pin "15" (uuid 9ad881a2-1b07-42e3-8e79-12ad9802a122)) + (pin "16" (uuid 2e1f876e-25e0-495d-a175-16acf63e48f2)) + (pin "17" (uuid 6f3cd16c-dc63-44d9-bd62-d8791f56ac50)) + (pin "18" (uuid 05c0ec7d-38cc-4e59-ba6c-81251650fe2c)) + (pin "19" (uuid 590674d5-8deb-4d11-8dbf-4681de9391bd)) + (pin "20" (uuid 8eb8af3b-b40a-44e3-ae8d-901286cfe7a4)) + (pin "21" (uuid dbe52aee-0f11-4b8b-a51a-ea154a9c0ccc)) + (pin "22" (uuid fdf7949a-3791-4b2a-95ad-c8575abea3e5)) + (pin "23" (uuid 98ad6099-1916-46f8-a87b-7376ed4e742c)) + (pin "24" (uuid bb1519a6-0185-4db7-bad8-988aac571a54)) + (pin "25" (uuid 3f2e7e04-069d-4275-b3ba-9be8025ad623)) + (pin "26" (uuid 2672c24b-093a-494d-aab9-67d72563ba10)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 172.72 71.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17c4de08-fefa-4f7d-a9bb-7edadc805eb0) + (property "Reference" "U11" (id 0) (at 172.72 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 172.72 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 172.72 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c209715a-a3e8-49ec-a003-66a047c34d23)) + (pin "2" (uuid 04a1204a-a8f1-4450-94c8-0ca3fb97959c)) + (pin "3" (uuid 9d421293-16b6-4fe7-8442-45fe7898d655)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 125.73 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 20e8b4af-e25d-4e0c-b547-191c59d884f9) + (property "Reference" "U5" (id 0) (at 125.73 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 125.73 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 883ac6c5-f9a9-4c32-8748-ce5fc6688411)) + (pin "2" (uuid 109aec97-2548-4e93-945f-340fb10ad666)) + (pin "3" (uuid 031dd1cd-04e2-4389-87c9-34a2966afcd5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 242.57 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 30f1f57c-8493-4639-9004-9892cdaee5c0) + (property "Reference" "U14" (id 0) (at 242.57 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 242.57 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 242.57 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 242.57 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d0fcf1a-e373-461a-8100-0bdf4f964659)) + (pin "2" (uuid d9e0ea22-dcb9-4324-afbd-cdb6ca313d21)) + (pin "3" (uuid 257eb106-03c6-43e3-b746-c36fd6e1b1f1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 77.47 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a944b84-372f-44c0-89b4-3e5a5cfbde6b) + (property "Reference" "U1" (id 0) (at 60.325 72.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bccc9a3e-517d-4866-81b5-d321437e1165)) + (pin "2" (uuid eebf664f-a9a9-4bd4-8e58-2fe418c00e7e)) + (pin "3" (uuid 69421e20-3e76-4d45-8038-4a0b6246af50)) + (pin "4" (uuid 4dca730c-3602-4c70-8fa4-8b1757875cb1)) + (pin "5" (uuid 23f0a325-0e2c-4306-8294-09e719415cd4)) + (pin "6" (uuid fe4361c7-9ca5-4587-a89f-97999bfda896)) + (pin "7" (uuid 1824a435-74d8-4ddb-ad5e-f86a7cf563d0)) + (pin "8" (uuid 6574a4df-1b3b-4b75-bdef-c649bde749ab)) + (pin "9" (uuid 5e6aff0e-10d4-42fd-a9bb-3eaca97be2be)) + (pin "10" (uuid 32bf8638-9da0-4ec8-b99b-adf9e9fdc3d6)) + (pin "11" (uuid 55e7ac25-f09e-431e-b7e2-0d2d858e8000)) + (pin "12" (uuid fb331138-503a-4291-b1e7-685ebc53151b)) + (pin "13" (uuid c44fa697-6b87-4a20-ae3f-6cb5d46f472c)) + (pin "14" (uuid 7259961d-88d9-41e1-b336-b33084d8823d)) + (pin "15" (uuid 196817f7-b01d-4fe8-bc28-c55629c37a38)) + (pin "16" (uuid 2ed71e09-9a5a-48fa-9848-f028a87814ae)) + (pin "17" (uuid cf89aa21-37f1-4352-972b-874146840806)) + (pin "18" (uuid ec72bcb8-7280-4168-a902-f6fb95dec1c8)) + (pin "19" (uuid 83336c88-8fd8-4fe3-ad89-5b4da0d1e0d0)) + (pin "20" (uuid c957ad9f-0e63-4a05-9e50-d8476a84098b)) + (pin "21" (uuid c612edf8-cd13-440d-aaf5-579bc723ce94)) + (pin "22" (uuid 4cd3603c-3167-449e-b62f-16a84553b9cf)) + (pin "23" (uuid 237b64c5-2af2-4a5a-bce2-0e81194e849d)) + (pin "24" (uuid a69fab8d-7835-417a-a453-e96ecb97cccc)) + (pin "25" (uuid 95aa74e0-56ee-407c-9f85-d35f4d0cd655)) + (pin "26" (uuid 7db80eb6-d075-4a14-9f79-4694ccd1428c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 195.58 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c79ba0c-00f2-4c00-993c-03021d13a9cd) + (property "Reference" "U12" (id 0) (at 195.58 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 195.58 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 195.58 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 195.58 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb938188-1f1f-4ca1-957c-855000d4680f)) + (pin "2" (uuid 614ec1c8-99a5-46dd-95ac-7067949bade1)) + (pin "3" (uuid 6f627f79-a55f-497c-86a9-85095af27b10)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 74.93 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 688a95d0-af38-4a16-82e0-1cd1dbc356e1) + (property "Reference" "U1" (id 0) (at 60.325 69.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 72.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e91f1bda-edc6-493e-a6e7-680eca299a82)) + (pin "2" (uuid 80774241-61d3-47e4-a91e-a72c7129628b)) + (pin "3" (uuid adac0971-61bd-4f11-81a9-dcd9ed5ea578)) + (pin "4" (uuid 4dca1f63-d2ed-45b1-9594-7eb5053a8935)) + (pin "5" (uuid 0e920728-07d9-478d-b488-8e963df54277)) + (pin "6" (uuid 31622c4e-ec19-416b-9f3f-22c82e70fb64)) + (pin "7" (uuid 3996778f-f8f0-4812-a1ad-90b31f12f342)) + (pin "8" (uuid 6c1e76ad-99fb-471a-a571-79dfb432e84b)) + (pin "9" (uuid ef11d2ae-1de9-48f9-b7b2-bc2534189a30)) + (pin "10" (uuid 8315f8ad-b29b-4795-818f-bf7b56f2a0de)) + (pin "11" (uuid a981cf5a-4742-43cb-bc40-b11b9c7d9b1f)) + (pin "12" (uuid 85ff2927-3d08-4eaa-9560-f58a28b2ef18)) + (pin "13" (uuid c84488a7-3288-44cf-941a-3470f0337a63)) + (pin "14" (uuid 87b057b5-4144-407c-9e32-4c9f2ec99bff)) + (pin "15" (uuid 9674fe6e-e981-4728-9041-e04ca9351e5c)) + (pin "16" (uuid b238ceec-eea6-4f74-93c7-2d9c0f6e5637)) + (pin "17" (uuid 8e7b9425-6c05-4328-8437-2a0bc0107dc6)) + (pin "18" (uuid 8494c185-26ad-4a67-9fce-cbc4701d573b)) + (pin "19" (uuid ccb65a9b-f0c0-4e2e-9295-b2c9565ce338)) + (pin "20" (uuid ba0ffeb5-21f2-4cb8-9ca1-6d5c3cd02f93)) + (pin "21" (uuid e7c43e17-de18-427d-8fe8-f5561a94c321)) + (pin "22" (uuid 64b53a4e-6a1c-42fc-b78c-be5df0516390)) + (pin "23" (uuid cbf8b9ef-99d7-49bc-81cc-dc5ee1feb65a)) + (pin "24" (uuid 92af3729-ac14-4796-8206-3e7454687fab)) + (pin "25" (uuid ab507d6e-0b10-4f33-b2b0-4d93aba2a081)) + (pin "26" (uuid f35eecdd-8053-486a-b9cb-3ce74da5c952)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 85.09 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6dcb5f84-664b-480e-ade2-00ee99d5e9eb) + (property "Reference" "U1" (id 0) (at 60.325 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 23de64ea-de1e-4b07-9261-fd3882212b3e)) + (pin "2" (uuid fac41fc9-0a16-4c9d-b7fa-694579f67df0)) + (pin "3" (uuid ad1c9cdc-fc96-43bc-ad95-eec836b7e23d)) + (pin "4" (uuid 94811f9f-6c24-4f72-836f-352070b8f46e)) + (pin "5" (uuid c0b1d548-80ef-4051-99d7-81535430c3c5)) + (pin "6" (uuid b8d9fd30-0725-40c7-9ec9-8c645557ff72)) + (pin "7" (uuid bfd01bd3-a89d-443c-9da6-efc105483029)) + (pin "8" (uuid 98319c1d-4a8f-42f7-a805-7392f3b84810)) + (pin "9" (uuid 5ec67058-9a96-411b-bb5e-ae59c4ad4f3f)) + (pin "10" (uuid f6100f36-c47e-4cb4-9400-2fe52ba9ebfa)) + (pin "11" (uuid 35db8cb5-5ec3-423f-aec8-f37e76fe89f9)) + (pin "12" (uuid 494b67d5-26f2-4bec-98f2-d77f2ac0dd4e)) + (pin "13" (uuid bf3ba069-3871-4b79-82dd-18a4d4253262)) + (pin "14" (uuid 73ed7a64-2622-4abf-aa0a-9d0e8cfe91ac)) + (pin "15" (uuid aa0ba158-b4a8-40bf-bf87-efe68d76cae9)) + (pin "16" (uuid 2cf9adfd-ddc7-4103-8478-06193a233abc)) + (pin "17" (uuid e5af09e0-914a-4ab8-a110-fc1729bcb4a7)) + (pin "18" (uuid 9a9a8957-9733-4f32-8b4f-d73c579454f0)) + (pin "19" (uuid 36f7a08c-7251-4301-8192-76108628cee8)) + (pin "20" (uuid 19574a1d-dd1c-418b-a38e-b9f6e93fdeee)) + (pin "21" (uuid b0328ee3-856b-44e2-b9b2-0970b2ae4d9c)) + (pin "22" (uuid 14e2bd58-4f24-4e3c-8a13-7915a974258a)) + (pin "23" (uuid 878199cf-6e38-43ec-ad09-dd0d3f8c25d8)) + (pin "24" (uuid 6690b7f5-bc14-4a12-b1c9-b2a1bdba34d5)) + (pin "25" (uuid 673dd131-46bd-4ce1-ba63-c59679506963)) + (pin "26" (uuid abbab4d9-907a-4e70-b6c6-0c8e47c1c188)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 215.9 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6fd3f53d-12ad-4665-aa0c-3d320ff9ec74) + (property "Reference" "U13" (id 0) (at 215.9 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 215.9 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 217.17 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 217.17 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 179b5a41-84b1-48b6-a6ad-677502c79f8d)) + (pin "2" (uuid a47fe950-5877-470f-ad02-3df273c53bd9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 80.01 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7175bfdc-8095-49c8-9df7-990568425ec8) + (property "Reference" "U1" (id 0) (at 60.325 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 43619544-06a0-4a7e-87f4-306a65f2d79d)) + (pin "2" (uuid b2e4039e-6143-40de-979c-9d6c279dc689)) + (pin "3" (uuid 4abb5e5e-153e-493e-83f6-8d4373538ab7)) + (pin "4" (uuid 12adfd24-f7d9-46f8-bd44-ef0e03cbbc8f)) + (pin "5" (uuid 0512078d-2d55-4780-bce7-ec4b40e6b299)) + (pin "6" (uuid bc17d119-242c-4703-8b5d-83590febe3a3)) + (pin "7" (uuid d7efee45-b5a2-4ec6-ba66-f191c8ac90e8)) + (pin "8" (uuid 5fa2d18a-017c-4217-9213-20bf6a7756ea)) + (pin "9" (uuid bd16943c-76cc-4f48-9edb-4ec3d4b5bf59)) + (pin "10" (uuid 5e790ba4-10cc-4d8e-aab3-98a62f19edea)) + (pin "11" (uuid ae042c86-0652-4a60-af2a-a0fed22722e6)) + (pin "12" (uuid 55259d31-e082-4bed-9578-dbc36918281f)) + (pin "13" (uuid 3d933898-a410-4710-85c5-50ffe14c0473)) + (pin "14" (uuid be8513a1-c641-458b-9298-8d07e9609f10)) + (pin "15" (uuid 929d28e3-2550-44ed-b6b2-8c948b237db7)) + (pin "16" (uuid 3ec9f7e0-8bb3-40e5-abf4-c40f8ca2dde6)) + (pin "17" (uuid 4262b530-4a7d-41b0-aacd-15aaec80bae0)) + (pin "18" (uuid c7604639-49af-4a50-9581-376f741d0cde)) + (pin "19" (uuid 23983f0b-47c1-4a91-874b-2fdd607269b4)) + (pin "20" (uuid 3e3d2039-e25a-4b3e-bf2b-3bb114313d35)) + (pin "21" (uuid 93207265-ee0f-4d69-bfd7-60cbcc8804df)) + (pin "22" (uuid ed37f930-3d88-4fe2-b70f-31a0f1b47d0b)) + (pin "23" (uuid a4138d73-b6d3-4e82-b844-58c15076b33a)) + (pin "24" (uuid e8407cb9-6ccc-48e8-a76d-baa13171ee7b)) + (pin "25" (uuid f1f14c10-c42a-4780-a626-fb6d7caf4374)) + (pin "26" (uuid 6f1ac78f-4057-41cc-9ab9-872bb8d89244)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 82.55 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7dd0079e-2269-454f-9ac3-4f71c59afdc9) + (property "Reference" "U1" (id 0) (at 60.325 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 049c21bf-143e-428a-9347-f40abc7f2b35)) + (pin "2" (uuid c2827eef-9954-4273-9d61-8aa59c0ee687)) + (pin "3" (uuid 6bc20b12-4d08-41b3-b28d-42aa8c90e965)) + (pin "4" (uuid 0ace476e-4e07-472c-bc64-65e1a66cae6c)) + (pin "5" (uuid deb79a68-7c6f-4b11-aa96-56f05dfa61fc)) + (pin "6" (uuid 32119133-d8a3-481f-8a1a-005eb65ceef5)) + (pin "7" (uuid 02beda0a-53ab-4225-b727-905110a78ba9)) + (pin "8" (uuid 4cefaff3-dcda-4928-ab05-5fe39989bf01)) + (pin "9" (uuid 30fdc35d-77b2-4c86-a220-dc9eda8ec20c)) + (pin "10" (uuid 682c95e3-f7d7-4bc7-9abe-e62264132b2a)) + (pin "11" (uuid 830c6722-1436-49e3-91fb-9ff03ac49390)) + (pin "12" (uuid dec1bc0b-649f-4636-bb8b-15c598bb6019)) + (pin "13" (uuid 5978ab0e-29d9-4f8c-a0b9-339d6c877f3e)) + (pin "14" (uuid 3969101f-a2f0-4ed1-9984-06012f4772a4)) + (pin "15" (uuid e15dc1e6-8b1e-4869-9e33-5c09f32c0c0f)) + (pin "16" (uuid 2031a516-a354-46db-a61a-742159e68b2f)) + (pin "17" (uuid dc236637-c1a5-4520-90d4-d851d79725d7)) + (pin "18" (uuid df6e0abf-faf9-479d-989a-cde562a5ea86)) + (pin "19" (uuid 323798f4-a1de-46e1-bb0d-d31755a06ef4)) + (pin "20" (uuid 4a457a06-9718-4308-a592-c9cfb03d9a06)) + (pin "21" (uuid 6d7bf2fd-7900-4b6d-b593-76a73a1fbb4d)) + (pin "22" (uuid 296ffd2c-d375-4c6a-a9a0-a99d6811de57)) + (pin "23" (uuid 5b7e54da-dcda-4a35-88e0-f27705e56ad0)) + (pin "24" (uuid 801ca4c2-ed13-4c64-a919-737458977a07)) + (pin "25" (uuid 374f3f37-e260-425d-894e-d644fd01ead4)) + (pin "26" (uuid be0f0c19-6c94-4232-9e2a-84fa14a95fae)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 106.68 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f86cf17-e673-4167-85ab-5af349d9aabb) + (property "Reference" "U1" (id 0) (at 60.325 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 104.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 552626c3-0290-4846-836c-cc0a97c32403)) + (pin "2" (uuid a5096c78-6984-4702-8220-c41e8dce130d)) + (pin "3" (uuid 355980ed-f25e-4cb9-b7ab-2e2e44ba10c1)) + (pin "4" (uuid fc32dc45-93e1-4862-95ea-d4bcf93c55cd)) + (pin "5" (uuid 09b2ad9e-2eb4-4cc9-a4cf-cf86e0120e84)) + (pin "6" (uuid 6dde736e-b2a3-4ae4-9f51-ddf76eacf61b)) + (pin "7" (uuid 6d6b9e31-1208-4c5a-9b26-16021b9b6f32)) + (pin "8" (uuid 5687bc2f-82da-4412-ac8f-a44cb227ef10)) + (pin "9" (uuid c4259915-ba30-4e98-9b01-f7df3a791dd9)) + (pin "10" (uuid 0e267009-554b-43fb-a9c6-21e0cdf16cf6)) + (pin "11" (uuid 0c27f711-6bd7-4baf-899b-1238944974ae)) + (pin "12" (uuid b141638c-09c5-41eb-8ec1-a2c9bcb39841)) + (pin "13" (uuid f0006527-218c-426e-ba7d-24598c6b9e2d)) + (pin "14" (uuid c9ba0efb-3ac4-44aa-8de4-aa880baed39b)) + (pin "15" (uuid a76e1501-208d-4a83-bd14-5e949ee5fee4)) + (pin "16" (uuid f51c94fb-26f0-48f4-8310-3511400aa747)) + (pin "17" (uuid e3b1def1-4b39-4733-9e96-808d93ccc301)) + (pin "18" (uuid c32bf767-c0ab-48c0-a1b1-f2140849ed39)) + (pin "19" (uuid 1373a07b-92e3-4bf6-a482-299c23bbccb7)) + (pin "20" (uuid eaef88ff-c019-4050-89b0-6bae3bf45c15)) + (pin "21" (uuid 5c9428ae-ba3d-4693-b3ab-fb9e160dc8bd)) + (pin "22" (uuid cfa2ca15-60f5-41a8-8b18-79628bc7a72d)) + (pin "23" (uuid b0e8b57b-8270-41a8-a296-6cef2348c644)) + (pin "24" (uuid 669db067-af93-4104-8512-9d10e629074e)) + (pin "25" (uuid 0f19f6f8-9fda-4b61-b578-8d3562ad6a50)) + (pin "26" (uuid bb26a866-9418-4d55-a0ee-3e211a26d3f5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 111.76 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9678af0b-3e40-44fd-a2fd-33ca39805e78) + (property "Reference" "U1" (id 0) (at 60.325 106.68 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 109.22 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7c2c86b1-52f6-416a-a65e-95dff007735c)) + (pin "2" (uuid 114a25dc-82ed-4cdb-a0a0-9ceebbdb614b)) + (pin "3" (uuid 6ea2d72b-b666-48f7-89da-41267d0b1a73)) + (pin "4" (uuid f3a5c245-1be0-43e9-b246-b46e4569c4ad)) + (pin "5" (uuid 18667d8b-3df5-4208-80ec-ed7823058ff6)) + (pin "6" (uuid 3acf6122-95b7-4096-a74d-ae7e8e65d85b)) + (pin "7" (uuid 4c607c61-b010-4034-aae1-3316f049ecfe)) + (pin "8" (uuid d279d5ac-e550-4cfe-8876-c2ab4159f1d1)) + (pin "9" (uuid a809e8c8-539b-4d3d-9492-45efb6f0dc3a)) + (pin "10" (uuid a28d96f7-2371-4407-8536-1a2046136dd1)) + (pin "11" (uuid 579177cc-bb02-45b7-92f0-8fa5519c0078)) + (pin "12" (uuid a01867ca-4af3-4b0d-bb76-255696841d61)) + (pin "13" (uuid 97aeff0f-23db-49a2-afd5-b855d73a0ad0)) + (pin "14" (uuid 2d9f29e8-eddc-4618-9f46-dd5727bdc883)) + (pin "15" (uuid dedacc5a-6e08-4e60-b322-d83ab5106749)) + (pin "16" (uuid 1a5b57b0-44b5-42dd-b64b-7f39b8c42905)) + (pin "17" (uuid a5cf4f32-4e15-4692-9af8-7fa2100c12f2)) + (pin "18" (uuid 624aede1-d861-4829-bfac-28ce9059ff4a)) + (pin "19" (uuid a8ceea0c-58a2-445a-b869-82a51a397f00)) + (pin "20" (uuid 8ab8fb38-9038-4f44-9256-440be9dd18db)) + (pin "21" (uuid c2bdb893-b120-4284-9665-c8360ea426b5)) + (pin "22" (uuid 739d5bab-2c73-4472-a96e-d187009352c3)) + (pin "23" (uuid 4e7e1d46-cf04-49f5-aa03-22363798a4cd)) + (pin "24" (uuid 25f9b639-9377-47c8-baff-6146e69cb7c5)) + (pin "25" (uuid 912e709e-c590-491e-ba6c-e6b54245414e)) + (pin "26" (uuid bdc8ecd2-cc05-4724-a193-f65863b9640a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 101.6 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 97c23374-8305-4cdd-930d-22f02cac72d9) + (property "Reference" "U1" (id 0) (at 60.325 96.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 99.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 78c2e290-91ef-44d8-acd3-acd76a068ef1)) + (pin "2" (uuid e83e3c34-b056-47d9-a52b-77838307bb2c)) + (pin "3" (uuid 111f485b-8a67-405f-b654-00b2c4fa0bbd)) + (pin "4" (uuid 82994b0f-d51e-4de4-82d6-f516626a4497)) + (pin "5" (uuid 82b1b4b7-8b55-45d1-a1f5-974553b1ad0d)) + (pin "6" (uuid 0a185344-81d4-4d57-adae-5702228bac2f)) + (pin "7" (uuid f0a99461-7c3a-4e22-8485-4029df07fc36)) + (pin "8" (uuid 395d85b8-350d-48d5-8ff3-45c0dbc0fa8f)) + (pin "9" (uuid 45604598-7ea8-4f23-b311-894892a5719c)) + (pin "10" (uuid bc44a522-64ed-4a54-8936-240c5a7615c1)) + (pin "11" (uuid 66bd6ef9-b2ae-46d5-afed-1ae9b2a57dbf)) + (pin "12" (uuid 5d779708-6402-4221-98de-3d91801f1ca3)) + (pin "13" (uuid 5b29fec9-7f77-4532-8ac8-7c7438c31e52)) + (pin "14" (uuid 4105b15d-8689-4b13-ac0e-399bda083caa)) + (pin "15" (uuid 9849858e-0636-417e-9835-94e21ac1bb0d)) + (pin "16" (uuid 1202a5e1-bb47-4bc1-860f-a23aaa0e4608)) + (pin "17" (uuid 82820440-c43a-4e20-8c19-8ec8a017858a)) + (pin "18" (uuid c6ed1b85-7a1a-40c1-afa3-a527b51bda43)) + (pin "19" (uuid c2c12028-5e3f-4c85-af02-1461629986fd)) + (pin "20" (uuid 3a886d4b-24d4-429d-928a-41bb5d569dce)) + (pin "21" (uuid d109c414-2d3e-42ff-b27d-01e20d9dc4f3)) + (pin "22" (uuid bd815d71-1e00-4412-a0ee-9d928983bfcf)) + (pin "23" (uuid 63d91c70-803a-43d9-9fab-8a542c991057)) + (pin "24" (uuid 4cb36ec6-411f-4608-85e1-674c9edf2063)) + (pin "25" (uuid 287deffa-332b-44b0-9e91-a0ae86938747)) + (pin "26" (uuid 595c977d-33b3-4c04-8eb8-d5d1db1a1e8a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 260.35 92.71 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5c9d50e-3a2e-4ed0-8012-70dda46404a3) + (property "Reference" "U1" (id 0) (at 264.16 92.075 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 264.16 94.615 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 260.35 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 260.35 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b58faf8d-7111-45dc-b70d-14382c6ac987)) + (pin "2" (uuid 763f2351-4950-4bc9-b152-59147964d98b)) + (pin "3" (uuid 9ee76b47-275c-4ad6-bd69-f954272c5f47)) + (pin "4" (uuid 4dd7219b-9996-49cc-a98b-0f6440905196)) + (pin "5" (uuid 8d4de05e-1c2d-46be-8d31-d35ea313655a)) + (pin "6" (uuid 445f1aa0-fa40-4cf2-9249-7061142f6d09)) + (pin "7" (uuid 5d22b760-9e93-4f26-a067-b70355909ffa)) + (pin "8" (uuid 9e85afdc-a8a9-4ee5-8be2-2dc4808c4cd4)) + (pin "9" (uuid 2ac50b64-1ab3-4f33-b306-d412cd207fd1)) + (pin "10" (uuid 3e119d43-157f-4d11-9602-6649d773a378)) + (pin "11" (uuid e953d740-ce67-40ea-8ae9-660115ac55f9)) + (pin "12" (uuid d53c6295-63f3-4236-a1fd-86eb84944cc1)) + (pin "13" (uuid 43421c4a-3ad5-4c82-a811-d4484324c77e)) + (pin "14" (uuid c0789c7a-724b-484f-9284-41793c9a2e4c)) + (pin "15" (uuid d6649a31-0388-4085-9262-0a3c0865c4d5)) + (pin "16" (uuid 3fa28cb0-9ec9-446b-939b-fa2d674e380a)) + (pin "17" (uuid 70e445ee-6d79-41c7-9df3-13642c64b6e5)) + (pin "18" (uuid c3f81d36-f0e3-4c8f-9907-3ae79680d7b9)) + (pin "19" (uuid b15749ce-12e1-4fa2-aede-87283d7dfd79)) + (pin "20" (uuid 2a278108-f9bc-45c6-a373-615796636a0b)) + (pin "21" (uuid 46ff0b5a-b75a-465f-a5a7-f5de41dbb79a)) + (pin "22" (uuid 579adf22-04a8-469a-bc9f-a7320377dc9f)) + (pin "23" (uuid e9d4078e-fda6-4441-b969-3ae57b21f9db)) + (pin "24" (uuid a0d02d9e-2869-4a14-b23e-2699441543a2)) + (pin "25" (uuid b3f81652-0a65-4e23-9e69-172666839eea)) + (pin "26" (uuid 3a520416-ad0e-4865-bae0-d0aa536e3227)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b4886cb7-54d2-4eeb-b13a-1faf5967087e) + (property "Reference" "U2" (id 0) (at 100.33 48.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a2107f5-b932-4847-816b-96286cd589bb)) + (pin "2" (uuid d9077e73-f8d2-4429-a434-e036691ce038)) + (pin "3" (uuid 7e866bd1-5352-48f2-bf92-cecd09459bfc)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 125.73 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba583d25-27f2-4acd-af07-3b5c43d96c31) + (property "Reference" "U6" (id 0) (at 125.73 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 125.73 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dbb0caa6-3f42-4536-8bc1-ceff99e6f579)) + (pin "2" (uuid bb1bc0f1-63bc-4914-a709-7aee3d77065a)) + (pin "3" (uuid 5bdf9762-7319-45df-8f61-12d472b234cc)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 125.73 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb5a4a60-b55c-414d-90d2-8c41716d6b66) + (property "Reference" "U7" (id 0) (at 125.73 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 125.73 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 125.73 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 125.73 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 001e46cf-7d84-4e3f-b021-732ebd3da4cb)) + (pin "2" (uuid 3e91ef09-f087-48b1-84cf-a13d50b53549)) + (pin "3" (uuid f9b3249b-d9d4-4477-bbd6-ace6d6dc9f74)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 59.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c4fd3c14-0b1f-4a67-99eb-2581fba0ae23) + (property "Reference" "U8" (id 0) (at 149.86 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cc0005d4-1ce4-4146-a38c-2d3ae966b74a)) + (pin "2" (uuid 9a164d60-950a-41ac-a01e-6c41b956cd39)) + (pin "3" (uuid f5e43e0e-2e9a-492c-a613-eea1dba39c31)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c87e85da-a027-4405-a7d5-f870093a6314) + (property "Reference" "U10" (id 0) (at 149.86 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f6da9eaf-e1fd-44d2-98bc-754cafc1fe40)) + (pin "2" (uuid 69370b18-f51e-4917-a791-fed8dc6ac04b)) + (pin "3" (uuid 8aaaca55-d81e-4dbd-bd0d-39bc9730ed5a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 87.63 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e3db7316-72fd-4aca-8638-00409fd1a30b) + (property "Reference" "U1" (id 0) (at 60.325 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 85.09 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f20cc9d-e937-4582-957e-224512998a36)) + (pin "2" (uuid ac4d5776-c3a0-447f-ac2a-67688f360a9d)) + (pin "3" (uuid 73d60551-160e-4786-8c26-06eeb77e49c6)) + (pin "4" (uuid 948fba55-73c4-46bd-be4a-0cd2e9a15000)) + (pin "5" (uuid 29dd3baa-c830-4826-9cf4-d4098819d348)) + (pin "6" (uuid 65dd0714-25eb-46da-b51e-ff9aec175fc0)) + (pin "7" (uuid b61f30cf-c973-4a68-9f1d-c123131d38e0)) + (pin "8" (uuid 39e68469-4f9c-4cb4-91c2-df65f5add6bf)) + (pin "9" (uuid 5893ada1-1df7-41c6-ad3e-79874957c472)) + (pin "10" (uuid c6a8f4b2-d6d4-49ea-80af-fe6010feec92)) + (pin "11" (uuid 43f2d736-43ec-4d14-9620-36829a5e23a5)) + (pin "12" (uuid b088cc62-2066-43fc-b518-00cfabe1a0a8)) + (pin "13" (uuid 16d9b124-a353-4f51-9790-131868c22682)) + (pin "14" (uuid dc77ffe8-06a2-46ad-95ad-ddfe2e008505)) + (pin "15" (uuid b84b535c-0869-4576-aa38-eaf3ae25b55d)) + (pin "16" (uuid d2cef28a-6133-45c8-8e5c-1f88da700dbf)) + (pin "17" (uuid 92052152-dfc6-46d1-816f-aea7040bd7a7)) + (pin "18" (uuid 5f655ee7-f21d-45c1-ab9d-1033e12bc43f)) + (pin "19" (uuid f538aa15-bd00-4c2e-a070-632335314835)) + (pin "20" (uuid ee21e35b-787c-43ee-8947-5d868dc41b0b)) + (pin "21" (uuid 9727dc34-6993-46f7-8a8d-e98408ff77ed)) + (pin "22" (uuid b274a9fe-2ba3-4ab0-830e-f88814181d5d)) + (pin "23" (uuid 33c2310a-dba0-4cde-ad1f-bc370d386970)) + (pin "24" (uuid a867dc56-0ced-4500-807f-225ef700f555)) + (pin "25" (uuid 4725d3a5-7eab-4629-bb16-96c878be09d5)) + (pin "26" (uuid eddce997-60a3-44fe-884c-fb9a5f76fbd6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 100.33 105.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f40d3cde-0e8e-4c99-90bf-9e1977b53f82) + (property "Reference" "U4" (id 0) (at 100.33 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 100.33 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 100.33 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7d42788a-879c-4399-b637-bd9676f3333b)) + (pin "2" (uuid 58e01315-4f8c-4c23-b65b-867b73139f8a)) + (pin "3" (uuid bfd117c4-07dc-44a3-8611-1ed94f37bcc9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f7d0ac0e-65d1-4607-84d0-f9022f9c21f1) + (property "Reference" "U9" (id 0) (at 149.86 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d3664157-1e3b-4a13-94d9-7d0141ed9771)) + (pin "2" (uuid a283779d-4a29-4fd0-9b09-c0e9c23f79cd)) + (pin "3" (uuid 3ac0b13d-a2ef-4246-b192-4c5de34180ea)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 104.14 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid facfb190-0fdc-4ca3-bb35-6b1e1390f24e) + (property "Reference" "U1" (id 0) (at 60.325 99.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eaeafd38-5268-4e59-b10a-1dba35abacf9)) + (pin "2" (uuid 1414329f-3cc1-4da7-a963-55c4c8aeac77)) + (pin "3" (uuid 054b3bf3-ec05-46be-9f1c-151175384193)) + (pin "4" (uuid 905d6f82-ae61-44e6-a24a-d07d799f9af2)) + (pin "5" (uuid 20f08d70-0650-4146-9086-4bfdc27399d0)) + (pin "6" (uuid 979f25d1-ba3d-42fd-a503-e11374ac04cb)) + (pin "7" (uuid e992cb2b-26a5-4810-871c-608499cadfdf)) + (pin "8" (uuid 2538d642-266a-4da7-b4a2-4674c194de42)) + (pin "9" (uuid 517754c2-66e2-4bc8-a904-29aaf90d7976)) + (pin "10" (uuid 5b1df529-e493-4819-a4b5-09765401de5c)) + (pin "11" (uuid 1197e29e-fbcb-4273-84f4-89e8e5048411)) + (pin "12" (uuid 52e73236-e9ae-4834-859d-0d33ef8bb335)) + (pin "13" (uuid 225c874c-b7fe-4ab5-9afd-ca821885d05e)) + (pin "14" (uuid 7764720e-a451-4ff7-805e-404b47b8ee01)) + (pin "15" (uuid 4046fda6-9c1a-468a-be49-5c340059c513)) + (pin "16" (uuid 525a77d7-a4ab-47ce-b931-6bc2339bf94c)) + (pin "17" (uuid a9854380-f8d6-4dc5-b765-f99a6a8a7a0c)) + (pin "18" (uuid 681fba30-aad2-4197-b0e9-c360f8fa77e7)) + (pin "19" (uuid b28aa21e-9577-4593-804d-0d5b475a8f4e)) + (pin "20" (uuid 97dda4a3-f20d-4d48-98ed-f155c8734ea8)) + (pin "21" (uuid f54ad514-69d9-49c6-bf43-c623a2ec8879)) + (pin "22" (uuid c2e49aeb-1e6a-49e7-8962-ca05549a206d)) + (pin "23" (uuid addd21d2-4ec6-4ad6-b6eb-4751ce241749)) + (pin "24" (uuid 68e3e1fb-3892-4608-b7c8-307dc97fa139)) + (pin "25" (uuid 64889139-8ca3-490d-97ab-1ff06633dd56)) + (pin "26" (uuid 496b5a28-60a4-4fdc-9e0e-c67425a1bfab)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 59.69 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ff18ee2f-215d-4f6f-a3e6-5b726d7928f4) + (property "Reference" "U1" (id 0) (at 60.325 67.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 60.325 69.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 59.69 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 59.69 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b656b39-52aa-4b5b-aaf0-bbfd9ad7783c)) + (pin "2" (uuid 0e3d5d32-848f-475f-a8dd-cdcfaebb4bb9)) + (pin "3" (uuid 7dec6e2c-3499-4d4b-ae3c-c970a5cf5417)) + (pin "4" (uuid edf02e20-1574-42ff-9a6a-a8b0b5b2c3b9)) + (pin "5" (uuid 2393a799-c3ea-4b31-be36-e6a2db0df8de)) + (pin "6" (uuid 711ce5f6-e6e9-41fc-8ed7-4fa792dbc25d)) + (pin "7" (uuid 5653f9c7-f8bb-493f-b8c1-f872d335d25b)) + (pin "8" (uuid 5832fa4a-4dca-40f1-8700-9d6fc4c2576f)) + (pin "9" (uuid 416a92d8-e307-488f-b841-f52effb89910)) + (pin "10" (uuid 842c2ed4-260d-47b1-a242-cb9fc9503ef2)) + (pin "11" (uuid 3f8bed5c-8e9b-4297-aa0f-84c48bbac69f)) + (pin "12" (uuid 983a54b6-bfc0-415d-a308-0c0d8db0e633)) + (pin "13" (uuid 5809fc87-a2f3-4c4b-8de2-233fbd8e5bef)) + (pin "14" (uuid 4485429d-186f-4d98-8eda-cc046c49cfeb)) + (pin "15" (uuid fc4fb6b4-5f8f-4794-ab8c-371c24b46196)) + (pin "16" (uuid 004094ec-66e2-4d9d-9217-5eca00e454a1)) + (pin "17" (uuid 937fb009-a146-4161-82d5-dbdbd234f1eb)) + (pin "18" (uuid cdf22917-7653-4200-8c1b-bae6672eb523)) + (pin "19" (uuid 5e498205-b81c-47d7-a529-a5a59bb22db3)) + (pin "20" (uuid a720d670-e6e2-42a2-97ba-ea48a56fc14f)) + (pin "21" (uuid 7f25a261-974a-4e5d-aa80-b80ddcd43e7f)) + (pin "22" (uuid 1f98df73-bc7e-4afe-93d9-7fdb99d8b837)) + (pin "23" (uuid 22aae772-8db0-4a00-99c7-c4e115162f37)) + (pin "24" (uuid a6c0d37f-1b82-4d6c-9642-205850f9a066)) + (pin "25" (uuid 87a064df-f24b-4fc8-93ea-7b290b237923)) + (pin "26" (uuid 3febf7de-1906-4802-ad25-b803e6716664)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/ff18ee2f-215d-4f6f-a3e6-5b726d7928f4" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/688a95d0-af38-4a16-82e0-1cd1dbc356e1" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/3a944b84-372f-44c0-89b4-3e5a5cfbde6b" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/7175bfdc-8095-49c8-9df7-990568425ec8" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/7dd0079e-2269-454f-9ac3-4f71c59afdc9" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/6dcb5f84-664b-480e-ade2-00ee99d5e9eb" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/e3db7316-72fd-4aca-8638-00409fd1a30b" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/0c0c4230-3f93-4f38-81c0-3c8e0ccc8087" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/97c23374-8305-4cdd-930d-22f02cac72d9" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/facfb190-0fdc-4ca3-bb35-6b1e1390f24e" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/7f86cf17-e673-4167-85ab-5af349d9aabb" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/1269fb2e-75ac-4f2d-9e87-8dacd2b2c69d" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/9678af0b-3e40-44fd-a2fd-33ca39805e78" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/a5c9d50e-3a2e-4ed0-8012-70dda46404a3" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/b4886cb7-54d2-4eeb-b13a-1faf5967087e" + (reference "U2") (unit 1) (value "d_and") (footprint "") + ) + (path "/03c1c17b-c83c-4a7c-9bc1-945c7f495339" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/f40d3cde-0e8e-4c99-90bf-9e1977b53f82" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/20e8b4af-e25d-4e0c-b547-191c59d884f9" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/ba583d25-27f2-4acd-af07-3b5c43d96c31" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/bb5a4a60-b55c-414d-90d2-8c41716d6b66" + (reference "U7") (unit 1) (value "d_and") (footprint "") + ) + (path "/c4fd3c14-0b1f-4a67-99eb-2581fba0ae23" + (reference "U8") (unit 1) (value "d_and") (footprint "") + ) + (path "/f7d0ac0e-65d1-4607-84d0-f9022f9c21f1" + (reference "U9") (unit 1) (value "d_and") (footprint "") + ) + (path "/c87e85da-a027-4405-a7d5-f870093a6314" + (reference "U10") (unit 1) (value "d_and") (footprint "") + ) + (path "/17c4de08-fefa-4f7d-a9bb-7edadc805eb0" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/3c79ba0c-00f2-4c00-993c-03021d13a9cd" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/6fd3f53d-12ad-4665-aa0c-3d320ff9ec74" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/30f1f57c-8493-4639-9004-9892cdaee5c0" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74S134/SN74S134.sub b/library/SubcircuitLibrary/SN74S134/SN74S134.sub new file mode 100644 index 000000000..6fbb975eb --- /dev/null +++ b/library/SubcircuitLibrary/SN74S134/SN74S134.sub @@ -0,0 +1,58 @@ +* Subcircuit SN74S134 +.subckt SN74S134 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ +.title kicad schematic +* u7 net-_u4-pad3_ net-_u1-pad11_ net-_u10-pad1_ d_and +* u10 net-_u10-pad1_ net-_u1-pad12_ net-_u10-pad3_ d_and +* u14 net-_u13-pad2_ net-_u1-pad13_ net-_u1-pad14_ d_and +* u13 net-_u12-pad3_ net-_u13-pad2_ d_inverter +* u6 net-_u3-pad3_ net-_u1-pad7_ net-_u6-pad3_ d_and +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u5 net-_u2-pad3_ net-_u1-pad3_ net-_u5-pad3_ d_and +* u12 net-_u11-pad3_ net-_u10-pad3_ net-_u12-pad3_ d_and +* u11 net-_u11-pad1_ net-_u11-pad2_ net-_u11-pad3_ d_and +* u9 net-_u6-pad3_ net-_u1-pad8_ net-_u11-pad2_ d_and +* u8 net-_u5-pad3_ net-_u1-pad4_ net-_u11-pad1_ d_and +* u4 net-_u1-pad9_ net-_u1-pad10_ net-_u4-pad3_ d_and +* u3 net-_u1-pad5_ net-_u1-pad6_ net-_u3-pad3_ d_and +a1 [net-_u4-pad3_ net-_u1-pad11_ ] net-_u10-pad1_ u7 +a2 [net-_u10-pad1_ net-_u1-pad12_ ] net-_u10-pad3_ u10 +a3 [net-_u13-pad2_ net-_u1-pad13_ ] net-_u1-pad14_ u14 +a4 net-_u12-pad3_ net-_u13-pad2_ u13 +a5 [net-_u3-pad3_ net-_u1-pad7_ ] net-_u6-pad3_ u6 +a6 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a7 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u5-pad3_ u5 +a8 [net-_u11-pad3_ net-_u10-pad3_ ] net-_u12-pad3_ u12 +a9 [net-_u11-pad1_ net-_u11-pad2_ ] net-_u11-pad3_ u11 +a10 [net-_u6-pad3_ net-_u1-pad8_ ] net-_u11-pad2_ u9 +a11 [net-_u5-pad3_ net-_u1-pad4_ ] net-_u11-pad1_ u8 +a12 [net-_u1-pad9_ net-_u1-pad10_ ] net-_u4-pad3_ u4 +a13 [net-_u1-pad5_ net-_u1-pad6_ ] net-_u3-pad3_ u3 +* Schematic Name: d_and, Ngspice Name: d_and +.model u7 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u10 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u9 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u8 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN74S134 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74S134/SN74S134_Previous_Values.xml b/library/SubcircuitLibrary/SN74S134/SN74S134_Previous_Values.xml new file mode 100644 index 000000000..b4da6dad4 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S134/SN74S134_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_andd_andd_andd_inverterd_andd_andd_andd_andd_andd_andd_andd_andd_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74S134/analysis b/library/SubcircuitLibrary/SN74S134/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S134/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74S274/SN74S274.cir b/library/SubcircuitLibrary/SN74S274/SN74S274.cir new file mode 100644 index 000000000..331ac4039 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S274/SN74S274.cir @@ -0,0 +1,79 @@ +.title KiCad schematic +U19 Net-_U16-Pad3_ Net-_U13-Pad3_ Net-_U19-Pad3_ d_and +U21 Net-_U19-Pad3_ Net-_U20-Pad3_ Net-_U14-Pad2_ d_or +U20 Net-_U16-Pad1_ Net-_U16-Pad2_ Net-_U20-Pad3_ d_and +U15 Net-_U14-Pad1_ Net-_U14-Pad2_ Net-_U15-Pad3_ d_xor +U18 Net-_U16-Pad3_ Net-_U13-Pad3_ Net-_U18-Pad3_ d_xor +U2 Net-_U1-Pad2_ Net-_U1-Pad6_ Net-_U12-Pad2_ d_and +U8 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U10-Pad1_ d_xor +U17 Net-_U1-Pad2_ Net-_U1-Pad7_ Net-_U17-Pad3_ d_and +U14 Net-_U14-Pad1_ Net-_U14-Pad2_ Net-_U14-Pad3_ d_and +U16 Net-_U16-Pad1_ Net-_U16-Pad2_ Net-_U16-Pad3_ d_xor +U6 Net-_U1-Pad4_ Net-_U1-Pad6_ Net-_U6-Pad3_ d_and +U9 Net-_U6-Pad3_ Net-_U14-Pad1_ d_inverter +U13 Net-_U11-Pad3_ Net-_U12-Pad3_ Net-_U13-Pad3_ d_or +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U10-Pad3_ d_xor +U7 Net-_U4-Pad3_ Net-_U16-Pad1_ d_inverter +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ Net-_U12-Pad3_ d_and +U11 Net-_U10-Pad1_ Net-_U10-Pad2_ Net-_U11-Pad3_ d_and +U5 Net-_U1-Pad3_ Net-_U1-Pad6_ Net-_U16-Pad2_ d_and +U4 Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U4-Pad3_ d_and +U3 Net-_U1-Pad3_ Net-_U1-Pad5_ Net-_U12-Pad1_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ PORT +U25 Net-_U18-Pad3_ Net-_U17-Pad3_ Net-_U25-Pad3_ d_and +U29 Net-_U24-Pad3_ Net-_U25-Pad3_ Net-_U29-Pad3_ d_or +U24 Net-_U22-Pad3_ Net-_U23-Pad2_ Net-_U24-Pad3_ d_and +U22 Net-_U18-Pad3_ Net-_U17-Pad3_ Net-_U22-Pad3_ d_xor +U23 Net-_U22-Pad3_ Net-_U23-Pad2_ Net-_U23-Pad3_ d_xor +U33 Net-_U1-Pad3_ Net-_U1-Pad8_ Net-_U33-Pad3_ d_and +U37 Net-_U33-Pad3_ Net-_U37-Pad2_ d_inverter +U32 Net-_U27-Pad3_ Net-_U32-Pad2_ d_inverter +U31 Net-_U26-Pad3_ Net-_U31-Pad2_ d_inverter +U30 Net-_U15-Pad3_ Net-_U28-Pad3_ Net-_U30-Pad3_ d_xor +U28 Net-_U1-Pad3_ Net-_U1-Pad7_ Net-_U28-Pad3_ d_and +U27 Net-_U1-Pad2_ Net-_U1-Pad8_ Net-_U27-Pad3_ d_and +U26 Net-_U1-Pad4_ Net-_U1-Pad7_ Net-_U26-Pad3_ d_and +U67 Net-_U41-Pad3_ Net-_U1-Pad13_ d_inverter +U36 Net-_U15-Pad3_ Net-_U28-Pad3_ Net-_U36-Pad3_ d_and +U35 Net-_U30-Pad3_ Net-_U29-Pad3_ Net-_U35-Pad3_ d_and +U38 Net-_U35-Pad3_ Net-_U36-Pad3_ Net-_U38-Pad3_ d_or +U34 Net-_U30-Pad3_ Net-_U29-Pad3_ Net-_U34-Pad3_ d_xor +U58 Net-_U55-Pad3_ Net-_U54-Pad3_ Net-_U58-Pad3_ d_and +U57 Net-_U55-Pad3_ Net-_U54-Pad3_ Net-_U57-Pad3_ d_xor +U59 Net-_U48-Pad3_ Net-_U49-Pad3_ Net-_U59-Pad3_ d_and +U64 Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U64-Pad3_ d_and +U63 Net-_U1-Pad1_ Net-_U1-Pad6_ Net-_U63-Pad3_ d_and +U61 Net-_U58-Pad3_ Net-_U59-Pad3_ Net-_U61-Pad3_ d_or +U66 Net-_U57-Pad3_ Net-_U65-Pad2_ Net-_U1-Pad15_ d_xor +U65 Net-_U57-Pad3_ Net-_U65-Pad2_ Net-_U65-Pad3_ d_and +U50 Net-_U44-Pad3_ Net-_U37-Pad2_ Net-_U50-Pad3_ d_xor +U43 Net-_U34-Pad3_ Net-_U32-Pad2_ Net-_U43-Pad3_ d_and +U42 Net-_U39-Pad3_ Net-_U41-Pad2_ Net-_U42-Pad3_ d_and +U47 Net-_U42-Pad3_ Net-_U43-Pad3_ Net-_U47-Pad3_ d_or +U53 Net-_U44-Pad3_ Net-_U37-Pad2_ Net-_U53-Pad3_ d_and +U54 Net-_U52-Pad3_ Net-_U53-Pad3_ Net-_U54-Pad3_ d_or +U51 Net-_U50-Pad3_ Net-_U47-Pad3_ Net-_U51-Pad3_ d_xor +U52 Net-_U50-Pad3_ Net-_U47-Pad3_ Net-_U52-Pad3_ d_and +U44 Net-_U40-Pad3_ Net-_U38-Pad3_ Net-_U44-Pad3_ d_xor +U45 Net-_U40-Pad3_ Net-_U38-Pad3_ Net-_U45-Pad3_ d_and +U46 Net-_U14-Pad3_ Net-_U31-Pad2_ Net-_U46-Pad3_ d_and +U48 Net-_U45-Pad3_ Net-_U46-Pad3_ Net-_U48-Pad3_ d_or +U55 Net-_U48-Pad3_ Net-_U49-Pad3_ Net-_U55-Pad3_ d_xor +U56 Net-_U1-Pad1_ Net-_U1-Pad8_ Net-_U56-Pad3_ d_and +U60 Net-_U56-Pad3_ Net-_U60-Pad2_ d_inverter +U62 Net-_U1-Pad2_ Net-_U1-Pad5_ Net-_U62-Pad3_ d_and +U40 Net-_U14-Pad3_ Net-_U31-Pad2_ Net-_U40-Pad3_ d_xor +U49 Net-_U1-Pad4_ Net-_U1-Pad8_ Net-_U49-Pad3_ d_and +U71 Net-_U61-Pad3_ Net-_U65-Pad3_ Net-_U1-Pad16_ d_xnor +U39 Net-_U34-Pad3_ Net-_U32-Pad2_ Net-_U39-Pad3_ d_xor +U41 Net-_U39-Pad3_ Net-_U41-Pad2_ Net-_U41-Pad3_ d_xor +U77 Net-_U23-Pad3_ Net-_U60-Pad2_ Net-_U1-Pad12_ d_xor +U76 Net-_U23-Pad3_ Net-_U60-Pad2_ Net-_U41-Pad2_ d_and +U73 Net-_U62-Pad3_ Net-_U63-Pad3_ Net-_U1-Pad10_ d_xor +U72 Net-_U62-Pad3_ Net-_U63-Pad3_ Net-_U10-Pad2_ d_and +U70 Net-_U1-Pad1_ Net-_U1-Pad5_ Net-_U1-Pad9_ d_and +U68 Net-_U51-Pad3_ Net-_U41-Pad3_ Net-_U65-Pad2_ d_and +U69 Net-_U51-Pad3_ Net-_U41-Pad3_ Net-_U1-Pad14_ d_xor +U74 Net-_U10-Pad3_ Net-_U64-Pad3_ Net-_U23-Pad2_ d_and +U75 Net-_U10-Pad3_ Net-_U64-Pad3_ Net-_U1-Pad11_ d_xor +.end diff --git a/library/SubcircuitLibrary/SN74S274/SN74S274.cir.out b/library/SubcircuitLibrary/SN74S274/SN74S274.cir.out new file mode 100644 index 000000000..941f86966 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S274/SN74S274.cir.out @@ -0,0 +1,316 @@ +.title kicad schematic + +* u19 net-_u16-pad3_ net-_u13-pad3_ net-_u19-pad3_ d_and +* u21 net-_u19-pad3_ net-_u20-pad3_ net-_u14-pad2_ d_or +* u20 net-_u16-pad1_ net-_u16-pad2_ net-_u20-pad3_ d_and +* u15 net-_u14-pad1_ net-_u14-pad2_ net-_u15-pad3_ d_xor +* u18 net-_u16-pad3_ net-_u13-pad3_ net-_u18-pad3_ d_xor +* u2 net-_u1-pad2_ net-_u1-pad6_ net-_u12-pad2_ d_and +* u8 net-_u12-pad1_ net-_u12-pad2_ net-_u10-pad1_ d_xor +* u17 net-_u1-pad2_ net-_u1-pad7_ net-_u17-pad3_ d_and +* u14 net-_u14-pad1_ net-_u14-pad2_ net-_u14-pad3_ d_and +* u16 net-_u16-pad1_ net-_u16-pad2_ net-_u16-pad3_ d_xor +* u6 net-_u1-pad4_ net-_u1-pad6_ net-_u6-pad3_ d_and +* u9 net-_u6-pad3_ net-_u14-pad1_ d_inverter +* u13 net-_u11-pad3_ net-_u12-pad3_ net-_u13-pad3_ d_or +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_xor +* u7 net-_u4-pad3_ net-_u16-pad1_ d_inverter +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_and +* u11 net-_u10-pad1_ net-_u10-pad2_ net-_u11-pad3_ d_and +* u5 net-_u1-pad3_ net-_u1-pad6_ net-_u16-pad2_ d_and +* u4 net-_u1-pad4_ net-_u1-pad5_ net-_u4-pad3_ d_and +* u3 net-_u1-pad3_ net-_u1-pad5_ net-_u12-pad1_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ port +* u25 net-_u18-pad3_ net-_u17-pad3_ net-_u25-pad3_ d_and +* u29 net-_u24-pad3_ net-_u25-pad3_ net-_u29-pad3_ d_or +* u24 net-_u22-pad3_ net-_u23-pad2_ net-_u24-pad3_ d_and +* u22 net-_u18-pad3_ net-_u17-pad3_ net-_u22-pad3_ d_xor +* u23 net-_u22-pad3_ net-_u23-pad2_ net-_u23-pad3_ d_xor +* u33 net-_u1-pad3_ net-_u1-pad8_ net-_u33-pad3_ d_and +* u37 net-_u33-pad3_ net-_u37-pad2_ d_inverter +* u32 net-_u27-pad3_ net-_u32-pad2_ d_inverter +* u31 net-_u26-pad3_ net-_u31-pad2_ d_inverter +* u30 net-_u15-pad3_ net-_u28-pad3_ net-_u30-pad3_ d_xor +* u28 net-_u1-pad3_ net-_u1-pad7_ net-_u28-pad3_ d_and +* u27 net-_u1-pad2_ net-_u1-pad8_ net-_u27-pad3_ d_and +* u26 net-_u1-pad4_ net-_u1-pad7_ net-_u26-pad3_ d_and +* u67 net-_u41-pad3_ net-_u1-pad13_ d_inverter +* u36 net-_u15-pad3_ net-_u28-pad3_ net-_u36-pad3_ d_and +* u35 net-_u30-pad3_ net-_u29-pad3_ net-_u35-pad3_ d_and +* u38 net-_u35-pad3_ net-_u36-pad3_ net-_u38-pad3_ d_or +* u34 net-_u30-pad3_ net-_u29-pad3_ net-_u34-pad3_ d_xor +* u58 net-_u55-pad3_ net-_u54-pad3_ net-_u58-pad3_ d_and +* u57 net-_u55-pad3_ net-_u54-pad3_ net-_u57-pad3_ d_xor +* u59 net-_u48-pad3_ net-_u49-pad3_ net-_u59-pad3_ d_and +* u64 net-_u1-pad1_ net-_u1-pad7_ net-_u64-pad3_ d_and +* u63 net-_u1-pad1_ net-_u1-pad6_ net-_u63-pad3_ d_and +* u61 net-_u58-pad3_ net-_u59-pad3_ net-_u61-pad3_ d_or +* u66 net-_u57-pad3_ net-_u65-pad2_ net-_u1-pad15_ d_xor +* u65 net-_u57-pad3_ net-_u65-pad2_ net-_u65-pad3_ d_and +* u50 net-_u44-pad3_ net-_u37-pad2_ net-_u50-pad3_ d_xor +* u43 net-_u34-pad3_ net-_u32-pad2_ net-_u43-pad3_ d_and +* u42 net-_u39-pad3_ net-_u41-pad2_ net-_u42-pad3_ d_and +* u47 net-_u42-pad3_ net-_u43-pad3_ net-_u47-pad3_ d_or +* u53 net-_u44-pad3_ net-_u37-pad2_ net-_u53-pad3_ d_and +* u54 net-_u52-pad3_ net-_u53-pad3_ net-_u54-pad3_ d_or +* u51 net-_u50-pad3_ net-_u47-pad3_ net-_u51-pad3_ d_xor +* u52 net-_u50-pad3_ net-_u47-pad3_ net-_u52-pad3_ d_and +* u44 net-_u40-pad3_ net-_u38-pad3_ net-_u44-pad3_ d_xor +* u45 net-_u40-pad3_ net-_u38-pad3_ net-_u45-pad3_ d_and +* u46 net-_u14-pad3_ net-_u31-pad2_ net-_u46-pad3_ d_and +* u48 net-_u45-pad3_ net-_u46-pad3_ net-_u48-pad3_ d_or +* u55 net-_u48-pad3_ net-_u49-pad3_ net-_u55-pad3_ d_xor +* u56 net-_u1-pad1_ net-_u1-pad8_ net-_u56-pad3_ d_and +* u60 net-_u56-pad3_ net-_u60-pad2_ d_inverter +* u62 net-_u1-pad2_ net-_u1-pad5_ net-_u62-pad3_ d_and +* u40 net-_u14-pad3_ net-_u31-pad2_ net-_u40-pad3_ d_xor +* u49 net-_u1-pad4_ net-_u1-pad8_ net-_u49-pad3_ d_and +* u71 net-_u61-pad3_ net-_u65-pad3_ net-_u1-pad16_ d_xnor +* u39 net-_u34-pad3_ net-_u32-pad2_ net-_u39-pad3_ d_xor +* u41 net-_u39-pad3_ net-_u41-pad2_ net-_u41-pad3_ d_xor +* u77 net-_u23-pad3_ net-_u60-pad2_ net-_u1-pad12_ d_xor +* u76 net-_u23-pad3_ net-_u60-pad2_ net-_u41-pad2_ d_and +* u73 net-_u62-pad3_ net-_u63-pad3_ net-_u1-pad10_ d_xor +* u72 net-_u62-pad3_ net-_u63-pad3_ net-_u10-pad2_ d_and +* u70 net-_u1-pad1_ net-_u1-pad5_ net-_u1-pad9_ d_and +* u68 net-_u51-pad3_ net-_u41-pad3_ net-_u65-pad2_ d_and +* u69 net-_u51-pad3_ net-_u41-pad3_ net-_u1-pad14_ d_xor +* u74 net-_u10-pad3_ net-_u64-pad3_ net-_u23-pad2_ d_and +* u75 net-_u10-pad3_ net-_u64-pad3_ net-_u1-pad11_ d_xor +a1 [net-_u16-pad3_ net-_u13-pad3_ ] net-_u19-pad3_ u19 +a2 [net-_u19-pad3_ net-_u20-pad3_ ] net-_u14-pad2_ u21 +a3 [net-_u16-pad1_ net-_u16-pad2_ ] net-_u20-pad3_ u20 +a4 [net-_u14-pad1_ net-_u14-pad2_ ] net-_u15-pad3_ u15 +a5 [net-_u16-pad3_ net-_u13-pad3_ ] net-_u18-pad3_ u18 +a6 [net-_u1-pad2_ net-_u1-pad6_ ] net-_u12-pad2_ u2 +a7 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u10-pad1_ u8 +a8 [net-_u1-pad2_ net-_u1-pad7_ ] net-_u17-pad3_ u17 +a9 [net-_u14-pad1_ net-_u14-pad2_ ] net-_u14-pad3_ u14 +a10 [net-_u16-pad1_ net-_u16-pad2_ ] net-_u16-pad3_ u16 +a11 [net-_u1-pad4_ net-_u1-pad6_ ] net-_u6-pad3_ u6 +a12 net-_u6-pad3_ net-_u14-pad1_ u9 +a13 [net-_u11-pad3_ net-_u12-pad3_ ] net-_u13-pad3_ u13 +a14 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a15 net-_u4-pad3_ net-_u16-pad1_ u7 +a16 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a17 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u11-pad3_ u11 +a18 [net-_u1-pad3_ net-_u1-pad6_ ] net-_u16-pad2_ u5 +a19 [net-_u1-pad4_ net-_u1-pad5_ ] net-_u4-pad3_ u4 +a20 [net-_u1-pad3_ net-_u1-pad5_ ] net-_u12-pad1_ u3 +a21 [net-_u18-pad3_ net-_u17-pad3_ ] net-_u25-pad3_ u25 +a22 [net-_u24-pad3_ net-_u25-pad3_ ] net-_u29-pad3_ u29 +a23 [net-_u22-pad3_ net-_u23-pad2_ ] net-_u24-pad3_ u24 +a24 [net-_u18-pad3_ net-_u17-pad3_ ] net-_u22-pad3_ u22 +a25 [net-_u22-pad3_ net-_u23-pad2_ ] net-_u23-pad3_ u23 +a26 [net-_u1-pad3_ net-_u1-pad8_ ] net-_u33-pad3_ u33 +a27 net-_u33-pad3_ net-_u37-pad2_ u37 +a28 net-_u27-pad3_ net-_u32-pad2_ u32 +a29 net-_u26-pad3_ net-_u31-pad2_ u31 +a30 [net-_u15-pad3_ net-_u28-pad3_ ] net-_u30-pad3_ u30 +a31 [net-_u1-pad3_ net-_u1-pad7_ ] net-_u28-pad3_ u28 +a32 [net-_u1-pad2_ net-_u1-pad8_ ] net-_u27-pad3_ u27 +a33 [net-_u1-pad4_ net-_u1-pad7_ ] net-_u26-pad3_ u26 +a34 net-_u41-pad3_ net-_u1-pad13_ u67 +a35 [net-_u15-pad3_ net-_u28-pad3_ ] net-_u36-pad3_ u36 +a36 [net-_u30-pad3_ net-_u29-pad3_ ] net-_u35-pad3_ u35 +a37 [net-_u35-pad3_ net-_u36-pad3_ ] net-_u38-pad3_ u38 +a38 [net-_u30-pad3_ net-_u29-pad3_ ] net-_u34-pad3_ u34 +a39 [net-_u55-pad3_ net-_u54-pad3_ ] net-_u58-pad3_ u58 +a40 [net-_u55-pad3_ net-_u54-pad3_ ] net-_u57-pad3_ u57 +a41 [net-_u48-pad3_ net-_u49-pad3_ ] net-_u59-pad3_ u59 +a42 [net-_u1-pad1_ net-_u1-pad7_ ] net-_u64-pad3_ u64 +a43 [net-_u1-pad1_ net-_u1-pad6_ ] net-_u63-pad3_ u63 +a44 [net-_u58-pad3_ net-_u59-pad3_ ] net-_u61-pad3_ u61 +a45 [net-_u57-pad3_ net-_u65-pad2_ ] net-_u1-pad15_ u66 +a46 [net-_u57-pad3_ net-_u65-pad2_ ] net-_u65-pad3_ u65 +a47 [net-_u44-pad3_ net-_u37-pad2_ ] net-_u50-pad3_ u50 +a48 [net-_u34-pad3_ net-_u32-pad2_ ] net-_u43-pad3_ u43 +a49 [net-_u39-pad3_ net-_u41-pad2_ ] net-_u42-pad3_ u42 +a50 [net-_u42-pad3_ net-_u43-pad3_ ] net-_u47-pad3_ u47 +a51 [net-_u44-pad3_ net-_u37-pad2_ ] net-_u53-pad3_ u53 +a52 [net-_u52-pad3_ net-_u53-pad3_ ] net-_u54-pad3_ u54 +a53 [net-_u50-pad3_ net-_u47-pad3_ ] net-_u51-pad3_ u51 +a54 [net-_u50-pad3_ net-_u47-pad3_ ] net-_u52-pad3_ u52 +a55 [net-_u40-pad3_ net-_u38-pad3_ ] net-_u44-pad3_ u44 +a56 [net-_u40-pad3_ net-_u38-pad3_ ] net-_u45-pad3_ u45 +a57 [net-_u14-pad3_ net-_u31-pad2_ ] net-_u46-pad3_ u46 +a58 [net-_u45-pad3_ net-_u46-pad3_ ] net-_u48-pad3_ u48 +a59 [net-_u48-pad3_ net-_u49-pad3_ ] net-_u55-pad3_ u55 +a60 [net-_u1-pad1_ net-_u1-pad8_ ] net-_u56-pad3_ u56 +a61 net-_u56-pad3_ net-_u60-pad2_ u60 +a62 [net-_u1-pad2_ net-_u1-pad5_ ] net-_u62-pad3_ u62 +a63 [net-_u14-pad3_ net-_u31-pad2_ ] net-_u40-pad3_ u40 +a64 [net-_u1-pad4_ net-_u1-pad8_ ] net-_u49-pad3_ u49 +a65 [net-_u61-pad3_ net-_u65-pad3_ ] net-_u1-pad16_ u71 +a66 [net-_u34-pad3_ net-_u32-pad2_ ] net-_u39-pad3_ u39 +a67 [net-_u39-pad3_ net-_u41-pad2_ ] net-_u41-pad3_ u41 +a68 [net-_u23-pad3_ net-_u60-pad2_ ] net-_u1-pad12_ u77 +a69 [net-_u23-pad3_ net-_u60-pad2_ ] net-_u41-pad2_ u76 +a70 [net-_u62-pad3_ net-_u63-pad3_ ] net-_u1-pad10_ u73 +a71 [net-_u62-pad3_ net-_u63-pad3_ ] net-_u10-pad2_ u72 +a72 [net-_u1-pad1_ net-_u1-pad5_ ] net-_u1-pad9_ u70 +a73 [net-_u51-pad3_ net-_u41-pad3_ ] net-_u65-pad2_ u68 +a74 [net-_u51-pad3_ net-_u41-pad3_ ] net-_u1-pad14_ u69 +a75 [net-_u10-pad3_ net-_u64-pad3_ ] net-_u23-pad2_ u74 +a76 [net-_u10-pad3_ net-_u64-pad3_ ] net-_u1-pad11_ u75 +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u21 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u15 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u18 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u8 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u16 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u13 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u10 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u29 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u22 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u23 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u33 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u37 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u32 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u30 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u67 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u36 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u35 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u38 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u34 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u58 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u57 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u59 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u64 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u63 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u61 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u66 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u65 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u50 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u43 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u42 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u47 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u53 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u54 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u51 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u52 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u44 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u45 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u46 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u48 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u55 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u56 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u60 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u62 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u40 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xnor, Ngspice Name: d_xnor +.model u71 d_xnor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u39 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u41 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u77 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u76 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u73 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u72 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u70 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u68 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u69 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u74 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u75 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74S274/SN74S274.kicad_sch b/library/SubcircuitLibrary/SN74S274/SN74S274.kicad_sch new file mode 100644 index 000000000..63092459b --- /dev/null +++ b/library/SubcircuitLibrary/SN74S274/SN74S274.kicad_sch @@ -0,0 +1,5076 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 3699796b-2228-4131-812c-60ece3e7a961) + + (paper "User" 1431.8 379.4) + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_xnor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xnor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_xnor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -5.08 -1.27) (mid -4.3109 1.27) (end -5.08 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.27) + (xy -5.08 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 3.81) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_xnor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.0922 1.0922)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.0922 1.0922)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.0922 1.0922)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_xor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_xor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -5.08 -1.27) (mid -4.3109 1.27) (end -5.08 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.27) + (xy -5.08 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 3.81) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_xor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.0922 1.0922)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.0922 1.0922)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 0.9906 0.9906)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 703.58 213.36) (diameter 0) (color 0 0 0 0) + (uuid 03d437fd-3d52-4f5f-b97a-4539f1d93a4a) + ) + (junction (at 806.45 217.17) (diameter 0) (color 0 0 0 0) + (uuid 06ccde21-524d-4e7f-9105-341d0758e41a) + ) + (junction (at 1031.24 152.4) (diameter 0) (color 0 0 0 0) + (uuid 08967c13-05ed-4dd1-8c15-c87704b28a95) + ) + (junction (at 312.42 217.17) (diameter 0) (color 0 0 0 0) + (uuid 0b159dcd-ea04-4ffa-973c-3d9d44d63088) + ) + (junction (at 332.74 162.56) (diameter 0) (color 0 0 0 0) + (uuid 0c004768-eaea-4305-937b-3e05a577851a) + ) + (junction (at 353.06 107.95) (diameter 0) (color 0 0 0 0) + (uuid 112e8493-925a-4856-8ca7-9f3b7b417ae3) + ) + (junction (at 572.77 210.82) (diameter 0) (color 0 0 0 0) + (uuid 12397fab-f8ae-4c7f-9b6b-931b2bd4e2fa) + ) + (junction (at 227.33 125.73) (diameter 0) (color 0 0 0 0) + (uuid 144b8ee8-a187-4a9f-a0f7-aa98b11663d7) + ) + (junction (at 309.88 219.71) (diameter 0) (color 0 0 0 0) + (uuid 15c35dd4-0ead-482d-82ac-6ffc8c436f3d) + ) + (junction (at 223.52 180.34) (diameter 0) (color 0 0 0 0) + (uuid 1a005c4d-1f76-4784-b38c-f3e39b0e45dc) + ) + (junction (at 330.2 144.78) (diameter 0) (color 0 0 0 0) + (uuid 1a4340ca-6b8e-4160-8ad6-ac761a21a50f) + ) + (junction (at 448.31 95.25) (diameter 0) (color 0 0 0 0) + (uuid 22ea69d8-ebf4-4d47-b13b-3afd4e3a377e) + ) + (junction (at 153.67 138.43) (diameter 0) (color 0 0 0 0) + (uuid 23fe2b91-06fb-487a-b58d-c94110c1f49f) + ) + (junction (at 170.18 107.95) (diameter 0) (color 0 0 0 0) + (uuid 3127927b-3f4e-415a-9c5e-66f803f40dd6) + ) + (junction (at 918.21 198.12) (diameter 0) (color 0 0 0 0) + (uuid 35ada76f-7b46-4132-842a-629205eccc1e) + ) + (junction (at 254 130.81) (diameter 0) (color 0 0 0 0) + (uuid 364041ce-b43f-43f7-a90b-7dd24008b89d) + ) + (junction (at 1200.15 177.8) (diameter 0) (color 0 0 0 0) + (uuid 3b73ca01-70a3-415a-9857-aa6369974404) + ) + (junction (at 803.91 219.71) (diameter 0) (color 0 0 0 0) + (uuid 3d888fd4-109a-44f9-8bf2-a0d5e9662508) + ) + (junction (at 157.48 182.88) (diameter 0) (color 0 0 0 0) + (uuid 4118cfbe-9da9-4fac-bf46-ade273a4aee8) + ) + (junction (at 457.2 201.93) (diameter 0) (color 0 0 0 0) + (uuid 429a14c6-47e2-46c6-b11a-738146a9368b) + ) + (junction (at 938.53 137.16) (diameter 0) (color 0 0 0 0) + (uuid 4df050cc-7cb6-42e1-828b-c666dd83db54) + ) + (junction (at 1201.42 240.03) (diameter 0) (color 0 0 0 0) + (uuid 4f69b872-d8a2-4302-b5b2-d7e4f5ff0ffa) + ) + (junction (at 674.37 163.83) (diameter 0) (color 0 0 0 0) + (uuid 50f75c67-c3b8-4394-8312-368af043c588) + ) + (junction (at 361.95 163.83) (diameter 0) (color 0 0 0 0) + (uuid 5fd610d5-f04f-4169-b829-921ed7ea1a76) + ) + (junction (at 835.66 218.44) (diameter 0) (color 0 0 0 0) + (uuid 62e37972-b477-4523-861c-e631a1a46daf) + ) + (junction (at 165.1 147.32) (diameter 0) (color 0 0 0 0) + (uuid 67535eda-214f-4b7e-aa85-710831df43a7) + ) + (junction (at 1019.81 92.71) (diameter 0) (color 0 0 0 0) + (uuid 67c764eb-60a2-4384-9402-38a981c6be32) + ) + (junction (at 1047.75 110.49) (diameter 0) (color 0 0 0 0) + (uuid 727ad124-ffd5-4865-b8f9-b91605f29437) + ) + (junction (at 541.02 212.09) (diameter 0) (color 0 0 0 0) + (uuid 73e74e10-c43d-4021-8c34-4eb8ca786793) + ) + (junction (at 830.58 224.79) (diameter 0) (color 0 0 0 0) + (uuid 76cbf07e-fb92-44d3-8a8b-573d5d86302f) + ) + (junction (at 259.08 124.46) (diameter 0) (color 0 0 0 0) + (uuid 77ae3be5-419a-477b-a53f-ebf64f48d604) + ) + (junction (at 222.25 215.9) (diameter 0) (color 0 0 0 0) + (uuid 80378351-79e7-4adc-8899-bca70dcb514e) + ) + (junction (at 168.91 199.39) (diameter 0) (color 0 0 0 0) + (uuid 815a96a1-1c81-4f41-97f1-8a7fc9c4ca78) + ) + (junction (at 356.87 170.18) (diameter 0) (color 0 0 0 0) + (uuid 83ef8c6b-75f7-4601-b75d-5dd7aaf8a9d8) + ) + (junction (at 1035.05 254) (diameter 0) (color 0 0 0 0) + (uuid 853630d2-bb65-4328-abde-5246f1ae0d10) + ) + (junction (at 1202.69 175.26) (diameter 0) (color 0 0 0 0) + (uuid 8684df49-9971-410d-8e30-4ddc44895b08) + ) + (junction (at 453.39 88.9) (diameter 0) (color 0 0 0 0) + (uuid 87256a31-d82d-4c73-9ebe-54305e108f96) + ) + (junction (at 671.83 166.37) (diameter 0) (color 0 0 0 0) + (uuid 87c85f67-2734-434c-adaa-edaa2ae786c0) + ) + (junction (at 217.17 218.44) (diameter 0) (color 0 0 0 0) + (uuid 90b4f998-101c-4faa-8b1b-6c4c0d807ba5) + ) + (junction (at 217.17 182.88) (diameter 0) (color 0 0 0 0) + (uuid 90ed5b80-ebea-4c69-8f7a-1ff026500f3d) + ) + (junction (at 942.34 205.74) (diameter 0) (color 0 0 0 0) + (uuid 93c2b959-2831-4215-b916-382ae137649f) + ) + (junction (at 551.18 266.7) (diameter 0) (color 0 0 0 0) + (uuid 968e600d-2035-4ff5-b9c1-03204fbcb658) + ) + (junction (at 1022.35 177.8) (diameter 0) (color 0 0 0 0) + (uuid 9aec1c57-37bf-4826-ada1-3f76896baf8f) + ) + (junction (at 947.42 199.39) (diameter 0) (color 0 0 0 0) + (uuid 9f253710-c087-4562-abae-66187d44b05a) + ) + (junction (at 1200.15 140.97) (diameter 0) (color 0 0 0 0) + (uuid a17932e5-4e70-4b04-a968-5df4de06a966) + ) + (junction (at 1022.35 195.58) (diameter 0) (color 0 0 0 0) + (uuid a2503c47-4076-4691-be17-330b852c38fb) + ) + (junction (at 671.83 214.63) (diameter 0) (color 0 0 0 0) + (uuid a85a0ac0-3446-4394-bc09-39193eabe2f4) + ) + (junction (at 543.56 209.55) (diameter 0) (color 0 0 0 0) + (uuid acc63e35-850e-422a-96bd-26834898ee4f) + ) + (junction (at 448.31 242.57) (diameter 0) (color 0 0 0 0) + (uuid aea42d6a-951c-4eed-b159-3b3219e09938) + ) + (junction (at 421.64 90.17) (diameter 0) (color 0 0 0 0) + (uuid b03b9206-7d33-4f54-a767-f276c77e4c83) + ) + (junction (at 1198.88 242.57) (diameter 0) (color 0 0 0 0) + (uuid b9785053-9e8a-4f40-8b7f-5166faebf2f1) + ) + (junction (at 330.2 165.1) (diameter 0) (color 0 0 0 0) + (uuid bbee79ac-8c19-4679-9812-8055a11f2776) + ) + (junction (at 162.56 156.21) (diameter 0) (color 0 0 0 0) + (uuid bd35eb6b-cf27-4a5e-861b-f68bb93a429d) + ) + (junction (at 698.5 171.45) (diameter 0) (color 0 0 0 0) + (uuid bf73cab0-da93-46e7-8fdf-3a77abb6849d) + ) + (junction (at 722.63 292.1) (diameter 0) (color 0 0 0 0) + (uuid ccc867e9-3f1e-40fd-960e-e7fa46278928) + ) + (junction (at 567.69 217.17) (diameter 0) (color 0 0 0 0) + (uuid d37dd793-32d1-47ac-a8d8-66789e7dff7c) + ) + (junction (at 1045.21 113.03) (diameter 0) (color 0 0 0 0) + (uuid d3cc685e-c35c-4d5c-9e02-ecc63805f39e) + ) + (junction (at 229.87 123.19) (diameter 0) (color 0 0 0 0) + (uuid d4039e7f-7352-4374-8064-31bb6680630b) + ) + (junction (at 1032.51 256.54) (diameter 0) (color 0 0 0 0) + (uuid d75af2c7-f262-4f5b-9fec-a3216ab7d910) + ) + (junction (at 703.58 165.1) (diameter 0) (color 0 0 0 0) + (uuid d9800efe-c2c8-4992-bf71-8250c0a4b9dc) + ) + (junction (at 698.5 219.71) (diameter 0) (color 0 0 0 0) + (uuid df269a4f-d39d-4c66-b0d5-7d3b03ada8dc) + ) + (junction (at 424.18 87.63) (diameter 0) (color 0 0 0 0) + (uuid e2cfba12-3715-4b44-bd41-02f83b56a5ba) + ) + (junction (at 461.01 186.69) (diameter 0) (color 0 0 0 0) + (uuid e69cd347-d6c9-46c1-bdbc-119207017f6c) + ) + (junction (at 461.01 184.15) (diameter 0) (color 0 0 0 0) + (uuid ebd907f4-2669-4df9-b4cb-8d22ceafc734) + ) + (junction (at 674.37 212.09) (diameter 0) (color 0 0 0 0) + (uuid f114da3e-2723-4e59-8474-6aa501bc5f61) + ) + (junction (at 165.1 158.75) (diameter 0) (color 0 0 0 0) + (uuid f1d06db4-6630-4bc1-920c-a92c9ac26274) + ) + (junction (at 1202.69 138.43) (diameter 0) (color 0 0 0 0) + (uuid f280f0a5-ecc1-4121-a3ae-39405520fd08) + ) + (junction (at 915.67 200.66) (diameter 0) (color 0 0 0 0) + (uuid f775f5e2-2beb-47aa-aa77-0a193d2ba178) + ) + (junction (at 452.12 161.29) (diameter 0) (color 0 0 0 0) + (uuid fdbe36e9-4a66-4609-b836-9dc7db9c40f4) + ) + + (wire (pts (xy 453.39 88.9) (xy 457.2 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01450f64-c1c5-43d6-81f4-f6b868f09706) + ) + (wire (pts (xy 162.56 246.38) (xy 162.56 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0269412e-5003-45cd-89c2-e13bb9eb609d) + ) + (wire (pts (xy 783.59 219.71) (xy 803.91 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02a1504b-3b9c-441f-b0b9-625e4b11b0bf) + ) + (wire (pts (xy 153.67 138.43) (xy 153.67 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02c8983c-1a26-4dbb-b7ff-a3293dcd94f5) + ) + (wire (pts (xy 911.86 238.76) (xy 911.86 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02ef6d0a-4e4b-4010-9a1d-8c89ca1dda38) + ) + (wire (pts (xy 1206.5 156.21) (xy 1200.15 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 032c2ef3-823a-4764-a960-7bc5dda37a94) + ) + (wire (pts (xy 707.39 193.04) (xy 671.83 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 038474f9-6ac3-4ac7-af55-0ab46ee745a5) + ) + (wire (pts (xy 1022.35 177.8) (xy 1022.35 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 043be18b-3f18-4c44-ae78-e569165c9390) + ) + (wire (pts (xy 830.58 233.68) (xy 830.58 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0553434b-9259-4f48-9542-d19eb3db1b04) + ) + (wire (pts (xy 836.93 166.37) (xy 836.93 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0557dfad-a2d0-467e-992d-857e5c2d36de) + ) + (wire (pts (xy 215.9 130.81) (xy 215.9 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05a41375-4bb1-4eab-a689-ec6480da4e96) + ) + (wire (pts (xy 652.78 284.48) (xy 652.78 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05f74077-238c-43b2-8ad3-80fed82f37ce) + ) + (wire (pts (xy 339.09 233.68) (xy 524.51 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06043e14-f70b-4e74-9855-195f34ddda16) + ) + (wire (pts (xy 722.63 292.1) (xy 551.18 292.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06a25360-17a2-42aa-a26e-76bc98f01ffc) + ) + (wire (pts (xy 572.77 223.52) (xy 572.77 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06a3ce01-e2ff-4e0f-95f2-a37fc906e60d) + ) + (wire (pts (xy 213.36 139.7) (xy 213.36 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06f3c339-c28b-4f37-97df-50cc2b445e27) + ) + (wire (pts (xy 165.1 140.97) (xy 165.1 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07206abf-e665-45f4-9bce-ae967f451d80) + ) + (wire (pts (xy 365.76 170.18) (xy 365.76 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 073a0f92-4bd7-436d-859b-162d7054067e) + ) + (wire (pts (xy 1193.8 165.1) (xy 1193.8 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 075908cf-ff7d-48d3-b34f-e1b0dff31cc6) + ) + (wire (pts (xy 114.3 182.88) (xy 157.48 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 087b75c7-ae19-4132-b40b-0870f5d7ccaf) + ) + (wire (pts (xy 223.52 180.34) (xy 223.52 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 098ab3bc-85bb-4f8e-a342-9e7107f76a79) + ) + (wire (pts (xy 457.2 104.14) (xy 448.31 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b1cfa65-ab56-483d-9315-f67d7ab260b6) + ) + (wire (pts (xy 303.53 181.61) (xy 303.53 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b4f067b-75f2-43d3-abde-89fadc20fe5f) + ) + (wire (pts (xy 1113.79 242.57) (xy 1198.88 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b5094c5-f4f7-46c2-9ae1-7ac611fb7021) + ) + (wire (pts (xy 223.52 180.34) (xy 229.87 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b7365b7-d8d7-4d46-b09f-7d6629b14711) + ) + (wire (pts (xy 650.24 185.42) (xy 650.24 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bc69c55-447b-4960-9ad2-ab9884db2d0e) + ) + (wire (pts (xy 1300.48 298.45) (xy 1300.48 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c7c92ed-d6a4-435d-b23f-00cbdb6f0da6) + ) + (wire (pts (xy 502.92 109.22) (xy 509.27 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ca1d505-7e29-4a87-9fd6-87edf1d114cf) + ) + (wire (pts (xy 157.48 121.92) (xy 157.48 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0cb3300b-492d-4e15-b9b0-ca15d10d590c) + ) + (wire (pts (xy 222.25 215.9) (xy 222.25 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d2094c4-0eb9-4819-becc-6048dbf7f9e5) + ) + (wire (pts (xy 803.91 219.71) (xy 808.99 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ddd976b-6433-49ec-823b-47efe939e50c) + ) + (wire (pts (xy 449.58 88.9) (xy 453.39 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0eb1eeed-59bf-49bf-ac0e-6d624d638e63) + ) + (wire (pts (xy 254 139.7) (xy 254 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f4e2694-68a5-4f86-9b6a-b6c3ede167e6) + ) + (wire (pts (xy 730.25 234.95) (xy 730.25 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f6cd86e-82fc-4ad4-aecf-f6792a34cafa) + ) + (wire (pts (xy 314.96 144.78) (xy 314.96 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f9ec543-8eee-4407-8ddc-e2abb617029f) + ) + (wire (pts (xy 259.08 137.16) (xy 259.08 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10b0e21b-5123-4919-b941-17369e77e95b) + ) + (wire (pts (xy 541.02 238.76) (xy 541.02 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1107b022-e95f-408b-acb9-fe29dbf849bc) + ) + (wire (pts (xy 839.47 246.38) (xy 803.91 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 112c1bd5-0aaa-434c-a2cd-a623c8a0b860) + ) + (wire (pts (xy 722.63 292.1) (xy 896.62 292.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11dbd9f4-29a3-4178-b486-e2a1ac8269e3) + ) + (wire (pts (xy 1327.15 170.18) (xy 1327.15 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 120b912d-3e14-4494-82f7-6a9a72aa3305) + ) + (wire (pts (xy 1163.32 85.09) (xy 1163.32 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12419c26-f67c-4952-9795-df8223ae7eef) + ) + (wire (pts (xy 974.09 213.36) (xy 974.09 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1278cebe-79f9-45b5-9a8b-4872c7a506d0) + ) + (wire (pts (xy 1126.49 151.13) (xy 1126.49 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14b087db-cc11-4d20-a49c-3fdb8111b643) + ) + (wire (pts (xy 1090.93 243.84) (xy 1026.16 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14c46250-d78f-4b54-8d00-9a6387518b32) + ) + (wire (pts (xy 417.83 95.25) (xy 417.83 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 152ba444-8b0f-40c3-8463-b26f2e94199e) + ) + (wire (pts (xy 457.2 264.16) (xy 557.53 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15ecc612-5230-4560-a0de-771f94d0af60) + ) + (wire (pts (xy 951.23 212.09) (xy 947.42 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16118458-dd7b-415f-a94f-e50a5ada6ba7) + ) + (wire (pts (xy 474.98 210.82) (xy 452.12 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16db524b-4810-4106-bee2-41aa496db4a7) + ) + (wire (pts (xy 1163.32 175.26) (xy 1202.69 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 174788ea-42af-4998-b796-6b50ff82195f) + ) + (wire (pts (xy 497.84 212.09) (xy 541.02 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 180b4d56-ac08-400b-8031-374f22896368) + ) + (wire (pts (xy 730.25 166.37) (xy 836.93 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18605bcb-53f8-4b8c-b731-5b8505135051) + ) + (wire (pts (xy 839.47 233.68) (xy 830.58 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18a4bf73-7598-400c-820c-e95ee0549cd7) + ) + (wire (pts (xy 730.25 214.63) (xy 800.1 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19371ded-4465-4516-8dd6-5868c5f8a877) + ) + (wire (pts (xy 229.87 218.44) (xy 217.17 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 197b6b3f-5118-4ce4-b688-674aa0c9f35e) + ) + (wire (pts (xy 996.95 146.05) (xy 996.95 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19b9f6b7-4e88-4973-8488-d24690acf70e) + ) + (wire (pts (xy 1297.94 195.58) (xy 1332.23 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ab3abef-f14c-41ea-9a39-688f0e187908) + ) + (wire (pts (xy 392.43 91.44) (xy 392.43 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b74351a-b690-42e2-9115-6faf3094ccfd) + ) + (wire (pts (xy 365.76 170.18) (xy 356.87 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bc4cc51-6ff7-4db7-b116-51135d00a0b8) + ) + (wire (pts (xy 636.27 160.02) (xy 636.27 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c228c93-4d01-4bed-bc62-dcdf11a7978b) + ) + (wire (pts (xy 1336.04 163.83) (xy 1332.23 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c29e000-058b-41ba-90b7-d29ae096fa14) + ) + (wire (pts (xy 722.63 279.4) (xy 722.63 292.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c6b7772-f570-4676-af48-4c739afdb6fa) + ) + (wire (pts (xy 1193.8 82.55) (xy 1193.8 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dccb2b6-47cc-4a01-98fc-bd29242b66c8) + ) + (wire (pts (xy 698.5 180.34) (xy 698.5 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dff3b2f-d26b-469f-a4de-57c8583207a7) + ) + (wire (pts (xy 774.7 185.42) (xy 774.7 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ef58625-d3dc-4ab3-bf1c-a99897eb63c5) + ) + (wire (pts (xy 217.17 285.75) (xy 369.57 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ffe24c1-3259-461d-b630-ad63346b01d7) + ) + (wire (pts (xy 543.56 209.55) (xy 546.1 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 203dae16-6c51-4ccb-b596-aab2382a7ad8) + ) + (wire (pts (xy 1003.3 219.71) (xy 1003.3 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21127987-32b7-4c0e-bb5d-73382ac6529e) + ) + (wire (pts (xy 896.62 147.32) (xy 938.53 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 217230f5-264f-459f-afda-f59233587fa4) + ) + (wire (pts (xy 707.39 219.71) (xy 707.39 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21d44caf-672c-45c7-ad06-a32f2a58d420) + ) + (wire (pts (xy 444.5 144.78) (xy 444.5 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2207c766-3c6b-4894-88d9-449acbe017ca) + ) + (wire (pts (xy 448.31 242.57) (xy 448.31 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22707403-c6be-4756-9167-32dac68d17d4) + ) + (wire (pts (xy 496.57 160.02) (xy 556.26 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22ed7fc5-7535-4507-bd04-b0a39f9952ad) + ) + (wire (pts (xy 227.33 125.73) (xy 232.41 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22f0284a-2eaf-4e07-85e6-bb73dd6d4a22) + ) + (wire (pts (xy 730.25 227.33) (xy 730.25 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2309ab5e-3bd6-4875-b40a-15c5c56ac0fb) + ) + (wire (pts (xy 262.89 149.86) (xy 229.87 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 236c2a42-4716-4cd4-a050-aa4b094a3467) + ) + (wire (pts (xy 421.64 116.84) (xy 421.64 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 237126c0-1591-49e1-bcfc-7b10050f622c) + ) + (wire (pts (xy 1263.65 316.23) (xy 1263.65 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2417f38f-ac89-417f-b67f-53974550ce23) + ) + (wire (pts (xy 1201.42 255.27) (xy 1201.42 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 242852df-753f-4372-a47f-c8b7f404f047) + ) + (wire (pts (xy 509.27 90.17) (xy 509.27 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24a56438-1e7b-479d-9676-d0a84e844d88) + ) + (wire (pts (xy 1038.86 110.49) (xy 1047.75 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24c52eb4-1c29-4027-80c4-71f9231f5217) + ) + (wire (pts (xy 473.71 186.69) (xy 461.01 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2631c9bd-772f-4392-8ad7-9166b1fc6ed2) + ) + (wire (pts (xy 480.06 102.87) (xy 480.06 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27a50bee-3a1a-432c-8e26-544f202dfe15) + ) + (wire (pts (xy 388.62 185.42) (xy 388.62 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28e1d045-3d28-4a5a-ac7d-179747ce6dc2) + ) + (wire (pts (xy 707.39 228.6) (xy 698.5 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 298eb98f-7da7-4cf3-bdc5-12ad8d11d1c1) + ) + (wire (pts (xy 1282.7 149.86) (xy 1332.23 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a21700f-8d05-4e4c-9050-937d24f7af46) + ) + (wire (pts (xy 114.3 182.88) (xy 114.3 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a802554-8db8-4339-9a5a-cc0e249d11bb) + ) + (wire (pts (xy 314.96 170.18) (xy 356.87 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2afc36a0-c7e5-4b62-8324-3f7d630efa7b) + ) + (wire (pts (xy 1193.8 177.8) (xy 1200.15 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2afcece7-ef60-4e51-bd02-dac00e8e22a6) + ) + (wire (pts (xy 265.43 170.18) (xy 265.43 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b010bdc-0a9a-4e85-b083-ac44d82d9d39) + ) + (wire (pts (xy 170.18 158.75) (xy 165.1 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b6aa22d-971d-421c-8664-dbb5147af30a) + ) + (wire (pts (xy 113.03 147.32) (xy 162.56 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2cdc5a3e-2cf2-42de-8442-3104baf0e716) + ) + (wire (pts (xy 369.57 284.48) (xy 652.78 284.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d772a53-4c57-4d9d-986f-fab270c68a18) + ) + (wire (pts (xy 1176.02 255.27) (xy 1176.02 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f618a95-8dcb-4b85-a3b2-4ebddc690299) + ) + (wire (pts (xy 396.24 78.74) (xy 938.53 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f7ac916-e628-44d7-ad4d-01f9dc3c2ab3) + ) + (wire (pts (xy 628.65 219.71) (xy 698.5 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f887779-596f-42b1-ad11-c9ddc775f1d7) + ) + (wire (pts (xy 215.9 147.32) (xy 196.85 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f9f3e55-0134-4e01-b93e-f9e91aca3df9) + ) + (wire (pts (xy 1229.36 191.77) (xy 1271.27 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fb649e3-6bbd-417f-9ec2-b54e76eb1e80) + ) + (wire (pts (xy 862.33 219.71) (xy 891.54 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ff3de90-03b4-48f2-ad15-7a41323eb5ef) + ) + (wire (pts (xy 943.61 199.39) (xy 947.42 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 309e0e9f-29af-4a99-b55a-69263a3a1bdf) + ) + (wire (pts (xy 1270 158.75) (xy 1327.15 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31364656-671a-48ca-89ac-68f24c346dc1) + ) + (wire (pts (xy 353.06 142.24) (xy 441.96 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 325c5198-c3f9-477e-bc2a-5919015ae5b1) + ) + (wire (pts (xy 457.2 201.93) (xy 474.98 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3383fec4-6636-4662-91e9-228bc6ef5330) + ) + (wire (pts (xy 1047.75 125.73) (xy 1047.75 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33e017c8-aa24-4417-a993-c134f308766d) + ) + (wire (pts (xy 1026.16 243.84) (xy 1026.16 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 349075f8-136c-46a4-a149-bfaab78ae77c) + ) + (wire (pts (xy 524.51 62.23) (xy 1239.52 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35088d3f-e857-499c-bc8c-af9fd53bf9c6) + ) + (wire (pts (xy 222.25 242.57) (xy 448.31 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3629154d-d6ab-4b91-9445-8e67dc471f98) + ) + (wire (pts (xy 1329.69 171.45) (xy 1336.04 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36370ef2-c32c-4dab-8234-641759986cea) + ) + (wire (pts (xy 1200.15 156.21) (xy 1200.15 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 367f0460-4ced-4718-b090-23bf00388c20) + ) + (wire (pts (xy 358.14 163.83) (xy 361.95 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37736930-8d9c-4d90-8864-c18a6aaeda96) + ) + (wire (pts (xy 210.82 120.65) (xy 210.82 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38283891-d085-401a-8010-d03ead3fa4bb) + ) + (wire (pts (xy 1090.93 111.76) (xy 1090.93 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a47f26c-01a6-44dd-92ce-58e3d2bd373e) + ) + (wire (pts (xy 541.02 212.09) (xy 546.1 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3acc376a-138f-41bf-a8cd-04ac76031166) + ) + (wire (pts (xy 1051.56 128.27) (xy 1045.21 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bdd0305-1351-4226-b858-4bb565fa028e) + ) + (wire (pts (xy 1329.69 180.34) (xy 1329.69 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3be0e825-cccd-4a3f-86b9-ffa213f5fca7) + ) + (wire (pts (xy 839.47 243.84) (xy 806.45 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c016868-0e86-4008-abab-1dc76c8f5b26) + ) + (wire (pts (xy 104.14 146.05) (xy 110.49 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c258e9b-273f-4da0-afd5-fe21d6a4b704) + ) + (wire (pts (xy 215.9 130.81) (xy 254 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c324f70-64d1-49dc-9398-526e2273accf) + ) + (wire (pts (xy 252.73 217.17) (xy 262.89 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cef2ad2-c296-4127-ac51-5aefd86c125d) + ) + (wire (pts (xy 104.14 227.33) (xy 104.14 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d30ca6a-816c-4ffc-b664-593737d531fe) + ) + (wire (pts (xy 902.97 200.66) (xy 902.97 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dd91163-be4b-414f-b4d7-fee989c9f93b) + ) + (wire (pts (xy 1239.52 62.23) (xy 1239.52 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3df9282d-377a-4923-8f18-20d4aa0943b4) + ) + (wire (pts (xy 951.23 227.33) (xy 915.67 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ebf782f-d383-4ef4-9065-7a24c0686c58) + ) + (wire (pts (xy 170.18 121.92) (xy 157.48 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ee88848-8df2-43e5-a80b-a11187d6cfe1) + ) + (wire (pts (xy 157.48 182.88) (xy 217.17 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f13bda0-f85a-4ec9-bc1e-b2070bc1797a) + ) + (wire (pts (xy 1126.49 240.03) (xy 1201.42 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fcfe759-7978-47a2-b13f-15872d99398c) + ) + (wire (pts (xy 1297.94 187.96) (xy 1330.96 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40798eb9-7a1b-4515-ab6c-9652895006de) + ) + (wire (pts (xy 162.56 156.21) (xy 162.56 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40b266dd-d540-469c-90c6-c76d475a513f) + ) + (wire (pts (xy 942.34 214.63) (xy 942.34 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40b7c87e-f954-4cb5-9ec4-ea9b28509974) + ) + (wire (pts (xy 421.64 90.17) (xy 426.72 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40fe2b22-5ec0-40f3-88d3-8082d6195e8a) + ) + (wire (pts (xy 448.31 158.75) (xy 473.71 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4206e47f-f9f4-4655-b655-70ac5bc37eda) + ) + (wire (pts (xy 285.75 138.43) (xy 285.75 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42b6358f-4b18-4ddb-a485-98e099298464) + ) + (wire (pts (xy 543.56 236.22) (xy 543.56 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43397ddd-4379-466d-ad99-73e0ab27d765) + ) + (wire (pts (xy 388.62 177.8) (xy 388.62 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 437a2e23-70f0-446e-8ff0-45db1405fc56) + ) + (wire (pts (xy 309.88 234.95) (xy 309.88 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44071264-cd58-4e3e-93f2-75dc0fb8d1c6) + ) + (wire (pts (xy 410.21 138.43) (xy 410.21 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44f0bc60-c1ab-404e-af7d-a93183639c69) + ) + (wire (pts (xy 113.03 140.97) (xy 104.14 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4519e861-97b4-46bd-94da-dc4ffe354054) + ) + (wire (pts (xy 330.2 144.78) (xy 444.5 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 458418fe-5146-436e-85f1-28b6e6e58cc4) + ) + (wire (pts (xy 1226.82 298.45) (xy 1300.48 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45c95a1f-75a8-4dd3-8940-cc561ccaf777) + ) + (wire (pts (xy 571.5 185.42) (xy 650.24 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 473e1e30-b937-460e-9298-9799f3386312) + ) + (wire (pts (xy 551.18 292.1) (xy 551.18 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48244232-b4ec-4061-9b2f-977f4ea77484) + ) + (wire (pts (xy 707.39 219.71) (xy 698.5 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 483e669e-20ad-4ff6-82cc-f52d9d7be766) + ) + (wire (pts (xy 213.36 123.19) (xy 229.87 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a7e9847-e239-4fd5-87d8-1d212289bc9c) + ) + (wire (pts (xy 259.08 124.46) (xy 262.89 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4abb3a1c-2fee-4ba8-af1c-7bc4ba882420) + ) + (wire (pts (xy 1330.96 173.99) (xy 1330.96 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b066cb0-8dd3-4fb6-8ae0-391109aed01c) + ) + (wire (pts (xy 951.23 205.74) (xy 942.34 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b5642d0-21a9-487c-a240-fcf2f743ee09) + ) + (wire (pts (xy 365.76 176.53) (xy 361.95 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b634c9e-9cf0-4d40-bff1-d972a6a81ddf) + ) + (wire (pts (xy 217.17 182.88) (xy 229.87 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d138e93-8ff1-40ce-8b3b-5bd2370ac30a) + ) + (wire (pts (xy 153.67 138.43) (xy 170.18 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d18b56e-b3d3-431b-8c77-9dd48680ad42) + ) + (wire (pts (xy 365.76 179.07) (xy 356.87 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d94c757-50a8-45b1-93a0-0ba13b54aba5) + ) + (wire (pts (xy 109.22 199.39) (xy 168.91 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4eaf9cdd-cce5-4fed-b2c3-4e4bbc14563f) + ) + (wire (pts (xy 524.51 125.73) (xy 524.51 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ed8e4ac-c814-4b1e-ad54-279600f29308) + ) + (wire (pts (xy 1200.15 193.04) (xy 1200.15 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f81ff98-3dd8-4a35-ae12-6a842df1dd6f) + ) + (wire (pts (xy 911.86 205.74) (xy 942.34 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5011085c-2f49-4846-a79e-e7bd3f5d54e2) + ) + (wire (pts (xy 262.89 139.7) (xy 254 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50268565-d71d-430d-a36b-24e839f90b1b) + ) + (wire (pts (xy 1022.35 177.8) (xy 1037.59 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 508d97ae-bf72-4648-b874-c147101b1a3b) + ) + (wire (pts (xy 316.23 232.41) (xy 312.42 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50dceed2-4447-460c-a900-e2afb6ce4aa1) + ) + (wire (pts (xy 1336.04 167.64) (xy 1336.04 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5130fad2-9a12-4c05-97cf-af8e21ef33cc) + ) + (wire (pts (xy 262.89 137.16) (xy 259.08 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51451740-218a-4509-af04-8209b88014fe) + ) + (wire (pts (xy 576.58 217.17) (xy 567.69 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51535ab1-d881-49d8-9efd-9fc174684a60) + ) + (wire (pts (xy 461.01 132.08) (xy 1037.59 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51ca26b2-a39d-4a0f-8884-9ab2c42bde6e) + ) + (wire (pts (xy 509.27 217.17) (xy 567.69 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51ccb957-117f-48f5-9066-f97386247f26) + ) + (wire (pts (xy 330.2 191.77) (xy 330.2 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53a42372-73f9-4eba-ad36-fbc954116682) + ) + (wire (pts (xy 448.31 276.86) (xy 741.68 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53ed1094-f908-4bcf-845e-cef6eb57c340) + ) + (wire (pts (xy 104.14 227.33) (xy 162.56 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 540c88f4-5d22-4502-a29c-9db9bf4f3356) + ) + (wire (pts (xy 599.44 224.79) (xy 599.44 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5480886e-bf94-45b7-a195-649056f1e62a) + ) + (wire (pts (xy 1277.62 215.9) (xy 1277.62 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 569d5f9c-8f7f-4988-8d75-117af5b14019) + ) + (wire (pts (xy 1061.72 270.51) (xy 1297.94 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 580075b1-51ec-442f-ac83-b4587c7378a1) + ) + (wire (pts (xy 1205.23 257.81) (xy 1198.88 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59022b95-93eb-4383-bf35-eeeb0a81e080) + ) + (wire (pts (xy 1327.15 158.75) (xy 1327.15 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a38e16a-44fc-4dad-a7d8-561a76cf2b0b) + ) + (wire (pts (xy 1229.36 176.53) (xy 1263.65 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c69b818-e49d-4a37-9403-965fdd214189) + ) + (wire (pts (xy 250.19 162.56) (xy 332.74 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cb6289a-3e21-4e71-9b7d-6329deac4355) + ) + (wire (pts (xy 480.06 90.17) (xy 509.27 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dc0fe92-3206-4e6d-983b-8c0b3518b9d3) + ) + (wire (pts (xy 703.58 226.06) (xy 703.58 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dd5b0f8-8e61-442a-aa21-f0a1fadc5dba) + ) + (wire (pts (xy 800.1 217.17) (xy 806.45 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dfd9152-5d57-44a7-a140-a11e8186f1f0) + ) + (wire (pts (xy 902.97 200.66) (xy 915.67 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e5789b5-c28f-453a-94cf-a1281555c22f) + ) + (wire (pts (xy 800.1 214.63) (xy 800.1 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ee65498-7092-410e-80bc-68f0c1a9700b) + ) + (wire (pts (xy 1045.21 128.27) (xy 1045.21 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ff6eeb1-b88b-4723-b12d-c57c3c3d0001) + ) + (wire (pts (xy 361.95 163.83) (xy 365.76 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60065e89-f4e0-4ea5-bcd6-48873384b43c) + ) + (wire (pts (xy 1031.24 76.2) (xy 1031.24 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 604e2ab6-07e9-4025-8bc2-e705f0f5c86a) + ) + (wire (pts (xy 1061.72 255.27) (xy 1176.02 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6333ab55-bb2e-437d-9333-5ff3ac1f7551) + ) + (wire (pts (xy 576.58 217.17) (xy 576.58 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6350540d-7e95-4e57-92fc-e9dfc7782547) + ) + (wire (pts (xy 674.37 212.09) (xy 676.91 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6562a83e-b880-49f7-bf1e-6533603cdfc0) + ) + (wire (pts (xy 314.96 82.55) (xy 1193.8 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65a10290-96d4-40f0-b4af-e6e35d1463aa) + ) + (wire (pts (xy 457.2 95.25) (xy 448.31 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 660505ad-2e57-41ce-911d-cee24937cd05) + ) + (wire (pts (xy 1019.81 300.99) (xy 1019.81 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 661601c8-d238-454f-82a4-5e013a86cc14) + ) + (wire (pts (xy 927.1 137.16) (xy 927.1 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6730a82c-3d8a-4457-9cc4-2eaa5952fd0b) + ) + (wire (pts (xy 703.58 165.1) (xy 707.39 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 673e216a-842c-4bff-b030-041d57751653) + ) + (wire (pts (xy 1202.69 138.43) (xy 1206.5 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67502bbf-d1af-4818-853e-a71e4c046bf8) + ) + (wire (pts (xy 193.04 139.7) (xy 213.36 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 676c1384-3c56-4728-a25a-2f0103242eae) + ) + (wire (pts (xy 262.89 130.81) (xy 254 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 677a1d98-4283-4ff4-b406-630628ec4cea) + ) + (wire (pts (xy 1271.27 191.77) (xy 1271.27 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68a24240-78c8-4ac4-bd5d-c2ff929bca49) + ) + (wire (pts (xy 918.21 198.12) (xy 920.75 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68b76359-2a4a-408a-8ad9-d95a38d2d40e) + ) + (wire (pts (xy 386.08 115.57) (xy 407.67 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68bdc0b4-7047-4b7a-928e-09cc60eaeac6) + ) + (wire (pts (xy 622.3 231.14) (xy 628.65 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 691c9af9-a5af-4538-b719-27bb45b38143) + ) + (wire (pts (xy 265.43 201.93) (xy 457.2 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6930c179-1778-4d85-8020-50e7c3588ce6) + ) + (wire (pts (xy 576.58 226.06) (xy 567.69 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a3f1bc1-785f-433a-b6c9-dee6664bcd85) + ) + (wire (pts (xy 1003.3 297.18) (xy 1203.96 297.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b343886-d00a-48f3-9039-7c89d0fd124b) + ) + (wire (pts (xy 576.58 238.76) (xy 541.02 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b349fd5-ac40-4523-93b4-6d16755f5381) + ) + (wire (pts (xy 113.03 147.32) (xy 113.03 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b3f73c7-bb62-40a7-88bc-0598043c99b4) + ) + (wire (pts (xy 1069.34 92.71) (xy 1289.05 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b7923ec-71e3-4702-9617-9cf967b9f3ef) + ) + (wire (pts (xy 417.83 138.43) (xy 410.21 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c86afe0-ae8e-499d-be5e-61527008882d) + ) + (wire (pts (xy 452.12 210.82) (xy 452.12 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d41a2c2-2b44-4946-becc-88b520c133be) + ) + (wire (pts (xy 862.33 240.03) (xy 862.33 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e319aec-38de-4f88-ba5a-a44c836a42f8) + ) + (wire (pts (xy 223.52 170.18) (xy 265.43 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6eeb6ea9-2a59-459d-a4c5-9c3cb14485b3) + ) + (wire (pts (xy 109.22 151.13) (xy 109.22 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 704d862f-4ab1-4a32-a038-85f0326ed8b1) + ) + (wire (pts (xy 741.68 279.4) (xy 722.63 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 712520b6-ec30-4aa6-8ac7-2a29a29f46b8) + ) + (wire (pts (xy 262.89 130.81) (xy 262.89 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 716f9cec-4a8b-416d-8bbe-5e19119a743b) + ) + (wire (pts (xy 170.18 156.21) (xy 162.56 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71bf963b-c5f9-43f4-a045-add49eabd640) + ) + (wire (pts (xy 1206.5 190.5) (xy 1202.69 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71f3cd13-c75f-4b89-8f9f-3fa26babec12) + ) + (wire (pts (xy 730.25 179.07) (xy 730.25 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 723260b6-3b13-430a-8517-bfd757fdc48d) + ) + (wire (pts (xy 170.18 107.95) (xy 170.18 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 726cedd7-196b-4499-a862-b2a360320530) + ) + (wire (pts (xy 196.85 147.32) (xy 196.85 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72a73c0d-f2d9-406e-92e2-4ffe2a013a2c) + ) + (wire (pts (xy 1271.27 170.18) (xy 1327.15 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 733ac1c6-7b3a-4735-989c-3a450f897a7b) + ) + (wire (pts (xy 1201.42 240.03) (xy 1205.23 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 748a8595-b258-4ebf-9f05-19546040a2f9) + ) + (wire (pts (xy 1200.15 177.8) (xy 1206.5 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75ce963f-f069-4d1c-90e2-2a55bb871c7a) + ) + (wire (pts (xy 457.2 264.16) (xy 457.2 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75d41f47-6205-4f63-881a-ad284facc01c) + ) + (wire (pts (xy 1038.86 269.24) (xy 1035.05 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 767f2299-6f96-48e1-93a2-27647a182a88) + ) + (wire (pts (xy 524.51 209.55) (xy 543.56 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76dd3456-7840-4a50-ad09-61ba326201cd) + ) + (wire (pts (xy 974.09 220.98) (xy 974.09 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 777877b5-6cfe-4e64-a186-515fd67c2ee1) + ) + (wire (pts (xy 114.3 148.59) (xy 104.14 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78dfc47b-6500-47c9-b53d-70b75532a83e) + ) + (wire (pts (xy 448.31 104.14) (xy 448.31 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79047497-2694-49c1-87d2-a858720c0a53) + ) + (wire (pts (xy 396.24 96.52) (xy 396.24 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7974a01b-e571-4d64-8b3b-9a51ac2c92be) + ) + (wire (pts (xy 153.67 138.43) (xy 153.67 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b1b48d4-fd8f-4d2e-b8be-fd3e9e9791f5) + ) + (wire (pts (xy 1019.81 180.34) (xy 1037.59 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b4add56-d10f-405a-ba99-9f9de1307200) + ) + (wire (pts (xy 628.65 231.14) (xy 628.65 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b673fb4-f2e2-4cc9-9045-9170bec08e8d) + ) + (wire (pts (xy 1228.09 256.54) (xy 1282.7 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bcf240d-4d09-4859-86d0-7b8cae628164) + ) + (wire (pts (xy 783.59 265.43) (xy 783.59 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c26bf0e-767d-4980-8592-fd7e4aaab4ea) + ) + (wire (pts (xy 441.96 246.38) (xy 162.56 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c3a6984-a61d-4a45-8841-08d48be5b2f1) + ) + (wire (pts (xy 1289.05 180.34) (xy 1329.69 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c895ef4-88c9-428c-8ab2-914fe610067a) + ) + (wire (pts (xy 918.21 224.79) (xy 918.21 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7db8d556-bb8d-46d5-bd27-407f59faedab) + ) + (wire (pts (xy 885.19 238.76) (xy 911.86 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dbb26ed-31a3-46da-af81-a847aa216c61) + ) + (wire (pts (xy 407.67 90.17) (xy 421.64 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e12924b-6b5b-4fde-ac33-3918caef5d10) + ) + (wire (pts (xy 839.47 224.79) (xy 830.58 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7efbd847-a180-4fdd-b5d2-9c76ac0ca38b) + ) + (wire (pts (xy 168.91 199.39) (xy 290.83 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f9c3f38-fd08-4483-9d00-438b39880f85) + ) + (wire (pts (xy 461.01 186.69) (xy 461.01 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8155053a-82bc-4ed4-b4bd-331a26f44b43) + ) + (wire (pts (xy 730.25 186.69) (xy 730.25 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 816e8cb8-1f5f-4725-882f-8cdee0938487) + ) + (wire (pts (xy 417.83 165.1) (xy 417.83 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81b060b8-e291-402b-bf58-8a818fd4ad0f) + ) + (wire (pts (xy 576.58 236.22) (xy 543.56 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 842681ab-8434-4d84-890a-6dd899bc32a3) + ) + (wire (pts (xy 312.42 232.41) (xy 312.42 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84c809c7-811e-42fa-8c77-4704b74727db) + ) + (wire (pts (xy 1176.02 299.72) (xy 1203.96 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84cb343d-6300-4907-9024-f5ce363a90b7) + ) + (wire (pts (xy 1289.05 92.71) (xy 1289.05 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85b0eeba-e495-4749-bb5b-eb94828e610a) + ) + (wire (pts (xy 707.39 241.3) (xy 671.83 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86399df3-b6bd-4b81-95f9-dfc0cb126516) + ) + (wire (pts (xy 457.2 95.25) (xy 457.2 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86529636-c0af-4183-8798-46f6b9b18910) + ) + (wire (pts (xy 210.82 125.73) (xy 227.33 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 867de079-4611-453c-9e5f-7bc43dd7d91e) + ) + (wire (pts (xy 107.95 138.43) (xy 104.14 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87474d46-8755-419c-baea-96d3b7ebd07a) + ) + (wire (pts (xy 1014.73 227.33) (xy 1038.86 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87ee383d-e63e-4849-af00-fb67e93b3476) + ) + (wire (pts (xy 947.42 212.09) (xy 947.42 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 888178ae-7632-4c66-9b62-5dcd683e2b01) + ) + (wire (pts (xy 1045.21 113.03) (xy 1051.56 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a7c9765-a241-44fe-8931-34aa08a5cd52) + ) + (wire (pts (xy 1226.82 215.9) (xy 1277.62 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8aa208a5-0f0c-482e-959c-fca821f9c9ba) + ) + (wire (pts (xy 496.57 185.42) (xy 556.26 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ae1f632-c9df-4290-a6a8-42419e3d12be) + ) + (wire (pts (xy 1198.88 242.57) (xy 1205.23 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b69b804-5b7b-44fb-a864-aa375163d7ef) + ) + (wire (pts (xy 671.83 241.3) (xy 671.83 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b782a19-20a6-4717-87c7-9cb275132bbb) + ) + (wire (pts (xy 1019.81 113.03) (xy 1019.81 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b9ebdd0-b68b-4166-8182-1fde40501806) + ) + (wire (pts (xy 330.2 144.78) (xy 330.2 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bc18967-abd4-426a-b00c-1c1b792ad88c) + ) + (wire (pts (xy 599.44 232.41) (xy 599.44 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c015853-f969-4bba-98dc-01f55c1f44ac) + ) + (wire (pts (xy 938.53 137.16) (xy 938.53 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c6c8091-0bf4-487c-b37a-c98a20b19caf) + ) + (wire (pts (xy 674.37 190.5) (xy 674.37 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ce113d8-5e19-4fa0-a103-e8e499eec254) + ) + (wire (pts (xy 457.2 114.3) (xy 424.18 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cee5c91-e498-4445-bcaf-ccac716c6efb) + ) + (wire (pts (xy 104.14 96.52) (xy 396.24 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d2c22ce-afba-4822-b6ab-6a7ed99d9983) + ) + (wire (pts (xy 753.11 233.68) (xy 759.46 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d907c20-a2bf-4cb6-a4bd-1062a0c81877) + ) + (wire (pts (xy 703.58 213.36) (xy 707.39 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e03a6c0-bd7a-4195-a332-f578615edbbe) + ) + (wire (pts (xy 915.67 227.33) (xy 915.67 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f11dda6-3d05-4584-8b65-f33ccab61e6f) + ) + (wire (pts (xy 474.98 201.93) (xy 474.98 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f3803c2-8d9d-4ee3-ba27-3abe38086c97) + ) + (wire (pts (xy 1038.86 109.22) (xy 1038.86 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f4d7649-8d9d-44a3-a032-e5adfe4827c4) + ) + (wire (pts (xy 217.17 218.44) (xy 217.17 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90b50006-d080-4bf6-9b9a-9f17a31aa4df) + ) + (wire (pts (xy 168.91 307.34) (xy 1014.73 307.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90ed5607-4a88-4187-a982-9ac5257575bb) + ) + (wire (pts (xy 330.2 116.84) (xy 330.2 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91365d9f-8550-491f-9359-2223016101f6) + ) + (wire (pts (xy 896.62 292.1) (xy 896.62 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 916f78c0-4bf4-44e7-a31a-9b5c16da5c95) + ) + (wire (pts (xy 951.23 214.63) (xy 942.34 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92aa49bc-ecca-46b1-8b9d-acd7801214d9) + ) + (wire (pts (xy 441.96 184.15) (xy 461.01 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 941c634d-f7de-47c1-8b4e-ec5c731e77b7) + ) + (wire (pts (xy 1060.45 151.13) (xy 1126.49 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9472f954-9e4b-4ceb-83f9-f2c25a84cdcf) + ) + (wire (pts (xy 441.96 186.69) (xy 441.96 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94c2456d-06cc-4188-a500-d6941719f369) + ) + (wire (pts (xy 707.39 171.45) (xy 707.39 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94d21cbc-4260-4f87-a82e-f072c6d88db9) + ) + (wire (pts (xy 165.1 147.32) (xy 195.58 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 958f62ed-9478-416e-a3bf-c9e8fa124828) + ) + (wire (pts (xy 424.18 87.63) (xy 426.72 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9651b125-7e0d-4a5a-8821-b43a58157a65) + ) + (wire (pts (xy 1032.51 271.78) (xy 1032.51 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96b7d3a9-df99-4f68-b2dc-17e060eff253) + ) + (wire (pts (xy 1037.59 132.08) (xy 1037.59 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97071699-fb42-4d51-90c4-79e8b9334394) + ) + (wire (pts (xy 170.18 140.97) (xy 165.1 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97a7b143-fa88-4412-81ca-1c51052cfdff) + ) + (wire (pts (xy 1198.88 257.81) (xy 1198.88 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97cc1864-c479-4b89-bdcd-f1aa74e1296b) + ) + (wire (pts (xy 1026.16 256.54) (xy 1032.51 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97d062e7-45aa-4294-b6b2-b1bf5458a212) + ) + (wire (pts (xy 671.83 193.04) (xy 671.83 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97ec0a0c-2072-4cb2-b6b1-23c9b9fd3c23) + ) + (wire (pts (xy 285.75 146.05) (xy 285.75 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a43dd4b-bf6f-4fb3-9c46-cdc913c8acf3) + ) + (wire (pts (xy 1031.24 152.4) (xy 1031.24 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9aa619c0-1d91-4985-bfca-1633b9743b0c) + ) + (wire (pts (xy 674.37 238.76) (xy 674.37 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9aaae281-d317-4418-a6a7-313ac0515548) + ) + (wire (pts (xy 424.18 114.3) (xy 424.18 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b3f6dc2-7d6d-42ed-983b-22fd940d7005) + ) + (wire (pts (xy 902.97 278.13) (xy 764.54 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b8842fb-317a-43fe-8ce7-030afc295e0f) + ) + (wire (pts (xy 660.4 316.23) (xy 1263.65 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c3c4f43-87be-4fc8-ba41-b05293ac94ea) + ) + (wire (pts (xy 1117.6 101.6) (xy 1297.94 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c8f4bb2-603e-4cc1-a978-a326238ffa80) + ) + (wire (pts (xy 453.39 101.6) (xy 453.39 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ca9f04b-d7e4-437c-b4ee-32f11868515c) + ) + (wire (pts (xy 951.23 205.74) (xy 951.23 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d219e80-1b1b-45bd-9ee1-555d04ddfcba) + ) + (wire (pts (xy 628.65 163.83) (xy 674.37 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e98a1a4-46f9-4f0c-b751-cd75d72e2a52) + ) + (wire (pts (xy 1202.69 175.26) (xy 1206.5 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9eb28249-03e8-4abd-bed7-188a30688999) + ) + (wire (pts (xy 707.39 180.34) (xy 698.5 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ef1a442-d740-4016-ba48-0d7900e50b67) + ) + (wire (pts (xy 365.76 189.23) (xy 332.74 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f991908-54f9-44f1-8b22-865ce11668e0) + ) + (wire (pts (xy 571.5 160.02) (xy 636.27 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a03afdb4-958c-4c51-809e-0410e4bfee90) + ) + (wire (pts (xy 196.85 327.66) (xy 1244.6 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0c9ccfd-46ff-4dab-9209-d6b7a061a1e0) + ) + (wire (pts (xy 441.96 142.24) (xy 441.96 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1a9d128-1bfd-401f-b697-630c99908661) + ) + (wire (pts (xy 1061.72 205.74) (xy 1170.94 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a24cbd18-e089-4a78-8267-8695ada05f98) + ) + (wire (pts (xy 707.39 171.45) (xy 698.5 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4477e4e-7403-461e-ae69-b678189f046b) + ) + (wire (pts (xy 671.83 166.37) (xy 676.91 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a54c764d-dfdc-44a8-9814-8cd1a96ee9aa) + ) + (wire (pts (xy 1035.05 269.24) (xy 1035.05 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a61c4d48-cdd6-4b64-970d-e4a6552e9a4a) + ) + (wire (pts (xy 308.61 144.78) (xy 314.96 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6830136-283f-4ebc-b5f8-5fe33887b479) + ) + (wire (pts (xy 567.69 226.06) (xy 567.69 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a73715e6-b23f-46b7-b9a9-1b2755cda9e6) + ) + (wire (pts (xy 699.77 165.1) (xy 703.58 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7bd32fd-664a-401e-9795-7fb664c46bed) + ) + (wire (pts (xy 524.51 233.68) (xy 524.51 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7ee45d0-e2a9-450d-81f2-aebbd5362941) + ) + (wire (pts (xy 1031.24 152.4) (xy 1037.59 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a84de948-842b-4f7c-bf77-b35ce80f5239) + ) + (wire (pts (xy 996.95 165.1) (xy 1193.8 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a87ee78c-4923-4aef-b1ed-64c1f6e7b21d) + ) + (wire (pts (xy 836.93 92.71) (xy 1019.81 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8c6093b-6eec-4607-b6e2-b899ac1ce811) + ) + (wire (pts (xy 806.45 217.17) (xy 808.99 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a92256e2-32db-43ae-aa83-e22fea1d20fd) + ) + (wire (pts (xy 303.53 165.1) (xy 330.2 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9a3e51e-64f5-4ade-ba13-8d85f4bcf38a) + ) + (wire (pts (xy 252.73 181.61) (xy 303.53 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa4a8752-2293-409e-a67a-b6d0bae4a475) + ) + (wire (pts (xy 628.65 212.09) (xy 628.65 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abc1ef58-83b9-48bd-bc3b-49a244b68056) + ) + (wire (pts (xy 285.75 125.73) (xy 314.96 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abcc8340-55ed-4626-8681-4591a8c21b48) + ) + (wire (pts (xy 193.04 157.48) (xy 234.95 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac0f3ef5-b844-475c-bbae-bdbddb832b08) + ) + (wire (pts (xy 1156.97 217.17) (xy 1203.96 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ace6db65-6580-4b7d-86d5-5a4736030a12) + ) + (wire (pts (xy 839.47 224.79) (xy 839.47 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad8d7994-2cc5-4fcf-84b6-6128e252d847) + ) + (wire (pts (xy 1206.5 153.67) (xy 1202.69 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae770759-0799-4814-8541-936983943215) + ) + (wire (pts (xy 388.62 165.1) (xy 417.83 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aecb370a-17b3-4f7d-92b6-ce54fc1073aa) + ) + (wire (pts (xy 1022.35 195.58) (xy 1203.96 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aee3f447-ec6b-4df7-a0a4-86eafdee6cc4) + ) + (wire (pts (xy 234.95 157.48) (xy 234.95 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af289e07-563d-481e-a6ac-d5b65ea715ff) + ) + (wire (pts (xy 457.2 101.6) (xy 453.39 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af80ebfe-4423-4150-ab41-c61a5f335d05) + ) + (wire (pts (xy 803.91 246.38) (xy 803.91 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b059dc4d-f764-49ed-b749-4179a970339e) + ) + (wire (pts (xy 1156.97 158.75) (xy 1156.97 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b05b9a0f-998b-4cb3-b69b-60e87e4960ff) + ) + (wire (pts (xy 1113.79 179.07) (xy 1113.79 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0df54de-65ee-4c53-afeb-457410f14630) + ) + (wire (pts (xy 753.11 185.42) (xy 774.7 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0e43b48-1c7a-4ffb-8246-a07811c19f07) + ) + (wire (pts (xy 1332.23 163.83) (xy 1332.23 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1440877-2eef-454e-a49a-620c8b02c585) + ) + (wire (pts (xy 309.88 219.71) (xy 316.23 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b247fc4c-21aa-4557-a8ee-49b669abe03d) + ) + (wire (pts (xy 674.37 163.83) (xy 676.91 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b27a31b1-222b-4867-b3d9-4f576987a706) + ) + (wire (pts (xy 1336.04 179.07) (xy 1336.04 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3238a6a-6f16-487a-8788-b316fe45542f) + ) + (wire (pts (xy 113.03 143.51) (xy 104.14 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b40e4461-36d0-4192-b92d-ab86e7c302c9) + ) + (wire (pts (xy 195.58 147.32) (xy 195.58 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b458d501-87e3-4cb2-9d68-8796df59324e) + ) + (wire (pts (xy 363.22 107.95) (xy 363.22 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4857708-56bf-4255-857b-d4bd9d2a35e4) + ) + (wire (pts (xy 698.5 228.6) (xy 698.5 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4af6018-458c-458a-abfc-053768009db7) + ) + (wire (pts (xy 162.56 215.9) (xy 222.25 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b77d47d1-a0f0-4050-978e-2ef5f9fce8ee) + ) + (wire (pts (xy 227.33 152.4) (xy 227.33 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b986becf-e924-4803-b22e-68e9a9cd6032) + ) + (wire (pts (xy 839.47 231.14) (xy 835.66 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9a5357c-50df-4e43-9a32-b64d7c8fd78f) + ) + (wire (pts (xy 1327.15 166.37) (xy 1336.04 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9bf4b58-32f2-4994-a92c-6d5835d1d505) + ) + (wire (pts (xy 110.49 146.05) (xy 110.49 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba4c792b-7939-4f6c-8df1-4da9b3c9af61) + ) + (wire (pts (xy 1060.45 179.07) (xy 1113.79 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bacee649-d31f-46b3-93fd-dce1fee5d1fe) + ) + (wire (pts (xy 703.58 177.8) (xy 703.58 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bad09e98-5d41-42e9-a832-005321bef8d6) + ) + (wire (pts (xy 1297.94 270.51) (xy 1297.94 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc310827-81c5-4150-898b-7fb0a6fd0526) + ) + (wire (pts (xy 461.01 266.7) (xy 551.18 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd615c1f-0bf3-4667-83df-17208103386c) + ) + (wire (pts (xy 107.95 107.95) (xy 170.18 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be07cd02-2805-495a-9a73-bfaf2b04fe4c) + ) + (wire (pts (xy 774.7 224.79) (xy 830.58 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be82189e-108a-46ca-9e0e-f109eaa2fde6) + ) + (wire (pts (xy 278.13 217.17) (xy 312.42 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c06ab0d5-7f7f-46e7-ad18-7f6deceeb0cb) + ) + (wire (pts (xy 217.17 218.44) (xy 217.17 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0b2091d-cdc7-411e-9b7f-26539e49e932) + ) + (wire (pts (xy 1200.15 140.97) (xy 1206.5 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c129b9a3-f00f-4429-9766-4c12530e2656) + ) + (wire (pts (xy 330.2 156.21) (xy 290.83 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c21eaad3-959e-4986-9304-4dd2d0c05db8) + ) + (wire (pts (xy 1074.42 127) (xy 1117.6 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2305bd5-71bb-4e95-b1e4-4db820a116af) + ) + (wire (pts (xy 1035.05 254) (xy 1038.86 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c295388f-7305-4d0d-8cb4-f7b394d1ea08) + ) + (wire (pts (xy 1205.23 255.27) (xy 1201.42 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2bdf4df-45aa-4fa3-8c49-b12c0c904ac1) + ) + (wire (pts (xy 1336.04 142.24) (xy 1336.04 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2ce9d69-21e2-41e8-b5a1-5738b505aef1) + ) + (wire (pts (xy 551.18 266.7) (xy 557.53 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2f19a7c-8448-4618-97a5-57c273553831) + ) + (wire (pts (xy 862.33 232.41) (xy 862.33 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2f7f3a9-f495-41a9-96fd-047e0e1457b4) + ) + (wire (pts (xy 1009.65 200.66) (xy 1009.65 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3bff055-7f23-4eb9-85ad-4b317fbb38f0) + ) + (wire (pts (xy 461.01 184.15) (xy 461.01 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c452b75b-e758-4203-9749-444696eaf99c) + ) + (wire (pts (xy 636.27 214.63) (xy 671.83 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c496ba7d-eff5-49a9-a311-5f972f73fe18) + ) + (wire (pts (xy 162.56 156.21) (xy 162.56 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4c7ef19-fd35-454d-97d4-4d0ca63ea259) + ) + (wire (pts (xy 361.95 176.53) (xy 361.95 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4fd97f0-6af8-4a11-879c-d2d22d727292) + ) + (wire (pts (xy 339.09 218.44) (xy 369.57 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5b808f9-084e-4218-bb53-23d9ee909ad4) + ) + (wire (pts (xy 1332.23 195.58) (xy 1332.23 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5d0698a-841a-4ba6-811c-74a155cda4f4) + ) + (wire (pts (xy 938.53 137.16) (xy 927.1 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5e7788b-26f9-4f48-8332-cfaabc1008c3) + ) + (wire (pts (xy 947.42 199.39) (xy 951.23 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c662e694-6d62-4d78-8c1c-7d8d8393417b) + ) + (wire (pts (xy 303.53 207.01) (xy 303.53 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c66b02e3-121f-4ab3-a9c7-fd356bbefa36) + ) + (wire (pts (xy 1170.94 140.97) (xy 1200.15 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c68151b2-a914-45ed-a5b6-8985333b0c52) + ) + (wire (pts (xy 835.66 218.44) (xy 839.47 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6894ea6-e54a-4969-a290-a0fd559f4536) + ) + (wire (pts (xy 165.1 147.32) (xy 165.1 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6a9ebc6-b551-46db-a1b1-05d3a422c4fe) + ) + (wire (pts (xy 707.39 177.8) (xy 703.58 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c75f112b-0b13-4e7f-8a75-5c658b2525b3) + ) + (wire (pts (xy 1117.6 127) (xy 1117.6 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7d9221b-f13e-4f46-ab73-072a22848c90) + ) + (wire (pts (xy 1022.35 195.58) (xy 1022.35 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c827b83e-fe25-434c-a57d-960d8ac7dd67) + ) + (wire (pts (xy 1202.69 190.5) (xy 1202.69 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8282ce3-a699-496d-9a9c-0335f5b32e56) + ) + (wire (pts (xy 461.01 184.15) (xy 473.71 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8da5f4e-52bb-438d-a22f-c871b4e151e6) + ) + (wire (pts (xy 229.87 149.86) (xy 229.87 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9b7b86f-97ce-4e61-b181-973aba4c7c4a) + ) + (wire (pts (xy 938.53 78.74) (xy 938.53 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9b7e702-1675-41bd-a30f-6df19f6c3a31) + ) + (wire (pts (xy 707.39 238.76) (xy 674.37 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca0538e8-5199-4251-9f74-2ad62823caf3) + ) + (wire (pts (xy 1277.62 142.24) (xy 1336.04 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca499664-950f-4fe1-b49b-4c012976d3a3) + ) + (wire (pts (xy 509.27 85.09) (xy 1163.32 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca7a0d0d-35a5-44bd-a697-33dd81471ab7) + ) + (wire (pts (xy 759.46 198.12) (xy 759.46 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid caa04265-f295-43f7-a11f-c86d465095b6) + ) + (wire (pts (xy 1038.86 227.33) (xy 1038.86 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb5f473f-0aab-448a-ab3b-073fccaacaae) + ) + (wire (pts (xy 1038.86 271.78) (xy 1032.51 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbd19c72-3a10-43a1-8e88-4e4b927013a6) + ) + (wire (pts (xy 193.04 120.65) (xy 210.82 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cdece1ee-ae82-4be1-bdd2-2d76fc9b78a1) + ) + (wire (pts (xy 996.95 219.71) (xy 1003.3 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce8e6187-d81e-4d59-bfdc-997ca5617640) + ) + (wire (pts (xy 110.49 165.1) (xy 165.1 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cec91da9-e42c-43fe-900b-27237d672c27) + ) + (wire (pts (xy 461.01 186.69) (xy 441.96 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0d2a29d-bd99-490d-90f4-15567871c203) + ) + (wire (pts (xy 153.67 180.34) (xy 223.52 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d186ba7a-dcb4-4b3f-b3e6-d28b12722162) + ) + (wire (pts (xy 974.09 200.66) (xy 1009.65 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d191d27b-1f39-4f29-a956-c8b942a9fb12) + ) + (wire (pts (xy 1297.94 101.6) (xy 1297.94 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2a9d476-ebc1-4921-bf54-e768ba06bb03) + ) + (wire (pts (xy 580.39 265.43) (xy 601.98 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2b9ef12-21ab-429c-92f8-40f5d9dbd277) + ) + (wire (pts (xy 891.54 109.22) (xy 1038.86 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2f4bd75-9eca-4922-a608-b5e3dcd5284f) + ) + (wire (pts (xy 572.77 210.82) (xy 576.58 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d36f274d-f83f-422b-aac8-a06bccd1baf9) + ) + (wire (pts (xy 568.96 210.82) (xy 572.77 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d38af7e6-c49c-4cf4-9220-27fec63b925f) + ) + (wire (pts (xy 448.31 242.57) (xy 448.31 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d459cd96-2aa4-4aee-9cf4-135e38f57cda) + ) + (wire (pts (xy 1047.75 110.49) (xy 1051.56 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4665e8b-f8f4-4026-962a-a1574b92919b) + ) + (wire (pts (xy 1229.36 154.94) (xy 1270 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d502dd84-b9c5-441a-a242-1f0181ebd5e1) + ) + (wire (pts (xy 411.48 184.15) (xy 417.83 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5ef77e5-c36e-410a-8e1a-8640c74298d3) + ) + (wire (pts (xy 617.22 265.43) (xy 783.59 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d613d8fc-6fef-478f-9816-5c9f9c9dd1a8) + ) + (wire (pts (xy 660.4 171.45) (xy 660.4 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6c2569d-7f3a-4dd5-8af3-8de25982743a) + ) + (wire (pts (xy 170.18 107.95) (xy 353.06 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d913809d-c76e-4860-b9e3-6670d6aa559c) + ) + (wire (pts (xy 363.22 116.84) (xy 330.2 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9462dbf-3e75-4667-af09-0a6db217f647) + ) + (wire (pts (xy 991.87 146.05) (xy 996.95 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d96556ed-3db3-4d5c-838e-d9debd0579eb) + ) + (wire (pts (xy 1282.7 256.54) (xy 1282.7 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d967523f-b446-4eff-aa95-83dd3e8e4a60) + ) + (wire (pts (xy 1074.42 111.76) (xy 1090.93 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d99e2cc3-a66c-4be7-9d1c-e74dc4cdee7c) + ) + (wire (pts (xy 369.57 300.99) (xy 1019.81 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9ef106e-aa10-4d4a-81ad-f070eaec43d7) + ) + (wire (pts (xy 1038.86 204.47) (xy 1022.35 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da0c30e8-8e37-4a94-b7d9-32f2a8d8e78b) + ) + (wire (pts (xy 417.83 184.15) (xy 417.83 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dabfdcb9-cb37-4d05-bd9c-98531657c6ea) + ) + (wire (pts (xy 1327.15 167.64) (xy 1336.04 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db8d9996-57fc-46f6-a2ff-391c8596d54e) + ) + (wire (pts (xy 369.57 285.75) (xy 369.57 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc41631f-4c57-4c49-9efa-f240c8be3b51) + ) + (wire (pts (xy 104.14 135.89) (xy 104.14 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcb6a807-7bb6-4567-b77e-7479a692bc57) + ) + (wire (pts (xy 1170.94 205.74) (xy 1170.94 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcdb7013-703c-4d00-85ae-71cea3501dff) + ) + (wire (pts (xy 599.44 212.09) (xy 628.65 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de0b5022-44dd-426e-bba3-bf1df02064c3) + ) + (wire (pts (xy 1031.24 158.75) (xy 1156.97 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid deaf027f-df3a-42cc-8fa6-02a9f41a428a) + ) + (wire (pts (xy 1203.96 195.58) (xy 1203.96 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df1730c7-7434-45f7-8e22-033647bcdf77) + ) + (wire (pts (xy 650.24 166.37) (xy 671.83 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df3d0126-829a-41be-b8ed-30c792328519) + ) + (wire (pts (xy 509.27 109.22) (xy 509.27 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e12d3de5-68db-4516-821e-73b89132505f) + ) + (wire (pts (xy 1202.69 153.67) (xy 1202.69 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1468d76-d26e-43f8-8c18-38443de27764) + ) + (wire (pts (xy 262.89 152.4) (xy 227.33 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e15fab9b-d260-493f-b5ca-5be53d55e74a) + ) + (wire (pts (xy 1229.36 139.7) (xy 1239.52 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1975fa6-1a09-4baa-93e6-eed558d6889a) + ) + (wire (pts (xy 356.87 179.07) (xy 356.87 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2581118-889e-4ca6-a39b-a485f5438ffd) + ) + (wire (pts (xy 1300.48 205.74) (xy 1336.04 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2597a99-5d12-4461-a017-bcaab4c96050) + ) + (wire (pts (xy 1228.09 241.3) (xy 1244.6 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e327eb9b-4252-422c-bc82-a6d3478b5809) + ) + (wire (pts (xy 806.45 243.84) (xy 806.45 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e384f66b-7434-4773-8da5-ee114fc51e54) + ) + (wire (pts (xy 392.43 76.2) (xy 1031.24 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3ebda70-80f0-4705-9b73-5b279675f5e4) + ) + (wire (pts (xy 831.85 218.44) (xy 835.66 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3f53a6d-d90e-4b7a-ac5a-9f4030acbd1d) + ) + (wire (pts (xy 222.25 215.9) (xy 229.87 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4a9a000-3053-487f-9fe2-73d5b00182da) + ) + (wire (pts (xy 1051.56 125.73) (xy 1047.75 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4f4ab2f-b73b-4e53-9041-3f2bed518a83) + ) + (wire (pts (xy 457.2 116.84) (xy 421.64 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4f96af2-67f8-41a4-a625-41c12a20c02b) + ) + (wire (pts (xy 365.76 191.77) (xy 330.2 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e584f40b-e587-4808-b339-2aafe5162069) + ) + (wire (pts (xy 699.77 213.36) (xy 703.58 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5ba45ac-79a5-451b-9a63-2be1e091cbdf) + ) + (wire (pts (xy 330.2 165.1) (xy 335.28 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5dc8a69-155e-4e53-8c34-18b7b8b383ac) + ) + (wire (pts (xy 1014.73 307.34) (xy 1014.73 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5ed80f7-f1bb-4c86-9d41-3d090021a9b1) + ) + (wire (pts (xy 1019.81 92.71) (xy 1054.1 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5f5085e-d7ad-457c-965c-d9782e22f8d9) + ) + (wire (pts (xy 1270 154.94) (xy 1270 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e65d234b-bcc9-4340-828d-2d8b81821fbd) + ) + (wire (pts (xy 927.1 177.8) (xy 1022.35 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e67fff13-5b49-4f29-8cdf-4a27bcd2aeb0) + ) + (wire (pts (xy 444.5 161.29) (xy 452.12 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e684b015-1180-4aa8-aa3b-c0be05d3cdbd) + ) + (wire (pts (xy 410.21 87.63) (xy 424.18 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6981d82-5480-4a92-ab7f-3993665447ee) + ) + (wire (pts (xy 113.03 127) (xy 153.67 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6bd23d7-2fc9-4037-9338-e31411092f37) + ) + (wire (pts (xy 652.78 212.09) (xy 674.37 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7b0635b-c123-4481-b397-e55e7899f46c) + ) + (wire (pts (xy 915.67 200.66) (xy 920.75 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e80a9382-8c2d-414e-9819-21e734d2a254) + ) + (wire (pts (xy 332.74 189.23) (xy 332.74 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e978fdf5-3358-4aec-9e6d-be1dbaf48f7e) + ) + (wire (pts (xy 707.39 190.5) (xy 674.37 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9f17429-e365-4090-b9a1-fdc0049afd87) + ) + (wire (pts (xy 303.53 219.71) (xy 309.88 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb12ecc0-0e1b-46dd-b3a5-7e132e774bb0) + ) + (wire (pts (xy 104.14 151.13) (xy 109.22 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb77991b-bfa1-435e-808b-5b8291a08a7d) + ) + (wire (pts (xy 316.23 234.95) (xy 309.88 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb7ea586-5d1c-4c90-8783-df606f450d3f) + ) + (wire (pts (xy 290.83 156.21) (xy 290.83 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb952766-4c04-482d-9b2f-edc42946fcbe) + ) + (wire (pts (xy 168.91 199.39) (xy 168.91 307.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebcd1036-3649-4ff6-8eb0-4a8052dc6174) + ) + (wire (pts (xy 452.12 161.29) (xy 473.71 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebd36bcd-d910-4ae7-a642-49a98b3c211f) + ) + (wire (pts (xy 417.83 125.73) (xy 524.51 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec3bb4ad-8362-4cb5-95e4-d9937a7c854b) + ) + (wire (pts (xy 576.58 223.52) (xy 572.77 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec7ba381-1426-436f-bc2f-3249f9cce47d) + ) + (wire (pts (xy 951.23 224.79) (xy 918.21 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec7e0251-d967-49e5-8454-0f73c24ca3da) + ) + (wire (pts (xy 961.39 146.05) (xy 976.63 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed02bd29-9344-44ba-8e1c-b710fbf05c69) + ) + (wire (pts (xy 113.03 127) (xy 113.03 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed12e00b-0ae6-4b23-805f-8a44f6ccd0b3) + ) + (wire (pts (xy 417.83 207.01) (xy 303.53 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed7686e8-b605-4234-a715-ec76639172c5) + ) + (wire (pts (xy 229.87 123.19) (xy 232.41 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eec0d189-363d-46f0-a33f-12f444f6ac99) + ) + (wire (pts (xy 1206.5 193.04) (xy 1200.15 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0b92ade-316a-438d-9a99-c183ea3b242d) + ) + (wire (pts (xy 407.67 115.57) (xy 407.67 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1729623-404f-4479-814d-86cd78cab619) + ) + (wire (pts (xy 660.4 171.45) (xy 698.5 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f17c6e98-1422-4f18-aacf-afa2ec692619) + ) + (wire (pts (xy 1336.04 173.99) (xy 1330.96 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f186b139-d762-4b21-aad9-c5c607d0fc4f) + ) + (wire (pts (xy 1009.65 254) (xy 1035.05 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1dcde23-88fa-480e-8d30-cc2b852d4905) + ) + (wire (pts (xy 497.84 209.55) (xy 497.84 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f30a1c0e-d1b1-4e6c-818e-d9d2b1d0557b) + ) + (wire (pts (xy 1193.8 138.43) (xy 1202.69 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3bc27e1-ecb6-45e9-bcf7-f96203cba8fe) + ) + (wire (pts (xy 369.57 218.44) (xy 369.57 284.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3bed132-4585-4bb4-9f5c-cd49f38c6e1f) + ) + (wire (pts (xy 480.06 110.49) (xy 480.06 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3f5f01c-7771-4c1a-8d8c-9bb368f485e3) + ) + (wire (pts (xy 1244.6 327.66) (xy 1244.6 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f64a5abf-9ea1-4b96-87e4-95d451be4788) + ) + (wire (pts (xy 312.42 217.17) (xy 316.23 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6a285c5-18db-4886-8f17-54386fdb485c) + ) + (wire (pts (xy 891.54 219.71) (xy 891.54 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7fd6936-3d32-4cac-b6f9-5c3222ab67ae) + ) + (wire (pts (xy 314.96 125.73) (xy 314.96 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8952bf9-c7af-42d8-92ac-6d65de6d36b5) + ) + (wire (pts (xy 1032.51 256.54) (xy 1038.86 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9235f08-46d8-457c-bd39-60581e903153) + ) + (wire (pts (xy 835.66 231.14) (xy 835.66 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9cf98b5-556a-496b-9062-872a6b71fbc2) + ) + (wire (pts (xy 165.1 158.75) (xy 165.1 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid faa3da56-09e3-4d7b-b195-7706a73934f0) + ) + (wire (pts (xy 671.83 214.63) (xy 676.91 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fab7c2d9-2d6e-4b67-b480-56d6ee4a04d7) + ) + (wire (pts (xy 759.46 198.12) (xy 918.21 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb07c9d2-23e0-46c3-97e5-ecf638857c30) + ) + (wire (pts (xy 195.58 91.44) (xy 392.43 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb3df02e-e285-48a9-a678-3a7cf2be113e) + ) + (wire (pts (xy 1332.23 176.53) (xy 1336.04 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbbc1831-93fb-4fe7-8e0f-5bcbca861310) + ) + (wire (pts (xy 417.83 95.25) (xy 448.31 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbd0b338-1c4d-4cbe-ad49-ac35f5969f49) + ) + (wire (pts (xy 707.39 226.06) (xy 703.58 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc90f7db-1921-4763-8b4a-e27d22b86e14) + ) + (wire (pts (xy 107.95 107.95) (xy 107.95 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd15e2c3-83db-4ea1-8f89-ced1a6d139e7) + ) + (wire (pts (xy 332.74 162.56) (xy 335.28 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd3b5d6d-a442-4f36-b923-8c595d20b152) + ) + (wire (pts (xy 353.06 107.95) (xy 363.22 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdf80e93-f12b-4a5b-8763-daf1b50c6450) + ) + (wire (pts (xy 1019.81 113.03) (xy 1045.21 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdfca5d8-012e-4a9f-a007-8045af3702e6) + ) + (wire (pts (xy 353.06 107.95) (xy 353.06 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fed77433-dc63-4297-b026-e134eb8f574a) + ) + (wire (pts (xy 255.27 124.46) (xy 259.08 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fefd6c42-c843-4fef-9c3b-fceece93eebb) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 1216.66 257.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 03408d5c-2ba7-43f4-9804-1cc3386eaa50) + (property "Reference" "U73" (id 0) (at 1216.66 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1216.66 251.46 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 1216.66 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1216.66 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0fdc9f91-8a32-4ee1-8306-1c9e07389d91)) + (pin "2" (uuid 73f88575-78cb-43e6-80e0-7bedeb6d1684)) + (pin "3" (uuid 228a3eee-1221-4c6d-bb64-f3606fe7cce5)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 588.01 213.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0479b17a-f30b-498c-9cc0-1b2607836831) + (property "Reference" "U34" (id 0) (at 588.01 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 588.01 207.01 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 588.01 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 588.01 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7a06f75-5ef2-44db-9e0b-7034acea0164)) + (pin "2" (uuid 98ec6451-9039-4f04-8f21-532334eaa3b9)) + (pin "3" (uuid e86cb028-4806-4116-97ab-72c8b3d3293e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 1050.29 256.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 05b7e12c-a808-4254-b55d-e13688efeb51) + (property "Reference" "U65" (id 0) (at 1050.29 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1050.29 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1050.29 256.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1050.29 256.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 989db461-0e18-4878-8ebe-cf9b0d6bb7dc)) + (pin "2" (uuid af8be47f-b154-4e71-a79b-f96e0772f0d3)) + (pin "3" (uuid 3a563735-c810-43d5-b5d1-cdf6c2e7a21f)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 741.68 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 14cbd55d-248a-4a5e-855e-1d641a55ab0d) + (property "Reference" "U47" (id 0) (at 741.68 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 741.68 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 741.68 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 741.68 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b73cf278-c723-4b7f-ae52-87acb8b3ba14)) + (pin "2" (uuid 32c2e01f-df6f-46b7-a9a6-4134d45e9a7a)) + (pin "3" (uuid d53fd0b5-3ef1-4b30-85e8-68e3817aa86d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 241.3 182.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17692d1e-6ce9-4fc1-a8be-feabfd304407) + (property "Reference" "U5" (id 0) (at 241.3 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 241.3 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 241.3 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ce7f7ace-22e7-4253-8685-e35beb7027ef)) + (pin "2" (uuid 6bf88d1b-3665-47ec-82e0-89f23f2fd9dd)) + (pin "3" (uuid d38f6df1-e078-477e-a201-bb00ff218809)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 181.61 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 19717032-6242-465b-adc9-29043a60587a) + (property "Reference" "U3" (id 0) (at 181.61 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 181.61 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 181.61 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1465e9dc-e8f5-44f6-a1d5-90c27d9f0493)) + (pin "2" (uuid 59a37346-7326-403b-8a36-1c19744d950c)) + (pin "3" (uuid 8cee0c54-9bb7-4c6f-a08b-367c7b9be8ff)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 741.68 234.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1a1752bf-1f9e-4a91-aab5-3c94ffc6f16a) + (property "Reference" "U48" (id 0) (at 741.68 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 741.68 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 741.68 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 741.68 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a2d3146f-99b8-4069-8fd8-2f42d1aa1e04)) + (pin "2" (uuid 1b961ed6-fc06-4bb4-a0b3-cebdbf71ae93)) + (pin "3" (uuid 63ba7555-16ec-49e7-96f4-c8ce2a2a3c45)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 1050.29 271.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1a835c73-4c8e-47e3-a60f-414941e3b80d) + (property "Reference" "U66" (id 0) (at 1050.29 262.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1050.29 265.43 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 1050.29 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1050.29 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6d176ddf-53fb-4af2-9e42-a1a91daa3927)) + (pin "2" (uuid 0544e3e1-b8df-4abb-a86c-506ca79000a0)) + (pin "3" (uuid 5ac8a3a9-9e0a-47d0-a294-2660eecbbd0a)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 557.53 212.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1cbf8199-32d6-4af3-9bcd-dd995fba5956) + (property "Reference" "U30" (id 0) (at 557.53 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 557.53 205.74 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 557.53 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 557.53 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 239c1e71-02e6-4296-b468-893c6209b77e)) + (pin "2" (uuid d9dad0b4-0bd7-4d18-9767-805c72e23ff4)) + (pin "3" (uuid 4beff058-58fe-4c98-8369-2171f7b8ccd5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 1061.72 92.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2015f236-a536-450e-b14a-4d3656d65954) + (property "Reference" "U67" (id 0) (at 1061.72 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 1061.72 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1062.99 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1062.99 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid df86d5a3-c44d-494c-9738-9adb93429d9d)) + (pin "2" (uuid 08df31ec-1153-4367-b3d6-23dd340e0fc6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 563.88 160.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2b3af93d-d071-441b-b805-5fb2d6b43c54) + (property "Reference" "U31" (id 0) (at 563.88 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 563.88 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 565.15 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 565.15 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7dc57742-a9be-4f09-be7d-4ca455829d02)) + (pin "2" (uuid 758a382c-8f6a-4b34-a497-a267ce03b6db)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 97.79 148.59 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2bcec12d-8c96-4d9d-9fc5-197b5a0a7541) + (property "Reference" "U1" (id 0) (at 98.425 143.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 98.425 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 97.79 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fdecd4f9-b9d5-4605-aab3-90c741ec17eb)) + (pin "2" (uuid 3951f543-de71-4ecf-8e7e-0961ae2ac61c)) + (pin "3" (uuid b70a27fe-42ec-4413-9d6f-c740cbb6769b)) + (pin "4" (uuid f8d97f9a-e401-4194-b938-330b8b6c8445)) + (pin "5" (uuid bb7b43a9-c311-418d-a24d-0331a032f61f)) + (pin "6" (uuid 134652f7-51c3-42d5-bcaf-693edf9ef4ba)) + (pin "7" (uuid 94c8c2fd-b260-4590-92fe-d4aa2bca9951)) + (pin "8" (uuid 14cd0203-14da-4353-88e9-062ca4979e8f)) + (pin "9" (uuid eaa6758f-ddc2-4430-a696-d08ada490b08)) + (pin "10" (uuid afaed26e-32cb-4a9d-a693-6661b1da56a1)) + (pin "11" (uuid 8ff194e3-d26f-433a-98a0-56b81dcfeacd)) + (pin "12" (uuid 8103b36b-1d7b-421a-bd55-3d3d508ba6c1)) + (pin "13" (uuid ebf558af-4e38-4979-9a86-7db426256be0)) + (pin "14" (uuid 8e1ef624-30a9-4740-9033-2c698bb3c4cc)) + (pin "15" (uuid d7d57023-b22b-4a4e-9867-a14a2fa1d944)) + (pin "16" (uuid 5bb1df73-77b3-4110-a5b8-cf5c3ed417d3)) + (pin "17" (uuid d9cabd4d-9c55-4424-ae69-0db63a6d376c)) + (pin "18" (uuid 299daf1b-d4f8-4fcb-8190-0b3599d25b85)) + (pin "19" (uuid 1e18caf3-bf85-4edc-a546-a03ce7ea26df)) + (pin "20" (uuid 785ec9f7-4667-41bf-8772-653377ffdf85)) + (pin "21" (uuid 9a484b7e-ed89-4fc2-8113-be40a4bdf080)) + (pin "22" (uuid 9a254efe-ddac-423d-8688-b4abaabc67aa)) + (pin "23" (uuid 145f9abf-2d90-4a6c-b279-26c4e57f16db)) + (pin "24" (uuid d79f6bfd-05b5-45d0-b35f-5680f8a77d90)) + (pin "25" (uuid 9964f3fa-3f63-4269-9ec5-57400c9e18a3)) + (pin "26" (uuid 4d08e78a-ffe2-4a7a-9952-bf214d930d08)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 610.87 232.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 47c119ff-f5ff-469c-a1e5-8ef98b393e6f) + (property "Reference" "U38" (id 0) (at 610.87 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 610.87 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 610.87 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 610.87 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid db9d3e46-1578-4572-9db5-457baa8d7a4c)) + (pin "2" (uuid c2927b63-0072-459a-84f8-770d1217e686)) + (pin "3" (uuid 685f4c21-e8e2-4469-ac29-91193b9c4c43)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 688.34 214.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 47ef346d-8f46-46b2-8f42-b9b876f2a208) + (property "Reference" "U40" (id 0) (at 688.34 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 688.34 208.28 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 688.34 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 688.34 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b18de598-8d03-46b7-86a3-ec211126e824)) + (pin "2" (uuid 36411b36-8df5-462e-9cc2-eef1ed805d26)) + (pin "3" (uuid 4962439b-5076-4c40-aa2d-254af07e0a9f)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 242.57 162.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4bad5b33-2154-4a7e-9ce6-af1be19fc354) + (property "Reference" "U7" (id 0) (at 242.57 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 242.57 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 243.84 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 243.84 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9f421766-9940-4008-b3ad-4b2a7d006692)) + (pin "2" (uuid 5eb1701e-110e-465d-b290-3a67a4a7e76e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 97.79 153.67 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4caa1a16-9d7d-42af-aa87-3cacc849a1a3) + (property "Reference" "U1" (id 0) (at 98.425 148.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 98.425 151.13 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 97.79 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1626c4f0-33ad-41c4-a54d-2771e76359ff)) + (pin "2" (uuid 33f6a408-5352-49c7-a541-492f12338414)) + (pin "3" (uuid 44fd161b-5df8-4460-97de-1c272e06bc3a)) + (pin "4" (uuid f61f2168-c6a8-4201-b6a3-197af30d3c13)) + (pin "5" (uuid da1df02b-fd81-493f-a5ea-0ff67c0d170b)) + (pin "6" (uuid 0458e610-6e61-452f-bd83-8390124f464c)) + (pin "7" (uuid 43279405-648b-45eb-813c-a1796a8f89f0)) + (pin "8" (uuid 2fcabb69-c65f-48ac-99d1-f620921c0f35)) + (pin "9" (uuid c046d61d-17b5-4b97-97d3-182472336a54)) + (pin "10" (uuid 0548734c-1275-4389-9f4f-1ad27ee7c22b)) + (pin "11" (uuid f51129f8-db74-48a0-8a73-a62525be0b9e)) + (pin "12" (uuid 242018d5-eb23-4d91-8111-a703a90f9fc1)) + (pin "13" (uuid f30054be-3998-498d-afa5-fc4db448ada3)) + (pin "14" (uuid 1c797318-c2d5-4f92-8b6e-fc74dd6557dd)) + (pin "15" (uuid c1f2d853-6d1f-4312-baf5-e2e8bc5614b2)) + (pin "16" (uuid d9031846-d16c-4ab6-b1a7-0e8e88f186c1)) + (pin "17" (uuid da30b049-63ed-43f7-8fbf-6ce6daf4e762)) + (pin "18" (uuid 632ebcc4-837b-4c7a-be53-8eb0ddc89599)) + (pin "19" (uuid 24d6a770-f2d0-412a-90ca-c2cbbbfc65d9)) + (pin "20" (uuid cee08a70-2206-40b9-aa56-cd6c508ddc99)) + (pin "21" (uuid 7c3e2383-866e-4447-90b4-4aae789e777e)) + (pin "22" (uuid 2c259f4c-bd50-463b-91b9-f492218c5221)) + (pin "23" (uuid b1638c72-8928-4855-afb0-dadd782ff5b0)) + (pin "24" (uuid 66920e49-a655-4575-80be-5222e9251bae)) + (pin "25" (uuid 61ccdf84-f108-4c3c-9fcd-b76e20f9d4cf)) + (pin "26" (uuid 967487b3-51b9-4945-bd46-02d9e847ff4a)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 297.18 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e5b7a93-aafe-4d9b-b392-e07053cd3a4b) + (property "Reference" "U13" (id 0) (at 297.18 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 297.18 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 297.18 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 297.18 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a2600814-d42d-4f8e-acba-7532a65895a3)) + (pin "2" (uuid 357eee26-67a9-465f-9702-7130209e20df)) + (pin "3" (uuid b3bd9972-f5d8-4cc6-87d7-b69aa0ee81b8)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 984.25 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4ea8eab3-5c46-4b30-a213-638ca07b5531) + (property "Reference" "U60" (id 0) (at 984.25 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 984.25 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 985.52 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 985.52 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c5899f03-8610-41a8-8ac0-eb3365ec1660)) + (pin "2" (uuid 0b591e7f-e3f0-49af-8109-fc200c4d9f9a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 563.88 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51b690ca-3def-4663-9164-5b80ac824c13) + (property "Reference" "U32" (id 0) (at 563.88 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 563.88 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 565.15 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 565.15 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e3c1e410-a01d-4662-a628-6bd16564f543)) + (pin "2" (uuid 18acc167-c0ea-4e42-a471-1d6f238bd88a)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 327.66 234.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 57e7512f-bdcb-42db-8f40-d28cf1a7c6cd) + (property "Reference" "U15" (id 0) (at 327.66 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 327.66 228.6 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 327.66 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 327.66 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cd994f26-8c96-4895-9dc5-8eb19f55068d)) + (pin "2" (uuid 1c854c62-90a4-47a6-a056-36d0743d3126)) + (pin "3" (uuid 0ecda53f-ce80-4de4-b813-4555be3ebe0d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 718.82 228.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 591c04da-fadc-4404-a6be-67e90c7470bb) + (property "Reference" "U45" (id 0) (at 718.82 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 718.82 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 718.82 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 718.82 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9f1f8dd3-583b-4ee7-89f6-3b4855f5eab2)) + (pin "2" (uuid b319b2e3-072f-4737-ad2e-024a1231a47a)) + (pin "3" (uuid 8a9c3ead-03fe-40c2-8549-ed5abe15afa2)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 609.6 265.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ab68d76-8c73-471a-9dff-3b0f532c7262) + (property "Reference" "U37" (id 0) (at 609.6 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 609.6 262.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 610.87 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 610.87 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 52bcf1b9-c590-4cd3-8df5-c2df1a4d393d)) + (pin "2" (uuid 72a69624-5096-496d-be99-db9636a7b997)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 820.42 219.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5e364900-d1f7-4318-80af-7bc5dfd4ccd7) + (property "Reference" "U50" (id 0) (at 820.42 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 820.42 213.36 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 820.42 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 820.42 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 720a91f6-6bfd-4a18-bdfd-5c00298b7d72)) + (pin "2" (uuid dbe8c118-8c7f-4ef8-9cdf-613a53fa8cc2)) + (pin "3" (uuid b3fd360f-5f6b-48de-84f1-d7b967789d76)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 850.9 233.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 630cf199-6e3c-410e-8969-b4d925db8a17) + (property "Reference" "U52" (id 0) (at 850.9 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 850.9 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 850.9 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 850.9 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dd93e867-1414-4b82-8ca5-004522edcafb)) + (pin "2" (uuid fbb12f7e-c0b9-4592-ba09-fe4b1f9f036f)) + (pin "3" (uuid 7c0c435c-dda0-4d9b-8e74-d1f622ee8689)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1342.39 161.29 180) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 64b082da-9c4a-45ec-b2c6-ddd384743b51) + (property "Reference" "U1" (id 0) (at 1346.2 160.655 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1346.2 163.195 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1342.39 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1342.39 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid adfebc2b-add3-41ae-a565-0eee684f89cd)) + (pin "2" (uuid 40f3ecff-be31-498e-9afa-d20fab3b8edf)) + (pin "3" (uuid 3f8af182-6d0f-49bb-a1a8-bbd9c4ab4c47)) + (pin "4" (uuid 139b13b8-e5c6-4cc5-91af-a2274157f460)) + (pin "5" (uuid 82aad124-73d6-48a6-88ad-af392ebcca1e)) + (pin "6" (uuid 3d68e55e-e22e-4873-b9c4-f2574868debc)) + (pin "7" (uuid 4eeb1635-d7e7-4d56-bd2d-35fd23243712)) + (pin "8" (uuid 9c7a079f-e0e4-4018-b011-b89b22459bbf)) + (pin "9" (uuid b471dbad-b918-43af-b994-b84b6d4538d0)) + (pin "10" (uuid 9359baf7-de06-47cd-83f9-363c7f6d8e90)) + (pin "11" (uuid 737a1178-ae1f-4c93-aa6c-3a93db4a6b93)) + (pin "12" (uuid 4552b284-d8bc-401d-8e6f-7ff71abca5fd)) + (pin "13" (uuid ef7238d1-19c4-45d1-ae7a-4c42c6429647)) + (pin "14" (uuid c63a42e9-29aa-4f5c-bfab-0f8c11a5b14d)) + (pin "15" (uuid a9b190b7-8c69-4024-bff3-e9aaa4085f1a)) + (pin "16" (uuid c5f8644d-af84-4651-9929-72f6eba30259)) + (pin "17" (uuid 8df14b8d-bbec-4dd1-8361-03cfe320a562)) + (pin "18" (uuid 9f21bca9-8c20-4a6e-ae49-8f5289ad5d18)) + (pin "19" (uuid e62a77dc-fd77-4ce9-b9e6-34b97665a9cc)) + (pin "20" (uuid b1c72be5-0e78-45c6-9d90-afc506e8ae9f)) + (pin "21" (uuid 24d67f3a-c07b-4927-a603-d71a3db4df9a)) + (pin "22" (uuid 66c3873a-eaad-4106-b244-dd221b2b08b5)) + (pin "23" (uuid 078d5120-778a-4956-8f62-0016121fbcce)) + (pin "24" (uuid 729c1d2d-3aff-4354-a040-234960af85bf)) + (pin "25" (uuid 01eed41b-cba5-4336-bd5d-b71d6e97cd01)) + (pin "26" (uuid 1a82479a-0458-4573-9571-f629d43cd0f9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 181.61 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 65769b61-c75d-4984-b021-11cdc6511fdc) + (property "Reference" "U2" (id 0) (at 181.61 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 181.61 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 181.61 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 75195f72-cfb5-459c-9550-867c06b03a58)) + (pin "2" (uuid 4c2df225-9112-4500-9d12-166e05462169)) + (pin "3" (uuid d7051433-a2dc-4752-b74f-6d7368c220f1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1342.39 176.53 180) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67cddab3-1199-4209-9737-45dd225e1e11) + (property "Reference" "U1" (id 0) (at 1346.2 175.895 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1346.2 178.435 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1342.39 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1342.39 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a9441d2a-b0b9-4f80-b39e-9b810c9b6bcb)) + (pin "2" (uuid 6cd89931-c6b4-4311-bcb7-8f6a3524b5e6)) + (pin "3" (uuid 8e4f9f3e-cb43-4697-a3f7-f229c45f5b65)) + (pin "4" (uuid dd8c9296-7c51-4c38-9107-6a32198697c2)) + (pin "5" (uuid ea5742b5-b677-477f-84a4-6978460d362e)) + (pin "6" (uuid 515f3b5f-9ef6-4e4d-b055-f4b8990d3a59)) + (pin "7" (uuid c7ba2527-34b8-480a-9133-c4150e5ec431)) + (pin "8" (uuid 893fc4cd-690e-4faa-b8df-ec667572b6b1)) + (pin "9" (uuid 7f89a3f8-cbe1-4d7b-bfb0-33e378802853)) + (pin "10" (uuid ea924517-3667-4c3f-a6e5-e7d8aa4bb548)) + (pin "11" (uuid 6d850374-52cb-4180-a4cb-a7fbdba46c10)) + (pin "12" (uuid 04cd3ee6-cb5b-4b36-9067-17d85d6e4666)) + (pin "13" (uuid 747b55f4-4abd-4d18-8360-c0732e583a4a)) + (pin "14" (uuid 4ee08c39-29f7-48e3-a014-cbd30aeb6ad0)) + (pin "15" (uuid 5e1c8b46-d567-4f13-a512-863c7417c6be)) + (pin "16" (uuid 35f23b98-7050-4d35-a3a2-0f9b34daee3e)) + (pin "17" (uuid b13785bd-d6e9-4049-a862-f281ecde2aaa)) + (pin "18" (uuid e1946f50-9179-4da2-8a0f-06ba66abd428)) + (pin "19" (uuid d8d4b1eb-9b5a-49d0-90fb-2a3395a2ce1c)) + (pin "20" (uuid c7724ddb-04f3-49ee-bf60-fac9c620e607)) + (pin "21" (uuid 0223f6ad-eef5-40f8-82c8-3164b902dd9f)) + (pin "22" (uuid f0d5b164-e62b-414c-9f00-56bf5f1a7bab)) + (pin "23" (uuid 78095534-f304-4d91-8ac1-af94ed4c9c4f)) + (pin "24" (uuid d97b439c-0c0a-4f8f-8923-80ae498b19b6)) + (pin "25" (uuid 25a59248-737d-4501-b55b-f6a0b3ad5e83)) + (pin "26" (uuid 7378ec35-9882-4b62-9a27-df35514a3661)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 962.66 214.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 688f2337-7f0e-49ad-9b74-6be90a6d287d) + (property "Reference" "U58" (id 0) (at 962.66 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 962.66 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 962.66 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 962.66 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0c5ec184-ba7d-436f-8827-2350192868c8)) + (pin "2" (uuid 334e3ddb-9fa8-4170-8c8a-97bff198f4bc)) + (pin "3" (uuid 1e04a6f7-0a22-4ecd-b409-56768ef9cdd3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 97.79 138.43 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6aa21282-4892-4319-a779-0fbb2549c8c3) + (property "Reference" "U1" (id 0) (at 98.425 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 98.425 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 97.79 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b37d4928-8281-408a-82f2-0a19b181d3ca)) + (pin "2" (uuid 996755dd-ee87-4a6e-9829-2cdf8d257e32)) + (pin "3" (uuid 4402802d-807a-466f-8b7e-efd579f50c87)) + (pin "4" (uuid 0e252caf-2b7f-4d61-8919-3b072560fd2c)) + (pin "5" (uuid 77f8f581-0c1a-405a-bf84-937a92887cbd)) + (pin "6" (uuid 5cd463bb-16dd-4990-a9b8-d1d379da19e0)) + (pin "7" (uuid 8a1b6fe7-6cd0-44a2-a70f-0ab58d103673)) + (pin "8" (uuid 22538f6d-f611-4ad2-8439-1bcaac9b26d7)) + (pin "9" (uuid 8b82bfb3-0cc1-464d-a5bd-48c7104a96e4)) + (pin "10" (uuid be547fde-aad8-44db-9278-f52320cd369d)) + (pin "11" (uuid d1196103-6f78-4d1a-9a5d-2ae5c5e80194)) + (pin "12" (uuid 3a716ce9-0034-49ef-92d4-10724d8e0511)) + (pin "13" (uuid d9d22da1-ed45-41cd-a362-bcb06b93cf62)) + (pin "14" (uuid fc025611-24fe-4aa3-8cfd-1d6f26b8cad9)) + (pin "15" (uuid af498535-0184-4771-96b9-9b521e71efc8)) + (pin "16" (uuid 6730dbd1-4cda-43a2-b91c-f5b585524fbe)) + (pin "17" (uuid c2f56eea-de69-4daf-a380-4b80cec049e1)) + (pin "18" (uuid d6302efd-2298-4208-a7bc-e95142ea0468)) + (pin "19" (uuid 411be504-bcfe-4684-8437-33447ee23938)) + (pin "20" (uuid 1b6cfc84-3485-4572-9ab1-b333398859bb)) + (pin "21" (uuid 9f5a97a6-9337-4453-817b-177b149aaf5d)) + (pin "22" (uuid e0142fae-fa14-401b-a36b-95e4c39124f7)) + (pin "23" (uuid 1b4d245e-9056-4fd6-8fe7-b44d9c32305c)) + (pin "24" (uuid 3c949cef-2850-4648-bd1d-75021d3a769c)) + (pin "25" (uuid 30660f4a-ebdb-465c-89b7-703783117c9a)) + (pin "26" (uuid e118f8ad-1594-40bf-a731-533c54ddfa05)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 688.34 166.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6aec89e8-bfb6-4f23-b07f-6844d8bc6314) + (property "Reference" "U39" (id 0) (at 688.34 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 688.34 160.02 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 688.34 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 688.34 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d8481b4c-3335-448a-a26b-1177436c3d8e)) + (pin "2" (uuid 57b18cb1-4880-4f58-a93a-afddd625f141)) + (pin "3" (uuid 88b3b7a5-473d-40cc-a0e8-c628a615e5b4)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 438.15 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6b3d384e-cacc-4909-ada0-86d6a6149967) + (property "Reference" "U22" (id 0) (at 438.15 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 438.15 83.82 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 438.15 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 438.15 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7159233-29d2-469b-81d2-6b6234d2526e)) + (pin "2" (uuid 6d2594ba-abbe-4da1-8a66-14d8faf5ffdc)) + (pin "3" (uuid b1a22f3d-f2ff-4501-9cf3-a63ade61d5c9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 1062.99 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6bf6f5fa-7b47-4722-91cb-fd12cdbc6fd1) + (property "Reference" "U68" (id 0) (at 1062.99 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1062.99 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1062.99 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1062.99 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17b00bd8-0417-42d8-ac69-f71c524a336e)) + (pin "2" (uuid 28107241-6857-4654-bad1-531e50412f6b)) + (pin "3" (uuid 86a08a75-4431-4d3d-91f5-908d7764ae2a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 1216.66 242.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6ed713fc-dc48-4aab-ad25-c9d7de86dc15) + (property "Reference" "U72" (id 0) (at 1216.66 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1216.66 237.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1216.66 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1216.66 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid da05cdfe-1aa6-434b-959c-c0ee4180de1b)) + (pin "2" (uuid d0956b9f-7245-4612-bf1c-1830e0f3470c)) + (pin "3" (uuid 664fd64f-4b90-402e-b57c-6d6b462c6f1e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 274.32 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6f576268-c109-4d56-a5e0-d93b2a589127) + (property "Reference" "U12" (id 0) (at 274.32 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 274.32 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 274.32 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 274.32 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e5d598d-91ac-494d-a6c0-073b155fb82b)) + (pin "2" (uuid 754bbc0a-f2f1-4051-a0de-7444d1831413)) + (pin "3" (uuid bd493a74-814e-427b-a86f-c7462500aacd)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 346.71 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6f73bce7-3e60-4391-b76a-fc53f0c78e45) + (property "Reference" "U16" (id 0) (at 346.71 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 346.71 158.75 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 346.71 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 346.71 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d16392c6-fa12-4e46-8259-945647c43152)) + (pin "2" (uuid bb20b844-bfc8-4172-bbfb-235740735b80)) + (pin "3" (uuid 3db57c21-c980-468f-bee9-52cdb3802ed3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 97.79 151.13 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7350351a-d7d3-4ace-b8a5-ea1ddbde35e9) + (property "Reference" "U1" (id 0) (at 98.425 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 98.425 148.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 97.79 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1bef66aa-467a-41b7-a061-7eda79fad9d1)) + (pin "2" (uuid 1b9c62a0-6eb4-4e99-8b8a-fbb79c51a42a)) + (pin "3" (uuid 571d0b2a-7334-4a2f-a3f0-512d9e5152aa)) + (pin "4" (uuid 993a0107-d81c-4d0e-8dfc-131ea8396ce8)) + (pin "5" (uuid a531db8c-a1fd-4e4a-8679-870df2e4eb76)) + (pin "6" (uuid 118c10f1-38b6-4ec6-b1aa-342b0bfc4b18)) + (pin "7" (uuid ca1ab9d3-97d6-48d1-80f9-4d3168389c55)) + (pin "8" (uuid 53481149-fe17-474d-a5ca-2f98825ddaf5)) + (pin "9" (uuid 14911d87-b586-488d-819d-f63d0e93b060)) + (pin "10" (uuid 932f3660-26b5-4fd4-a515-b7f9c1d3690d)) + (pin "11" (uuid fb8960dc-66dd-4444-a7c9-b6c96de838bd)) + (pin "12" (uuid 3345b01d-7420-41fe-a38d-eca9118281f1)) + (pin "13" (uuid 14728039-3a77-451e-8041-5fc73046ccc1)) + (pin "14" (uuid 3df581fb-a3df-4eda-8f04-217407606387)) + (pin "15" (uuid a2764472-7441-4081-9406-b11aa3f393d7)) + (pin "16" (uuid 77bad289-656d-48d1-804a-e17b671de5bc)) + (pin "17" (uuid 8cf0e79a-f277-477e-8e32-50138a7e9007)) + (pin "18" (uuid a6ebd4c1-fe46-42c6-ade2-e65db9b35277)) + (pin "19" (uuid 8d9307d0-450f-4064-99d9-1242df4802fa)) + (pin "20" (uuid b0f32745-69a9-47a2-a4e4-f7c9aa0ccadf)) + (pin "21" (uuid 56e18f76-9b43-4115-8863-25ae4bc90a92)) + (pin "22" (uuid 3fb5e96d-4f4d-41a2-8f07-45c19b8e9dd3)) + (pin "23" (uuid 5eb3d7b0-852f-4920-8d43-b6c5b85b3d48)) + (pin "24" (uuid 7f2ffe3f-3879-44cc-a9af-43fd1ac2bc1c)) + (pin "25" (uuid 80a10ffc-a9c8-431c-8690-a0dc81f5b394)) + (pin "26" (uuid 6baed4f6-9027-4a9e-8bbf-f2fefda1856d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1342.39 166.37 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7905ec8e-e01d-43b5-be6a-48834496b61b) + (property "Reference" "U1" (id 0) (at 1346.2 165.735 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1346.2 168.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1342.39 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1342.39 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cecd62ac-d32a-4799-bdaf-b51806ab7cc3)) + (pin "2" (uuid c637a7ec-2953-40c7-9204-88f7f104e548)) + (pin "3" (uuid 700d8491-4835-43a6-a625-e2d0eb70b6b0)) + (pin "4" (uuid ddb226a7-815f-4079-beee-afa7455624e8)) + (pin "5" (uuid 2c53b8e2-d932-47f9-80ba-f8697781e0f8)) + (pin "6" (uuid 4a90fc83-5c07-4e5a-babf-96bf2fd9ff43)) + (pin "7" (uuid 20fb908c-a892-46a0-9472-3bc4bbcaed25)) + (pin "8" (uuid 8bb64604-69e1-4de2-bf75-770329312b7b)) + (pin "9" (uuid b5aa481f-b20e-418d-8eda-694968163487)) + (pin "10" (uuid 6924cff5-e8af-44ec-8760-0f31bcf13647)) + (pin "11" (uuid ac6b2540-89fe-4ec8-bc96-fa1a4c17da8a)) + (pin "12" (uuid 0e86c9b8-7d83-42e9-b655-78d86b522992)) + (pin "13" (uuid 27e2b615-645a-44bb-93ca-9d5518630eb6)) + (pin "14" (uuid c288f48f-f63d-4fb7-b469-e9d28baf2533)) + (pin "15" (uuid 15f18ae6-cbc9-45d1-a85e-ee504897028f)) + (pin "16" (uuid 9daae2de-4d93-4d39-bd0f-066b1de99647)) + (pin "17" (uuid 3e5b40b3-bb30-4622-acfa-455b1c236144)) + (pin "18" (uuid 195cdf33-e731-4bfb-8a50-4c2ee7b5233a)) + (pin "19" (uuid 395f29dc-9588-4bf7-b08a-f6c081f08790)) + (pin "20" (uuid 5517b6c6-12b4-4ff7-b8b4-ac779210be79)) + (pin "21" (uuid ed5d29fb-fca3-4105-8dc2-b5227bd3fc59)) + (pin "22" (uuid 7835d9b0-210c-4c7f-84c0-7a369de3f193)) + (pin "23" (uuid 91e59c42-0d76-41b9-b017-2d6006c24a37)) + (pin "24" (uuid a152dac8-5491-4392-add7-d908ef3bf42f)) + (pin "25" (uuid efe4c736-f6bf-4d6b-a927-9467cb5de557)) + (pin "26" (uuid e9c5d59d-3bbc-4a22-96af-883a228f01f5)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 962.66 201.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 79a5ce3c-b1cd-4284-bcc5-c097a058c529) + (property "Reference" "U57" (id 0) (at 962.66 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 962.66 195.58 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 962.66 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 962.66 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b893de4-66cd-4aa4-92f9-00a61d510ac0)) + (pin "2" (uuid 3d851a36-8295-4c04-ba32-12f1bd67a789)) + (pin "3" (uuid 2af2c8fc-c920-4097-b257-bb8ce24e772c)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 718.82 215.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7c85bd1d-a423-4d27-9048-c46188f371f7) + (property "Reference" "U44" (id 0) (at 718.82 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 718.82 209.55 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 718.82 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 718.82 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3d08a90f-8f39-4c96-9144-578da3c06b2e)) + (pin "2" (uuid b4ac564f-ae6b-4ffb-81ca-6ba20437cd91)) + (pin "3" (uuid 5e72e7a0-b667-451f-9222-b6fbcba18645)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 377.19 179.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f7f6670-5310-43f8-99c6-299f661e6816) + (property "Reference" "U19" (id 0) (at 377.19 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 377.19 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3adca81d-9cb9-4956-b4fd-2f9a4ad2e2dd)) + (pin "2" (uuid 1cdebfd1-aaf4-4340-ac55-af0c4aad6e5f)) + (pin "3" (uuid b6b1647b-43d8-489d-8246-65614fae0f2f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1342.39 168.91 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 81e2a929-2529-4317-a103-eb6cf046078f) + (property "Reference" "U1" (id 0) (at 1346.2 168.275 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1346.2 170.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1342.39 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1342.39 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2b30057-ba73-4c44-b01b-c3c3dd883d0c)) + (pin "2" (uuid 6251d697-c722-422b-91bd-6ee5751b6b45)) + (pin "3" (uuid 19997648-12ff-4f0f-8bf8-13f5c9c98ed1)) + (pin "4" (uuid 7c637468-112b-440d-a081-072423c42a9f)) + (pin "5" (uuid c2a29256-356a-4cd9-a932-154c21345f9f)) + (pin "6" (uuid 38ea41f7-3770-4d8a-8f08-1576b9be83d8)) + (pin "7" (uuid 603bf3a8-fa61-4c90-8af8-94084f0125d0)) + (pin "8" (uuid d4faee51-74f3-4d7f-afc2-715047c8c65b)) + (pin "9" (uuid 5a73f220-0021-404e-ad48-d3999091d739)) + (pin "10" (uuid e9ab0df4-df2c-4b2c-ab9b-746f689a9296)) + (pin "11" (uuid e713cd9e-0872-4d18-b09e-684cdd950223)) + (pin "12" (uuid e571e5c3-fb19-4e8a-92f2-1565fb48baa0)) + (pin "13" (uuid 5646807b-c404-4c11-ae94-b660d73f3a71)) + (pin "14" (uuid e27d7335-48c7-4227-a174-254e794f5ebc)) + (pin "15" (uuid 358999eb-fe6b-4576-9426-46dd7494a94a)) + (pin "16" (uuid aabefcea-a852-48cc-bc60-508ce27fca66)) + (pin "17" (uuid 7dd270f4-0f6e-4eda-9251-21a54ce32db9)) + (pin "18" (uuid 83d30602-9438-4506-b073-5561d377260d)) + (pin "19" (uuid aa30d43d-3e32-4c69-9f06-1e846ed6086b)) + (pin "20" (uuid e6453a24-c28b-4587-bd46-b4427a8c3cfa)) + (pin "21" (uuid c36183d8-edae-4b2f-be79-d0b4d37b03ad)) + (pin "22" (uuid 413ab1ab-b326-476e-bcf6-7fb009b025ee)) + (pin "23" (uuid a883ffe0-dc77-4dfc-9095-c80607930249)) + (pin "24" (uuid 7e98d941-998b-4b8b-9610-3e4c7619e6ab)) + (pin "25" (uuid dcfe1544-4775-4bfa-b448-af740e6f9148)) + (pin "26" (uuid 86ec6dc9-7993-497d-b8b2-d4dd5e58576d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1342.39 179.07 180) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 82b6f953-b5ab-4cc9-a865-847053dacb83) + (property "Reference" "U1" (id 0) (at 1346.2 178.435 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1346.2 180.975 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1342.39 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1342.39 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 37b56996-f6c9-4aea-a780-3e5ef2c5ec28)) + (pin "2" (uuid cb56ecea-f422-4499-9fe1-150f72df248a)) + (pin "3" (uuid 13ba7ecb-750c-41a6-905f-e0e8219c685b)) + (pin "4" (uuid 222d01f8-89a2-4578-ac2a-f3c9da0ce99d)) + (pin "5" (uuid 325f770b-d47f-4cda-86f8-1d6853f52e91)) + (pin "6" (uuid e0ebc825-9ea3-46b2-82d0-727c809540d0)) + (pin "7" (uuid c608b367-1c73-41fa-85f2-c6c3fee9e4cd)) + (pin "8" (uuid 1a783692-a363-4ea9-8520-d7e6f61d870a)) + (pin "9" (uuid 0d817569-4354-4c17-999c-ee2b83314edd)) + (pin "10" (uuid 9290e607-6028-4940-a259-054c61a50d48)) + (pin "11" (uuid cd436ffe-579c-4f9b-bee5-1d9d6d7990c6)) + (pin "12" (uuid 0d6f5559-f5af-4b7b-9f19-b6062275d683)) + (pin "13" (uuid 203013b2-9f31-48aa-8bd0-67156ccec4cc)) + (pin "14" (uuid cb934db8-aa48-4aa1-97f5-31d3fb685376)) + (pin "15" (uuid 0e236f03-0575-46d4-9c6b-9c35618e192b)) + (pin "16" (uuid a54b24e7-cec3-4904-8839-a1c1b01e1a7c)) + (pin "17" (uuid d2a17636-de08-4c55-9350-dd9b4f124025)) + (pin "18" (uuid db67648c-472e-428e-9a4b-089d696d88f5)) + (pin "19" (uuid 7169a896-cfed-43e2-a3cd-f3d24189dd8e)) + (pin "20" (uuid c0128bb5-0412-4112-a4bb-aac18e169d03)) + (pin "21" (uuid 46b1a0a4-2062-44f7-ad60-fed211c9983f)) + (pin "22" (uuid 31ed5eaf-d3d2-4cc3-832b-0a81c1ae42d0)) + (pin "23" (uuid 66d16114-d887-492d-aa5f-69d4b2660815)) + (pin "24" (uuid bc3e16b8-21d3-476b-89e7-a1e606e78746)) + (pin "25" (uuid 290cbd01-adad-47a3-b471-81bf276d06d3)) + (pin "26" (uuid eefc0956-5dc8-4223-870f-13d836a240a3)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 1062.99 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 846d8e7f-8d56-4f2d-ad05-2eb798b320e2) + (property "Reference" "U69" (id 0) (at 1062.99 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1062.99 121.92 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 1062.99 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1062.99 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2d344b06-8312-4590-8fc4-9dcaeca5dafa)) + (pin "2" (uuid 4b381c90-201b-4da9-93c1-e32e3e53f58e)) + (pin "3" (uuid e0345f3b-9073-4320-9a02-b8f3d5bc9206)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 468.63 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 84fae7e0-3ed8-4d3f-80d7-5a11c6a8aaae) + (property "Reference" "U25" (id 0) (at 468.63 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 468.63 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 468.63 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 468.63 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 534910ba-8d30-416e-ac1b-4c308384efb6)) + (pin "2" (uuid 99a11ab2-6eca-4d70-a29c-0fc7f1b3f301)) + (pin "3" (uuid 94927c8b-34f2-46c0-98de-43cf74efb0ed)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 377.19 166.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8687f1c6-d415-43f3-9d1a-e0f062ae1633) + (property "Reference" "U18" (id 0) (at 377.19 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 377.19 160.02 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 377.19 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7409bd0c-5b0b-491a-af4e-877a32b5587a)) + (pin "2" (uuid 7db33acd-707a-4473-b690-1ca4e0c857e3)) + (pin "3" (uuid 387b5def-2349-47c0-af07-de8c8decf32b)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 491.49 110.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 877c601d-985b-4f6b-965b-6ff11605c8e3) + (property "Reference" "U29" (id 0) (at 491.49 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 491.49 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 491.49 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 491.49 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f81e30b5-7fcb-409a-9e19-a1489c07cbf0)) + (pin "2" (uuid e3091b30-b512-4b5c-bbe5-a6b8d770917e)) + (pin "3" (uuid 4057c7e5-5bc9-472d-8268-f89ba7792385)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 873.76 240.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 87a0513f-3cf7-424b-b7d3-12e80d2fccd6) + (property "Reference" "U54" (id 0) (at 873.76 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 873.76 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 873.76 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 873.76 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f385f178-6966-4351-b1ea-615f3c1b39b3)) + (pin "2" (uuid 7780272f-f84c-4473-a370-bdadf30c2b7e)) + (pin "3" (uuid 422133c6-69df-4f26-b000-4d4ee9b49994)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 377.19 191.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 88b6872b-edfc-4ec6-8f41-a0949d2419da) + (property "Reference" "U20" (id 0) (at 377.19 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 377.19 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c35f0be4-e6f7-4001-a388-6dcb0a8c238c)) + (pin "2" (uuid 4c733f5d-721e-4dac-8bdc-d4c765d353e8)) + (pin "3" (uuid 59e51bbc-cb72-4af5-b004-b84ffb8e8e6d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 718.82 193.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8967e236-d3cd-43db-a43d-474976361db1) + (property "Reference" "U43" (id 0) (at 718.82 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 718.82 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 718.82 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 718.82 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d4f2531-38c6-4916-9cd3-02181691cfe6)) + (pin "2" (uuid e7dd51ed-1cfd-4ca9-8f6b-081b640d9448)) + (pin "3" (uuid 21c2e951-d432-4bff-9bc6-85a82bb12cb8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 241.3 218.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 922ec7c9-eeea-49df-bc07-1737f21c70a2) + (property "Reference" "U6" (id 0) (at 241.3 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 241.3 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 241.3 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 241.3 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b1a9fcc8-bc75-4891-80d5-d62e4dbbfd9c)) + (pin "2" (uuid da36968c-8405-4f64-a43d-5ff9c78f2713)) + (pin "3" (uuid c5d1583e-0ee2-452a-afe6-058915178f0f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 97.79 146.05 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9834e5ce-e456-4adf-b2bf-6d3240f026bb) + (property "Reference" "U1" (id 0) (at 98.425 140.97 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 98.425 143.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 97.79 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b91fb1d9-f822-4fbe-96c1-6e8be919dabc)) + (pin "2" (uuid 7265ef15-9417-4873-af38-c0ffc3cfe266)) + (pin "3" (uuid 0f472cd2-852a-4e4c-83e5-564d234db92f)) + (pin "4" (uuid eb65bac3-00de-458b-9f64-0b433662d296)) + (pin "5" (uuid f3b75f8e-2b4c-4dff-a81e-1e501369c0b0)) + (pin "6" (uuid 72bd34db-e9fb-4917-bfbb-4f8fe05c6f2c)) + (pin "7" (uuid 3aa5560b-4634-40a3-93a2-db371e22b9c5)) + (pin "8" (uuid fe1c0e93-b02b-475c-944a-5619291cc14c)) + (pin "9" (uuid 886a92d7-27d3-417b-b593-d8536223bc6d)) + (pin "10" (uuid dda63241-0ba5-4b86-b6d2-188ee257af71)) + (pin "11" (uuid 18348fb5-4aff-4fd5-99c9-14b5c1b5a3ea)) + (pin "12" (uuid fe62db8a-c413-4811-baa4-d0547b895407)) + (pin "13" (uuid e2c0a753-c5a7-49da-9ab1-4a5dbcd41560)) + (pin "14" (uuid 6eddfefd-379c-4d4d-b383-948e909fa42a)) + (pin "15" (uuid 931cf858-0756-426d-b8aa-8976071a2dee)) + (pin "16" (uuid 53370330-b426-4d14-8484-3b9f5de01bed)) + (pin "17" (uuid 0720b786-585d-4ef7-8d5c-16f0447af3f7)) + (pin "18" (uuid 6d594f2d-d5bd-4bee-bb3f-c6652e20430f)) + (pin "19" (uuid db69515c-a45f-4a78-965e-ba1f18cda994)) + (pin "20" (uuid 86bd1a2a-8457-4461-8455-98a02ae222e2)) + (pin "21" (uuid f53d14f5-b999-4b13-ab2d-579e7532b661)) + (pin "22" (uuid 83d56773-2470-45bd-9258-8da30fd6f98f)) + (pin "23" (uuid 385afeb0-57a9-4fbf-b5a3-37dc91e063cd)) + (pin "24" (uuid e103f861-99f3-4e3c-a000-d261360a82f0)) + (pin "25" (uuid 68266db3-7f7c-4456-b563-202b16e6977a)) + (pin "26" (uuid 4558ae50-a695-4e6a-8996-93cea9214d68)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 1049.02 180.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9953296e-6cb3-47ba-92c4-dbc16f36fc63) + (property "Reference" "U63" (id 0) (at 1049.02 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1049.02 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1049.02 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1049.02 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8864e2af-f36d-4c13-bf64-a6465de8c5dc)) + (pin "2" (uuid c864db31-a2c3-4031-b1e8-d65bcfbfb2ec)) + (pin "3" (uuid 5874f9df-b924-4b79-aee2-39510ebb7666)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 485.14 161.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9c20cfea-8026-4e1d-abcb-82abb329bb8b) + (property "Reference" "U26" (id 0) (at 485.14 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 485.14 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 485.14 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 485.14 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 008d8294-6d7c-41ce-9aa8-fc3616d7413d)) + (pin "2" (uuid dc00ce36-85c1-4f4f-84a3-049c274110cf)) + (pin "3" (uuid 547e6754-ca0e-4b70-8050-e7f7c54d0c6f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 718.82 241.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9c768be1-3a78-4bf4-98c1-98da43cc76fc) + (property "Reference" "U46" (id 0) (at 718.82 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 718.82 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 718.82 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 718.82 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e0a6b78-88b4-4037-9e6b-41047d064be6)) + (pin "2" (uuid 10c431cf-62ff-4579-ad53-befbc11f8130)) + (pin "3" (uuid 460ae2b9-2164-4a63-8ebc-a621d111f707)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 588.01 238.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1f0a47a-4ac4-4605-8e5d-b837b5356951) + (property "Reference" "U36" (id 0) (at 588.01 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 588.01 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 588.01 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 588.01 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6515a3d3-e7e4-4d99-9c1c-c78da519127f)) + (pin "2" (uuid 67b427ac-742b-43ba-ba52-0be4cf630848)) + (pin "3" (uuid e0734dad-ca0c-4f93-9b4b-a24728f37004)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 850.9 246.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a9f88d41-c699-4192-8edf-49ca1e06a663) + (property "Reference" "U53" (id 0) (at 850.9 237.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 850.9 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 850.9 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 850.9 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8ec61b02-fbd2-4dca-af93-d321ef67c29e)) + (pin "2" (uuid 82a8b64e-c4f9-4084-9b03-875749b8fe3e)) + (pin "3" (uuid e8df0842-89b9-4bef-8345-906bc4dafbf9)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 985.52 220.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ace618d3-a927-4b6e-98b0-7ec163dca2c1) + (property "Reference" "U61" (id 0) (at 985.52 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 985.52 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 985.52 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 985.52 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 70964791-98ed-468f-a338-b598ab200fab)) + (pin "2" (uuid afc878ee-1d0a-486f-a40e-5c777fe521e2)) + (pin "3" (uuid f0c74483-63b4-4a7a-947f-23cc713ac4f5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 485.14 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid adcb3d6e-4848-400d-a4d6-7c0a91550d7b) + (property "Reference" "U27" (id 0) (at 485.14 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 485.14 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 485.14 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 485.14 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e31912a0-a204-484a-9401-cfefb9aa58ea)) + (pin "2" (uuid 7595471b-6e7e-42d0-9df2-6234cf9ae5ab)) + (pin "3" (uuid 1ccb79cc-5cb5-4cc2-9e24-7443aed98a40)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 97.79 140.97 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid af82eaae-a258-4661-be1b-90329c5792a5) + (property "Reference" "U1" (id 0) (at 98.425 135.89 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 98.425 138.43 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 97.79 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c668f509-4f3d-44f9-9999-7bfec2b25d60)) + (pin "2" (uuid 688c614a-834b-4c62-bb17-4f4dcbb0a229)) + (pin "3" (uuid 3be94eb0-b2e9-4e32-ab3f-23b5cc521df4)) + (pin "4" (uuid 033874cc-9ab0-447e-b7ab-4c9c849dfd8a)) + (pin "5" (uuid cc5ec3bc-fceb-43f3-9b48-c7094aecf5ef)) + (pin "6" (uuid 869217c0-7c41-40ad-a04b-96c4559fbcc6)) + (pin "7" (uuid 30eeeccf-eeb0-4693-a6b8-a089f0ac7b30)) + (pin "8" (uuid 918323b0-b179-409a-847b-6503f3d93d78)) + (pin "9" (uuid c56255d9-cbe5-4d3f-b0f7-f8f2499c2f2a)) + (pin "10" (uuid 4fcab6e9-eb4b-436c-8415-4d6358a803e8)) + (pin "11" (uuid 2e9215ba-7382-4f27-aff0-9b42599f5d76)) + (pin "12" (uuid a13d8dad-4ec0-4d1e-aa13-eb1c2fd8a3ed)) + (pin "13" (uuid 4ce81fef-a584-4e96-b189-ae7f0f93aef1)) + (pin "14" (uuid 713fafe0-d823-41cb-88d0-cbb6949c3392)) + (pin "15" (uuid d442fafb-54cd-4f3e-8b5c-fe09c25883c5)) + (pin "16" (uuid b4f93a23-442f-45b0-9ca8-c37534745d85)) + (pin "17" (uuid 24ececda-0751-4703-9a09-d1fa0c404bd8)) + (pin "18" (uuid ae542010-ea52-4f4b-9c5b-ab7b26fe95b9)) + (pin "19" (uuid d493d88b-fe35-4340-a9e2-9c98bdd29fdf)) + (pin "20" (uuid 01611587-7f6a-4530-8f42-cfca381bb7aa)) + (pin "21" (uuid ebea1916-55c1-469c-992a-8d2bd7b02cc2)) + (pin "22" (uuid 4e030b69-6171-45d4-9735-c7763df96c2f)) + (pin "23" (uuid f3f61ad4-bba0-4db0-9b7f-1aac1e3f6915)) + (pin "24" (uuid f04a34e6-d7fc-43f6-b1cb-6dba5fd22819)) + (pin "25" (uuid 352245f5-bc6c-4726-a943-cbf4cc4aa99b)) + (pin "26" (uuid 7bc77c67-aa5c-4cae-b8aa-acf5ac516a31)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 243.84 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b2f0b140-5c4d-4432-8e0f-425c7f5f8bee) + (property "Reference" "U8" (id 0) (at 243.84 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 243.84 119.38 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 243.84 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 243.84 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4384c009-8634-47e2-9894-f2febf58e372)) + (pin "2" (uuid 9557b0aa-d8dd-4224-b45c-39262c7ee175)) + (pin "3" (uuid 43a9ab85-af86-4d1f-b21e-1a584da5c9c7)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 1049.02 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b3af81d5-1e2a-4c4c-a2f6-b7cf4b2cffac) + (property "Reference" "U62" (id 0) (at 1049.02 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1049.02 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1049.02 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1049.02 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 25dbc39f-03be-4b5c-a739-aa74cde08217)) + (pin "2" (uuid 708a2139-6a9f-4aa9-915f-061b26b0b0e0)) + (pin "3" (uuid a9c6b005-c272-4357-a206-2c8033be0e59)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 400.05 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b422fa72-8146-4488-819e-51a58834d3fb) + (property "Reference" "U21" (id 0) (at 400.05 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 400.05 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 400.05 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 400.05 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ddc53678-2e05-4071-95dd-414a190f604b)) + (pin "2" (uuid 8120a97c-a54d-4ce6-8114-0788c47dd3af)) + (pin "3" (uuid 780cd64e-b71c-45a3-abd0-14271289de24)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 97.79 143.51 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b619ccd8-acae-4763-b23c-4bee3822336c) + (property "Reference" "U1" (id 0) (at 98.425 138.43 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 98.425 140.97 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 97.79 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0fd40381-5552-4f9c-ba45-2abe4092ff03)) + (pin "2" (uuid ad7fcc0c-a291-41d2-8d4e-e0bd4d8f1185)) + (pin "3" (uuid 210157b5-5697-44d9-b44e-e4f1b32da75a)) + (pin "4" (uuid 6e3b2269-b026-4b3f-bf9c-efed25ac64a0)) + (pin "5" (uuid 6ef91b4e-ead0-42db-8114-ffb289aafe65)) + (pin "6" (uuid 31ada4c5-a384-447a-b193-1fc2d172f208)) + (pin "7" (uuid 65320c6a-3fab-48cf-b86e-4f8b0b92a8b3)) + (pin "8" (uuid 4b19a791-88df-448b-beb8-2051f3840c7d)) + (pin "9" (uuid 2bc66084-4295-4ee4-89cd-ebad0f47db67)) + (pin "10" (uuid 43ba053a-0e28-4b46-b052-7786e6312fa7)) + (pin "11" (uuid f3a83610-ce31-4a65-935b-03e2569a8fe5)) + (pin "12" (uuid 1863abdd-81a0-47dc-aa87-6e7958f00793)) + (pin "13" (uuid 5a66f9db-ee23-4858-9b53-3fddefe16b6f)) + (pin "14" (uuid 4d5eb2dd-cffd-41c7-b408-fb494b510afd)) + (pin "15" (uuid 68ae7a23-1576-4e46-ac38-ee07dab67005)) + (pin "16" (uuid 8c8451ab-762b-43ba-9d9f-b8a08b2067e1)) + (pin "17" (uuid c163a7c9-3bd7-4742-a17a-008352c6cc9e)) + (pin "18" (uuid 2bdfbc6c-ebb1-41bc-b2ee-ec33f5ac99b1)) + (pin "19" (uuid a90222d7-3669-420e-91ac-15866f5a305e)) + (pin "20" (uuid 24f44130-309f-4477-a813-50e50ceb4b3f)) + (pin "21" (uuid 1b06b75a-b02d-4373-810a-1677dddac94f)) + (pin "22" (uuid 1c8adbc0-150e-4392-b8e8-6d160c5e512a)) + (pin "23" (uuid c04598a2-a702-43a6-9942-8da2d3b85a76)) + (pin "24" (uuid bf98ea42-595f-4364-913d-abe6aa38786d)) + (pin "25" (uuid beea26ab-5556-40de-9748-6927db64280c)) + (pin "26" (uuid 601e87f1-9f1b-4729-a56e-f1f8823e7975)) + ) + + (symbol (lib_id "eSim_Digital:d_xnor") (at 1215.39 299.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b852a153-c016-4295-a9ac-c0cb5aeef051) + (property "Reference" "U71" (id 0) (at 1215.39 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xnor" (id 1) (at 1215.39 293.37 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 1215.39 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1215.39 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6acbfb02-3ea4-4bd7-bdab-74d1a4304f74)) + (pin "2" (uuid 55c2a82f-010c-4dac-934b-411f7654a710)) + (pin "3" (uuid f55fc4a7-61a2-4092-be29-ff5fa1c34fda)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 327.66 219.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b9f43958-4569-4af7-bded-f7a73d900937) + (property "Reference" "U14" (id 0) (at 327.66 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 327.66 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 327.66 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 327.66 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a1632c0d-f0bf-459e-8dd9-1a3385c5995b)) + (pin "2" (uuid bc91adfe-117c-4f99-99b1-91d4e7742078)) + (pin "3" (uuid 1308edc6-f8a5-4974-8aa3-0dd80bc4d9c6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 468.63 104.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba1a130e-1e48-48ae-a797-d41ec60ee62a) + (property "Reference" "U24" (id 0) (at 468.63 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 468.63 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 468.63 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 468.63 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45be9e18-a4a0-48fe-b9d7-ef09ab463d2d)) + (pin "2" (uuid 89f8c9e9-ceeb-429a-bd3d-7e4a048dd024)) + (pin "3" (uuid 244dbd73-2228-426e-9068-de8fa91ec6c5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 181.61 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb69ab79-7c63-4649-acf2-654537116758) + (property "Reference" "U4" (id 0) (at 181.61 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 181.61 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 181.61 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 181.61 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d07ec736-096e-43ce-89b2-2c0775bb910c)) + (pin "2" (uuid da3910b5-720b-47bf-aecd-a45b7f3473bf)) + (pin "3" (uuid 0619f1b1-774a-4dab-a8a2-514ac21a2726)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 486.41 210.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bbf45063-7dc8-4d91-acdf-7a6f86bc77eb) + (property "Reference" "U28" (id 0) (at 486.41 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 486.41 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 486.41 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 486.41 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e3434e50-a916-49fb-a101-990d5f4ceb85)) + (pin "2" (uuid a48c2a4a-eabd-47f4-a2c2-33e6d9946a62)) + (pin "3" (uuid f874c6e5-1ef4-41dd-83f0-fa51da120c56)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 1217.93 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bcba08fe-2979-44ed-ad9d-39fbe7bf8df8) + (property "Reference" "U74" (id 0) (at 1217.93 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1217.93 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1217.93 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1217.93 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 249683ae-693e-4f31-91c1-144ed98b346e)) + (pin "2" (uuid f4d81ebf-f0d2-422c-a37c-6290a36d0329)) + (pin "3" (uuid 5846b0c2-81e6-4f9f-8224-98dd4c00a5e9)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 850.9 220.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bdd534ba-4a07-4606-8f78-efb67bf2ac3e) + (property "Reference" "U51" (id 0) (at 850.9 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 850.9 214.63 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 850.9 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 850.9 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0fbe9fd3-7f9d-46ee-baee-0ed1d7c8a695)) + (pin "2" (uuid 0b481a55-675e-4484-a312-3ae250bc23e8)) + (pin "3" (uuid 3eccbcdb-b784-41e8-b8b4-9ef715fcd0cd)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 374.65 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bdf11d2c-657e-4e97-a98d-557e421a47ed) + (property "Reference" "U17" (id 0) (at 374.65 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 374.65 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 374.65 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e45f0e10-9c0a-44c9-bc67-1efd29e3c23e)) + (pin "2" (uuid 37c79312-a98c-4165-a03a-9f4bf6856508)) + (pin "3" (uuid 81798d52-e766-4acb-9254-2a80b4b17295)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 97.79 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid beae39b3-358f-4b0b-8fc3-aca879b1cdac) + (property "Reference" "U1" (id 0) (at 98.425 130.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 98.425 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 97.79 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 97.79 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d9a6e24-d7a3-444a-801e-52e132028107)) + (pin "2" (uuid 1c31498e-d2f9-440b-9ad4-1ed06a39f9cb)) + (pin "3" (uuid 9ef45e19-7d89-43c0-9b63-aa028029299e)) + (pin "4" (uuid 79749291-6a66-4eb7-bc44-5fb999cd5d65)) + (pin "5" (uuid 90a061f7-7fc1-42f6-9dc2-203b547c0086)) + (pin "6" (uuid b5b1e709-703f-4d8a-bb7f-206d933eaae4)) + (pin "7" (uuid b9c7563a-867b-447e-b6d9-abb831828caf)) + (pin "8" (uuid c2ed0c2f-88b3-4efa-9472-e3b5af8875aa)) + (pin "9" (uuid 5a5e5dc0-0787-4e7f-a868-f33d5260cdd3)) + (pin "10" (uuid 94d45f01-50f2-428a-b374-87491171c769)) + (pin "11" (uuid a3a195f4-26cc-41bc-996e-57a37efef27a)) + (pin "12" (uuid 14a7222c-c567-4639-81bc-09d672bfa24c)) + (pin "13" (uuid eb01e667-5e0f-4acc-90a0-8428f0d65a94)) + (pin "14" (uuid ed0f4a1d-649e-4360-9128-9337be66f4fe)) + (pin "15" (uuid 12762117-43b4-44cb-9a5c-752c5e95258f)) + (pin "16" (uuid 296189a9-6b61-426d-97f2-ac0aac854c77)) + (pin "17" (uuid 267eea06-8e81-48e2-a3a2-963497fe2375)) + (pin "18" (uuid 5a731990-eddd-486c-b7b7-eb0837fbe9fc)) + (pin "19" (uuid 276abb6a-5046-4103-9115-b6f122f3cac4)) + (pin "20" (uuid eb9c09f8-d73a-4029-906e-db11822c5515)) + (pin "21" (uuid 0bbc9a5b-d26b-4316-a88d-e654c63ec58b)) + (pin "22" (uuid 405f99c7-0351-45b3-8abb-ab691b01d111)) + (pin "23" (uuid bb6e217a-9d79-4437-a504-293c927fef0f)) + (pin "24" (uuid 0b72f47b-933c-4f65-b4da-2f5db67c3d78)) + (pin "25" (uuid b7ca200d-88fb-4867-b630-7cf8e7b360df)) + (pin "26" (uuid 7fd7ee25-fee3-405f-831a-1fa7e7431b3a)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 274.32 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c225ae79-5d98-40e8-871a-f6e811439c5f) + (property "Reference" "U10" (id 0) (at 274.32 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 274.32 120.65 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 274.32 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 274.32 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb8a8bd3-cad0-46f2-9cd5-8ef3ab0a01de)) + (pin "2" (uuid 8cc8942d-f5d4-4fca-b41f-298ac7591139)) + (pin "3" (uuid 08bdafea-2dfb-4a3a-995d-ddbb8082745c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1342.39 173.99 180) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ce011084-1734-4adc-8c40-57d9cb61015d) + (property "Reference" "U1" (id 0) (at 1346.2 173.355 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1346.2 175.895 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1342.39 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1342.39 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d51f525-a1a3-4e5b-831e-dac31362dc74)) + (pin "2" (uuid 9cfaa4f2-7b18-41ef-a945-51dfeb681f12)) + (pin "3" (uuid 5314ab4c-b385-45eb-952f-f0958cb33c93)) + (pin "4" (uuid 3d858027-377e-48bf-9d3d-3a0c046c01cc)) + (pin "5" (uuid 62ccc1dc-4418-425a-85a4-7f4a7737452f)) + (pin "6" (uuid 268a9e9f-5d2a-442a-8fb0-3d7a45f6a871)) + (pin "7" (uuid 5bc30e19-8d18-4ccf-a4cf-a963f67c2466)) + (pin "8" (uuid 5f6a58a1-1367-4910-bedd-d85fe2dcfdc4)) + (pin "9" (uuid c16ca421-4373-40eb-99f8-db2a46f46559)) + (pin "10" (uuid 0913ac16-69f2-4e1c-b3b4-51939e0d7604)) + (pin "11" (uuid bc369683-9b58-458a-a50a-99bf1a84d9ee)) + (pin "12" (uuid cc9f163d-e2b9-4494-ba02-928631e29965)) + (pin "13" (uuid 4ad100fb-fe65-47b7-8d3a-d853a9e17684)) + (pin "14" (uuid dcde580d-7fb8-4d89-8bb6-01ba29b03a79)) + (pin "15" (uuid 3b76c62c-020f-493b-87f5-51476fe72646)) + (pin "16" (uuid 93b1c04e-ecb7-4e60-9a98-3919fc276718)) + (pin "17" (uuid 0e65f592-6355-4976-bae4-bd1abca1a3d3)) + (pin "18" (uuid b63c07cb-9c19-454d-8ba3-fd581d884972)) + (pin "19" (uuid 06ee38b1-8c57-4c5a-9593-ec4a9687d6e3)) + (pin "20" (uuid 884cff2d-8094-4b01-bd58-1513db2e8b16)) + (pin "21" (uuid 1a8da1b1-ede5-4c22-8613-9ef78b08ae6a)) + (pin "22" (uuid 85311e7a-15e8-49f1-b243-699c405c478d)) + (pin "23" (uuid 747222a9-d44b-4a4b-88c0-8730e95d4929)) + (pin "24" (uuid ff952fe1-d54b-441e-932c-36f8a26dfa0e)) + (pin "25" (uuid c6653a7e-57a3-4ccf-8b74-27594fb5de63)) + (pin "26" (uuid 0d940818-82aa-4d53-b484-968a641c190c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 1215.39 217.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cfc4b10b-c644-47fa-9478-ab4539b0abd3) + (property "Reference" "U70" (id 0) (at 1215.39 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1215.39 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1215.39 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1215.39 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 89710f41-5a9f-47a0-9fd2-4f757d6d50cd)) + (pin "2" (uuid e866cefc-e1a4-4533-9513-cb0829668cde)) + (pin "3" (uuid 4e1a795a-2691-42f4-83d7-d4fce60901d2)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 932.18 200.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d53f4978-e2aa-409c-be67-7a26db1a434d) + (property "Reference" "U55" (id 0) (at 932.18 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 932.18 194.31 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 932.18 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 932.18 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3cc4e2ec-1f21-4189-90e8-793c87604801)) + (pin "2" (uuid 95e0ad1b-c911-4d61-a3ca-a95039d2665f)) + (pin "3" (uuid 9b1b541c-7640-4870-ad37-113c321884a3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 1217.93 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9559947-4086-4e60-adaf-bed2e9ee1805) + (property "Reference" "U76" (id 0) (at 1217.93 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1217.93 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1217.93 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1217.93 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9eca7e91-c37b-4a74-9645-e6f433508132)) + (pin "2" (uuid 8dd36219-c3ef-4ac4-a51a-89935b711a3f)) + (pin "3" (uuid 9f8320ca-39fa-4185-8695-d6ef6538d862)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1342.39 163.83 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dbfb1320-fe09-4592-8efe-e1bfa6acb752) + (property "Reference" "U1" (id 0) (at 1346.2 163.195 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1346.2 165.735 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1342.39 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1342.39 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6f9354d1-e3cc-4d43-877a-eedacce43a90)) + (pin "2" (uuid 21954a10-788f-4784-851d-fe55d6ad0cd5)) + (pin "3" (uuid ef0ef8bd-9f08-4a89-b52b-5cb4208898eb)) + (pin "4" (uuid 3e54fb71-6576-4b99-84ab-a5f9ecda1fd5)) + (pin "5" (uuid 388a9c39-564a-456a-9bf0-b2aecde78493)) + (pin "6" (uuid 8b71d531-15ee-490f-a4cc-7ad86a447cd6)) + (pin "7" (uuid bd1246f0-d1eb-4a6c-9738-fab3ce6bcfe7)) + (pin "8" (uuid 1202fbeb-99cd-482d-a20d-64f1e5b2170d)) + (pin "9" (uuid 254ac589-65fb-4ac7-8547-5b710154d4b9)) + (pin "10" (uuid d37dcb13-6acd-49cd-a068-7b2d3c9ec6a6)) + (pin "11" (uuid 97638322-e991-4a8d-a826-96bd9222123e)) + (pin "12" (uuid 85aa748b-b562-4d3e-849b-e9e8f5452439)) + (pin "13" (uuid 0c29f711-1a11-4c58-8d53-240020d39b8d)) + (pin "14" (uuid 7b4e7c4c-fa3d-413c-972b-291da48df058)) + (pin "15" (uuid f4cbc24d-0999-4615-ac1b-3cb4f64e645f)) + (pin "16" (uuid 0f760041-bd1c-4116-8707-fa346b143b9f)) + (pin "17" (uuid 44bd7b01-06e4-4b75-8ffd-5d6283e65778)) + (pin "18" (uuid 1fc652d3-8290-4f0f-a725-fd223b33a719)) + (pin "19" (uuid 8c422f99-03cd-484d-8fd6-e887537e2699)) + (pin "20" (uuid 7d5e8997-3958-4fdd-8f8a-a85ca8116488)) + (pin "21" (uuid 9a53eca7-7ae6-498a-9532-bcb2f6b7ee3f)) + (pin "22" (uuid 0e4a3d1f-fa60-4f5e-aad4-e966bd140c42)) + (pin "23" (uuid 4dcf715c-bd6b-4bc8-b7d2-13411a2e65c7)) + (pin "24" (uuid 0fe54693-566a-44e9-bece-9098423fc78a)) + (pin "25" (uuid 5e476a08-a4d7-49a5-803c-4affab42f524)) + (pin "26" (uuid ddb1684b-a0a4-4ceb-a19f-b8db1ead4d11)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 1217.93 156.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ddf69832-795f-4ea5-8a76-4c2933996355) + (property "Reference" "U75" (id 0) (at 1217.93 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1217.93 149.86 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 1217.93 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1217.93 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9dd1f19d-72a1-41c9-adca-12ff873916b2)) + (pin "2" (uuid 8b6f184c-0e1c-476e-93a3-db10fcaa65a1)) + (pin "3" (uuid e279c36a-1c6a-4fcf-9b7f-e0c4a96e35e6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 588.01 226.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid de52b0e0-66bf-4fc1-9d29-52575afa86f1) + (property "Reference" "U35" (id 0) (at 588.01 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 588.01 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 588.01 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 588.01 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 82ad6a12-df8f-4d7b-9b49-8226d249db1b)) + (pin "2" (uuid e416b2e1-fdf0-4c3e-a6f6-014d471220e4)) + (pin "3" (uuid f44961ff-d659-4554-9d15-7858694b8c6b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 1342.39 171.45 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid df21962f-5756-4154-8167-2ac140205dd7) + (property "Reference" "U1" (id 0) (at 1346.2 170.815 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 1346.2 173.355 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 1342.39 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1342.39 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f612f97a-8c1e-42b9-9159-3204dad4bd58)) + (pin "2" (uuid f8ff96a7-abb5-4084-ba35-43348d1dbbd4)) + (pin "3" (uuid e95a496e-6cd4-4bc5-b6c6-7b7fa10e21be)) + (pin "4" (uuid ed6e7020-9f52-4341-9766-3afdef87a73c)) + (pin "5" (uuid 57ebbbce-6642-4fc6-9291-4cbe3c635aa4)) + (pin "6" (uuid bfa2fa40-53f6-45b6-a8e5-647efe2c6989)) + (pin "7" (uuid 31fb48f9-99ba-4ec6-aa8e-c418ee19426b)) + (pin "8" (uuid da8515b1-4733-44ec-867b-86abb106df54)) + (pin "9" (uuid c979ea93-5396-4297-8c79-1b1cefefd970)) + (pin "10" (uuid 4582dc7f-010b-4e34-9f57-a02434c14606)) + (pin "11" (uuid 8b2362b1-5a14-46ba-a42c-7cd63c18561a)) + (pin "12" (uuid ac034d96-747a-4750-b28e-f84e7a041100)) + (pin "13" (uuid a0e1fa33-193a-413f-9125-e3a6e7948701)) + (pin "14" (uuid 6828d940-d1a9-4b9a-a482-33d3f6e132d8)) + (pin "15" (uuid 53c67fe0-d96c-43d1-ae03-dabae6d81e17)) + (pin "16" (uuid 4a2363e4-695e-4d2a-8376-78ae36ef0926)) + (pin "17" (uuid 535508f7-6a0b-4b95-85e1-91e81052d4c2)) + (pin "18" (uuid 17c833fa-1c81-4f2c-ac14-9090214cb015)) + (pin "19" (uuid 9c9f9f78-d1d3-48d1-b757-819e7d529fcb)) + (pin "20" (uuid bfafe3b0-1059-4e29-b188-fcd30ecd914b)) + (pin "21" (uuid fb2feb28-44e8-4d4d-a393-e29bbc5163af)) + (pin "22" (uuid eadb100e-2d10-4383-822b-fb7aadea4f59)) + (pin "23" (uuid 21dd60ed-5a76-4a68-a727-47067268c45c)) + (pin "24" (uuid 6b83bb53-eed6-4863-8b3d-2f42eafee3a2)) + (pin "25" (uuid 9b47000f-f3e8-4424-9cb0-5fcac8366abf)) + (pin "26" (uuid d0430310-5639-47c1-9414-f3348fdfeb1e)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 468.63 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2539db0-d189-4a4d-91cb-0bbb8ebc0b5b) + (property "Reference" "U23" (id 0) (at 468.63 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 468.63 85.09 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 468.63 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 468.63 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0c6b3626-13cd-4d4e-aa20-116f92ba04b6)) + (pin "2" (uuid bf5f93ef-a4a4-49df-916b-7b773c23cb5e)) + (pin "3" (uuid 36abb6ae-456e-43f6-8743-89021881a679)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 274.32 139.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e399ed93-277b-43b1-812a-cca7cb34759c) + (property "Reference" "U11" (id 0) (at 274.32 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 274.32 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 274.32 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 274.32 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 649046b5-a3a0-45b1-bd06-29acdf138464)) + (pin "2" (uuid cf3cdaf6-e579-474a-8b81-79c115e6c39f)) + (pin "3" (uuid 8017ef40-decd-46d4-86c5-297fb39c87dc)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 718.82 167.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e3aaf9eb-abac-4c1d-bc63-66c43fc9b596) + (property "Reference" "U41" (id 0) (at 718.82 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 718.82 161.29 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 718.82 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 718.82 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1c426c03-3ade-461e-bb4d-1c0f20ce7082)) + (pin "2" (uuid 727bb580-9508-47d1-b690-5bf0e5cf6d9e)) + (pin "3" (uuid 1f50da45-7aff-48bd-8a3a-b1dcd5a6622e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 718.82 180.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e488337b-9446-48d0-9d8a-e996bfc3a36b) + (property "Reference" "U42" (id 0) (at 718.82 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 718.82 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 718.82 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 718.82 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6a61d3ad-0f7b-46b6-8daf-f83ddaffe7f8)) + (pin "2" (uuid d8786d55-560e-4740-93c8-aee2a8065759)) + (pin "3" (uuid 45a078cc-6348-46cc-ba55-b9b397081ecf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 1050.29 207.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eb23cfe8-7029-42d1-8aeb-8bc310cc6a3b) + (property "Reference" "U64" (id 0) (at 1050.29 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1050.29 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1050.29 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1050.29 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 62b44de1-fec4-4b81-9931-507519810aaa)) + (pin "2" (uuid 7e630f34-c4b7-463a-8de2-8f372d60fa10)) + (pin "3" (uuid 1967fabb-e4e5-4de1-a548-ee7d8bc4a26f)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 1217.93 193.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed4b285c-68b6-44ad-8077-39c3f98598f2) + (property "Reference" "U77" (id 0) (at 1217.93 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1217.93 186.69 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 1217.93 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1217.93 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 46f24995-ce1d-433f-b100-0512b47d1470)) + (pin "2" (uuid 2b0a9398-4b22-48bc-a220-d7b13cd82ed6)) + (pin "3" (uuid f90c21a9-163a-4843-a1b5-28a131bd9363)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 753.11 279.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid edc9fd51-a104-449b-bb79-85dc9fdb201f) + (property "Reference" "U49" (id 0) (at 753.11 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 753.11 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 753.11 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 753.11 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6cc93489-4be4-4cd8-b5d6-f43dee50695a)) + (pin "2" (uuid 686b0502-a237-452f-95a8-103d95c86465)) + (pin "3" (uuid 294d0155-9cbe-49c3-8c23-418139e6619c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 962.66 227.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f1bbf22f-fac2-43a8-b9ba-555280ff67be) + (property "Reference" "U59" (id 0) (at 962.66 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 962.66 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 962.66 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 962.66 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ff946f5-c047-48b5-880d-50565e120015)) + (pin "2" (uuid 1d1427cf-ba8f-4371-8312-4b95a8a431c0)) + (pin "3" (uuid 2a7292dd-9bbe-402c-826d-32f7170e469b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 949.96 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f3548f21-d271-4086-a791-03f8ba2ecf9c) + (property "Reference" "U56" (id 0) (at 949.96 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 949.96 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 949.96 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 949.96 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fe135fd9-6184-4ff4-b16c-b262892ecfb1)) + (pin "2" (uuid 6678270d-f3a5-48ca-9f5b-2ad87b9009bc)) + (pin "3" (uuid 7753c326-ed80-4d22-b507-0f6527639e23)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 270.51 217.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f367fc73-03f8-434b-a831-9cdaa5b60403) + (property "Reference" "U9" (id 0) (at 270.51 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 270.51 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 271.78 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 484ca38b-a2bc-4341-92ff-f885706bd63c)) + (pin "2" (uuid c1ea2457-7430-4d17-96bd-4ab768f76540)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 568.96 266.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f5213cab-e158-451b-af6c-8bc99e6930f1) + (property "Reference" "U33" (id 0) (at 568.96 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 568.96 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 568.96 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 568.96 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b3d0a10d-6136-47c4-9b9b-7e7cf5d95e19)) + (pin "2" (uuid b2542bca-ee3b-4e82-995e-f4f44e66d68d)) + (pin "3" (uuid 1c0805db-d530-4aa6-bcac-58ec3b901ab7)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/beae39b3-358f-4b0b-8fc3-aca879b1cdac" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/6aa21282-4892-4319-a779-0fbb2549c8c3" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/af82eaae-a258-4661-be1b-90329c5792a5" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/b619ccd8-acae-4763-b23c-4bee3822336c" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/9834e5ce-e456-4adf-b2bf-6d3240f026bb" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/2bcec12d-8c96-4d9d-9fc5-197b5a0a7541" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/7350351a-d7d3-4ace-b8a5-ea1ddbde35e9" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/4caa1a16-9d7d-42af-aa87-3cacc849a1a3" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/64b082da-9c4a-45ec-b2c6-ddd384743b51" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/dbfb1320-fe09-4592-8efe-e1bfa6acb752" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/7905ec8e-e01d-43b5-be6a-48834496b61b" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/81e2a929-2529-4317-a103-eb6cf046078f" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/df21962f-5756-4154-8167-2ac140205dd7" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/ce011084-1734-4adc-8c40-57d9cb61015d" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/67cddab3-1199-4209-9737-45dd225e1e11" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/82b6f953-b5ab-4cc9-a865-847053dacb83" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/65769b61-c75d-4984-b021-11cdc6511fdc" + (reference "U2") (unit 1) (value "d_and") (footprint "") + ) + (path "/19717032-6242-465b-adc9-29043a60587a" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/bb69ab79-7c63-4649-acf2-654537116758" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/17692d1e-6ce9-4fc1-a8be-feabfd304407" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/922ec7c9-eeea-49df-bc07-1737f21c70a2" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/4bad5b33-2154-4a7e-9ce6-af1be19fc354" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b2f0b140-5c4d-4432-8e0f-425c7f5f8bee" + (reference "U8") (unit 1) (value "d_xor") (footprint "") + ) + (path "/f367fc73-03f8-434b-a831-9cdaa5b60403" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c225ae79-5d98-40e8-871a-f6e811439c5f" + (reference "U10") (unit 1) (value "d_xor") (footprint "") + ) + (path "/e399ed93-277b-43b1-812a-cca7cb34759c" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/6f576268-c109-4d56-a5e0-d93b2a589127" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/4e5b7a93-aafe-4d9b-b392-e07053cd3a4b" + (reference "U13") (unit 1) (value "d_or") (footprint "") + ) + (path "/b9f43958-4569-4af7-bded-f7a73d900937" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/57e7512f-bdcb-42db-8f40-d28cf1a7c6cd" + (reference "U15") (unit 1) (value "d_xor") (footprint "") + ) + (path "/6f73bce7-3e60-4391-b76a-fc53f0c78e45" + (reference "U16") (unit 1) (value "d_xor") (footprint "") + ) + (path "/bdf11d2c-657e-4e97-a98d-557e421a47ed" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/8687f1c6-d415-43f3-9d1a-e0f062ae1633" + (reference "U18") (unit 1) (value "d_xor") (footprint "") + ) + (path "/7f7f6670-5310-43f8-99c6-299f661e6816" + (reference "U19") (unit 1) (value "d_and") (footprint "") + ) + (path "/88b6872b-edfc-4ec6-8f41-a0949d2419da" + (reference "U20") (unit 1) (value "d_and") (footprint "") + ) + (path "/b422fa72-8146-4488-819e-51a58834d3fb" + (reference "U21") (unit 1) (value "d_or") (footprint "") + ) + (path "/6b3d384e-cacc-4909-ada0-86d6a6149967" + (reference "U22") (unit 1) (value "d_xor") (footprint "") + ) + (path "/e2539db0-d189-4a4d-91cb-0bbb8ebc0b5b" + (reference "U23") (unit 1) (value "d_xor") (footprint "") + ) + (path "/ba1a130e-1e48-48ae-a797-d41ec60ee62a" + (reference "U24") (unit 1) (value "d_and") (footprint "") + ) + (path "/84fae7e0-3ed8-4d3f-80d7-5a11c6a8aaae" + (reference "U25") (unit 1) (value "d_and") (footprint "") + ) + (path "/9c20cfea-8026-4e1d-abcb-82abb329bb8b" + (reference "U26") (unit 1) (value "d_and") (footprint "") + ) + (path "/adcb3d6e-4848-400d-a4d6-7c0a91550d7b" + (reference "U27") (unit 1) (value "d_and") (footprint "") + ) + (path "/bbf45063-7dc8-4d91-acdf-7a6f86bc77eb" + (reference "U28") (unit 1) (value "d_and") (footprint "") + ) + (path "/877c601d-985b-4f6b-965b-6ff11605c8e3" + (reference "U29") (unit 1) (value "d_or") (footprint "") + ) + (path "/1cbf8199-32d6-4af3-9bcd-dd995fba5956" + (reference "U30") (unit 1) (value "d_xor") (footprint "") + ) + (path "/2b3af93d-d071-441b-b805-5fb2d6b43c54" + (reference "U31") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/51b690ca-3def-4663-9164-5b80ac824c13" + (reference "U32") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f5213cab-e158-451b-af6c-8bc99e6930f1" + (reference "U33") (unit 1) (value "d_and") (footprint "") + ) + (path "/0479b17a-f30b-498c-9cc0-1b2607836831" + (reference "U34") (unit 1) (value "d_xor") (footprint "") + ) + (path "/de52b0e0-66bf-4fc1-9d29-52575afa86f1" + (reference "U35") (unit 1) (value "d_and") (footprint "") + ) + (path "/a1f0a47a-4ac4-4605-8e5d-b837b5356951" + (reference "U36") (unit 1) (value "d_and") (footprint "") + ) + (path "/5ab68d76-8c73-471a-9dff-3b0f532c7262" + (reference "U37") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/47c119ff-f5ff-469c-a1e5-8ef98b393e6f" + (reference "U38") (unit 1) (value "d_or") (footprint "") + ) + (path "/6aec89e8-bfb6-4f23-b07f-6844d8bc6314" + (reference "U39") (unit 1) (value "d_xor") (footprint "") + ) + (path "/47ef346d-8f46-46b2-8f42-b9b876f2a208" + (reference "U40") (unit 1) (value "d_xor") (footprint "") + ) + (path "/e3aaf9eb-abac-4c1d-bc63-66c43fc9b596" + (reference "U41") (unit 1) (value "d_xor") (footprint "") + ) + (path "/e488337b-9446-48d0-9d8a-e996bfc3a36b" + (reference "U42") (unit 1) (value "d_and") (footprint "") + ) + (path "/8967e236-d3cd-43db-a43d-474976361db1" + (reference "U43") (unit 1) (value "d_and") (footprint "") + ) + (path "/7c85bd1d-a423-4d27-9048-c46188f371f7" + (reference "U44") (unit 1) (value "d_xor") (footprint "") + ) + (path "/591c04da-fadc-4404-a6be-67e90c7470bb" + (reference "U45") (unit 1) (value "d_and") (footprint "") + ) + (path "/9c768be1-3a78-4bf4-98c1-98da43cc76fc" + (reference "U46") (unit 1) (value "d_and") (footprint "") + ) + (path "/14cbd55d-248a-4a5e-855e-1d641a55ab0d" + (reference "U47") (unit 1) (value "d_or") (footprint "") + ) + (path "/1a1752bf-1f9e-4a91-aab5-3c94ffc6f16a" + (reference "U48") (unit 1) (value "d_or") (footprint "") + ) + (path "/edc9fd51-a104-449b-bb79-85dc9fdb201f" + (reference "U49") (unit 1) (value "d_and") (footprint "") + ) + (path "/5e364900-d1f7-4318-80af-7bc5dfd4ccd7" + (reference "U50") (unit 1) (value "d_xor") (footprint "") + ) + (path "/bdd534ba-4a07-4606-8f78-efb67bf2ac3e" + (reference "U51") (unit 1) (value "d_xor") (footprint "") + ) + (path "/630cf199-6e3c-410e-8969-b4d925db8a17" + (reference "U52") (unit 1) (value "d_and") (footprint "") + ) + (path "/a9f88d41-c699-4192-8edf-49ca1e06a663" + (reference "U53") (unit 1) (value "d_and") (footprint "") + ) + (path "/87a0513f-3cf7-424b-b7d3-12e80d2fccd6" + (reference "U54") (unit 1) (value "d_or") (footprint "") + ) + (path "/d53f4978-e2aa-409c-be67-7a26db1a434d" + (reference "U55") (unit 1) (value "d_xor") (footprint "") + ) + (path "/f3548f21-d271-4086-a791-03f8ba2ecf9c" + (reference "U56") (unit 1) (value "d_and") (footprint "") + ) + (path "/79a5ce3c-b1cd-4284-bcc5-c097a058c529" + (reference "U57") (unit 1) (value "d_xor") (footprint "") + ) + (path "/688f2337-7f0e-49ad-9b74-6be90a6d287d" + (reference "U58") (unit 1) (value "d_and") (footprint "") + ) + (path "/f1bbf22f-fac2-43a8-b9ba-555280ff67be" + (reference "U59") (unit 1) (value "d_and") (footprint "") + ) + (path "/4ea8eab3-5c46-4b30-a213-638ca07b5531" + (reference "U60") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ace618d3-a927-4b6e-98b0-7ec163dca2c1" + (reference "U61") (unit 1) (value "d_or") (footprint "") + ) + (path "/b3af81d5-1e2a-4c4c-a2f6-b7cf4b2cffac" + (reference "U62") (unit 1) (value "d_and") (footprint "") + ) + (path "/9953296e-6cb3-47ba-92c4-dbc16f36fc63" + (reference "U63") (unit 1) (value "d_and") (footprint "") + ) + (path "/eb23cfe8-7029-42d1-8aeb-8bc310cc6a3b" + (reference "U64") (unit 1) (value "d_and") (footprint "") + ) + (path "/05b7e12c-a808-4254-b55d-e13688efeb51" + (reference "U65") (unit 1) (value "d_and") (footprint "") + ) + (path "/1a835c73-4c8e-47e3-a60f-414941e3b80d" + (reference "U66") (unit 1) (value "d_xor") (footprint "") + ) + (path "/2015f236-a536-450e-b14a-4d3656d65954" + (reference "U67") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/6bf6f5fa-7b47-4722-91cb-fd12cdbc6fd1" + (reference "U68") (unit 1) (value "d_and") (footprint "") + ) + (path "/846d8e7f-8d56-4f2d-ad05-2eb798b320e2" + (reference "U69") (unit 1) (value "d_xor") (footprint "") + ) + (path "/cfc4b10b-c644-47fa-9478-ab4539b0abd3" + (reference "U70") (unit 1) (value "d_and") (footprint "") + ) + (path "/b852a153-c016-4295-a9ac-c0cb5aeef051" + (reference "U71") (unit 1) (value "d_xnor") (footprint "") + ) + (path "/6ed713fc-dc48-4aab-ad25-c9d7de86dc15" + (reference "U72") (unit 1) (value "d_and") (footprint "") + ) + (path "/03408d5c-2ba7-43f4-9804-1cc3386eaa50" + (reference "U73") (unit 1) (value "d_xor") (footprint "") + ) + (path "/bcba08fe-2979-44ed-ad9d-39fbe7bf8df8" + (reference "U74") (unit 1) (value "d_and") (footprint "") + ) + (path "/ddf69832-795f-4ea5-8a76-4c2933996355" + (reference "U75") (unit 1) (value "d_xor") (footprint "") + ) + (path "/d9559947-4086-4e60-adaf-bed2e9ee1805" + (reference "U76") (unit 1) (value "d_and") (footprint "") + ) + (path "/ed4b285c-68b6-44ad-8077-39c3f98598f2" + (reference "U77") (unit 1) (value "d_xor") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74S274/SN74S274.sub b/library/SubcircuitLibrary/SN74S274/SN74S274.sub new file mode 100644 index 000000000..5a96bfffe --- /dev/null +++ b/library/SubcircuitLibrary/SN74S274/SN74S274.sub @@ -0,0 +1,310 @@ +* Subcircuit SN74S274 +.subckt SN74S274 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ +.title kicad schematic +* u19 net-_u16-pad3_ net-_u13-pad3_ net-_u19-pad3_ d_and +* u21 net-_u19-pad3_ net-_u20-pad3_ net-_u14-pad2_ d_or +* u20 net-_u16-pad1_ net-_u16-pad2_ net-_u20-pad3_ d_and +* u15 net-_u14-pad1_ net-_u14-pad2_ net-_u15-pad3_ d_xor +* u18 net-_u16-pad3_ net-_u13-pad3_ net-_u18-pad3_ d_xor +* u2 net-_u1-pad2_ net-_u1-pad6_ net-_u12-pad2_ d_and +* u8 net-_u12-pad1_ net-_u12-pad2_ net-_u10-pad1_ d_xor +* u17 net-_u1-pad2_ net-_u1-pad7_ net-_u17-pad3_ d_and +* u14 net-_u14-pad1_ net-_u14-pad2_ net-_u14-pad3_ d_and +* u16 net-_u16-pad1_ net-_u16-pad2_ net-_u16-pad3_ d_xor +* u6 net-_u1-pad4_ net-_u1-pad6_ net-_u6-pad3_ d_and +* u9 net-_u6-pad3_ net-_u14-pad1_ d_inverter +* u13 net-_u11-pad3_ net-_u12-pad3_ net-_u13-pad3_ d_or +* u10 net-_u10-pad1_ net-_u10-pad2_ net-_u10-pad3_ d_xor +* u7 net-_u4-pad3_ net-_u16-pad1_ d_inverter +* u12 net-_u12-pad1_ net-_u12-pad2_ net-_u12-pad3_ d_and +* u11 net-_u10-pad1_ net-_u10-pad2_ net-_u11-pad3_ d_and +* u5 net-_u1-pad3_ net-_u1-pad6_ net-_u16-pad2_ d_and +* u4 net-_u1-pad4_ net-_u1-pad5_ net-_u4-pad3_ d_and +* u3 net-_u1-pad3_ net-_u1-pad5_ net-_u12-pad1_ d_and +* u25 net-_u18-pad3_ net-_u17-pad3_ net-_u25-pad3_ d_and +* u29 net-_u24-pad3_ net-_u25-pad3_ net-_u29-pad3_ d_or +* u24 net-_u22-pad3_ net-_u23-pad2_ net-_u24-pad3_ d_and +* u22 net-_u18-pad3_ net-_u17-pad3_ net-_u22-pad3_ d_xor +* u23 net-_u22-pad3_ net-_u23-pad2_ net-_u23-pad3_ d_xor +* u33 net-_u1-pad3_ net-_u1-pad8_ net-_u33-pad3_ d_and +* u37 net-_u33-pad3_ net-_u37-pad2_ d_inverter +* u32 net-_u27-pad3_ net-_u32-pad2_ d_inverter +* u31 net-_u26-pad3_ net-_u31-pad2_ d_inverter +* u30 net-_u15-pad3_ net-_u28-pad3_ net-_u30-pad3_ d_xor +* u28 net-_u1-pad3_ net-_u1-pad7_ net-_u28-pad3_ d_and +* u27 net-_u1-pad2_ net-_u1-pad8_ net-_u27-pad3_ d_and +* u26 net-_u1-pad4_ net-_u1-pad7_ net-_u26-pad3_ d_and +* u67 net-_u41-pad3_ net-_u1-pad13_ d_inverter +* u36 net-_u15-pad3_ net-_u28-pad3_ net-_u36-pad3_ d_and +* u35 net-_u30-pad3_ net-_u29-pad3_ net-_u35-pad3_ d_and +* u38 net-_u35-pad3_ net-_u36-pad3_ net-_u38-pad3_ d_or +* u34 net-_u30-pad3_ net-_u29-pad3_ net-_u34-pad3_ d_xor +* u58 net-_u55-pad3_ net-_u54-pad3_ net-_u58-pad3_ d_and +* u57 net-_u55-pad3_ net-_u54-pad3_ net-_u57-pad3_ d_xor +* u59 net-_u48-pad3_ net-_u49-pad3_ net-_u59-pad3_ d_and +* u64 net-_u1-pad1_ net-_u1-pad7_ net-_u64-pad3_ d_and +* u63 net-_u1-pad1_ net-_u1-pad6_ net-_u63-pad3_ d_and +* u61 net-_u58-pad3_ net-_u59-pad3_ net-_u61-pad3_ d_or +* u66 net-_u57-pad3_ net-_u65-pad2_ net-_u1-pad15_ d_xor +* u65 net-_u57-pad3_ net-_u65-pad2_ net-_u65-pad3_ d_and +* u50 net-_u44-pad3_ net-_u37-pad2_ net-_u50-pad3_ d_xor +* u43 net-_u34-pad3_ net-_u32-pad2_ net-_u43-pad3_ d_and +* u42 net-_u39-pad3_ net-_u41-pad2_ net-_u42-pad3_ d_and +* u47 net-_u42-pad3_ net-_u43-pad3_ net-_u47-pad3_ d_or +* u53 net-_u44-pad3_ net-_u37-pad2_ net-_u53-pad3_ d_and +* u54 net-_u52-pad3_ net-_u53-pad3_ net-_u54-pad3_ d_or +* u51 net-_u50-pad3_ net-_u47-pad3_ net-_u51-pad3_ d_xor +* u52 net-_u50-pad3_ net-_u47-pad3_ net-_u52-pad3_ d_and +* u44 net-_u40-pad3_ net-_u38-pad3_ net-_u44-pad3_ d_xor +* u45 net-_u40-pad3_ net-_u38-pad3_ net-_u45-pad3_ d_and +* u46 net-_u14-pad3_ net-_u31-pad2_ net-_u46-pad3_ d_and +* u48 net-_u45-pad3_ net-_u46-pad3_ net-_u48-pad3_ d_or +* u55 net-_u48-pad3_ net-_u49-pad3_ net-_u55-pad3_ d_xor +* u56 net-_u1-pad1_ net-_u1-pad8_ net-_u56-pad3_ d_and +* u60 net-_u56-pad3_ net-_u60-pad2_ d_inverter +* u62 net-_u1-pad2_ net-_u1-pad5_ net-_u62-pad3_ d_and +* u40 net-_u14-pad3_ net-_u31-pad2_ net-_u40-pad3_ d_xor +* u49 net-_u1-pad4_ net-_u1-pad8_ net-_u49-pad3_ d_and +* u71 net-_u61-pad3_ net-_u65-pad3_ net-_u1-pad16_ d_xnor +* u39 net-_u34-pad3_ net-_u32-pad2_ net-_u39-pad3_ d_xor +* u41 net-_u39-pad3_ net-_u41-pad2_ net-_u41-pad3_ d_xor +* u77 net-_u23-pad3_ net-_u60-pad2_ net-_u1-pad12_ d_xor +* u76 net-_u23-pad3_ net-_u60-pad2_ net-_u41-pad2_ d_and +* u73 net-_u62-pad3_ net-_u63-pad3_ net-_u1-pad10_ d_xor +* u72 net-_u62-pad3_ net-_u63-pad3_ net-_u10-pad2_ d_and +* u70 net-_u1-pad1_ net-_u1-pad5_ net-_u1-pad9_ d_and +* u68 net-_u51-pad3_ net-_u41-pad3_ net-_u65-pad2_ d_and +* u69 net-_u51-pad3_ net-_u41-pad3_ net-_u1-pad14_ d_xor +* u74 net-_u10-pad3_ net-_u64-pad3_ net-_u23-pad2_ d_and +* u75 net-_u10-pad3_ net-_u64-pad3_ net-_u1-pad11_ d_xor +a1 [net-_u16-pad3_ net-_u13-pad3_ ] net-_u19-pad3_ u19 +a2 [net-_u19-pad3_ net-_u20-pad3_ ] net-_u14-pad2_ u21 +a3 [net-_u16-pad1_ net-_u16-pad2_ ] net-_u20-pad3_ u20 +a4 [net-_u14-pad1_ net-_u14-pad2_ ] net-_u15-pad3_ u15 +a5 [net-_u16-pad3_ net-_u13-pad3_ ] net-_u18-pad3_ u18 +a6 [net-_u1-pad2_ net-_u1-pad6_ ] net-_u12-pad2_ u2 +a7 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u10-pad1_ u8 +a8 [net-_u1-pad2_ net-_u1-pad7_ ] net-_u17-pad3_ u17 +a9 [net-_u14-pad1_ net-_u14-pad2_ ] net-_u14-pad3_ u14 +a10 [net-_u16-pad1_ net-_u16-pad2_ ] net-_u16-pad3_ u16 +a11 [net-_u1-pad4_ net-_u1-pad6_ ] net-_u6-pad3_ u6 +a12 net-_u6-pad3_ net-_u14-pad1_ u9 +a13 [net-_u11-pad3_ net-_u12-pad3_ ] net-_u13-pad3_ u13 +a14 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u10-pad3_ u10 +a15 net-_u4-pad3_ net-_u16-pad1_ u7 +a16 [net-_u12-pad1_ net-_u12-pad2_ ] net-_u12-pad3_ u12 +a17 [net-_u10-pad1_ net-_u10-pad2_ ] net-_u11-pad3_ u11 +a18 [net-_u1-pad3_ net-_u1-pad6_ ] net-_u16-pad2_ u5 +a19 [net-_u1-pad4_ net-_u1-pad5_ ] net-_u4-pad3_ u4 +a20 [net-_u1-pad3_ net-_u1-pad5_ ] net-_u12-pad1_ u3 +a21 [net-_u18-pad3_ net-_u17-pad3_ ] net-_u25-pad3_ u25 +a22 [net-_u24-pad3_ net-_u25-pad3_ ] net-_u29-pad3_ u29 +a23 [net-_u22-pad3_ net-_u23-pad2_ ] net-_u24-pad3_ u24 +a24 [net-_u18-pad3_ net-_u17-pad3_ ] net-_u22-pad3_ u22 +a25 [net-_u22-pad3_ net-_u23-pad2_ ] net-_u23-pad3_ u23 +a26 [net-_u1-pad3_ net-_u1-pad8_ ] net-_u33-pad3_ u33 +a27 net-_u33-pad3_ net-_u37-pad2_ u37 +a28 net-_u27-pad3_ net-_u32-pad2_ u32 +a29 net-_u26-pad3_ net-_u31-pad2_ u31 +a30 [net-_u15-pad3_ net-_u28-pad3_ ] net-_u30-pad3_ u30 +a31 [net-_u1-pad3_ net-_u1-pad7_ ] net-_u28-pad3_ u28 +a32 [net-_u1-pad2_ net-_u1-pad8_ ] net-_u27-pad3_ u27 +a33 [net-_u1-pad4_ net-_u1-pad7_ ] net-_u26-pad3_ u26 +a34 net-_u41-pad3_ net-_u1-pad13_ u67 +a35 [net-_u15-pad3_ net-_u28-pad3_ ] net-_u36-pad3_ u36 +a36 [net-_u30-pad3_ net-_u29-pad3_ ] net-_u35-pad3_ u35 +a37 [net-_u35-pad3_ net-_u36-pad3_ ] net-_u38-pad3_ u38 +a38 [net-_u30-pad3_ net-_u29-pad3_ ] net-_u34-pad3_ u34 +a39 [net-_u55-pad3_ net-_u54-pad3_ ] net-_u58-pad3_ u58 +a40 [net-_u55-pad3_ net-_u54-pad3_ ] net-_u57-pad3_ u57 +a41 [net-_u48-pad3_ net-_u49-pad3_ ] net-_u59-pad3_ u59 +a42 [net-_u1-pad1_ net-_u1-pad7_ ] net-_u64-pad3_ u64 +a43 [net-_u1-pad1_ net-_u1-pad6_ ] net-_u63-pad3_ u63 +a44 [net-_u58-pad3_ net-_u59-pad3_ ] net-_u61-pad3_ u61 +a45 [net-_u57-pad3_ net-_u65-pad2_ ] net-_u1-pad15_ u66 +a46 [net-_u57-pad3_ net-_u65-pad2_ ] net-_u65-pad3_ u65 +a47 [net-_u44-pad3_ net-_u37-pad2_ ] net-_u50-pad3_ u50 +a48 [net-_u34-pad3_ net-_u32-pad2_ ] net-_u43-pad3_ u43 +a49 [net-_u39-pad3_ net-_u41-pad2_ ] net-_u42-pad3_ u42 +a50 [net-_u42-pad3_ net-_u43-pad3_ ] net-_u47-pad3_ u47 +a51 [net-_u44-pad3_ net-_u37-pad2_ ] net-_u53-pad3_ u53 +a52 [net-_u52-pad3_ net-_u53-pad3_ ] net-_u54-pad3_ u54 +a53 [net-_u50-pad3_ net-_u47-pad3_ ] net-_u51-pad3_ u51 +a54 [net-_u50-pad3_ net-_u47-pad3_ ] net-_u52-pad3_ u52 +a55 [net-_u40-pad3_ net-_u38-pad3_ ] net-_u44-pad3_ u44 +a56 [net-_u40-pad3_ net-_u38-pad3_ ] net-_u45-pad3_ u45 +a57 [net-_u14-pad3_ net-_u31-pad2_ ] net-_u46-pad3_ u46 +a58 [net-_u45-pad3_ net-_u46-pad3_ ] net-_u48-pad3_ u48 +a59 [net-_u48-pad3_ net-_u49-pad3_ ] net-_u55-pad3_ u55 +a60 [net-_u1-pad1_ net-_u1-pad8_ ] net-_u56-pad3_ u56 +a61 net-_u56-pad3_ net-_u60-pad2_ u60 +a62 [net-_u1-pad2_ net-_u1-pad5_ ] net-_u62-pad3_ u62 +a63 [net-_u14-pad3_ net-_u31-pad2_ ] net-_u40-pad3_ u40 +a64 [net-_u1-pad4_ net-_u1-pad8_ ] net-_u49-pad3_ u49 +a65 [net-_u61-pad3_ net-_u65-pad3_ ] net-_u1-pad16_ u71 +a66 [net-_u34-pad3_ net-_u32-pad2_ ] net-_u39-pad3_ u39 +a67 [net-_u39-pad3_ net-_u41-pad2_ ] net-_u41-pad3_ u41 +a68 [net-_u23-pad3_ net-_u60-pad2_ ] net-_u1-pad12_ u77 +a69 [net-_u23-pad3_ net-_u60-pad2_ ] net-_u41-pad2_ u76 +a70 [net-_u62-pad3_ net-_u63-pad3_ ] net-_u1-pad10_ u73 +a71 [net-_u62-pad3_ net-_u63-pad3_ ] net-_u10-pad2_ u72 +a72 [net-_u1-pad1_ net-_u1-pad5_ ] net-_u1-pad9_ u70 +a73 [net-_u51-pad3_ net-_u41-pad3_ ] net-_u65-pad2_ u68 +a74 [net-_u51-pad3_ net-_u41-pad3_ ] net-_u1-pad14_ u69 +a75 [net-_u10-pad3_ net-_u64-pad3_ ] net-_u23-pad2_ u74 +a76 [net-_u10-pad3_ net-_u64-pad3_ ] net-_u1-pad11_ u75 +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u21 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u20 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u15 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u18 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u8 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u16 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u13 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u10 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u29 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u22 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u23 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u33 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u37 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u32 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u30 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u67 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u36 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u35 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u38 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u34 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u58 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u57 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u59 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u64 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u63 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u61 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u66 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u65 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u50 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u43 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u42 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u47 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u53 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u54 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u51 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u52 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u44 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u45 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u46 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u48 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u55 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u56 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u60 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u62 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u40 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xnor, Ngspice Name: d_xnor +.model u71 d_xnor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u39 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u41 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u77 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u76 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u73 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u72 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u70 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u68 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u69 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u74 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u75 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN74S274 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74S274/SN74S274_Previous_Values.xml b/library/SubcircuitLibrary/SN74S274/SN74S274_Previous_Values.xml new file mode 100644 index 000000000..b1435f6b7 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S274/SN74S274_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_andd_ord_andd_xord_xord_andd_xord_andd_andd_xord_andd_inverterd_ord_xord_inverterd_andd_andd_andd_andd_andd_andd_ord_andd_xord_xord_andd_inverterd_inverterd_inverterd_xord_andd_andd_andd_inverterd_andd_andd_ord_xord_andd_xord_andd_andd_andd_ord_xord_andd_xord_andd_andd_ord_andd_ord_xord_andd_xord_andd_andd_ord_xord_andd_inverterd_andd_xord_andd_xnord_xord_xord_xord_andd_xord_andd_andd_andd_xord_andd_xor \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74S274/analysis b/library/SubcircuitLibrary/SN74S274/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S274/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74S281/SN74S281.cir b/library/SubcircuitLibrary/SN74S281/SN74S281.cir new file mode 100644 index 000000000..69600f0d1 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S281/SN74S281.cir @@ -0,0 +1,90 @@ +.title KiCad schematic +U76 Net-_U72-Pad2_ Net-_U64-Pad3_ Net-_U76-Pad3_ d_xor +U77 Net-_U66-Pad3_ /CN Net-_U77-Pad3_ d_and +U75 Net-_U71-Pad2_ Net-_U63-Pad3_ Net-_U75-Pad3_ d_xor +U84 Net-_U76-Pad3_ Net-_U2-Pad17_ d_inverter +U83 Net-_U75-Pad3_ Net-_U2-Pad16_ d_inverter +U88 Net-_U77-Pad3_ Net-_U78-Pad3_ Net-_U2-Pad15_ d_or +U2 /A0 /A1 /A2 /A3 /B0 /B1 /B2 /B3 /CN /M /S0 /S1 /S2 /S3 Net-_U2-Pad15_ Net-_U2-Pad16_ Net-_U2-Pad17_ Net-_U2-Pad18_ Net-_U2-Pad19_ Net-_U2-Pad20_ Net-_U2-Pad21_ PORT +U71 Net-_U38-Pad3_ Net-_U71-Pad2_ d_buffer +U72 Net-_U23-Pad3_ Net-_U72-Pad2_ d_buffer +U62 Net-_U55-Pad3_ Net-_U29-Pad3_ Net-_U62-Pad3_ d_and +U60 Net-_U38-Pad3_ Net-_U23-Pad3_ Net-_U60-Pad3_ d_or +U61 Net-_U55-Pad3_ Net-_U23-Pad3_ Net-_U61-Pad3_ d_and +U70 Net-_U60-Pad3_ Net-_U25-Pad3_ Net-_U70-Pad3_ d_or +U74 Net-_U42-Pad3_ Net-_U74-Pad2_ d_buffer +U67 Net-_U59-Pad3_ /M Net-_U67-Pad3_ d_xor +U68 Net-_U61-Pad3_ Net-_U36-Pad3_ Net-_U68-Pad3_ d_and +U69 Net-_U56-Pad3_ Net-_U62-Pad3_ Net-_U69-Pad3_ d_or +U66 Net-_U61-Pad3_ Net-_U38-Pad3_ Net-_U66-Pad3_ d_and +U73 Net-_U25-Pad3_ Net-_U73-Pad2_ d_buffer +U80 Net-_U73-Pad2_ Net-_U65-Pad3_ Net-_U80-Pad3_ d_xor +U81 Net-_U74-Pad2_ Net-_U67-Pad3_ Net-_U81-Pad3_ d_xor +U82 Net-_U79-Pad3_ Net-_U2-Pad21_ d_inverter +U79 Net-_U70-Pad3_ Net-_U42-Pad3_ Net-_U79-Pad3_ d_or +U78 Net-_U69-Pad3_ Net-_U68-Pad3_ Net-_U78-Pad3_ d_or +U85 Net-_U80-Pad3_ Net-_U2-Pad18_ d_inverter +U86 Net-_U81-Pad3_ Net-_U2-Pad19_ d_inverter +U87 Net-_U78-Pad3_ Net-_U2-Pad20_ d_inverter +U59 Net-_U48-Pad3_ Net-_U53-Pad3_ Net-_U59-Pad3_ d_or +U65 Net-_U58-Pad3_ /M Net-_U65-Pad3_ d_xor +U57 Net-_U36-Pad3_ Net-_U51-Pad3_ Net-_U57-Pad3_ d_or +U58 Net-_U54-Pad3_ Net-_U52-Pad3_ Net-_U58-Pad3_ d_or +U64 Net-_U57-Pad3_ /M Net-_U64-Pad3_ d_xor +U63 /CN /M Net-_U63-Pad3_ d_xor +U6 /S2 Net-_U1-Pad2_ Net-_U20-Pad2_ d_and +U10 /B0 Net-_U10-Pad2_ d_buffer +U1 /B1 Net-_U1-Pad2_ d_buffer +U27 /A0 Net-_U17-Pad3_ Net-_U27-Pad3_ d_or +U26 /S0 Net-_U21-Pad2_ Net-_U26-Pad3_ d_and +U25 Net-_U16-Pad3_ Net-_U14-Pad3_ Net-_U25-Pad3_ d_or +U24 /S1 /B3 Net-_U24-Pad3_ d_and +U21 /B0 Net-_U21-Pad2_ d_buffer +U22 Net-_U12-Pad3_ Net-_U13-Pad3_ Net-_U22-Pad3_ d_or +U23 Net-_U15-Pad3_ Net-_U11-Pad3_ Net-_U23-Pad3_ d_or +U30 /B3 Net-_U30-Pad2_ d_buffer +U31 /B3 Net-_U31-Pad2_ d_buffer +U4 /S3 /B1 Net-_U20-Pad1_ d_and +U5 /S1 /B2 Net-_U16-Pad2_ d_and +U3 /S1 /B1 Net-_U15-Pad2_ d_and +U13 /S2 Net-_U13-Pad2_ Net-_U13-Pad3_ d_and +U12 /S3 /B2 Net-_U12-Pad3_ d_and +U11 /S0 Net-_U11-Pad2_ Net-_U11-Pad3_ d_and +U9 /B2 Net-_U14-Pad2_ d_buffer +U14 /S0 Net-_U14-Pad2_ Net-_U14-Pad3_ d_and +U17 /S1 /B0 Net-_U17-Pad3_ d_and +U16 /A2 Net-_U16-Pad2_ Net-_U16-Pad3_ d_or +U15 /A1 Net-_U15-Pad2_ Net-_U15-Pad3_ d_or +U7 /B1 Net-_U11-Pad2_ d_buffer +U8 /B2 Net-_U13-Pad2_ d_buffer +U28 Net-_U18-Pad3_ Net-_U19-Pad3_ Net-_U28-Pad3_ d_or +U29 /A1 Net-_U20-Pad3_ Net-_U29-Pad3_ d_and +U18 /S3 /B0 Net-_U18-Pad3_ d_and +U19 /S2 Net-_U10-Pad2_ Net-_U19-Pad3_ d_and +U20 Net-_U20-Pad1_ Net-_U20-Pad2_ Net-_U20-Pad3_ d_or +U40 Net-_U25-Pad3_ Net-_U29-Pad3_ Net-_U40-Pad3_ d_and +U46 Net-_U23-Pad3_ Net-_U36-Pad3_ Net-_U46-Pad3_ d_and +U45 Net-_U23-Pad3_ Net-_U38-Pad3_ Net-_U45-Pad3_ d_and +U47 Net-_U37-Pad3_ Net-_U38-Pad3_ Net-_U47-Pad3_ d_and +U39 /A2 Net-_U22-Pad3_ Net-_U39-Pad3_ d_and +U37 Net-_U25-Pad3_ Net-_U23-Pad3_ Net-_U37-Pad3_ d_and +U38 Net-_U27-Pad3_ Net-_U26-Pad3_ Net-_U38-Pad3_ d_or +U32 /S3 /B3 Net-_U32-Pad3_ d_and +U33 /S0 Net-_U30-Pad2_ Net-_U33-Pad3_ d_and +U35 /S2 Net-_U31-Pad2_ Net-_U35-Pad3_ d_and +U42 Net-_U34-Pad3_ Net-_U33-Pad3_ Net-_U42-Pad3_ d_or +U41 Net-_U32-Pad3_ Net-_U35-Pad3_ Net-_U41-Pad3_ d_or +U34 /A3 Net-_U24-Pad3_ Net-_U34-Pad3_ d_or +U36 /A0 Net-_U28-Pad3_ Net-_U36-Pad3_ d_and +U44 Net-_U37-Pad3_ Net-_U36-Pad3_ Net-_U44-Pad3_ d_and +U43 Net-_U39-Pad3_ Net-_U40-Pad3_ Net-_U43-Pad3_ d_or +U55 Net-_U42-Pad3_ Net-_U25-Pad3_ Net-_U55-Pad3_ d_and +U53 Net-_U47-Pad3_ /CN Net-_U53-Pad3_ d_and +U54 Net-_U29-Pad3_ Net-_U46-Pad3_ Net-_U54-Pad3_ d_or +U56 Net-_U49-Pad3_ Net-_U50-Pad3_ Net-_U56-Pad3_ d_or +U52 Net-_U45-Pad3_ /CN Net-_U52-Pad3_ d_and +U51 Net-_U38-Pad3_ /CN Net-_U51-Pad3_ d_and +U50 Net-_U42-Pad3_ Net-_U39-Pad3_ Net-_U50-Pad3_ d_and +U48 Net-_U43-Pad3_ Net-_U44-Pad3_ Net-_U48-Pad3_ d_or +U49 /A3 Net-_U41-Pad3_ Net-_U49-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/SN74S281/SN74S281.cir.out b/library/SubcircuitLibrary/SN74S281/SN74S281.cir.out new file mode 100644 index 000000000..89cc1a7b2 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S281/SN74S281.cir.out @@ -0,0 +1,360 @@ +.title kicad schematic + +* u76 net-_u72-pad2_ net-_u64-pad3_ net-_u76-pad3_ d_xor +* u77 net-_u66-pad3_ /cn net-_u77-pad3_ d_and +* u75 net-_u71-pad2_ net-_u63-pad3_ net-_u75-pad3_ d_xor +* u84 net-_u76-pad3_ net-_u2-pad17_ d_inverter +* u83 net-_u75-pad3_ net-_u2-pad16_ d_inverter +* u88 net-_u77-pad3_ net-_u78-pad3_ net-_u2-pad15_ d_or +* u2 /a0 /a1 /a2 /a3 /b0 /b1 /b2 /b3 /cn /m /s0 /s1 /s2 /s3 net-_u2-pad15_ net-_u2-pad16_ net-_u2-pad17_ net-_u2-pad18_ net-_u2-pad19_ net-_u2-pad20_ net-_u2-pad21_ port +* u71 net-_u38-pad3_ net-_u71-pad2_ d_buffer +* u72 net-_u23-pad3_ net-_u72-pad2_ d_buffer +* u62 net-_u55-pad3_ net-_u29-pad3_ net-_u62-pad3_ d_and +* u60 net-_u38-pad3_ net-_u23-pad3_ net-_u60-pad3_ d_or +* u61 net-_u55-pad3_ net-_u23-pad3_ net-_u61-pad3_ d_and +* u70 net-_u60-pad3_ net-_u25-pad3_ net-_u70-pad3_ d_or +* u74 net-_u42-pad3_ net-_u74-pad2_ d_buffer +* u67 net-_u59-pad3_ /m net-_u67-pad3_ d_xor +* u68 net-_u61-pad3_ net-_u36-pad3_ net-_u68-pad3_ d_and +* u69 net-_u56-pad3_ net-_u62-pad3_ net-_u69-pad3_ d_or +* u66 net-_u61-pad3_ net-_u38-pad3_ net-_u66-pad3_ d_and +* u73 net-_u25-pad3_ net-_u73-pad2_ d_buffer +* u80 net-_u73-pad2_ net-_u65-pad3_ net-_u80-pad3_ d_xor +* u81 net-_u74-pad2_ net-_u67-pad3_ net-_u81-pad3_ d_xor +* u82 net-_u79-pad3_ net-_u2-pad21_ d_inverter +* u79 net-_u70-pad3_ net-_u42-pad3_ net-_u79-pad3_ d_or +* u78 net-_u69-pad3_ net-_u68-pad3_ net-_u78-pad3_ d_or +* u85 net-_u80-pad3_ net-_u2-pad18_ d_inverter +* u86 net-_u81-pad3_ net-_u2-pad19_ d_inverter +* u87 net-_u78-pad3_ net-_u2-pad20_ d_inverter +* u59 net-_u48-pad3_ net-_u53-pad3_ net-_u59-pad3_ d_or +* u65 net-_u58-pad3_ /m net-_u65-pad3_ d_xor +* u57 net-_u36-pad3_ net-_u51-pad3_ net-_u57-pad3_ d_or +* u58 net-_u54-pad3_ net-_u52-pad3_ net-_u58-pad3_ d_or +* u64 net-_u57-pad3_ /m net-_u64-pad3_ d_xor +* u63 /cn /m net-_u63-pad3_ d_xor +* u6 /s2 net-_u1-pad2_ net-_u20-pad2_ d_and +* u10 /b0 net-_u10-pad2_ d_buffer +* u1 /b1 net-_u1-pad2_ d_buffer +* u27 /a0 net-_u17-pad3_ net-_u27-pad3_ d_or +* u26 /s0 net-_u21-pad2_ net-_u26-pad3_ d_and +* u25 net-_u16-pad3_ net-_u14-pad3_ net-_u25-pad3_ d_or +* u24 /s1 /b3 net-_u24-pad3_ d_and +* u21 /b0 net-_u21-pad2_ d_buffer +* u22 net-_u12-pad3_ net-_u13-pad3_ net-_u22-pad3_ d_or +* u23 net-_u15-pad3_ net-_u11-pad3_ net-_u23-pad3_ d_or +* u30 /b3 net-_u30-pad2_ d_buffer +* u31 /b3 net-_u31-pad2_ d_buffer +* u4 /s3 /b1 net-_u20-pad1_ d_and +* u5 /s1 /b2 net-_u16-pad2_ d_and +* u3 /s1 /b1 net-_u15-pad2_ d_and +* u13 /s2 net-_u13-pad2_ net-_u13-pad3_ d_and +* u12 /s3 /b2 net-_u12-pad3_ d_and +* u11 /s0 net-_u11-pad2_ net-_u11-pad3_ d_and +* u9 /b2 net-_u14-pad2_ d_buffer +* u14 /s0 net-_u14-pad2_ net-_u14-pad3_ d_and +* u17 /s1 /b0 net-_u17-pad3_ d_and +* u16 /a2 net-_u16-pad2_ net-_u16-pad3_ d_or +* u15 /a1 net-_u15-pad2_ net-_u15-pad3_ d_or +* u7 /b1 net-_u11-pad2_ d_buffer +* u8 /b2 net-_u13-pad2_ d_buffer +* u28 net-_u18-pad3_ net-_u19-pad3_ net-_u28-pad3_ d_or +* u29 /a1 net-_u20-pad3_ net-_u29-pad3_ d_and +* u18 /s3 /b0 net-_u18-pad3_ d_and +* u19 /s2 net-_u10-pad2_ net-_u19-pad3_ d_and +* u20 net-_u20-pad1_ net-_u20-pad2_ net-_u20-pad3_ d_or +* u40 net-_u25-pad3_ net-_u29-pad3_ net-_u40-pad3_ d_and +* u46 net-_u23-pad3_ net-_u36-pad3_ net-_u46-pad3_ d_and +* u45 net-_u23-pad3_ net-_u38-pad3_ net-_u45-pad3_ d_and +* u47 net-_u37-pad3_ net-_u38-pad3_ net-_u47-pad3_ d_and +* u39 /a2 net-_u22-pad3_ net-_u39-pad3_ d_and +* u37 net-_u25-pad3_ net-_u23-pad3_ net-_u37-pad3_ d_and +* u38 net-_u27-pad3_ net-_u26-pad3_ net-_u38-pad3_ d_or +* u32 /s3 /b3 net-_u32-pad3_ d_and +* u33 /s0 net-_u30-pad2_ net-_u33-pad3_ d_and +* u35 /s2 net-_u31-pad2_ net-_u35-pad3_ d_and +* u42 net-_u34-pad3_ net-_u33-pad3_ net-_u42-pad3_ d_or +* u41 net-_u32-pad3_ net-_u35-pad3_ net-_u41-pad3_ d_or +* u34 /a3 net-_u24-pad3_ net-_u34-pad3_ d_or +* u36 /a0 net-_u28-pad3_ net-_u36-pad3_ d_and +* u44 net-_u37-pad3_ net-_u36-pad3_ net-_u44-pad3_ d_and +* u43 net-_u39-pad3_ net-_u40-pad3_ net-_u43-pad3_ d_or +* u55 net-_u42-pad3_ net-_u25-pad3_ net-_u55-pad3_ d_and +* u53 net-_u47-pad3_ /cn net-_u53-pad3_ d_and +* u54 net-_u29-pad3_ net-_u46-pad3_ net-_u54-pad3_ d_or +* u56 net-_u49-pad3_ net-_u50-pad3_ net-_u56-pad3_ d_or +* u52 net-_u45-pad3_ /cn net-_u52-pad3_ d_and +* u51 net-_u38-pad3_ /cn net-_u51-pad3_ d_and +* u50 net-_u42-pad3_ net-_u39-pad3_ net-_u50-pad3_ d_and +* u48 net-_u43-pad3_ net-_u44-pad3_ net-_u48-pad3_ d_or +* u49 /a3 net-_u41-pad3_ net-_u49-pad3_ d_and +a1 [net-_u72-pad2_ net-_u64-pad3_ ] net-_u76-pad3_ u76 +a2 [net-_u66-pad3_ /cn ] net-_u77-pad3_ u77 +a3 [net-_u71-pad2_ net-_u63-pad3_ ] net-_u75-pad3_ u75 +a4 net-_u76-pad3_ net-_u2-pad17_ u84 +a5 net-_u75-pad3_ net-_u2-pad16_ u83 +a6 [net-_u77-pad3_ net-_u78-pad3_ ] net-_u2-pad15_ u88 +a7 net-_u38-pad3_ net-_u71-pad2_ u71 +a8 net-_u23-pad3_ net-_u72-pad2_ u72 +a9 [net-_u55-pad3_ net-_u29-pad3_ ] net-_u62-pad3_ u62 +a10 [net-_u38-pad3_ net-_u23-pad3_ ] net-_u60-pad3_ u60 +a11 [net-_u55-pad3_ net-_u23-pad3_ ] net-_u61-pad3_ u61 +a12 [net-_u60-pad3_ net-_u25-pad3_ ] net-_u70-pad3_ u70 +a13 net-_u42-pad3_ net-_u74-pad2_ u74 +a14 [net-_u59-pad3_ /m ] net-_u67-pad3_ u67 +a15 [net-_u61-pad3_ net-_u36-pad3_ ] net-_u68-pad3_ u68 +a16 [net-_u56-pad3_ net-_u62-pad3_ ] net-_u69-pad3_ u69 +a17 [net-_u61-pad3_ net-_u38-pad3_ ] net-_u66-pad3_ u66 +a18 net-_u25-pad3_ net-_u73-pad2_ u73 +a19 [net-_u73-pad2_ net-_u65-pad3_ ] net-_u80-pad3_ u80 +a20 [net-_u74-pad2_ net-_u67-pad3_ ] net-_u81-pad3_ u81 +a21 net-_u79-pad3_ net-_u2-pad21_ u82 +a22 [net-_u70-pad3_ net-_u42-pad3_ ] net-_u79-pad3_ u79 +a23 [net-_u69-pad3_ net-_u68-pad3_ ] net-_u78-pad3_ u78 +a24 net-_u80-pad3_ net-_u2-pad18_ u85 +a25 net-_u81-pad3_ net-_u2-pad19_ u86 +a26 net-_u78-pad3_ net-_u2-pad20_ u87 +a27 [net-_u48-pad3_ net-_u53-pad3_ ] net-_u59-pad3_ u59 +a28 [net-_u58-pad3_ /m ] net-_u65-pad3_ u65 +a29 [net-_u36-pad3_ net-_u51-pad3_ ] net-_u57-pad3_ u57 +a30 [net-_u54-pad3_ net-_u52-pad3_ ] net-_u58-pad3_ u58 +a31 [net-_u57-pad3_ /m ] net-_u64-pad3_ u64 +a32 [/cn /m ] net-_u63-pad3_ u63 +a33 [/s2 net-_u1-pad2_ ] net-_u20-pad2_ u6 +a34 /b0 net-_u10-pad2_ u10 +a35 /b1 net-_u1-pad2_ u1 +a36 [/a0 net-_u17-pad3_ ] net-_u27-pad3_ u27 +a37 [/s0 net-_u21-pad2_ ] net-_u26-pad3_ u26 +a38 [net-_u16-pad3_ net-_u14-pad3_ ] net-_u25-pad3_ u25 +a39 [/s1 /b3 ] net-_u24-pad3_ u24 +a40 /b0 net-_u21-pad2_ u21 +a41 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u22-pad3_ u22 +a42 [net-_u15-pad3_ net-_u11-pad3_ ] net-_u23-pad3_ u23 +a43 /b3 net-_u30-pad2_ u30 +a44 /b3 net-_u31-pad2_ u31 +a45 [/s3 /b1 ] net-_u20-pad1_ u4 +a46 [/s1 /b2 ] net-_u16-pad2_ u5 +a47 [/s1 /b1 ] net-_u15-pad2_ u3 +a48 [/s2 net-_u13-pad2_ ] net-_u13-pad3_ u13 +a49 [/s3 /b2 ] net-_u12-pad3_ u12 +a50 [/s0 net-_u11-pad2_ ] net-_u11-pad3_ u11 +a51 /b2 net-_u14-pad2_ u9 +a52 [/s0 net-_u14-pad2_ ] net-_u14-pad3_ u14 +a53 [/s1 /b0 ] net-_u17-pad3_ u17 +a54 [/a2 net-_u16-pad2_ ] net-_u16-pad3_ u16 +a55 [/a1 net-_u15-pad2_ ] net-_u15-pad3_ u15 +a56 /b1 net-_u11-pad2_ u7 +a57 /b2 net-_u13-pad2_ u8 +a58 [net-_u18-pad3_ net-_u19-pad3_ ] net-_u28-pad3_ u28 +a59 [/a1 net-_u20-pad3_ ] net-_u29-pad3_ u29 +a60 [/s3 /b0 ] net-_u18-pad3_ u18 +a61 [/s2 net-_u10-pad2_ ] net-_u19-pad3_ u19 +a62 [net-_u20-pad1_ net-_u20-pad2_ ] net-_u20-pad3_ u20 +a63 [net-_u25-pad3_ net-_u29-pad3_ ] net-_u40-pad3_ u40 +a64 [net-_u23-pad3_ net-_u36-pad3_ ] net-_u46-pad3_ u46 +a65 [net-_u23-pad3_ net-_u38-pad3_ ] net-_u45-pad3_ u45 +a66 [net-_u37-pad3_ net-_u38-pad3_ ] net-_u47-pad3_ u47 +a67 [/a2 net-_u22-pad3_ ] net-_u39-pad3_ u39 +a68 [net-_u25-pad3_ net-_u23-pad3_ ] net-_u37-pad3_ u37 +a69 [net-_u27-pad3_ net-_u26-pad3_ ] net-_u38-pad3_ u38 +a70 [/s3 /b3 ] net-_u32-pad3_ u32 +a71 [/s0 net-_u30-pad2_ ] net-_u33-pad3_ u33 +a72 [/s2 net-_u31-pad2_ ] net-_u35-pad3_ u35 +a73 [net-_u34-pad3_ net-_u33-pad3_ ] net-_u42-pad3_ u42 +a74 [net-_u32-pad3_ net-_u35-pad3_ ] net-_u41-pad3_ u41 +a75 [/a3 net-_u24-pad3_ ] net-_u34-pad3_ u34 +a76 [/a0 net-_u28-pad3_ ] net-_u36-pad3_ u36 +a77 [net-_u37-pad3_ net-_u36-pad3_ ] net-_u44-pad3_ u44 +a78 [net-_u39-pad3_ net-_u40-pad3_ ] net-_u43-pad3_ u43 +a79 [net-_u42-pad3_ net-_u25-pad3_ ] net-_u55-pad3_ u55 +a80 [net-_u47-pad3_ /cn ] net-_u53-pad3_ u53 +a81 [net-_u29-pad3_ net-_u46-pad3_ ] net-_u54-pad3_ u54 +a82 [net-_u49-pad3_ net-_u50-pad3_ ] net-_u56-pad3_ u56 +a83 [net-_u45-pad3_ /cn ] net-_u52-pad3_ u52 +a84 [net-_u38-pad3_ /cn ] net-_u51-pad3_ u51 +a85 [net-_u42-pad3_ net-_u39-pad3_ ] net-_u50-pad3_ u50 +a86 [net-_u43-pad3_ net-_u44-pad3_ ] net-_u48-pad3_ u48 +a87 [/a3 net-_u41-pad3_ ] net-_u49-pad3_ u49 +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u76 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u77 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u75 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u84 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u83 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u88 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u71 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u72 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u62 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u60 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u61 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u70 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u74 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u67 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u68 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u69 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u66 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u73 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u80 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u81 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u82 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u79 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u78 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u85 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u86 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u87 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u59 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u65 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u57 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u58 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u64 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u63 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u10 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u1 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u27 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u25 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u21 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u22 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u30 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u31 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u16 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u15 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u8 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u28 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u29 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u20 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u40 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u46 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u45 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u47 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u39 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u37 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u38 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u32 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u33 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u35 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u42 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u41 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u34 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u36 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u44 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u43 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u55 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u53 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u54 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u56 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u52 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u51 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u50 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u48 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN74S281/SN74S281.kicad_sch b/library/SubcircuitLibrary/SN74S281/SN74S281.kicad_sch new file mode 100644 index 000000000..2a5a13dbe --- /dev/null +++ b/library/SubcircuitLibrary/SN74S281/SN74S281.kicad_sch @@ -0,0 +1,5241 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 6ca99238-340f-4f54-a8fd-b216c49db056) + + (paper "User" 931.799 479.4) + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_buffer" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 0 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_buffer_0_1" + (polyline + (pts + (xy -7.62 5.08) + (xy -7.62 -5.08) + (xy 11.43 0) + (xy -7.62 5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_buffer_1_1" + (pin input line (at -12.7 0 0) (length 5.08) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 0 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_xor" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_xor_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -5.08 -1.27) (mid -4.3109 1.27) (end -5.08 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.27) + (xy -5.08 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 3.81) + (xy -5.08 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_xor_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.0922 1.0922)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.0922 1.0922)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 0.9906 0.9906)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 412.75 205.74) (diameter 0) (color 0 0 0 0) + (uuid 009b73dc-76b2-4f6c-857e-7c598a7064d2) + ) + (junction (at 521.97 195.58) (diameter 0) (color 0 0 0 0) + (uuid 15b399f4-5368-45e6-bb6c-dff9fc793dc4) + ) + (junction (at 462.28 125.73) (diameter 0) (color 0 0 0 0) + (uuid 22bab6fe-cc43-41ed-bbeb-3dfe5717b268) + ) + (junction (at 577.85 162.56) (diameter 0) (color 0 0 0 0) + (uuid 40f79cfc-5d31-4009-b4b9-c672d5ecc6f2) + ) + (junction (at 568.96 180.34) (diameter 0) (color 0 0 0 0) + (uuid 54a7e0c1-3fce-4a2b-8e75-f424231206b3) + ) + (junction (at 421.64 132.08) (diameter 0) (color 0 0 0 0) + (uuid 566af7a8-c9d1-4fbb-8b4b-c1f06fa9ac35) + ) + (junction (at 640.08 217.17) (diameter 0) (color 0 0 0 0) + (uuid 5dd1d617-f077-4a75-867d-9ac19b587314) + ) + (junction (at 469.9 143.51) (diameter 0) (color 0 0 0 0) + (uuid 65b93ff5-2d80-4dbb-953b-a369e6af465f) + ) + (junction (at 462.28 207.01) (diameter 0) (color 0 0 0 0) + (uuid 6672d53c-23a6-4464-90d5-38de276c71fb) + ) + (junction (at 520.7 236.22) (diameter 0) (color 0 0 0 0) + (uuid 7bce6ba5-7509-4bda-ac6a-c05692756708) + ) + (junction (at 411.48 156.21) (diameter 0) (color 0 0 0 0) + (uuid 82a8359b-9a04-478b-8a02-624d7e8208e3) + ) + (junction (at 580.39 233.68) (diameter 0) (color 0 0 0 0) + (uuid 82ccf76a-06e7-4f11-8013-164446926ace) + ) + (junction (at 709.93 200.66) (diameter 0) (color 0 0 0 0) + (uuid 8ab7eca5-72ec-4b77-9c18-ae430de61153) + ) + (junction (at 520.7 181.61) (diameter 0) (color 0 0 0 0) + (uuid 8c508bbd-2176-4a07-bb8a-87fe40db8489) + ) + (junction (at 516.89 214.63) (diameter 0) (color 0 0 0 0) + (uuid 92be1a26-ec58-433f-9109-f1b380263e9a) + ) + (junction (at 527.05 163.83) (diameter 0) (color 0 0 0 0) + (uuid 942da304-5aa6-49a9-be26-489e06cdc77b) + ) + (junction (at 361.95 190.5) (diameter 0) (color 0 0 0 0) + (uuid ba765c70-ce39-40df-89e2-d98ec487ab92) + ) + (junction (at 474.98 233.68) (diameter 0) (color 0 0 0 0) + (uuid badfd3dd-3160-4468-bb83-9a9151408a86) + ) + (junction (at 356.87 220.98) (diameter 0) (color 0 0 0 0) + (uuid bff66529-d21e-4008-836a-5a8d23b34755) + ) + (junction (at 411.48 186.69) (diameter 0) (color 0 0 0 0) + (uuid c059c067-32e4-480e-9ebe-3269e8c53e73) + ) + (junction (at 417.83 184.15) (diameter 0) (color 0 0 0 0) + (uuid c1cf9112-1dba-4256-b021-2475a947b40c) + ) + (junction (at 341.63 187.96) (diameter 0) (color 0 0 0 0) + (uuid c468c53d-0927-4fe0-b68b-1cafad7f32ce) + ) + (junction (at 412.75 168.91) (diameter 0) (color 0 0 0 0) + (uuid c86097e9-624d-4b66-8a2f-1e709bd48d73) + ) + (junction (at 417.83 193.04) (diameter 0) (color 0 0 0 0) + (uuid cb3c11a9-8c49-4953-9e98-73aa35e69ca9) + ) + (junction (at 468.63 231.14) (diameter 0) (color 0 0 0 0) + (uuid e5df1272-4ceb-4c02-9cd1-e175f50b8ce8) + ) + (junction (at 410.21 189.23) (diameter 0) (color 0 0 0 0) + (uuid f0ae2575-fe83-4fea-860e-9fd0efb1ab91) + ) + (junction (at 360.68 231.14) (diameter 0) (color 0 0 0 0) + (uuid f2d3d9a3-d319-435e-a70c-813f6f8ce74c) + ) + + (wire (pts (xy 278.13 226.06) (xy 278.13 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0000b893-8792-4fc0-97bd-46456b8a2cd1) + ) + (wire (pts (xy 238.76 173.99) (xy 246.38 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0116d913-ec5f-4575-a643-9f76e6e236c7) + ) + (wire (pts (xy 520.7 236.22) (xy 626.11 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0132f60f-0ee5-482b-b61e-8357c27d3821) + ) + (wire (pts (xy 412.75 157.48) (xy 412.75 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 017f1b75-214f-47f3-b674-3b3e14f9f206) + ) + (wire (pts (xy 273.05 189.23) (xy 273.05 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 035ac952-d46e-432e-97b8-6cfb6173e85a) + ) + (wire (pts (xy 356.87 220.98) (xy 365.76 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03a5ce5d-9816-42a2-adff-5bf22276ef83) + ) + (wire (pts (xy 510.54 104.14) (xy 529.59 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07646291-4efb-452f-9f47-d9f9a0952046) + ) + (wire (pts (xy 462.28 125.73) (xy 477.52 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07bc6603-dc57-4bd4-a999-7b7480cd2378) + ) + (wire (pts (xy 411.48 186.69) (xy 411.48 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07bf7fbf-6d35-47c0-81ed-3822f359728d) + ) + (wire (pts (xy 704.85 200.66) (xy 709.93 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07f2d90c-1cb3-457a-93c7-ca61f82a8289) + ) + (wire (pts (xy 424.18 203.2) (xy 429.26 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0862191e-6ae8-4c6d-a2c0-75339d76e9c7) + ) + (wire (pts (xy 387.35 105.41) (xy 387.35 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a799baf-ff4d-4078-a64e-37bd9d40b15a) + ) + (wire (pts (xy 464.82 175.26) (xy 480.06 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ae3ae4b-b757-4512-a25f-6c5b3db69f91) + ) + (wire (pts (xy 461.01 133.35) (xy 461.01 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b64db16-b59b-425c-b5cf-6b8a9752c46c) + ) + (wire (pts (xy 676.91 185.42) (xy 683.26 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bbb3634-669f-447b-b3cf-dab60c70956a) + ) + (wire (pts (xy 450.85 185.42) (xy 458.47 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bca2e36-f8cd-4906-9c82-6505c9c3d778) + ) + (wire (pts (xy 448.31 104.14) (xy 462.28 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bdcee35-f8ce-4afb-891b-b701c7137343) + ) + (wire (pts (xy 359.41 142.24) (xy 359.41 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0cb126bc-6fdf-4a63-998b-f3d374320479) + ) + (wire (pts (xy 640.08 237.49) (xy 640.08 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d88249f-a565-449f-82cc-317a209bf40d) + ) + (wire (pts (xy 356.87 233.68) (xy 474.98 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e310a5c-7193-405f-9922-4f29da308847) + ) + (wire (pts (xy 162.56 147.32) (xy 162.56 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ece1783-fa73-4af6-a704-cef4d2e129ad) + ) + (wire (pts (xy 462.28 207.01) (xy 462.28 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f2af6b8-13fb-4975-8854-3ca2d50f91fb) + ) + (wire (pts (xy 739.14 200.66) (xy 756.92 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0f875c06-7620-452a-a01c-04d9c998ec14) + ) + (wire (pts (xy 218.44 105.41) (xy 273.05 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10b82094-aa90-4d36-acb0-c8078c52ac37) + ) + (wire (pts (xy 554.99 196.85) (xy 580.39 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 113c598d-a411-443b-bb65-30095b3f45c1) + ) + (wire (pts (xy 462.28 104.14) (xy 462.28 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12213084-a942-4cbc-825f-7c444ada5696) + ) + (wire (pts (xy 675.64 130.81) (xy 681.99 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12f19d6e-9f44-4e3c-9295-aeda5683e49d) + ) + (wire (pts (xy 321.31 124.46) (xy 328.93 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 133d75ff-b568-4990-9fc1-5a70f63b21e0) + ) + (wire (pts (xy 704.85 113.03) (xy 717.55 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13d55f91-fbb3-4ed6-949b-a38760610709) + ) + (wire (pts (xy 575.31 143.51) (xy 581.66 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13d66426-940e-4d4f-b310-02a848dfafd5) + ) + (wire (pts (xy 607.06 193.04) (xy 610.87 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13e99870-b0f4-40d4-a3b4-226d52f7a196) + ) + (wire (pts (xy 360.68 171.45) (xy 365.76 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 142750ea-f411-43a4-b181-e9a06ed09105) + ) + (wire (pts (xy 412.75 205.74) (xy 424.18 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14955bee-0c9b-40e8-a7a9-ae83d5bc1ea0) + ) + (wire (pts (xy 575.31 113.03) (xy 581.66 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14cbf475-d668-43d9-a891-c6de6088c5d8) + ) + (wire (pts (xy 274.32 140.97) (xy 279.4 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1568db16-2ca9-4c29-8a60-6d20d4fd8853) + ) + (wire (pts (xy 448.31 119.38) (xy 462.28 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15c6c3ce-4e43-4d25-841b-e060c0cb979b) + ) + (wire (pts (xy 219.71 242.57) (xy 278.13 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16170403-ad47-4a7f-9a9e-fcb75fabb5d5) + ) + (wire (pts (xy 387.35 156.21) (xy 411.48 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16710076-c75b-4785-af32-15bcce3bd7a5) + ) + (wire (pts (xy 191.77 172.72) (xy 195.58 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16833c59-9fef-41c6-91b8-735ecd5db40d) + ) + (wire (pts (xy 304.8 196.85) (xy 360.68 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 171bb121-c723-4051-9a9f-23615e2378f6) + ) + (wire (pts (xy 580.39 233.68) (xy 627.38 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17543481-7d47-4194-839c-334843644d5a) + ) + (wire (pts (xy 575.31 120.65) (xy 575.31 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 177159ea-0dcf-41c3-8900-c385405a6cd6) + ) + (wire (pts (xy 358.14 85.09) (xy 363.22 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1792c685-afa7-4ee0-8508-469cb0097096) + ) + (wire (pts (xy 116.84 181.61) (xy 121.92 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17c0522e-bd86-4216-aeb0-61f835abf7a3) + ) + (wire (pts (xy 732.79 113.03) (xy 764.54 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17cadf97-56e3-4e28-88f9-69a2ba4d3464) + ) + (wire (pts (xy 462.28 125.73) (xy 462.28 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17f7bfbe-5d1b-4799-ae27-8d02637a8fc2) + ) + (wire (pts (xy 568.96 160.02) (xy 582.93 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1832caba-5328-4d06-bdf5-ee6598337778) + ) + (wire (pts (xy 359.41 138.43) (xy 363.22 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 192d0dc5-3862-4cc5-954d-900a6a3da586) + ) + (wire (pts (xy 746.76 147.32) (xy 765.81 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19c8a323-23c2-45f8-8273-3fbaa0e3437f) + ) + (wire (pts (xy 449.58 151.13) (xy 459.74 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1af111d4-b9b3-45ac-bb52-cf4c0c66b958) + ) + (wire (pts (xy 421.64 128.27) (xy 477.52 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b796819-4f87-4d62-99ee-041c5497d679) + ) + (wire (pts (xy 311.15 172.72) (xy 311.15 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b7fe094-b4cb-4ef9-a47d-be48d69d5c2b) + ) + (wire (pts (xy 408.94 222.25) (xy 408.94 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e6d5993-bf1e-428d-b324-e5c9894d8ebf) + ) + (wire (pts (xy 640.08 217.17) (xy 681.99 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f416e8a-6ab8-4789-bf49-0558b74ae136) + ) + (wire (pts (xy 527.05 163.83) (xy 530.86 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2057ef86-86b7-486f-9667-f972ead7357c) + ) + (wire (pts (xy 147.32 243.84) (xy 196.85 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20a59146-a744-48e4-8fa5-0db7c056d1de) + ) + (wire (pts (xy 123.19 266.7) (xy 128.27 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 226118ec-b997-4d67-86dc-3aeb923bed26) + ) + (wire (pts (xy 676.91 166.37) (xy 683.26 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 234cb42d-af72-4e5a-a233-897095b999d7) + ) + (wire (pts (xy 637.54 223.52) (xy 637.54 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 239c9fbc-b224-48c3-9d77-d4a40d5cae70) + ) + (wire (pts (xy 219.71 205.74) (xy 278.13 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23ac9ba9-797d-47f3-b3ae-c1c6153c661a) + ) + (wire (pts (xy 628.65 161.29) (xy 628.65 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23e0c33a-8fa2-48b7-b8a8-a008108c944d) + ) + (wire (pts (xy 361.95 193.04) (xy 417.83 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24cf3186-ea41-4911-9e29-d73e121e33f7) + ) + (wire (pts (xy 116.84 148.59) (xy 121.92 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 252b39ea-6a1c-44ad-b79d-31f51581ee45) + ) + (wire (pts (xy 172.72 274.32) (xy 177.8 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 257fedf8-9527-4877-8c2d-4da953dcfaa3) + ) + (wire (pts (xy 149.86 241.3) (xy 196.85 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 265cd2a9-7fe8-447c-9a1f-c187b838d2d1) + ) + (wire (pts (xy 520.7 181.61) (xy 520.7 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27c3f2ed-5878-4e12-8306-9f71feac07c0) + ) + (wire (pts (xy 458.47 194.31) (xy 480.06 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 293227ca-80a9-402b-b1d4-ae3366c5f935) + ) + (wire (pts (xy 468.63 231.14) (xy 468.63 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29cad2aa-da76-4385-a23c-bdc4adf592cc) + ) + (wire (pts (xy 387.35 205.74) (xy 412.75 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a2576a6-45a0-41c7-b964-c7f6c3c47ede) + ) + (wire (pts (xy 626.11 130.81) (xy 646.43 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a537dde-e778-4a36-b219-03179e354af1) + ) + (wire (pts (xy 118.11 162.56) (xy 123.19 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b936a47-cda8-4411-a109-de64aab69967) + ) + (wire (pts (xy 278.13 214.63) (xy 281.94 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c05a5bc-c2d1-468b-b192-f9d08b9d8723) + ) + (wire (pts (xy 756.92 200.66) (xy 756.92 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c68f024-0c0e-4d94-b9ae-a770dbd16a0b) + ) + (wire (pts (xy 580.39 209.55) (xy 584.2 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d9f6362-a6c0-4921-9330-2277ec2c239f) + ) + (wire (pts (xy 568.96 194.31) (xy 568.96 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2dc07e60-b8e5-4d6d-8505-2b4d1452d337) + ) + (wire (pts (xy 421.64 102.87) (xy 425.45 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30a62a99-01a8-4633-9180-a8d504847eda) + ) + (wire (pts (xy 764.54 113.03) (xy 764.54 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31e7df3f-af6b-432b-9d1c-113e36e3bb1f) + ) + (wire (pts (xy 356.87 220.98) (xy 356.87 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 32d8ca3c-e5f0-4977-8de2-33518058f3a4) + ) + (wire (pts (xy 499.11 95.25) (xy 509.27 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34a63845-1a3e-44a6-801a-9939d7e747ef) + ) + (wire (pts (xy 624.84 166.37) (xy 624.84 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34b1a28f-91c5-4f90-a33c-5bb9267eef90) + ) + (wire (pts (xy 218.44 173.99) (xy 223.52 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34d9c175-dff1-4dff-8f5d-dce122933c7d) + ) + (wire (pts (xy 410.21 189.23) (xy 410.21 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35f4452b-f6dc-4b10-85b5-8a73cc92a64d) + ) + (wire (pts (xy 217.17 124.46) (xy 252.73 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37b02f37-3ed5-4fd3-bd36-49c134f1a377) + ) + (wire (pts (xy 576.58 177.8) (xy 582.93 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 386bf6a7-f278-45d7-8744-744d400acd9f) + ) + (wire (pts (xy 464.82 201.93) (xy 464.82 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38817aa8-75aa-4ff7-a976-0c893c749457) + ) + (wire (pts (xy 604.52 144.78) (xy 629.92 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38976cbb-00be-44cc-be2b-2dcef735a678) + ) + (wire (pts (xy 708.66 148.59) (xy 708.66 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a818dd5-9ad7-42d9-b0c6-e5dec9d09770) + ) + (wire (pts (xy 577.85 166.37) (xy 624.84 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cedfbc6-a8a1-4241-8266-f18ae63b4f42) + ) + (wire (pts (xy 358.14 121.92) (xy 363.22 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d7c057f-c1c7-4913-ad74-89e7a9f4723d) + ) + (wire (pts (xy 462.28 237.49) (xy 640.08 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e15ac37-2505-4974-8a0d-cb15399bd36f) + ) + (wire (pts (xy 675.64 133.35) (xy 681.99 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e304985-0781-4a46-8039-c6203ae11e6b) + ) + (wire (pts (xy 610.87 201.93) (xy 681.99 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e4316f6-967c-42cf-b68c-641fa1f710f0) + ) + (wire (pts (xy 704.85 132.08) (xy 717.55 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f43fce2-7100-45da-9a24-7663fb1d058d) + ) + (wire (pts (xy 469.9 143.51) (xy 469.9 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f649467-8288-41c1-9da4-a6acc5c1c10b) + ) + (wire (pts (xy 461.01 157.48) (xy 412.75 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4026637c-ce84-451f-9999-a5ee546ff4b5) + ) + (wire (pts (xy 468.63 231.14) (xy 527.05 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4055d774-f739-4b8a-a6f1-c9fab92392bb) + ) + (wire (pts (xy 509.27 151.13) (xy 509.27 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42f61372-0aac-487f-9d17-4cc69473f011) + ) + (wire (pts (xy 223.52 173.99) (xy 223.52 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43573ab2-3114-4d45-b67a-738327f61ff7) + ) + (wire (pts (xy 568.96 214.63) (xy 516.89 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43da23d3-f523-4c52-8062-d6d9f9198ae0) + ) + (wire (pts (xy 627.38 163.83) (xy 647.7 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44b8e8b2-aa93-4cca-9379-54149b277201) + ) + (wire (pts (xy 511.81 106.68) (xy 529.59 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44e949e7-f01f-41fe-a773-a1801e77b831) + ) + (wire (pts (xy 189.23 125.73) (xy 194.31 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47141e11-3036-4d89-a704-393e036adbc4) + ) + (wire (pts (xy 502.92 193.04) (xy 515.62 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47355234-c900-467a-bd8a-59af864c63ca) + ) + (wire (pts (xy 521.97 195.58) (xy 521.97 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48d361e6-e439-48d6-ab58-6bb58ad5f241) + ) + (wire (pts (xy 314.96 173.99) (xy 365.76 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48e7dabf-4101-4892-bd0d-46fbfade99a0) + ) + (wire (pts (xy 500.38 127) (xy 511.81 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49c89aef-6e4a-4b97-8343-9adfb50270d2) + ) + (wire (pts (xy 520.7 236.22) (xy 520.7 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a8b13c6-d3fd-49bf-abd6-b085007f24c5) + ) + (wire (pts (xy 344.17 215.9) (xy 344.17 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b68f61a-d1c8-4d11-9d50-d715efb78c67) + ) + (wire (pts (xy 676.91 189.23) (xy 676.91 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b92ce4a-6d0b-43c0-b7fd-eb26306ef6f5) + ) + (wire (pts (xy 575.31 146.05) (xy 581.66 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e27ed04-4671-4de1-be01-da0ae436d2d6) + ) + (wire (pts (xy 570.23 151.13) (xy 570.23 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e474144-6881-4245-b286-d406faadc8a5) + ) + (wire (pts (xy 628.65 147.32) (xy 681.99 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4eb52d97-8d3f-4d8f-af19-78507e8f43f7) + ) + (wire (pts (xy 553.72 180.34) (xy 568.96 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ef0d692-610d-48d4-924e-1f6aea83ff47) + ) + (wire (pts (xy 509.27 149.86) (xy 530.86 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f3b7619-dad9-4c0d-91be-54639125f28a) + ) + (wire (pts (xy 360.68 231.14) (xy 360.68 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 505d5cf3-32df-4336-a051-ad3de4954a0d) + ) + (wire (pts (xy 704.85 215.9) (xy 715.01 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 509b2a62-6c13-411e-93cd-eaa752dd27a1) + ) + (wire (pts (xy 758.19 215.9) (xy 758.19 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5207e400-1f35-4e50-9274-bd7c0ac49970) + ) + (wire (pts (xy 190.5 85.09) (xy 195.58 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52e087cf-9e53-476b-84a9-fa4634daf6e6) + ) + (wire (pts (xy 248.92 157.48) (xy 279.4 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53879830-29ce-4bb4-8925-d932f168df1b) + ) + (wire (pts (xy 521.97 208.28) (xy 521.97 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53a41b16-ef2a-4d03-ad4a-0a25b8acf8b4) + ) + (wire (pts (xy 709.93 148.59) (xy 723.9 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 540fb478-24c0-433b-ac79-9d1845251a4d) + ) + (wire (pts (xy 387.35 105.41) (xy 425.45 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55274014-26d8-4491-9c55-88f16c857fbe) + ) + (wire (pts (xy 316.23 127) (xy 316.23 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55ce8cee-5e9d-4f4a-9e2f-80f389bbb218) + ) + (wire (pts (xy 341.63 156.21) (xy 341.63 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5746b797-cb8b-4539-920b-165051e154f7) + ) + (wire (pts (xy 386.08 86.36) (xy 421.64 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57b3ff2c-9980-47cb-b7e8-ff9d08ad2e0b) + ) + (wire (pts (xy 252.73 128.27) (xy 278.13 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 57cdd62f-924b-4fce-888f-135475272d53) + ) + (wire (pts (xy 607.06 223.52) (xy 637.54 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5858eae2-1ff5-41b3-9019-00ff054a5b1a) + ) + (wire (pts (xy 580.39 233.68) (xy 474.98 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58bfb53c-cda5-4a36-9001-07ec1ec0b927) + ) + (wire (pts (xy 421.64 120.65) (xy 425.45 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58ca85e1-93e3-4546-a72f-9cae7ab7a27e) + ) + (wire (pts (xy 675.64 111.76) (xy 681.99 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58df6366-1e5b-47c6-bef5-b0e6fccdf2a0) + ) + (wire (pts (xy 190.5 106.68) (xy 195.58 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5962812b-d3dd-4c5b-a8ab-6a2c68903317) + ) + (wire (pts (xy 734.06 184.15) (xy 755.65 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59870acd-1d9e-4de5-8919-4b6e51a4c95a) + ) + (wire (pts (xy 417.83 193.04) (xy 417.83 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a3a33e5-35f0-42e1-9d3c-681dc7334204) + ) + (wire (pts (xy 640.08 182.88) (xy 647.7 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5afe69bf-1a2a-4a75-adcf-4211ca713ccf) + ) + (wire (pts (xy 765.81 152.4) (xy 763.27 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b5b43dd-1a53-4954-ac02-d0683b62eb5d) + ) + (wire (pts (xy 358.14 87.63) (xy 363.22 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b7ee139-661a-4a9f-a5b1-67fbda3d0175) + ) + (wire (pts (xy 521.97 195.58) (xy 532.13 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c0f73ab-0001-4690-9b5d-b238dc23c6d6) + ) + (wire (pts (xy 388.62 222.25) (xy 408.94 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ca8ca35-67ed-4c40-b5d4-cc1ea29cf31b) + ) + (wire (pts (xy 509.27 95.25) (xy 509.27 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d59a6f1-32c6-415c-b741-e2871a3d6d9e) + ) + (wire (pts (xy 421.64 132.08) (xy 426.72 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5de0d4a7-ca4a-49f1-aaa9-8aafe160e8f0) + ) + (wire (pts (xy 468.63 191.77) (xy 480.06 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 604d64f1-b076-4ee8-b865-1384d2dbae28) + ) + (wire (pts (xy 732.79 132.08) (xy 763.27 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60823e82-baa0-4d7b-95f4-524680fa1ff9) + ) + (wire (pts (xy 386.08 139.7) (xy 406.4 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 612ff30f-7228-408c-a643-5cc26c5bf08a) + ) + (wire (pts (xy 311.15 207.01) (xy 364.49 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 617df796-ff7c-41c9-8189-7d9cf1931afd) + ) + (wire (pts (xy 388.62 172.72) (xy 407.67 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6218eab3-d1be-4ca0-8cc6-7308a3be32f4) + ) + (wire (pts (xy 638.81 176.53) (xy 638.81 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62bffef3-b55d-4db9-9b0b-6b587db9f69b) + ) + (wire (pts (xy 510.54 110.49) (xy 510.54 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 635ce889-370c-4069-bea6-7567a4ba02ed) + ) + (wire (pts (xy 474.98 209.55) (xy 480.06 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63a79e36-e6f6-47fe-af67-ec3b59c5d1c6) + ) + (wire (pts (xy 580.39 196.85) (xy 580.39 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 670199b2-86c9-4cd5-b743-3e750e9655ab) + ) + (wire (pts (xy 474.98 177.8) (xy 480.06 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 672ce82b-b5bb-475f-8b88-4d9f299be10d) + ) + (wire (pts (xy 218.44 189.23) (xy 273.05 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67b40bbd-ea15-4249-8a8b-fd1c5285c7aa) + ) + (wire (pts (xy 123.19 271.78) (xy 128.27 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67c4d197-ebde-4eed-9005-40a037ae1737) + ) + (wire (pts (xy 580.39 224.79) (xy 584.2 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67dc326e-070f-4e48-b534-a07a0ff2d7c2) + ) + (wire (pts (xy 607.06 208.28) (xy 666.75 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6873120c-a0ac-4855-bc63-d5386a42476a) + ) + (wire (pts (xy 758.19 162.56) (xy 765.81 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6882aa79-ce83-4b0f-a19c-c5f16b663309) + ) + (wire (pts (xy 756.92 160.02) (xy 765.81 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 691ae578-067f-496f-98f6-85516a2eb485) + ) + (wire (pts (xy 359.41 154.94) (xy 364.49 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b83968c-e27b-45b3-9540-791b280fdb9c) + ) + (wire (pts (xy 515.62 193.04) (xy 515.62 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6becfe56-f8a2-469c-82a1-97f105d3308d) + ) + (wire (pts (xy 190.5 87.63) (xy 195.58 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c1d4c0c-8799-49c6-9df1-dcb1d66241fc) + ) + (wire (pts (xy 153.67 142.24) (xy 161.29 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ca16d41-df19-42a3-93f1-c6a59c08273e) + ) + (wire (pts (xy 459.74 151.13) (xy 459.74 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ca5e12b-603b-4914-88a8-3aff0f94e45d) + ) + (wire (pts (xy 519.43 152.4) (xy 530.86 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d5ff684-4881-4afe-a896-c3f862156bf3) + ) + (wire (pts (xy 461.01 93.98) (xy 476.25 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6dd97993-a94a-4669-bd41-e017ed10d297) + ) + (wire (pts (xy 359.41 140.97) (xy 363.22 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e9dc58b-bf7b-4821-a2c3-4db5c7335b61) + ) + (wire (pts (xy 146.05 204.47) (xy 147.32 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f12a177-a631-4e04-a8ed-8c744e73bf44) + ) + (wire (pts (xy 172.72 261.62) (xy 177.8 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6fd279fc-a41d-496f-9dc3-375a862c74db) + ) + (wire (pts (xy 629.92 170.18) (xy 676.91 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6fffeeb1-8f48-44dd-9b33-64c2ab46e5ce) + ) + (wire (pts (xy 676.91 149.86) (xy 681.99 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70acd5d4-ce30-46aa-bce0-237513134037) + ) + (wire (pts (xy 565.15 165.1) (xy 565.15 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71ac73a9-dd57-4619-bc9e-370306f796ef) + ) + (wire (pts (xy 410.21 200.66) (xy 410.21 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71b16597-af8e-4d9d-b786-df5084f11167) + ) + (wire (pts (xy 518.16 137.16) (xy 530.86 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71c27cec-9110-4659-8988-caf979cb0f61) + ) + (wire (pts (xy 624.84 111.76) (xy 646.43 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 722c1253-588b-479e-97dd-fc5717f5f48d) + ) + (wire (pts (xy 361.95 190.5) (xy 364.49 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7329d03e-0804-4f7a-b74c-f0dab89bc6fc) + ) + (wire (pts (xy 577.85 158.75) (xy 527.05 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 734637c8-69dc-4f04-a80f-69dcc0143b07) + ) + (wire (pts (xy 610.87 201.93) (xy 610.87 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77471bde-19ec-4937-ab0a-37f9872a3c04) + ) + (wire (pts (xy 410.21 200.66) (xy 429.26 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77b17ed9-c140-446f-ac9e-1169808cf652) + ) + (wire (pts (xy 500.38 144.78) (xy 514.35 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77fbdec2-20af-43e9-ae5a-165f487727a1) + ) + (wire (pts (xy 553.72 135.89) (xy 575.31 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78488da9-b12e-4742-a712-92ead9427142) + ) + (wire (pts (xy 604.52 129.54) (xy 612.14 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78c0a0f2-b0ca-45ae-9b38-b1b9a5accb7b) + ) + (wire (pts (xy 118.11 165.1) (xy 123.19 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 794436be-c8f1-4de7-9b2b-aa254085a94a) + ) + (wire (pts (xy 734.06 165.1) (xy 754.38 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 794e1f34-3553-472c-a316-b41ad50091d4) + ) + (wire (pts (xy 407.67 172.72) (xy 407.67 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a78249b-2600-45f7-b84a-1f104e7f6aed) + ) + (wire (pts (xy 360.68 231.14) (xy 468.63 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a9a42b2-291f-45c8-b3aa-990912e28dec) + ) + (wire (pts (xy 755.65 157.48) (xy 765.81 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ac54a85-e0cb-4bcf-a749-03e038bd4b16) + ) + (wire (pts (xy 299.72 92.71) (xy 314.96 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b7f32db-03f4-4329-84e8-e72f2e069130) + ) + (wire (pts (xy 407.67 132.08) (xy 421.64 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bc279c9-0d2c-4ca3-8c42-dd005498c1a1) + ) + (wire (pts (xy 666.75 208.28) (xy 666.75 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ce00e4c-d62d-4ad4-96cf-6ccb28dbebdb) + ) + (wire (pts (xy 172.72 266.7) (xy 177.8 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d11bb0c-5aaf-4acc-a81b-7df876e017f4) + ) + (wire (pts (xy 278.13 205.74) (xy 278.13 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d93a085-e514-4e86-bdc5-5a372de60764) + ) + (wire (pts (xy 273.05 93.98) (xy 276.86 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dc569af-6857-42f4-931e-af553050db2c) + ) + (wire (pts (xy 424.18 205.74) (xy 424.18 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7df514e9-42f6-40b3-9f8d-4e7205dc04c4) + ) + (wire (pts (xy 518.16 161.29) (xy 518.16 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ee4cf3b-aa17-42fb-aae3-f0c64a8b7a54) + ) + (wire (pts (xy 386.08 123.19) (xy 421.64 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7efb0a77-6d0f-4df4-b04c-eb411a89cbb1) + ) + (wire (pts (xy 704.85 148.59) (xy 708.66 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 807928cd-bd60-4769-a396-b75441e1c6d4) + ) + (wire (pts (xy 190.5 187.96) (xy 195.58 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82ac44c5-aecd-4b24-b082-781c9f20c7f7) + ) + (wire (pts (xy 406.4 118.11) (xy 425.45 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8313f602-06b3-4e8b-8911-1a25353291a8) + ) + (wire (pts (xy 568.96 180.34) (xy 568.96 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 842540ef-20cd-415a-bda4-5b4d79d7af66) + ) + (wire (pts (xy 360.68 223.52) (xy 365.76 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85dc7bec-8371-40da-bb10-aeec94d8a675) + ) + (wire (pts (xy 219.71 226.06) (xy 278.13 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85efd2e9-cbbd-4a4f-ad35-901f59e9b071) + ) + (wire (pts (xy 638.81 189.23) (xy 676.91 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 865e944c-22a5-4938-992f-5485340e30ee) + ) + (wire (pts (xy 605.79 176.53) (xy 638.81 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 879fdfab-ddd9-44f5-80a2-1d30bfd1b809) + ) + (wire (pts (xy 123.19 261.62) (xy 128.27 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8824070c-c791-4cc4-aca1-a802a66172a0) + ) + (wire (pts (xy 566.42 207.01) (xy 584.2 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88466e26-7b24-48e9-a443-6075cd97af2e) + ) + (wire (pts (xy 676.91 163.83) (xy 683.26 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8923bba5-6215-46e6-9bef-aca88f2c1dc8) + ) + (wire (pts (xy 755.65 184.15) (xy 755.65 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b6b760d-af98-402f-8831-8f7c903ef87d) + ) + (wire (pts (xy 568.96 194.31) (xy 584.2 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8be17b23-c1ce-45ba-ba05-de7f96ed1764) + ) + (wire (pts (xy 676.91 182.88) (xy 683.26 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c7808b5-fe03-4c32-8442-e36939b00d47) + ) + (wire (pts (xy 223.52 154.94) (xy 279.4 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c8ad582-6ada-4f88-adc4-1498d882a586) + ) + (wire (pts (xy 278.13 195.58) (xy 281.94 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d1d0a66-beb4-4f55-8cfa-b5820da149bd) + ) + (wire (pts (xy 499.11 110.49) (xy 510.54 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ec587ed-eead-4d88-9e44-a8ff928ab877) + ) + (wire (pts (xy 521.97 179.07) (xy 530.86 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f41b197-1f70-4c32-8d96-6b14166e9b12) + ) + (wire (pts (xy 575.31 115.57) (xy 581.66 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fb4fa66-d2af-4810-9406-1fa45f86454f) + ) + (wire (pts (xy 408.94 134.62) (xy 426.72 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fe43925-d448-4506-aea4-93a3cf0723d0) + ) + (wire (pts (xy 123.19 259.08) (xy 128.27 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 902ddf63-4d99-43b0-86b2-467b9529c498) + ) + (wire (pts (xy 314.96 173.99) (xy 314.96 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90958e7a-680c-494e-8fa3-29008c6aacaf) + ) + (wire (pts (xy 519.43 176.53) (xy 519.43 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91c6b794-1707-4d51-85d1-0747fdeecdf2) + ) + (wire (pts (xy 123.19 276.86) (xy 128.27 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91d0322d-6c5a-43a0-932f-2fab337858df) + ) + (wire (pts (xy 172.72 269.24) (xy 177.8 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9491a2ce-8491-43cc-9b09-b23f6f3f4344) + ) + (wire (pts (xy 520.7 181.61) (xy 530.86 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95f1d5fa-9403-4f07-8acd-e14e4aa189e4) + ) + (wire (pts (xy 162.56 163.83) (xy 162.56 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96288b8f-bdca-4a50-bbe7-591c821026c4) + ) + (wire (pts (xy 763.27 132.08) (xy 763.27 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 972a784f-b763-4356-9ad9-e9e27202b080) + ) + (wire (pts (xy 474.98 233.68) (xy 474.98 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 984cbb8d-bafe-466d-8630-3378c5c018d2) + ) + (wire (pts (xy 162.56 161.29) (xy 195.58 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 990dd8dc-57de-4414-bf55-4ce307beb249) + ) + (wire (pts (xy 754.38 154.94) (xy 765.81 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9962cad1-de20-42f3-aade-c9525fa9dadd) + ) + (wire (pts (xy 154.94 227.33) (xy 162.56 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a6358f5-a899-447e-8a22-6b70e85407bc) + ) + (wire (pts (xy 341.63 220.98) (xy 341.63 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ce01c84-73cf-404c-9e2c-cc3b94848d56) + ) + (wire (pts (xy 273.05 86.36) (xy 273.05 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ce82e7f-bded-4ef6-9732-12eaf275f9a1) + ) + (wire (pts (xy 411.48 186.69) (xy 411.48 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d1c143d-3037-48f7-adb0-b3ee407010a6) + ) + (wire (pts (xy 553.72 165.1) (xy 565.15 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9dabd745-647e-4c8c-9b29-79efec65ad12) + ) + (wire (pts (xy 708.66 146.05) (xy 723.9 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e4e33b5-3a73-4a88-9ab1-b929aa65229a) + ) + (wire (pts (xy 190.5 190.5) (xy 195.58 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e8a8710-78e7-458a-bc42-fb15cdfeb02d) + ) + (wire (pts (xy 640.08 217.17) (xy 640.08 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e9143ec-445b-42be-a7d6-a3bd0ec2e3b4) + ) + (wire (pts (xy 461.01 143.51) (xy 461.01 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f3ab985-6a6c-4c0c-8dbc-1e1c1b9d5bd3) + ) + (wire (pts (xy 360.68 196.85) (xy 360.68 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f61ee16-531b-46e4-807c-296418c76d80) + ) + (wire (pts (xy 501.65 161.29) (xy 518.16 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0246e20-42f3-48fc-8644-31d222fbdd90) + ) + (wire (pts (xy 191.77 207.01) (xy 196.85 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0633bee-e1e6-4751-adc3-16aee1e84aee) + ) + (wire (pts (xy 278.13 229.87) (xy 283.21 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a18226df-6cd0-45cd-a916-d630afc630fb) + ) + (wire (pts (xy 706.12 165.1) (xy 718.82 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a22ad671-5e40-424b-8f77-f0222aa58614) + ) + (wire (pts (xy 358.14 124.46) (xy 363.22 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2bc7d96-14be-48a7-95d8-e45f06144b7d) + ) + (wire (pts (xy 730.25 215.9) (xy 758.19 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a33f8f9c-ee4a-4af3-94ed-6add69521fba) + ) + (wire (pts (xy 81.28 205.74) (xy 88.9 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a52a5803-674b-4511-898d-a4ad040632e3) + ) + (wire (pts (xy 514.35 121.92) (xy 529.59 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a582a972-b143-494f-9997-6fc1ac260612) + ) + (wire (pts (xy 676.91 170.18) (xy 676.91 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6daab2a-bd10-4a1a-91db-6d736e1244ae) + ) + (wire (pts (xy 152.4 125.73) (xy 160.02 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a73a39c0-f2eb-4c21-8064-10748dc50aeb) + ) + (wire (pts (xy 580.39 224.79) (xy 580.39 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a748330f-1062-40ee-9063-187c5458ff4e) + ) + (wire (pts (xy 411.48 156.21) (xy 411.48 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a76fd53d-1929-4853-8268-888ee5fe325e) + ) + (wire (pts (xy 344.17 157.48) (xy 364.49 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a781411a-d72a-4848-b8db-cc0ab0731d6c) + ) + (wire (pts (xy 458.47 185.42) (xy 458.47 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a810985e-f83d-4dc5-91a6-d8deb040d97b) + ) + (wire (pts (xy 191.77 158.75) (xy 195.58 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8db4b53-564d-48be-9943-6315d9374781) + ) + (wire (pts (xy 218.44 86.36) (xy 273.05 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a920fbd1-dd65-4910-a823-6242d5d8a777) + ) + (wire (pts (xy 341.63 220.98) (xy 356.87 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9423026-7164-4a7b-babe-e20a46c9c089) + ) + (wire (pts (xy 123.19 269.24) (xy 128.27 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9719726-bcd1-49dd-a448-41e21e959efa) + ) + (wire (pts (xy 341.63 187.96) (xy 364.49 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9755891-1bd8-4150-914d-a1f0690ea01b) + ) + (wire (pts (xy 577.85 162.56) (xy 582.93 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aae6b7d9-719e-466e-bf96-8a3824007cb5) + ) + (wire (pts (xy 248.92 140.97) (xy 248.92 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab0fd971-4b33-406b-a028-718445d2119e) + ) + (wire (pts (xy 144.78 180.34) (xy 149.86 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abf4e010-13e3-475c-b541-5618806bd0da) + ) + (wire (pts (xy 189.23 123.19) (xy 194.31 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac452539-973a-4b79-9d9c-c771844374d8) + ) + (wire (pts (xy 191.77 227.33) (xy 196.85 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac639555-1c36-4e3c-bc1e-00b494311413) + ) + (wire (pts (xy 359.41 102.87) (xy 364.49 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac827ffb-8d25-4815-853c-981300e48138) + ) + (wire (pts (xy 473.71 162.56) (xy 478.79 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac94dbb5-9212-48ac-b6fa-b2a15b2f1165) + ) + (wire (pts (xy 706.12 184.15) (xy 718.82 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acbab88a-5b51-423e-9d29-130d1971930b) + ) + (wire (pts (xy 516.89 214.63) (xy 516.89 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad55c538-7a5b-4f35-bd95-07f8aa3356ab) + ) + (wire (pts (xy 411.48 152.4) (xy 426.72 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad6fa465-f83c-4314-981c-534759ba89fa) + ) + (wire (pts (xy 146.05 163.83) (xy 162.56 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad834372-0f05-4324-9dec-ad7c085cdd6f) + ) + (wire (pts (xy 675.64 118.11) (xy 675.64 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae555d4c-d250-40cd-80cf-2aef82776928) + ) + (wire (pts (xy 123.19 264.16) (xy 128.27 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aefcded9-b348-41e2-b665-d2e39f792c11) + ) + (wire (pts (xy 306.07 231.14) (xy 360.68 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1225563-48ee-49fe-9cbb-4ecfa5602092) + ) + (wire (pts (xy 361.95 190.5) (xy 361.95 193.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b38653ae-1a76-4027-8133-26d46335d485) + ) + (wire (pts (xy 502.92 176.53) (xy 519.43 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b44bce3d-37e4-4d04-868f-eed95c944b5e) + ) + (wire (pts (xy 304.8 215.9) (xy 344.17 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b599e450-ace8-42a5-9f73-adb538b2f30b) + ) + (wire (pts (xy 275.59 173.99) (xy 280.67 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7a2106d-0334-45a4-9517-99fe6e219637) + ) + (wire (pts (xy 577.85 162.56) (xy 577.85 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7e904bd-45b3-4a17-ae0e-d8949bff14f6) + ) + (wire (pts (xy 300.99 127) (xy 316.23 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b84e309e-52fa-45f7-ad7a-9900fe07f8cd) + ) + (wire (pts (xy 552.45 120.65) (xy 575.31 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8c7a167-c081-436e-8f46-20daa9c7eb9a) + ) + (wire (pts (xy 754.38 165.1) (xy 754.38 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b99a3abf-7aea-4fed-93ee-eb1d4b939c4e) + ) + (wire (pts (xy 462.28 111.76) (xy 476.25 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9ab5c0e-72b8-44d3-afa4-9dae4001636e) + ) + (wire (pts (xy 461.01 143.51) (xy 469.9 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9eba396-87ed-494b-bcdf-be645008cb61) + ) + (wire (pts (xy 515.62 134.62) (xy 530.86 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb1dbb80-6a40-4a30-ac74-4e2a37064df3) + ) + (wire (pts (xy 469.9 151.13) (xy 509.27 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb8c9fd7-f720-41d7-9fe8-da1bf6b1e146) + ) + (wire (pts (xy 162.56 175.26) (xy 195.58 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb9db8d8-6607-46f2-bf65-9e1724387d44) + ) + (wire (pts (xy 190.5 104.14) (xy 195.58 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdce1541-afc2-48e2-bf1d-56a26b6a1acc) + ) + (wire (pts (xy 303.53 172.72) (xy 311.15 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be2adaf8-6644-4973-a6c0-33b2c76bbae6) + ) + (wire (pts (xy 302.26 156.21) (xy 341.63 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be34000b-8bfb-436f-a968-7ea0e49905fe) + ) + (wire (pts (xy 568.96 191.77) (xy 584.2 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c05d52dd-195e-40d8-99ed-6ee1077667c2) + ) + (wire (pts (xy 359.41 105.41) (xy 364.49 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c063ce7f-8990-4078-a2aa-a7a544a263f1) + ) + (wire (pts (xy 118.11 205.74) (xy 123.19 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c119117e-e663-460e-a72b-2e878bed9528) + ) + (wire (pts (xy 116.84 179.07) (xy 121.92 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1f6530e-5cf2-4285-9efe-9ac439cbed57) + ) + (wire (pts (xy 666.75 199.39) (xy 681.99 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c341c66f-6e22-4449-8581-1114161e98b8) + ) + (wire (pts (xy 274.32 143.51) (xy 279.4 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c36c3dd6-2ad4-4a70-bba5-504109f3130c) + ) + (wire (pts (xy 466.09 167.64) (xy 466.09 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c48d9aac-83d5-46e0-aabd-668ce41d91f0) + ) + (wire (pts (xy 709.93 200.66) (xy 723.9 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6661901-e733-4fc7-9ded-066d64049510) + ) + (wire (pts (xy 411.48 234.95) (xy 516.89 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c72d1f9d-aade-446d-8b31-8d54905d0127) + ) + (wire (pts (xy 190.5 139.7) (xy 195.58 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c77df39e-7dc0-4c42-b185-e506be4e76c5) + ) + (wire (pts (xy 502.92 208.28) (xy 521.97 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7ce0777-0914-4390-a129-ca2b0d2210b1) + ) + (wire (pts (xy 566.42 207.01) (xy 566.42 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8e94a56-01a8-4ca3-9d50-e019129f09c7) + ) + (wire (pts (xy 421.64 86.36) (xy 421.64 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c961bef5-676d-4273-9a77-502659c19177) + ) + (wire (pts (xy 604.52 114.3) (xy 650.24 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9cc61cb-196e-4134-b532-eb64f180ded7) + ) + (wire (pts (xy 218.44 140.97) (xy 248.92 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9f7066e-4232-4fdc-8d86-157d14ea900c) + ) + (wire (pts (xy 406.4 139.7) (xy 406.4 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca441d42-9f10-416b-afb5-0b134cef9045) + ) + (wire (pts (xy 626.11 236.22) (xy 626.11 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb7c4b28-a7ca-462b-8a4e-48f3704152b4) + ) + (wire (pts (xy 417.83 236.22) (xy 520.7 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbf0fefc-93ca-4d6f-bcc2-329504252f42) + ) + (wire (pts (xy 387.35 189.23) (xy 410.21 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd241771-95a9-4e61-a6cd-39bf4d6f42d7) + ) + (wire (pts (xy 509.27 163.83) (xy 527.05 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd713f43-1d5e-44b6-a804-e0d95f8d654d) + ) + (wire (pts (xy 575.31 135.89) (xy 575.31 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd85c822-13cc-4123-b49d-be5b3eade639) + ) + (wire (pts (xy 459.74 96.52) (xy 476.25 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce9721db-25b3-4f74-af6c-eae937099be3) + ) + (wire (pts (xy 273.05 198.12) (xy 281.94 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce986c4b-5e0e-4488-b34b-cee0b7aba3bc) + ) + (wire (pts (xy 527.05 231.14) (xy 527.05 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cec98b69-95da-4182-b8bb-1f6e904acf6b) + ) + (wire (pts (xy 764.54 149.86) (xy 765.81 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cffe0568-14f3-4a00-899f-d6654972f334) + ) + (wire (pts (xy 411.48 186.69) (xy 427.99 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1388588-4f21-449f-b997-b97b720eaf7a) + ) + (wire (pts (xy 144.78 147.32) (xy 162.56 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d25ab9d3-7c26-4339-9f24-514a45183f60) + ) + (wire (pts (xy 516.89 119.38) (xy 529.59 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4bcae13-260f-4c2e-b11f-1a8e0ba864e5) + ) + (wire (pts (xy 570.23 175.26) (xy 582.93 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5d00b73-39de-4de9-9a4b-da03521993a3) + ) + (wire (pts (xy 278.13 232.41) (xy 283.21 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5e2ac89-03a0-409d-811a-4626ee37dad4) + ) + (wire (pts (xy 116.84 146.05) (xy 121.92 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d72f6a4d-eaf8-4bd5-8190-19f4e85b80e5) + ) + (wire (pts (xy 421.64 128.27) (xy 421.64 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d795879a-ccae-4b43-9225-ea92501f9fd7) + ) + (wire (pts (xy 252.73 124.46) (xy 252.73 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d80dec4a-d780-4fd1-b5e0-a2db54407322) + ) + (wire (pts (xy 469.9 143.51) (xy 477.52 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8306f0e-83e8-4fde-88eb-bb1ab71e3da7) + ) + (wire (pts (xy 417.83 184.15) (xy 427.99 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9344c85-0734-4098-9c8b-ab91cef96123) + ) + (wire (pts (xy 511.81 127) (xy 511.81 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9833680-f978-4a16-b06c-d2ab04351826) + ) + (wire (pts (xy 514.35 144.78) (xy 514.35 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9c0e4e2-7379-4d71-81f4-2edc1fe22fad) + ) + (wire (pts (xy 421.64 123.19) (xy 421.64 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid daf72942-bcd9-47a4-aab5-d06e0034b9c1) + ) + (wire (pts (xy 462.28 119.38) (xy 462.28 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbbb2255-fed3-4570-8057-05e368c42d00) + ) + (wire (pts (xy 605.79 161.29) (xy 628.65 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcd7150a-bc9e-46c3-b7ef-f280d8cf83eb) + ) + (wire (pts (xy 520.7 166.37) (xy 530.86 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcda257a-7b8e-4eb1-bbd7-e91144476847) + ) + (wire (pts (xy 273.05 91.44) (xy 276.86 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ddf1f0f2-0f6e-40d2-a518-b40b16a7c1c3) + ) + (wire (pts (xy 575.31 130.81) (xy 581.66 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df43b8fa-3ea3-45b3-aae2-46357433917c) + ) + (wire (pts (xy 472.44 146.05) (xy 477.52 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dfce49d8-6e10-446a-9dfa-316fd383f75f) + ) + (wire (pts (xy 575.31 128.27) (xy 581.66 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0e702c0-a6af-4e44-bfe3-2acb6dca13a0) + ) + (wire (pts (xy 273.05 105.41) (xy 273.05 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1276eea-0e92-442a-bd8a-465100855e8b) + ) + (wire (pts (xy 552.45 105.41) (xy 566.42 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1584e54-3d34-42c4-953a-38908f111d3f) + ) + (wire (pts (xy 675.64 133.35) (xy 675.64 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e19abcf5-db01-451c-83cc-f6bbcd96db58) + ) + (wire (pts (xy 417.83 184.15) (xy 417.83 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e223140a-589e-4302-a154-4fa0885b2337) + ) + (wire (pts (xy 577.85 162.56) (xy 577.85 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3c90a33-3aa9-49f8-bbd6-58e3ac9635e7) + ) + (wire (pts (xy 650.24 114.3) (xy 650.24 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e43bffc8-961b-40fe-b415-98153367a154) + ) + (wire (pts (xy 147.32 204.47) (xy 147.32 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4fe0416-1f99-4b65-a64f-40e0b6f1321c) + ) + (wire (pts (xy 650.24 118.11) (xy 675.64 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4feca35-12be-487c-aff3-d7a47bc9c837) + ) + (wire (pts (xy 568.96 191.77) (xy 568.96 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6336335-688f-4df7-9cfb-9fa5132dfbcb) + ) + (wire (pts (xy 516.89 234.95) (xy 516.89 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e63cd5c7-875b-405f-806a-981df7405124) + ) + (wire (pts (xy 637.54 214.63) (xy 681.99 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e641bc69-5533-478f-aece-f9282774d7ea) + ) + (wire (pts (xy 153.67 106.68) (xy 161.29 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6534652-427a-4c3e-ae8f-489a6763c357) + ) + (wire (pts (xy 218.44 160.02) (xy 255.27 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e686706c-fe26-43d2-94ef-f16baabac089) + ) + (wire (pts (xy 612.14 137.16) (xy 612.14 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6e237c8-ad95-4ad7-98d5-16ac4cae9618) + ) + (wire (pts (xy 322.58 105.41) (xy 330.2 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e723c156-bfd4-4362-9b4f-1dc32d174c1c) + ) + (wire (pts (xy 417.83 193.04) (xy 417.83 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8736172-b1da-48cd-a603-1e1fd44b834f) + ) + (wire (pts (xy 123.19 274.32) (xy 128.27 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8e0e97a-abc3-4749-a951-18f273d9756f) + ) + (wire (pts (xy 452.12 201.93) (xy 464.82 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e92afac1-d35f-4699-b156-7fb9f662bcef) + ) + (wire (pts (xy 629.92 144.78) (xy 629.92 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e94fe516-0333-4cb6-a0d1-62a93bad5a7b) + ) + (wire (pts (xy 118.11 203.2) (xy 123.19 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb05f793-3bc7-44c0-b0f0-0a7adbf821cb) + ) + (wire (pts (xy 190.5 142.24) (xy 195.58 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb5639eb-d65b-486f-b69f-605137c5dc42) + ) + (wire (pts (xy 410.21 149.86) (xy 426.72 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebb5da62-c532-4848-b357-1eceac89fcf9) + ) + (wire (pts (xy 275.59 171.45) (xy 280.67 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec23ed7e-d9ae-487d-8d3c-284075b83096) + ) + (wire (pts (xy 565.15 222.25) (xy 584.2 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec3e4b7b-e17f-4b5f-ae37-1d0b2a82ab2f) + ) + (wire (pts (xy 466.09 160.02) (xy 478.79 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed634f7a-0da1-41c3-a42d-08fc93544b8c) + ) + (wire (pts (xy 449.58 133.35) (xy 461.01 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edb73f8d-c24f-4365-8c46-78870be43b04) + ) + (wire (pts (xy 172.72 264.16) (xy 177.8 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edf5f0f5-9138-4a24-9ea5-1b99d5079657) + ) + (wire (pts (xy 360.68 204.47) (xy 364.49 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f03509bc-92fc-4748-8957-640f7488ea51) + ) + (wire (pts (xy 412.75 168.91) (xy 412.75 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2a6c3d8-901d-459e-9953-ae83d0e2d3c0) + ) + (wire (pts (xy 149.86 180.34) (xy 149.86 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f353710f-376a-405a-b91e-107cd01ff141) + ) + (wire (pts (xy 191.77 204.47) (xy 196.85 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f363651c-28ac-4167-b05d-902a2046d6ac) + ) + (wire (pts (xy 450.85 167.64) (xy 466.09 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3da2300-6c82-48a7-b3ca-14124256f426) + ) + (wire (pts (xy 471.17 109.22) (xy 476.25 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4c0e9fa-e727-4ae9-b9b2-51cab64fc73f) + ) + (wire (pts (xy 255.27 125.73) (xy 278.13 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f527d992-04af-4c2f-a4ae-686c39d1aa40) + ) + (wire (pts (xy 527.05 198.12) (xy 532.13 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f621b145-2f0c-413b-a1c2-c7eecfdb5740) + ) + (wire (pts (xy 278.13 242.57) (xy 278.13 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f79080f7-20dc-4336-9085-818eacc7bd5d) + ) + (wire (pts (xy 255.27 160.02) (xy 255.27 125.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7dd8c64-c2fe-4bc8-8c51-756c9d278099) + ) + (wire (pts (xy 627.38 233.68) (xy 627.38 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8252ede-81b3-448c-a257-3eaf924b94d5) + ) + (wire (pts (xy 553.72 151.13) (xy 570.23 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f853cc24-94db-477d-b597-580d124ddd9e) + ) + (wire (pts (xy 316.23 190.5) (xy 361.95 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8e8de6c-ac89-489f-9b44-360216a272f1) + ) + (wire (pts (xy 191.77 224.79) (xy 196.85 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f93f57ef-f69c-4279-91ac-eca7596ec873) + ) + (wire (pts (xy 675.64 137.16) (xy 612.14 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa5fe12a-068b-43e9-9e37-6764fbb126bc) + ) + (wire (pts (xy 302.26 142.24) (xy 359.41 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fad32f36-85bf-4c5f-a2a6-e8162450ee32) + ) + (wire (pts (xy 675.64 114.3) (xy 681.99 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb46c8d3-49c8-4005-a7f9-a092a462c11d) + ) + (wire (pts (xy 278.13 217.17) (xy 281.94 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc7b2f1d-ba82-4565-af68-fa9fb0d982db) + ) + (wire (pts (xy 412.75 168.91) (xy 427.99 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fca35bde-4e8e-465b-bd3f-17b4a5c322b6) + ) + (wire (pts (xy 417.83 166.37) (xy 427.99 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fccde35d-eafa-49e6-97be-a01bdda6ef17) + ) + (wire (pts (xy 462.28 207.01) (xy 480.06 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd354090-ad3f-4918-a9c2-d57ffe2c5607) + ) + (wire (pts (xy 527.05 158.75) (xy 527.05 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe6fbaaa-4836-4f04-8f49-da8a2780e223) + ) + (wire (pts (xy 172.72 271.78) (xy 177.8 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff844221-55fe-4c50-b9f5-7f21aa48fd75) + ) + (wire (pts (xy 709.93 148.59) (xy 709.93 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffc8c6bf-a5cf-4acb-bae7-f14dd6f662b7) + ) + + (label "A1" (at 280.67 229.87 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 03a37982-b76d-4bac-8d09-38920706b9de) + ) + (label "CN" (at 173.99 261.62 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 03a80cbf-5ec9-4354-bfd1-fe23de2db1be) + ) + (label "M" (at 173.99 264.16 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 03e0fd9c-5987-463b-9540-6070a032e039) + ) + (label "S1" (at 194.31 187.96 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 07a3e691-56b4-4979-95e7-dc4d41c8cdef) + ) + (label "A1" (at 124.46 261.62 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0ad14dbe-0af6-4015-a587-8877407838a9) + ) + (label "M" (at 579.12 177.8 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1764bd30-e30d-47fa-a236-f44b07bb7095) + ) + (label "B0" (at 158.75 227.33 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 19aa3e25-dcdf-49b2-b371-dab60f44981e) + ) + (label "A2" (at 124.46 264.16 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 216bd7ad-c395-4ab9-ae62-f29835362f88) + ) + (label "S2" (at 173.99 271.78 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 286546a3-7b81-4566-865f-29febc1f7ce8) + ) + (label "S0" (at 360.68 121.92 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2adcc17d-c85b-4ab4-b4ae-b6bb1cfe862a) + ) + (label "B1" (at 119.38 148.59 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3425dac0-7abf-4eee-a78c-3a05ddddf8a6) + ) + (label "B3" (at 275.59 143.51 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 362e0e86-fb9d-4990-ae71-fa7d7760e2b5) + ) + (label "B1" (at 124.46 271.78 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 384fef8c-cd37-4209-8994-0786b78dc8eb) + ) + (label "A1" (at 194.31 158.75 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3a2b4f9a-ec39-4d4d-8abe-d3fb116b67c4) + ) + (label "S3" (at 193.04 85.09 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3a48f5fd-667c-437a-98af-a195038f7b67) + ) + (label "CN" (at 577.85 113.03 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3b7f8832-2222-4057-9233-ea02eb16cb66) + ) + (label "S3" (at 173.99 274.32 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 40167536-2a38-4e80-8925-215baffd1770) + ) + (label "B2" (at 156.21 106.68 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 410d7669-f77c-488d-ba08-fb5cb9116962) + ) + (label "B0" (at 194.31 207.01 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 41ede22f-292f-4e61-bdec-5084cf840783) + ) + (label "B1" (at 156.21 125.73 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 41eff35c-0cf9-4e5f-8df5-0a4c6c76af2f) + ) + (label "CN" (at 474.98 162.56 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 42126342-9d12-4644-bf57-99d23e3eeb6e) + ) + (label "A3" (at 124.46 266.7 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 454ae05e-1b1b-4f8e-87ed-cfe6c086b730) + ) + (label "S1" (at 173.99 269.24 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 46269d50-3eda-405a-b4e0-3561ad1508b2) + ) + (label "S1" (at 119.38 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4e695081-b02b-4f76-a261-6591b4594311) + ) + (label "S0" (at 193.04 139.7 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4f8c7a13-eeda-49b9-9949-4e4b6b57f49b) + ) + (label "A3" (at 473.71 109.22 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5e567b65-e8a6-4dc1-8cff-411ec02c9451) + ) + (label "B3" (at 359.41 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6648bc71-d8d9-4078-abb8-0d15491ae291) + ) + (label "M" (at 577.85 115.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6f15b3d9-1494-4b2f-ab29-bfdd6ef1cd2a) + ) + (label "CN" (at 473.71 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6f27a176-11b8-4878-af2c-281ac2d5871f) + ) + (label "B3" (at 124.46 276.86 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 703c6189-bbdc-4f52-8295-b3a8390222e7) + ) + (label "B1" (at 119.3571 181.61 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 72c92ca2-48b0-4348-ad99-82dd39a78b38) + ) + (label "S0" (at 191.77 123.19 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 76e24c12-cde8-4369-9d8a-c3c87bca54b6) + ) + (label "S0" (at 278.13 171.45 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7986d88e-c93a-499c-91ba-1c5636aaac05) + ) + (label "CN" (at 678.18 149.86 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7a4c3d46-36e0-47b0-96f8-9a725b9fa576) + ) + (label "B3" (at 325.12 124.46 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7a715b20-9e36-433b-9e59-bbf5a95a706c) + ) + (label "S2" (at 194.31 224.79 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7e8c1989-789d-497d-9fc2-b984ef6bb0e4) + ) + (label "A2" (at 194.31 172.72 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7f58336d-c12c-4bea-a345-f6b848c64288) + ) + (label "B2" (at 156.21 142.24 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7fb50b42-d32e-4c6e-af91-c6776f4e1767) + ) + (label "A2" (at 363.22 171.45 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 806c1781-1a2b-4b48-9440-c45805b73a5f) + ) + (label "S2" (at 361.95 102.87 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 84ba9b76-281e-4ccb-ab46-97aad8c08b2d) + ) + (label "S2" (at 119.38 203.2 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 869846f1-91a3-4c12-bd39-983e8298f521) + ) + (label "B3" (at 325.12 105.41 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 86b3a9c5-9828-45d1-85c1-26e5a88636f7) + ) + (label "M" (at 577.8037 130.81 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8acdb100-1de0-455c-8846-33c626f027a4) + ) + (label "B2" (at 120.65 165.1 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9085fff3-82dd-48e4-aa7a-064a27659bad) + ) + (label "B0" (at 124.46 269.24 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 941c516f-dc0a-4c73-a8cb-20f590537901) + ) + (label "S0" (at 173.99 266.7 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9879fc7d-552b-4baf-8dcd-f07e0f0929d8) + ) + (label "S3" (at 359.41 85.09 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9f247719-fe25-4fe4-8725-2231744a7377) + ) + (label "A0" (at 279.4 195.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9f717069-66dc-4d54-850d-1436ae236751) + ) + (label "S1" (at 275.59 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a9698b7a-ce50-4feb-bc75-748bfb696248) + ) + (label "S3" (at 119.38 179.07 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b50afa6e-5c42-4a0a-83fc-848992b19163) + ) + (label "B0" (at 194.31 190.5 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b58b73d3-50fc-4670-9068-504fd219a313) + ) + (label "B2" (at 193.04 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b6a76ba8-d2b2-4f43-924e-df8bcdd676cd) + ) + (label "A0" (at 361.95 154.94 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bfb62bf1-b50f-4697-b9a9-eb8c151174fa) + ) + (label "A0" (at 124.46 259.08 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d3812691-3864-4811-aaf3-d490e827067c) + ) + (label "B2" (at 124.46 274.32 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid db45f915-6498-458b-b46d-1c36b81fac5b) + ) + (label "S2" (at 193.04 104.14 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid db4e716b-6e66-4c1a-a6d5-4f2f93d5442f) + ) + (label "S1" (at 120.65 162.56 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e1651e2f-22e2-445c-9c3f-dee6846ee68f) + ) + (label "B0" (at 241.3 173.99 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ecae6ee0-819b-4d8a-bc68-9f4c066d1a41) + ) + (label "CN" (at 476.25 177.8 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f611803f-c514-46c0-8523-a3103d6d2f26) + ) + (label "S3" (at 194.31 204.47 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f84d31ac-e422-40ce-8aff-6caa60d7d245) + ) + (label "A3" (at 360.68 138.43 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fcea3023-f597-44ed-ae68-0770a3414644) + ) + (label "M" (at 579.12 146.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fd018a50-3a5b-44e5-8417-3ca3e8e9cf4f) + ) + (label "B1" (at 83.82 205.74 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fe64da31-2f3b-4912-967d-40b30cf9f85b) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 208.28 227.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 030d7e62-2b09-4fe4-b88e-61b322312921) + (property "Reference" "U19" (id 0) (at 208.28 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 208.28 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 208.28 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 208.28 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dda09ae9-d33c-4340-b14b-df7cba4d5dc8)) + (pin "2" (uuid 64d320c2-aa3e-41ff-b386-b189766370b4)) + (pin "3" (uuid 362fed96-e955-4d35-b4e2-44aa31d6f144)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 293.37 198.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 083aacee-b589-43c2-afc8-9c9b0c4426cb) + (property "Reference" "U27" (id 0) (at 293.37 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 293.37 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 293.37 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 293.37 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d0ed747-17ed-4a9a-b700-c31eb3c030f9)) + (pin "2" (uuid f458bc86-ae7e-4998-8713-a39f7294576e)) + (pin "3" (uuid 05a63495-9e1b-4747-8200-5ac6be24145f)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 595.63 224.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0aa94c83-5db7-40b4-975a-dcfa172040c8) + (property "Reference" "U70" (id 0) (at 595.63 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 595.63 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 595.63 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 595.63 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d98214d7-dcc3-4463-834f-13c63f01065f)) + (pin "2" (uuid e50a2e13-b823-4996-82d0-af536409f9aa)) + (pin "3" (uuid 04672121-8136-432d-8024-1bb66bc0b090)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 542.29 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0d59ab25-d2ac-49ba-805c-8baa11386e52) + (property "Reference" "U59" (id 0) (at 542.29 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 542.29 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 542.29 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 542.29 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 539e1163-522b-4f41-a1d7-787e32f691a4)) + (pin "2" (uuid ce864114-9ffe-4733-a9cb-8791c06f4af9)) + (pin "3" (uuid c9ff8c49-a338-46fb-b6b6-0999a28f479b)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 487.68 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0d8e91ef-47b0-46d3-8f3b-d0ed85c6ab00) + (property "Reference" "U48" (id 0) (at 487.68 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 487.68 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 487.68 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 487.68 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87ddf9a8-ecf5-4347-a10e-3ff9ef141b8a)) + (pin "2" (uuid d9387d2b-e939-4442-9c2d-25902278afd3)) + (pin "3" (uuid a43986c7-a2ff-4e67-88db-0a731ad3fb4e)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 436.88 105.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 103d0080-cdbe-4970-b813-c32461cf6959) + (property "Reference" "U41" (id 0) (at 436.88 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 436.88 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 436.88 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 436.88 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid accfe424-f841-449e-a5ed-0ca152af550a)) + (pin "2" (uuid 2acd7924-903d-42b3-aed1-ca40d9f0d220)) + (pin "3" (uuid f7a336ff-a5be-41b2-92e3-907b5915bfc3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 274.32 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 12931305-c59a-4eec-a821-a93a3dc81177) + (property "Reference" "U2" (id 0) (at 117.475 269.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 117.475 271.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 116.84 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 44cbbc6c-ca36-41fa-8990-3ddb515364c2)) + (pin "2" (uuid fab43865-6e6a-4f00-92af-c40b91f5622b)) + (pin "3" (uuid 786c0ce9-98d2-43c4-ae55-2929721a5f16)) + (pin "4" (uuid 2f50bd36-d428-48c7-b688-08d4115f6cfb)) + (pin "5" (uuid 33d776f6-093a-4a29-89ef-81d956f43175)) + (pin "6" (uuid 84402505-a4a0-4b25-880f-a2510942548e)) + (pin "7" (uuid 9e44c8e7-ebea-4055-92ea-6b027be2b40b)) + (pin "8" (uuid c5ae8b08-9740-419c-81ef-02e95d389f24)) + (pin "9" (uuid 6cefb728-4e92-4bf5-a419-209d516f0445)) + (pin "10" (uuid d54348df-b68f-470c-acc2-27a96f74cb8e)) + (pin "11" (uuid aaec14ef-e227-434b-8cf0-9e8341803b20)) + (pin "12" (uuid 43e49b5b-193a-45b8-9cd6-221d0afaca56)) + (pin "13" (uuid d40c8127-12bc-4d75-a1d7-0772014a8441)) + (pin "14" (uuid a5879990-4469-49a1-b7a4-b527e949c15f)) + (pin "15" (uuid 062d3f05-4e3f-427e-8a2a-30f9d15f9ee8)) + (pin "16" (uuid 156685e4-f091-435b-86c2-8ab9be5cd27f)) + (pin "17" (uuid 8d24036f-108f-4ba4-9b07-ec93c1bc4962)) + (pin "18" (uuid 7fccbd2d-0919-4948-882e-c6fbcaa628f7)) + (pin "19" (uuid bc916d3d-11f8-40a3-be82-0369324ea46f)) + (pin "20" (uuid 512f3d8d-d731-4612-b501-421cf3245cb4)) + (pin "21" (uuid 5bd2a385-99f4-4d49-a986-0153557024e0)) + (pin "22" (uuid 11d71ab1-3471-4c0b-a1e6-a76b7a383707)) + (pin "23" (uuid d76b5765-d235-4586-8dce-1d30f4988516)) + (pin "24" (uuid a23e6f5e-b7cf-4e7a-8f0e-d5c1c909f9a0)) + (pin "25" (uuid 42c7e6d0-369a-4c4e-a796-fdb90f683dbe)) + (pin "26" (uuid b7378eb4-fed3-470e-94e3-72b1fc69e567)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 593.09 115.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 12f1c524-40d2-457c-8f0a-2937fcb7a5f2) + (property "Reference" "U63" (id 0) (at 593.09 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 593.09 109.22 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 593.09 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 593.09 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58872637-0daa-4211-81cc-3ca605560ddb)) + (pin "2" (uuid 052ece79-c9ab-4464-ae1d-f331d5f2fcbd)) + (pin "3" (uuid 00168e6e-5efa-4123-8899-8b240c8292f6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 374.65 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 16479be8-bfe5-4ecf-8633-3c11c97623b4) + (property "Reference" "U32" (id 0) (at 374.65 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 374.65 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 374.65 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 170e4f64-7b40-4218-9bba-bcce5ec12e05)) + (pin "2" (uuid eb23bb73-825e-4455-a8bb-00dceb8fd734)) + (pin "3" (uuid 4480a966-c1c4-4e0f-b1a4-dcd334b82a77)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 772.16 160.02 180) (unit 20) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1b573454-8c74-4f56-9ac5-4e730cc8e36d) + (property "Reference" "U2" (id 0) (at 775.97 159.385 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 775.97 161.925 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 772.16 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 772.16 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cff3e056-b756-4c19-a1ba-e5ea3248311e)) + (pin "2" (uuid f0247408-34c1-435e-be46-58c523b75345)) + (pin "3" (uuid ff683d6c-e6e1-43a6-8e92-937d931dfb5b)) + (pin "4" (uuid ef9384f3-763c-4002-82af-1b10858ba0c9)) + (pin "5" (uuid f032cd2c-c9bb-4307-baab-12741904dc03)) + (pin "6" (uuid 226d59cb-345c-4146-8c59-c31ef6a2e0d7)) + (pin "7" (uuid d2d8c682-7008-4134-84a1-8fb2088ca061)) + (pin "8" (uuid 67fd05a7-cee4-4acc-b71e-b09719976d8f)) + (pin "9" (uuid 8f139bf2-a330-4ed2-a0e3-ba73dcbfebe4)) + (pin "10" (uuid aed00a18-a96d-458c-8f6d-60c8db10e98d)) + (pin "11" (uuid b417dc4e-df71-49d3-b778-82072b147a1b)) + (pin "12" (uuid 1dca9faa-9191-4ce1-8663-e5b3a88c2249)) + (pin "13" (uuid 99146fc0-b48d-4137-9453-9bdf24c24ad8)) + (pin "14" (uuid 5acc6530-f732-45c0-a5dc-95763f4b2490)) + (pin "15" (uuid bba40d2f-4d65-4ca6-be94-b33636c738d0)) + (pin "16" (uuid 22f53733-76b2-4588-a726-5205bac34b51)) + (pin "17" (uuid 25831098-accd-4d0e-a5fb-b568f7b9ba77)) + (pin "18" (uuid 57ae9bde-4d67-4a70-bf8f-4fb8fbe749e2)) + (pin "19" (uuid 7bfa0913-c393-4870-a7d9-cee72827e613)) + (pin "20" (uuid 1b323dc0-00d9-4d4c-8350-2eb8f5276b42)) + (pin "21" (uuid 1c1857d5-88f1-4f1c-8f1b-e06fdaae0358)) + (pin "22" (uuid 9f565aa2-4c62-4181-8f84-99fb1faef88a)) + (pin "23" (uuid dfd3f324-30bb-48ec-ad1c-820d1241de53)) + (pin "24" (uuid 1af6e6b1-ade9-4a63-b282-ce9b9bdb2dcb)) + (pin "25" (uuid d5719921-5fea-494f-aaa9-5b1a654ed1e1)) + (pin "26" (uuid 618a072d-6f62-4c16-9fc5-5fd8519278b9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 166.37 269.24 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 276b5259-0614-462f-bd13-131e68b01244) + (property "Reference" "U2" (id 0) (at 167.005 264.16 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 167.005 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 166.37 269.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 269.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ce021af1-93ee-465f-951a-6c767640a2c9)) + (pin "2" (uuid da13f3b9-cb48-41a4-910a-eda57611226b)) + (pin "3" (uuid 5536b4ad-cca1-40b1-8c02-14758b1390bc)) + (pin "4" (uuid c5a7ebe4-838b-41da-9a4c-786ccf8b5c6b)) + (pin "5" (uuid c868747e-6420-4825-823f-5a8bbca2205f)) + (pin "6" (uuid 20b32213-ff50-4bc5-ba52-ed7a6043ae50)) + (pin "7" (uuid 550ee19f-40a9-4eb8-96ea-34fda6dfdfca)) + (pin "8" (uuid 2c540cc6-5d2f-4547-bbc5-f81e0e1e6d11)) + (pin "9" (uuid 8dd0ca7b-5ad0-4b94-90ef-a4e673b69b0f)) + (pin "10" (uuid 57763f7c-cecb-4588-aedd-91f28ff37458)) + (pin "11" (uuid 00f21178-a071-4207-bf6f-4a09bf94c5aa)) + (pin "12" (uuid 64a6176b-0e5a-4a84-b4fc-e382d477af24)) + (pin "13" (uuid 02dd889b-b639-4bd3-803d-7989d45aa516)) + (pin "14" (uuid 31df122a-f10a-4575-acb8-87ba59cb7962)) + (pin "15" (uuid 4fb7f2d1-cee2-433d-9ae9-b1107ec99d95)) + (pin "16" (uuid ccd897c7-8d18-4689-bb74-d415e27d8f7a)) + (pin "17" (uuid 71affa1e-c1be-4309-9a0d-b79b8efbb52d)) + (pin "18" (uuid 975ac82b-e604-4e69-9ff9-c056e14f9140)) + (pin "19" (uuid 8d27241d-bb30-4535-8f79-8300230dc687)) + (pin "20" (uuid 2e2cee59-f0b3-49ad-b337-7f6bf29c8b26)) + (pin "21" (uuid 78c83b88-3d8f-409d-8d50-fd267d6faf3b)) + (pin "22" (uuid cbc67ae4-2412-41ab-9a7b-9d6827446e7f)) + (pin "23" (uuid 66c145ed-7d6b-4d14-8e7a-00d32cbe16f8)) + (pin "24" (uuid d3ad09f0-1ccb-48ab-bc73-5e6d3daffdb4)) + (pin "25" (uuid 8487acda-31a9-45ec-a086-2c225d299e2a)) + (pin "26" (uuid b47e99c0-da3f-468a-9035-3be526331243)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 772.16 147.32 180) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2a9a7f58-ceff-43a6-b951-841bc55e06ed) + (property "Reference" "U2" (id 0) (at 775.97 146.685 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 775.97 149.225 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 772.16 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 772.16 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6157959f-6006-4191-b643-afa491312cd6)) + (pin "2" (uuid 68236c87-ec74-4ad0-9dbc-748184788fc7)) + (pin "3" (uuid 3a34b0ac-a3a9-4780-86e7-b1ccfbfc1d5c)) + (pin "4" (uuid f35c2860-5750-4e78-aa77-b329797b57fe)) + (pin "5" (uuid 5b8799da-b85b-440a-b4e4-9ff53158b611)) + (pin "6" (uuid 700ba51b-38d5-4aac-a972-8a2f2db53192)) + (pin "7" (uuid b14db956-74ef-44b3-bdef-35a51daad2ff)) + (pin "8" (uuid a59daf60-dc7d-4129-9822-fd463c95cc04)) + (pin "9" (uuid 32163493-cd4a-403a-a348-cdcf39e72f91)) + (pin "10" (uuid ae1bd9c2-2ac0-4e76-82a8-34495877cb1d)) + (pin "11" (uuid 08a4b6fd-1841-45ac-b746-5281eadf8bd7)) + (pin "12" (uuid eb343306-0b45-4c53-af57-681324849bac)) + (pin "13" (uuid 8bee0e3f-9a0b-4692-9985-e8a83cf6b54a)) + (pin "14" (uuid 41bc7703-b0ed-45a6-879b-9df574111f9c)) + (pin "15" (uuid 473ec7df-8356-43b1-8e84-960c90872da4)) + (pin "16" (uuid 0dbaddcf-ce54-4fae-b536-63c84c2568a7)) + (pin "17" (uuid 968a1032-adaa-4843-85fb-0ff42d175f20)) + (pin "18" (uuid 915b9d51-ac40-43a1-b104-4631cad94a16)) + (pin "19" (uuid e1aa936f-1827-401f-b595-a4d38a894882)) + (pin "20" (uuid 597800bc-1f81-4879-bbb1-6e7324c6403e)) + (pin "21" (uuid b7f98299-8825-4927-85c7-961aaccbf6fb)) + (pin "22" (uuid e41e6d45-e661-4f4a-b140-925d00d39bb1)) + (pin "23" (uuid bcad8654-7838-4ee4-9a4e-3054f2c28c15)) + (pin "24" (uuid b3aae8a4-367f-4d91-be3f-906b95d0dbcb)) + (pin "25" (uuid c857620e-3a5c-454b-95ad-8a3b9684b730)) + (pin "26" (uuid db38567d-d790-43b4-ae03-50daa3734f95)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 439.42 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 342f314e-b9e3-4e64-a38a-77a1c69cfdda) + (property "Reference" "U46" (id 0) (at 439.42 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 439.42 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 439.42 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 439.42 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5830fba5-73ae-4a39-a412-6ee8743eef8b)) + (pin "2" (uuid d1fedfda-0f6d-47b8-bc62-21e9456440a2)) + (pin "3" (uuid 43d52821-b387-4530-b96d-038440436dc9)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 293.37 217.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 36619f9e-28a8-4d44-9107-de5cd6c8c59b) + (property "Reference" "U28" (id 0) (at 293.37 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 293.37 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 293.37 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 293.37 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3efdeb0e-25c3-40ee-890e-6bdcd73a2fb2)) + (pin "2" (uuid 7eccd10c-5454-4f0b-b45c-80bbd4e1ffaa)) + (pin "3" (uuid 712c689f-d0e7-4b0b-8a3f-09cadb13f9be)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 593.09 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 36ffbeba-ff8a-4a91-9441-28351413f5e1) + (property "Reference" "U65" (id 0) (at 593.09 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 593.09 139.7 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 593.09 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 593.09 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0a71e81d-6462-4a04-9df8-e0b4f66c91f9)) + (pin "2" (uuid cc501fee-fcd7-47aa-81ae-b9fba6cc7f27)) + (pin "3" (uuid d60c8c57-7adf-4097-adf8-f92145b4d5f2)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 207.01 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 377d1737-ba0b-4bd3-92e5-dce52d1c5782) + (property "Reference" "U12" (id 0) (at 207.01 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 207.01 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 207.01 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 207.01 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b1366a63-398b-4557-b0ba-ac1143ed622c)) + (pin "2" (uuid deef2bd6-71bd-440b-b9b7-a7c6d87932f6)) + (pin "3" (uuid 2babd2ec-2d74-4f3b-a4c8-b28ad45903ce)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 375.92 157.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 37e0375c-942f-41ee-88c6-91be054e68f2) + (property "Reference" "U36" (id 0) (at 375.92 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 375.92 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 375.92 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9be3ee5a-c975-48e9-a819-4397013e3e90)) + (pin "2" (uuid 621c70a1-f150-4600-94bf-2a1b18be120a)) + (pin "3" (uuid 1d16adb8-834b-4b4e-8910-2eb1305a5a58)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 377.19 173.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 38cdb892-64af-4e4a-9b0d-be0e3cab9bb7) + (property "Reference" "U39" (id 0) (at 377.19 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 377.19 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c18dfe3b-79b3-49a7-817a-b0d580eb76d6)) + (pin "2" (uuid 2b0a68be-47d1-46be-a14d-a79c9621b240)) + (pin "3" (uuid ca0c5852-a0bc-4c2e-b213-dd433273265d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 594.36 162.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3f744f5a-8b4c-4500-962b-02e71b0139e3) + (property "Reference" "U66" (id 0) (at 594.36 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 594.36 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 594.36 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 594.36 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e4269248-3c91-41d5-95d6-bf7fd6babfca)) + (pin "2" (uuid 61701cf0-ba09-4d70-96f1-e2772ede5703)) + (pin "3" (uuid b2457147-548f-41d3-a8e6-c18e635e638c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 595.63 194.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 424c7145-de53-4a71-826f-2e4ac0c6c4ae) + (property "Reference" "U68" (id 0) (at 595.63 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 595.63 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 595.63 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 595.63 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0fcc8913-ed1c-4f19-919e-7f0c2504b505)) + (pin "2" (uuid deeb10f7-8dd4-47d5-a8ac-b167f27d5eee)) + (pin "3" (uuid d99d055f-8e12-4b9e-b7ad-051280cde4ef)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 772.16 154.94 180) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 42b232ac-7eb6-40a5-803a-a2b7d2d79631) + (property "Reference" "U2" (id 0) (at 775.97 154.305 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 775.97 156.845 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 772.16 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 772.16 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9598cf1d-cee8-4772-9f17-72b9cd548670)) + (pin "2" (uuid 0fa7e10c-ae61-431a-a8d5-a14f0e467d45)) + (pin "3" (uuid fc6ca630-10b3-4ffd-b663-32ac2df76efa)) + (pin "4" (uuid 7e8da8d2-ab1a-4c9e-9a2a-75eafb4b7911)) + (pin "5" (uuid fa5e6514-9791-4bf5-a25e-7d823da1a8a3)) + (pin "6" (uuid ddae9851-a457-4948-9acd-8e8fd98a18b4)) + (pin "7" (uuid 1988ccc5-db63-4a8c-b321-315c5a297e1d)) + (pin "8" (uuid e389368c-a45e-40ef-9e7a-35a1580a20b8)) + (pin "9" (uuid 20c4459d-c8ef-4fda-b28c-043ee845a5b1)) + (pin "10" (uuid ff4d9077-e7a6-4637-92d2-7637335f93c3)) + (pin "11" (uuid aeed0848-1ec3-42c2-84a4-9ae859a62295)) + (pin "12" (uuid 244e9974-93ca-43f2-9ae5-f91e412a18bf)) + (pin "13" (uuid 6f7fbf15-d665-47cf-b1c6-3f945f21e9e5)) + (pin "14" (uuid 8d8169f0-ce1b-4615-b349-563f85ae8e2c)) + (pin "15" (uuid 0b2b3b1b-b142-475d-ab7c-074e1fa7cd9b)) + (pin "16" (uuid a5d72196-10ef-44d7-b9a7-a4d2dad161a5)) + (pin "17" (uuid 84684d0b-5c7a-4764-86c8-7c294a0f9de8)) + (pin "18" (uuid 74e1413d-a508-4fda-92e8-4f24579b5bf9)) + (pin "19" (uuid 02dd559a-4de5-44f4-ba02-ef097afe4eba)) + (pin "20" (uuid 5db6fe01-7750-4f13-bb98-e895970746b7)) + (pin "21" (uuid 5084468b-31d2-4b90-8e03-9a86b970a774)) + (pin "22" (uuid 2514ae61-d36f-44a2-98c2-fce7e333ec28)) + (pin "23" (uuid 698feb3f-b0cd-4902-baec-7aff9b7dd6ee)) + (pin "24" (uuid ca9affb3-c5cf-4c95-8236-771ee93cc19a)) + (pin "25" (uuid 9449bc1e-6d39-47f3-a627-f06596558411)) + (pin "26" (uuid a41db978-af0d-4f13-82cd-931ba5ee71b0)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 436.88 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 48821965-4ded-4e7b-8768-7a8cdf6cfea9) + (property "Reference" "U42" (id 0) (at 436.88 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 436.88 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 436.88 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 436.88 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bad8ad74-2353-446a-9403-b4b434a785f0)) + (pin "2" (uuid 5a59be69-1d4d-4c91-866b-872efd367fc1)) + (pin "3" (uuid 52c347b0-9d14-4feb-af11-65e65ca4c081)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 134.62 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4c1b437a-0415-477d-ae82-ebcc26f1a4a4) + (property "Reference" "U5" (id 0) (at 134.62 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 134.62 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 134.62 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 134.62 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1e2272c0-e009-4444-8433-93548efc05cc)) + (pin "2" (uuid 5679a442-7159-4d73-804c-ee688e94f762)) + (pin "3" (uuid c8a18898-1083-4b1c-b664-81250125b4ac)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 207.01 190.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4cf5e43d-921f-4652-9b03-3c9f9ca57aac) + (property "Reference" "U17" (id 0) (at 207.01 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 207.01 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 207.01 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 207.01 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 12681d77-e0f1-40bd-8ff0-09be806325bd)) + (pin "2" (uuid 6b515662-42dd-465d-87e9-02c31dd57349)) + (pin "3" (uuid daf3bb7c-83f1-4ac2-9c16-daf68377a673)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 659.13 130.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5048929d-e82d-4452-82a6-9ff21e299ae5) + (property "Reference" "U72" (id 0) (at 661.035 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 661.035 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 659.13 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 659.13 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 803738d4-6846-4cd8-ad5f-5406c04fca36)) + (pin "2" (uuid d5301b93-3ea1-440c-87de-0d5fc64c21b6)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 541.02 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 50b6a41f-b4b1-467e-9ea5-08452e2aca11) + (property "Reference" "U57" (id 0) (at 541.02 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 541.02 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0751203b-2187-4dce-bd61-bf1acff3951a)) + (pin "2" (uuid 25f4237c-fccd-467f-8cf5-330457d02b18)) + (pin "3" (uuid f462840d-5c50-4b58-8131-ec84b5cb8ee7)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 133.35 148.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 50e85e3a-fa77-4833-a596-adcffec11909) + (property "Reference" "U3" (id 0) (at 133.35 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 133.35 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 133.35 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 36ea04b7-93f2-4003-b32a-64fea1bea6a2)) + (pin "2" (uuid 09e22eba-1c27-4dd7-8343-aa6a0534966b)) + (pin "3" (uuid 9c1ab10a-5263-4a82-bc84-7fc547a57b74)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 377.19 223.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51bc81f4-5bf2-4799-beeb-964da080548c) + (property "Reference" "U40" (id 0) (at 377.19 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 377.19 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 377.19 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 99a88bd2-d873-4734-9dff-b5b9192dfc3e)) + (pin "2" (uuid 3b83854a-d4a6-4cb9-8619-727062ee36fb)) + (pin "3" (uuid 1bb29a83-842f-456c-9d5e-29371acc008e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 264.16 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 52660bee-6b8e-477a-bafd-d43048c2f99b) + (property "Reference" "U2" (id 0) (at 117.475 259.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 117.475 261.62 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 116.84 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 35df2479-618a-48c9-8b62-5e7b792416c8)) + (pin "2" (uuid 3d9951be-0b0c-4975-bae1-94363799bcb9)) + (pin "3" (uuid 153e9307-aebf-4c0b-9157-572ae78094dc)) + (pin "4" (uuid cedc9817-73da-4931-9db3-94686eb7da45)) + (pin "5" (uuid 0f43ad91-e57f-4c71-9e3e-00831758e8f8)) + (pin "6" (uuid e1beed47-7a1f-4df6-b4a5-61957313c78c)) + (pin "7" (uuid 2db1fd0b-18e1-4bd3-8607-f986a02387ed)) + (pin "8" (uuid 18e53fb1-3c20-48b9-a881-7eddf88c1b19)) + (pin "9" (uuid 11cf119a-1af8-4732-8856-93ed500687e0)) + (pin "10" (uuid ebe7a4e8-7142-4a8d-b831-71a21615f8de)) + (pin "11" (uuid 937f593a-9706-4fa0-8867-06b7bfddaea8)) + (pin "12" (uuid 838acb8b-0818-4677-aaee-9a387041690e)) + (pin "13" (uuid 7c02c69d-ee3b-46a2-9c1c-b5645311b030)) + (pin "14" (uuid a2ea4379-aa23-4ca3-8845-cb4f040aa8d2)) + (pin "15" (uuid 74aa9d2e-6c64-45a7-b4a1-e5724c6dc9ff)) + (pin "16" (uuid 8bc4900f-17af-4699-b2f3-99a703c00e48)) + (pin "17" (uuid f0b9f8fc-5402-41b7-ac4c-ce24bd5fd8ad)) + (pin "18" (uuid 4384b94f-16d8-4b9c-9cfc-7fcada47b525)) + (pin "19" (uuid 1a472f39-ea22-44c8-bfbf-2a726be138e9)) + (pin "20" (uuid 43e89954-db04-48e3-8d75-fcec9ccdddfe)) + (pin "21" (uuid 199077e0-a448-4fe0-ab83-effc9af4bd0f)) + (pin "22" (uuid 15ed1e7c-6a8a-4c23-9639-a7059bcc54d6)) + (pin "23" (uuid fb734e2f-6ac1-4fb8-a36b-446d928cc8ce)) + (pin "24" (uuid 38194cf0-aa39-4028-b000-b0da948a6dfc)) + (pin "25" (uuid 499c4f15-bec1-4645-a9ac-8d9b23718a2d)) + (pin "26" (uuid c2587177-0503-4539-8667-eb6cc2dc4e17)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 491.49 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 52e38126-24d1-4901-8335-21ed750c3c92) + (property "Reference" "U55" (id 0) (at 491.49 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 491.49 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 491.49 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 491.49 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a203427a-f339-457b-85d3-bd85ddd221cc)) + (pin "2" (uuid cb1090dc-ada6-42a2-a133-14a01d43a986)) + (pin "3" (uuid cdd99c2f-5c13-4a1e-8600-c5c4caa53582)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 735.33 148.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 533e725b-b96d-4e8a-9304-b3fb3c462b83) + (property "Reference" "U88" (id 0) (at 735.33 139.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 735.33 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 735.33 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 735.33 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d90f9a7-e370-4d8a-847a-76fe3e529a89)) + (pin "2" (uuid 55007aa1-7c69-4614-8a11-69624447f95b)) + (pin "3" (uuid 0748f45b-9497-453d-9251-f16a28ced58b)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 173.99 142.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 56acdb6d-ba2b-45bb-8e2e-21d694540c61) + (property "Reference" "U9" (id 0) (at 175.895 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 175.895 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 173.99 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 173.99 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d85a97d8-32ae-4d66-9be9-af72b18ed28e)) + (pin "2" (uuid fd94edfb-a6e4-4737-806b-d59e2a787679)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 374.65 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5bc7224a-5925-41f9-a3bf-cacbc20a8d55) + (property "Reference" "U34" (id 0) (at 374.65 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 374.65 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 374.65 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ff328ac2-e803-4dbc-bc76-0698907990d3)) + (pin "2" (uuid 09205eb7-100e-429c-a1ef-3a95d1b91384)) + (pin "3" (uuid 9f8a6316-c109-4e05-bd9f-d73f498e2522)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 694.69 166.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d00ff6b-5dba-466e-aff7-d9e01b44f920) + (property "Reference" "U80" (id 0) (at 694.69 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 694.69 160.02 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 694.69 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 694.69 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cf2a279e-a367-412d-b349-9c6d0a3a0baa)) + (pin "2" (uuid d7be6709-3ad0-46c2-9bf9-54a7b34ad75c)) + (pin "3" (uuid fe7e092a-0111-4a73-b55e-475d65095bb1)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 694.69 185.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ed1f7a7-64ab-47d0-8643-96058b54ed50) + (property "Reference" "U81" (id 0) (at 694.69 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 694.69 179.07 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 694.69 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 694.69 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dcbc4e1a-592b-4756-9fb3-ad694d1c1704)) + (pin "2" (uuid 7b5ee2ba-8579-4f6c-8164-c372e9c12206)) + (pin "3" (uuid 91c1f81d-b846-4068-9e90-7c7e521ff540)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 375.92 105.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 629b94fd-0f76-4218-b366-3efb2dd93bdc) + (property "Reference" "U35" (id 0) (at 375.92 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 375.92 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 375.92 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c60717e-3075-4d63-9d92-f718da52f7dd)) + (pin "2" (uuid f8662291-55d2-44b2-a097-14c067d57a89)) + (pin "3" (uuid e8349a5f-b829-4f74-a885-86c3cd6b2d8c)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 172.72 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6404f40b-5104-4cd0-a867-ac15eb8d04f0) + (property "Reference" "U7" (id 0) (at 174.625 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 174.625 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 172.72 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 172.72 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92466746-3316-4e42-b2da-957162cd631f)) + (pin "2" (uuid 1ed44d9c-24a5-437f-9eb2-6f6bd9dd6163)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 294.64 232.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 664324a6-678c-4600-b131-86edc2febbcb) + (property "Reference" "U29" (id 0) (at 294.64 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 294.64 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 294.64 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 294.64 232.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f251d7ad-8963-44bb-b342-88dc34feaa4f)) + (pin "2" (uuid 04d2955a-6938-4a2f-8b4f-874833b336c2)) + (pin "3" (uuid e2add7e2-6b6b-42db-8ed7-72884f867041)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 772.16 152.4 180) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 66a4d68b-f55b-4781-8801-e1546a239356) + (property "Reference" "U2" (id 0) (at 775.97 151.765 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 775.97 154.305 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 772.16 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 772.16 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a480afb-4f56-4d84-99c9-1e237e24cfbd)) + (pin "2" (uuid 43d46582-ed9f-44ef-bf18-efaa06fa6769)) + (pin "3" (uuid 025c5ec3-6fc8-45a7-aa97-a9c3569dde70)) + (pin "4" (uuid d3d9a67a-acdd-4357-aadc-36f027d6db27)) + (pin "5" (uuid f770d086-997d-478d-9b28-5f181c6e21bc)) + (pin "6" (uuid f3b9f921-9484-4ca9-a648-167d57ef2189)) + (pin "7" (uuid 8029dbb1-3ddc-4fdb-b4b6-38a472af3dc1)) + (pin "8" (uuid fe5e93cd-23a7-4c19-a952-12538a7fd050)) + (pin "9" (uuid a4e2660c-5c28-427d-872d-1a8f6875d9db)) + (pin "10" (uuid 9bce441a-ac1e-4c10-92b4-ce303954f233)) + (pin "11" (uuid 049704ca-0a23-4d29-b684-5925cc11f704)) + (pin "12" (uuid 61bb81a8-a91f-4cb4-9a65-03d935b13b55)) + (pin "13" (uuid 2bede687-c592-40ad-9a50-35d99e4a075f)) + (pin "14" (uuid c1ff622f-7f0e-492a-b1f8-850d4a79b155)) + (pin "15" (uuid fa0da024-7445-4c8b-b239-6fb795fb0b19)) + (pin "16" (uuid 8860330e-c377-434e-9d52-c4b14379464b)) + (pin "17" (uuid 2324af9b-5d65-419b-a6d1-0e64275fb7d8)) + (pin "18" (uuid 0ab08f79-1f89-4d1a-90e6-c0033099efd3)) + (pin "19" (uuid 844f59e8-7bec-454f-9839-483e42350104)) + (pin "20" (uuid f5a7bc25-5448-424b-a791-98238b5b5fd7)) + (pin "21" (uuid 8436adf8-9b77-4b79-b188-8cf1c2076344)) + (pin "22" (uuid 257aff6f-555f-484f-92ca-607080d56b7f)) + (pin "23" (uuid e036405f-3534-41a8-b7c4-c3701c998f89)) + (pin "24" (uuid 6b0cab33-2778-4c5c-a6b3-bb0deeaec0ed)) + (pin "25" (uuid eef802c0-919f-4007-8ed3-946c25bddaae)) + (pin "26" (uuid dc5490ac-a09b-4cf6-b9a1-604752c4c5a7)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 594.36 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6916f614-1d1e-41d2-981e-ec17f5a1694b) + (property "Reference" "U67" (id 0) (at 594.36 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 594.36 171.45 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 594.36 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 594.36 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aff551a2-1820-4d0a-9e29-0b77989b9840)) + (pin "2" (uuid 17185d49-4f40-4079-b86b-2caca691d416)) + (pin "3" (uuid 056aec64-f9cf-467b-a858-319e28996e81)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 259.08 173.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a2a1c51-b950-48f3-9733-f074ac7edaa0) + (property "Reference" "U21" (id 0) (at 260.985 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 260.985 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 259.08 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 259.08 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87456713-ce7b-4e84-89ee-759485a755f5)) + (pin "2" (uuid 5d913c2c-9bec-4255-9567-4d193f06dd6d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 722.63 215.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6c2aa998-4bd9-4609-a7c9-d56032253d2f) + (property "Reference" "U82" (id 0) (at 722.63 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 722.63 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 723.9 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 723.9 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e66a0efb-61a0-4c64-9731-6158c8c9ff6d)) + (pin "2" (uuid 021e7925-4c9d-42c1-85e6-02fc4ab4820e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 491.49 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6dc4e07c-d99d-42b8-8275-c638d24d0a5c) + (property "Reference" "U53" (id 0) (at 491.49 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 491.49 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 491.49 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 491.49 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e65b3807-6edc-4e82-bdaf-06357b0b45e7)) + (pin "2" (uuid eb47cc23-ca53-4b51-a1db-79d134e237cd)) + (pin "3" (uuid 7963b4d0-8925-4d44-8ed0-28ff1b8a7620)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 375.92 190.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6f6f067a-c5db-488f-bef6-e7c9560f30b6) + (property "Reference" "U37" (id 0) (at 375.92 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 375.92 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 375.92 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 959bebf9-4ebb-46f6-b137-4fb207818107)) + (pin "2" (uuid c6109566-638b-4a86-b24f-d252eba4011f)) + (pin "3" (uuid 323460e5-132c-4c31-ae42-18d6a892815f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 543.56 198.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 70dc2a1c-0edc-49e1-bb97-3821ff0dcf28) + (property "Reference" "U62" (id 0) (at 543.56 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 543.56 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 543.56 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 543.56 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bf9e77ca-2925-4202-9c1f-e4dfbecab6fe)) + (pin "2" (uuid ecb4fdb2-e8e7-4176-b29f-7ffac756f1d8)) + (pin "3" (uuid 9cf4672f-5ce4-4bd6-ab0a-bbcb7ff7cf1f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 772.16 162.56 180) (unit 21) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 773497b3-7538-4a3d-a4f7-f987b86ae276) + (property "Reference" "U2" (id 0) (at 775.97 161.925 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 775.97 164.465 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 772.16 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 772.16 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aae8ec41-27da-4c24-8b85-a8d9975c0594)) + (pin "2" (uuid 2ea06f53-d7f0-454f-aa88-4b0265f46d14)) + (pin "3" (uuid a880cf39-1bfd-4784-8a17-2f11e04adeca)) + (pin "4" (uuid a095d096-7b83-4337-bf6c-18a0b88f97e5)) + (pin "5" (uuid 9ab73c7c-b714-4eb9-90d7-9d12ebf70a16)) + (pin "6" (uuid 483c538c-2c09-4bd9-86bd-3d062946e396)) + (pin "7" (uuid 1f95fd29-43ca-44e6-998b-0cd1d0dcca64)) + (pin "8" (uuid b07f243d-5d7b-4288-88ea-1edf8e66965a)) + (pin "9" (uuid c592e26c-4b9b-49f5-8079-6a36985c5368)) + (pin "10" (uuid 03e1e6bf-080f-4fc1-bf0a-2386e0d6b411)) + (pin "11" (uuid 38caabea-8658-4143-a2b8-cf9da8315f65)) + (pin "12" (uuid 8d636ab6-436f-4505-a649-3864f735e28d)) + (pin "13" (uuid d98294f0-c601-467a-bf13-4d2d5c03cb92)) + (pin "14" (uuid 381dd519-3189-42d1-b16e-43bec39aa6e2)) + (pin "15" (uuid 227b6f8d-15e3-4376-a636-59ab89ec6319)) + (pin "16" (uuid 387e48d8-bd2d-4c40-b606-83fc260bc351)) + (pin "17" (uuid 92caf771-dc3c-4f2d-acee-4f2de82a3b9b)) + (pin "18" (uuid aab34894-9acb-4727-879f-55ce36bd5aea)) + (pin "19" (uuid 1ac7e158-a63f-413e-a9d9-54fcbe820f28)) + (pin "20" (uuid 02db5f1e-3f32-4b25-880c-be57453e33ef)) + (pin "21" (uuid 8cfcb31d-c864-4211-926f-777efb49e709)) + (pin "22" (uuid a2b745a6-6b94-46bc-9354-2ced36e3b1f2)) + (pin "23" (uuid 0a08fc60-1487-4a88-859e-fc3eea618009)) + (pin "24" (uuid 9cea40d4-01fc-4182-88a3-a7dd3dc0ad12)) + (pin "25" (uuid e18a5b93-8f67-44fb-8652-e818a455cc81)) + (pin "26" (uuid ec6b19e7-fb0d-429b-81ad-a0725b5c7b50)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 693.42 149.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7832d6fa-665d-4c41-b0b6-7369c97f1d0c) + (property "Reference" "U77" (id 0) (at 693.42 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 693.42 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 693.42 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 693.42 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ecc11655-27b5-4912-869d-77fb5aac9a22)) + (pin "2" (uuid 77741563-ac46-4a89-8b1a-52fcf30cccef)) + (pin "3" (uuid 0ec42b15-94aa-462e-872e-c85b4abd4e2e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 205.74 125.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7d09e8ff-6654-47f5-afb8-26db4fc6d873) + (property "Reference" "U11" (id 0) (at 205.74 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 205.74 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 205.74 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 205.74 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7096c022-3403-4936-950b-d49b4addbad0)) + (pin "2" (uuid bcf4ad4a-ee14-498a-b315-3c3f833d4f96)) + (pin "3" (uuid 3e5b99b9-d53c-42b2-bfa9-67e935d19dd5)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 491.49 194.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7efe8772-b63e-4d81-90b1-72c749cfd501) + (property "Reference" "U54" (id 0) (at 491.49 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 491.49 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 491.49 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 491.49 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 732ef87d-ba0c-4312-9b84-e7aea77b5e6e)) + (pin "2" (uuid afd7f3fc-b74c-4d71-aa97-fd8a4d812764)) + (pin "3" (uuid a830c9dd-26c6-4bf6-a14a-84d185d6cc43)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 133.35 181.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 811531a3-092c-42f2-9ee3-cf3a26cc397a) + (property "Reference" "U4" (id 0) (at 133.35 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 133.35 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 133.35 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 133.35 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6a5622c6-9a72-40ca-ad01-0ff6f6eba941)) + (pin "2" (uuid 924db330-e34e-48a1-a444-affd60a2b4d8)) + (pin "3" (uuid f82cf26a-6269-495b-8630-7d820b900d2e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 166.37 271.78 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 83c1bd3f-2b17-4a77-9ccf-84aff7396e3b) + (property "Reference" "U2" (id 0) (at 167.005 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 167.005 269.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 166.37 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0a2054ad-3b59-409f-9015-137a95262be0)) + (pin "2" (uuid f73ac124-6230-4130-9bdb-8ba26727b043)) + (pin "3" (uuid 92647dbb-4e09-40b7-9fe5-6f9508050b49)) + (pin "4" (uuid 8dac1906-5fb9-4fbc-84f4-83aca5cd7e1a)) + (pin "5" (uuid f031f0d0-3777-4801-807f-8481b399944f)) + (pin "6" (uuid 6f965262-6f21-411c-81cb-03056f703941)) + (pin "7" (uuid d8a62b24-d53c-4f59-97e2-ec06554d3ac7)) + (pin "8" (uuid 4b297966-56a5-4fdb-a317-ce6f9d7f64fd)) + (pin "9" (uuid c96c9fbf-3c69-4cf5-a404-8aecff7feb0f)) + (pin "10" (uuid a90aac41-7698-407c-8630-63a717ab11d9)) + (pin "11" (uuid 0c30d013-8b50-481a-ac4f-4bd7c3a22d79)) + (pin "12" (uuid 00ab15f6-fc10-4bbf-badc-cdeae7b77e37)) + (pin "13" (uuid c0d2787e-8da8-4d02-ae02-1042cd2c59c0)) + (pin "14" (uuid a5deb769-a361-49a9-8694-fdc209611df6)) + (pin "15" (uuid 8688d934-1006-4693-b0ef-876d8f6ebe59)) + (pin "16" (uuid 12f44188-64fa-4574-b980-4431318eb793)) + (pin "17" (uuid 60df87cd-7da5-497d-95a3-fc705fb99b94)) + (pin "18" (uuid ee9a4ea3-e46c-4352-a328-92c8d4f798a7)) + (pin "19" (uuid 5ee22d28-609d-4f3b-9fb7-7516c3426f51)) + (pin "20" (uuid 18b070eb-c1ab-4f0e-8343-e26d5102c292)) + (pin "21" (uuid bfd4dbf0-8496-45a3-8496-5d81a86d123f)) + (pin "22" (uuid 87a98ec9-0bea-4a06-b3bb-9d40b0260ee5)) + (pin "23" (uuid 5a36400e-d38d-4155-8e88-a627e479f3a3)) + (pin "24" (uuid 74cbfe4a-a50d-4a04-9a0a-3188dda9fbd2)) + (pin "25" (uuid 6d6e5135-ac33-485a-915d-95b70761ec43)) + (pin "26" (uuid b7f51202-6df7-4127-afd3-2e574dff043b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 487.68 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 84026460-e93f-4592-bf73-745d4bbbf779) + (property "Reference" "U49" (id 0) (at 487.68 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 487.68 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 487.68 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 487.68 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0bd4936c-4db3-44df-8765-118547d16fcf)) + (pin "2" (uuid c735101c-fa3a-4f7f-a471-57a50d4557b0)) + (pin "3" (uuid b5a76b8c-1e93-4956-bbe4-c321a20df368)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 134.62 205.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 854f18c2-507a-433a-aa4d-92c9d63c065b) + (property "Reference" "U6" (id 0) (at 134.62 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 134.62 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 134.62 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 134.62 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 95f75095-59f1-4cc1-9dbb-e0d8fe485412)) + (pin "2" (uuid 42afe557-dafd-4769-8c53-e40c1af8e294)) + (pin "3" (uuid b837535b-c4dc-4306-a3c8-9746000621a8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 374.65 124.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8ccf461a-a5a4-405f-8c58-6fc70581e400) + (property "Reference" "U33" (id 0) (at 374.65 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 374.65 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 374.65 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 374.65 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f3558d47-f651-4ec1-a63d-07d905e99eab)) + (pin "2" (uuid 7406a739-d139-43ed-bbc1-81a5b57d4228)) + (pin "3" (uuid a34a57a1-6dbd-4fc7-b9ba-e7ccea7610c5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 292.1 173.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8db8c577-5da9-412b-b257-316af8ddd91f) + (property "Reference" "U26" (id 0) (at 292.1 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 292.1 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 292.1 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 292.1 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 657e3536-8a15-44a9-8f21-f27c484efa0a)) + (pin "2" (uuid 607a0439-8fad-482a-bf85-7a62488f8429)) + (pin "3" (uuid 7b50dd5a-c27f-431d-8d94-ec47c08b14da)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 542.29 166.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9099adf0-0c81-451b-8bb7-ca5593920181) + (property "Reference" "U60" (id 0) (at 542.29 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 542.29 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 542.29 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 542.29 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5a7d7178-d064-4d5a-b856-e7f463891955)) + (pin "2" (uuid 3397f177-f30e-40ec-9772-2db2e5f80332)) + (pin "3" (uuid fb772273-67f5-47c1-99a4-16571134aee5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 542.29 181.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 90ed2e8e-3b90-444d-b821-c2f637fb2565) + (property "Reference" "U61" (id 0) (at 542.29 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 542.29 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 542.29 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 542.29 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 81e78481-85dc-4ae6-a1da-4f037ebee7b1)) + (pin "2" (uuid 22c30ec0-e461-4bd3-a12b-5469426c0c1a)) + (pin "3" (uuid 0239fb58-75b3-4886-9573-579cd7a6f28a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 290.83 143.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 915aaa53-70ec-4503-92f7-af195960180c) + (property "Reference" "U24" (id 0) (at 290.83 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 290.83 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 290.83 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 290.83 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 396be1c5-3a37-4317-b519-9a576cfc3efb)) + (pin "2" (uuid 1d05bd81-8f6b-4af8-a80e-43fb5a3fc2f2)) + (pin "3" (uuid 2897c2b0-d32e-4d82-a46d-74905df0b7b6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 725.17 132.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 94dcbaea-405f-4a7c-bd8b-57e610ff7260) + (property "Reference" "U84" (id 0) (at 725.17 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 725.17 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 726.44 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 726.44 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b0cb3923-ea5b-4e69-b43a-8de82f6b7a38)) + (pin "2" (uuid 581979ee-4fbe-4f77-bb81-02283b600bc5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 269.24 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 965a2369-ed09-4df7-a636-5ba96179419f) + (property "Reference" "U2" (id 0) (at 117.475 264.16 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 117.475 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 116.84 269.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 269.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 86361b51-77b4-481d-bf34-864a57604140)) + (pin "2" (uuid 9053ce84-72db-4037-8c55-5506d7502e80)) + (pin "3" (uuid 923c5b0a-9d77-4d03-b819-624bdf3596ba)) + (pin "4" (uuid 008bf88b-a58e-4d46-b3ac-8d943f8a220f)) + (pin "5" (uuid a0630207-a9c5-44ba-a00f-e7a0a86423a7)) + (pin "6" (uuid 20a7a82e-8ef0-4275-b82d-a22b69bc8a98)) + (pin "7" (uuid 252e5cef-9515-4cfd-84c3-262984bcbe72)) + (pin "8" (uuid a6100508-4604-4c43-b2c3-bc0501bcbfe2)) + (pin "9" (uuid a372d06d-9c5e-469e-98d4-86daab4ad99a)) + (pin "10" (uuid 1c5336f2-24d3-4357-b6b3-3f669ceb6879)) + (pin "11" (uuid 75cb5c90-99c9-40dd-83b7-a5e82c0a1343)) + (pin "12" (uuid 89ab5a40-894f-4a05-a9de-78255e1b2bb0)) + (pin "13" (uuid 84f1cfbb-42ae-41a6-adcb-de3bdf219388)) + (pin "14" (uuid d6237389-c3f2-4dc2-a1b9-41a999be5d73)) + (pin "15" (uuid d051f1e6-356f-4ab5-8df3-5a3d514b0e0d)) + (pin "16" (uuid 387b8ec8-980a-4a36-9446-33156e422d27)) + (pin "17" (uuid 5dfea10c-a56e-477f-a9ef-bda1871e52a1)) + (pin "18" (uuid bfd4b9ef-4df0-48bf-a050-c9ef54e014e2)) + (pin "19" (uuid 4861015f-bce8-4d24-baf6-4b467b58b285)) + (pin "20" (uuid 9777a5e5-68f4-4adc-a994-3c6939324413)) + (pin "21" (uuid ddb94a4f-986b-4f9b-a336-3b3f6a60e97a)) + (pin "22" (uuid ab5ad507-9cf0-4f5f-b7eb-1cb38bb0fa04)) + (pin "23" (uuid 96c047fa-66b5-492e-b67b-ea888428c3ae)) + (pin "24" (uuid 52589bb7-3c3b-4dc2-8a69-deb81f5be797)) + (pin "25" (uuid e0396318-eeb4-4aea-912d-3031bdfbe97e)) + (pin "26" (uuid b74e8136-30b9-4c0d-9b11-577e894f2f51)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 266.7 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 986586fe-2219-4beb-b5b8-b9ec88ad1470) + (property "Reference" "U2" (id 0) (at 117.475 261.62 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 117.475 264.16 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 116.84 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d7dbce1-408d-4da2-be3a-fcdab5c4b63c)) + (pin "2" (uuid 44a42525-bdf9-4e65-a8fa-ca328212b381)) + (pin "3" (uuid ebbd1989-8957-473f-8e93-1d4adfd4c884)) + (pin "4" (uuid a27c0b47-a19c-4f91-8a68-2ea43690d467)) + (pin "5" (uuid 26889158-7f33-4c87-adee-799c773eff9f)) + (pin "6" (uuid dfbf540e-c340-498b-a0cd-bb80959d0211)) + (pin "7" (uuid 1661a485-8b04-4ef8-a7f0-cd5fb7c154bd)) + (pin "8" (uuid ab74bfc2-9e6e-4237-89d1-79ced398e012)) + (pin "9" (uuid 42bc7697-6052-420e-b0af-7b1ba8158337)) + (pin "10" (uuid 951ae800-ec17-4b36-9a50-29a1efd0d959)) + (pin "11" (uuid 89dc163d-a859-4b63-a8ed-94f5b65d684b)) + (pin "12" (uuid ebe62948-f813-485a-8407-5f47a7e65278)) + (pin "13" (uuid 86bf53c1-e85b-481e-a461-fb8eb3c98c1e)) + (pin "14" (uuid ac3d369d-45d1-4aaf-bc00-b6dee92c5a5e)) + (pin "15" (uuid 6c9ef4b2-fe23-4963-85f2-ab1e9571d951)) + (pin "16" (uuid 7feb1d60-2371-4ac4-99ad-cb7eb11336a4)) + (pin "17" (uuid 8977c081-d842-4b46-a2bb-a6e21bced0a4)) + (pin "18" (uuid 508a41c8-dedf-4b8d-9fbd-b7426f978da3)) + (pin "19" (uuid 6572d2c1-e406-4050-9107-412eabffff58)) + (pin "20" (uuid 08fe5ce8-2990-4b99-95b9-0a10bfd0b781)) + (pin "21" (uuid 5047c753-9476-4ccd-a207-1ddfa25ff7f0)) + (pin "22" (uuid e3cbe625-2126-48e4-b986-cc4aed572185)) + (pin "23" (uuid 63a1595e-0d2c-4cb2-9b45-0729ea9683fc)) + (pin "24" (uuid baa9352e-ebb7-4d9d-a867-71e81a477d67)) + (pin "25" (uuid 166478fb-3d64-4c1d-a0c6-32a8b8981f53)) + (pin "26" (uuid f6d0cc9a-c63b-4bb2-a02c-5046f96a2fc7)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 438.15 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9b869cd1-7c00-4978-b1b6-03dbfe34041b) + (property "Reference" "U43" (id 0) (at 438.15 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 438.15 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 438.15 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 438.15 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1fd5432a-525e-49be-9b67-d9c11db9bcde)) + (pin "2" (uuid a2ede91e-7049-4009-9e84-f7dd55cc1890)) + (pin "3" (uuid e0b4d70f-38e4-4493-9cc2-db0aad9c061c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 488.95 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a0c2595c-3442-4185-b59b-c2e3b0661933) + (property "Reference" "U50" (id 0) (at 488.95 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 488.95 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 488.95 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 488.95 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 74b02349-5093-4074-a7c1-5f2e9653b29f)) + (pin "2" (uuid 69667608-8d7f-4cf7-8ca4-f9ec3260c66f)) + (pin "3" (uuid f25c37cf-c7a4-44ed-b60e-a36004566334)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 772.16 149.86 180) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a132d474-fa94-44ac-a62b-59cfda8de28e) + (property "Reference" "U2" (id 0) (at 775.97 149.225 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 775.97 151.765 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 772.16 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 772.16 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ff8408a8-5abf-4db7-ae36-dba69877fea1)) + (pin "2" (uuid 243d143d-e929-4c96-962a-2e47cdbe572b)) + (pin "3" (uuid e46be218-e485-4b73-b507-6e6b093885a8)) + (pin "4" (uuid 19833182-6aa5-468a-a119-dcc5dd952958)) + (pin "5" (uuid 353d8080-ca78-4947-9b95-316719b4895c)) + (pin "6" (uuid ad983fe7-076e-49db-935f-af6aa2dc810f)) + (pin "7" (uuid 0923489f-db65-4b08-b335-0291d6b31349)) + (pin "8" (uuid 20ca8057-a81a-492a-acd0-31afb81e8401)) + (pin "9" (uuid f767484d-fc53-4424-ab18-388e5c62b650)) + (pin "10" (uuid 6db1476b-f582-4ccf-9a45-12dfd70bdb53)) + (pin "11" (uuid 889c3b22-9802-4237-a278-6b228d7e3d99)) + (pin "12" (uuid c0dd2e82-9cd9-46d8-90c7-689741cacdc2)) + (pin "13" (uuid 2653d9f4-5a52-4342-82ed-16de58a3e614)) + (pin "14" (uuid 696829a5-f7f5-4754-9bc0-e4b7c6d0a4a1)) + (pin "15" (uuid fafc1224-21d9-49d7-b4b5-aa8344eaca5d)) + (pin "16" (uuid e0fa87e9-c047-433b-9436-9f15c3915646)) + (pin "17" (uuid 2c878df7-ab31-4e4b-abda-76b6ab231eaa)) + (pin "18" (uuid 2cff8a68-2bac-4667-8615-6bb662b43b31)) + (pin "19" (uuid c1349ddb-6615-4955-accf-0cb14211328a)) + (pin "20" (uuid 85992205-144d-4bad-bb1d-2369f2de070b)) + (pin "21" (uuid 92c5b037-da86-4ec9-88e4-c395ffe23788)) + (pin "22" (uuid 5bd650d7-e318-4953-8944-28d02dc6351e)) + (pin "23" (uuid 235e8b84-162a-4566-bf08-b1f237123a15)) + (pin "24" (uuid 112d7bb9-4041-4588-915f-9a11ee353085)) + (pin "25" (uuid a5b32ab5-3835-4375-b44d-5e6f0df12b1b)) + (pin "26" (uuid cbfa61ee-3657-4c86-b13f-ee9bd5a4f03b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 271.78 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a39ca95c-526e-4e60-9713-91b2565dbcdb) + (property "Reference" "U2" (id 0) (at 117.475 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 117.475 269.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 116.84 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e136eb51-d981-4599-9e8a-1d40ebc2c9a4)) + (pin "2" (uuid 3ab957a6-7238-48c5-b638-e8527d5bf2f4)) + (pin "3" (uuid f915315f-b6be-4527-8bea-8d3542ca213f)) + (pin "4" (uuid 60435a31-113b-46a2-8281-16750f46dfcf)) + (pin "5" (uuid 7a00ca9b-eddd-4d38-8468-301f1a285b8c)) + (pin "6" (uuid feacdd41-af11-4ead-984f-38ba9f31f710)) + (pin "7" (uuid f708cb35-ac36-43fd-891c-824b5f953d77)) + (pin "8" (uuid 7e8bc6ee-45a0-4ad2-8dde-7242258af97e)) + (pin "9" (uuid 7bf8b9f3-ea99-483f-bce5-3de644cb42b9)) + (pin "10" (uuid b7914565-a0f8-4cc0-9f3d-e79e915bc675)) + (pin "11" (uuid 11ddbf02-2721-4a5b-a284-c338219a1a8b)) + (pin "12" (uuid a496e620-a40d-4f7b-88cb-055bf253dfba)) + (pin "13" (uuid fb60022f-a3f0-4fce-8c5c-2674993eb6da)) + (pin "14" (uuid 34da585b-1ce1-4c4e-a5f5-cb9b3b5e78d0)) + (pin "15" (uuid 40642b94-2bdf-4cd4-8ba9-9a4dd5de5c6d)) + (pin "16" (uuid 91b08cab-b76d-473f-bd18-1c98bab26d34)) + (pin "17" (uuid 86c335f4-0e54-4314-8671-36cb89658409)) + (pin "18" (uuid a3b0198a-66ab-490b-8a6a-3f2fd017ad62)) + (pin "19" (uuid 652eb83c-570f-4046-bc8f-657f0c842ce8)) + (pin "20" (uuid 9ee859d5-0fe7-401a-9b3c-d76af4ae8bdb)) + (pin "21" (uuid cc7a6d7d-fdd2-4641-82b5-1c974e0a8ff1)) + (pin "22" (uuid a0f6141d-e47c-45b2-a1fc-06288a14d467)) + (pin "23" (uuid 9a0f63b7-9fb0-4330-8cca-f26edd44b3ab)) + (pin "24" (uuid ceb7dc5a-7b64-4b75-aa63-e408c0dd9bc0)) + (pin "25" (uuid 1c699fea-0f88-418d-b13f-0ffe9492d588)) + (pin "26" (uuid 2e7c2b80-52f7-4355-929b-3e754a42d676)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 660.4 182.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a68d9750-6822-48b7-b91d-fe5d7a17fb61) + (property "Reference" "U74" (id 0) (at 662.305 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 662.305 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 660.4 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 660.4 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0a12247e-f261-4800-99e6-8411412f2636)) + (pin "2" (uuid 6eb76af4-7a7c-4d05-bc2e-a0d375d84aed)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 207.01 175.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a6929a4a-dde9-4adf-93de-0bf33c5989f6) + (property "Reference" "U16" (id 0) (at 207.01 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 207.01 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 207.01 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 207.01 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 410f1d62-4342-420d-b861-36e594c766ef)) + (pin "2" (uuid 777b704c-ff9b-487b-8128-1aa89a0c6e31)) + (pin "3" (uuid 5fd018ff-e4be-49fa-89de-2944b63b52a9)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 659.13 111.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aac0a955-9b64-4654-930e-76f59a4682dc) + (property "Reference" "U71" (id 0) (at 661.035 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 661.035 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 659.13 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 659.13 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c87d96e8-c60d-4482-a110-e01a351a046c)) + (pin "2" (uuid e0079193-5cbc-46d8-9f80-922fbf6b8d12)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 375.92 207.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b00d87a1-8e86-4239-95c6-3bc6bde7fb38) + (property "Reference" "U38" (id 0) (at 375.92 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 375.92 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 375.92 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 375.92 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 61ec3cfe-ccd7-4850-90d0-d2d495d60873)) + (pin "2" (uuid b5c61460-6975-420b-99c3-ee2b3d8f17cb)) + (pin "3" (uuid 1a4c9bc0-7085-4c0a-883b-e964822ed45c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 207.01 142.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b14c4d3a-227e-4ba8-9c16-6748fde48431) + (property "Reference" "U14" (id 0) (at 207.01 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 207.01 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 207.01 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 207.01 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad92ec36-bbbd-40a3-b746-69d41d51d6a7)) + (pin "2" (uuid 4f55f99a-0eb5-424f-9755-6d075791c79c)) + (pin "3" (uuid 27671b81-af35-4510-b67f-7fdf11696530)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 259.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b5035a45-1cec-49aa-a270-792c88a62244) + (property "Reference" "U2" (id 0) (at 117.475 254 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 117.475 256.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 116.84 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 93bb9c4d-4133-48f7-b4be-c33644a9fac8)) + (pin "2" (uuid c43511b5-2fc1-4b18-8fbb-30bdcfc3b5cb)) + (pin "3" (uuid a7cf00e8-301b-4e23-a2c3-97a40d960f47)) + (pin "4" (uuid dc641992-7ae0-428b-bbeb-fd79708a1e24)) + (pin "5" (uuid 785ffa59-0f57-47f5-bed0-8bc823d9bc06)) + (pin "6" (uuid 273eee28-0963-490d-8918-3881b86a0456)) + (pin "7" (uuid a48465e8-f33a-4369-8b22-5da9cfe15685)) + (pin "8" (uuid 53502d92-76e2-47f8-835f-f0c47d989978)) + (pin "9" (uuid f5be120e-5034-4c5b-b019-0d203e15ddea)) + (pin "10" (uuid bbe27414-f0ea-45b4-b29f-8767f17e4013)) + (pin "11" (uuid 253bd5b1-90db-4d5d-867d-e8e2094e4a93)) + (pin "12" (uuid f4d25374-98d7-4636-9338-8b3d037abab6)) + (pin "13" (uuid 474d82bc-5177-42b1-b15c-4c5d20f4c820)) + (pin "14" (uuid e5376e85-7fe8-4cdb-867b-85f009774133)) + (pin "15" (uuid 1c3aa8b7-9a4b-4b63-9a59-181b532e5b7a)) + (pin "16" (uuid 3798cbc1-0cf2-44a5-ac65-5c6c649b2e97)) + (pin "17" (uuid 121071aa-2514-4e38-a037-cfde61fda042)) + (pin "18" (uuid 28c62531-8174-4d59-95e0-29ccc3d08a36)) + (pin "19" (uuid 170f97ac-b5ea-40dd-9b8d-de8a33644d3f)) + (pin "20" (uuid 693d8e0c-056b-4976-9d55-db16b04273c3)) + (pin "21" (uuid 121dbd92-439f-4122-bc1e-1bb2b60afeb2)) + (pin "22" (uuid 00e8c49b-d827-4601-92cb-04965c215fd6)) + (pin "23" (uuid 9297b791-5c95-41de-8515-6d9632f657ed)) + (pin "24" (uuid 655945e3-d18a-4cd6-ba4f-55ad04f872dd)) + (pin "25" (uuid ef21c55e-4602-4395-b163-e6e94d766cff)) + (pin "26" (uuid 34a5516a-63b4-4fbc-ab96-e1b11ea6691c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 207.01 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b83b5606-a7a2-495a-ba44-0ed3ca6b82a9) + (property "Reference" "U13" (id 0) (at 207.01 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 207.01 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 207.01 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 207.01 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 81e7f9c2-9eeb-4ade-b275-7c98c5d5f139)) + (pin "2" (uuid 2bdf8da0-6a41-44e5-b2d8-b042451501ba)) + (pin "3" (uuid c7fa6587-ee06-46c7-89b6-888399f537a8)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 289.56 128.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba97df44-6da5-4b67-875d-a1e18b14c354) + (property "Reference" "U23" (id 0) (at 289.56 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 289.56 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 289.56 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 289.56 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d84e0e20-3571-4320-b1db-485f1cd6c4cd)) + (pin "2" (uuid b80e2784-2d78-4f43-9565-53c70c32f698)) + (pin "3" (uuid 694c14e2-f0c2-44c8-babe-177f2dc0a1cb)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 542.29 137.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid baa36146-9f0d-4484-8397-6dbe1b4b2ead) + (property "Reference" "U58" (id 0) (at 542.29 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 542.29 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 542.29 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 542.29 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f28c21db-2780-4a2b-b727-40dae0392daa)) + (pin "2" (uuid 5231a158-b888-490e-a28d-0a36f73862e4)) + (pin "3" (uuid 2587a60c-d493-4a34-9858-c0182bc419ad)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 693.42 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc22ddbc-dfb7-4b6d-b60c-12ac9205806e) + (property "Reference" "U75" (id 0) (at 693.42 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 693.42 107.95 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 693.42 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 693.42 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4d9eec10-4961-4ece-ad1d-d191d4035bfc)) + (pin "2" (uuid 6f5fcd23-a896-41a6-8f64-d26f1b001fc7)) + (pin "3" (uuid b9db0fad-bd71-4339-9265-6963af02e94b)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 288.29 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bd11d06c-532e-4b6f-b0ab-2cacc33bde11) + (property "Reference" "U22" (id 0) (at 288.29 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 288.29 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 288.29 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 288.29 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid db705942-d00f-43ed-b629-5eba6b722ef7)) + (pin "2" (uuid ddf3676d-47d1-4807-bcb2-0e4be2ea877c)) + (pin "3" (uuid 292879d6-a2fb-4d83-85d0-d20882f4f39e)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 693.42 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bdb7aeba-fa99-483f-91e8-2fb5a459b783) + (property "Reference" "U76" (id 0) (at 693.42 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 693.42 127 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 693.42 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 693.42 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5659c9ed-07bc-40fb-8e17-a0f968817263)) + (pin "2" (uuid 9838a658-f475-4889-927d-88d4a888f25e)) + (pin "3" (uuid e558a00f-32a7-41c4-aab0-b348fb1f7b6d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 726.44 184.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bfe91459-e623-464c-8e1f-a9c2fb3e2540) + (property "Reference" "U86" (id 0) (at 726.44 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 726.44 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 727.71 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 727.71 185.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 342b3a4b-f496-421c-9971-9fcb2af61474)) + (pin "2" (uuid fbd2f805-fd96-403d-9b7b-7839b49001b6)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 173.99 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c1b98d40-b185-4954-a4b4-6a3f31fba42d) + (property "Reference" "U8" (id 0) (at 175.895 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 175.895 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 173.99 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 173.99 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3da281b4-fb6a-4e29-b7d1-08e23f5b0d21)) + (pin "2" (uuid a199800e-e54c-4ad1-9684-63888bc61d0c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 208.28 207.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c4300af6-12a5-4f96-90d0-fc7a48ae387d) + (property "Reference" "U18" (id 0) (at 208.28 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 208.28 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 208.28 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 208.28 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6602721b-3a24-40a5-ad08-aabe70f8c37b)) + (pin "2" (uuid 34541f9b-245f-4279-baf9-2a21cd7b0f05)) + (pin "3" (uuid a7cf1659-9a96-4f19-a61f-404ff51f6b42)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 166.37 274.32 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c554cbf0-b13f-4f13-b245-6142f3fe068d) + (property "Reference" "U2" (id 0) (at 167.005 269.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 167.005 271.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 166.37 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8713200f-8d41-4fd2-a97b-2217ecd3ea2d)) + (pin "2" (uuid 7f0183c1-18ae-47d0-9273-ec48fd85d3e8)) + (pin "3" (uuid 81d92fb6-27cc-445e-a28c-d2e30dc59e8b)) + (pin "4" (uuid cb58db54-f529-45c3-afdf-686ff5d43176)) + (pin "5" (uuid a33baad0-da77-4928-a1d2-1a28f551c34d)) + (pin "6" (uuid 6c1e11dd-4732-4d53-98b2-eabd494a44e8)) + (pin "7" (uuid c7e98dfd-a862-4197-9270-89bb2aac3724)) + (pin "8" (uuid fc6a7634-9cf3-4b62-b133-3ca83cfc25c5)) + (pin "9" (uuid f3497e50-22e1-4d0d-8d00-9d453c44c258)) + (pin "10" (uuid 9cad2ec5-7890-47fa-b3c9-746e2f197c40)) + (pin "11" (uuid 7e501d32-f68a-4ecd-962d-6abf0575e450)) + (pin "12" (uuid a4db2097-2f57-4ad0-95cd-ad25276f40e7)) + (pin "13" (uuid f43c96b8-f793-4472-9b2d-88153c51f264)) + (pin "14" (uuid e483e052-3761-446b-9d0b-48f16f28769f)) + (pin "15" (uuid d13c88f4-6ae4-4b67-99d5-ba7647e708dd)) + (pin "16" (uuid e5433ee5-44cf-4fd1-833c-7f8a428c7179)) + (pin "17" (uuid 398c0373-9acd-492f-afc2-2afca96d3331)) + (pin "18" (uuid d1735665-0a34-4235-9150-05afa1f46b07)) + (pin "19" (uuid a8a63ec4-bd0b-431b-9e7f-b34d292e27a8)) + (pin "20" (uuid ef164ffe-bdb7-4729-b1b6-a6e480158b14)) + (pin "21" (uuid 972a902b-fc77-4396-a8ad-47d90afd9bdc)) + (pin "22" (uuid 376054c5-1969-4669-b522-576ae246211b)) + (pin "23" (uuid 56e08786-5158-4035-90e1-24528731ca81)) + (pin "24" (uuid f0839ee4-3484-490c-8c8d-121794195509)) + (pin "25" (uuid f4dd1189-10f7-4e71-ad5d-f8c2c7daa48c)) + (pin "26" (uuid 2b85a61f-74f3-406f-b70a-cdd2dea42d80)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 726.44 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c6ee3af1-a7e9-4572-9b41-082537b9f459) + (property "Reference" "U85" (id 0) (at 726.44 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 726.44 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 727.71 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 727.71 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ca67d07b-8799-4b60-92d4-3ec7c82bd4ab)) + (pin "2" (uuid f74d8ca6-9696-4661-80de-9026ca0fdd88)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 207.01 161.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c7ad480b-af2c-4ec8-9595-834927964ca1) + (property "Reference" "U15" (id 0) (at 207.01 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 207.01 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 207.01 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 207.01 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid acec28df-e06a-4bee-9891-f14a5f861a7d)) + (pin "2" (uuid f43d854c-60b1-49f0-aa96-ec09b49a4130)) + (pin "3" (uuid 462e7481-ff93-405a-b7a7-fc8887823390)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 261.62 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cb087e72-9fc7-4b76-9f35-8b44b4ea9c3b) + (property "Reference" "U2" (id 0) (at 117.475 256.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 117.475 259.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 116.84 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid de2c1cf1-b087-4985-a3fc-533e03459ec8)) + (pin "2" (uuid 40ab2490-4d93-4583-8bd9-ae3c367ae7cd)) + (pin "3" (uuid dc018edc-2efb-480d-9cc8-c32353eda288)) + (pin "4" (uuid 5585316c-a523-4a55-8424-8920a77f0491)) + (pin "5" (uuid 98952821-52f4-4d32-8ab5-71d34f98316e)) + (pin "6" (uuid 274f4560-e6ec-4836-b657-3a853f8baf4b)) + (pin "7" (uuid bcd03b4f-ef43-4344-920d-300821fe8c7b)) + (pin "8" (uuid 75a64f05-30da-4680-b70e-5d2e5119a9c1)) + (pin "9" (uuid f2770cc3-f5bc-4fed-9e21-7471c6932b6d)) + (pin "10" (uuid 14eac9aa-020a-4488-aa83-4b253b2606db)) + (pin "11" (uuid 83708f9c-ef3a-4d27-98b5-428e323e2290)) + (pin "12" (uuid abb989c3-8049-4300-913d-1bf75bb64203)) + (pin "13" (uuid d6b6a3b4-c7e7-41e3-8f76-6e3a87411cbd)) + (pin "14" (uuid c8a2ad30-1e9a-4066-a75f-e6e477e41d01)) + (pin "15" (uuid 22fc609d-6a03-44ba-a12e-1286cd1e8079)) + (pin "16" (uuid 5db3f7cc-85a9-4fa8-af53-e38a95ac8abe)) + (pin "17" (uuid fb01d45f-819c-4a75-b697-745a596decf5)) + (pin "18" (uuid d2f07908-e3c9-426b-85a2-6b40f0fbc8e1)) + (pin "19" (uuid 027af527-7885-44ca-aff1-7fbf534aaa07)) + (pin "20" (uuid 6541195f-a590-42c0-ac4e-d816410129f2)) + (pin "21" (uuid 5db97cde-3491-4e9c-be61-5a2235bafb8f)) + (pin "22" (uuid 4354d40a-60a2-4474-96e1-9d3aa47874d5)) + (pin "23" (uuid 3f2a83c2-c759-4989-8a5a-f796a793eb4d)) + (pin "24" (uuid 9a9b2e20-e96e-47bb-9137-ff5e0aa43058)) + (pin "25" (uuid f7857009-84ad-4b0e-a219-1fc22c1007e6)) + (pin "26" (uuid b88b1064-4a49-4741-b942-29d486b6d392)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 166.37 264.16 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ce23bc4b-7584-4921-9c11-36af0e35bc61) + (property "Reference" "U2" (id 0) (at 167.005 259.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 167.005 261.62 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 166.37 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a36e2b4-0e0c-4c45-872b-1630024eddf4)) + (pin "2" (uuid e3be29a1-f4ea-4b56-84f7-f8e1ce55c68f)) + (pin "3" (uuid 00e025ca-3e58-4fef-b73f-04840531829a)) + (pin "4" (uuid 6e5f0ff4-6598-43ac-97af-4ffbdb1b8122)) + (pin "5" (uuid d4c64133-7598-49f5-a473-f9ef2fc326de)) + (pin "6" (uuid 2b3f312c-bd5a-4856-984d-ad650c220c61)) + (pin "7" (uuid 65ba5fcb-8cfa-4b06-b999-6b41ed31efb8)) + (pin "8" (uuid 83b6bbac-e554-4275-a506-540eccd6cf92)) + (pin "9" (uuid 6cc0662e-f9ea-4d50-a686-a5d7470b5932)) + (pin "10" (uuid 311416a5-1cda-42d7-b210-5fc5743cd045)) + (pin "11" (uuid 616b99af-f9f0-42ab-94c4-972d0b6748f5)) + (pin "12" (uuid a88c37bc-2e59-4748-919d-b7da820ed2e6)) + (pin "13" (uuid 90173112-0227-433a-9b75-1d1ab45d3504)) + (pin "14" (uuid 1c599566-7630-4184-893e-188ed867ead4)) + (pin "15" (uuid 680edcaa-1423-4d2a-9e35-aeda8b863834)) + (pin "16" (uuid c3bd8f8b-0023-4e41-af00-9394aa75c32f)) + (pin "17" (uuid e931b5ff-6813-48c1-9d29-37365d9df6ba)) + (pin "18" (uuid 37c28cac-ec99-478b-b77e-3a5addf29f82)) + (pin "19" (uuid d78fcf57-f946-43cb-9f7f-2c390f8ada0b)) + (pin "20" (uuid 04744f2b-d332-4948-a32f-474c131148c9)) + (pin "21" (uuid ebd891f6-5781-49d5-ab43-c1a8da7d941b)) + (pin "22" (uuid 51b738a6-84a4-4be8-bdfe-3b71fbeb2f91)) + (pin "23" (uuid ba14fbf2-cecd-4396-af96-9c3659bc523b)) + (pin "24" (uuid a57610e2-1360-4af0-8df6-9a113e6abc45)) + (pin "25" (uuid 644dd8c4-1526-43c2-ac70-b04e8d2940b7)) + (pin "26" (uuid 4abc51a7-88ca-4b57-b2f7-2840a9678834)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 116.84 276.86 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cea218ce-3d96-4a62-aeb1-b693f3a5ab23) + (property "Reference" "U2" (id 0) (at 117.475 271.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 117.475 274.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 116.84 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 116.84 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8ff9447b-5e2a-4c36-9aec-3cbbdf95f26d)) + (pin "2" (uuid bbf2eb2d-4ebc-47af-afc4-4ffc6e3cdeb4)) + (pin "3" (uuid 30af6a53-756f-4b29-aa47-214ee309983d)) + (pin "4" (uuid 4aa5c3ef-a93f-4d0c-8940-53f6ad0d6627)) + (pin "5" (uuid d9819adf-b9d9-48c9-8748-e4e227149daa)) + (pin "6" (uuid ffb80caf-9796-4696-a386-635a88e1c6b6)) + (pin "7" (uuid bdb6ffdb-bfed-46cd-a68b-1ed9569491e4)) + (pin "8" (uuid 0b7109de-86ac-4c2e-9e6b-4cf5690ebb98)) + (pin "9" (uuid f964e188-a2d2-471f-9a5f-b0640d7a0489)) + (pin "10" (uuid ee60b807-7dc4-4db6-bf06-eee18426b96a)) + (pin "11" (uuid ec777b98-11e1-42db-938a-71c2a7d47dfb)) + (pin "12" (uuid d13732b1-ee5b-42e5-9033-744299471dfe)) + (pin "13" (uuid db717172-11db-4bb4-8d84-1052039e6875)) + (pin "14" (uuid da78b5de-becf-43b6-bcbe-c98261805408)) + (pin "15" (uuid fa2bae78-dbda-4582-b7e3-2ea9042ee249)) + (pin "16" (uuid d69e2de1-e92c-4ae0-8108-cf8c3d1879c5)) + (pin "17" (uuid 6323f1ea-7efe-4234-be08-322050f60977)) + (pin "18" (uuid 2f0bbed9-e453-4e78-9be6-1d3709ceaf84)) + (pin "19" (uuid 00efaed2-27be-46e9-81b9-7f81c2b9feb9)) + (pin "20" (uuid 0c045fc6-ca95-4844-9fd9-2087d0e8d0c3)) + (pin "21" (uuid f6bb8b21-7fba-42f2-ac69-55a270595dbd)) + (pin "22" (uuid dc423e77-343d-4870-b344-d7d408a97781)) + (pin "23" (uuid 26b4a654-6584-44fa-b0a7-5949c0eda81d)) + (pin "24" (uuid 691e88cf-56c1-4732-bcdd-8638c6288809)) + (pin "25" (uuid 410b3553-ced7-4acd-90f0-d267817d4418)) + (pin "26" (uuid e4733247-2c12-49e5-a134-42e05cba3edb)) + ) + + (symbol (lib_id "eSim_Digital:d_xor") (at 593.09 130.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf77f417-c7ce-41d1-a671-ef8d19c027c4) + (property "Reference" "U64" (id 0) (at 593.09 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_xor" (id 1) (at 593.09 124.46 0) + (effects (font (size 1.1938 1.1938))) + ) + (property "Footprint" "" (id 2) (at 593.09 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 593.09 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9663b296-44f8-4eb6-a358-c42140965170)) + (pin "2" (uuid 512bdde4-fcdf-401e-91f0-bb07961a35ec)) + (pin "3" (uuid 430698ad-6275-4850-b035-9d1d2bc1fbf7)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 175.26 227.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d29b2440-2ebf-4c4e-baba-71c71aa7d4cc) + (property "Reference" "U10" (id 0) (at 177.165 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 177.165 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 175.26 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 175.26 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ca1cd401-74b6-4da9-a7ca-cfcf63d64165)) + (pin "2" (uuid 5501547d-c013-426b-954e-d4a4d83989ee)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 440.69 203.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d60d63dd-e0f1-40ce-ae4b-da3035f90cc4) + (property "Reference" "U47" (id 0) (at 440.69 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 440.69 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 440.69 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 440.69 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c1f09628-eac0-4cff-b0fb-c0880e91cf99)) + (pin "2" (uuid 344d0111-60de-4871-b577-0e9fd3f2a539)) + (pin "3" (uuid 66cf1b99-0fbf-4ba7-a8d4-72cb86e5a097)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 101.6 205.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d91abb48-bd90-4ac4-bb39-10cba64d62d8) + (property "Reference" "U1" (id 0) (at 103.505 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 103.505 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 101.6 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 101.6 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 144f4f32-ff00-4099-99bf-662742b2e4e8)) + (pin "2" (uuid 1313b5bc-06c3-45a9-8d58-ed8287db7bef)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 693.42 217.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d993950d-60c9-4adc-b80a-7aa32b3c3945) + (property "Reference" "U79" (id 0) (at 693.42 208.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 693.42 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 693.42 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 693.42 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d78c6a3e-29d6-413a-b288-a05d92ac6b85)) + (pin "2" (uuid 00df22e7-6a8a-4cd8-aba9-debf2b1918f2)) + (pin "3" (uuid b993f429-f698-48b7-93e7-4e336fa7cb8c)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 290.83 157.48 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dbcc8aec-ad90-4b72-9d83-d240e24c7771) + (property "Reference" "U25" (id 0) (at 290.83 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 290.83 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 290.83 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 290.83 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a3a3647-4a8a-4caf-8c3e-1d8ff8052d41)) + (pin "2" (uuid 595222a3-c640-4dff-9184-c75294ca077d)) + (pin "3" (uuid 9448523f-cc87-45d7-8d38-bf6f14fa6d8e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 438.15 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dfeaf3f2-51c2-47ab-be80-f9df08d17fcb) + (property "Reference" "U44" (id 0) (at 438.15 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 438.15 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 438.15 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 438.15 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 78c442bd-a868-4925-8b73-78e67bb77671)) + (pin "2" (uuid e7fb7a8d-d5ff-46e8-b922-ca8bd84cdce6)) + (pin "3" (uuid 8ae7193a-27cd-4c06-bc8e-89e4f5729431)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 208.28 243.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2da508a-5941-409a-8fd5-190e7d6fd1bc) + (property "Reference" "U20" (id 0) (at 208.28 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 208.28 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 208.28 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 208.28 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 240e5c54-51cc-46f9-9f08-b37469d3f999)) + (pin "2" (uuid 8e7db333-14f4-42e7-8590-c12bb167b1e1)) + (pin "3" (uuid 819c7a77-e5fa-4ed9-af01-b3f466ddea3a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 166.37 266.7 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e4159a9d-9f5b-49e2-8f9b-fe796f41639a) + (property "Reference" "U2" (id 0) (at 167.005 261.62 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 167.005 264.16 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 166.37 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a953215-3714-4319-90b4-cace87bb1d19)) + (pin "2" (uuid 10be767c-0675-47ff-b686-d6a662669db9)) + (pin "3" (uuid 842c491f-12b3-4c7b-bc4b-08523b898829)) + (pin "4" (uuid 7531f258-49e3-460e-9094-6e0fc09ed3a3)) + (pin "5" (uuid ace76c0e-fc03-471a-8b61-e6ae472c3e4e)) + (pin "6" (uuid 362d2054-3d80-4c7a-be5e-00a54ecc07d0)) + (pin "7" (uuid c6dce2b6-61ad-44db-87e8-ad3c5f5da096)) + (pin "8" (uuid 953e3556-84c8-4ee9-a1c6-6f14320a421e)) + (pin "9" (uuid be3095a3-693e-4fa1-921b-20f748034800)) + (pin "10" (uuid 4834f7a1-e001-459a-8f3e-bce7aa5adfbf)) + (pin "11" (uuid a6296315-9a0d-4e00-8311-ba11e5569d4a)) + (pin "12" (uuid 0bafb9b0-7347-4e28-a30d-225ea7f4e93a)) + (pin "13" (uuid 5edd5413-6d25-4886-b16f-5e75ac865521)) + (pin "14" (uuid e8320515-b581-4360-80f0-75badcb123bf)) + (pin "15" (uuid b936aaad-f163-49d0-95a3-b811b1fe7224)) + (pin "16" (uuid a2015fca-7555-480f-9e74-8bdb2172bb1b)) + (pin "17" (uuid b1945c9d-0563-4fe5-bae9-6ec27273c7a1)) + (pin "18" (uuid e754234a-a695-4215-9f0c-74ad0b51fbf5)) + (pin "19" (uuid 780e5ae9-452b-4a3a-889e-7422d17dc7c8)) + (pin "20" (uuid 48da4c9e-6433-49f9-ae67-0ba4691bec08)) + (pin "21" (uuid 632385af-8a4f-45c7-90a5-e0a949dcff66)) + (pin "22" (uuid a92a9efa-0edb-4cc6-80d5-921e2c957571)) + (pin "23" (uuid 8682f61b-865a-4833-a703-028029e69cd5)) + (pin "24" (uuid c70829fa-cf68-44a4-8f59-ae9170c7ac12)) + (pin "25" (uuid eb9dcb58-efc6-4a86-8322-874a61a01128)) + (pin "26" (uuid 67be9820-65da-475d-bb17-1e2c143a9d24)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 341.63 124.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e4ecdba4-e518-4cc4-a273-f364f2d94e22) + (property "Reference" "U30" (id 0) (at 343.535 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 343.535 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 341.63 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 341.63 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6a085a31-8098-4d2a-83e8-9a807a7bd24e)) + (pin "2" (uuid 1b146907-719e-44fb-a7cb-903da7541cf4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 731.52 200.66 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid e5fe3fd9-16bb-43ff-b675-cf3f94f49643) + (property "Reference" "U87" (id 0) (at 731.52 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 731.52 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 732.79 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 732.79 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 22c2f6f0-aa6f-420a-a2a0-4ff2bf791023)) + (pin "2" (uuid 45717c2f-5324-4feb-b30f-ac01d95cdf71)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 660.4 163.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea3889e8-2262-4658-86b0-8c4140cb2447) + (property "Reference" "U73" (id 0) (at 662.305 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 662.305 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 660.4 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 660.4 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c4e51eb0-76b5-44e4-88be-2b2218049484)) + (pin "2" (uuid fec83850-c73d-4cb4-8f86-0637c27dca99)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 595.63 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eec4efc0-6937-4f3b-9ab4-decccfe6f598) + (property "Reference" "U69" (id 0) (at 595.63 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 595.63 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 595.63 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 595.63 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 700ec4df-fc39-4b69-8e3a-acbe92e3cde0)) + (pin "2" (uuid 0d9c1c02-2b5b-4147-b34e-134e49fe3749)) + (pin "3" (uuid 26a0588c-d20d-43cb-8160-facdf9722d92)) + ) + + (symbol (lib_id "eSim_Digital:d_buffer") (at 342.9 105.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eed72380-1142-4c68-8e82-79b969f74856) + (property "Reference" "U31" (id 0) (at 344.805 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_buffer" (id 1) (at 344.805 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 342.9 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 342.9 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fc78504-b954-4a7c-8b9c-abbe4024a95a)) + (pin "2" (uuid 283c43ef-530e-4709-915a-a4b562e9df72)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 693.42 201.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f2125ad2-7580-4e99-9c55-f9b86d45f872) + (property "Reference" "U78" (id 0) (at 693.42 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 693.42 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 693.42 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 693.42 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 900ec1be-4ffa-4c2d-af1a-fe8e8a7975a7)) + (pin "2" (uuid 4d89dbae-2124-4174-9587-ed27ec9477d4)) + (pin "3" (uuid 20df5a4c-c925-49f0-b224-174ff290c15a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 439.42 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f4184e90-6656-495b-a4be-d1d8e5eec986) + (property "Reference" "U45" (id 0) (at 439.42 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 439.42 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 439.42 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 439.42 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad582755-dae6-483c-ad39-93465b77e980)) + (pin "2" (uuid aeee91af-0b5f-44bd-94af-56fd6fff1faa)) + (pin "3" (uuid 91d9349a-baa6-451a-b407-30f4a5cc9ee4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 725.17 113.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f49c3f14-25f2-498a-9426-478c1decafa3) + (property "Reference" "U83" (id 0) (at 725.17 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 725.17 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 726.44 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 726.44 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 49034cb1-d902-4226-a90e-11a88b4b6ed5)) + (pin "2" (uuid 4d51ec2e-67ab-437e-bf51-86d6693fdf70)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 488.95 146.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f4c0796a-48cf-4bf8-86b0-58f8edbd2808) + (property "Reference" "U51" (id 0) (at 488.95 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 488.95 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 488.95 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 488.95 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4477b813-f54b-4c7d-8214-e3834aa79c76)) + (pin "2" (uuid 2d9daba3-94a2-4ae2-a9f5-16df60211fc8)) + (pin "3" (uuid d7eaeb67-defc-4fea-8485-9976788c00ca)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 490.22 162.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f8cb6e6a-5270-4e8b-99bb-8062c733d762) + (property "Reference" "U52" (id 0) (at 490.22 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 490.22 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 490.22 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 490.22 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc40a329-b093-4b34-bf87-60f1bf04d132)) + (pin "2" (uuid 1fe65029-faae-4468-9957-9fec49b728dd)) + (pin "3" (uuid 9741c998-5f92-474f-9526-e0f857be6c59)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 541.02 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb4e0ae3-4608-40e5-91d9-28fe8a7c6843) + (property "Reference" "U56" (id 0) (at 541.02 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 541.02 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e397d5d-ed73-48a8-a063-4ac490c0d860)) + (pin "2" (uuid a705d763-c26e-44e2-a236-d6f7fee02788)) + (pin "3" (uuid 3ddf6668-e235-4b95-9f61-80c92f88fe45)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 772.16 157.48 180) (unit 19) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fc01ce2f-c6b4-4994-9bfd-09fb474f397e) + (property "Reference" "U2" (id 0) (at 775.97 156.845 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 775.97 159.385 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 772.16 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 772.16 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b39e85f-ea17-4f6d-be34-a87fe069e224)) + (pin "2" (uuid 918a1860-0bca-4531-a684-7869c79771d5)) + (pin "3" (uuid ff3312aa-1723-4272-9b89-f8041f4c67c5)) + (pin "4" (uuid 7a73e2ed-85c2-489e-9235-bfa62ff15bd8)) + (pin "5" (uuid dee6baa1-8f7d-4a6e-a3dd-a4938734bbfa)) + (pin "6" (uuid 70f573e5-acd5-4709-8750-5d0417d16558)) + (pin "7" (uuid 2f10e421-96c2-4013-aa51-93aa78749082)) + (pin "8" (uuid b12211d6-d364-4c57-92c7-a60b7c652199)) + (pin "9" (uuid 20caedc8-6127-407a-8b6d-7ab041cad630)) + (pin "10" (uuid 1bf5b1a7-7b56-4a51-a701-eb0019daf8ed)) + (pin "11" (uuid 7dfa33c0-4ac8-40af-b660-65c7a43f5434)) + (pin "12" (uuid 041c2886-e156-4c6a-8913-7869a656ab23)) + (pin "13" (uuid 5bc05012-b4d1-48ce-9a7e-e3a0abb130eb)) + (pin "14" (uuid f8c59fc8-b4e3-43ef-94f2-ef065f078ff1)) + (pin "15" (uuid 87c3c24a-e1a1-4c90-9af8-451376d44be9)) + (pin "16" (uuid 51469866-3ff7-419b-80ae-f3a02ef24bba)) + (pin "17" (uuid 1d5173d6-5a37-42b0-a713-ae6100b74e18)) + (pin "18" (uuid 8982abda-6103-410b-974e-23c4dc6de284)) + (pin "19" (uuid 9aa28fe7-c62d-4867-b21c-cd5fa767dc06)) + (pin "20" (uuid d18cfe17-87ab-4f93-9f7d-8b64ebed9cad)) + (pin "21" (uuid 53cfc35e-4fef-497c-ad6c-6b0157905c37)) + (pin "22" (uuid d7abf083-0c5c-4495-bfe5-0e6b48e93bcb)) + (pin "23" (uuid c786b70f-30ce-4468-84c1-218483ddfe05)) + (pin "24" (uuid b09bb978-82a9-4657-9865-71c341d752e8)) + (pin "25" (uuid ab7b6562-fbe4-46e6-85d6-eb9cc613becf)) + (pin "26" (uuid 06fdbeb6-ffe9-4a00-a4fb-687895517702)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 166.37 261.62 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid feb256df-bcd6-499e-9718-4070d6ba3778) + (property "Reference" "U2" (id 0) (at 167.005 256.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 167.005 259.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 166.37 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 166.37 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f8810968-33b9-4a3a-ac17-521117af3955)) + (pin "2" (uuid 5dffdd0c-bf55-4dbd-b123-0bc12755d466)) + (pin "3" (uuid cbe6f911-f2b5-4261-91b3-d844cab9bc41)) + (pin "4" (uuid d9661608-691b-4930-b601-41e386d057e3)) + (pin "5" (uuid 06b2719c-8782-4717-9586-d4a788365cf8)) + (pin "6" (uuid d30b4f29-d1d9-425e-9a69-c814d1f3d192)) + (pin "7" (uuid 19faaf89-8073-41ce-8909-02fc7a7c4dd2)) + (pin "8" (uuid 8c52534c-085c-413d-a879-055c230509fc)) + (pin "9" (uuid e5269083-2466-40e4-a0ba-f2118fb35819)) + (pin "10" (uuid 7eb24724-6fc3-4dba-823f-8dedbacb91ab)) + (pin "11" (uuid 956309eb-22a2-42a1-abf0-ddc8976b2871)) + (pin "12" (uuid 39b122e2-c449-4e44-90cd-c990b68ed0ba)) + (pin "13" (uuid 8b13998d-4de1-4668-9664-533abe2ce20c)) + (pin "14" (uuid 1f439400-d370-4833-a043-e19a4c59ce8d)) + (pin "15" (uuid c7d7a8b8-56fa-444f-98d0-55b985600478)) + (pin "16" (uuid 13492940-8b8f-4f9e-8ce9-919a6bcd8a58)) + (pin "17" (uuid 57f7f4bf-64ea-48cb-abc8-b1fa5802ebd8)) + (pin "18" (uuid 0015bef0-307b-4553-a8dc-d7c88101b886)) + (pin "19" (uuid bbcdf1c9-1024-451b-9211-ad76f5f87874)) + (pin "20" (uuid 5c15ac5d-aba9-4e8b-aaa3-fabbb91fe5af)) + (pin "21" (uuid 81be0f5f-835f-41e4-b22a-8d4bcafab93a)) + (pin "22" (uuid 10f94f43-9414-4b6b-bcfa-d660ab8e45a8)) + (pin "23" (uuid c744b0e8-6d9f-437c-a907-aecadd68ae40)) + (pin "24" (uuid d440ec2a-f505-4b42-9415-38c809424bca)) + (pin "25" (uuid eeb2a245-f984-41f8-9132-81c74fa67666)) + (pin "26" (uuid 3970e273-9902-4c57-8849-90d3d1d2d407)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/d91abb48-bd90-4ac4-bb39-10cba64d62d8" + (reference "U1") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/b5035a45-1cec-49aa-a270-792c88a62244" + (reference "U2") (unit 1) (value "PORT") (footprint "") + ) + (path "/cb087e72-9fc7-4b76-9f35-8b44b4ea9c3b" + (reference "U2") (unit 2) (value "PORT") (footprint "") + ) + (path "/52660bee-6b8e-477a-bafd-d43048c2f99b" + (reference "U2") (unit 3) (value "PORT") (footprint "") + ) + (path "/986586fe-2219-4beb-b5b8-b9ec88ad1470" + (reference "U2") (unit 4) (value "PORT") (footprint "") + ) + (path "/965a2369-ed09-4df7-a636-5ba96179419f" + (reference "U2") (unit 5) (value "PORT") (footprint "") + ) + (path "/a39ca95c-526e-4e60-9713-91b2565dbcdb" + (reference "U2") (unit 6) (value "PORT") (footprint "") + ) + (path "/12931305-c59a-4eec-a821-a93a3dc81177" + (reference "U2") (unit 7) (value "PORT") (footprint "") + ) + (path "/cea218ce-3d96-4a62-aeb1-b693f3a5ab23" + (reference "U2") (unit 8) (value "PORT") (footprint "") + ) + (path "/feb256df-bcd6-499e-9718-4070d6ba3778" + (reference "U2") (unit 9) (value "PORT") (footprint "") + ) + (path "/ce23bc4b-7584-4921-9c11-36af0e35bc61" + (reference "U2") (unit 10) (value "PORT") (footprint "") + ) + (path "/e4159a9d-9f5b-49e2-8f9b-fe796f41639a" + (reference "U2") (unit 11) (value "PORT") (footprint "") + ) + (path "/276b5259-0614-462f-bd13-131e68b01244" + (reference "U2") (unit 12) (value "PORT") (footprint "") + ) + (path "/83c1bd3f-2b17-4a77-9ccf-84aff7396e3b" + (reference "U2") (unit 13) (value "PORT") (footprint "") + ) + (path "/c554cbf0-b13f-4f13-b245-6142f3fe068d" + (reference "U2") (unit 14) (value "PORT") (footprint "") + ) + (path "/2a9a7f58-ceff-43a6-b951-841bc55e06ed" + (reference "U2") (unit 15) (value "PORT") (footprint "") + ) + (path "/a132d474-fa94-44ac-a62b-59cfda8de28e" + (reference "U2") (unit 16) (value "PORT") (footprint "") + ) + (path "/66a4d68b-f55b-4781-8801-e1546a239356" + (reference "U2") (unit 17) (value "PORT") (footprint "") + ) + (path "/42b232ac-7eb6-40a5-803a-a2b7d2d79631" + (reference "U2") (unit 18) (value "PORT") (footprint "") + ) + (path "/fc01ce2f-c6b4-4994-9bfd-09fb474f397e" + (reference "U2") (unit 19) (value "PORT") (footprint "") + ) + (path "/1b573454-8c74-4f56-9ac5-4e730cc8e36d" + (reference "U2") (unit 20) (value "PORT") (footprint "") + ) + (path "/773497b3-7538-4a3d-a4f7-f987b86ae276" + (reference "U2") (unit 21) (value "PORT") (footprint "") + ) + (path "/50e85e3a-fa77-4833-a596-adcffec11909" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/811531a3-092c-42f2-9ee3-cf3a26cc397a" + (reference "U4") (unit 1) (value "d_and") (footprint "") + ) + (path "/4c1b437a-0415-477d-ae82-ebcc26f1a4a4" + (reference "U5") (unit 1) (value "d_and") (footprint "") + ) + (path "/854f18c2-507a-433a-aa4d-92c9d63c065b" + (reference "U6") (unit 1) (value "d_and") (footprint "") + ) + (path "/6404f40b-5104-4cd0-a867-ac15eb8d04f0" + (reference "U7") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/c1b98d40-b185-4954-a4b4-6a3f31fba42d" + (reference "U8") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/56acdb6d-ba2b-45bb-8e2e-21d694540c61" + (reference "U9") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/d29b2440-2ebf-4c4e-baba-71c71aa7d4cc" + (reference "U10") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/7d09e8ff-6654-47f5-afb8-26db4fc6d873" + (reference "U11") (unit 1) (value "d_and") (footprint "") + ) + (path "/377d1737-ba0b-4bd3-92e5-dce52d1c5782" + (reference "U12") (unit 1) (value "d_and") (footprint "") + ) + (path "/b83b5606-a7a2-495a-ba44-0ed3ca6b82a9" + (reference "U13") (unit 1) (value "d_and") (footprint "") + ) + (path "/b14c4d3a-227e-4ba8-9c16-6748fde48431" + (reference "U14") (unit 1) (value "d_and") (footprint "") + ) + (path "/c7ad480b-af2c-4ec8-9595-834927964ca1" + (reference "U15") (unit 1) (value "d_or") (footprint "") + ) + (path "/a6929a4a-dde9-4adf-93de-0bf33c5989f6" + (reference "U16") (unit 1) (value "d_or") (footprint "") + ) + (path "/4cf5e43d-921f-4652-9b03-3c9f9ca57aac" + (reference "U17") (unit 1) (value "d_and") (footprint "") + ) + (path "/c4300af6-12a5-4f96-90d0-fc7a48ae387d" + (reference "U18") (unit 1) (value "d_and") (footprint "") + ) + (path "/030d7e62-2b09-4fe4-b88e-61b322312921" + (reference "U19") (unit 1) (value "d_and") (footprint "") + ) + (path "/e2da508a-5941-409a-8fd5-190e7d6fd1bc" + (reference "U20") (unit 1) (value "d_or") (footprint "") + ) + (path "/6a2a1c51-b950-48f3-9733-f074ac7edaa0" + (reference "U21") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/bd11d06c-532e-4b6f-b0ab-2cacc33bde11" + (reference "U22") (unit 1) (value "d_or") (footprint "") + ) + (path "/ba97df44-6da5-4b67-875d-a1e18b14c354" + (reference "U23") (unit 1) (value "d_or") (footprint "") + ) + (path "/915aaa53-70ec-4503-92f7-af195960180c" + (reference "U24") (unit 1) (value "d_and") (footprint "") + ) + (path "/dbcc8aec-ad90-4b72-9d83-d240e24c7771" + (reference "U25") (unit 1) (value "d_or") (footprint "") + ) + (path "/8db8c577-5da9-412b-b257-316af8ddd91f" + (reference "U26") (unit 1) (value "d_and") (footprint "") + ) + (path "/083aacee-b589-43c2-afc8-9c9b0c4426cb" + (reference "U27") (unit 1) (value "d_or") (footprint "") + ) + (path "/36619f9e-28a8-4d44-9107-de5cd6c8c59b" + (reference "U28") (unit 1) (value "d_or") (footprint "") + ) + (path "/664324a6-678c-4600-b131-86edc2febbcb" + (reference "U29") (unit 1) (value "d_and") (footprint "") + ) + (path "/e4ecdba4-e518-4cc4-a273-f364f2d94e22" + (reference "U30") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/eed72380-1142-4c68-8e82-79b969f74856" + (reference "U31") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/16479be8-bfe5-4ecf-8633-3c11c97623b4" + (reference "U32") (unit 1) (value "d_and") (footprint "") + ) + (path "/8ccf461a-a5a4-405f-8c58-6fc70581e400" + (reference "U33") (unit 1) (value "d_and") (footprint "") + ) + (path "/5bc7224a-5925-41f9-a3bf-cacbc20a8d55" + (reference "U34") (unit 1) (value "d_or") (footprint "") + ) + (path "/629b94fd-0f76-4218-b366-3efb2dd93bdc" + (reference "U35") (unit 1) (value "d_and") (footprint "") + ) + (path "/37e0375c-942f-41ee-88c6-91be054e68f2" + (reference "U36") (unit 1) (value "d_and") (footprint "") + ) + (path "/6f6f067a-c5db-488f-bef6-e7c9560f30b6" + (reference "U37") (unit 1) (value "d_and") (footprint "") + ) + (path "/b00d87a1-8e86-4239-95c6-3bc6bde7fb38" + (reference "U38") (unit 1) (value "d_or") (footprint "") + ) + (path "/38cdb892-64af-4e4a-9b0d-be0e3cab9bb7" + (reference "U39") (unit 1) (value "d_and") (footprint "") + ) + (path "/51bc81f4-5bf2-4799-beeb-964da080548c" + (reference "U40") (unit 1) (value "d_and") (footprint "") + ) + (path "/103d0080-cdbe-4970-b813-c32461cf6959" + (reference "U41") (unit 1) (value "d_or") (footprint "") + ) + (path "/48821965-4ded-4e7b-8768-7a8cdf6cfea9" + (reference "U42") (unit 1) (value "d_or") (footprint "") + ) + (path "/9b869cd1-7c00-4978-b1b6-03dbfe34041b" + (reference "U43") (unit 1) (value "d_or") (footprint "") + ) + (path "/dfeaf3f2-51c2-47ab-be80-f9df08d17fcb" + (reference "U44") (unit 1) (value "d_and") (footprint "") + ) + (path "/f4184e90-6656-495b-a4be-d1d8e5eec986" + (reference "U45") (unit 1) (value "d_and") (footprint "") + ) + (path "/342f314e-b9e3-4e64-a38a-77a1c69cfdda" + (reference "U46") (unit 1) (value "d_and") (footprint "") + ) + (path "/d60d63dd-e0f1-40ce-ae4b-da3035f90cc4" + (reference "U47") (unit 1) (value "d_and") (footprint "") + ) + (path "/0d8e91ef-47b0-46d3-8f3b-d0ed85c6ab00" + (reference "U48") (unit 1) (value "d_or") (footprint "") + ) + (path "/84026460-e93f-4592-bf73-745d4bbbf779" + (reference "U49") (unit 1) (value "d_and") (footprint "") + ) + (path "/a0c2595c-3442-4185-b59b-c2e3b0661933" + (reference "U50") (unit 1) (value "d_and") (footprint "") + ) + (path "/f4c0796a-48cf-4bf8-86b0-58f8edbd2808" + (reference "U51") (unit 1) (value "d_and") (footprint "") + ) + (path "/f8cb6e6a-5270-4e8b-99bb-8062c733d762" + (reference "U52") (unit 1) (value "d_and") (footprint "") + ) + (path "/6dc4e07c-d99d-42b8-8275-c638d24d0a5c" + (reference "U53") (unit 1) (value "d_and") (footprint "") + ) + (path "/7efe8772-b63e-4d81-90b1-72c749cfd501" + (reference "U54") (unit 1) (value "d_or") (footprint "") + ) + (path "/52e38126-24d1-4901-8335-21ed750c3c92" + (reference "U55") (unit 1) (value "d_and") (footprint "") + ) + (path "/fb4e0ae3-4608-40e5-91d9-28fe8a7c6843" + (reference "U56") (unit 1) (value "d_or") (footprint "") + ) + (path "/50b6a41f-b4b1-467e-9ea5-08452e2aca11" + (reference "U57") (unit 1) (value "d_or") (footprint "") + ) + (path "/baa36146-9f0d-4484-8397-6dbe1b4b2ead" + (reference "U58") (unit 1) (value "d_or") (footprint "") + ) + (path "/0d59ab25-d2ac-49ba-805c-8baa11386e52" + (reference "U59") (unit 1) (value "d_or") (footprint "") + ) + (path "/9099adf0-0c81-451b-8bb7-ca5593920181" + (reference "U60") (unit 1) (value "d_or") (footprint "") + ) + (path "/90ed2e8e-3b90-444d-b821-c2f637fb2565" + (reference "U61") (unit 1) (value "d_and") (footprint "") + ) + (path "/70dc2a1c-0edc-49e1-bb97-3821ff0dcf28" + (reference "U62") (unit 1) (value "d_and") (footprint "") + ) + (path "/12f1c524-40d2-457c-8f0a-2937fcb7a5f2" + (reference "U63") (unit 1) (value "d_xor") (footprint "") + ) + (path "/cf77f417-c7ce-41d1-a671-ef8d19c027c4" + (reference "U64") (unit 1) (value "d_xor") (footprint "") + ) + (path "/36ffbeba-ff8a-4a91-9441-28351413f5e1" + (reference "U65") (unit 1) (value "d_xor") (footprint "") + ) + (path "/3f744f5a-8b4c-4500-962b-02e71b0139e3" + (reference "U66") (unit 1) (value "d_and") (footprint "") + ) + (path "/6916f614-1d1e-41d2-981e-ec17f5a1694b" + (reference "U67") (unit 1) (value "d_xor") (footprint "") + ) + (path "/424c7145-de53-4a71-826f-2e4ac0c6c4ae" + (reference "U68") (unit 1) (value "d_and") (footprint "") + ) + (path "/eec4efc0-6937-4f3b-9ab4-decccfe6f598" + (reference "U69") (unit 1) (value "d_or") (footprint "") + ) + (path "/0aa94c83-5db7-40b4-975a-dcfa172040c8" + (reference "U70") (unit 1) (value "d_or") (footprint "") + ) + (path "/aac0a955-9b64-4654-930e-76f59a4682dc" + (reference "U71") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/5048929d-e82d-4452-82a6-9ff21e299ae5" + (reference "U72") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/ea3889e8-2262-4658-86b0-8c4140cb2447" + (reference "U73") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/a68d9750-6822-48b7-b91d-fe5d7a17fb61" + (reference "U74") (unit 1) (value "d_buffer") (footprint "") + ) + (path "/bc22ddbc-dfb7-4b6d-b60c-12ac9205806e" + (reference "U75") (unit 1) (value "d_xor") (footprint "") + ) + (path "/bdb7aeba-fa99-483f-91e8-2fb5a459b783" + (reference "U76") (unit 1) (value "d_xor") (footprint "") + ) + (path "/7832d6fa-665d-4c41-b0b6-7369c97f1d0c" + (reference "U77") (unit 1) (value "d_and") (footprint "") + ) + (path "/f2125ad2-7580-4e99-9c55-f9b86d45f872" + (reference "U78") (unit 1) (value "d_or") (footprint "") + ) + (path "/d993950d-60c9-4adc-b80a-7aa32b3c3945" + (reference "U79") (unit 1) (value "d_or") (footprint "") + ) + (path "/5d00ff6b-5dba-466e-aff7-d9e01b44f920" + (reference "U80") (unit 1) (value "d_xor") (footprint "") + ) + (path "/5ed1f7a7-64ab-47d0-8643-96058b54ed50" + (reference "U81") (unit 1) (value "d_xor") (footprint "") + ) + (path "/6c2aa998-4bd9-4609-a7c9-d56032253d2f" + (reference "U82") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f49c3f14-25f2-498a-9426-478c1decafa3" + (reference "U83") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/94dcbaea-405f-4a7c-bd8b-57e610ff7260" + (reference "U84") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c6ee3af1-a7e9-4572-9b41-082537b9f459" + (reference "U85") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/bfe91459-e623-464c-8e1f-a9c2fb3e2540" + (reference "U86") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/e5fe3fd9-16bb-43ff-b675-cf3f94f49643" + (reference "U87") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/533e725b-b96d-4e8a-9304-b3fb3c462b83" + (reference "U88") (unit 1) (value "d_or") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SN74S281/SN74S281.sub b/library/SubcircuitLibrary/SN74S281/SN74S281.sub new file mode 100644 index 000000000..30921e4fc --- /dev/null +++ b/library/SubcircuitLibrary/SN74S281/SN74S281.sub @@ -0,0 +1,354 @@ +* Subcircuit SN74S281 +.subckt SN74S281 /a0 /a1 /a2 /a3 /b0 /b1 /b2 /b3 /cn /m /s0 /s1 /s2 /s3 net-_u2-pad15_ net-_u2-pad16_ net-_u2-pad17_ net-_u2-pad18_ net-_u2-pad19_ net-_u2-pad20_ net-_u2-pad21_ +.title kicad schematic +* u76 net-_u72-pad2_ net-_u64-pad3_ net-_u76-pad3_ d_xor +* u77 net-_u66-pad3_ /cn net-_u77-pad3_ d_and +* u75 net-_u71-pad2_ net-_u63-pad3_ net-_u75-pad3_ d_xor +* u84 net-_u76-pad3_ net-_u2-pad17_ d_inverter +* u83 net-_u75-pad3_ net-_u2-pad16_ d_inverter +* u88 net-_u77-pad3_ net-_u78-pad3_ net-_u2-pad15_ d_or +* u71 net-_u38-pad3_ net-_u71-pad2_ d_buffer +* u72 net-_u23-pad3_ net-_u72-pad2_ d_buffer +* u62 net-_u55-pad3_ net-_u29-pad3_ net-_u62-pad3_ d_and +* u60 net-_u38-pad3_ net-_u23-pad3_ net-_u60-pad3_ d_or +* u61 net-_u55-pad3_ net-_u23-pad3_ net-_u61-pad3_ d_and +* u70 net-_u60-pad3_ net-_u25-pad3_ net-_u70-pad3_ d_or +* u74 net-_u42-pad3_ net-_u74-pad2_ d_buffer +* u67 net-_u59-pad3_ /m net-_u67-pad3_ d_xor +* u68 net-_u61-pad3_ net-_u36-pad3_ net-_u68-pad3_ d_and +* u69 net-_u56-pad3_ net-_u62-pad3_ net-_u69-pad3_ d_or +* u66 net-_u61-pad3_ net-_u38-pad3_ net-_u66-pad3_ d_and +* u73 net-_u25-pad3_ net-_u73-pad2_ d_buffer +* u80 net-_u73-pad2_ net-_u65-pad3_ net-_u80-pad3_ d_xor +* u81 net-_u74-pad2_ net-_u67-pad3_ net-_u81-pad3_ d_xor +* u82 net-_u79-pad3_ net-_u2-pad21_ d_inverter +* u79 net-_u70-pad3_ net-_u42-pad3_ net-_u79-pad3_ d_or +* u78 net-_u69-pad3_ net-_u68-pad3_ net-_u78-pad3_ d_or +* u85 net-_u80-pad3_ net-_u2-pad18_ d_inverter +* u86 net-_u81-pad3_ net-_u2-pad19_ d_inverter +* u87 net-_u78-pad3_ net-_u2-pad20_ d_inverter +* u59 net-_u48-pad3_ net-_u53-pad3_ net-_u59-pad3_ d_or +* u65 net-_u58-pad3_ /m net-_u65-pad3_ d_xor +* u57 net-_u36-pad3_ net-_u51-pad3_ net-_u57-pad3_ d_or +* u58 net-_u54-pad3_ net-_u52-pad3_ net-_u58-pad3_ d_or +* u64 net-_u57-pad3_ /m net-_u64-pad3_ d_xor +* u63 /cn /m net-_u63-pad3_ d_xor +* u6 /s2 net-_u1-pad2_ net-_u20-pad2_ d_and +* u10 /b0 net-_u10-pad2_ d_buffer +* u1 /b1 net-_u1-pad2_ d_buffer +* u27 /a0 net-_u17-pad3_ net-_u27-pad3_ d_or +* u26 /s0 net-_u21-pad2_ net-_u26-pad3_ d_and +* u25 net-_u16-pad3_ net-_u14-pad3_ net-_u25-pad3_ d_or +* u24 /s1 /b3 net-_u24-pad3_ d_and +* u21 /b0 net-_u21-pad2_ d_buffer +* u22 net-_u12-pad3_ net-_u13-pad3_ net-_u22-pad3_ d_or +* u23 net-_u15-pad3_ net-_u11-pad3_ net-_u23-pad3_ d_or +* u30 /b3 net-_u30-pad2_ d_buffer +* u31 /b3 net-_u31-pad2_ d_buffer +* u4 /s3 /b1 net-_u20-pad1_ d_and +* u5 /s1 /b2 net-_u16-pad2_ d_and +* u3 /s1 /b1 net-_u15-pad2_ d_and +* u13 /s2 net-_u13-pad2_ net-_u13-pad3_ d_and +* u12 /s3 /b2 net-_u12-pad3_ d_and +* u11 /s0 net-_u11-pad2_ net-_u11-pad3_ d_and +* u9 /b2 net-_u14-pad2_ d_buffer +* u14 /s0 net-_u14-pad2_ net-_u14-pad3_ d_and +* u17 /s1 /b0 net-_u17-pad3_ d_and +* u16 /a2 net-_u16-pad2_ net-_u16-pad3_ d_or +* u15 /a1 net-_u15-pad2_ net-_u15-pad3_ d_or +* u7 /b1 net-_u11-pad2_ d_buffer +* u8 /b2 net-_u13-pad2_ d_buffer +* u28 net-_u18-pad3_ net-_u19-pad3_ net-_u28-pad3_ d_or +* u29 /a1 net-_u20-pad3_ net-_u29-pad3_ d_and +* u18 /s3 /b0 net-_u18-pad3_ d_and +* u19 /s2 net-_u10-pad2_ net-_u19-pad3_ d_and +* u20 net-_u20-pad1_ net-_u20-pad2_ net-_u20-pad3_ d_or +* u40 net-_u25-pad3_ net-_u29-pad3_ net-_u40-pad3_ d_and +* u46 net-_u23-pad3_ net-_u36-pad3_ net-_u46-pad3_ d_and +* u45 net-_u23-pad3_ net-_u38-pad3_ net-_u45-pad3_ d_and +* u47 net-_u37-pad3_ net-_u38-pad3_ net-_u47-pad3_ d_and +* u39 /a2 net-_u22-pad3_ net-_u39-pad3_ d_and +* u37 net-_u25-pad3_ net-_u23-pad3_ net-_u37-pad3_ d_and +* u38 net-_u27-pad3_ net-_u26-pad3_ net-_u38-pad3_ d_or +* u32 /s3 /b3 net-_u32-pad3_ d_and +* u33 /s0 net-_u30-pad2_ net-_u33-pad3_ d_and +* u35 /s2 net-_u31-pad2_ net-_u35-pad3_ d_and +* u42 net-_u34-pad3_ net-_u33-pad3_ net-_u42-pad3_ d_or +* u41 net-_u32-pad3_ net-_u35-pad3_ net-_u41-pad3_ d_or +* u34 /a3 net-_u24-pad3_ net-_u34-pad3_ d_or +* u36 /a0 net-_u28-pad3_ net-_u36-pad3_ d_and +* u44 net-_u37-pad3_ net-_u36-pad3_ net-_u44-pad3_ d_and +* u43 net-_u39-pad3_ net-_u40-pad3_ net-_u43-pad3_ d_or +* u55 net-_u42-pad3_ net-_u25-pad3_ net-_u55-pad3_ d_and +* u53 net-_u47-pad3_ /cn net-_u53-pad3_ d_and +* u54 net-_u29-pad3_ net-_u46-pad3_ net-_u54-pad3_ d_or +* u56 net-_u49-pad3_ net-_u50-pad3_ net-_u56-pad3_ d_or +* u52 net-_u45-pad3_ /cn net-_u52-pad3_ d_and +* u51 net-_u38-pad3_ /cn net-_u51-pad3_ d_and +* u50 net-_u42-pad3_ net-_u39-pad3_ net-_u50-pad3_ d_and +* u48 net-_u43-pad3_ net-_u44-pad3_ net-_u48-pad3_ d_or +* u49 /a3 net-_u41-pad3_ net-_u49-pad3_ d_and +a1 [net-_u72-pad2_ net-_u64-pad3_ ] net-_u76-pad3_ u76 +a2 [net-_u66-pad3_ /cn ] net-_u77-pad3_ u77 +a3 [net-_u71-pad2_ net-_u63-pad3_ ] net-_u75-pad3_ u75 +a4 net-_u76-pad3_ net-_u2-pad17_ u84 +a5 net-_u75-pad3_ net-_u2-pad16_ u83 +a6 [net-_u77-pad3_ net-_u78-pad3_ ] net-_u2-pad15_ u88 +a7 net-_u38-pad3_ net-_u71-pad2_ u71 +a8 net-_u23-pad3_ net-_u72-pad2_ u72 +a9 [net-_u55-pad3_ net-_u29-pad3_ ] net-_u62-pad3_ u62 +a10 [net-_u38-pad3_ net-_u23-pad3_ ] net-_u60-pad3_ u60 +a11 [net-_u55-pad3_ net-_u23-pad3_ ] net-_u61-pad3_ u61 +a12 [net-_u60-pad3_ net-_u25-pad3_ ] net-_u70-pad3_ u70 +a13 net-_u42-pad3_ net-_u74-pad2_ u74 +a14 [net-_u59-pad3_ /m ] net-_u67-pad3_ u67 +a15 [net-_u61-pad3_ net-_u36-pad3_ ] net-_u68-pad3_ u68 +a16 [net-_u56-pad3_ net-_u62-pad3_ ] net-_u69-pad3_ u69 +a17 [net-_u61-pad3_ net-_u38-pad3_ ] net-_u66-pad3_ u66 +a18 net-_u25-pad3_ net-_u73-pad2_ u73 +a19 [net-_u73-pad2_ net-_u65-pad3_ ] net-_u80-pad3_ u80 +a20 [net-_u74-pad2_ net-_u67-pad3_ ] net-_u81-pad3_ u81 +a21 net-_u79-pad3_ net-_u2-pad21_ u82 +a22 [net-_u70-pad3_ net-_u42-pad3_ ] net-_u79-pad3_ u79 +a23 [net-_u69-pad3_ net-_u68-pad3_ ] net-_u78-pad3_ u78 +a24 net-_u80-pad3_ net-_u2-pad18_ u85 +a25 net-_u81-pad3_ net-_u2-pad19_ u86 +a26 net-_u78-pad3_ net-_u2-pad20_ u87 +a27 [net-_u48-pad3_ net-_u53-pad3_ ] net-_u59-pad3_ u59 +a28 [net-_u58-pad3_ /m ] net-_u65-pad3_ u65 +a29 [net-_u36-pad3_ net-_u51-pad3_ ] net-_u57-pad3_ u57 +a30 [net-_u54-pad3_ net-_u52-pad3_ ] net-_u58-pad3_ u58 +a31 [net-_u57-pad3_ /m ] net-_u64-pad3_ u64 +a32 [/cn /m ] net-_u63-pad3_ u63 +a33 [/s2 net-_u1-pad2_ ] net-_u20-pad2_ u6 +a34 /b0 net-_u10-pad2_ u10 +a35 /b1 net-_u1-pad2_ u1 +a36 [/a0 net-_u17-pad3_ ] net-_u27-pad3_ u27 +a37 [/s0 net-_u21-pad2_ ] net-_u26-pad3_ u26 +a38 [net-_u16-pad3_ net-_u14-pad3_ ] net-_u25-pad3_ u25 +a39 [/s1 /b3 ] net-_u24-pad3_ u24 +a40 /b0 net-_u21-pad2_ u21 +a41 [net-_u12-pad3_ net-_u13-pad3_ ] net-_u22-pad3_ u22 +a42 [net-_u15-pad3_ net-_u11-pad3_ ] net-_u23-pad3_ u23 +a43 /b3 net-_u30-pad2_ u30 +a44 /b3 net-_u31-pad2_ u31 +a45 [/s3 /b1 ] net-_u20-pad1_ u4 +a46 [/s1 /b2 ] net-_u16-pad2_ u5 +a47 [/s1 /b1 ] net-_u15-pad2_ u3 +a48 [/s2 net-_u13-pad2_ ] net-_u13-pad3_ u13 +a49 [/s3 /b2 ] net-_u12-pad3_ u12 +a50 [/s0 net-_u11-pad2_ ] net-_u11-pad3_ u11 +a51 /b2 net-_u14-pad2_ u9 +a52 [/s0 net-_u14-pad2_ ] net-_u14-pad3_ u14 +a53 [/s1 /b0 ] net-_u17-pad3_ u17 +a54 [/a2 net-_u16-pad2_ ] net-_u16-pad3_ u16 +a55 [/a1 net-_u15-pad2_ ] net-_u15-pad3_ u15 +a56 /b1 net-_u11-pad2_ u7 +a57 /b2 net-_u13-pad2_ u8 +a58 [net-_u18-pad3_ net-_u19-pad3_ ] net-_u28-pad3_ u28 +a59 [/a1 net-_u20-pad3_ ] net-_u29-pad3_ u29 +a60 [/s3 /b0 ] net-_u18-pad3_ u18 +a61 [/s2 net-_u10-pad2_ ] net-_u19-pad3_ u19 +a62 [net-_u20-pad1_ net-_u20-pad2_ ] net-_u20-pad3_ u20 +a63 [net-_u25-pad3_ net-_u29-pad3_ ] net-_u40-pad3_ u40 +a64 [net-_u23-pad3_ net-_u36-pad3_ ] net-_u46-pad3_ u46 +a65 [net-_u23-pad3_ net-_u38-pad3_ ] net-_u45-pad3_ u45 +a66 [net-_u37-pad3_ net-_u38-pad3_ ] net-_u47-pad3_ u47 +a67 [/a2 net-_u22-pad3_ ] net-_u39-pad3_ u39 +a68 [net-_u25-pad3_ net-_u23-pad3_ ] net-_u37-pad3_ u37 +a69 [net-_u27-pad3_ net-_u26-pad3_ ] net-_u38-pad3_ u38 +a70 [/s3 /b3 ] net-_u32-pad3_ u32 +a71 [/s0 net-_u30-pad2_ ] net-_u33-pad3_ u33 +a72 [/s2 net-_u31-pad2_ ] net-_u35-pad3_ u35 +a73 [net-_u34-pad3_ net-_u33-pad3_ ] net-_u42-pad3_ u42 +a74 [net-_u32-pad3_ net-_u35-pad3_ ] net-_u41-pad3_ u41 +a75 [/a3 net-_u24-pad3_ ] net-_u34-pad3_ u34 +a76 [/a0 net-_u28-pad3_ ] net-_u36-pad3_ u36 +a77 [net-_u37-pad3_ net-_u36-pad3_ ] net-_u44-pad3_ u44 +a78 [net-_u39-pad3_ net-_u40-pad3_ ] net-_u43-pad3_ u43 +a79 [net-_u42-pad3_ net-_u25-pad3_ ] net-_u55-pad3_ u55 +a80 [net-_u47-pad3_ /cn ] net-_u53-pad3_ u53 +a81 [net-_u29-pad3_ net-_u46-pad3_ ] net-_u54-pad3_ u54 +a82 [net-_u49-pad3_ net-_u50-pad3_ ] net-_u56-pad3_ u56 +a83 [net-_u45-pad3_ /cn ] net-_u52-pad3_ u52 +a84 [net-_u38-pad3_ /cn ] net-_u51-pad3_ u51 +a85 [net-_u42-pad3_ net-_u39-pad3_ ] net-_u50-pad3_ u50 +a86 [net-_u43-pad3_ net-_u44-pad3_ ] net-_u48-pad3_ u48 +a87 [/a3 net-_u41-pad3_ ] net-_u49-pad3_ u49 +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u76 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u77 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u75 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u84 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u83 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u88 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u71 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u72 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u62 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u60 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u61 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u70 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u74 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u67 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u68 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u69 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u66 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u73 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u80 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u81 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u82 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u79 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u78 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u85 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u86 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u87 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u59 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u65 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u57 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u58 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u64 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, Ngspice Name: d_xor +.model u63 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u6 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u10 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u1 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u27 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u25 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u21 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u22 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u23 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u30 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u31 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u4 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u13 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u12 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u11 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u9 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u14 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u17 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u16 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u15 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u7 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, Ngspice Name: d_buffer +.model u8 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u28 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u29 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u18 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u19 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u20 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u40 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u46 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u45 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u47 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u39 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u37 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u38 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u32 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u33 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u35 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u42 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u41 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u34 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u36 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u44 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u43 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u55 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u53 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u54 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u56 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u52 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u51 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u50 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u48 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SN74S281 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74S281/SN74S281_Previous_Values.xml b/library/SubcircuitLibrary/SN74S281/SN74S281_Previous_Values.xml new file mode 100644 index 000000000..5f4ba61f2 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S281/SN74S281_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_xord_andd_xord_inverterd_inverterd_ord_bufferd_bufferd_andd_ord_andd_ord_bufferd_xord_andd_ord_andd_bufferd_xord_xord_inverterd_ord_ord_inverterd_inverterd_inverterd_ord_xord_ord_ord_xord_xord_andd_bufferd_bufferd_ord_andd_ord_andd_bufferd_ord_ord_bufferd_bufferd_andd_andd_andd_andd_andd_andd_bufferd_andd_andd_ord_ord_bufferd_bufferd_ord_andd_andd_andd_ord_andd_andd_andd_andd_andd_andd_ord_andd_andd_andd_ord_ord_ord_andd_andd_ord_andd_andd_ord_ord_andd_andd_andd_ord_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN74S281/analysis b/library/SubcircuitLibrary/SN74S281/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN74S281/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN75451/D.lib b/library/SubcircuitLibrary/SN75451/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/SN75451/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/SN75451/NPN.lib b/library/SubcircuitLibrary/SN75451/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/SN75451/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/SN75451/SN75451.cir b/library/SubcircuitLibrary/SN75451/SN75451.cir new file mode 100644 index 000000000..3839d1450 --- /dev/null +++ b/library/SubcircuitLibrary/SN75451/SN75451.cir @@ -0,0 +1,39 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\SN75451\SN75451.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/09/26 19:08:15 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +Q3 Net-_Q3-Pad1_ Net-_Q1-Pad1_ Net-_Q3-Pad3_ eSim_NPN +Q4 Net-_Q4-Pad1_ Net-_Q3-Pad1_ Net-_D3-Pad1_ eSim_NPN +D3 Net-_D3-Pad1_ Net-_D3-Pad2_ eSim_Diode +Q5 Net-_D3-Pad2_ Net-_Q3-Pad3_ Net-_D1-Pad1_ eSim_NPN +R3 Net-_Q3-Pad3_ Net-_D1-Pad1_ 1K +R5 Net-_D3-Pad2_ Net-_D1-Pad1_ 500 +Q6 Net-_Q6-Pad1_ Net-_D3-Pad2_ Net-_D1-Pad1_ eSim_NPN +Q2 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_D2-Pad2_ eSim_NPN +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_D1-Pad2_ eSim_NPN +D1 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +D2 Net-_D1-Pad1_ Net-_D2-Pad2_ eSim_Diode +R1 Net-_R1-Pad1_ Net-_Q1-Pad2_ 4K +R2 Net-_R1-Pad1_ Net-_Q3-Pad1_ 1.6K +R4 Net-_R1-Pad1_ Net-_Q4-Pad1_ 130 +Q9 Net-_Q10-Pad2_ Net-_Q7-Pad1_ Net-_Q11-Pad2_ eSim_NPN +Q10 Net-_Q10-Pad1_ Net-_Q10-Pad2_ Net-_D6-Pad1_ eSim_NPN +D6 Net-_D6-Pad1_ Net-_D6-Pad2_ eSim_Diode +Q11 Net-_D6-Pad2_ Net-_Q11-Pad2_ Net-_D1-Pad1_ eSim_NPN +R8 Net-_Q11-Pad2_ Net-_D1-Pad1_ 1K +R10 Net-_D6-Pad2_ Net-_D1-Pad1_ 500 +Q12 Net-_Q12-Pad1_ Net-_D6-Pad2_ Net-_D1-Pad1_ eSim_NPN +Q8 Net-_Q7-Pad1_ Net-_Q7-Pad2_ Net-_D5-Pad2_ eSim_NPN +Q7 Net-_Q7-Pad1_ Net-_Q7-Pad2_ Net-_D4-Pad2_ eSim_NPN +D4 Net-_D1-Pad1_ Net-_D4-Pad2_ eSim_Diode +D5 Net-_D1-Pad1_ Net-_D5-Pad2_ eSim_Diode +R6 Net-_R1-Pad1_ Net-_Q7-Pad2_ 4K +R7 Net-_R1-Pad1_ Net-_Q10-Pad2_ 1.6K +R9 Net-_R1-Pad1_ Net-_Q10-Pad1_ 130 +U1 Net-_D1-Pad2_ Net-_D2-Pad2_ Net-_Q6-Pad1_ Net-_D1-Pad1_ Net-_Q12-Pad1_ Net-_D4-Pad2_ Net-_D5-Pad2_ Net-_R1-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/SN75451/SN75451.cir.out b/library/SubcircuitLibrary/SN75451/SN75451.cir.out new file mode 100644 index 000000000..7ef3d1f15 --- /dev/null +++ b/library/SubcircuitLibrary/SN75451/SN75451.cir.out @@ -0,0 +1,42 @@ +* c:\fossee\esim\library\subcircuitlibrary\sn75451\sn75451.cir + +.include D.lib +.include NPN.lib +q3 net-_q3-pad1_ net-_q1-pad1_ net-_q3-pad3_ Q2N2222 +q4 net-_q4-pad1_ net-_q3-pad1_ net-_d3-pad1_ Q2N2222 +d3 net-_d3-pad1_ net-_d3-pad2_ 1N4148 +q5 net-_d3-pad2_ net-_q3-pad3_ net-_d1-pad1_ Q2N2222 +r3 net-_q3-pad3_ net-_d1-pad1_ 1k +r5 net-_d3-pad2_ net-_d1-pad1_ 500 +q6 net-_q6-pad1_ net-_d3-pad2_ net-_d1-pad1_ Q2N2222 +q2 net-_q1-pad1_ net-_q1-pad2_ net-_d2-pad2_ Q2N2222 +q1 net-_q1-pad1_ net-_q1-pad2_ net-_d1-pad2_ Q2N2222 +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +d2 net-_d1-pad1_ net-_d2-pad2_ 1N4148 +r1 net-_r1-pad1_ net-_q1-pad2_ 4k +r2 net-_r1-pad1_ net-_q3-pad1_ 1.6k +r4 net-_r1-pad1_ net-_q4-pad1_ 130 +q9 net-_q10-pad2_ net-_q7-pad1_ net-_q11-pad2_ Q2N2222 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_d6-pad1_ Q2N2222 +d6 net-_d6-pad1_ net-_d6-pad2_ 1N4148 +q11 net-_d6-pad2_ net-_q11-pad2_ net-_d1-pad1_ Q2N2222 +r8 net-_q11-pad2_ net-_d1-pad1_ 1k +r10 net-_d6-pad2_ net-_d1-pad1_ 500 +q12 net-_q12-pad1_ net-_d6-pad2_ net-_d1-pad1_ Q2N2222 +q8 net-_q7-pad1_ net-_q7-pad2_ net-_d5-pad2_ Q2N2222 +q7 net-_q7-pad1_ net-_q7-pad2_ net-_d4-pad2_ Q2N2222 +d4 net-_d1-pad1_ net-_d4-pad2_ 1N4148 +d5 net-_d1-pad1_ net-_d5-pad2_ 1N4148 +r6 net-_r1-pad1_ net-_q7-pad2_ 4k +r7 net-_r1-pad1_ net-_q10-pad2_ 1.6k +r9 net-_r1-pad1_ net-_q10-pad1_ 130 +* u1 net-_d1-pad2_ net-_d2-pad2_ net-_q6-pad1_ net-_d1-pad1_ net-_q12-pad1_ net-_d4-pad2_ net-_d5-pad2_ net-_r1-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SN75451/SN75451.pro b/library/SubcircuitLibrary/SN75451/SN75451.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/SN75451/SN75451.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/SN75451/SN75451.sub b/library/SubcircuitLibrary/SN75451/SN75451.sub new file mode 100644 index 000000000..f7564a07a --- /dev/null +++ b/library/SubcircuitLibrary/SN75451/SN75451.sub @@ -0,0 +1,36 @@ +* Subcircuit SN75451 +.subckt SN75451 net-_d1-pad2_ net-_d2-pad2_ net-_q6-pad1_ net-_d1-pad1_ net-_q12-pad1_ net-_d4-pad2_ net-_d5-pad2_ net-_r1-pad1_ +* c:\fossee\esim\library\subcircuitlibrary\sn75451\sn75451.cir +.include D.lib +.include NPN.lib +q3 net-_q3-pad1_ net-_q1-pad1_ net-_q3-pad3_ Q2N2222 +q4 net-_q4-pad1_ net-_q3-pad1_ net-_d3-pad1_ Q2N2222 +d3 net-_d3-pad1_ net-_d3-pad2_ 1N4148 +q5 net-_d3-pad2_ net-_q3-pad3_ net-_d1-pad1_ Q2N2222 +r3 net-_q3-pad3_ net-_d1-pad1_ 1k +r5 net-_d3-pad2_ net-_d1-pad1_ 500 +q6 net-_q6-pad1_ net-_d3-pad2_ net-_d1-pad1_ Q2N2222 +q2 net-_q1-pad1_ net-_q1-pad2_ net-_d2-pad2_ Q2N2222 +q1 net-_q1-pad1_ net-_q1-pad2_ net-_d1-pad2_ Q2N2222 +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +d2 net-_d1-pad1_ net-_d2-pad2_ 1N4148 +r1 net-_r1-pad1_ net-_q1-pad2_ 4k +r2 net-_r1-pad1_ net-_q3-pad1_ 1.6k +r4 net-_r1-pad1_ net-_q4-pad1_ 130 +q9 net-_q10-pad2_ net-_q7-pad1_ net-_q11-pad2_ Q2N2222 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_d6-pad1_ Q2N2222 +d6 net-_d6-pad1_ net-_d6-pad2_ 1N4148 +q11 net-_d6-pad2_ net-_q11-pad2_ net-_d1-pad1_ Q2N2222 +r8 net-_q11-pad2_ net-_d1-pad1_ 1k +r10 net-_d6-pad2_ net-_d1-pad1_ 500 +q12 net-_q12-pad1_ net-_d6-pad2_ net-_d1-pad1_ Q2N2222 +q8 net-_q7-pad1_ net-_q7-pad2_ net-_d5-pad2_ Q2N2222 +q7 net-_q7-pad1_ net-_q7-pad2_ net-_d4-pad2_ Q2N2222 +d4 net-_d1-pad1_ net-_d4-pad2_ 1N4148 +d5 net-_d1-pad1_ net-_d5-pad2_ 1N4148 +r6 net-_r1-pad1_ net-_q7-pad2_ 4k +r7 net-_r1-pad1_ net-_q10-pad2_ 1.6k +r9 net-_r1-pad1_ net-_q10-pad1_ 130 +* Control Statements + +.ends SN75451 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN75451/SN75451_Previous_Values.xml b/library/SubcircuitLibrary/SN75451/SN75451_Previous_Values.xml new file mode 100644 index 000000000..e471dc97d --- /dev/null +++ b/library/SubcircuitLibrary/SN75451/SN75451_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/SN75451/analysis b/library/SubcircuitLibrary/SN75451/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SN75451/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.cir b/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.cir new file mode 100644 index 000000000..341b714d1 --- /dev/null +++ b/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.cir @@ -0,0 +1,18 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_M3-Pad1_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_M4-Pad1_ Net-_M3-Pad3_ Net-_M2-Pad1_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_M1-Pad1_ Net-_U1-Pad12_ Net-_U1-Pad13_ PORT +U3 Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U3-Pad3_ d_nand +U2 Net-_U1-Pad13_ Net-_U1-Pad12_ Net-_U2-Pad3_ d_nand +U6 Net-_U2-Pad3_ Net-_M1-Pad2_ dac_bridge_1 +U7 Net-_U3-Pad3_ Net-_M2-Pad2_ dac_bridge_1 +U5 Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U5-Pad3_ d_nand +U4 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U4-Pad3_ d_nand +U8 Net-_U4-Pad3_ Net-_M3-Pad2_ dac_bridge_1 +U9 Net-_U5-Pad3_ Net-_M4-Pad2_ dac_bridge_1 +M4 Net-_M4-Pad1_ Net-_M4-Pad2_ Net-_M4-Pad3_ Net-_M4-Pad3_ eSim_MOS_N +M3 Net-_M3-Pad1_ Net-_M3-Pad2_ Net-_M3-Pad3_ Net-_M3-Pad3_ eSim_MOS_N +U10 Net-_M2-Pad3_ PORT +U11 Net-_M1-Pad3_ PORT +M1 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +U12 Net-_M4-Pad3_ PORT +M2 Net-_M2-Pad1_ Net-_M2-Pad2_ Net-_M2-Pad3_ Net-_M2-Pad3_ eSim_MOS_N +.end diff --git a/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.cir.out b/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.cir.out new file mode 100644 index 000000000..b68c9139e --- /dev/null +++ b/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.cir.out @@ -0,0 +1,51 @@ +.title kicad schematic + +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_m3-pad1_ net-_u1-pad4_ net-_u1-pad5_ net-_m4-pad1_ net-_m3-pad3_ net-_m2-pad1_ net-_u1-pad9_ net-_u1-pad10_ net-_m1-pad1_ net-_u1-pad12_ net-_u1-pad13_ port +* u3 net-_u1-pad9_ net-_u1-pad10_ net-_u3-pad3_ d_nand +* u2 net-_u1-pad13_ net-_u1-pad12_ net-_u2-pad3_ d_nand +* u6 net-_u2-pad3_ net-_m1-pad2_ dac_bridge_1 +* u7 net-_u3-pad3_ net-_m2-pad2_ dac_bridge_1 +* u5 net-_u1-pad4_ net-_u1-pad5_ net-_u5-pad3_ d_nand +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_nand +* u8 net-_u4-pad3_ net-_m3-pad2_ dac_bridge_1 +* u9 net-_u5-pad3_ net-_m4-pad2_ dac_bridge_1 +m4 net-_m4-pad1_ net-_m4-pad2_ net-_m4-pad3_ net-_m4-pad3_ esim_mos_n +m3 net-_m3-pad1_ net-_m3-pad2_ net-_m3-pad3_ net-_m3-pad3_ esim_mos_n +* u10 net-_m2-pad3_ port +* u11 net-_m1-pad3_ port +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ esim_mos_n +* u12 net-_m4-pad3_ port +m2 net-_m2-pad1_ net-_m2-pad2_ net-_m2-pad3_ net-_m2-pad3_ esim_mos_n +a1 [net-_u1-pad9_ net-_u1-pad10_ ] net-_u3-pad3_ u3 +a2 [net-_u1-pad13_ net-_u1-pad12_ ] net-_u2-pad3_ u2 +a3 [net-_u2-pad3_ ] [net-_m1-pad2_ ] u6 +a4 [net-_u3-pad3_ ] [net-_m2-pad2_ ] u7 +a5 [net-_u1-pad4_ net-_u1-pad5_ ] net-_u5-pad3_ u5 +a6 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a7 [net-_u4-pad3_ ] [net-_m3-pad2_ ] u8 +a8 [net-_u5-pad3_ ] [net-_m4-pad2_ ] u9 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u3 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u2 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u6 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u7 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u5 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u4 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u8 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u9 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.kicad_sch b/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.kicad_sch new file mode 100644 index 000000000..b5eab2f60 --- /dev/null +++ b/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.kicad_sch @@ -0,0 +1,1610 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 0126d96e-6b0f-4887-8fee-8f525eb76751) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Devices:eSim_MOS_N" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "M" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 2.54 -1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 7.62 -7.62 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 2.54 -5.08 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_MOS_N_0_1" + (polyline + (pts + (xy 3.302 -7.366) + (xy 3.302 -6.35) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -6.858) + (xy 5.08 -6.858) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -5.588) + (xy 3.302 -4.572) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -5.08) + (xy 5.08 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.81) + (xy 3.302 -2.794) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.302) + (xy 5.08 -3.302) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -7.62) + (xy 5.08 -6.858) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -3.302) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.794 -6.985) + (xy 2.794 -3.175) + (xy 2.794 -3.175) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -5.08) + (xy 7.62 -5.08) + (xy 7.62 -6.35) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 -5.08) + (xy 4.572 -5.461) + (xy 4.572 -4.699) + (xy 3.556 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 3.81 -5.08) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_MOS_N_1_1" + (pin passive line (at 5.08 0 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 -5.08 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -10.16 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -8.89 90) (length 2.4892) + (name "B" (effects (font (size 1.1938 1.1938)))) + (number "4" (effects (font (size 1.1938 1.1938)))) + ) + ) + ) + (symbol "eSim_Digital:d_nand" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_nand_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_nand_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 133.35 95.25) (diameter 0) (color 0 0 0 0) + (uuid 1cf8d8a5-e381-4448-9d02-d9918c1b92c7) + ) + (junction (at 134.62 43.18) (diameter 0) (color 0 0 0 0) + (uuid 5900e353-2ecc-4b8a-a4ee-f10652ef1b44) + ) + (junction (at 132.08 124.46) (diameter 0) (color 0 0 0 0) + (uuid 6fdc3989-5977-4c09-ae91-d7d55a91b4e8) + ) + (junction (at 134.62 68.58) (diameter 0) (color 0 0 0 0) + (uuid 8378347b-0c3a-4d01-aac7-b7614865691c) + ) + + (wire (pts (xy 129.54 124.46) (xy 132.08 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 028bdcd8-c12f-46e0-a88e-9b8c4c81ef95) + ) + (wire (pts (xy 43.18 43.18) (xy 52.07 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0398f61d-2f5a-43c2-b3b2-b5330106e618) + ) + (wire (pts (xy 129.54 106.68) (xy 129.54 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 070c018e-0cba-4ad2-af96-6af8b887e3bd) + ) + (wire (pts (xy 147.32 77.47) (xy 130.81 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08f4e636-ec59-42fb-b215-ecc0e1b7f4eb) + ) + (wire (pts (xy 50.8 92.71) (xy 50.8 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16227e2e-9aec-4076-b585-ce0a98be9d1c) + ) + (wire (pts (xy 41.91 59.69) (xy 52.07 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2130fb04-8ac0-4b6d-8cda-98930b0eb385) + ) + (wire (pts (xy 123.19 38.1) (xy 124.46 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21a6fcd6-9677-4b7b-a07c-8e6cfd21614f) + ) + (wire (pts (xy 40.64 68.58) (xy 52.07 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 294915aa-65d4-4e78-b375-e0a5e11a2dec) + ) + (wire (pts (xy 133.35 95.25) (xy 179.07 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ebbda0b-93d2-46f8-8a18-992868739968) + ) + (wire (pts (xy 41.91 113.03) (xy 49.53 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ff2a86c-8e55-4bcc-8c3a-724fd33f25d9) + ) + (wire (pts (xy 120.65 119.38) (xy 121.92 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37bac858-df8f-49b4-ad43-484875218f41) + ) + (wire (pts (xy 133.35 93.98) (xy 133.35 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b981e3a-ef28-49d8-be6f-dd8bf6db8613) + ) + (wire (pts (xy 132.08 50.8) (xy 132.08 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 435f1e79-7a4d-4843-8fac-dd1fb73fd352) + ) + (wire (pts (xy 132.08 43.18) (xy 134.62 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 631107ea-a826-4aab-a041-7889cdb270b7) + ) + (wire (pts (xy 43.18 34.29) (xy 52.07 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6317c621-14c5-4765-8f91-4328c14ed442) + ) + (wire (pts (xy 132.08 123.19) (xy 132.08 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66b52f8f-b64d-4ff2-861d-5137066cbce8) + ) + (wire (pts (xy 148.59 50.8) (xy 132.08 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6abf1322-fec0-4520-ab55-996d1f8c03a5) + ) + (wire (pts (xy 148.59 25.4) (xy 132.08 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f6b69e4-f703-43bd-accc-b861c9d1d237) + ) + (wire (pts (xy 132.08 124.46) (xy 179.07 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80a61285-afcb-4147-8599-a6c471bf2b9b) + ) + (wire (pts (xy 74.93 38.1) (xy 93.98 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8330f9be-2eb3-4b84-9d23-f41bd93dcf03) + ) + (wire (pts (xy 72.39 119.38) (xy 91.44 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 844145b2-1548-4f28-91be-efbeeee00ed2) + ) + (wire (pts (xy 132.08 68.58) (xy 134.62 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8abbc3fc-a9ca-4502-b3dd-4182ccd6e7a6) + ) + (wire (pts (xy 52.07 43.18) (xy 52.07 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 919fb43f-7e35-4cef-8f6f-0be9d3a5f9cf) + ) + (wire (pts (xy 134.62 43.18) (xy 179.07 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99155ffa-38e6-4606-9c25-ae49fd65d6d2) + ) + (wire (pts (xy 49.53 113.03) (xy 49.53 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99db4cdf-eeea-492c-a5fb-be59101d8b97) + ) + (wire (pts (xy 73.66 90.17) (xy 92.71 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e07e668-5b99-4641-9f1a-9037edc3a289) + ) + (wire (pts (xy 52.07 34.29) (xy 52.07 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b17c098a-4dab-4474-aecb-0f44a2e8b0e5) + ) + (wire (pts (xy 43.18 92.71) (xy 50.8 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3625875-317b-4bc8-8609-f1ae00934d39) + ) + (wire (pts (xy 52.07 59.69) (xy 52.07 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8d8cc5b-beb3-47da-b716-815177f3209c) + ) + (wire (pts (xy 130.81 95.25) (xy 133.35 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8f7f6b9-ad31-4208-aebd-cdfaacf02077) + ) + (wire (pts (xy 50.8 85.09) (xy 50.8 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfde2878-aa95-4c95-b5df-9ab50a694ef6) + ) + (wire (pts (xy 130.81 77.47) (xy 130.81 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c259682d-e866-4fcc-94c2-fc7f2cacca75) + ) + (wire (pts (xy 134.62 67.31) (xy 134.62 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7800370-b4f1-4269-a011-5dbe9c922b9b) + ) + (wire (pts (xy 41.91 85.09) (xy 50.8 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbaa2674-6777-49d8-a98d-0c10aca5a90b) + ) + (wire (pts (xy 52.07 68.58) (xy 52.07 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1d7c0e1-38ff-4023-b419-639d1a888c0a) + ) + (wire (pts (xy 74.93 63.5) (xy 93.98 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e46f3e2a-0389-4e3d-9717-5817ebff754b) + ) + (wire (pts (xy 41.91 124.46) (xy 49.53 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ead20462-b791-4bf2-8e73-1ab0a26472f7) + ) + (wire (pts (xy 134.62 41.91) (xy 134.62 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2d6cf89-2467-4883-bf70-2ceb39fb2c65) + ) + (wire (pts (xy 49.53 124.46) (xy 49.53 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f66b2c9d-07f5-4061-83f5-a49131b77836) + ) + (wire (pts (xy 121.92 90.17) (xy 123.19 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8cb60c1-9ba2-4738-abe6-7a9cb4438245) + ) + (wire (pts (xy 123.19 63.5) (xy 124.46 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8e203e6-d9fd-4443-9841-d52d96e08af6) + ) + (wire (pts (xy 134.62 68.58) (xy 184.15 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f901175b-1fe4-4ad9-b51d-c72796822e6d) + ) + (wire (pts (xy 146.05 106.68) (xy 129.54 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fcefe1e2-ec23-43ff-9960-19f32cca2676) + ) + (wire (pts (xy 132.08 25.4) (xy 132.08 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fdfed58d-40e7-437e-890d-d87f71e05be6) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 185.42 95.25 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0b8fbc70-eb7c-4c47-a479-788458c8c90b) + (property "Reference" "U10" (id 0) (at 189.23 94.615 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 189.23 97.155 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 185.42 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 185.42 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae322cbc-6217-4937-a843-f8069f7c53db)) + (pin "2" (uuid 58637841-a372-4b6d-bc02-66d8fe8b1521)) + (pin "3" (uuid 7b5beb70-bd97-413a-b47c-ea91e1122647)) + (pin "4" (uuid 8968b4ba-0334-46c4-bc09-0876457e183f)) + (pin "5" (uuid 0ef4a8f4-8b3b-4d18-93eb-5fbc7b52fa15)) + (pin "6" (uuid eba40e56-fd26-4253-a25f-37edbbdc845a)) + (pin "7" (uuid 57b14b35-c045-40fb-9140-f57cb6dbcbab)) + (pin "8" (uuid d601402b-4b04-4c8e-80b6-beb5b17a06df)) + (pin "9" (uuid 80077677-d8fc-4a4b-ba5f-c84827b9f5ed)) + (pin "10" (uuid c11fb5de-c2f6-4712-a777-e9c5731c1dae)) + (pin "11" (uuid 14264bf8-62ff-4c34-b7a5-ab951cb2e491)) + (pin "12" (uuid f9c3c7a6-e5cf-42e7-903d-13f1b7984bb1)) + (pin "13" (uuid 3a4e8bff-d445-44c0-8482-2e78d445fce6)) + (pin "14" (uuid cdda2b72-7ff1-40f6-ad2b-f004bb7a6158)) + (pin "15" (uuid 2176ae86-9851-481f-9e91-499d9c4540f6)) + (pin "16" (uuid 71d912c2-1812-456d-947a-6137d4f7bec3)) + (pin "17" (uuid b9be53ff-f3fb-4a5b-80eb-d19e444f5726)) + (pin "18" (uuid 717ea8ac-5670-477d-9f64-81000a110316)) + (pin "19" (uuid 5e7690f2-ee83-4f98-aa74-948e64abd09f)) + (pin "20" (uuid f00b56bc-8245-4b88-8f45-68d84b3666ee)) + (pin "21" (uuid f5b356e3-4106-46ea-8de1-a1b02e83c1b1)) + (pin "22" (uuid 9e14032f-e34e-4147-a2bd-57c19020853c)) + (pin "23" (uuid 5c3c713d-fa5f-4e68-ac59-e9fa10cff0fc)) + (pin "24" (uuid e8bbe103-53d6-4310-8986-eca31bf5e889)) + (pin "25" (uuid 73be0471-9b58-435a-af24-b82d5e511289)) + (pin "26" (uuid e915a9fe-ebbb-4f1c-b38c-87f629f8dba7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 85.09 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 10777c98-9be2-48a0-b2d8-625ab07b1087) + (property "Reference" "U1" (id 0) (at 36.195 80.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 82.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7a662512-f253-414a-8029-d7a5a1c7a08c)) + (pin "2" (uuid 65e62345-9c44-46e7-a421-aa7421cb6498)) + (pin "3" (uuid 9d10ea89-986b-4587-aa09-c5c39f5fd0c6)) + (pin "4" (uuid 8dccd70e-b34e-4e8d-a97c-09aab93d4a0e)) + (pin "5" (uuid e85fcb1a-5acb-4ede-94c7-b5674a748809)) + (pin "6" (uuid 8b1848b0-d35a-4436-85fe-d4db1255d657)) + (pin "7" (uuid 35dc4605-83ce-494a-85f4-d62c0bdb7dc2)) + (pin "8" (uuid c986979d-f475-4c42-8600-5c838a2d6eab)) + (pin "9" (uuid f185b398-7abe-4ccc-8042-a4e3a547de2a)) + (pin "10" (uuid 32c2520a-67e3-4a68-afb2-d34a0e970377)) + (pin "11" (uuid 634f0ab3-0693-4097-91f7-aa436c08c575)) + (pin "12" (uuid 08aa9bec-a979-4904-b02e-db41683f3f26)) + (pin "13" (uuid 52bdd917-07d4-4913-8757-60d2e115a90f)) + (pin "14" (uuid 4e9bbe54-0dc5-4cb2-8e01-2df61e5d4dc6)) + (pin "15" (uuid 04044ec9-0dda-4bb2-b2ee-08fecb0342ea)) + (pin "16" (uuid edf069f9-4d0a-41cf-92e8-33d06a4c3aef)) + (pin "17" (uuid 07f1053c-9652-4fa6-beb1-3fb5cca5cafd)) + (pin "18" (uuid 3f59c3df-c172-4c4d-9a92-faece6e308ea)) + (pin "19" (uuid a1b81a66-ac33-41dc-928d-ffb29510977f)) + (pin "20" (uuid 0f0a6308-08ed-4e9a-b636-0e3cf665a823)) + (pin "21" (uuid 60700227-7aef-43dd-81ed-5ade7722091c)) + (pin "22" (uuid 8fe355e7-98ec-4fa1-bcdf-d8f27f22eafd)) + (pin "23" (uuid 21c4af18-0cd2-4c33-8baa-ed94b1b02c9e)) + (pin "24" (uuid 2cc09c5b-4fc5-4485-8e50-c568a1574292)) + (pin "25" (uuid 93981f64-a5af-4c77-ae58-7766ba742e3c)) + (pin "26" (uuid 0121bd71-a95c-412e-a71c-8105c548c06c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 185.42 43.18 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2b1baaf8-b3d6-4fe4-905c-bf129d4a9493) + (property "Reference" "U1" (id 0) (at 189.23 42.545 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 189.23 45.085 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 185.42 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 185.42 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae322cbc-6217-4937-a843-f8069f7c53db)) + (pin "2" (uuid 58637841-a372-4b6d-bc02-66d8fe8b1521)) + (pin "3" (uuid 7b5beb70-bd97-413a-b47c-ea91e1122647)) + (pin "4" (uuid 8968b4ba-0334-46c4-bc09-0876457e183f)) + (pin "5" (uuid 0ef4a8f4-8b3b-4d18-93eb-5fbc7b52fa15)) + (pin "6" (uuid eba40e56-fd26-4253-a25f-37edbbdc845a)) + (pin "7" (uuid 16c0ebc5-755e-4736-b88c-3291a503d8cb)) + (pin "8" (uuid d601402b-4b04-4c8e-80b6-beb5b17a06df)) + (pin "9" (uuid 80077677-d8fc-4a4b-ba5f-c84827b9f5ed)) + (pin "10" (uuid c11fb5de-c2f6-4712-a777-e9c5731c1dae)) + (pin "11" (uuid 14264bf8-62ff-4c34-b7a5-ab951cb2e491)) + (pin "12" (uuid f9c3c7a6-e5cf-42e7-903d-13f1b7984bb1)) + (pin "13" (uuid 3a4e8bff-d445-44c0-8482-2e78d445fce6)) + (pin "14" (uuid cdda2b72-7ff1-40f6-ad2b-f004bb7a6158)) + (pin "15" (uuid 2176ae86-9851-481f-9e91-499d9c4540f6)) + (pin "16" (uuid 71d912c2-1812-456d-947a-6137d4f7bec3)) + (pin "17" (uuid b9be53ff-f3fb-4a5b-80eb-d19e444f5726)) + (pin "18" (uuid 717ea8ac-5670-477d-9f64-81000a110316)) + (pin "19" (uuid 5e7690f2-ee83-4f98-aa74-948e64abd09f)) + (pin "20" (uuid f00b56bc-8245-4b88-8f45-68d84b3666ee)) + (pin "21" (uuid f5b356e3-4106-46ea-8de1-a1b02e83c1b1)) + (pin "22" (uuid 9e14032f-e34e-4147-a2bd-57c19020853c)) + (pin "23" (uuid 5c3c713d-fa5f-4e68-ac59-e9fa10cff0fc)) + (pin "24" (uuid e8bbe103-53d6-4310-8986-eca31bf5e889)) + (pin "25" (uuid 73be0471-9b58-435a-af24-b82d5e511289)) + (pin "26" (uuid e915a9fe-ebbb-4f1c-b38c-87f629f8dba7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 154.94 50.8 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 40d17e64-6cef-4dbf-8d27-c854303e2402) + (property "Reference" "U1" (id 0) (at 158.75 50.165 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 158.75 52.705 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 154.94 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 154.94 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 54b334e5-52ab-4d65-b8b5-5d35152cafc5)) + (pin "2" (uuid d3679ab5-29d3-4808-ba5e-81d303096350)) + (pin "3" (uuid 21c501ff-e3bd-4ab2-a176-cc03880e50e3)) + (pin "4" (uuid b36ccb23-4dd4-4791-abe1-3e9d57b66980)) + (pin "5" (uuid 75e0876f-657f-4931-a494-bc00e4bd8327)) + (pin "6" (uuid fb1cc8a6-cf28-4dea-8e2b-948d7a5ad1fc)) + (pin "7" (uuid edf5273c-ccec-4f61-80bf-946129f9917b)) + (pin "8" (uuid 6b5801e3-d918-4cc5-9ba8-159585aad663)) + (pin "9" (uuid b70f9227-d005-4639-9b81-75283cb07b30)) + (pin "10" (uuid c89934fd-399d-49a7-9928-a015bb09a3fd)) + (pin "11" (uuid 45fea819-d710-4e1d-84dd-adfc25829006)) + (pin "12" (uuid cbc5d3d6-af4d-48bb-b31e-5cadb93f0173)) + (pin "13" (uuid 44fd8de2-90bd-4701-8b92-7cc6b1baf064)) + (pin "14" (uuid cdc8c798-90d8-447d-a07f-940949b7cfc3)) + (pin "15" (uuid aa16500f-592f-4721-8228-01401439109b)) + (pin "16" (uuid 821ae5d8-d4c0-45b5-a61a-8334116493cc)) + (pin "17" (uuid 7759dd5c-9182-4c53-a044-31967d2c8dd1)) + (pin "18" (uuid f52fa208-bbfd-4b9b-ab47-7e5647a14f59)) + (pin "19" (uuid 4ce47678-942b-478b-87aa-d4c8eefae5f0)) + (pin "20" (uuid 4b38f465-29e5-4807-9fe6-20f174baff1e)) + (pin "21" (uuid 2170a701-13b7-429b-b28d-8e29e41526d9)) + (pin "22" (uuid 4e3d3c68-f120-485e-be96-c1781bc31d6d)) + (pin "23" (uuid 74f4dd70-0482-44e8-afb6-e6e091a5c38a)) + (pin "24" (uuid 8d17ffbc-f118-4da5-9984-5f13adab17c8)) + (pin "25" (uuid 9cd44f53-49c4-4244-b94f-77edc1c63512)) + (pin "26" (uuid 9b31041c-4f7f-4273-9a14-6029dde051c7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 154.94 25.4 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4cd695dc-2bfe-45f3-8c82-b0a66c826f84) + (property "Reference" "U1" (id 0) (at 158.75 24.765 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 158.75 27.305 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 154.94 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 154.94 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eec6058a-6037-421b-9272-d5157ebf25d8)) + (pin "2" (uuid 27e4e75c-46d3-4b3a-89c7-3d6096a8277a)) + (pin "3" (uuid e0074c98-f471-424f-87d4-85720d831aea)) + (pin "4" (uuid 41cd5032-c72a-472c-b832-e61434bcf1e2)) + (pin "5" (uuid f6f14b76-2a2c-4aff-9e61-83245321d8ad)) + (pin "6" (uuid d67428fc-9336-44fb-8b5c-627d6c2e9df5)) + (pin "7" (uuid 92ecc0b8-c126-4748-8fa8-c05b9d7599b5)) + (pin "8" (uuid 7c82e503-5c5d-4c90-928f-5cde9a8fcfd7)) + (pin "9" (uuid 8e4c2014-bbcd-4b4f-b4ce-cbf79e61f38d)) + (pin "10" (uuid 62fe62c2-79d4-4854-8c20-02ada86cf140)) + (pin "11" (uuid 293aa17f-83bb-4409-951a-68bc5bbb5b54)) + (pin "12" (uuid 8c91c382-6c44-40b3-ad78-ecca89e87807)) + (pin "13" (uuid 87dbe20f-38b3-4e86-88d2-35e3ee641ef3)) + (pin "14" (uuid f1fd3843-c1e4-4737-80fd-a438ed310fb8)) + (pin "15" (uuid 39e18b78-39e5-4ba2-98fd-1ba6b9239fd0)) + (pin "16" (uuid 0eba4921-05ea-4410-a225-5b64daf11b1f)) + (pin "17" (uuid 249f4413-42cf-4b04-94d3-3c69eabb9631)) + (pin "18" (uuid 5d62ecf6-47c7-4d04-8193-a36b58734128)) + (pin "19" (uuid bb0dc59a-ad46-4c4c-9650-d79481b979da)) + (pin "20" (uuid 95a44329-d131-4257-a502-b19d4e6b11b3)) + (pin "21" (uuid de43f017-41a0-40a1-98a9-49e802f4fb52)) + (pin "22" (uuid 245ac6fd-c26a-4a59-8bd4-d8de595b63d8)) + (pin "23" (uuid 47aa925a-9cd8-4506-900b-c05805c44e50)) + (pin "24" (uuid c185e31f-7642-4c86-a26a-92e634b705cd)) + (pin "25" (uuid 62980276-2b66-4fc3-ad1a-5ae2e4c3bd8b)) + (pin "26" (uuid 25b2a6cb-0610-43a1-83b3-cf275a4bbeb3)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 127 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 575ee3f6-e547-4830-acba-72bde6bc07f4) + (property "Reference" "M3" (id 0) (at 135.89 36.8299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 135.89 39.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 134.62 40.64 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 129.54 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e89bc00c-ec8b-4b5a-b9f1-6e5a661b9b54)) + (pin "2" (uuid 5d3b6d3c-0e5d-4176-a938-7da47816d4cd)) + (pin "3" (uuid 97dbb09d-21d0-4fea-a11f-5be33390f02a)) + (pin "4" (uuid 0b079429-3ab7-4c36-9f1c-95db47836f0e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 152.4 106.68 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5aed4908-2c03-436d-92a1-3e34a453fb50) + (property "Reference" "U1" (id 0) (at 156.21 106.045 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 156.21 108.585 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 152.4 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 152.4 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid afe6543d-4262-4922-bdef-3518d0211adc)) + (pin "2" (uuid c80b24ac-bc47-413a-8d39-35cc2fd59195)) + (pin "3" (uuid dd099827-c054-4b42-973c-665c243c0861)) + (pin "4" (uuid fb69f753-244e-4a07-a740-95f396ccaeee)) + (pin "5" (uuid f952313c-82d7-4def-bc11-0b5f5fca4355)) + (pin "6" (uuid 6b02c339-f522-41fa-977b-a9b7e17ad8d8)) + (pin "7" (uuid bdd49b39-f576-43af-a22b-dd4c47997e52)) + (pin "8" (uuid 01f58863-c796-4f18-8aae-4f3e87d22025)) + (pin "9" (uuid f6d41015-c978-44be-9807-8c284d9b5d32)) + (pin "10" (uuid 45412a9d-bb92-42bd-91bd-c7a6bd2d7b15)) + (pin "11" (uuid 5dfc66ef-05bf-476d-9f40-1c29b256658e)) + (pin "12" (uuid 31e8dabf-7588-49e1-9576-b1fb0c63ce23)) + (pin "13" (uuid 85469a6d-d6bc-4f24-a3b0-6740bc5c2b63)) + (pin "14" (uuid 83d3b225-8f03-4c8d-8d6c-380224e7609e)) + (pin "15" (uuid c00a2a2c-eae6-47a6-9060-fdebae604e27)) + (pin "16" (uuid e0ec907e-68bb-4bdf-8c62-1465f6b49dcf)) + (pin "17" (uuid fddf7edd-6dc1-42f0-a9ad-4826ca174d27)) + (pin "18" (uuid 421e00b5-c91d-4539-80d0-5c2780dd11fc)) + (pin "19" (uuid eac71be2-d238-41de-9eb2-bf62f3e24a9a)) + (pin "20" (uuid 5e0a966e-e1b9-4a21-98d8-14ba22c220d1)) + (pin "21" (uuid 64277a9d-7c4c-4046-b833-359e50cd2891)) + (pin "22" (uuid 701fc03f-7820-46f2-90d3-ff801a2c0fcd)) + (pin "23" (uuid 969ee3bd-08a7-444a-91c4-a76722d5a207)) + (pin "24" (uuid 1156c2fe-cd35-4be1-928e-751401833458)) + (pin "25" (uuid c3aaec60-23a5-4d44-9fa9-41ffea23a20f)) + (pin "26" (uuid 74f18e11-d1e8-44f0-86df-4909442da610)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 127 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5d64f049-5dfb-4e40-8c6d-87afc528a1a3) + (property "Reference" "M4" (id 0) (at 135.89 62.2299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 135.89 64.7699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 134.62 66.04 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 129.54 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87f0ab60-f955-44cd-8f95-83411653ff86)) + (pin "2" (uuid c2731d46-b278-4e4c-ab24-de8d62fa355e)) + (pin "3" (uuid c432de6b-7936-4740-8f89-400e7328a9e7)) + (pin "4" (uuid 2688bbeb-4e2b-4050-866f-ff2f19ee4046)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 124.46 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 694e1f92-cc5a-4e7a-8c3d-0fc028be8c22) + (property "Reference" "U1" (id 0) (at 36.195 119.38 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 121.92 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 300432d1-4b5a-4a8f-bd0d-ea63adb1d76d)) + (pin "2" (uuid 70532cff-8789-41b6-9850-eddd2d406c3a)) + (pin "3" (uuid 4efe06b9-d0df-402a-b673-aa0e2ec307c9)) + (pin "4" (uuid 63843b43-dfce-4a1b-9eea-1ff3f5f1656d)) + (pin "5" (uuid 5af8dd00-658f-406b-8baf-899a8cca337e)) + (pin "6" (uuid c568dfbd-167e-45ad-a778-f88ea90263a3)) + (pin "7" (uuid 7254dcf8-9d12-41fa-8d62-ec1dcc47973e)) + (pin "8" (uuid abd20cda-ec50-45da-929e-0be97dd2be39)) + (pin "9" (uuid d23c1096-45fd-403c-949d-ee9562d9dd08)) + (pin "10" (uuid 230c3d13-be6f-4702-8d72-93829265d5df)) + (pin "11" (uuid def280fd-5cca-4336-b9be-95d4a0c5c249)) + (pin "12" (uuid 725f48c5-b346-4b60-bbdf-bf140eb3c24b)) + (pin "13" (uuid ff8bd0d0-4c2f-4fa2-aa42-dd8a11a68c42)) + (pin "14" (uuid 76a748eb-9032-4469-9928-449d2605535d)) + (pin "15" (uuid 37b10357-6a5a-4d90-bf32-1e0a6a317587)) + (pin "16" (uuid 7ec62c16-4615-49ab-89cc-e0e12cf5eaf0)) + (pin "17" (uuid b396cf6a-a15d-4ae8-9eee-921f17423ef4)) + (pin "18" (uuid 95f2e832-9dd9-40f0-ab82-d3d34fd64296)) + (pin "19" (uuid 9d2233a0-1686-4fc4-9d2a-f884545c8bff)) + (pin "20" (uuid 271c93a0-b9ca-4e87-8c9d-d72f4811fd20)) + (pin "21" (uuid be12d58c-235b-47ff-9537-baea74bff8a7)) + (pin "22" (uuid 0ce74985-349d-4629-bf4b-0ff7f0ccb165)) + (pin "23" (uuid 2d71679b-a036-44a0-8a06-17945fff478a)) + (pin "24" (uuid a82733f2-0f8c-42d1-9c1f-806b733fae10)) + (pin "25" (uuid 54bf06e0-d27f-495c-b653-9169b7d8a9b2)) + (pin "26" (uuid bf3e7ab7-955d-4686-b1b4-f52156a5bc07)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 63.5 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6ee0b061-22c3-481e-9ba4-cd66c706d6cc) + (property "Reference" "U5" (id 0) (at 63.5 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 63.5 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 63.5 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5dda5aab-b5df-4250-8bce-4583c6021d81)) + (pin "2" (uuid 200b4aaa-0f83-4452-b9fb-d858af256643)) + (pin "3" (uuid 00f3ade6-7a64-45d4-b413-32eb5e2885f2)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 109.22 64.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6f5d1d65-2bdd-4a2d-bd74-60996ade3fdb) + (property "Reference" "U9" (id 0) (at 108.585 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 108.585 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 109.22 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6711c851-e51f-4942-9894-2b0514055c19)) + (pin "2" (uuid bee2c0a7-c26f-4196-b598-3dc3589909d0)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 106.68 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 773091aa-bb3c-4611-872a-c084d5667969) + (property "Reference" "U6" (id 0) (at 106.045 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 106.045 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 106.68 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 106.68 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ebc1b040-dfab-4f93-ac30-3fd5f36f8d97)) + (pin "2" (uuid 9950a3f0-8acd-4e8c-a727-ad3a238a5641)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 109.22 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 779f9645-fa54-45db-bc74-1e427f6eb3f6) + (property "Reference" "U8" (id 0) (at 108.585 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 108.585 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 109.22 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 109.22 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7571ab4d-f2b9-4a84-9455-aa8d8aa110a1)) + (pin "2" (uuid fe2ac7c6-5bfa-414b-9762-247ba14641c4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 113.03 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 78e3bfdd-ffc3-4ce6-a03a-c740f4e91290) + (property "Reference" "U1" (id 0) (at 36.195 107.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 110.49 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 40fa7172-b467-45b5-a78c-d8a2e62949f7)) + (pin "2" (uuid cf46b12f-ec9b-4c4e-b551-7919fffa61c3)) + (pin "3" (uuid 6a13a953-2cf4-46ac-a10b-2f51fdd38b8c)) + (pin "4" (uuid b63d5b6f-dcb3-4843-98c2-bc33e57383b5)) + (pin "5" (uuid 227e520e-294d-4602-b7b4-f226eebc5405)) + (pin "6" (uuid 37280444-9fdf-4e14-a472-466e785e05b0)) + (pin "7" (uuid a604ca8a-718a-48a7-80cb-48350a2614d8)) + (pin "8" (uuid 0d8cae24-b57b-42ff-baef-ea0ab238238d)) + (pin "9" (uuid 2aecd0fa-5644-4c20-aa52-de165f56a994)) + (pin "10" (uuid bc7836bf-90d0-4a9f-849c-7b384cf5c651)) + (pin "11" (uuid f192572e-68a0-4704-8920-a2a43ea56d4f)) + (pin "12" (uuid cf521ccb-8811-4700-b99a-65b61f82caef)) + (pin "13" (uuid b3ad8d69-1e25-41f5-bd21-0b5077a119a7)) + (pin "14" (uuid ee030168-c46d-4367-9ac8-d33da991ad08)) + (pin "15" (uuid 85eb65da-19d6-495c-ad82-7c453d2c83af)) + (pin "16" (uuid 38cab4da-b9d3-40b8-8daa-ede7e6be2f57)) + (pin "17" (uuid 0787ddaf-1968-474b-b3eb-b98844e6c8be)) + (pin "18" (uuid c1264f6d-1c6b-4582-89bc-809034fd9a1a)) + (pin "19" (uuid 3aed3771-1bff-4f85-89a2-801dcf3d53b0)) + (pin "20" (uuid 73d79e4d-8913-4df0-978d-99d365dc2e76)) + (pin "21" (uuid 8ca08de2-8db8-410c-91f1-863dd8a76f30)) + (pin "22" (uuid 1fb9c152-15a9-4992-8a86-1faec7f2206e)) + (pin "23" (uuid 3bcd4198-a581-47d3-a61d-7f803f771962)) + (pin "24" (uuid 00e3bafa-684e-4cc8-99cc-955229bb036b)) + (pin "25" (uuid 474baeb6-d833-46a6-990e-bea240e3dceb)) + (pin "26" (uuid b46a92ff-f515-44b0-8dc6-c3f5fd79e571)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 190.5 68.58 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ac46b7a-6edf-4282-9d68-c84c3e253301) + (property "Reference" "U12" (id 0) (at 194.31 67.945 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 194.31 70.485 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 190.5 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 190.5 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae322cbc-6217-4937-a843-f8069f7c53db)) + (pin "2" (uuid 58637841-a372-4b6d-bc02-66d8fe8b1521)) + (pin "3" (uuid 7b5beb70-bd97-413a-b47c-ea91e1122647)) + (pin "4" (uuid 8968b4ba-0334-46c4-bc09-0876457e183f)) + (pin "5" (uuid 0ef4a8f4-8b3b-4d18-93eb-5fbc7b52fa15)) + (pin "6" (uuid eba40e56-fd26-4253-a25f-37edbbdc845a)) + (pin "7" (uuid a3ef66f8-2d99-4b6d-b617-c3eae0beca82)) + (pin "8" (uuid d601402b-4b04-4c8e-80b6-beb5b17a06df)) + (pin "9" (uuid 80077677-d8fc-4a4b-ba5f-c84827b9f5ed)) + (pin "10" (uuid c11fb5de-c2f6-4712-a777-e9c5731c1dae)) + (pin "11" (uuid 14264bf8-62ff-4c34-b7a5-ab951cb2e491)) + (pin "12" (uuid f9c3c7a6-e5cf-42e7-903d-13f1b7984bb1)) + (pin "13" (uuid 3a4e8bff-d445-44c0-8482-2e78d445fce6)) + (pin "14" (uuid cdda2b72-7ff1-40f6-ad2b-f004bb7a6158)) + (pin "15" (uuid 2176ae86-9851-481f-9e91-499d9c4540f6)) + (pin "16" (uuid 71d912c2-1812-456d-947a-6137d4f7bec3)) + (pin "17" (uuid b9be53ff-f3fb-4a5b-80eb-d19e444f5726)) + (pin "18" (uuid 717ea8ac-5670-477d-9f64-81000a110316)) + (pin "19" (uuid 5e7690f2-ee83-4f98-aa74-948e64abd09f)) + (pin "20" (uuid f00b56bc-8245-4b88-8f45-68d84b3666ee)) + (pin "21" (uuid f5b356e3-4106-46ea-8de1-a1b02e83c1b1)) + (pin "22" (uuid 9e14032f-e34e-4147-a2bd-57c19020853c)) + (pin "23" (uuid 5c3c713d-fa5f-4e68-ac59-e9fa10cff0fc)) + (pin "24" (uuid e8bbe103-53d6-4310-8986-eca31bf5e889)) + (pin "25" (uuid 73be0471-9b58-435a-af24-b82d5e511289)) + (pin "26" (uuid e915a9fe-ebbb-4f1c-b38c-87f629f8dba7)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 107.95 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7e811092-4a1e-416f-9e68-9106f8fc8085) + (property "Reference" "U7" (id 0) (at 107.315 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 107.315 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 107.95 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 107.95 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 094b3c3e-ec1f-4fcc-abe9-a22af5485e56)) + (pin "2" (uuid 63ff01b9-1978-4c4b-abb0-25789fb27987)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 124.46 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f3d2f05-de24-459f-bd08-44d4387a5a0f) + (property "Reference" "M1" (id 0) (at 133.35 118.1099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 133.35 120.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 132.08 121.92 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 127 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d32cfcf5-3843-4d75-a0a5-56e0598bc862)) + (pin "2" (uuid e3ad611d-4109-4fd5-a03c-5c3ab60c2051)) + (pin "3" (uuid 09c71de9-3538-4757-8afd-a59b1bae6476)) + (pin "4" (uuid 69787b56-7fd2-433c-b73a-05f472b243fe)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 60.96 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b7997bba-1161-4a45-b191-950408edf32b) + (property "Reference" "U2" (id 0) (at 60.96 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 60.96 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 60.96 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 60.96 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2948b2ad-0f37-4c72-a03b-79ff1da13a44)) + (pin "2" (uuid 5099adb8-45aa-43c6-98d9-b6fef719bfae)) + (pin "3" (uuid c0bc100f-9e18-42f6-b260-482f59569be5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 185.42 124.46 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bdb5f0bb-c444-4013-af11-b63b92f62fff) + (property "Reference" "U11" (id 0) (at 189.23 123.825 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 189.23 126.365 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 185.42 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 185.42 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae322cbc-6217-4937-a843-f8069f7c53db)) + (pin "2" (uuid 58637841-a372-4b6d-bc02-66d8fe8b1521)) + (pin "3" (uuid 7b5beb70-bd97-413a-b47c-ea91e1122647)) + (pin "4" (uuid 8968b4ba-0334-46c4-bc09-0876457e183f)) + (pin "5" (uuid 0ef4a8f4-8b3b-4d18-93eb-5fbc7b52fa15)) + (pin "6" (uuid eba40e56-fd26-4253-a25f-37edbbdc845a)) + (pin "7" (uuid 71842da2-940a-4f94-9bbb-ec3ed2d194ed)) + (pin "8" (uuid d601402b-4b04-4c8e-80b6-beb5b17a06df)) + (pin "9" (uuid 80077677-d8fc-4a4b-ba5f-c84827b9f5ed)) + (pin "10" (uuid c11fb5de-c2f6-4712-a777-e9c5731c1dae)) + (pin "11" (uuid 14264bf8-62ff-4c34-b7a5-ab951cb2e491)) + (pin "12" (uuid f9c3c7a6-e5cf-42e7-903d-13f1b7984bb1)) + (pin "13" (uuid 3a4e8bff-d445-44c0-8482-2e78d445fce6)) + (pin "14" (uuid cdda2b72-7ff1-40f6-ad2b-f004bb7a6158)) + (pin "15" (uuid 2176ae86-9851-481f-9e91-499d9c4540f6)) + (pin "16" (uuid 71d912c2-1812-456d-947a-6137d4f7bec3)) + (pin "17" (uuid b9be53ff-f3fb-4a5b-80eb-d19e444f5726)) + (pin "18" (uuid 717ea8ac-5670-477d-9f64-81000a110316)) + (pin "19" (uuid 5e7690f2-ee83-4f98-aa74-948e64abd09f)) + (pin "20" (uuid f00b56bc-8245-4b88-8f45-68d84b3666ee)) + (pin "21" (uuid f5b356e3-4106-46ea-8de1-a1b02e83c1b1)) + (pin "22" (uuid 9e14032f-e34e-4147-a2bd-57c19020853c)) + (pin "23" (uuid 5c3c713d-fa5f-4e68-ac59-e9fa10cff0fc)) + (pin "24" (uuid e8bbe103-53d6-4310-8986-eca31bf5e889)) + (pin "25" (uuid 73be0471-9b58-435a-af24-b82d5e511289)) + (pin "26" (uuid e915a9fe-ebbb-4f1c-b38c-87f629f8dba7)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 62.23 91.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c21ebb2b-beaf-4bf4-a3a2-d5c8f503b15b) + (property "Reference" "U3" (id 0) (at 62.23 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 62.23 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 62.23 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 62.23 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e12e683d-9f50-4860-8dfe-01bf9e4c271f)) + (pin "2" (uuid 50d5d334-4588-4a7f-8f18-7f187bc50334)) + (pin "3" (uuid 2121704e-1602-4be4-a4fa-c3f16cfcdb74)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 36.83 43.18 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c2a54eba-59c1-46a1-9233-4f3f7b869022) + (property "Reference" "U1" (id 0) (at 37.465 38.1 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 37.465 40.64 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 36.83 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 36.83 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a16d76fb-83e1-4605-bec4-335c69fc3050)) + (pin "2" (uuid c1d602e1-4ac1-4eef-aacf-8a7830dd2d0e)) + (pin "3" (uuid 6aebfcb5-671e-40d8-bc4d-4e08c232273f)) + (pin "4" (uuid 558d0658-b28e-4dbb-a288-c568ea6018ec)) + (pin "5" (uuid 3d063444-a493-4a79-a110-fca979c19f05)) + (pin "6" (uuid 6807ebb1-f46d-4911-8c9e-5edd0daef6fb)) + (pin "7" (uuid 5d5c730b-9291-4def-a681-aa4e808dea7a)) + (pin "8" (uuid 5ec49631-d6ba-43b4-b90c-6ae9eb8d1344)) + (pin "9" (uuid 82bdea6e-e8f6-4c03-b694-4a1b852b3c7b)) + (pin "10" (uuid e988bcb5-5383-4d14-9347-d17f2f71fc63)) + (pin "11" (uuid 1d7d243b-1a89-4078-aa38-753524cc4355)) + (pin "12" (uuid 55e24d8b-aed5-4086-8cc5-4644bd36823c)) + (pin "13" (uuid a73f38e1-eee7-4470-a999-1608db3191d0)) + (pin "14" (uuid 5fa5ad19-23cc-4d33-a3c3-d9a25bf7c7f1)) + (pin "15" (uuid e444d33e-f35f-47a8-b3f9-4f76d7c12284)) + (pin "16" (uuid 04c68bcc-27e3-47ca-8bf3-4df703e74482)) + (pin "17" (uuid 33fc4aa2-c9d6-4650-81e4-73e01959026c)) + (pin "18" (uuid 11ff8aa5-f01b-4f56-a404-f8dc424c24b7)) + (pin "19" (uuid 4f18e7e2-c560-4936-8fe7-70cfd3f21620)) + (pin "20" (uuid 19b12ea1-7c70-4058-9c60-a6ae42768228)) + (pin "21" (uuid f3c5c64c-bd4d-4d44-a37e-100547950317)) + (pin "22" (uuid 01667f1f-4088-4741-95b5-e674772f22ab)) + (pin "23" (uuid 86262e8d-0679-4d46-9a1a-6323a37b44cb)) + (pin "24" (uuid 78a1f8df-20cb-4364-8612-94936f62a51f)) + (pin "25" (uuid bdd7517f-2388-4d10-a3c9-11547dbce13a)) + (pin "26" (uuid 84263106-4c53-4f17-8bd6-214e574d8456)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 35.56 59.69 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf9cafc6-f6c0-4642-bc59-124d85dd54ef) + (property "Reference" "U1" (id 0) (at 36.195 54.61 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 36.195 57.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 35.56 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 35.56 59.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6aa4f3b1-5ef8-430d-a5cc-114cca2a876d)) + (pin "2" (uuid 23eb2954-80e5-451d-ad2d-9e71ffa99e56)) + (pin "3" (uuid 1451f674-a59e-4fd4-867f-684a0d3af749)) + (pin "4" (uuid e2ddf2d2-11de-4700-99ca-669086019b1a)) + (pin "5" (uuid 721e6fa6-05f0-4a87-8e4d-2ee2ce072bb5)) + (pin "6" (uuid db5ebed5-2b77-438d-ba17-a717a2943db2)) + (pin "7" (uuid 203dab5d-98a6-4601-af2f-5419d30b26dd)) + (pin "8" (uuid c8ebae9e-2dd0-4c4c-8dc0-2594ad17ebc2)) + (pin "9" (uuid fe031479-6b0a-4e23-bbce-b3889e8e7dc3)) + (pin "10" (uuid 5ffec17b-3d38-452c-85c0-f95dbc718e37)) + (pin "11" (uuid 49b18d32-49ce-48ff-85fc-b617bc89977a)) + (pin "12" (uuid 13b90131-8a00-4887-aff6-5ede8f0d7ec5)) + (pin "13" (uuid 7ed2e5c0-2c44-4e3e-bfe8-2acf44cf5453)) + (pin "14" (uuid a6e1193e-f62b-436e-8160-a9f3686efef9)) + (pin "15" (uuid cde48e82-8c28-4fce-aa1b-777e28fa3bd3)) + (pin "16" (uuid 9199d68c-5f3b-4d6c-913b-419f158f4480)) + (pin "17" (uuid 0a08e410-f78b-4263-bd98-52443042f068)) + (pin "18" (uuid 9d335a08-b055-4722-ab5d-9f8cee89407d)) + (pin "19" (uuid 1a1f8811-de7b-4a6a-b61d-369da7ae99d7)) + (pin "20" (uuid a41cfae0-b977-404f-8a98-34de48395b19)) + (pin "21" (uuid 320ecebb-f0ef-462b-b5ad-72988852d8a3)) + (pin "22" (uuid 7aa957d0-1c16-465d-aada-f2d13d169813)) + (pin "23" (uuid 37d43e6d-1ca7-453d-954f-9ad7e5f9dd97)) + (pin "24" (uuid 3bcb24ce-e863-4691-b543-5ad683b52dde)) + (pin "25" (uuid d1f3b029-0e4b-4f4f-826e-ddcaa9c99fc2)) + (pin "26" (uuid e5a1f522-fcd6-4b47-b24f-7ab66f817bc3)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 125.73 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d83b0cee-2118-47d5-9344-61b685f45a90) + (property "Reference" "M2" (id 0) (at 134.62 88.8999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 134.62 91.4399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 133.35 92.71 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 128.27 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 247694eb-4652-44b6-9a7a-f5a822a75d18)) + (pin "2" (uuid 84a02fa4-3983-404f-b3b6-b7b24ba43251)) + (pin "3" (uuid b898eeba-8689-463a-8c32-63fba42fc647)) + (pin "4" (uuid cf376e6b-b8ec-4ed6-8a8c-dfbd651a2bf2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 36.83 92.71 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ebaeac0b-b09f-4efd-a813-968652cfdc06) + (property "Reference" "U1" (id 0) (at 37.465 87.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 37.465 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 36.83 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 36.83 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 889b5b2f-a165-4cb4-8259-3c02e1fd1113)) + (pin "2" (uuid 0d8f2df3-69a5-43d2-a463-705822cfbecc)) + (pin "3" (uuid d7a05353-ecb0-45c8-98b9-9d72f3c39731)) + (pin "4" (uuid 8e9a8ee0-b842-4926-9e4d-e798a5b9846a)) + (pin "5" (uuid 70e3501c-f724-4a5b-8303-28b9ceafed24)) + (pin "6" (uuid f00de8d7-32a1-4323-9273-0ef7a0e57636)) + (pin "7" (uuid e5e337a4-7d20-4c0f-b799-cdfc1450d046)) + (pin "8" (uuid d35a2ba7-64c9-4484-aa50-6cefac9d3de1)) + (pin "9" (uuid bd1dc53d-045a-411e-b95f-c99f01057ed1)) + (pin "10" (uuid 094d9f7c-9209-4947-8720-73dff8ac0eab)) + (pin "11" (uuid f5161fd8-51f2-42ac-a988-0beae9913762)) + (pin "12" (uuid 1c1ee065-9f93-4d50-aa4a-f4da2e5479a5)) + (pin "13" (uuid f7af9092-e54e-442a-88e4-2ea8b67653b1)) + (pin "14" (uuid 10945f78-e1f6-4d9c-8bc2-c7d8e6397cd0)) + (pin "15" (uuid 26b8ff20-5883-459b-82c9-bf2a639e3848)) + (pin "16" (uuid 16640609-1788-478b-b645-fd526f9574be)) + (pin "17" (uuid c47e7b3b-08f8-448b-98c3-4360e9dc108c)) + (pin "18" (uuid 69f18bec-6a69-4ddc-bb63-1a10e6f61790)) + (pin "19" (uuid ae5299cc-50f5-429b-ba6e-aadd6d86c825)) + (pin "20" (uuid 4a823c53-76bb-4787-9b7f-fc4482f7cc88)) + (pin "21" (uuid b710b7f2-fdfd-4126-ba19-0d9623694af4)) + (pin "22" (uuid 1b04d21d-a461-4819-8b0f-deee4a348912)) + (pin "23" (uuid 3c177a91-39f9-4ef8-a15e-bb532d09301b)) + (pin "24" (uuid 7b0e8f02-a056-489e-a5a5-02a551f472db)) + (pin "25" (uuid b927fb01-795f-4624-a037-6e9bad6ebef4)) + (pin "26" (uuid 6544a95e-9684-4507-9aa3-8ceea94c20f9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 34.29 68.58 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f41871bc-7398-4d0f-a5a2-8d244345965c) + (property "Reference" "U1" (id 0) (at 34.925 63.5 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 34.925 66.04 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 34.29 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 34.29 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e4b8b7d1-4d4f-4640-8009-ef93773a85d4)) + (pin "2" (uuid ba4bb51a-f0b4-4b41-9499-e2d457becc3c)) + (pin "3" (uuid 1b17f1b6-b971-41c1-a7b6-54788bde532a)) + (pin "4" (uuid b39365aa-c019-47ea-bbb6-ac2d177c3ab0)) + (pin "5" (uuid 5cc31fd1-3bb8-4ed5-a7d6-02cc50aed234)) + (pin "6" (uuid 6defa5af-9226-45f9-bb50-6ef7fec7cffd)) + (pin "7" (uuid be062160-6e67-4b70-bb17-926fe31ebd95)) + (pin "8" (uuid 7d3435c6-e45a-40fd-be01-35b2b6f23c71)) + (pin "9" (uuid c9d7ceb5-0ed2-44cc-956c-54be3a18c7a2)) + (pin "10" (uuid 692aee4b-203e-4daf-b3c6-b13a3d16e846)) + (pin "11" (uuid 1ecb51d6-22ef-4a12-9e3f-56f78ca56c95)) + (pin "12" (uuid 15f8bcc5-9f82-4f1f-b442-cb2285bda806)) + (pin "13" (uuid 6fde3857-7653-41e6-87b4-5e4057e6d4b2)) + (pin "14" (uuid e89b50eb-29cb-4c3f-91fd-6b3e4ca0b0fa)) + (pin "15" (uuid 0f9e9d73-2c70-4cd2-b598-9c42e94f4d91)) + (pin "16" (uuid 933b7f2d-2e0c-4e78-927d-04cec9e4bdfa)) + (pin "17" (uuid a4c9b801-e5b7-47a4-891c-e6260a0f6de2)) + (pin "18" (uuid 77933ae3-47af-4668-bef8-15e1680752fb)) + (pin "19" (uuid 80f6f3b2-fd33-4c2d-b6ab-c3d61f1edad3)) + (pin "20" (uuid 6112ede9-120a-40d3-87f3-f13a0d500d9d)) + (pin "21" (uuid 83842ae1-345c-48ae-9d5a-7af0556a4638)) + (pin "22" (uuid fc33f435-cebc-4745-bcf5-ed0e21a0b842)) + (pin "23" (uuid 19db39b9-9598-483e-a070-7766873edc85)) + (pin "24" (uuid c2769309-fd49-4308-b591-384304a801c8)) + (pin "25" (uuid b5f3ae12-32c4-4c92-a920-7379117ed0af)) + (pin "26" (uuid e0d12288-1735-4817-aeff-bd66324a23e7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 153.67 77.47 180) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fae7f6bb-4eab-4734-83c0-fcbb69821771) + (property "Reference" "U1" (id 0) (at 157.48 76.835 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 157.48 79.375 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 153.67 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 153.67 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 819f2b28-a091-4769-b5d3-9119fb4e1693)) + (pin "2" (uuid a4fbf2c3-2840-403e-bc87-8ea7d48b054c)) + (pin "3" (uuid 31440c54-8145-42de-ac88-b611d8766570)) + (pin "4" (uuid d9610675-faf0-42a8-a3b4-7a7fe783529a)) + (pin "5" (uuid 0f79e258-999d-4155-b365-f7be5627f062)) + (pin "6" (uuid 1b0ff805-37a0-46fa-8cf9-7b6213f82e0b)) + (pin "7" (uuid 22286f37-9c58-4d86-8f96-967c259375c2)) + (pin "8" (uuid 92a98dd0-0e48-449e-a65b-d4eae3d85c5c)) + (pin "9" (uuid bc6d6cf4-ef52-4733-bc28-3c37a042a2ef)) + (pin "10" (uuid 0e56f94d-268b-416a-b274-30541e3ac268)) + (pin "11" (uuid a20fecd2-eceb-4b2f-950e-89ae7bf9b3ee)) + (pin "12" (uuid c020a101-c5ea-4bcb-8535-e0aac9e56a35)) + (pin "13" (uuid 9194a4e2-e87e-4e1e-82d6-dfe40b149e8d)) + (pin "14" (uuid d1787a26-b72e-4692-90b2-6b08943cba2e)) + (pin "15" (uuid fdad118a-1c84-4835-a497-f8723bd04349)) + (pin "16" (uuid 0796b581-e967-41e9-8878-3f6058657fd2)) + (pin "17" (uuid c14a2bb0-b012-4f4c-9081-34a2a0423683)) + (pin "18" (uuid f5c88775-3669-43cc-b132-885a691f8f49)) + (pin "19" (uuid c15d8ed3-2441-4d88-9bc8-e19c4a5a88c7)) + (pin "20" (uuid 0fa5872a-bf8e-46ce-8e40-7669a8c9e9ff)) + (pin "21" (uuid 88c2ab9f-1437-4603-a885-b9d2a54ade4d)) + (pin "22" (uuid 137bd573-24c9-45a1-ad65-f6def95bb891)) + (pin "23" (uuid 5195e482-ac30-4941-9764-5e82de5aedfa)) + (pin "24" (uuid 493c4527-8a5b-4a69-b6c7-90e7b32f37c4)) + (pin "25" (uuid abe13ae1-b532-4d18-8d35-339cba8efde2)) + (pin "26" (uuid cf291e5e-5e4f-49b4-8d1d-6d6adaf817c2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 36.83 34.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe7084d4-6fc0-486a-b86f-503b271f9ac0) + (property "Reference" "U1" (id 0) (at 37.465 29.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 37.465 31.75 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 36.83 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 36.83 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e2ee67f5-1afc-4917-8d3d-6ad6ff4e73fd)) + (pin "2" (uuid c1699b47-9a0b-48de-a4b5-1d7e03e7d813)) + (pin "3" (uuid 6da12ec6-6807-4386-8c04-7adb21aba07a)) + (pin "4" (uuid f3bbf189-4346-4909-b853-800111830ee6)) + (pin "5" (uuid 9eaf7a34-7231-495b-8b96-32e76f941313)) + (pin "6" (uuid df8b7139-422e-46f0-afca-edef3d5422a7)) + (pin "7" (uuid 4beb281a-792a-4646-958f-abedc1768d26)) + (pin "8" (uuid 7058c11d-2692-421a-af18-109e51445e07)) + (pin "9" (uuid 630ca0a4-8e92-41ee-854b-470ca48f8806)) + (pin "10" (uuid 3e334a37-37b6-4e33-98a3-335493e0232d)) + (pin "11" (uuid 07dc6e2c-4239-4bc7-8332-71506d4676c2)) + (pin "12" (uuid 5ad81eb8-857d-409a-adb3-206ac0bcba93)) + (pin "13" (uuid 9b93a3ea-ae1a-4007-9f98-6f718e0062c2)) + (pin "14" (uuid 96a06731-f4a6-43b7-a2d2-89dc71bb707c)) + (pin "15" (uuid 6fd59070-e673-4966-baf4-23948697459e)) + (pin "16" (uuid 3160517b-c1df-4464-b19d-809c78d66edd)) + (pin "17" (uuid 02e449bc-21ce-470e-b7c2-950f6bd87206)) + (pin "18" (uuid 2ac90aa4-9826-4700-95c9-2d65c2f74e89)) + (pin "19" (uuid 407cf4be-8e68-4280-8fd9-1623820e8e52)) + (pin "20" (uuid 8f107232-b8b5-41c6-b1b3-ae1789c3c65c)) + (pin "21" (uuid 884029a9-8d07-4c38-acd7-6ad8a9c3b16b)) + (pin "22" (uuid 560f371b-5131-4b82-9f05-aea1b4046dca)) + (pin "23" (uuid d26dd5c0-d63b-429b-9d44-5ff2f1ce56ac)) + (pin "24" (uuid 5f7665bd-0b87-4045-b243-e9177f814d7f)) + (pin "25" (uuid 3dc6c5ee-7dcc-4b9c-ae47-0aadda12c6af)) + (pin "26" (uuid 37279588-9fab-465a-b505-d71100f1ff6a)) + ) + + (symbol (lib_id "eSim_Digital:d_nand") (at 63.5 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ff55cee7-69b0-46df-a3a2-a5f544ce0db0) + (property "Reference" "U4" (id 0) (at 63.5 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_nand" (id 1) (at 63.5 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 63.5 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 63.5 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a3d26ed9-5d01-419a-bf1d-1bf30635c98d)) + (pin "2" (uuid 642f2afa-c50f-48e4-a8db-75b2aeb75de2)) + (pin "3" (uuid e87fa0be-ffe9-474e-9f17-4131fbb288cc)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/8f3d2f05-de24-459f-bd08-44d4387a5a0f" + (reference "M1") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/d83b0cee-2118-47d5-9344-61b685f45a90" + (reference "M2") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/575ee3f6-e547-4830-acba-72bde6bc07f4" + (reference "M3") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/5d64f049-5dfb-4e40-8c6d-87afc528a1a3" + (reference "M4") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/fe7084d4-6fc0-486a-b86f-503b271f9ac0" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/c2a54eba-59c1-46a1-9233-4f3f7b869022" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/4cd695dc-2bfe-45f3-8c82-b0a66c826f84" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/cf9cafc6-f6c0-4642-bc59-124d85dd54ef" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/f41871bc-7398-4d0f-a5a2-8d244345965c" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/40d17e64-6cef-4dbf-8d27-c854303e2402" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/2b1baaf8-b3d6-4fe4-905c-bf129d4a9493" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/fae7f6bb-4eab-4734-83c0-fcbb69821771" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/10777c98-9be2-48a0-b2d8-625ab07b1087" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/ebaeac0b-b09f-4efd-a813-968652cfdc06" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/5aed4908-2c03-436d-92a1-3e34a453fb50" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/694e1f92-cc5a-4e7a-8c3d-0fc028be8c22" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/78e3bfdd-ffc3-4ce6-a03a-c740f4e91290" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/b7997bba-1161-4a45-b191-950408edf32b" + (reference "U2") (unit 1) (value "d_nand") (footprint "") + ) + (path "/c21ebb2b-beaf-4bf4-a3a2-d5c8f503b15b" + (reference "U3") (unit 1) (value "d_nand") (footprint "") + ) + (path "/ff55cee7-69b0-46df-a3a2-a5f544ce0db0" + (reference "U4") (unit 1) (value "d_nand") (footprint "") + ) + (path "/6ee0b061-22c3-481e-9ba4-cd66c706d6cc" + (reference "U5") (unit 1) (value "d_nand") (footprint "") + ) + (path "/773091aa-bb3c-4611-872a-c084d5667969" + (reference "U6") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/7e811092-4a1e-416f-9e68-9106f8fc8085" + (reference "U7") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/779f9645-fa54-45db-bc74-1e427f6eb3f6" + (reference "U8") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/6f5d1d65-2bdd-4a2d-bd74-60996ade3fdb" + (reference "U9") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/0b8fbc70-eb7c-4c47-a479-788458c8c90b" + (reference "U10") (unit 7) (value "PORT") (footprint "") + ) + (path "/bdb5f0bb-c444-4013-af11-b63b92f62fff" + (reference "U11") (unit 7) (value "PORT") (footprint "") + ) + (path "/7ac46b7a-6edf-4282-9d68-c84c3e253301" + (reference "U12") (unit 7) (value "PORT") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.sub b/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.sub new file mode 100644 index 000000000..0c882b31c --- /dev/null +++ b/library/SubcircuitLibrary/SNx4HC03/SNx4HC03.sub @@ -0,0 +1,42 @@ +* Subcircuit SNx4HC03 +.subckt SNx4HC03 net-_m4-pad3_ +.title kicad schematic +* u3 net-_u1-pad9_ net-_u1-pad10_ net-_u3-pad3_ d_nand +* u2 net-_u1-pad13_ net-_u1-pad12_ net-_u2-pad3_ d_nand +* u6 net-_u2-pad3_ net-_m1-pad2_ dac_bridge_1 +* u7 net-_u3-pad3_ net-_m2-pad2_ dac_bridge_1 +* u5 net-_u1-pad4_ net-_u1-pad5_ net-_u5-pad3_ d_nand +* u4 net-_u1-pad1_ net-_u1-pad2_ net-_u4-pad3_ d_nand +* u8 net-_u4-pad3_ net-_m3-pad2_ dac_bridge_1 +* u9 net-_u5-pad3_ net-_m4-pad2_ dac_bridge_1 +m4 net-_m4-pad1_ net-_m4-pad2_ net-_m4-pad3_ net-_m4-pad3_ esim_mos_n +m3 net-_m3-pad1_ net-_m3-pad2_ net-_m3-pad3_ net-_m3-pad3_ esim_mos_n +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ esim_mos_n +m2 net-_m2-pad1_ net-_m2-pad2_ net-_m2-pad3_ net-_m2-pad3_ esim_mos_n +a1 [net-_u1-pad9_ net-_u1-pad10_ ] net-_u3-pad3_ u3 +a2 [net-_u1-pad13_ net-_u1-pad12_ ] net-_u2-pad3_ u2 +a3 [net-_u2-pad3_ ] [net-_m1-pad2_ ] u6 +a4 [net-_u3-pad3_ ] [net-_m2-pad2_ ] u7 +a5 [net-_u1-pad4_ net-_u1-pad5_ ] net-_u5-pad3_ u5 +a6 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u4-pad3_ u4 +a7 [net-_u4-pad3_ ] [net-_m3-pad2_ ] u8 +a8 [net-_u5-pad3_ ] [net-_m4-pad2_ ] u9 +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u3 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u2 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u6 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u7 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u5 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, Ngspice Name: d_nand +.model u4 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u8 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u9 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Control Statements + +.ends SNx4HC03 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SNx4HC03/SNx4HC03_Previous_Values.xml b/library/SubcircuitLibrary/SNx4HC03/SNx4HC03_Previous_Values.xml new file mode 100644 index 000000000..6389f1b73 --- /dev/null +++ b/library/SubcircuitLibrary/SNx4HC03/SNx4HC03_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_nandd_nanddac_bridgedac_bridged_nandd_nanddac_bridgedac_bridge \ No newline at end of file diff --git a/library/SubcircuitLibrary/SNx4HC03/_autosave-SNx4HC03.sch b/library/SubcircuitLibrary/SNx4HC03/_autosave-SNx4HC03.sch new file mode 100644 index 000000000..01cc548f8 --- /dev/null +++ b/library/SubcircuitLibrary/SNx4HC03/_autosave-SNx4HC03.sch @@ -0,0 +1,421 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 5200 4900 +Connection ~ 5250 3750 +Connection ~ 5300 1700 +Connection ~ 5300 2700 +Wire Wire Line + 1600 2700 2050 2700 +Wire Wire Line + 1650 2350 2050 2350 +Wire Wire Line + 1650 3350 2000 3350 +Wire Wire Line + 1650 4450 1950 4450 +Wire Wire Line + 1650 4900 1950 4900 +Wire Wire Line + 1700 1350 2050 1350 +Wire Wire Line + 1700 1700 2050 1700 +Wire Wire Line + 1700 3650 2000 3650 +Wire Wire Line + 1950 4450 1950 4650 +Wire Wire Line + 1950 4900 1950 4750 +Wire Wire Line + 2000 3350 2000 3500 +Wire Wire Line + 2000 3650 2000 3600 +Wire Wire Line + 2050 1350 2050 1450 +Wire Wire Line + 2050 1700 2050 1550 +Wire Wire Line + 2050 2350 2050 2450 +Wire Wire Line + 2050 2700 2050 2550 +Wire Wire Line + 2850 4700 3600 4700 +Wire Wire Line + 2900 3550 3650 3550 +Wire Wire Line + 2950 1500 3700 1500 +Wire Wire Line + 2950 2500 3700 2500 +Wire Wire Line + 4750 4700 4800 4700 +Wire Wire Line + 4800 3550 4850 3550 +Wire Wire Line + 4850 1500 4900 1500 +Wire Wire Line + 4850 2500 4900 2500 +Wire Wire Line + 5100 4200 5100 4500 +Wire Wire Line + 5100 4900 5200 4900 +Wire Wire Line + 5150 3050 5150 3350 +Wire Wire Line + 5150 3750 5250 3750 +Wire Wire Line + 5200 1000 5200 1300 +Wire Wire Line + 5200 1700 5300 1700 +Wire Wire Line + 5200 2000 5200 2300 +Wire Wire Line + 5200 2700 5300 2700 +Wire Wire Line + 5200 4850 5200 4900 +Wire Wire Line + 5200 4900 7050 4900 +Wire Wire Line + 5250 3700 5250 3750 +Wire Wire Line + 5250 3750 7050 3750 +Wire Wire Line + 5300 1650 5300 1700 +Wire Wire Line + 5300 1700 7050 1700 +Wire Wire Line + 5300 2650 5300 2700 +Wire Wire Line + 5300 2700 7250 2700 +Wire Wire Line + 5750 4200 5100 4200 +Wire Wire Line + 5800 3050 5150 3050 +Wire Wire Line + 5850 1000 5200 1000 +Wire Wire Line + 5850 2000 5200 2000 +$Comp +L eSim_Miscellaneous:PORT U1 +U 5 1 00000000 +P 1350 2700 +F 0 "U1" H 1375 2900 30 0000 C CNN +F 1 "PORT" H 1375 2800 30 0000 C CNN +F 2 "" H 1350 2700 60 0000 C CNN +F 3 "" H 1350 2700 60 0000 C CNN + 5 1350 2700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 4 1 00000000 +P 1400 2350 +F 0 "U1" H 1425 2550 30 0000 C CNN +F 1 "PORT" H 1425 2450 30 0000 C CNN +F 2 "" H 1400 2350 60 0000 C CNN +F 3 "" H 1400 2350 60 0000 C CNN + 4 1400 2350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 9 1 00000000 +P 1400 3350 +F 0 "U1" H 1425 3550 30 0000 C CNN +F 1 "PORT" H 1425 3450 30 0000 C CNN +F 2 "" H 1400 3350 60 0000 C CNN +F 3 "" H 1400 3350 60 0000 C CNN + 9 1400 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 13 1 00000000 +P 1400 4450 +F 0 "U1" H 1425 4650 30 0000 C CNN +F 1 "PORT" H 1425 4550 30 0000 C CNN +F 2 "" H 1400 4450 60 0000 C CNN +F 3 "" H 1400 4450 60 0000 C CNN + 13 1400 4450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 12 1 00000000 +P 1400 4900 +F 0 "U1" H 1425 5100 30 0000 C CNN +F 1 "PORT" H 1425 5000 30 0000 C CNN +F 2 "" H 1400 4900 60 0000 C CNN +F 3 "" H 1400 4900 60 0000 C CNN + 12 1400 4900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 1 1 00000000 +P 1450 1350 +F 0 "U1" H 1475 1550 30 0000 C CNN +F 1 "PORT" H 1475 1450 30 0000 C CNN +F 2 "" H 1450 1350 60 0000 C CNN +F 3 "" H 1450 1350 60 0000 C CNN + 1 1450 1350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 2 1 00000000 +P 1450 1700 +F 0 "U1" H 1475 1900 30 0000 C CNN +F 1 "PORT" H 1475 1800 30 0000 C CNN +F 2 "" H 1450 1700 60 0000 C CNN +F 3 "" H 1450 1700 60 0000 C CNN + 2 1450 1700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 10 1 00000000 +P 1450 3650 +F 0 "U1" H 1475 3850 30 0000 C CNN +F 1 "PORT" H 1475 3750 30 0000 C CNN +F 2 "" H 1450 3650 60 0000 C CNN +F 3 "" H 1450 3650 60 0000 C CNN + 10 1450 3650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 11 1 00000000 +P 6000 4200 +F 0 "U1" H 5850 4175 30 0000 R CNN +F 1 "PORT" H 5850 4275 30 0000 R CNN +F 2 "" H 6000 4200 60 0000 C CNN +F 3 "" H 6000 4200 60 0000 C CNN + 11 6000 4200 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 8 1 00000000 +P 6050 3050 +F 0 "U1" H 5900 3025 30 0000 R CNN +F 1 "PORT" H 5900 3125 30 0000 R CNN +F 2 "" H 6050 3050 60 0000 C CNN +F 3 "" H 6050 3050 60 0000 C CNN + 8 6050 3050 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 3 1 00000000 +P 6100 1000 +F 0 "U1" H 5950 975 30 0000 R CNN +F 1 "PORT" H 5950 1075 30 0000 R CNN +F 2 "" H 6100 1000 60 0000 C CNN +F 3 "" H 6100 1000 60 0000 C CNN + 3 6100 1000 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 6 1 00000000 +P 6100 2000 +F 0 "U1" H 5950 1975 30 0000 R CNN +F 1 "PORT" H 5950 2075 30 0000 R CNN +F 2 "" H 6100 2000 60 0000 C CNN +F 3 "" H 6100 2000 60 0000 C CNN + 6 6100 2000 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U1 +U 7 1 00000000 +P 7300 1700 +F 0 "U1" H 7150 1675 30 0000 R CNN +F 1 "PORT" H 7150 1775 30 0000 R CNN +F 2 "" H 7300 1700 60 0000 C CNN +F 3 "" H 7300 1700 60 0000 C CNN + 7 7300 1700 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U10 +U 7 1 00000000 +P 7300 3750 +F 0 "U10" H 7150 3725 30 0000 R CNN +F 1 "PORT" H 7150 3825 30 0000 R CNN +F 2 "" H 7300 3750 60 0000 C CNN +F 3 "" H 7300 3750 60 0000 C CNN + 7 7300 3750 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U11 +U 7 1 00000000 +P 7300 4900 +F 0 "U11" H 7150 4875 30 0000 R CNN +F 1 "PORT" H 7150 4975 30 0000 R CNN +F 2 "" H 7300 4900 60 0000 C CNN +F 3 "" H 7300 4900 60 0000 C CNN + 7 7300 4900 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U12 +U 7 1 00000000 +P 7500 2700 +F 0 "U12" H 7350 2675 30 0000 R CNN +F 1 "PORT" H 7350 2775 30 0000 R CNN +F 2 "" H 7500 2700 60 0000 C CNN +F 3 "" H 7500 2700 60 0000 C CNN + 7 7500 2700 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_MOS_N M1 +U 1 1 00000000 +P 4900 4500 +F 0 "M1" H 5250 4350 50 0000 L CNN +F 1 "eSim_MOS_N" H 5250 4250 50 0000 L CNN +F 2 "" H 5200 4200 29 0000 C CNN +F 3 "" H 5000 4300 60 0000 C CNN + 1 4900 4500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_MOS_N M2 +U 1 1 00000000 +P 4950 3350 +F 0 "M2" H 5300 3200 50 0000 L CNN +F 1 "eSim_MOS_N" H 5300 3100 50 0000 L CNN +F 2 "" H 5250 3050 29 0000 C CNN +F 3 "" H 5050 3150 60 0000 C CNN + 1 4950 3350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_MOS_N M3 +U 1 1 00000000 +P 5000 1300 +F 0 "M3" H 5350 1150 50 0000 L CNN +F 1 "eSim_MOS_N" H 5350 1050 50 0000 L CNN +F 2 "" H 5300 1000 29 0000 C CNN +F 3 "" H 5100 1100 60 0000 C CNN + 1 5000 1300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_MOS_N M4 +U 1 1 00000000 +P 5000 2300 +F 0 "M4" H 5350 2150 50 0000 L CNN +F 1 "eSim_MOS_N" H 5350 2050 50 0000 L CNN +F 2 "" H 5300 2000 29 0000 C CNN +F 3 "" H 5100 2100 60 0000 C CNN + 1 5000 2300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U2 +U 1 1 00000000 +P 2400 4750 +F 0 "U2" H 2400 5100 60 0000 C CNN +F 1 "d_nand" H 2400 4950 60 0000 C CNN +F 2 "" H 2400 4750 60 0000 C CNN +F 3 "" H 2400 4750 60 0000 C CNN + 1 2400 4750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U3 +U 1 1 00000000 +P 2450 3600 +F 0 "U3" H 2450 3950 60 0000 C CNN +F 1 "d_nand" H 2450 3800 60 0000 C CNN +F 2 "" H 2450 3600 60 0000 C CNN +F 3 "" H 2450 3600 60 0000 C CNN + 1 2450 3600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U4 +U 1 1 00000000 +P 2500 1550 +F 0 "U4" H 2500 1900 60 0000 C CNN +F 1 "d_nand" H 2500 1750 60 0000 C CNN +F 2 "" H 2500 1550 60 0000 C CNN +F 3 "" H 2500 1550 60 0000 C CNN + 1 2500 1550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Digital:d_nand U5 +U 1 1 00000000 +P 2500 2550 +F 0 "U5" H 2500 2900 60 0000 C CNN +F 1 "d_nand" H 2500 2750 60 0000 C CNN +F 2 "" H 2500 2550 60 0000 C CNN +F 3 "" H 2500 2550 60 0000 C CNN + 1 2500 2550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Hybrid:dac_bridge_1 U6 +U 1 1 00000000 +P 4200 4750 +F 0 "U6" H 4175 5150 60 0000 C CNN +F 1 "dac_bridge_1" H 4175 5000 60 0000 C CNN +F 2 "" H 4200 4750 60 0000 C CNN +F 3 "" H 4200 4750 60 0000 C CNN + 1 4200 4750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Hybrid:dac_bridge_1 U7 +U 1 1 00000000 +P 4250 3600 +F 0 "U7" H 4225 4000 60 0000 C CNN +F 1 "dac_bridge_1" H 4225 3850 60 0000 C CNN +F 2 "" H 4250 3600 60 0000 C CNN +F 3 "" H 4250 3600 60 0000 C CNN + 1 4250 3600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Hybrid:dac_bridge_1 U8 +U 1 1 00000000 +P 4300 1550 +F 0 "U8" H 4275 1950 60 0000 C CNN +F 1 "dac_bridge_1" H 4275 1800 60 0000 C CNN +F 2 "" H 4300 1550 60 0000 C CNN +F 3 "" H 4300 1550 60 0000 C CNN + 1 4300 1550 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Hybrid:dac_bridge_1 U9 +U 1 1 00000000 +P 4300 2550 +F 0 "U9" H 4275 2950 60 0000 C CNN +F 1 "dac_bridge_1" H 4275 2800 60 0000 C CNN +F 2 "" H 4300 2550 60 0000 C CNN +F 3 "" H 4300 2550 60 0000 C CNN + 1 4300 2550 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/SNx4HC03/analysis b/library/SubcircuitLibrary/SNx4HC03/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SNx4HC03/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/SNx5452B/NPN.lib b/library/SubcircuitLibrary/SNx5452B/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/SNx5452B/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/SNx5452B/SNx5452B.cir b/library/SubcircuitLibrary/SNx5452B/SNx5452B.cir new file mode 100644 index 000000000..8f56e8a6f --- /dev/null +++ b/library/SubcircuitLibrary/SNx5452B/SNx5452B.cir @@ -0,0 +1,8 @@ +.title KiCad schematic +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_Q2-Pad1_ Net-_Q1-Pad3_ Net-_Q1-Pad1_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT +U4 Net-_U3-Pad3_ Net-_U2-Pad3_ Net-_Q2-Pad2_ Net-_Q1-Pad2_ dac_bridge_2 +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_NPN +U2 Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U2-Pad3_ d_and +U3 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U3-Pad3_ d_and +Q2 Net-_Q2-Pad1_ Net-_Q2-Pad2_ Net-_Q1-Pad3_ eSim_NPN +.end diff --git a/library/SubcircuitLibrary/SNx5452B/SNx5452B.cir.out b/library/SubcircuitLibrary/SNx5452B/SNx5452B.cir.out new file mode 100644 index 000000000..65dd191be --- /dev/null +++ b/library/SubcircuitLibrary/SNx5452B/SNx5452B.cir.out @@ -0,0 +1,27 @@ +.title kicad schematic + +.include NPN.lib +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_q2-pad1_ net-_q1-pad3_ net-_q1-pad1_ net-_u1-pad6_ net-_u1-pad7_ port +* u4 net-_u3-pad3_ net-_u2-pad3_ net-_q2-pad2_ net-_q1-pad2_ dac_bridge_2 +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +* u2 net-_u1-pad6_ net-_u1-pad7_ net-_u2-pad3_ d_and +* u3 net-_u1-pad1_ net-_u1-pad2_ net-_u3-pad3_ d_and +q2 net-_q2-pad1_ net-_q2-pad2_ net-_q1-pad3_ Q2N2222 +a1 [net-_u3-pad3_ net-_u2-pad3_ ] [net-_q2-pad2_ net-_q1-pad2_ ] u4 +a2 [net-_u1-pad6_ net-_u1-pad7_ ] net-_u2-pad3_ u2 +a3 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u3-pad3_ u3 +* Schematic Name: dac_bridge_2, Ngspice Name: dac_bridge +.model u4 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/SNx5452B/SNx5452B.kicad_sch b/library/SubcircuitLibrary/SNx5452B/SNx5452B.kicad_sch new file mode 100644 index 000000000..8046b2af8 --- /dev/null +++ b/library/SubcircuitLibrary/SNx5452B/SNx5452B.kicad_sch @@ -0,0 +1,900 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 1f541765-0888-42c4-95a3-cafc64731d3b) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Devices:eSim_NPN" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_NPN" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_NPN_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_NPN_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_2" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_2" (id 1) (at 1.27 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_2_0_1" + (rectangle (start -6.35 5.08) (end 8.89 -2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_2_1_1" + (pin input line (at -11.43 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 -1.27 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 -1.27 180) (length 5.08) + (name "OUT4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 195.58 118.11) (diameter 0) (color 0 0 0 0) + (uuid 534e9156-7576-42bf-90fe-1effbe27ecca) + ) + + (wire (pts (xy 180.34 118.11) (xy 180.34 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0112dedb-83ec-4e43-a50e-171c7c394309) + ) + (wire (pts (xy 185.42 97.79) (xy 172.72 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0475ea5f-29fe-4a65-9257-e4234440f3cd) + ) + (wire (pts (xy 133.35 101.6) (xy 133.35 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0cb8a177-16d7-451e-a1b8-e982dd19e028) + ) + (wire (pts (xy 160.02 88.9) (xy 160.02 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16933c9c-33ef-4b28-bc54-f9b882ec5070) + ) + (wire (pts (xy 185.42 78.74) (xy 187.96 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a40a1ed-d6d8-445a-99d0-64ef9e67b775) + ) + (wire (pts (xy 162.56 88.9) (xy 160.02 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ca46bc7-5ef1-4a3b-b81f-f5a2c95feece) + ) + (wire (pts (xy 195.58 71.12) (xy 205.74 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2cd534d5-c38b-47b5-bab0-a24c0d7c2d03) + ) + (wire (pts (xy 185.42 92.71) (xy 185.42 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2eaa9c5c-1853-4526-bb16-8254cfa549ed) + ) + (wire (pts (xy 133.35 104.14) (xy 138.43 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36774bf8-eaf7-4213-b6b6-00f13ed75ee4) + ) + (wire (pts (xy 180.34 100.33) (xy 214.63 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e04d7be-e996-45a7-9d01-4986527a2610) + ) + (wire (pts (xy 185.42 95.25) (xy 185.42 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 599e16be-b500-42ef-bf34-31cfd20e14f9) + ) + (wire (pts (xy 139.7 82.55) (xy 135.89 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7080b879-36a5-47af-bca8-f09a5a0b2d3f) + ) + (wire (pts (xy 135.89 82.55) (xy 135.89 80.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71c7801f-d789-4e4e-b2b7-0ee96188e4d2) + ) + (wire (pts (xy 139.7 85.09) (xy 135.89 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7acd68ef-bdb5-48c0-88bf-5fe1b81494a6) + ) + (wire (pts (xy 195.58 73.66) (xy 195.58 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9511d285-5ff4-45ff-8913-ed6e0f59e7e8) + ) + (wire (pts (xy 172.72 97.79) (xy 172.72 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1051a1b-def6-447a-bda6-9d3f8a8193b5) + ) + (wire (pts (xy 195.58 83.82) (xy 195.58 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b2ccd566-cbd1-45f7-a493-3bbfe0fc3262) + ) + (wire (pts (xy 133.35 109.22) (xy 133.35 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b682fc20-45dd-4ccd-b239-929046be95a0) + ) + (wire (pts (xy 161.29 105.41) (xy 161.29 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bac6a00b-dc4e-4352-9cb9-119b3ce655b7) + ) + (wire (pts (xy 135.89 85.09) (xy 135.89 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0d3b6db-604c-4987-a2f1-6172c8eee302) + ) + (wire (pts (xy 160.02 99.06) (xy 160.02 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c12144df-5292-4bb6-af33-d2df0a801381) + ) + (wire (pts (xy 162.56 83.82) (xy 162.56 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c33f7d9f-113b-4195-804c-76e6019038e6) + ) + (wire (pts (xy 161.29 99.06) (xy 160.02 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d92f2aea-36b5-4777-ad4a-b3ace57834f3) + ) + (wire (pts (xy 195.58 118.11) (xy 180.34 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da2ca640-c414-4977-8277-ab3d3d3a6108) + ) + (wire (pts (xy 133.35 106.68) (xy 138.43 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3c28836-7482-484a-8a87-60d1d420cb2a) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_2") (at 171.45 93.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1339569f-7e53-45b5-9d7a-6908f318d0d8) + (property "Reference" "U4" (id 0) (at 172.72 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_2" (id 1) (at 172.72 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 171.45 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 171.45 93.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f77df596-b252-48a1-9fd9-76427a5e17cd)) + (pin "2" (uuid 5186b93e-477a-410a-9405-7e187c34e19b)) + (pin "3" (uuid 80cd1aa8-57b3-4c80-b9fd-c939bc105e27)) + (pin "4" (uuid bf6e91c8-2545-413e-a407-2eefd7d5fc40)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 149.86 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2f102ebd-d7d1-419a-bba8-79cbf34a7676) + (property "Reference" "U2" (id 0) (at 149.86 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 149.86 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 149.86 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0906ece2-126b-472f-acb7-2b53181fa84f)) + (pin "2" (uuid 2e09bbaa-7f87-47f6-a69b-3f5c7ddd0959)) + (pin "3" (uuid ecae1d78-aa20-4a0d-9dbc-f2d2b8883a1b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 212.09 71.12 180) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a0f46f3-f6ea-4da5-b913-93e6ec64d8ae) + (property "Reference" "U1" (id 0) (at 215.9 70.485 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 215.9 73.025 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 212.09 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 212.09 71.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fbff998e-3580-41e3-b927-eaf8086920ca)) + (pin "2" (uuid 22d34ffb-0a64-4341-b60d-5c9b48044e96)) + (pin "3" (uuid 6e3f1228-dce3-4fd8-b7b7-c6b325d349ab)) + (pin "4" (uuid cbdea49c-5775-4995-b639-3dc725546b6c)) + (pin "5" (uuid fd081a7c-a7d6-417a-b5d6-cc11b0b30b90)) + (pin "6" (uuid 00853ab6-9c33-4da8-96d5-09f468fd4f0b)) + (pin "7" (uuid 4aca78c0-5806-49f9-b1db-e1e37e13faaf)) + (pin "8" (uuid 97e221fe-c39f-46ee-a0e5-2a3c7f20ce65)) + (pin "9" (uuid a0bc596d-ea82-4cfe-ac5d-5241c226eaea)) + (pin "10" (uuid 80a6f5a1-72a0-4652-bbf3-5115dad36efd)) + (pin "11" (uuid 9ebad4e2-81bc-494f-9ece-52d9630fe0dd)) + (pin "12" (uuid 294efbbe-d0d6-4c5f-96a1-3f2d0f61da4e)) + (pin "13" (uuid 00dbe5dd-cac6-46e3-9b72-129a2931ceb9)) + (pin "14" (uuid 0712612e-9a52-4a55-b36f-d39ae40fb1c8)) + (pin "15" (uuid e929e6e1-f324-4046-bcf1-df19b722e576)) + (pin "16" (uuid d1baa7a7-3f85-4beb-ac79-e76d8f325f8b)) + (pin "17" (uuid 8327483d-d73f-435f-9d30-b2521ed41b84)) + (pin "18" (uuid cdb25815-6025-49d7-ad08-7cf6cbaf2c92)) + (pin "19" (uuid f146257f-4ab3-4e52-a302-65e3d4d99c94)) + (pin "20" (uuid d6aef979-8e5b-4a6b-aa50-d26a98923f13)) + (pin "21" (uuid 36f1b35f-7f17-40d4-815b-6a77315d2b12)) + (pin "22" (uuid 6ca5201f-5130-4cfa-9719-1427057e86f1)) + (pin "23" (uuid 609cfd82-b4a2-4497-aab5-29da17d33b81)) + (pin "24" (uuid f9c470dd-72c2-4433-9166-3b679b547e98)) + (pin "25" (uuid 230ba170-7f6e-4b69-b850-5782eac1adb0)) + (pin "26" (uuid deea3a0b-c1ab-48fe-90cf-c251ae47744c)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 193.04 78.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 743dcc17-9c39-4cab-95df-0d7eaa2bdef4) + (property "Reference" "Q2" (id 0) (at 198.12 77.4699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 198.12 80.0099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 198.12 76.2 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 193.04 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e387bdd8-ae43-4f83-b546-95229a8017b8)) + (pin "2" (uuid bbf70b76-ea59-4165-8fee-f0a5d6bf83f4)) + (pin "3" (uuid 55057c20-fb71-4b98-bd45-7c7d1dc83603)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 151.13 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7e873025-c270-4d62-a649-d0386ef5a3b3) + (property "Reference" "U3" (id 0) (at 151.13 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 151.13 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 151.13 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 151.13 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b4f6cac5-d016-4d6b-a8c2-68733b46cbe2)) + (pin "2" (uuid 2a5474a9-4154-487b-8054-13dcd3feed27)) + (pin "3" (uuid b21ffe6a-278f-4dd6-aee3-3ab2dee716de)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 129.54 80.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9630a04b-e88f-4e1c-a3cb-e0d822484be5) + (property "Reference" "U1" (id 0) (at 130.175 74.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 130.175 77.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 129.54 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 129.54 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc7eced4-c175-446e-9ae8-46f6142e0875)) + (pin "2" (uuid dc4b8a5e-d765-4754-968f-e9f5e96521f7)) + (pin "3" (uuid 889c17d6-196c-44c0-bb2f-c2896f8019d0)) + (pin "4" (uuid 6a34bd7d-73cd-473a-a7fe-895b92caf667)) + (pin "5" (uuid 8aa6479f-a443-47e7-924a-fc0d01bea777)) + (pin "6" (uuid bc77e44a-b81f-4525-b8aa-e34eaae7eb19)) + (pin "7" (uuid b00e1000-3dd2-45a5-8425-501d60a30452)) + (pin "8" (uuid 94ba8a24-35c9-4cca-b9b0-765c4121b07e)) + (pin "9" (uuid e2165d75-fc1f-4c41-9c7b-f2f855dc793c)) + (pin "10" (uuid c74baece-5659-41ab-bf46-8c8fbb91af9b)) + (pin "11" (uuid 0cd95e8b-60dc-4110-848e-0d04927d8367)) + (pin "12" (uuid 45a02fb5-f4d7-4816-af07-b92fce2c185f)) + (pin "13" (uuid 9d4d61d2-f4d7-4741-a987-aa9458680279)) + (pin "14" (uuid 99ea78fa-898e-42c8-91ab-56cf462b2e0a)) + (pin "15" (uuid 1a887669-22c0-4dfa-b632-16217f70e6b1)) + (pin "16" (uuid 9930e3a5-3734-465e-a94c-1f4b3688f648)) + (pin "17" (uuid c6b12616-11e5-49df-84ca-243f3f1390db)) + (pin "18" (uuid eb7bcd85-f8cd-4a96-bb41-4e6f6c994eca)) + (pin "19" (uuid 11b95783-534f-47c3-b4c2-16b5c10f68d3)) + (pin "20" (uuid e9b3085f-d544-46e2-8b16-55544def86aa)) + (pin "21" (uuid 21db873a-5359-47b8-8022-5c9f268bca34)) + (pin "22" (uuid e83a141b-25c6-4a51-a0bd-981ed52b0c95)) + (pin "23" (uuid 8ce5b599-fda2-43ff-89f3-18387bbbe9c8)) + (pin "24" (uuid 3bb0cabb-ae97-4570-b94c-a05cec1ace6a)) + (pin "25" (uuid 804615cf-604e-4b9b-b359-b5293a4baba1)) + (pin "26" (uuid c1e10da0-d2e1-47d5-ad2c-fb92dd330800)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 127 109.22 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9869aff9-bc64-4670-b282-019c7141c58d) + (property "Reference" "U1" (id 0) (at 127.635 104.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 127.635 106.68 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 127 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 127 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 52ea3a6e-f056-4d32-b11d-1f98f2d4e0f4)) + (pin "2" (uuid 59d7cd2a-a4a4-4d16-a15a-4358a5034036)) + (pin "3" (uuid ed2e4657-cad8-4229-9c1e-efd80f4b42d0)) + (pin "4" (uuid 213b88f7-e2ce-46e7-832f-cef8bb281da3)) + (pin "5" (uuid ed00e2b5-0c23-4726-8398-10afc4866c14)) + (pin "6" (uuid d0933841-3183-4dc5-82d5-aad83bf8186f)) + (pin "7" (uuid dcb4b103-df0a-4755-a3bb-44b0dbf528dc)) + (pin "8" (uuid 34e2cfac-0728-4f39-bb40-780846d301c8)) + (pin "9" (uuid cdc122d0-53a4-4146-8dca-d4be3797441b)) + (pin "10" (uuid d0c25fe8-b7d3-43ca-9bb2-5b31ad8a0637)) + (pin "11" (uuid 24122fce-47f6-4f15-a9cc-0a7497d1ebac)) + (pin "12" (uuid 3371e48d-6f72-40ba-b156-aa8307f469e7)) + (pin "13" (uuid 6e0041b3-a95a-49e9-96f0-805e16eedd1b)) + (pin "14" (uuid 03eb2b9b-bbdf-4277-bd66-edd0473c09e9)) + (pin "15" (uuid 548c2d27-d188-4dfb-9e0e-f0824e9d2a95)) + (pin "16" (uuid 92bbf31b-4349-45be-bda2-293e9bb44ece)) + (pin "17" (uuid 610f4601-6045-41d3-8650-7c928dd7a03e)) + (pin "18" (uuid e4fc1cf9-329b-49c4-982d-1188d99eaa8e)) + (pin "19" (uuid f73452cb-6e30-418a-a936-4530c3a6a6d9)) + (pin "20" (uuid 13d96ac1-5263-4f65-9e0a-56fca79e86ab)) + (pin "21" (uuid 435af0f9-52e8-4518-a3e6-cad5ed5e5ba2)) + (pin "22" (uuid 986f00e5-dc8c-4c5a-930e-6df0b4a2eaa1)) + (pin "23" (uuid 6a2f9907-fa3e-47e0-9a77-a31923ff62e4)) + (pin "24" (uuid e50ed2c5-cb35-49fb-9ccf-3c70d9977c19)) + (pin "25" (uuid 223bc1ea-667f-43bd-b6d7-6f0de261ffa5)) + (pin "26" (uuid 47c27d3b-e0d6-4189-9ed4-fe9b243c59b6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 127 101.6 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9f58d8ea-1fc9-4360-9543-9fd20b15a14b) + (property "Reference" "U1" (id 0) (at 127.635 96.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 127.635 99.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 127 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 127 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aad56f7b-71da-4f8a-b56b-f81db61ded9f)) + (pin "2" (uuid 896fa1cc-f568-47d4-92d4-d9bad9135258)) + (pin "3" (uuid 01ac18d7-722c-49bc-b81d-bbda9afc7183)) + (pin "4" (uuid edb02457-db23-4d20-82e8-1af4af4e1ec5)) + (pin "5" (uuid ef01c503-5beb-45cb-9774-8e2761390bf5)) + (pin "6" (uuid 90c54a09-27fb-44ad-a937-eeb47e5e3df8)) + (pin "7" (uuid 8efbe0c1-fc40-41a3-8b36-d2241695f20c)) + (pin "8" (uuid 521949c6-3980-4daf-838d-50987973234f)) + (pin "9" (uuid 93b8eb7c-b6a7-4f62-a07e-c13c69c2bb5e)) + (pin "10" (uuid c2ea28e3-861c-43f7-86e8-70828d80a6b6)) + (pin "11" (uuid a5d64a9a-1d33-4712-80c9-aea607623ad8)) + (pin "12" (uuid fb926fce-d00e-42c1-aa10-fd675f5516cc)) + (pin "13" (uuid 02f17775-ebfb-443e-a046-3df5c3106992)) + (pin "14" (uuid e9f0c3ed-f3e6-425b-a2e4-223d41eea141)) + (pin "15" (uuid 6926008c-d3ab-4aca-82f7-61aa47739c31)) + (pin "16" (uuid 21f69d2e-008a-4789-925c-420a9f124157)) + (pin "17" (uuid 0d97f150-500a-42d6-90e7-888f862444bd)) + (pin "18" (uuid 3921723d-6d11-4bba-95a3-c20a933ba6c1)) + (pin "19" (uuid 896b04fc-d5a0-4ca8-9b80-8552f32d2426)) + (pin "20" (uuid e6516887-905b-4b7b-b199-b0a300232115)) + (pin "21" (uuid 43a6fa4c-8b1e-4801-83fb-a4908750c328)) + (pin "22" (uuid 58a134a2-ee92-48a3-909d-789d994f1aa3)) + (pin "23" (uuid 15eee20d-b362-41db-bdea-b024a2384e3f)) + (pin "24" (uuid 1ca6dbc2-655f-4672-98eb-2ab9489adf62)) + (pin "25" (uuid fd7e3746-ffd6-4bf5-8656-9667f4990eae)) + (pin "26" (uuid 7dea5295-73b5-47cf-b1f0-cc34935eebf7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 220.98 100.33 180) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a37e2a64-dd3c-4e44-97a5-8dfb35f1979d) + (property "Reference" "U1" (id 0) (at 224.79 99.695 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 224.79 102.235 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 220.98 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 220.98 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c64306a4-3229-44a6-881e-a8d8dd126155)) + (pin "2" (uuid ae437b1c-8486-44dd-b29a-bc72b7520a61)) + (pin "3" (uuid 7625673c-fc32-465e-87c7-c00a8aaadfa9)) + (pin "4" (uuid 13df5203-2fa4-47a4-9669-9bb062213e9b)) + (pin "5" (uuid 989593bb-2965-4b49-a766-f661c9604d4a)) + (pin "6" (uuid 335e4685-5e44-4031-8f67-1f6ea952998f)) + (pin "7" (uuid 12c59237-cd99-4fad-bdee-4353997b9260)) + (pin "8" (uuid f60153d2-dfdf-4465-9975-c57b890053cd)) + (pin "9" (uuid e3dce07f-fb3f-40e8-be31-33fdeb1c489b)) + (pin "10" (uuid 65d26e0c-9f15-41c0-9c4e-2f702e154c2b)) + (pin "11" (uuid ace2ab30-2485-4cec-b73c-37c65feb2208)) + (pin "12" (uuid 1af57c38-1c4e-4d9a-ac74-4a4125ebbdb4)) + (pin "13" (uuid 1f26fa5e-9f8a-426b-b6d8-b6528b80b6b3)) + (pin "14" (uuid 2a9eccdf-4bc1-4d7a-9560-c2486eda524e)) + (pin "15" (uuid 8e2e9058-a69b-4936-beee-cd4569cb1352)) + (pin "16" (uuid c017a4ce-95b0-4334-adac-7b9a8ff0f18d)) + (pin "17" (uuid 76906736-4adc-4b8e-af2a-24c8c60963b6)) + (pin "18" (uuid f1020bb5-7ae5-4f51-9273-04822c884b1b)) + (pin "19" (uuid 88c3bf84-94b7-4fbe-ad06-d2d8da0ff4d7)) + (pin "20" (uuid 9a703793-9eb2-479f-b365-5548bfe98ff8)) + (pin "21" (uuid a8ecddeb-c006-42a9-8510-3dc555518ec5)) + (pin "22" (uuid 464ba750-f5b3-4815-a70e-f8ccb4de40c5)) + (pin "23" (uuid a515bea2-b96c-4540-b265-d290e7a484a9)) + (pin "24" (uuid d81bf718-346f-4006-ac82-68f9c8b715a4)) + (pin "25" (uuid 2fad08e4-184f-48ab-b7bd-0bd2bdead75d)) + (pin "26" (uuid d9f596f3-7ca7-43d3-9b6c-9d4fd773bdd3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 201.93 118.11 180) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a4894188-8a94-404a-99db-d73a421e0982) + (property "Reference" "U1" (id 0) (at 205.74 117.475 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 205.74 120.015 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 201.93 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 201.93 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e7483d1-af9c-4058-9ca6-86c425ee882c)) + (pin "2" (uuid da696e3c-6cce-42e8-adea-21e6190a4a7c)) + (pin "3" (uuid 7ff549be-1cf7-4b97-9771-7d32650c9d30)) + (pin "4" (uuid 2fb46227-476d-4bcb-8968-f15cf05a1283)) + (pin "5" (uuid ab5b771f-7fcb-4086-b918-61dfbe5534b1)) + (pin "6" (uuid d03bfb9f-64b5-4e3c-8e17-1f9fea9638e5)) + (pin "7" (uuid a0941b86-5f97-4307-80d6-5c7cea7dca39)) + (pin "8" (uuid 20385520-22ab-4907-9b76-91d36ebcf200)) + (pin "9" (uuid bd051f28-12d9-4cfb-81ca-c1690f201379)) + (pin "10" (uuid 8715b30a-f6ee-4a48-ba7a-2ecb3686c3ac)) + (pin "11" (uuid f738d7f6-8e34-466a-9841-aa64f17505a2)) + (pin "12" (uuid 05f17043-ebec-48c5-9ed2-23c758e610be)) + (pin "13" (uuid 2a5be08a-e9a8-436f-ac9b-6cc6569e0d39)) + (pin "14" (uuid 8ddb117d-5c63-4940-98dd-1ea417422933)) + (pin "15" (uuid 14d78b2b-de1c-4540-9017-7ce1d935ca1f)) + (pin "16" (uuid 98b55834-1488-421b-95fb-251c85de9e13)) + (pin "17" (uuid 51da59c6-6263-4b2f-aa52-86b4c4913952)) + (pin "18" (uuid 5ae0fef4-326d-43c2-aaea-f1413029b9e8)) + (pin "19" (uuid 221179d5-61bf-41d5-96ba-55e7bb6fb47f)) + (pin "20" (uuid 014a32a0-c7b4-4eb7-b8e3-6acbfe53057c)) + (pin "21" (uuid 42727c39-7ff1-4ba1-a478-f97a5532a375)) + (pin "22" (uuid 02c16327-193d-4ebe-8600-7e4a8c34a074)) + (pin "23" (uuid 920eeced-dfa5-481d-8ecf-18a64f9aca4c)) + (pin "24" (uuid c67b8ed4-4d2d-4e2a-9d97-419d8f01eae4)) + (pin "25" (uuid 7d9e5e10-d61b-4587-9fea-032b83c5994c)) + (pin "26" (uuid de9b4023-4681-470b-8b1b-4ab850b735e7)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 177.8 105.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb16b6ee-d2ca-4552-99ca-3f3d1ecd8b1e) + (property "Reference" "Q1" (id 0) (at 182.88 104.1399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 182.88 106.6799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 182.88 102.87 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 177.8 105.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ae519254-fc08-48d9-aa9b-bdad709a0e90)) + (pin "2" (uuid 1984adc4-d9b9-470b-bf59-b02825ca715d)) + (pin "3" (uuid 14f66fe7-6a9d-4140-ae2b-2b30e4b61364)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 129.54 88.9 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d21ae325-4d25-4746-90d5-958320116175) + (property "Reference" "U1" (id 0) (at 130.175 83.82 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 130.175 86.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 129.54 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 129.54 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c6d2e15f-1a0e-4051-89f5-28800e9d7c8d)) + (pin "2" (uuid 94e98a8b-c8bd-438f-889a-d78cf828f0ae)) + (pin "3" (uuid 1382edec-ed4a-4016-9c71-928eed830f6c)) + (pin "4" (uuid 388b3a9b-f4ce-4494-97cd-a7ce90ddd416)) + (pin "5" (uuid 0491f3d3-7371-483c-a677-169f47d56abc)) + (pin "6" (uuid d5f4ad88-4fe6-4638-80bb-e72154a7d1d4)) + (pin "7" (uuid 48ca0600-79dc-464d-8557-f3bf2b9d591a)) + (pin "8" (uuid 1688a5ed-5af3-45a2-93da-254af7e8b7a6)) + (pin "9" (uuid cbe2016e-4f8f-49f2-9a77-635e23a554fd)) + (pin "10" (uuid 4b4e6402-34a4-4f26-8815-2ff72c943656)) + (pin "11" (uuid 988617bd-e8cd-441a-9113-cccd842117ca)) + (pin "12" (uuid b222a7e6-6335-4736-8a81-f5cbb36449ea)) + (pin "13" (uuid 1b3fccf6-884f-4c24-87d7-f67ae80fdb46)) + (pin "14" (uuid 3d4b8efc-1d2a-404e-874b-68c2803db0d7)) + (pin "15" (uuid 6b71263c-8031-4113-b744-4c1af844378c)) + (pin "16" (uuid ea9b679f-12d8-4a2d-9b6e-a62a15fafc5e)) + (pin "17" (uuid 492b0d63-5cfb-4f2b-a17e-ed122ce8ef96)) + (pin "18" (uuid 95601016-38cb-44e6-bb24-554b97618d49)) + (pin "19" (uuid dfa3e781-e861-4227-a54b-b01e0359e6bc)) + (pin "20" (uuid 91b13486-ef4b-4755-a515-63ecf96fe970)) + (pin "21" (uuid 76d83c59-d058-42e1-bcfc-114921507646)) + (pin "22" (uuid 5f85b1e3-1dbb-48b9-a73b-91993c1a60af)) + (pin "23" (uuid 8cfee941-a169-417f-bb03-64940e05711c)) + (pin "24" (uuid ec64cc7e-d955-415d-820e-b11ef10ebc3a)) + (pin "25" (uuid ac695d22-3b29-4f73-8a39-c35791119507)) + (pin "26" (uuid e923ba75-980b-40af-90aa-1ee4612aceb8)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/bb16b6ee-d2ca-4552-99ca-3f3d1ecd8b1e" + (reference "Q1") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/743dcc17-9c39-4cab-95df-0d7eaa2bdef4" + (reference "Q2") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/9630a04b-e88f-4e1c-a3cb-e0d822484be5" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/d21ae325-4d25-4746-90d5-958320116175" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/6a0f46f3-f6ea-4da5-b913-93e6ec64d8ae" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/a4894188-8a94-404a-99db-d73a421e0982" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/a37e2a64-dd3c-4e44-97a5-8dfb35f1979d" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/9f58d8ea-1fc9-4360-9543-9fd20b15a14b" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/9869aff9-bc64-4670-b282-019c7141c58d" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/2f102ebd-d7d1-419a-bba8-79cbf34a7676" + (reference "U2") (unit 1) (value "d_and") (footprint "") + ) + (path "/7e873025-c270-4d62-a649-d0386ef5a3b3" + (reference "U3") (unit 1) (value "d_and") (footprint "") + ) + (path "/1339569f-7e53-45b5-9d7a-6908f318d0d8" + (reference "U4") (unit 1) (value "dac_bridge_2") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/SNx5452B/SNx5452B.sub b/library/SubcircuitLibrary/SNx5452B/SNx5452B.sub new file mode 100644 index 000000000..64a848f55 --- /dev/null +++ b/library/SubcircuitLibrary/SNx5452B/SNx5452B.sub @@ -0,0 +1,21 @@ +* Subcircuit SNx5452B +.subckt SNx5452B net-_u1-pad1_ net-_u1-pad2_ net-_q2-pad1_ net-_q1-pad3_ net-_q1-pad1_ net-_u1-pad6_ net-_u1-pad7_ +.title kicad schematic +.include NPN.lib +* u4 net-_u3-pad3_ net-_u2-pad3_ net-_q2-pad2_ net-_q1-pad2_ dac_bridge_2 +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +* u2 net-_u1-pad6_ net-_u1-pad7_ net-_u2-pad3_ d_and +* u3 net-_u1-pad1_ net-_u1-pad2_ net-_u3-pad3_ d_and +q2 net-_q2-pad1_ net-_q2-pad2_ net-_q1-pad3_ Q2N2222 +a1 [net-_u3-pad3_ net-_u2-pad3_ ] [net-_q2-pad2_ net-_q1-pad2_ ] u4 +a2 [net-_u1-pad6_ net-_u1-pad7_ ] net-_u2-pad3_ u2 +a3 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u3-pad3_ u3 +* Schematic Name: dac_bridge_2, Ngspice Name: dac_bridge +.model u4 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u3 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends SNx5452B \ No newline at end of file diff --git a/library/SubcircuitLibrary/SNx5452B/SNx5452B_Previous_Values.xml b/library/SubcircuitLibrary/SNx5452B/SNx5452B_Previous_Values.xml new file mode 100644 index 000000000..c245c487c --- /dev/null +++ b/library/SubcircuitLibrary/SNx5452B/SNx5452B_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecdac_bridged_andd_andC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.lib \ No newline at end of file diff --git a/library/SubcircuitLibrary/SNx5452B/analysis b/library/SubcircuitLibrary/SNx5452B/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/SNx5452B/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TA7642/NPN.lib b/library/SubcircuitLibrary/TA7642/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/TA7642/TA7642-cache.lib b/library/SubcircuitLibrary/TA7642/TA7642-cache.lib new file mode 100644 index 000000000..d94d000cf --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642-cache.lib @@ -0,0 +1,102 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_C +# +DEF eSim_C C 0 10 N Y 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_C" 25 -100 50 H V L CNN +F2 "" 38 -150 30 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS capacitor +$FPLIST + C_* +$ENDFPLIST +DRAW +P 2 0 1 20 -80 -30 80 -30 N +P 2 0 1 20 -80 30 80 30 N +X ~ 1 0 150 110 D 40 40 1 1 P +X ~ 2 0 -150 110 U 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_NPN +# +DEF eSim_NPN Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_NPN" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS BC547 Q2N2222 +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TA7642/TA7642.cir b/library/SubcircuitLibrary/TA7642/TA7642.cir new file mode 100644 index 000000000..9cec887be --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642.cir @@ -0,0 +1,40 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\TA7642\TA7642.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/03/25 11:57:32 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_C1-Pad2_ eSim_NPN +Q2 Net-_C1-Pad2_ Net-_Q2-Pad2_ Net-_Q10-Pad3_ eSim_NPN +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 12p +R2 Net-_C1-Pad1_ Net-_Q4-Pad2_ 3.3k +R3 Net-_Q1-Pad1_ Net-_Q3-Pad1_ 12k +R4 Net-_Q3-Pad1_ Net-_Q4-Pad2_ 12k +Q3 Net-_Q3-Pad1_ Net-_Q2-Pad2_ Net-_Q10-Pad3_ eSim_NPN +R1 Net-_Q3-Pad1_ Net-_Q2-Pad2_ 5.6k +R5 Net-_Q1-Pad1_ Net-_C2-Pad2_ 12k +Q4 Net-_C2-Pad2_ Net-_Q4-Pad2_ Net-_Q10-Pad3_ eSim_NPN +C2 Net-_C2-Pad1_ Net-_C2-Pad2_ 12p +R6 Net-_Q1-Pad1_ Net-_C3-Pad2_ 12k +Q5 Net-_C3-Pad2_ Net-_C2-Pad1_ Net-_Q10-Pad3_ eSim_NPN +R9 Net-_Q1-Pad1_ Net-_Q6-Pad1_ 12k +R7 Net-_C2-Pad1_ Net-_Q6-Pad1_ 12k +Q6 Net-_Q6-Pad1_ Net-_Q6-Pad2_ Net-_Q10-Pad3_ eSim_NPN +R8 Net-_Q6-Pad1_ Net-_Q6-Pad2_ 12k +R10 Net-_Q6-Pad1_ Net-_C3-Pad1_ 12k +C3 Net-_C3-Pad1_ Net-_C3-Pad2_ 12p +R11 Net-_Q1-Pad1_ Net-_C4-Pad2_ 12k +Q7 Net-_C4-Pad2_ Net-_C3-Pad1_ Net-_Q10-Pad3_ eSim_NPN +R13 Net-_Q1-Pad1_ Net-_Q8-Pad1_ 12k +Q8 Net-_Q8-Pad1_ Net-_Q8-Pad2_ Net-_Q10-Pad3_ eSim_NPN +R12 Net-_Q8-Pad1_ Net-_Q8-Pad2_ 12k +C4 Net-_C4-Pad1_ Net-_C4-Pad2_ 23p +R14 Net-_Q8-Pad1_ Net-_C4-Pad1_ 74k +R15 Net-_Q1-Pad1_ Net-_Q10-Pad2_ 12k +Q9 Net-_Q10-Pad2_ Net-_C4-Pad1_ Net-_Q10-Pad3_ eSim_NPN +Q10 Net-_Q1-Pad1_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_NPN +U1 Net-_Q10-Pad3_ Net-_Q1-Pad2_ Net-_Q1-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/TA7642/TA7642.cir.out b/library/SubcircuitLibrary/TA7642/TA7642.cir.out new file mode 100644 index 000000000..f595bee1c --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642.cir.out @@ -0,0 +1,42 @@ +* c:\fossee\esim\library\subcircuitlibrary\ta7642\ta7642.cir + +.include NPN.lib +q1 net-_q1-pad1_ net-_q1-pad2_ net-_c1-pad2_ Q2N2222 +q2 net-_c1-pad2_ net-_q2-pad2_ net-_q10-pad3_ Q2N2222 +c1 net-_c1-pad1_ net-_c1-pad2_ 12p +r2 net-_c1-pad1_ net-_q4-pad2_ 3.3k +r3 net-_q1-pad1_ net-_q3-pad1_ 12k +r4 net-_q3-pad1_ net-_q4-pad2_ 12k +q3 net-_q3-pad1_ net-_q2-pad2_ net-_q10-pad3_ Q2N2222 +r1 net-_q3-pad1_ net-_q2-pad2_ 5.6k +r5 net-_q1-pad1_ net-_c2-pad2_ 12k +q4 net-_c2-pad2_ net-_q4-pad2_ net-_q10-pad3_ Q2N2222 +c2 net-_c2-pad1_ net-_c2-pad2_ 12p +r6 net-_q1-pad1_ net-_c3-pad2_ 12k +q5 net-_c3-pad2_ net-_c2-pad1_ net-_q10-pad3_ Q2N2222 +r9 net-_q1-pad1_ net-_q6-pad1_ 12k +r7 net-_c2-pad1_ net-_q6-pad1_ 12k +q6 net-_q6-pad1_ net-_q6-pad2_ net-_q10-pad3_ Q2N2222 +r8 net-_q6-pad1_ net-_q6-pad2_ 12k +r10 net-_q6-pad1_ net-_c3-pad1_ 12k +c3 net-_c3-pad1_ net-_c3-pad2_ 12p +r11 net-_q1-pad1_ net-_c4-pad2_ 12k +q7 net-_c4-pad2_ net-_c3-pad1_ net-_q10-pad3_ Q2N2222 +r13 net-_q1-pad1_ net-_q8-pad1_ 12k +q8 net-_q8-pad1_ net-_q8-pad2_ net-_q10-pad3_ Q2N2222 +r12 net-_q8-pad1_ net-_q8-pad2_ 12k +c4 net-_c4-pad1_ net-_c4-pad2_ 23p +r14 net-_q8-pad1_ net-_c4-pad1_ 74k +r15 net-_q1-pad1_ net-_q10-pad2_ 12k +q9 net-_q10-pad2_ net-_c4-pad1_ net-_q10-pad3_ Q2N2222 +q10 net-_q1-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +* u1 net-_q10-pad3_ net-_q1-pad2_ net-_q1-pad1_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TA7642/TA7642.pro b/library/SubcircuitLibrary/TA7642/TA7642.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TA7642/TA7642.proj b/library/SubcircuitLibrary/TA7642/TA7642.proj new file mode 100644 index 000000000..ce13e5ae8 --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642.proj @@ -0,0 +1 @@ +schematicFile TA7642.sch diff --git a/library/SubcircuitLibrary/TA7642/TA7642.sch b/library/SubcircuitLibrary/TA7642/TA7642.sch new file mode 100644 index 000000000..5d1b25184 --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642.sch @@ -0,0 +1,553 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:TA7642-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_NPN Q? +U 1 1 683E8F68 +P 1950 4400 +F 0 "Q?" H 1850 4450 50 0000 R CNN +F 1 "eSim_NPN" H 1900 4550 50 0000 R CNN +F 2 "" H 2150 4500 29 0000 C CNN +F 3 "" H 1950 4400 60 0000 C CNN + 1 1950 4400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q? +U 1 1 683E8F97 +P 2150 5600 +F 0 "Q?" H 2050 5650 50 0000 R CNN +F 1 "eSim_NPN" H 2100 5750 50 0000 R CNN +F 2 "" H 2350 5700 29 0000 C CNN +F 3 "" H 2150 5600 60 0000 C CNN + 1 2150 5600 + -1 0 0 -1 +$EndComp +$Comp +L capacitor C? +U 1 1 683E8FD6 +P 2350 4800 +F 0 "C?" H 2375 4900 50 0000 L CNN +F 1 "12p" H 2375 4700 50 0000 L CNN +F 2 "" H 2388 4650 30 0000 C CNN +F 3 "" H 2350 4800 60 0000 C CNN + 1 2350 4800 + 0 1 1 0 +$EndComp +$Comp +L resistor R? +U 1 1 683E9008 +P 2800 4850 +F 0 "R?" H 2850 4980 50 0000 C CNN +F 1 "3.3k" H 2850 4800 50 0000 C CNN +F 2 "" H 2850 4830 30 0000 C CNN +F 3 "" V 2850 4900 30 0000 C CNN + 1 2800 4850 + 1 0 0 -1 +$EndComp +$Comp +L resistor R? +U 1 1 683E903F +P 2950 3750 +F 0 "R?" H 3000 3880 50 0000 C CNN +F 1 "12k" H 3000 3700 50 0000 C CNN +F 2 "" H 3000 3730 30 0000 C CNN +F 3 "" V 3000 3800 30 0000 C CNN + 1 2950 3750 + 0 1 1 0 +$EndComp +$Comp +L resistor R? +U 1 1 683E908F +P 2950 4250 +F 0 "R?" H 3000 4380 50 0000 C CNN +F 1 "12k" H 3000 4200 50 0000 C CNN +F 2 "" H 3000 4230 30 0000 C CNN +F 3 "" V 3000 4300 30 0000 C CNN + 1 2950 4250 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q? +U 1 1 683E92CD +P 2600 5600 +F 0 "Q?" H 2500 5650 50 0000 R CNN +F 1 "eSim_NPN" H 2550 5400 50 0000 R CNN +F 2 "" H 2800 5700 29 0000 C CNN +F 3 "" H 2600 5600 60 0000 C CNN + 1 2600 5600 + 1 0 0 -1 +$EndComp +$Comp +L resistor R? +U 1 1 683E946E +P 2350 5250 +F 0 "R?" H 2400 5380 50 0000 C CNN +F 1 "5.6k" H 2400 5200 50 0000 C CNN +F 2 "" H 2400 5230 30 0000 C CNN +F 3 "" V 2400 5300 30 0000 C CNN + 1 2350 5250 + 0 1 1 0 +$EndComp +$Comp +L resistor R? +U 1 1 683E9744 +P 3300 4150 +F 0 "R?" H 3350 4280 50 0000 C CNN +F 1 "12k" H 3350 4100 50 0000 C CNN +F 2 "" H 3350 4130 30 0000 C CNN +F 3 "" V 3350 4200 30 0000 C CNN + 1 3300 4150 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q? +U 1 1 683E979C +P 3250 4800 +F 0 "Q?" H 3150 4850 50 0000 R CNN +F 1 "eSim_NPN" H 3200 4950 50 0000 R CNN +F 2 "" H 3450 4900 29 0000 C CNN +F 3 "" H 3250 4800 60 0000 C CNN + 1 3250 4800 + 1 0 0 -1 +$EndComp +$Comp +L capacitor C? +U 1 1 683E9F5A +P 3750 4450 +F 0 "C?" H 3775 4550 50 0000 L CNN +F 1 "12p" H 3775 4350 50 0000 L CNN +F 2 "" H 3788 4300 30 0000 C CNN +F 3 "" H 3750 4450 60 0000 C CNN + 1 3750 4450 + 0 1 1 0 +$EndComp +$Comp +L resistor R? +U 1 1 683EA32D +P 4150 4050 +F 0 "R?" H 4200 4180 50 0000 C CNN +F 1 "12k" H 4200 4000 50 0000 C CNN +F 2 "" H 4200 4030 30 0000 C CNN +F 3 "" V 4200 4100 30 0000 C CNN + 1 4150 4050 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q? +U 1 1 683EA39C +P 4100 4850 +F 0 "Q?" H 4000 4900 50 0000 R CNN +F 1 "eSim_NPN" H 4050 5000 50 0000 R CNN +F 2 "" H 4300 4950 29 0000 C CNN +F 3 "" H 4100 4850 60 0000 C CNN + 1 4100 4850 + 1 0 0 -1 +$EndComp +$Comp +L resistor R? +U 1 1 683EA79E +P 4800 4050 +F 0 "R?" H 4850 4180 50 0000 C CNN +F 1 "12k" H 4850 4000 50 0000 C CNN +F 2 "" H 4850 4030 30 0000 C CNN +F 3 "" V 4850 4100 30 0000 C CNN + 1 4800 4050 + 0 1 1 0 +$EndComp +$Comp +L resistor R? +U 1 1 683EA821 +P 4450 4500 +F 0 "R?" H 4500 4630 50 0000 C CNN +F 1 "12k" H 4500 4450 50 0000 C CNN +F 2 "" H 4500 4480 30 0000 C CNN +F 3 "" V 4500 4550 30 0000 C CNN + 1 4450 4500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q? +U 1 1 683EAA10 +P 4750 5050 +F 0 "Q?" H 4650 5100 50 0000 R CNN +F 1 "eSim_NPN" H 4700 5200 50 0000 R CNN +F 2 "" H 4950 5150 29 0000 C CNN +F 3 "" H 4750 5050 60 0000 C CNN + 1 4750 5050 + 1 0 0 -1 +$EndComp +$Comp +L resistor R? +U 1 1 683EABAB +P 4500 4700 +F 0 "R?" H 4550 4830 50 0000 C CNN +F 1 "12k" H 4550 4650 50 0000 C CNN +F 2 "" H 4550 4680 30 0000 C CNN +F 3 "" V 4550 4750 30 0000 C CNN + 1 4500 4700 + 0 1 1 0 +$EndComp +$Comp +L resistor R? +U 1 1 683EAEC8 +P 5100 4500 +F 0 "R?" H 5150 4630 50 0000 C CNN +F 1 "12k" H 5150 4450 50 0000 C CNN +F 2 "" H 5150 4480 30 0000 C CNN +F 3 "" V 5150 4550 30 0000 C CNN + 1 5100 4500 + 1 0 0 -1 +$EndComp +$Comp +L capacitor C? +U 1 1 683EAF58 +P 5200 4250 +F 0 "C?" H 5225 4350 50 0000 L CNN +F 1 "12p" H 5225 4150 50 0000 L CNN +F 2 "" H 5238 4100 30 0000 C CNN +F 3 "" H 5200 4250 60 0000 C CNN + 1 5200 4250 + 0 1 1 0 +$EndComp +Wire Wire Line + 2050 4600 2050 5400 +Wire Wire Line + 2200 4800 2050 4800 +Connection ~ 2050 4800 +Wire Wire Line + 2350 5600 2400 5600 +Wire Wire Line + 2500 4800 2700 4800 +Wire Wire Line + 3000 3950 3000 4150 +Wire Wire Line + 2050 4200 2050 3500 +Wire Wire Line + 2050 3500 7300 3500 +Wire Wire Line + 3000 3500 3000 3650 +Wire Wire Line + 2700 4050 2700 5400 +Wire Wire Line + 2700 4050 3000 4050 +Connection ~ 3000 4050 +Wire Wire Line + 2400 5600 2400 5450 +Wire Wire Line + 2400 5150 2400 5100 +Wire Wire Line + 2400 5100 2700 5100 +Connection ~ 2700 5100 +Wire Wire Line + 3000 4800 3050 4800 +Wire Wire Line + 3350 3500 3350 4050 +Connection ~ 3000 3500 +Wire Wire Line + 3350 4350 3350 4600 +Wire Wire Line + 2050 5800 7300 5800 +Wire Wire Line + 3350 5800 3350 5000 +Connection ~ 2700 5800 +Wire Wire Line + 3000 4450 3000 4800 +Wire Wire Line + 3600 4450 3350 4450 +Connection ~ 3350 4450 +Wire Wire Line + 4200 3500 4200 3950 +Connection ~ 3350 3500 +Wire Wire Line + 4200 4250 4200 4650 +Wire Wire Line + 3900 4850 3900 4450 +Wire Wire Line + 4200 5800 4200 5050 +Connection ~ 3350 5800 +Wire Wire Line + 4850 3500 4850 3950 +Connection ~ 4200 3500 +Wire Wire Line + 3900 4450 4350 4450 +Wire Wire Line + 4550 4900 4550 5050 +Wire Wire Line + 4550 4600 4700 4600 +Wire Wire Line + 4700 4600 4700 4450 +Wire Wire Line + 4650 4450 5000 4450 +Connection ~ 4850 4450 +Connection ~ 4700 4450 +Wire Wire Line + 4850 5800 4850 5250 +Connection ~ 4200 5800 +Wire Wire Line + 4850 4250 4850 4850 +Wire Wire Line + 5050 4250 4300 4250 +Wire Wire Line + 4300 4250 4300 4350 +Wire Wire Line + 4300 4350 4200 4350 +Connection ~ 4200 4350 +Wire Wire Line + 5300 4450 5400 4450 +Wire Wire Line + 5400 4250 5400 4650 +Wire Wire Line + 5400 4250 5350 4250 +$Comp +L resistor R? +U 1 1 683EB199 +P 5500 3950 +F 0 "R?" H 5550 4080 50 0000 C CNN +F 1 "12k" H 5550 3900 50 0000 C CNN +F 2 "" H 5550 3930 30 0000 C CNN +F 3 "" V 5550 4000 30 0000 C CNN + 1 5500 3950 + 0 1 1 0 +$EndComp +Wire Wire Line + 5550 3500 5550 3850 +Connection ~ 4850 3500 +$Comp +L eSim_NPN Q? +U 1 1 683EB23D +P 5450 5050 +F 0 "Q?" H 5350 5100 50 0000 R CNN +F 1 "eSim_NPN" H 5400 5200 50 0000 R CNN +F 2 "" H 5650 5150 29 0000 C CNN +F 3 "" H 5450 5050 60 0000 C CNN + 1 5450 5050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5250 5050 5250 4650 +Wire Wire Line + 5250 4650 5400 4650 +Connection ~ 5400 4450 +Wire Wire Line + 5550 4150 5550 4850 +Wire Wire Line + 5550 5800 5550 5250 +Connection ~ 4850 5800 +$Comp +L resistor R? +U 1 1 683EC33E +P 6100 3950 +F 0 "R?" H 6150 4080 50 0000 C CNN +F 1 "12k" H 6150 3900 50 0000 C CNN +F 2 "" H 6150 3930 30 0000 C CNN +F 3 "" V 6150 4000 30 0000 C CNN + 1 6100 3950 + 0 1 1 0 +$EndComp +Wire Wire Line + 6150 3500 6150 3850 +Connection ~ 5550 3500 +$Comp +L eSim_NPN Q? +U 1 1 683EC87C +P 6050 5000 +F 0 "Q?" H 5950 5050 50 0000 R CNN +F 1 "eSim_NPN" H 6000 5150 50 0000 R CNN +F 2 "" H 6250 5100 29 0000 C CNN +F 3 "" H 6050 5000 60 0000 C CNN + 1 6050 5000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6150 4150 6150 4800 +Wire Wire Line + 6150 5800 6150 5200 +Connection ~ 5550 5800 +$Comp +L resistor R? +U 1 1 683ED134 +P 5800 4550 +F 0 "R?" H 5850 4680 50 0000 C CNN +F 1 "12k" H 5850 4500 50 0000 C CNN +F 2 "" H 5850 4530 30 0000 C CNN +F 3 "" V 5850 4600 30 0000 C CNN + 1 5800 4550 + 0 1 1 0 +$EndComp +Wire Wire Line + 5850 4750 5850 5000 +Wire Wire Line + 5850 4450 5850 4400 +Wire Wire Line + 5850 4400 6300 4400 +Connection ~ 6150 4400 +$Comp +L capacitor C? +U 1 1 683EDB50 +P 6450 4200 +F 0 "C?" H 6475 4300 50 0000 L CNN +F 1 "23p" H 6050 4100 50 0000 L CNN +F 2 "" H 6488 4050 30 0000 C CNN +F 3 "" H 6450 4200 60 0000 C CNN + 1 6450 4200 + 0 1 1 0 +$EndComp +Wire Wire Line + 6300 4200 5550 4200 +Connection ~ 5550 4200 +$Comp +L resistor R? +U 1 1 683EDC19 +P 6400 4450 +F 0 "R?" H 6450 4580 50 0000 C CNN +F 1 "74k" H 6450 4400 50 0000 C CNN +F 2 "" H 6450 4430 30 0000 C CNN +F 3 "" V 6450 4500 30 0000 C CNN + 1 6400 4450 + 1 0 0 -1 +$EndComp +$Comp +L resistor R? +U 1 1 683EDD49 +P 6750 3950 +F 0 "R?" H 6800 4080 50 0000 C CNN +F 1 "12k" H 6800 3900 50 0000 C CNN +F 2 "" H 6800 3930 30 0000 C CNN +F 3 "" V 6800 4000 30 0000 C CNN + 1 6750 3950 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q? +U 1 1 683EE23F +P 6700 5000 +F 0 "Q?" H 6600 5050 50 0000 R CNN +F 1 "eSim_NPN" H 6650 5150 50 0000 R CNN +F 2 "" H 6900 5100 29 0000 C CNN +F 3 "" H 6700 5000 60 0000 C CNN + 1 6700 5000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6800 4150 6800 4800 +Wire Wire Line + 6600 4200 6600 4600 +Wire Wire Line + 6500 5000 6500 4600 +Wire Wire Line + 6500 4600 6600 4600 +Connection ~ 6600 4400 +Wire Wire Line + 6800 5800 6800 5200 +Connection ~ 6150 5800 +Wire Wire Line + 6800 3500 6800 3850 +Connection ~ 6150 3500 +$Comp +L eSim_NPN Q? +U 1 1 683EF5C6 +P 7200 4400 +F 0 "Q?" H 7100 4450 50 0000 R CNN +F 1 "eSim_NPN" H 7150 4550 50 0000 R CNN +F 2 "" H 7400 4500 29 0000 C CNN +F 3 "" H 7200 4400 60 0000 C CNN + 1 7200 4400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7000 4400 6800 4400 +Connection ~ 6800 4400 +Wire Wire Line + 7300 3500 7300 4200 +Connection ~ 6800 3500 +Wire Wire Line + 7300 5800 7300 4600 +Connection ~ 6800 5800 +$Comp +L PORT U? +U 1 1 683F01D4 +P 8000 4850 +F 0 "U?" H 8050 4950 30 0000 C CNN +F 1 "PORT" H 8000 4850 30 0000 C CNN +F 2 "" H 8000 4850 60 0000 C CNN +F 3 "" H 8000 4850 60 0000 C CNN + 1 8000 4850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 2 1 683F022F +P 8000 5150 +F 0 "U?" H 8050 5250 30 0000 C CNN +F 1 "PORT" H 8000 5150 30 0000 C CNN +F 2 "" H 8000 5150 60 0000 C CNN +F 3 "" H 8000 5150 60 0000 C CNN + 2 8000 5150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U? +U 3 1 683F0296 +P 7950 5400 +F 0 "U?" H 8000 5500 30 0000 C CNN +F 1 "PORT" H 7950 5400 30 0000 C CNN +F 2 "" H 7950 5400 60 0000 C CNN +F 3 "" H 7950 5400 60 0000 C CNN + 3 7950 5400 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TA7642/TA7642.sub b/library/SubcircuitLibrary/TA7642/TA7642.sub new file mode 100644 index 000000000..263c96295 --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642.sub @@ -0,0 +1,36 @@ +* Subcircuit TA7642 +.subckt TA7642 net-_q10-pad3_ net-_q1-pad2_ net-_q1-pad1_ +* c:\fossee\esim\library\subcircuitlibrary\ta7642\ta7642.cir +.include NPN.lib +q1 net-_q1-pad1_ net-_q1-pad2_ net-_c1-pad2_ Q2N2222 +q2 net-_c1-pad2_ net-_q2-pad2_ net-_q10-pad3_ Q2N2222 +c1 net-_c1-pad1_ net-_c1-pad2_ 12p +r2 net-_c1-pad1_ net-_q4-pad2_ 3.3k +r3 net-_q1-pad1_ net-_q3-pad1_ 12k +r4 net-_q3-pad1_ net-_q4-pad2_ 12k +q3 net-_q3-pad1_ net-_q2-pad2_ net-_q10-pad3_ Q2N2222 +r1 net-_q3-pad1_ net-_q2-pad2_ 5.6k +r5 net-_q1-pad1_ net-_c2-pad2_ 12k +q4 net-_c2-pad2_ net-_q4-pad2_ net-_q10-pad3_ Q2N2222 +c2 net-_c2-pad1_ net-_c2-pad2_ 12p +r6 net-_q1-pad1_ net-_c3-pad2_ 12k +q5 net-_c3-pad2_ net-_c2-pad1_ net-_q10-pad3_ Q2N2222 +r9 net-_q1-pad1_ net-_q6-pad1_ 12k +r7 net-_c2-pad1_ net-_q6-pad1_ 12k +q6 net-_q6-pad1_ net-_q6-pad2_ net-_q10-pad3_ Q2N2222 +r8 net-_q6-pad1_ net-_q6-pad2_ 12k +r10 net-_q6-pad1_ net-_c3-pad1_ 12k +c3 net-_c3-pad1_ net-_c3-pad2_ 12p +r11 net-_q1-pad1_ net-_c4-pad2_ 12k +q7 net-_c4-pad2_ net-_c3-pad1_ net-_q10-pad3_ Q2N2222 +r13 net-_q1-pad1_ net-_q8-pad1_ 12k +q8 net-_q8-pad1_ net-_q8-pad2_ net-_q10-pad3_ Q2N2222 +r12 net-_q8-pad1_ net-_q8-pad2_ 12k +c4 net-_c4-pad1_ net-_c4-pad2_ 23p +r14 net-_q8-pad1_ net-_c4-pad1_ 74k +r15 net-_q1-pad1_ net-_q10-pad2_ 12k +q9 net-_q10-pad2_ net-_c4-pad1_ net-_q10-pad3_ Q2N2222 +q10 net-_q1-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +* Control Statements + +.ends TA7642 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TA7642/TA7642_Previous_Values.xml b/library/SubcircuitLibrary/TA7642/TA7642_Previous_Values.xml new file mode 100644 index 000000000..b3cf203cf --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/TA7642/TA7642_test-cache.lib b/library/SubcircuitLibrary/TA7642/TA7642_test-cache.lib new file mode 100644 index 000000000..5cf84601c --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642_test-cache.lib @@ -0,0 +1,116 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# TA7642 +# +DEF TA7642 X 0 40 Y Y 1 F N +F0 "X" 0 -400 60 H V C CNN +F1 "TA7642" 0 300 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -200 150 200 -100 0 1 0 N +X A 1 0 -300 200 U 50 50 1 1 I +X B 2 -400 0 200 R 50 50 1 1 I +X C 3 400 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# eSim_C +# +DEF eSim_C C 0 10 N Y 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_C" 25 -100 50 H V L CNN +F2 "" 38 -150 30 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS capacitor +$FPLIST + C_* +$ENDFPLIST +DRAW +P 2 0 1 20 -80 -30 80 -30 N +P 2 0 1 20 -80 30 80 30 N +X ~ 1 0 150 110 D 40 40 1 1 P +X ~ 2 0 -150 110 U 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_GND +# +DEF eSim_GND #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -250 50 H I C CNN +F1 "eSim_GND" 0 -150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N +X GND 1 0 0 0 D 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +# eSim_VCC +# +DEF eSim_VCC #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -150 50 H I C CNN +F1 "eSim_VCC" 0 150 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +C 0 75 25 0 1 0 N +P 2 0 1 0 0 0 0 50 N +X VCC 1 0 0 0 U 50 50 1 1 W N +ENDDRAW +ENDDEF +# +# plot_v1 +# +DEF plot_v1 U 0 40 Y Y 1 F N +F0 "U" 0 500 60 H V C CNN +F1 "plot_v1" 200 350 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 0 500 100 0 1 0 N +X ~ ~ 0 200 200 U 50 50 1 1 I +ENDDRAW +ENDDEF +# +# sine +# +DEF sine v 0 40 Y Y 1 F N +F0 "v" -200 100 60 H V C CNN +F1 "sine" -200 -50 60 H V C CNN +F2 "R1" -300 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + 1_pin +$ENDFPLIST +DRAW +A -50 0 50 1 1799 0 1 0 N 0 0 -100 0 +A 50 0 50 -1799 -1 0 1 0 N 0 0 100 0 +C 0 0 150 0 1 0 N +X + 1 0 450 300 D 50 0 1 1 I +X - 2 0 -450 300 U 50 0 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TA7642/TA7642_test.cir b/library/SubcircuitLibrary/TA7642/TA7642_test.cir new file mode 100644 index 000000000..33a84c143 --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642_test.cir @@ -0,0 +1,20 @@ +* C:\Users\pavithra\eSim-Workspace\TA7642_test\TA7642_test.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/03/25 13:07:35 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +C1 Net-_C1-Pad1_ in 0.01u +R1 in GND 75 +C2 GND Vout 1u +R2 Net-_C1-Pad1_ Vout 100k +R3 Vout VCC 1.5k +U1 Vout plot_v1 +v1 in GND sine +U2 in plot_v1 +X1 GND Net-_C1-Pad1_ Vout TA7642 +R4 Vout GND 100k + +.end diff --git a/library/SubcircuitLibrary/TA7642/TA7642_test.cir.out b/library/SubcircuitLibrary/TA7642/TA7642_test.cir.out new file mode 100644 index 000000000..be0de6951 --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642_test.cir.out @@ -0,0 +1,38 @@ +* c:\users\pavithra\esim-workspace\ta7642_test\ta7642_test.cir + +.include TA7642.sub + +* Input AM Signal (reduced amplitude) +v1 in 0 AM(0.05 0.04 1k 1Meg 0 0) +r1 in gnd 75 +c1 net-_c1-pad1_ in 0.01u + +* Power Supply (Safe for TA7642) +v2 vcc gnd DC 1.4 + +* TA7642 Instance +x1 gnd net-_c1-pad1_ vout TA7642 + +* Output stage +r2 net-_c1-pad1_ vout 100k +r3 vout vcc 1.5k +r4 vout gnd 100k +c2 gnd vout 1u + +* Probes +* u1 vout plot_v1 +* u2 in plot_v1 + +* Transient Analysis +.tran 0.1u 10m 0 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(vout) +plot v(in) +.endc + +.end diff --git a/library/SubcircuitLibrary/TA7642/TA7642_test.pro b/library/SubcircuitLibrary/TA7642/TA7642_test.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642_test.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TA7642/TA7642_test.proj b/library/SubcircuitLibrary/TA7642/TA7642_test.proj new file mode 100644 index 000000000..15b792653 --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642_test.proj @@ -0,0 +1 @@ +schematicFile TA7642_test.sch diff --git a/library/SubcircuitLibrary/TA7642/TA7642_test.sch b/library/SubcircuitLibrary/TA7642/TA7642_test.sch new file mode 100644 index 000000000..767bad85a --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642_test.sch @@ -0,0 +1,253 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:TA7642_test-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L capacitor C1 +U 1 1 683D76B8 +P 4400 3900 +F 0 "C1" H 4425 4000 50 0000 L CNN +F 1 "0.01u" H 4425 3800 50 0000 L CNN +F 2 "" H 4438 3750 30 0000 C CNN +F 3 "" H 4400 3900 60 0000 C CNN + 1 4400 3900 + 0 1 1 0 +$EndComp +$Comp +L resistor R1 +U 1 1 683D76F0 +P 4100 4400 +F 0 "R1" H 4150 4530 50 0000 C CNN +F 1 "75" H 4150 4350 50 0000 C CNN +F 2 "" H 4150 4380 30 0000 C CNN +F 3 "" V 4150 4450 30 0000 C CNN + 1 4100 4400 + 0 1 1 0 +$EndComp +$Comp +L capacitor C2 +U 1 1 683D775A +P 5800 4200 +F 0 "C2" H 5825 4300 50 0000 L CNN +F 1 "1u" H 5825 4100 50 0000 L CNN +F 2 "" H 5838 4050 30 0000 C CNN +F 3 "" H 5800 4200 60 0000 C CNN + 1 5800 4200 + -1 0 0 1 +$EndComp +$Comp +L resistor R2 +U 1 1 683D77BE +P 5350 3400 +F 0 "R2" H 5400 3530 50 0000 C CNN +F 1 "100k" H 5400 3350 50 0000 C CNN +F 2 "" H 5400 3380 30 0000 C CNN +F 3 "" V 5400 3450 30 0000 C CNN + 1 5350 3400 + 1 0 0 -1 +$EndComp +$Comp +L resistor R3 +U 1 1 683D7822 +P 6100 3400 +F 0 "R3" H 6150 3530 50 0000 C CNN +F 1 "1.5k" H 6150 3350 50 0000 C CNN +F 2 "" H 6150 3380 30 0000 C CNN +F 3 "" V 6150 3450 30 0000 C CNN + 1 6100 3400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_GND #PWR01 +U 1 1 683D78A0 +P 6000 4800 +F 0 "#PWR01" H 6000 4550 50 0001 C CNN +F 1 "eSim_GND" H 6000 4650 50 0000 C CNN +F 2 "" H 6000 4800 50 0001 C CNN +F 3 "" H 6000 4800 50 0001 C CNN + 1 6000 4800 + 1 0 0 -1 +$EndComp +$Comp +L plot_v1 U1 +U 1 1 683D78F9 +P 6100 4100 +F 0 "U1" H 6100 4600 60 0000 C CNN +F 1 "plot_v1" H 6300 4450 60 0000 C CNN +F 2 "" H 6100 4100 60 0000 C CNN +F 3 "" H 6100 4100 60 0000 C CNN + 1 6100 4100 + 1 0 0 -1 +$EndComp +Text GLabel 6500 4050 2 60 Input ~ 0 +Vout +$Comp +L sine v1 +U 1 1 683D79C7 +P 3750 4350 +F 0 "v1" H 3550 4450 60 0000 C CNN +F 1 "sine" H 3550 4300 60 0000 C CNN +F 2 "R1" H 3450 4350 60 0000 C CNN +F 3 "" H 3750 4350 60 0000 C CNN + 1 3750 4350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4550 3900 4800 3900 +Wire Wire Line + 4150 3900 4150 4300 +Wire Wire Line + 3750 3900 4250 3900 +Wire Wire Line + 5600 3900 6100 3900 +Wire Wire Line + 5800 3350 5800 4050 +Wire Wire Line + 4700 3900 4700 3350 +Wire Wire Line + 4700 3350 5250 3350 +Connection ~ 4700 3900 +Wire Wire Line + 5550 3350 6000 3350 +Connection ~ 5800 3900 +Connection ~ 5800 3350 +Wire Wire Line + 5950 3900 5950 4050 +Wire Wire Line + 5950 4050 6500 4050 +Connection ~ 5950 3900 +Connection ~ 4150 3900 +Wire Wire Line + 3750 4800 6000 4800 +Wire Wire Line + 4150 4800 4150 4600 +Wire Wire Line + 5200 4800 5200 4200 +Connection ~ 4150 4800 +Wire Wire Line + 5800 4800 5800 4350 +Connection ~ 5200 4800 +Connection ~ 5800 4800 +Text GLabel 3800 3800 0 60 Input ~ 0 +in +$Comp +L plot_v1 U2 +U 1 1 683DD3EC +P 3950 3900 +F 0 "U2" H 3950 4400 60 0000 C CNN +F 1 "plot_v1" H 4150 4250 60 0000 C CNN +F 2 "" H 3950 3900 60 0000 C CNN +F 3 "" H 3950 3900 60 0000 C CNN + 1 3950 3900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3950 3700 3950 3900 +Connection ~ 3950 3900 +Wire Wire Line + 3800 3800 3950 3800 +Connection ~ 3950 3800 +$Comp +L eSim_VCC #PWR02 +U 1 1 683E8921 +P 6350 3250 +F 0 "#PWR02" H 6350 3100 50 0001 C CNN +F 1 "eSim_VCC" H 6350 3400 50 0000 C CNN +F 2 "" H 6350 3250 50 0001 C CNN +F 3 "" H 6350 3250 50 0001 C CNN + 1 6350 3250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6350 3250 6350 3350 +Wire Wire Line + 6350 3350 6300 3350 +$Comp +L TA7642 X1 +U 1 1 683E9609 +P 5200 3900 +F 0 "X1" H 5200 3500 60 0000 C CNN +F 1 "TA7642" H 5200 4200 60 0000 C CNN +F 2 "" H 5200 3900 60 0001 C CNN +F 3 "" H 5200 3900 60 0001 C CNN + 1 5200 3900 + 1 0 0 -1 +$EndComp +$Comp +L resistor R4 +U 1 1 683EA678 +P 6000 4350 +F 0 "R4" V 6050 4480 50 0000 C CNN +F 1 "100k" H 6050 4300 50 0000 C CNN +F 2 "" H 6050 4330 30 0000 C CNN +F 3 "" V 6050 4400 30 0000 C CNN + 1 6000 4350 + 0 1 1 0 +$EndComp +Wire Wire Line + 6050 4550 6050 4650 +Wire Wire Line + 6050 4650 5900 4650 +Wire Wire Line + 5900 4650 5900 4800 +Connection ~ 5900 4800 +Wire Wire Line + 6050 4250 6050 4100 +Wire Wire Line + 6050 4100 5900 4100 +Wire Wire Line + 5900 4100 5900 3900 +Connection ~ 5900 3900 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TA7642/TA7642_test_Previous_Values.xml b/library/SubcircuitLibrary/TA7642/TA7642_test_Previous_Values.xml new file mode 100644 index 000000000..72957726d --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/TA7642_test_Previous_Values.xml @@ -0,0 +1 @@ +sine0300u1m0dc1.4C:\FOSSEE\eSim\library\SubcircuitLibrary\TA7642truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.110msusms \ No newline at end of file diff --git a/library/SubcircuitLibrary/TA7642/analysis b/library/SubcircuitLibrary/TA7642/analysis new file mode 100644 index 000000000..6dcba7452 --- /dev/null +++ b/library/SubcircuitLibrary/TA7642/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 10e-03 0e-03 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP-cache.lib new file mode 100644 index 000000000..14a754158 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP-cache.lib @@ -0,0 +1,246 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Y0 +# +DEF Y0 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y0" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X A_bar 1 -550 0 200 R 50 50 1 1 I +X B_bar 2 -550 -100 200 R 50 50 1 1 I +X Gnd 3 0 -350 200 U 50 50 1 1 I +X Vdd 4 -550 100 200 R 50 50 1 1 I +X Y0 5 550 -100 200 L 50 50 1 1 O +X C_bar 6 550 100 200 L 50 50 1 1 I +X D_bar 7 550 0 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# Y1 +# +DEF Y1 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y1" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -300 150 350 -150 0 1 0 N +X Vdd 1 -500 100 200 R 50 50 1 1 I +X A 2 -500 0 200 R 50 50 1 1 I +X B_bar 3 -500 -100 200 R 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X C_bar 5 550 100 200 L 50 50 1 1 I +X D_bar 6 550 0 200 L 50 50 1 1 I +X Y1 7 550 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Y2 +# +DEF Y2 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y2" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -300 150 350 -150 0 1 0 N +X Vdd 1 -500 100 200 R 50 50 1 1 I +X A_bar 2 -500 0 200 R 50 50 1 1 I +X B 3 -500 -100 200 R 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X C_bar 5 550 100 200 L 50 50 1 1 I +X D_bar 6 550 0 200 L 50 50 1 1 I +X Y2 7 550 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Y3 +# +DEF Y3 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y3" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -300 150 350 -150 0 1 0 N +X Vdd 1 -500 100 200 R 50 50 1 1 I +X A 2 -500 0 200 R 50 50 1 1 I +X B 3 -500 -100 200 R 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X C_bar 5 550 100 200 L 50 50 1 1 I +X D_bar 6 550 0 200 L 50 50 1 1 I +X Y3 7 550 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Y4 +# +DEF Y4 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y4" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X Vdd 1 -550 100 200 R 50 50 1 1 I +X A_bar 2 -550 0 200 R 50 50 1 1 I +X B_bar 3 -550 -100 200 R 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X C 5 550 100 200 L 50 50 1 1 I +X D_bar 6 550 0 200 L 50 50 1 1 I +X Y4 7 550 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Y5 +# +DEF Y5 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y5" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X Vdd 1 -550 100 200 R 50 50 1 1 I +X A 2 -550 0 200 R 50 50 1 1 I +X B_bar 3 -550 -100 200 R 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X C 5 550 100 200 L 50 50 1 1 I +X D_bar 6 550 0 200 L 50 50 1 1 I +X Y5 7 550 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Y6 +# +DEF Y6 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y6" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X Vdd 1 -550 100 200 R 50 50 1 1 I +X A_bar 2 -550 0 200 R 50 50 1 1 I +X B 3 -550 -100 200 R 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X C 5 550 100 200 L 50 50 1 1 I +X D_bar 6 550 0 200 L 50 50 1 1 I +X Y6 7 550 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Y7 +# +DEF Y7 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y7" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X Vdd 1 -550 100 200 R 50 50 1 1 I +X A 2 -550 0 200 R 50 50 1 1 I +X B 3 -550 -100 200 R 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X C 5 550 100 200 L 50 50 1 1 I +X D_bar 6 550 0 200 L 50 50 1 1 I +X Y7 7 550 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Y8 +# +DEF Y8 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y8" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 400 -150 0 1 0 N +X Vdd 1 -550 100 200 R 50 50 1 1 I +X A_bar 2 -550 0 200 R 50 50 1 1 I +X B_bar 3 -550 -100 200 R 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X C_bar 5 600 100 200 L 50 50 1 1 I +X D 6 600 0 200 L 50 50 1 1 I +X Y8 7 600 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Y9 +# +DEF Y9 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y9" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X Vdd 1 -550 100 200 R 50 50 1 1 I +X A 2 -550 0 200 R 50 50 1 1 I +X B_bar 3 -550 -100 200 R 50 50 1 1 I +X Gnd 4 0 -350 200 U 50 50 1 1 I +X C_bar 5 550 100 200 L 50 50 1 1 I +X D 6 550 0 200 L 50 50 1 1 I +X Y9 7 550 -100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.bak b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.bak new file mode 100644 index 000000000..a1d188a96 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.bak @@ -0,0 +1,669 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:TC74HC4028AP-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 6869436A +P 2650 1250 +F 0 "X1" H 2650 1350 60 0000 C CNN +F 1 "Y0" H 2600 1050 60 0000 C CNN +F 2 "" H 2650 1250 60 0001 C CNN +F 3 "" H 2650 1250 60 0001 C CNN + 1 2650 1250 + 1 0 0 -1 +$EndComp +$Comp +L Y1 X4 +U 1 1 68694446 +P 4100 1250 +F 0 "X4" H 4100 1350 60 0000 C CNN +F 1 "Y1" H 4050 1050 60 0000 C CNN +F 2 "" H 4100 1250 60 0001 C CNN +F 3 "" H 4100 1250 60 0001 C CNN + 1 4100 1250 + 1 0 0 -1 +$EndComp +$Comp +L Y2 X6 +U 1 1 68694477 +P 5550 1250 +F 0 "X6" H 5550 1350 60 0000 C CNN +F 1 "Y2" H 5500 1050 60 0000 C CNN +F 2 "" H 5550 1250 60 0001 C CNN +F 3 "" H 5550 1250 60 0001 C CNN + 1 5550 1250 + 1 0 0 -1 +$EndComp +$Comp +L Y3 X9 +U 1 1 686944AA +P 7000 1250 +F 0 "X9" H 7000 1350 60 0000 C CNN +F 1 "Y3" H 6950 1050 60 0000 C CNN +F 2 "" H 7000 1250 60 0001 C CNN +F 3 "" H 7000 1250 60 0001 C CNN + 1 7000 1250 + 1 0 0 -1 +$EndComp +$Comp +L Y4 X2 +U 1 1 686944E9 +P 2650 2100 +F 0 "X2" H 2650 2200 60 0000 C CNN +F 1 "Y4" H 2600 1900 60 0000 C CNN +F 2 "" H 2650 2100 60 0001 C CNN +F 3 "" H 2650 2100 60 0001 C CNN + 1 2650 2100 + 1 0 0 -1 +$EndComp +$Comp +L Y5 X5 +U 1 1 6869451A +P 4150 2100 +F 0 "X5" H 4150 2200 60 0000 C CNN +F 1 "Y5" H 4100 1900 60 0000 C CNN +F 2 "" H 4150 2100 60 0001 C CNN +F 3 "" H 4150 2100 60 0001 C CNN + 1 4150 2100 + 1 0 0 -1 +$EndComp +$Comp +L Y6 X7 +U 1 1 6869454D +P 5600 2100 +F 0 "X7" H 5600 2200 60 0000 C CNN +F 1 "Y6" H 5550 1900 60 0000 C CNN +F 2 "" H 5600 2100 60 0001 C CNN +F 3 "" H 5600 2100 60 0001 C CNN + 1 5600 2100 + 1 0 0 -1 +$EndComp +$Comp +L Y7 X10 +U 1 1 6869457C +P 7050 2100 +F 0 "X10" H 7050 2200 60 0000 C CNN +F 1 "Y7" H 7000 1900 60 0000 C CNN +F 2 "" H 7050 2100 60 0001 C CNN +F 3 "" H 7050 2100 60 0001 C CNN + 1 7050 2100 + 1 0 0 -1 +$EndComp +$Comp +L Y9 X8 +U 1 1 686945F2 +P 6250 3000 +F 0 "X8" H 6250 3100 60 0000 C CNN +F 1 "Y9" H 6200 2800 60 0000 C CNN +F 2 "" H 6250 3000 60 0001 C CNN +F 3 "" H 6250 3000 60 0001 C CNN + 1 6250 3000 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 6869470D +P 10350 1750 +F 0 "scmode1" H 10350 1900 98 0000 C CNB +F 1 "SKY130mode" H 10350 1650 118 0000 C CNB +F 2 "" H 10350 1900 60 0001 C CNN +F 3 "" H 10350 1900 60 0001 C CNN + 1 10350 1750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68697E56 +P 1550 1150 +F 0 "U1" H 1600 1250 30 0000 C CNN +F 1 "PORT" H 1550 1150 30 0000 C CNN +F 2 "" H 1550 1150 60 0000 C CNN +F 3 "" H 1550 1150 60 0000 C CNN + 1 1550 1150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 68697EC9 +P 3500 3700 +F 0 "U1" H 3550 3800 30 0000 C CNN +F 1 "PORT" H 3500 3700 30 0000 C CNN +F 2 "" H 3500 3700 60 0000 C CNN +F 3 "" H 3500 3700 60 0000 C CNN + 8 3500 3700 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 2 1 6869826A +P 1600 2100 +F 0 "U1" H 1650 2200 30 0000 C CNN +F 1 "PORT" H 1600 2100 30 0000 C CNN +F 2 "" H 1600 2100 60 0000 C CNN +F 3 "" H 1600 2100 60 0000 C CNN + 2 1600 2100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68698527 +P 1700 1800 +F 0 "U1" H 1750 1900 30 0000 C CNN +F 1 "PORT" H 1700 1800 30 0000 C CNN +F 2 "" H 1700 1800 60 0000 C CNN +F 3 "" H 1700 1800 60 0000 C CNN + 3 1700 1800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68698765 +P 3200 1500 +F 0 "U1" H 3250 1600 30 0000 C CNN +F 1 "PORT" H 3200 1500 30 0000 C CNN +F 2 "" H 3200 1500 60 0000 C CNN +F 3 "" H 3200 1500 60 0000 C CNN + 6 3200 1500 + 1 0 0 -1 +$EndComp +Text Label 3450 1500 0 60 ~ 0 +A +Text Label 1950 1800 0 60 ~ 0 +B_bar +Text Label 1850 2100 0 60 ~ 0 +A_bar +Text Label 1800 1150 0 60 ~ 0 +Vd +Text Label 3500 3450 0 60 ~ 0 +Gnd +$Comp +L PORT U1 +U 14 1 68698C0E +P 5250 1600 +F 0 "U1" H 5300 1700 30 0000 C CNN +F 1 "PORT" H 5250 1600 30 0000 C CNN +F 2 "" H 5250 1600 60 0000 C CNN +F 3 "" H 5250 1600 60 0000 C CNN + 14 5250 1600 + -1 0 0 1 +$EndComp +Text Label 5000 1600 0 60 ~ 0 +B +$Comp +L PORT U1 +U 12 1 68699104 +P 4550 950 +F 0 "U1" H 4600 1050 30 0000 C CNN +F 1 "PORT" H 4550 950 30 0000 C CNN +F 2 "" H 4550 950 60 0000 C CNN +F 3 "" H 4550 950 60 0000 C CNN + 12 4550 950 + 1 0 0 -1 +$EndComp +Text Label 4800 1050 0 60 ~ 0 +C_bar +$Comp +L PORT U1 +U 11 1 686995D3 +P 4450 1800 +F 0 "U1" H 4500 1900 30 0000 C CNN +F 1 "PORT" H 4450 1800 30 0000 C CNN +F 2 "" H 4450 1800 60 0000 C CNN +F 3 "" H 4450 1800 60 0000 C CNN + 11 4450 1800 + 1 0 0 -1 +$EndComp +Text Label 4700 1900 0 60 ~ 0 +C +$Comp +L PORT U1 +U 4 1 6869A09B +P 3000 1600 +F 0 "U1" H 3050 1700 30 0000 C CNN +F 1 "PORT" H 3000 1600 30 0000 C CNN +F 2 "" H 3000 1600 60 0000 C CNN +F 3 "" H 3000 1600 60 0000 C CNN + 4 3000 1600 + 1 0 0 -1 +$EndComp +Text Label 3250 1600 0 60 ~ 0 +D_bar +$Comp +L PORT U1 +U 18 1 6869A296 +P 7250 3000 +F 0 "U1" H 7300 3100 30 0000 C CNN +F 1 "PORT" H 7250 3000 30 0000 C CNN +F 2 "" H 7250 3000 60 0000 C CNN +F 3 "" H 7250 3000 60 0000 C CNN + 18 7250 3000 + -1 0 0 1 +$EndComp +Text Label 6900 3000 0 60 ~ 0 +D +$Comp +L PORT U1 +U 5 1 6869A547 +P 3100 950 +F 0 "U1" H 3150 1050 30 0000 C CNN +F 1 "PORT" H 3100 950 30 0000 C CNN +F 2 "" H 3100 950 60 0000 C CNN +F 3 "" H 3100 950 60 0000 C CNN + 5 3100 950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 6869A7EA +P 4150 950 +F 0 "U1" H 4200 1050 30 0000 C CNN +F 1 "PORT" H 4150 950 30 0000 C CNN +F 2 "" H 4150 950 60 0000 C CNN +F 3 "" H 4150 950 60 0000 C CNN + 10 4150 950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2100 1150 1800 1150 +Wire Wire Line + 1800 800 1800 2000 +Wire Wire Line + 1800 800 6500 800 +Wire Wire Line + 6500 800 6500 1150 +Wire Wire Line + 1800 2000 2100 2000 +Connection ~ 1800 1150 +Wire Wire Line + 3600 1150 3500 1150 +Wire Wire Line + 3500 800 3500 2700 +Connection ~ 3500 800 +Wire Wire Line + 3500 2000 3600 2000 +Connection ~ 3500 1150 +Wire Wire Line + 5050 1150 4950 1150 +Wire Wire Line + 4950 800 4950 2000 +Connection ~ 4950 800 +Wire Wire Line + 4950 2000 5050 2000 +Connection ~ 4950 1150 +Wire Wire Line + 6500 2000 6400 2000 +Wire Wire Line + 6400 2000 6400 800 +Connection ~ 6400 800 +Wire Wire Line + 2950 2900 2950 2700 +Wire Wire Line + 2950 2700 5700 2700 +Connection ~ 3500 2000 +Wire Wire Line + 2650 1600 2650 1700 +Wire Wire Line + 2650 1700 7100 1700 +Wire Wire Line + 7100 1700 7100 2550 +Wire Wire Line + 7100 2550 2550 2550 +Wire Wire Line + 2550 2550 2550 3450 +Wire Wire Line + 2550 3450 6250 3450 +Wire Wire Line + 6250 3450 6250 3350 +Wire Wire Line + 3500 3350 3500 3450 +Connection ~ 3500 3450 +Wire Wire Line + 2650 2450 2650 2550 +Connection ~ 2650 2550 +Wire Wire Line + 4150 2450 4150 2550 +Connection ~ 4150 2550 +Wire Wire Line + 5600 2450 5600 2550 +Connection ~ 5600 2550 +Wire Wire Line + 7050 2450 7050 2550 +Connection ~ 7050 2550 +Wire Wire Line + 7000 1600 7000 1700 +Connection ~ 7000 1700 +Wire Wire Line + 5550 1600 5550 1700 +Connection ~ 5550 1700 +Wire Wire Line + 4100 1600 4100 1700 +Connection ~ 4100 1700 +Wire Wire Line + 5700 2700 5700 2900 +Connection ~ 3500 2700 +Wire Wire Line + 2100 1250 1850 1250 +Wire Wire Line + 1850 1250 1850 3000 +Wire Wire Line + 1850 2100 2100 2100 +Wire Wire Line + 5050 1250 4900 1250 +Wire Wire Line + 4900 1250 4900 2100 +Wire Wire Line + 4900 2100 5050 2100 +Wire Wire Line + 4900 1750 1850 1750 +Connection ~ 1850 1750 +Connection ~ 4900 1750 +Wire Wire Line + 1850 3000 2950 3000 +Connection ~ 1850 2100 +Wire Wire Line + 2100 1350 1950 1350 +Wire Wire Line + 1950 1350 1950 3200 +Wire Wire Line + 1950 2200 2100 2200 +Wire Wire Line + 3600 1350 3550 1350 +Wire Wire Line + 3550 1350 3550 2200 +Wire Wire Line + 3550 2200 3600 2200 +Wire Wire Line + 1950 1800 3550 1800 +Connection ~ 3550 1800 +Connection ~ 1950 1800 +Wire Wire Line + 5700 3100 5700 3200 +Wire Wire Line + 5700 3200 1950 3200 +Connection ~ 1950 2200 +Wire Wire Line + 2950 3100 2950 3200 +Connection ~ 2950 3200 +Wire Wire Line + 3600 1250 3450 1250 +Wire Wire Line + 3450 1250 3450 2100 +Wire Wire Line + 3450 2100 3600 2100 +Wire Wire Line + 6500 1250 6450 1250 +Wire Wire Line + 6450 1250 6450 2100 +Wire Wire Line + 6450 2100 6500 2100 +Wire Wire Line + 3450 1500 6450 1500 +Connection ~ 6450 1500 +Connection ~ 3450 1500 +Wire Wire Line + 5700 3000 4850 3000 +Wire Wire Line + 4850 3000 4850 1500 +Connection ~ 4850 1500 +Wire Wire Line + 5050 1350 5000 1350 +Wire Wire Line + 5000 1350 5000 2200 +Wire Wire Line + 5000 2200 5050 2200 +Wire Wire Line + 6500 1350 6350 1350 +Wire Wire Line + 6350 1350 6350 2200 +Wire Wire Line + 6350 2200 6500 2200 +Wire Wire Line + 6350 1600 5000 1600 +Connection ~ 5000 1600 +Connection ~ 6350 1600 +Wire Wire Line + 3200 1150 3200 1050 +Wire Wire Line + 3200 1050 7550 1050 +Wire Wire Line + 7550 1050 7550 1150 +Wire Wire Line + 4100 2900 4100 2800 +Wire Wire Line + 4100 2800 6800 2800 +Wire Wire Line + 6800 2800 6800 2900 +Wire Wire Line + 4800 950 4800 2800 +Connection ~ 4800 2800 +Connection ~ 4800 1050 +Wire Wire Line + 4650 1150 4650 1050 +Connection ~ 4650 1050 +Wire Wire Line + 6100 1150 6100 1050 +Connection ~ 6100 1050 +Wire Wire Line + 3200 2000 3200 1900 +Wire Wire Line + 3200 1900 7600 1900 +Wire Wire Line + 7600 1900 7600 2000 +Wire Wire Line + 6150 2000 6150 1900 +Connection ~ 6150 1900 +Wire Wire Line + 4700 1800 4700 2000 +Connection ~ 4700 1900 +Wire Wire Line + 3200 1250 3250 1250 +Wire Wire Line + 3250 1250 3250 2100 +Wire Wire Line + 3250 2100 3200 2100 +Wire Wire Line + 4650 1250 4750 1250 +Wire Wire Line + 4750 1250 4750 2100 +Wire Wire Line + 4750 2100 4700 2100 +Wire Wire Line + 6100 1250 6250 1250 +Wire Wire Line + 6250 1250 6250 2100 +Wire Wire Line + 6250 2100 6150 2100 +Wire Wire Line + 7550 1250 7650 1250 +Wire Wire Line + 7650 1250 7650 2100 +Wire Wire Line + 7650 2100 7600 2100 +Wire Wire Line + 3250 1600 4600 1600 +Wire Wire Line + 4600 1600 4600 1450 +Wire Wire Line + 4600 1450 7650 1450 +Connection ~ 7650 1450 +Connection ~ 3250 1600 +Connection ~ 6250 1450 +Connection ~ 4750 1450 +Wire Wire Line + 4100 3000 4200 3000 +Wire Wire Line + 4200 3000 4200 2650 +Wire Wire Line + 4200 2650 6900 2650 +Wire Wire Line + 6900 2650 6900 3000 +Wire Wire Line + 6800 3000 7000 3000 +Connection ~ 6900 3000 +Wire Wire Line + 3350 950 3350 1350 +Wire Wire Line + 3350 1350 3200 1350 +Wire Wire Line + 4400 950 4700 950 +Wire Wire Line + 4700 950 4700 1350 +Wire Wire Line + 4700 1350 4650 1350 +$Comp +L PORT U1 +U 15 1 6869A9FB +P 5950 950 +F 0 "U1" H 6000 1050 30 0000 C CNN +F 1 "PORT" H 5950 950 30 0000 C CNN +F 2 "" H 5950 950 60 0000 C CNN +F 3 "" H 5950 950 60 0000 C CNN + 15 5950 950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6200 950 6200 1350 +Wire Wire Line + 6200 1350 6100 1350 +$Comp +L PORT U1 +U 19 1 6869AC25 +P 7800 1350 +F 0 "U1" H 7850 1450 30 0000 C CNN +F 1 "PORT" H 7800 1350 30 0000 C CNN +F 2 "" H 7800 1350 60 0000 C CNN +F 3 "" H 7800 1350 60 0000 C CNN + 19 7800 1350 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 20 1 6869ACEC +P 7850 2200 +F 0 "U1" H 7900 2300 30 0000 C CNN +F 1 "PORT" H 7850 2200 30 0000 C CNN +F 2 "" H 7850 2200 60 0000 C CNN +F 3 "" H 7850 2200 60 0000 C CNN + 20 7850 2200 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 16 1 6869ADC5 +P 6150 2450 +F 0 "U1" H 6200 2550 30 0000 C CNN +F 1 "PORT" H 6150 2450 30 0000 C CNN +F 2 "" H 6150 2450 60 0000 C CNN +F 3 "" H 6150 2450 60 0000 C CNN + 16 6150 2450 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 13 1 6869AF77 +P 4700 2450 +F 0 "U1" H 4750 2550 30 0000 C CNN +F 1 "PORT" H 4700 2450 30 0000 C CNN +F 2 "" H 4700 2450 60 0000 C CNN +F 3 "" H 4700 2450 60 0000 C CNN + 13 4700 2450 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 7 1 6869B03E +P 3200 2450 +F 0 "U1" H 3250 2550 30 0000 C CNN +F 1 "PORT" H 3200 2450 30 0000 C CNN +F 2 "" H 3200 2450 60 0000 C CNN +F 3 "" H 3200 2450 60 0000 C CNN + 7 3200 2450 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 9 1 6869B11E +P 4100 3350 +F 0 "U1" H 4150 3450 30 0000 C CNN +F 1 "PORT" H 4100 3350 30 0000 C CNN +F 2 "" H 4100 3350 60 0000 C CNN +F 3 "" H 4100 3350 60 0000 C CNN + 9 4100 3350 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 17 1 6869B205 +P 6800 3350 +F 0 "U1" H 6850 3450 30 0000 C CNN +F 1 "PORT" H 6800 3350 30 0000 C CNN +F 2 "" H 6800 3350 60 0000 C CNN +F 3 "" H 6800 3350 60 0000 C CNN + 17 6800 3350 + 0 -1 -1 0 +$EndComp +$Comp +L Y8 X3 +U 1 1 68695022 +P 3500 3000 +F 0 "X3" H 3500 3100 60 0000 C CNN +F 1 "Y8" H 3450 2800 60 0000 C CNN +F 2 "" H 3500 3000 60 0001 C CNN +F 3 "" H 3500 3000 60 0001 C CNN + 1 3500 3000 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.cir b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.cir new file mode 100644 index 000000000..b2dd5c478 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.cir @@ -0,0 +1,22 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 21:40:54 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 /A_bar /B_bar /Gnd /Vd Net-_U1-Pad5_ /C_bar /D_bar Y0 +X4 /Vd /A /B_bar /Gnd /C_bar /D_bar Net-_U1-Pad10_ Y1 +X6 /Vd /A_bar /B /Gnd /C_bar /D_bar Net-_U1-Pad15_ Y2 +X9 /Vd /A /B /Gnd /C_bar /D_bar Net-_U1-Pad19_ Y3 +X2 /Vd /A_bar /B_bar /Gnd /C /D_bar Net-_U1-Pad7_ Y4 +X5 /Vd /A /B_bar /Gnd /C /D_bar Net-_U1-Pad13_ Y5 +X7 /Vd /A_bar /B /Gnd /C /D_bar Net-_U1-Pad16_ Y6 +X10 /Vd /A /B /Gnd /C /D_bar Net-_U1-Pad20_ Y7 +X8 /Vd /A /B_bar /Gnd /C_bar /D Net-_U1-Pad17_ Y9 +scmode1 SKY130mode +U1 /Vd /A_bar /B_bar /D_bar Net-_U1-Pad5_ /A Net-_U1-Pad7_ /Gnd Net-_U1-Pad9_ Net-_U1-Pad10_ /C /C_bar Net-_U1-Pad13_ /B Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ /D Net-_U1-Pad19_ Net-_U1-Pad20_ PORT +X3 /Vd /A_bar /B_bar /Gnd /C_bar /D Net-_U1-Pad9_ Y8 + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.cir.out new file mode 100644 index 000000000..0fcc3f4a9 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.cir.out @@ -0,0 +1,35 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/tc74hc4028ap/tc74hc4028ap.cir + +.include Y5.sub +.include Y1.sub +.include Y2.sub +.include Y8.sub +.include Y4.sub +.include Y9.sub +.include Y7.sub +.include Y3.sub +.include Y6.sub +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 /a_bar /b_bar /gnd /vd net-_u1-pad5_ /c_bar /d_bar Y0 +x4 /vd /a /b_bar /gnd /c_bar /d_bar net-_u1-pad10_ Y1 +x6 /vd /a_bar /b /gnd /c_bar /d_bar net-_u1-pad15_ Y2 +x9 /vd /a /b /gnd /c_bar /d_bar net-_u1-pad19_ Y3 +x2 /vd /a_bar /b_bar /gnd /c /d_bar net-_u1-pad7_ Y4 +x5 /vd /a /b_bar /gnd /c /d_bar net-_u1-pad13_ Y5 +x7 /vd /a_bar /b /gnd /c /d_bar net-_u1-pad16_ Y6 +x10 /vd /a /b /gnd /c /d_bar net-_u1-pad20_ Y7 +x8 /vd /a /b_bar /gnd /c_bar /d net-_u1-pad17_ Y9 +* s c m o d e +* u1 /vd /a_bar /b_bar /d_bar net-_u1-pad5_ /a net-_u1-pad7_ /gnd net-_u1-pad9_ net-_u1-pad10_ /c /c_bar net-_u1-pad13_ /b net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ /d net-_u1-pad19_ net-_u1-pad20_ port +x3 /vd /a_bar /b_bar /gnd /c_bar /d net-_u1-pad9_ Y8 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.pro b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.sch b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.sch new file mode 100644 index 000000000..7fbc2d5c9 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.sch @@ -0,0 +1,669 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:TC74HC4028AP-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 6869436A +P 2650 1250 +F 0 "X1" H 2650 1350 60 0000 C CNN +F 1 "Y0" H 2600 1050 60 0000 C CNN +F 2 "" H 2650 1250 60 0001 C CNN +F 3 "" H 2650 1250 60 0001 C CNN + 1 2650 1250 + 1 0 0 -1 +$EndComp +$Comp +L Y1 X4 +U 1 1 68694446 +P 4100 1250 +F 0 "X4" H 4100 1350 60 0000 C CNN +F 1 "Y1" H 4050 1050 60 0000 C CNN +F 2 "" H 4100 1250 60 0001 C CNN +F 3 "" H 4100 1250 60 0001 C CNN + 1 4100 1250 + 1 0 0 -1 +$EndComp +$Comp +L Y2 X6 +U 1 1 68694477 +P 5550 1250 +F 0 "X6" H 5550 1350 60 0000 C CNN +F 1 "Y2" H 5500 1050 60 0000 C CNN +F 2 "" H 5550 1250 60 0001 C CNN +F 3 "" H 5550 1250 60 0001 C CNN + 1 5550 1250 + 1 0 0 -1 +$EndComp +$Comp +L Y3 X9 +U 1 1 686944AA +P 7000 1250 +F 0 "X9" H 7000 1350 60 0000 C CNN +F 1 "Y3" H 6950 1050 60 0000 C CNN +F 2 "" H 7000 1250 60 0001 C CNN +F 3 "" H 7000 1250 60 0001 C CNN + 1 7000 1250 + 1 0 0 -1 +$EndComp +$Comp +L Y4 X2 +U 1 1 686944E9 +P 2650 2100 +F 0 "X2" H 2650 2200 60 0000 C CNN +F 1 "Y4" H 2600 1900 60 0000 C CNN +F 2 "" H 2650 2100 60 0001 C CNN +F 3 "" H 2650 2100 60 0001 C CNN + 1 2650 2100 + 1 0 0 -1 +$EndComp +$Comp +L Y5 X5 +U 1 1 6869451A +P 4150 2100 +F 0 "X5" H 4150 2200 60 0000 C CNN +F 1 "Y5" H 4100 1900 60 0000 C CNN +F 2 "" H 4150 2100 60 0001 C CNN +F 3 "" H 4150 2100 60 0001 C CNN + 1 4150 2100 + 1 0 0 -1 +$EndComp +$Comp +L Y6 X7 +U 1 1 6869454D +P 5600 2100 +F 0 "X7" H 5600 2200 60 0000 C CNN +F 1 "Y6" H 5550 1900 60 0000 C CNN +F 2 "" H 5600 2100 60 0001 C CNN +F 3 "" H 5600 2100 60 0001 C CNN + 1 5600 2100 + 1 0 0 -1 +$EndComp +$Comp +L Y7 X10 +U 1 1 6869457C +P 7050 2100 +F 0 "X10" H 7050 2200 60 0000 C CNN +F 1 "Y7" H 7000 1900 60 0000 C CNN +F 2 "" H 7050 2100 60 0001 C CNN +F 3 "" H 7050 2100 60 0001 C CNN + 1 7050 2100 + 1 0 0 -1 +$EndComp +$Comp +L Y9 X8 +U 1 1 686945F2 +P 6250 3000 +F 0 "X8" H 6250 3100 60 0000 C CNN +F 1 "Y9" H 6200 2800 60 0000 C CNN +F 2 "" H 6250 3000 60 0001 C CNN +F 3 "" H 6250 3000 60 0001 C CNN + 1 6250 3000 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 6869470D +P 8050 2750 +F 0 "scmode1" H 8050 2900 98 0000 C CNB +F 1 "SKY130mode" H 8050 2650 118 0000 C CNB +F 2 "" H 8050 2900 60 0001 C CNN +F 3 "" H 8050 2900 60 0001 C CNN + 1 8050 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68697E56 +P 1550 1150 +F 0 "U1" H 1600 1250 30 0000 C CNN +F 1 "PORT" H 1550 1150 30 0000 C CNN +F 2 "" H 1550 1150 60 0000 C CNN +F 3 "" H 1550 1150 60 0000 C CNN + 1 1550 1150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 68697EC9 +P 3500 3700 +F 0 "U1" H 3550 3800 30 0000 C CNN +F 1 "PORT" H 3500 3700 30 0000 C CNN +F 2 "" H 3500 3700 60 0000 C CNN +F 3 "" H 3500 3700 60 0000 C CNN + 8 3500 3700 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 2 1 6869826A +P 1600 2100 +F 0 "U1" H 1650 2200 30 0000 C CNN +F 1 "PORT" H 1600 2100 30 0000 C CNN +F 2 "" H 1600 2100 60 0000 C CNN +F 3 "" H 1600 2100 60 0000 C CNN + 2 1600 2100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68698527 +P 1700 1800 +F 0 "U1" H 1750 1900 30 0000 C CNN +F 1 "PORT" H 1700 1800 30 0000 C CNN +F 2 "" H 1700 1800 60 0000 C CNN +F 3 "" H 1700 1800 60 0000 C CNN + 3 1700 1800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68698765 +P 3200 1500 +F 0 "U1" H 3250 1600 30 0000 C CNN +F 1 "PORT" H 3200 1500 30 0000 C CNN +F 2 "" H 3200 1500 60 0000 C CNN +F 3 "" H 3200 1500 60 0000 C CNN + 6 3200 1500 + 1 0 0 -1 +$EndComp +Text Label 3450 1500 0 60 ~ 0 +A +Text Label 1950 1800 0 60 ~ 0 +B_bar +Text Label 1850 2100 0 60 ~ 0 +A_bar +Text Label 1800 1150 0 60 ~ 0 +Vd +Text Label 3500 3450 0 60 ~ 0 +Gnd +$Comp +L PORT U1 +U 14 1 68698C0E +P 5250 1600 +F 0 "U1" H 5300 1700 30 0000 C CNN +F 1 "PORT" H 5250 1600 30 0000 C CNN +F 2 "" H 5250 1600 60 0000 C CNN +F 3 "" H 5250 1600 60 0000 C CNN + 14 5250 1600 + -1 0 0 1 +$EndComp +Text Label 5000 1600 0 60 ~ 0 +B +$Comp +L PORT U1 +U 12 1 68699104 +P 4550 950 +F 0 "U1" H 4600 1050 30 0000 C CNN +F 1 "PORT" H 4550 950 30 0000 C CNN +F 2 "" H 4550 950 60 0000 C CNN +F 3 "" H 4550 950 60 0000 C CNN + 12 4550 950 + 1 0 0 -1 +$EndComp +Text Label 4800 1050 0 60 ~ 0 +C_bar +$Comp +L PORT U1 +U 11 1 686995D3 +P 4450 1800 +F 0 "U1" H 4500 1900 30 0000 C CNN +F 1 "PORT" H 4450 1800 30 0000 C CNN +F 2 "" H 4450 1800 60 0000 C CNN +F 3 "" H 4450 1800 60 0000 C CNN + 11 4450 1800 + 1 0 0 -1 +$EndComp +Text Label 4700 1900 0 60 ~ 0 +C +$Comp +L PORT U1 +U 4 1 6869A09B +P 3000 1600 +F 0 "U1" H 3050 1700 30 0000 C CNN +F 1 "PORT" H 3000 1600 30 0000 C CNN +F 2 "" H 3000 1600 60 0000 C CNN +F 3 "" H 3000 1600 60 0000 C CNN + 4 3000 1600 + 1 0 0 -1 +$EndComp +Text Label 3250 1600 0 60 ~ 0 +D_bar +$Comp +L PORT U1 +U 18 1 6869A296 +P 7250 3000 +F 0 "U1" H 7300 3100 30 0000 C CNN +F 1 "PORT" H 7250 3000 30 0000 C CNN +F 2 "" H 7250 3000 60 0000 C CNN +F 3 "" H 7250 3000 60 0000 C CNN + 18 7250 3000 + -1 0 0 1 +$EndComp +Text Label 6900 3000 0 60 ~ 0 +D +$Comp +L PORT U1 +U 5 1 6869A547 +P 3100 950 +F 0 "U1" H 3150 1050 30 0000 C CNN +F 1 "PORT" H 3100 950 30 0000 C CNN +F 2 "" H 3100 950 60 0000 C CNN +F 3 "" H 3100 950 60 0000 C CNN + 5 3100 950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 6869A7EA +P 4150 950 +F 0 "U1" H 4200 1050 30 0000 C CNN +F 1 "PORT" H 4150 950 30 0000 C CNN +F 2 "" H 4150 950 60 0000 C CNN +F 3 "" H 4150 950 60 0000 C CNN + 10 4150 950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2100 1150 1800 1150 +Wire Wire Line + 1800 800 1800 2000 +Wire Wire Line + 1800 800 6500 800 +Wire Wire Line + 6500 800 6500 1150 +Wire Wire Line + 1800 2000 2100 2000 +Connection ~ 1800 1150 +Wire Wire Line + 3600 1150 3500 1150 +Wire Wire Line + 3500 800 3500 2700 +Connection ~ 3500 800 +Wire Wire Line + 3500 2000 3600 2000 +Connection ~ 3500 1150 +Wire Wire Line + 5050 1150 4950 1150 +Wire Wire Line + 4950 800 4950 2000 +Connection ~ 4950 800 +Wire Wire Line + 4950 2000 5050 2000 +Connection ~ 4950 1150 +Wire Wire Line + 6500 2000 6400 2000 +Wire Wire Line + 6400 2000 6400 800 +Connection ~ 6400 800 +Wire Wire Line + 2950 2900 2950 2700 +Wire Wire Line + 2950 2700 5700 2700 +Connection ~ 3500 2000 +Wire Wire Line + 2650 1600 2650 1700 +Wire Wire Line + 2650 1700 7100 1700 +Wire Wire Line + 7100 1700 7100 2550 +Wire Wire Line + 7100 2550 2550 2550 +Wire Wire Line + 2550 2550 2550 3450 +Wire Wire Line + 2550 3450 6250 3450 +Wire Wire Line + 6250 3450 6250 3350 +Wire Wire Line + 3500 3350 3500 3450 +Connection ~ 3500 3450 +Wire Wire Line + 2650 2450 2650 2550 +Connection ~ 2650 2550 +Wire Wire Line + 4150 2450 4150 2550 +Connection ~ 4150 2550 +Wire Wire Line + 5600 2450 5600 2550 +Connection ~ 5600 2550 +Wire Wire Line + 7050 2450 7050 2550 +Connection ~ 7050 2550 +Wire Wire Line + 7000 1600 7000 1700 +Connection ~ 7000 1700 +Wire Wire Line + 5550 1600 5550 1700 +Connection ~ 5550 1700 +Wire Wire Line + 4100 1600 4100 1700 +Connection ~ 4100 1700 +Wire Wire Line + 5700 2700 5700 2900 +Connection ~ 3500 2700 +Wire Wire Line + 2100 1250 1850 1250 +Wire Wire Line + 1850 1250 1850 3000 +Wire Wire Line + 1850 2100 2100 2100 +Wire Wire Line + 5050 1250 4900 1250 +Wire Wire Line + 4900 1250 4900 2100 +Wire Wire Line + 4900 2100 5050 2100 +Wire Wire Line + 4900 1750 1850 1750 +Connection ~ 1850 1750 +Connection ~ 4900 1750 +Wire Wire Line + 1850 3000 2950 3000 +Connection ~ 1850 2100 +Wire Wire Line + 2100 1350 1950 1350 +Wire Wire Line + 1950 1350 1950 3200 +Wire Wire Line + 1950 2200 2100 2200 +Wire Wire Line + 3600 1350 3550 1350 +Wire Wire Line + 3550 1350 3550 2200 +Wire Wire Line + 3550 2200 3600 2200 +Wire Wire Line + 1950 1800 3550 1800 +Connection ~ 3550 1800 +Connection ~ 1950 1800 +Wire Wire Line + 5700 3100 5700 3200 +Wire Wire Line + 5700 3200 1950 3200 +Connection ~ 1950 2200 +Wire Wire Line + 2950 3100 2950 3200 +Connection ~ 2950 3200 +Wire Wire Line + 3600 1250 3450 1250 +Wire Wire Line + 3450 1250 3450 2100 +Wire Wire Line + 3450 2100 3600 2100 +Wire Wire Line + 6500 1250 6450 1250 +Wire Wire Line + 6450 1250 6450 2100 +Wire Wire Line + 6450 2100 6500 2100 +Wire Wire Line + 3450 1500 6450 1500 +Connection ~ 6450 1500 +Connection ~ 3450 1500 +Wire Wire Line + 5700 3000 4850 3000 +Wire Wire Line + 4850 3000 4850 1500 +Connection ~ 4850 1500 +Wire Wire Line + 5050 1350 5000 1350 +Wire Wire Line + 5000 1350 5000 2200 +Wire Wire Line + 5000 2200 5050 2200 +Wire Wire Line + 6500 1350 6350 1350 +Wire Wire Line + 6350 1350 6350 2200 +Wire Wire Line + 6350 2200 6500 2200 +Wire Wire Line + 6350 1600 5000 1600 +Connection ~ 5000 1600 +Connection ~ 6350 1600 +Wire Wire Line + 3200 1150 3200 1050 +Wire Wire Line + 3200 1050 7550 1050 +Wire Wire Line + 7550 1050 7550 1150 +Wire Wire Line + 4100 2900 4100 2800 +Wire Wire Line + 4100 2800 6800 2800 +Wire Wire Line + 6800 2800 6800 2900 +Wire Wire Line + 4800 950 4800 2800 +Connection ~ 4800 2800 +Connection ~ 4800 1050 +Wire Wire Line + 4650 1150 4650 1050 +Connection ~ 4650 1050 +Wire Wire Line + 6100 1150 6100 1050 +Connection ~ 6100 1050 +Wire Wire Line + 3200 2000 3200 1900 +Wire Wire Line + 3200 1900 7600 1900 +Wire Wire Line + 7600 1900 7600 2000 +Wire Wire Line + 6150 2000 6150 1900 +Connection ~ 6150 1900 +Wire Wire Line + 4700 1800 4700 2000 +Connection ~ 4700 1900 +Wire Wire Line + 3200 1250 3250 1250 +Wire Wire Line + 3250 1250 3250 2100 +Wire Wire Line + 3250 2100 3200 2100 +Wire Wire Line + 4650 1250 4750 1250 +Wire Wire Line + 4750 1250 4750 2100 +Wire Wire Line + 4750 2100 4700 2100 +Wire Wire Line + 6100 1250 6250 1250 +Wire Wire Line + 6250 1250 6250 2100 +Wire Wire Line + 6250 2100 6150 2100 +Wire Wire Line + 7550 1250 7650 1250 +Wire Wire Line + 7650 1250 7650 2100 +Wire Wire Line + 7650 2100 7600 2100 +Wire Wire Line + 3250 1600 4600 1600 +Wire Wire Line + 4600 1600 4600 1450 +Wire Wire Line + 4600 1450 7650 1450 +Connection ~ 7650 1450 +Connection ~ 3250 1600 +Connection ~ 6250 1450 +Connection ~ 4750 1450 +Wire Wire Line + 4100 3000 4200 3000 +Wire Wire Line + 4200 3000 4200 2650 +Wire Wire Line + 4200 2650 6900 2650 +Wire Wire Line + 6900 2650 6900 3000 +Wire Wire Line + 6800 3000 7000 3000 +Connection ~ 6900 3000 +Wire Wire Line + 3350 950 3350 1350 +Wire Wire Line + 3350 1350 3200 1350 +Wire Wire Line + 4400 950 4700 950 +Wire Wire Line + 4700 950 4700 1350 +Wire Wire Line + 4700 1350 4650 1350 +$Comp +L PORT U1 +U 15 1 6869A9FB +P 5950 950 +F 0 "U1" H 6000 1050 30 0000 C CNN +F 1 "PORT" H 5950 950 30 0000 C CNN +F 2 "" H 5950 950 60 0000 C CNN +F 3 "" H 5950 950 60 0000 C CNN + 15 5950 950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6200 950 6200 1350 +Wire Wire Line + 6200 1350 6100 1350 +$Comp +L PORT U1 +U 19 1 6869AC25 +P 7800 1350 +F 0 "U1" H 7850 1450 30 0000 C CNN +F 1 "PORT" H 7800 1350 30 0000 C CNN +F 2 "" H 7800 1350 60 0000 C CNN +F 3 "" H 7800 1350 60 0000 C CNN + 19 7800 1350 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 20 1 6869ACEC +P 7850 2200 +F 0 "U1" H 7900 2300 30 0000 C CNN +F 1 "PORT" H 7850 2200 30 0000 C CNN +F 2 "" H 7850 2200 60 0000 C CNN +F 3 "" H 7850 2200 60 0000 C CNN + 20 7850 2200 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 16 1 6869ADC5 +P 6150 2450 +F 0 "U1" H 6200 2550 30 0000 C CNN +F 1 "PORT" H 6150 2450 30 0000 C CNN +F 2 "" H 6150 2450 60 0000 C CNN +F 3 "" H 6150 2450 60 0000 C CNN + 16 6150 2450 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 13 1 6869AF77 +P 4700 2450 +F 0 "U1" H 4750 2550 30 0000 C CNN +F 1 "PORT" H 4700 2450 30 0000 C CNN +F 2 "" H 4700 2450 60 0000 C CNN +F 3 "" H 4700 2450 60 0000 C CNN + 13 4700 2450 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 7 1 6869B03E +P 3200 2450 +F 0 "U1" H 3250 2550 30 0000 C CNN +F 1 "PORT" H 3200 2450 30 0000 C CNN +F 2 "" H 3200 2450 60 0000 C CNN +F 3 "" H 3200 2450 60 0000 C CNN + 7 3200 2450 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 9 1 6869B11E +P 4100 3350 +F 0 "U1" H 4150 3450 30 0000 C CNN +F 1 "PORT" H 4100 3350 30 0000 C CNN +F 2 "" H 4100 3350 60 0000 C CNN +F 3 "" H 4100 3350 60 0000 C CNN + 9 4100 3350 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 17 1 6869B205 +P 6800 3350 +F 0 "U1" H 6850 3450 30 0000 C CNN +F 1 "PORT" H 6800 3350 30 0000 C CNN +F 2 "" H 6800 3350 60 0000 C CNN +F 3 "" H 6800 3350 60 0000 C CNN + 17 6800 3350 + 0 -1 -1 0 +$EndComp +$Comp +L Y8 X3 +U 1 1 68695022 +P 3500 3000 +F 0 "X3" H 3500 3100 60 0000 C CNN +F 1 "Y8" H 3450 2800 60 0000 C CNN +F 2 "" H 3500 3000 60 0001 C CNN +F 3 "" H 3500 3000 60 0001 C CNN + 1 3500 3000 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.sub b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.sub new file mode 100644 index 000000000..5a8530dc2 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP.sub @@ -0,0 +1,29 @@ +* Subcircuit TC74HC4028AP +.subckt TC74HC4028AP /vd /a_bar /b_bar /d_bar net-_u1-pad5_ /a net-_u1-pad7_ /gnd net-_u1-pad9_ net-_u1-pad10_ /c /c_bar net-_u1-pad13_ /b net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ /d net-_u1-pad19_ net-_u1-pad20_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/tc74hc4028ap/tc74hc4028ap.cir +.include Y5.sub +.include Y1.sub +.include Y2.sub +.include Y8.sub +.include Y4.sub +.include Y9.sub +.include Y7.sub +.include Y3.sub +.include Y6.sub +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 /a_bar /b_bar /gnd /vd net-_u1-pad5_ /c_bar /d_bar Y0 +x4 /vd /a /b_bar /gnd /c_bar /d_bar net-_u1-pad10_ Y1 +x6 /vd /a_bar /b /gnd /c_bar /d_bar net-_u1-pad15_ Y2 +x9 /vd /a /b /gnd /c_bar /d_bar net-_u1-pad19_ Y3 +x2 /vd /a_bar /b_bar /gnd /c /d_bar net-_u1-pad7_ Y4 +x5 /vd /a /b_bar /gnd /c /d_bar net-_u1-pad13_ Y5 +x7 /vd /a_bar /b /gnd /c /d_bar net-_u1-pad16_ Y6 +x10 /vd /a /b /gnd /c /d_bar net-_u1-pad20_ Y7 +x8 /vd /a /b_bar /gnd /c_bar /d net-_u1-pad17_ Y9 +* s c m o d e +x3 /vd /a_bar /b_bar /gnd /c_bar /d net-_u1-pad9_ Y8 +* Control Statements + +.ends TC74HC4028AP diff --git a/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP_Previous_Values.xml new file mode 100644 index 000000000..c9c66b6e4 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/TC74HC4028AP_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y1/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y2/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y3/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y4/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y5/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y6/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y7/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y9/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y8truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y0-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/Y0-cache.lib new file mode 100644 index 000000000..b57744f64 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y0-cache.lib @@ -0,0 +1,110 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# sky130_fd_pr__nfet_01v8 +# +DEF sky130_fd_pr__nfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__nfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 0 2 -200 0 25 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 150 -175 N +P 2 0 0 2 75 175 200 175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 150 -150 200 -175 150 -200 150 -150 F +P 4 0 0 1 200 25 150 0 200 -25 200 25 F +X D 1 200 300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 -300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +# sky130_fd_pr__pfet_01v8 +# +DEF sky130_fd_pr__pfet_01v8 SC 0 20 Y N 1 F N +F0 "SC" 50 300 50 H V C CNN +F1 "sky130_fd_pr__pfet_01v8" 300 87 50 H V R CNN +F2 "" 0 -1500 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +A -25 0 50 0 600 0 0 1 N 25 0 0 43 +A -25 0 50 600 1200 0 0 1 N 0 43 -50 43 +A -25 0 50 1200 1800 0 0 1 N -50 43 -75 0 +A -25 0 50 1800 -1200 0 0 1 N -75 0 -50 -43 +A -25 0 50 -1200 -600 0 0 1 N -50 -43 0 -43 +A -25 0 50 -600 0 0 0 1 N 0 -43 25 0 +P 2 0 0 2 -200 0 -75 0 N +P 2 0 0 2 25 150 25 -150 N +P 2 0 0 2 75 -175 200 -175 N +P 2 0 0 2 75 225 75 -225 N +P 2 0 0 2 125 175 200 175 N +P 2 0 0 2 200 -175 200 -300 N +P 2 0 0 2 200 300 200 175 N +P 4 0 0 1 125 200 75 175 125 150 125 200 F +P 4 0 0 1 150 25 200 0 150 -25 150 25 F +X D 1 200 -300 5 R 50 43 1 1 B +X G 2 -300 0 100 R 50 43 1 1 I +X S 3 200 300 5 R 50 43 1 1 B +X B 4 100 0 100 R 50 43 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y0.bak b/library/SubcircuitLibrary/TC74HC4028AP/Y0.bak new file mode 100644 index 000000000..39c2c4129 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y0.bak @@ -0,0 +1,330 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 68676C8E +P 3950 1650 +F 0 "SC1" H 4000 1950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4250 1737 50 0000 R CNN +F 2 "" H 3950 150 50 0001 C CNN +F 3 "" H 3950 1650 50 0001 C CNN + 1 3950 1650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 68676CCD +P 4900 1650 +F 0 "SC2" H 4950 1950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5200 1737 50 0000 R CNN +F 2 "" H 4900 150 50 0001 C CNN +F 3 "" H 4900 1650 50 0001 C CNN + 1 4900 1650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC7 +U 1 1 68676D7A +P 5500 1650 +F 0 "SC7" H 5550 1950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5800 1737 50 0000 R CNN +F 2 "" H 5500 150 50 0001 C CNN +F 3 "" H 5500 1650 50 0001 C CNN + 1 5500 1650 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC8 +U 1 1 68676DC9 +P 6450 1650 +F 0 "SC8" H 6500 1950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6750 1737 50 0000 R CNN +F 2 "" H 6450 150 50 0001 C CNN +F 3 "" H 6450 1650 50 0001 C CNN + 1 6450 1650 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 68676F1A +P 5000 2500 +F 0 "SC3" H 5050 2800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5300 2587 50 0000 R CNN +F 2 "" H 5000 1000 50 0001 C CNN +F 3 "" H 5000 2500 50 0001 C CNN + 1 5000 2500 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 68676F92 +P 5000 3150 +F 0 "SC4" H 5050 3450 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5300 3237 50 0000 R CNN +F 2 "" H 5000 1650 50 0001 C CNN +F 3 "" H 5000 3150 50 0001 C CNN + 1 5000 3150 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 68676FE3 +P 5400 3800 +F 0 "SC5" H 5450 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5700 3887 50 0000 R CNN +F 2 "" H 5400 2300 50 0001 C CNN +F 3 "" H 5400 3800 50 0001 C CNN + 1 5400 3800 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC6 +U 1 1 68677050 +P 5400 4450 +F 0 "SC6" H 5450 4750 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5700 4537 50 0000 R CNN +F 2 "" H 5400 2950 50 0001 C CNN +F 3 "" H 5400 4450 50 0001 C CNN + 1 5400 4450 + -1 0 0 -1 +$EndComp +Connection ~ 6200 1300 +Wire Wire Line + 6200 1650 6200 1300 +Wire Wire Line + 6350 1650 6200 1650 +Connection ~ 4200 1300 +Wire Wire Line + 4200 1650 4200 1300 +Wire Wire Line + 4050 1650 4200 1650 +Connection ~ 5250 1300 +Wire Wire Line + 5250 1650 5250 1300 +Wire Wire Line + 5400 1650 5250 1650 +Connection ~ 5150 1300 +Wire Wire Line + 5150 1650 5150 1300 +Wire Wire Line + 5000 1650 5150 1650 +Connection ~ 5300 1300 +Wire Wire Line + 5300 1350 5300 1300 +Connection ~ 5100 1300 +Wire Wire Line + 5100 1350 5100 1300 +Wire Wire Line + 6250 1300 6250 1350 +Wire Wire Line + 4150 1300 6250 1300 +Wire Wire Line + 4150 1350 4150 1300 +Wire Wire Line + 5200 4100 5200 4150 +Wire Wire Line + 5200 3450 5200 3500 +Wire Wire Line + 5200 2800 5200 2850 +Connection ~ 5200 2000 +Wire Wire Line + 5200 2200 5200 2000 +Connection ~ 5300 2000 +Wire Wire Line + 5300 1950 5300 2000 +Connection ~ 5100 2000 +Wire Wire Line + 5100 1950 5100 2000 +Wire Wire Line + 6250 2000 6250 1950 +Wire Wire Line + 4150 2000 6250 2000 +Wire Wire Line + 4150 1950 4150 2000 +Wire Wire Line + 5100 2500 5250 2500 +Wire Wire Line + 5250 2500 5250 3550 +Wire Wire Line + 5250 3550 5100 3550 +Wire Wire Line + 5100 3550 5100 4750 +Wire Wire Line + 5050 4750 5200 4750 +Wire Wire Line + 5300 4450 5100 4450 +Connection ~ 5100 4450 +Wire Wire Line + 5300 3800 5100 3800 +Connection ~ 5100 3800 +Wire Wire Line + 5100 3150 5250 3150 +Connection ~ 5250 3150 +Wire Wire Line + 3650 1650 3650 2500 +Wire Wire Line + 3650 2500 4700 2500 +Wire Wire Line + 4700 3150 4500 3150 +Wire Wire Line + 4500 3150 4500 1650 +Wire Wire Line + 4500 1650 4600 1650 +Wire Wire Line + 5800 1650 5800 3800 +Wire Wire Line + 5800 3800 5700 3800 +Wire Wire Line + 5700 4450 6750 4450 +Wire Wire Line + 6750 4450 6750 1650 +$Comp +L PORT U1 +U 1 1 68677A45 +P 3350 1850 +F 0 "U1" H 3400 1950 30 0000 C CNN +F 1 "PORT" H 3350 1850 30 0000 C CNN +F 2 "" H 3350 1850 60 0000 C CNN +F 3 "" H 3350 1850 60 0000 C CNN + 1 3350 1850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68677B5F +P 4200 2150 +F 0 "U1" H 4250 2250 30 0000 C CNN +F 1 "PORT" H 4200 2150 30 0000 C CNN +F 2 "" H 4200 2150 60 0000 C CNN +F 3 "" H 4200 2150 60 0000 C CNN + 2 4200 2150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68677BC8 +P 5650 2100 +F 0 "U1" H 5700 2200 30 0000 C CNN +F 1 "PORT" H 5650 2100 30 0000 C CNN +F 2 "" H 5650 2100 60 0000 C CNN +F 3 "" H 5650 2100 60 0000 C CNN + 5 5650 2100 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68677C7B +P 6100 2850 +F 0 "U1" H 6150 2950 30 0000 C CNN +F 1 "PORT" H 6100 2850 30 0000 C CNN +F 2 "" H 6100 2850 60 0000 C CNN +F 3 "" H 6100 2850 60 0000 C CNN + 6 6100 2850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 68677D10 +P 6450 2850 +F 0 "U1" H 6500 2950 30 0000 C CNN +F 1 "PORT" H 6450 2850 30 0000 C CNN +F 2 "" H 6450 2850 60 0000 C CNN +F 3 "" H 6450 2850 60 0000 C CNN + 7 6450 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68677DD2 +P 4800 4750 +F 0 "U1" H 4850 4850 30 0000 C CNN +F 1 "PORT" H 4800 4750 30 0000 C CNN +F 2 "" H 4800 4750 60 0000 C CNN +F 3 "" H 4800 4750 60 0000 C CNN + 3 4800 4750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68677EED +P 4950 1200 +F 0 "U1" H 5000 1300 30 0000 C CNN +F 1 "PORT" H 4950 1200 30 0000 C CNN +F 2 "" H 4950 1200 60 0000 C CNN +F 3 "" H 4950 1200 60 0000 C CNN + 4 4950 1200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5200 1200 5200 1300 +Connection ~ 5200 1300 +Wire Wire Line + 3600 1850 3650 1850 +Connection ~ 3650 1850 +Wire Wire Line + 4450 2150 4500 2150 +Connection ~ 4500 2150 +Wire Wire Line + 5400 2100 5200 2100 +Connection ~ 5200 2100 +Wire Wire Line + 5850 2850 5800 2850 +Connection ~ 5800 2850 +Wire Wire Line + 6700 2850 6750 2850 +Connection ~ 6750 2850 +Connection ~ 5100 4750 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y0.cir b/library/SubcircuitLibrary/TC74HC4028AP/Y0.cir new file mode 100644 index 000000000..622527f5c --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y0.cir @@ -0,0 +1,20 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0/Y0.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 11:46:28 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +SC1 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC2 Net-_SC1-Pad1_ Net-_SC2-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC7 Net-_SC1-Pad1_ Net-_SC5-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC8 Net-_SC1-Pad1_ Net-_SC6-Pad2_ Net-_SC1-Pad3_ Net-_SC1-Pad3_ sky130_fd_pr__pfet_01v8 +SC3 Net-_SC1-Pad1_ Net-_SC1-Pad2_ Net-_SC3-Pad3_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +SC4 Net-_SC3-Pad3_ Net-_SC2-Pad2_ Net-_SC4-Pad3_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +SC5 Net-_SC4-Pad3_ Net-_SC5-Pad2_ Net-_SC5-Pad3_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +SC6 Net-_SC5-Pad3_ Net-_SC6-Pad2_ Net-_SC3-Pad4_ Net-_SC3-Pad4_ sky130_fd_pr__nfet_01v8 +U1 Net-_SC1-Pad2_ Net-_SC2-Pad2_ Net-_SC3-Pad4_ Net-_SC1-Pad3_ Net-_SC1-Pad1_ Net-_SC5-Pad2_ Net-_SC6-Pad2_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y0.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/Y0.cir.out new file mode 100644 index 000000000..7eb8fc0d0 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y0.cir.out @@ -0,0 +1,23 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y0/y0.cir + +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc7 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc1-pad1_ net-_sc6-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad3_ net-_sc2-pad2_ net-_sc4-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc4-pad3_ net-_sc5-pad2_ net-_sc5-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc5-pad3_ net-_sc6-pad2_ net-_sc3-pad4_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* u1 net-_sc1-pad2_ net-_sc2-pad2_ net-_sc3-pad4_ net-_sc1-pad3_ net-_sc1-pad1_ net-_sc5-pad2_ net-_sc6-pad2_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y0.pro b/library/SubcircuitLibrary/TC74HC4028AP/Y0.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y0.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y0.sch b/library/SubcircuitLibrary/TC74HC4028AP/Y0.sch new file mode 100644 index 000000000..ed74e0c7b --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y0.sch @@ -0,0 +1,341 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L sky130_fd_pr__pfet_01v8 SC1 +U 1 1 68676C8E +P 3950 1650 +F 0 "SC1" H 4000 1950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 4250 1737 50 0000 R CNN +F 2 "" H 3950 150 50 0001 C CNN +F 3 "" H 3950 1650 50 0001 C CNN + 1 3950 1650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC2 +U 1 1 68676CCD +P 4900 1650 +F 0 "SC2" H 4950 1950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5200 1737 50 0000 R CNN +F 2 "" H 4900 150 50 0001 C CNN +F 3 "" H 4900 1650 50 0001 C CNN + 1 4900 1650 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC7 +U 1 1 68676D7A +P 5500 1650 +F 0 "SC7" H 5550 1950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 5800 1737 50 0000 R CNN +F 2 "" H 5500 150 50 0001 C CNN +F 3 "" H 5500 1650 50 0001 C CNN + 1 5500 1650 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__pfet_01v8 SC8 +U 1 1 68676DC9 +P 6450 1650 +F 0 "SC8" H 6500 1950 50 0000 C CNN +F 1 "sky130_fd_pr__pfet_01v8" H 6750 1737 50 0000 R CNN +F 2 "" H 6450 150 50 0001 C CNN +F 3 "" H 6450 1650 50 0001 C CNN + 1 6450 1650 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC3 +U 1 1 68676F1A +P 5000 2500 +F 0 "SC3" H 5050 2800 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5300 2587 50 0000 R CNN +F 2 "" H 5000 1000 50 0001 C CNN +F 3 "" H 5000 2500 50 0001 C CNN + 1 5000 2500 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC4 +U 1 1 68676F92 +P 5000 3150 +F 0 "SC4" H 5050 3450 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5300 3237 50 0000 R CNN +F 2 "" H 5000 1650 50 0001 C CNN +F 3 "" H 5000 3150 50 0001 C CNN + 1 5000 3150 + 1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC5 +U 1 1 68676FE3 +P 5400 3800 +F 0 "SC5" H 5450 4100 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5700 3887 50 0000 R CNN +F 2 "" H 5400 2300 50 0001 C CNN +F 3 "" H 5400 3800 50 0001 C CNN + 1 5400 3800 + -1 0 0 -1 +$EndComp +$Comp +L sky130_fd_pr__nfet_01v8 SC6 +U 1 1 68677050 +P 5400 4450 +F 0 "SC6" H 5450 4750 50 0000 C CNN +F 1 "sky130_fd_pr__nfet_01v8" H 5700 4537 50 0000 R CNN +F 2 "" H 5400 2950 50 0001 C CNN +F 3 "" H 5400 4450 50 0001 C CNN + 1 5400 4450 + -1 0 0 -1 +$EndComp +Connection ~ 6200 1300 +Wire Wire Line + 6200 1650 6200 1300 +Wire Wire Line + 6350 1650 6200 1650 +Connection ~ 4200 1300 +Wire Wire Line + 4200 1650 4200 1300 +Wire Wire Line + 4050 1650 4200 1650 +Connection ~ 5250 1300 +Wire Wire Line + 5250 1650 5250 1300 +Wire Wire Line + 5400 1650 5250 1650 +Connection ~ 5150 1300 +Wire Wire Line + 5150 1650 5150 1300 +Wire Wire Line + 5000 1650 5150 1650 +Connection ~ 5300 1300 +Wire Wire Line + 5300 1350 5300 1300 +Connection ~ 5100 1300 +Wire Wire Line + 5100 1350 5100 1300 +Wire Wire Line + 6250 1300 6250 1350 +Wire Wire Line + 4150 1300 6250 1300 +Wire Wire Line + 4150 1350 4150 1300 +Wire Wire Line + 5200 4100 5200 4150 +Wire Wire Line + 5200 3450 5200 3500 +Wire Wire Line + 5200 2800 5200 2850 +Connection ~ 5200 2000 +Wire Wire Line + 5200 2200 5200 2000 +Connection ~ 5300 2000 +Wire Wire Line + 5300 1950 5300 2000 +Connection ~ 5100 2000 +Wire Wire Line + 5100 1950 5100 2000 +Wire Wire Line + 6250 2000 6250 1950 +Wire Wire Line + 4150 2000 6250 2000 +Wire Wire Line + 4150 1950 4150 2000 +Wire Wire Line + 5100 2500 5250 2500 +Wire Wire Line + 5250 2500 5250 3550 +Wire Wire Line + 5250 3550 5100 3550 +Wire Wire Line + 5100 3550 5100 4750 +Wire Wire Line + 5050 4750 5200 4750 +Wire Wire Line + 5300 4450 5100 4450 +Connection ~ 5100 4450 +Wire Wire Line + 5300 3800 5100 3800 +Connection ~ 5100 3800 +Wire Wire Line + 5100 3150 5250 3150 +Connection ~ 5250 3150 +Wire Wire Line + 3650 1650 3650 2500 +Wire Wire Line + 3650 2500 4700 2500 +Wire Wire Line + 4700 3150 4500 3150 +Wire Wire Line + 4500 3150 4500 1650 +Wire Wire Line + 4500 1650 4600 1650 +Wire Wire Line + 5800 1650 5800 3800 +Wire Wire Line + 5800 3800 5700 3800 +Wire Wire Line + 5700 4450 6750 4450 +Wire Wire Line + 6750 4450 6750 1650 +$Comp +L PORT U1 +U 1 1 68677A45 +P 3350 1850 +F 0 "U1" H 3400 1950 30 0000 C CNN +F 1 "PORT" H 3350 1850 30 0000 C CNN +F 2 "" H 3350 1850 60 0000 C CNN +F 3 "" H 3350 1850 60 0000 C CNN + 1 3350 1850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68677B5F +P 4200 2150 +F 0 "U1" H 4250 2250 30 0000 C CNN +F 1 "PORT" H 4200 2150 30 0000 C CNN +F 2 "" H 4200 2150 60 0000 C CNN +F 3 "" H 4200 2150 60 0000 C CNN + 2 4200 2150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68677BC8 +P 5650 2100 +F 0 "U1" H 5700 2200 30 0000 C CNN +F 1 "PORT" H 5650 2100 30 0000 C CNN +F 2 "" H 5650 2100 60 0000 C CNN +F 3 "" H 5650 2100 60 0000 C CNN + 5 5650 2100 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68677C7B +P 6100 2850 +F 0 "U1" H 6150 2950 30 0000 C CNN +F 1 "PORT" H 6100 2850 30 0000 C CNN +F 2 "" H 6100 2850 60 0000 C CNN +F 3 "" H 6100 2850 60 0000 C CNN + 6 6100 2850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 68677D10 +P 6450 2850 +F 0 "U1" H 6500 2950 30 0000 C CNN +F 1 "PORT" H 6450 2850 30 0000 C CNN +F 2 "" H 6450 2850 60 0000 C CNN +F 3 "" H 6450 2850 60 0000 C CNN + 7 6450 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68677DD2 +P 4800 4750 +F 0 "U1" H 4850 4850 30 0000 C CNN +F 1 "PORT" H 4800 4750 30 0000 C CNN +F 2 "" H 4800 4750 60 0000 C CNN +F 3 "" H 4800 4750 60 0000 C CNN + 3 4800 4750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68677EED +P 4950 1200 +F 0 "U1" H 5000 1300 30 0000 C CNN +F 1 "PORT" H 4950 1200 30 0000 C CNN +F 2 "" H 4950 1200 60 0000 C CNN +F 3 "" H 4950 1200 60 0000 C CNN + 4 4950 1200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5200 1200 5200 1300 +Connection ~ 5200 1300 +Wire Wire Line + 3600 1850 3650 1850 +Connection ~ 3650 1850 +Wire Wire Line + 4450 2150 4500 2150 +Connection ~ 4500 2150 +Wire Wire Line + 5400 2100 5200 2100 +Connection ~ 5200 2100 +Wire Wire Line + 5850 2850 5800 2850 +Connection ~ 5800 2850 +Wire Wire Line + 6700 2850 6750 2850 +Connection ~ 6750 2850 +Connection ~ 5100 4750 +$Comp +L SKY130mode scmode1 +U 1 1 686789A5 +P 8950 2600 +F 0 "scmode1" H 8950 2750 98 0000 C CNB +F 1 "SKY130mode" H 8950 2500 118 0000 C CNB +F 2 "" H 8950 2750 60 0001 C CNN +F 3 "" H 8950 2750 60 0001 C CNN + 1 8950 2600 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y0.sub b/library/SubcircuitLibrary/TC74HC4028AP/Y0.sub new file mode 100644 index 000000000..8fa0310cb --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y0.sub @@ -0,0 +1,17 @@ +* Subcircuit Y0 +.subckt Y0 net-_sc1-pad2_ net-_sc2-pad2_ net-_sc3-pad4_ net-_sc1-pad3_ net-_sc1-pad1_ net-_sc5-pad2_ net-_sc6-pad2_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y0/y0.cir +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +xsc1 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc2 net-_sc1-pad1_ net-_sc2-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc7 net-_sc1-pad1_ net-_sc5-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc8 net-_sc1-pad1_ net-_sc6-pad2_ net-_sc1-pad3_ net-_sc1-pad3_ sky130_fd_pr__pfet_01v8 w=3 l=0.15 +xsc3 net-_sc1-pad1_ net-_sc1-pad2_ net-_sc3-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc4 net-_sc3-pad3_ net-_sc2-pad2_ net-_sc4-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc5 net-_sc4-pad3_ net-_sc5-pad2_ net-_sc5-pad3_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +xsc6 net-_sc5-pad3_ net-_sc6-pad2_ net-_sc3-pad4_ net-_sc3-pad4_ sky130_fd_pr__nfet_01v8 w=1 l=0.15 +* s c m o d e +* Control Statements + +.ends Y0 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y0_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/Y0_Previous_Values.xml new file mode 100644 index 000000000..0520033b7 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y0_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicettw=3 l=0.15w=3 l=0.15w=3 l=0.15w=3 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15w=1 l=0.15truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y1-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/Y1-cache.lib new file mode 100644 index 000000000..25c3aaccc --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y1-cache.lib @@ -0,0 +1,75 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Y0 +# +DEF Y0 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y0" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X A_bar 1 -550 0 200 R 50 50 1 1 I +X B_bar 2 -550 -100 200 R 50 50 1 1 I +X Gnd 3 0 -350 200 U 50 50 1 1 I +X Vdd 4 -550 100 200 R 50 50 1 1 I +X Y0 5 550 -100 200 L 50 50 1 1 O +X C_bar 6 550 100 200 L 50 50 1 1 I +X D_bar 7 550 0 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y1.bak b/library/SubcircuitLibrary/TC74HC4028AP/Y1.bak new file mode 100644 index 000000000..d72313891 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y1.bak @@ -0,0 +1,155 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 6868C462 +P 5500 2950 +F 0 "X1" H 5500 3050 60 0000 C CNN +F 1 "Y0" H 5450 2750 60 0000 C CNN +F 2 "" H 5500 2950 60 0001 C CNN +F 3 "" H 5500 2950 60 0001 C CNN + 1 5500 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 6868C694 +P 4700 2850 +F 0 "U1" H 4750 2950 30 0000 C CNN +F 1 "PORT" H 4700 2850 30 0000 C CNN +F 2 "" H 4700 2850 60 0000 C CNN +F 3 "" H 4700 2850 60 0000 C CNN + 1 4700 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 6868C6F5 +P 4700 2950 +F 0 "U1" H 4750 3050 30 0000 C CNN +F 1 "PORT" H 4700 2950 30 0000 C CNN +F 2 "" H 4700 2950 60 0000 C CNN +F 3 "" H 4700 2950 60 0000 C CNN + 2 4700 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6868C7FF +P 4700 3050 +F 0 "U1" H 4750 3150 30 0000 C CNN +F 1 "PORT" H 4700 3050 30 0000 C CNN +F 2 "" H 4700 3050 60 0000 C CNN +F 3 "" H 4700 3050 60 0000 C CNN + 3 4700 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 6868C83E +P 6300 2850 +F 0 "U1" H 6350 2950 30 0000 C CNN +F 1 "PORT" H 6300 2850 30 0000 C CNN +F 2 "" H 6300 2850 60 0000 C CNN +F 3 "" H 6300 2850 60 0000 C CNN + 5 6300 2850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 6868C889 +P 6300 2950 +F 0 "U1" H 6350 3050 30 0000 C CNN +F 1 "PORT" H 6300 2950 30 0000 C CNN +F 2 "" H 6300 2950 60 0000 C CNN +F 3 "" H 6300 2950 60 0000 C CNN + 6 6300 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 6868C8CC +P 6300 3050 +F 0 "U1" H 6350 3150 30 0000 C CNN +F 1 "PORT" H 6300 3050 30 0000 C CNN +F 2 "" H 6300 3050 60 0000 C CNN +F 3 "" H 6300 3050 60 0000 C CNN + 7 6300 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 6868C920 +P 5250 3300 +F 0 "U1" H 5300 3400 30 0000 C CNN +F 1 "PORT" H 5250 3300 30 0000 C CNN +F 2 "" H 5250 3300 60 0000 C CNN +F 3 "" H 5250 3300 60 0000 C CNN + 4 5250 3300 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode? +U 1 1 6868C9C1 +P 7500 3100 +F 0 "scmode?" H 7500 3250 98 0000 C CNB +F 1 "SKY130mode" H 7500 3000 118 0000 C CNB +F 2 "" H 7500 3250 60 0001 C CNN +F 3 "" H 7500 3250 60 0001 C CNN + 1 7500 3100 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y1.cir b/library/SubcircuitLibrary/TC74HC4028AP/Y1.cir new file mode 100644 index 000000000..e63cff5a1 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y1.cir @@ -0,0 +1,13 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y1/Y1.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 12:02:16 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_U1-Pad6_ Y0 +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y1.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/Y1.cir.out new file mode 100644 index 000000000..1e95076e7 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y1.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y1/y1.cir + +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y1.pro b/library/SubcircuitLibrary/TC74HC4028AP/Y1.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y1.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y1.sch b/library/SubcircuitLibrary/TC74HC4028AP/Y1.sch new file mode 100644 index 000000000..8a315c74f --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y1.sch @@ -0,0 +1,155 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 6868C462 +P 5500 2950 +F 0 "X1" H 5500 3050 60 0000 C CNN +F 1 "Y0" H 5450 2750 60 0000 C CNN +F 2 "" H 5500 2950 60 0001 C CNN +F 3 "" H 5500 2950 60 0001 C CNN + 1 5500 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 6868C694 +P 4700 2850 +F 0 "U1" H 4750 2950 30 0000 C CNN +F 1 "PORT" H 4700 2850 30 0000 C CNN +F 2 "" H 4700 2850 60 0000 C CNN +F 3 "" H 4700 2850 60 0000 C CNN + 1 4700 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 6868C6F5 +P 4700 2950 +F 0 "U1" H 4750 3050 30 0000 C CNN +F 1 "PORT" H 4700 2950 30 0000 C CNN +F 2 "" H 4700 2950 60 0000 C CNN +F 3 "" H 4700 2950 60 0000 C CNN + 2 4700 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6868C7FF +P 4700 3050 +F 0 "U1" H 4750 3150 30 0000 C CNN +F 1 "PORT" H 4700 3050 30 0000 C CNN +F 2 "" H 4700 3050 60 0000 C CNN +F 3 "" H 4700 3050 60 0000 C CNN + 3 4700 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 6868C83E +P 6300 2850 +F 0 "U1" H 6350 2950 30 0000 C CNN +F 1 "PORT" H 6300 2850 30 0000 C CNN +F 2 "" H 6300 2850 60 0000 C CNN +F 3 "" H 6300 2850 60 0000 C CNN + 5 6300 2850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 6868C889 +P 6300 2950 +F 0 "U1" H 6350 3050 30 0000 C CNN +F 1 "PORT" H 6300 2950 30 0000 C CNN +F 2 "" H 6300 2950 60 0000 C CNN +F 3 "" H 6300 2950 60 0000 C CNN + 6 6300 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 6868C8CC +P 6300 3050 +F 0 "U1" H 6350 3150 30 0000 C CNN +F 1 "PORT" H 6300 3050 30 0000 C CNN +F 2 "" H 6300 3050 60 0000 C CNN +F 3 "" H 6300 3050 60 0000 C CNN + 7 6300 3050 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 6868C920 +P 5250 3300 +F 0 "U1" H 5300 3400 30 0000 C CNN +F 1 "PORT" H 5250 3300 30 0000 C CNN +F 2 "" H 5250 3300 60 0000 C CNN +F 3 "" H 5250 3300 60 0000 C CNN + 4 5250 3300 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 6868C9C1 +P 7500 3100 +F 0 "scmode1" H 7500 3250 98 0000 C CNB +F 1 "SKY130mode" H 7500 3000 118 0000 C CNB +F 2 "" H 7500 3250 60 0001 C CNN +F 3 "" H 7500 3250 60 0001 C CNN + 1 7500 3100 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y1.sub b/library/SubcircuitLibrary/TC74HC4028AP/Y1.sub new file mode 100644 index 000000000..f79c5f57c --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y1.sub @@ -0,0 +1,11 @@ +* Subcircuit Y1 +.subckt Y1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y1/y1.cir +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* Control Statements + +.ends Y1 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y1_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/Y1_Previous_Values.xml new file mode 100644 index 000000000..73bfc204a --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y1_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y2-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/Y2-cache.lib new file mode 100644 index 000000000..25c3aaccc --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y2-cache.lib @@ -0,0 +1,75 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Y0 +# +DEF Y0 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y0" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X A_bar 1 -550 0 200 R 50 50 1 1 I +X B_bar 2 -550 -100 200 R 50 50 1 1 I +X Gnd 3 0 -350 200 U 50 50 1 1 I +X Vdd 4 -550 100 200 R 50 50 1 1 I +X Y0 5 550 -100 200 L 50 50 1 1 O +X C_bar 6 550 100 200 L 50 50 1 1 I +X D_bar 7 550 0 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y2.cir b/library/SubcircuitLibrary/TC74HC4028AP/Y2.cir new file mode 100644 index 000000000..3d88cac72 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y2.cir @@ -0,0 +1,13 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y2/Y2.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 12:27:26 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_U1-Pad6_ Y0 +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y2.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/Y2.cir.out new file mode 100644 index 000000000..f93fb21fc --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y2.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y2/y2.cir + +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y2.pro b/library/SubcircuitLibrary/TC74HC4028AP/Y2.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y2.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y2.sch b/library/SubcircuitLibrary/TC74HC4028AP/Y2.sch new file mode 100644 index 000000000..d3e74d8f7 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y2.sch @@ -0,0 +1,155 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 6868CC9E +P 5150 3000 +F 0 "X1" H 5150 3100 60 0000 C CNN +F 1 "Y0" H 5100 2800 60 0000 C CNN +F 2 "" H 5150 3000 60 0001 C CNN +F 3 "" H 5150 3000 60 0001 C CNN + 1 5150 3000 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 6868CD17 +P 6750 5150 +F 0 "scmode1" H 6750 5300 98 0000 C CNB +F 1 "SKY130mode" H 6750 5050 118 0000 C CNB +F 2 "" H 6750 5300 60 0001 C CNN +F 3 "" H 6750 5300 60 0001 C CNN + 1 6750 5150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 6868CD44 +P 4350 2900 +F 0 "U1" H 4400 3000 30 0000 C CNN +F 1 "PORT" H 4350 2900 30 0000 C CNN +F 2 "" H 4350 2900 60 0000 C CNN +F 3 "" H 4350 2900 60 0000 C CNN + 1 4350 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 6868CD67 +P 4350 3000 +F 0 "U1" H 4400 3100 30 0000 C CNN +F 1 "PORT" H 4350 3000 30 0000 C CNN +F 2 "" H 4350 3000 60 0000 C CNN +F 3 "" H 4350 3000 60 0000 C CNN + 2 4350 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6868CD8C +P 4350 3100 +F 0 "U1" H 4400 3200 30 0000 C CNN +F 1 "PORT" H 4350 3100 30 0000 C CNN +F 2 "" H 4350 3100 60 0000 C CNN +F 3 "" H 4350 3100 60 0000 C CNN + 3 4350 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 6868CDB5 +P 4900 3350 +F 0 "U1" H 4950 3450 30 0000 C CNN +F 1 "PORT" H 4900 3350 30 0000 C CNN +F 2 "" H 4900 3350 60 0000 C CNN +F 3 "" H 4900 3350 60 0000 C CNN + 4 4900 3350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 6868CDE4 +P 5950 2900 +F 0 "U1" H 6000 3000 30 0000 C CNN +F 1 "PORT" H 5950 2900 30 0000 C CNN +F 2 "" H 5950 2900 60 0000 C CNN +F 3 "" H 5950 2900 60 0000 C CNN + 5 5950 2900 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 6868CE31 +P 5950 3000 +F 0 "U1" H 6000 3100 30 0000 C CNN +F 1 "PORT" H 5950 3000 30 0000 C CNN +F 2 "" H 5950 3000 60 0000 C CNN +F 3 "" H 5950 3000 60 0000 C CNN + 6 5950 3000 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 6868CE5C +P 5950 3100 +F 0 "U1" H 6000 3200 30 0000 C CNN +F 1 "PORT" H 5950 3100 30 0000 C CNN +F 2 "" H 5950 3100 60 0000 C CNN +F 3 "" H 5950 3100 60 0000 C CNN + 7 5950 3100 + -1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y2.sub b/library/SubcircuitLibrary/TC74HC4028AP/Y2.sub new file mode 100644 index 000000000..5980e933d --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y2.sub @@ -0,0 +1,11 @@ +* Subcircuit Y2 +.subckt Y2 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y2/y2.cir +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* Control Statements + +.ends Y2 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y2_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/Y2_Previous_Values.xml new file mode 100644 index 000000000..73bfc204a --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y2_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y3-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/Y3-cache.lib new file mode 100644 index 000000000..25c3aaccc --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y3-cache.lib @@ -0,0 +1,75 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Y0 +# +DEF Y0 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y0" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X A_bar 1 -550 0 200 R 50 50 1 1 I +X B_bar 2 -550 -100 200 R 50 50 1 1 I +X Gnd 3 0 -350 200 U 50 50 1 1 I +X Vdd 4 -550 100 200 R 50 50 1 1 I +X Y0 5 550 -100 200 L 50 50 1 1 O +X C_bar 6 550 100 200 L 50 50 1 1 I +X D_bar 7 550 0 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y3.bak b/library/SubcircuitLibrary/TC74HC4028AP/Y3.bak new file mode 100644 index 000000000..e69de29bb diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y3.cir b/library/SubcircuitLibrary/TC74HC4028AP/Y3.cir new file mode 100644 index 000000000..703e998d7 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y3.cir @@ -0,0 +1,13 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y3/Y3.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 20:08:43 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_U1-Pad6_ Y0 +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT +scmode1 SKY130mode + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y3.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/Y3.cir.out new file mode 100644 index 000000000..b4067166c --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y3.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y3/y3.cir + +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +* s c m o d e +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y3.pro b/library/SubcircuitLibrary/TC74HC4028AP/Y3.pro new file mode 100644 index 000000000..354f24bb0 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y3.pro @@ -0,0 +1,83 @@ +update=Sat Jul 5 20:07:25 2025 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts +[schematic_editor] +version=1 +PageLayoutDescrFile= +PlotDirectoryName= +SubpartIdSeparator=0 +SubpartFirstId=65 +NetFmtName= +SpiceForceRefPrefix=0 +SpiceUseNetNumbers=0 +LabSize=60 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y3.sch b/library/SubcircuitLibrary/TC74HC4028AP/Y3.sch new file mode 100644 index 000000000..3269c1180 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y3.sch @@ -0,0 +1,156 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:Y3-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 686938B4 +P 5750 2900 +F 0 "X1" H 5750 3000 60 0000 C CNN +F 1 "Y0" H 5700 2700 60 0000 C CNN +F 2 "" H 5750 2900 60 0001 C CNN +F 3 "" H 5750 2900 60 0001 C CNN + 1 5750 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 6869391A +P 4950 2800 +F 0 "U1" H 5000 2900 30 0000 C CNN +F 1 "PORT" H 4950 2800 30 0000 C CNN +F 2 "" H 4950 2800 60 0000 C CNN +F 3 "" H 4950 2800 60 0000 C CNN + 1 4950 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68693963 +P 4950 2900 +F 0 "U1" H 5000 3000 30 0000 C CNN +F 1 "PORT" H 4950 2900 30 0000 C CNN +F 2 "" H 4950 2900 60 0000 C CNN +F 3 "" H 4950 2900 60 0000 C CNN + 2 4950 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68693984 +P 4950 3000 +F 0 "U1" H 5000 3100 30 0000 C CNN +F 1 "PORT" H 4950 3000 30 0000 C CNN +F 2 "" H 4950 3000 60 0000 C CNN +F 3 "" H 4950 3000 60 0000 C CNN + 3 4950 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686939AB +P 5500 3250 +F 0 "U1" H 5550 3350 30 0000 C CNN +F 1 "PORT" H 5500 3250 30 0000 C CNN +F 2 "" H 5500 3250 60 0000 C CNN +F 3 "" H 5500 3250 60 0000 C CNN + 4 5500 3250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686939D6 +P 6550 2800 +F 0 "U1" H 6600 2900 30 0000 C CNN +F 1 "PORT" H 6550 2800 30 0000 C CNN +F 2 "" H 6550 2800 60 0000 C CNN +F 3 "" H 6550 2800 60 0000 C CNN + 5 6550 2800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68693A27 +P 6550 2900 +F 0 "U1" H 6600 3000 30 0000 C CNN +F 1 "PORT" H 6550 2900 30 0000 C CNN +F 2 "" H 6550 2900 60 0000 C CNN +F 3 "" H 6550 2900 60 0000 C CNN + 6 6550 2900 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 68693A62 +P 6550 3000 +F 0 "U1" H 6600 3100 30 0000 C CNN +F 1 "PORT" H 6550 3000 30 0000 C CNN +F 2 "" H 6550 3000 60 0000 C CNN +F 3 "" H 6550 3000 60 0000 C CNN + 7 6550 3000 + -1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68693A89 +P 9150 2850 +F 0 "scmode1" H 9150 3000 98 0000 C CNB +F 1 "SKY130mode" H 9150 2750 118 0000 C CNB +F 2 "" H 9150 3000 60 0001 C CNN +F 3 "" H 9150 3000 60 0001 C CNN + 1 9150 2850 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y3.sub b/library/SubcircuitLibrary/TC74HC4028AP/Y3.sub new file mode 100644 index 000000000..d0faae98f --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y3.sub @@ -0,0 +1,11 @@ +* Subcircuit Y3 +.subckt Y3 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y3/y3.cir +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* Control Statements + +.ends Y3 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y3_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/Y3_Previous_Values.xml new file mode 100644 index 000000000..73bfc204a --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y3_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y4-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/Y4-cache.lib new file mode 100644 index 000000000..25c3aaccc --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y4-cache.lib @@ -0,0 +1,75 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Y0 +# +DEF Y0 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y0" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X A_bar 1 -550 0 200 R 50 50 1 1 I +X B_bar 2 -550 -100 200 R 50 50 1 1 I +X Gnd 3 0 -350 200 U 50 50 1 1 I +X Vdd 4 -550 100 200 R 50 50 1 1 I +X Y0 5 550 -100 200 L 50 50 1 1 O +X C_bar 6 550 100 200 L 50 50 1 1 I +X D_bar 7 550 0 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y4.cir b/library/SubcircuitLibrary/TC74HC4028AP/Y4.cir new file mode 100644 index 000000000..6531f8179 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y4.cir @@ -0,0 +1,13 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y4/Y4.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 20:15:29 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_U1-Pad6_ Y0 +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y4.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/Y4.cir.out new file mode 100644 index 000000000..396911611 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y4.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y4/y4.cir + +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y4.pro b/library/SubcircuitLibrary/TC74HC4028AP/Y4.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y4.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y4.sch b/library/SubcircuitLibrary/TC74HC4028AP/Y4.sch new file mode 100644 index 000000000..5e954bb68 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y4.sch @@ -0,0 +1,155 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 68693A51 +P 5250 2700 +F 0 "X1" H 5250 2800 60 0000 C CNN +F 1 "Y0" H 5200 2500 60 0000 C CNN +F 2 "" H 5250 2700 60 0001 C CNN +F 3 "" H 5250 2700 60 0001 C CNN + 1 5250 2700 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68693A90 +P 7800 4350 +F 0 "scmode1" H 7800 4500 98 0000 C CNB +F 1 "SKY130mode" H 7800 4250 118 0000 C CNB +F 2 "" H 7800 4500 60 0001 C CNN +F 3 "" H 7800 4500 60 0001 C CNN + 1 7800 4350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68693ADF +P 4450 2600 +F 0 "U1" H 4500 2700 30 0000 C CNN +F 1 "PORT" H 4450 2600 30 0000 C CNN +F 2 "" H 4450 2600 60 0000 C CNN +F 3 "" H 4450 2600 60 0000 C CNN + 1 4450 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68693B14 +P 4450 2700 +F 0 "U1" H 4500 2800 30 0000 C CNN +F 1 "PORT" H 4450 2700 30 0000 C CNN +F 2 "" H 4450 2700 60 0000 C CNN +F 3 "" H 4450 2700 60 0000 C CNN + 2 4450 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68693B41 +P 4450 2800 +F 0 "U1" H 4500 2900 30 0000 C CNN +F 1 "PORT" H 4450 2800 30 0000 C CNN +F 2 "" H 4450 2800 60 0000 C CNN +F 3 "" H 4450 2800 60 0000 C CNN + 3 4450 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68693B62 +P 5000 3050 +F 0 "U1" H 5050 3150 30 0000 C CNN +F 1 "PORT" H 5000 3050 30 0000 C CNN +F 2 "" H 5000 3050 60 0000 C CNN +F 3 "" H 5000 3050 60 0000 C CNN + 4 5000 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68693BF5 +P 6050 2600 +F 0 "U1" H 6100 2700 30 0000 C CNN +F 1 "PORT" H 6050 2600 30 0000 C CNN +F 2 "" H 6050 2600 60 0000 C CNN +F 3 "" H 6050 2600 60 0000 C CNN + 5 6050 2600 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68693C68 +P 6050 2700 +F 0 "U1" H 6100 2800 30 0000 C CNN +F 1 "PORT" H 6050 2700 30 0000 C CNN +F 2 "" H 6050 2700 60 0000 C CNN +F 3 "" H 6050 2700 60 0000 C CNN + 6 6050 2700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 68693C95 +P 6050 2800 +F 0 "U1" H 6100 2900 30 0000 C CNN +F 1 "PORT" H 6050 2800 30 0000 C CNN +F 2 "" H 6050 2800 60 0000 C CNN +F 3 "" H 6050 2800 60 0000 C CNN + 7 6050 2800 + -1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y4.sub b/library/SubcircuitLibrary/TC74HC4028AP/Y4.sub new file mode 100644 index 000000000..efafa72ed --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y4.sub @@ -0,0 +1,11 @@ +* Subcircuit Y4 +.subckt Y4 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y4/y4.cir +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* Control Statements + +.ends Y4 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y4_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/Y4_Previous_Values.xml new file mode 100644 index 000000000..73bfc204a --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y4_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y5-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/Y5-cache.lib new file mode 100644 index 000000000..25c3aaccc --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y5-cache.lib @@ -0,0 +1,75 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Y0 +# +DEF Y0 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y0" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X A_bar 1 -550 0 200 R 50 50 1 1 I +X B_bar 2 -550 -100 200 R 50 50 1 1 I +X Gnd 3 0 -350 200 U 50 50 1 1 I +X Vdd 4 -550 100 200 R 50 50 1 1 I +X Y0 5 550 -100 200 L 50 50 1 1 O +X C_bar 6 550 100 200 L 50 50 1 1 I +X D_bar 7 550 0 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y5.cir b/library/SubcircuitLibrary/TC74HC4028AP/Y5.cir new file mode 100644 index 000000000..48276daf8 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y5.cir @@ -0,0 +1,13 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y5/Y5.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 20:21:17 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_U1-Pad6_ Y0 +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y5.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/Y5.cir.out new file mode 100644 index 000000000..be0c2ec7e --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y5.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y5/y5.cir + +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y5.pro b/library/SubcircuitLibrary/TC74HC4028AP/Y5.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y5.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y5.sch b/library/SubcircuitLibrary/TC74HC4028AP/Y5.sch new file mode 100644 index 000000000..1bda8a005 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y5.sch @@ -0,0 +1,155 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 68693B83 +P 5200 2800 +F 0 "X1" H 5200 2900 60 0000 C CNN +F 1 "Y0" H 5150 2600 60 0000 C CNN +F 2 "" H 5200 2800 60 0001 C CNN +F 3 "" H 5200 2800 60 0001 C CNN + 1 5200 2800 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68693C06 +P 6700 4100 +F 0 "scmode1" H 6700 4250 98 0000 C CNB +F 1 "SKY130mode" H 6700 4000 118 0000 C CNB +F 2 "" H 6700 4250 60 0001 C CNN +F 3 "" H 6700 4250 60 0001 C CNN + 1 6700 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68693C2D +P 4400 2700 +F 0 "U1" H 4450 2800 30 0000 C CNN +F 1 "PORT" H 4400 2700 30 0000 C CNN +F 2 "" H 4400 2700 60 0000 C CNN +F 3 "" H 4400 2700 60 0000 C CNN + 1 4400 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68693CBD +P 4400 2800 +F 0 "U1" H 4450 2900 30 0000 C CNN +F 1 "PORT" H 4400 2800 30 0000 C CNN +F 2 "" H 4400 2800 60 0000 C CNN +F 3 "" H 4400 2800 60 0000 C CNN + 2 4400 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68693CF0 +P 4400 2900 +F 0 "U1" H 4450 3000 30 0000 C CNN +F 1 "PORT" H 4400 2900 30 0000 C CNN +F 2 "" H 4400 2900 60 0000 C CNN +F 3 "" H 4400 2900 60 0000 C CNN + 3 4400 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68693D1D +P 4950 3150 +F 0 "U1" H 5000 3250 30 0000 C CNN +F 1 "PORT" H 4950 3150 30 0000 C CNN +F 2 "" H 4950 3150 60 0000 C CNN +F 3 "" H 4950 3150 60 0000 C CNN + 4 4950 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68693D50 +P 6000 2700 +F 0 "U1" H 6050 2800 30 0000 C CNN +F 1 "PORT" H 6000 2700 30 0000 C CNN +F 2 "" H 6000 2700 60 0000 C CNN +F 3 "" H 6000 2700 60 0000 C CNN + 5 6000 2700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68693D9F +P 6000 2800 +F 0 "U1" H 6050 2900 30 0000 C CNN +F 1 "PORT" H 6000 2800 30 0000 C CNN +F 2 "" H 6000 2800 60 0000 C CNN +F 3 "" H 6000 2800 60 0000 C CNN + 6 6000 2800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 68693DDE +P 6000 2900 +F 0 "U1" H 6050 3000 30 0000 C CNN +F 1 "PORT" H 6000 2900 30 0000 C CNN +F 2 "" H 6000 2900 60 0000 C CNN +F 3 "" H 6000 2900 60 0000 C CNN + 7 6000 2900 + -1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y5.sub b/library/SubcircuitLibrary/TC74HC4028AP/Y5.sub new file mode 100644 index 000000000..0cddbd9e0 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y5.sub @@ -0,0 +1,11 @@ +* Subcircuit Y5 +.subckt Y5 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y5/y5.cir +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* Control Statements + +.ends Y5 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y5_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/Y5_Previous_Values.xml new file mode 100644 index 000000000..73bfc204a --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y5_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y6-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/Y6-cache.lib new file mode 100644 index 000000000..25c3aaccc --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y6-cache.lib @@ -0,0 +1,75 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Y0 +# +DEF Y0 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y0" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X A_bar 1 -550 0 200 R 50 50 1 1 I +X B_bar 2 -550 -100 200 R 50 50 1 1 I +X Gnd 3 0 -350 200 U 50 50 1 1 I +X Vdd 4 -550 100 200 R 50 50 1 1 I +X Y0 5 550 -100 200 L 50 50 1 1 O +X C_bar 6 550 100 200 L 50 50 1 1 I +X D_bar 7 550 0 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y6.cir b/library/SubcircuitLibrary/TC74HC4028AP/Y6.cir new file mode 100644 index 000000000..4306bb477 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y6.cir @@ -0,0 +1,13 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y6/Y6.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 20:24:47 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_U1-Pad6_ Y0 +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y6.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/Y6.cir.out new file mode 100644 index 000000000..cfd954565 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y6.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y6/y6.cir + +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y6.pro b/library/SubcircuitLibrary/TC74HC4028AP/Y6.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y6.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y6.sch b/library/SubcircuitLibrary/TC74HC4028AP/Y6.sch new file mode 100644 index 000000000..ebd6439df --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y6.sch @@ -0,0 +1,155 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 68693C8D +P 5400 2950 +F 0 "X1" H 5400 3050 60 0000 C CNN +F 1 "Y0" H 5350 2750 60 0000 C CNN +F 2 "" H 5400 2950 60 0001 C CNN +F 3 "" H 5400 2950 60 0001 C CNN + 1 5400 2950 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68693CCE +P 7500 4750 +F 0 "scmode1" H 7500 4900 98 0000 C CNB +F 1 "SKY130mode" H 7500 4650 118 0000 C CNB +F 2 "" H 7500 4900 60 0001 C CNN +F 3 "" H 7500 4900 60 0001 C CNN + 1 7500 4750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68693CF3 +P 4600 2850 +F 0 "U1" H 4650 2950 30 0000 C CNN +F 1 "PORT" H 4600 2850 30 0000 C CNN +F 2 "" H 4600 2850 60 0000 C CNN +F 3 "" H 4600 2850 60 0000 C CNN + 1 4600 2850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68693D2E +P 4600 2950 +F 0 "U1" H 4650 3050 30 0000 C CNN +F 1 "PORT" H 4600 2950 30 0000 C CNN +F 2 "" H 4600 2950 60 0000 C CNN +F 3 "" H 4600 2950 60 0000 C CNN + 2 4600 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68693D85 +P 4600 3050 +F 0 "U1" H 4650 3150 30 0000 C CNN +F 1 "PORT" H 4600 3050 30 0000 C CNN +F 2 "" H 4600 3050 60 0000 C CNN +F 3 "" H 4600 3050 60 0000 C CNN + 3 4600 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68693DB6 +P 5150 3300 +F 0 "U1" H 5200 3400 30 0000 C CNN +F 1 "PORT" H 5150 3300 30 0000 C CNN +F 2 "" H 5150 3300 60 0000 C CNN +F 3 "" H 5150 3300 60 0000 C CNN + 4 5150 3300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68693DE1 +P 6200 2850 +F 0 "U1" H 6250 2950 30 0000 C CNN +F 1 "PORT" H 6200 2850 30 0000 C CNN +F 2 "" H 6200 2850 60 0000 C CNN +F 3 "" H 6200 2850 60 0000 C CNN + 5 6200 2850 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68693E34 +P 6200 2950 +F 0 "U1" H 6250 3050 30 0000 C CNN +F 1 "PORT" H 6200 2950 30 0000 C CNN +F 2 "" H 6200 2950 60 0000 C CNN +F 3 "" H 6200 2950 60 0000 C CNN + 6 6200 2950 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 68693E67 +P 6200 3050 +F 0 "U1" H 6250 3150 30 0000 C CNN +F 1 "PORT" H 6200 3050 30 0000 C CNN +F 2 "" H 6200 3050 60 0000 C CNN +F 3 "" H 6200 3050 60 0000 C CNN + 7 6200 3050 + -1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y6.sub b/library/SubcircuitLibrary/TC74HC4028AP/Y6.sub new file mode 100644 index 000000000..e6bd24004 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y6.sub @@ -0,0 +1,11 @@ +* Subcircuit Y6 +.subckt Y6 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y6/y6.cir +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* Control Statements + +.ends Y6 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y6_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/Y6_Previous_Values.xml new file mode 100644 index 000000000..d866ca8a0 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y6_Previous_Values.xml @@ -0,0 +1 @@ +/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y7-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/Y7-cache.lib new file mode 100644 index 000000000..25c3aaccc --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y7-cache.lib @@ -0,0 +1,75 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Y0 +# +DEF Y0 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y0" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X A_bar 1 -550 0 200 R 50 50 1 1 I +X B_bar 2 -550 -100 200 R 50 50 1 1 I +X Gnd 3 0 -350 200 U 50 50 1 1 I +X Vdd 4 -550 100 200 R 50 50 1 1 I +X Y0 5 550 -100 200 L 50 50 1 1 O +X C_bar 6 550 100 200 L 50 50 1 1 I +X D_bar 7 550 0 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y7.cir b/library/SubcircuitLibrary/TC74HC4028AP/Y7.cir new file mode 100644 index 000000000..aefcdacd5 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y7.cir @@ -0,0 +1,13 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y7/Y7.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 20:29:26 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_U1-Pad6_ Y0 +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y7.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/Y7.cir.out new file mode 100644 index 000000000..572724c1d --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y7.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y7/y7.cir + +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y7.pro b/library/SubcircuitLibrary/TC74HC4028AP/Y7.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y7.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y7.sch b/library/SubcircuitLibrary/TC74HC4028AP/Y7.sch new file mode 100644 index 000000000..f3a0ae254 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y7.sch @@ -0,0 +1,155 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 68693DA4 +P 5150 2800 +F 0 "X1" H 5150 2900 60 0000 C CNN +F 1 "Y0" H 5100 2600 60 0000 C CNN +F 2 "" H 5150 2800 60 0001 C CNN +F 3 "" H 5150 2800 60 0001 C CNN + 1 5150 2800 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68693DE1 +P 7650 4100 +F 0 "scmode1" H 7650 4250 98 0000 C CNB +F 1 "SKY130mode" H 7650 4000 118 0000 C CNB +F 2 "" H 7650 4250 60 0001 C CNN +F 3 "" H 7650 4250 60 0001 C CNN + 1 7650 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68693E14 +P 4350 2700 +F 0 "U1" H 4400 2800 30 0000 C CNN +F 1 "PORT" H 4350 2700 30 0000 C CNN +F 2 "" H 4350 2700 60 0000 C CNN +F 3 "" H 4350 2700 60 0000 C CNN + 1 4350 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68693EFE +P 4350 2800 +F 0 "U1" H 4400 2900 30 0000 C CNN +F 1 "PORT" H 4350 2800 30 0000 C CNN +F 2 "" H 4350 2800 60 0000 C CNN +F 3 "" H 4350 2800 60 0000 C CNN + 2 4350 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68693F27 +P 4350 2900 +F 0 "U1" H 4400 3000 30 0000 C CNN +F 1 "PORT" H 4350 2900 30 0000 C CNN +F 2 "" H 4350 2900 60 0000 C CNN +F 3 "" H 4350 2900 60 0000 C CNN + 3 4350 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68693F4A +P 4900 3150 +F 0 "U1" H 4950 3250 30 0000 C CNN +F 1 "PORT" H 4900 3150 30 0000 C CNN +F 2 "" H 4900 3150 60 0000 C CNN +F 3 "" H 4900 3150 60 0000 C CNN + 4 4900 3150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68693F8D +P 5950 2700 +F 0 "U1" H 6000 2800 30 0000 C CNN +F 1 "PORT" H 5950 2700 30 0000 C CNN +F 2 "" H 5950 2700 60 0000 C CNN +F 3 "" H 5950 2700 60 0000 C CNN + 5 5950 2700 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 68693FB6 +P 5950 2800 +F 0 "U1" H 6000 2900 30 0000 C CNN +F 1 "PORT" H 5950 2800 30 0000 C CNN +F 2 "" H 5950 2800 60 0000 C CNN +F 3 "" H 5950 2800 60 0000 C CNN + 6 5950 2800 + -1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 68693FDF +P 5950 2900 +F 0 "U1" H 6000 3000 30 0000 C CNN +F 1 "PORT" H 5950 2900 30 0000 C CNN +F 2 "" H 5950 2900 60 0000 C CNN +F 3 "" H 5950 2900 60 0000 C CNN + 7 5950 2900 + -1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y7.sub b/library/SubcircuitLibrary/TC74HC4028AP/Y7.sub new file mode 100644 index 000000000..19b5cc503 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y7.sub @@ -0,0 +1,11 @@ +* Subcircuit Y7 +.subckt Y7 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y7/y7.cir +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* Control Statements + +.ends Y7 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y7_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/Y7_Previous_Values.xml new file mode 100644 index 000000000..73bfc204a --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y7_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y8-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/Y8-cache.lib new file mode 100644 index 000000000..25c3aaccc --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y8-cache.lib @@ -0,0 +1,75 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Y0 +# +DEF Y0 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y0" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X A_bar 1 -550 0 200 R 50 50 1 1 I +X B_bar 2 -550 -100 200 R 50 50 1 1 I +X Gnd 3 0 -350 200 U 50 50 1 1 I +X Vdd 4 -550 100 200 R 50 50 1 1 I +X Y0 5 550 -100 200 L 50 50 1 1 O +X C_bar 6 550 100 200 L 50 50 1 1 I +X D_bar 7 550 0 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y8.cir b/library/SubcircuitLibrary/TC74HC4028AP/Y8.cir new file mode 100644 index 000000000..388978510 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y8.cir @@ -0,0 +1,13 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y8/Y8.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 20:33:21 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_U1-Pad6_ Y0 +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y8.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/Y8.cir.out new file mode 100644 index 000000000..b5965c648 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y8.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y8/y8.cir + +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y8.pro b/library/SubcircuitLibrary/TC74HC4028AP/Y8.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y8.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y8.sch b/library/SubcircuitLibrary/TC74HC4028AP/Y8.sch new file mode 100644 index 000000000..cee28fe81 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y8.sch @@ -0,0 +1,155 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 68693E7E +P 4900 2650 +F 0 "X1" H 4900 2750 60 0000 C CNN +F 1 "Y0" H 4850 2450 60 0000 C CNN +F 2 "" H 4900 2650 60 0001 C CNN +F 3 "" H 4900 2650 60 0001 C CNN + 1 4900 2650 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68693ED9 +P 8650 4350 +F 0 "scmode1" H 8650 4500 98 0000 C CNB +F 1 "SKY130mode" H 8650 4250 118 0000 C CNB +F 2 "" H 8650 4500 60 0001 C CNN +F 3 "" H 8650 4500 60 0001 C CNN + 1 8650 4350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68693F20 +P 4100 2550 +F 0 "U1" H 4150 2650 30 0000 C CNN +F 1 "PORT" H 4100 2550 30 0000 C CNN +F 2 "" H 4100 2550 60 0000 C CNN +F 3 "" H 4100 2550 60 0000 C CNN + 1 4100 2550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68693F57 +P 4100 2650 +F 0 "U1" H 4150 2750 30 0000 C CNN +F 1 "PORT" H 4100 2650 30 0000 C CNN +F 2 "" H 4100 2650 60 0000 C CNN +F 3 "" H 4100 2650 60 0000 C CNN + 2 4100 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68693F80 +P 4100 2750 +F 0 "U1" H 4150 2850 30 0000 C CNN +F 1 "PORT" H 4100 2750 30 0000 C CNN +F 2 "" H 4100 2750 60 0000 C CNN +F 3 "" H 4100 2750 60 0000 C CNN + 3 4100 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 68693FAF +P 4650 3000 +F 0 "U1" H 4700 3100 30 0000 C CNN +F 1 "PORT" H 4650 3000 30 0000 C CNN +F 2 "" H 4650 3000 60 0000 C CNN +F 3 "" H 4650 3000 60 0000 C CNN + 4 4650 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 68693FE8 +P 5700 2550 +F 0 "U1" H 5750 2650 30 0000 C CNN +F 1 "PORT" H 5700 2550 30 0000 C CNN +F 2 "" H 5700 2550 60 0000 C CNN +F 3 "" H 5700 2550 60 0000 C CNN + 5 5700 2550 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 6 1 68694305 +P 5700 2650 +F 0 "U1" H 5750 2750 30 0000 C CNN +F 1 "PORT" H 5700 2650 30 0000 C CNN +F 2 "" H 5700 2650 60 0000 C CNN +F 3 "" H 5700 2650 60 0000 C CNN + 6 5700 2650 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 7 1 68694342 +P 5700 2750 +F 0 "U1" H 5750 2850 30 0000 C CNN +F 1 "PORT" H 5700 2750 30 0000 C CNN +F 2 "" H 5700 2750 60 0000 C CNN +F 3 "" H 5700 2750 60 0000 C CNN + 7 5700 2750 + -1 0 0 1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y8.sub b/library/SubcircuitLibrary/TC74HC4028AP/Y8.sub new file mode 100644 index 000000000..b85b7c552 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y8.sub @@ -0,0 +1,11 @@ +* Subcircuit Y8 +.subckt Y8 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y8/y8.cir +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* Control Statements + +.ends Y8 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y8_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/Y8_Previous_Values.xml new file mode 100644 index 000000000..73bfc204a --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y8_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y9-cache.lib b/library/SubcircuitLibrary/TC74HC4028AP/Y9-cache.lib new file mode 100644 index 000000000..25c3aaccc --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y9-cache.lib @@ -0,0 +1,75 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# SKY130mode +# +DEF SKY130mode scmode 0 40 Y Y 1 F N +F0 "scmode" 0 150 98 H V C CNB +F1 "SKY130mode" 0 -100 118 H V C CNB +F2 "" 0 150 60 H I C CNN +F3 "" 0 150 60 H I C CNN +DRAW +S -600 350 600 -350 0 1 79 N +ENDDRAW +ENDDEF +# +# Y0 +# +DEF Y0 X 0 40 Y Y 1 F N +F0 "X" 0 100 60 H V C CNN +F1 "Y0" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -350 150 350 -150 0 1 0 N +X A_bar 1 -550 0 200 R 50 50 1 1 I +X B_bar 2 -550 -100 200 R 50 50 1 1 I +X Gnd 3 0 -350 200 U 50 50 1 1 I +X Vdd 4 -550 100 200 R 50 50 1 1 I +X Y0 5 550 -100 200 L 50 50 1 1 O +X C_bar 6 550 100 200 L 50 50 1 1 I +X D_bar 7 550 0 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y9.cir b/library/SubcircuitLibrary/TC74HC4028AP/Y9.cir new file mode 100644 index 000000000..a2b2c1bac --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y9.cir @@ -0,0 +1,13 @@ +* /home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y9/Y9.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: Sat Jul 5 20:37:19 2025 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad1_ Net-_U1-Pad7_ Net-_U1-Pad5_ Net-_U1-Pad6_ Y0 +scmode1 SKY130mode +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ PORT + +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y9.cir.out b/library/SubcircuitLibrary/TC74HC4028AP/Y9.cir.out new file mode 100644 index 000000000..2ab60d530 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y9.cir.out @@ -0,0 +1,17 @@ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y9/y9.cir + +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y9.pro b/library/SubcircuitLibrary/TC74HC4028AP/Y9.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y9.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y9.sch b/library/SubcircuitLibrary/TC74HC4028AP/Y9.sch new file mode 100644 index 000000000..9102285ea --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y9.sch @@ -0,0 +1,155 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Y0 X1 +U 1 1 68693F7B +P 4700 2550 +F 0 "X1" H 4700 2650 60 0000 C CNN +F 1 "Y0" H 4650 2350 60 0000 C CNN +F 2 "" H 4700 2550 60 0001 C CNN +F 3 "" H 4700 2550 60 0001 C CNN + 1 4700 2550 + 1 0 0 -1 +$EndComp +$Comp +L SKY130mode scmode1 +U 1 1 68693FB8 +P 8250 3950 +F 0 "scmode1" H 8250 4100 98 0000 C CNB +F 1 "SKY130mode" H 8250 3850 118 0000 C CNB +F 2 "" H 8250 4100 60 0001 C CNN +F 3 "" H 8250 4100 60 0001 C CNN + 1 8250 3950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68693FFF +P 3900 2450 +F 0 "U1" H 3950 2550 30 0000 C CNN +F 1 "PORT" H 3900 2450 30 0000 C CNN +F 2 "" H 3900 2450 60 0000 C CNN +F 3 "" H 3900 2450 60 0000 C CNN + 1 3900 2450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68694048 +P 3900 2550 +F 0 "U1" H 3950 2650 30 0000 C CNN +F 1 "PORT" H 3900 2550 30 0000 C CNN +F 2 "" H 3900 2550 60 0000 C CNN +F 3 "" H 3900 2550 60 0000 C CNN + 2 3900 2550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6869406D +P 3900 2650 +F 0 "U1" H 3950 2750 30 0000 C CNN +F 1 "PORT" H 3900 2650 30 0000 C CNN +F 2 "" H 3900 2650 60 0000 C CNN +F 3 "" H 3900 2650 60 0000 C CNN + 3 3900 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 6869409C +P 4450 2900 +F 0 "U1" H 4500 3000 30 0000 C CNN +F 1 "PORT" H 4450 2900 30 0000 C CNN +F 2 "" H 4450 2900 60 0000 C CNN +F 3 "" H 4450 2900 60 0000 C CNN + 4 4450 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686940CF +P 5500 2450 +F 0 "U1" H 5550 2550 30 0000 C CNN +F 1 "PORT" H 5500 2450 30 0000 C CNN +F 2 "" H 5500 2450 60 0000 C CNN +F 3 "" H 5500 2450 60 0000 C CNN + 5 5500 2450 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 6 1 68694132 +P 5500 2550 +F 0 "U1" H 5550 2650 30 0000 C CNN +F 1 "PORT" H 5500 2550 30 0000 C CNN +F 2 "" H 5500 2550 60 0000 C CNN +F 3 "" H 5500 2550 60 0000 C CNN + 6 5500 2550 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 7 1 68694173 +P 5500 2650 +F 0 "U1" H 5550 2750 30 0000 C CNN +F 1 "PORT" H 5500 2650 30 0000 C CNN +F 2 "" H 5500 2650 60 0000 C CNN +F 3 "" H 5500 2650 60 0000 C CNN + 7 5500 2650 + -1 0 0 1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y9.sub b/library/SubcircuitLibrary/TC74HC4028AP/Y9.sub new file mode 100644 index 000000000..5449a8396 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y9.sub @@ -0,0 +1,11 @@ +* Subcircuit Y9 +.subckt Y9 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ +* /home/vsduser/downloads/esim-2.3/library/subcircuitlibrary/y9/y9.cir +.include Y0.sub +*.lib "/usr/share/local/sky130_fd_pr/models/sky130.lib.spice" tt + +x1 net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad1_ net-_u1-pad7_ net-_u1-pad5_ net-_u1-pad6_ Y0 +* s c m o d e +* Control Statements + +.ends Y9 diff --git a/library/SubcircuitLibrary/TC74HC4028AP/Y9_Previous_Values.xml b/library/SubcircuitLibrary/TC74HC4028AP/Y9_Previous_Values.xml new file mode 100644 index 000000000..73bfc204a --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/Y9_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec/usr/share/local/sky130_fd_pr/models/sky130.lib.spicett/home/vsduser/Downloads/eSim-2.3/library/SubcircuitLibrary/Y0 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TC74HC4028AP/analysis b/library/SubcircuitLibrary/TC74HC4028AP/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/TC74HC4028AP/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.cir b/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.cir new file mode 100644 index 000000000..a786a9921 --- /dev/null +++ b/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.cir @@ -0,0 +1,323 @@ +.title KiCad schematic +U6 /i4 /_ni4 d_inverter +U5 /i3 /_ni3 d_inverter +U2 /i0 /_ni0 d_inverter +U4 /i2 /_ni2 d_inverter +U3 /i1 /_ni1 d_inverter +U119 Net-_U119-Pad1_ /i14 Net-_U119-Pad3_ d_and +U118 Net-_U118-Pad1_ /__ni13 Net-_U118-Pad3_ d_and +U117 Net-_U117-Pad1_ /__ni12 Net-_U117-Pad3_ d_and +U52 /i6 /_ni8 Net-_U116-Pad1_ d_and +U53 /i7 /i9 Net-_U117-Pad1_ d_and +U51 /_ni5 /i8 Net-_U115-Pad1_ d_and +U57 /i11 /i13 Net-_U121-Pad1_ d_and +U56 /i10 /__ni12 Net-_U120-Pad1_ d_and +U55 /_ni9 /i12 Net-_U119-Pad1_ d_and +U54 /i9 /i11 Net-_U118-Pad1_ d_and +U116 Net-_U116-Pad1_ /i11 Net-_U116-Pad3_ d_and +U115 Net-_U115-Pad1_ /i10 Net-_U115-Pad3_ d_and +U121 Net-_U121-Pad1_ /__ni16 Net-_U121-Pad3_ d_and +U120 Net-_U120-Pad1_ /i15 Net-_U120-Pad3_ d_and +U107 Net-_U107-Pad1_ /i4 Net-_U107-Pad3_ d_and +U108 Net-_U108-Pad1_ /i5 Net-_U108-Pad3_ d_and +U109 Net-_U109-Pad1_ /_ni6 Net-_U109-Pad3_ d_and +U106 Net-_U106-Pad1_ /_ni2 Net-_U106-Pad3_ d_and +U45 /i0 /_ni4 Net-_U109-Pad1_ d_and +U44 /i1 /_ni3 Net-_U108-Pad1_ d_and +U43 /_ni0 /i2 Net-_U107-Pad1_ d_and +U42 /i0 /i1 Net-_U106-Pad1_ d_and +U111 Net-_U111-Pad1_ /i6 Net-_U111-Pad3_ d_and +U110 Net-_U110-Pad1_ /_ni4 Net-_U110-Pad3_ d_and +U114 Net-_U114-Pad1_ /_ni9 Net-_U114-Pad3_ d_and +U113 Net-_U113-Pad1_ /_ni8 Net-_U113-Pad3_ d_and +U112 Net-_U112-Pad1_ /i7 Net-_U112-Pad3_ d_and +U50 /i5 /i7 Net-_U114-Pad1_ d_and +U49 /i4 /i6 Net-_U113-Pad1_ d_and +U47 /_ni2 /i5 Net-_U111-Pad1_ d_and +U48 /i3 /_ni5 Net-_U112-Pad1_ d_and +U46 /i2 /i3 Net-_U110-Pad1_ d_and +U17 /i15 /__ni15 d_inverter +U16 /i14 unconnected-_U16-Pad2_ d_inverter +U19 /i17 /__ni17 d_inverter +U18 /i16 /__ni16 d_inverter +U21 /i19 /__ni19 d_inverter +U20 /i18 /__ni18 d_inverter +U11 /i9 /_ni9 d_inverter +U10 /i8 /_ni8 d_inverter +U9 /i7 /_ni7 d_inverter +U15 /i13 /__ni13 d_inverter +U14 /i12 /__ni12 d_inverter +U13 /i11 /__ni11 d_inverter +U12 /i10 /__ni10 d_inverter +U8 /i6 /_ni6 d_inverter +U7 /i5 /_ni5 d_inverter +U302 Net-_U282-Pad2_ /clk /set /reset unconnected-_U302-Pad5_ Net-_U302-Pad6_ d_dff +U318 Net-_U302-Pad6_ unconnected-_U318-Pad2_ dac_bridge_1 +U292 Net-_U276-Pad3_ Net-_U292-Pad2_ d_inverter +U282 Net-_U266-Pad3_ Net-_U282-Pad2_ d_inverter +U288 Net-_U272-Pad3_ Net-_U288-Pad2_ d_inverter +U287 Net-_U271-Pad3_ Net-_U287-Pad2_ d_inverter +U272 Net-_U256-Pad3_ Net-_U197-Pad3_ Net-_U272-Pad3_ d_or +U271 Net-_U255-Pad3_ Net-_U201-Pad3_ Net-_U271-Pad3_ d_or +U256 Net-_U240-Pad3_ Net-_U196-Pad3_ Net-_U256-Pad3_ d_or +U255 Net-_U239-Pad3_ Net-_U200-Pad3_ Net-_U255-Pad3_ d_or +U187 Net-_U123-Pad3_ /i0 Net-_U187-Pad3_ d_and +U188 Net-_U124-Pad3_ /i4 Net-_U188-Pad3_ d_and +U186 Net-_U122-Pad3_ /__ni19 Net-_U186-Pad3_ d_and +U190 Net-_U126-Pad3_ /_ni1 Net-_U190-Pad3_ d_and +U189 Net-_U125-Pad3_ /_ni5 Net-_U189-Pad3_ d_and +U244 Net-_U190-Pad3_ Net-_U191-Pad3_ Net-_U244-Pad3_ d_or +U276 Net-_U260-Pad3_ Net-_U193-Pad3_ Net-_U276-Pad3_ d_or +U260 Net-_U244-Pad3_ Net-_U192-Pad3_ Net-_U260-Pad3_ d_or +U266 Net-_U250-Pad3_ Net-_U189-Pad3_ Net-_U266-Pad3_ d_or +U250 Net-_U234-Pad3_ Net-_U188-Pad3_ Net-_U250-Pad3_ d_or +U234 Net-_U186-Pad3_ Net-_U187-Pad3_ Net-_U234-Pad3_ d_or +U240 Net-_U194-Pad3_ Net-_U195-Pad3_ Net-_U240-Pad3_ d_or +U239 Net-_U198-Pad3_ Net-_U199-Pad3_ Net-_U239-Pad3_ d_or +U192 Net-_U128-Pad3_ /_ni3 Net-_U192-Pad3_ d_and +U193 Net-_U129-Pad3_ /_ni7 Net-_U193-Pad3_ d_and +U191 Net-_U127-Pad3_ /i2 Net-_U191-Pad3_ d_and +U197 Net-_U133-Pad3_ /__ni12 Net-_U197-Pad3_ d_and +U198 Net-_U134-Pad3_ /i15 Net-_U198-Pad3_ d_and +U196 Net-_U132-Pad3_ /i11 Net-_U196-Pad3_ d_and +U195 Net-_U131-Pad3_ /__ni10 Net-_U195-Pad3_ d_and +U194 Net-_U130-Pad3_ /i9 Net-_U194-Pad3_ d_and +U201 Net-_U137-Pad3_ /__ni18 Net-_U201-Pad3_ d_and +U200 Net-_U136-Pad3_ /i17 Net-_U200-Pad3_ d_and +U199 Net-_U135-Pad3_ /__ni16 Net-_U199-Pad3_ d_and +U319 Net-_U303-Pad6_ unconnected-_U319-Pad2_ dac_bridge_1 +U304 Net-_U288-Pad2_ /clk /set /reset unconnected-_U304-Pad5_ Net-_U304-Pad6_ d_dff +U303 Net-_U292-Pad2_ /clk /set /reset unconnected-_U303-Pad5_ Net-_U303-Pad6_ d_dff +U321 Net-_U305-Pad6_ unconnected-_U321-Pad2_ dac_bridge_1 +U320 Net-_U304-Pad6_ unconnected-_U320-Pad2_ dac_bridge_1 +U305 Net-_U287-Pad2_ /clk /set /reset unconnected-_U305-Pad5_ Net-_U305-Pad6_ d_dff +U123 Net-_U123-Pad1_ /i18 Net-_U123-Pad3_ d_and +U125 Net-_U125-Pad1_ /_ni0 Net-_U125-Pad3_ d_and +U124 Net-_U124-Pad1_ /i19 Net-_U124-Pad3_ d_and +U122 Net-_U122-Pad1_ /__ni17 Net-_U122-Pad3_ d_and +U61 /i15 /i17 Net-_U125-Pad1_ d_and +U60 /i14 /__ni16 Net-_U124-Pad1_ d_and +U59 /__ni13 /i16 Net-_U123-Pad1_ d_and +U58 /i13 /i15 Net-_U122-Pad1_ d_and +U66 /i1 /i4 Net-_U130-Pad1_ d_and +U65 /i19 /i1 Net-_U129-Pad1_ d_and +U64 /i18 /_ni0 Net-_U128-Pad1_ d_and +U63 /__ni17 /i0 Net-_U127-Pad1_ d_and +U67 /_ni1 /i5 Net-_U131-Pad1_ d_and +U130 Net-_U130-Pad1_ /_ni6 Net-_U130-Pad3_ d_and +U131 Net-_U131-Pad1_ /i7 Net-_U131-Pad3_ d_and +U129 Net-_U129-Pad1_ /_ni4 Net-_U129-Pad3_ d_and +U128 Net-_U128-Pad1_ /i3 Net-_U128-Pad3_ d_and +U127 Net-_U127-Pad1_ /i2 Net-_U127-Pad3_ d_and +U126 Net-_U126-Pad1_ /_ni1 Net-_U126-Pad3_ d_and +U62 /i17 /i19 Net-_U126-Pad1_ d_and +U72 /i9 /__ni11 Net-_U136-Pad1_ d_and +U71 /_ni8 /i11 Net-_U135-Pad1_ d_and +U70 /i8 /i10 Net-_U134-Pad1_ d_and +U69 /i3 /i6 Net-_U133-Pad1_ d_and +U68 /i2 /_ni5 Net-_U132-Pad1_ d_and +U137 Net-_U137-Pad1_ /__ni15 Net-_U137-Pad3_ d_and +U136 Net-_U136-Pad1_ /i14 Net-_U136-Pad3_ d_and +U135 Net-_U135-Pad1_ /i13 Net-_U135-Pad3_ d_and +U73 /i10 /i12 Net-_U137-Pad1_ d_and +U134 Net-_U134-Pad1_ /__ni12 Net-_U134-Pad3_ d_and +U133 Net-_U133-Pad1_ /_ni9 Net-_U133-Pad3_ d_and +U132 Net-_U132-Pad1_ /i8 Net-_U132-Pad3_ d_and +U252 Net-_U236-Pad3_ Net-_U176-Pad3_ Net-_U252-Pad3_ d_or +U236 Net-_U174-Pad3_ Net-_U175-Pad3_ Net-_U236-Pad3_ d_or +U235 Net-_U170-Pad3_ Net-_U171-Pad3_ Net-_U235-Pad3_ d_or +U171 Net-_U107-Pad3_ /_ni5 Net-_U171-Pad3_ d_and +U170 Net-_U106-Pad3_ /i3 Net-_U170-Pad3_ d_and +U173 Net-_U109-Pad3_ /i7 Net-_U173-Pad3_ d_and +U174 Net-_U110-Pad3_ /i8 Net-_U174-Pad3_ d_and +U172 Net-_U108-Pad3_ /i6 Net-_U172-Pad3_ d_and +U269 Net-_U253-Pad3_ Net-_U181-Pad3_ Net-_U269-Pad3_ d_or +U268 Net-_U252-Pad3_ Net-_U177-Pad3_ Net-_U268-Pad3_ d_or +U253 Net-_U237-Pad3_ Net-_U180-Pad3_ Net-_U253-Pad3_ d_or +U267 Net-_U251-Pad3_ Net-_U173-Pad3_ Net-_U267-Pad3_ d_or +U251 Net-_U235-Pad3_ Net-_U172-Pad3_ Net-_U251-Pad3_ d_or +U316 Net-_U300-Pad6_ unconnected-_U316-Pad2_ dac_bridge_1 +U317 Net-_U301-Pad6_ unconnected-_U317-Pad2_ dac_bridge_1 +U301 Net-_U286-Pad2_ /clk /set /reset unconnected-_U301-Pad5_ Net-_U301-Pad6_ d_dff +U237 Net-_U178-Pad3_ Net-_U179-Pad3_ Net-_U237-Pad3_ d_or +U179 Net-_U115-Pad3_ /__ni13 Net-_U179-Pad3_ d_and +U178 Net-_U114-Pad3_ /i12 Net-_U178-Pad3_ d_and +U177 Net-_U113-Pad3_ /__ni11 Net-_U177-Pad3_ d_and +U176 Net-_U112-Pad3_ /i10 Net-_U176-Pad3_ d_and +U175 Net-_U111-Pad3_ /_ni9 Net-_U175-Pad3_ d_and +U181 Net-_U117-Pad3_ /__ni15 Net-_U181-Pad3_ d_and +U182 Net-_U118-Pad3_ /i16 Net-_U182-Pad3_ d_and +U180 Net-_U116-Pad3_ /i14 Net-_U180-Pad3_ d_and +U270 Net-_U254-Pad3_ Net-_U185-Pad3_ Net-_U270-Pad3_ d_or +U185 Net-_U121-Pad3_ /i18 Net-_U185-Pad3_ d_and +U184 Net-_U120-Pad3_ /i6 Net-_U184-Pad3_ d_and +U183 Net-_U119-Pad3_ /__ni17 Net-_U183-Pad3_ d_and +U254 Net-_U238-Pad3_ Net-_U184-Pad3_ Net-_U254-Pad3_ d_or +U238 Net-_U182-Pad3_ Net-_U183-Pad3_ Net-_U238-Pad3_ d_or +U315 Net-_U299-Pad6_ unconnected-_U315-Pad2_ dac_bridge_1 +U314 Net-_U298-Pad6_ unconnected-_U314-Pad2_ dac_bridge_1 +U298 Net-_U283-Pad2_ /clk /set /reset unconnected-_U298-Pad5_ Net-_U298-Pad6_ d_dff +U286 Net-_U270-Pad3_ Net-_U286-Pad2_ d_inverter +U300 Net-_U285-Pad2_ /clk /set /reset unconnected-_U300-Pad5_ Net-_U300-Pad6_ d_dff +U285 Net-_U269-Pad3_ Net-_U285-Pad2_ d_inverter +U299 Net-_U284-Pad2_ /clk /set /reset unconnected-_U299-Pad5_ Net-_U299-Pad6_ d_dff +U284 Net-_U268-Pad3_ Net-_U284-Pad2_ d_inverter +U283 Net-_U267-Pad3_ Net-_U283-Pad2_ d_inverter +U88 /i10 /ni12 Net-_U152-Pad1_ d_and +U87 /ni9 /i12 Net-_U151-Pad1_ d_and +U86 /i9 /i11 Net-_U150-Pad1_ d_and +U85 /i7 /i9 Net-_U149-Pad1_ d_and +U84 /i6 /ni8 Net-_U148-Pad1_ d_and +U80 /i3 /ni5 Net-_U144-Pad1_ d_and +U79 /ni2 /i5 Net-_U143-Pad1_ d_and +U28 /i6 /ni6 d_inverter +U27 /i5 /ni5 d_inverter +U30 /i8 /ni8 d_inverter +U29 /i7 /ni7 d_inverter +U83 /ni5 /i8 Net-_U147-Pad1_ d_and +U82 /i5 /i7 Net-_U146-Pad1_ d_and +U81 /i4 /i6 Net-_U145-Pad1_ d_and +U26 /i4 /ni4 d_inverter +U25 /i3 /ni3 d_inverter +U24 /i2 /ni2 d_inverter +U23 /i1 /ni1 d_inverter +U22 /i0 /ni0 d_inverter +U77 /i0 /ni4 Net-_U141-Pad1_ d_and +U78 /i2 /i3 Net-_U142-Pad1_ d_and +U76 /i1 /ni3 Net-_U140-Pad1_ d_and +U31 /i9 /ni9 d_inverter +U33 /i11 /ni11 d_inverter +U32 /i10 /ni10 d_inverter +U39 /i17 /ni17 d_inverter +U38 /i16 /ni16 d_inverter +U37 /i15 /ni15 d_inverter +U41 /i19 /ni19 d_inverter +U40 /i18 /ni18 d_inverter +U1 /i0 /i1 /i2 /i3 /i4 /i5 /i6 /i7 /i8 /i9 /i10 /i11 /i12 /i13 /i14 /i15 /i16 /i17 /i18 /i19 /clk /set /reset Net-_U1-Pad24_ Net-_U1-Pad25_ Net-_U1-Pad26_ PORT +U34 /i12 /ni12 d_inverter +U35 /i13 /ni13 d_inverter +U36 /i14 unconnected-_U36-Pad2_ d_inverter +U248 Net-_U226-Pad3_ Net-_U227-Pad3_ Net-_U248-Pad3_ d_or +U264 Net-_U248-Pad3_ Net-_U228-Pad3_ Net-_U264-Pad3_ d_or +U233 Net-_U169-Pad3_ /ni18 Net-_U233-Pad3_ d_and +U263 Net-_U247-Pad3_ Net-_U232-Pad3_ Net-_U263-Pad3_ d_or +U247 Net-_U230-Pad3_ Net-_U231-Pad3_ Net-_U247-Pad3_ d_or +U257 Net-_U241-Pad3_ Net-_U220-Pad3_ Net-_U257-Pad3_ d_or +U265 Net-_U249-Pad3_ Net-_U224-Pad3_ Net-_U265-Pad3_ d_or +U249 Net-_U222-Pad3_ Net-_U223-Pad3_ Net-_U249-Pad3_ d_or +U297 Net-_U281-Pad3_ Net-_U297-Pad2_ d_inverter +U281 Net-_U265-Pad3_ Net-_U225-Pad3_ Net-_U281-Pad3_ d_or +U280 Net-_U264-Pad3_ Net-_U229-Pad3_ Net-_U280-Pad3_ d_or +U279 Net-_U263-Pad3_ Net-_U233-Pad3_ Net-_U279-Pad3_ d_or +U289 Net-_U273-Pad3_ Net-_U289-Pad2_ d_inverter +U273 Net-_U257-Pad3_ Net-_U221-Pad3_ Net-_U273-Pad3_ d_or +U296 Net-_U280-Pad3_ Net-_U296-Pad2_ d_inverter +U295 Net-_U279-Pad3_ Net-_U295-Pad2_ d_inverter +U241 Net-_U218-Pad3_ Net-_U219-Pad3_ Net-_U241-Pad3_ d_or +U313 Net-_U295-Pad2_ /clk /set /reset Net-_U1-Pad26_ unconnected-_U313-Pad6_ d_dff +U312 Net-_U296-Pad2_ /clk /set /reset unconnected-_U312-Pad5_ unconnected-_U312-Pad6_ d_dff +U311 Net-_U297-Pad2_ /clk /set /reset unconnected-_U311-Pad5_ unconnected-_U311-Pad6_ d_dff +U310 Net-_U289-Pad2_ /clk /set /reset unconnected-_U310-Pad5_ unconnected-_U310-Pad6_ d_dff +U206 Net-_U142-Pad3_ /i8 Net-_U206-Pad3_ d_and +U207 Net-_U143-Pad3_ /ni9 Net-_U207-Pad3_ d_and +U205 Net-_U141-Pad3_ /i7 Net-_U205-Pad3_ d_and +U204 Net-_U140-Pad3_ /i6 Net-_U204-Pad3_ d_and +U203 Net-_U139-Pad3_ /ni5 Net-_U203-Pad3_ d_and +U202 Net-_U138-Pad3_ /i3 Net-_U202-Pad3_ d_and +U210 Net-_U146-Pad3_ /i12 Net-_U210-Pad3_ d_and +U209 Net-_U145-Pad3_ /ni11 Net-_U209-Pad3_ d_and +U208 Net-_U144-Pad3_ /i10 Net-_U208-Pad3_ d_and +U75 /ni0 /i2 Net-_U139-Pad1_ d_and +U74 /i0 /i1 Net-_U138-Pad1_ d_and +U139 Net-_U139-Pad1_ /i4 Net-_U139-Pad3_ d_and +U140 Net-_U140-Pad1_ /i5 Net-_U140-Pad3_ d_and +U138 Net-_U138-Pad1_ /ni2 Net-_U138-Pad3_ d_and +U142 Net-_U142-Pad1_ /ni4 Net-_U142-Pad3_ d_and +U141 Net-_U141-Pad1_ /ni6 Net-_U141-Pad3_ d_and +U149 Net-_U149-Pad1_ /ni12 Net-_U149-Pad3_ d_and +U148 Net-_U148-Pad1_ /i11 Net-_U148-Pad3_ d_and +U147 Net-_U147-Pad1_ /i10 Net-_U147-Pad3_ d_and +U144 Net-_U144-Pad1_ /i7 Net-_U144-Pad3_ d_and +U146 Net-_U146-Pad1_ /ni9 Net-_U146-Pad3_ d_and +U145 Net-_U145-Pad1_ /ni8 Net-_U145-Pad3_ d_and +U143 Net-_U143-Pad1_ /i6 Net-_U143-Pad3_ d_and +U150 Net-_U150-Pad1_ /ni13 Net-_U150-Pad3_ d_and +U213 Net-_U149-Pad3_ /ni15 Net-_U213-Pad3_ d_and +U212 Net-_U148-Pad3_ /i14 Net-_U212-Pad3_ d_and +U211 Net-_U147-Pad3_ /ni13 Net-_U211-Pad3_ d_and +U152 Net-_U152-Pad1_ /i15 Net-_U152-Pad3_ d_and +U151 Net-_U151-Pad1_ /i14 Net-_U151-Pad3_ d_and +U215 Net-_U151-Pad3_ /ni17 Net-_U215-Pad3_ d_and +U216 Net-_U152-Pad3_ /i6 Net-_U216-Pad3_ d_and +U214 Net-_U150-Pad3_ /i16 Net-_U214-Pad3_ d_and +U307 Net-_U291-Pad2_ /clk /set /reset unconnected-_U307-Pad5_ unconnected-_U307-Pad6_ d_dff +U308 Net-_U293-Pad2_ /clk /set /reset unconnected-_U308-Pad5_ unconnected-_U308-Pad6_ d_dff +U306 Net-_U290-Pad2_ /clk /set /reset Net-_U1-Pad24_ unconnected-_U306-Pad6_ d_dff +U309 Net-_U294-Pad2_ /clk /set /reset Net-_U1-Pad25_ unconnected-_U309-Pad6_ d_dff +U291 Net-_U275-Pad3_ Net-_U291-Pad2_ d_inverter +U275 Net-_U259-Pad3_ Net-_U209-Pad3_ Net-_U275-Pad3_ d_or +U290 Net-_U274-Pad3_ Net-_U290-Pad2_ d_inverter +U274 Net-_U258-Pad3_ Net-_U205-Pad3_ Net-_U274-Pad3_ d_or +U294 Net-_U278-Pad3_ Net-_U294-Pad2_ d_inverter +U293 Net-_U277-Pad3_ Net-_U293-Pad2_ d_inverter +U278 Net-_U262-Pad3_ Net-_U217-Pad3_ Net-_U278-Pad3_ d_or +U277 Net-_U261-Pad3_ Net-_U213-Pad3_ Net-_U277-Pad3_ d_or +U259 Net-_U243-Pad3_ Net-_U208-Pad3_ Net-_U259-Pad3_ d_or +U258 Net-_U242-Pad3_ Net-_U204-Pad3_ Net-_U258-Pad3_ d_or +U242 Net-_U202-Pad3_ Net-_U203-Pad3_ Net-_U242-Pad3_ d_or +U262 Net-_U246-Pad3_ Net-_U216-Pad3_ Net-_U262-Pad3_ d_or +U246 Net-_U214-Pad3_ Net-_U215-Pad3_ Net-_U246-Pad3_ d_or +U261 Net-_U245-Pad3_ Net-_U212-Pad3_ Net-_U261-Pad3_ d_or +U245 Net-_U210-Pad3_ Net-_U211-Pad3_ Net-_U245-Pad3_ d_or +U243 Net-_U206-Pad3_ Net-_U207-Pad3_ Net-_U243-Pad3_ d_or +U101 /i3 /i6 Net-_U101-Pad3_ d_and +U162 Net-_U162-Pad1_ /ni6 Net-_U162-Pad3_ d_and +U161 Net-_U161-Pad1_ /ni4 Net-_U161-Pad3_ d_and +U160 Net-_U160-Pad1_ /i3 Net-_U160-Pad3_ d_and +U97 /i19 /i1 Net-_U161-Pad1_ d_and +U96 /i18 /ni0 Net-_U160-Pad1_ d_and +U229 Net-_U165-Pad3_ /ni12 Net-_U229-Pad3_ d_and +U230 Net-_U166-Pad3_ /i15 Net-_U230-Pad3_ d_and +U231 Net-_U167-Pad3_ /ni16 Net-_U231-Pad3_ d_and +U232 Net-_U168-Pad3_ /i17 Net-_U232-Pad3_ d_and +U228 Net-_U164-Pad3_ /i11 Net-_U228-Pad3_ d_and +U225 Net-_U161-Pad3_ /ni7 Net-_U225-Pad3_ d_and +U227 Net-_U163-Pad3_ /ni10 Net-_U227-Pad3_ d_and +U226 Net-_U162-Pad3_ /i9 Net-_U226-Pad3_ d_and +U224 Net-_U160-Pad3_ /ni3 Net-_U224-Pad3_ d_and +U165 Net-_U101-Pad3_ /ni9 Net-_U165-Pad3_ d_and +U164 Net-_U100-Pad3_ /i8 Net-_U164-Pad3_ d_and +U163 Net-_U163-Pad1_ /i7 Net-_U163-Pad3_ d_and +U91 /ni13 /i16 Net-_U155-Pad1_ d_and +U90 /i13 /i15 Net-_U154-Pad1_ d_and +U89 /i11 /i13 Net-_U153-Pad1_ d_and +U95 /ni17 /i0 Net-_U159-Pad1_ d_and +U94 /i17 /i19 Net-_U158-Pad1_ d_and +U93 /i15 /i17 Net-_U157-Pad1_ d_and +U92 /i14 /ni16 Net-_U156-Pad1_ d_and +U99 /ni1 /i5 Net-_U163-Pad1_ d_and +U100 /i2 /ni5 Net-_U100-Pad3_ d_and +U98 /i1 /i4 Net-_U162-Pad1_ d_and +U155 Net-_U155-Pad1_ /i18 Net-_U155-Pad3_ d_and +U154 Net-_U154-Pad1_ /ni17 Net-_U154-Pad3_ d_and +U153 Net-_U153-Pad1_ /ni16 Net-_U153-Pad3_ d_and +U218 Net-_U154-Pad3_ /ni19 Net-_U218-Pad3_ d_and +U219 Net-_U155-Pad3_ /i0 Net-_U219-Pad3_ d_and +U217 Net-_U153-Pad3_ /i18 Net-_U217-Pad3_ d_and +U158 Net-_U158-Pad1_ /ni1 Net-_U158-Pad3_ d_and +U157 Net-_U157-Pad1_ /ni0 Net-_U157-Pad3_ d_and +U159 Net-_U159-Pad1_ /i2 Net-_U159-Pad3_ d_and +U156 Net-_U156-Pad1_ /i19 Net-_U156-Pad3_ d_and +U223 Net-_U159-Pad3_ /i2 Net-_U223-Pad3_ d_and +U221 Net-_U157-Pad3_ /ni5 Net-_U221-Pad3_ d_and +U222 Net-_U158-Pad3_ /ni1 Net-_U222-Pad3_ d_and +U220 Net-_U156-Pad3_ /i4 Net-_U220-Pad3_ d_and +U103 /ni8 /i11 Net-_U103-Pad3_ d_and +U102 /i8 /i10 Net-_U102-Pad3_ d_and +U105 /i10 /i12 Net-_U105-Pad3_ d_and +U104 /i9 /ni11 Net-_U104-Pad3_ d_and +U167 Net-_U103-Pad3_ /i13 Net-_U167-Pad3_ d_and +U169 Net-_U105-Pad3_ /ni15 Net-_U169-Pad3_ d_and +U168 Net-_U104-Pad3_ /i14 Net-_U168-Pad3_ d_and +U166 Net-_U102-Pad3_ /ni12 Net-_U166-Pad3_ d_and +.end diff --git a/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.cir.out b/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.cir.out new file mode 100644 index 000000000..bafefd3a1 --- /dev/null +++ b/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.cir.out @@ -0,0 +1,1292 @@ +.title kicad schematic + +* u6 /i4 /_ni4 d_inverter +* u5 /i3 /_ni3 d_inverter +* u2 /i0 /_ni0 d_inverter +* u4 /i2 /_ni2 d_inverter +* u3 /i1 /_ni1 d_inverter +* u119 net-_u119-pad1_ /i14 net-_u119-pad3_ d_and +* u118 net-_u118-pad1_ /__ni13 net-_u118-pad3_ d_and +* u117 net-_u117-pad1_ /__ni12 net-_u117-pad3_ d_and +* u52 /i6 /_ni8 net-_u116-pad1_ d_and +* u53 /i7 /i9 net-_u117-pad1_ d_and +* u51 /_ni5 /i8 net-_u115-pad1_ d_and +* u57 /i11 /i13 net-_u121-pad1_ d_and +* u56 /i10 /__ni12 net-_u120-pad1_ d_and +* u55 /_ni9 /i12 net-_u119-pad1_ d_and +* u54 /i9 /i11 net-_u118-pad1_ d_and +* u116 net-_u116-pad1_ /i11 net-_u116-pad3_ d_and +* u115 net-_u115-pad1_ /i10 net-_u115-pad3_ d_and +* u121 net-_u121-pad1_ /__ni16 net-_u121-pad3_ d_and +* u120 net-_u120-pad1_ /i15 net-_u120-pad3_ d_and +* u107 net-_u107-pad1_ /i4 net-_u107-pad3_ d_and +* u108 net-_u108-pad1_ /i5 net-_u108-pad3_ d_and +* u109 net-_u109-pad1_ /_ni6 net-_u109-pad3_ d_and +* u106 net-_u106-pad1_ /_ni2 net-_u106-pad3_ d_and +* u45 /i0 /_ni4 net-_u109-pad1_ d_and +* u44 /i1 /_ni3 net-_u108-pad1_ d_and +* u43 /_ni0 /i2 net-_u107-pad1_ d_and +* u42 /i0 /i1 net-_u106-pad1_ d_and +* u111 net-_u111-pad1_ /i6 net-_u111-pad3_ d_and +* u110 net-_u110-pad1_ /_ni4 net-_u110-pad3_ d_and +* u114 net-_u114-pad1_ /_ni9 net-_u114-pad3_ d_and +* u113 net-_u113-pad1_ /_ni8 net-_u113-pad3_ d_and +* u112 net-_u112-pad1_ /i7 net-_u112-pad3_ d_and +* u50 /i5 /i7 net-_u114-pad1_ d_and +* u49 /i4 /i6 net-_u113-pad1_ d_and +* u47 /_ni2 /i5 net-_u111-pad1_ d_and +* u48 /i3 /_ni5 net-_u112-pad1_ d_and +* u46 /i2 /i3 net-_u110-pad1_ d_and +* u17 /i15 /__ni15 d_inverter +* u16 /i14 unconnected-_u16-pad2_ d_inverter +* u19 /i17 /__ni17 d_inverter +* u18 /i16 /__ni16 d_inverter +* u21 /i19 /__ni19 d_inverter +* u20 /i18 /__ni18 d_inverter +* u11 /i9 /_ni9 d_inverter +* u10 /i8 /_ni8 d_inverter +* u9 /i7 /_ni7 d_inverter +* u15 /i13 /__ni13 d_inverter +* u14 /i12 /__ni12 d_inverter +* u13 /i11 /__ni11 d_inverter +* u12 /i10 /__ni10 d_inverter +* u8 /i6 /_ni6 d_inverter +* u7 /i5 /_ni5 d_inverter +* u302 net-_u282-pad2_ /clk /set /reset unconnected-_u302-pad5_ net-_u302-pad6_ d_dff +* u318 net-_u302-pad6_ unconnected-_u318-pad2_ dac_bridge_1 +* u292 net-_u276-pad3_ net-_u292-pad2_ d_inverter +* u282 net-_u266-pad3_ net-_u282-pad2_ d_inverter +* u288 net-_u272-pad3_ net-_u288-pad2_ d_inverter +* u287 net-_u271-pad3_ net-_u287-pad2_ d_inverter +* u272 net-_u256-pad3_ net-_u197-pad3_ net-_u272-pad3_ d_or +* u271 net-_u255-pad3_ net-_u201-pad3_ net-_u271-pad3_ d_or +* u256 net-_u240-pad3_ net-_u196-pad3_ net-_u256-pad3_ d_or +* u255 net-_u239-pad3_ net-_u200-pad3_ net-_u255-pad3_ d_or +* u187 net-_u123-pad3_ /i0 net-_u187-pad3_ d_and +* u188 net-_u124-pad3_ /i4 net-_u188-pad3_ d_and +* u186 net-_u122-pad3_ /__ni19 net-_u186-pad3_ d_and +* u190 net-_u126-pad3_ /_ni1 net-_u190-pad3_ d_and +* u189 net-_u125-pad3_ /_ni5 net-_u189-pad3_ d_and +* u244 net-_u190-pad3_ net-_u191-pad3_ net-_u244-pad3_ d_or +* u276 net-_u260-pad3_ net-_u193-pad3_ net-_u276-pad3_ d_or +* u260 net-_u244-pad3_ net-_u192-pad3_ net-_u260-pad3_ d_or +* u266 net-_u250-pad3_ net-_u189-pad3_ net-_u266-pad3_ d_or +* u250 net-_u234-pad3_ net-_u188-pad3_ net-_u250-pad3_ d_or +* u234 net-_u186-pad3_ net-_u187-pad3_ net-_u234-pad3_ d_or +* u240 net-_u194-pad3_ net-_u195-pad3_ net-_u240-pad3_ d_or +* u239 net-_u198-pad3_ net-_u199-pad3_ net-_u239-pad3_ d_or +* u192 net-_u128-pad3_ /_ni3 net-_u192-pad3_ d_and +* u193 net-_u129-pad3_ /_ni7 net-_u193-pad3_ d_and +* u191 net-_u127-pad3_ /i2 net-_u191-pad3_ d_and +* u197 net-_u133-pad3_ /__ni12 net-_u197-pad3_ d_and +* u198 net-_u134-pad3_ /i15 net-_u198-pad3_ d_and +* u196 net-_u132-pad3_ /i11 net-_u196-pad3_ d_and +* u195 net-_u131-pad3_ /__ni10 net-_u195-pad3_ d_and +* u194 net-_u130-pad3_ /i9 net-_u194-pad3_ d_and +* u201 net-_u137-pad3_ /__ni18 net-_u201-pad3_ d_and +* u200 net-_u136-pad3_ /i17 net-_u200-pad3_ d_and +* u199 net-_u135-pad3_ /__ni16 net-_u199-pad3_ d_and +* u319 net-_u303-pad6_ unconnected-_u319-pad2_ dac_bridge_1 +* u304 net-_u288-pad2_ /clk /set /reset unconnected-_u304-pad5_ net-_u304-pad6_ d_dff +* u303 net-_u292-pad2_ /clk /set /reset unconnected-_u303-pad5_ net-_u303-pad6_ d_dff +* u321 net-_u305-pad6_ unconnected-_u321-pad2_ dac_bridge_1 +* u320 net-_u304-pad6_ unconnected-_u320-pad2_ dac_bridge_1 +* u305 net-_u287-pad2_ /clk /set /reset unconnected-_u305-pad5_ net-_u305-pad6_ d_dff +* u123 net-_u123-pad1_ /i18 net-_u123-pad3_ d_and +* u125 net-_u125-pad1_ /_ni0 net-_u125-pad3_ d_and +* u124 net-_u124-pad1_ /i19 net-_u124-pad3_ d_and +* u122 net-_u122-pad1_ /__ni17 net-_u122-pad3_ d_and +* u61 /i15 /i17 net-_u125-pad1_ d_and +* u60 /i14 /__ni16 net-_u124-pad1_ d_and +* u59 /__ni13 /i16 net-_u123-pad1_ d_and +* u58 /i13 /i15 net-_u122-pad1_ d_and +* u66 /i1 /i4 net-_u130-pad1_ d_and +* u65 /i19 /i1 net-_u129-pad1_ d_and +* u64 /i18 /_ni0 net-_u128-pad1_ d_and +* u63 /__ni17 /i0 net-_u127-pad1_ d_and +* u67 /_ni1 /i5 net-_u131-pad1_ d_and +* u130 net-_u130-pad1_ /_ni6 net-_u130-pad3_ d_and +* u131 net-_u131-pad1_ /i7 net-_u131-pad3_ d_and +* u129 net-_u129-pad1_ /_ni4 net-_u129-pad3_ d_and +* u128 net-_u128-pad1_ /i3 net-_u128-pad3_ d_and +* u127 net-_u127-pad1_ /i2 net-_u127-pad3_ d_and +* u126 net-_u126-pad1_ /_ni1 net-_u126-pad3_ d_and +* u62 /i17 /i19 net-_u126-pad1_ d_and +* u72 /i9 /__ni11 net-_u136-pad1_ d_and +* u71 /_ni8 /i11 net-_u135-pad1_ d_and +* u70 /i8 /i10 net-_u134-pad1_ d_and +* u69 /i3 /i6 net-_u133-pad1_ d_and +* u68 /i2 /_ni5 net-_u132-pad1_ d_and +* u137 net-_u137-pad1_ /__ni15 net-_u137-pad3_ d_and +* u136 net-_u136-pad1_ /i14 net-_u136-pad3_ d_and +* u135 net-_u135-pad1_ /i13 net-_u135-pad3_ d_and +* u73 /i10 /i12 net-_u137-pad1_ d_and +* u134 net-_u134-pad1_ /__ni12 net-_u134-pad3_ d_and +* u133 net-_u133-pad1_ /_ni9 net-_u133-pad3_ d_and +* u132 net-_u132-pad1_ /i8 net-_u132-pad3_ d_and +* u252 net-_u236-pad3_ net-_u176-pad3_ net-_u252-pad3_ d_or +* u236 net-_u174-pad3_ net-_u175-pad3_ net-_u236-pad3_ d_or +* u235 net-_u170-pad3_ net-_u171-pad3_ net-_u235-pad3_ d_or +* u171 net-_u107-pad3_ /_ni5 net-_u171-pad3_ d_and +* u170 net-_u106-pad3_ /i3 net-_u170-pad3_ d_and +* u173 net-_u109-pad3_ /i7 net-_u173-pad3_ d_and +* u174 net-_u110-pad3_ /i8 net-_u174-pad3_ d_and +* u172 net-_u108-pad3_ /i6 net-_u172-pad3_ d_and +* u269 net-_u253-pad3_ net-_u181-pad3_ net-_u269-pad3_ d_or +* u268 net-_u252-pad3_ net-_u177-pad3_ net-_u268-pad3_ d_or +* u253 net-_u237-pad3_ net-_u180-pad3_ net-_u253-pad3_ d_or +* u267 net-_u251-pad3_ net-_u173-pad3_ net-_u267-pad3_ d_or +* u251 net-_u235-pad3_ net-_u172-pad3_ net-_u251-pad3_ d_or +* u316 net-_u300-pad6_ unconnected-_u316-pad2_ dac_bridge_1 +* u317 net-_u301-pad6_ unconnected-_u317-pad2_ dac_bridge_1 +* u301 net-_u286-pad2_ /clk /set /reset unconnected-_u301-pad5_ net-_u301-pad6_ d_dff +* u237 net-_u178-pad3_ net-_u179-pad3_ net-_u237-pad3_ d_or +* u179 net-_u115-pad3_ /__ni13 net-_u179-pad3_ d_and +* u178 net-_u114-pad3_ /i12 net-_u178-pad3_ d_and +* u177 net-_u113-pad3_ /__ni11 net-_u177-pad3_ d_and +* u176 net-_u112-pad3_ /i10 net-_u176-pad3_ d_and +* u175 net-_u111-pad3_ /_ni9 net-_u175-pad3_ d_and +* u181 net-_u117-pad3_ /__ni15 net-_u181-pad3_ d_and +* u182 net-_u118-pad3_ /i16 net-_u182-pad3_ d_and +* u180 net-_u116-pad3_ /i14 net-_u180-pad3_ d_and +* u270 net-_u254-pad3_ net-_u185-pad3_ net-_u270-pad3_ d_or +* u185 net-_u121-pad3_ /i18 net-_u185-pad3_ d_and +* u184 net-_u120-pad3_ /i6 net-_u184-pad3_ d_and +* u183 net-_u119-pad3_ /__ni17 net-_u183-pad3_ d_and +* u254 net-_u238-pad3_ net-_u184-pad3_ net-_u254-pad3_ d_or +* u238 net-_u182-pad3_ net-_u183-pad3_ net-_u238-pad3_ d_or +* u315 net-_u299-pad6_ unconnected-_u315-pad2_ dac_bridge_1 +* u314 net-_u298-pad6_ unconnected-_u314-pad2_ dac_bridge_1 +* u298 net-_u283-pad2_ /clk /set /reset unconnected-_u298-pad5_ net-_u298-pad6_ d_dff +* u286 net-_u270-pad3_ net-_u286-pad2_ d_inverter +* u300 net-_u285-pad2_ /clk /set /reset unconnected-_u300-pad5_ net-_u300-pad6_ d_dff +* u285 net-_u269-pad3_ net-_u285-pad2_ d_inverter +* u299 net-_u284-pad2_ /clk /set /reset unconnected-_u299-pad5_ net-_u299-pad6_ d_dff +* u284 net-_u268-pad3_ net-_u284-pad2_ d_inverter +* u283 net-_u267-pad3_ net-_u283-pad2_ d_inverter +* u88 /i10 /ni12 net-_u152-pad1_ d_and +* u87 /ni9 /i12 net-_u151-pad1_ d_and +* u86 /i9 /i11 net-_u150-pad1_ d_and +* u85 /i7 /i9 net-_u149-pad1_ d_and +* u84 /i6 /ni8 net-_u148-pad1_ d_and +* u80 /i3 /ni5 net-_u144-pad1_ d_and +* u79 /ni2 /i5 net-_u143-pad1_ d_and +* u28 /i6 /ni6 d_inverter +* u27 /i5 /ni5 d_inverter +* u30 /i8 /ni8 d_inverter +* u29 /i7 /ni7 d_inverter +* u83 /ni5 /i8 net-_u147-pad1_ d_and +* u82 /i5 /i7 net-_u146-pad1_ d_and +* u81 /i4 /i6 net-_u145-pad1_ d_and +* u26 /i4 /ni4 d_inverter +* u25 /i3 /ni3 d_inverter +* u24 /i2 /ni2 d_inverter +* u23 /i1 /ni1 d_inverter +* u22 /i0 /ni0 d_inverter +* u77 /i0 /ni4 net-_u141-pad1_ d_and +* u78 /i2 /i3 net-_u142-pad1_ d_and +* u76 /i1 /ni3 net-_u140-pad1_ d_and +* u31 /i9 /ni9 d_inverter +* u33 /i11 /ni11 d_inverter +* u32 /i10 /ni10 d_inverter +* u39 /i17 /ni17 d_inverter +* u38 /i16 /ni16 d_inverter +* u37 /i15 /ni15 d_inverter +* u41 /i19 /ni19 d_inverter +* u40 /i18 /ni18 d_inverter +* u1 /i0 /i1 /i2 /i3 /i4 /i5 /i6 /i7 /i8 /i9 /i10 /i11 /i12 /i13 /i14 /i15 /i16 /i17 /i18 /i19 /clk /set /reset net-_u1-pad24_ net-_u1-pad25_ net-_u1-pad26_ port +* u34 /i12 /ni12 d_inverter +* u35 /i13 /ni13 d_inverter +* u36 /i14 unconnected-_u36-pad2_ d_inverter +* u248 net-_u226-pad3_ net-_u227-pad3_ net-_u248-pad3_ d_or +* u264 net-_u248-pad3_ net-_u228-pad3_ net-_u264-pad3_ d_or +* u233 net-_u169-pad3_ /ni18 net-_u233-pad3_ d_and +* u263 net-_u247-pad3_ net-_u232-pad3_ net-_u263-pad3_ d_or +* u247 net-_u230-pad3_ net-_u231-pad3_ net-_u247-pad3_ d_or +* u257 net-_u241-pad3_ net-_u220-pad3_ net-_u257-pad3_ d_or +* u265 net-_u249-pad3_ net-_u224-pad3_ net-_u265-pad3_ d_or +* u249 net-_u222-pad3_ net-_u223-pad3_ net-_u249-pad3_ d_or +* u297 net-_u281-pad3_ net-_u297-pad2_ d_inverter +* u281 net-_u265-pad3_ net-_u225-pad3_ net-_u281-pad3_ d_or +* u280 net-_u264-pad3_ net-_u229-pad3_ net-_u280-pad3_ d_or +* u279 net-_u263-pad3_ net-_u233-pad3_ net-_u279-pad3_ d_or +* u289 net-_u273-pad3_ net-_u289-pad2_ d_inverter +* u273 net-_u257-pad3_ net-_u221-pad3_ net-_u273-pad3_ d_or +* u296 net-_u280-pad3_ net-_u296-pad2_ d_inverter +* u295 net-_u279-pad3_ net-_u295-pad2_ d_inverter +* u241 net-_u218-pad3_ net-_u219-pad3_ net-_u241-pad3_ d_or +* u313 net-_u295-pad2_ /clk /set /reset net-_u1-pad26_ unconnected-_u313-pad6_ d_dff +* u312 net-_u296-pad2_ /clk /set /reset unconnected-_u312-pad5_ unconnected-_u312-pad6_ d_dff +* u311 net-_u297-pad2_ /clk /set /reset unconnected-_u311-pad5_ unconnected-_u311-pad6_ d_dff +* u310 net-_u289-pad2_ /clk /set /reset unconnected-_u310-pad5_ unconnected-_u310-pad6_ d_dff +* u206 net-_u142-pad3_ /i8 net-_u206-pad3_ d_and +* u207 net-_u143-pad3_ /ni9 net-_u207-pad3_ d_and +* u205 net-_u141-pad3_ /i7 net-_u205-pad3_ d_and +* u204 net-_u140-pad3_ /i6 net-_u204-pad3_ d_and +* u203 net-_u139-pad3_ /ni5 net-_u203-pad3_ d_and +* u202 net-_u138-pad3_ /i3 net-_u202-pad3_ d_and +* u210 net-_u146-pad3_ /i12 net-_u210-pad3_ d_and +* u209 net-_u145-pad3_ /ni11 net-_u209-pad3_ d_and +* u208 net-_u144-pad3_ /i10 net-_u208-pad3_ d_and +* u75 /ni0 /i2 net-_u139-pad1_ d_and +* u74 /i0 /i1 net-_u138-pad1_ d_and +* u139 net-_u139-pad1_ /i4 net-_u139-pad3_ d_and +* u140 net-_u140-pad1_ /i5 net-_u140-pad3_ d_and +* u138 net-_u138-pad1_ /ni2 net-_u138-pad3_ d_and +* u142 net-_u142-pad1_ /ni4 net-_u142-pad3_ d_and +* u141 net-_u141-pad1_ /ni6 net-_u141-pad3_ d_and +* u149 net-_u149-pad1_ /ni12 net-_u149-pad3_ d_and +* u148 net-_u148-pad1_ /i11 net-_u148-pad3_ d_and +* u147 net-_u147-pad1_ /i10 net-_u147-pad3_ d_and +* u144 net-_u144-pad1_ /i7 net-_u144-pad3_ d_and +* u146 net-_u146-pad1_ /ni9 net-_u146-pad3_ d_and +* u145 net-_u145-pad1_ /ni8 net-_u145-pad3_ d_and +* u143 net-_u143-pad1_ /i6 net-_u143-pad3_ d_and +* u150 net-_u150-pad1_ /ni13 net-_u150-pad3_ d_and +* u213 net-_u149-pad3_ /ni15 net-_u213-pad3_ d_and +* u212 net-_u148-pad3_ /i14 net-_u212-pad3_ d_and +* u211 net-_u147-pad3_ /ni13 net-_u211-pad3_ d_and +* u152 net-_u152-pad1_ /i15 net-_u152-pad3_ d_and +* u151 net-_u151-pad1_ /i14 net-_u151-pad3_ d_and +* u215 net-_u151-pad3_ /ni17 net-_u215-pad3_ d_and +* u216 net-_u152-pad3_ /i6 net-_u216-pad3_ d_and +* u214 net-_u150-pad3_ /i16 net-_u214-pad3_ d_and +* u307 net-_u291-pad2_ /clk /set /reset unconnected-_u307-pad5_ unconnected-_u307-pad6_ d_dff +* u308 net-_u293-pad2_ /clk /set /reset unconnected-_u308-pad5_ unconnected-_u308-pad6_ d_dff +* u306 net-_u290-pad2_ /clk /set /reset net-_u1-pad24_ unconnected-_u306-pad6_ d_dff +* u309 net-_u294-pad2_ /clk /set /reset net-_u1-pad25_ unconnected-_u309-pad6_ d_dff +* u291 net-_u275-pad3_ net-_u291-pad2_ d_inverter +* u275 net-_u259-pad3_ net-_u209-pad3_ net-_u275-pad3_ d_or +* u290 net-_u274-pad3_ net-_u290-pad2_ d_inverter +* u274 net-_u258-pad3_ net-_u205-pad3_ net-_u274-pad3_ d_or +* u294 net-_u278-pad3_ net-_u294-pad2_ d_inverter +* u293 net-_u277-pad3_ net-_u293-pad2_ d_inverter +* u278 net-_u262-pad3_ net-_u217-pad3_ net-_u278-pad3_ d_or +* u277 net-_u261-pad3_ net-_u213-pad3_ net-_u277-pad3_ d_or +* u259 net-_u243-pad3_ net-_u208-pad3_ net-_u259-pad3_ d_or +* u258 net-_u242-pad3_ net-_u204-pad3_ net-_u258-pad3_ d_or +* u242 net-_u202-pad3_ net-_u203-pad3_ net-_u242-pad3_ d_or +* u262 net-_u246-pad3_ net-_u216-pad3_ net-_u262-pad3_ d_or +* u246 net-_u214-pad3_ net-_u215-pad3_ net-_u246-pad3_ d_or +* u261 net-_u245-pad3_ net-_u212-pad3_ net-_u261-pad3_ d_or +* u245 net-_u210-pad3_ net-_u211-pad3_ net-_u245-pad3_ d_or +* u243 net-_u206-pad3_ net-_u207-pad3_ net-_u243-pad3_ d_or +* u101 /i3 /i6 net-_u101-pad3_ d_and +* u162 net-_u162-pad1_ /ni6 net-_u162-pad3_ d_and +* u161 net-_u161-pad1_ /ni4 net-_u161-pad3_ d_and +* u160 net-_u160-pad1_ /i3 net-_u160-pad3_ d_and +* u97 /i19 /i1 net-_u161-pad1_ d_and +* u96 /i18 /ni0 net-_u160-pad1_ d_and +* u229 net-_u165-pad3_ /ni12 net-_u229-pad3_ d_and +* u230 net-_u166-pad3_ /i15 net-_u230-pad3_ d_and +* u231 net-_u167-pad3_ /ni16 net-_u231-pad3_ d_and +* u232 net-_u168-pad3_ /i17 net-_u232-pad3_ d_and +* u228 net-_u164-pad3_ /i11 net-_u228-pad3_ d_and +* u225 net-_u161-pad3_ /ni7 net-_u225-pad3_ d_and +* u227 net-_u163-pad3_ /ni10 net-_u227-pad3_ d_and +* u226 net-_u162-pad3_ /i9 net-_u226-pad3_ d_and +* u224 net-_u160-pad3_ /ni3 net-_u224-pad3_ d_and +* u165 net-_u101-pad3_ /ni9 net-_u165-pad3_ d_and +* u164 net-_u100-pad3_ /i8 net-_u164-pad3_ d_and +* u163 net-_u163-pad1_ /i7 net-_u163-pad3_ d_and +* u91 /ni13 /i16 net-_u155-pad1_ d_and +* u90 /i13 /i15 net-_u154-pad1_ d_and +* u89 /i11 /i13 net-_u153-pad1_ d_and +* u95 /ni17 /i0 net-_u159-pad1_ d_and +* u94 /i17 /i19 net-_u158-pad1_ d_and +* u93 /i15 /i17 net-_u157-pad1_ d_and +* u92 /i14 /ni16 net-_u156-pad1_ d_and +* u99 /ni1 /i5 net-_u163-pad1_ d_and +* u100 /i2 /ni5 net-_u100-pad3_ d_and +* u98 /i1 /i4 net-_u162-pad1_ d_and +* u155 net-_u155-pad1_ /i18 net-_u155-pad3_ d_and +* u154 net-_u154-pad1_ /ni17 net-_u154-pad3_ d_and +* u153 net-_u153-pad1_ /ni16 net-_u153-pad3_ d_and +* u218 net-_u154-pad3_ /ni19 net-_u218-pad3_ d_and +* u219 net-_u155-pad3_ /i0 net-_u219-pad3_ d_and +* u217 net-_u153-pad3_ /i18 net-_u217-pad3_ d_and +* u158 net-_u158-pad1_ /ni1 net-_u158-pad3_ d_and +* u157 net-_u157-pad1_ /ni0 net-_u157-pad3_ d_and +* u159 net-_u159-pad1_ /i2 net-_u159-pad3_ d_and +* u156 net-_u156-pad1_ /i19 net-_u156-pad3_ d_and +* u223 net-_u159-pad3_ /i2 net-_u223-pad3_ d_and +* u221 net-_u157-pad3_ /ni5 net-_u221-pad3_ d_and +* u222 net-_u158-pad3_ /ni1 net-_u222-pad3_ d_and +* u220 net-_u156-pad3_ /i4 net-_u220-pad3_ d_and +* u103 /ni8 /i11 net-_u103-pad3_ d_and +* u102 /i8 /i10 net-_u102-pad3_ d_and +* u105 /i10 /i12 net-_u105-pad3_ d_and +* u104 /i9 /ni11 net-_u104-pad3_ d_and +* u167 net-_u103-pad3_ /i13 net-_u167-pad3_ d_and +* u169 net-_u105-pad3_ /ni15 net-_u169-pad3_ d_and +* u168 net-_u104-pad3_ /i14 net-_u168-pad3_ d_and +* u166 net-_u102-pad3_ /ni12 net-_u166-pad3_ d_and +a1 /i4 /_ni4 u6 +a2 /i3 /_ni3 u5 +a3 /i0 /_ni0 u2 +a4 /i2 /_ni2 u4 +a5 /i1 /_ni1 u3 +a6 [net-_u119-pad1_ /i14 ] net-_u119-pad3_ u119 +a7 [net-_u118-pad1_ /__ni13 ] net-_u118-pad3_ u118 +a8 [net-_u117-pad1_ /__ni12 ] net-_u117-pad3_ u117 +a9 [/i6 /_ni8 ] net-_u116-pad1_ u52 +a10 [/i7 /i9 ] net-_u117-pad1_ u53 +a11 [/_ni5 /i8 ] net-_u115-pad1_ u51 +a12 [/i11 /i13 ] net-_u121-pad1_ u57 +a13 [/i10 /__ni12 ] net-_u120-pad1_ u56 +a14 [/_ni9 /i12 ] net-_u119-pad1_ u55 +a15 [/i9 /i11 ] net-_u118-pad1_ u54 +a16 [net-_u116-pad1_ /i11 ] net-_u116-pad3_ u116 +a17 [net-_u115-pad1_ /i10 ] net-_u115-pad3_ u115 +a18 [net-_u121-pad1_ /__ni16 ] net-_u121-pad3_ u121 +a19 [net-_u120-pad1_ /i15 ] net-_u120-pad3_ u120 +a20 [net-_u107-pad1_ /i4 ] net-_u107-pad3_ u107 +a21 [net-_u108-pad1_ /i5 ] net-_u108-pad3_ u108 +a22 [net-_u109-pad1_ /_ni6 ] net-_u109-pad3_ u109 +a23 [net-_u106-pad1_ /_ni2 ] net-_u106-pad3_ u106 +a24 [/i0 /_ni4 ] net-_u109-pad1_ u45 +a25 [/i1 /_ni3 ] net-_u108-pad1_ u44 +a26 [/_ni0 /i2 ] net-_u107-pad1_ u43 +a27 [/i0 /i1 ] net-_u106-pad1_ u42 +a28 [net-_u111-pad1_ /i6 ] net-_u111-pad3_ u111 +a29 [net-_u110-pad1_ /_ni4 ] net-_u110-pad3_ u110 +a30 [net-_u114-pad1_ /_ni9 ] net-_u114-pad3_ u114 +a31 [net-_u113-pad1_ /_ni8 ] net-_u113-pad3_ u113 +a32 [net-_u112-pad1_ /i7 ] net-_u112-pad3_ u112 +a33 [/i5 /i7 ] net-_u114-pad1_ u50 +a34 [/i4 /i6 ] net-_u113-pad1_ u49 +a35 [/_ni2 /i5 ] net-_u111-pad1_ u47 +a36 [/i3 /_ni5 ] net-_u112-pad1_ u48 +a37 [/i2 /i3 ] net-_u110-pad1_ u46 +a38 /i15 /__ni15 u17 +a39 /i14 unconnected-_u16-pad2_ u16 +a40 /i17 /__ni17 u19 +a41 /i16 /__ni16 u18 +a42 /i19 /__ni19 u21 +a43 /i18 /__ni18 u20 +a44 /i9 /_ni9 u11 +a45 /i8 /_ni8 u10 +a46 /i7 /_ni7 u9 +a47 /i13 /__ni13 u15 +a48 /i12 /__ni12 u14 +a49 /i11 /__ni11 u13 +a50 /i10 /__ni10 u12 +a51 /i6 /_ni6 u8 +a52 /i5 /_ni5 u7 +a53 net-_u282-pad2_ /clk /set /reset unconnected-_u302-pad5_ net-_u302-pad6_ u302 +a54 [net-_u302-pad6_ ] [unconnected-_u318-pad2_ ] u318 +a55 net-_u276-pad3_ net-_u292-pad2_ u292 +a56 net-_u266-pad3_ net-_u282-pad2_ u282 +a57 net-_u272-pad3_ net-_u288-pad2_ u288 +a58 net-_u271-pad3_ net-_u287-pad2_ u287 +a59 [net-_u256-pad3_ net-_u197-pad3_ ] net-_u272-pad3_ u272 +a60 [net-_u255-pad3_ net-_u201-pad3_ ] net-_u271-pad3_ u271 +a61 [net-_u240-pad3_ net-_u196-pad3_ ] net-_u256-pad3_ u256 +a62 [net-_u239-pad3_ net-_u200-pad3_ ] net-_u255-pad3_ u255 +a63 [net-_u123-pad3_ /i0 ] net-_u187-pad3_ u187 +a64 [net-_u124-pad3_ /i4 ] net-_u188-pad3_ u188 +a65 [net-_u122-pad3_ /__ni19 ] net-_u186-pad3_ u186 +a66 [net-_u126-pad3_ /_ni1 ] net-_u190-pad3_ u190 +a67 [net-_u125-pad3_ /_ni5 ] net-_u189-pad3_ u189 +a68 [net-_u190-pad3_ net-_u191-pad3_ ] net-_u244-pad3_ u244 +a69 [net-_u260-pad3_ net-_u193-pad3_ ] net-_u276-pad3_ u276 +a70 [net-_u244-pad3_ net-_u192-pad3_ ] net-_u260-pad3_ u260 +a71 [net-_u250-pad3_ net-_u189-pad3_ ] net-_u266-pad3_ u266 +a72 [net-_u234-pad3_ net-_u188-pad3_ ] net-_u250-pad3_ u250 +a73 [net-_u186-pad3_ net-_u187-pad3_ ] net-_u234-pad3_ u234 +a74 [net-_u194-pad3_ net-_u195-pad3_ ] net-_u240-pad3_ u240 +a75 [net-_u198-pad3_ net-_u199-pad3_ ] net-_u239-pad3_ u239 +a76 [net-_u128-pad3_ /_ni3 ] net-_u192-pad3_ u192 +a77 [net-_u129-pad3_ /_ni7 ] net-_u193-pad3_ u193 +a78 [net-_u127-pad3_ /i2 ] net-_u191-pad3_ u191 +a79 [net-_u133-pad3_ /__ni12 ] net-_u197-pad3_ u197 +a80 [net-_u134-pad3_ /i15 ] net-_u198-pad3_ u198 +a81 [net-_u132-pad3_ /i11 ] net-_u196-pad3_ u196 +a82 [net-_u131-pad3_ /__ni10 ] net-_u195-pad3_ u195 +a83 [net-_u130-pad3_ /i9 ] net-_u194-pad3_ u194 +a84 [net-_u137-pad3_ /__ni18 ] net-_u201-pad3_ u201 +a85 [net-_u136-pad3_ /i17 ] net-_u200-pad3_ u200 +a86 [net-_u135-pad3_ /__ni16 ] net-_u199-pad3_ u199 +a87 [net-_u303-pad6_ ] [unconnected-_u319-pad2_ ] u319 +a88 net-_u288-pad2_ /clk /set /reset unconnected-_u304-pad5_ net-_u304-pad6_ u304 +a89 net-_u292-pad2_ /clk /set /reset unconnected-_u303-pad5_ net-_u303-pad6_ u303 +a90 [net-_u305-pad6_ ] [unconnected-_u321-pad2_ ] u321 +a91 [net-_u304-pad6_ ] [unconnected-_u320-pad2_ ] u320 +a92 net-_u287-pad2_ /clk /set /reset unconnected-_u305-pad5_ net-_u305-pad6_ u305 +a93 [net-_u123-pad1_ /i18 ] net-_u123-pad3_ u123 +a94 [net-_u125-pad1_ /_ni0 ] net-_u125-pad3_ u125 +a95 [net-_u124-pad1_ /i19 ] net-_u124-pad3_ u124 +a96 [net-_u122-pad1_ /__ni17 ] net-_u122-pad3_ u122 +a97 [/i15 /i17 ] net-_u125-pad1_ u61 +a98 [/i14 /__ni16 ] net-_u124-pad1_ u60 +a99 [/__ni13 /i16 ] net-_u123-pad1_ u59 +a100 [/i13 /i15 ] net-_u122-pad1_ u58 +a101 [/i1 /i4 ] net-_u130-pad1_ u66 +a102 [/i19 /i1 ] net-_u129-pad1_ u65 +a103 [/i18 /_ni0 ] net-_u128-pad1_ u64 +a104 [/__ni17 /i0 ] net-_u127-pad1_ u63 +a105 [/_ni1 /i5 ] net-_u131-pad1_ u67 +a106 [net-_u130-pad1_ /_ni6 ] net-_u130-pad3_ u130 +a107 [net-_u131-pad1_ /i7 ] net-_u131-pad3_ u131 +a108 [net-_u129-pad1_ /_ni4 ] net-_u129-pad3_ u129 +a109 [net-_u128-pad1_ /i3 ] net-_u128-pad3_ u128 +a110 [net-_u127-pad1_ /i2 ] net-_u127-pad3_ u127 +a111 [net-_u126-pad1_ /_ni1 ] net-_u126-pad3_ u126 +a112 [/i17 /i19 ] net-_u126-pad1_ u62 +a113 [/i9 /__ni11 ] net-_u136-pad1_ u72 +a114 [/_ni8 /i11 ] net-_u135-pad1_ u71 +a115 [/i8 /i10 ] net-_u134-pad1_ u70 +a116 [/i3 /i6 ] net-_u133-pad1_ u69 +a117 [/i2 /_ni5 ] net-_u132-pad1_ u68 +a118 [net-_u137-pad1_ /__ni15 ] net-_u137-pad3_ u137 +a119 [net-_u136-pad1_ /i14 ] net-_u136-pad3_ u136 +a120 [net-_u135-pad1_ /i13 ] net-_u135-pad3_ u135 +a121 [/i10 /i12 ] net-_u137-pad1_ u73 +a122 [net-_u134-pad1_ /__ni12 ] net-_u134-pad3_ u134 +a123 [net-_u133-pad1_ /_ni9 ] net-_u133-pad3_ u133 +a124 [net-_u132-pad1_ /i8 ] net-_u132-pad3_ u132 +a125 [net-_u236-pad3_ net-_u176-pad3_ ] net-_u252-pad3_ u252 +a126 [net-_u174-pad3_ net-_u175-pad3_ ] net-_u236-pad3_ u236 +a127 [net-_u170-pad3_ net-_u171-pad3_ ] net-_u235-pad3_ u235 +a128 [net-_u107-pad3_ /_ni5 ] net-_u171-pad3_ u171 +a129 [net-_u106-pad3_ /i3 ] net-_u170-pad3_ u170 +a130 [net-_u109-pad3_ /i7 ] net-_u173-pad3_ u173 +a131 [net-_u110-pad3_ /i8 ] net-_u174-pad3_ u174 +a132 [net-_u108-pad3_ /i6 ] net-_u172-pad3_ u172 +a133 [net-_u253-pad3_ net-_u181-pad3_ ] net-_u269-pad3_ u269 +a134 [net-_u252-pad3_ net-_u177-pad3_ ] net-_u268-pad3_ u268 +a135 [net-_u237-pad3_ net-_u180-pad3_ ] net-_u253-pad3_ u253 +a136 [net-_u251-pad3_ net-_u173-pad3_ ] net-_u267-pad3_ u267 +a137 [net-_u235-pad3_ net-_u172-pad3_ ] net-_u251-pad3_ u251 +a138 [net-_u300-pad6_ ] [unconnected-_u316-pad2_ ] u316 +a139 [net-_u301-pad6_ ] [unconnected-_u317-pad2_ ] u317 +a140 net-_u286-pad2_ /clk /set /reset unconnected-_u301-pad5_ net-_u301-pad6_ u301 +a141 [net-_u178-pad3_ net-_u179-pad3_ ] net-_u237-pad3_ u237 +a142 [net-_u115-pad3_ /__ni13 ] net-_u179-pad3_ u179 +a143 [net-_u114-pad3_ /i12 ] net-_u178-pad3_ u178 +a144 [net-_u113-pad3_ /__ni11 ] net-_u177-pad3_ u177 +a145 [net-_u112-pad3_ /i10 ] net-_u176-pad3_ u176 +a146 [net-_u111-pad3_ /_ni9 ] net-_u175-pad3_ u175 +a147 [net-_u117-pad3_ /__ni15 ] net-_u181-pad3_ u181 +a148 [net-_u118-pad3_ /i16 ] net-_u182-pad3_ u182 +a149 [net-_u116-pad3_ /i14 ] net-_u180-pad3_ u180 +a150 [net-_u254-pad3_ net-_u185-pad3_ ] net-_u270-pad3_ u270 +a151 [net-_u121-pad3_ /i18 ] net-_u185-pad3_ u185 +a152 [net-_u120-pad3_ /i6 ] net-_u184-pad3_ u184 +a153 [net-_u119-pad3_ /__ni17 ] net-_u183-pad3_ u183 +a154 [net-_u238-pad3_ net-_u184-pad3_ ] net-_u254-pad3_ u254 +a155 [net-_u182-pad3_ net-_u183-pad3_ ] net-_u238-pad3_ u238 +a156 [net-_u299-pad6_ ] [unconnected-_u315-pad2_ ] u315 +a157 [net-_u298-pad6_ ] [unconnected-_u314-pad2_ ] u314 +a158 net-_u283-pad2_ /clk /set /reset unconnected-_u298-pad5_ net-_u298-pad6_ u298 +a159 net-_u270-pad3_ net-_u286-pad2_ u286 +a160 net-_u285-pad2_ /clk /set /reset unconnected-_u300-pad5_ net-_u300-pad6_ u300 +a161 net-_u269-pad3_ net-_u285-pad2_ u285 +a162 net-_u284-pad2_ /clk /set /reset unconnected-_u299-pad5_ net-_u299-pad6_ u299 +a163 net-_u268-pad3_ net-_u284-pad2_ u284 +a164 net-_u267-pad3_ net-_u283-pad2_ u283 +a165 [/i10 /ni12 ] net-_u152-pad1_ u88 +a166 [/ni9 /i12 ] net-_u151-pad1_ u87 +a167 [/i9 /i11 ] net-_u150-pad1_ u86 +a168 [/i7 /i9 ] net-_u149-pad1_ u85 +a169 [/i6 /ni8 ] net-_u148-pad1_ u84 +a170 [/i3 /ni5 ] net-_u144-pad1_ u80 +a171 [/ni2 /i5 ] net-_u143-pad1_ u79 +a172 /i6 /ni6 u28 +a173 /i5 /ni5 u27 +a174 /i8 /ni8 u30 +a175 /i7 /ni7 u29 +a176 [/ni5 /i8 ] net-_u147-pad1_ u83 +a177 [/i5 /i7 ] net-_u146-pad1_ u82 +a178 [/i4 /i6 ] net-_u145-pad1_ u81 +a179 /i4 /ni4 u26 +a180 /i3 /ni3 u25 +a181 /i2 /ni2 u24 +a182 /i1 /ni1 u23 +a183 /i0 /ni0 u22 +a184 [/i0 /ni4 ] net-_u141-pad1_ u77 +a185 [/i2 /i3 ] net-_u142-pad1_ u78 +a186 [/i1 /ni3 ] net-_u140-pad1_ u76 +a187 /i9 /ni9 u31 +a188 /i11 /ni11 u33 +a189 /i10 /ni10 u32 +a190 /i17 /ni17 u39 +a191 /i16 /ni16 u38 +a192 /i15 /ni15 u37 +a193 /i19 /ni19 u41 +a194 /i18 /ni18 u40 +a195 /i12 /ni12 u34 +a196 /i13 /ni13 u35 +a197 /i14 unconnected-_u36-pad2_ u36 +a198 [net-_u226-pad3_ net-_u227-pad3_ ] net-_u248-pad3_ u248 +a199 [net-_u248-pad3_ net-_u228-pad3_ ] net-_u264-pad3_ u264 +a200 [net-_u169-pad3_ /ni18 ] net-_u233-pad3_ u233 +a201 [net-_u247-pad3_ net-_u232-pad3_ ] net-_u263-pad3_ u263 +a202 [net-_u230-pad3_ net-_u231-pad3_ ] net-_u247-pad3_ u247 +a203 [net-_u241-pad3_ net-_u220-pad3_ ] net-_u257-pad3_ u257 +a204 [net-_u249-pad3_ net-_u224-pad3_ ] net-_u265-pad3_ u265 +a205 [net-_u222-pad3_ net-_u223-pad3_ ] net-_u249-pad3_ u249 +a206 net-_u281-pad3_ net-_u297-pad2_ u297 +a207 [net-_u265-pad3_ net-_u225-pad3_ ] net-_u281-pad3_ u281 +a208 [net-_u264-pad3_ net-_u229-pad3_ ] net-_u280-pad3_ u280 +a209 [net-_u263-pad3_ net-_u233-pad3_ ] net-_u279-pad3_ u279 +a210 net-_u273-pad3_ net-_u289-pad2_ u289 +a211 [net-_u257-pad3_ net-_u221-pad3_ ] net-_u273-pad3_ u273 +a212 net-_u280-pad3_ net-_u296-pad2_ u296 +a213 net-_u279-pad3_ net-_u295-pad2_ u295 +a214 [net-_u218-pad3_ net-_u219-pad3_ ] net-_u241-pad3_ u241 +a215 net-_u295-pad2_ /clk /set /reset net-_u1-pad26_ unconnected-_u313-pad6_ u313 +a216 net-_u296-pad2_ /clk /set /reset unconnected-_u312-pad5_ unconnected-_u312-pad6_ u312 +a217 net-_u297-pad2_ /clk /set /reset unconnected-_u311-pad5_ unconnected-_u311-pad6_ u311 +a218 net-_u289-pad2_ /clk /set /reset unconnected-_u310-pad5_ unconnected-_u310-pad6_ u310 +a219 [net-_u142-pad3_ /i8 ] net-_u206-pad3_ u206 +a220 [net-_u143-pad3_ /ni9 ] net-_u207-pad3_ u207 +a221 [net-_u141-pad3_ /i7 ] net-_u205-pad3_ u205 +a222 [net-_u140-pad3_ /i6 ] net-_u204-pad3_ u204 +a223 [net-_u139-pad3_ /ni5 ] net-_u203-pad3_ u203 +a224 [net-_u138-pad3_ /i3 ] net-_u202-pad3_ u202 +a225 [net-_u146-pad3_ /i12 ] net-_u210-pad3_ u210 +a226 [net-_u145-pad3_ /ni11 ] net-_u209-pad3_ u209 +a227 [net-_u144-pad3_ /i10 ] net-_u208-pad3_ u208 +a228 [/ni0 /i2 ] net-_u139-pad1_ u75 +a229 [/i0 /i1 ] net-_u138-pad1_ u74 +a230 [net-_u139-pad1_ /i4 ] net-_u139-pad3_ u139 +a231 [net-_u140-pad1_ /i5 ] net-_u140-pad3_ u140 +a232 [net-_u138-pad1_ /ni2 ] net-_u138-pad3_ u138 +a233 [net-_u142-pad1_ /ni4 ] net-_u142-pad3_ u142 +a234 [net-_u141-pad1_ /ni6 ] net-_u141-pad3_ u141 +a235 [net-_u149-pad1_ /ni12 ] net-_u149-pad3_ u149 +a236 [net-_u148-pad1_ /i11 ] net-_u148-pad3_ u148 +a237 [net-_u147-pad1_ /i10 ] net-_u147-pad3_ u147 +a238 [net-_u144-pad1_ /i7 ] net-_u144-pad3_ u144 +a239 [net-_u146-pad1_ /ni9 ] net-_u146-pad3_ u146 +a240 [net-_u145-pad1_ /ni8 ] net-_u145-pad3_ u145 +a241 [net-_u143-pad1_ /i6 ] net-_u143-pad3_ u143 +a242 [net-_u150-pad1_ /ni13 ] net-_u150-pad3_ u150 +a243 [net-_u149-pad3_ /ni15 ] net-_u213-pad3_ u213 +a244 [net-_u148-pad3_ /i14 ] net-_u212-pad3_ u212 +a245 [net-_u147-pad3_ /ni13 ] net-_u211-pad3_ u211 +a246 [net-_u152-pad1_ /i15 ] net-_u152-pad3_ u152 +a247 [net-_u151-pad1_ /i14 ] net-_u151-pad3_ u151 +a248 [net-_u151-pad3_ /ni17 ] net-_u215-pad3_ u215 +a249 [net-_u152-pad3_ /i6 ] net-_u216-pad3_ u216 +a250 [net-_u150-pad3_ /i16 ] net-_u214-pad3_ u214 +a251 net-_u291-pad2_ /clk /set /reset unconnected-_u307-pad5_ unconnected-_u307-pad6_ u307 +a252 net-_u293-pad2_ /clk /set /reset unconnected-_u308-pad5_ unconnected-_u308-pad6_ u308 +a253 net-_u290-pad2_ /clk /set /reset net-_u1-pad24_ unconnected-_u306-pad6_ u306 +a254 net-_u294-pad2_ /clk /set /reset net-_u1-pad25_ unconnected-_u309-pad6_ u309 +a255 net-_u275-pad3_ net-_u291-pad2_ u291 +a256 [net-_u259-pad3_ net-_u209-pad3_ ] net-_u275-pad3_ u275 +a257 net-_u274-pad3_ net-_u290-pad2_ u290 +a258 [net-_u258-pad3_ net-_u205-pad3_ ] net-_u274-pad3_ u274 +a259 net-_u278-pad3_ net-_u294-pad2_ u294 +a260 net-_u277-pad3_ net-_u293-pad2_ u293 +a261 [net-_u262-pad3_ net-_u217-pad3_ ] net-_u278-pad3_ u278 +a262 [net-_u261-pad3_ net-_u213-pad3_ ] net-_u277-pad3_ u277 +a263 [net-_u243-pad3_ net-_u208-pad3_ ] net-_u259-pad3_ u259 +a264 [net-_u242-pad3_ net-_u204-pad3_ ] net-_u258-pad3_ u258 +a265 [net-_u202-pad3_ net-_u203-pad3_ ] net-_u242-pad3_ u242 +a266 [net-_u246-pad3_ net-_u216-pad3_ ] net-_u262-pad3_ u262 +a267 [net-_u214-pad3_ net-_u215-pad3_ ] net-_u246-pad3_ u246 +a268 [net-_u245-pad3_ net-_u212-pad3_ ] net-_u261-pad3_ u261 +a269 [net-_u210-pad3_ net-_u211-pad3_ ] net-_u245-pad3_ u245 +a270 [net-_u206-pad3_ net-_u207-pad3_ ] net-_u243-pad3_ u243 +a271 [/i3 /i6 ] net-_u101-pad3_ u101 +a272 [net-_u162-pad1_ /ni6 ] net-_u162-pad3_ u162 +a273 [net-_u161-pad1_ /ni4 ] net-_u161-pad3_ u161 +a274 [net-_u160-pad1_ /i3 ] net-_u160-pad3_ u160 +a275 [/i19 /i1 ] net-_u161-pad1_ u97 +a276 [/i18 /ni0 ] net-_u160-pad1_ u96 +a277 [net-_u165-pad3_ /ni12 ] net-_u229-pad3_ u229 +a278 [net-_u166-pad3_ /i15 ] net-_u230-pad3_ u230 +a279 [net-_u167-pad3_ /ni16 ] net-_u231-pad3_ u231 +a280 [net-_u168-pad3_ /i17 ] net-_u232-pad3_ u232 +a281 [net-_u164-pad3_ /i11 ] net-_u228-pad3_ u228 +a282 [net-_u161-pad3_ /ni7 ] net-_u225-pad3_ u225 +a283 [net-_u163-pad3_ /ni10 ] net-_u227-pad3_ u227 +a284 [net-_u162-pad3_ /i9 ] net-_u226-pad3_ u226 +a285 [net-_u160-pad3_ /ni3 ] net-_u224-pad3_ u224 +a286 [net-_u101-pad3_ /ni9 ] net-_u165-pad3_ u165 +a287 [net-_u100-pad3_ /i8 ] net-_u164-pad3_ u164 +a288 [net-_u163-pad1_ /i7 ] net-_u163-pad3_ u163 +a289 [/ni13 /i16 ] net-_u155-pad1_ u91 +a290 [/i13 /i15 ] net-_u154-pad1_ u90 +a291 [/i11 /i13 ] net-_u153-pad1_ u89 +a292 [/ni17 /i0 ] net-_u159-pad1_ u95 +a293 [/i17 /i19 ] net-_u158-pad1_ u94 +a294 [/i15 /i17 ] net-_u157-pad1_ u93 +a295 [/i14 /ni16 ] net-_u156-pad1_ u92 +a296 [/ni1 /i5 ] net-_u163-pad1_ u99 +a297 [/i2 /ni5 ] net-_u100-pad3_ u100 +a298 [/i1 /i4 ] net-_u162-pad1_ u98 +a299 [net-_u155-pad1_ /i18 ] net-_u155-pad3_ u155 +a300 [net-_u154-pad1_ /ni17 ] net-_u154-pad3_ u154 +a301 [net-_u153-pad1_ /ni16 ] net-_u153-pad3_ u153 +a302 [net-_u154-pad3_ /ni19 ] net-_u218-pad3_ u218 +a303 [net-_u155-pad3_ /i0 ] net-_u219-pad3_ u219 +a304 [net-_u153-pad3_ /i18 ] net-_u217-pad3_ u217 +a305 [net-_u158-pad1_ /ni1 ] net-_u158-pad3_ u158 +a306 [net-_u157-pad1_ /ni0 ] net-_u157-pad3_ u157 +a307 [net-_u159-pad1_ /i2 ] net-_u159-pad3_ u159 +a308 [net-_u156-pad1_ /i19 ] net-_u156-pad3_ u156 +a309 [net-_u159-pad3_ /i2 ] net-_u223-pad3_ u223 +a310 [net-_u157-pad3_ /ni5 ] net-_u221-pad3_ u221 +a311 [net-_u158-pad3_ /ni1 ] net-_u222-pad3_ u222 +a312 [net-_u156-pad3_ /i4 ] net-_u220-pad3_ u220 +a313 [/ni8 /i11 ] net-_u103-pad3_ u103 +a314 [/i8 /i10 ] net-_u102-pad3_ u102 +a315 [/i10 /i12 ] net-_u105-pad3_ u105 +a316 [/i9 /ni11 ] net-_u104-pad3_ u104 +a317 [net-_u103-pad3_ /i13 ] net-_u167-pad3_ u167 +a318 [net-_u105-pad3_ /ni15 ] net-_u169-pad3_ u169 +a319 [net-_u104-pad3_ /i14 ] net-_u168-pad3_ u168 +a320 [net-_u102-pad3_ /ni12 ] net-_u166-pad3_ u166 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u119 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u118 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u117 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u52 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u53 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u51 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u57 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u56 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u55 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u54 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u116 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u115 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u121 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u120 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u107 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u108 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u109 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u106 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u45 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u44 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u43 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u42 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u111 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u110 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u114 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u113 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u112 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u50 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u47 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u48 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u46 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u302 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u318 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u292 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u282 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u288 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u287 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u272 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u271 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u256 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u255 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u187 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u188 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u186 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u190 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u189 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u244 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u276 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u260 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u266 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u250 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u234 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u240 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u239 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u192 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u193 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u191 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u197 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u198 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u196 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u195 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u194 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u201 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u200 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u199 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u319 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u304 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u303 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u321 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u320 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u305 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u123 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u125 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u124 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u122 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u61 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u60 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u59 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u58 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u66 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u65 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u64 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u63 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u67 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u130 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u131 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u129 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u128 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u127 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u126 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u62 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u72 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u71 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u70 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u69 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u68 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u137 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u136 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u135 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u73 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u134 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u133 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u132 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u252 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u236 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u235 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u171 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u170 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u173 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u174 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u172 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u269 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u268 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u253 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u267 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u251 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u316 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u317 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u301 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u237 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u179 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u178 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u177 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u176 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u175 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u181 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u182 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u180 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u270 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u185 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u184 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u183 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u254 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u238 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u315 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u314 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u298 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u286 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u300 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u285 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u299 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u284 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u283 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u88 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u87 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u86 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u85 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u84 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u80 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u79 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u28 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u27 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u30 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u29 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u83 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u82 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u81 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u26 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u22 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u77 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u78 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u76 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u33 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u32 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u39 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u38 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u37 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u41 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u40 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u34 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u35 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u36 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u248 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u264 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u233 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u263 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u247 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u257 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u265 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u249 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u297 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u281 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u280 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u279 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u289 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u273 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u296 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u295 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u241 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u313 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u312 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u311 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u310 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u206 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u207 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u205 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u204 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u203 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u202 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u210 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u209 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u208 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u75 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u74 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u139 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u140 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u138 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u142 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u141 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u149 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u148 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u147 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u144 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u146 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u145 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u143 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u150 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u213 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u212 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u211 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u152 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u151 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u215 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u216 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u214 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u307 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u308 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u306 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u309 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u291 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u275 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u290 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u274 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u294 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u293 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u278 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u277 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u259 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u258 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u242 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u262 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u246 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u261 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u245 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u243 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u101 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u162 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u161 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u160 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u97 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u96 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u229 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u230 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u231 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u232 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u228 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u225 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u227 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u226 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u224 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u165 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u164 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u163 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u91 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u90 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u89 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u95 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u94 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u93 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u92 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u99 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u100 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u98 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u155 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u154 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u153 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u218 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u219 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u217 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u158 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u157 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u159 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u156 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u223 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u221 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u222 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u220 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u103 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u102 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u105 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u104 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u167 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u169 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u168 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u166 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.kicad_sch b/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.kicad_sch new file mode 100644 index 000000000..c629c1a6d --- /dev/null +++ b/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.kicad_sch @@ -0,0 +1,13785 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid fdd849ce-cc99-4d76-81ea-98713040b18f) + + (paper "A0") + + (lib_symbols + (symbol "eSim_Digital:d_and" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 1.27 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_and_0_1" + (polyline + (pts + (xy 3.81 -1.27) + (xy -6.35 -1.27) + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.5897 -0.5171) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.5971 3.0497) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_and_1_1" + (pin input line (at -11.43 2.54 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.08) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_dff" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_dff" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_dff_0_1" + (rectangle (start 8.89 11.43) (end -8.89 -10.16) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_dff_1_1" + (pin input line (at -13.97 8.89 0) (length 5.08) + (name "Din" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input clock (at -13.97 -7.62 0) (length 5.08) + (name "Clk" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 16.51 270) (length 5.08) + (name "Set" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -15.24 90) (length 5.08) + (name "Reset" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 8.89 180) (length 5.08) + (name "Dout" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 13.97 -7.62 180) (length 5.08) + (name "Ndout" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_inverter" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_inverter_0_1" + (polyline + (pts + (xy -2.54 1.27) + (xy -2.54 -1.27) + (xy 2.54 0) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_inverter_1_1" + (pin input line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output inverted (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Digital:d_or" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "d_or_0_1" + (arc (start -6.35 -1.27) (mid -5.7504 1.27) (end -6.35 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 -1.27) + (xy 3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -6.35 3.81) + (xy 3.81 3.81) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 -1.27) (mid 5.3181 -0.2399) (end 6.35 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 6.35 1.27) (mid 5.2222 2.6828) (end 3.81 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "d_or_1_1" + (pin input line (at -11.43 2.54 0) (length 5.461) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -11.43 0 0) (length 5.461) + (name "IN2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 11.43 1.27 180) (length 5.08) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Hybrid:dac_bridge_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 0 3.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "dac_bridge_1_0_1" + (rectangle (start -10.16 5.08) (end 8.89 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "dac_bridge_1_1_1" + (pin input line (at -15.24 1.27 0) (length 5.08) + (name "IN1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 1.27 180) (length 5.08) + (name "OUT1" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + + (no_connect (at 745.49 163.83) (uuid 10c405a8-3b47-460f-b3ca-f6387d66744d)) + (no_connect (at 797.56 212.09) (uuid 15963e39-08bd-4bf6-82d3-deacc1092e9c)) + (no_connect (at 791.21 608.33) (uuid 27fd78d7-e0e9-4676-9b3f-409fd2937a8f)) + (no_connect (at 791.21 615.95) (uuid 62cb6f4c-b497-440e-885c-20c347249773)) + (no_connect (at 745.49 115.57) (uuid 7349698e-4c2a-4b96-aa99-5d2778a08849)) + (no_connect (at 797.56 224.79) (uuid 7c5cdd71-6490-4d6d-883d-c900d5051ea1)) + (no_connect (at 768.35 504.19) (uuid 843cb9c0-7c67-4106-ac9c-34cd1268a914)) + (no_connect (at 791.21 598.17) (uuid 8a06a2f7-35ee-4f44-b67f-71d8b5523b7c)) + (no_connect (at 745.49 359.41) (uuid 8c22dc85-1d3e-48b4-932c-35ce3020df2b)) + (no_connect (at 768.35 797.56) (uuid 96fb8868-4fca-4f91-937b-2c67a894357d)) + (no_connect (at 745.49 311.15) (uuid 9df7f23d-0105-4751-ace7-20abc13f6656)) + (no_connect (at 745.49 213.36) (uuid 9ec8d296-0014-4fb4-a9ca-a14d55e2dd99)) + (no_connect (at 768.35 454.66) (uuid a744800c-c24f-4d9a-84c1-00d13db44772)) + (no_connect (at 791.21 605.79) (uuid abb3fccf-4582-44a4-aaf0-94a1ed63fd27)) + (no_connect (at 797.56 219.71) (uuid afbd51b2-e43a-4b98-8b28-5b51d086867c)) + (no_connect (at 768.35 552.45) (uuid b2ef665f-3725-4969-93b0-7a124e1942c0)) + (no_connect (at 419.1 181.61) (uuid ba4e14f4-2ce7-498e-8011-0739a183cf22)) + (no_connect (at 412.75 570.23) (uuid bb3d21b6-828e-4c72-87dd-0f2660edab74)) + (no_connect (at 791.21 603.25) (uuid bce7f235-e2b7-4c78-83a1-d5dce7b045a5)) + (no_connect (at 791.21 610.87) (uuid c712bbf4-f6a1-43c9-84e9-521ff4d5c3b5)) + (no_connect (at 768.35 748.03) (uuid d1b6ded6-632f-4296-bb0d-0abb1ab94d5e)) + (no_connect (at 768.35 699.77) (uuid d51a1285-eb41-4058-96bb-d5455ed46b30)) + (no_connect (at 768.35 650.24) (uuid e43e3a93-10dc-4c2b-9b62-674e0f13fe1e)) + (no_connect (at 791.21 600.71) (uuid e4b0616e-884c-42ed-849a-c455150b5270)) + (no_connect (at 791.21 613.41) (uuid eb69f692-4c38-4a7a-9786-8ba620a55267)) + (no_connect (at 768.35 601.98) (uuid ecacb746-e022-420e-b0a7-6f82c9385947)) + (no_connect (at 745.49 66.04) (uuid f4029454-c540-4622-b797-c93b9c3152c9)) + (no_connect (at 797.56 214.63) (uuid f73c6fcb-ab6f-4838-91f6-96e642c65691)) + (no_connect (at 745.49 408.94) (uuid f893935b-f6e8-4e92-8173-d579cf26074f)) + (no_connect (at 745.49 261.62) (uuid f8f9d1cc-cce8-4880-bd9c-920a046fb78c)) + (no_connect (at 797.56 222.25) (uuid fe7b621d-7911-4aa4-8efd-86a750c8288e)) + + (wire (pts (xy 529.59 339.09) (xy 535.94 339.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0016f7e4-405d-4fa2-9e81-be4ddcb2aa06) + ) + (wire (pts (xy 485.14 542.29) (xy 491.49 542.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 008b12ef-01a8-43c9-988c-9a78b92da51f) + ) + (wire (pts (xy 464.82 735.33) (xy 491.49 735.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01380f87-4c21-4195-8e4d-5e833d995f22) + ) + (wire (pts (xy 365.76 199.39) (xy 369.57 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0146763b-ba64-40cb-9e98-1758f4a6c1a3) + ) + (wire (pts (xy 491.49 257.81) (xy 497.84 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 014ad829-c503-415a-accd-40a2874e2262) + ) + (wire (pts (xy 491.49 187.96) (xy 497.84 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01f9ff89-e02b-464a-9824-f2d3969490a3) + ) + (wire (pts (xy 626.11 614.68) (xy 627.38 614.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0277d63d-1791-4e62-a6ae-f0d9abceaa30) + ) + (wire (pts (xy 558.8 383.54) (xy 613.41 383.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02c53885-9a8e-4b20-81a7-063ad11de7be) + ) + (wire (pts (xy 464.82 655.32) (xy 491.49 655.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02f2efb6-d485-49ad-b057-e4d0ed9768ed) + ) + (wire (pts (xy 628.65 566.42) (xy 629.92 566.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0317dbee-bcb6-4976-8678-4b1454a191be) + ) + (wire (pts (xy 651.51 477.52) (xy 655.32 477.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 034bd050-3076-4d0e-9a81-08aa37435e18) + ) + (wire (pts (xy 552.45 519.43) (xy 580.39 519.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03a74716-2aba-402f-9b37-cfa8eacaefe8) + ) + (wire (pts (xy 520.7 175.26) (xy 535.94 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05f79e74-1508-4456-bc44-e20cd111b0fa) + ) + (wire (pts (xy 600.71 613.41) (xy 603.25 613.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 060e90e4-0048-4fb0-a363-2c4d191e2c4c) + ) + (wire (pts (xy 491.49 165.1) (xy 497.84 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06fb3ac1-5f38-4e53-9915-cb913421ee2c) + ) + (wire (pts (xy 414.02 190.5) (xy 419.1 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 072cb7fd-4cfc-4806-b189-88f0c30ca18a) + ) + (wire (pts (xy 529.59 350.52) (xy 535.94 350.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 072fb2e9-73ab-41c0-a251-12f70e4f34b7) + ) + (wire (pts (xy 523.24 636.27) (xy 529.59 636.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07d7e595-cd18-4791-80dc-5db47f732003) + ) + (wire (pts (xy 435.61 668.02) (xy 441.96 668.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 096835c3-4b85-459e-9f2d-4febfede259b) + ) + (wire (pts (xy 407.67 455.93) (xy 412.75 455.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a422054-d2c6-49c2-8344-9bf368670c8b) + ) + (wire (pts (xy 709.93 163.83) (xy 717.55 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a9cf7ad-c615-40a2-8b2f-5ea289d394e9) + ) + (wire (pts (xy 523.24 773.43) (xy 529.59 773.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0acd4af7-9fbf-494b-b7a9-619c477ce477) + ) + (wire (pts (xy 552.45 726.44) (xy 608.33 726.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b0ba2c2-44c3-45d2-88d0-e943618b1ee9) + ) + (wire (pts (xy 523.24 784.86) (xy 529.59 784.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b443369-1328-4ad8-ae7a-a367587f2a07) + ) + (wire (pts (xy 523.24 624.84) (xy 529.59 624.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b96956e-a1a2-4876-9c66-131dd177ea4c) + ) + (wire (pts (xy 435.61 633.73) (xy 441.96 633.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c33d4a1-2695-4cd1-98e4-d7ce756f1e0a) + ) + (wire (pts (xy 529.59 236.22) (xy 535.94 236.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c9878cd-ec2e-4ee0-9ecd-856ab4e245d3) + ) + (wire (pts (xy 441.96 175.26) (xy 448.31 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d15383c-ae8f-436d-a5e5-59274952a555) + ) + (wire (pts (xy 552.45 669.29) (xy 585.47 669.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d23de8a-4f8b-4268-8ca2-6545ba0390c5) + ) + (wire (pts (xy 441.96 345.44) (xy 448.31 345.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d4404e1-2cac-4a1e-936d-ea65e1314a1b) + ) + (wire (pts (xy 520.7 163.83) (xy 535.94 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d6da6ff-2b5a-4517-9b20-b025fa7caf5c) + ) + (wire (pts (xy 491.49 107.95) (xy 497.84 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d846ba8-9230-4ee6-8e75-f9d21499b8d2) + ) + (wire (pts (xy 464.82 459.74) (xy 491.49 459.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0dc2e534-bd86-4155-8053-f3c85a30984c) + ) + (wire (pts (xy 414.02 57.15) (xy 419.1 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fda2592-2ffd-4458-be45-cbf03d28623d) + ) + (wire (pts (xy 471.17 335.28) (xy 497.84 335.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10e0f4b6-caa9-491f-ae3e-bf49dda2f932) + ) + (wire (pts (xy 725.17 805.18) (xy 725.17 810.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1144450b-3229-49a4-977b-e82b79221871) + ) + (wire (pts (xy 520.7 290.83) (xy 535.94 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11c11a4d-4625-4b6a-afc1-a42437345f58) + ) + (wire (pts (xy 435.61 688.34) (xy 441.96 688.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 131f465f-cbbe-4045-bdae-d292893a89ed) + ) + (wire (pts (xy 709.93 115.57) (xy 717.55 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 140451bc-7c93-462d-8408-5b5dcefec1ab) + ) + (wire (pts (xy 441.96 359.41) (xy 448.31 359.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 149e8e5f-a6c2-49b0-8b01-dc26406f1c8d) + ) + (wire (pts (xy 471.17 185.42) (xy 497.84 185.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14bbe282-f503-4ea7-9e69-9c8d1e932adb) + ) + (wire (pts (xy 601.98 474.98) (xy 604.52 474.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14c6ab13-0312-43b0-8570-39202e6efed6) + ) + (wire (pts (xy 407.67 521.97) (xy 412.75 521.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 159ec82a-b1a9-464e-ad34-2b22177e1495) + ) + (wire (pts (xy 558.8 176.53) (xy 586.74 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16480b28-2dbb-46d8-8d6d-1bdbc7c5f132) + ) + (wire (pts (xy 435.61 563.88) (xy 441.96 563.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1657c8fb-8c9e-4050-b8d1-be3561d713d9) + ) + (wire (pts (xy 520.7 267.97) (xy 535.94 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16799e53-9e68-4442-bb86-894f4a2b60ac) + ) + (wire (pts (xy 471.17 369.57) (xy 497.84 369.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16dc9453-c877-4949-a3c1-5795f5cf57ba) + ) + (wire (pts (xy 520.7 118.11) (xy 535.94 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16df7e9f-bde9-4fbe-93f1-a7242fd1930f) + ) + (wire (pts (xy 558.8 119.38) (xy 635 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16e1a0b3-b4d6-4774-a019-3c7f6e59ea22) + ) + (wire (pts (xy 514.35 656.59) (xy 529.59 656.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16f18f79-f16c-4b15-bb0b-bfed16fef348) + ) + (wire (pts (xy 529.59 270.51) (xy 535.94 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17806fd4-639d-4801-8005-0325e8862037) + ) + (wire (pts (xy 471.17 300.99) (xy 497.84 300.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 178eefd6-abe3-4665-8206-3141c4f4d808) + ) + (wire (pts (xy 365.76 220.98) (xy 369.57 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17c547af-c74d-4557-a0e2-e0bde1c1af8d) + ) + (wire (pts (xy 414.02 228.6) (xy 419.1 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18d1dc73-68cd-4a6e-a00c-af5d6598fe9d) + ) + (wire (pts (xy 514.35 702.31) (xy 529.59 702.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1939a02f-db59-4b5f-a974-913caa7a654b) + ) + (wire (pts (xy 441.96 267.97) (xy 448.31 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19576322-b3f1-4ab0-b8d9-dab3c9ea8899) + ) + (wire (pts (xy 471.17 312.42) (xy 497.84 312.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 197668ba-86e7-41af-8a07-f5bf7f40d915) + ) + (wire (pts (xy 435.61 722.63) (xy 441.96 722.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19864d63-9250-41e1-a35e-e5025197724a) + ) + (wire (pts (xy 441.96 231.14) (xy 448.31 231.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19af8f05-e6d5-4164-a338-0a678d0753c1) + ) + (wire (pts (xy 464.82 585.47) (xy 491.49 585.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19eec6e3-43f8-4c2c-a19b-bf70442ad945) + ) + (wire (pts (xy 529.59 259.08) (xy 535.94 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a2793b2-646f-4230-86a9-4ecede1fca53) + ) + (wire (pts (xy 703.58 438.15) (xy 711.2 438.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a80f28e-34ca-48a2-afca-1ec28e1f1a09) + ) + (wire (pts (xy 435.61 483.87) (xy 441.96 483.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1aeae671-3281-4931-8467-76964eb080f5) + ) + (wire (pts (xy 464.82 562.61) (xy 491.49 562.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b23d781-b2f9-4f52-a42b-4368ecc399b7) + ) + (wire (pts (xy 441.96 60.96) (xy 448.31 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1babdcce-5b3b-4e6a-bab6-9b81a51b0435) + ) + (wire (pts (xy 523.24 452.12) (xy 529.59 452.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bb9a75d-50f1-409b-9702-613d400712a9) + ) + (wire (pts (xy 731.52 220.98) (xy 731.52 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bde8ff1-9e42-4281-8fe4-4848cf0c542e) + ) + (wire (pts (xy 552.45 760.73) (xy 581.66 760.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c0119df-a87e-452a-a27a-b96ecc253b26) + ) + (wire (pts (xy 485.14 553.72) (xy 491.49 553.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c029ace-e129-4685-9f37-6bdd836dea80) + ) + (wire (pts (xy 491.49 39.37) (xy 497.84 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c0eb25c-6146-4273-aa36-f9c63fe7810b) + ) + (wire (pts (xy 435.61 552.45) (xy 441.96 552.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c4c0b34-2aca-4004-be39-6168295c7672) + ) + (wire (pts (xy 471.17 128.27) (xy 497.84 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c6aa947-6027-4d4f-b6b3-6509d959e4a5) + ) + (wire (pts (xy 586.74 142.24) (xy 586.74 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1caba8a2-1de0-4c49-bc9e-2cc8d0440449) + ) + (wire (pts (xy 464.82 448.31) (xy 491.49 448.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cc90f06-3e38-4cf6-a686-9aca974127fa) + ) + (wire (pts (xy 365.76 170.18) (xy 369.57 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d616c99-7528-413f-81f4-61cd78f0a5c7) + ) + (wire (pts (xy 725.17 657.86) (xy 725.17 662.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e5872ab-79cc-432a-b3d8-faba49a762c4) + ) + (wire (pts (xy 491.49 96.52) (xy 497.84 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f21a9ec-d45a-4d9b-be48-83385ca53dd6) + ) + (wire (pts (xy 407.67 579.12) (xy 412.75 579.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20314a05-201c-476c-9580-187ada648a15) + ) + (wire (pts (xy 464.82 425.45) (xy 491.49 425.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 208655bc-7042-4b44-a176-e4848bf12db7) + ) + (wire (pts (xy 485.14 565.15) (xy 491.49 565.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20eea7c8-5882-4e81-9c14-703fb06e4894) + ) + (wire (pts (xy 523.24 727.71) (xy 529.59 727.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21e71dc9-d869-479c-a8df-0ba5864759e1) + ) + (wire (pts (xy 471.17 139.7) (xy 497.84 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22771a72-75c8-4654-8c73-e79814d8c662) + ) + (wire (pts (xy 529.59 281.94) (xy 535.94 281.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22aaf4b3-582e-4167-a136-7918c019b946) + ) + (wire (pts (xy 791.21 600.71) (xy 788.67 600.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23de720a-29e2-4127-8c04-12d874993c08) + ) + (wire (pts (xy 783.59 633.73) (xy 783.59 608.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23f8453d-7e1f-4f29-b061-5622812b987a) + ) + (wire (pts (xy 529.59 132.08) (xy 535.94 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24441999-ea4e-4fd6-9a71-5e89d4d10ba9) + ) + (wire (pts (xy 441.96 207.01) (xy 448.31 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 246ecefa-4dd3-4006-89a9-ad14b03e663e) + ) + (wire (pts (xy 703.58 661.67) (xy 703.58 683.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24898f98-6cd2-4f59-937d-d8be9e4b1889) + ) + (wire (pts (xy 628.65 508) (xy 628.65 478.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24be1d5c-5ad8-4356-882b-4792400f86d9) + ) + (wire (pts (xy 514.35 633.73) (xy 529.59 633.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2521bd21-630d-4155-b8c9-b39b13f3cbd6) + ) + (wire (pts (xy 703.58 797.56) (xy 711.2 797.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25e636a8-d9d5-49bf-a9de-fd7fd3b17bff) + ) + (wire (pts (xy 552.45 530.86) (xy 580.39 530.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 269166ae-e8e8-4fcb-b7fe-3e5b05747a89) + ) + (wire (pts (xy 711.2 245.11) (xy 717.55 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26acb9f2-31fb-45c8-8a22-5e8b608c4416) + ) + (wire (pts (xy 514.35 495.3) (xy 529.59 495.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27063bf1-745c-40d2-a74f-95d64f432ae8) + ) + (wire (pts (xy 464.82 712.47) (xy 491.49 712.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 276b4676-de60-48bf-ae83-6a0801a25b74) + ) + (wire (pts (xy 435.61 608.33) (xy 441.96 608.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 277d82eb-8f9e-41aa-ae44-8d9134e77b55) + ) + (wire (pts (xy 471.17 48.26) (xy 497.84 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 278a6b4a-b49b-40c4-93e7-33cc97bf4ace) + ) + (wire (pts (xy 552.45 485.14) (xy 579.12 485.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2892acd6-4bae-4284-8965-002deeb85120) + ) + (wire (pts (xy 441.96 95.25) (xy 448.31 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28b602b2-c16f-4ee1-89f3-156ad50c8c72) + ) + (wire (pts (xy 520.7 152.4) (xy 535.94 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28cc4ed1-e98e-46c0-8f0b-d74d59d0272e) + ) + (wire (pts (xy 520.7 72.39) (xy 535.94 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29e171c0-1e2a-4cd1-ad92-8efe4f17cab9) + ) + (wire (pts (xy 491.49 223.52) (xy 497.84 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a08326a-f2e3-44c4-92da-7b2e70ca7d90) + ) + (wire (pts (xy 703.58 683.26) (xy 711.2 683.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a2362fa-723b-4de8-a40b-e7688e5e5bb3) + ) + (wire (pts (xy 388.62 455.93) (xy 392.43 455.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a4dfcbf-0f80-49da-b5c1-e75ef9f56f02) + ) + (wire (pts (xy 632.46 737.87) (xy 632.46 711.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a9e47ac-e286-47a3-8652-cba6027bdf45) + ) + (wire (pts (xy 514.35 770.89) (xy 529.59 770.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b32083c-ebda-4f9b-93ea-66a602f97ab1) + ) + (wire (pts (xy 464.82 746.76) (xy 491.49 746.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c415afe-b1a3-47ff-abb6-919bbe2e280d) + ) + (wire (pts (xy 709.93 147.32) (xy 717.55 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2cbeca44-fc00-4372-be87-5e77d9ccc8b3) + ) + (wire (pts (xy 485.14 496.57) (xy 491.49 496.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ce97ced-4b2a-439e-9aa6-e61967b623ee) + ) + (wire (pts (xy 394.97 105.41) (xy 398.78 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d3585c4-0219-4503-99bd-158650e8f1d2) + ) + (wire (pts (xy 709.93 49.53) (xy 717.55 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d71fdc2-a11e-4577-8580-c6641d3a4284) + ) + (wire (pts (xy 552.45 473.71) (xy 579.12 473.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e087676-53ed-4442-905b-2e327031747b) + ) + (wire (pts (xy 614.68 337.82) (xy 614.68 321.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e11099f-0c1c-46fc-a1cd-55f4e3f758da) + ) + (wire (pts (xy 491.49 50.8) (xy 497.84 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e36cb75-c6e3-4c7f-9c63-b4482e7a9b9a) + ) + (wire (pts (xy 441.96 118.11) (xy 448.31 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ee841b8-0be2-43ab-8150-eb1927100423) + ) + (wire (pts (xy 523.24 463.55) (xy 529.59 463.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2efed33a-46a5-4873-9bc8-304cab200f20) + ) + (wire (pts (xy 514.35 748.03) (xy 529.59 748.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ffc34d5-a0c4-49c2-9cd1-31f3f1471e61) + ) + (wire (pts (xy 709.93 342.9) (xy 717.55 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30c79e84-56c3-4ad4-805a-08e0b118bf46) + ) + (wire (pts (xy 435.61 656.59) (xy 441.96 656.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30f2e174-f430-4df2-b7ca-03f22f2ce7d0) + ) + (wire (pts (xy 739.14 535.94) (xy 786.13 535.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 310bb7ac-5df4-4984-82fe-fe44a6313006) + ) + (wire (pts (xy 485.14 530.86) (xy 491.49 530.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31297ced-cfd7-4996-bcac-b3407f03f52d) + ) + (wire (pts (xy 641.35 303.53) (xy 641.35 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 313c42c8-88f7-417d-8677-063f0f9bbd04) + ) + (wire (pts (xy 725.17 707.39) (xy 725.17 712.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3166c092-0db7-4774-9203-d1b46c1f103a) + ) + (wire (pts (xy 529.59 74.93) (xy 535.94 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31e1c9f6-785f-4ce7-81eb-2a7b3925e6ea) + ) + (wire (pts (xy 613.41 383.54) (xy 613.41 364.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 326b303d-efb7-4081-ad59-87016ddccf6b) + ) + (wire (pts (xy 654.05 753.11) (xy 657.86 753.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 32883c23-189f-46a5-9083-efec015088b9) + ) + (wire (pts (xy 491.49 73.66) (xy 497.84 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 334e4204-bedb-415b-8ca3-f1378d628ad4) + ) + (wire (pts (xy 704.85 615.95) (xy 704.85 633.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 341539aa-b092-4fc4-81f6-53dc46acec39) + ) + (wire (pts (xy 703.58 567.69) (xy 703.58 585.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34e59e09-6313-45b4-aba6-338f86258cdc) + ) + (wire (pts (xy 703.58 477.52) (xy 703.58 487.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3556ebbb-4943-4c6e-b287-1080bbdf6905) + ) + (wire (pts (xy 414.02 171.45) (xy 419.1 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35894762-06b6-479b-adaa-3624f83e4006) + ) + (wire (pts (xy 471.17 278.13) (xy 497.84 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3681fafc-fc81-4627-aab2-e8065c4ee0bc) + ) + (wire (pts (xy 491.49 176.53) (xy 497.84 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37008adc-3856-4f61-9ba0-b7f95a08a568) + ) + (wire (pts (xy 491.49 280.67) (xy 497.84 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 377556f6-1112-4905-9194-300563c468bc) + ) + (wire (pts (xy 435.61 748.03) (xy 441.96 748.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 378f2b41-98f2-40c1-949e-b7fa3a337c01) + ) + (wire (pts (xy 464.82 758.19) (xy 491.49 758.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37dc5a70-2363-4b90-9500-4787e04d8bb4) + ) + (wire (pts (xy 414.02 48.26) (xy 419.1 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37e76e45-72fe-48d1-b9e1-80bd08e2a68f) + ) + (wire (pts (xy 660.4 364.49) (xy 664.21 364.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 388422d6-d611-4c74-a27e-a16179bc8244) + ) + (wire (pts (xy 441.96 393.7) (xy 448.31 393.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3897f734-fca5-46b2-af70-d6c49ceb1ec5) + ) + (wire (pts (xy 520.7 302.26) (xy 535.94 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38b15d29-ff94-4426-8f42-f8b03b3d917f) + ) + (wire (pts (xy 731.52 318.77) (xy 731.52 323.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b2565ae-e0ad-4f6e-b1c4-7608f26605c8) + ) + (wire (pts (xy 365.76 189.23) (xy 369.57 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b3ea805-3e14-4caa-9874-f8608a196d65) + ) + (wire (pts (xy 703.58 748.03) (xy 711.2 748.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b5f4464-734f-4857-91e7-143fabcfa90b) + ) + (wire (pts (xy 435.61 435.61) (xy 441.96 435.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b8efa3a-afd1-4dcf-9e73-692e84960ed5) + ) + (wire (pts (xy 636.27 210.82) (xy 636.27 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ba8f220-5239-4053-ae04-17d6bddb1c3b) + ) + (wire (pts (xy 580.39 530.86) (xy 580.39 521.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c4c59bc-d0c9-4a2b-aad0-b22f7e29ed36) + ) + (wire (pts (xy 791.21 781.05) (xy 739.14 781.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c52bafd-3d20-416a-8e64-f2513335efd9) + ) + (wire (pts (xy 471.17 323.85) (xy 497.84 323.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ce3c406-e18e-4351-b907-be608b1bd26a) + ) + (wire (pts (xy 703.58 650.24) (xy 711.2 650.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ce6cf43-78ad-46f1-9699-b398dac3713d) + ) + (wire (pts (xy 441.96 49.53) (xy 448.31 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cece2c2-44c3-4d37-854c-57e80881116b) + ) + (wire (pts (xy 674.37 709.93) (xy 703.58 709.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d573d37-f4e1-42c5-ad68-62a5b55d7fdf) + ) + (wire (pts (xy 520.7 129.54) (xy 535.94 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d6a74c3-1dfd-4f49-a782-230d9c260f1f) + ) + (wire (pts (xy 652.78 567.69) (xy 656.59 567.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dac35ba-2084-4065-8cd1-f6b429ccc964) + ) + (wire (pts (xy 523.24 762) (xy 529.59 762)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3db12d4c-d659-452e-ab00-92d1a124c571) + ) + (wire (pts (xy 612.14 199.39) (xy 612.14 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e9ea407-c773-4fd8-8e65-47a70bcf9a17) + ) + (wire (pts (xy 464.82 494.03) (xy 491.49 494.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3eac602a-e2cb-425f-86ec-7f7063bc1f7f) + ) + (wire (pts (xy 788.67 613.41) (xy 791.21 613.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ef590b1-2adf-4bbb-a8a9-eea65f3be4d0) + ) + (wire (pts (xy 441.96 149.86) (xy 448.31 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f80d3c0-32d6-482e-9a1e-f9c36301cd59) + ) + (wire (pts (xy 514.35 736.6) (xy 529.59 736.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f890534-21a5-4762-bee7-09f038f5d1b5) + ) + (wire (pts (xy 471.17 151.13) (xy 497.84 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f9e4574-df56-4cd8-8f84-915b91df9843) + ) + (wire (pts (xy 581.66 760.73) (xy 581.66 751.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fa281cd-8f67-43f5-a9c5-ad975b02e0c0) + ) + (wire (pts (xy 709.93 43.18) (xy 709.93 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fe3b7c2-4374-4f34-964b-c387d7b9895c) + ) + (wire (pts (xy 441.96 347.98) (xy 448.31 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fe98b8b-2c96-46ab-bf31-cb1f29929f35) + ) + (wire (pts (xy 388.62 541.02) (xy 392.43 541.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ffb1e9b-cda3-41f9-8266-d336bbf06515) + ) + (wire (pts (xy 435.61 424.18) (xy 441.96 424.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 400c740f-b6f8-4182-8cf1-c3e2553a5f91) + ) + (wire (pts (xy 514.35 575.31) (xy 529.59 575.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 402a5661-7e66-4f95-b8a1-052862553f0b) + ) + (wire (pts (xy 441.96 370.84) (xy 448.31 370.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 403e0b74-1ce8-406c-9394-2ccec02e2d70) + ) + (wire (pts (xy 414.02 124.46) (xy 419.1 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40e1950a-49fe-49fe-8a62-011e561a3e23) + ) + (wire (pts (xy 529.59 212.09) (xy 535.94 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40e44b1c-7766-4a91-a861-e3813ae8722c) + ) + (wire (pts (xy 414.02 86.36) (xy 419.1 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4112a32d-e515-4163-bef6-501d9ad2159b) + ) + (wire (pts (xy 365.76 204.47) (xy 369.57 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 421bcb94-5a62-4bca-a68a-810c08e8d0ae) + ) + (wire (pts (xy 604.52 750.57) (xy 607.06 750.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42355a8b-264a-4cfb-bd87-a5baeb8a1427) + ) + (wire (pts (xy 485.14 749.3) (xy 491.49 749.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4259da50-bbc0-4cc4-84ff-fca546c07c45) + ) + (wire (pts (xy 407.67 532.13) (xy 412.75 532.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42a40c12-9945-45ce-b0d3-f7d9cca6aea2) + ) + (wire (pts (xy 394.97 57.15) (xy 398.78 57.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42e41fbd-dc12-4f57-a882-ae18a5e79f42) + ) + (wire (pts (xy 709.93 179.07) (xy 709.93 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 43f2ef72-9307-4d24-bd75-dcef5bfcb862) + ) + (wire (pts (xy 435.61 595.63) (xy 441.96 595.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44121a50-c7b5-4f9c-9025-e5dfac6f3d5f) + ) + (wire (pts (xy 676.91 88.9) (xy 709.93 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4424c28e-ce12-4281-bce9-841e6aac6225) + ) + (wire (pts (xy 441.96 172.72) (xy 448.31 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 44267d89-c5c5-43a6-b451-7d37e80cfeef) + ) + (wire (pts (xy 567.69 50.8) (xy 567.69 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4626de46-c4d0-4c74-838f-0c289c238e25) + ) + (wire (pts (xy 464.82 678.18) (xy 491.49 678.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 465840e4-d58d-42ec-b24e-4a6324eb157c) + ) + (wire (pts (xy 676.91 43.18) (xy 709.93 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4668bceb-f8bd-45f6-baa2-f1f9426acbc3) + ) + (wire (pts (xy 601.98 429.26) (xy 604.52 429.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46912f55-9c93-4ada-baf2-261632e51a70) + ) + (wire (pts (xy 441.96 311.15) (xy 448.31 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 470a7e70-d5ec-4f66-aaa8-d4e344052102) + ) + (wire (pts (xy 414.02 114.3) (xy 419.1 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47bf031f-b235-4078-8f8e-732052edc74f) + ) + (wire (pts (xy 435.61 549.91) (xy 441.96 549.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 485f24c4-5bb9-4033-ae49-a8f1ff799513) + ) + (wire (pts (xy 791.21 438.15) (xy 791.21 598.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48daa486-2b1d-4d28-aec7-c1d14981efb6) + ) + (wire (pts (xy 558.8 257.81) (xy 633.73 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48db9acf-a0aa-4114-958b-4afc9f6ff349) + ) + (wire (pts (xy 552.45 737.87) (xy 632.46 737.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49ba7c9c-1a32-4a9d-b8e2-56aa60555182) + ) + (wire (pts (xy 552.45 599.44) (xy 629.92 599.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49d6090a-ddc0-407f-9544-e632e39e53c6) + ) + (wire (pts (xy 485.14 450.85) (xy 491.49 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a19c424-b2b8-42f5-b552-a8a438903172) + ) + (wire (pts (xy 552.45 646.43) (xy 627.38 646.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a1ba17f-1859-4931-8da9-4dd0a22297c8) + ) + (wire (pts (xy 394.97 228.6) (xy 398.78 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a4b047c-6ee5-4535-a706-7d6192470bff) + ) + (wire (pts (xy 731.52 171.45) (xy 731.52 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a64dfd8-1145-41c5-86f2-b8c6a39aea63) + ) + (wire (pts (xy 585.47 96.52) (xy 585.47 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a7d13e6-2a68-4e6c-a883-e22921839e20) + ) + (wire (pts (xy 731.52 328.93) (xy 731.52 335.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a8b119d-805e-4c6f-b5a2-609c52c88aea) + ) + (wire (pts (xy 441.96 368.3) (xy 448.31 368.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ace1f16-fae2-4ad6-a66a-acae24c4f5dc) + ) + (wire (pts (xy 711.2 227.33) (xy 711.2 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ad1e468-6b05-4c5b-8791-9acbb26b523c) + ) + (wire (pts (xy 407.67 445.77) (xy 412.75 445.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b18616d-8643-43e2-8f25-8ca98216e4dd) + ) + (wire (pts (xy 558.8 223.52) (xy 584.2 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b5d4d9c-bca5-4b23-923d-41d452ea4e70) + ) + (wire (pts (xy 558.8 246.38) (xy 609.6 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bd66ed8-c1a2-44cc-9a07-98a9a384e0e7) + ) + (wire (pts (xy 514.35 713.74) (xy 529.59 713.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cb9011d-19fb-433e-81bd-194abc18a791) + ) + (wire (pts (xy 709.93 294.64) (xy 717.55 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cfebd7f-4b95-4220-acfe-f6d97401143d) + ) + (wire (pts (xy 635 73.66) (xy 635 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d35d927-d7b1-42f5-b669-7157ce9290bc) + ) + (wire (pts (xy 520.7 209.55) (xy 535.94 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d5b863e-e444-4df5-9b8a-af2ad4e57284) + ) + (wire (pts (xy 435.61 725.17) (xy 441.96 725.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4da04ae0-845f-45ad-acd0-919215a5eb23) + ) + (wire (pts (xy 703.58 504.19) (xy 711.2 504.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e820d00-0ff9-495c-b0cb-0f9606108643) + ) + (wire (pts (xy 367.03 245.11) (xy 370.84 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f26f08a-e3aa-4db7-b4d2-50f66a014d6d) + ) + (wire (pts (xy 731.52 231.14) (xy 731.52 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fadda99-d037-4a17-abe5-304fa28d9772) + ) + (wire (pts (xy 589.28 317.5) (xy 589.28 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50e1dc6d-f379-41f5-97a3-90479e26b0ae) + ) + (wire (pts (xy 520.7 198.12) (xy 535.94 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5147cab5-09a5-40ec-8f79-f7dd53c4229b) + ) + (wire (pts (xy 514.35 782.32) (xy 529.59 782.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 514f9fbc-e717-434c-9636-57651894b3e8) + ) + (wire (pts (xy 514.35 668.02) (xy 529.59 668.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 516e3caa-58f6-4529-921f-01c267fba753) + ) + (wire (pts (xy 388.62 436.88) (xy 392.43 436.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51f95907-3bbf-41c9-8f48-50538a305928) + ) + (wire (pts (xy 514.35 586.74) (xy 529.59 586.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52670c43-7f26-4adf-9cd3-1330b2bbe961) + ) + (wire (pts (xy 797.56 392.43) (xy 745.49 392.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52965ace-63a0-4369-b1cd-831237eed272) + ) + (wire (pts (xy 709.93 88.9) (xy 709.93 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52d3e971-7620-4167-9421-2bb6ab53acab) + ) + (wire (pts (xy 407.67 570.23) (xy 412.75 570.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5338cc16-4913-40a6-b5e9-75b46c53b45c) + ) + (wire (pts (xy 795.02 212.09) (xy 795.02 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53414688-f76d-4bdd-a829-97b80ad893da) + ) + (wire (pts (xy 577.85 623.57) (xy 577.85 614.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53645ff7-a065-4533-a832-9667cf334874) + ) + (wire (pts (xy 414.02 133.35) (xy 419.1 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 536cfe87-36f9-4117-a7c8-628c61cc0abc) + ) + (wire (pts (xy 523.24 659.13) (xy 529.59 659.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 539aabab-a505-41b4-ad6a-457f81177a20) + ) + (wire (pts (xy 365.76 218.44) (xy 369.57 218.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53faf4cd-8332-49a5-9d17-a09da9b47065) + ) + (wire (pts (xy 441.96 138.43) (xy 448.31 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54464835-9251-4e26-9c63-f4c11b16946c) + ) + (wire (pts (xy 552.45 508) (xy 628.65 508)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 553db57d-5193-43c0-87d4-e9630a4352c6) + ) + (wire (pts (xy 607.06 772.16) (xy 607.06 753.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 563e35ae-ef7c-435a-b537-dceeb466ac2f) + ) + (wire (pts (xy 491.49 326.39) (xy 497.84 326.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 56cce39b-ba02-4167-bfcf-d64018e0749f) + ) + (wire (pts (xy 703.58 601.98) (xy 711.2 601.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 570e63a7-6a46-47c8-b5bb-ce315fa85fae) + ) + (wire (pts (xy 388.62 494.03) (xy 392.43 494.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58139d6a-e79a-4070-baa8-a291ca794c3b) + ) + (wire (pts (xy 414.02 76.2) (xy 419.1 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 583f3c86-7b39-4fad-bf2c-96457833ab8a) + ) + (wire (pts (xy 739.14 438.15) (xy 791.21 438.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5891c4ff-3a05-4d2e-93bb-3810d0192725) + ) + (wire (pts (xy 520.7 140.97) (xy 535.94 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58e59eb6-68e8-4e2c-92bd-b630684bc0ce) + ) + (wire (pts (xy 683.26 273.05) (xy 709.93 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5939d04e-62e3-4abe-8111-7d6556d690dd) + ) + (wire (pts (xy 792.48 214.63) (xy 797.56 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 596769bf-ec7f-421f-8c5e-2c997c880e64) + ) + (wire (pts (xy 464.82 643.89) (xy 491.49 643.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 596e877f-d9ee-4478-bfcd-2b99d31efc39) + ) + (wire (pts (xy 471.17 243.84) (xy 497.84 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 597db06b-4da0-4733-b4f6-974526b11f9b) + ) + (wire (pts (xy 471.17 162.56) (xy 497.84 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5990f8fa-de98-4527-be24-2a8ac8856219) + ) + (wire (pts (xy 703.58 535.94) (xy 711.2 535.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a20c5a6-1ab2-44aa-aa81-d54b293e4655) + ) + (wire (pts (xy 464.82 723.9) (xy 491.49 723.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5acd5c9f-cfa1-4ca7-ad55-d97f55ce7877) + ) + (wire (pts (xy 514.35 541.02) (xy 529.59 541.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5afa6e95-dfd8-491d-9c0c-2588bc2718bd) + ) + (wire (pts (xy 388.62 532.13) (xy 392.43 532.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b4b9a89-d949-4703-9185-7270430b710f) + ) + (wire (pts (xy 610.87 361.95) (xy 613.41 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b9ef1e2-beb1-45e4-9bda-da1f9002ed61) + ) + (wire (pts (xy 464.82 482.6) (xy 491.49 482.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bac95a5-f06d-4597-9431-5437f8aaeecf) + ) + (wire (pts (xy 636.27 165.1) (xy 636.27 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bf3af6b-2524-4757-8cf0-9a8b502fb27b) + ) + (wire (pts (xy 471.17 71.12) (xy 497.84 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c81a391-3ac8-40e8-8176-06c5e5152a42) + ) + (wire (pts (xy 731.52 85.09) (xy 731.52 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cca15bf-507b-4043-b3ba-c45644231032) + ) + (wire (pts (xy 633.73 41.91) (xy 635 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cf8445b-b2b0-4622-9f6a-48977bbdd77a) + ) + (wire (pts (xy 520.7 233.68) (xy 535.94 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d2ca2af-70a9-4125-a7a2-6d0bb35ca9f2) + ) + (wire (pts (xy 471.17 105.41) (xy 497.84 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5db8f0fb-059e-4445-81d9-05e42cf17a1d) + ) + (wire (pts (xy 485.14 576.58) (xy 491.49 576.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dcf2d41-4110-44f5-ae9a-4e8127f11df5) + ) + (wire (pts (xy 783.59 608.33) (xy 791.21 608.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e430c09-2ffc-4bca-8266-004220ca5fde) + ) + (wire (pts (xy 365.76 201.93) (xy 369.57 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ece3e86-6c02-40d3-adc8-96e15ea040ce) + ) + (wire (pts (xy 471.17 220.98) (xy 497.84 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f7d6fe7-1858-4864-a688-9ec1009c862a) + ) + (wire (pts (xy 529.59 384.81) (xy 535.94 384.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f900cb2-0669-48c3-8d49-32357960c1f5) + ) + (wire (pts (xy 441.96 163.83) (xy 448.31 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5fa61d10-e087-4dc4-8a98-92bdd39ede30) + ) + (wire (pts (xy 703.58 585.47) (xy 711.2 585.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5fb7c263-42f7-4f13-b4e4-afc9e8fa50d0) + ) + (wire (pts (xy 464.82 539.75) (xy 491.49 539.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5fe5830f-56ce-49d7-9620-5cfbe43e5233) + ) + (wire (pts (xy 367.03 242.57) (xy 370.84 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 604fa184-1d62-416f-8bac-0b8396ff3e1e) + ) + (wire (pts (xy 709.93 213.36) (xy 717.55 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 606ea792-3558-45b9-ad3e-50cc26f1d42e) + ) + (wire (pts (xy 603.25 635) (xy 603.25 615.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60826cf3-ad61-4f36-8d50-6e2fe52d78f1) + ) + (wire (pts (xy 709.93 311.15) (xy 717.55 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 621b5c9d-1e46-4b60-864b-984c8f17b070) + ) + (wire (pts (xy 745.49 49.53) (xy 797.56 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62921ca8-a193-4238-8d6b-8292d7a4f211) + ) + (wire (pts (xy 678.18 134.62) (xy 709.93 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62af4078-4a9f-4c8a-9a74-a14d2d97e6b5) + ) + (wire (pts (xy 435.61 561.34) (xy 441.96 561.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62c7a641-3dbf-42c4-bf7b-82c0a634f165) + ) + (wire (pts (xy 745.49 245.11) (xy 789.94 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6335fdae-fa3a-4093-ae0f-997dc4948db9) + ) + (wire (pts (xy 514.35 426.72) (xy 529.59 426.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 639ea3ac-c20a-4a23-a95f-899d6e992fa8) + ) + (wire (pts (xy 388.62 445.77) (xy 392.43 445.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64249d35-e268-48ae-aad5-ad947be7008c) + ) + (wire (pts (xy 485.14 772.16) (xy 491.49 772.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6493fc4c-b8fb-4596-a12f-234a39ba4845) + ) + (wire (pts (xy 552.45 703.58) (xy 582.93 703.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6541f7ef-6401-435b-9563-f4003682c5d6) + ) + (wire (pts (xy 464.82 505.46) (xy 491.49 505.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 654cd24c-cdbd-4d24-bff4-c955e9b4ece5) + ) + (wire (pts (xy 558.8 73.66) (xy 635 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 663c2003-ad6b-4da4-ad07-2b89efc92a56) + ) + (wire (pts (xy 471.17 82.55) (xy 497.84 82.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 665ca5a9-29df-4aed-a8b7-8b3cfa991f3f) + ) + (wire (pts (xy 441.96 46.99) (xy 448.31 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 66d167d4-189d-4d55-8dcd-ca5df508aaae) + ) + (wire (pts (xy 407.67 617.22) (xy 412.75 617.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67172f83-cf00-4448-a829-962983521b36) + ) + (wire (pts (xy 365.76 207.01) (xy 369.57 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67d9264c-ce52-430d-8092-d239f14e4f3e) + ) + (wire (pts (xy 491.49 349.25) (xy 497.84 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 688ffcf2-a432-4602-aa5b-734dc9eb85ce) + ) + (wire (pts (xy 529.59 316.23) (xy 535.94 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6890973b-0818-4b56-9fd3-6c32a3136b22) + ) + (wire (pts (xy 514.35 690.88) (xy 529.59 690.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68ba0aee-146d-4c07-8bbd-db4954855c42) + ) + (wire (pts (xy 441.96 256.54) (xy 448.31 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6939717e-c2af-4ddb-bea1-c522dff871d2) + ) + (wire (pts (xy 786.13 683.26) (xy 739.14 683.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 699a02ab-515a-4578-861e-dd428dab736c) + ) + (wire (pts (xy 407.67 464.82) (xy 412.75 464.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69d1b77b-be08-475e-815c-d790bbb5e20c) + ) + (wire (pts (xy 523.24 543.56) (xy 529.59 543.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a0a6f01-eeef-4608-b716-bec04e4b2396) + ) + (wire (pts (xy 388.62 560.07) (xy 392.43 560.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6abfb5ea-4480-4d00-949e-3b4c2489f26e) + ) + (wire (pts (xy 435.61 779.78) (xy 441.96 779.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6aee7397-c01b-4e18-b5fe-581e1b541d0a) + ) + (wire (pts (xy 655.32 709.93) (xy 659.13 709.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b0ab576-483d-4667-97c3-d2ecb6c79942) + ) + (wire (pts (xy 394.97 76.2) (xy 398.78 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b29ea7e-1b39-43a7-bd25-99081fcfa4d6) + ) + (wire (pts (xy 709.93 99.06) (xy 717.55 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b578c79-ef3f-4c91-ae25-b6a1ab103579) + ) + (wire (pts (xy 491.49 153.67) (xy 497.84 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6bbfc282-5eb0-4995-97e1-27a2517e07dd) + ) + (wire (pts (xy 435.61 645.16) (xy 441.96 645.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c0d9df3-58c9-45e6-880b-6596a306ae62) + ) + (wire (pts (xy 485.14 692.15) (xy 491.49 692.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c11d9e6-f529-442c-9417-5efa1c003809) + ) + (wire (pts (xy 414.02 200.66) (xy 419.1 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c162ad5-d3b4-470d-9df5-9ddcfb99fbc5) + ) + (wire (pts (xy 604.52 431.8) (xy 604.52 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c6d7d14-3f5e-4cbf-b0ae-885b3e6b4fa4) + ) + (wire (pts (xy 388.62 483.87) (xy 392.43 483.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ccaafac-1693-48cf-8293-ae65792c2dbd) + ) + (wire (pts (xy 441.96 222.25) (xy 448.31 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ce079a6-4dd9-455c-bf88-a8fbc80ae64b) + ) + (wire (pts (xy 441.96 219.71) (xy 448.31 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d64399e-40a0-4c47-81cc-b62ce9f3f23f) + ) + (wire (pts (xy 795.02 99.06) (xy 745.49 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d6d1b1f-018f-41eb-bcbc-536792d79c92) + ) + (wire (pts (xy 485.14 439.42) (xy 491.49 439.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6dccd98d-d3d2-4cab-9b6e-e102c785f980) + ) + (wire (pts (xy 520.7 347.98) (xy 535.94 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6ded9ef9-4cec-4328-ab99-92a8c66bdd56) + ) + (wire (pts (xy 612.14 318.77) (xy 614.68 318.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6def52d0-f955-4871-84de-8370f1a905e3) + ) + (wire (pts (xy 485.14 680.72) (xy 491.49 680.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6defca2a-4d11-41bf-baaa-455212d31cc6) + ) + (wire (pts (xy 491.49 269.24) (xy 497.84 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e4b886c-5adb-49a4-94e3-a8a86ad66c2b) + ) + (wire (pts (xy 435.61 506.73) (xy 441.96 506.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f360474-d6d0-46a3-8c6d-e5474b0931c7) + ) + (wire (pts (xy 485.14 760.73) (xy 491.49 760.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f3db644-4162-44ea-8986-d74f9e96035d) + ) + (wire (pts (xy 514.35 759.46) (xy 529.59 759.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 703556b6-3d10-41c1-8dd7-5580680007f9) + ) + (wire (pts (xy 629.92 553.72) (xy 629.92 524.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70764cfc-8f46-4c31-a62d-9c9b8d050159) + ) + (wire (pts (xy 471.17 59.69) (xy 497.84 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70f152e3-bdeb-47a0-8997-c9497175cd4d) + ) + (wire (pts (xy 435.61 481.33) (xy 441.96 481.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70f9b036-cee1-408b-9226-0817f8dd6d3f) + ) + (wire (pts (xy 657.86 661.67) (xy 661.67 661.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7130e26a-4895-4a12-b9db-3ad1e9fbb4f9) + ) + (wire (pts (xy 435.61 711.2) (xy 441.96 711.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7290bdf5-0294-4e9d-8cad-867849976e6c) + ) + (wire (pts (xy 388.62 464.82) (xy 392.43 464.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 729c214a-d949-4a67-931f-1b485c8ddcbc) + ) + (wire (pts (xy 441.96 104.14) (xy 448.31 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73098c75-5623-44f7-b44d-5b456cdd8c54) + ) + (wire (pts (xy 520.7 325.12) (xy 535.94 325.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 734d2d68-b064-49be-84c5-f524bbdb3ef1) + ) + (wire (pts (xy 485.14 473.71) (xy 491.49 473.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73d5750f-8a38-4fa2-a5d5-cedcd037de55) + ) + (wire (pts (xy 491.49 85.09) (xy 497.84 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73de004f-7871-495f-bb70-a1a75792b4aa) + ) + (wire (pts (xy 709.93 408.94) (xy 717.55 408.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73ff9fbb-9886-4715-880a-5b311d6b33ae) + ) + (wire (pts (xy 441.96 115.57) (xy 448.31 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7408eafc-cc4c-4a63-945b-5c1c4879e4d7) + ) + (wire (pts (xy 529.59 177.8) (xy 535.94 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 740ae1c8-77c3-4efc-8d76-bcbc5fdd9489) + ) + (wire (pts (xy 464.82 436.88) (xy 491.49 436.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 742eb887-9fd9-4891-b16d-d46aca51f81e) + ) + (wire (pts (xy 703.58 552.45) (xy 711.2 552.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7493cf78-4b47-4262-b9d9-dd3a566b6449) + ) + (wire (pts (xy 678.18 179.07) (xy 709.93 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 754c7d13-065f-4fd1-b2e3-e41b13b869f6) + ) + (wire (pts (xy 552.45 772.16) (xy 607.06 772.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7550207d-edc8-4207-af35-0f30b2aac91d) + ) + (wire (pts (xy 529.59 166.37) (xy 535.94 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 757fe813-b6da-46d0-9b73-e6dd27210de0) + ) + (wire (pts (xy 471.17 208.28) (xy 497.84 208.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 758fbfd7-6877-433b-bf30-21b521650241) + ) + (wire (pts (xy 786.13 603.25) (xy 791.21 603.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 759b2221-de1b-4638-936b-2e13481e2116) + ) + (wire (pts (xy 591.82 280.67) (xy 591.82 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75a2742c-4b63-437f-8856-a8321a1deb07) + ) + (wire (pts (xy 514.35 598.17) (xy 529.59 598.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75b9f01f-5680-4ab2-9629-be8f6c5ed9db) + ) + (wire (pts (xy 795.02 342.9) (xy 795.02 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75d15c24-72d0-4ed2-a5f7-ce357a0d513c) + ) + (wire (pts (xy 529.59 361.95) (xy 535.94 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75f1748d-dcc1-491e-bc41-b31294c14949) + ) + (wire (pts (xy 731.52 182.88) (xy 731.52 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7608faf1-447b-4556-b9e6-c3b213e34bd4) + ) + (wire (pts (xy 628.65 521.97) (xy 629.92 521.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 762e8237-509b-42f3-a504-00a2ac5010cb) + ) + (wire (pts (xy 441.96 313.69) (xy 448.31 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7642c1a8-97bd-45e2-ae75-ec2abaa0ebf7) + ) + (wire (pts (xy 558.8 326.39) (xy 589.28 326.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 774e5773-a9d8-42a3-832f-2f3cbec2a070) + ) + (wire (pts (xy 670.56 431.8) (xy 703.58 431.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7773afa6-2112-4bc3-a441-281f4e4c8267) + ) + (wire (pts (xy 435.61 768.35) (xy 441.96 768.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77a70758-80e8-48c0-a9d7-92098f34a65a) + ) + (wire (pts (xy 612.14 153.67) (xy 612.14 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 782122cd-2ba2-46f4-a1f0-4bb82c001fa7) + ) + (wire (pts (xy 633.73 87.63) (xy 635 87.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 783d7e11-69d7-44e0-8afc-573f95b5f930) + ) + (wire (pts (xy 552.45 749.3) (xy 581.66 749.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 786cc02a-b17a-4066-9c1e-89366ab92ddf) + ) + (wire (pts (xy 441.96 209.55) (xy 448.31 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78e7807d-f1da-4eb6-8ba5-426ca03ac25c) + ) + (wire (pts (xy 529.59 97.79) (xy 535.94 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 795de79e-d264-4320-b85f-947b368521ef) + ) + (wire (pts (xy 709.93 392.43) (xy 717.55 392.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79be742f-790a-472a-a88e-a06d61c9aa69) + ) + (wire (pts (xy 523.24 532.13) (xy 529.59 532.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79ff0e65-fc75-47b3-ae29-b3751424ccdb) + ) + (wire (pts (xy 491.49 337.82) (xy 497.84 337.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ac52771-74e2-4640-a13a-9e21f7217115) + ) + (wire (pts (xy 523.24 670.56) (xy 529.59 670.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7afa2756-6ef5-4b51-b534-edad6ed7c93f) + ) + (wire (pts (xy 520.7 393.7) (xy 535.94 393.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7bb29fe8-1e51-46cf-a452-1d06efa7fc94) + ) + (wire (pts (xy 435.61 461.01) (xy 441.96 461.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d939600-c504-46be-8a02-f7e2fbab5947) + ) + (wire (pts (xy 635 119.38) (xy 635 90.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dbd71c8-2870-4506-9067-b3dc8fded179) + ) + (wire (pts (xy 631.19 708.66) (xy 632.46 708.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e4620fc-9a9a-43ec-b803-57a0d514a130) + ) + (wire (pts (xy 529.59 63.5) (xy 535.94 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e7c1980-cc9a-47bf-90b9-13d3c2c5f88b) + ) + (wire (pts (xy 394.97 219.71) (xy 398.78 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e8cf906-adbd-413c-8e8d-d3fb23bb569e) + ) + (wire (pts (xy 365.76 167.64) (xy 369.57 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f1275a4-fe63-4ae2-970e-73f2482d2cac) + ) + (wire (pts (xy 725.17 473.71) (xy 725.17 480.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f925eec-edd4-4e66-be3a-e9fa5fbd01f6) + ) + (wire (pts (xy 365.76 196.85) (xy 369.57 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fb18ece-b79e-40cd-8b18-fc253c8ffb5b) + ) + (wire (pts (xy 394.97 95.25) (xy 398.78 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fd86138-4b3a-4495-8e4c-429d9c1741d6) + ) + (wire (pts (xy 640.08 271.78) (xy 641.35 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 802437df-aee5-4cb9-ae8f-6eb03cab0829) + ) + (wire (pts (xy 435.61 447.04) (xy 441.96 447.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 806a87a2-e225-403a-a31a-af43b5dea22d) + ) + (wire (pts (xy 529.59 304.8) (xy 535.94 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 808b0cb9-8a05-49d6-96fc-68ddcdd50aff) + ) + (wire (pts (xy 603.25 520.7) (xy 605.79 520.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 811b8c4e-48e8-4b3d-bb9e-150bab62f4e1) + ) + (wire (pts (xy 558.8 280.67) (xy 591.82 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81244015-b156-4ae5-8019-8c9540dd2a46) + ) + (wire (pts (xy 485.14 588.01) (xy 491.49 588.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 812d1d16-2729-4122-a3dd-249695ee0a68) + ) + (wire (pts (xy 435.61 745.49) (xy 441.96 745.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8244b707-c81c-410b-8de2-3917a0ba21d2) + ) + (wire (pts (xy 435.61 469.9) (xy 441.96 469.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8319cf68-9ec1-4fe7-8565-16e78ea752bd) + ) + (wire (pts (xy 414.02 162.56) (xy 419.1 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 836f44f5-fb7e-429a-b2e8-b3fcdda1c0e1) + ) + (wire (pts (xy 676.91 661.67) (xy 703.58 661.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 839aedcf-0dfa-4746-908c-e4375cecc4be) + ) + (wire (pts (xy 414.02 95.25) (xy 419.1 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 844721e2-95d3-465e-8994-779f428ae164) + ) + (wire (pts (xy 441.96 186.69) (xy 448.31 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84ec8b68-7b61-472d-9a3d-178df6930f49) + ) + (wire (pts (xy 523.24 429.26) (xy 529.59 429.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85037917-cb52-4629-8a17-233426777642) + ) + (wire (pts (xy 739.14 633.73) (xy 783.59 633.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8517013d-6cc8-4639-9733-2b95a2559fec) + ) + (wire (pts (xy 407.67 513.08) (xy 412.75 513.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85565b2d-5b4c-478e-b63b-7b219efff6ef) + ) + (wire (pts (xy 629.92 751.84) (xy 631.19 751.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 858b0d14-5975-455d-bad6-b4cdd7a9e518) + ) + (wire (pts (xy 464.82 621.03) (xy 491.49 621.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85c218be-0de5-43a3-a3b9-9dcffcded5d1) + ) + (wire (pts (xy 471.17 266.7) (xy 497.84 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85ee9ca2-fe4b-4dc1-beb6-e12ebb9c69a4) + ) + (wire (pts (xy 605.79 707.39) (xy 608.33 707.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8667174d-939e-4b97-aeff-84b2cf259e0c) + ) + (wire (pts (xy 558.8 96.52) (xy 585.47 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86a3c775-a1f1-46e5-95f8-df1ecbf381d8) + ) + (wire (pts (xy 435.61 504.19) (xy 441.96 504.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86affed3-62dc-4bed-adab-488039293891) + ) + (wire (pts (xy 552.45 496.57) (xy 604.52 496.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86b7f2cc-51c0-42e4-89f8-d2b551eb7950) + ) + (wire (pts (xy 491.49 303.53) (xy 497.84 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86e98fcb-748e-4937-9096-0cc4523af95e) + ) + (wire (pts (xy 709.93 196.85) (xy 717.55 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 874145d7-f937-4952-92b2-89a18c2dc7c9) + ) + (wire (pts (xy 589.28 326.39) (xy 589.28 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87512831-b5ee-49dd-805c-de6099622673) + ) + (wire (pts (xy 552.45 542.29) (xy 605.79 542.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87be2521-b0ea-43bd-b698-c63546a99408) + ) + (wire (pts (xy 388.62 502.92) (xy 392.43 502.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 883df966-3fca-49f0-906a-3320c638db58) + ) + (wire (pts (xy 485.14 508) (xy 491.49 508)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88a2acf5-5944-436b-8c3c-6672d221522a) + ) + (wire (pts (xy 788.67 600.71) (xy 788.67 487.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88b2e724-310e-4f56-9324-e8a2542fb3cf) + ) + (wire (pts (xy 464.82 596.9) (xy 491.49 596.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88b5de55-5dd3-4f9c-97ec-e66376a882e8) + ) + (wire (pts (xy 670.56 477.52) (xy 703.58 477.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88e49b6f-613e-4f85-869b-8080656647ef) + ) + (wire (pts (xy 485.14 635) (xy 491.49 635)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88f80d9b-8e18-4fe3-b0a8-44d69ca16ed6) + ) + (wire (pts (xy 407.67 483.87) (xy 412.75 483.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 891af9e8-a78d-4993-8fa1-9a5ad1643845) + ) + (wire (pts (xy 514.35 610.87) (xy 529.59 610.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89c702d8-7d1f-4859-bd1b-182440c1e68b) + ) + (wire (pts (xy 491.49 292.1) (xy 497.84 292.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89e34546-8c4f-40c6-9345-9738ed4bd839) + ) + (wire (pts (xy 514.35 483.87) (xy 529.59 483.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89ebd413-917e-40fd-a4cb-345ea0d31ecf) + ) + (wire (pts (xy 523.24 509.27) (xy 529.59 509.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8abafd09-df62-49aa-8772-7e79c89d0b7e) + ) + (wire (pts (xy 652.78 523.24) (xy 656.59 523.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ac229ff-499b-4b33-bad9-ed825640c73c) + ) + (wire (pts (xy 441.96 69.85) (xy 448.31 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b0b44f1-9e8b-48ec-a41c-491df3cbd4d7) + ) + (wire (pts (xy 471.17 358.14) (xy 497.84 358.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b5bbd5b-3a65-4963-b16e-59b5e480760e) + ) + (wire (pts (xy 529.59 109.22) (xy 535.94 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bd81cf1-4317-4625-bc31-111e77357f16) + ) + (wire (pts (xy 441.96 242.57) (xy 448.31 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c10660f-f07f-47b9-b0cd-00b47c24d90c) + ) + (wire (pts (xy 792.48 294.64) (xy 745.49 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c32619e-1c22-41ed-a5a1-18236cedee3d) + ) + (wire (pts (xy 365.76 226.06) (xy 369.57 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c66b355-5d41-42b9-a81e-d97d0cd62fac) + ) + (wire (pts (xy 703.58 753.11) (xy 703.58 781.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8cebcbe8-0969-42f5-943c-4ed2bf0b89b9) + ) + (wire (pts (xy 435.61 584.2) (xy 441.96 584.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d0f0eeb-ccc9-4c3d-abb5-3bceda844ca3) + ) + (wire (pts (xy 651.51 431.8) (xy 655.32 431.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d39a335-7056-473b-808d-573c56d896ed) + ) + (wire (pts (xy 365.76 162.56) (xy 369.57 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d3c9746-3032-4dd9-ab72-d4480586abcb) + ) + (wire (pts (xy 607.06 224.79) (xy 609.6 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d5befd0-8f4b-42ef-a242-7043bc59d27e) + ) + (wire (pts (xy 731.52 378.46) (xy 731.52 384.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8d61069d-5c42-409b-b351-dd832dea4b3d) + ) + (wire (pts (xy 388.62 513.08) (xy 392.43 513.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dad5de0-dad6-4224-a3c3-348a14d97105) + ) + (wire (pts (xy 485.14 783.59) (xy 491.49 783.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e6018fd-a02a-4f8b-8f3f-ff89303b5ecc) + ) + (wire (pts (xy 394.97 171.45) (xy 398.78 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f3f5a56-175d-4c49-bf61-d60fc5279510) + ) + (wire (pts (xy 491.49 130.81) (xy 497.84 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f562534-1d17-46ba-91e4-ddaba2fc856b) + ) + (wire (pts (xy 471.17 346.71) (xy 497.84 346.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 904b983b-e58e-499b-8ef9-e95e13a6d56b) + ) + (wire (pts (xy 558.8 372.11) (xy 588.01 372.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9087e379-9a72-4308-a89b-32d4628cb8f1) + ) + (wire (pts (xy 520.7 245.11) (xy 535.94 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90ee9c1a-aecb-4aa6-960c-32755bfa0419) + ) + (wire (pts (xy 529.59 373.38) (xy 535.94 373.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90fdbdd1-f5cb-4c2a-8701-60765a469148) + ) + (wire (pts (xy 485.14 462.28) (xy 491.49 462.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 914d017f-f010-4717-b24b-3c307879f8f1) + ) + (wire (pts (xy 394.97 133.35) (xy 398.78 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91722365-c1bd-43f2-85df-b7a1299e96c4) + ) + (wire (pts (xy 435.61 642.62) (xy 441.96 642.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9179fecb-495d-46dd-8f4c-83fa8f3ea12c) + ) + (wire (pts (xy 520.7 279.4) (xy 535.94 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9183a156-d330-4a04-aa18-2d29ed51daf2) + ) + (wire (pts (xy 441.96 35.56) (xy 448.31 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91a595ae-2629-4a40-bf73-f7b150ba767e) + ) + (wire (pts (xy 795.02 224.79) (xy 797.56 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91dc56cf-b77a-4f11-8599-66909c4a65fd) + ) + (wire (pts (xy 441.96 129.54) (xy 448.31 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 928f4fa9-bb81-4366-8e42-0be4bf257960) + ) + (wire (pts (xy 789.94 196.85) (xy 745.49 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93d79205-d881-44ff-bb1e-a67243ff7647) + ) + (wire (pts (xy 635 692.15) (xy 635 662.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93f4573a-abff-49a8-8366-73abf8d5ff96) + ) + (wire (pts (xy 529.59 120.65) (xy 535.94 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9425f03c-acab-402c-8e61-57434b750e18) + ) + (wire (pts (xy 435.61 679.45) (xy 441.96 679.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94355e60-9062-4f32-b670-fece60347725) + ) + (wire (pts (xy 605.79 542.29) (xy 605.79 523.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94988316-36ff-4002-8761-9b42d1c886d9) + ) + (wire (pts (xy 725.17 717.55) (xy 725.17 723.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 949b393a-606b-4363-8aac-896feda3b8d4) + ) + (wire (pts (xy 650.24 615.95) (xy 654.05 615.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 952bb527-40a4-47af-9cea-f3205ec9df67) + ) + (wire (pts (xy 435.61 759.46) (xy 441.96 759.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9566b320-b4d8-45dc-bacb-e2355db3ccc7) + ) + (wire (pts (xy 441.96 336.55) (xy 448.31 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 957e4e39-de38-410b-9de8-7c09968b854c) + ) + (wire (pts (xy 558.8 142.24) (xy 586.74 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95a926ff-4c03-4438-b009-c749e1e6f6fd) + ) + (wire (pts (xy 407.67 598.17) (xy 412.75 598.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95bcf4ab-8925-4639-acbe-e8d54ca76fbd) + ) + (wire (pts (xy 485.14 599.44) (xy 491.49 599.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95d4f3cc-d675-4151-a1a8-ee21eaf4a53d) + ) + (wire (pts (xy 464.82 781.05) (xy 491.49 781.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 963d7a28-8a84-4a47-b76e-ad07113a43e7) + ) + (wire (pts (xy 365.76 191.77) (xy 369.57 191.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9668c3ba-1290-4605-b82f-b486eecf06ee) + ) + (wire (pts (xy 388.62 474.98) (xy 392.43 474.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96789143-fcb5-4fce-a6c4-58ccde37c795) + ) + (wire (pts (xy 471.17 232.41) (xy 497.84 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 967c3376-6d1e-4a98-a0a5-7c4597aec80d) + ) + (wire (pts (xy 441.96 198.12) (xy 448.31 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96887659-e7d6-4375-b67b-92285baf5a9f) + ) + (wire (pts (xy 586.74 176.53) (xy 586.74 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96a4b86a-0bde-4e7f-a722-82220fa03a45) + ) + (wire (pts (xy 558.8 107.95) (xy 610.87 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96e5da05-aaab-44c2-a1f0-fa055a0cb8f3) + ) + (wire (pts (xy 523.24 554.99) (xy 529.59 554.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97191e4e-786c-40ea-bb74-45c005ad1fd4) + ) + (wire (pts (xy 631.19 783.59) (xy 631.19 754.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 971d6ad5-358a-4e03-b1b1-ca5fb1c9dfbe) + ) + (wire (pts (xy 514.35 472.44) (xy 529.59 472.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 978f5f1a-418e-4920-9687-8d79a105352f) + ) + (wire (pts (xy 552.45 635) (xy 603.25 635)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 979daf8e-93d2-4485-9f76-4e28affb8e5e) + ) + (wire (pts (xy 709.93 273.05) (xy 709.93 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97e6d805-4848-4f6c-ad26-b8284917a011) + ) + (wire (pts (xy 637.54 394.97) (xy 637.54 365.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9807630d-9148-4d03-a08e-04ec72be5ef5) + ) + (wire (pts (xy 523.24 716.28) (xy 529.59 716.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98456953-76b0-4cbe-823b-cdca67710600) + ) + (wire (pts (xy 394.97 200.66) (xy 398.78 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9910cdbb-7587-41f9-801e-9143b293d711) + ) + (wire (pts (xy 435.61 702.31) (xy 441.96 702.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9943cf0d-9a72-4f65-b159-ab237483c3de) + ) + (wire (pts (xy 471.17 381) (xy 497.84 381)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 998692b4-6984-4833-906e-73a00cd8ae1a) + ) + (wire (pts (xy 637.54 320.04) (xy 638.81 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 998e07fe-377f-4f03-a883-09fd49f95782) + ) + (wire (pts (xy 435.61 586.74) (xy 441.96 586.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a28c478-336f-4879-b381-70db404c9b4d) + ) + (wire (pts (xy 523.24 613.41) (xy 529.59 613.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a69731e-8d21-41b5-8452-1696f5aafd2c) + ) + (wire (pts (xy 435.61 598.17) (xy 441.96 598.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9abfbd6e-2048-4149-a9fc-c9726748c33e) + ) + (wire (pts (xy 441.96 302.26) (xy 448.31 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9af4c9c1-9779-4bdd-baa9-f6e1cbe7d1e8) + ) + (wire (pts (xy 558.8 314.96) (xy 589.28 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b3cafac-d633-4bfc-b8bf-0dde2f8ee249) + ) + (wire (pts (xy 471.17 116.84) (xy 497.84 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9be2c6b6-bbf1-4b46-ba7c-324f1093b74d) + ) + (wire (pts (xy 407.67 502.92) (xy 412.75 502.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c66f6e4-f148-4ec7-8857-1a8e3ea8716d) + ) + (wire (pts (xy 523.24 474.98) (xy 529.59 474.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cc33a32-6ce4-4e57-be49-34c16d06ba80) + ) + (wire (pts (xy 703.58 699.77) (xy 711.2 699.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ccc6168-09a2-4204-b02a-c31fcc4cb4b0) + ) + (wire (pts (xy 584.2 234.95) (xy 584.2 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cd98201-73e7-4ee2-9b69-53fb90841b16) + ) + (wire (pts (xy 558.8 153.67) (xy 612.14 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d0a46f3-bce9-4347-b3a3-d489e8d8414a) + ) + (wire (pts (xy 388.62 570.23) (xy 392.43 570.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d20159d-d2f1-4c4a-9af0-b86ba9f0ce6a) + ) + (wire (pts (xy 523.24 566.42) (xy 529.59 566.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d4bb58f-c8b3-4502-b4b2-8126bc8b5457) + ) + (wire (pts (xy 394.97 162.56) (xy 398.78 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d9b0506-8f1f-4574-87ea-0d12b270d9cc) + ) + (wire (pts (xy 394.97 152.4) (xy 398.78 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e1784ec-bb53-499a-a9d6-d8849dd3300f) + ) + (wire (pts (xy 659.13 134.62) (xy 662.94 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e68b7d7-8ef8-4c66-ac42-8bf2ef70bcbf) + ) + (wire (pts (xy 558.8 62.23) (xy 610.87 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ed3ec5f-7b4a-44d2-a224-504bf33463d7) + ) + (wire (pts (xy 633.73 660.4) (xy 635 660.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ef37f00-9fc8-4289-8042-a1c3fb8e036c) + ) + (wire (pts (xy 552.45 588.01) (xy 605.79 588.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f153dea-5a50-48b5-a1dc-3427f2e41aa0) + ) + (wire (pts (xy 464.82 528.32) (xy 491.49 528.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f781eda-0f8e-41ce-83db-cf06a0ad888f) + ) + (wire (pts (xy 725.17 767.08) (xy 725.17 773.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a04634aa-f968-4ef9-afc4-55da9aff173b) + ) + (wire (pts (xy 529.59 293.37) (xy 535.94 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0a166ba-cc19-4b27-aec1-bd2e5a4ed1eb) + ) + (wire (pts (xy 608.33 659.13) (xy 610.87 659.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0aa8af9-572d-4e9c-814f-358915e2da05) + ) + (wire (pts (xy 365.76 175.26) (xy 369.57 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0cc0cbc-095c-4690-ac1b-4f56f28c2773) + ) + (wire (pts (xy 558.8 130.81) (xy 586.74 130.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0e1ffeb-3218-4ebd-adbe-5d580a182031) + ) + (wire (pts (xy 435.61 736.6) (xy 441.96 736.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1f3997a-c730-46f2-a886-a06cc87cb26b) + ) + (wire (pts (xy 441.96 72.39) (xy 448.31 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1ff04fd-85de-4804-8bc6-ef2c46eca374) + ) + (wire (pts (xy 675.64 227.33) (xy 711.2 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a23490c9-392c-48ed-bbe1-571bc180bd6f) + ) + (wire (pts (xy 632.46 226.06) (xy 633.73 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2fa9bf7-4804-42a0-9e41-9c9aa2a7af8d) + ) + (wire (pts (xy 514.35 518.16) (xy 529.59 518.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a33927f4-15bd-43e2-a130-b27ea79831f5) + ) + (wire (pts (xy 435.61 518.16) (xy 441.96 518.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a35aacdd-1f8b-4fbd-a01d-86b2d56503a1) + ) + (wire (pts (xy 725.17 424.18) (xy 725.17 430.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a398c700-cfeb-44e8-9879-c43d92fbe8be) + ) + (wire (pts (xy 703.58 731.52) (xy 711.2 731.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a527c060-6435-4c05-b7a9-5d3f28aef686) + ) + (wire (pts (xy 441.96 379.73) (xy 448.31 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5427d77-5fa1-4f50-b40b-2e297f67c188) + ) + (wire (pts (xy 388.62 551.18) (xy 392.43 551.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a59c46b9-65d3-4cd8-96f8-aa26c5339165) + ) + (wire (pts (xy 514.35 438.15) (xy 529.59 438.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5b6e381-c384-4276-848f-8426eeeb25b7) + ) + (wire (pts (xy 435.61 690.88) (xy 441.96 690.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a620a880-07cc-4cdb-abc7-7497a75fe811) + ) + (wire (pts (xy 788.67 487.68) (xy 739.14 487.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6ff6a30-1a75-4a7f-b3fb-cc65e7f9f8a7) + ) + (wire (pts (xy 731.52 35.56) (xy 731.52 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a71a9c74-8265-4271-bc33-77749a3051cd) + ) + (wire (pts (xy 604.52 496.57) (xy 604.52 477.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a725f3a6-e380-4ad3-b922-9793fadf72cb) + ) + (wire (pts (xy 552.45 612.14) (xy 577.85 612.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a73ec08e-c3b4-43ab-864d-aebdc85b3c80) + ) + (wire (pts (xy 435.61 676.91) (xy 441.96 676.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a752aed4-7dc0-4e82-957f-6ba527886bf6) + ) + (wire (pts (xy 394.97 124.46) (xy 398.78 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7702eec-5cda-45d5-aed2-e65e8bdb43c7) + ) + (wire (pts (xy 628.65 462.28) (xy 628.65 433.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7731c15-48d0-4148-8cf2-a70007a716a2) + ) + (wire (pts (xy 435.61 665.48) (xy 441.96 665.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a77b6c10-7cbe-4ba8-abb0-3e66eaff3301) + ) + (wire (pts (xy 441.96 161.29) (xy 448.31 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a81b3bbd-1e43-4138-96d2-9e0ff2130b3e) + ) + (wire (pts (xy 435.61 538.48) (xy 441.96 538.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a885d6a4-b2f7-4fb3-b66f-1bcaa651e348) + ) + (wire (pts (xy 558.8 39.37) (xy 585.47 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a926dc12-b2d1-4b29-81f6-24818ff56465) + ) + (wire (pts (xy 558.8 292.1) (xy 617.22 292.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9b10a62-872f-48c4-859b-8634bd2f36f0) + ) + (wire (pts (xy 414.02 143.51) (xy 419.1 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9bd83e0-b3a5-479b-b7e2-643c6f7a7900) + ) + (wire (pts (xy 464.82 769.62) (xy 491.49 769.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9f2cfb8-a9a6-4fbc-b0ca-a5e7d7e8dc8d) + ) + (wire (pts (xy 464.82 609.6) (xy 491.49 609.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa60ba46-2178-4904-8fdc-9311cbf25047) + ) + (wire (pts (xy 491.49 210.82) (xy 497.84 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa8d9ab1-a481-49bf-8482-e7b6a18b8dea) + ) + (wire (pts (xy 365.76 160.02) (xy 369.57 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa8e8c94-0156-4002-a5e5-d530cba70569) + ) + (wire (pts (xy 485.14 703.58) (xy 491.49 703.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa8f3604-dbc4-4c22-a417-5412a00aa653) + ) + (wire (pts (xy 394.97 209.55) (xy 398.78 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa8f8569-70ee-44ba-98c9-f6acaedb006a) + ) + (wire (pts (xy 464.82 574.04) (xy 491.49 574.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa92dc88-2ff3-4ba5-bd10-d1c2def8aecc) + ) + (wire (pts (xy 529.59 52.07) (xy 535.94 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa9bf436-5c39-44f4-874b-3534275693dc) + ) + (wire (pts (xy 388.62 579.12) (xy 392.43 579.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aae80cc0-d926-404b-80d2-7ad5a713c6a4) + ) + (wire (pts (xy 441.96 322.58) (xy 448.31 322.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab0749b9-738d-454b-a969-1d61d7e8cd87) + ) + (wire (pts (xy 520.7 95.25) (xy 535.94 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab6522c2-f0c4-4663-a0ba-efaa0074a5e1) + ) + (wire (pts (xy 745.49 342.9) (xy 795.02 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aba699f6-23ad-47a1-af9b-c5c840cf0103) + ) + (wire (pts (xy 388.62 589.28) (xy 392.43 589.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abc027ec-853d-4873-ae78-defc8c3d2ba5) + ) + (wire (pts (xy 441.96 356.87) (xy 448.31 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac24d826-cd46-45c2-be68-ac4bf9d91592) + ) + (wire (pts (xy 558.8 303.53) (xy 641.35 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac857f25-5346-41ac-8431-1c0e464a45dd) + ) + (wire (pts (xy 520.7 359.41) (xy 535.94 359.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acf1f7c6-24a7-4d4f-ab52-ed3005c5c56d) + ) + (wire (pts (xy 529.59 40.64) (xy 535.94 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad4a68ea-a44d-42f4-bf34-aec334f7f12e) + ) + (wire (pts (xy 491.49 372.11) (xy 497.84 372.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae242a1d-b7a4-4100-b8e9-537234081c96) + ) + (wire (pts (xy 435.61 529.59) (xy 441.96 529.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae76bd3f-e336-42e7-ab87-ead95749ae55) + ) + (wire (pts (xy 797.56 227.33) (xy 797.56 392.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae7a85c4-0808-44cc-a6ef-ff2445300354) + ) + (wire (pts (xy 491.49 119.38) (xy 497.84 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae7b6052-3718-4152-a3ca-6641c643cf74) + ) + (wire (pts (xy 703.58 454.66) (xy 711.2 454.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af1dd1f9-b5d0-4209-810c-618d3df92f96) + ) + (wire (pts (xy 627.38 646.43) (xy 627.38 617.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af5d0171-c6ab-4591-9859-9af58e4c1cb6) + ) + (wire (pts (xy 435.61 622.3) (xy 441.96 622.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af80e188-b46b-4ac7-ac32-b626e390e2a6) + ) + (wire (pts (xy 731.52 133.35) (xy 731.52 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af9ce91a-7512-489d-b3cd-feba59dbf747) + ) + (wire (pts (xy 520.7 83.82) (xy 535.94 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afad9f35-3a83-47be-bd79-9fac41fda2c8) + ) + (wire (pts (xy 608.33 86.36) (xy 610.87 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afb371bd-7ebb-4041-bf52-4ed3872e947b) + ) + (wire (pts (xy 731.52 416.56) (xy 731.52 421.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afbcac65-53db-4908-8079-9180627d9734) + ) + (wire (pts (xy 485.14 519.43) (xy 491.49 519.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afcfbd9a-66b2-474d-b2cf-a5b593e90eee) + ) + (wire (pts (xy 485.14 657.86) (xy 491.49 657.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid affb1159-aaed-4929-b42b-a035a471e9b9) + ) + (wire (pts (xy 529.59 327.66) (xy 535.94 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b004d5f3-12e3-4f2c-aa99-3f6d4ccd1763) + ) + (wire (pts (xy 523.24 739.14) (xy 529.59 739.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b05e43e6-a49c-4e75-a956-893558fc1347) + ) + (wire (pts (xy 520.7 382.27) (xy 535.94 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b09aed90-6daa-4ee3-bb32-3de81057e862) + ) + (wire (pts (xy 558.8 210.82) (xy 636.27 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b09b2416-2c4d-4229-ad36-deea47bd4aa5) + ) + (wire (pts (xy 485.14 612.14) (xy 491.49 612.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b10b111d-c64b-47c7-80c7-77b0c905a3c1) + ) + (wire (pts (xy 394.97 48.26) (xy 398.78 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b15ff069-9782-4896-8ff1-eaacf17f5ba3) + ) + (wire (pts (xy 520.7 49.53) (xy 535.94 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b20f06ca-aed7-4857-b0cd-b250326db347) + ) + (wire (pts (xy 529.59 396.24) (xy 535.94 396.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b33a7afd-6446-4aad-a92b-1c4485a096ce) + ) + (wire (pts (xy 558.8 85.09) (xy 585.47 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3409b52-a1fb-42e8-8aa1-d3bc25ba0f82) + ) + (wire (pts (xy 394.97 190.5) (xy 398.78 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b47fa26c-1851-484a-94b3-7e90d6b13419) + ) + (wire (pts (xy 739.14 731.52) (xy 788.67 731.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4ab8541-799f-4cfd-a02d-6437f0a5ae80) + ) + (wire (pts (xy 558.8 187.96) (xy 586.74 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b63c1aa0-c98e-4949-a4be-1c5eebd4463b) + ) + (wire (pts (xy 485.14 715.01) (xy 491.49 715.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b65c2f80-3f0d-4de8-9186-cf262bf9119f) + ) + (wire (pts (xy 791.21 615.95) (xy 791.21 781.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b67f5ab1-caa4-4565-9d05-f26b46bc1354) + ) + (wire (pts (xy 552.45 692.15) (xy 635 692.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6920562-a1aa-457a-8459-4cb8377af929) + ) + (wire (pts (xy 633.73 257.81) (xy 633.73 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6ebc29d-05e3-4367-a2e7-ccd80f32a0ab) + ) + (wire (pts (xy 709.93 261.62) (xy 717.55 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b768f1a6-03b4-49a6-b7d2-8eb833088a10) + ) + (wire (pts (xy 669.29 615.95) (xy 704.85 615.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7c9d7a9-0bb9-4ce0-b54d-a250e8d138fa) + ) + (wire (pts (xy 609.6 132.08) (xy 612.14 132.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b82c6f75-c5c1-4a65-84b7-192f968d8d9b) + ) + (wire (pts (xy 491.49 383.54) (xy 497.84 383.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8623f6e-69a2-4ab4-a2c4-9567b977f3f0) + ) + (wire (pts (xy 789.94 245.11) (xy 789.94 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8cafb87-008c-446d-ab51-22df7c6645cb) + ) + (wire (pts (xy 435.61 575.31) (xy 441.96 575.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b903231f-d19c-4bb9-a010-55412c181d0d) + ) + (wire (pts (xy 703.58 535.94) (xy 703.58 523.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b90aeb75-d290-4f9b-86ec-2175b49b2390) + ) + (wire (pts (xy 471.17 196.85) (xy 497.84 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b968b1fb-68ae-4c90-8131-115d6dd649bb) + ) + (wire (pts (xy 629.92 599.44) (xy 629.92 568.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9be6e05-66da-411c-9c1e-5cfd9f0c803e) + ) + (wire (pts (xy 441.96 290.83) (xy 448.31 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba10d6ed-2bad-449b-bed9-513ffcc5f75e) + ) + (wire (pts (xy 558.8 50.8) (xy 567.69 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba4ee2d8-dcd7-4634-a4a1-d4c517d47695) + ) + (wire (pts (xy 520.7 336.55) (xy 535.94 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba55a856-7492-4e10-be9f-d306eed620f3) + ) + (wire (pts (xy 561.34 439.42) (xy 561.34 430.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba758508-7f12-4b9a-904b-f1302ff26544) + ) + (wire (pts (xy 464.82 701.04) (xy 491.49 701.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid baa46043-c8ae-4e79-8a7b-1d97a4d7d114) + ) + (wire (pts (xy 731.52 269.24) (xy 731.52 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bacec437-a91a-4805-8c7f-cb1224954e76) + ) + (wire (pts (xy 471.17 255.27) (xy 497.84 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb3c522f-6124-4945-aaa5-05c7f2cf110c) + ) + (wire (pts (xy 441.96 245.11) (xy 448.31 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc35241f-f517-470e-a161-6ba6959d0314) + ) + (wire (pts (xy 609.6 246.38) (xy 609.6 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc587487-c9a1-4f63-91b9-09de4d3d858a) + ) + (wire (pts (xy 523.24 497.84) (xy 529.59 497.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc903b15-bb5b-4657-9325-193b15af4d3b) + ) + (wire (pts (xy 365.76 223.52) (xy 369.57 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bcfd061d-5227-4996-bc2e-fa554eb4546c) + ) + (wire (pts (xy 441.96 276.86) (xy 448.31 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd7623e0-1acb-4015-afd1-ec6b4e4cb419) + ) + (wire (pts (xy 514.35 552.45) (xy 529.59 552.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd766067-ffc4-4016-8f36-96491a8bae04) + ) + (wire (pts (xy 435.61 426.72) (xy 441.96 426.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bdb114e0-16a0-4fef-9da0-d808f5cbb24f) + ) + (wire (pts (xy 610.87 680.72) (xy 610.87 661.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bde9014d-5be6-4c49-9f9f-ac44965c5bd3) + ) + (wire (pts (xy 786.13 535.94) (xy 786.13 603.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be472468-30d5-451e-acf1-b873d5a1e507) + ) + (wire (pts (xy 552.45 576.58) (xy 580.39 576.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be5fc607-6217-41b7-9075-b056fb8c5f83) + ) + (wire (pts (xy 552.45 680.72) (xy 610.87 680.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid beb77fbc-007b-419b-8524-5df551cb850d) + ) + (wire (pts (xy 471.17 173.99) (xy 497.84 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf13d197-bb96-4be1-8f5f-babb74989358) + ) + (wire (pts (xy 435.61 572.77) (xy 441.96 572.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf2aa65f-fdad-4148-b043-93f82f9eaddd) + ) + (wire (pts (xy 491.49 246.38) (xy 497.84 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf48c489-7ae7-4c8f-87d0-c3f5701af564) + ) + (wire (pts (xy 441.96 58.42) (xy 448.31 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf5b0ee3-72b8-4fc0-a77b-5ecc60a8a5be) + ) + (wire (pts (xy 388.62 521.97) (xy 392.43 521.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf80a2ea-dd46-4718-9871-9d8a64ee74cf) + ) + (wire (pts (xy 407.67 560.07) (xy 412.75 560.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfa1812f-4945-40e5-bc08-4f409fdf2092) + ) + (wire (pts (xy 703.58 709.93) (xy 703.58 731.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfdce900-fd85-43d8-aedc-8f3c9a27285b) + ) + (wire (pts (xy 608.33 40.64) (xy 610.87 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0c6b152-9aac-4907-a3f1-eff0895d6377) + ) + (wire (pts (xy 441.96 38.1) (xy 448.31 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0df092e-0a34-4977-8945-8cd9b828f9e9) + ) + (wire (pts (xy 586.74 187.96) (xy 586.74 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c118bf44-dff5-458b-8f13-045aa1405efe) + ) + (wire (pts (xy 435.61 472.44) (xy 441.96 472.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c171be93-de05-408d-b8f6-9336d0a408b0) + ) + (wire (pts (xy 731.52 367.03) (xy 731.52 372.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1838abe-4b09-41ee-aefb-b3b2c869635d) + ) + (wire (pts (xy 485.14 623.57) (xy 491.49 623.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2545fe0-d2f8-4d54-a0b0-e91feb3e5b7e) + ) + (wire (pts (xy 731.52 123.19) (xy 731.52 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2aba4ad-8ee5-471f-ae58-525d3f563804) + ) + (wire (pts (xy 491.49 314.96) (xy 497.84 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2bcba9b-c82b-4fb8-9654-47be914fd113) + ) + (wire (pts (xy 603.25 565.15) (xy 605.79 565.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2eb82f9-4a6d-4821-9a6e-333a8ed66e59) + ) + (wire (pts (xy 725.17 609.6) (xy 725.17 614.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c37136b2-fbd6-43f5-b305-bebf7dc1ec7d) + ) + (wire (pts (xy 582.93 715.01) (xy 582.93 708.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3735878-2f91-4bfc-bbbe-d526cebedcb6) + ) + (wire (pts (xy 725.17 755.65) (xy 725.17 760.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3bb8327-451f-4806-ba36-d331eef36151) + ) + (wire (pts (xy 529.59 86.36) (xy 535.94 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3c8a2bf-cb99-41e5-8ab7-5412c31e48ca) + ) + (wire (pts (xy 558.8 337.82) (xy 614.68 337.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4111abd-5a0e-47c4-8b85-baede01ee0b3) + ) + (wire (pts (xy 464.82 666.75) (xy 491.49 666.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c43422a1-26a0-4757-81ed-3fbdc5f72c33) + ) + (wire (pts (xy 783.59 605.79) (xy 783.59 585.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4343a41-205d-4362-9f74-5541bda93882) + ) + (wire (pts (xy 514.35 645.16) (xy 529.59 645.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c434db25-96c1-4826-b6f9-50d876d9cf09) + ) + (wire (pts (xy 610.87 107.95) (xy 610.87 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c464472c-504b-4053-ba8e-8c2555bf8e2f) + ) + (wire (pts (xy 627.38 430.53) (xy 628.65 430.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4981713-b23a-4d46-984e-4c97914f5d78) + ) + (wire (pts (xy 414.02 105.41) (xy 419.1 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4bd4da5-df71-46c7-8dba-f8edc2ddaa0a) + ) + (wire (pts (xy 725.17 560.07) (xy 725.17 565.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c52659d6-9ac8-4775-a4d3-3d1139b45247) + ) + (wire (pts (xy 464.82 551.18) (xy 491.49 551.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c57f4690-18f9-439c-911f-c7b556598f4a) + ) + (wire (pts (xy 558.8 394.97) (xy 637.54 394.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5a039f5-fd6d-4fcd-b23b-ce8fac5bec5c) + ) + (wire (pts (xy 789.94 219.71) (xy 797.56 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5d5fca7-4ebd-454c-b290-b075435cdf03) + ) + (wire (pts (xy 783.59 585.47) (xy 739.14 585.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c624c43e-8484-40f3-ac4c-af0a6512805c) + ) + (wire (pts (xy 523.24 440.69) (xy 529.59 440.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c64949ba-f20e-434b-b5c6-099ee2913d55) + ) + (wire (pts (xy 394.97 143.51) (xy 398.78 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c667eb04-0b19-417c-ab0b-48552f004b64) + ) + (wire (pts (xy 671.83 567.69) (xy 703.58 567.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6beef70-59b1-4149-8acd-ba08fdc6f1a7) + ) + (wire (pts (xy 709.93 66.04) (xy 717.55 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7518599-a049-4c7f-90ba-278a37bd5e30) + ) + (wire (pts (xy 491.49 234.95) (xy 497.84 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c75e495e-1bf4-45a1-a143-baddd12df744) + ) + (wire (pts (xy 435.61 619.76) (xy 441.96 619.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7813dc8-b960-49fd-89ea-f1b978f3c120) + ) + (wire (pts (xy 745.49 147.32) (xy 792.48 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7aa8560-1366-4ea7-b1af-8cdbf6045b34) + ) + (wire (pts (xy 435.61 770.89) (xy 441.96 770.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7d41754-ad0f-4fc7-935d-7b8401c1c7f6) + ) + (wire (pts (xy 441.96 140.97) (xy 448.31 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7f8aebc-fed9-4876-8536-f8d76913f5a4) + ) + (wire (pts (xy 709.93 364.49) (xy 709.93 392.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c85481ab-f54c-4aad-be8a-a193bf5b83bc) + ) + (wire (pts (xy 471.17 93.98) (xy 497.84 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c88fee2f-1334-4cb3-acf2-8d5f6f2a50d8) + ) + (wire (pts (xy 558.8 269.24) (xy 591.82 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8a3654f-5a59-4cb2-ae02-059e4a1fceac) + ) + (wire (pts (xy 582.93 706.12) (xy 582.93 703.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c957028a-ff72-42a3-8d8f-0716db5e15bd) + ) + (wire (pts (xy 523.24 704.85) (xy 529.59 704.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9aa60d5-cc82-4552-8a38-b08d1b0ce643) + ) + (wire (pts (xy 725.17 521.97) (xy 725.17 528.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9fea1d9-80b2-4c0b-9418-cea516f561dd) + ) + (wire (pts (xy 394.97 67.31) (xy 398.78 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca1a525a-b6cb-44b2-a13b-cc01c24d108b) + ) + (wire (pts (xy 441.96 184.15) (xy 448.31 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca8fb746-88e9-4b9c-828c-3e44ca060da5) + ) + (wire (pts (xy 520.7 313.69) (xy 535.94 313.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cad8ab41-288f-4333-8fe1-2f17dbd89ee5) + ) + (wire (pts (xy 414.02 67.31) (xy 419.1 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb122c40-8d4e-4d57-aeea-01e15e747e5f) + ) + (wire (pts (xy 523.24 681.99) (xy 529.59 681.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb2eb50c-c48f-4eef-ac7a-b86f92b6927a) + ) + (wire (pts (xy 407.67 551.18) (xy 412.75 551.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb941796-fab2-4d68-9a41-945650e6806c) + ) + (wire (pts (xy 514.35 622.3) (xy 529.59 622.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbcd4706-1b5c-445f-a8b5-6012f28591b6) + ) + (wire (pts (xy 558.8 234.95) (xy 584.2 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc0e0075-6f6a-4d58-b3f0-7c29a954939c) + ) + (wire (pts (xy 435.61 756.92) (xy 441.96 756.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc2aa7d0-35d2-47b0-9c33-6421be96928e) + ) + (wire (pts (xy 441.96 152.4) (xy 448.31 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc38ef33-3015-4b05-b840-107b19855112) + ) + (wire (pts (xy 659.13 179.07) (xy 662.94 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc489b37-4ec9-41c1-9fcf-f565a6328fdf) + ) + (wire (pts (xy 614.68 270.51) (xy 617.22 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce3614cd-72cb-467f-81d7-6c66003f01e3) + ) + (wire (pts (xy 464.82 471.17) (xy 491.49 471.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce5f9953-484c-438b-8bdf-e7a0827eb3e7) + ) + (wire (pts (xy 407.67 608.33) (xy 412.75 608.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce6301eb-e3a8-4a91-bf50-21f0ea6df7e6) + ) + (wire (pts (xy 520.7 60.96) (xy 535.94 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce80f3fb-0e29-490a-a6a6-b88f7e53329a) + ) + (wire (pts (xy 441.96 81.28) (xy 448.31 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce8fbb1c-4688-47af-bfae-bf3b49a1cfb0) + ) + (wire (pts (xy 797.56 49.53) (xy 797.56 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf03af44-c29e-4073-862a-d6bf85540784) + ) + (wire (pts (xy 638.81 349.25) (xy 638.81 322.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf368a2b-07f0-4c21-a583-4dbbe7aee604) + ) + (wire (pts (xy 435.61 449.58) (xy 441.96 449.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf77412b-bc13-4867-a716-2e81a1ae8a40) + ) + (wire (pts (xy 617.22 292.1) (xy 617.22 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfa14c25-a631-474e-b902-85c48b15fec0) + ) + (wire (pts (xy 365.76 177.8) (xy 369.57 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfb9746e-7236-448e-bced-ad248bdfbb93) + ) + (wire (pts (xy 552.45 657.86) (xy 585.47 657.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfc5be04-90d0-4d8e-b456-17bfc6b0a6cb) + ) + (wire (pts (xy 558.8 360.68) (xy 588.01 360.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d05e7225-a88a-40bc-bb62-b6c4123313d2) + ) + (wire (pts (xy 704.85 633.73) (xy 711.2 633.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0864abb-b109-4bcb-8700-06d6dd75618a) + ) + (wire (pts (xy 441.96 195.58) (xy 448.31 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0dd8cd8-2da8-40a4-94c2-fd960576a6c1) + ) + (wire (pts (xy 529.59 189.23) (xy 535.94 189.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d0eb7ce1-21b0-43fe-ae58-9eee53a56bba) + ) + (wire (pts (xy 664.21 273.05) (xy 668.02 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1098c33-5e92-4d77-98aa-d108325499b9) + ) + (wire (pts (xy 791.21 605.79) (xy 783.59 605.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d14ea69f-100c-4b1f-9497-21f7e55e6e14) + ) + (wire (pts (xy 441.96 106.68) (xy 448.31 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1ff5721-5260-4092-b086-c8b05268cda0) + ) + (wire (pts (xy 491.49 360.68) (xy 497.84 360.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d22a4729-acb1-4895-8ccd-8eaf8a1d75fd) + ) + (wire (pts (xy 514.35 506.73) (xy 529.59 506.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d248bf68-a7f1-443e-9e00-92752d2917bb) + ) + (wire (pts (xy 485.14 646.43) (xy 491.49 646.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2b4754c-13b7-4704-842e-ec63b84f1400) + ) + (wire (pts (xy 441.96 127) (xy 448.31 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2c0a0d1-a088-4aff-bff1-660ca79ce81b) + ) + (wire (pts (xy 441.96 299.72) (xy 448.31 299.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2e00a87-efee-491c-89a8-47f690203ad3) + ) + (wire (pts (xy 435.61 713.74) (xy 441.96 713.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2f61058-36ce-41fa-8153-6c97c33adb23) + ) + (wire (pts (xy 414.02 209.55) (xy 419.1 209.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3137a8b-966d-4f11-8286-fa5cd1462821) + ) + (wire (pts (xy 514.35 563.88) (xy 529.59 563.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d37e62c8-e525-4cbd-afec-ed27ba3ad670) + ) + (wire (pts (xy 523.24 693.42) (xy 529.59 693.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3dc487a-af86-4dc6-9a54-0ab81f3d315a) + ) + (wire (pts (xy 485.14 427.99) (xy 491.49 427.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3ec352b-9ca7-4b82-be37-4a5aecf9d348) + ) + (wire (pts (xy 585.47 669.29) (xy 585.47 660.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3fffdaf-5ba2-481d-8474-aac7e1b0627f) + ) + (wire (pts (xy 491.49 394.97) (xy 497.84 394.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d459ee3b-1610-4245-b9f4-c56ef3cedcef) + ) + (wire (pts (xy 388.62 617.22) (xy 392.43 617.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d47c3249-0293-4229-8bb9-e9018368aba0) + ) + (wire (pts (xy 441.96 334.01) (xy 448.31 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d49e5c2f-7d9d-4298-af10-dc6a055d32f5) + ) + (wire (pts (xy 485.14 669.29) (xy 491.49 669.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4a42f8c-5af6-4fe4-a795-06f223af4ccd) + ) + (wire (pts (xy 491.49 142.24) (xy 497.84 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5c7a753-7629-40de-934d-561f367a7e1f) + ) + (wire (pts (xy 558.8 199.39) (xy 612.14 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5f292a2-de49-41a8-bdff-97079185cf20) + ) + (wire (pts (xy 661.67 321.31) (xy 665.48 321.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6830f88-57e9-44b0-ba7c-97c7654a3680) + ) + (wire (pts (xy 435.61 654.05) (xy 441.96 654.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d69450b4-01b5-4bef-aef5-22b2aa547039) + ) + (wire (pts (xy 514.35 679.45) (xy 529.59 679.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6f6f0a9-4de4-4763-998e-6793c577f380) + ) + (wire (pts (xy 567.69 41.91) (xy 585.47 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7f16c8e-0a51-4f20-9036-4be30853056e) + ) + (wire (pts (xy 441.96 382.27) (xy 448.31 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8119959-55a2-4aef-8c43-a886251f4ba7) + ) + (wire (pts (xy 441.96 233.68) (xy 448.31 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8942d26-4f7a-4beb-8b59-8fa8babd2608) + ) + (wire (pts (xy 365.76 165.1) (xy 369.57 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8dc6a64-e690-480e-a938-bc3cbd3f8f22) + ) + (wire (pts (xy 435.61 438.15) (xy 441.96 438.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d933272c-3ffd-4996-8af1-87536e7e8b0e) + ) + (wire (pts (xy 610.87 43.18) (xy 610.87 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9682fbc-da76-40d0-8a01-388f893f53e7) + ) + (wire (pts (xy 441.96 325.12) (xy 448.31 325.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9944ad3-c2ec-44ac-ae37-cac16f20af40) + ) + (wire (pts (xy 529.59 154.94) (xy 535.94 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d99476b7-c83b-4220-b496-041312bc390e) + ) + (wire (pts (xy 520.7 106.68) (xy 535.94 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da011b8b-e424-4fba-a4c8-b791f56983d9) + ) + (wire (pts (xy 709.93 147.32) (xy 709.93 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da116e48-33a0-46bf-b8cb-284d2846d192) + ) + (wire (pts (xy 523.24 589.28) (xy 529.59 589.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da694e39-24fc-417b-9ab5-81f1d01e8ac8) + ) + (wire (pts (xy 414.02 152.4) (xy 419.1 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da7db49b-1e19-4507-a978-e3a691364b94) + ) + (wire (pts (xy 491.49 62.23) (xy 497.84 62.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid daa694df-8da8-46da-a421-244bdb52615d) + ) + (wire (pts (xy 552.45 783.59) (xy 631.19 783.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db83c06a-7971-4828-8979-5bde05269fa3) + ) + (wire (pts (xy 673.1 753.11) (xy 703.58 753.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dba9e974-52f8-47e7-ae44-49c3f1b0d03f) + ) + (wire (pts (xy 703.58 431.8) (xy 703.58 438.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbfc9596-d09f-43fa-9ea8-08c5ae7421e6) + ) + (wire (pts (xy 529.59 247.65) (xy 535.94 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc1ee87c-59da-4fe8-aa14-3bc4a4051b83) + ) + (wire (pts (xy 552.45 450.85) (xy 604.52 450.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc78b3fc-b42c-4864-a743-0df7e78d18e3) + ) + (wire (pts (xy 558.8 165.1) (xy 636.27 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcb71ef8-4ecf-4237-9691-ff04525dd7b1) + ) + (wire (pts (xy 520.7 370.84) (xy 535.94 370.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd1d2613-7116-4745-87dd-9485fb5539ab) + ) + (wire (pts (xy 797.56 212.09) (xy 795.02 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd30f89e-dd6e-4ee2-bcb0-984025c76ee9) + ) + (wire (pts (xy 435.61 699.77) (xy 441.96 699.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd96a70b-b6c7-4820-9a40-79df05c4c36b) + ) + (wire (pts (xy 636.27 363.22) (xy 637.54 363.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de0317e4-f426-4fd2-9da7-24495b5f5cc8) + ) + (wire (pts (xy 552.45 439.42) (xy 561.34 439.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de2d3515-cfb0-40a5-8cf5-9526401c11f9) + ) + (wire (pts (xy 388.62 598.17) (xy 392.43 598.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de53ef84-406a-4b90-83ac-e4c0e0c2bce2) + ) + (wire (pts (xy 725.17 571.5) (xy 725.17 577.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df493a96-f261-4fd9-8ffc-074d88fe7705) + ) + (wire (pts (xy 791.21 610.87) (xy 786.13 610.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df6d085f-59a5-4664-86f9-29274235cc7f) + ) + (wire (pts (xy 388.62 608.33) (xy 392.43 608.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df8f5c76-cfad-4e40-a534-2aa4a6ef9caa) + ) + (wire (pts (xy 725.17 462.28) (xy 725.17 467.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df90160e-d10c-48ae-990d-cf914d00998e) + ) + (wire (pts (xy 529.59 224.79) (xy 535.94 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e080a6a0-a91f-43dd-a254-d2c95d8f1774) + ) + (wire (pts (xy 407.67 541.02) (xy 412.75 541.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e098beb7-4270-4c15-977d-389e9022eaab) + ) + (wire (pts (xy 788.67 731.52) (xy 788.67 613.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0da85d8-5c6e-4c1e-9d89-3a242cb2f623) + ) + (wire (pts (xy 435.61 782.32) (xy 441.96 782.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0f26579-7484-4c52-abad-7e10ce69c9bd) + ) + (wire (pts (xy 441.96 279.4) (xy 448.31 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e10ba820-901b-4b5c-9445-ae35be4f82e1) + ) + (wire (pts (xy 514.35 461.01) (xy 529.59 461.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e15f3af9-c732-4712-aaef-05d63fa993bd) + ) + (wire (pts (xy 588.01 372.11) (xy 588.01 363.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1a5e9a4-8934-4915-8eb2-46a870a004bb) + ) + (wire (pts (xy 414.02 219.71) (xy 419.1 219.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e218f000-5583-4a73-b6e7-ff816c7c559b) + ) + (wire (pts (xy 703.58 781.05) (xy 711.2 781.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2392bda-ce45-4642-b2b2-3366f459eab2) + ) + (wire (pts (xy 407.67 474.98) (xy 412.75 474.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2703b8d-8948-4187-b830-0eff65b2d76d) + ) + (wire (pts (xy 407.67 589.28) (xy 412.75 589.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e296723a-0561-49a3-ab9c-44160639ae88) + ) + (wire (pts (xy 709.93 321.31) (xy 709.93 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e299432a-be09-4ab6-a291-f2892c291061) + ) + (wire (pts (xy 680.72 321.31) (xy 709.93 321.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2a1bbd4-df18-4150-b8f1-739480c2dce3) + ) + (wire (pts (xy 464.82 632.46) (xy 491.49 632.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3274d76-bb6d-4d23-9238-f368c801a0b0) + ) + (wire (pts (xy 441.96 254) (xy 448.31 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e385d681-b09e-41c0-a628-64b18e80ce86) + ) + (wire (pts (xy 725.17 669.29) (xy 725.17 675.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3964fe9-ea12-43ee-a67c-04ac5f4bf99c) + ) + (wire (pts (xy 514.35 529.59) (xy 529.59 529.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e396a895-048a-4b41-9832-cc391ff2e146) + ) + (wire (pts (xy 435.61 541.02) (xy 441.96 541.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3de8034-1b6a-4089-be85-6ac7d241fd97) + ) + (wire (pts (xy 580.39 565.15) (xy 580.39 563.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4e471e8-129a-4adb-a189-3a317c4ada8a) + ) + (wire (pts (xy 435.61 734.06) (xy 441.96 734.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e523961e-359a-4ede-9249-96c4f5483318) + ) + (wire (pts (xy 552.45 553.72) (xy 629.92 553.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e60c8a54-3e86-45d5-a3d9-a705091c396a) + ) + (wire (pts (xy 485.14 485.14) (xy 491.49 485.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e62dc6cc-91d7-49bf-afcc-0768650c1858) + ) + (wire (pts (xy 731.52 73.66) (xy 731.52 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e650c27e-42b0-4490-8071-6f4a48e8dd4a) + ) + (wire (pts (xy 520.7 186.69) (xy 535.94 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6539f85-321b-4297-a219-049d9a3550b8) + ) + (wire (pts (xy 485.14 726.44) (xy 491.49 726.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e667b175-5dd5-4195-be31-6fca90d66fc7) + ) + (wire (pts (xy 792.48 222.25) (xy 792.48 294.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e69276ae-12d7-44e4-a90e-64495e50175e) + ) + (wire (pts (xy 407.67 436.88) (xy 412.75 436.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e76ba628-ea15-4350-8a6c-1eff08090ab5) + ) + (wire (pts (xy 464.82 516.89) (xy 491.49 516.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7d7369e-334e-42ec-829e-de2fc06ad62c) + ) + (wire (pts (xy 471.17 289.56) (xy 497.84 289.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e844e92d-59d8-4137-a3c5-9dfbe3304d37) + ) + (wire (pts (xy 523.24 577.85) (xy 529.59 577.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8555349-5e85-4bad-b03e-4e2bf72580ba) + ) + (wire (pts (xy 367.03 240.03) (xy 370.84 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8649c8c-ede0-4c92-b561-7680e3188531) + ) + (wire (pts (xy 552.45 623.57) (xy 577.85 623.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e86be3b9-71ce-4bd7-b727-b50cdbfe6eaa) + ) + (wire (pts (xy 441.96 92.71) (xy 448.31 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e870688e-2c09-472a-9102-12a95caa022d) + ) + (wire (pts (xy 520.7 222.25) (xy 535.94 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8ca83b4-2d04-46c8-89ad-ba9816db7abe) + ) + (wire (pts (xy 529.59 143.51) (xy 535.94 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8e96a60-2529-425d-8fe9-b401510b0941) + ) + (wire (pts (xy 709.93 359.41) (xy 717.55 359.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e998e1e6-b6da-4116-9589-b226ec930262) + ) + (wire (pts (xy 786.13 610.87) (xy 786.13 683.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9bd0141-3a8c-4949-8dd8-b7d0e83201d8) + ) + (wire (pts (xy 435.61 458.47) (xy 441.96 458.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebc2f2d9-b10b-4e72-896d-4e1c4f062b84) + ) + (wire (pts (xy 679.45 364.49) (xy 709.93 364.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebfb793e-0c2a-4b3c-8d97-e768cd26da23) + ) + (wire (pts (xy 797.56 217.17) (xy 789.94 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec3691ae-4e6d-4260-a2c0-e3aa844532fd) + ) + (wire (pts (xy 605.79 588.01) (xy 605.79 567.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec76a4da-5226-4d67-b0c7-268d472d476d) + ) + (wire (pts (xy 435.61 495.3) (xy 441.96 495.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec9ccd21-b8d3-44dd-859c-15d1139d934b) + ) + (wire (pts (xy 435.61 527.05) (xy 441.96 527.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eca90e1a-f472-4dc3-a314-c1a5fc8481b3) + ) + (wire (pts (xy 552.45 427.99) (xy 579.12 427.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed196e4a-6930-4e25-bc95-3872f030cb6a) + ) + (wire (pts (xy 414.02 181.61) (xy 419.1 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edaba7f0-ed1b-4b25-ac8a-c0c5279aad52) + ) + (wire (pts (xy 523.24 520.7) (xy 529.59 520.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee4cbce5-9385-42a6-9f68-86b0972dfab8) + ) + (wire (pts (xy 558.8 349.25) (xy 638.81 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eeaa1be7-6837-436a-9907-8ee6090ee84d) + ) + (wire (pts (xy 797.56 222.25) (xy 792.48 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eebc588c-85e0-417f-948e-37a0d96108de) + ) + (wire (pts (xy 394.97 114.3) (xy 398.78 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eebdefae-90c7-4018-8788-53fcff86bd0b) + ) + (wire (pts (xy 725.17 511.81) (xy 725.17 516.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef1c3117-b831-4752-ada0-d66f3f7177f0) + ) + (wire (pts (xy 725.17 619.76) (xy 725.17 626.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef39eb5d-3838-4053-ac25-7fd7b67dcbd5) + ) + (wire (pts (xy 731.52 280.67) (xy 731.52 287.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f05fd906-4e70-406e-b140-8b6ae152ca0a) + ) + (wire (pts (xy 552.45 462.28) (xy 628.65 462.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f078a01d-7efb-406f-b578-dcfd1f79fd02) + ) + (wire (pts (xy 435.61 610.87) (xy 441.96 610.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0cf0e9e-5ac8-4b8c-afed-a8225a08a238) + ) + (wire (pts (xy 471.17 36.83) (xy 497.84 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f14338cd-a3e5-4273-893c-b8eccb41911d) + ) + (wire (pts (xy 657.86 88.9) (xy 661.67 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1faca7d-53c9-4de0-a747-517a9348e020) + ) + (wire (pts (xy 441.96 265.43) (xy 448.31 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f208266a-a09f-4c2c-9263-bc8f61d9bbd4) + ) + (wire (pts (xy 523.24 600.71) (xy 529.59 600.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f29fa48d-68e1-4057-a5d8-7918ee557c07) + ) + (wire (pts (xy 441.96 391.16) (xy 448.31 391.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2d45e87-47d7-4210-a403-d9ebbe4bc977) + ) + (wire (pts (xy 394.97 181.61) (xy 398.78 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f347fe3d-2a2f-43a3-b84a-409c71319a1a) + ) + (wire (pts (xy 523.24 647.7) (xy 529.59 647.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f41414a0-8a10-4ca7-9cb7-45d6270017b0) + ) + (wire (pts (xy 441.96 83.82) (xy 448.31 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f44de322-9090-415b-88d5-95b1fe789036) + ) + (wire (pts (xy 529.59 200.66) (xy 535.94 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4522576-5b55-4588-b694-fc195279f213) + ) + (wire (pts (xy 789.94 217.17) (xy 789.94 196.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f47e6b79-8a9e-4935-b93e-f5dd6ced5563) + ) + (wire (pts (xy 365.76 172.72) (xy 369.57 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4e27bff-24ba-4c27-af6d-a8eba48e08d9) + ) + (wire (pts (xy 561.34 430.53) (xy 579.12 430.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4e761f3-1024-43c3-8b67-766f3c9a1ec7) + ) + (wire (pts (xy 394.97 86.36) (xy 398.78 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f587a387-a8c6-4f65-93bb-59d6eb58425e) + ) + (wire (pts (xy 435.61 515.62) (xy 441.96 515.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f596549f-713d-4773-b10d-cca1d1f9db9b) + ) + (wire (pts (xy 608.33 726.44) (xy 608.33 709.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5a2ff5d-7802-4195-b073-0bf224524a1b) + ) + (wire (pts (xy 365.76 194.31) (xy 369.57 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5a635e2-260a-4397-b12f-30968dd8a835) + ) + (wire (pts (xy 627.38 476.25) (xy 628.65 476.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5c1905a-fe63-4a80-a83d-dd4e742f61c1) + ) + (wire (pts (xy 635 177.8) (xy 636.27 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6059fb6-986d-441f-8e81-5fce2df5dd45) + ) + (wire (pts (xy 435.61 492.76) (xy 441.96 492.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6a5d719-6870-40ed-932c-cec81f6451fb) + ) + (wire (pts (xy 579.12 485.14) (xy 579.12 476.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6aaf423-de31-4798-9e52-600a769ac2e7) + ) + (wire (pts (xy 792.48 147.32) (xy 792.48 214.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6e8d887-c87e-4f0b-894c-af3ae68c2a45) + ) + (wire (pts (xy 523.24 750.57) (xy 529.59 750.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6ec3968-713f-4260-9f0b-81c6294b897a) + ) + (wire (pts (xy 635 133.35) (xy 636.27 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f71ea565-7497-4448-b42f-32763755643d) + ) + (wire (pts (xy 514.35 449.58) (xy 529.59 449.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f72930da-abd3-4972-9069-d9451a7a1cab) + ) + (wire (pts (xy 520.7 256.54) (xy 535.94 256.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7577f88-689e-47b2-a770-5f785a64e955) + ) + (wire (pts (xy 671.83 523.24) (xy 703.58 523.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7b8be64-0f6b-49cc-98e7-0a8262122b77) + ) + (wire (pts (xy 609.6 176.53) (xy 612.14 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7c4c895-8398-4c26-b7ab-7bc9026836ca) + ) + (wire (pts (xy 552.45 565.15) (xy 580.39 565.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9311b03-369e-4723-b5b9-2af40b1fb122) + ) + (wire (pts (xy 657.86 43.18) (xy 661.67 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f93aa37b-2767-4b8a-a9c4-86eb1603f713) + ) + (wire (pts (xy 485.14 737.87) (xy 491.49 737.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fab2076b-3da9-4fb6-a5b4-b47e2c6bfd01) + ) + (wire (pts (xy 520.7 38.1) (xy 535.94 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fad986ba-45be-4a8f-a224-7c938110d828) + ) + (wire (pts (xy 441.96 288.29) (xy 448.31 288.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb1bc8ba-0003-4ed2-b3bb-522eda6a713b) + ) + (wire (pts (xy 523.24 486.41) (xy 529.59 486.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb360d64-a210-4985-85b8-c7cc368011f9) + ) + (wire (pts (xy 435.61 631.19) (xy 441.96 631.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb718971-48ce-450b-94a9-037cfd43803c) + ) + (wire (pts (xy 407.67 494.03) (xy 412.75 494.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbf0cc73-fb2a-4aa2-ae23-9a55981059cc) + ) + (wire (pts (xy 471.17 392.43) (xy 497.84 392.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd026ce5-db44-4f33-b5af-1b27450d7943) + ) + (wire (pts (xy 580.39 576.58) (xy 580.39 566.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe0023d5-e9ec-489f-a84b-a0c5986909d3) + ) + (wire (pts (xy 464.82 689.61) (xy 491.49 689.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe0a414e-a2d6-4324-b8db-de9f1942ffc6) + ) + (wire (pts (xy 656.59 227.33) (xy 660.4 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe6d1b16-7c9e-40d8-b7ac-bb8a58329e2b) + ) + (wire (pts (xy 491.49 199.39) (xy 497.84 199.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff5ec82e-2c13-4d47-94d9-720ac744838a) + ) + (wire (pts (xy 703.58 487.68) (xy 711.2 487.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff6421d2-9b7b-4ec6-bf46-32742e384ec7) + ) + (wire (pts (xy 514.35 725.17) (xy 529.59 725.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff8445b1-3de2-4162-893e-fba777a7660d) + ) + (wire (pts (xy 552.45 715.01) (xy 582.93 715.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffaf9b89-a2ff-4564-a7b8-12371fd55632) + ) + + (label "_ni1" (at 439.42 711.2 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 004d53ed-ba90-413a-8655-1392205f5525) + ) + (label "i18" (at 391.16 608.33 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 018f0110-6f43-4dc9-9ea6-fd4a4f05bdd9) + ) + (label "i12" (at 391.16 551.18 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 019ca10b-f5b1-436e-b345-95cbde149549) + ) + (label "set" (at 725.17 770.89 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 020c2f6a-ea3e-4af1-89f1-a1b92b222ef9) + ) + (label "_ni3" (at 527.05 681.99 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 025b0a74-486c-4492-848e-ba0bc4b85ac8) + ) + (label "i2" (at 439.196 469.9 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 040f7a09-67d6-4dc0-9acd-2e25cfe7f224) + ) + (label "i4" (at 445.77 115.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 052dad3e-74ad-43a6-b8fe-bd82d4b1d5dd) + ) + (label "reset" (at 725.17 659.13 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 058cfed8-c362-4c61-a37a-4fb5bb246568) + ) + (label "i18" (at 397.51 219.71 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 06ec9655-6677-4037-be7d-f7ec105b0d50) + ) + (label "clk" (at 712.47 66.04 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 077fae75-2fb6-479b-b52b-5aed0bdce81f) + ) + (label "ni19" (at 416.56 228.6 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 08099c4c-3279-4270-9b5d-324919706c89) + ) + (label "i6" (at 367.03 175.26 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0866d7bb-184e-48b9-b715-1941ddf239fb) + ) + (label "i15" (at 439.42 610.87 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0882c016-e830-47f6-bb12-a5dbdd714232) + ) + (label "i6" (at 391.16 494.03 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 08d16a7a-74d8-44a5-869f-9af2dfc4319b) + ) + (label "i11" (at 439.42 563.88 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 091ed7f2-f767-41ba-9f36-f954ddb7a1c4) + ) + (label "i0" (at 532.13 236.22 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0a0256ca-6d3b-4bcd-8cd4-37821486333c) + ) + (label "ni5" (at 532.13 259.08 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0a2939f6-7631-4590-8c4d-edbf9228317b) + ) + (label "i17" (at 367.03 220.98 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0b107e3e-029b-4052-b971-f9b02c094a17) + ) + (label "i4" (at 367.03 170.18 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0b48b6e5-ad84-489b-b242-8f8836d797bb) + ) + (label "i7" (at 439.42 549.91 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0b91292a-3312-4fc4-97a8-a5772551f843) + ) + (label "_ni4" (at 488.95 692.15 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0d893a03-d621-4085-bcaa-9c88f85aca3b) + ) + (label "i7" (at 445.77 161.29 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0ee19a7c-6bd3-4bf6-8e3f-a80e4de9d233) + ) + (label "i3" (at 439.42 472.44 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 0fbe8ec9-ca5d-444e-bca5-e9d963e484ad) + ) + (label "reset" (at 731.52 270.51 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 10099ea8-7582-40da-bc10-45b2a8fe30a3) + ) + (label "i12" (at 525.78 520.7 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 11be8592-bb13-4499-b966-13dd5d964f96) + ) + (label "i4" (at 496.57 50.8 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 11bf6be5-dbc4-4ac6-b061-3f48d7ad8114) + ) + (label "ni19" (at 532.13 224.79 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 120d0a29-ac42-43dd-a2ea-873621d3bdec) + ) + (label "ni5" (at 445.3497 138.43 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 129a4c27-35c0-4910-91f1-8f6a8b6b7894) + ) + (label "i11" (at 439.42 595.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 12a7d0ab-410d-418d-858d-9f42657f665b) + ) + (label "_ni2" (at 410.21 455.93 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 12d9af9d-e57d-4127-aa94-110639b87836) + ) + (label "ni0" (at 444.5 46.99 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 130be72c-461a-41a4-a9f6-6d3360402b29) + ) + (label "_ni7" (at 527.05 693.42 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 134194e0-40ea-4c8c-ac7b-ecb311a426ed) + ) + (label "i6" (at 397.51 105.41 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 135c8807-208f-43df-b035-93400cf2c9a7) + ) + (label "i0" (at 396.24 48.26 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 13f65dda-7036-4f44-9967-34148e5453e8) + ) + (label "i9" (at 445.77 163.83 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 16903566-e101-4355-b264-16df1e99b1be) + ) + (label "i8" (at 367.03 189.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 16dcdae2-0e7f-4b13-a2ee-3fcf55c5dbee) + ) + (label "i10" (at 532.13 109.22 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 17cad1aa-4217-4e87-9faa-2f3ebe726928) + ) + (label "reset" (at 725.17 708.66 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 188ff18c-96ef-4735-97a2-118fa0cb15bb) + ) + (label "i14" (at 439.42 631.19 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 18a80d85-712c-4f4d-83d8-0301063c4431) + ) + (label "i8" (at 532.13 86.36 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1a01a781-649e-4c56-a19c-b1d6507cb9e2) + ) + (label "__ni13" (at 410.21 560.07 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1a0f3607-6314-409c-8699-7212c13e35a7) + ) + (label "i17" (at 439.42 654.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1a472a5d-d01a-4b4d-bc97-8a2b69844407) + ) + (label "ni12" (at 494.03 165.1 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1b4b849b-0bfe-4fe2-9766-7a5fea51a6fd) + ) + (label "set" (at 725.17 623.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1b82c8e0-c48f-44f6-9638-a0326e4bbd1c) + ) + (label "i3" (at 445.77 104.14 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1b9d1c29-06c4-4fa0-a099-d894de4a5d75) + ) + (label "ni1" (at 532.13 270.51 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1c067158-1688-4930-8de2-e9543edaddbf) + ) + (label "_ni5" (at 410.21 483.87 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1e0f0d16-2848-44d3-bec4-8aff65de20c7) + ) + (label "i19" (at 439.42 688.34 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1e29824a-702c-47e1-ae31-1d5596e9dc34) + ) + (label "i10" (at 494.03 142.24 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1e7acd95-08ea-4f6f-b64e-3aa94c148241) + ) + (label "i11" (at 391.16 541.02 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1e9c721e-5f3c-473f-baaf-62186b9eb4a9) + ) + (label "ni4" (at 495.3 303.53 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1f6b8b25-f18b-4c2a-8f6d-19411fe4467b) + ) + (label "i11" (at 397.51 152.4 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1ff625e6-2a14-4220-8cc3-78336c1888c6) + ) + (label "ni3" (at 533.4 293.37 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 202c2baa-b9af-46ad-8ffa-b659604b02d8) + ) + (label "__ni16" (at 487.68 599.44 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 217b460d-1f5e-4dcf-a850-d1c785f99817) + ) + (label "i12" (at 397.51 162.56 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 21f884ad-e5ba-45bf-8595-39d5e6f320a8) + ) + (label "i8" (at 439.42 529.59 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 231d1e08-0d47-4e17-b051-73134b431ed8) + ) + (label "i13" (at 439.42 608.33 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 233e2373-3b66-4c15-bb5a-e60b1722d0d1) + ) + (label "i9" (at 445.77 379.73 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 239de37f-00c5-43d9-912e-fb18f3cfacfd) + ) + (label "__ni15" (at 410.21 579.12 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 23b79257-5643-4118-8817-7f97572845fa) + ) + (label "__ni10" (at 410.21 532.13 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2475ab99-a300-4cb8-8f6b-0f5a1cd01298) + ) + (label "__ni11" (at 439.42 770.89 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 24c1ea7e-88ec-4cc6-a9db-49c50964d07b) + ) + (label "__ni18" (at 525.78 784.86 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 24dd051e-e8a1-4bfe-9565-039e09f067bc) + ) + (label "i8" (at 397.51 124.46 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 25033d91-44f5-443d-9d20-0d64f710ebe4) + ) + (label "ni9" (at 416.56 133.35 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 258200bf-afe6-470c-a752-531d5a1bdae5) + ) + (label "i8" (at 445.77 356.87 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2607d13a-cdfa-4f05-aa8d-2b04cdbe85d1) + ) + (label "i15" (at 439.42 642.62 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 27d60331-fb44-4634-9d80-952a2638ff18) + ) + (label "ni2" (at 444.5 92.71 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 28aef5d0-f270-4b27-8c4d-4bb8df618ce1) + ) + (label "clk" (at 706.12 552.45 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 295356a2-f2c7-4093-a4f1-318755fac15c) + ) + (label "i9" (at 397.51 133.35 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 299704a6-c7cf-414e-ac84-757687a99626) + ) + (label "i15" (at 445.77 222.25 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 29d0d70b-7f98-4fd0-a63b-47ea4a2eeb84) + ) + (label "i2" (at 367.03 165.1 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2b389e1c-6d65-4b7c-a0fc-109e89c0521c) + ) + (label "i5" (at 438.15 483.87 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2ba27104-f690-474c-9fdc-28bbd08c4e2c) + ) + (label "__ni13" (at 525.78 532.13 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2c35b9ff-a70a-4cb3-b052-5830ebe56065) + ) + (label "_ni6" (at 487.68 462.28 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2c904de6-1e07-476b-aba7-14cc029ab6d3) + ) + (label "clk" (at 706.12 454.66 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2cfe5f7e-30de-4ee9-8002-47caf0edc96d) + ) + (label "set" (at 731.52 88.9 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2df1be41-e55f-4982-a74a-0c6a687bca05) + ) + (label "i4" (at 445.77 313.69 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2e8023c2-c090-422c-a100-ac34bb2c20d4) + ) + (label "i3" (at 488.95 680.72 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2e95d710-4fbe-4b16-9554-f6fbb0d17ce2) + ) + (label "set" (at 725.17 673.1 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2ee681a0-20f0-490d-a2bc-e5c01546ac69) + ) + (label "reset" (at 725.17 756.92 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 2fc200ea-f56d-41fa-a496-356d261af125) + ) + (label "i1" (at 367.03 162.56 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 305bf3b5-a3f7-478c-944c-5927b2d1018b) + ) + (label "set" (at 731.52 137.16 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 323f9d1b-d217-49da-a4d6-72d4587ea6b2) + ) + (label "__ni10" (at 525.78 716.28 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 32741bf2-f68b-4580-aaab-10916b37c388) + ) + (label "_ni3" (at 410.21 464.82 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 32dfc4be-c3d0-49b3-bb60-4f5f9416ef23) + ) + (label "_ni5" (at 438.15 495.3 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 344fd495-7a93-42cb-a7c3-82a62fc24623) + ) + (label "reset" (at 725.17 513.08 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 355a7cf7-dbb6-4787-9ab5-d4dff342a6ce) + ) + (label "ni8" (at 494.03 119.38 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 35b380f0-1e08-4606-aa1b-c58c385b840c) + ) + (label "i6" (at 525.78 589.28 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 35d92f53-2448-4ed5-be4b-1e70808e624c) + ) + (label "i3" (at 495.3 292.1 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 364216ec-080d-40da-8527-5d47dd01d7f9) + ) + (label "_ni3" (at 438.15 449.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 36559d86-f41d-467e-8987-ceadfda90f50) + ) + (label "i1" (at 439.42 699.77 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 366dee2f-6eea-4e50-81fe-7ff777e7c301) + ) + (label "i1" (at 439.42 426.72 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 366fc9f9-fe1f-47c1-b41b-48050c732874) + ) + (label "clk" (at 712.47 213.36 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 367e9c89-4d4c-406f-b64c-aee6e765c60d) + ) + (label "i11" (at 367.03 196.85 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 36cfa04e-74a9-4433-9b58-826fc1c9f7dc) + ) + (label "ni4" (at 417.83 86.36 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 373bd49e-6e98-4b10-a540-98533d169d02) + ) + (label "i5" (at 445.77 127 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 38c4a06c-1a53-45fc-928a-d42b23978738) + ) + (label "ni10" (at 416.56 143.51 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3929171a-fc1a-49c7-8870-96b869d91692) + ) + (label "i14" (at 397.51 181.61 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3974b458-a4e2-47f2-9755-41954a246b30) + ) + (label "i2" (at 444.5 49.53 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 39d052e0-4ea8-4397-8666-63dbec30fb94) + ) + (label "i5" (at 439.42 713.74 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3a7947cc-2d92-48af-af1d-1a0dd3472abb) + ) + (label "clk" (at 712.47 408.94 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3a84edb0-6615-47dd-9dd8-e8f9959f31ca) + ) + (label "__ni16" (at 410.21 589.28 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3b8c003b-d814-4089-b428-9f956544a27c) + ) + (label "reset" (at 731.52 74.93 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3c2d33cc-cb82-4342-bff4-037abc33c214) + ) + (label "i4" (at 397.51 86.36 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3cb0ffc2-7355-4325-ba9e-66c0205f141f) + ) + (label "__ni16" (at 525.78 762 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3ce7c01b-5137-486b-8051-64447f6a6ffc) + ) + (label "i8" (at 439.42 745.49 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3d1075f2-d050-4d44-86b1-78a6dbb6cd53) + ) + (label "reset" (at 731.52 172.72 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3d69c4b3-ae0c-4466-a77b-b364e6357b42) + ) + (label "__ni17" (at 525.78 577.85 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3e3dea72-94a0-462b-89ed-90fc9bdd5ecd) + ) + (label "ni15" (at 532.13 166.37 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3fb46fe2-ce29-419f-a7ab-8fcfbe4f9dbe) + ) + (label "i13" (at 391.16 560.07 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3fc26e65-b86f-4235-a4f3-803007b412db) + ) + (label "i3" (at 439.42 492.76 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3fd7283c-5ede-4512-99b5-50df50da10e8) + ) + (label "ni11" (at 445.77 382.27 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 40945952-8d88-49c1-a40e-f80f1e9e9466) + ) + (label "set" (at 731.52 234.95 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 40ec2e2c-dc4a-4bd4-87a7-9ac96a5ad919) + ) + (label "_ni8" (at 410.21 513.08 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4163b770-8609-4364-9c60-a48c849e5baa) + ) + (label "i16" (at 367.03 218.44 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 41d26e4e-dedb-4a6d-99b6-f65d50736f92) + ) + (label "ni13" (at 532.13 143.51 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 42b6aadf-1d4b-4ef2-b3f1-27f880f3d166) + ) + (label "_ni4" (at 438.15 461.01 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 43ad834a-4105-4a27-9ae0-c02ead558f37) + ) + (label "_ni2" (at 488.95 427.99 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 44324616-05b7-4a44-85b8-eae882dd7130) + ) + (label "i10" (at 438.15 584.2 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4519c481-fc54-47f6-bc01-fe0eaefb9c2b) + ) + (label "ni5" (at 444.5 106.68 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 45816945-64d3-4056-8c01-03612d7ae5dd) + ) + (label "i9" (at 439.42 552.45 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 459ae122-e3b5-4e42-8b38-3c5966bd4cb8) + ) + (label "reset" (at 731.52 417.83 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 45de3fc7-ef54-4f6d-97a7-8c27f5bfda6e) + ) + (label "set" (at 731.52 382.27 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 45e50390-bd56-41f6-81f6-88ef5911cf46) + ) + (label "i0" (at 443.23 35.56 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 46305f1f-c961-4692-aee7-e47178e737d2) + ) + (label "ni12" (at 444.5 198.12 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 464a4b65-58c5-4d48-af72-9ce3b88d9519) + ) + (label "reset" (at 725.17 463.55 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 476e7f15-f0e9-4af4-95c8-9ff1a23cb11a) + ) + (label "_ni2" (at 438.15 481.33 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4839d474-f628-4fc8-94ae-e282139db8ae) + ) + (label "ni16" (at 445.77 245.11 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 483f13e9-3ce1-4043-84ff-acd07e2c94c7) + ) + (label "i16" (at 445.77 233.68 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 49a573ea-531b-4831-ba54-7e450c6ac316) + ) + (label "i1" (at 391.16 445.77 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 49ae8a06-acd9-4dab-805c-152dc76cc1b2) + ) + (label "ni10" (at 532.13 327.66 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4a377876-ac62-44d9-803d-7435b861bcfa) + ) + (label "i2" (at 533.4 281.94 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4afe417a-d6f4-4b46-a6f6-c79d86b2ea7f) + ) + (label "i7" (at 532.13 74.93 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4b236fec-0f28-4d17-9b43-34bc9a8ed636) + ) + (label "__ni19" (at 525.78 613.41 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4b2a1c11-3145-4f18-938c-3d8fdbbebde1) + ) + (label "i7" (at 439.42 518.16 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4bc702c6-3369-43dd-b7c2-572052b6bbe1) + ) + (label "i12" (at 367.03 199.39 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4c2576fd-d9c2-4661-9ebb-a1ecb2d8ff5d) + ) + (label "i0" (at 445.77 279.4 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4ccdcefe-3453-487b-9fc2-2a3706baeccb) + ) + (label "i9" (at 439.9155 561.34 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4dc8f489-030c-4407-8e14-32740e3695e1) + ) + (label "ni0" (at 415.29 48.26 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4dda5987-7f13-4085-ac37-ddaca5df01e0) + ) + (label "i5" (at 444.5 95.25 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4e1e4c60-6493-4846-bf43-503ca5e0da7a) + ) + (label "i6" (at 532.13 63.5 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4e781104-ce17-46e7-8933-3108bfb369da) + ) + (label "i14" (at 527.05 543.56 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 4f77450f-c5cf-4e3b-96e1-3f73f7747c60) + ) + (label "clk" (at 712.47 359.41 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 50c2f267-93cb-4034-b9a0-72ff5bb3f9ea) + ) + (label "ni2" (at 416.56 67.31 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 50faeb94-ffb8-49f1-b766-b610ace037c8) + ) + (label "ni13" (at 416.56 171.45 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 51524643-357e-480e-b2d8-1537345740d5) + ) + (label "i10" (at 487.68 530.86 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 516914e1-dbfa-4be9-8317-8832716dd021) + ) + (label "set" (at 731.52 332.74 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5184c04e-171a-4752-b1ff-3925630bc4ea) + ) + (label "__ni17" (at 410.21 598.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 54ce3522-0f8a-4030-9f99-f8a326726f9a) + ) + (label "i0" (at 439.42 458.47 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 54e56c47-347f-44f6-9ada-8eebca456577) + ) + (label "ni3" (at 444.5 60.96 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 559c3cbb-065e-417d-afdc-d81efccefb87) + ) + (label "i6" (at 487.68 485.14 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 55cd3cc6-5ca6-45b0-bb66-4566bf8f5b9b) + ) + (label "_ni0" (at 438.15 435.61 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 560f850b-b2b9-4c35-9076-f4d40c91173b) + ) + (label "ni11" (at 416.56 152.4 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5765582e-26cb-4e51-9d01-d5df1c455678) + ) + (label "i11" (at 439.42 759.46 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5839dd76-6ea5-4950-b027-f60402b05f57) + ) + (label "i3" (at 397.51 76.2 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 59b87d4c-0c4c-49ea-9e83-f74e601d00b2) + ) + (label "set" (at 725.17 721.36 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 59cb6a0a-4b2b-4dd3-876b-8afa59faac2c) + ) + (label "reset" (at 731.52 368.3 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 59f73475-c1d1-49c0-9832-908603c55a4b) + ) + (label "i17" (at 439.42 645.16 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5c061df9-4315-4ae1-bf28-485e8d83cf14) + ) + (label "__ni12" (at 488.95 749.3 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5d67d1eb-aa86-42e9-8763-4399e35a0a24) + ) + (label "i9" (at 367.03 191.77 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5db03547-55e1-416b-afa5-332ebf32f11b) + ) + (label "i19" (at 397.51 228.6 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5e921ed4-b667-4076-b1d8-9cc986758816) + ) + (label "set" (at 725.17 427.99 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5f5cf540-1672-4319-9692-64ef9497da28) + ) + (label "__ni18" (at 410.21 608.33 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 5f968e8f-26f4-45f5-bca9-89d199cfcb1a) + ) + (label "i10" (at 445.77 359.41 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 60183798-8c84-404d-8849-b100ca7ca0c2) + ) + (label "clk" (at 706.12 601.98 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 609a704a-7eca-4b54-8ebb-fcc204cf1687) + ) + (label "ni2" (at 495.3 39.37 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 60c4d323-8335-4671-9aac-871630b7c5da) + ) + (label "i15" (at 525.78 750.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 60cb173a-2ea9-45ed-98a8-017c02d909bd) + ) + (label "ni12" (at 495.3 360.68 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 61d80deb-e4e8-47b2-a29f-2f0f46426526) + ) + (label "i8" (at 525.78 474.98 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 62211bac-d671-4ac6-8365-5d53aa39551c) + ) + (label "__ni16" (at 439.42 633.73 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 62654dd1-f4b1-4a9c-89b2-2bdaf37709d7) + ) + (label "__ni12" (at 410.21 551.18 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 626a522b-7407-4f2e-ada0-bf07992c69b3) + ) + (label "i1" (at 438.15 447.04 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 63080a6f-9bcc-43ff-b561-7f7ca7eb5ac0) + ) + (label "_ni9" (at 439.42 572.77 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 63f09830-b9ab-4fae-a27a-a5352d3f7efd) + ) + (label "i16" (at 532.13 177.8 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 640b0ed0-fd88-4b8f-a558-702d05f684e3) + ) + (label "i9" (at 533.4 316.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 64420798-0cb4-4c86-bca3-6f24e272ccc2) + ) + (label "__ni13" (at 439.42 619.76 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 664fa146-eb74-4456-8c17-31bd7baa8caa) + ) + (label "ni5" (at 445.77 336.55 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 66b7c963-0115-42b0-9f10-ebc1efdacc0f) + ) + (label "__ni12" (at 525.78 739.14 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 67677823-78b2-4ed1-aade-17f58132b0ea) + ) + (label "i8" (at 445.77 140.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 68b61981-02c4-4357-99f8-072ed8abc665) + ) + (label "i17" (at 397.51 209.55 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6904e243-f975-485b-a2cc-d53ed4d52917) + ) + (label "ni3" (at 416.56 76.2 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 69d050d0-41b3-470e-8a5c-ea70e6b6150d) + ) + (label "i7" (at 495.3 326.39 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6a4d7e84-c31b-4ef9-8a68-3492bc59be65) + ) + (label "ni4" (at 444.5 72.39 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6b6e3a06-ca7f-41d4-aa66-d950d1a4c827) + ) + (label "ni18" (at 416.56 219.71 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6d0fe166-2203-4e19-92a0-c50011d50d16) + ) + (label "set" (at 725.17 525.78 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6daf520b-b3a2-42e4-a6ac-7231ffc49e51) + ) + (label "i14" (at 533.4 154.94 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6fdd3cc2-cbf2-46a1-9868-c666a2445196) + ) + (label "reset" (at 725.17 561.34 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 71c0412f-5826-4cc7-b4eb-c53662fe11ae) + ) + (label "i16" (at 397.51 200.66 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 71c17e83-6146-4993-85f3-7e5c9b0521fd) + ) + (label "i18" (at 439.42 676.91 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 71e89745-9b44-4460-b98b-b02f973d174c) + ) + (label "ni9" (at 532.13 97.79 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 72a867a6-7be2-44ec-9394-02de4306893c) + ) + (label "i16" (at 391.16 589.28 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7323ad1f-02a0-4dd5-94dd-b52e9c2a64e4) + ) + (label "i10" (at 439.42 779.78 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 73ec23e3-9949-43dc-b5b9-20ca4f06ae0f) + ) + (label "i3" (at 532.13 40.64 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7430c1da-6d24-4cd9-b1e4-77c9ec1cb549) + ) + (label "i11" (at 487.68 542.29 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 748bbe64-2b6d-4136-8441-5d5d858fabdb) + ) + (label "i1" (at 445.77 38.1 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7536e6d0-8bae-4073-890a-96516426e1b1) + ) + (label "i3" (at 439.42 734.06 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 75dd6dbc-b77f-491d-8d8b-21587feb056d) + ) + (label "i6" (at 439.42 506.73 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7696a0ac-5286-4191-9216-e76e59432913) + ) + (label "i18" (at 532.13 212.09 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 78449b31-478e-4ed4-b2ac-00b2011ba8bc) + ) + (label "i15" (at 397.51 190.5 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7844a6fb-7c50-41b5-93bb-391a52ac99d4) + ) + (label "reset" (at 725.17 806.45 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7892e64c-a0c5-4c99-92f8-afc46eacc5d6) + ) + (label "ni8" (at 445.77 368.3 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 78c8df6c-277c-4202-b032-e1a0cbc1ced9) + ) + (label "_ni0" (at 487.68 646.43 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 79963e3d-3cbd-4c71-b32f-c50791e8c85e) + ) + (label "i6" (at 445.77 118.11 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 79cff523-55e4-4285-84f9-b9c6d6048fdc) + ) + (label "ni8" (at 416.56 124.46 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7a380b91-4bba-424a-8b79-f54d2aaa24bd) + ) + (label "i4" (at 439.42 702.31 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7a608949-c2d1-4f39-88ae-f6ad694bffb8) + ) + (label "i9" (at 446.2655 172.72 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7b24b9e5-5aec-4971-90a2-f58b3de3f201) + ) + (label "i11" (at 445.77 175.26 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7c9ae112-cf0b-419d-87e4-c77002968002) + ) + (label "_ni9" (at 488.95 737.87 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7d7ea43b-eabf-4073-9ddf-62c8280417c6) + ) + (label "i15" (at 367.03 207.01 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7d9d7ad6-2c32-4fa9-ae18-6408d677539a) + ) + (label "i14" (at 494.03 187.96 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7e2ff740-5852-4376-b7ff-2f489e0c9d9c) + ) + (label "clk" (at 712.47 163.83 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7ea61b2d-4afe-4027-81ee-a8d70d2bb386) + ) + (label "i4" (at 490.22 439.42 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7f63f573-fd87-4d4d-bee3-05c5c8fa87f4) + ) + (label "ni16" (at 532.13 373.38 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 7fa1400a-d0cc-4861-91f4-3d4a21cde900) + ) + (label "i6" (at 494.03 96.52 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 80fc68b5-2014-46e0-b512-f4905a12130b) + ) + (label "ni6" (at 416.56 105.41 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8178951d-5e67-4c39-ab5b-05ab4fce0075) + ) + (label "clk" (at 706.12 748.03 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 81c7680d-bdac-4fd1-a518-8a037576623e) + ) + (label "i17" (at 532.13 384.81 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 81c784a8-8b0f-47a9-8f56-f166ca40159f) + ) + (label "i5" (at 439.42 515.62 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 829c716c-524e-41fe-ac5e-97b487d1749b) + ) + (label "clk" (at 368.3 240.03 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 831e7d2b-284d-4bfa-8895-fa4b7d87cbc1) + ) + (label "i17" (at 445.77 265.43 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 83f47ac3-38f6-4a53-9412-ea8957c553fd) + ) + (label "i2" (at 488.95 669.29 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8456b0dc-bd13-4a00-bfa5-c9fa630f8a99) + ) + (label "i3" (at 367.03 167.64 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 849113a7-8a36-428d-b59a-ee52c92410d8) + ) + (label "i2" (at 391.16 455.93 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 85d77a44-2f90-4f79-9d80-7fb3ba2e119c) + ) + (label "i0" (at 436.88 424.18 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 85f05f15-66e2-478b-b7d3-a6e90ba7d48a) + ) + (label "i7" (at 525.78 463.55 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8696703e-69c8-4a15-9f22-5e356b9a5939) + ) + (label "_ni6" (at 410.21 494.03 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 86b01314-defe-415f-8932-07d60d0b1330) + ) + (label "ni5" (at 532.13 52.07 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 87b57054-82c4-4b5e-8630-e317b8c6542e) + ) + (label "ni9" (at 494.03 130.81 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 88d5f256-08c3-405b-af43-b74a4a903412) + ) + (label "set" (at 731.52 284.48 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 891bf5a6-7300-4b3b-a0b7-2f10da4e310d) + ) + (label "i4" (at 525.78 636.27 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 895c3b5f-1515-454e-ad42-0ef1fcdb30f0) + ) + (label "i12" (at 439.42 782.32 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 89c5af66-a077-4648-8538-7c44f5357f4b) + ) + (label "i0" (at 445.77 69.85 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8b2f4e21-98d5-47b4-9672-266b9c2d1d92) + ) + (label "ni16" (at 416.56 200.66 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8b5b7821-9be8-4390-b0ab-f79241fc33a7) + ) + (label "_ni7" (at 410.21 502.92 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8b820905-b8fb-46b4-8556-e6c97e90bd5f) + ) + (label "i12" (at 445.77 393.7 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8bd3c6a4-6ba3-4582-8b00-9f8478ac3c08) + ) + (label "__ni12" (at 438.15 586.74 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8c564239-8ab3-4cc9-834a-f66969955605) + ) + (label "i7" (at 391.16 502.92 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8ca2f9a4-5c1b-41c1-ba46-42724ef08183) + ) + (label "i6" (at 445.77 149.86 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8cd198b2-26a2-4c2e-8515-e9a2a06e036c) + ) + (label "i5" (at 495.3 62.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8d34da48-e1e7-4ed0-86e4-2e279e531a6b) + ) + (label "_ni0" (at 439.42 679.45 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8de95485-8e9e-40b6-aa33-0ba2e241d987) + ) + (label "_ni5" (at 525.78 647.7 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 8eb64c69-4bc4-4b7a-8bcd-20b5739930c1) + ) + (label "set" (at 368.3 242.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9032672a-6fd7-408e-9c39-d7cb7815356c) + ) + (label "i19" (at 487.68 635 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 919520d2-abf6-4be8-9ab8-596f493d855a) + ) + (label "i10" (at 439.42 748.03 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 91a94da3-5021-4dfd-b5ed-8f0481d1ca78) + ) + (label "i10" (at 397.51 143.51 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 925ded00-05b9-4c2d-8cff-fd76bc34ae09) + ) + (label "reset" (at 731.52 222.25 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9380b619-2d51-45e2-88d4-9f143b1d9fc5) + ) + (label "i12" (at 439.42 575.31 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 943b1805-1c17-4ae7-8034-53d8c4830b95) + ) + (label "ni7" (at 416.56 114.3 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 96a37334-b712-412a-a0fe-526a691afc57) + ) + (label "i7" (at 397.51 114.3 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9a2deb51-ebcd-4923-92b9-3fd7c84e6845) + ) + (label "i10" (at 525.78 497.84 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9a8f4f65-d13d-456f-9291-674d4936d797) + ) + (label "ni12" (at 416.56 162.56 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9afc5d2a-02a8-4329-8869-2c00c8adcce4) + ) + (label "i5" (at 488.95 450.85 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9b86c4d9-a0ce-4e6a-9736-8c8220b80272) + ) + (label "i13" (at 439.42 598.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9c98485f-9f2c-403b-951c-88120ddacaa8) + ) + (label "i0" (at 389.89 436.88 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9d1cdf52-b1af-4d2d-8304-1ea02950707b) + ) + (label "ni17" (at 494.03 223.52 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9dbc07a7-4a70-4c67-b96f-24e8615f9805) + ) + (label "clk" (at 706.12 699.77 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9dd0ee82-9880-49ec-bdfa-a3721be27a72) + ) + (label "i4" (at 391.16 474.98 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9e295360-dbe6-4140-9e4e-790aa6756329) + ) + (label "_ni8" (at 439.42 756.92 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9e3bb3a8-6c3e-47c1-80d4-7ed1b284bf29) + ) + (label "i3" (at 391.16 464.82 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9ebc926d-2bbb-44a1-a329-c07209b2d1e9) + ) + (label "ni5" (at 416.56 95.25 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9f637bcb-1cdb-440c-9eeb-15edbbe5834e) + ) + (label "i7" (at 367.03 177.8 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a03c3af6-f188-40e2-b16e-943f34990d1a) + ) + (label "set" (at 725.17 477.52 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a18f77ef-f0c0-418c-a1d6-b24cf23823a7) + ) + (label "ni4" (at 494.03 85.09 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a20be24d-8979-4755-84a4-5edc8b65804a) + ) + (label "i0" (at 439.42 668.02 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a230abed-352e-44d5-a85c-c31a0a0837b3) + ) + (label "ni17" (at 445.77 276.86 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a269667f-77a8-4398-99b6-c8c07383602d) + ) + (label "i11" (at 525.78 727.71 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a271590f-24d2-4d24-a6e0-928cd04caf2f) + ) + (label "i19" (at 439.42 656.59 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a31257e7-6725-4e49-b5f8-d320515d7da3) + ) + (label "i14" (at 367.03 204.47 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a36f36d7-e15a-4f25-872a-319f9fe7dc44) + ) + (label "i11" (at 494.03 153.67 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a42e25cb-4a8e-4fc0-b44a-304d4febe987) + ) + (label "i12" (at 532.13 132.08 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a5282e81-4471-4cb5-91c2-f999a8637262) + ) + (label "__ni17" (at 487.68 612.14 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a58244dc-5793-4544-9d0b-475963a399eb) + ) + (label "clk" (at 706.12 504.19 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a5e847b4-c965-454d-8901-87a8be57fc18) + ) + (label "i6" (at 532.13 200.66 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a5f79ec8-7ae8-4bb0-8c9b-a25b54195865) + ) + (label "i2" (at 439.42 722.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a8011364-fe8c-4155-a832-15206982c792) + ) + (label "_ni1" (at 488.95 657.86 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a8bbfe7b-1889-4f6a-9e5e-4f0261df0d14) + ) + (label "_ni1" (at 525.78 659.13 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a9002fd5-30b6-4731-b3a9-62883dcc0fce) + ) + (label "set" (at 731.52 39.37 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a928fe69-0023-444f-9e85-69f524cf6b75) + ) + (label "ni17" (at 532.13 189.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a96b6830-0729-47b7-a7ac-14aca2cff6e2) + ) + (label "i18" (at 367.03 223.52 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a9ccabd1-daee-412b-bc72-a09044de7bac) + ) + (label "i18" (at 494.03 234.95 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid aa6088be-1897-4402-bc53-ca979c7a135c) + ) + (label "i14" (at 495.3 383.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ab9581be-429c-438f-9b28-018d2b0d7aa1) + ) + (label "reset" (at 368.3 245.11 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ac9a98e9-c728-4f57-89c5-640bfad01a10) + ) + (label "_ni4" (at 487.68 473.71 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ad5dd27b-1e73-4177-ae6d-31dc215d26b4) + ) + (label "i2" (at 527.05 670.56 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ad966b79-ce4a-41fc-b091-3096ca826e4c) + ) + (label "i1" (at 445.77 302.26 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid adc91177-6396-48ef-8ff1-166f28a4df6a) + ) + (label "ni16" (at 494.03 210.82 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ae04bab6-48e6-4c79-921e-356f91c9af67) + ) + (label "reset" (at 725.17 610.87 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ae600e71-bc01-4f90-ad48-7eda2c6769e2) + ) + (label "__ni17" (at 439.42 665.48 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b082453e-d21b-45ec-afce-f19bd837eed3) + ) + (label "_ni5" (at 525.78 440.69 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b0b297a5-3ca6-47c8-8909-90522293707e) + ) + (label "ni13" (at 445.77 231.14 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b0c9c48c-bacf-4547-979c-d162fa69d06d) + ) + (label "ni1" (at 495.3 269.24 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b0df357a-557e-4bde-8aeb-11e18f3e37a6) + ) + (label "i15" (at 445.77 254 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b161f2a9-d678-4f5f-a70e-c37c71748346) + ) + (label "i13" (at 488.95 760.73 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b1d3c979-6e8c-478d-a49d-d0f12e64be00) + ) + (label "i18" (at 525.78 600.71 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b2a6b9d5-e8c3-4a8a-acb9-8fde869ab5b6) + ) + (label "i11" (at 532.13 339.09 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b612af9e-cf08-4fe5-ab60-d206020d7850) + ) + (label "clk" (at 712.47 115.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b62420ab-cd11-472b-86b5-c775db6313b3) + ) + (label "_ni9" (at 487.68 519.43 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b78461f4-7c7a-4b8a-971c-28a90b28fc56) + ) + (label "i7" (at 494.03 107.95 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b96abdaa-99e5-408a-aa97-c6db50cf6615) + ) + (label "ni1" (at 445.77 322.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ba04ddcc-ec23-4dab-bf16-a28d3e1def12) + ) + (label "i2" (at 445.77 334.01 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bc192dfc-5383-42e7-b3b0-64655180925c) + ) + (label "ni17" (at 416.56 209.55 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bc2ad14f-f52f-4668-af60-ceb20c8be33b) + ) + (label "ni0" (at 494.03 257.81 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bc380ce3-5518-44a6-a0bb-2b955122c8a2) + ) + (label "__ni15" (at 488.95 783.59 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bc3b8e04-c2a2-4169-9c88-d09ff7835d9f) + ) + (label "i1" (at 439.42 690.88 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bc6c6686-0458-47c5-ad3a-9e97c13ddbab) + ) + (label "reset" (at 731.52 320.04 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bec7cc97-6fd6-48c7-bca9-1ffb0347bbf6) + ) + (label "i17" (at 525.78 773.43 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bf4ff517-8bf6-42d1-9156-b2279f5fd23d) + ) + (label "ni0" (at 445.77 290.83 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bfb26678-befc-4618-bd80-4866e1efb166) + ) + (label "clk" (at 712.47 311.15 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bfbce3b3-3219-4588-9e5f-524a777c29fb) + ) + (label "i16" (at 525.78 566.42 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bfc05595-2bf5-4d59-9549-c54c7f2f05ed) + ) + (label "i13" (at 445.77 209.55 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid bff110f9-b234-4dfe-a7fa-6c5511e86024) + ) + (label "i6" (at 445.77 347.98 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c0136079-d057-4938-a0d1-1660102dc6cc) + ) + (label "i8" (at 391.16 513.08 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c147315a-f1fd-4e1c-a95f-d53d72762dc2) + ) + (label "i6" (at 525.78 452.12 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c1d9a533-a446-4b90-b884-799bb95e1ba2) + ) + (label "ni15" (at 416.56 190.5 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c33f43e0-a3fc-4cb5-a400-e7c472a2523f) + ) + (label "i11" (at 445.77 370.84 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c3c3a4af-b2b8-45f6-91fc-e3483d280425) + ) + (label "i7" (at 488.95 715.01 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c3d6b3e2-045d-4754-9929-db6b973c45cd) + ) + (label "_ni9" (at 410.21 521.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c3e25439-0cb3-45d9-b4d1-2304153002d7) + ) + (label "i6" (at 439.42 736.6 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c4841401-4a43-41ad-8551-0b1a973fa922) + ) + (label "_ni4" (at 411.48 474.98 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c4eb34e2-68fa-4714-a096-33125c9ba61d) + ) + (label "ni8" (at 445.77 152.4 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c78c71b2-973f-46b3-9874-0e0e3f6b070f) + ) + (label "i16" (at 439.42 622.3 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c88bf41f-0b1c-4ca4-b081-b857180cba82) + ) + (label "_ni5" (at 439.42 725.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c8f84700-0a43-4ddb-ad88-014b6116ac4a) + ) + (label "i10" (at 391.16 532.13 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c97ac444-71cb-43e9-b6de-978dc458a12a) + ) + (label "i9" (at 527.05 704.85 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c9a72b7e-50f1-44e9-b1fa-3f4cd57a0ff9) + ) + (label "i14" (at 487.68 576.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c9d30bd4-82b5-4810-9183-e09a875296e9) + ) + (label "i3" (at 445.77 345.44 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ca3a91ee-0116-4a8a-897b-fc5d8b7c67e4) + ) + (label "ni7" (at 533.4 304.8 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid cb1420fa-d4f3-44e6-b52f-3dc8104f1cea) + ) + (label "i9" (at 391.16 521.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid cbdf9245-a57f-4b04-8e47-e4032165d51d) + ) + (label "i13" (at 495.3 372.11 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid cc99357f-f32b-4e84-abbb-6125bb4bb7c4) + ) + (label "ni11" (at 532.13 120.65 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid cd950924-3145-48e1-bbf0-ee24c7336792) + ) + (label "ni9" (at 495.3 349.25 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ce2c8106-51bf-4df4-840a-47f8df9c2e4a) + ) + (label "i19" (at 367.03 226.06 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d036c46e-dd4c-4ce6-a631-c399f07b165b) + ) + (label "__ni19" (at 410.21 617.22 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d0b6ab77-4c07-4f03-8407-9f7abc60cead) + ) + (label "_ni5" (at 438.9997 527.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d2b44b83-8b14-4331-8226-58acb5f1e99a) + ) + (label "i5" (at 445.77 325.12 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d39c79ea-5732-4026-bb54-c0cf1f939d83) + ) + (label "i10" (at 445.77 391.16 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d3e906bb-08e8-49bd-b7ad-0a724f6bd7d8) + ) + (label "ni1" (at 416.56 57.15 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d586f9fa-1dfe-4860-b5a7-206e79c0a8f4) + ) + (label "i2" (at 397.51 67.31 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d5de3315-4e55-4607-8a63-321b1b90cc32) + ) + (label "reset" (at 731.52 124.46 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d734b93c-dcb7-4671-9cd5-f959989cc6f8) + ) + (label "ni6" (at 494.03 73.66 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d7efdf3a-4805-48a6-8adb-cb5874b689db) + ) + (label "__ni11" (at 525.78 509.27 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d8a7dc54-95c6-44e1-9e8f-7723d2ec97da) + ) + (label "i1" (at 397.51 57.15 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid d95d2ed4-1bbb-40f7-9fa8-460d1351a4e3) + ) + (label "i0" (at 367.03 160.02 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid da893ecf-ecb4-480e-aae3-bb45caca2abc) + ) + (label "i19" (at 494.03 246.38 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid db5a5fa5-724a-4b75-b476-6db79f92048c) + ) + (label "_ni1" (at 410.21 445.77 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid db668050-8b8f-463b-96cc-c149d54532af) + ) + (label "set" (at 731.52 186.69 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid dbb7f91f-01e7-4044-8225-14e19f0e9108) + ) + (label "i14" (at 488.95 772.16 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid dc3742ce-5fd6-47aa-a11d-c041253b04c6) + ) + (label "i1" (at 444.5 58.42 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ddc169bb-7bfc-4131-8022-defc1ea120d3) + ) + (label "ni13" (at 494.03 176.53 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid dde0e03e-aec8-430b-be87-d7e72ab8cf53) + ) + (label "_ni8" (at 487.68 508 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid dde171c1-3971-437b-b9bc-9d460a651ad7) + ) + (label "i8" (at 488.95 726.44 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid de1dc93d-5eea-4b53-bb6c-076f83747494) + ) + (label "__ni11" (at 410.21 541.02 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid de60fb27-c8e2-469f-9b15-f59c3bf2ae8f) + ) + (label "i5" (at 391.16 483.87 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid de9528c7-5a40-4ded-85c8-04d709306d97) + ) + (label "_ni9" (at 525.78 486.41 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e03397f9-9a38-45d2-8a6c-aae6c9ce3b12) + ) + (label "i4" (at 532.13 247.65 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e0a793ab-e212-47c8-a501-30691d8e1c00) + ) + (label "ni12" (at 532.13 350.52 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e139f6a3-0bc1-4299-91d8-85ba9be7dc71) + ) + (label "i15" (at 487.68 588.01 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e2bcc66a-f1b3-45b4-8a05-4711ad81d835) + ) + (label "__ni13" (at 487.68 565.15 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e327aecb-bd0d-4539-848f-2f985fc96930) + ) + (label "i19" (at 391.16 617.22 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e331d73b-5c29-4ab6-931a-eceada1f032c) + ) + (label "i2" (at 445.546 81.28 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e40775fb-5771-428a-a956-d0cb6d15e096) + ) + (label "i13" (at 397.51 171.45 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e46382cc-3eeb-4b78-9e0a-c3b9dce51932) + ) + (label "i17" (at 391.16 598.17 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e4a56ab9-1826-451f-b9a8-3e5ba02fc48f) + ) + (label "_ni8" (at 439.42 541.02 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e62ad80c-1884-4289-a476-84960dc0ccdd) + ) + (label "_ni6" (at 490.22 703.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e62e19af-c217-42a1-8653-e6aaae9bfa03) + ) + (label "i15" (at 532.13 361.95 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e667ab89-4bb2-4e5d-89b4-e6793b481cb1) + ) + (label "i5" (at 367.03 172.72 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e7430f9d-c2b4-40f4-bdb5-b806b1b99d0b) + ) + (label "i17" (at 445.77 256.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e7e6c8c7-769e-41a5-ace7-1b84cdde6219) + ) + (label "i15" (at 494.03 199.39 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e9be0df1-4f0c-4178-923f-18334bbd3a51) + ) + (label "_ni0" (at 408.94 436.88 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e9c8caac-0f4a-49f1-8f8f-abaa83b04a7b) + ) + (label "i12" (at 445.77 186.69 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid e9eb5a4b-8852-42d5-90ee-95036cfc6633) + ) + (label "i10" (at 444.5 195.58 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ea27c200-e523-4f55-a6cc-fa37aaedc9cf) + ) + (label "ni18" (at 532.13 396.24 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid eaaf71b3-6d02-40bb-a6cc-4c16ec698a00) + ) + (label "i4" (at 439.42 504.19 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ebeb8dbf-0a29-4e3f-8f08-1210d67d314b) + ) + (label "i14" (at 391.16 570.23 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ec4e26fc-07f7-40e9-83b1-14fa48ebf710) + ) + (label "clk" (at 706.12 797.56 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ecafb106-4353-449b-8973-3dbc335b6222) + ) + (label "ni6" (at 496.57 314.96 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ecd28696-d869-4d83-8f41-343a211a85dc) + ) + (label "clk" (at 706.12 650.24 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ecd2966a-ce4c-4f3f-9572-118867dff092) + ) + (label "i13" (at 367.03 201.93 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ed33278f-786e-4343-8823-b6786705f9db) + ) + (label "i15" (at 391.16 579.12 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ed379085-63b0-43da-99d9-ce7c19a8ab66) + ) + (label "i1" (at 445.77 311.15 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ef8c594d-a944-480b-a7ea-033d22ccc24b) + ) + (label "ni9" (at 445.77 184.15 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f072349b-0d59-4760-b5f4-a220cf857c1b) + ) + (label "__ni12" (at 487.68 553.72 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f0b28e17-0f84-4f8d-8548-0b098986d6d0) + ) + (label "i19" (at 445.77 267.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f0c99328-524d-4fad-9f26-ed94d33bbf8c) + ) + (label "__ni15" (at 525.78 554.99 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f10d262f-8f11-4a7f-a629-82e2a32da7e2) + ) + (label "i18" (at 487.68 623.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f17ec99a-109d-4cca-a400-4148d6512b53) + ) + (label "ni15" (at 495.3 394.97 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f1ac4152-0c9c-4ed3-84d3-0203ae5d6c7d) + ) + (label "set" (at 725.17 575.31 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f1d6691c-c8e4-4dae-8a7c-65dc75becf9d) + ) + (label "i14" (at 445.77 242.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f25523fa-a277-4872-94a6-2cb2054a1e7a) + ) + (label "i0" (at 525.78 624.84 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f4846c9a-d65a-4507-8aa1-5877bd9d9498) + ) + (label "i11" (at 445.77 207.01 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f609affb-3fb4-4827-8676-8d07b6ab06e8) + ) + (label "i2" (at 495.3 280.67 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f701d168-93b0-42c5-a9a4-dcdee7ea26f3) + ) + (label "i2" (at 438.15 438.15 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f75b65bf-2c25-44b7-8e06-af94ad9e5ee9) + ) + (label "i3" (at 445.77 83.82 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f8898fd5-462c-4088-be1e-d06d6a90376c) + ) + (label "i8" (at 495.3 337.82 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f8c53bc5-ee1f-478c-b662-e2c3dd3465c4) + ) + (label "i6" (at 439.42 538.48 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f9f808df-88a9-4575-9000-95c9448127c7) + ) + (label "clk" (at 712.47 261.62 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fa398ecd-8e8e-4cdd-877b-bb91f471939e) + ) + (label "i13" (at 445.77 219.71 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fad9e1c9-8201-493b-bfdb-a8b03b1e2eda) + ) + (label "i10" (at 367.03 194.31 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fbd6ae60-287c-477b-8090-789c688fbea6) + ) + (label "i7" (at 445.77 129.54 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fbf51d52-9640-4510-95dc-02068f50180a) + ) + (label "i5" (at 397.51 95.25 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fc376be1-ca64-4d7d-9a3d-c4fd48e39a39) + ) + (label "i19" (at 445.77 299.72 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fc8d538d-d730-46e7-8852-b42a3a08e112) + ) + (label "i7" (at 487.68 496.57 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fd2ec0c1-d548-4977-92a6-90073bab28db) + ) + (label "i18" (at 445.77 288.29 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid fe25bdb0-d366-4dd3-ba72-9d9d6858f644) + ) + (label "i3" (at 525.78 429.26 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid feeeabc0-dd8a-4f23-9595-5b238540ea85) + ) + (label "i9" (at 439.42 768.35 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ff49ddee-9396-4c7b-9f7e-03c483c81579) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 233.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 00d67e93-aa54-4664-9fb2-e24aa7e95452) + (property "Reference" "U91" (id 0) (at 459.74 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e4c19e9a-e14b-4ec9-8d08-c511c0bc9e53)) + (pin "2" (uuid 5177f572-40e4-4940-b72b-f49f5e740c12)) + (pin "3" (uuid 82c18407-80c5-4c8f-8f6c-1af555c14c71)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 267.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 00dfad35-03d1-4d45-b68f-8bd56547d364) + (property "Reference" "U94" (id 0) (at 459.74 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 262.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 267.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 267.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fbc57a9b-9036-44c4-a06a-11004257243a)) + (pin "2" (uuid a8f43b6a-44bb-4e7c-bf5b-c9df3cf834b3)) + (pin "3" (uuid 28ea19e4-8dae-4d91-98ba-ecad0b04312b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 560.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0159075b-8d72-4796-a3c5-7d9edcb8b82a) + (property "Reference" "U15" (id 0) (at 400.05 553.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 557.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 561.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 561.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 933cb028-f255-4f50-94ff-9ccacb6c9a34)) + (pin "2" (uuid 4f34d119-c855-4a16-91d5-d3440fa1bad4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 165.1 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0173d655-51b5-462f-9039-46f296d8a0c2) + (property "Reference" "U1" (id 0) (at 360.045 160.02 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 162.56 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c3e98538-a338-4981-8db0-07f9411f5804)) + (pin "2" (uuid 8543cbb3-9e34-4a54-8e8e-550742a8178b)) + (pin "3" (uuid 16af8e75-208b-46e2-9b6e-b98e41c4079e)) + (pin "4" (uuid 376c7c44-230d-4dc5-b89d-6099c9b616e8)) + (pin "5" (uuid 4a8e5f71-37d1-4100-b308-9a3d09f62301)) + (pin "6" (uuid dd768107-4110-4357-9b18-d8b3e1347438)) + (pin "7" (uuid d2dad398-0496-40ee-a1d5-16a2faf4df65)) + (pin "8" (uuid 0b8f649c-6048-438c-a730-157a6644e9b5)) + (pin "9" (uuid fb9464e3-e904-461c-b8e6-408d26cf7c5c)) + (pin "10" (uuid a6d8eb17-fbf8-4247-b519-069057ea45fd)) + (pin "11" (uuid dfb14326-196a-4c11-b08f-787297b6151b)) + (pin "12" (uuid c4f4a034-5f6e-41dd-b5b1-5da91c20a3c4)) + (pin "13" (uuid f2945319-da27-47c9-a8b0-c64f0f188e7f)) + (pin "14" (uuid 2738fb17-f194-4654-aee6-0e0d9e9f722a)) + (pin "15" (uuid 243f68bb-1591-4c4e-b657-6b7c4f8236c5)) + (pin "16" (uuid f63801e9-87f5-4b01-a1eb-e488df6ed268)) + (pin "17" (uuid 966333d0-1165-4d44-907b-6bd1102cf860)) + (pin "18" (uuid b7c57f00-437b-485f-b0d4-07f313e61ec4)) + (pin "19" (uuid ce3380b1-074e-46e5-a324-aae4beb7a5fb)) + (pin "20" (uuid 5c38df7a-3541-413a-805a-408bc4308126)) + (pin "21" (uuid dee5c1c1-a65b-4158-a426-1b0361dc5e40)) + (pin "22" (uuid ec37f77c-3e9c-4fa6-8c99-7af6992867f6)) + (pin "23" (uuid 5cbd6db5-ae37-4f63-b26b-f9162f719915)) + (pin "24" (uuid c5d32aec-85a1-4e61-8af0-296c077e05df)) + (pin "25" (uuid 3b191157-8c51-45d3-9f57-55edc9372687)) + (pin "26" (uuid a07c1fa8-9f7d-43a0-857e-f4435946f4ca)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 617.22 567.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 01b71ce9-d0a5-4bd1-a46c-240946f71d3f) + (property "Reference" "U254" (id 0) (at 617.22 558.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 617.22 562.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 617.22 567.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 617.22 567.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fde13ee-00a2-4260-bcd1-07b6be48a8cf)) + (pin "2" (uuid 0f845334-1f84-407c-a31e-bd7f2428f1dd)) + (pin "3" (uuid 1b74c234-eaa1-4c8a-9845-5b309240754b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0230233a-88e6-484b-974c-265c03eb8691) + (property "Reference" "U144" (id 0) (at 509.27 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 54ba1838-6b63-43f3-baef-e6c428be6b81)) + (pin "2" (uuid 57ee6238-2fb2-48dd-bab2-825f3a184ae5)) + (pin "3" (uuid f5d5a75b-5a97-4655-a7d5-34edf7ee9191)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 613.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0255f7fb-0ab4-4de3-81de-193a6c0af1a8) + (property "Reference" "U186" (id 0) (at 541.02 604.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 608.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 613.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 613.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2f85d681-1a6a-450c-9931-4f6362d9ffb8)) + (pin "2" (uuid 1699c987-3338-47cc-88e6-9098ba9c26a7)) + (pin "3" (uuid 256c9757-5692-43b9-a9ec-dc32835b6d54)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 589.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 042e9b01-fcf3-496c-876e-85b6955ae0f1) + (property "Reference" "U18" (id 0) (at 400.05 582.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 586.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 590.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 590.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7531cb14-f569-4eff-98e7-89777bfcecf3)) + (pin "2" (uuid 8d30a959-5c3d-4a4c-9b4f-23e7d8553b31)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 199.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04c6688c-f1ef-4fac-b6ef-3f8041505a73) + (property "Reference" "U152" (id 0) (at 509.27 190.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f4337d4b-a33f-4e2a-9a08-d2af5b3278e0)) + (pin "2" (uuid 186c7608-b53f-4a0c-a7b0-9c4c8f181c6e)) + (pin "3" (uuid 71328168-bfdd-4228-a9bb-dc1f26090e72)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 393.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04cb9029-1a6d-4588-a3ab-f36a080655c0) + (property "Reference" "U105" (id 0) (at 459.74 384.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 388.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 393.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 393.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cf450a25-1e9a-4ce5-b8fd-42af22f33305)) + (pin "2" (uuid aefdf6b1-5f26-4b6c-9761-fdd15c03fd61)) + (pin "3" (uuid 730da78e-42ce-47f7-b054-5177b534b96b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 62.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 055ff0b6-84d1-4004-99b2-2ca2d99c51b2) + (property "Reference" "U140" (id 0) (at 509.27 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 57.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 62.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58f1813d-ad5b-4c71-b2a0-ca035cf30dba)) + (pin "2" (uuid 5d57a57c-9c78-46a6-adae-5125552ea5eb)) + (pin "3" (uuid ff45aaf4-c067-4a51-b8c1-9a453a4ea5f5)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 731.52 205.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 05b6e21a-6a9d-4460-8532-444ce1570914) + (property "Reference" "U309" (id 0) (at 733.5394 189.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 733.5394 193.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 731.52 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 731.52 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dfca80da-4713-4902-a43a-31c8b56aede7)) + (pin "2" (uuid 2e55e0f5-fea1-465b-8c93-f7d0fb29daea)) + (pin "3" (uuid 08c2187e-b074-4f3c-ac43-2f15438ee026)) + (pin "4" (uuid 043d8ec5-fb5b-4440-aae5-404385aef1f5)) + (pin "5" (uuid ee1097f8-2b0e-4faf-8b5b-73f05a3ce7af)) + (pin "6" (uuid d3ed796c-78f4-4331-907b-1adc47ebeb2c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 633.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06ff68e6-6a5d-4e01-8ef2-d721842f9e47) + (property "Reference" "U60" (id 0) (at 453.39 624.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 628.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 633.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 633.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ba2d2167-a98f-481f-b70b-1d8090190478)) + (pin "2" (uuid 51780e4b-fb22-4b05-a211-02d3422388ee)) + (pin "3" (uuid b3a9208a-82b3-4cac-965b-75c42716efb3)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 513.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 078d16cb-77f9-4abf-8f63-f789ddd7d40c) + (property "Reference" "U10" (id 0) (at 400.05 506.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 510.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 514.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 514.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 891a201b-4234-4089-bfe0-1a550da4d624)) + (pin "2" (uuid bb64f088-e746-4e29-85af-8dc6a05eeb3c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 08e1be81-20a6-4b8e-82d8-a2a589e00dba) + (property "Reference" "U143" (id 0) (at 509.27 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cd5deba1-059b-43f6-bfeb-f7f24d6b9729)) + (pin "2" (uuid e38d960e-edc2-4d1b-a48d-74331725e728)) + (pin "3" (uuid 95b8b2ee-ed85-4aab-8e2e-7c8c2db8e3a6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 162.56 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0ab31d77-3ab5-4516-b8c0-d2049893bcd9) + (property "Reference" "U1" (id 0) (at 360.045 157.48 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 160.02 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 162.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 68d93c73-e340-4ff4-bf6b-758bb2002b38)) + (pin "2" (uuid 744c462b-a1cd-4f6e-932f-7081223a40cf)) + (pin "3" (uuid ff5b1aab-460b-4777-b0e9-3e8f91266ec1)) + (pin "4" (uuid c845adbd-3c6a-4fb3-9a12-c216985d6ca6)) + (pin "5" (uuid 936a78a6-dd54-4d3f-84d2-76da35142fb6)) + (pin "6" (uuid f94c5cf9-b7e9-4242-98ff-ef9f3ca89b7b)) + (pin "7" (uuid 65a4eb0a-697b-403b-9111-b49f4c6cf7fd)) + (pin "8" (uuid 86637c5b-77e5-4938-8a29-d210376b5eb8)) + (pin "9" (uuid bd5c632b-0a6c-4f79-98d2-a6e4cbecc16d)) + (pin "10" (uuid 42205927-d15b-43f4-95bc-421aa74c2b75)) + (pin "11" (uuid b44c0bcb-af11-4478-bbc1-ff2c29390cc1)) + (pin "12" (uuid d76012fa-f5fc-494d-a926-ed46fd71d46e)) + (pin "13" (uuid 92cf5267-02ee-4b75-a031-20eb9b126e0a)) + (pin "14" (uuid ae157796-9fd6-4973-bb84-aca9931c1128)) + (pin "15" (uuid 683cff79-1604-4ac3-8cd8-9a53d7e10c7b)) + (pin "16" (uuid 3fef41e0-22ee-4928-acd5-038e37611b61)) + (pin "17" (uuid 29c16555-e6e1-4a17-b1e5-bc89a8013e1e)) + (pin "18" (uuid 1557b3df-5889-44e9-a2b8-378b32c96dcb)) + (pin "19" (uuid 41401619-88ae-460e-8595-e0ff3c25c947)) + (pin "20" (uuid eb410758-b848-4a59-a60c-49337cebb073)) + (pin "21" (uuid 4ade8f93-a2ea-4511-a3e9-c114c8a97982)) + (pin "22" (uuid b1455f86-85d6-4c57-b2d5-734f433376c1)) + (pin "23" (uuid a96b9ce7-e986-49d0-a148-33e02df03da9)) + (pin "24" (uuid 72af5f9d-3892-4645-881e-47ec2a8b5da1)) + (pin "25" (uuid 90dfcf79-d737-488c-83e2-cebf2fb8387b)) + (pin "26" (uuid 89c08c0b-fcb1-4466-8f06-a0a99c5b63cf)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 731.52 254 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0bf80858-2b58-472f-9a43-ca57514daa89) + (property "Reference" "U310" (id 0) (at 733.5394 237.49 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 733.5394 241.3 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 731.52 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 731.52 254 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e4d08ec7-0f03-4645-8be1-e175ecfb2229)) + (pin "2" (uuid 3420bee6-6452-4051-a1ee-f902309ef964)) + (pin "3" (uuid a349574e-5f71-4661-84c5-114d6156b676)) + (pin "4" (uuid 31e90768-6996-4c1d-83bc-1816b4e36e18)) + (pin "5" (uuid 1172e36e-a7e0-40cb-bf95-109cee16d235)) + (pin "6" (uuid a3bb68b0-573e-4e59-8320-1203675933c0)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 736.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0cca8987-05be-487c-94e9-eedf5edd9ee7) + (property "Reference" "U69" (id 0) (at 453.39 727.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 731.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 736.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 736.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e770cda-7b18-453c-a9ae-c6275cb2c957)) + (pin "2" (uuid 0a52b6c1-683b-4fe8-a9bc-56be4b6478ce)) + (pin "3" (uuid 4497666c-8573-4308-8da8-8e61cf2aba63)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 212.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0cf81fce-5a6a-425a-8f34-41efc2e8d49c) + (property "Reference" "U217" (id 0) (at 547.37 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5c85e21a-3682-4fe3-83f6-29265e7b5621)) + (pin "2" (uuid cb4bb311-34a2-4747-a0b3-9e15975a07fc)) + (pin "3" (uuid b6432352-191b-4a27-a0ff-2ac590217342)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 228.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0d708672-de3e-4277-9dd8-a9b0128d2edc) + (property "Reference" "U41" (id 0) (at 406.4 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 599668da-a4f0-4406-a3a1-df652f28dae8)) + (pin "2" (uuid 7d5954c5-459d-4a0e-9dd7-194b2e84831a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0ea0b6a8-f8a4-48c6-baa4-70d33105476b) + (property "Reference" "U33" (id 0) (at 406.4 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 62c09552-83e9-4a68-8b5f-fde8f434dd28)) + (pin "2" (uuid 6dc327d1-74d7-4b35-a965-c2f57e4c29b4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 445.77 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0ea769a2-c87a-47c3-9df6-e2324a1a3cce) + (property "Reference" "U3" (id 0) (at 400.05 439.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 443.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 447.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 447.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e622e275-35df-4963-a8ba-d53b7a54970f)) + (pin "2" (uuid 2da13a08-3628-4c70-b90b-7d218216304d)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 11b220b5-20eb-486e-8a2e-450957795f38) + (property "Reference" "U25" (id 0) (at 406.4 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c96b4b67-029c-4b27-bb7e-95dceb0b1112)) + (pin "2" (uuid a09f6add-c8bf-48ed-9080-46bbda0c2c4e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 52.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1275b0e1-41f3-4024-afd6-549588f6f975) + (property "Reference" "U203" (id 0) (at 547.37 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 46.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 68d5448e-f142-44d1-ac15-c91f34a570df)) + (pin "2" (uuid c50b58f2-5b2f-475e-ba4a-38be1a3c5ed9)) + (pin "3" (uuid 1b3845a8-e65f-4605-a6a1-cb4ce4b1635a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 563.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 127bcfb2-6a30-402e-b45d-ec82924326d8) + (property "Reference" "U54" (id 0) (at 453.39 554.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 558.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 563.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 563.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5e4aa44c-f99c-4630-9c4b-d8c755dc79de)) + (pin "2" (uuid b5f6e8bf-6682-4d82-a79f-f1c72a923760)) + (pin "3" (uuid 236932d1-0828-443d-a39a-82b840501a19)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 530.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13501569-9d9b-4150-b315-324d5abd94f3) + (property "Reference" "U115" (id 0) (at 502.92 521.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 525.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 530.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 530.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1d9faee7-5f34-40a1-bf7d-d732a53c8bf3)) + (pin "2" (uuid 622654a8-c7e7-49cb-8d00-ae1d5a90f58f)) + (pin "3" (uuid f7ddfe55-660c-4aea-88b4-93564add565c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13eaaf8b-01b3-40ad-982d-027d9596dc63) + (property "Reference" "U207" (id 0) (at 547.37 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6febb6aa-85a5-41a7-9f25-eb622cf6ad42)) + (pin "2" (uuid baab7ae8-3825-4f4a-bfcb-5e0d27811079)) + (pin "3" (uuid 46914429-a1e4-4e2f-af2b-2b2300574c9c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 750.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 14ac50c9-5a13-4518-a2b2-523f32814334) + (property "Reference" "U198" (id 0) (at 541.02 741.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 745.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 750.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 750.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8848a8c2-2cba-45fe-831d-e8ba785ef0ac)) + (pin "2" (uuid 0b753894-f3a4-42c5-8d3d-de16cff83cf1)) + (pin "3" (uuid 49929a43-1e68-455f-afdd-63ab90b0a930)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 656.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 152e4d1a-abee-4089-a78e-2e8dc01e44b5) + (property "Reference" "U62" (id 0) (at 453.39 647.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 651.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 656.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 656.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d3814d7e-ec39-4fe5-a276-c23f34da431c)) + (pin "2" (uuid debc9bd8-e498-41bf-8b2b-e092707889f5)) + (pin "3" (uuid 3517c360-dff0-4495-9733-08331418afe3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 236.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 15398aae-f670-4272-a40a-c1cce752266a) + (property "Reference" "U219" (id 0) (at 547.37 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 231.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d2a77e5-4456-4960-8ed0-3c6ff4963cd7)) + (pin "2" (uuid 82313813-72c7-41a6-a42e-bc471c3ed5cb)) + (pin "3" (uuid 99632d92-bcc1-4a3a-8fe2-21249ac7fe96)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 200.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1581e34b-155b-4cc4-9280-ef330efdd4cb) + (property "Reference" "U38" (id 0) (at 406.4 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 533d405e-184c-4bea-abcb-dd4212d7e036)) + (pin "2" (uuid 0a6bc142-36f6-4016-986a-37667ba4cd21)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 426.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 161a2931-5f6d-45ae-8b7c-22e2148bca35) + (property "Reference" "U42" (id 0) (at 453.39 417.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 421.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 426.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 426.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2212a5a1-d081-48d5-a666-431622a22f9b)) + (pin "2" (uuid 5ee4cd16-1bd1-460e-bafc-5594aa5d5c44)) + (pin "3" (uuid 6621297e-611c-4965-a463-d80ca2eb1f3d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 552.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1772081b-559c-4ff9-b19d-99f970a0be56) + (property "Reference" "U53" (id 0) (at 453.39 543.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 547.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 552.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 552.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a8e308b7-bf72-4f06-be37-8c448df391f7)) + (pin "2" (uuid e39b232e-d623-4ccb-988d-0515a4c8cef5)) + (pin "3" (uuid 1cc7a9a1-0531-4d98-a4f8-ea6221c45c6e)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 731.52 401.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17c5d928-33c3-4b35-b503-6682ebd0eae5) + (property "Reference" "U313" (id 0) (at 733.5394 384.81 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 733.5394 388.62 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 731.52 401.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 731.52 401.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c56611ae-6520-4285-9d5e-5a8e458e7da2)) + (pin "2" (uuid e24b4216-8776-4cb6-bb20-ccf330bf9e08)) + (pin "3" (uuid 995319e0-2e85-4ffa-8732-458981a618b1)) + (pin "4" (uuid 0e0580c2-6101-4b79-a5a2-5f302aecfbd5)) + (pin "5" (uuid 5215906c-f365-4136-8003-b145cd30ff68)) + (pin "6" (uuid 89a1d6b2-4c40-4fcc-bdce-d7e252c315bd)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 191.77 0) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1836a00c-64ea-4c14-9202-e6f367567ba6) + (property "Reference" "U1" (id 0) (at 360.045 186.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 189.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0edad6a2-f843-47e4-94db-ce7236ab65be)) + (pin "2" (uuid 79060f7f-559f-4eff-b654-1e7aaa0f4540)) + (pin "3" (uuid ab821803-420c-4757-8228-13f5c537051b)) + (pin "4" (uuid 1942750a-980b-4434-8c68-59c533e76a6c)) + (pin "5" (uuid 2a3ba931-43bb-45a3-a756-01ee1685ee1e)) + (pin "6" (uuid 1d27f977-617f-4128-ad80-e6116b96f528)) + (pin "7" (uuid 963d1023-fce0-4269-b44b-fa2379b5efd7)) + (pin "8" (uuid d4a1fe08-6c82-4287-8bcc-da4a9bb42c6e)) + (pin "9" (uuid 6b6c8a7f-06ea-4123-844e-965f433e8c6e)) + (pin "10" (uuid 96836d58-a459-4216-a268-bf1cf871f379)) + (pin "11" (uuid d3e29489-6298-4203-b215-81675d89961c)) + (pin "12" (uuid 42e79393-7651-4d90-9d5f-07805a2d9e10)) + (pin "13" (uuid b64bf49a-1dad-434f-b7ae-ed95003abf5e)) + (pin "14" (uuid 63d4af36-fe54-43cf-ac7c-0f78fe9a8d29)) + (pin "15" (uuid d9c5b034-86af-4726-893b-45a91c08bbf7)) + (pin "16" (uuid 47b8c512-8dd8-4248-9dfa-924a020f9fed)) + (pin "17" (uuid 96e5c8d0-5b7c-450e-9762-fbe2c3d03873)) + (pin "18" (uuid ed4ff654-b2fb-4179-9813-1bc8db297873)) + (pin "19" (uuid dc5ca69b-6e08-43ba-819e-9edaa6ba07f7)) + (pin "20" (uuid f49ffc29-1038-40cc-9b88-38717944e5b5)) + (pin "21" (uuid 67619fc6-38dc-4714-8a34-dce7165027bf)) + (pin "22" (uuid cb8633de-7f40-402d-a44c-5763652f7d54)) + (pin "23" (uuid 76396fec-470e-44af-9d9b-89234f6a1836)) + (pin "24" (uuid 3e8446fc-af06-4a9d-87b3-9bc978c5ecbd)) + (pin "25" (uuid 1ed32a8c-313a-4ac4-aeee-e75c41a328bc)) + (pin "26" (uuid 9d66a799-a1e9-4df6-b252-884eb0fc7cec)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 650.24 322.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1955c008-a08d-4d8c-b64e-3a8b4e9aa159) + (property "Reference" "U280" (id 0) (at 650.24 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 650.24 317.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 650.24 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 650.24 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 73deb43a-b838-4b8a-95e2-fa927dda4d61)) + (pin "2" (uuid a21a5f69-d5f9-4692-9adf-4fc0a986f3ad)) + (pin "3" (uuid 5eb1fd3a-3af9-4b57-94af-b9daf420f000)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 190.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1a9a32e9-b761-4519-a800-8fa98181ae39) + (property "Reference" "U37" (id 0) (at 406.4 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid efe0b121-3524-40e4-aab3-f142310ee8e4)) + (pin "2" (uuid 831a910a-d626-4618-aa32-e29d73370065)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 690.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1ba9b0dd-1a50-487e-b45a-66a20fc087f1) + (property "Reference" "U65" (id 0) (at 453.39 681.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 685.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 690.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 690.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ec89492f-ca3a-4423-8cb3-b430ff4a7aa8)) + (pin "2" (uuid 44d75043-5d85-43e6-bb0e-41dcd2f34667)) + (pin "3" (uuid 96129201-972a-456f-ab16-73f6ed688faf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 72.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1c68ddf3-0cb4-476b-9cf1-5dbe4ed0d352) + (property "Reference" "U77" (id 0) (at 459.74 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 67.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eba758bd-06a0-4e42-86b7-95e64fb8bcee)) + (pin "2" (uuid a20874f9-e902-4814-a613-df4306cc5408)) + (pin "3" (uuid 11448f2b-4b4c-4843-8b93-710231a637ed)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 541.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d099cce-dfeb-4f9a-8f0e-e29a98ed69d5) + (property "Reference" "U13" (id 0) (at 400.05 534.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 538.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 542.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 542.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 658c4cda-2349-4fbc-9ba0-2ab31dd1201e)) + (pin "2" (uuid 5db6babd-9b39-4480-91dc-de7a3183a1ae)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 438.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d8901a0-3235-4ad6-98cd-9cdb0da6da03) + (property "Reference" "U43" (id 0) (at 453.39 429.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 433.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 438.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 438.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f48ac22b-fb18-4e33-8338-86675ef32d8e)) + (pin "2" (uuid 5c57676a-e770-412d-ba11-38ed41733232)) + (pin "3" (uuid afa8b59e-163f-47b1-bff3-d61961f8bc2b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 372.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1e4a23a0-2fc3-448c-99c5-d022d7bb53ca) + (property "Reference" "U167" (id 0) (at 509.27 363.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 367.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 372.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 372.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 27c1b654-1114-4a23-82f9-62bd2e2d35b3)) + (pin "2" (uuid 7d0f21fd-84ea-4890-8d70-a85bad0605ea)) + (pin "3" (uuid 0c28646b-1e53-4dad-b875-9dd50324ba98)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 67.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1f019d7c-85e4-435d-8389-bc4d3eea6033) + (property "Reference" "U24" (id 0) (at 406.4 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 48bc533d-1d96-463d-b66e-3665d91a9384)) + (pin "2" (uuid 2cd04f06-6577-4495-a5c6-5742101bc0bf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 175.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1f4992a4-078b-4a8e-be85-b279b2a7c79f) + (property "Reference" "U86" (id 0) (at 459.74 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7b74ff26-d6b7-4b31-b7fa-ed0de6c01ef1)) + (pin "2" (uuid 9ba275fc-57db-4ae7-b923-9438417ad6ae)) + (pin "3" (uuid c4bde40b-4365-4fc9-be33-d83950584181)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 598.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1fd52872-674f-4a57-b1cd-bda9249c8563) + (property "Reference" "U19" (id 0) (at 400.05 591.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 595.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 599.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 599.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 96909269-0900-4700-85fc-e65f82d1eb63)) + (pin "2" (uuid 3ae90770-df4a-40a3-9709-b01ecbf9f6f0)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 638.81 617.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 208cbeb4-1d3b-4c2e-b65b-d3a8ce16e600) + (property "Reference" "U266" (id 0) (at 638.81 608.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 638.81 612.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 638.81 617.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 638.81 617.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9f50d493-6269-4590-8e9d-5bbe2137628a)) + (pin "2" (uuid b3857aca-c8ea-49a2-8697-c54c638e631e)) + (pin "3" (uuid 3beb95c5-4ac9-4708-8a99-1f27d933d8ad)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 153.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 22f1346c-34f6-4eab-8728-cc3a481859f1) + (property "Reference" "U148" (id 0) (at 509.27 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 998c0ad0-8362-40e8-a989-177b4894aea2)) + (pin "2" (uuid 3f42aa65-e103-4b30-8cc0-e7999801bf3b)) + (pin "3" (uuid db2619e7-0e58-4197-87d5-cf1e0fdf6210)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 130.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 236eee02-2608-4439-b9a4-ed8e940bca46) + (property "Reference" "U146" (id 0) (at 509.27 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 81245f92-07fe-4349-81f6-2dbebc1209d4)) + (pin "2" (uuid a77da203-a06f-4f5c-a85b-327b068a02ba)) + (pin "3" (uuid eda4c5d6-1bca-4b59-8253-141dad31eb1b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 199.39 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 23a501da-cb52-4943-abc0-323f3d691d29) + (property "Reference" "U1" (id 0) (at 360.045 194.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 196.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 199.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid db01eeda-7ec7-4a07-8254-e3cb25a6fec6)) + (pin "2" (uuid 024f9267-6734-49f1-922d-ae8affa48e48)) + (pin "3" (uuid 88efe2c5-54f9-4de7-8f81-49f03bd42b9e)) + (pin "4" (uuid 6a13d648-b6b9-40ee-908c-1d33ef14b01c)) + (pin "5" (uuid a9418a61-05d8-4634-80b1-984079362348)) + (pin "6" (uuid 5762de71-9932-4c65-80e0-8fbfcb15a2fc)) + (pin "7" (uuid bfa983ea-5055-4c6c-adcd-5f048ec43d81)) + (pin "8" (uuid 9a19e4f0-8372-45d9-a642-f2b6187a75b9)) + (pin "9" (uuid 928490f0-d134-4e3f-ad46-679d94b9a1a2)) + (pin "10" (uuid 2f503388-d63d-4b6a-af58-585548bcfdb7)) + (pin "11" (uuid 52c2bc04-5377-4e71-85c9-66251408bd3a)) + (pin "12" (uuid 7374f71d-38fe-469f-babc-9b77b513699d)) + (pin "13" (uuid f9d7f746-42a0-47c9-8904-a2b35b0325dd)) + (pin "14" (uuid 93fa4022-6c86-441f-a1ea-723f06a4f9d2)) + (pin "15" (uuid 8c98e936-9424-4a13-9d40-4744ed3b315a)) + (pin "16" (uuid 79a551f9-e1e2-48ba-a1ae-1d3ffe4c79b5)) + (pin "17" (uuid 2a395aac-7481-4b51-9775-492ff3c9969b)) + (pin "18" (uuid cde2944b-93fa-4cea-a2f7-1a7893365d43)) + (pin "19" (uuid e09faebf-25de-419f-ab0b-bc0cd200a859)) + (pin "20" (uuid 6e40aac0-9e7c-4c8e-bc3d-0b60a6aaea40)) + (pin "21" (uuid 2641c02e-22b4-4721-a05c-ec8507d18707)) + (pin "22" (uuid 456cf3aa-56fb-40c3-af34-958dd083107f)) + (pin "23" (uuid 3df42540-216e-4765-8409-fd2e5573231d)) + (pin "24" (uuid 73beef3e-6feb-4da7-9323-814134af5885)) + (pin "25" (uuid 12cfafb7-46c7-4777-966d-0dc58af16eeb)) + (pin "26" (uuid 3d601894-929b-4107-83a3-6317e36b1c92)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 652.78 274.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2443eb99-2d3b-4129-ade9-12c5075cd9a5) + (property "Reference" "U281" (id 0) (at 652.78 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 652.78 269.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 652.78 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 652.78 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 77fe4d14-caba-40b7-aaa8-fdf0261696db)) + (pin "2" (uuid 77135009-74f3-404e-8a48-cac9fdedbc4f)) + (pin "3" (uuid 50485a06-4178-401a-892f-39a88f1e4d65)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 749.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2521cb66-fa83-45cf-8332-d5428945bdb7) + (property "Reference" "U134" (id 0) (at 502.92 740.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 744.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 749.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 749.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 88c06d5e-c70c-4e2b-91fd-768afdefa256)) + (pin "2" (uuid d047977d-40b4-4cce-a76b-4e57a5de869b)) + (pin "3" (uuid 708ecd58-2607-4600-bcb9-47dc869138b6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 600.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 25deba65-c340-4c6e-b2e3-dd2f1debb58b) + (property "Reference" "U185" (id 0) (at 541.02 591.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 595.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 600.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 600.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 467b38e1-3341-4e5b-9400-1fdda01aa844)) + (pin "2" (uuid 4da3ff46-5c54-452a-a103-31add326bab6)) + (pin "3" (uuid 196a0f07-683c-45b8-8bfb-07bc48a0da6d)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 617.22 523.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 25ff1865-46a0-4df7-a14f-7d7eab8ab2c4) + (property "Reference" "U253" (id 0) (at 617.22 514.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 617.22 518.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 617.22 523.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 617.22 523.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 20c73b1e-e39a-45cb-ad84-fbdd491fc576)) + (pin "2" (uuid 55a5fe20-3ef2-4ebe-9454-80ff0266fede)) + (pin "3" (uuid 46cc21e1-3240-4fb6-bcbe-72fb2e085778)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 599.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 260eac28-06ae-4bc2-8434-6c505d8cdb8f) + (property "Reference" "U121" (id 0) (at 502.92 590.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 594.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 599.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 599.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cda094ef-188c-4a3d-82a5-b9932ed699ce)) + (pin "2" (uuid 3cc753d5-ac9e-4fa6-8423-c7badbdb8373)) + (pin "3" (uuid 88a12f72-8320-4dab-ae2a-5d6cd54caa16)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 646.43 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26b72e20-42be-4f1e-a823-1c607689d3c0) + (property "Reference" "U274" (id 0) (at 646.43 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 646.43 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 646.43 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 646.43 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5f9bde90-5f98-4906-aff0-4dea24eccd6a)) + (pin "2" (uuid 23e0d0ac-b708-49ae-b122-8b02343e1e5d)) + (pin "3" (uuid e1f4cf45-5039-45ae-a347-5ca9a0eaaea8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26c148ab-8adc-430d-a39b-bdab4186bb00) + (property "Reference" "U74" (id 0) (at 459.74 29.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7bd943b6-18f5-456f-b486-46e67cf354a1)) + (pin "2" (uuid e685a033-7dbe-42bf-a538-e5b0dcdf2d46)) + (pin "3" (uuid 22745cd5-34de-4d63-b30c-465dcba1192b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 347.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26d15ff3-7bb1-4e18-8b4d-a266edc344b8) + (property "Reference" "U101" (id 0) (at 459.74 339.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 342.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 347.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 347.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6442f406-f619-4450-958e-408d3d00d213)) + (pin "2" (uuid 8ae4ccb1-4909-4a9a-a56a-d17ad6847f91)) + (pin "3" (uuid b5d4a6bc-8695-4f79-8eae-6b02a19c2c61)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 172.72 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 27de2bd4-a77e-4fd4-944a-9af3ea9d8e78) + (property "Reference" "U1" (id 0) (at 360.045 167.64 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 170.18 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ac004566-8bd3-4eef-af4d-522030695c32)) + (pin "2" (uuid 0c006f6e-7b77-4b5b-adb1-dafd8f075faf)) + (pin "3" (uuid 07aba35c-d6d2-4554-932b-9aaa5c281073)) + (pin "4" (uuid b51061ba-5127-4689-98f8-0b23474bbda2)) + (pin "5" (uuid 39867930-d232-4e23-942b-a6f02cbf5cdc)) + (pin "6" (uuid 97f239c8-9255-46bd-ab17-a2a842e266f7)) + (pin "7" (uuid da2d2787-be54-4eaf-babb-015beadebdfc)) + (pin "8" (uuid 9e3c9928-4e98-484e-98df-bba95d166f3a)) + (pin "9" (uuid 702fc667-a3c1-40b1-88a6-996c91a4b55d)) + (pin "10" (uuid 5dce3fa4-38d8-4289-b37e-f470420d95df)) + (pin "11" (uuid d8c2fe8e-121b-4616-bdea-3be1a316d856)) + (pin "12" (uuid 20e4dd3d-00d9-40d0-b3e3-d85cb150c706)) + (pin "13" (uuid b80bafbb-bf7c-4346-984f-45e9087e276c)) + (pin "14" (uuid 9a0c4d1e-2ac8-4941-91de-ab544d440b4b)) + (pin "15" (uuid 87e27dda-2306-4b06-ae19-9111e627ea2a)) + (pin "16" (uuid 56670d77-1956-427c-b9a1-fc2b2beb2739)) + (pin "17" (uuid dfbed7df-a83c-49d1-ae7b-37224a71e638)) + (pin "18" (uuid f21bf63b-f5d5-4a03-a6e8-ca0db5561f70)) + (pin "19" (uuid eb61b96d-6bc0-4346-b5b6-ca99ae7b3a76)) + (pin "20" (uuid c5798da1-e552-4e7b-8f8c-1a1ef03f2253)) + (pin "21" (uuid 19644436-d570-4bb1-8b5c-2ca27506f103)) + (pin "22" (uuid 6621416f-7604-4b12-b5ca-df3382a34b26)) + (pin "23" (uuid 89a1142e-64e6-4d51-8703-783905b0934d)) + (pin "24" (uuid d5cc9030-acf5-4ff3-b2b6-b93e335ee453)) + (pin "25" (uuid d7692540-2283-4726-82b2-989f75499078)) + (pin "26" (uuid 1a223749-2807-4ecb-ad2a-95a7ae2391c9)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 551.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28463522-3bb7-4fa4-96c6-15f060f27330) + (property "Reference" "U14" (id 0) (at 400.05 544.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 548.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 552.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 552.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 00028474-b8af-4beb-ad7d-ecca5024ce8c)) + (pin "2" (uuid f6416428-e682-4f2e-9dda-b0e949ecdd35)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 189.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 286efb87-a5e8-4c7a-a850-bf47a0428054) + (property "Reference" "U215" (id 0) (at 547.37 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6db77b31-6922-49ef-9079-a5f9e9cefaf9)) + (pin "2" (uuid 2f0a263b-9d07-4422-93dd-6b7e69a14de7)) + (pin "3" (uuid decfdb6e-3b78-4143-85e5-50478f88520f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 257.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28ac3635-1b02-41ec-99b6-26be30b76e8f) + (property "Reference" "U157" (id 0) (at 509.27 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 252.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a3b051f-f5a0-4d45-86ad-2530be5c7d87)) + (pin "2" (uuid 6d888c81-7db9-4140-96f7-5980f68b2926)) + (pin "3" (uuid 059a96f2-bf62-42b3-b2b7-ee0f468385f7)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2928dbd0-5b20-4cf7-8b8c-edb8f06bc2e0) + (property "Reference" "U87" (id 0) (at 459.74 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 181.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 186.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7e005167-4b50-4990-96de-1977df3993a9)) + (pin "2" (uuid cd2af137-36f6-4bd6-8fef-4e24e1204716)) + (pin "3" (uuid 176e2e18-c375-4248-ab1d-f574c3bb7e73)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 731.52 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2ca4147b-4e52-4349-8bdf-9f31fc42ca37) + (property "Reference" "U307" (id 0) (at 733.5394 91.44 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 733.5394 95.25 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 731.52 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 731.52 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d730f3ba-4deb-40e7-bbc1-5ea73c6280ae)) + (pin "2" (uuid a62eba2d-805f-40c8-b781-28578a5c26ac)) + (pin "3" (uuid 97442a41-19dd-4e75-8197-23674db4635e)) + (pin "4" (uuid eead8852-01a7-41a5-b3ad-59b995c6326d)) + (pin "5" (uuid cb7b47cd-2cfe-41d5-88bd-2ef24cecd3c5)) + (pin "6" (uuid 2dea4ea9-2630-47da-a28f-3a5e5528372f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2d903bd4-33f7-4e5e-a9bb-9e76bb8c5d14) + (property "Reference" "U83" (id 0) (at 459.74 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1917afac-2e96-457e-8620-d83c57e15372)) + (pin "2" (uuid b7421a12-c00b-4ced-84e4-46742a3dcda3)) + (pin "3" (uuid b5dc5c4e-dad6-4ae6-8d36-6df95c6a8730)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 669.29 661.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2dc56818-0fd4-46c5-a274-073b887411df) + (property "Reference" "U292" (id 0) (at 669.29 655.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 669.29 659.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 670.56 662.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 670.56 662.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b86e34b8-ed9f-4d2f-bf0b-c995dbdb989f)) + (pin "2" (uuid e1dea81b-6f26-4ef9-952b-c82abb489ceb)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 608.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2ff90656-3f6c-42f6-acba-e47daa2c3c6b) + (property "Reference" "U20" (id 0) (at 400.05 601.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 605.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 609.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 609.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2f51969-4ff3-423e-8a2c-92db7c78c4be)) + (pin "2" (uuid db28c06f-b593-4525-a4ac-a924d892b662)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 661.67 615.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3052449b-dde2-44fd-a7c4-ffbf4814f1ba) + (property "Reference" "U282" (id 0) (at 661.67 609.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 661.67 613.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 662.94 617.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 662.94 617.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4fe19137-b59a-432f-87fa-808f669eb2ca)) + (pin "2" (uuid bd4e5758-519f-45e6-810d-67da0fd44e39)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 725.17 544.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 305534e1-b606-4e95-9fb2-d5aa05ca5943) + (property "Reference" "U300" (id 0) (at 727.1894 528.32 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 727.1894 532.13 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 725.17 544.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 725.17 544.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 51ea1289-fb33-4b16-aa85-69ddd3f00dd0)) + (pin "2" (uuid 69116de9-7552-45e5-b526-e298e14689e4)) + (pin "3" (uuid e7f805fb-3448-45e5-8dff-6e8a82cea28d)) + (pin "4" (uuid 7f54acca-20ae-43d6-86fe-c2d9d90585cf)) + (pin "5" (uuid ad96ade0-812d-44d6-ab09-ac8876561e70)) + (pin "6" (uuid d17e8aab-6ebd-4587-91ba-4aec588ca765)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 30ebd484-06c8-4c21-b8c8-9bb16abfbb40) + (property "Reference" "U39" (id 0) (at 406.4 203.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 56497b9a-e5f7-4bd5-908e-b6387be876c9)) + (pin "2" (uuid f9a0019d-6b85-46bf-bcd5-0d1564932d56)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 784.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 32ff3377-9309-42ad-a6b6-3adc44f61d81) + (property "Reference" "U201" (id 0) (at 541.02 775.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 779.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 784.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 784.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cdc50acb-e859-4443-b6ec-1b0f40ba155f)) + (pin "2" (uuid 614a4064-965c-42b8-a77a-766e364dd740)) + (pin "3" (uuid 552215bb-0846-48d0-8960-7327dd1de3de)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 647.7 180.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 330504ca-a5ea-431f-bd2b-ca20b74a9d82) + (property "Reference" "U278" (id 0) (at 647.7 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 647.7 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 647.7 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 647.7 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fbd0de9-1253-4263-83e5-885e2944dfb9)) + (pin "2" (uuid 7d032305-439f-4430-8c2b-e4ff98fa790c)) + (pin "3" (uuid 60c53113-94db-4147-a31a-3e8a8eebcd17)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 703.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 33ba1fa7-f2c0-44bb-b200-a5b1d434babe) + (property "Reference" "U130" (id 0) (at 502.92 694.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 698.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 703.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 703.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 094aa274-263f-4813-89d5-ff9b15e514dc)) + (pin "2" (uuid ce9f33f8-37dc-42e0-8563-55053845f30e)) + (pin "3" (uuid 037bbc26-5b82-4485-a813-9aede285f414)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 739.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3407099c-08df-4adf-9e89-8fcf9694060b) + (property "Reference" "U197" (id 0) (at 541.02 730.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 734.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 739.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 739.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 20e6541d-5d8d-4ee0-a05d-35d38d749a79)) + (pin "2" (uuid 7412c2a6-a78d-457c-ab93-4dac5dccc992)) + (pin "3" (uuid d4ef2d00-892e-4bad-a124-600da81ff367)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 269.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 35c8b52d-500d-4900-a0a1-f3932ad2b101) + (property "Reference" "U158" (id 0) (at 509.27 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 269.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 269.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b3974a1a-63ee-4be7-a983-566c459cb561)) + (pin "2" (uuid b5877fd6-db7e-45f8-b3f8-a118005372ba)) + (pin "3" (uuid d711d181-13e1-447d-9164-e5afac3d2e61)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 163.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 363ac9c2-2713-4a2d-9fe1-d0d0a75625bc) + (property "Reference" "U85" (id 0) (at 459.74 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34a13030-1a65-450d-b42f-80ba65b9a8ac)) + (pin "2" (uuid 265ddcae-a82b-4800-9fee-c5da1869bfa7)) + (pin "3" (uuid aae9c9d0-adba-48fe-b8be-2bdc2c3e88c9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 529.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 36507eb2-c8af-4058-842c-b2f9b8635a90) + (property "Reference" "U51" (id 0) (at 453.39 520.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 524.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 529.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 529.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 88bca5f7-2b75-40bc-8e31-468ca902d7cc)) + (pin "2" (uuid 302b773d-0ee1-4a8e-825f-d080992720cd)) + (pin "3" (uuid 56aa0c96-c00c-45d3-a927-328b83d4af4a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 474.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 36f319ed-c138-4cfb-88ac-c3eb8843a9c4) + (property "Reference" "U174" (id 0) (at 541.02 466.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 469.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 474.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 474.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 841849ad-55c0-4be7-a9ec-18b169124c1e)) + (pin "2" (uuid 0605a704-72a7-43c0-bcf8-c9912ce45036)) + (pin "3" (uuid db292242-6477-467e-836c-c6c781ad0d00)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 36f8a3f2-9a38-4896-8fe7-b8153a1e5afe) + (property "Reference" "U78" (id 0) (at 459.74 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 21c31dcf-dfbc-417f-b08d-ef625759af2e)) + (pin "2" (uuid a8f34458-5a7b-4725-b242-50783a0bb39d)) + (pin "3" (uuid caabfc94-d0e4-49b4-81d4-66817ab4f912)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 187.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 370e4a07-db1d-4813-a164-39fb83c11c13) + (property "Reference" "U151" (id 0) (at 509.27 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ed8f08cd-1424-4ab8-8d02-3587c328cfe4)) + (pin "2" (uuid 4ecb597d-6d5d-4b22-b4ac-6f333908bdb1)) + (pin "3" (uuid 6ac9b7e3-8793-4264-b294-f4a13337a3db)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 198.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3791b44c-2354-4284-b469-6e986df4191e) + (property "Reference" "U88" (id 0) (at 459.74 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 193.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 54697ede-b29c-463f-9984-1df79ddf74ed)) + (pin "2" (uuid 8be9c434-1093-4983-93aa-263a5e9a8bce)) + (pin "3" (uuid 628253a6-db68-46a1-aa6d-ecc3814281ec)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 109.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 380dd2a0-64cc-4da9-9802-1482a24e9f50) + (property "Reference" "U208" (id 0) (at 547.37 100.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 67e73b1d-771b-4fa5-9931-fa97a751d230)) + (pin "2" (uuid 87b63476-4936-4e30-939e-386237476785)) + (pin "3" (uuid 78af56f9-6b3a-4738-99bb-b06d9207f00e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 461.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3878bef9-8c30-4320-a90a-5a311b02dd1e) + (property "Reference" "U45" (id 0) (at 453.39 452.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 455.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 461.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 461.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1d6bf800-d1f0-4609-8835-0bb99f086fcf)) + (pin "2" (uuid 8f67d97b-c866-441b-847a-55074e8f5991)) + (pin "3" (uuid 3db3106b-6a12-4f3c-b806-7c66287ee395)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 175.26 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3927034f-564c-479c-a535-ecfc92d72629) + (property "Reference" "U1" (id 0) (at 360.045 170.18 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 172.72 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f39a7303-0fd7-40ef-9eb9-d0f7a00732bb)) + (pin "2" (uuid 981544dd-310c-4d76-ab8d-b56ed5a3a0fd)) + (pin "3" (uuid ac5c907c-2e81-4fba-af11-27d62e535042)) + (pin "4" (uuid 73806abf-13c8-445d-897b-794a21de98e2)) + (pin "5" (uuid b6c3de40-ee52-475c-9538-d067125d024f)) + (pin "6" (uuid f1c3c4e4-56af-425d-abc2-6e6b7dcf54a6)) + (pin "7" (uuid cbc96199-7a7d-4f22-a0ae-e9b08e7c65c8)) + (pin "8" (uuid 38c38e10-7e51-4ce0-ac11-795e60b72408)) + (pin "9" (uuid 2b29d8fc-19be-4c81-9c61-f99df090f7f7)) + (pin "10" (uuid 62566c15-f873-4aac-a083-e13f0eaa7470)) + (pin "11" (uuid d792e76b-ff73-4d44-9ff7-3d207caf4e3f)) + (pin "12" (uuid 78d0869f-77b7-41b1-9be1-7f86d5ce92c6)) + (pin "13" (uuid 2801f7b2-8b3d-4b59-8b94-05433715bd24)) + (pin "14" (uuid 731d23aa-b5b2-48fd-b0fe-3e0554d35061)) + (pin "15" (uuid eccac055-5b45-4881-9625-62557393ceb7)) + (pin "16" (uuid c7265603-9d5e-44ae-a12f-dd0adbd82709)) + (pin "17" (uuid 80d975ea-457d-4ac9-8f44-0336d57a3316)) + (pin "18" (uuid b1779723-36b5-4e2c-a044-34223644021a)) + (pin "19" (uuid fb4f50dc-d58e-46b2-9371-ec32093e0df2)) + (pin "20" (uuid 12f746ac-5904-4db7-97ea-91353a0e7b71)) + (pin "21" (uuid dfb34747-3169-4ff5-b677-6c606b9570bb)) + (pin "22" (uuid 8e576c99-db6b-4710-994f-f4c6208acb1b)) + (pin "23" (uuid 2fd558b7-ddf5-4eb2-984d-1d502e2f7766)) + (pin "24" (uuid ad4be7c7-1eaf-4483-b894-c5b1a06a1ff2)) + (pin "25" (uuid 19a244f0-36fe-4eae-8362-8995e13adc74)) + (pin "26" (uuid 335a4a55-b84a-4fc7-a1a6-f9b7cfe38b2f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 292.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 39f57125-8b54-4f30-a35d-faeb45ce065e) + (property "Reference" "U160" (id 0) (at 509.27 283.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 287.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 292.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 292.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 905e5212-1155-4893-a471-af13abc69124)) + (pin "2" (uuid d2d7828d-2212-429c-a9a0-63dde449cf32)) + (pin "3" (uuid 03f4dd92-992c-4909-92e1-12208c7400df)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 373.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a32b633-3e49-4815-b1e9-f18452c47880) + (property "Reference" "U231" (id 0) (at 547.37 364.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 368.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 373.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 373.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 50bf03d6-95a6-4e72-83ed-2bcac14d1051)) + (pin "2" (uuid 1d440dd2-3506-4f94-a4f0-cefd41796494)) + (pin "3" (uuid d30c3799-9df2-4a79-aaf7-601af59a9e14)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 641.35 568.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a43c051-5352-4e34-a25f-a60fc467e610) + (property "Reference" "U270" (id 0) (at 641.35 560.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 641.35 563.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 641.35 568.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 641.35 568.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cb645a4c-79f6-41d9-9eab-af62a1bbc2a4)) + (pin "2" (uuid 612576e8-74bf-481f-bf6f-b5a037a79541)) + (pin "3" (uuid 1d307879-f007-4103-b599-c793b9861c22)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 754.38 651.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a7a86c9-95e5-4339-99b7-dc026a35cf87) + (property "Reference" "U318" (id 0) (at 753.745 641.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 753.745 645.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 754.38 651.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 754.38 651.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e48f9786-3852-4991-b91f-3baacbf19ba0)) + (pin "2" (uuid 14426078-7041-4fd1-98a9-a1b32c5c379d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 773.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3aae535a-1d10-4f70-b80f-80dc53e57f29) + (property "Reference" "U200" (id 0) (at 541.02 764.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 768.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 773.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 773.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c28462b-d34f-4bd1-bd63-80c2ae784fef)) + (pin "2" (uuid c81f3cf1-53fa-42d5-b6f3-3582c609d238)) + (pin "3" (uuid 1ab26957-5172-406d-9216-317927858cd0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 196.85 0) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3af73be6-94fc-463a-8e91-c4cfe0a31050) + (property "Reference" "U1" (id 0) (at 360.045 191.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 194.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 196.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 31c6a9bc-fb6c-441e-af65-9228256e27c9)) + (pin "2" (uuid 3c789f4b-8aad-4200-ad50-5c004b0f7552)) + (pin "3" (uuid 44d8a0d7-ec3f-4260-b3eb-032b0e2a0bd5)) + (pin "4" (uuid 7cb9e4b0-d257-46bf-a412-b257d00f3430)) + (pin "5" (uuid eb382794-7c05-46f3-9473-6d21505518bd)) + (pin "6" (uuid fe00c5c1-0e3d-4f89-b708-68d22e47cc81)) + (pin "7" (uuid d15b82ea-00f4-4ac4-8978-f9d6db24556f)) + (pin "8" (uuid be3af5bf-f217-41ee-83dc-860bc00c2cfa)) + (pin "9" (uuid b502178b-4a94-409d-b2cb-77943897e748)) + (pin "10" (uuid 6c8f5386-55ec-43ea-b8e0-7feb887667bc)) + (pin "11" (uuid 072ff5bf-6450-4476-809d-756d92b63fa2)) + (pin "12" (uuid 9557e753-5ded-45e2-a024-2dca4b0a2f9b)) + (pin "13" (uuid acbc19ed-4725-4d07-806f-c1fa1bc232fd)) + (pin "14" (uuid f7b6c743-fa7a-4b45-a947-fb53910b3bd3)) + (pin "15" (uuid e6cbecc4-ddb2-4f82-9a47-dd898c2ee733)) + (pin "16" (uuid f3d4c5a9-db36-4091-8659-5cb59993226c)) + (pin "17" (uuid 97a63438-3295-4843-a03a-f7944da0d40d)) + (pin "18" (uuid f33f35cb-de16-432a-809b-3d3ad636de65)) + (pin "19" (uuid cc9b8b15-50e7-4abf-93d4-5eb39a736912)) + (pin "20" (uuid c8633059-8891-4b71-aa18-f932ff9247b4)) + (pin "21" (uuid 34116be3-35b0-4bde-b42c-4b6248b27b61)) + (pin "22" (uuid f09ab1d4-fc19-4bb7-ad4b-f1a53b67f112)) + (pin "23" (uuid 0239076d-41d3-48ee-9d10-c1cdc7fa3424)) + (pin "24" (uuid 8a0062a1-343c-43d5-aef2-a3dc558e5006)) + (pin "25" (uuid 4070ee53-dac9-4fea-b88e-68bfcb4d928e)) + (pin "26" (uuid 9b788740-ef55-4862-a9c3-104c4e825c1c)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 669.29 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3b74c4d8-35fd-4c00-9a26-ab422f8acdaa) + (property "Reference" "U291" (id 0) (at 669.29 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 669.29 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 670.56 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 670.56 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 117e76db-830e-48b1-a4be-84c995661e5d)) + (pin "2" (uuid f737681f-75be-40f5-b8b0-08735ed66bd5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 532.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3bc5f100-fe1f-4983-9e5b-e4ac853f9030) + (property "Reference" "U179" (id 0) (at 541.02 523.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 527.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 532.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 532.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb9c2e27-555e-4e31-b137-24df5d1eca04)) + (pin "2" (uuid 05da33a0-6d2e-402d-8268-a659899bcb99)) + (pin "3" (uuid db18860a-1e50-4f26-a1e0-980de6575b1e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 219.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c7637cf-f3b6-4d87-bb53-0ba1cb2ff991) + (property "Reference" "U40" (id 0) (at 406.4 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53fe3829-e16c-4e1e-bd1c-4cc2cfb9a9bf)) + (pin "2" (uuid fa248400-3f81-4e3e-9912-cab424ae4389)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 246.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c8f23e5-305c-494d-85d3-e7f4d3515292) + (property "Reference" "U156" (id 0) (at 509.27 237.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 241.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 733d9460-d271-48c7-88c0-7f39a8d860e9)) + (pin "2" (uuid d3571d66-028b-4ec8-9ca4-81e0cec943aa)) + (pin "3" (uuid a047d17b-a9ff-45aa-a2b4-94cc87073d55)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 339.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3dc7cf24-fb1e-4c52-a453-6712b69d8278) + (property "Reference" "U228" (id 0) (at 547.37 330.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 339.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 339.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1b97d154-5cad-4637-8dfd-83672b833667)) + (pin "2" (uuid 1a4cd11c-d16e-48c3-b53c-141b4879485d)) + (pin "3" (uuid 3b4eef88-cfe3-4429-9376-816ea88bc99d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 495.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3e1291a4-4243-40b2-ae8c-12270433aa81) + (property "Reference" "U48" (id 0) (at 453.39 486.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 490.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 495.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 495.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 24d5ef4a-2a24-49c1-9049-d5c8ee143ffb)) + (pin "2" (uuid 8ffc892b-698e-4d79-8cd9-4ff60c0365aa)) + (pin "3" (uuid 9e93283c-7a27-4c24-8c32-11cdacdd3fc0)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 440.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3ff09765-721e-4aae-9484-1752974ae961) + (property "Reference" "U171" (id 0) (at 541.02 431.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 435.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 440.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 440.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2ca335d9-3ec6-4ed5-8e5c-68680251962e)) + (pin "2" (uuid d403700b-6b2c-44af-b81c-ea88bb75bb5b)) + (pin "3" (uuid 766300dd-7cb7-4fb8-b53d-db4579a37656)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 209.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 401338d4-51f1-47bd-b441-d8dc9b448fd2) + (property "Reference" "U89" (id 0) (at 459.74 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f1701150-c831-4e60-9f6e-c10affe4d5b6)) + (pin "2" (uuid ca99d39c-f681-402b-bb73-bbd77f6e0085)) + (pin "3" (uuid 0a238248-2d48-4c7c-b409-12d7cd6e07f7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 579.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4169d5aa-6e11-46a1-a4bb-7dda01751bd4) + (property "Reference" "U17" (id 0) (at 400.05 572.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 576.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 580.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 580.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f1332379-8ff5-467a-bf20-464e00c5a047)) + (pin "2" (uuid facc0476-821e-48d7-8c4a-b9a755b7dbf5)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 643.89 711.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 44726a71-650b-4dfc-8483-651127de171b) + (property "Reference" "U272" (id 0) (at 643.89 702.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 643.89 706.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 643.89 711.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 643.89 711.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 878499a6-2d54-4e45-8ca3-6a71e4f89de9)) + (pin "2" (uuid 0946cdac-1c45-47af-aeea-17e4cecf6bd5)) + (pin "3" (uuid f45a8d64-c6f0-4cb9-bf79-45ccc659a53e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 105.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 44b721d8-e337-468d-8493-a99432d27701) + (property "Reference" "U28" (id 0) (at 406.4 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2b48883e-c5f3-4019-877c-d79607e37b57)) + (pin "2" (uuid 46690855-5584-46fa-b106-7db2e80700dc)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 46a049e2-515a-4e8e-a2b2-a83caabb2fde) + (property "Reference" "U138" (id 0) (at 509.27 30.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 39.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 989750b9-df53-42c6-9255-38dd242e64a5)) + (pin "2" (uuid e3d2751c-b5b7-4b13-a741-11b1d6f6614e)) + (pin "3" (uuid 5ad070d7-d44e-4c3a-aede-d0b70eefeb2d)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 754.38 798.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4703c1eb-6805-4676-b278-43bd8c08e138) + (property "Reference" "U321" (id 0) (at 753.745 788.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 753.745 792.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 754.38 798.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 754.38 798.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 47ae3483-ad92-48e4-9c4e-fae24306cd76)) + (pin "2" (uuid d4b0bd18-4046-4ede-829c-7cbcd842c2ec)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 647.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 475724be-0e62-4e51-9fe2-988e4710bf56) + (property "Reference" "U189" (id 0) (at 541.02 638.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 642.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 647.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 647.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cd90dae6-8080-4da3-9ba1-8adae03c4c27)) + (pin "2" (uuid 474d8260-b22f-4b0a-b961-20c61ec78e0f)) + (pin "3" (uuid 54e7c95f-cb8d-48f4-aaa0-20e0781b8be4)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 626.11 321.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4903101a-655f-446f-a71c-4fceeae33cd3) + (property "Reference" "U264" (id 0) (at 626.11 312.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 626.11 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 626.11 321.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 626.11 321.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 538d7783-82be-4753-9066-b16ff93af73b)) + (pin "2" (uuid cee0c479-3717-4f85-a005-6fd4e6dde0ff)) + (pin "3" (uuid 40588ef6-2cea-406c-8a61-9c68df79516c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 623.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 49949dc6-b3ff-497f-8855-8c131e90478d) + (property "Reference" "U123" (id 0) (at 502.92 614.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 618.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 623.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 623.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 46d127be-cabe-42e4-9397-83af076c566f)) + (pin "2" (uuid d4722414-7b87-4795-a12f-6aa075d94247)) + (pin "3" (uuid ffe6bd9d-6587-40e6-a05d-a546b14b941f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 575.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b18df0c-d74f-4f99-b53d-60c53d62741a) + (property "Reference" "U55" (id 0) (at 453.39 566.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 570.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 575.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 575.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e314c5dc-c07f-4003-9e64-a6a809a27ce8)) + (pin "2" (uuid b6ae1606-8f96-4c80-ad90-f9fba60654cd)) + (pin "3" (uuid ab43fd53-b13a-4935-9d25-2e578b8e4578)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 596.9 87.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b9f15ae-10f0-42f0-abad-f334fee74415) + (property "Reference" "U243" (id 0) (at 596.9 78.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 596.9 82.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 596.9 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 596.9 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 827e6182-7318-49c9-8dea-e6a1529d26b7)) + (pin "2" (uuid 4f7fe294-688d-4959-b236-644f6c572216)) + (pin "3" (uuid 1fe68606-cc36-4c30-af9e-a024219b16ca)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 670.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4bb2e454-d369-4a82-a878-f9de8c781d33) + (property "Reference" "U191" (id 0) (at 541.02 661.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 665.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 670.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 670.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e48e034a-bd8d-4fde-90ac-23274b214f27)) + (pin "2" (uuid d1c5f4bd-994c-4919-b4d1-f939318faa1d)) + (pin "3" (uuid 0bc29206-b6a6-4521-a780-50f53d617c4a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 452.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e202e53-2f73-4de7-a388-7fb640f24741) + (property "Reference" "U172" (id 0) (at 541.02 443.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 447.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 452.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 452.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2da6a123-f7c9-463c-8ab1-5b79a6deaece)) + (pin "2" (uuid 4ce56925-bd51-4d70-9c73-838a0a300c51)) + (pin "3" (uuid 2b37822b-95c8-4ab1-b462-b5cdef4f277f)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 725.17 642.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e6fecee-8513-41d2-a7fe-7cc35b950053) + (property "Reference" "U302" (id 0) (at 727.1894 626.11 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 727.1894 629.92 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 725.17 642.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 725.17 642.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d8d348c9-e3f0-4c96-bf27-90d8449f4900)) + (pin "2" (uuid 82017e49-afb8-4226-9c6c-2cb9ebf980d2)) + (pin "3" (uuid 08bf5cc6-ce45-41ea-b0c5-fd24d59fb6eb)) + (pin "4" (uuid a9141178-956d-464c-8e1a-4f0666f03e40)) + (pin "5" (uuid ab0f422b-7265-4a83-a78e-3ae8b2d27f41)) + (pin "6" (uuid 599ffb97-578f-4e0a-9c64-8053b6ddb0c1)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4ebc123d-eb09-4520-8e4e-47f4a12c3315) + (property "Reference" "U214" (id 0) (at 547.37 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2cbf47a-4632-4331-9d98-d50d418437a2)) + (pin "2" (uuid e8dfa895-4b37-4af1-b4bd-f0edad5bbdb1)) + (pin "3" (uuid 9930a361-2ea9-4cda-89eb-d3319bdecacf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 497.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4ecd520d-66c3-46f3-9485-508bc9b2d920) + (property "Reference" "U176" (id 0) (at 541.02 488.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 492.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 497.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 497.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0123973c-4474-4bd8-9dd5-f2a8f414adfe)) + (pin "2" (uuid 65858568-9aef-4ecb-ba62-44bb5dd15ae2)) + (pin "3" (uuid 7277b90b-e171-4577-ac5e-42d15bb778b5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 669.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4edbb22c-7f3d-409d-b942-f867ba18bcc4) + (property "Reference" "U127" (id 0) (at 502.92 660.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 664.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 669.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 669.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cca52c25-8060-4501-82f6-40b01ec239dd)) + (pin "2" (uuid d3fbe958-2456-4393-87bd-d86a48b2742e)) + (pin "3" (uuid bbdbc458-8f3a-4f78-a027-9c42b9e2d644)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 486.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 519b0459-babc-4d5e-a3e8-9a66c98ab492) + (property "Reference" "U175" (id 0) (at 541.02 477.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 481.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 486.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 486.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f9ad5cc7-18e5-4803-bd49-6b40d78a368a)) + (pin "2" (uuid 2e34b749-9124-4732-a0b5-d14a554cb593)) + (pin "3" (uuid 9e0f1d9f-ef06-4fdf-a679-9068e3434759)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 85.09 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51d5d493-1898-429c-80ae-dd8fa092b6c8) + (property "Reference" "U142" (id 0) (at 509.27 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58082061-1963-4b4c-b385-83d6f8a93118)) + (pin "2" (uuid 5975faa6-05d9-4b02-8569-67a2038f1c73)) + (pin "3" (uuid 1273cf8c-d1ec-4d3a-85fa-ac88fc32c5cf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 337.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 532297ad-7a6f-4355-b29a-6510fe3e5d4d) + (property "Reference" "U164" (id 0) (at 509.27 328.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 332.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 337.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 337.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c157f3b1-483d-4ab8-a029-4939f94de0b8)) + (pin "2" (uuid 8b44e8c1-2ade-4f7c-8879-48e2025e9823)) + (pin "3" (uuid 236214ff-3997-4c5f-945a-fa991c2137d3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 483.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53285cfc-6f01-41fc-b66c-e882ba6ff75e) + (property "Reference" "U47" (id 0) (at 453.39 474.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 478.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 483.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 483.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b92f67a8-dd91-42de-ac84-ff32172b17cc)) + (pin "2" (uuid 366cca3f-7e34-4b36-b18d-26ceff1a5bcf)) + (pin "3" (uuid c3e1108b-5d1c-4460-8702-dffb0b01ec40)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 666.75 709.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53666778-b503-4754-bc2a-41cd0edeb9ae) + (property "Reference" "U288" (id 0) (at 666.75 703.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 666.75 707.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 668.02 711.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 668.02 711.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 36663bd9-98f7-4947-9db3-33dad4349aa4)) + (pin "2" (uuid 5ff591c7-3a67-46be-b54a-1d2379839513)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 223.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 53b1b94e-2dd4-47dc-af5d-2b026d14a1f1) + (property "Reference" "U154" (id 0) (at 509.27 214.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b34669e9-004f-4718-a558-c8fce5a328d1)) + (pin "2" (uuid 2a5911f2-23b7-4df4-b213-82a45126ef85)) + (pin "3" (uuid 733f600f-81ec-4ac2-8cb3-5340438c1fd7)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 290.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5546619b-ba9d-4b19-880b-18be56137f1d) + (property "Reference" "U96" (id 0) (at 459.74 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 285.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 42cd839a-9c5b-4953-94fd-97795e5cb2cf)) + (pin "2" (uuid f4ebcc8b-2f13-4907-82e2-c6477e9dd60a)) + (pin "3" (uuid 0067e2b8-1a0a-49e0-ba94-2d41246fb87e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 234.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 557d1b25-0572-48ac-b297-6fa2b1783f3a) + (property "Reference" "U155" (id 0) (at 509.27 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 234.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9aab1e9c-4318-4d6a-9497-1514ee8e5d7e)) + (pin "2" (uuid ffdf83c2-9853-4498-a1e9-02701ef8e28d)) + (pin "3" (uuid 8cdcfdbd-c86a-406e-bc0c-65dd26998507)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 396.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 564bb0b9-0791-49ea-a3f6-7e34d250f343) + (property "Reference" "U233" (id 0) (at 547.37 387.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 391.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 396.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 396.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3dd80f38-bb8f-4573-b387-6dec0151f510)) + (pin "2" (uuid 7e35989f-8a82-4090-9f0e-a851d07651bb)) + (pin "3" (uuid 4cd9e50b-5bdc-479d-b554-7485f8bf2d54)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 177.8 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5684c4f5-a2ad-49ba-9d1d-eaac44e87581) + (property "Reference" "U1" (id 0) (at 360.045 172.72 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 175.26 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 927b4c47-0981-4133-9a91-96af113414c9)) + (pin "2" (uuid 976e2f4f-943c-4fd5-8a45-46109d9b0335)) + (pin "3" (uuid bd664097-1cc0-436a-9f7e-664b19dc8e50)) + (pin "4" (uuid ea1d21d6-d46e-48dc-bdd5-115a11163205)) + (pin "5" (uuid 4d3f970b-0334-4e6d-a554-be9b1fdacd06)) + (pin "6" (uuid 873b7fcc-e46c-4092-8d7a-7cb1050f4d0a)) + (pin "7" (uuid e2bda0c4-2a4a-4866-9c5b-052cb7e35380)) + (pin "8" (uuid 1ed869dc-58da-42f6-8ca4-1a091dd0f5e0)) + (pin "9" (uuid b72834ca-4fd2-4911-bbbb-051d3508d3f5)) + (pin "10" (uuid 53687bdf-31f1-4efb-ac3b-8d334533b7bf)) + (pin "11" (uuid f8add4bb-f8a6-4a61-b7e2-64af0a6c63d3)) + (pin "12" (uuid ff5eaa65-611e-4ed9-b506-e3a4f64707a1)) + (pin "13" (uuid 77d21252-1695-4939-a08a-b04f3ead2bbb)) + (pin "14" (uuid 6c95f1fe-e7db-49e3-a54d-200a8e9d381c)) + (pin "15" (uuid 7c6cad0b-782c-4375-bdb4-93c51ca13cb1)) + (pin "16" (uuid 21ed484f-1908-4e9d-9da0-732df948bfb4)) + (pin "17" (uuid 760d72c3-dc1b-4eab-bbce-ea892bb5453a)) + (pin "18" (uuid 67ec8013-ed9e-4f97-8fed-a0e54e09bde2)) + (pin "19" (uuid cbbb50a3-e9f7-4e2e-91c7-14cceba21382)) + (pin "20" (uuid cba94d1c-fdce-4dfc-8a5c-55aeee4ad925)) + (pin "21" (uuid bfb2234c-8fe0-483f-8bfd-2b8725487824)) + (pin "22" (uuid 2944c25c-d3ad-4e1d-ad77-6de24d7bc08d)) + (pin "23" (uuid 6f7f8f46-77f8-42f0-abe3-93da5dc86115)) + (pin "24" (uuid 86e5a5ba-c1df-40b9-9035-b3aabaa31d9c)) + (pin "25" (uuid e3b71a9f-9a94-4f55-b3b8-dc34435e0990)) + (pin "26" (uuid 64332ed2-33a9-4b5c-89e1-dde62fa2afc3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 325.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 582e32ff-5223-4610-b5d6-541c81a7e07f) + (property "Reference" "U99" (id 0) (at 459.74 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 325.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 325.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7352302f-abb9-4b5c-ba14-b5695ce3e9ca)) + (pin "2" (uuid 256365c0-3497-42fe-9b29-da080131dac6)) + (pin "3" (uuid d2b27770-ed50-4943-bef5-8396659209b5)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 618.49 753.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 586e02e4-a3d9-47d5-835a-b1742b066203) + (property "Reference" "U255" (id 0) (at 618.49 744.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 618.49 748.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 618.49 753.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 618.49 753.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fdfc1316-c71a-4aff-90f4-d45cbbde2eb9)) + (pin "2" (uuid f13ab5ef-88f2-49ed-957f-39563f0b7729)) + (pin "3" (uuid 24dabb01-f1a3-4fb1-9395-80e1db5f3b78)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 293.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58a442e8-c407-427f-b71d-a375aa1056f6) + (property "Reference" "U224" (id 0) (at 547.37 284.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 288.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1f8f6c5e-a90b-4e75-bec4-de979d0510a3)) + (pin "2" (uuid cdff734d-2472-4de4-b891-54a9055b2cc2)) + (pin "3" (uuid e2b46769-43c4-4c62-9525-0c6a576deaa6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 679.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58acf7ba-e81e-4eef-ac06-b378e492d38a) + (property "Reference" "U64" (id 0) (at 453.39 670.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 674.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 679.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 679.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2462ec4a-77c0-41c1-a952-999b448b1de0)) + (pin "2" (uuid 164a0b25-d2bc-4d33-b24e-63a0fac26cc7)) + (pin "3" (uuid 17d98095-3941-45d2-b3c8-5be22a89265d)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 754.38 749.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58c35572-f1d2-44c3-ad51-8f866a80ad4a) + (property "Reference" "U320" (id 0) (at 753.745 739.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 753.745 742.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 754.38 749.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 754.38 749.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6905dc99-8a5f-4b2a-81e8-50fdc17e3722)) + (pin "2" (uuid 3a8858f6-cd2b-4010-9d89-31f3d60e690b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 716.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 58e503cd-0d99-46c2-8b37-fe1d1106b530) + (property "Reference" "U195" (id 0) (at 541.02 707.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 711.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 716.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 716.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 68ab271a-fd8d-4aed-85d2-62736386512c)) + (pin "2" (uuid f4ed9844-8795-4354-b373-10ea02b42996)) + (pin "3" (uuid 1534a096-e3e7-460e-967d-8f2e3725b887)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 671.83 364.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 591f9113-bb7c-498c-8bd6-e0959e6a7642) + (property "Reference" "U295" (id 0) (at 671.83 358.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 671.83 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 673.1 365.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 673.1 365.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ad5d083-22a1-40d0-bd97-eab1ba067c4a)) + (pin "2" (uuid c11a3c0b-5d3f-4480-bc67-d6c7fdf0bd1a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 636.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5963699d-d70e-45ca-93d7-c0919da65455) + (property "Reference" "U188" (id 0) (at 541.02 627.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 631.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 636.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 636.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 77681060-45a3-4751-96ab-aae9b154f1f1)) + (pin "2" (uuid 4313095d-b8db-4f5b-b89e-5b29a1d05065)) + (pin "3" (uuid 03f89745-d945-43c7-a0e0-b0bd87c4a66f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 586.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5a29a9b9-5708-4116-8f3a-bab1c583b1b7) + (property "Reference" "U56" (id 0) (at 453.39 577.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 581.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 586.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 586.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 877984ab-4624-419b-afe3-503b040014dd)) + (pin "2" (uuid 95cf228b-a637-491e-a5e1-fa32fc72fdbe)) + (pin "3" (uuid 24b46cf8-10f1-49d5-9002-232b0e445893)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 494.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5a9afe73-7241-4392-93e2-3616e2c5345f) + (property "Reference" "U8" (id 0) (at 400.05 487.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 491.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 495.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 495.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c0d9429d-f019-4efa-acea-ad91c0d3f984)) + (pin "2" (uuid 30750808-c4d9-46af-a6fb-731869b41793)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 727.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5b476f95-991d-4ece-891a-b1dc7d28c2d1) + (property "Reference" "U196" (id 0) (at 541.02 718.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 722.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 727.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 727.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bb218a81-9dec-45ea-94d5-6589dd95101c)) + (pin "2" (uuid d33822d8-a5bb-4017-8211-75a497118f7f)) + (pin "3" (uuid 57591abc-7796-48ef-9eff-e181d001c44e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 48.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5b590654-cfe5-4f4c-985e-aa3dbba23141) + (property "Reference" "U22" (id 0) (at 406.4 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f66e20a5-584b-495c-81f0-91533fbe544b)) + (pin "2" (uuid d759e288-4ba6-4fdf-94b4-748a440d9ead)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 143.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5fffdee1-26d2-4253-bc18-e16a51cc5e66) + (property "Reference" "U211" (id 0) (at 547.37 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 138.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 37a93f1d-6871-4535-873b-0e665007942f)) + (pin "2" (uuid 18373948-9086-4b7d-aa75-cee12bd66ba2)) + (pin "3" (uuid fa8d1d5a-d44c-406b-8609-5e052cef5ceb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 360.68 242.57 0) (unit 22) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 61488547-6e4c-4487-91bb-234e110f5479) + (property "Reference" "U1" (id 0) (at 361.315 237.49 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 361.315 240.03 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 360.68 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 360.68 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2eb4e50a-09e1-415d-b2b7-307d4821e243)) + (pin "2" (uuid 1f28e360-7e34-4ea8-b7ee-4f9be2eac264)) + (pin "3" (uuid c0257393-4b5f-41e3-be25-8f1badd24f4f)) + (pin "4" (uuid ad8c6c53-eadc-4162-a768-395148e7d361)) + (pin "5" (uuid 6c8e44e3-bbe1-4316-ad5c-1dc9ebbc6d36)) + (pin "6" (uuid 39788d2d-00af-4e36-91a2-6b800a07ea65)) + (pin "7" (uuid c22352d4-a097-48c4-99b8-33dafba478a8)) + (pin "8" (uuid 19f8d43c-0aa8-4513-9dc1-de283f137b92)) + (pin "9" (uuid be56875e-ae6a-4eb1-b62c-5dbc14f0d61c)) + (pin "10" (uuid d88f1926-a4c7-4ff9-8a9c-4c6e37512e6d)) + (pin "11" (uuid d741287e-a965-4931-b307-c86a77ff1949)) + (pin "12" (uuid c0c4f2fc-906e-4aeb-972d-92d7bb21d184)) + (pin "13" (uuid c099f5ca-a24e-4c11-93a5-610e84092c28)) + (pin "14" (uuid 7adc96f0-2da0-4389-b056-cf136d32a6c7)) + (pin "15" (uuid e5acbe4b-be51-48bd-86ac-547d2db0ec84)) + (pin "16" (uuid 182dfc04-ccf4-4f8e-aaf4-f674a1cd12cf)) + (pin "17" (uuid 0535b0f4-9d13-43fe-99c7-61c1480d5487)) + (pin "18" (uuid ab278759-4235-4614-9e20-b2b6c83cd455)) + (pin "19" (uuid 9e134ab9-3d13-49cc-8fb9-0c9a060d3a95)) + (pin "20" (uuid 5772abab-e517-4952-969e-8d3af17344f7)) + (pin "21" (uuid fc1ae2ac-2264-454c-a7fb-4fe3f76b5864)) + (pin "22" (uuid 03431f9e-173f-4feb-b16d-506c3016b535)) + (pin "23" (uuid 9ff34703-a48d-48bb-b6dd-bed32595dcae)) + (pin "24" (uuid e6f07130-4cc5-4f87-8225-a0b765dd8b6c)) + (pin "25" (uuid f1b607bd-c0af-4398-a277-55846d2c5787)) + (pin "26" (uuid 09c5e660-f76f-4575-8b73-b5a266654691)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 302.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 617a7c6c-f3c9-4dfd-b672-fb46c75ecc7c) + (property "Reference" "U97" (id 0) (at 459.74 293.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 297.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 302.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 072803b4-a311-4e66-acf1-6486ae52afb6)) + (pin "2" (uuid d99b199a-0815-428b-b033-4aacc033c8db)) + (pin "3" (uuid 672dcace-5f2f-4e9c-b11b-b71d64dcb088)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 770.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 618353dc-f86a-4b0e-80ca-aa743c59643e) + (property "Reference" "U72" (id 0) (at 453.39 762 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 765.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 770.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 770.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid db87358f-da13-419c-b109-8434190e5818)) + (pin "2" (uuid 24dc8148-0904-49e3-a5ec-2e9b39971db8)) + (pin "3" (uuid dd0c55ae-8acf-4a05-80c5-4553d31907ec)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 326.39 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 61b286d8-b9fe-4401-a426-e6a60d934f91) + (property "Reference" "U163" (id 0) (at 509.27 317.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 321.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 326.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 326.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 28a73993-6645-4fc8-b3b8-c3b9c94f1d09)) + (pin "2" (uuid b48d921e-0ebb-4780-8c7e-82a120f39d75)) + (pin "3" (uuid f55064bf-f70d-44b1-a76c-ea6c516cbe3f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 370.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 62257028-73a0-41af-a18b-5a378fc96d0f) + (property "Reference" "U103" (id 0) (at 459.74 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 365.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 370.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 370.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a87baa66-4166-46cd-a0c3-3ca8e299b37d)) + (pin "2" (uuid 071a18a2-8d2d-46b4-a12b-0ef6d17168b7)) + (pin "3" (uuid e74574bb-5c70-4fa0-ae29-2493a0d1cf87)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 509.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 628cb8ef-c621-43a5-a095-07071f206711) + (property "Reference" "U177" (id 0) (at 541.02 500.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 504.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 509.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 509.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b8f636e5-f1af-4938-86ec-321426869028)) + (pin "2" (uuid d0bfa26e-dd10-4962-9bc3-e6161f1b761e)) + (pin "3" (uuid 4a46c181-f061-4bcf-a786-baabc0931d10)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 599.44 363.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 629208a2-f05a-44cb-8b9d-81f8b7bd5afa) + (property "Reference" "U247" (id 0) (at 599.44 354.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 599.44 358.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 599.44 363.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 599.44 363.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6e4e7b7e-6ef2-493f-93fa-62072901a5eb)) + (pin "2" (uuid 6d4f3d47-bbfe-4b59-bdcd-3746ebd528bb)) + (pin "3" (uuid 364e9e06-57ee-4bc4-a2ae-13f739e3d783)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 436.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 631a45cf-4fec-4eed-b195-1793c20dafba) + (property "Reference" "U2" (id 0) (at 400.05 430.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 434.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 438.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 438.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76555093-8f1f-4360-b670-5fc811e0b3b4)) + (pin "2" (uuid baa6cb02-8435-4dcd-bd24-b7c22e395a52)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 383.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 632d9437-3d49-4b22-b26f-b1db5933e13c) + (property "Reference" "U168" (id 0) (at 509.27 374.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 378.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 383.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 383.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f9beae84-7254-410a-b9b0-42b56981d1f3)) + (pin "2" (uuid d9de146f-f296-4c3c-bc21-5a7aa6a246ef)) + (pin "3" (uuid 6a24f08e-5fd0-411a-aea6-a98c191c4af0)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 565.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 638e7544-fd62-4796-929c-9ece26b996da) + (property "Reference" "U118" (id 0) (at 502.92 556.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 560.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 565.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 565.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c8510f6b-476a-4444-8a5f-629b4001541d)) + (pin "2" (uuid de41bcb7-ca98-4068-900b-a815b627c342)) + (pin "3" (uuid 3aa7742d-2d1d-464f-98f0-859bdd5305ab)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 646.43 662.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 639bae42-07df-4156-9b76-ca875943edef) + (property "Reference" "U276" (id 0) (at 646.43 654.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 646.43 657.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 646.43 662.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 646.43 662.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad74049b-9cec-4255-bfe3-fd3394dcf613)) + (pin "2" (uuid 0d1b0ae2-f9fb-446d-9d5a-2f775ec85352)) + (pin "3" (uuid 6485156f-f3fe-4d1e-96e4-5486fc96e231)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 662.94 477.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 642ac8e2-3b52-44da-9bc2-2197034fcaaa) + (property "Reference" "U284" (id 0) (at 662.94 471.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 662.94 474.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 664.21 478.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 664.21 478.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f84d82dc-9de3-4a4c-966b-f65f520cfe7e)) + (pin "2" (uuid d84dad29-1433-4a05-952c-5a3d35e90c4c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 350.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 653ff734-db4d-44e6-9d84-90529853b9ce) + (property "Reference" "U229" (id 0) (at 547.37 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 345.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 350.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 350.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7268b75c-9f0a-4351-b834-c26f876ae118)) + (pin "2" (uuid 11f3fb91-484d-4a59-9591-b44c840096e2)) + (pin "3" (uuid eb4f28fb-ee78-458b-9621-adf9dd8976d3)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 754.38 505.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 65b86287-eb9f-44ef-b990-213b7ba3a8a9) + (property "Reference" "U315" (id 0) (at 753.745 495.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 753.745 499.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 754.38 505.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 754.38 505.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e288c8ec-6c88-4cd2-82eb-09d902869576)) + (pin "2" (uuid ccb3f0fa-7917-4b9d-b4a0-4e82b3b66baa)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 359.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 65e08094-4579-4b9c-a28d-44a6a8bbe1aa) + (property "Reference" "U102" (id 0) (at 459.74 350.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 354.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 359.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 359.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ee3197ff-60e1-44ca-91b2-98cd0ac15a23)) + (pin "2" (uuid 875e7c71-edfb-49ea-8e91-75c73e83436c)) + (pin "3" (uuid 9ec152f3-8cc8-44a1-9d7f-46225db5eb1d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 646.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 669a2e10-4ee8-4370-9da5-dff1f4a699ce) + (property "Reference" "U125" (id 0) (at 502.92 637.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 641.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 646.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 646.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e3d51783-8846-4536-878c-57c8cc507f91)) + (pin "2" (uuid 34b7ea85-4dc8-440e-af7e-ec76e6cc1eda)) + (pin "3" (uuid 829b755c-d22a-4a36-aeb6-441f81e8dcce)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 360.68 245.11 0) (unit 23) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 66c35517-0cfc-470f-af40-a8d69e12eb6e) + (property "Reference" "U1" (id 0) (at 361.315 240.03 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 361.315 242.57 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 360.68 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 360.68 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 00cd0979-d941-4f25-b7f5-a133b64492f3)) + (pin "2" (uuid 735c2587-8760-42d0-bf23-ea847ddc82d8)) + (pin "3" (uuid ea099a8c-b56f-455a-8f0f-a515de6ee837)) + (pin "4" (uuid aa9a7c58-046d-4920-be57-b1dba583e6b7)) + (pin "5" (uuid 9816fd01-6acd-4c3b-bc7d-49ae1f3a0683)) + (pin "6" (uuid 957662ce-5840-415e-a281-f4ffbba324f9)) + (pin "7" (uuid 28b3a128-7777-44f8-9062-aba96ba42436)) + (pin "8" (uuid 8fcc535b-dedd-4de5-8de4-a8cd847c823f)) + (pin "9" (uuid 1471b855-e8cf-48b8-bc0c-e014a44dca30)) + (pin "10" (uuid a41441f4-16e5-45e8-b313-8cd117191359)) + (pin "11" (uuid 496991bb-2145-424e-b7b0-bfb83eae74a1)) + (pin "12" (uuid 91778fbc-0603-4f80-959f-0d80eb878467)) + (pin "13" (uuid ce6020fb-1a66-4de1-ba4a-ddcec239acd5)) + (pin "14" (uuid 6f5eb651-94f4-4027-ae47-18c26029d305)) + (pin "15" (uuid 2a270ade-1635-4ab9-888a-dd0065eff826)) + (pin "16" (uuid ad66e06c-9392-4fe7-ae09-af2124888b63)) + (pin "17" (uuid 448e6316-376b-4531-b7f8-43cde2de5f5a)) + (pin "18" (uuid 1417a719-4d6d-4265-9948-7a0441ecaaf1)) + (pin "19" (uuid 6a623edc-cb61-4036-b40f-725ad59c0e44)) + (pin "20" (uuid f3e76d65-f050-4417-a993-11c67c9f0ec1)) + (pin "21" (uuid 8afba65e-a567-448f-9a9e-d9a1440ac55a)) + (pin "22" (uuid f70e2c62-2519-4311-ab6d-11712886f955)) + (pin "23" (uuid e79ea233-4b76-4b4c-9e07-3a6946efcd6d)) + (pin "24" (uuid fa3da394-aec7-402f-917f-e6b2b32cec8e)) + (pin "25" (uuid 81fdb00c-4022-4c1b-9a56-c6dd45c981d2)) + (pin "26" (uuid 3151f39c-0c26-4cb2-b2ec-99d7896cac66)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 132.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67932a25-d3a3-4bcc-b206-fa59eaa5c198) + (property "Reference" "U210" (id 0) (at 547.37 123.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4dff8df3-6c93-4c2d-89ac-f75185302b91)) + (pin "2" (uuid 0063ffb1-a085-4945-a401-65fe5df51e34)) + (pin "3" (uuid 9b6d4669-5dfb-4b4a-ae0f-b511b4cc76af)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 731.52 303.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67a5c330-cb92-4807-936a-2927c6d57f5a) + (property "Reference" "U311" (id 0) (at 733.5394 287.02 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 733.5394 290.83 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 731.52 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 731.52 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8a89f973-1e9b-4dfc-83ef-604589420970)) + (pin "2" (uuid 7677193d-fbce-4d40-83e1-575e3a2943c3)) + (pin "3" (uuid 4cdab8a7-6478-44a3-889d-5a1779c941a8)) + (pin "4" (uuid c4590612-2648-4622-b476-a02cc6440664)) + (pin "5" (uuid 3bbbeec6-7309-4681-8ffe-86bcccf92bf3)) + (pin "6" (uuid 647428cb-50eb-45d5-a564-978f0421bdd0)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 281.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67e38128-52cf-4f60-a37b-601976032f8f) + (property "Reference" "U223" (id 0) (at 547.37 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 281.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 039b0081-3b30-4e41-b19d-8fcb2437ad0a)) + (pin "2" (uuid 7716a9bd-c1a8-4737-adf3-e8802e2ca54b)) + (pin "3" (uuid 5de9a479-4c3a-456e-9553-d06349eab493)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 623.57 179.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6875bb3b-ecff-4fc0-b58b-d78ee9dd18a8) + (property "Reference" "U262" (id 0) (at 623.57 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 623.57 173.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 623.57 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 623.57 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 70304bec-6553-4c8c-be94-2cee9e66104e)) + (pin "2" (uuid 215ec23b-6ea9-4921-8f52-c3929892c9b5)) + (pin "3" (uuid 3a9702e2-25c3-4bd5-a678-22311ddf72e5)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 754.38 455.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 699bb8ad-1ad0-4f5f-886a-543ec5d43c1e) + (property "Reference" "U314" (id 0) (at 753.745 445.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 753.745 449.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 754.38 455.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 754.38 455.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 75da276b-a761-4747-b650-05716ab97920)) + (pin "2" (uuid 871b37c3-cbd9-462f-9881-1dde3692185a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 737.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a11d709-8264-492f-ae0d-b03f83510969) + (property "Reference" "U133" (id 0) (at 502.92 728.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 732.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 737.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 737.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f87c6314-2560-411f-9930-cb92b996c8f8)) + (pin "2" (uuid 4bca4dc2-f404-4592-9bf0-77f192bca715)) + (pin "3" (uuid 573400c8-99f8-4726-b34e-02144b8c0b24)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 166.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a856bd3-45ae-41db-ab22-d7f426898a59) + (property "Reference" "U213" (id 0) (at 547.37 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 166.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bdeff826-40c7-491f-b6ce-72b8d81e2e24)) + (pin "2" (uuid de1b1279-3a88-46b8-af12-a920c6333d83)) + (pin "3" (uuid d2b3b1c6-6be3-436d-a8d8-15012cbd38aa)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 129.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6aad4af6-089d-4ef8-8bbe-3b80150a6717) + (property "Reference" "U82" (id 0) (at 459.74 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8eb7dd33-6b8f-4b34-ad50-50adca0e5027)) + (pin "2" (uuid 7078241d-a6fd-45d0-bd88-9dee35875c9f)) + (pin "3" (uuid 9f3a404f-d1ec-4dd8-961d-fbbc1608c021)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 223.52 0) (unit 19) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6ad2cadb-ce4b-437e-95f4-feff9fd73290) + (property "Reference" "U1" (id 0) (at 360.045 218.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 220.98 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 703ca914-ff0d-47d4-9fee-61dd873074d8)) + (pin "2" (uuid af58757c-99ed-4030-8b4d-16265bccf2a2)) + (pin "3" (uuid 1b3ed76e-6e04-49c5-87ee-139fbc126327)) + (pin "4" (uuid 143fb603-07c0-4560-8ead-10b9ccf8c27f)) + (pin "5" (uuid 8908cca4-ebf6-44e0-9073-ea9021a44c4a)) + (pin "6" (uuid 85874164-8872-4756-a1b6-39e8173424de)) + (pin "7" (uuid 91dd2b72-8c9d-4fe3-871e-b3729161ad7d)) + (pin "8" (uuid 7c41c8bb-8b44-46a9-8447-76492be253f9)) + (pin "9" (uuid 96cfdb37-56c4-4613-b2ce-a439fc6a3fda)) + (pin "10" (uuid 5734dfcf-0413-4d01-9ff4-a1575a7df443)) + (pin "11" (uuid 783569cc-60e7-4e6f-a268-658cf5b87b14)) + (pin "12" (uuid dcad17d9-e2eb-4d5c-afda-d385d0d0c17c)) + (pin "13" (uuid f5f847ae-3646-45c9-9e29-c28a4b1afbf7)) + (pin "14" (uuid d187c55f-6f41-4321-b851-5d36f696ca52)) + (pin "15" (uuid 185ad13b-8158-426f-a14d-2095035a41dc)) + (pin "16" (uuid 724f69b2-2ca1-4ef1-b7fa-d11737cf871e)) + (pin "17" (uuid 911a808f-df42-4279-84db-a9b6ba25fe55)) + (pin "18" (uuid 1d5b19c7-9bd7-4f95-b015-c62a1173b17f)) + (pin "19" (uuid f6de362e-b158-489d-8ae0-1d9a4c0f177f)) + (pin "20" (uuid 8ef2fc97-9b73-43c8-8a7c-8ca5267fc5f1)) + (pin "21" (uuid 73bd70c7-086b-4dbf-b6ba-4af40593394c)) + (pin "22" (uuid 7c0ba152-0869-420c-8a36-9d567715552a)) + (pin "23" (uuid d0dc9b32-d928-4afc-8323-fc686a29d848)) + (pin "24" (uuid 0500c084-2986-440d-b47b-64eb21bbda3d)) + (pin "25" (uuid f6f3e228-7f78-4212-9d7d-af05c28a1b03)) + (pin "26" (uuid d789ef52-3393-45e0-b96e-0b45450a9c28)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 623.57 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6bb3e146-9002-4d8f-aa40-b212707524d3) + (property "Reference" "U261" (id 0) (at 623.57 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 623.57 129.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 623.57 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 623.57 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c1550ef2-3753-49ba-b940-833d12f2fc84)) + (pin "2" (uuid 2de7c610-dbd3-4de5-aea3-d15a713b7537)) + (pin "3" (uuid d9452516-df85-4977-9024-b2fd3e053683)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 577.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6bb7f50d-c97f-4a33-8c25-961f7ecc8027) + (property "Reference" "U183" (id 0) (at 541.02 568.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 572.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 577.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 577.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3092ee3f-6df7-4164-8407-fb1bc6b73304)) + (pin "2" (uuid f4cade7c-c5fd-49c0-8e63-bfd878b5afd6)) + (pin "3" (uuid 5a72c5d5-cab4-41d0-a16a-f96a95646a0b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 713.74 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6c8c50e3-32dd-40c9-85f9-3fa180973a21) + (property "Reference" "U67" (id 0) (at 453.39 704.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 708.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 713.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 713.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 14ab51e4-11ae-4d67-9fe2-01a05415ef10)) + (pin "2" (uuid c4133e87-5399-4622-bc5c-801316fca7ce)) + (pin "3" (uuid d201633b-5b4f-4435-9f7c-2d9951b4724f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 612.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d16c449-8e66-44eb-ba2f-5c397907de04) + (property "Reference" "U122" (id 0) (at 502.92 603.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 607.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 612.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 612.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aff68712-4d70-42d5-9c0e-febd68c5e704)) + (pin "2" (uuid 47f3e5bd-3724-43b3-aa1a-a340e9e6e85e)) + (pin "3" (uuid 7697df8a-6570-410b-8d7a-1f72a15d4fee)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 731.52 351.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d585506-6865-49b0-bb72-8abb4eaa792b) + (property "Reference" "U312" (id 0) (at 733.5394 335.28 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 733.5394 339.09 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 731.52 351.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 731.52 351.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8589d574-8118-4070-9930-be41cbe1b5f1)) + (pin "2" (uuid bdfddfc8-8f08-4407-a8cb-e7dc2005cc24)) + (pin "3" (uuid f2134d97-f203-4408-9ad9-d6443dd12cca)) + (pin "4" (uuid b35af031-4ef1-4c70-8358-65d5e5c81cf6)) + (pin "5" (uuid 1a6086e9-c343-4492-b30d-d3a54726f380)) + (pin "6" (uuid 59037c6f-7f31-4c46-84b8-10de65306c26)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 394.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e9e42d5-8ae7-4b93-b595-1dc8b41164dc) + (property "Reference" "U169" (id 0) (at 509.27 386.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 389.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 394.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 394.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f3696d1f-cd34-495d-b277-3d160c17a8d0)) + (pin "2" (uuid 5a440c5d-7326-4f69-9437-fc454116b428)) + (pin "3" (uuid bf128549-9cc9-478d-b2a9-bc7b0dde06c8)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 622.3 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e9ebc4f-aab0-4923-99d1-676e8f8e3294) + (property "Reference" "U259" (id 0) (at 622.3 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 622.3 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97b80a15-f110-4fa6-afc3-417eefaee149)) + (pin "2" (uuid edd2077a-e31a-4b3a-abce-fb6719f79687)) + (pin "3" (uuid e96c13c8-36a9-4e02-a5b6-e5c985a13df6)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 598.17 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 707ad2e5-73e3-4757-8736-76d987bbd114) + (property "Reference" "U245" (id 0) (at 598.17 124.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 598.17 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 598.17 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 598.17 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b4b36395-1763-4cee-bca7-cd3996013ada)) + (pin "2" (uuid 9a397e7a-5082-4bcf-8fa6-b7461b015a0c)) + (pin "3" (uuid e8e98e12-76d0-46b5-8696-3289317b2e84)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 218.44 0) (unit 17) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 71bf1fac-bacd-43eb-9f6a-b09cd27cf871) + (property "Reference" "U1" (id 0) (at 360.045 213.36 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 215.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a0faea5a-b5da-4bd4-8594-0324adf3ae5b)) + (pin "2" (uuid 9f6daee3-c770-40d9-b773-3e239736a489)) + (pin "3" (uuid 0f98233b-13d0-4d7a-ae40-3336d0b105e3)) + (pin "4" (uuid 331dec50-5015-4a8d-9261-feadab3b83a3)) + (pin "5" (uuid f21ad45b-e6fd-4cdd-8736-1df6c9b2777e)) + (pin "6" (uuid 51fdf3b3-a801-45f1-82e5-26074ad7078c)) + (pin "7" (uuid b17f1831-603f-4c29-980b-8f493138b667)) + (pin "8" (uuid dcc997a3-192b-46d3-b539-bb6f4ea96dcc)) + (pin "9" (uuid 060cfa55-50ad-4b8b-909d-802e972b4b12)) + (pin "10" (uuid 6e4daf20-dba1-4458-9ca7-f58d46212404)) + (pin "11" (uuid 07f4aecb-b1b1-4739-ab65-082d164311f9)) + (pin "12" (uuid 4e1f647f-ca5b-4e3c-b8d3-4cfe1d763bc3)) + (pin "13" (uuid ca9be376-0d2c-4892-99d6-e73beb417fa2)) + (pin "14" (uuid ba82eb9d-6ac1-4f6b-8d92-e8f4305e3fd8)) + (pin "15" (uuid 2e0b955d-0dce-4b11-a97c-be594ae1ac31)) + (pin "16" (uuid d3576f70-4b69-44f7-af8c-917d218ddfd6)) + (pin "17" (uuid 2e7406cb-b753-4259-936e-627556a8bec6)) + (pin "18" (uuid 1ba7a76b-6987-40d6-b31c-ae0c3236ee43)) + (pin "19" (uuid 22edf822-a397-4b40-af8d-b1cd4b7bf08b)) + (pin "20" (uuid d1f2abbd-3f37-4e9d-a53a-f15fc12c6a79)) + (pin "21" (uuid 73cd8b0a-233d-469a-9a19-722ebd901cad)) + (pin "22" (uuid 2fae2b03-0a15-43f4-a4b1-79b60d4b8915)) + (pin "23" (uuid 094dcab1-6954-4061-8ec4-64fcdb4cf3be)) + (pin "24" (uuid a297b85a-5314-49f0-8acb-356c3a942c38)) + (pin "25" (uuid 10d94e7e-319f-4630-be07-e61cdd733b4f)) + (pin "26" (uuid a33a5d0a-b04f-478f-aed7-b910955e6e09)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 590.55 476.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7233905d-b7ab-4090-be24-39967edbad2a) + (property "Reference" "U236" (id 0) (at 590.55 467.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 590.55 471.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 590.55 476.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 590.55 476.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 878f9784-d031-4e2f-9ad2-91766ea8167d)) + (pin "2" (uuid 07404dee-34e7-4c52-be22-591f0e1e89eb)) + (pin "3" (uuid dfc92f7f-95b4-446a-a3ab-f08352c763b8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 304.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 732f9aff-490d-4be0-ae54-497419841021) + (property "Reference" "U225" (id 0) (at 547.37 295.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 299.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 304.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 304.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a108ebe1-4c27-44e7-ba76-7761ac0afa96)) + (pin "2" (uuid b7ed2188-222b-4010-bb9e-5570db50b150)) + (pin "3" (uuid a27026c5-d96e-41b5-928e-e84590156323)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 595.63 226.06 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 73585cf0-f743-4178-b0b8-c14c48818f8c) + (property "Reference" "U241" (id 0) (at 595.63 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 595.63 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 595.63 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 595.63 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2685c001-3d49-46e8-b4b0-f01aa8ed6330)) + (pin "2" (uuid 827d2766-dfc6-4709-a78f-8fb1717af244)) + (pin "3" (uuid 7e28d0db-8840-4ddf-ac34-a4993f773603)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 382.27 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 736b71d5-c8c2-4765-8be3-5d68233f7593) + (property "Reference" "U104" (id 0) (at 459.74 373.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 377.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 382.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 382.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be70f9a3-8d4c-49da-a95a-680b70be2c15)) + (pin "2" (uuid b1e55aef-51d4-4840-adf8-393f7da41b9c)) + (pin "3" (uuid 9b084427-80f6-4432-b62a-36527c3a6520)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 668.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 74b0b887-6b89-4ada-81cb-4eca261845a2) + (property "Reference" "U63" (id 0) (at 453.39 659.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 662.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 668.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 668.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 091a0bdf-3de2-4caf-8209-f3e679f0bfaf)) + (pin "2" (uuid 1e0a4ef0-e676-4fb1-b9f1-c18c72e79bab)) + (pin "3" (uuid 85d301cc-fb8b-4040-90c5-138060f9b013)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 120.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 75e00e78-414d-40cd-ab78-93ea73c51aec) + (property "Reference" "U209" (id 0) (at 547.37 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 120.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1e045c37-7f59-4064-95fa-f8f0483341a5)) + (pin "2" (uuid feee4673-4234-4593-af30-2f51ff4372cb)) + (pin "3" (uuid 03052f35-e063-4fa1-af4d-e93bc92245bf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 693.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 76da5252-dc54-4c9f-94bb-10a4264d4272) + (property "Reference" "U193" (id 0) (at 541.02 684.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 688.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 693.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 693.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 827c9ff9-531c-4a5a-9cb0-560ec94178a3)) + (pin "2" (uuid c265f74f-ad92-430b-9055-bdd17c239730)) + (pin "3" (uuid 30de8eba-9dcb-416c-8e14-d3a84949e55a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 617.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7718aa1d-a14c-4622-a597-de3c6620f80b) + (property "Reference" "U21" (id 0) (at 400.05 610.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 614.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 618.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 618.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2dd39107-2ec7-4818-a43f-11cca9537b6d)) + (pin "2" (uuid 4b25d6b2-8f34-448e-9cf0-3d5e6bfb2ada)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 680.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7759c4f6-95e4-44f2-8e2e-8900c0be82c8) + (property "Reference" "U128" (id 0) (at 502.92 671.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 675.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 680.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 680.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d6d84ca3-4b7d-4916-ba5a-2ce048219114)) + (pin "2" (uuid db60a9a8-f1b9-47d6-ae8c-15539096b7f0)) + (pin "3" (uuid d6674ca1-a90c-42ee-8aae-5ddc37671a26)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 194.31 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 77e805a5-265d-4d24-bdcc-fe99f1f41d1a) + (property "Reference" "U1" (id 0) (at 360.045 189.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 191.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2ce25637-4cf0-4720-af21-c867e35e761a)) + (pin "2" (uuid 938dc7ce-43d7-4eea-9773-b3222379e965)) + (pin "3" (uuid 10f2884f-fbc7-479d-9c10-ba85d8fa3018)) + (pin "4" (uuid 56ba5f11-77ba-40c1-8ce2-a56fa9672b23)) + (pin "5" (uuid 5ae91e06-7a16-48dd-9569-a1492b8e7303)) + (pin "6" (uuid 838ccba0-d5fd-4283-97d9-d6a140df7cdb)) + (pin "7" (uuid dfb4e51b-6be5-425c-9c1b-a185aab26109)) + (pin "8" (uuid 80f6d7bf-bb85-488a-8241-dbc1fa27281c)) + (pin "9" (uuid dbf25a81-cd65-4203-afbd-62d9c721e9eb)) + (pin "10" (uuid c4c82bdd-b5a0-47a4-816e-25115c0c0f28)) + (pin "11" (uuid 9dbcb358-de34-42a5-8e91-722d3742f4d6)) + (pin "12" (uuid dfb0db13-551f-4078-adc6-e194ffa4e09e)) + (pin "13" (uuid f994994c-55e1-4049-9c08-3bc291db122f)) + (pin "14" (uuid be8c907a-f45d-4676-8da4-c5feabd17f17)) + (pin "15" (uuid 4079d8e1-47e1-41db-9b32-ebbf0522985d)) + (pin "16" (uuid 1ceb68a6-f32a-483d-bff6-053b0982bf32)) + (pin "17" (uuid c9d0f446-8728-40a8-9c63-50732babd7cf)) + (pin "18" (uuid 228be98e-8336-41fa-a15c-3d66da50d210)) + (pin "19" (uuid b1a04b66-1e95-4a52-8b91-9dc206ef1c3f)) + (pin "20" (uuid 9a0921ce-a868-4788-8129-128bae831ac9)) + (pin "21" (uuid c53d259c-1797-4e8e-ba3a-d879ed4f42f8)) + (pin "22" (uuid 83a14ef2-60ab-49a0-a04a-0d6e356efbad)) + (pin "23" (uuid 9f2523b5-44fc-43eb-ad67-7c868a65d66b)) + (pin "24" (uuid 46cfd46a-ea36-44b5-aa76-665c1308a204)) + (pin "25" (uuid 9d716589-1b37-4ff9-8502-14c4c19c18ca)) + (pin "26" (uuid 5b2a07f9-a5c9-47fb-8da3-3d4d3f38c828)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 349.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 77e8d856-37d4-46c2-b7ad-196ddb760829) + (property "Reference" "U165" (id 0) (at 509.27 340.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 344.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 349.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 349.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 974c7f13-f823-41c5-8c33-ff85f405e99c)) + (pin "2" (uuid 751082ac-51d9-41ca-b8e0-d065bb0e5163)) + (pin "3" (uuid a5b51097-cc9d-40fc-859e-3bc31b1769c9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 645.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 79320395-7640-4c70-980f-1448799d0f3c) + (property "Reference" "U61" (id 0) (at 453.39 636.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 640.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 645.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 645.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3d97ef19-675f-4bff-8361-7d9b63540555)) + (pin "2" (uuid 97821f4a-bdcc-4a11-871d-cc21fa4d39cc)) + (pin "3" (uuid ecf07356-f85e-4686-b6b7-3cbd066da7a9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 316.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a10b296-df13-4583-9957-fc55b543b455) + (property "Reference" "U226" (id 0) (at 547.37 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 198d612e-de53-4618-b785-8d3157c46a1c)) + (pin "2" (uuid 797446cc-3e0b-4c9c-a925-c1b33d3fb707)) + (pin "3" (uuid c732c7ed-643e-431d-a235-9681e5d383ef)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 596.9 660.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7accb880-6367-40ff-8a44-65074f157a33) + (property "Reference" "U244" (id 0) (at 596.9 651.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 596.9 655.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 596.9 660.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 596.9 660.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7a771ce2-54e3-409d-841c-18af945b0736)) + (pin "2" (uuid 7c826589-36c5-460c-80cc-6974a43f66a7)) + (pin "3" (uuid 8e9d2165-cb62-412a-92bf-b3bccf542cc6)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 124.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7b08206f-4bcb-4d14-bd50-903e211a0ffe) + (property "Reference" "U30" (id 0) (at 406.4 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 125.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 70271fbc-b208-45be-a37b-e7b55ef2be69)) + (pin "2" (uuid 61637510-62f8-4f3f-98aa-a451d32c4c2b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7c0c70b1-8a89-4e52-989e-26604abf2e3e) + (property "Reference" "U205" (id 0) (at 547.37 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 69.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 86023cc3-69d5-4b50-9f21-7129c280ceeb)) + (pin "2" (uuid 35087b2f-f2d4-410c-b0ab-cb0864c51ff4)) + (pin "3" (uuid becc469c-2a5d-4273-9acd-616d52892d4e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 624.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7d133765-99c0-4908-b7e3-274b7ddadd06) + (property "Reference" "U187" (id 0) (at 541.02 615.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 619.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 624.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 624.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17e5cae9-72ac-4d8e-b90e-82353cc756a2)) + (pin "2" (uuid 5e3bb09b-3604-4292-a871-1e5e59270a72)) + (pin "3" (uuid 2a884aae-304c-4a9f-ac15-740762eb84a8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 384.81 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7da8f95c-3c7d-477c-966c-cb54b9329c21) + (property "Reference" "U232" (id 0) (at 547.37 375.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 379.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 384.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 384.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e430777f-7754-4d11-a941-5c15e3dac366)) + (pin "2" (uuid d0b7e138-fe78-44b6-97f7-68505a49a7bc)) + (pin "3" (uuid c16c3a91-ec2e-49ee-a6eb-7316300aa14a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 360.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7e4daf88-fe15-4d45-b7b4-a66c54af2c21) + (property "Reference" "U166" (id 0) (at 509.27 351.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 355.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 360.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 360.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bd8e6882-9357-4ba9-bc56-df25e1c4dcc1)) + (pin "2" (uuid af3251d2-c35d-4dc6-8888-381b8baa6fa2)) + (pin "3" (uuid 5a9f824b-c80c-4877-a91f-72401e12710e)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 754.38 701.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7e6df1e7-bb5f-4e53-92ad-f6cd029e8c5f) + (property "Reference" "U319" (id 0) (at 753.745 690.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 753.745 694.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 754.38 701.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 754.38 701.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b1d90473-a625-4d4b-93fd-7b4e389fe41c)) + (pin "2" (uuid a8ac7080-45be-48ef-bab0-5cebc20845df)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 483.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ee707bb-a6fa-4fea-8c1d-91f435fcb653) + (property "Reference" "U7" (id 0) (at 400.05 477.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 481.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 485.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 485.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 390316de-c50a-42a8-ad75-9e5e060f317f)) + (pin "2" (uuid 47d7ce1b-cd1a-4cce-bd9d-8f80a125a0ba)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 189.23 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8079ba46-d763-428b-b95c-82d35c40d4e9) + (property "Reference" "U1" (id 0) (at 360.045 184.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 186.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 189.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 334a4722-3921-45af-9121-1068bff3d7fb)) + (pin "2" (uuid 58c1e029-05ea-4cc0-bdd4-d0675b9dec41)) + (pin "3" (uuid 8591f3a2-169d-441c-b712-e2f019d630f4)) + (pin "4" (uuid b1b0bf43-6251-4a2e-9cb5-5accf63d68d7)) + (pin "5" (uuid 8aaf0daf-c7a2-4771-9b8d-ccd9ee852841)) + (pin "6" (uuid 9f1db6fb-c671-4b6e-bdae-8c2d65952c3a)) + (pin "7" (uuid d7ae0d8f-5f6b-44e6-acbc-3599e3c0aba3)) + (pin "8" (uuid 979fdded-3626-48de-ae9e-bc8a693c2ff9)) + (pin "9" (uuid dab3f351-af0d-4fb3-9a76-dba3850312ab)) + (pin "10" (uuid f73d724c-480b-4d96-97a0-c4e11f411585)) + (pin "11" (uuid 7266cc08-fe49-445b-9f36-f0c4b33116f2)) + (pin "12" (uuid cfe1ac26-f44a-43ec-bc60-3b6d16a3cc62)) + (pin "13" (uuid 9815a19f-e3dd-4eec-b3e7-dd9b8bec42f7)) + (pin "14" (uuid 3c07a76d-cf11-4554-9e7e-b8aa556618bd)) + (pin "15" (uuid fbaba885-a842-4bc4-82e5-11aa92276ee7)) + (pin "16" (uuid d425c70c-b7cb-45dc-a508-5fa4e7d40336)) + (pin "17" (uuid 5f90c342-f4f9-496d-bc87-1b84530a0cfd)) + (pin "18" (uuid 6f8b4a1b-eb27-4f56-bc95-b292627eee9c)) + (pin "19" (uuid c08a7a6f-71af-4fcc-a845-2b8a315e96ab)) + (pin "20" (uuid 3d21b73d-c108-4bc9-bad5-797a7632dcb5)) + (pin "21" (uuid 3dcd0769-a1de-436e-8d2a-d61146443e4f)) + (pin "22" (uuid 31a44cc2-e148-494c-bd81-a0685392374e)) + (pin "23" (uuid 907280cd-fb02-477c-becf-d3c5176246c1)) + (pin "24" (uuid 38c42eeb-50dc-4fa2-b99a-dd40aec4ff57)) + (pin "25" (uuid f4341652-9bed-4359-ad38-ab7ae7bcaa0a)) + (pin "26" (uuid 2ab3f554-79d1-4273-8d51-b7e4cde8029a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 748.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 81a5fcf3-ac39-44a7-908c-eeee44ea9fe1) + (property "Reference" "U70" (id 0) (at 453.39 739.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 742.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 748.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 748.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a357f691-a4a4-4fd2-a52b-854e768a8e63)) + (pin "2" (uuid 47076295-4b84-479b-b8f9-651329ffd200)) + (pin "3" (uuid 2fadda8b-8610-4b1a-9844-000782b83cfa)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 665.48 753.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 835d5f5f-184c-4670-827f-84c914f9dfc7) + (property "Reference" "U287" (id 0) (at 665.48 746.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 665.48 750.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 666.75 754.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 666.75 754.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2119830f-a1a1-4452-ad7b-61ad55194d24)) + (pin "2" (uuid 296cd5d1-e067-4786-a914-107ea3a98d4e)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 628.65 273.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8439c8a6-4d7f-481a-a4c7-5500f9e6b41d) + (property "Reference" "U265" (id 0) (at 628.65 264.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 628.65 267.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 628.65 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 628.65 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 247c5bec-a78b-4988-b83c-f002d4dcd456)) + (pin "2" (uuid 07d31901-8e4f-4d60-afb4-9d73f3bed0b9)) + (pin "3" (uuid 132efd2d-392d-4068-b3c2-b5f0ecb3be7d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 361.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 84e78b2e-f09b-4412-95e5-7982ccd53f77) + (property "Reference" "U230" (id 0) (at 547.37 353.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 356.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f4af5908-a6b2-4787-8812-9231a364db8a)) + (pin "2" (uuid ab8e69d8-6549-429c-a0c0-e0bc9f00978d)) + (pin "3" (uuid d91e4fb9-b058-40ea-92bf-94bce45a34a3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 160.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 851a7a40-210d-4d3d-8720-624659b5c6ad) + (property "Reference" "U1" (id 0) (at 360.045 154.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 157.48 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5953bee7-2d2d-4a7c-8392-0b3826c58284)) + (pin "2" (uuid 15a3fa92-5bf1-470a-8a22-2445be0124d2)) + (pin "3" (uuid d73600e2-9bf8-4893-a14f-2e19ef311764)) + (pin "4" (uuid 7aabdc54-b8ad-44f3-95a9-baec4a651deb)) + (pin "5" (uuid bb5284bc-b7cd-4752-afcb-309e97321751)) + (pin "6" (uuid c2ddaa07-1534-4883-a479-22733b2934a8)) + (pin "7" (uuid abd1afb4-57cb-4334-83ee-3449cfd2d241)) + (pin "8" (uuid 1168751c-6d00-4cf6-8368-27e8c0f7efd2)) + (pin "9" (uuid f2ce8e90-3813-40df-9283-7acbea679de8)) + (pin "10" (uuid cffa858c-79b0-4eba-be6c-8a218e799315)) + (pin "11" (uuid 94b0d3f8-378f-469a-aad8-0950c568809e)) + (pin "12" (uuid 76c564b3-3b61-48ac-8985-87108468135f)) + (pin "13" (uuid 0a088ebc-95fa-42a1-aa08-396ff2f643cf)) + (pin "14" (uuid ab8b22ab-f884-406c-8334-94aeb27cb0ab)) + (pin "15" (uuid a53a033f-759b-4b99-9964-75bb25d5d305)) + (pin "16" (uuid e0d8ed73-acc9-4cff-b448-3164b2af2b1c)) + (pin "17" (uuid 9cbbba82-8dd8-483b-82d9-c80c80dd1945)) + (pin "18" (uuid 071e3560-4a7c-4962-b7f7-12588e69f81e)) + (pin "19" (uuid 8ec65e47-aed9-44f1-a25a-792a77cd6fe2)) + (pin "20" (uuid e33dbd57-e2fa-4171-b5e5-e28524884fc2)) + (pin "21" (uuid 23de88ee-aada-4417-991c-c311e4d6e8a9)) + (pin "22" (uuid 52439679-280b-478a-8e51-0a6c52f60ff5)) + (pin "23" (uuid ebb549a1-af42-4b95-b303-3acbc9e860e5)) + (pin "24" (uuid 50cf9496-3909-4d46-8821-585033e81391)) + (pin "25" (uuid 7a9bd216-2ca8-4539-b9d8-3d361ed05118)) + (pin "26" (uuid 7ddcfdea-0ac4-4ba4-b9d8-2cfd098f4c3e)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8561bd03-3280-4f30-9dd7-de1a62ee9bef) + (property "Reference" "U27" (id 0) (at 406.4 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 40cda9c9-5a36-4100-80fd-2c605b70c151)) + (pin "2" (uuid bd957953-57ae-49e7-9516-9eaa7b489e7b)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 614.68 615.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8608a4e1-348b-4e0d-9a54-d467ec6c6522) + (property "Reference" "U250" (id 0) (at 614.68 607.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 614.68 610.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 614.68 615.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 614.68 615.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f2f95efa-914c-406e-a5e0-12a56a0f6951)) + (pin "2" (uuid 4d1d1393-cd5a-4ac5-87b6-3c8c661310b3)) + (pin "3" (uuid e95dae61-3141-481c-8c09-122929b5388f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 462.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 88eccc4f-2b79-4251-b807-27ffd580fca2) + (property "Reference" "U109" (id 0) (at 502.92 453.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 457.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 462.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 462.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e1e588ff-6d16-49f2-b7e3-213ef4d980e4)) + (pin "2" (uuid 3992c0b3-809d-463c-bac3-925d245f9326)) + (pin "3" (uuid 2efa6c3c-a62f-4912-9ee3-8917e0837f87)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 588.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 89034eea-8818-4b66-b884-4c5fda69cb54) + (property "Reference" "U120" (id 0) (at 502.92 579.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 582.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 588.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 588.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59e07496-d91f-4e3c-8672-7517fd212bab)) + (pin "2" (uuid 05b3dcd9-2635-4d42-b810-1d49e286f5f2)) + (pin "3" (uuid 4b59a8bb-2ca0-4b59-8d61-1790f82b4a5f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 314.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8a527773-8742-4569-a907-ca568f3f291a) + (property "Reference" "U162" (id 0) (at 509.27 306.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 309.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a8652981-4130-4ebd-9196-65ba1b700cf7)) + (pin "2" (uuid de557344-f5f0-473e-bfc5-2e911b80234d)) + (pin "3" (uuid a8edc12e-4a70-4b19-9c20-13f24af7b7d9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 270.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8a9d82d3-3103-4bff-8bec-6e5b548831df) + (property "Reference" "U222" (id 0) (at 547.37 261.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9029656c-c5c4-4272-ba9b-a4a958babb4b)) + (pin "2" (uuid 71d1c07f-1cac-401b-bc46-b209329fd4b9)) + (pin "3" (uuid 13a11e15-a3a4-42d4-8a88-63688e96e32f)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 641.35 524.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8ae597f2-0e53-49a4-ace4-86f408826e4a) + (property "Reference" "U269" (id 0) (at 641.35 515.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 641.35 519.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 641.35 524.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 641.35 524.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6cf8f98e-430c-4eb4-bbe4-6b9b3bda516d)) + (pin "2" (uuid 37ca6b2a-78c7-44d5-9c19-b3cc459d5c0d)) + (pin "3" (uuid a59c2f09-112a-4fa4-9fbf-7d7e96ba829a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 201.93 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8edb0b14-3b65-4397-82a6-8000959489b0) + (property "Reference" "U1" (id 0) (at 360.045 196.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 199.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92c7cd7f-a3c3-4504-b4c1-e1e14d594a4d)) + (pin "2" (uuid 794ec85c-ef36-4f2c-8c23-f17a44043e21)) + (pin "3" (uuid 413ea456-0eda-4045-838e-9bbe6dfe9892)) + (pin "4" (uuid 7379e5f2-e5ba-4ba9-a246-24ba60acdc63)) + (pin "5" (uuid b9c69fc8-e0c3-4967-903b-7195ca19c668)) + (pin "6" (uuid 3bc6fdff-6c0c-462b-9dda-ed9f033722a7)) + (pin "7" (uuid af1d566a-3ffc-436a-a9ea-4eb7e9b87052)) + (pin "8" (uuid 066c3a59-1835-4d28-ade2-db2f741c2501)) + (pin "9" (uuid 531f7961-83fb-4f86-9706-aea1da8bb04b)) + (pin "10" (uuid c50e8ad0-6c67-405f-a4f4-11626e889462)) + (pin "11" (uuid d032926f-9627-489f-9c7a-7f445d8923cc)) + (pin "12" (uuid 4efaed89-2a55-4623-ac1a-1346edb22998)) + (pin "13" (uuid 4e5b9fca-1a67-4747-857f-bae42bb994dd)) + (pin "14" (uuid 5d35dacb-b04e-4a67-ab6e-4e9359418463)) + (pin "15" (uuid a4214e4a-5e1d-4cda-be73-fbf4105798e3)) + (pin "16" (uuid f7ad5d09-7748-4e73-bb36-b9c602520918)) + (pin "17" (uuid 8ea29f52-4d8e-4094-b5f9-a7a438842a4e)) + (pin "18" (uuid 783526d6-14df-4099-9b33-eaf6622f9973)) + (pin "19" (uuid f019ef2f-d71c-491d-a0f1-8f8bae6478b7)) + (pin "20" (uuid 31c03273-5659-4ce9-a9e5-ca12817bf674)) + (pin "21" (uuid 8889ff43-b109-4faf-9810-ecc06180227a)) + (pin "22" (uuid b02e2a7f-79a1-40de-ba64-2bedf6bcf07e)) + (pin "23" (uuid de293b8c-89d5-4218-8233-91cfafcd2e4d)) + (pin "24" (uuid 9786cc1f-7b58-496c-bc50-b2b1c4e9d7b1)) + (pin "25" (uuid 9aca7d6d-0c25-4e6d-b4d6-9368cadb285b)) + (pin "26" (uuid 676cdd1a-e937-4946-b406-b271d3923282)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 624.84 364.49 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8edb9495-578a-40fa-9077-fe0b48d8d076) + (property "Reference" "U263" (id 0) (at 624.84 355.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 624.84 359.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 624.84 364.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 624.84 364.49 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 373b98e9-b442-4df4-aa76-c75c2e71a507)) + (pin "2" (uuid 0324aff2-b078-4668-914f-69c8dcdfcf2c)) + (pin "3" (uuid 2917a750-b9e3-4942-b27c-9c858261e747)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 427.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 90a601ce-7479-41c2-bb85-2bad45665bb4) + (property "Reference" "U106" (id 0) (at 502.92 419.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 422.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 427.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 427.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 29dfa956-970f-4df0-9bdd-c62bddfcc7d2)) + (pin "2" (uuid f66cea8c-875d-41de-95b0-205e4e7351de)) + (pin "3" (uuid 2bcbd19f-2436-48b0-9fe8-8b719f8aae6f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 542.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 910d7e7a-9ab3-4033-b931-ea03d0954369) + (property "Reference" "U116" (id 0) (at 502.92 533.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 537.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 542.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 542.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 547145fb-826e-4140-acb1-0cb24a1c9081)) + (pin "2" (uuid 0897a5f5-8854-4180-9a00-c826b808f9ad)) + (pin "3" (uuid 1aceac8d-ac59-48a6-ac79-923c5a6cf549)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 920a5088-4340-4eef-b8dc-829b381312a3) + (property "Reference" "U81" (id 0) (at 459.74 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 113.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5090aca0-4303-4f2f-9837-4b07d490f048)) + (pin "2" (uuid 3e111bce-5ca9-4d39-a53b-81bdb0736abe)) + (pin "3" (uuid f3cc6a13-2646-40df-81ef-d6c99671c6fd)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 210.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 92114bb0-90c5-4d5a-b379-e1b966f0dea4) + (property "Reference" "U153" (id 0) (at 509.27 201.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0214ffa4-1f7f-4e9b-a18e-031d4eb1d207)) + (pin "2" (uuid ac655ce8-b5c4-4fd9-8bcd-c3b950e1b604)) + (pin "3" (uuid d5e11b11-1210-4214-861e-0e388a3666ef)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 673.1 321.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 94c63b45-19d7-45b1-a424-857153e4ac03) + (property "Reference" "U296" (id 0) (at 673.1 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 673.1 318.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 674.37 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 674.37 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4686037a-862d-434c-81f3-1c40bbadc300)) + (pin "2" (uuid a7c25f92-a9c5-48ee-8cf4-3b9781c50ea0)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 681.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 950fea2c-0f2b-4966-a096-a3e12911cdb5) + (property "Reference" "U192" (id 0) (at 541.02 673.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 676.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 681.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 681.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fbb90e6b-93cd-49ac-903e-bfe94b7102e8)) + (pin "2" (uuid 34901d69-58a6-407c-89a0-d22222b9d91d)) + (pin "3" (uuid f6f22f94-1edd-4ef6-81bd-a718fe53c221)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 615.95 477.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 959328d5-625c-48dc-bc92-858199ce8a38) + (property "Reference" "U252" (id 0) (at 615.95 468.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 615.95 472.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 615.95 477.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 615.95 477.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid abda8198-1f34-4ea7-bf40-5a95d1d20ded)) + (pin "2" (uuid 5234a99b-c5d1-40be-9de3-c08cd1b3fecd)) + (pin "3" (uuid 4e71533e-55ab-40a4-a571-937749ec0c01)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 642.62 754.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 95f7a862-9564-4382-8ff8-7f90bd77da44) + (property "Reference" "U271" (id 0) (at 642.62 745.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 642.62 749.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 642.62 754.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 642.62 754.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 120d9df4-e258-4e6e-a6b7-feb45b984f8e)) + (pin "2" (uuid 2d331a1a-ceeb-4187-9513-e903cc633481)) + (pin "3" (uuid 32db0eb9-3262-4e2b-87ac-99ddd180d9fc)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 590.55 430.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 970e183f-86c3-4e12-a77e-2fa8a6f167a9) + (property "Reference" "U235" (id 0) (at 590.55 421.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 590.55 425.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 590.55 430.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 590.55 430.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 618be720-0ece-4e5b-bb4a-9556199c2a2e)) + (pin "2" (uuid 692871f9-67ab-443c-90ca-2d36c4d99501)) + (pin "3" (uuid a07a9a27-aa14-487b-b260-12467105bada)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 40.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 986487ad-48ac-4af3-acb0-dc7e94eea7e1) + (property "Reference" "U202" (id 0) (at 547.37 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 35.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e896710a-9e85-482b-8859-c0827cd9ee67)) + (pin "2" (uuid e68d51f9-bca4-4f5a-b3f5-357a82761a97)) + (pin "3" (uuid f3121200-501a-4b9c-9bf5-a391ead6df5d)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 622.3 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 993bcd4a-40af-4a1d-b394-0d10709b9ffd) + (property "Reference" "U258" (id 0) (at 622.3 34.29 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 622.3 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 43.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a367533e-3c83-4342-80cb-e9f133b417db)) + (pin "2" (uuid 206ad648-bdb2-4c83-a942-5bd1a8457a18)) + (pin "3" (uuid 560e940f-071a-45ac-bf78-0a036fd44703)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 502.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 99fa85e6-59d1-42b1-8a81-7dc613afd6f0) + (property "Reference" "U9" (id 0) (at 400.05 496.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 500.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 504.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 504.19 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bbda3f42-185c-4b53-a5ef-d5dc59df14f4)) + (pin "2" (uuid bda084f7-9f35-41a5-b1fd-5b2a41dc31d9)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 222.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9a664ffa-eab2-4149-b2a5-2139735942be) + (property "Reference" "U90" (id 0) (at 459.74 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d19926a2-5100-460f-a38b-cace7f734a99)) + (pin "2" (uuid 6d08388d-e91f-4665-8d75-c1e87ee2659a)) + (pin "3" (uuid 7d0361b9-966b-4503-9cc7-8310911bd290)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 726.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9bf82de6-f8b2-4f48-ba7e-34558dd6bb46) + (property "Reference" "U132" (id 0) (at 502.92 717.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 721.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 726.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 726.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8c837ff0-46d3-4d39-a2ae-7c3326841fae)) + (pin "2" (uuid f13d45ff-c612-434e-8699-317524bc47e0)) + (pin "3" (uuid 15b86f8d-d58c-4d5d-96e1-3a3e4465e777)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 570.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9c0844af-00df-4d23-91cf-358580f694f3) + (property "Reference" "U16" (id 0) (at 400.05 563.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 567.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 571.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 571.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5d8774e8-cdcd-44e6-9114-6c265541ef02)) + (pin "2" (uuid 43f467e7-af85-427d-a423-0614a5f82484)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 142.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9ccb8525-7dcb-4345-b5e1-bb13949fa5fb) + (property "Reference" "U147" (id 0) (at 509.27 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 46add9b6-496c-4732-84b3-65cc3d250c4b)) + (pin "2" (uuid 5acdf674-213a-4539-800f-67d77634a662)) + (pin "3" (uuid 18d35067-2aa8-4a5d-b4d1-9aa500928d1d)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 619.76 709.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9d26d1a3-2dd9-47db-acb9-0225f1a118d7) + (property "Reference" "U256" (id 0) (at 619.76 701.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 619.76 704.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 619.76 709.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 619.76 709.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c36c8774-9dae-4b79-a02c-c1e5f89788b1)) + (pin "2" (uuid f67e66d6-3414-4f0c-8391-979d349b5c30)) + (pin "3" (uuid 8ac9c3a2-32e7-4cdb-add0-1e7e028d3963)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 327.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9d820c3b-1c9c-4154-8ab0-1151e403228c) + (property "Reference" "U227" (id 0) (at 547.37 318.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 322.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 327.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 327.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3c3b6837-9e3d-479e-9bd7-c33615498785)) + (pin "2" (uuid d65f4a25-c209-458b-8314-316ff2c6af65)) + (pin "3" (uuid 52ef0043-a6db-43af-af49-3342a9e61a7a)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 645.16 228.6 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9dc9b504-8583-4bb9-9f81-0f839dd16132) + (property "Reference" "U273" (id 0) (at 645.16 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 645.16 223.52 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 645.16 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 645.16 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1acec4b4-a902-4871-abe2-10e7c2009017)) + (pin "2" (uuid 56cf7752-00c7-4737-af90-e120d3320a9f)) + (pin "3" (uuid 2c9d576d-2906-4579-9d95-28efe8335577)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 593.09 751.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9e979cbc-1a81-4dad-962b-87b6e05b1f4d) + (property "Reference" "U239" (id 0) (at 593.09 742.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 593.09 746.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 593.09 751.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 593.09 751.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4a54f622-efce-48eb-be95-4e63a983e235)) + (pin "2" (uuid 35b975e8-1a0c-488e-95cf-71bdbc0c10dc)) + (pin "3" (uuid e84c60dd-eb70-4850-bad7-0a0d65762fe5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 532.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9ec146b1-d85d-46f6-8e67-dae8af41133d) + (property "Reference" "U12" (id 0) (at 400.05 525.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 529.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 533.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 533.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4195c0e2-4894-4d37-a107-792a43bb86d4)) + (pin "2" (uuid 36fc42a4-933a-4ecf-a9a2-47e4890f1c8a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 464.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a03bc918-34ec-459a-be61-adc3b9b2fc63) + (property "Reference" "U5" (id 0) (at 400.05 458.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 462.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 466.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 466.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 343b8114-d37f-40de-9f77-4e707445eacf)) + (pin "2" (uuid 06bcbe38-5e0f-41b0-ba04-82b7fdea44b7)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 463.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a15681e4-0389-45f1-9e26-ce024dee6f2a) + (property "Reference" "U173" (id 0) (at 541.02 454.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 458.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 463.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 463.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2de62cce-26a5-403c-9787-3be40099676c)) + (pin "2" (uuid 602a9991-0182-4b2b-862b-d24304edb2d4)) + (pin "3" (uuid 3af56dc4-1371-4ba8-a64a-90d1d15729c6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 207.01 0) (unit 16) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1dc095f-bf82-43c9-8bed-8986a4d896d0) + (property "Reference" "U1" (id 0) (at 360.045 201.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 204.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9f112282-488f-47ef-8944-910521971d38)) + (pin "2" (uuid fb99a956-70f9-4636-811f-ef3e812c1766)) + (pin "3" (uuid 20f11507-4329-4f52-b1b1-52df9aa217a5)) + (pin "4" (uuid 0ce52b40-7e96-4586-97aa-a5495aad9d3a)) + (pin "5" (uuid 0d381d51-88b8-471d-9ce3-c26e55b9f3ff)) + (pin "6" (uuid 38a1e86d-66dd-4e58-b227-2a8c0ed2dd0f)) + (pin "7" (uuid 0fd40ce1-b303-4119-9f0e-e7501b809ad7)) + (pin "8" (uuid bbc00ea5-7001-4abd-89aa-19eae61e1c52)) + (pin "9" (uuid fa9a1284-653d-4b45-9e70-a4ba3c9b6221)) + (pin "10" (uuid d545d632-4105-4c8e-8d71-aac246261131)) + (pin "11" (uuid 94c0458a-2aa0-4dfc-9cf4-0fc81dff3c0d)) + (pin "12" (uuid bf806d09-a658-4190-9756-7b4ff20dd7a1)) + (pin "13" (uuid b03ca3f5-9fc5-4ccd-81e5-c1aa9d8c8ccc)) + (pin "14" (uuid 38974975-b7bd-4154-9c8f-253ee5f3948c)) + (pin "15" (uuid 6966ceba-81ee-48f2-871d-25532423915d)) + (pin "16" (uuid daf8d45e-b8b3-4f6a-ad54-13c2de6045c4)) + (pin "17" (uuid cb859de0-3f1b-4e4b-a576-6ae43d53d1e4)) + (pin "18" (uuid 83cc584d-67ff-4d0f-b085-25b836594b78)) + (pin "19" (uuid c87bd742-bdf1-4328-a3e7-79bcb3d92d7c)) + (pin "20" (uuid 6bc4f1c5-b678-432c-b70e-79a74a72f8fc)) + (pin "21" (uuid b5671916-7e2c-4ea2-ab89-e42813bd4852)) + (pin "22" (uuid c0df551a-66fd-481a-9795-3b70e40fdc07)) + (pin "23" (uuid 7c466630-13b3-4f85-88ec-ccd8e2bf6f4b)) + (pin "24" (uuid 53766b1b-7a11-4252-9a31-0c9c52b503b0)) + (pin "25" (uuid 6de67b16-a946-49c3-bf0d-65887adcdb89)) + (pin "26" (uuid 3f198c97-f66a-49ad-aba0-8017dbf75834)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 725.17 692.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a238add2-57fb-49b1-8d3c-2ec4dbdab494) + (property "Reference" "U303" (id 0) (at 727.1894 675.64 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 727.1894 679.45 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 725.17 692.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 725.17 692.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f4a12fc9-1d82-4512-9bc1-7c9320502de9)) + (pin "2" (uuid 8c276eb5-a464-4b4c-a0e5-9ef4a849a65a)) + (pin "3" (uuid 5a597f83-b12a-43f9-be56-24b1554a9fe2)) + (pin "4" (uuid 0b95089a-5e64-4215-9275-1434b2adb926)) + (pin "5" (uuid d9e80f67-89f0-4e5d-b9a6-1eac88b61978)) + (pin "6" (uuid cf706363-2ba4-4f91-bb8e-21dc0e1f02d1)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a3098600-ce35-41db-9f3a-dd8b3019fd27) + (property "Reference" "U26" (id 0) (at 406.4 80.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 87.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 214bdaed-eb7d-40cf-aa08-cf2a6dc17ff0)) + (pin "2" (uuid 41424a40-525c-4c2d-adc5-168b2e4657cf)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 200.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a3855b19-3e2b-40d9-bcfc-2eba6859ce3b) + (property "Reference" "U216" (id 0) (at 547.37 191.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2a4ee282-af49-4193-989c-965b62be603e)) + (pin "2" (uuid 205a3c5f-3f23-4064-8cef-0e062f5c3a2e)) + (pin "3" (uuid 04c2bccc-b5de-4513-878a-93ba88061894)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 646.43 90.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a3e1ad0e-3ca6-4be9-8726-4601f89f819e) + (property "Reference" "U275" (id 0) (at 646.43 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 646.43 85.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 646.43 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 646.43 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3c27946a-d2b6-4b69-b7ec-5c3453ff2253)) + (pin "2" (uuid 8a2373cf-6b09-410f-9d64-cd6d7ba7489c)) + (pin "3" (uuid 9e2898a4-e691-4e00-9234-0e7c20ebd1aa)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 669.29 43.18 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a40c52cf-f82b-4424-859a-c0adf66e186d) + (property "Reference" "U290" (id 0) (at 669.29 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 669.29 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 670.56 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 670.56 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3fb308e1-b6ae-4b7c-904b-f8c6e4fed09f)) + (pin "2" (uuid b15d3962-f172-40e9-8f94-4b1a6432c58f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 566.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a4292883-7941-4446-af8c-8a09ac8b8980) + (property "Reference" "U182" (id 0) (at 541.02 557.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 561.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 566.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 566.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 40c18056-e5c8-4ba4-a3c8-b480d90a3172)) + (pin "2" (uuid 0e6296d2-915e-4fcf-9cc7-0eb20a70be80)) + (pin "3" (uuid 96051782-44d7-4003-9374-ed878fcef888)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 279.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a4e8f904-b45a-4b79-ba29-a7c3a667f363) + (property "Reference" "U95" (id 0) (at 459.74 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 279.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 285850b1-29a1-4e4e-8362-05c05b052f31)) + (pin "2" (uuid 94c58638-c2e6-4d00-90b6-2f5cc2b0bac1)) + (pin "3" (uuid 3a1bbd0f-c35c-4728-b40c-5778546dd606)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 704.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5adb2cc-fcb8-4f50-9d35-7bd1f2177f2b) + (property "Reference" "U194" (id 0) (at 541.02 695.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 699.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 704.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 704.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1b723600-be57-4359-bd15-44a234403d1a)) + (pin "2" (uuid 5bcc61cf-fe48-42b5-8197-f67d871c696a)) + (pin "3" (uuid 27377810-1cf5-43df-b558-755fe35a2dfb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 692.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a6612126-5596-42c6-9494-cb24036f4706) + (property "Reference" "U129" (id 0) (at 502.92 683.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 687.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 692.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 692.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 385ca997-61e9-4c1a-a8ec-2b520c8f98ae)) + (pin "2" (uuid 45da4e1c-f8b4-4fcc-af63-726ac8d09175)) + (pin "3" (uuid 71675423-e5f3-4a2b-ab14-4d8f3499eb12)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 725.17 496.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a74aed23-dc25-4a89-aa0a-2ae52d3dae70) + (property "Reference" "U299" (id 0) (at 727.1894 480.06 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 727.1894 483.87 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 725.17 496.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 725.17 496.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a4470c0-0eee-4841-8b79-d4abaaa01e54)) + (pin "2" (uuid 04f64e19-6a3f-4948-8d8b-f418b20fa9cf)) + (pin "3" (uuid f1c567be-fc67-4c3c-b5f0-012ea0c33bb2)) + (pin "4" (uuid cbd94deb-91bd-440e-8a5c-ceaf4323761c)) + (pin "5" (uuid 232a6c13-8fbd-4ab3-b66c-86063bc23d9b)) + (pin "6" (uuid fddf3711-586f-4be0-8016-1083baeda1d8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 543.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a766ffd0-18a0-4b75-a636-254d47e996ea) + (property "Reference" "U180" (id 0) (at 541.02 534.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 538.48 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 543.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 543.56 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 62cf26ac-4a65-4f40-957b-21fc0a64d134)) + (pin "2" (uuid 97d7d796-9ffc-49b2-834f-f1e2e646278b)) + (pin "3" (uuid fa61033a-32bb-46a4-8ee0-702110e185d9)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 598.17 177.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7b64e1e-11ff-44f0-b3d6-5ec5de0c9607) + (property "Reference" "U246" (id 0) (at 598.17 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 598.17 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 598.17 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 598.17 177.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3b133815-0d5a-408a-848a-a44bd4b8d781)) + (pin "2" (uuid 9f3c58f6-d0fa-4fb3-8604-d7d511df8c70)) + (pin "3" (uuid 60e3058f-49f7-4a58-9d4f-46e1ded2d5de)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 759.46 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7d6439e-b3f9-4f9b-8bb5-64cc241c095e) + (property "Reference" "U71" (id 0) (at 453.39 750.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 754.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 759.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 759.46 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f0c700b3-9efe-4e2c-9e91-64b8f19ba26c)) + (pin "2" (uuid 31f01b39-93ab-44cf-bff4-9a6d3765ea83)) + (pin "3" (uuid a3c2e7bc-589e-44c5-a248-6d4512870ad5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 521.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7fdc3cd-f546-4c49-ac4e-16aa25dfc118) + (property "Reference" "U11" (id 0) (at 400.05 515.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 519.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 523.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 523.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 79bd3aab-1ab2-408d-b212-fc8c6741836e)) + (pin "2" (uuid a2c74a7d-91dc-4fc1-9f37-a350339b5dce)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 541.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a843d2cc-c50c-4cf2-af62-d4992a6784b6) + (property "Reference" "U52" (id 0) (at 453.39 532.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 535.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 541.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 541.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b7cdc1e5-a18f-42c1-94b8-d95d645d58d3)) + (pin "2" (uuid c76abef0-f30f-4138-b5b4-427b7db8621b)) + (pin "3" (uuid d8bc78cc-fa57-421a-9b92-4d25a139757e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 224.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a8fb0ee5-9a58-4567-b3c3-2076267e60e2) + (property "Reference" "U218" (id 0) (at 547.37 215.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 219.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cf570ead-09bb-4243-8787-8fafd6e6e21a)) + (pin "2" (uuid cb46c232-f637-4b47-a5ec-5998b568865b)) + (pin "3" (uuid 6e662681-8a7a-46b5-a03f-b00ca8001435)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 760.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aa8b36a9-069d-4acf-aef2-16124aa6a642) + (property "Reference" "U135" (id 0) (at 502.92 751.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 755.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 760.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 760.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c6d26bfb-219d-48c3-a79a-4edcb44c17b2)) + (pin "2" (uuid de06ac1f-5888-4ad7-a42b-7848274a512b)) + (pin "3" (uuid 600d6642-bffe-4b1b-b960-f779c104a1e7)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 668.02 227.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aa8e3434-8def-4b35-94a3-10d99f3913a4) + (property "Reference" "U289" (id 0) (at 668.02 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 668.02 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 669.29 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 669.29 228.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 52e347db-2b73-45a2-a04a-7c9dc0812f2b)) + (pin "2" (uuid c561eea7-3b93-4aca-b267-c409eeb53f97)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 648.97 365.76 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aaf834a9-794d-46c9-a44a-5ac6e464d6ae) + (property "Reference" "U279" (id 0) (at 648.97 356.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 648.97 360.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 648.97 365.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 648.97 365.76 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d9648947-21ca-43c2-8a62-441f3e7ceebf)) + (pin "2" (uuid c5f56615-a65f-473d-b328-60b876eabe09)) + (pin "3" (uuid ee093d51-0422-4761-85c6-207facf533a8)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 591.82 521.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid abde3564-a226-4e01-b813-8d079010d6d8) + (property "Reference" "U237" (id 0) (at 591.82 513.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 591.82 516.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 591.82 521.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 591.82 521.97 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7948e480-91be-4662-a717-4398678e5559)) + (pin "2" (uuid 92cd03c4-e592-466f-b142-85958fbc1734)) + (pin "3" (uuid 7e25a96d-b871-48fc-87c5-9dffb0e1d2f5)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid addddca3-f72d-4c1c-8513-62c1979a50df) + (property "Reference" "U80" (id 0) (at 459.74 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 27e80ea3-585b-4f5e-aba1-8f8843243a8c)) + (pin "2" (uuid 44c78f59-9674-444b-ba73-c96a2ad36452)) + (pin "3" (uuid eff2f235-8a9b-4238-92fb-a4877c10a66c)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 754.38 553.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ade1b5ae-8a60-43ff-bd0c-7342e4700bab) + (property "Reference" "U316" (id 0) (at 753.745 543.56 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 753.745 547.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 754.38 553.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 754.38 553.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3bb4bf2c-2fe0-486b-bbe7-dd5ebc99481e)) + (pin "2" (uuid a12acb68-1bb3-468e-be76-c1bd85541cd1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 803.91 227.33 180) (unit 26) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ae6c4c76-0db0-4892-89ad-78c1b2fb937f) + (property "Reference" "U1" (id 0) (at 807.72 226.695 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 807.72 229.235 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 803.91 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 803.91 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 81c993e6-23c1-4d2f-a44e-851895fa2c28)) + (pin "2" (uuid 118f1356-98c8-4fc0-baa4-001a482452cc)) + (pin "3" (uuid bc12852a-6f34-401d-b97b-c517f230c378)) + (pin "4" (uuid 77a7fa51-541a-4f7a-80cb-29daec6fc557)) + (pin "5" (uuid 850e6547-f151-4e8c-9240-efa4f8b3a4bc)) + (pin "6" (uuid b8d9d236-e79f-45c9-9713-dc75575fea86)) + (pin "7" (uuid b36be06a-34e8-437e-9006-637c02414561)) + (pin "8" (uuid 2261a102-de83-4507-891b-792d75fa4c95)) + (pin "9" (uuid 8c49c783-bc21-4d9e-be76-8dfe16adaefc)) + (pin "10" (uuid 78fe7031-cc95-478d-a00b-d09194f7b361)) + (pin "11" (uuid 025ff48a-aeb6-441d-9090-29864a9285e7)) + (pin "12" (uuid 82740536-33d8-41b2-9478-002c89954686)) + (pin "13" (uuid 24b8f8d8-e647-47aa-83d8-41378f5b9767)) + (pin "14" (uuid 0185e9e1-0de1-4e3a-bdec-40b1ce26680a)) + (pin "15" (uuid 43081ab4-88d8-45a1-b990-dc26b942aa07)) + (pin "16" (uuid b1cbfa19-0c8e-489e-8fea-30d4076843de)) + (pin "17" (uuid eb680a49-4004-4ab4-ac1a-a1306afa075c)) + (pin "18" (uuid 59570f60-d351-49f0-bc05-8c4bc698f082)) + (pin "19" (uuid c6606304-dd57-4c22-afe6-2a8a0d8b3d6e)) + (pin "20" (uuid 46db7c80-1892-4dbb-82b9-d312297a4a70)) + (pin "21" (uuid 4ad321b4-0c48-4771-b847-313973128bca)) + (pin "22" (uuid 56546aa0-e7d4-42b4-bf6d-9f9908424957)) + (pin "23" (uuid 797499ad-6f34-4d57-a90c-696747e0866e)) + (pin "24" (uuid e88b0511-99c2-469c-b317-e3bc8fff1aab)) + (pin "25" (uuid 927bdeb6-7458-4051-996f-c34de8cc3336)) + (pin "26" (uuid 7503bcc5-9940-454c-84ce-97fbb4ccee60)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 455.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aee1d473-db6f-414a-b7b3-252115e2f81e) + (property "Reference" "U4" (id 0) (at 400.05 449.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 453.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 457.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 457.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 208c0e2d-cb03-4553-87f3-2138bc3b4667)) + (pin "2" (uuid 1b0eb204-7733-4b3f-b3ac-67ea6b6eabbc)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 508 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b028e5fe-f41a-495f-b79d-70ca3b66c141) + (property "Reference" "U113" (id 0) (at 502.92 499.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 502.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 508 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 508 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b85d34ec-71c2-4718-beb5-bddd8c3fa701)) + (pin "2" (uuid d3b71ed5-f2ed-4e6f-ae51-7379507270f9)) + (pin "3" (uuid 40642afc-d216-49e4-a827-bb1db4d205e6)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 635 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b0b167b1-ea3c-4483-81b1-5505a95553c2) + (property "Reference" "U124" (id 0) (at 502.92 626.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 629.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 635 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 635 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 419a20ab-2bcb-44f7-8baa-2b89814e290c)) + (pin "2" (uuid 85d31f74-b47f-49b7-a727-cd2fd724e994)) + (pin "3" (uuid f2aa13d4-f992-42df-98bf-080a55c52ca4)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 518.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b1c9a5f4-379c-49b7-be7e-0d4cdfd150cd) + (property "Reference" "U50" (id 0) (at 453.39 509.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 513.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 518.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 518.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d77254d3-dc3a-4fcd-bf57-a7f5ea1c22be)) + (pin "2" (uuid de607b20-d59e-4ee6-9d9e-fbdcd42de8f6)) + (pin "3" (uuid f903bde6-5704-4d5f-aefc-4e204cd2d1ce)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 640.08 478.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b2376692-23ee-45a6-aa41-5080026000be) + (property "Reference" "U268" (id 0) (at 640.08 469.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 640.08 473.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 640.08 478.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 640.08 478.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4196aa08-0bdb-4b30-9704-160765f24275)) + (pin "2" (uuid b34837ac-32c5-4baa-8544-9875b0c18410)) + (pin "3" (uuid df2da67b-4051-4867-8465-6312e29e6158)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 247.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b2c078d3-8c47-40cc-96dd-ec75fae5b791) + (property "Reference" "U220" (id 0) (at 547.37 238.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 242.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 447aba64-ae53-4111-9933-5b362930964e)) + (pin "2" (uuid 1c5123bc-e7ff-42ac-9827-859ef5807322)) + (pin "3" (uuid 0c925e05-6855-4216-b7ca-0e1de5bd2e29)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 60.96 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b35d1d06-2adf-4b3b-9324-f646a67a88cb) + (property "Reference" "U76" (id 0) (at 459.74 52.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 55.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 60.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 857e35ca-69fb-48db-a8c3-73afc5e962a8)) + (pin "2" (uuid d5a17abf-7366-453c-9e20-f0576a46b7de)) + (pin "3" (uuid ad7e317b-f658-436c-b7cd-e06afd3ae576)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 589.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b3acd876-d05c-4d0f-adaf-c2d12c485f06) + (property "Reference" "U184" (id 0) (at 541.02 580.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 584.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 589.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 589.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e7071a3d-f554-45f1-81e9-854e1479a735)) + (pin "2" (uuid 1903906c-8627-44be-a554-6d2826a8fc61)) + (pin "3" (uuid 14d656a2-943a-4fc1-a6bd-c146b35d6441)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 50.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b41c35d4-05d7-4ce0-938c-1da9903adafd) + (property "Reference" "U139" (id 0) (at 509.27 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 45.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5fee44e5-2d55-4601-90e9-1c42707eb860)) + (pin "2" (uuid f57e5653-87e2-45f2-b4e5-d4a6a66bc7fc)) + (pin "3" (uuid b196d227-b2a1-4ede-a7c7-164ad749af69)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 670.56 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b539d317-ec5a-4ed8-be1b-05c64a6c0698) + (property "Reference" "U293" (id 0) (at 670.56 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 670.56 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 671.83 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 671.83 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c3b97604-093a-4069-b117-3056416e48b8)) + (pin "2" (uuid 7a43329e-d04e-4c46-a1d5-a1adc52398af)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 675.64 273.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b5a26d38-875c-4df8-bc9b-9551d4a034a0) + (property "Reference" "U297" (id 0) (at 675.64 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 675.64 270.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 676.91 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 676.91 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5fe43f2c-8ddd-40df-9995-39b8454f009e)) + (pin "2" (uuid ff68583a-ec15-4c54-8944-d26e8bc1b8a3)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 659.13 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bad40b99-9af1-4c5d-9160-242c4a2be07c) + (property "Reference" "U190" (id 0) (at 541.02 650.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 654.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 659.13 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 659.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b92159d0-9ab2-4c13-9116-6d625d3c4ac3)) + (pin "2" (uuid db7395f5-4eb8-4b9c-85e5-4d80ccb1869a)) + (pin "3" (uuid 2560bd76-c64c-44d1-a402-840fb15bb8aa)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 226.06 0) (unit 20) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc71b65d-4738-472f-a8fa-8ff80413e356) + (property "Reference" "U1" (id 0) (at 360.045 220.98 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 223.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9f976656-e898-4557-99c6-e17a5fbe89ef)) + (pin "2" (uuid 4af9038a-a94d-4cf4-ba7f-2caf19f7af20)) + (pin "3" (uuid d9196fa0-f8eb-4cbd-a0f4-0ba11c702ce9)) + (pin "4" (uuid 33137f98-6349-4686-8aff-f080d481edec)) + (pin "5" (uuid 3d24b815-c9ea-41f0-b26e-993c527e505c)) + (pin "6" (uuid f4d7a02d-416e-4de6-a6fb-c96f5ecb8673)) + (pin "7" (uuid 951e5fe8-ac78-4ba0-8dc0-9d922d79d4cc)) + (pin "8" (uuid 25f4de2c-2e93-4458-8b28-cecab142b035)) + (pin "9" (uuid c0487fcc-b221-47da-88ae-d64399efa9ed)) + (pin "10" (uuid a93347d1-4c9f-476e-9a1c-f4fc06e806f8)) + (pin "11" (uuid 84a88604-2576-4f9f-999a-453f0923a82d)) + (pin "12" (uuid 00a88588-a7da-4c50-b369-126b4b812f4a)) + (pin "13" (uuid 08a4c7f3-8ce2-4f6a-aba0-23be83e1389a)) + (pin "14" (uuid a6090a18-e916-48b0-bd3a-89c98ed4e666)) + (pin "15" (uuid c7fabe37-06e7-471d-8727-ec71560b735b)) + (pin "16" (uuid a3af5c86-59c4-4d55-b29e-61deac235f19)) + (pin "17" (uuid 54349074-b465-4479-ad56-2c4dbff24a78)) + (pin "18" (uuid 0bb820f8-4a37-4715-b028-b049fa686f97)) + (pin "19" (uuid 886a279a-faa6-404d-ab28-485e068a8417)) + (pin "20" (uuid cf5811c9-b711-4101-b788-76b22c70d218)) + (pin "21" (uuid ff3c9f18-8966-4951-9341-017c9e065940)) + (pin "22" (uuid 970bede7-3f90-4921-9943-0e481aa85be2)) + (pin "23" (uuid 356fa66f-9e93-489d-8e34-81686ee9bb6a)) + (pin "24" (uuid 8c133055-e9a6-460a-b3b2-4a16990b4611)) + (pin "25" (uuid 0e7eac98-d256-4b0e-8a0c-293fa5ddbdfe)) + (pin "26" (uuid 859a1f4a-9363-44a6-98a6-4004c22c819b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 762 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bda5fcf7-e8b0-4f22-936e-398d02276f91) + (property "Reference" "U199" (id 0) (at 541.02 753.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 756.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 762 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 762 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9107899a-aed9-4258-9403-2d7ef75ae8c9)) + (pin "2" (uuid 19d3b43d-2634-4f4b-92b3-c3dad8f72eec)) + (pin "3" (uuid b6a79c91-428d-4593-81f1-8596f468ef0e)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 715.01 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bfdce68b-94c1-4841-abe8-44677b974eb3) + (property "Reference" "U131" (id 0) (at 502.92 706.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 709.93 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 715.01 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 715.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a7086234-7ae2-4a48-b7f8-09e33b5bdfbe)) + (pin "2" (uuid 7eb65a40-4bf0-4b6f-9a2f-66dd10ec2dd1)) + (pin "3" (uuid 4a6441c8-5d34-4f1c-9c7f-9ba2df0c8b73)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 485.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c0aa91e1-e51d-4562-8ebd-baf2de4dab06) + (property "Reference" "U111" (id 0) (at 502.92 476.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 480.06 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 485.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 485.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a34aa02-3dcb-48cc-8115-626ab26cd0af)) + (pin "2" (uuid 179196cd-cff8-4543-b865-4939be5d644f)) + (pin "3" (uuid 861e387e-9afc-4519-9a09-bbb505be6cc4)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 594.36 708.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c2f06fab-3667-4377-bbbb-2a410089f3b8) + (property "Reference" "U240" (id 0) (at 594.36 699.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 594.36 703.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 594.36 708.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 594.36 708.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b644416b-b8b2-46bd-8f03-241b1c50e0db)) + (pin "2" (uuid ac1adfd7-a8ef-460e-8784-89d52dbdfbb4)) + (pin "3" (uuid 77d246cb-fcd7-46c7-8195-8d621609c26a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 57.15 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c4bdc415-267f-409f-8377-0190e5a8aa02) + (property "Reference" "U23" (id 0) (at 406.4 50.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 35902d6a-755d-4e1a-b5c5-128b4f7501f2)) + (pin "2" (uuid d38c9883-185b-41c5-904e-aeeab92bbcf7)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 803.91 209.55 180) (unit 24) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c5c1e2e1-98b0-4c0e-995e-d87d74419ae2) + (property "Reference" "U1" (id 0) (at 807.72 208.915 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 807.72 211.455 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 803.91 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 803.91 209.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fb921ede-068a-42bb-a8e0-158fc8ce89cb)) + (pin "2" (uuid 48def83f-2776-4705-b9d0-70e149747ccb)) + (pin "3" (uuid 8f26a767-fbac-48aa-b4a1-d6b5ee26690e)) + (pin "4" (uuid 004e22d1-e63c-4f09-a7a2-fd4c50a246ae)) + (pin "5" (uuid 7d4de6aa-e7ff-4493-bb02-d19c39f1ca5e)) + (pin "6" (uuid dc95317c-39c3-4f43-a44f-88ffacdc4182)) + (pin "7" (uuid 433ad524-578a-4ebf-ba40-36da3b272aa4)) + (pin "8" (uuid ed8b0a37-b9df-44cf-bf01-7fa5a3902056)) + (pin "9" (uuid 52f12ab2-7af9-483c-b397-81f4f2452704)) + (pin "10" (uuid 129d5629-ea5e-4825-8a0a-00a640d60158)) + (pin "11" (uuid f053295e-1b6b-4b37-a637-7c8dc0953868)) + (pin "12" (uuid d832c10a-0cbb-48cb-bdd9-127526ba1184)) + (pin "13" (uuid e491e4f9-d6f7-4c0f-9031-7df2d51eebe0)) + (pin "14" (uuid bb187e85-e8e9-483f-912d-fb3c57eabf07)) + (pin "15" (uuid 42e71c2c-c807-4795-8d3c-bef709a12a6b)) + (pin "16" (uuid 300ce4d3-f061-4d12-acf2-12ff03b1a26e)) + (pin "17" (uuid 3f621624-7fec-4c88-90e0-01a1476289bc)) + (pin "18" (uuid f6400df9-23f4-4716-81df-6d71b2cb7cde)) + (pin "19" (uuid 216f1568-396a-48ab-bd2d-10a9b24228a0)) + (pin "20" (uuid 8b57a2e4-77b1-4cdc-9267-50378e98ce26)) + (pin "21" (uuid 2692f99f-96ca-4f7e-b994-54739034ed19)) + (pin "22" (uuid f59b96dc-4689-4dec-b48c-c5e41af9e1ad)) + (pin "23" (uuid 807a44b1-e184-4a41-9140-959a400726e0)) + (pin "24" (uuid f6ae7e27-b571-40b0-b9ba-37e9749ece34)) + (pin "25" (uuid 022d8c0a-2bbf-4dfd-bcfa-913e720c3782)) + (pin "26" (uuid 6dc52c77-9ae2-4685-96cb-6d8a6543ef88)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 86.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c62e045f-51e8-45e8-b1d7-4fc9627c35e4) + (property "Reference" "U206" (id 0) (at 547.37 77.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6071bf4f-f53c-4c72-92c8-ce676c929e10)) + (pin "2" (uuid 52b1b304-dffa-4661-b5c8-8c49210459d3)) + (pin "3" (uuid 2452d3f1-d0aa-49b3-982d-6bc8d17089a1)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 731.52 156.21 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c69eb76f-0b5c-4581-815c-980e53f67437) + (property "Reference" "U308" (id 0) (at 733.5394 139.7 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 733.5394 143.51 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 731.52 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 731.52 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 09e3e383-50ee-4d42-9887-81fcc79e9170)) + (pin "2" (uuid 7dfb9bf1-673e-4f75-bcf9-3e0428ab6019)) + (pin "3" (uuid ecd4ea88-af0a-44ca-a6d7-61033ee87209)) + (pin "4" (uuid dff3dd83-7fab-4a78-b4be-02c9868011f8)) + (pin "5" (uuid fe00387f-684a-4581-90a2-654202ed8154)) + (pin "6" (uuid b15c4eeb-13ac-48a5-b621-a6a72a5acda5)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 181.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c75e769b-46f9-4e23-851f-cdbb2889780f) + (property "Reference" "U36" (id 0) (at 406.4 175.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 076ac6c9-8f81-4ab7-9a72-8b4f38d6afb5)) + (pin "2" (uuid 52e45be6-2169-4bfd-b847-86a1e2c8422a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 610.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c843431b-2d06-4a1d-b7a0-84d9e9e18077) + (property "Reference" "U58" (id 0) (at 453.39 601.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 605.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 610.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 610.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 57941fee-e67c-4991-9a92-281df7f9d617)) + (pin "2" (uuid 25dad809-655c-4eac-8457-f3f140a2dd4f)) + (pin "3" (uuid 97533501-2f69-481b-bcd9-879122e4fc6d)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 725.17 447.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8885749-1dcc-4a71-a46a-19b33b374743) + (property "Reference" "U298" (id 0) (at 727.1894 430.53 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 727.1894 434.34 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 725.17 447.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 725.17 447.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3ab8f360-9777-4f3e-bd64-820b7fd98b39)) + (pin "2" (uuid 0f912725-cc90-4916-b030-eedd34819286)) + (pin "3" (uuid efd1d0d8-5d9e-4998-83b4-76d7988ad271)) + (pin "4" (uuid a2976ce2-ccb6-4f53-a8ca-f24809e9bcfe)) + (pin "5" (uuid 294f0721-b4de-4ed8-b276-6581f033a635)) + (pin "6" (uuid ebf21426-af1e-497d-a233-01eef7990f90)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 725.17 789.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c90cc639-5a55-4b0b-b528-6d5df8fe30cd) + (property "Reference" "U305" (id 0) (at 727.1894 773.43 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 727.1894 777.24 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 725.17 789.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 725.17 789.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3a3c318b-a05f-47d1-bde0-5aa1ebcba165)) + (pin "2" (uuid 13ede036-d1d6-4fa8-b5af-31180f0ef77e)) + (pin "3" (uuid c6ef4d51-d9b2-4bea-a718-d528100a369f)) + (pin "4" (uuid e92b5645-8e9b-49f0-b471-198af2871abd)) + (pin "5" (uuid cace39f1-5598-4abd-8fc6-8fc4b46a3d06)) + (pin "6" (uuid e4a26639-abbb-44fb-84b8-056eaafaf102)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 782.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cd003c58-3342-420e-a45a-75b769cfe47f) + (property "Reference" "U73" (id 0) (at 453.39 773.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 777.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 782.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 782.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ba3f787e-1be9-41d9-9276-beed0032799e)) + (pin "2" (uuid 8e6cf0be-cac2-487c-b54a-164b8202991d)) + (pin "3" (uuid 803e2ebb-43c3-48e5-b1b1-5ad787d880d5)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 591.82 566.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cd5f415b-1834-4d1d-80e9-7e34ba965ebe) + (property "Reference" "U238" (id 0) (at 591.82 557.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 591.82 561.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 591.82 566.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 591.82 566.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb6574ae-d37d-4ede-a7b3-b70b81515928)) + (pin "2" (uuid 24906a3c-ad8d-4507-ac1f-878d14fbe73d)) + (pin "3" (uuid a6110ed2-a532-46ae-a0bd-6cce15497946)) + ) + + (symbol (lib_id "eSim_Hybrid:dac_bridge_1") (at 754.38 603.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ceb4445b-8951-4ff8-8c99-636681b029ac) + (property "Reference" "U317" (id 0) (at 753.745 593.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "dac_bridge_1" (id 1) (at 753.745 596.9 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 754.38 603.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 754.38 603.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bc3f7c88-06e1-433a-b5d9-bd08375d3365)) + (pin "2" (uuid 3b9e52c7-866b-40f5-bb2c-80484d005dbc)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 664.21 567.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf2088c8-9438-4685-93d6-98fadf75aaa1) + (property "Reference" "U286" (id 0) (at 664.21 561.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 664.21 565.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 665.48 568.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 665.48 568.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97ac2870-9360-4548-be50-93789c39914d)) + (pin "2" (uuid 8d6270a4-2309-463c-bf2c-a1e726b6f266)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 439.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cf6444b0-b4df-4e7a-82d6-98761b65bf10) + (property "Reference" "U107" (id 0) (at 502.92 430.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 434.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 439.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 439.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bdc53a77-b4ee-4bb1-84f2-dd3b941ab979)) + (pin "2" (uuid 689a11f0-2992-4e86-8dff-5ad09d357d97)) + (pin "3" (uuid bd37ab39-ee42-42c0-938c-fd5e4f901827)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 670.56 179.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cfe71f29-17fd-4acd-8861-812c1a08698c) + (property "Reference" "U294" (id 0) (at 670.56 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 670.56 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 671.83 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 671.83 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5eb0c3a6-066a-468a-9955-9d5cbccfb145)) + (pin "2" (uuid cb9ad73e-7324-4680-973d-6ccdecbd2c11)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 621.03 227.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d0ed3c1b-6945-480b-ab7a-49605d079394) + (property "Reference" "U257" (id 0) (at 621.03 218.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 621.03 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 621.03 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 621.03 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7374154c-e1eb-40e1-8ac6-90801be4e885)) + (pin "2" (uuid f89d2f35-cc29-4c49-9e48-ad0cd5704e73)) + (pin "3" (uuid 553cd6a6-36ee-4e23-ae58-9441dd10bd9c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 429.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d0f16531-202b-48ab-a219-d1d54096e4f9) + (property "Reference" "U170" (id 0) (at 541.02 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 424.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 429.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 429.26 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 95cfc725-e59d-4c2e-8812-1c6cb67503e7)) + (pin "2" (uuid 1239f3fb-2d94-42ff-a35a-7f3aceed18c7)) + (pin "3" (uuid 7a04cb19-525a-44f5-ab84-a3e6a4ac00fb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 165.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d1222ba7-aacd-4433-8059-970370dbfbf8) + (property "Reference" "U149" (id 0) (at 509.27 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 190d43fc-e8ea-405c-95b7-86c0a6ceedcb)) + (pin "2" (uuid 90a2b832-c82d-4245-9a8f-0e020ac01d02)) + (pin "3" (uuid 2c8cddf3-1640-47ba-97ae-a98ac4b1c0cd)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 596.9 41.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d162566a-037c-416c-82ba-626d58495e27) + (property "Reference" "U242" (id 0) (at 596.9 33.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 596.9 36.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 596.9 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 596.9 41.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8e9169bf-bee2-4079-a4ba-4707f4ca345f)) + (pin "2" (uuid 292c03e5-d0a1-4bc0-9684-cde7f7ebfaae)) + (pin "3" (uuid 70abc4c2-0033-4acc-a2f1-c84bd2431129)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 313.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d16f5088-b743-4d5d-9be6-bbdab90d803d) + (property "Reference" "U98" (id 0) (at 459.74 304.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 308.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 313.69 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bfd6e928-e009-49a1-9d52-32a21acb9ceb)) + (pin "2" (uuid b58f52eb-841c-4e85-add5-0da019b72465)) + (pin "3" (uuid 4f5aeac2-dac7-4f4b-85c6-925e47d314f6)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 731.52 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3bf81b2-be4d-4c54-8c84-0227a3688137) + (property "Reference" "U306" (id 0) (at 733.5394 41.91 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 733.5394 45.72 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 731.52 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 731.52 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a54c36d1-2484-453e-bde1-6b8b8c842baf)) + (pin "2" (uuid 9cf01eff-2d98-46f3-bc5f-faeee736f5c2)) + (pin "3" (uuid efe2dda5-fda3-4ea6-9a73-cf0932915247)) + (pin "4" (uuid 6011002c-0cef-4a88-8c0f-d36b0ae99450)) + (pin "5" (uuid 92f75693-20e4-4007-9f5b-58190f59ee38)) + (pin "6" (uuid 5020cd7f-ce06-4a85-b186-d6c1f349f6af)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 783.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d437853d-f121-4d84-952b-946ebd5212eb) + (property "Reference" "U137" (id 0) (at 502.92 774.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 778.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 783.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 783.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 78c913d7-6cab-4265-bd0b-cd8435f7d5ed)) + (pin "2" (uuid ff806949-b2db-42b4-b4e3-4793972dea8c)) + (pin "3" (uuid ff0acd8b-9372-4e66-a679-e7c93152a4c6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 803.91 217.17 180) (unit 25) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d562e103-d6e4-4d7d-876f-e45b19f5a804) + (property "Reference" "U1" (id 0) (at 807.72 216.535 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 807.72 219.075 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 803.91 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 803.91 217.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 260da174-760b-4b99-8692-69c75312488c)) + (pin "2" (uuid cb5e87f5-1e62-4e53-9530-b9f08db1ca33)) + (pin "3" (uuid df745172-15b2-4627-97c4-9414925cf665)) + (pin "4" (uuid 311c052d-5942-4703-9073-0707bd760fce)) + (pin "5" (uuid e227a9f4-0f4c-48d6-828f-e03c99c3bf49)) + (pin "6" (uuid df6b6a78-0577-4476-bd2c-45578aadf1e1)) + (pin "7" (uuid 75d6fc94-278a-42d4-a704-df0b7cbab4ba)) + (pin "8" (uuid 4b0ca05e-500e-4e1a-860c-28c803d4a5f4)) + (pin "9" (uuid 6734fbb9-d15d-4203-9ec5-082e8d6fb383)) + (pin "10" (uuid 4aae8356-1477-4f7e-a5fd-62083944ee67)) + (pin "11" (uuid 44ad9def-d9d8-46dc-bd27-e91eceb13eba)) + (pin "12" (uuid e2a37dfd-3a98-48fa-bf2d-30ec1131dd63)) + (pin "13" (uuid f26ecc1e-b709-4333-b601-676d3d08087c)) + (pin "14" (uuid 27652410-a492-4c3a-94aa-c64aee02827f)) + (pin "15" (uuid 2b3f706e-0d36-4d52-a0aa-2525aa74bd00)) + (pin "16" (uuid cf8e08e8-4da5-4a3e-b168-2ccb3ae77c16)) + (pin "17" (uuid e8f1fd3a-5108-4e9f-ad39-eb13aaa79e6a)) + (pin "18" (uuid 4d8bb6b0-2e8e-4d56-9586-89f7c9b7b92c)) + (pin "19" (uuid 052a5bcf-050c-4989-9f6d-331fc9d85d9b)) + (pin "20" (uuid 2dd813bf-0c7b-470b-aed1-e07b96faf406)) + (pin "21" (uuid 3173ae1f-4b11-42bf-b50c-955aa753e21e)) + (pin "22" (uuid c436c353-76d3-439d-9e94-fc30f90db460)) + (pin "23" (uuid c3a23c7b-3836-4c4d-be3e-af47e6b0652e)) + (pin "24" (uuid 74677717-165b-4880-ada9-bcc2f24affc5)) + (pin "25" (uuid f52347f1-c3fb-4e80-9a63-d1f122a5ef3c)) + (pin "26" (uuid 0af242dc-cf6a-44fe-b4e1-a756dca1222c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 220.98 0) (unit 18) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d68a5ad3-3e73-4cf9-9cb5-7bfe85f1f5fb) + (property "Reference" "U1" (id 0) (at 360.045 215.9 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 218.44 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 220.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ee072578-d20e-4def-b2e8-a2838bc53325)) + (pin "2" (uuid 01a47d21-2831-492e-9d4e-97421eb4bede)) + (pin "3" (uuid 3c96226f-181a-4577-a0a5-13ab846297b3)) + (pin "4" (uuid 34a95e94-5d15-4007-b02b-b2db25fc3795)) + (pin "5" (uuid a295eb6f-620b-4b02-a529-0273f6082a40)) + (pin "6" (uuid d57d7f9e-807d-4562-a3f3-8ab3bc59cf7d)) + (pin "7" (uuid 0d73a3ac-b96f-42bb-87af-3332a0351984)) + (pin "8" (uuid 6d7f8813-f803-46e2-9662-5753f4ac59f2)) + (pin "9" (uuid 1c6ed0de-9a93-4c62-8d5a-79dc7aa62965)) + (pin "10" (uuid fa96b134-8c12-4605-b6f0-39f7cbecaac8)) + (pin "11" (uuid d500bd3f-9ca8-4308-9052-7ef6f6bcee31)) + (pin "12" (uuid a6364049-dfe1-4b45-aa44-a85cbc9cbe03)) + (pin "13" (uuid 6d38fe78-338b-410b-b083-62496fefd2f1)) + (pin "14" (uuid 2f0f10db-3ba6-4a21-94cc-8b3601d911f8)) + (pin "15" (uuid eb7beec8-4575-4fbe-be3c-518b9905b08a)) + (pin "16" (uuid faebeb37-e18e-4586-ad25-887368e6fa1d)) + (pin "17" (uuid abfe0536-2412-4da1-bee7-1601007f00cd)) + (pin "18" (uuid ecf37224-6fc9-42d8-9f35-dedfba624336)) + (pin "19" (uuid 130cf6b6-14df-4c47-b8c1-688316b48392)) + (pin "20" (uuid b2fabb39-ed0e-4c64-85c1-11c962cc2c58)) + (pin "21" (uuid 56d14773-b388-447f-975c-72855b1d7a9f)) + (pin "22" (uuid 13ebd71b-933d-4c29-9bb7-bb48e621f7ed)) + (pin "23" (uuid b0d0ada1-4065-4407-aefc-c4c4459592ad)) + (pin "24" (uuid 30e64499-083a-41a4-9865-dfbe58c5f91e)) + (pin "25" (uuid a2a4fcea-25e3-418a-9ee6-ac1ad63abaa4)) + (pin "26" (uuid 1a2f2929-ad4e-4626-bb89-9b25e7572bfe)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d6fb6249-8524-472f-945c-e0b1ccba53db) + (property "Reference" "U79" (id 0) (at 459.74 86.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 90.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 62297b0e-996e-4eef-984d-ebac43431d45)) + (pin "2" (uuid 7029f2b4-7628-430b-b42c-38d62f1a8c5f)) + (pin "3" (uuid 08a17f0e-81b1-4509-b042-9adeebba73eb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d7079abc-42fa-4c3a-8451-97afd2e7d1f7) + (property "Reference" "U150" (id 0) (at 509.27 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 176.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ca695ae3-dfbb-477d-8d6e-c815fdc44a00)) + (pin "2" (uuid c7dce33f-6e1f-4ade-8d61-9f7d33a838ae)) + (pin "3" (uuid 4e7b5482-565d-4dc8-96bc-963ae284a17b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 400.05 474.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d87ce16d-e1be-462d-a5b9-4eb8a460234f) + (property "Reference" "U6" (id 0) (at 400.05 468.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 400.05 472.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 401.32 476.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 401.32 476.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 67ce9391-8d32-4cee-840a-e48fe9204e3c)) + (pin "2" (uuid 7e0ce941-9e52-4f17-9064-0299fae133b1)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 640.08 433.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9104c95-5fc8-4e54-b1a0-1ea06ef089fb) + (property "Reference" "U267" (id 0) (at 640.08 424.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 640.08 427.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 640.08 433.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 640.08 433.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 02a0c5e2-9c90-4c0a-a725-6a5ad84dd619)) + (pin "2" (uuid b34876b7-893b-498e-aeb9-a035545cbc72)) + (pin "3" (uuid 0a42218f-e338-4401-8075-e15defe0e22f)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 615.95 431.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d95124b5-50a0-447e-aa4d-f112c14ea854) + (property "Reference" "U251" (id 0) (at 615.95 422.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 615.95 426.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 615.95 431.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 615.95 431.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3ac3d7a0-e529-4ca1-846c-1111507eb758)) + (pin "2" (uuid 4e26d902-d731-41b0-9a40-4688be906691)) + (pin "3" (uuid 7296e335-5b04-4d23-8be4-343a081f846f)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 622.3 661.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9fe7020-7cb8-44a3-8eb0-7d1ca06d3190) + (property "Reference" "U260" (id 0) (at 622.3 652.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 622.3 656.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 622.3 661.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 622.3 661.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2c9d4901-0382-4926-8d6b-6bff4a27b5f5)) + (pin "2" (uuid 87884f0e-6c1f-46ea-a4d3-01517b23016e)) + (pin "3" (uuid b45be09b-39a7-4e26-b88f-3e98ce97eefb)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 152.4 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db1318de-ad92-4f38-82c4-97f2fb28ddaa) + (property "Reference" "U84" (id 0) (at 459.74 143.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 152.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e1480655-9738-4909-a5ac-51ce6b1705fe)) + (pin "2" (uuid 838079f0-7242-460a-845a-5a7c9b4ebc76)) + (pin "3" (uuid 7e200d3e-0a65-418a-9723-cc8d7bb08a24)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 472.44 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db30fba0-42f5-4c05-b0af-af50b20aca76) + (property "Reference" "U46" (id 0) (at 453.39 463.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 467.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 472.44 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 472.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9b7c41ed-7a88-469b-8cb4-63b6bdf63aef)) + (pin "2" (uuid 907bcb9a-c3df-4c02-b1de-7dcfc1d7887e)) + (pin "3" (uuid 99e2c402-4678-43c2-ba31-16540bf660f8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 154.94 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid db330483-893b-4137-9fa5-e3fbf304ede5) + (property "Reference" "U212" (id 0) (at 547.37 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6d5bdbd8-858d-4e83-89f2-d11d088cd72e)) + (pin "2" (uuid 72778f4b-f2f3-4454-a8cd-13f22bbe88f4)) + (pin "3" (uuid 6a1a22d3-459c-4a06-931b-0e584b43bbdd)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 450.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dba113ba-bb17-46e4-9bc5-f7238fbafe75) + (property "Reference" "U108" (id 0) (at 502.92 441.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 445.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 450.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 450.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c3386d9e-664e-4f22-80b7-07e9e27b33c5)) + (pin "2" (uuid 1b496510-20c2-4b17-a32d-9892e05a13bf)) + (pin "3" (uuid e0dc886f-8b60-40d6-acd9-aed075001380)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dbfd2c7b-ee01-4ef5-9586-e037336c0490) + (property "Reference" "U31" (id 0) (at 406.4 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid af569883-f51a-4c65-90de-be3e2e24906f)) + (pin "2" (uuid 6600d3c3-9826-4a1e-a2b5-833b0623998b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 167.64 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dcb46fea-2d06-43c1-b169-bd2d7fe4fb56) + (property "Reference" "U1" (id 0) (at 360.045 162.56 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 165.1 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c234e772-2c3c-46ab-a498-4bde27f7b17f)) + (pin "2" (uuid d2998a6a-77b1-437c-b652-e2f233e9e347)) + (pin "3" (uuid c6975d0f-fb92-4ee7-a1b6-9e342f11e66c)) + (pin "4" (uuid b85208b5-02e4-4768-9b5d-f3e81bab4d05)) + (pin "5" (uuid ad87589c-bd6f-4c89-9ecf-dc09dbb20724)) + (pin "6" (uuid 0ae35836-8601-45e9-8737-06b80113a05b)) + (pin "7" (uuid dce8d4ab-e4bd-4649-b90c-aed3193b950d)) + (pin "8" (uuid 4460d36d-8298-496b-9c63-fe0956d24d9d)) + (pin "9" (uuid e11cdb36-b64a-4883-b6fc-59c172ea10bb)) + (pin "10" (uuid d1fed7c1-f0c3-4a6f-8dc7-7fbc5a919e15)) + (pin "11" (uuid 81a284fb-13de-4524-860c-d24e72f0ab13)) + (pin "12" (uuid 5ca996c7-a913-4555-a309-1e83b5c5c005)) + (pin "13" (uuid a62a57c9-1e9a-4d4f-bb5f-dd2081744245)) + (pin "14" (uuid d90db8fa-4f51-4534-aa73-6c0892465214)) + (pin "15" (uuid e9a2dae7-32cb-4e48-889f-663cc31bddcd)) + (pin "16" (uuid 6e1fae72-054c-4047-a377-869ed6fff7b4)) + (pin "17" (uuid 44802c4c-8b36-416d-bfbc-19d2bc61b04b)) + (pin "18" (uuid 00741395-4e24-4735-9656-8d65b79f0cab)) + (pin "19" (uuid 998e1ca7-b31f-46a6-b6e5-ea6d12fa25f6)) + (pin "20" (uuid e4a9f3fd-cf6d-46cd-b278-cc1d1a95c7a9)) + (pin "21" (uuid cb9c61ec-5c00-4491-953c-3f2e936cba85)) + (pin "22" (uuid e0f1a665-4892-4d76-8dde-437fdae8449a)) + (pin "23" (uuid 512e5839-3050-4d94-b752-064af179c265)) + (pin "24" (uuid faa192eb-f4c8-4fe3-ab85-4bb689e59f9b)) + (pin "25" (uuid 26f40680-9a65-4b56-af42-af8b5e620227)) + (pin "26" (uuid c0e677a7-6c47-41c1-b3d0-bd4af486bec9)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 170.18 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dd62a46a-34c8-4abe-b459-980a5d4379ba) + (property "Reference" "U1" (id 0) (at 360.045 165.1 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 167.64 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 15842e87-db17-488f-a0db-b31fbe39a08b)) + (pin "2" (uuid bf9d9698-9a0e-47ff-91b7-69a99be7780b)) + (pin "3" (uuid 4beda3fe-9b47-494e-ac31-d9982643c20d)) + (pin "4" (uuid acc3fbbf-736c-437f-96af-c9f2239a3537)) + (pin "5" (uuid 28670079-b79e-4d12-b7cb-3e5a6bb1fe39)) + (pin "6" (uuid 243cf3ba-066d-4dd0-b693-19202fae4834)) + (pin "7" (uuid 022b7f4b-4850-4cd6-81d2-88a40ede29cf)) + (pin "8" (uuid 32145a48-5fef-4978-bc6e-11043c183423)) + (pin "9" (uuid 58f463f6-ba86-4721-9793-a6f54cb035f1)) + (pin "10" (uuid 26119e19-df2e-40a6-96c9-f723b1221d7f)) + (pin "11" (uuid 99107288-2a24-494d-85e5-85343788b98a)) + (pin "12" (uuid 5839523e-adde-4dd0-a0ae-d460ec214d86)) + (pin "13" (uuid 51328305-df53-4096-8162-e2d510ebf9e0)) + (pin "14" (uuid fa44a619-7c5a-47c8-b28d-9e47b5170c41)) + (pin "15" (uuid 52c7ca2f-00d0-4f31-bd42-7884888cbaa7)) + (pin "16" (uuid 65348b97-17ac-4af4-bcd4-f8f8a2e6d9b3)) + (pin "17" (uuid 50415e4a-95e8-42b4-9fda-a3588e7a411e)) + (pin "18" (uuid 91fce605-1fa0-484c-98ad-96e0a78c6c17)) + (pin "19" (uuid 0de6a6a6-7fb8-44be-8c01-8d3504efb4cd)) + (pin "20" (uuid a32a1235-850d-4edf-a2f3-1a7308f63575)) + (pin "21" (uuid 91b26ee3-e270-4cfd-a9e5-af9120499488)) + (pin "22" (uuid 0aa43519-c758-49ec-bcb3-88b2ee8a3902)) + (pin "23" (uuid b18ba63d-d30f-4d69-9e92-09c0025b1a67)) + (pin "24" (uuid 5e430130-67d5-481e-9de2-054b9c8a432b)) + (pin "25" (uuid d950c9bc-0e9a-468c-b820-b11f9f86fb27)) + (pin "26" (uuid c2d87429-5786-40f7-8315-2cf48267494c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 49.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid dd8c4ba4-5821-40b8-88c3-d77df0fd29ca) + (property "Reference" "U75" (id 0) (at 459.74 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 44.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 719ef270-fdd5-4da7-bd7e-a0c6f470056e)) + (pin "2" (uuid 381d349c-d4ce-4578-8d93-e144fd3d40bd)) + (pin "3" (uuid 680d9c9e-b6ee-4c35-8b5b-25f168020c6a)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 662.94 431.8 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid de91bd59-11c1-44f0-8f08-5ea107d33d25) + (property "Reference" "U283" (id 0) (at 662.94 425.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 662.94 429.26 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 664.21 433.07 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 664.21 433.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 88c7e70e-9502-4465-8329-10c87f4e0edd)) + (pin "2" (uuid be011967-8d8d-463d-a47e-b022e2b2df1a)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 600.71 320.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid deff62fa-d4da-4af0-87cb-5cb7d0ff1a98) + (property "Reference" "U248" (id 0) (at 600.71 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 600.71 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 600.71 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 600.71 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0b3c72d1-541d-4120-a575-45cfd84c0d7b)) + (pin "2" (uuid e299752c-28fc-4729-b3b3-1c197a247d2c)) + (pin "3" (uuid d3081f14-23ae-41b9-8370-da957c19746b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 622.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e0a91daa-152c-4b6f-84e4-c577f83a5413) + (property "Reference" "U59" (id 0) (at 453.39 613.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 617.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 622.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 622.3 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6a5a4870-35a5-4746-9f9c-e7a2f0f4511f)) + (pin "2" (uuid 8fa49f7b-fd80-4f1d-a28f-2e01944f7006)) + (pin "3" (uuid 93d560d3-b7d1-4d4c-87d1-61fada4dba8d)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 657.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e14287e0-936b-4880-a34f-7c34153795bd) + (property "Reference" "U126" (id 0) (at 502.92 648.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 652.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 657.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 657.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1b7b9b7f-ed44-4342-8f3a-10379a36f5d3)) + (pin "2" (uuid 00ac4533-f13f-4f4b-b623-9bf11600e109)) + (pin "3" (uuid a5f22ce6-a637-43fb-82b5-f281fc2b79a8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 245.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e1eecad2-8790-4aef-b96a-059193e08560) + (property "Reference" "U92" (id 0) (at 459.74 236.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5fdb64ca-5df2-4213-b5e8-b87e87aee1bd)) + (pin "2" (uuid 5c5ef2b4-366c-4aab-aa42-095e66d9ac3e)) + (pin "3" (uuid b3ab6111-abba-449b-bbba-9b791fcb790a)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 725.17 594.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e45e8906-6d7d-4cb4-ab48-dc48a7a22e19) + (property "Reference" "U301" (id 0) (at 727.1894 577.85 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 727.1894 581.66 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 725.17 594.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 725.17 594.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c78070f3-53e4-4dce-b58b-bf7a766f720c)) + (pin "2" (uuid dd75dc2d-4d83-4c2a-a514-cb78d1b281d3)) + (pin "3" (uuid 6903513f-5f86-47b2-a32b-a75a619a057b)) + (pin "4" (uuid 81025474-5757-435e-aced-6ecc387fcde2)) + (pin "5" (uuid 5a29f0e2-866d-43b9-93e8-574f1f36e996)) + (pin "6" (uuid 6c61a36f-9e08-4a89-b3bd-4742d3af00da)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 520.7 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e46cb16d-8c24-4b2d-a813-43c1477d4b37) + (property "Reference" "U178" (id 0) (at 541.02 511.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 515.62 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 520.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 520.7 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9d8d2666-a184-4152-a3cd-0968985dcda4)) + (pin "2" (uuid d131e619-35ae-46fb-aa33-f1329cf251f1)) + (pin "3" (uuid 06503ddc-d9c6-4c6e-9f3d-c6b25a29c070)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 336.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5527cee-af87-42b3-8675-a6d73af54653) + (property "Reference" "U100" (id 0) (at 459.74 327.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 331.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 336.55 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 336.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7183b879-2234-4c2e-997b-f9e72c534ab3)) + (pin "2" (uuid 9242c338-2330-4887-a594-edc1abd99d07)) + (pin "3" (uuid 664e9bc6-b469-4acd-8c8a-596dc1164894)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 119.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e6a4a505-ea0a-4bcf-9749-ab0d2eff6592) + (property "Reference" "U145" (id 0) (at 509.27 110.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 114.3 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 98bcc4a5-a3e9-417b-b5fd-6af5392a26c1)) + (pin "2" (uuid a396256c-01e4-47cd-8bac-85610cd1a00f)) + (pin "3" (uuid 7c3b0f88-9525-46d7-bc1b-aa9a1d011e03)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8503624-a35f-495c-b997-a8fc612a6bbb) + (property "Reference" "U204" (id 0) (at 547.37 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 63.5 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87110e12-93e2-4890-9afd-764eff671448)) + (pin "2" (uuid dd009d10-7537-4b6d-a940-40b5b08c5812)) + (pin "3" (uuid 5b7f25f9-3c4c-475d-96f0-41dbfaaf10c8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 541.02 554.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8731612-0d4a-4be1-968d-46d81a4e11d9) + (property "Reference" "U181" (id 0) (at 541.02 546.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 541.02 549.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 541.02 554.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 541.02 554.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9de31625-c1e2-427b-9024-17b255df4c42)) + (pin "2" (uuid 58b1bd9c-4eff-419a-aad0-db5c7babb612)) + (pin "3" (uuid fd4a1e53-810e-4117-b08b-8c6182a8ab82)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 303.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8e5faca-bea9-4ac9-8b16-999fe6dc7d83) + (property "Reference" "U161" (id 0) (at 509.27 294.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 303.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 55180c3d-95be-490f-9742-21c69a11f2a6)) + (pin "2" (uuid 532bc76e-d353-41fa-8488-c8f86957a646)) + (pin "3" (uuid 90f6ca90-610d-4358-b13a-aef63b1c45d2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 360.68 240.03 0) (unit 21) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ead7cf94-d3f4-49b0-b6ae-03e3b2e24f80) + (property "Reference" "U1" (id 0) (at 361.315 234.95 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 361.315 237.49 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 360.68 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 360.68 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 21b7c6d6-aa4b-4256-b67c-0565abe7a144)) + (pin "2" (uuid 705f6dce-8ae2-443b-806d-ead21336531e)) + (pin "3" (uuid c8a284ee-608b-42ff-9c4b-b9595cbd343d)) + (pin "4" (uuid f704fae3-65d3-4ea0-b72e-b58652b187e5)) + (pin "5" (uuid 9ee3dae4-1477-47eb-af19-1099d80f37e4)) + (pin "6" (uuid b6728cbd-9672-46b3-8a07-13c95cb2231c)) + (pin "7" (uuid ebe10e80-f5dd-443c-8609-c9c7113a286d)) + (pin "8" (uuid 30002246-aaa9-4e62-8263-21536324fc57)) + (pin "9" (uuid 086fd90f-e4f5-4e78-bef0-6a771999f46e)) + (pin "10" (uuid a37e5b0c-2957-4623-aa49-286751e82dff)) + (pin "11" (uuid 0ab475df-6b52-4a24-a193-555368dccc18)) + (pin "12" (uuid 3539cd54-4375-4a6c-8a49-d82f4efae26e)) + (pin "13" (uuid eb14c70a-61b0-43a7-ab39-ea2bc9931e7e)) + (pin "14" (uuid 4961f10e-72ac-4a39-a9ef-a702e12f92ee)) + (pin "15" (uuid 0d6a0a46-5770-415d-b628-62df1f8a2b9d)) + (pin "16" (uuid 068edf9e-c2ac-4d2f-a3a7-11e86cd200c4)) + (pin "17" (uuid d0d666f3-5fc1-4bed-ac73-aa2228604722)) + (pin "18" (uuid 521d5321-66a8-4789-8dd0-ebed47b92d53)) + (pin "19" (uuid 1f644a1d-8af2-48d1-83a2-3b855602c818)) + (pin "20" (uuid b6eb498d-65f2-4283-bae8-f5c6caa94b72)) + (pin "21" (uuid 575cc29a-1911-4529-a9de-3a81a05cb1b0)) + (pin "22" (uuid 448a0e8b-cb46-4ab0-90d7-63dc4d1a529b)) + (pin "23" (uuid 44e64a54-caf6-40d7-98ce-54c301477d3a)) + (pin "24" (uuid bddba829-3b93-498c-8d4e-5d7c7454eaf4)) + (pin "25" (uuid 0e99a7b6-55c5-42b6-aef7-9635d11afa3d)) + (pin "26" (uuid ef8fb6bd-5208-477e-a8dc-12815c4958fa)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 473.71 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ebd0bcac-8f65-4c8c-9503-dce8500d571c) + (property "Reference" "U110" (id 0) (at 502.92 464.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 468.63 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 473.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 473.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d4eebc73-cac8-4aeb-b6e3-7b17014fd749)) + (pin "2" (uuid 6de38caa-0855-4a71-90e9-f70d3a8363e9)) + (pin "3" (uuid 21ee2735-72f3-45dd-b086-d84ca9cef59a)) + ) + + (symbol (lib_id "eSim_Digital:d_dff") (at 725.17 740.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ec33cbac-6f19-4e05-adda-59afd6586bd1) + (property "Reference" "U304" (id 0) (at 727.1894 723.9 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "d_dff" (id 1) (at 727.1894 727.71 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 725.17 740.41 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 725.17 740.41 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 77fc6189-482c-47ca-ae47-b0d9c1f27c0d)) + (pin "2" (uuid ea11b420-705b-4810-aeff-95a2611017cc)) + (pin "3" (uuid b6addf7a-eadb-4301-b0ca-e3e0738fe6a0)) + (pin "4" (uuid d2a4ae49-6d58-4f9e-83a4-b3595d0d9607)) + (pin "5" (uuid d6e24def-67ba-45bb-87cd-357d7c0de5d7)) + (pin "6" (uuid e2881f53-efd2-44e4-be42-23307fd5df35)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 73.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ecc51886-6702-426b-ae5a-222f5d43d37a) + (property "Reference" "U141" (id 0) (at 509.27 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bb65356b-c297-491d-8e1b-7a65be3405f0)) + (pin "2" (uuid f3d8e405-cab9-4b20-b1ed-8df6abc37195)) + (pin "3" (uuid d752f835-dbcf-4cbc-b075-1a80cf4ab756)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 114.3 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed52cc78-4dee-4c8b-8841-9db186b53716) + (property "Reference" "U29" (id 0) (at 406.4 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 111.76 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bee8d88f-840b-4d23-a54d-80af8d0af246)) + (pin "2" (uuid 62e54b3c-5fb2-42b2-9a51-78ba8f59fec4)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 162.56 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eea7de7a-5c41-41f9-8c9e-3da47d8b6418) + (property "Reference" "U34" (id 0) (at 406.4 156.21 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 160.02 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 036da79b-dc22-4658-afdb-5d498331ad38)) + (pin "2" (uuid 8760a305-4f58-4467-87a6-a470f8c43f62)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 449.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ef7b265b-46db-48e7-9400-77c630184c2f) + (property "Reference" "U44" (id 0) (at 453.39 440.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 444.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 449.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 449.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 82a86bbf-6532-4a81-8fe4-69b6a201d558)) + (pin "2" (uuid 5bd3ac0d-f91d-4900-8d90-794a1df35040)) + (pin "3" (uuid a405ee97-f848-41e6-b7a6-02dca481bafe)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 359.41 204.47 0) (unit 15) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f05d46df-c8ee-4a6d-9a00-e0b8e6ad5c1c) + (property "Reference" "U1" (id 0) (at 360.045 199.39 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 360.045 201.93 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 359.41 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 359.41 204.47 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f5e00626-e1f6-4b8f-91c7-445e04ea2de9)) + (pin "2" (uuid 3c16d932-dda0-4949-b3ad-514b4fbcfafb)) + (pin "3" (uuid aea38030-835f-47fe-bac1-f899293d4eb1)) + (pin "4" (uuid 43f91f92-78fa-4dd7-91a3-63d43a7ec75a)) + (pin "5" (uuid 2427f8dd-f691-468d-b9e6-8517ef97e8f4)) + (pin "6" (uuid 5ef0a86e-0514-4f9a-ad38-75f337f3d327)) + (pin "7" (uuid 63c7767a-8b99-4470-9250-0169b9d7bb99)) + (pin "8" (uuid 402daf15-5b65-424f-8a5b-a8a41e66a955)) + (pin "9" (uuid 71eac6ff-346d-4ce8-9e92-3ce6619e0df3)) + (pin "10" (uuid 8713f484-9884-47e7-b53f-44008eb4da24)) + (pin "11" (uuid 39ff45b0-1285-4b7f-83e7-66c9c77bb891)) + (pin "12" (uuid 3ad87c37-9e89-4cf2-8bc2-d435d7f3ac51)) + (pin "13" (uuid a6acf100-fd60-43d2-a387-7508ce9a6457)) + (pin "14" (uuid 19e39a49-65f0-4ec8-9a50-6c2592081381)) + (pin "15" (uuid fa9861a1-3817-42c7-9006-230aa1045862)) + (pin "16" (uuid 188def03-eba8-4ed4-9ded-5091262d4152)) + (pin "17" (uuid 94c593f4-de3c-4651-a9ed-dfdc3d20db0b)) + (pin "18" (uuid 979b3e82-764d-46f2-aeb4-6228cf6c50fc)) + (pin "19" (uuid a93eac78-aab9-48c7-afe4-a37bc411b8fa)) + (pin "20" (uuid 12795612-5b54-46e5-bbae-54a2a834e123)) + (pin "21" (uuid 227f3437-2dce-4338-8c76-222257114a12)) + (pin "22" (uuid ea3f9431-8e6e-4fe2-ad38-2378387ae5a2)) + (pin "23" (uuid 8c17761f-fc18-4df3-abaf-ae59e64823b2)) + (pin "24" (uuid 306766bc-4c0d-475b-8e62-b16750ee497c)) + (pin "25" (uuid d04517f7-7f10-4935-be82-0108c44b27fa)) + (pin "26" (uuid 475d0b55-e7ce-422e-9e1f-ce570fe99725)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 725.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f0663210-ccaf-40c7-a825-c4210d5b695c) + (property "Reference" "U68" (id 0) (at 453.39 716.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 720.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 725.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 725.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 487aad0b-dbca-4240-b02f-2e4ac06946b4)) + (pin "2" (uuid f6b6dd79-9b49-4724-ab04-0376d9977377)) + (pin "3" (uuid d12090c9-331e-4051-a04f-13eeba36340f)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 598.17 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f1548ce8-1e7b-468b-b5a4-61a67abd63fc) + (property "Reference" "U57" (id 0) (at 453.39 589.28 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 593.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 598.17 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 598.17 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92c954e7-adb5-44ab-ad42-7c74e5631fce)) + (pin "2" (uuid e35d63b6-ddaa-431e-bee2-e04e04e68c07)) + (pin "3" (uuid 339ca25c-f477-4a45-a2ac-53e511ab6d02)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 576.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f1639eb1-8063-492c-852a-371aab7b1eb8) + (property "Reference" "U119" (id 0) (at 502.92 567.69 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 571.5 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 576.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 576.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 42a84a1b-2f00-4c13-967b-628727c1f53c)) + (pin "2" (uuid 230f94f3-3fd6-44e0-ba95-5d96d9c637bb)) + (pin "3" (uuid e198cea9-67cf-4adc-a1ad-1580a9ad08cd)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 702.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f168cfb4-9fa5-4035-af53-e7f506f8bba5) + (property "Reference" "U66" (id 0) (at 453.39 693.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 697.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 702.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 702.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c902ea7f-c10e-4c8f-a29d-38597f8ce37d)) + (pin "2" (uuid 58dfb968-ce19-4713-9a86-7fd0c8d2da7d)) + (pin "3" (uuid e6320ceb-2f09-4670-b817-a8875c407c7b)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 664.21 523.24 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f1a4ad79-4c3a-4b4d-a60b-3a6494163d43) + (property "Reference" "U285" (id 0) (at 664.21 516.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 664.21 520.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 665.48 524.51 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 665.48 524.51 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 31eed855-dd9d-434d-909a-623f424ff4f5)) + (pin "2" (uuid 0bb08fd5-6f8f-4645-9453-0c3cb7a7ba16)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 772.16 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f234778d-1b0d-4d52-b445-2f688f9ef489) + (property "Reference" "U136" (id 0) (at 502.92 763.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 767.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 772.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 772.16 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2144bd1d-2808-49a1-be6d-2e049138dd5c)) + (pin "2" (uuid 1e1567bb-e413-424c-a375-8bb38a52e865)) + (pin "3" (uuid 89f2c05e-3058-4556-a2d7-d2c5abc21e0c)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 453.39 506.73 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f2d7cfe5-f124-4e9e-8a56-ad5d83ac431d) + (property "Reference" "U49" (id 0) (at 453.39 497.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 453.39 501.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 453.39 506.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 453.39 506.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 98258ffc-a616-419c-bce2-1a650cee7717)) + (pin "2" (uuid eaa7235f-9059-44f1-ae14-e7409b2597d3)) + (pin "3" (uuid f5185165-f98f-4b3a-992a-d296641a3be8)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 519.43 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f368b54a-8898-48a4-aa31-1f6ef21c59f8) + (property "Reference" "U114" (id 0) (at 502.92 510.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 514.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 519.43 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 519.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c299643e-e84e-48ca-83b8-0a7338b2e3b3)) + (pin "2" (uuid ba3d89a2-e02e-4d09-8d1e-6116532465b5)) + (pin "3" (uuid a2df559a-1b66-45c1-9c9e-b416faec628a)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 496.57 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f3d5ef17-a2fd-42ff-ad61-f560ef391096) + (property "Reference" "U112" (id 0) (at 502.92 487.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 491.49 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 496.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 496.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cf087d16-f780-4db3-a80f-69efe5fba334)) + (pin "2" (uuid 387ba198-ad99-4549-96ec-755a7e32f00a)) + (pin "3" (uuid 9f5d8efb-43cf-4728-b9d2-8e6c5a40c3b7)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 509.27 280.67 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f62f7588-3652-4567-b743-793c5f9ac55c) + (property "Reference" "U159" (id 0) (at 509.27 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 509.27 275.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 509.27 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 509.27 280.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2f0c5b5b-2569-49d8-bf5b-2eff7447e75f)) + (pin "2" (uuid 26cea26e-c0a7-49aa-8996-0300d588057c)) + (pin "3" (uuid 8151f8c3-1fa6-483e-8203-3d208417da4b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 459.74 256.54 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f655b286-f7f7-4a52-bc28-fa5b7c0f1e6f) + (property "Reference" "U93" (id 0) (at 459.74 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 459.74 251.46 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 459.74 256.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 459.74 256.54 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 309e712d-d7ca-49e8-87e2-d73e2fc5e1dc)) + (pin "2" (uuid a36323d6-f630-4942-9d78-770ec6eeeecf)) + (pin "3" (uuid ccfa916c-8d97-4f12-9948-61933a2d76e4)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 603.25 271.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f6c02c7a-d122-4732-ad74-30530dfa712e) + (property "Reference" "U249" (id 0) (at 603.25 262.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 603.25 266.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 603.25 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 603.25 271.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 30536405-b5ea-46bc-8536-50b1c7a45085)) + (pin "2" (uuid 277017a2-4a62-40c6-98f2-48de3e9fe4e5)) + (pin "3" (uuid c6a17d4d-7367-4fb1-81c7-a120b4226fdc)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 647.7 135.89 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f7466e0b-fed9-4802-8149-c49aa3273f5d) + (property "Reference" "U277" (id 0) (at 647.7 127 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 647.7 130.81 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 647.7 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 647.7 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b20fc762-a6c3-4c44-a133-3d847767cc41)) + (pin "2" (uuid 2b42875d-0ab8-4c2c-8885-510c226a4858)) + (pin "3" (uuid 7e40e510-af39-4fd4-97cb-4947898aeae4)) + ) + + (symbol (lib_id "eSim_Digital:d_or") (at 589.28 614.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fbcbd978-c2db-4fbf-afef-b78671917811) + (property "Reference" "U234" (id 0) (at 589.28 605.79 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_or" (id 1) (at 589.28 609.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 589.28 614.68 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 589.28 614.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b239ead3-7ae4-4560-b514-3f03632189d4)) + (pin "2" (uuid 98fca163-2d09-49bc-b57e-b687a99eac8c)) + (pin "3" (uuid 615e2271-6ff3-4d5c-9b87-c29d933ad695)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 171.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fdd494ac-883e-475a-a42f-78afae2a1852) + (property "Reference" "U35" (id 0) (at 406.4 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0ec2269d-56b1-45fd-ad46-54a688029235)) + (pin "2" (uuid f78cf557-3dae-44bf-8b78-9e5ce758d95b)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 502.92 553.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe539dcb-a079-468b-bc64-3a78d108a9fb) + (property "Reference" "U117" (id 0) (at 502.92 544.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 502.92 548.64 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 502.92 553.72 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 502.92 553.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5883ab85-9018-4275-89a8-27bc9cbed5cf)) + (pin "2" (uuid ec10c9fa-345a-4fbe-8b67-141ad1da51a2)) + (pin "3" (uuid 6ed76939-4154-4b46-8ae0-4322cc17a883)) + ) + + (symbol (lib_id "eSim_Digital:d_inverter") (at 406.4 143.51 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid feb8ff81-530b-4df7-bfb3-424279b3ecc8) + (property "Reference" "U32" (id 0) (at 406.4 137.16 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_inverter" (id 1) (at 406.4 140.97 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 407.67 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 407.67 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 577033d6-2acb-4fe1-8a35-dea0b96d3100)) + (pin "2" (uuid 251b335f-62b7-4db2-8754-e157a46d1175)) + ) + + (symbol (lib_id "eSim_Digital:d_and") (at 547.37 259.08 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fec4e3ca-c75d-443f-b378-b748b56c8967) + (property "Reference" "U221" (id 0) (at 547.37 250.19 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "d_and" (id 1) (at 547.37 254 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 547.37 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 547.37 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c5cc1ebb-3571-4fda-bc47-6a1050b3545a)) + (pin "2" (uuid e73d3a6b-56b9-4595-a70b-8bdd7ee809fc)) + (pin "3" (uuid 8d3d556f-f4a8-4168-825a-87e195323142)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/851a7a40-210d-4d3d-8720-624659b5c6ad" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/0ab31d77-3ab5-4516-b8c0-d2049893bcd9" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/0173d655-51b5-462f-9039-46f296d8a0c2" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/dcb46fea-2d06-43c1-b169-bd2d7fe4fb56" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/dd62a46a-34c8-4abe-b459-980a5d4379ba" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/27de2bd4-a77e-4fd4-944a-9af3ea9d8e78" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/3927034f-564c-479c-a535-ecfc92d72629" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/5684c4f5-a2ad-49ba-9d1d-eaac44e87581" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/8079ba46-d763-428b-b95c-82d35c40d4e9" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/1836a00c-64ea-4c14-9202-e6f367567ba6" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/77e805a5-265d-4d24-bdcc-fe99f1f41d1a" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/3af73be6-94fc-463a-8e91-c4cfe0a31050" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/23a501da-cb52-4943-abc0-323f3d691d29" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/8edb0b14-3b65-4397-82a6-8000959489b0" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + (path "/f05d46df-c8ee-4a6d-9a00-e0b8e6ad5c1c" + (reference "U1") (unit 15) (value "PORT") (footprint "") + ) + (path "/a1dc095f-bf82-43c9-8bed-8986a4d896d0" + (reference "U1") (unit 16) (value "PORT") (footprint "") + ) + (path "/71bf1fac-bacd-43eb-9f6a-b09cd27cf871" + (reference "U1") (unit 17) (value "PORT") (footprint "") + ) + (path "/d68a5ad3-3e73-4cf9-9cb5-7bfe85f1f5fb" + (reference "U1") (unit 18) (value "PORT") (footprint "") + ) + (path "/6ad2cadb-ce4b-437e-95f4-feff9fd73290" + (reference "U1") (unit 19) (value "PORT") (footprint "") + ) + (path "/bc71b65d-4738-472f-a8fa-8ff80413e356" + (reference "U1") (unit 20) (value "PORT") (footprint "") + ) + (path "/ead7cf94-d3f4-49b0-b6ae-03e3b2e24f80" + (reference "U1") (unit 21) (value "PORT") (footprint "") + ) + (path "/61488547-6e4c-4487-91bb-234e110f5479" + (reference "U1") (unit 22) (value "PORT") (footprint "") + ) + (path "/66c35517-0cfc-470f-af40-a8d69e12eb6e" + (reference "U1") (unit 23) (value "PORT") (footprint "") + ) + (path "/c5c1e2e1-98b0-4c0e-995e-d87d74419ae2" + (reference "U1") (unit 24) (value "PORT") (footprint "") + ) + (path "/d562e103-d6e4-4d7d-876f-e45b19f5a804" + (reference "U1") (unit 25) (value "PORT") (footprint "") + ) + (path "/ae6c4c76-0db0-4892-89ad-78c1b2fb937f" + (reference "U1") (unit 26) (value "PORT") (footprint "") + ) + (path "/631a45cf-4fec-4eed-b195-1793c20dafba" + (reference "U2") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0ea769a2-c87a-47c3-9df6-e2324a1a3cce" + (reference "U3") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/aee1d473-db6f-414a-b7b3-252115e2f81e" + (reference "U4") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a03bc918-34ec-459a-be61-adc3b9b2fc63" + (reference "U5") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/d87ce16d-e1be-462d-a5b9-4eb8a460234f" + (reference "U6") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7ee707bb-a6fa-4fea-8c1d-91f435fcb653" + (reference "U7") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5a9afe73-7241-4392-93e2-3616e2c5345f" + (reference "U8") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/99fa85e6-59d1-42b1-8a81-7dc613afd6f0" + (reference "U9") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/078d16cb-77f9-4abf-8f63-f789ddd7d40c" + (reference "U10") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a7fdc3cd-f546-4c49-ac4e-16aa25dfc118" + (reference "U11") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9ec146b1-d85d-46f6-8e67-dae8af41133d" + (reference "U12") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1d099cce-dfeb-4f9a-8f0e-e29a98ed69d5" + (reference "U13") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/28463522-3bb7-4fa4-96c6-15f060f27330" + (reference "U14") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0159075b-8d72-4796-a3c5-7d9edcb8b82a" + (reference "U15") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/9c0844af-00df-4d23-91cf-358580f694f3" + (reference "U16") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/4169d5aa-6e11-46a1-a4bb-7dda01751bd4" + (reference "U17") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/042e9b01-fcf3-496c-876e-85b6955ae0f1" + (reference "U18") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1fd52872-674f-4a57-b1cd-bda9249c8563" + (reference "U19") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2ff90656-3f6c-42f6-acba-e47daa2c3c6b" + (reference "U20") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7718aa1d-a14c-4622-a597-de3c6620f80b" + (reference "U21") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/5b590654-cfe5-4f4c-985e-aa3dbba23141" + (reference "U22") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c4bdc415-267f-409f-8377-0190e5a8aa02" + (reference "U23") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1f019d7c-85e4-435d-8389-bc4d3eea6033" + (reference "U24") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/11b220b5-20eb-486e-8a2e-450957795f38" + (reference "U25") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a3098600-ce35-41db-9f3a-dd8b3019fd27" + (reference "U26") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/8561bd03-3280-4f30-9dd7-de1a62ee9bef" + (reference "U27") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/44b721d8-e337-468d-8493-a99432d27701" + (reference "U28") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/ed52cc78-4dee-4c8b-8841-9db186b53716" + (reference "U29") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/7b08206f-4bcb-4d14-bd50-903e211a0ffe" + (reference "U30") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/dbfd2c7b-ee01-4ef5-9586-e037336c0490" + (reference "U31") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/feb8ff81-530b-4df7-bfb3-424279b3ecc8" + (reference "U32") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0ea0b6a8-f8a4-48c6-baa4-70d33105476b" + (reference "U33") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/eea7de7a-5c41-41f9-8c9e-3da47d8b6418" + (reference "U34") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/fdd494ac-883e-475a-a42f-78afae2a1852" + (reference "U35") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c75e769b-46f9-4e23-851f-cdbb2889780f" + (reference "U36") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1a9a32e9-b761-4519-a800-8fa98181ae39" + (reference "U37") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/1581e34b-155b-4cc4-9280-ef330efdd4cb" + (reference "U38") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/30ebd484-06c8-4c21-b8c8-9bb16abfbb40" + (reference "U39") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3c7637cf-f3b6-4d87-bb53-0ba1cb2ff991" + (reference "U40") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/0d708672-de3e-4277-9dd8-a9b0128d2edc" + (reference "U41") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/161a2931-5f6d-45ae-8b7c-22e2148bca35" + (reference "U42") (unit 1) (value "d_and") (footprint "") + ) + (path "/1d8901a0-3235-4ad6-98cd-9cdb0da6da03" + (reference "U43") (unit 1) (value "d_and") (footprint "") + ) + (path "/ef7b265b-46db-48e7-9400-77c630184c2f" + (reference "U44") (unit 1) (value "d_and") (footprint "") + ) + (path "/3878bef9-8c30-4320-a90a-5a311b02dd1e" + (reference "U45") (unit 1) (value "d_and") (footprint "") + ) + (path "/db30fba0-42f5-4c05-b0af-af50b20aca76" + (reference "U46") (unit 1) (value "d_and") (footprint "") + ) + (path "/53285cfc-6f01-41fc-b66c-e882ba6ff75e" + (reference "U47") (unit 1) (value "d_and") (footprint "") + ) + (path "/3e1291a4-4243-40b2-ae8c-12270433aa81" + (reference "U48") (unit 1) (value "d_and") (footprint "") + ) + (path "/f2d7cfe5-f124-4e9e-8a56-ad5d83ac431d" + (reference "U49") (unit 1) (value "d_and") (footprint "") + ) + (path "/b1c9a5f4-379c-49b7-be7e-0d4cdfd150cd" + (reference "U50") (unit 1) (value "d_and") (footprint "") + ) + (path "/36507eb2-c8af-4058-842c-b2f9b8635a90" + (reference "U51") (unit 1) (value "d_and") (footprint "") + ) + (path "/a843d2cc-c50c-4cf2-af62-d4992a6784b6" + (reference "U52") (unit 1) (value "d_and") (footprint "") + ) + (path "/1772081b-559c-4ff9-b19d-99f970a0be56" + (reference "U53") (unit 1) (value "d_and") (footprint "") + ) + (path "/127bcfb2-6a30-402e-b45d-ec82924326d8" + (reference "U54") (unit 1) (value "d_and") (footprint "") + ) + (path "/4b18df0c-d74f-4f99-b53d-60c53d62741a" + (reference "U55") (unit 1) (value "d_and") (footprint "") + ) + (path "/5a29a9b9-5708-4116-8f3a-bab1c583b1b7" + (reference "U56") (unit 1) (value "d_and") (footprint "") + ) + (path "/f1548ce8-1e7b-468b-b5a4-61a67abd63fc" + (reference "U57") (unit 1) (value "d_and") (footprint "") + ) + (path "/c843431b-2d06-4a1d-b7a0-84d9e9e18077" + (reference "U58") (unit 1) (value "d_and") (footprint "") + ) + (path "/e0a91daa-152c-4b6f-84e4-c577f83a5413" + (reference "U59") (unit 1) (value "d_and") (footprint "") + ) + (path "/06ff68e6-6a5d-4e01-8ef2-d721842f9e47" + (reference "U60") (unit 1) (value "d_and") (footprint "") + ) + (path "/79320395-7640-4c70-980f-1448799d0f3c" + (reference "U61") (unit 1) (value "d_and") (footprint "") + ) + (path "/152e4d1a-abee-4089-a78e-2e8dc01e44b5" + (reference "U62") (unit 1) (value "d_and") (footprint "") + ) + (path "/74b0b887-6b89-4ada-81cb-4eca261845a2" + (reference "U63") (unit 1) (value "d_and") (footprint "") + ) + (path "/58acf7ba-e81e-4eef-ac06-b378e492d38a" + (reference "U64") (unit 1) (value "d_and") (footprint "") + ) + (path "/1ba9b0dd-1a50-487e-b45a-66a20fc087f1" + (reference "U65") (unit 1) (value "d_and") (footprint "") + ) + (path "/f168cfb4-9fa5-4035-af53-e7f506f8bba5" + (reference "U66") (unit 1) (value "d_and") (footprint "") + ) + (path "/6c8c50e3-32dd-40c9-85f9-3fa180973a21" + (reference "U67") (unit 1) (value "d_and") (footprint "") + ) + (path "/f0663210-ccaf-40c7-a825-c4210d5b695c" + (reference "U68") (unit 1) (value "d_and") (footprint "") + ) + (path "/0cca8987-05be-487c-94e9-eedf5edd9ee7" + (reference "U69") (unit 1) (value "d_and") (footprint "") + ) + (path "/81a5fcf3-ac39-44a7-908c-eeee44ea9fe1" + (reference "U70") (unit 1) (value "d_and") (footprint "") + ) + (path "/a7d6439e-b3f9-4f9b-8bb5-64cc241c095e" + (reference "U71") (unit 1) (value "d_and") (footprint "") + ) + (path "/618353dc-f86a-4b0e-80ca-aa743c59643e" + (reference "U72") (unit 1) (value "d_and") (footprint "") + ) + (path "/cd003c58-3342-420e-a45a-75b769cfe47f" + (reference "U73") (unit 1) (value "d_and") (footprint "") + ) + (path "/26c148ab-8adc-430d-a39b-bdab4186bb00" + (reference "U74") (unit 1) (value "d_and") (footprint "") + ) + (path "/dd8c4ba4-5821-40b8-88c3-d77df0fd29ca" + (reference "U75") (unit 1) (value "d_and") (footprint "") + ) + (path "/b35d1d06-2adf-4b3b-9324-f646a67a88cb" + (reference "U76") (unit 1) (value "d_and") (footprint "") + ) + (path "/1c68ddf3-0cb4-476b-9cf1-5dbe4ed0d352" + (reference "U77") (unit 1) (value "d_and") (footprint "") + ) + (path "/36f8a3f2-9a38-4896-8fe7-b8153a1e5afe" + (reference "U78") (unit 1) (value "d_and") (footprint "") + ) + (path "/d6fb6249-8524-472f-945c-e0b1ccba53db" + (reference "U79") (unit 1) (value "d_and") (footprint "") + ) + (path "/addddca3-f72d-4c1c-8513-62c1979a50df" + (reference "U80") (unit 1) (value "d_and") (footprint "") + ) + (path "/920a5088-4340-4eef-b8dc-829b381312a3" + (reference "U81") (unit 1) (value "d_and") (footprint "") + ) + (path "/6aad4af6-089d-4ef8-8bbe-3b80150a6717" + (reference "U82") (unit 1) (value "d_and") (footprint "") + ) + (path "/2d903bd4-33f7-4e5e-a9bb-9e76bb8c5d14" + (reference "U83") (unit 1) (value "d_and") (footprint "") + ) + (path "/db1318de-ad92-4f38-82c4-97f2fb28ddaa" + (reference "U84") (unit 1) (value "d_and") (footprint "") + ) + (path "/363ac9c2-2713-4a2d-9fe1-d0d0a75625bc" + (reference "U85") (unit 1) (value "d_and") (footprint "") + ) + (path "/1f4992a4-078b-4a8e-be85-b279b2a7c79f" + (reference "U86") (unit 1) (value "d_and") (footprint "") + ) + (path "/2928dbd0-5b20-4cf7-8b8c-edb8f06bc2e0" + (reference "U87") (unit 1) (value "d_and") (footprint "") + ) + (path "/3791b44c-2354-4284-b469-6e986df4191e" + (reference "U88") (unit 1) (value "d_and") (footprint "") + ) + (path "/401338d4-51f1-47bd-b441-d8dc9b448fd2" + (reference "U89") (unit 1) (value "d_and") (footprint "") + ) + (path "/9a664ffa-eab2-4149-b2a5-2139735942be" + (reference "U90") (unit 1) (value "d_and") (footprint "") + ) + (path "/00d67e93-aa54-4664-9fb2-e24aa7e95452" + (reference "U91") (unit 1) (value "d_and") (footprint "") + ) + (path "/e1eecad2-8790-4aef-b96a-059193e08560" + (reference "U92") (unit 1) (value "d_and") (footprint "") + ) + (path "/f655b286-f7f7-4a52-bc28-fa5b7c0f1e6f" + (reference "U93") (unit 1) (value "d_and") (footprint "") + ) + (path "/00dfad35-03d1-4d45-b68f-8bd56547d364" + (reference "U94") (unit 1) (value "d_and") (footprint "") + ) + (path "/a4e8f904-b45a-4b79-ba29-a7c3a667f363" + (reference "U95") (unit 1) (value "d_and") (footprint "") + ) + (path "/5546619b-ba9d-4b19-880b-18be56137f1d" + (reference "U96") (unit 1) (value "d_and") (footprint "") + ) + (path "/617a7c6c-f3c9-4dfd-b672-fb46c75ecc7c" + (reference "U97") (unit 1) (value "d_and") (footprint "") + ) + (path "/d16f5088-b743-4d5d-9be6-bbdab90d803d" + (reference "U98") (unit 1) (value "d_and") (footprint "") + ) + (path "/582e32ff-5223-4610-b5d6-541c81a7e07f" + (reference "U99") (unit 1) (value "d_and") (footprint "") + ) + (path "/e5527cee-af87-42b3-8675-a6d73af54653" + (reference "U100") (unit 1) (value "d_and") (footprint "") + ) + (path "/26d15ff3-7bb1-4e18-8b4d-a266edc344b8" + (reference "U101") (unit 1) (value "d_and") (footprint "") + ) + (path "/65e08094-4579-4b9c-a28d-44a6a8bbe1aa" + (reference "U102") (unit 1) (value "d_and") (footprint "") + ) + (path "/62257028-73a0-41af-a18b-5a378fc96d0f" + (reference "U103") (unit 1) (value "d_and") (footprint "") + ) + (path "/736b71d5-c8c2-4765-8be3-5d68233f7593" + (reference "U104") (unit 1) (value "d_and") (footprint "") + ) + (path "/04cb9029-1a6d-4588-a3ab-f36a080655c0" + (reference "U105") (unit 1) (value "d_and") (footprint "") + ) + (path "/90a601ce-7479-41c2-bb85-2bad45665bb4" + (reference "U106") (unit 1) (value "d_and") (footprint "") + ) + (path "/cf6444b0-b4df-4e7a-82d6-98761b65bf10" + (reference "U107") (unit 1) (value "d_and") (footprint "") + ) + (path "/dba113ba-bb17-46e4-9bc5-f7238fbafe75" + (reference "U108") (unit 1) (value "d_and") (footprint "") + ) + (path "/88eccc4f-2b79-4251-b807-27ffd580fca2" + (reference "U109") (unit 1) (value "d_and") (footprint "") + ) + (path "/ebd0bcac-8f65-4c8c-9503-dce8500d571c" + (reference "U110") (unit 1) (value "d_and") (footprint "") + ) + (path "/c0aa91e1-e51d-4562-8ebd-baf2de4dab06" + (reference "U111") (unit 1) (value "d_and") (footprint "") + ) + (path "/f3d5ef17-a2fd-42ff-ad61-f560ef391096" + (reference "U112") (unit 1) (value "d_and") (footprint "") + ) + (path "/b028e5fe-f41a-495f-b79d-70ca3b66c141" + (reference "U113") (unit 1) (value "d_and") (footprint "") + ) + (path "/f368b54a-8898-48a4-aa31-1f6ef21c59f8" + (reference "U114") (unit 1) (value "d_and") (footprint "") + ) + (path "/13501569-9d9b-4150-b315-324d5abd94f3" + (reference "U115") (unit 1) (value "d_and") (footprint "") + ) + (path "/910d7e7a-9ab3-4033-b931-ea03d0954369" + (reference "U116") (unit 1) (value "d_and") (footprint "") + ) + (path "/fe539dcb-a079-468b-bc64-3a78d108a9fb" + (reference "U117") (unit 1) (value "d_and") (footprint "") + ) + (path "/638e7544-fd62-4796-929c-9ece26b996da" + (reference "U118") (unit 1) (value "d_and") (footprint "") + ) + (path "/f1639eb1-8063-492c-852a-371aab7b1eb8" + (reference "U119") (unit 1) (value "d_and") (footprint "") + ) + (path "/89034eea-8818-4b66-b884-4c5fda69cb54" + (reference "U120") (unit 1) (value "d_and") (footprint "") + ) + (path "/260eac28-06ae-4bc2-8434-6c505d8cdb8f" + (reference "U121") (unit 1) (value "d_and") (footprint "") + ) + (path "/6d16c449-8e66-44eb-ba2f-5c397907de04" + (reference "U122") (unit 1) (value "d_and") (footprint "") + ) + (path "/49949dc6-b3ff-497f-8855-8c131e90478d" + (reference "U123") (unit 1) (value "d_and") (footprint "") + ) + (path "/b0b167b1-ea3c-4483-81b1-5505a95553c2" + (reference "U124") (unit 1) (value "d_and") (footprint "") + ) + (path "/669a2e10-4ee8-4370-9da5-dff1f4a699ce" + (reference "U125") (unit 1) (value "d_and") (footprint "") + ) + (path "/e14287e0-936b-4880-a34f-7c34153795bd" + (reference "U126") (unit 1) (value "d_and") (footprint "") + ) + (path "/4edbb22c-7f3d-409d-b942-f867ba18bcc4" + (reference "U127") (unit 1) (value "d_and") (footprint "") + ) + (path "/7759c4f6-95e4-44f2-8e2e-8900c0be82c8" + (reference "U128") (unit 1) (value "d_and") (footprint "") + ) + (path "/a6612126-5596-42c6-9494-cb24036f4706" + (reference "U129") (unit 1) (value "d_and") (footprint "") + ) + (path "/33ba1fa7-f2c0-44bb-b200-a5b1d434babe" + (reference "U130") (unit 1) (value "d_and") (footprint "") + ) + (path "/bfdce68b-94c1-4841-abe8-44677b974eb3" + (reference "U131") (unit 1) (value "d_and") (footprint "") + ) + (path "/9bf82de6-f8b2-4f48-ba7e-34558dd6bb46" + (reference "U132") (unit 1) (value "d_and") (footprint "") + ) + (path "/6a11d709-8264-492f-ae0d-b03f83510969" + (reference "U133") (unit 1) (value "d_and") (footprint "") + ) + (path "/2521cb66-fa83-45cf-8332-d5428945bdb7" + (reference "U134") (unit 1) (value "d_and") (footprint "") + ) + (path "/aa8b36a9-069d-4acf-aef2-16124aa6a642" + (reference "U135") (unit 1) (value "d_and") (footprint "") + ) + (path "/f234778d-1b0d-4d52-b445-2f688f9ef489" + (reference "U136") (unit 1) (value "d_and") (footprint "") + ) + (path "/d437853d-f121-4d84-952b-946ebd5212eb" + (reference "U137") (unit 1) (value "d_and") (footprint "") + ) + (path "/46a049e2-515a-4e8e-a2b2-a83caabb2fde" + (reference "U138") (unit 1) (value "d_and") (footprint "") + ) + (path "/b41c35d4-05d7-4ce0-938c-1da9903adafd" + (reference "U139") (unit 1) (value "d_and") (footprint "") + ) + (path "/055ff0b6-84d1-4004-99b2-2ca2d99c51b2" + (reference "U140") (unit 1) (value "d_and") (footprint "") + ) + (path "/ecc51886-6702-426b-ae5a-222f5d43d37a" + (reference "U141") (unit 1) (value "d_and") (footprint "") + ) + (path "/51d5d493-1898-429c-80ae-dd8fa092b6c8" + (reference "U142") (unit 1) (value "d_and") (footprint "") + ) + (path "/08e1be81-20a6-4b8e-82d8-a2a589e00dba" + (reference "U143") (unit 1) (value "d_and") (footprint "") + ) + (path "/0230233a-88e6-484b-974c-265c03eb8691" + (reference "U144") (unit 1) (value "d_and") (footprint "") + ) + (path "/e6a4a505-ea0a-4bcf-9749-ab0d2eff6592" + (reference "U145") (unit 1) (value "d_and") (footprint "") + ) + (path "/236eee02-2608-4439-b9a4-ed8e940bca46" + (reference "U146") (unit 1) (value "d_and") (footprint "") + ) + (path "/9ccb8525-7dcb-4345-b5e1-bb13949fa5fb" + (reference "U147") (unit 1) (value "d_and") (footprint "") + ) + (path "/22f1346c-34f6-4eab-8728-cc3a481859f1" + (reference "U148") (unit 1) (value "d_and") (footprint "") + ) + (path "/d1222ba7-aacd-4433-8059-970370dbfbf8" + (reference "U149") (unit 1) (value "d_and") (footprint "") + ) + (path "/d7079abc-42fa-4c3a-8451-97afd2e7d1f7" + (reference "U150") (unit 1) (value "d_and") (footprint "") + ) + (path "/370e4a07-db1d-4813-a164-39fb83c11c13" + (reference "U151") (unit 1) (value "d_and") (footprint "") + ) + (path "/04c6688c-f1ef-4fac-b6ef-3f8041505a73" + (reference "U152") (unit 1) (value "d_and") (footprint "") + ) + (path "/92114bb0-90c5-4d5a-b379-e1b966f0dea4" + (reference "U153") (unit 1) (value "d_and") (footprint "") + ) + (path "/53b1b94e-2dd4-47dc-af5d-2b026d14a1f1" + (reference "U154") (unit 1) (value "d_and") (footprint "") + ) + (path "/557d1b25-0572-48ac-b297-6fa2b1783f3a" + (reference "U155") (unit 1) (value "d_and") (footprint "") + ) + (path "/3c8f23e5-305c-494d-85d3-e7f4d3515292" + (reference "U156") (unit 1) (value "d_and") (footprint "") + ) + (path "/28ac3635-1b02-41ec-99b6-26be30b76e8f" + (reference "U157") (unit 1) (value "d_and") (footprint "") + ) + (path "/35c8b52d-500d-4900-a0a1-f3932ad2b101" + (reference "U158") (unit 1) (value "d_and") (footprint "") + ) + (path "/f62f7588-3652-4567-b743-793c5f9ac55c" + (reference "U159") (unit 1) (value "d_and") (footprint "") + ) + (path "/39f57125-8b54-4f30-a35d-faeb45ce065e" + (reference "U160") (unit 1) (value "d_and") (footprint "") + ) + (path "/e8e5faca-bea9-4ac9-8b16-999fe6dc7d83" + (reference "U161") (unit 1) (value "d_and") (footprint "") + ) + (path "/8a527773-8742-4569-a907-ca568f3f291a" + (reference "U162") (unit 1) (value "d_and") (footprint "") + ) + (path "/61b286d8-b9fe-4401-a426-e6a60d934f91" + (reference "U163") (unit 1) (value "d_and") (footprint "") + ) + (path "/532297ad-7a6f-4355-b29a-6510fe3e5d4d" + (reference "U164") (unit 1) (value "d_and") (footprint "") + ) + (path "/77e8d856-37d4-46c2-b7ad-196ddb760829" + (reference "U165") (unit 1) (value "d_and") (footprint "") + ) + (path "/7e4daf88-fe15-4d45-b7b4-a66c54af2c21" + (reference "U166") (unit 1) (value "d_and") (footprint "") + ) + (path "/1e4a23a0-2fc3-448c-99c5-d022d7bb53ca" + (reference "U167") (unit 1) (value "d_and") (footprint "") + ) + (path "/632d9437-3d49-4b22-b26f-b1db5933e13c" + (reference "U168") (unit 1) (value "d_and") (footprint "") + ) + (path "/6e9e42d5-8ae7-4b93-b595-1dc8b41164dc" + (reference "U169") (unit 1) (value "d_and") (footprint "") + ) + (path "/d0f16531-202b-48ab-a219-d1d54096e4f9" + (reference "U170") (unit 1) (value "d_and") (footprint "") + ) + (path "/3ff09765-721e-4aae-9484-1752974ae961" + (reference "U171") (unit 1) (value "d_and") (footprint "") + ) + (path "/4e202e53-2f73-4de7-a388-7fb640f24741" + (reference "U172") (unit 1) (value "d_and") (footprint "") + ) + (path "/a15681e4-0389-45f1-9e26-ce024dee6f2a" + (reference "U173") (unit 1) (value "d_and") (footprint "") + ) + (path "/36f319ed-c138-4cfb-88ac-c3eb8843a9c4" + (reference "U174") (unit 1) (value "d_and") (footprint "") + ) + (path "/519b0459-babc-4d5e-a3e8-9a66c98ab492" + (reference "U175") (unit 1) (value "d_and") (footprint "") + ) + (path "/4ecd520d-66c3-46f3-9485-508bc9b2d920" + (reference "U176") (unit 1) (value "d_and") (footprint "") + ) + (path "/628cb8ef-c621-43a5-a095-07071f206711" + (reference "U177") (unit 1) (value "d_and") (footprint "") + ) + (path "/e46cb16d-8c24-4b2d-a813-43c1477d4b37" + (reference "U178") (unit 1) (value "d_and") (footprint "") + ) + (path "/3bc5f100-fe1f-4983-9e5b-e4ac853f9030" + (reference "U179") (unit 1) (value "d_and") (footprint "") + ) + (path "/a766ffd0-18a0-4b75-a636-254d47e996ea" + (reference "U180") (unit 1) (value "d_and") (footprint "") + ) + (path "/e8731612-0d4a-4be1-968d-46d81a4e11d9" + (reference "U181") (unit 1) (value "d_and") (footprint "") + ) + (path "/a4292883-7941-4446-af8c-8a09ac8b8980" + (reference "U182") (unit 1) (value "d_and") (footprint "") + ) + (path "/6bb7f50d-c97f-4a33-8c25-961f7ecc8027" + (reference "U183") (unit 1) (value "d_and") (footprint "") + ) + (path "/b3acd876-d05c-4d0f-adaf-c2d12c485f06" + (reference "U184") (unit 1) (value "d_and") (footprint "") + ) + (path "/25deba65-c340-4c6e-b2e3-dd2f1debb58b" + (reference "U185") (unit 1) (value "d_and") (footprint "") + ) + (path "/0255f7fb-0ab4-4de3-81de-193a6c0af1a8" + (reference "U186") (unit 1) (value "d_and") (footprint "") + ) + (path "/7d133765-99c0-4908-b7e3-274b7ddadd06" + (reference "U187") (unit 1) (value "d_and") (footprint "") + ) + (path "/5963699d-d70e-45ca-93d7-c0919da65455" + (reference "U188") (unit 1) (value "d_and") (footprint "") + ) + (path "/475724be-0e62-4e51-9fe2-988e4710bf56" + (reference "U189") (unit 1) (value "d_and") (footprint "") + ) + (path "/bad40b99-9af1-4c5d-9160-242c4a2be07c" + (reference "U190") (unit 1) (value "d_and") (footprint "") + ) + (path "/4bb2e454-d369-4a82-a878-f9de8c781d33" + (reference "U191") (unit 1) (value "d_and") (footprint "") + ) + (path "/950fea2c-0f2b-4966-a096-a3e12911cdb5" + (reference "U192") (unit 1) (value "d_and") (footprint "") + ) + (path "/76da5252-dc54-4c9f-94bb-10a4264d4272" + (reference "U193") (unit 1) (value "d_and") (footprint "") + ) + (path "/a5adb2cc-fcb8-4f50-9d35-7bd1f2177f2b" + (reference "U194") (unit 1) (value "d_and") (footprint "") + ) + (path "/58e503cd-0d99-46c2-8b37-fe1d1106b530" + (reference "U195") (unit 1) (value "d_and") (footprint "") + ) + (path "/5b476f95-991d-4ece-891a-b1dc7d28c2d1" + (reference "U196") (unit 1) (value "d_and") (footprint "") + ) + (path "/3407099c-08df-4adf-9e89-8fcf9694060b" + (reference "U197") (unit 1) (value "d_and") (footprint "") + ) + (path "/14ac50c9-5a13-4518-a2b2-523f32814334" + (reference "U198") (unit 1) (value "d_and") (footprint "") + ) + (path "/bda5fcf7-e8b0-4f22-936e-398d02276f91" + (reference "U199") (unit 1) (value "d_and") (footprint "") + ) + (path "/3aae535a-1d10-4f70-b80f-80dc53e57f29" + (reference "U200") (unit 1) (value "d_and") (footprint "") + ) + (path "/32ff3377-9309-42ad-a6b6-3adc44f61d81" + (reference "U201") (unit 1) (value "d_and") (footprint "") + ) + (path "/986487ad-48ac-4af3-acb0-dc7e94eea7e1" + (reference "U202") (unit 1) (value "d_and") (footprint "") + ) + (path "/1275b0e1-41f3-4024-afd6-549588f6f975" + (reference "U203") (unit 1) (value "d_and") (footprint "") + ) + (path "/e8503624-a35f-495c-b997-a8fc612a6bbb" + (reference "U204") (unit 1) (value "d_and") (footprint "") + ) + (path "/7c0c70b1-8a89-4e52-989e-26604abf2e3e" + (reference "U205") (unit 1) (value "d_and") (footprint "") + ) + (path "/c62e045f-51e8-45e8-b1d7-4fc9627c35e4" + (reference "U206") (unit 1) (value "d_and") (footprint "") + ) + (path "/13eaaf8b-01b3-40ad-982d-027d9596dc63" + (reference "U207") (unit 1) (value "d_and") (footprint "") + ) + (path "/380dd2a0-64cc-4da9-9802-1482a24e9f50" + (reference "U208") (unit 1) (value "d_and") (footprint "") + ) + (path "/75e00e78-414d-40cd-ab78-93ea73c51aec" + (reference "U209") (unit 1) (value "d_and") (footprint "") + ) + (path "/67932a25-d3a3-4bcc-b206-fa59eaa5c198" + (reference "U210") (unit 1) (value "d_and") (footprint "") + ) + (path "/5fffdee1-26d2-4253-bc18-e16a51cc5e66" + (reference "U211") (unit 1) (value "d_and") (footprint "") + ) + (path "/db330483-893b-4137-9fa5-e3fbf304ede5" + (reference "U212") (unit 1) (value "d_and") (footprint "") + ) + (path "/6a856bd3-45ae-41db-ab22-d7f426898a59" + (reference "U213") (unit 1) (value "d_and") (footprint "") + ) + (path "/4ebc123d-eb09-4520-8e4e-47f4a12c3315" + (reference "U214") (unit 1) (value "d_and") (footprint "") + ) + (path "/286efb87-a5e8-4c7a-a850-bf47a0428054" + (reference "U215") (unit 1) (value "d_and") (footprint "") + ) + (path "/a3855b19-3e2b-40d9-bcfc-2eba6859ce3b" + (reference "U216") (unit 1) (value "d_and") (footprint "") + ) + (path "/0cf81fce-5a6a-425a-8f34-41efc2e8d49c" + (reference "U217") (unit 1) (value "d_and") (footprint "") + ) + (path "/a8fb0ee5-9a58-4567-b3c3-2076267e60e2" + (reference "U218") (unit 1) (value "d_and") (footprint "") + ) + (path "/15398aae-f670-4272-a40a-c1cce752266a" + (reference "U219") (unit 1) (value "d_and") (footprint "") + ) + (path "/b2c078d3-8c47-40cc-96dd-ec75fae5b791" + (reference "U220") (unit 1) (value "d_and") (footprint "") + ) + (path "/fec4e3ca-c75d-443f-b378-b748b56c8967" + (reference "U221") (unit 1) (value "d_and") (footprint "") + ) + (path "/8a9d82d3-3103-4bff-8bec-6e5b548831df" + (reference "U222") (unit 1) (value "d_and") (footprint "") + ) + (path "/67e38128-52cf-4f60-a37b-601976032f8f" + (reference "U223") (unit 1) (value "d_and") (footprint "") + ) + (path "/58a442e8-c407-427f-b71d-a375aa1056f6" + (reference "U224") (unit 1) (value "d_and") (footprint "") + ) + (path "/732f9aff-490d-4be0-ae54-497419841021" + (reference "U225") (unit 1) (value "d_and") (footprint "") + ) + (path "/7a10b296-df13-4583-9957-fc55b543b455" + (reference "U226") (unit 1) (value "d_and") (footprint "") + ) + (path "/9d820c3b-1c9c-4154-8ab0-1151e403228c" + (reference "U227") (unit 1) (value "d_and") (footprint "") + ) + (path "/3dc7cf24-fb1e-4c52-a453-6712b69d8278" + (reference "U228") (unit 1) (value "d_and") (footprint "") + ) + (path "/653ff734-db4d-44e6-9d84-90529853b9ce" + (reference "U229") (unit 1) (value "d_and") (footprint "") + ) + (path "/84e78b2e-f09b-4412-95e5-7982ccd53f77" + (reference "U230") (unit 1) (value "d_and") (footprint "") + ) + (path "/3a32b633-3e49-4815-b1e9-f18452c47880" + (reference "U231") (unit 1) (value "d_and") (footprint "") + ) + (path "/7da8f95c-3c7d-477c-966c-cb54b9329c21" + (reference "U232") (unit 1) (value "d_and") (footprint "") + ) + (path "/564bb0b9-0791-49ea-a3f6-7e34d250f343" + (reference "U233") (unit 1) (value "d_and") (footprint "") + ) + (path "/fbcbd978-c2db-4fbf-afef-b78671917811" + (reference "U234") (unit 1) (value "d_or") (footprint "") + ) + (path "/970e183f-86c3-4e12-a77e-2fa8a6f167a9" + (reference "U235") (unit 1) (value "d_or") (footprint "") + ) + (path "/7233905d-b7ab-4090-be24-39967edbad2a" + (reference "U236") (unit 1) (value "d_or") (footprint "") + ) + (path "/abde3564-a226-4e01-b813-8d079010d6d8" + (reference "U237") (unit 1) (value "d_or") (footprint "") + ) + (path "/cd5f415b-1834-4d1d-80e9-7e34ba965ebe" + (reference "U238") (unit 1) (value "d_or") (footprint "") + ) + (path "/9e979cbc-1a81-4dad-962b-87b6e05b1f4d" + (reference "U239") (unit 1) (value "d_or") (footprint "") + ) + (path "/c2f06fab-3667-4377-bbbb-2a410089f3b8" + (reference "U240") (unit 1) (value "d_or") (footprint "") + ) + (path "/73585cf0-f743-4178-b0b8-c14c48818f8c" + (reference "U241") (unit 1) (value "d_or") (footprint "") + ) + (path "/d162566a-037c-416c-82ba-626d58495e27" + (reference "U242") (unit 1) (value "d_or") (footprint "") + ) + (path "/4b9f15ae-10f0-42f0-abad-f334fee74415" + (reference "U243") (unit 1) (value "d_or") (footprint "") + ) + (path "/7accb880-6367-40ff-8a44-65074f157a33" + (reference "U244") (unit 1) (value "d_or") (footprint "") + ) + (path "/707ad2e5-73e3-4757-8736-76d987bbd114" + (reference "U245") (unit 1) (value "d_or") (footprint "") + ) + (path "/a7b64e1e-11ff-44f0-b3d6-5ec5de0c9607" + (reference "U246") (unit 1) (value "d_or") (footprint "") + ) + (path "/629208a2-f05a-44cb-8b9d-81f8b7bd5afa" + (reference "U247") (unit 1) (value "d_or") (footprint "") + ) + (path "/deff62fa-d4da-4af0-87cb-5cb7d0ff1a98" + (reference "U248") (unit 1) (value "d_or") (footprint "") + ) + (path "/f6c02c7a-d122-4732-ad74-30530dfa712e" + (reference "U249") (unit 1) (value "d_or") (footprint "") + ) + (path "/8608a4e1-348b-4e0d-9a54-d467ec6c6522" + (reference "U250") (unit 1) (value "d_or") (footprint "") + ) + (path "/d95124b5-50a0-447e-aa4d-f112c14ea854" + (reference "U251") (unit 1) (value "d_or") (footprint "") + ) + (path "/959328d5-625c-48dc-bc92-858199ce8a38" + (reference "U252") (unit 1) (value "d_or") (footprint "") + ) + (path "/25ff1865-46a0-4df7-a14f-7d7eab8ab2c4" + (reference "U253") (unit 1) (value "d_or") (footprint "") + ) + (path "/01b71ce9-d0a5-4bd1-a46c-240946f71d3f" + (reference "U254") (unit 1) (value "d_or") (footprint "") + ) + (path "/586e02e4-a3d9-47d5-835a-b1742b066203" + (reference "U255") (unit 1) (value "d_or") (footprint "") + ) + (path "/9d26d1a3-2dd9-47db-acb9-0225f1a118d7" + (reference "U256") (unit 1) (value "d_or") (footprint "") + ) + (path "/d0ed3c1b-6945-480b-ab7a-49605d079394" + (reference "U257") (unit 1) (value "d_or") (footprint "") + ) + (path "/993bcd4a-40af-4a1d-b394-0d10709b9ffd" + (reference "U258") (unit 1) (value "d_or") (footprint "") + ) + (path "/6e9ebc4f-aab0-4923-99d1-676e8f8e3294" + (reference "U259") (unit 1) (value "d_or") (footprint "") + ) + (path "/d9fe7020-7cb8-44a3-8eb0-7d1ca06d3190" + (reference "U260") (unit 1) (value "d_or") (footprint "") + ) + (path "/6bb3e146-9002-4d8f-aa40-b212707524d3" + (reference "U261") (unit 1) (value "d_or") (footprint "") + ) + (path "/6875bb3b-ecff-4fc0-b58b-d78ee9dd18a8" + (reference "U262") (unit 1) (value "d_or") (footprint "") + ) + (path "/8edb9495-578a-40fa-9077-fe0b48d8d076" + (reference "U263") (unit 1) (value "d_or") (footprint "") + ) + (path "/4903101a-655f-446f-a71c-4fceeae33cd3" + (reference "U264") (unit 1) (value "d_or") (footprint "") + ) + (path "/8439c8a6-4d7f-481a-a4c7-5500f9e6b41d" + (reference "U265") (unit 1) (value "d_or") (footprint "") + ) + (path "/208cbeb4-1d3b-4c2e-b65b-d3a8ce16e600" + (reference "U266") (unit 1) (value "d_or") (footprint "") + ) + (path "/d9104c95-5fc8-4e54-b1a0-1ea06ef089fb" + (reference "U267") (unit 1) (value "d_or") (footprint "") + ) + (path "/b2376692-23ee-45a6-aa41-5080026000be" + (reference "U268") (unit 1) (value "d_or") (footprint "") + ) + (path "/8ae597f2-0e53-49a4-ace4-86f408826e4a" + (reference "U269") (unit 1) (value "d_or") (footprint "") + ) + (path "/3a43c051-5352-4e34-a25f-a60fc467e610" + (reference "U270") (unit 1) (value "d_or") (footprint "") + ) + (path "/95f7a862-9564-4382-8ff8-7f90bd77da44" + (reference "U271") (unit 1) (value "d_or") (footprint "") + ) + (path "/44726a71-650b-4dfc-8483-651127de171b" + (reference "U272") (unit 1) (value "d_or") (footprint "") + ) + (path "/9dc9b504-8583-4bb9-9f81-0f839dd16132" + (reference "U273") (unit 1) (value "d_or") (footprint "") + ) + (path "/26b72e20-42be-4f1e-a823-1c607689d3c0" + (reference "U274") (unit 1) (value "d_or") (footprint "") + ) + (path "/a3e1ad0e-3ca6-4be9-8726-4601f89f819e" + (reference "U275") (unit 1) (value "d_or") (footprint "") + ) + (path "/639bae42-07df-4156-9b76-ca875943edef" + (reference "U276") (unit 1) (value "d_or") (footprint "") + ) + (path "/f7466e0b-fed9-4802-8149-c49aa3273f5d" + (reference "U277") (unit 1) (value "d_or") (footprint "") + ) + (path "/330504ca-a5ea-431f-bd2b-ca20b74a9d82" + (reference "U278") (unit 1) (value "d_or") (footprint "") + ) + (path "/aaf834a9-794d-46c9-a44a-5ac6e464d6ae" + (reference "U279") (unit 1) (value "d_or") (footprint "") + ) + (path "/1955c008-a08d-4d8c-b64e-3a8b4e9aa159" + (reference "U280") (unit 1) (value "d_or") (footprint "") + ) + (path "/2443eb99-2d3b-4129-ade9-12c5075cd9a5" + (reference "U281") (unit 1) (value "d_or") (footprint "") + ) + (path "/3052449b-dde2-44fd-a7c4-ffbf4814f1ba" + (reference "U282") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/de91bd59-11c1-44f0-8f08-5ea107d33d25" + (reference "U283") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/642ac8e2-3b52-44da-9bc2-2197034fcaaa" + (reference "U284") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/f1a4ad79-4c3a-4b4d-a60b-3a6494163d43" + (reference "U285") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/cf2088c8-9438-4685-93d6-98fadf75aaa1" + (reference "U286") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/835d5f5f-184c-4670-827f-84c914f9dfc7" + (reference "U287") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/53666778-b503-4754-bc2a-41cd0edeb9ae" + (reference "U288") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/aa8e3434-8def-4b35-94a3-10d99f3913a4" + (reference "U289") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/a40c52cf-f82b-4424-859a-c0adf66e186d" + (reference "U290") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/3b74c4d8-35fd-4c00-9a26-ab422f8acdaa" + (reference "U291") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/2dc56818-0fd4-46c5-a274-073b887411df" + (reference "U292") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b539d317-ec5a-4ed8-be1b-05c64a6c0698" + (reference "U293") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/cfe71f29-17fd-4acd-8861-812c1a08698c" + (reference "U294") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/591f9113-bb7c-498c-8bd6-e0959e6a7642" + (reference "U295") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/94c63b45-19d7-45b1-a424-857153e4ac03" + (reference "U296") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/b5a26d38-875c-4df8-bc9b-9551d4a034a0" + (reference "U297") (unit 1) (value "d_inverter") (footprint "") + ) + (path "/c8885749-1dcc-4a71-a46a-19b33b374743" + (reference "U298") (unit 1) (value "d_dff") (footprint "") + ) + (path "/a74aed23-dc25-4a89-aa0a-2ae52d3dae70" + (reference "U299") (unit 1) (value "d_dff") (footprint "") + ) + (path "/305534e1-b606-4e95-9fb2-d5aa05ca5943" + (reference "U300") (unit 1) (value "d_dff") (footprint "") + ) + (path "/e45e8906-6d7d-4cb4-ab48-dc48a7a22e19" + (reference "U301") (unit 1) (value "d_dff") (footprint "") + ) + (path "/4e6fecee-8513-41d2-a7fe-7cc35b950053" + (reference "U302") (unit 1) (value "d_dff") (footprint "") + ) + (path "/a238add2-57fb-49b1-8d3c-2ec4dbdab494" + (reference "U303") (unit 1) (value "d_dff") (footprint "") + ) + (path "/ec33cbac-6f19-4e05-adda-59afd6586bd1" + (reference "U304") (unit 1) (value "d_dff") (footprint "") + ) + (path "/c90cc639-5a55-4b0b-b528-6d5df8fe30cd" + (reference "U305") (unit 1) (value "d_dff") (footprint "") + ) + (path "/d3bf81b2-be4d-4c54-8c84-0227a3688137" + (reference "U306") (unit 1) (value "d_dff") (footprint "") + ) + (path "/2ca4147b-4e52-4349-8bdf-9f31fc42ca37" + (reference "U307") (unit 1) (value "d_dff") (footprint "") + ) + (path "/c69eb76f-0b5c-4581-815c-980e53f67437" + (reference "U308") (unit 1) (value "d_dff") (footprint "") + ) + (path "/05b6e21a-6a9d-4460-8532-444ce1570914" + (reference "U309") (unit 1) (value "d_dff") (footprint "") + ) + (path "/0bf80858-2b58-472f-9a43-ca57514daa89" + (reference "U310") (unit 1) (value "d_dff") (footprint "") + ) + (path "/67a5c330-cb92-4807-936a-2927c6d57f5a" + (reference "U311") (unit 1) (value "d_dff") (footprint "") + ) + (path "/6d585506-6865-49b0-bb72-8abb4eaa792b" + (reference "U312") (unit 1) (value "d_dff") (footprint "") + ) + (path "/17c5d928-33c3-4b35-b503-6682ebd0eae5" + (reference "U313") (unit 1) (value "d_dff") (footprint "") + ) + (path "/699bb8ad-1ad0-4f5f-886a-543ec5d43c1e" + (reference "U314") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/65b86287-eb9f-44ef-b990-213b7ba3a8a9" + (reference "U315") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/ade1b5ae-8a60-43ff-bd0c-7342e4700bab" + (reference "U316") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/ceb4445b-8951-4ff8-8c99-636681b029ac" + (reference "U317") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/3a7a86c9-95e5-4339-99b7-dc026a35cf87" + (reference "U318") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/7e6df1e7-bb5f-4e53-92ad-f6cd029e8c5f" + (reference "U319") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/58c35572-f1d2-44c3-ad51-8f866a80ad4a" + (reference "U320") (unit 1) (value "dac_bridge_1") (footprint "") + ) + (path "/4703c1eb-6805-4676-b278-43bd8c08e138" + (reference "U321") (unit 1) (value "dac_bridge_1") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.sub b/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.sub new file mode 100644 index 000000000..bb89f7be3 --- /dev/null +++ b/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB.sub @@ -0,0 +1,1286 @@ +* Subcircuit TIBPAL20LB +.subckt TIBPAL20LB /i0 /i1 /i2 /i3 /i4 /i5 /i6 /i7 /i8 /i9 /i10 /i11 /i12 /i13 /i14 /i15 /i16 /i17 /i18 /i19 /clk /set /reset net-_u1-pad24_ net-_u1-pad25_ net-_u1-pad26_ +.title kicad schematic +* u6 /i4 /_ni4 d_inverter +* u5 /i3 /_ni3 d_inverter +* u2 /i0 /_ni0 d_inverter +* u4 /i2 /_ni2 d_inverter +* u3 /i1 /_ni1 d_inverter +* u119 net-_u119-pad1_ /i14 net-_u119-pad3_ d_and +* u118 net-_u118-pad1_ /__ni13 net-_u118-pad3_ d_and +* u117 net-_u117-pad1_ /__ni12 net-_u117-pad3_ d_and +* u52 /i6 /_ni8 net-_u116-pad1_ d_and +* u53 /i7 /i9 net-_u117-pad1_ d_and +* u51 /_ni5 /i8 net-_u115-pad1_ d_and +* u57 /i11 /i13 net-_u121-pad1_ d_and +* u56 /i10 /__ni12 net-_u120-pad1_ d_and +* u55 /_ni9 /i12 net-_u119-pad1_ d_and +* u54 /i9 /i11 net-_u118-pad1_ d_and +* u116 net-_u116-pad1_ /i11 net-_u116-pad3_ d_and +* u115 net-_u115-pad1_ /i10 net-_u115-pad3_ d_and +* u121 net-_u121-pad1_ /__ni16 net-_u121-pad3_ d_and +* u120 net-_u120-pad1_ /i15 net-_u120-pad3_ d_and +* u107 net-_u107-pad1_ /i4 net-_u107-pad3_ d_and +* u108 net-_u108-pad1_ /i5 net-_u108-pad3_ d_and +* u109 net-_u109-pad1_ /_ni6 net-_u109-pad3_ d_and +* u106 net-_u106-pad1_ /_ni2 net-_u106-pad3_ d_and +* u45 /i0 /_ni4 net-_u109-pad1_ d_and +* u44 /i1 /_ni3 net-_u108-pad1_ d_and +* u43 /_ni0 /i2 net-_u107-pad1_ d_and +* u42 /i0 /i1 net-_u106-pad1_ d_and +* u111 net-_u111-pad1_ /i6 net-_u111-pad3_ d_and +* u110 net-_u110-pad1_ /_ni4 net-_u110-pad3_ d_and +* u114 net-_u114-pad1_ /_ni9 net-_u114-pad3_ d_and +* u113 net-_u113-pad1_ /_ni8 net-_u113-pad3_ d_and +* u112 net-_u112-pad1_ /i7 net-_u112-pad3_ d_and +* u50 /i5 /i7 net-_u114-pad1_ d_and +* u49 /i4 /i6 net-_u113-pad1_ d_and +* u47 /_ni2 /i5 net-_u111-pad1_ d_and +* u48 /i3 /_ni5 net-_u112-pad1_ d_and +* u46 /i2 /i3 net-_u110-pad1_ d_and +* u17 /i15 /__ni15 d_inverter +* u16 /i14 unconnected-_u16-pad2_ d_inverter +* u19 /i17 /__ni17 d_inverter +* u18 /i16 /__ni16 d_inverter +* u21 /i19 /__ni19 d_inverter +* u20 /i18 /__ni18 d_inverter +* u11 /i9 /_ni9 d_inverter +* u10 /i8 /_ni8 d_inverter +* u9 /i7 /_ni7 d_inverter +* u15 /i13 /__ni13 d_inverter +* u14 /i12 /__ni12 d_inverter +* u13 /i11 /__ni11 d_inverter +* u12 /i10 /__ni10 d_inverter +* u8 /i6 /_ni6 d_inverter +* u7 /i5 /_ni5 d_inverter +* u302 net-_u282-pad2_ /clk /set /reset unconnected-_u302-pad5_ net-_u302-pad6_ d_dff +* u318 net-_u302-pad6_ unconnected-_u318-pad2_ dac_bridge_1 +* u292 net-_u276-pad3_ net-_u292-pad2_ d_inverter +* u282 net-_u266-pad3_ net-_u282-pad2_ d_inverter +* u288 net-_u272-pad3_ net-_u288-pad2_ d_inverter +* u287 net-_u271-pad3_ net-_u287-pad2_ d_inverter +* u272 net-_u256-pad3_ net-_u197-pad3_ net-_u272-pad3_ d_or +* u271 net-_u255-pad3_ net-_u201-pad3_ net-_u271-pad3_ d_or +* u256 net-_u240-pad3_ net-_u196-pad3_ net-_u256-pad3_ d_or +* u255 net-_u239-pad3_ net-_u200-pad3_ net-_u255-pad3_ d_or +* u187 net-_u123-pad3_ /i0 net-_u187-pad3_ d_and +* u188 net-_u124-pad3_ /i4 net-_u188-pad3_ d_and +* u186 net-_u122-pad3_ /__ni19 net-_u186-pad3_ d_and +* u190 net-_u126-pad3_ /_ni1 net-_u190-pad3_ d_and +* u189 net-_u125-pad3_ /_ni5 net-_u189-pad3_ d_and +* u244 net-_u190-pad3_ net-_u191-pad3_ net-_u244-pad3_ d_or +* u276 net-_u260-pad3_ net-_u193-pad3_ net-_u276-pad3_ d_or +* u260 net-_u244-pad3_ net-_u192-pad3_ net-_u260-pad3_ d_or +* u266 net-_u250-pad3_ net-_u189-pad3_ net-_u266-pad3_ d_or +* u250 net-_u234-pad3_ net-_u188-pad3_ net-_u250-pad3_ d_or +* u234 net-_u186-pad3_ net-_u187-pad3_ net-_u234-pad3_ d_or +* u240 net-_u194-pad3_ net-_u195-pad3_ net-_u240-pad3_ d_or +* u239 net-_u198-pad3_ net-_u199-pad3_ net-_u239-pad3_ d_or +* u192 net-_u128-pad3_ /_ni3 net-_u192-pad3_ d_and +* u193 net-_u129-pad3_ /_ni7 net-_u193-pad3_ d_and +* u191 net-_u127-pad3_ /i2 net-_u191-pad3_ d_and +* u197 net-_u133-pad3_ /__ni12 net-_u197-pad3_ d_and +* u198 net-_u134-pad3_ /i15 net-_u198-pad3_ d_and +* u196 net-_u132-pad3_ /i11 net-_u196-pad3_ d_and +* u195 net-_u131-pad3_ /__ni10 net-_u195-pad3_ d_and +* u194 net-_u130-pad3_ /i9 net-_u194-pad3_ d_and +* u201 net-_u137-pad3_ /__ni18 net-_u201-pad3_ d_and +* u200 net-_u136-pad3_ /i17 net-_u200-pad3_ d_and +* u199 net-_u135-pad3_ /__ni16 net-_u199-pad3_ d_and +* u319 net-_u303-pad6_ unconnected-_u319-pad2_ dac_bridge_1 +* u304 net-_u288-pad2_ /clk /set /reset unconnected-_u304-pad5_ net-_u304-pad6_ d_dff +* u303 net-_u292-pad2_ /clk /set /reset unconnected-_u303-pad5_ net-_u303-pad6_ d_dff +* u321 net-_u305-pad6_ unconnected-_u321-pad2_ dac_bridge_1 +* u320 net-_u304-pad6_ unconnected-_u320-pad2_ dac_bridge_1 +* u305 net-_u287-pad2_ /clk /set /reset unconnected-_u305-pad5_ net-_u305-pad6_ d_dff +* u123 net-_u123-pad1_ /i18 net-_u123-pad3_ d_and +* u125 net-_u125-pad1_ /_ni0 net-_u125-pad3_ d_and +* u124 net-_u124-pad1_ /i19 net-_u124-pad3_ d_and +* u122 net-_u122-pad1_ /__ni17 net-_u122-pad3_ d_and +* u61 /i15 /i17 net-_u125-pad1_ d_and +* u60 /i14 /__ni16 net-_u124-pad1_ d_and +* u59 /__ni13 /i16 net-_u123-pad1_ d_and +* u58 /i13 /i15 net-_u122-pad1_ d_and +* u66 /i1 /i4 net-_u130-pad1_ d_and +* u65 /i19 /i1 net-_u129-pad1_ d_and +* u64 /i18 /_ni0 net-_u128-pad1_ d_and +* u63 /__ni17 /i0 net-_u127-pad1_ d_and +* u67 /_ni1 /i5 net-_u131-pad1_ d_and +* u130 net-_u130-pad1_ /_ni6 net-_u130-pad3_ d_and +* u131 net-_u131-pad1_ /i7 net-_u131-pad3_ d_and +* u129 net-_u129-pad1_ /_ni4 net-_u129-pad3_ d_and +* u128 net-_u128-pad1_ /i3 net-_u128-pad3_ d_and +* u127 net-_u127-pad1_ /i2 net-_u127-pad3_ d_and +* u126 net-_u126-pad1_ /_ni1 net-_u126-pad3_ d_and +* u62 /i17 /i19 net-_u126-pad1_ d_and +* u72 /i9 /__ni11 net-_u136-pad1_ d_and +* u71 /_ni8 /i11 net-_u135-pad1_ d_and +* u70 /i8 /i10 net-_u134-pad1_ d_and +* u69 /i3 /i6 net-_u133-pad1_ d_and +* u68 /i2 /_ni5 net-_u132-pad1_ d_and +* u137 net-_u137-pad1_ /__ni15 net-_u137-pad3_ d_and +* u136 net-_u136-pad1_ /i14 net-_u136-pad3_ d_and +* u135 net-_u135-pad1_ /i13 net-_u135-pad3_ d_and +* u73 /i10 /i12 net-_u137-pad1_ d_and +* u134 net-_u134-pad1_ /__ni12 net-_u134-pad3_ d_and +* u133 net-_u133-pad1_ /_ni9 net-_u133-pad3_ d_and +* u132 net-_u132-pad1_ /i8 net-_u132-pad3_ d_and +* u252 net-_u236-pad3_ net-_u176-pad3_ net-_u252-pad3_ d_or +* u236 net-_u174-pad3_ net-_u175-pad3_ net-_u236-pad3_ d_or +* u235 net-_u170-pad3_ net-_u171-pad3_ net-_u235-pad3_ d_or +* u171 net-_u107-pad3_ /_ni5 net-_u171-pad3_ d_and +* u170 net-_u106-pad3_ /i3 net-_u170-pad3_ d_and +* u173 net-_u109-pad3_ /i7 net-_u173-pad3_ d_and +* u174 net-_u110-pad3_ /i8 net-_u174-pad3_ d_and +* u172 net-_u108-pad3_ /i6 net-_u172-pad3_ d_and +* u269 net-_u253-pad3_ net-_u181-pad3_ net-_u269-pad3_ d_or +* u268 net-_u252-pad3_ net-_u177-pad3_ net-_u268-pad3_ d_or +* u253 net-_u237-pad3_ net-_u180-pad3_ net-_u253-pad3_ d_or +* u267 net-_u251-pad3_ net-_u173-pad3_ net-_u267-pad3_ d_or +* u251 net-_u235-pad3_ net-_u172-pad3_ net-_u251-pad3_ d_or +* u316 net-_u300-pad6_ unconnected-_u316-pad2_ dac_bridge_1 +* u317 net-_u301-pad6_ unconnected-_u317-pad2_ dac_bridge_1 +* u301 net-_u286-pad2_ /clk /set /reset unconnected-_u301-pad5_ net-_u301-pad6_ d_dff +* u237 net-_u178-pad3_ net-_u179-pad3_ net-_u237-pad3_ d_or +* u179 net-_u115-pad3_ /__ni13 net-_u179-pad3_ d_and +* u178 net-_u114-pad3_ /i12 net-_u178-pad3_ d_and +* u177 net-_u113-pad3_ /__ni11 net-_u177-pad3_ d_and +* u176 net-_u112-pad3_ /i10 net-_u176-pad3_ d_and +* u175 net-_u111-pad3_ /_ni9 net-_u175-pad3_ d_and +* u181 net-_u117-pad3_ /__ni15 net-_u181-pad3_ d_and +* u182 net-_u118-pad3_ /i16 net-_u182-pad3_ d_and +* u180 net-_u116-pad3_ /i14 net-_u180-pad3_ d_and +* u270 net-_u254-pad3_ net-_u185-pad3_ net-_u270-pad3_ d_or +* u185 net-_u121-pad3_ /i18 net-_u185-pad3_ d_and +* u184 net-_u120-pad3_ /i6 net-_u184-pad3_ d_and +* u183 net-_u119-pad3_ /__ni17 net-_u183-pad3_ d_and +* u254 net-_u238-pad3_ net-_u184-pad3_ net-_u254-pad3_ d_or +* u238 net-_u182-pad3_ net-_u183-pad3_ net-_u238-pad3_ d_or +* u315 net-_u299-pad6_ unconnected-_u315-pad2_ dac_bridge_1 +* u314 net-_u298-pad6_ unconnected-_u314-pad2_ dac_bridge_1 +* u298 net-_u283-pad2_ /clk /set /reset unconnected-_u298-pad5_ net-_u298-pad6_ d_dff +* u286 net-_u270-pad3_ net-_u286-pad2_ d_inverter +* u300 net-_u285-pad2_ /clk /set /reset unconnected-_u300-pad5_ net-_u300-pad6_ d_dff +* u285 net-_u269-pad3_ net-_u285-pad2_ d_inverter +* u299 net-_u284-pad2_ /clk /set /reset unconnected-_u299-pad5_ net-_u299-pad6_ d_dff +* u284 net-_u268-pad3_ net-_u284-pad2_ d_inverter +* u283 net-_u267-pad3_ net-_u283-pad2_ d_inverter +* u88 /i10 /ni12 net-_u152-pad1_ d_and +* u87 /ni9 /i12 net-_u151-pad1_ d_and +* u86 /i9 /i11 net-_u150-pad1_ d_and +* u85 /i7 /i9 net-_u149-pad1_ d_and +* u84 /i6 /ni8 net-_u148-pad1_ d_and +* u80 /i3 /ni5 net-_u144-pad1_ d_and +* u79 /ni2 /i5 net-_u143-pad1_ d_and +* u28 /i6 /ni6 d_inverter +* u27 /i5 /ni5 d_inverter +* u30 /i8 /ni8 d_inverter +* u29 /i7 /ni7 d_inverter +* u83 /ni5 /i8 net-_u147-pad1_ d_and +* u82 /i5 /i7 net-_u146-pad1_ d_and +* u81 /i4 /i6 net-_u145-pad1_ d_and +* u26 /i4 /ni4 d_inverter +* u25 /i3 /ni3 d_inverter +* u24 /i2 /ni2 d_inverter +* u23 /i1 /ni1 d_inverter +* u22 /i0 /ni0 d_inverter +* u77 /i0 /ni4 net-_u141-pad1_ d_and +* u78 /i2 /i3 net-_u142-pad1_ d_and +* u76 /i1 /ni3 net-_u140-pad1_ d_and +* u31 /i9 /ni9 d_inverter +* u33 /i11 /ni11 d_inverter +* u32 /i10 /ni10 d_inverter +* u39 /i17 /ni17 d_inverter +* u38 /i16 /ni16 d_inverter +* u37 /i15 /ni15 d_inverter +* u41 /i19 /ni19 d_inverter +* u40 /i18 /ni18 d_inverter +* u34 /i12 /ni12 d_inverter +* u35 /i13 /ni13 d_inverter +* u36 /i14 unconnected-_u36-pad2_ d_inverter +* u248 net-_u226-pad3_ net-_u227-pad3_ net-_u248-pad3_ d_or +* u264 net-_u248-pad3_ net-_u228-pad3_ net-_u264-pad3_ d_or +* u233 net-_u169-pad3_ /ni18 net-_u233-pad3_ d_and +* u263 net-_u247-pad3_ net-_u232-pad3_ net-_u263-pad3_ d_or +* u247 net-_u230-pad3_ net-_u231-pad3_ net-_u247-pad3_ d_or +* u257 net-_u241-pad3_ net-_u220-pad3_ net-_u257-pad3_ d_or +* u265 net-_u249-pad3_ net-_u224-pad3_ net-_u265-pad3_ d_or +* u249 net-_u222-pad3_ net-_u223-pad3_ net-_u249-pad3_ d_or +* u297 net-_u281-pad3_ net-_u297-pad2_ d_inverter +* u281 net-_u265-pad3_ net-_u225-pad3_ net-_u281-pad3_ d_or +* u280 net-_u264-pad3_ net-_u229-pad3_ net-_u280-pad3_ d_or +* u279 net-_u263-pad3_ net-_u233-pad3_ net-_u279-pad3_ d_or +* u289 net-_u273-pad3_ net-_u289-pad2_ d_inverter +* u273 net-_u257-pad3_ net-_u221-pad3_ net-_u273-pad3_ d_or +* u296 net-_u280-pad3_ net-_u296-pad2_ d_inverter +* u295 net-_u279-pad3_ net-_u295-pad2_ d_inverter +* u241 net-_u218-pad3_ net-_u219-pad3_ net-_u241-pad3_ d_or +* u313 net-_u295-pad2_ /clk /set /reset net-_u1-pad26_ unconnected-_u313-pad6_ d_dff +* u312 net-_u296-pad2_ /clk /set /reset unconnected-_u312-pad5_ unconnected-_u312-pad6_ d_dff +* u311 net-_u297-pad2_ /clk /set /reset unconnected-_u311-pad5_ unconnected-_u311-pad6_ d_dff +* u310 net-_u289-pad2_ /clk /set /reset unconnected-_u310-pad5_ unconnected-_u310-pad6_ d_dff +* u206 net-_u142-pad3_ /i8 net-_u206-pad3_ d_and +* u207 net-_u143-pad3_ /ni9 net-_u207-pad3_ d_and +* u205 net-_u141-pad3_ /i7 net-_u205-pad3_ d_and +* u204 net-_u140-pad3_ /i6 net-_u204-pad3_ d_and +* u203 net-_u139-pad3_ /ni5 net-_u203-pad3_ d_and +* u202 net-_u138-pad3_ /i3 net-_u202-pad3_ d_and +* u210 net-_u146-pad3_ /i12 net-_u210-pad3_ d_and +* u209 net-_u145-pad3_ /ni11 net-_u209-pad3_ d_and +* u208 net-_u144-pad3_ /i10 net-_u208-pad3_ d_and +* u75 /ni0 /i2 net-_u139-pad1_ d_and +* u74 /i0 /i1 net-_u138-pad1_ d_and +* u139 net-_u139-pad1_ /i4 net-_u139-pad3_ d_and +* u140 net-_u140-pad1_ /i5 net-_u140-pad3_ d_and +* u138 net-_u138-pad1_ /ni2 net-_u138-pad3_ d_and +* u142 net-_u142-pad1_ /ni4 net-_u142-pad3_ d_and +* u141 net-_u141-pad1_ /ni6 net-_u141-pad3_ d_and +* u149 net-_u149-pad1_ /ni12 net-_u149-pad3_ d_and +* u148 net-_u148-pad1_ /i11 net-_u148-pad3_ d_and +* u147 net-_u147-pad1_ /i10 net-_u147-pad3_ d_and +* u144 net-_u144-pad1_ /i7 net-_u144-pad3_ d_and +* u146 net-_u146-pad1_ /ni9 net-_u146-pad3_ d_and +* u145 net-_u145-pad1_ /ni8 net-_u145-pad3_ d_and +* u143 net-_u143-pad1_ /i6 net-_u143-pad3_ d_and +* u150 net-_u150-pad1_ /ni13 net-_u150-pad3_ d_and +* u213 net-_u149-pad3_ /ni15 net-_u213-pad3_ d_and +* u212 net-_u148-pad3_ /i14 net-_u212-pad3_ d_and +* u211 net-_u147-pad3_ /ni13 net-_u211-pad3_ d_and +* u152 net-_u152-pad1_ /i15 net-_u152-pad3_ d_and +* u151 net-_u151-pad1_ /i14 net-_u151-pad3_ d_and +* u215 net-_u151-pad3_ /ni17 net-_u215-pad3_ d_and +* u216 net-_u152-pad3_ /i6 net-_u216-pad3_ d_and +* u214 net-_u150-pad3_ /i16 net-_u214-pad3_ d_and +* u307 net-_u291-pad2_ /clk /set /reset unconnected-_u307-pad5_ unconnected-_u307-pad6_ d_dff +* u308 net-_u293-pad2_ /clk /set /reset unconnected-_u308-pad5_ unconnected-_u308-pad6_ d_dff +* u306 net-_u290-pad2_ /clk /set /reset net-_u1-pad24_ unconnected-_u306-pad6_ d_dff +* u309 net-_u294-pad2_ /clk /set /reset net-_u1-pad25_ unconnected-_u309-pad6_ d_dff +* u291 net-_u275-pad3_ net-_u291-pad2_ d_inverter +* u275 net-_u259-pad3_ net-_u209-pad3_ net-_u275-pad3_ d_or +* u290 net-_u274-pad3_ net-_u290-pad2_ d_inverter +* u274 net-_u258-pad3_ net-_u205-pad3_ net-_u274-pad3_ d_or +* u294 net-_u278-pad3_ net-_u294-pad2_ d_inverter +* u293 net-_u277-pad3_ net-_u293-pad2_ d_inverter +* u278 net-_u262-pad3_ net-_u217-pad3_ net-_u278-pad3_ d_or +* u277 net-_u261-pad3_ net-_u213-pad3_ net-_u277-pad3_ d_or +* u259 net-_u243-pad3_ net-_u208-pad3_ net-_u259-pad3_ d_or +* u258 net-_u242-pad3_ net-_u204-pad3_ net-_u258-pad3_ d_or +* u242 net-_u202-pad3_ net-_u203-pad3_ net-_u242-pad3_ d_or +* u262 net-_u246-pad3_ net-_u216-pad3_ net-_u262-pad3_ d_or +* u246 net-_u214-pad3_ net-_u215-pad3_ net-_u246-pad3_ d_or +* u261 net-_u245-pad3_ net-_u212-pad3_ net-_u261-pad3_ d_or +* u245 net-_u210-pad3_ net-_u211-pad3_ net-_u245-pad3_ d_or +* u243 net-_u206-pad3_ net-_u207-pad3_ net-_u243-pad3_ d_or +* u101 /i3 /i6 net-_u101-pad3_ d_and +* u162 net-_u162-pad1_ /ni6 net-_u162-pad3_ d_and +* u161 net-_u161-pad1_ /ni4 net-_u161-pad3_ d_and +* u160 net-_u160-pad1_ /i3 net-_u160-pad3_ d_and +* u97 /i19 /i1 net-_u161-pad1_ d_and +* u96 /i18 /ni0 net-_u160-pad1_ d_and +* u229 net-_u165-pad3_ /ni12 net-_u229-pad3_ d_and +* u230 net-_u166-pad3_ /i15 net-_u230-pad3_ d_and +* u231 net-_u167-pad3_ /ni16 net-_u231-pad3_ d_and +* u232 net-_u168-pad3_ /i17 net-_u232-pad3_ d_and +* u228 net-_u164-pad3_ /i11 net-_u228-pad3_ d_and +* u225 net-_u161-pad3_ /ni7 net-_u225-pad3_ d_and +* u227 net-_u163-pad3_ /ni10 net-_u227-pad3_ d_and +* u226 net-_u162-pad3_ /i9 net-_u226-pad3_ d_and +* u224 net-_u160-pad3_ /ni3 net-_u224-pad3_ d_and +* u165 net-_u101-pad3_ /ni9 net-_u165-pad3_ d_and +* u164 net-_u100-pad3_ /i8 net-_u164-pad3_ d_and +* u163 net-_u163-pad1_ /i7 net-_u163-pad3_ d_and +* u91 /ni13 /i16 net-_u155-pad1_ d_and +* u90 /i13 /i15 net-_u154-pad1_ d_and +* u89 /i11 /i13 net-_u153-pad1_ d_and +* u95 /ni17 /i0 net-_u159-pad1_ d_and +* u94 /i17 /i19 net-_u158-pad1_ d_and +* u93 /i15 /i17 net-_u157-pad1_ d_and +* u92 /i14 /ni16 net-_u156-pad1_ d_and +* u99 /ni1 /i5 net-_u163-pad1_ d_and +* u100 /i2 /ni5 net-_u100-pad3_ d_and +* u98 /i1 /i4 net-_u162-pad1_ d_and +* u155 net-_u155-pad1_ /i18 net-_u155-pad3_ d_and +* u154 net-_u154-pad1_ /ni17 net-_u154-pad3_ d_and +* u153 net-_u153-pad1_ /ni16 net-_u153-pad3_ d_and +* u218 net-_u154-pad3_ /ni19 net-_u218-pad3_ d_and +* u219 net-_u155-pad3_ /i0 net-_u219-pad3_ d_and +* u217 net-_u153-pad3_ /i18 net-_u217-pad3_ d_and +* u158 net-_u158-pad1_ /ni1 net-_u158-pad3_ d_and +* u157 net-_u157-pad1_ /ni0 net-_u157-pad3_ d_and +* u159 net-_u159-pad1_ /i2 net-_u159-pad3_ d_and +* u156 net-_u156-pad1_ /i19 net-_u156-pad3_ d_and +* u223 net-_u159-pad3_ /i2 net-_u223-pad3_ d_and +* u221 net-_u157-pad3_ /ni5 net-_u221-pad3_ d_and +* u222 net-_u158-pad3_ /ni1 net-_u222-pad3_ d_and +* u220 net-_u156-pad3_ /i4 net-_u220-pad3_ d_and +* u103 /ni8 /i11 net-_u103-pad3_ d_and +* u102 /i8 /i10 net-_u102-pad3_ d_and +* u105 /i10 /i12 net-_u105-pad3_ d_and +* u104 /i9 /ni11 net-_u104-pad3_ d_and +* u167 net-_u103-pad3_ /i13 net-_u167-pad3_ d_and +* u169 net-_u105-pad3_ /ni15 net-_u169-pad3_ d_and +* u168 net-_u104-pad3_ /i14 net-_u168-pad3_ d_and +* u166 net-_u102-pad3_ /ni12 net-_u166-pad3_ d_and +a1 /i4 /_ni4 u6 +a2 /i3 /_ni3 u5 +a3 /i0 /_ni0 u2 +a4 /i2 /_ni2 u4 +a5 /i1 /_ni1 u3 +a6 [net-_u119-pad1_ /i14 ] net-_u119-pad3_ u119 +a7 [net-_u118-pad1_ /__ni13 ] net-_u118-pad3_ u118 +a8 [net-_u117-pad1_ /__ni12 ] net-_u117-pad3_ u117 +a9 [/i6 /_ni8 ] net-_u116-pad1_ u52 +a10 [/i7 /i9 ] net-_u117-pad1_ u53 +a11 [/_ni5 /i8 ] net-_u115-pad1_ u51 +a12 [/i11 /i13 ] net-_u121-pad1_ u57 +a13 [/i10 /__ni12 ] net-_u120-pad1_ u56 +a14 [/_ni9 /i12 ] net-_u119-pad1_ u55 +a15 [/i9 /i11 ] net-_u118-pad1_ u54 +a16 [net-_u116-pad1_ /i11 ] net-_u116-pad3_ u116 +a17 [net-_u115-pad1_ /i10 ] net-_u115-pad3_ u115 +a18 [net-_u121-pad1_ /__ni16 ] net-_u121-pad3_ u121 +a19 [net-_u120-pad1_ /i15 ] net-_u120-pad3_ u120 +a20 [net-_u107-pad1_ /i4 ] net-_u107-pad3_ u107 +a21 [net-_u108-pad1_ /i5 ] net-_u108-pad3_ u108 +a22 [net-_u109-pad1_ /_ni6 ] net-_u109-pad3_ u109 +a23 [net-_u106-pad1_ /_ni2 ] net-_u106-pad3_ u106 +a24 [/i0 /_ni4 ] net-_u109-pad1_ u45 +a25 [/i1 /_ni3 ] net-_u108-pad1_ u44 +a26 [/_ni0 /i2 ] net-_u107-pad1_ u43 +a27 [/i0 /i1 ] net-_u106-pad1_ u42 +a28 [net-_u111-pad1_ /i6 ] net-_u111-pad3_ u111 +a29 [net-_u110-pad1_ /_ni4 ] net-_u110-pad3_ u110 +a30 [net-_u114-pad1_ /_ni9 ] net-_u114-pad3_ u114 +a31 [net-_u113-pad1_ /_ni8 ] net-_u113-pad3_ u113 +a32 [net-_u112-pad1_ /i7 ] net-_u112-pad3_ u112 +a33 [/i5 /i7 ] net-_u114-pad1_ u50 +a34 [/i4 /i6 ] net-_u113-pad1_ u49 +a35 [/_ni2 /i5 ] net-_u111-pad1_ u47 +a36 [/i3 /_ni5 ] net-_u112-pad1_ u48 +a37 [/i2 /i3 ] net-_u110-pad1_ u46 +a38 /i15 /__ni15 u17 +a39 /i14 unconnected-_u16-pad2_ u16 +a40 /i17 /__ni17 u19 +a41 /i16 /__ni16 u18 +a42 /i19 /__ni19 u21 +a43 /i18 /__ni18 u20 +a44 /i9 /_ni9 u11 +a45 /i8 /_ni8 u10 +a46 /i7 /_ni7 u9 +a47 /i13 /__ni13 u15 +a48 /i12 /__ni12 u14 +a49 /i11 /__ni11 u13 +a50 /i10 /__ni10 u12 +a51 /i6 /_ni6 u8 +a52 /i5 /_ni5 u7 +a53 net-_u282-pad2_ /clk /set /reset unconnected-_u302-pad5_ net-_u302-pad6_ u302 +a54 [net-_u302-pad6_ ] [unconnected-_u318-pad2_ ] u318 +a55 net-_u276-pad3_ net-_u292-pad2_ u292 +a56 net-_u266-pad3_ net-_u282-pad2_ u282 +a57 net-_u272-pad3_ net-_u288-pad2_ u288 +a58 net-_u271-pad3_ net-_u287-pad2_ u287 +a59 [net-_u256-pad3_ net-_u197-pad3_ ] net-_u272-pad3_ u272 +a60 [net-_u255-pad3_ net-_u201-pad3_ ] net-_u271-pad3_ u271 +a61 [net-_u240-pad3_ net-_u196-pad3_ ] net-_u256-pad3_ u256 +a62 [net-_u239-pad3_ net-_u200-pad3_ ] net-_u255-pad3_ u255 +a63 [net-_u123-pad3_ /i0 ] net-_u187-pad3_ u187 +a64 [net-_u124-pad3_ /i4 ] net-_u188-pad3_ u188 +a65 [net-_u122-pad3_ /__ni19 ] net-_u186-pad3_ u186 +a66 [net-_u126-pad3_ /_ni1 ] net-_u190-pad3_ u190 +a67 [net-_u125-pad3_ /_ni5 ] net-_u189-pad3_ u189 +a68 [net-_u190-pad3_ net-_u191-pad3_ ] net-_u244-pad3_ u244 +a69 [net-_u260-pad3_ net-_u193-pad3_ ] net-_u276-pad3_ u276 +a70 [net-_u244-pad3_ net-_u192-pad3_ ] net-_u260-pad3_ u260 +a71 [net-_u250-pad3_ net-_u189-pad3_ ] net-_u266-pad3_ u266 +a72 [net-_u234-pad3_ net-_u188-pad3_ ] net-_u250-pad3_ u250 +a73 [net-_u186-pad3_ net-_u187-pad3_ ] net-_u234-pad3_ u234 +a74 [net-_u194-pad3_ net-_u195-pad3_ ] net-_u240-pad3_ u240 +a75 [net-_u198-pad3_ net-_u199-pad3_ ] net-_u239-pad3_ u239 +a76 [net-_u128-pad3_ /_ni3 ] net-_u192-pad3_ u192 +a77 [net-_u129-pad3_ /_ni7 ] net-_u193-pad3_ u193 +a78 [net-_u127-pad3_ /i2 ] net-_u191-pad3_ u191 +a79 [net-_u133-pad3_ /__ni12 ] net-_u197-pad3_ u197 +a80 [net-_u134-pad3_ /i15 ] net-_u198-pad3_ u198 +a81 [net-_u132-pad3_ /i11 ] net-_u196-pad3_ u196 +a82 [net-_u131-pad3_ /__ni10 ] net-_u195-pad3_ u195 +a83 [net-_u130-pad3_ /i9 ] net-_u194-pad3_ u194 +a84 [net-_u137-pad3_ /__ni18 ] net-_u201-pad3_ u201 +a85 [net-_u136-pad3_ /i17 ] net-_u200-pad3_ u200 +a86 [net-_u135-pad3_ /__ni16 ] net-_u199-pad3_ u199 +a87 [net-_u303-pad6_ ] [unconnected-_u319-pad2_ ] u319 +a88 net-_u288-pad2_ /clk /set /reset unconnected-_u304-pad5_ net-_u304-pad6_ u304 +a89 net-_u292-pad2_ /clk /set /reset unconnected-_u303-pad5_ net-_u303-pad6_ u303 +a90 [net-_u305-pad6_ ] [unconnected-_u321-pad2_ ] u321 +a91 [net-_u304-pad6_ ] [unconnected-_u320-pad2_ ] u320 +a92 net-_u287-pad2_ /clk /set /reset unconnected-_u305-pad5_ net-_u305-pad6_ u305 +a93 [net-_u123-pad1_ /i18 ] net-_u123-pad3_ u123 +a94 [net-_u125-pad1_ /_ni0 ] net-_u125-pad3_ u125 +a95 [net-_u124-pad1_ /i19 ] net-_u124-pad3_ u124 +a96 [net-_u122-pad1_ /__ni17 ] net-_u122-pad3_ u122 +a97 [/i15 /i17 ] net-_u125-pad1_ u61 +a98 [/i14 /__ni16 ] net-_u124-pad1_ u60 +a99 [/__ni13 /i16 ] net-_u123-pad1_ u59 +a100 [/i13 /i15 ] net-_u122-pad1_ u58 +a101 [/i1 /i4 ] net-_u130-pad1_ u66 +a102 [/i19 /i1 ] net-_u129-pad1_ u65 +a103 [/i18 /_ni0 ] net-_u128-pad1_ u64 +a104 [/__ni17 /i0 ] net-_u127-pad1_ u63 +a105 [/_ni1 /i5 ] net-_u131-pad1_ u67 +a106 [net-_u130-pad1_ /_ni6 ] net-_u130-pad3_ u130 +a107 [net-_u131-pad1_ /i7 ] net-_u131-pad3_ u131 +a108 [net-_u129-pad1_ /_ni4 ] net-_u129-pad3_ u129 +a109 [net-_u128-pad1_ /i3 ] net-_u128-pad3_ u128 +a110 [net-_u127-pad1_ /i2 ] net-_u127-pad3_ u127 +a111 [net-_u126-pad1_ /_ni1 ] net-_u126-pad3_ u126 +a112 [/i17 /i19 ] net-_u126-pad1_ u62 +a113 [/i9 /__ni11 ] net-_u136-pad1_ u72 +a114 [/_ni8 /i11 ] net-_u135-pad1_ u71 +a115 [/i8 /i10 ] net-_u134-pad1_ u70 +a116 [/i3 /i6 ] net-_u133-pad1_ u69 +a117 [/i2 /_ni5 ] net-_u132-pad1_ u68 +a118 [net-_u137-pad1_ /__ni15 ] net-_u137-pad3_ u137 +a119 [net-_u136-pad1_ /i14 ] net-_u136-pad3_ u136 +a120 [net-_u135-pad1_ /i13 ] net-_u135-pad3_ u135 +a121 [/i10 /i12 ] net-_u137-pad1_ u73 +a122 [net-_u134-pad1_ /__ni12 ] net-_u134-pad3_ u134 +a123 [net-_u133-pad1_ /_ni9 ] net-_u133-pad3_ u133 +a124 [net-_u132-pad1_ /i8 ] net-_u132-pad3_ u132 +a125 [net-_u236-pad3_ net-_u176-pad3_ ] net-_u252-pad3_ u252 +a126 [net-_u174-pad3_ net-_u175-pad3_ ] net-_u236-pad3_ u236 +a127 [net-_u170-pad3_ net-_u171-pad3_ ] net-_u235-pad3_ u235 +a128 [net-_u107-pad3_ /_ni5 ] net-_u171-pad3_ u171 +a129 [net-_u106-pad3_ /i3 ] net-_u170-pad3_ u170 +a130 [net-_u109-pad3_ /i7 ] net-_u173-pad3_ u173 +a131 [net-_u110-pad3_ /i8 ] net-_u174-pad3_ u174 +a132 [net-_u108-pad3_ /i6 ] net-_u172-pad3_ u172 +a133 [net-_u253-pad3_ net-_u181-pad3_ ] net-_u269-pad3_ u269 +a134 [net-_u252-pad3_ net-_u177-pad3_ ] net-_u268-pad3_ u268 +a135 [net-_u237-pad3_ net-_u180-pad3_ ] net-_u253-pad3_ u253 +a136 [net-_u251-pad3_ net-_u173-pad3_ ] net-_u267-pad3_ u267 +a137 [net-_u235-pad3_ net-_u172-pad3_ ] net-_u251-pad3_ u251 +a138 [net-_u300-pad6_ ] [unconnected-_u316-pad2_ ] u316 +a139 [net-_u301-pad6_ ] [unconnected-_u317-pad2_ ] u317 +a140 net-_u286-pad2_ /clk /set /reset unconnected-_u301-pad5_ net-_u301-pad6_ u301 +a141 [net-_u178-pad3_ net-_u179-pad3_ ] net-_u237-pad3_ u237 +a142 [net-_u115-pad3_ /__ni13 ] net-_u179-pad3_ u179 +a143 [net-_u114-pad3_ /i12 ] net-_u178-pad3_ u178 +a144 [net-_u113-pad3_ /__ni11 ] net-_u177-pad3_ u177 +a145 [net-_u112-pad3_ /i10 ] net-_u176-pad3_ u176 +a146 [net-_u111-pad3_ /_ni9 ] net-_u175-pad3_ u175 +a147 [net-_u117-pad3_ /__ni15 ] net-_u181-pad3_ u181 +a148 [net-_u118-pad3_ /i16 ] net-_u182-pad3_ u182 +a149 [net-_u116-pad3_ /i14 ] net-_u180-pad3_ u180 +a150 [net-_u254-pad3_ net-_u185-pad3_ ] net-_u270-pad3_ u270 +a151 [net-_u121-pad3_ /i18 ] net-_u185-pad3_ u185 +a152 [net-_u120-pad3_ /i6 ] net-_u184-pad3_ u184 +a153 [net-_u119-pad3_ /__ni17 ] net-_u183-pad3_ u183 +a154 [net-_u238-pad3_ net-_u184-pad3_ ] net-_u254-pad3_ u254 +a155 [net-_u182-pad3_ net-_u183-pad3_ ] net-_u238-pad3_ u238 +a156 [net-_u299-pad6_ ] [unconnected-_u315-pad2_ ] u315 +a157 [net-_u298-pad6_ ] [unconnected-_u314-pad2_ ] u314 +a158 net-_u283-pad2_ /clk /set /reset unconnected-_u298-pad5_ net-_u298-pad6_ u298 +a159 net-_u270-pad3_ net-_u286-pad2_ u286 +a160 net-_u285-pad2_ /clk /set /reset unconnected-_u300-pad5_ net-_u300-pad6_ u300 +a161 net-_u269-pad3_ net-_u285-pad2_ u285 +a162 net-_u284-pad2_ /clk /set /reset unconnected-_u299-pad5_ net-_u299-pad6_ u299 +a163 net-_u268-pad3_ net-_u284-pad2_ u284 +a164 net-_u267-pad3_ net-_u283-pad2_ u283 +a165 [/i10 /ni12 ] net-_u152-pad1_ u88 +a166 [/ni9 /i12 ] net-_u151-pad1_ u87 +a167 [/i9 /i11 ] net-_u150-pad1_ u86 +a168 [/i7 /i9 ] net-_u149-pad1_ u85 +a169 [/i6 /ni8 ] net-_u148-pad1_ u84 +a170 [/i3 /ni5 ] net-_u144-pad1_ u80 +a171 [/ni2 /i5 ] net-_u143-pad1_ u79 +a172 /i6 /ni6 u28 +a173 /i5 /ni5 u27 +a174 /i8 /ni8 u30 +a175 /i7 /ni7 u29 +a176 [/ni5 /i8 ] net-_u147-pad1_ u83 +a177 [/i5 /i7 ] net-_u146-pad1_ u82 +a178 [/i4 /i6 ] net-_u145-pad1_ u81 +a179 /i4 /ni4 u26 +a180 /i3 /ni3 u25 +a181 /i2 /ni2 u24 +a182 /i1 /ni1 u23 +a183 /i0 /ni0 u22 +a184 [/i0 /ni4 ] net-_u141-pad1_ u77 +a185 [/i2 /i3 ] net-_u142-pad1_ u78 +a186 [/i1 /ni3 ] net-_u140-pad1_ u76 +a187 /i9 /ni9 u31 +a188 /i11 /ni11 u33 +a189 /i10 /ni10 u32 +a190 /i17 /ni17 u39 +a191 /i16 /ni16 u38 +a192 /i15 /ni15 u37 +a193 /i19 /ni19 u41 +a194 /i18 /ni18 u40 +a195 /i12 /ni12 u34 +a196 /i13 /ni13 u35 +a197 /i14 unconnected-_u36-pad2_ u36 +a198 [net-_u226-pad3_ net-_u227-pad3_ ] net-_u248-pad3_ u248 +a199 [net-_u248-pad3_ net-_u228-pad3_ ] net-_u264-pad3_ u264 +a200 [net-_u169-pad3_ /ni18 ] net-_u233-pad3_ u233 +a201 [net-_u247-pad3_ net-_u232-pad3_ ] net-_u263-pad3_ u263 +a202 [net-_u230-pad3_ net-_u231-pad3_ ] net-_u247-pad3_ u247 +a203 [net-_u241-pad3_ net-_u220-pad3_ ] net-_u257-pad3_ u257 +a204 [net-_u249-pad3_ net-_u224-pad3_ ] net-_u265-pad3_ u265 +a205 [net-_u222-pad3_ net-_u223-pad3_ ] net-_u249-pad3_ u249 +a206 net-_u281-pad3_ net-_u297-pad2_ u297 +a207 [net-_u265-pad3_ net-_u225-pad3_ ] net-_u281-pad3_ u281 +a208 [net-_u264-pad3_ net-_u229-pad3_ ] net-_u280-pad3_ u280 +a209 [net-_u263-pad3_ net-_u233-pad3_ ] net-_u279-pad3_ u279 +a210 net-_u273-pad3_ net-_u289-pad2_ u289 +a211 [net-_u257-pad3_ net-_u221-pad3_ ] net-_u273-pad3_ u273 +a212 net-_u280-pad3_ net-_u296-pad2_ u296 +a213 net-_u279-pad3_ net-_u295-pad2_ u295 +a214 [net-_u218-pad3_ net-_u219-pad3_ ] net-_u241-pad3_ u241 +a215 net-_u295-pad2_ /clk /set /reset net-_u1-pad26_ unconnected-_u313-pad6_ u313 +a216 net-_u296-pad2_ /clk /set /reset unconnected-_u312-pad5_ unconnected-_u312-pad6_ u312 +a217 net-_u297-pad2_ /clk /set /reset unconnected-_u311-pad5_ unconnected-_u311-pad6_ u311 +a218 net-_u289-pad2_ /clk /set /reset unconnected-_u310-pad5_ unconnected-_u310-pad6_ u310 +a219 [net-_u142-pad3_ /i8 ] net-_u206-pad3_ u206 +a220 [net-_u143-pad3_ /ni9 ] net-_u207-pad3_ u207 +a221 [net-_u141-pad3_ /i7 ] net-_u205-pad3_ u205 +a222 [net-_u140-pad3_ /i6 ] net-_u204-pad3_ u204 +a223 [net-_u139-pad3_ /ni5 ] net-_u203-pad3_ u203 +a224 [net-_u138-pad3_ /i3 ] net-_u202-pad3_ u202 +a225 [net-_u146-pad3_ /i12 ] net-_u210-pad3_ u210 +a226 [net-_u145-pad3_ /ni11 ] net-_u209-pad3_ u209 +a227 [net-_u144-pad3_ /i10 ] net-_u208-pad3_ u208 +a228 [/ni0 /i2 ] net-_u139-pad1_ u75 +a229 [/i0 /i1 ] net-_u138-pad1_ u74 +a230 [net-_u139-pad1_ /i4 ] net-_u139-pad3_ u139 +a231 [net-_u140-pad1_ /i5 ] net-_u140-pad3_ u140 +a232 [net-_u138-pad1_ /ni2 ] net-_u138-pad3_ u138 +a233 [net-_u142-pad1_ /ni4 ] net-_u142-pad3_ u142 +a234 [net-_u141-pad1_ /ni6 ] net-_u141-pad3_ u141 +a235 [net-_u149-pad1_ /ni12 ] net-_u149-pad3_ u149 +a236 [net-_u148-pad1_ /i11 ] net-_u148-pad3_ u148 +a237 [net-_u147-pad1_ /i10 ] net-_u147-pad3_ u147 +a238 [net-_u144-pad1_ /i7 ] net-_u144-pad3_ u144 +a239 [net-_u146-pad1_ /ni9 ] net-_u146-pad3_ u146 +a240 [net-_u145-pad1_ /ni8 ] net-_u145-pad3_ u145 +a241 [net-_u143-pad1_ /i6 ] net-_u143-pad3_ u143 +a242 [net-_u150-pad1_ /ni13 ] net-_u150-pad3_ u150 +a243 [net-_u149-pad3_ /ni15 ] net-_u213-pad3_ u213 +a244 [net-_u148-pad3_ /i14 ] net-_u212-pad3_ u212 +a245 [net-_u147-pad3_ /ni13 ] net-_u211-pad3_ u211 +a246 [net-_u152-pad1_ /i15 ] net-_u152-pad3_ u152 +a247 [net-_u151-pad1_ /i14 ] net-_u151-pad3_ u151 +a248 [net-_u151-pad3_ /ni17 ] net-_u215-pad3_ u215 +a249 [net-_u152-pad3_ /i6 ] net-_u216-pad3_ u216 +a250 [net-_u150-pad3_ /i16 ] net-_u214-pad3_ u214 +a251 net-_u291-pad2_ /clk /set /reset unconnected-_u307-pad5_ unconnected-_u307-pad6_ u307 +a252 net-_u293-pad2_ /clk /set /reset unconnected-_u308-pad5_ unconnected-_u308-pad6_ u308 +a253 net-_u290-pad2_ /clk /set /reset net-_u1-pad24_ unconnected-_u306-pad6_ u306 +a254 net-_u294-pad2_ /clk /set /reset net-_u1-pad25_ unconnected-_u309-pad6_ u309 +a255 net-_u275-pad3_ net-_u291-pad2_ u291 +a256 [net-_u259-pad3_ net-_u209-pad3_ ] net-_u275-pad3_ u275 +a257 net-_u274-pad3_ net-_u290-pad2_ u290 +a258 [net-_u258-pad3_ net-_u205-pad3_ ] net-_u274-pad3_ u274 +a259 net-_u278-pad3_ net-_u294-pad2_ u294 +a260 net-_u277-pad3_ net-_u293-pad2_ u293 +a261 [net-_u262-pad3_ net-_u217-pad3_ ] net-_u278-pad3_ u278 +a262 [net-_u261-pad3_ net-_u213-pad3_ ] net-_u277-pad3_ u277 +a263 [net-_u243-pad3_ net-_u208-pad3_ ] net-_u259-pad3_ u259 +a264 [net-_u242-pad3_ net-_u204-pad3_ ] net-_u258-pad3_ u258 +a265 [net-_u202-pad3_ net-_u203-pad3_ ] net-_u242-pad3_ u242 +a266 [net-_u246-pad3_ net-_u216-pad3_ ] net-_u262-pad3_ u262 +a267 [net-_u214-pad3_ net-_u215-pad3_ ] net-_u246-pad3_ u246 +a268 [net-_u245-pad3_ net-_u212-pad3_ ] net-_u261-pad3_ u261 +a269 [net-_u210-pad3_ net-_u211-pad3_ ] net-_u245-pad3_ u245 +a270 [net-_u206-pad3_ net-_u207-pad3_ ] net-_u243-pad3_ u243 +a271 [/i3 /i6 ] net-_u101-pad3_ u101 +a272 [net-_u162-pad1_ /ni6 ] net-_u162-pad3_ u162 +a273 [net-_u161-pad1_ /ni4 ] net-_u161-pad3_ u161 +a274 [net-_u160-pad1_ /i3 ] net-_u160-pad3_ u160 +a275 [/i19 /i1 ] net-_u161-pad1_ u97 +a276 [/i18 /ni0 ] net-_u160-pad1_ u96 +a277 [net-_u165-pad3_ /ni12 ] net-_u229-pad3_ u229 +a278 [net-_u166-pad3_ /i15 ] net-_u230-pad3_ u230 +a279 [net-_u167-pad3_ /ni16 ] net-_u231-pad3_ u231 +a280 [net-_u168-pad3_ /i17 ] net-_u232-pad3_ u232 +a281 [net-_u164-pad3_ /i11 ] net-_u228-pad3_ u228 +a282 [net-_u161-pad3_ /ni7 ] net-_u225-pad3_ u225 +a283 [net-_u163-pad3_ /ni10 ] net-_u227-pad3_ u227 +a284 [net-_u162-pad3_ /i9 ] net-_u226-pad3_ u226 +a285 [net-_u160-pad3_ /ni3 ] net-_u224-pad3_ u224 +a286 [net-_u101-pad3_ /ni9 ] net-_u165-pad3_ u165 +a287 [net-_u100-pad3_ /i8 ] net-_u164-pad3_ u164 +a288 [net-_u163-pad1_ /i7 ] net-_u163-pad3_ u163 +a289 [/ni13 /i16 ] net-_u155-pad1_ u91 +a290 [/i13 /i15 ] net-_u154-pad1_ u90 +a291 [/i11 /i13 ] net-_u153-pad1_ u89 +a292 [/ni17 /i0 ] net-_u159-pad1_ u95 +a293 [/i17 /i19 ] net-_u158-pad1_ u94 +a294 [/i15 /i17 ] net-_u157-pad1_ u93 +a295 [/i14 /ni16 ] net-_u156-pad1_ u92 +a296 [/ni1 /i5 ] net-_u163-pad1_ u99 +a297 [/i2 /ni5 ] net-_u100-pad3_ u100 +a298 [/i1 /i4 ] net-_u162-pad1_ u98 +a299 [net-_u155-pad1_ /i18 ] net-_u155-pad3_ u155 +a300 [net-_u154-pad1_ /ni17 ] net-_u154-pad3_ u154 +a301 [net-_u153-pad1_ /ni16 ] net-_u153-pad3_ u153 +a302 [net-_u154-pad3_ /ni19 ] net-_u218-pad3_ u218 +a303 [net-_u155-pad3_ /i0 ] net-_u219-pad3_ u219 +a304 [net-_u153-pad3_ /i18 ] net-_u217-pad3_ u217 +a305 [net-_u158-pad1_ /ni1 ] net-_u158-pad3_ u158 +a306 [net-_u157-pad1_ /ni0 ] net-_u157-pad3_ u157 +a307 [net-_u159-pad1_ /i2 ] net-_u159-pad3_ u159 +a308 [net-_u156-pad1_ /i19 ] net-_u156-pad3_ u156 +a309 [net-_u159-pad3_ /i2 ] net-_u223-pad3_ u223 +a310 [net-_u157-pad3_ /ni5 ] net-_u221-pad3_ u221 +a311 [net-_u158-pad3_ /ni1 ] net-_u222-pad3_ u222 +a312 [net-_u156-pad3_ /i4 ] net-_u220-pad3_ u220 +a313 [/ni8 /i11 ] net-_u103-pad3_ u103 +a314 [/i8 /i10 ] net-_u102-pad3_ u102 +a315 [/i10 /i12 ] net-_u105-pad3_ u105 +a316 [/i9 /ni11 ] net-_u104-pad3_ u104 +a317 [net-_u103-pad3_ /i13 ] net-_u167-pad3_ u167 +a318 [net-_u105-pad3_ /ni15 ] net-_u169-pad3_ u169 +a319 [net-_u104-pad3_ /i14 ] net-_u168-pad3_ u168 +a320 [net-_u102-pad3_ /ni12 ] net-_u166-pad3_ u166 +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u6 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u5 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u4 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u3 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u119 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u118 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u117 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u52 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u53 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u51 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u57 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u56 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u55 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u54 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u116 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u115 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u121 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u120 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u107 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u108 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u109 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u106 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u45 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u44 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u43 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u42 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u111 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u110 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u114 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u113 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u112 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u50 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u49 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u47 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u48 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u46 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u17 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u19 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u18 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u15 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u14 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u302 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u318 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u292 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u282 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u288 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u287 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u272 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u271 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u256 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u255 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u187 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u188 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u186 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u190 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u189 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u244 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u276 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u260 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u266 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u250 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u234 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u240 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u239 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u192 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u193 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u191 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u197 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u198 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u196 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u195 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u194 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u201 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u200 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u199 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u319 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u304 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u303 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u321 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u320 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u305 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u123 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u125 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u124 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u122 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u61 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u60 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u59 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u58 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u66 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u65 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u64 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u63 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u67 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u130 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u131 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u129 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u128 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u127 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u126 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u62 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u72 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u71 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u70 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u69 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u68 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u137 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u136 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u135 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u73 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u134 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u133 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u132 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u252 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u236 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u235 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u171 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u170 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u173 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u174 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u172 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u269 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u268 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u253 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u267 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u251 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u316 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u317 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u301 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u237 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u179 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u178 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u177 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u176 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u175 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u181 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u182 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u180 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u270 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u185 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u184 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u183 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u254 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u238 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u315 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: dac_bridge_1, Ngspice Name: dac_bridge +.model u314 dac_bridge(out_low=0.0 out_high=5.0 out_undef=0.5 input_load=1.0e-12 t_rise=1.0e-9 t_fall=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u298 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u286 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u300 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u285 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u299 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u284 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u283 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u88 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u87 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u86 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u85 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u84 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u80 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u79 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u28 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u27 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u30 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u29 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u83 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u82 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u81 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u26 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u25 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u24 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u23 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u22 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u77 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u78 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u76 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u31 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u33 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u32 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u39 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u38 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u37 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u41 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u40 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u34 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u35 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u36 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u248 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u264 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u233 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u263 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u247 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u257 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u265 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u249 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u297 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u281 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u280 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u279 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u289 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u273 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u296 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u295 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u241 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u313 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u312 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u311 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u310 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u206 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u207 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u205 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u204 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u203 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u202 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u210 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u209 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u208 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u75 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u74 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u139 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u140 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u138 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u142 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u141 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u149 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u148 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u147 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u144 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u146 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u145 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u143 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u150 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u213 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u212 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u211 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u152 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u151 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u215 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u216 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u214 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u307 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u308 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u306 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u309 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u291 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u275 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u290 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u274 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u294 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u293 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u278 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u277 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u259 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u258 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u242 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u262 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u246 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u261 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u245 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, Ngspice Name: d_or +.model u243 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u101 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u162 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u161 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u160 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u97 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u96 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u229 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u230 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u231 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u232 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u228 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u225 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u227 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u226 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u224 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u165 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u164 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u163 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u91 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u90 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u89 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u95 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u94 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u93 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u92 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u99 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u100 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u98 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u155 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u154 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u153 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u218 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u219 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u217 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u158 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u157 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u159 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u156 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u223 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u221 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u222 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u220 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u103 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u102 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u105 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u104 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u167 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u169 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u168 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u166 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends TIBPAL20LB \ No newline at end of file diff --git a/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB_Previous_Values.xml b/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB_Previous_Values.xml new file mode 100644 index 000000000..8884806cd --- /dev/null +++ b/library/SubcircuitLibrary/TIBPAL20LB/TIBPAL20LB_Previous_Values.xml @@ -0,0 +1 @@ +d_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_inverterd_inverterd_dffd_dffd_dffd_inverterd_inverterd_dffd_inverterd_inverterd_ord_dffd_ord_ord_ord_ord_ord_ord_ord_ord_ord_dffd_inverterd_ord_ord_ord_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_ord_andd_ord_andd_ord_ord_ord_ord_ord_andd_andd_andd_andd_andd_ord_andd_andd_andd_andd_andd_andd_andd_andd_andd_inverterd_inverterd_inverterd_inverterd_inverterd_andd_andd_andd_andd_andd_andd_andd_andd_inverterd_inverterd_andd_andd_andd_andd_andd_andd_andd_andd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_ord_ord_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_ord_andd_andd_andd_ord_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_anddac_bridged_dffd_dffd_dffdac_bridgedac_bridgedac_bridgedac_bridged_ord_dffd_dffd_ord_inverterd_inverterd_ord_ord_ord_ord_ord_inverterd_inverterd_ord_andd_andd_andd_andd_andd_andd_andd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_inverterd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_dffd_inverterd_inverterd_ord_dffd_dffd_inverterd_ord_ord_ord_ord_ord_ord_ord_ord_ord_ord_inverterd_ord_ord_ord_ord_inverterd_dffd_dffdac_bridgedac_bridgedac_bridged_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_inverterd_inverterd_inverterd_inverterd_inverterd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/TIBPAL20LB/analysis b/library/SubcircuitLibrary/TIBPAL20LB/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/TIBPAL20LB/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TL317/D.lib b/library/SubcircuitLibrary/TL317/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/TL317/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/TL317/NPN.lib b/library/SubcircuitLibrary/TL317/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/TL317/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/TL317/PNP.lib b/library/SubcircuitLibrary/TL317/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/TL317/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/TL317/TL317-cache.lib b/library/SubcircuitLibrary/TL317/TL317-cache.lib new file mode 100644 index 000000000..d80602ef3 --- /dev/null +++ b/library/SubcircuitLibrary/TL317/TL317-cache.lib @@ -0,0 +1,145 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_C +# +DEF eSim_C C 0 10 N Y 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_C" 25 -100 50 H V L CNN +F2 "" 38 -150 30 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS capacitor +$FPLIST + C_* +$ENDFPLIST +DRAW +P 2 0 1 20 -80 -30 80 -30 N +P 2 0 1 20 -80 30 80 30 N +X ~ 1 0 150 110 D 40 40 1 1 P +X ~ 2 0 -150 110 U 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_NPN +# +DEF eSim_NPN Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_NPN" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS BC547 Q2N2222 +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_PNP +# +DEF eSim_PNP Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_PNP" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 90 -70 70 -90 50 -50 90 -70 90 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TL317/TL317.cir b/library/SubcircuitLibrary/TL317/TL317.cir new file mode 100644 index 000000000..49cebb1e9 --- /dev/null +++ b/library/SubcircuitLibrary/TL317/TL317.cir @@ -0,0 +1,56 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\TL317\TL317.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/11/26 15:31:52 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +Q5 Net-_Q5-Pad1_ Net-_Q3-Pad2_ Net-_C1-Pad2_ eSim_NPN +Q2 Net-_Q10-Pad2_ Net-_Q10-Pad2_ Net-_Q2-Pad3_ eSim_PNP +Q3 Net-_Q10-Pad2_ Net-_Q3-Pad2_ Net-_Q3-Pad3_ eSim_NPN +Q4 Net-_Q3-Pad2_ Net-_Q10-Pad2_ Net-_Q4-Pad3_ eSim_PNP +R2 Net-_Q1-Pad3_ Net-_Q2-Pad3_ 310 +R4 Net-_Q1-Pad3_ Net-_Q4-Pad3_ 310 +Q1 Net-_D1-Pad2_ Net-_C1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +Q7 Net-_Q6-Pad3_ Net-_Q10-Pad2_ Net-_Q7-Pad3_ eSim_PNP +R7 Net-_Q1-Pad3_ Net-_Q7-Pad3_ 190 +R6 Net-_Q6-Pad3_ Net-_Q8-Pad1_ 11.5K +R3 Net-_Q3-Pad3_ Net-_C1-Pad2_ 195 +Q9 Net-_Q11-Pad2_ Net-_Q8-Pad1_ Net-_Q6-Pad3_ eSim_PNP +Q6 Net-_C1-Pad2_ Net-_Q5-Pad1_ Net-_Q6-Pad3_ eSim_PNP +R8 Net-_Q8-Pad3_ Net-_C1-Pad2_ 5.3k +Q8 Net-_Q8-Pad1_ Net-_Q5-Pad1_ Net-_Q8-Pad3_ eSim_NPN +Q11 Net-_Q10-Pad1_ Net-_Q11-Pad2_ Net-_Q11-Pad3_ eSim_NPN +Q12 Net-_Q10-Pad1_ Net-_Q12-Pad2_ Net-_C1-Pad2_ eSim_NPN +R11 Net-_Q11-Pad3_ Net-_C1-Pad2_ 70 +R9 Net-_Q11-Pad2_ Net-_C1-Pad2_ 5.7k +R12 Net-_Q12-Pad2_ Net-_C1-Pad2_ 5.1K +Q13 Net-_Q1-Pad3_ Net-_Q13-Pad2_ Net-_Q12-Pad2_ eSim_NPN +Q15 Net-_C1-Pad2_ Net-_C1-Pad1_ Net-_Q13-Pad2_ eSim_PNP +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 30pF +C2 Net-_C1-Pad1_ Net-_C2-Pad2_ 30pF +Q17 Net-_C1-Pad1_ Net-_C1-Pad2_ Net-_Q17-Pad3_ eSim_NPN +R14 Net-_Q17-Pad3_ Net-_C2-Pad2_ 10.8K +R15 Net-_Q19-Pad3_ Net-_Q17-Pad3_ 2.12K +Q19 Net-_Q16-Pad2_ Net-_C1-Pad2_ Net-_Q19-Pad3_ eSim_NPN +Q20 Net-_Q10-Pad1_ Net-_Q20-Pad2_ Net-_C1-Pad2_ eSim_NPN +Q16 Net-_C1-Pad1_ Net-_Q16-Pad2_ Net-_Q10-Pad1_ eSim_PNP +Q18 Net-_Q16-Pad2_ Net-_Q18-Pad2_ Net-_Q10-Pad1_ eSim_PNP +R16 Net-_Q18-Pad2_ Net-_Q16-Pad2_ 2.1K +R18 Net-_Q21-Pad1_ Net-_Q20-Pad2_ 360 +Q21 Net-_Q21-Pad1_ Net-_Q10-Pad1_ Net-_Q1-Pad3_ eSim_PNP +Q22 Net-_Q1-Pad3_ Net-_Q21-Pad1_ Net-_Q22-Pad3_ eSim_NPN +R20 Net-_Q22-Pad3_ Net-_C1-Pad2_ 1.4 +R19 Net-_Q20-Pad2_ Net-_C1-Pad2_ 670 +R17 Net-_R17-Pad1_ Net-_C2-Pad2_ 40 +R5 Net-_Q3-Pad2_ Net-_Q5-Pad1_ 124 +R1 Net-_Q3-Pad2_ Net-_D1-Pad2_ 200K +D1 Net-_C1-Pad2_ Net-_D1-Pad2_ eSim_Diode +Q10 Net-_Q10-Pad1_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_PNP +R10 Net-_Q1-Pad3_ Net-_Q10-Pad3_ 251 +Q14 Net-_Q13-Pad2_ Net-_Q10-Pad2_ Net-_Q14-Pad3_ eSim_PNP +R13 Net-_Q1-Pad3_ Net-_Q14-Pad3_ 5.6K +U1 Net-_Q1-Pad3_ Net-_C1-Pad2_ Net-_C1-Pad2_ Net-_R17-Pad1_ ? Net-_C1-Pad2_ Net-_C1-Pad2_ ? PORT + +.end diff --git a/library/SubcircuitLibrary/TL317/TL317.cir.out b/library/SubcircuitLibrary/TL317/TL317.cir.out new file mode 100644 index 000000000..0e6e1e4f3 --- /dev/null +++ b/library/SubcircuitLibrary/TL317/TL317.cir.out @@ -0,0 +1,60 @@ +* c:\fossee\esim\library\subcircuitlibrary\tl317\tl317.cir + +.include PNP.lib +.include D.lib +.include NPN.lib +q5 net-_q5-pad1_ net-_q3-pad2_ net-_c1-pad2_ Q2N2222 +q2 net-_q10-pad2_ net-_q10-pad2_ net-_q2-pad3_ Q2N2907A +q3 net-_q10-pad2_ net-_q3-pad2_ net-_q3-pad3_ Q2N2222 +q4 net-_q3-pad2_ net-_q10-pad2_ net-_q4-pad3_ Q2N2907A +r2 net-_q1-pad3_ net-_q2-pad3_ 310 +r4 net-_q1-pad3_ net-_q4-pad3_ 310 +q1 net-_d1-pad2_ net-_c1-pad2_ net-_q1-pad3_ Q2N2907A +q7 net-_q6-pad3_ net-_q10-pad2_ net-_q7-pad3_ Q2N2907A +r7 net-_q1-pad3_ net-_q7-pad3_ 190 +r6 net-_q6-pad3_ net-_q8-pad1_ 11.5k +r3 net-_q3-pad3_ net-_c1-pad2_ 195 +q9 net-_q11-pad2_ net-_q8-pad1_ net-_q6-pad3_ Q2N2907A +q6 net-_c1-pad2_ net-_q5-pad1_ net-_q6-pad3_ Q2N2907A +r8 net-_q8-pad3_ net-_c1-pad2_ 5.3k +q8 net-_q8-pad1_ net-_q5-pad1_ net-_q8-pad3_ Q2N2222 +q11 net-_q10-pad1_ net-_q11-pad2_ net-_q11-pad3_ Q2N2222 +q12 net-_q10-pad1_ net-_q12-pad2_ net-_c1-pad2_ Q2N2222 +r11 net-_q11-pad3_ net-_c1-pad2_ 70 +r9 net-_q11-pad2_ net-_c1-pad2_ 5.7k +r12 net-_q12-pad2_ net-_c1-pad2_ 5.1k +q13 net-_q1-pad3_ net-_q13-pad2_ net-_q12-pad2_ Q2N2222 +q15 net-_c1-pad2_ net-_c1-pad1_ net-_q13-pad2_ Q2N2907A +c1 net-_c1-pad1_ net-_c1-pad2_ 30pf +c2 net-_c1-pad1_ net-_c2-pad2_ 30pf +q17 net-_c1-pad1_ net-_c1-pad2_ net-_q17-pad3_ Q2N2222 +r14 net-_q17-pad3_ net-_c2-pad2_ 10.8k +r15 net-_q19-pad3_ net-_q17-pad3_ 2.12k +q19 net-_q16-pad2_ net-_c1-pad2_ net-_q19-pad3_ Q2N2222 +q20 net-_q10-pad1_ net-_q20-pad2_ net-_c1-pad2_ Q2N2222 +q16 net-_c1-pad1_ net-_q16-pad2_ net-_q10-pad1_ Q2N2907A +q18 net-_q16-pad2_ net-_q18-pad2_ net-_q10-pad1_ Q2N2907A +r16 net-_q18-pad2_ net-_q16-pad2_ 2.1k +r18 net-_q21-pad1_ net-_q20-pad2_ 360 +q21 net-_q21-pad1_ net-_q10-pad1_ net-_q1-pad3_ Q2N2907A +q22 net-_q1-pad3_ net-_q21-pad1_ net-_q22-pad3_ Q2N2222 +r20 net-_q22-pad3_ net-_c1-pad2_ 1.4 +r19 net-_q20-pad2_ net-_c1-pad2_ 670 +r17 net-_r17-pad1_ net-_c2-pad2_ 40 +r5 net-_q3-pad2_ net-_q5-pad1_ 124 +r1 net-_q3-pad2_ net-_d1-pad2_ 200k +d1 net-_c1-pad2_ net-_d1-pad2_ 1N4148 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +r10 net-_q1-pad3_ net-_q10-pad3_ 251 +q14 net-_q13-pad2_ net-_q10-pad2_ net-_q14-pad3_ Q2N2907A +r13 net-_q1-pad3_ net-_q14-pad3_ 5.6k +* u1 net-_q1-pad3_ net-_c1-pad2_ net-_c1-pad2_ net-_r17-pad1_ ? net-_c1-pad2_ net-_c1-pad2_ ? port +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TL317/TL317.pro b/library/SubcircuitLibrary/TL317/TL317.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TL317/TL317.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TL317/TL317.sch b/library/SubcircuitLibrary/TL317/TL317.sch new file mode 100644 index 000000000..4ce4999d8 --- /dev/null +++ b/library/SubcircuitLibrary/TL317/TL317.sch @@ -0,0 +1,958 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:TL317-cache +EELAYER 25 0 +EELAYER END +$Descr A2 23386 16535 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_NPN Q5 +U 1 1 69FF1130 +P 5050 6900 +F 0 "Q5" H 4950 6950 50 0000 R CNN +F 1 "eSim_NPN" H 5000 7050 50 0000 R CNN +F 2 "" H 5250 7000 29 0000 C CNN +F 3 "" H 5050 6900 60 0000 C CNN + 1 5050 6900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_PNP Q2 +U 1 1 69FF11AD +P 3850 5050 +F 0 "Q2" H 3750 5100 50 0000 R CNN +F 1 "eSim_PNP" H 3800 5200 50 0000 R CNN +F 2 "" H 4050 5150 29 0000 C CNN +F 3 "" H 3850 5050 60 0000 C CNN + 1 3850 5050 + -1 0 0 1 +$EndComp +$Comp +L eSim_NPN Q3 +U 1 1 69FF1262 +P 3900 6900 +F 0 "Q3" H 3800 6950 50 0000 R CNN +F 1 "eSim_NPN" H 3850 7050 50 0000 R CNN +F 2 "" H 4100 7000 29 0000 C CNN +F 3 "" H 3900 6900 60 0000 C CNN + 1 3900 6900 + -1 0 0 -1 +$EndComp +$Comp +L eSim_PNP Q4 +U 1 1 69FF132B +P 4900 5050 +F 0 "Q4" H 4800 5100 50 0000 R CNN +F 1 "eSim_PNP" H 4850 5200 50 0000 R CNN +F 2 "" H 5100 5150 29 0000 C CNN +F 3 "" H 4900 5050 60 0000 C CNN + 1 4900 5050 + 1 0 0 1 +$EndComp +$Comp +L resistor R2 +U 1 1 69FF137A +P 3650 3850 +F 0 "R2" H 3700 3980 50 0000 C CNN +F 1 "310" H 3700 3800 50 0000 C CNN +F 2 "" H 3700 3830 30 0000 C CNN +F 3 "" V 3700 3900 30 0000 C CNN + 1 3650 3850 + 0 1 1 0 +$EndComp +$Comp +L resistor R4 +U 1 1 69FF13EE +P 4950 3850 +F 0 "R4" H 5000 3980 50 0000 C CNN +F 1 "310" H 5000 3800 50 0000 C CNN +F 2 "" H 5000 3830 30 0000 C CNN +F 3 "" V 5000 3900 30 0000 C CNN + 1 4950 3850 + 0 1 1 0 +$EndComp +Wire Wire Line + 3700 3750 3700 3400 +Wire Wire Line + 2950 3400 10050 3400 +Wire Wire Line + 5000 3400 5000 3750 +Wire Wire Line + 3750 4850 3750 4050 +Wire Wire Line + 3750 4050 3700 4050 +Wire Wire Line + 5000 4850 5000 4050 +Wire Wire Line + 3750 5250 3750 6700 +Wire Wire Line + 3750 6700 3800 6700 +Wire Wire Line + 5000 6700 5150 6700 +Wire Wire Line + 4050 5050 4700 5050 +Wire Wire Line + 4200 5050 4200 5500 +Wire Wire Line + 4200 5500 3750 5500 +Connection ~ 3750 5500 +Connection ~ 4200 5050 +Wire Wire Line + 4450 5050 4450 4500 +Wire Wire Line + 4450 4500 7050 4500 +Connection ~ 4450 5050 +Wire Wire Line + 4100 6900 4850 6900 +Wire Wire Line + 4400 5700 4400 6900 +Connection ~ 4400 6900 +$Comp +L eSim_PNP Q1 +U 1 1 69FF15DA +P 2850 5250 +F 0 "Q1" H 2750 5300 50 0000 R CNN +F 1 "eSim_PNP" H 2800 5400 50 0000 R CNN +F 2 "" H 3050 5350 29 0000 C CNN +F 3 "" H 2850 5250 60 0000 C CNN + 1 2850 5250 + 1 0 0 1 +$EndComp +$Comp +L eSim_PNP Q7 +U 1 1 69FF209B +P 6050 5050 +F 0 "Q7" H 5950 5100 50 0000 R CNN +F 1 "eSim_PNP" H 6000 5200 50 0000 R CNN +F 2 "" H 6250 5150 29 0000 C CNN +F 3 "" H 6050 5050 60 0000 C CNN + 1 6050 5050 + 1 0 0 1 +$EndComp +$Comp +L resistor R7 +U 1 1 69FF20FA +P 6150 3800 +F 0 "R7" H 6200 3930 50 0000 C CNN +F 1 "190" H 6200 3750 50 0000 C CNN +F 2 "" H 6200 3780 30 0000 C CNN +F 3 "" V 6200 3850 30 0000 C CNN + 1 6150 3800 + 0 1 1 0 +$EndComp +Wire Wire Line + 6200 4000 6200 4800 +Wire Wire Line + 6200 4800 6150 4800 +Wire Wire Line + 6150 4800 6150 4850 +Wire Wire Line + 6200 3400 6200 3700 +Connection ~ 5000 3400 +$Comp +L resistor R6 +U 1 1 69FF2203 +P 6100 5750 +F 0 "R6" H 6150 5880 50 0000 C CNN +F 1 "11.5K" H 6150 5700 50 0000 C CNN +F 2 "" H 6150 5730 30 0000 C CNN +F 3 "" V 6150 5800 30 0000 C CNN + 1 6100 5750 + 0 1 1 0 +$EndComp +$Comp +L resistor R3 +U 1 1 69FF225D +P 3750 7400 +F 0 "R3" H 3800 7530 50 0000 C CNN +F 1 "195" H 3800 7350 50 0000 C CNN +F 2 "" H 3800 7380 30 0000 C CNN +F 3 "" V 3800 7450 30 0000 C CNN + 1 3750 7400 + 0 1 1 0 +$EndComp +Wire Wire Line + 3800 7100 3800 7300 +Wire Wire Line + 5150 7100 5150 7850 +Wire Wire Line + 6150 5650 6150 5250 +$Comp +L eSim_PNP Q9 +U 1 1 69FF24BD +P 6950 6200 +F 0 "Q9" H 6850 6250 50 0000 R CNN +F 1 "eSim_PNP" H 6900 6350 50 0000 R CNN +F 2 "" H 7150 6300 29 0000 C CNN +F 3 "" H 6950 6200 60 0000 C CNN + 1 6950 6200 + 1 0 0 1 +$EndComp +Wire Wire Line + 7050 6000 7050 5500 +Wire Wire Line + 7050 5500 6150 5500 +Connection ~ 6150 5500 +$Comp +L eSim_PNP Q6 +U 1 1 69FF2587 +P 5550 6350 +F 0 "Q6" H 5450 6400 50 0000 R CNN +F 1 "eSim_PNP" H 5500 6500 50 0000 R CNN +F 2 "" H 5750 6450 29 0000 C CNN +F 3 "" H 5550 6350 60 0000 C CNN + 1 5550 6350 + 1 0 0 1 +$EndComp +Wire Wire Line + 5000 6350 5350 6350 +Wire Wire Line + 5650 6150 5650 5350 +Wire Wire Line + 5650 5350 6150 5350 +Connection ~ 6150 5350 +Wire Wire Line + 5650 6550 5650 7850 +Wire Wire Line + 6150 5950 6150 6450 +Wire Wire Line + 6150 6450 6200 6450 +Wire Wire Line + 6750 6200 6150 6200 +Connection ~ 6150 6200 +$Comp +L resistor R8 +U 1 1 69FF297A +P 6150 7250 +F 0 "R8" H 6200 7380 50 0000 C CNN +F 1 "5.3k" H 6200 7200 50 0000 C CNN +F 2 "" H 6200 7230 30 0000 C CNN +F 3 "" V 6200 7300 30 0000 C CNN + 1 6150 7250 + 0 1 1 0 +$EndComp +Wire Wire Line + 6200 6850 6200 7150 +Wire Wire Line + 6200 7450 6200 7850 +Wire Wire Line + 3800 7600 3800 7850 +Wire Wire Line + 2500 7850 15500 7850 +Connection ~ 5150 7850 +Connection ~ 5650 7850 +Wire Wire Line + 5000 5950 5900 5950 +Wire Wire Line + 5900 5950 5900 6650 +$Comp +L eSim_NPN Q8 +U 1 1 69FF3095 +P 6100 6650 +F 0 "Q8" H 6000 6700 50 0000 R CNN +F 1 "eSim_NPN" H 6050 6800 50 0000 R CNN +F 2 "" H 6300 6750 29 0000 C CNN +F 3 "" H 6100 6650 60 0000 C CNN + 1 6100 6650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q11 +U 1 1 69FF31A0 +P 7750 6600 +F 0 "Q11" H 7650 6650 50 0000 R CNN +F 1 "eSim_NPN" H 7700 6750 50 0000 R CNN +F 2 "" H 7950 6700 29 0000 C CNN +F 3 "" H 7750 6600 60 0000 C CNN + 1 7750 6600 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q12 +U 1 1 69FF323C +P 8750 6600 +F 0 "Q12" H 8650 6650 50 0000 R CNN +F 1 "eSim_NPN" H 8700 6750 50 0000 R CNN +F 2 "" H 8950 6700 29 0000 C CNN +F 3 "" H 8750 6600 60 0000 C CNN + 1 8750 6600 + -1 0 0 -1 +$EndComp +Wire Wire Line + 7850 6400 7850 5200 +Wire Wire Line + 8650 6400 8650 5700 +Wire Wire Line + 8650 5700 7850 5700 +Connection ~ 7850 5700 +$Comp +L resistor R11 +U 1 1 69FF33E1 +P 7800 7300 +F 0 "R11" H 7850 7430 50 0000 C CNN +F 1 "70" H 7850 7250 50 0000 C CNN +F 2 "" H 7850 7280 30 0000 C CNN +F 3 "" V 7850 7350 30 0000 C CNN + 1 7800 7300 + 0 1 1 0 +$EndComp +Wire Wire Line + 7850 6800 7850 7200 +Wire Wire Line + 8650 7850 8650 6800 +Wire Wire Line + 7850 7850 7850 7500 +Wire Wire Line + 7050 6400 7050 7000 +$Comp +L resistor R9 +U 1 1 69FF373E +P 7000 7100 +F 0 "R9" H 7050 7230 50 0000 C CNN +F 1 "5.7k" H 7050 7050 50 0000 C CNN +F 2 "" H 7050 7080 30 0000 C CNN +F 3 "" V 7050 7150 30 0000 C CNN + 1 7000 7100 + 0 1 1 0 +$EndComp +Wire Wire Line + 7050 7850 7050 7300 +Connection ~ 6200 7850 +Connection ~ 7050 7850 +Connection ~ 7850 7850 +$Comp +L resistor R12 +U 1 1 69FF3F19 +P 9200 7250 +F 0 "R12" H 9250 7380 50 0000 C CNN +F 1 "5.1K" H 9250 7200 50 0000 C CNN +F 2 "" H 9250 7230 30 0000 C CNN +F 3 "" V 9250 7300 30 0000 C CNN + 1 9200 7250 + 0 1 1 0 +$EndComp +Wire Wire Line + 8950 6600 9250 6600 +Wire Wire Line + 9250 5500 9250 7150 +Wire Wire Line + 9250 7850 9250 7450 +Connection ~ 8650 7850 +Connection ~ 9250 6600 +$Comp +L eSim_NPN Q13 +U 1 1 69FF430E +P 9350 5300 +F 0 "Q13" H 9250 5350 50 0000 R CNN +F 1 "eSim_NPN" H 9300 5450 50 0000 R CNN +F 2 "" H 9550 5400 29 0000 C CNN +F 3 "" H 9350 5300 60 0000 C CNN + 1 9350 5300 + -1 0 0 -1 +$EndComp +$Comp +L eSim_PNP Q15 +U 1 1 69FF447B +P 10150 5750 +F 0 "Q15" H 10050 5800 50 0000 R CNN +F 1 "eSim_PNP" H 10100 5900 50 0000 R CNN +F 2 "" H 10350 5850 29 0000 C CNN +F 3 "" H 10150 5750 60 0000 C CNN + 1 10150 5750 + -1 0 0 1 +$EndComp +Wire Wire Line + 10050 5550 10050 4750 +Wire Wire Line + 9550 5300 10050 5300 +Connection ~ 10050 5300 +Wire Wire Line + 10050 7850 10050 5950 +Connection ~ 9250 7850 +Wire Wire Line + 10350 5750 11900 5750 +Wire Wire Line + 10550 5750 10550 6300 +Connection ~ 10550 5750 +$Comp +L capacitor C1 +U 1 1 69FF4C69 +P 10550 6450 +F 0 "C1" H 10575 6550 50 0000 L CNN +F 1 "30pF" H 10575 6350 50 0000 L CNN +F 2 "" H 10588 6300 30 0000 C CNN +F 3 "" H 10550 6450 60 0000 C CNN + 1 10550 6450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 10550 7850 10550 6600 +Connection ~ 10050 7850 +$Comp +L capacitor C2 +U 1 1 69FF4E01 +P 11200 6750 +F 0 "C2" H 11225 6850 50 0000 L CNN +F 1 "30pF" H 11225 6650 50 0000 L CNN +F 2 "" H 11238 6600 30 0000 C CNN +F 3 "" H 11200 6750 60 0000 C CNN + 1 11200 6750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 11200 5750 11200 6600 +Connection ~ 11200 5750 +Connection ~ 10550 7850 +$Comp +L eSim_NPN Q17 +U 1 1 69FF4F9D +P 12000 6100 +F 0 "Q17" H 11900 6150 50 0000 R CNN +F 1 "eSim_NPN" H 11950 6250 50 0000 R CNN +F 2 "" H 12200 6200 29 0000 C CNN +F 3 "" H 12000 6100 60 0000 C CNN + 1 12000 6100 + -1 0 0 -1 +$EndComp +Wire Wire Line + 11900 4900 11900 5900 +Wire Wire Line + 11900 6300 11900 7150 +$Comp +L resistor R14 +U 1 1 69FF5237 +P 11850 7250 +F 0 "R14" H 11900 7380 50 0000 C CNN +F 1 "10.8K" H 11900 7200 50 0000 C CNN +F 2 "" H 11900 7230 30 0000 C CNN +F 3 "" V 11900 7300 30 0000 C CNN + 1 11850 7250 + 0 1 1 0 +$EndComp +Wire Wire Line + 11200 6900 11200 7600 +Wire Wire Line + 11200 7600 11900 7600 +Wire Wire Line + 11900 7000 12800 7000 +Wire Wire Line + 12800 7000 12800 6600 +Connection ~ 11900 7000 +$Comp +L resistor R15 +U 1 1 69FF571F +P 12750 6400 +F 0 "R15" H 12800 6530 50 0000 C CNN +F 1 "2.12K" H 12800 6350 50 0000 C CNN +F 2 "" H 12800 6380 30 0000 C CNN +F 3 "" V 12800 6450 30 0000 C CNN + 1 12750 6400 + 0 1 1 0 +$EndComp +$Comp +L eSim_NPN Q19 +U 1 1 69FF58C5 +P 12900 6000 +F 0 "Q19" H 12800 6050 50 0000 R CNN +F 1 "eSim_NPN" H 12850 6150 50 0000 R CNN +F 2 "" H 13100 6100 29 0000 C CNN +F 3 "" H 12900 6000 60 0000 C CNN + 1 12900 6000 + -1 0 0 -1 +$EndComp +Wire Wire Line + 12800 6200 12800 6300 +Wire Wire Line + 13100 6000 13800 6000 +Wire Wire Line + 12200 6100 12450 6100 +Wire Wire Line + 12450 6100 12450 5500 +Wire Wire Line + 12450 5500 13350 5500 +Wire Wire Line + 13350 5500 13350 6000 +Connection ~ 13350 6000 +Wire Wire Line + 12800 4050 12800 5800 +$Comp +L eSim_NPN Q20 +U 1 1 69FF5C62 +P 13900 5700 +F 0 "Q20" H 13800 5750 50 0000 R CNN +F 1 "eSim_NPN" H 13850 5850 50 0000 R CNN +F 2 "" H 14100 5800 29 0000 C CNN +F 3 "" H 13900 5700 60 0000 C CNN + 1 13900 5700 + -1 0 0 -1 +$EndComp +Wire Wire Line + 13800 5900 13800 7850 +Connection ~ 13800 6000 +$Comp +L eSim_PNP Q16 +U 1 1 69FF600D +P 12000 4700 +F 0 "Q16" H 11900 4750 50 0000 R CNN +F 1 "eSim_PNP" H 11950 4850 50 0000 R CNN +F 2 "" H 12200 4800 29 0000 C CNN +F 3 "" H 12000 4700 60 0000 C CNN + 1 12000 4700 + -1 0 0 1 +$EndComp +Connection ~ 11900 5750 +$Comp +L eSim_PNP Q18 +U 1 1 69FF62F8 +P 12900 3850 +F 0 "Q18" H 12800 3900 50 0000 R CNN +F 1 "eSim_PNP" H 12850 4000 50 0000 R CNN +F 2 "" H 13100 3950 29 0000 C CNN +F 3 "" H 12900 3850 60 0000 C CNN + 1 12900 3850 + -1 0 0 1 +$EndComp +Wire Wire Line + 12200 4700 12800 4700 +Connection ~ 12800 4700 +Wire Wire Line + 13100 3850 13500 3850 +Wire Wire Line + 13500 3850 13500 4150 +$Comp +L resistor R16 +U 1 1 69FF65C7 +P 13450 4250 +F 0 "R16" H 13500 4380 50 0000 C CNN +F 1 "2.1K" H 13500 4200 50 0000 C CNN +F 2 "" H 13500 4230 30 0000 C CNN +F 3 "" V 13500 4300 30 0000 C CNN + 1 13450 4250 + 0 1 1 0 +$EndComp +Wire Wire Line + 13500 4450 13500 5000 +Wire Wire Line + 13500 5000 12800 5000 +Connection ~ 12800 5000 +Wire Wire Line + 11900 4500 11900 3200 +Wire Wire Line + 11400 3200 14200 3200 +Wire Wire Line + 12800 3200 12800 3650 +Wire Wire Line + 13800 3200 13800 5500 +Connection ~ 12800 3200 +$Comp +L resistor R18 +U 1 1 69FF6E29 +P 14450 4400 +F 0 "R18" H 14500 4530 50 0000 C CNN +F 1 "360" H 14500 4350 50 0000 C CNN +F 2 "" H 14500 4380 30 0000 C CNN +F 3 "" V 14500 4450 30 0000 C CNN + 1 14450 4400 + 0 1 1 0 +$EndComp +$Comp +L eSim_PNP Q21 +U 1 1 69FF7040 +P 14400 3200 +F 0 "Q21" H 14300 3250 50 0000 R CNN +F 1 "eSim_PNP" H 14350 3350 50 0000 R CNN +F 2 "" H 14600 3300 29 0000 C CNN +F 3 "" H 14400 3200 60 0000 C CNN + 1 14400 3200 + 1 0 0 1 +$EndComp +Connection ~ 13800 3200 +Wire Wire Line + 14500 3400 14500 4300 +Wire Wire Line + 14100 5700 14500 5700 +Wire Wire Line + 14500 4600 14500 6900 +$Comp +L eSim_NPN Q22 +U 1 1 69FF7B98 +P 15150 3800 +F 0 "Q22" H 15050 3850 50 0000 R CNN +F 1 "eSim_NPN" H 15100 3950 50 0000 R CNN +F 2 "" H 15350 3900 29 0000 C CNN +F 3 "" H 15150 3800 60 0000 C CNN + 1 15150 3800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 14950 3800 14500 3800 +Connection ~ 14500 3800 +Wire Wire Line + 14500 3000 14500 2850 +Wire Wire Line + 14500 2850 15250 2850 +Wire Wire Line + 15250 1850 15250 3600 +Connection ~ 15250 2850 +$Comp +L resistor R20 +U 1 1 69FF84A1 +P 15250 4800 +F 0 "R20" H 15300 4930 50 0000 C CNN +F 1 "1.4" H 15300 4750 50 0000 C CNN +F 2 "" H 15300 4780 30 0000 C CNN +F 3 "" V 15300 4850 30 0000 C CNN + 1 15250 4800 + 0 1 1 0 +$EndComp +Wire Wire Line + 15250 4000 15250 4700 +Wire Wire Line + 15250 4700 15300 4700 +$Comp +L resistor R19 +U 1 1 69FF8767 +P 14450 7000 +F 0 "R19" H 14500 7130 50 0000 C CNN +F 1 "670" H 14500 6950 50 0000 C CNN +F 2 "" H 14500 6980 30 0000 C CNN +F 3 "" V 14500 7050 30 0000 C CNN + 1 14450 7000 + 0 1 1 0 +$EndComp +Connection ~ 14500 5700 +Wire Wire Line + 14500 7200 14500 7850 +Wire Wire Line + 15300 5000 15300 7850 +Wire Wire Line + 11900 7450 11900 8250 +Connection ~ 13800 7850 +Connection ~ 14500 7850 +Connection ~ 15300 7850 +$Comp +L resistor R17 +U 1 1 69FF9CA3 +P 13750 8200 +F 0 "R17" H 13800 8330 50 0000 C CNN +F 1 "40" H 13800 8150 50 0000 C CNN +F 2 "" H 13800 8180 30 0000 C CNN +F 3 "" V 13800 8250 30 0000 C CNN + 1 13750 8200 + -1 0 0 1 +$EndComp +Wire Wire Line + 11900 8250 13550 8250 +Connection ~ 11900 7600 +Wire Wire Line + 13850 8250 15600 8250 +Wire Wire Line + 5850 5050 5550 5050 +Wire Wire Line + 5550 5050 5550 4500 +Connection ~ 5550 4500 +$Comp +L resistor R5 +U 1 1 69FFBDD1 +P 4950 5450 +F 0 "R5" H 5000 5580 50 0000 C CNN +F 1 "124" H 5000 5400 50 0000 C CNN +F 2 "" H 5000 5430 30 0000 C CNN +F 3 "" V 5000 5500 30 0000 C CNN + 1 4950 5450 + 0 1 1 0 +$EndComp +Wire Wire Line + 5000 5250 5000 5350 +Wire Wire Line + 5000 5650 5000 6700 +Connection ~ 5000 5950 +Connection ~ 5000 6350 +Wire Wire Line + 5000 5300 4600 5300 +Wire Wire Line + 4600 5300 4600 5700 +Connection ~ 5000 5300 +Wire Wire Line + 4600 5700 3600 5700 +Connection ~ 4400 5700 +$Comp +L resistor R1 +U 1 1 69FFD909 +P 3500 5650 +F 0 "R1" H 3550 5780 50 0000 C CNN +F 1 "200K" H 3550 5600 50 0000 C CNN +F 2 "" H 3550 5630 30 0000 C CNN +F 3 "" V 3550 5700 30 0000 C CNN + 1 3500 5650 + -1 0 0 1 +$EndComp +$Comp +L eSim_Diode D1 +U 1 1 69FFDDEE +P 2950 6450 +F 0 "D1" H 2950 6550 50 0000 C CNN +F 1 "eSim_Diode" H 2950 6350 50 0000 C CNN +F 2 "" H 2950 6450 60 0000 C CNN +F 3 "" H 2950 6450 60 0000 C CNN + 1 2950 6450 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 3300 5700 2950 5700 +Wire Wire Line + 2950 5450 2950 6300 +Wire Wire Line + 2950 7850 2950 6600 +Connection ~ 3800 7850 +Wire Wire Line + 2500 5250 2500 7850 +Connection ~ 2950 7850 +$Comp +L eSim_PNP Q10 +U 1 1 69FFE9BC +P 7600 4050 +F 0 "Q10" H 7500 4100 50 0000 R CNN +F 1 "eSim_PNP" H 7550 4200 50 0000 R CNN +F 2 "" H 7800 4150 29 0000 C CNN +F 3 "" H 7600 4050 60 0000 C CNN + 1 7600 4050 + 1 0 0 1 +$EndComp +$Comp +L resistor R10 +U 1 1 69FFEA98 +P 7650 3550 +F 0 "R10" H 7700 3680 50 0000 C CNN +F 1 "251" H 7700 3500 50 0000 C CNN +F 2 "" H 7700 3530 30 0000 C CNN +F 3 "" V 7700 3600 30 0000 C CNN + 1 7650 3550 + 0 1 1 0 +$EndComp +Wire Wire Line + 7700 3400 7700 3450 +Connection ~ 6200 3400 +Wire Wire Line + 7700 3750 7700 3850 +Wire Wire Line + 7400 4050 7050 4050 +Wire Wire Line + 7050 4050 7050 4550 +Wire Wire Line + 7700 4250 7700 5200 +Wire Wire Line + 7700 5200 7850 5200 +Wire Wire Line + 9250 3400 9250 5100 +Connection ~ 7700 3400 +$Comp +L eSim_PNP Q14 +U 1 1 69FFF7D7 +P 9950 4550 +F 0 "Q14" H 9850 4600 50 0000 R CNN +F 1 "eSim_PNP" H 9900 4700 50 0000 R CNN +F 2 "" H 10150 4650 29 0000 C CNN +F 3 "" H 9950 4550 60 0000 C CNN + 1 9950 4550 + 1 0 0 1 +$EndComp +$Comp +L resistor R13 +U 1 1 69FFFACD +P 10000 3650 +F 0 "R13" H 10050 3780 50 0000 C CNN +F 1 "5.6K" H 10050 3600 50 0000 C CNN +F 2 "" H 10050 3630 30 0000 C CNN +F 3 "" V 10050 3700 30 0000 C CNN + 1 10000 3650 + 0 1 1 0 +$EndComp +Wire Wire Line + 10050 1850 10050 3550 +Connection ~ 9250 3400 +Wire Wire Line + 10050 3850 10050 4350 +Wire Wire Line + 7050 4550 9750 4550 +Connection ~ 7050 4500 +Wire Wire Line + 7700 4400 8600 4400 +Wire Wire Line + 8600 4400 8600 4000 +Wire Wire Line + 8600 4000 11400 4000 +Wire Wire Line + 11400 4000 11400 3200 +Connection ~ 11900 3200 +Connection ~ 7700 4400 +Wire Wire Line + 10050 1850 15650 1850 +Connection ~ 10050 3400 +Connection ~ 15250 1850 +Wire Wire Line + 2500 5250 2650 5250 +Connection ~ 2950 5700 +Wire Wire Line + 2950 5050 2950 3400 +Connection ~ 3700 3400 +Wire Wire Line + 15500 7350 15500 8000 +Wire Wire Line + 15500 7350 15850 7350 +Wire Wire Line + 15500 7550 15850 7550 +Connection ~ 15500 7550 +Wire Wire Line + 15500 7750 15850 7750 +Connection ~ 15500 7750 +Wire Wire Line + 15500 8000 15850 8000 +Connection ~ 15500 7850 +$Comp +L PORT U1 +U 2 1 6A006208 +P 16100 7350 +F 0 "U1" H 16150 7450 30 0000 C CNN +F 1 "PORT" H 16100 7350 30 0000 C CNN +F 2 "" H 16100 7350 60 0000 C CNN +F 3 "" H 16100 7350 60 0000 C CNN + 2 16100 7350 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 6A0063F7 +P 16100 7550 +F 0 "U1" H 16150 7650 30 0000 C CNN +F 1 "PORT" H 16100 7550 30 0000 C CNN +F 2 "" H 16100 7550 60 0000 C CNN +F 3 "" H 16100 7550 60 0000 C CNN + 3 16100 7550 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 1 1 6A006590 +P 15650 2100 +F 0 "U1" H 15700 2200 30 0000 C CNN +F 1 "PORT" H 15650 2100 30 0000 C CNN +F 2 "" H 15650 2100 60 0000 C CNN +F 3 "" H 15650 2100 60 0000 C CNN + 1 15650 2100 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 4 1 6A006727 +P 15850 8250 +F 0 "U1" H 15900 8350 30 0000 C CNN +F 1 "PORT" H 15850 8250 30 0000 C CNN +F 2 "" H 15850 8250 60 0000 C CNN +F 3 "" H 15850 8250 60 0000 C CNN + 4 15850 8250 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 6A00686E +P 8000 9050 +F 0 "U1" H 8050 9150 30 0000 C CNN +F 1 "PORT" H 8000 9050 30 0000 C CNN +F 2 "" H 8000 9050 60 0000 C CNN +F 3 "" H 8000 9050 60 0000 C CNN + 5 8000 9050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 6A0069B5 +P 16100 7750 +F 0 "U1" H 16150 7850 30 0000 C CNN +F 1 "PORT" H 16100 7750 30 0000 C CNN +F 2 "" H 16100 7750 60 0000 C CNN +F 3 "" H 16100 7750 60 0000 C CNN + 6 16100 7750 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 6A006B37 +P 8000 8700 +F 0 "U1" H 8050 8800 30 0000 C CNN +F 1 "PORT" H 8000 8700 30 0000 C CNN +F 2 "" H 8000 8700 60 0000 C CNN +F 3 "" H 8000 8700 60 0000 C CNN + 8 8000 8700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 6A006C8C +P 16100 8000 +F 0 "U1" H 16150 8100 30 0000 C CNN +F 1 "PORT" H 16100 8000 30 0000 C CNN +F 2 "" H 16100 8000 60 0000 C CNN +F 3 "" H 16100 8000 60 0000 C CNN + 7 16100 8000 + -1 0 0 1 +$EndComp +Wire Wire Line + 8250 8700 8650 8700 +Wire Wire Line + 8250 9050 8650 9050 +NoConn ~ 8650 8700 +NoConn ~ 8650 9050 +Wire Wire Line + 7550 6600 7050 6600 +Connection ~ 7050 6600 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TL317/TL317.sub b/library/SubcircuitLibrary/TL317/TL317.sub new file mode 100644 index 000000000..ca532ad72 --- /dev/null +++ b/library/SubcircuitLibrary/TL317/TL317.sub @@ -0,0 +1,54 @@ +* Subcircuit TL317 +.subckt TL317 net-_q1-pad3_ net-_c1-pad2_ net-_c1-pad2_ net-_r17-pad1_ ? net-_c1-pad2_ net-_c1-pad2_ ? +* c:\fossee\esim\library\subcircuitlibrary\tl317\tl317.cir +.include PNP.lib +.include D.lib +.include NPN.lib +q5 net-_q5-pad1_ net-_q3-pad2_ net-_c1-pad2_ Q2N2222 +q2 net-_q10-pad2_ net-_q10-pad2_ net-_q2-pad3_ Q2N2907A +q3 net-_q10-pad2_ net-_q3-pad2_ net-_q3-pad3_ Q2N2222 +q4 net-_q3-pad2_ net-_q10-pad2_ net-_q4-pad3_ Q2N2907A +r2 net-_q1-pad3_ net-_q2-pad3_ 310 +r4 net-_q1-pad3_ net-_q4-pad3_ 310 +q1 net-_d1-pad2_ net-_c1-pad2_ net-_q1-pad3_ Q2N2907A +q7 net-_q6-pad3_ net-_q10-pad2_ net-_q7-pad3_ Q2N2907A +r7 net-_q1-pad3_ net-_q7-pad3_ 190 +r6 net-_q6-pad3_ net-_q8-pad1_ 11.5k +r3 net-_q3-pad3_ net-_c1-pad2_ 195 +q9 net-_q11-pad2_ net-_q8-pad1_ net-_q6-pad3_ Q2N2907A +q6 net-_c1-pad2_ net-_q5-pad1_ net-_q6-pad3_ Q2N2907A +r8 net-_q8-pad3_ net-_c1-pad2_ 5.3k +q8 net-_q8-pad1_ net-_q5-pad1_ net-_q8-pad3_ Q2N2222 +q11 net-_q10-pad1_ net-_q11-pad2_ net-_q11-pad3_ Q2N2222 +q12 net-_q10-pad1_ net-_q12-pad2_ net-_c1-pad2_ Q2N2222 +r11 net-_q11-pad3_ net-_c1-pad2_ 70 +r9 net-_q11-pad2_ net-_c1-pad2_ 5.7k +r12 net-_q12-pad2_ net-_c1-pad2_ 5.1k +q13 net-_q1-pad3_ net-_q13-pad2_ net-_q12-pad2_ Q2N2222 +q15 net-_c1-pad2_ net-_c1-pad1_ net-_q13-pad2_ Q2N2907A +c1 net-_c1-pad1_ net-_c1-pad2_ 30pf +c2 net-_c1-pad1_ net-_c2-pad2_ 30pf +q17 net-_c1-pad1_ net-_c1-pad2_ net-_q17-pad3_ Q2N2222 +r14 net-_q17-pad3_ net-_c2-pad2_ 10.8k +r15 net-_q19-pad3_ net-_q17-pad3_ 2.12k +q19 net-_q16-pad2_ net-_c1-pad2_ net-_q19-pad3_ Q2N2222 +q20 net-_q10-pad1_ net-_q20-pad2_ net-_c1-pad2_ Q2N2222 +q16 net-_c1-pad1_ net-_q16-pad2_ net-_q10-pad1_ Q2N2907A +q18 net-_q16-pad2_ net-_q18-pad2_ net-_q10-pad1_ Q2N2907A +r16 net-_q18-pad2_ net-_q16-pad2_ 2.1k +r18 net-_q21-pad1_ net-_q20-pad2_ 360 +q21 net-_q21-pad1_ net-_q10-pad1_ net-_q1-pad3_ Q2N2907A +q22 net-_q1-pad3_ net-_q21-pad1_ net-_q22-pad3_ Q2N2222 +r20 net-_q22-pad3_ net-_c1-pad2_ 1.4 +r19 net-_q20-pad2_ net-_c1-pad2_ 670 +r17 net-_r17-pad1_ net-_c2-pad2_ 40 +r5 net-_q3-pad2_ net-_q5-pad1_ 124 +r1 net-_q3-pad2_ net-_d1-pad2_ 200k +d1 net-_c1-pad2_ net-_d1-pad2_ 1N4148 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +r10 net-_q1-pad3_ net-_q10-pad3_ 251 +q14 net-_q13-pad2_ net-_q10-pad2_ net-_q14-pad3_ Q2N2907A +r13 net-_q1-pad3_ net-_q14-pad3_ 5.6k +* Control Statements + +.ends TL317 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TL317/TL317_Previous_Values.xml b/library/SubcircuitLibrary/TL317/TL317_Previous_Values.xml new file mode 100644 index 000000000..bd238f9bb --- /dev/null +++ b/library/SubcircuitLibrary/TL317/TL317_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/TL317/analysis b/library/SubcircuitLibrary/TL317/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/TL317/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TLC2264/D.lib b/library/SubcircuitLibrary/TLC2264/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/TLC2264/NMOS-180nm.lib b/library/SubcircuitLibrary/TLC2264/NMOS-180nm.lib new file mode 100644 index 000000000..51e9b1196 --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/NMOS-180nm.lib @@ -0,0 +1,13 @@ +.model CMOSN NMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=2.3549E17 VTH0=0.3823463 K1=0.5810697 ++ K2=4.774618E-3 K3=0.0431669 K3B=1.1498346 W0=1E-7 NLX=1.910552E-7 DVT0W=0 DVT1W=0 DVT2W=0 ++ DVT0=1.2894824 DVT1=0.3622063 DVT2=0.0713729 U0=280.633249 UA=-1.208537E-9 UB=2.158625E-18 ++ UC=5.342807E-11 VSAT=9.366802E4 A0=1.7593146 AGS=0.3939741 B0=-6.413949E-9 B1=-1E-7 KETA=-5.180424E-4 ++ A1=0 A2=1 RDSW=105.5517558 PRWG=0.5 PRWB=-0.1998871 WR=1 WINT=7.904732E-10 LINT=1.571424E-8 XL=0 ++ XW=-1E-8 DWG=1.297221E-9 DWB=1.479041E-9 VOFF=-0.0955434 NFACTOR=2.4358891 CIT=0 CDSC=2.4E-4 CDSCD=0 ++ CDSCB=0 ETA0=3.104851E-3 ETAB=-2.512384E-5 DSUB=0.0167075 PCLM=0.8073191 PDIBLC1=0.1666161 PDIBLC2=3.112892E-3 ++ PDIBLCB=-0.1 DROUT=0.7875618 PSCBE1=8E10 PSCBE2=9.213635E-10 PVAG=3.85243E-3 DELTA=0.01 RSH=6.7 MOBMOD=1 ++ PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 ++ WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 CGDO=7.08E-10 CGSO=7.08E-10 CGBO=1E-12 ++ CJ=9.68858E-4 PB=0.8 MJ=0.3864502 CJSW=2.512138E-10 PBSW=0.809286 MJSW=0.1060414 CJSWG=3.3E-10 PBSWG=0.809286 ++ MJSWG=0.1060414 CF=0 PVTH0=-1.192722E-3 PRDSW=-5 PK2=6.450505E-5 WKETA=-4.27294E-4 LKETA=-0.0104078 ++ PU0=6.3268729 PUA=2.226552E-11 PUB=0 PVSAT=969.1480157 PETA0=1E-4 PKETA=-1.049509E-3) diff --git a/library/SubcircuitLibrary/TLC2264/PMOS-180nm.lib b/library/SubcircuitLibrary/TLC2264/PMOS-180nm.lib new file mode 100644 index 000000000..032b5b95e --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/PMOS-180nm.lib @@ -0,0 +1,11 @@ +.model CMOSP PMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=4.1589E17 VTH0=-0.3938813 K1=0.5479015 ++ K2=0.0360586 K3=0.0993095 K3B=5.7086622 W0=1E-6 NLX=1.313191E-7 DVT0W=0 DVT1W=0 DVT2W=0 DVT0=0.4911363 ++ DVT1=0.2227356 DVT2=0.1 U0=115.6852975 UA=1.505832E-9 UB=1E-21 UC=-1E-10 VSAT=1.329694E5 A0=1.7590478 ++ AGS=0.3641621 B0=3.427126E-7 B1=1.062928E-6 KETA=0.0134667 A1=0.6859506 A2=0.3506788 RDSW=168.5705677 ++ PRWG=0.5 PRWB=-0.4987371 WR=1 WINT=0 LINT=3.028832E-8 XL=0 XW=-1E-8 DWG=-2.349633E-8 DWB=-7.152486E-9 ++ VOFF=-0.0994037 NFACTOR=1.9424315 CIT=0 CDSC=2.4E-4 CDSCD=0 CDSCB=0 ETA0=0.0608072 ETAB=-0.0426148 ++ DSUB=0.7343015 PCLM=3.2579974 PDIBLC1=7.229527E-6 PDIBLC2=0.025389 PDIBLCB=-1E-3 DROUT=0 PSCBE1=1.454878E10 ++ PSCBE2=4.202027E-9 PVAG=15 DELTA=0.01 RSH=7.8 MOBMOD=1 PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 ++ UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 ++ CGDO=6.32E-10 CGSO=6.32E-10 CGBO=1E-12 CJ=1.172138E-3 PB=0.8421173 MJ=0.4109788 CJSW=2.242609E-10 PBSW=0.8 + MJSW=0.3752089 CJSWG=4.22E-10 PBSWG=0.8 MJSWG=0.3752089 CF=0 PVTH0=1.888482E-3 PRDSW=11.5315407 PK2=1.559399E-3 ++ WKETA=0.0319301 LKETA=2.955547E-3 PU0=-1.1105313 PUA=-4.62102E-11 PUB=1E-21 PVSAT=50 PETA0=1E-4 PKETA=-4.346368E-3) diff --git a/library/SubcircuitLibrary/TLC2264/TLC2264-cache.lib b/library/SubcircuitLibrary/TLC2264/TLC2264-cache.lib new file mode 100644 index 000000000..4d650c112 --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/TLC2264-cache.lib @@ -0,0 +1,162 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_C +# +DEF eSim_C C 0 10 N Y 1 F N +F0 "C" 25 100 50 H V L CNN +F1 "eSim_C" 25 -100 50 H V L CNN +F2 "" 38 -150 30 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS capacitor +$FPLIST + C_* +$ENDFPLIST +DRAW +P 2 0 1 20 -80 -30 80 -30 N +P 2 0 1 20 -80 30 80 30 N +X ~ 1 0 150 110 D 40 40 1 1 P +X ~ 2 0 -150 110 U 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_Diode +# +DEF eSim_Diode D 0 40 N N 1 F N +F0 "D" 0 100 50 H V C CNN +F1 "eSim_Diode" 0 -100 50 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +$FPLIST + TO-???* + *SingleDiode + *_Diode_* + *SingleDiode* + D_* +$ENDFPLIST +DRAW +T 0 -100 50 60 0 0 0 A Normal 0 C C +T 0 100 50 60 0 0 0 K Normal 0 C C +P 2 0 1 6 50 50 50 -50 N +P 3 0 1 0 -50 50 50 0 -50 -50 F +X A 1 -150 0 100 R 40 40 1 1 P +X K 2 150 0 100 L 40 40 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_N +# +DEF eSim_MOS_N M 0 0 Y N 1 F N +F0 "M" 0 -150 50 H V R CNN +F1 "eSim_MOS_N" 100 -50 50 H V R CNN +F2 "" 300 -300 29 H V C CNN +F3 "" 100 -200 60 H V C CNN +ALIAS mosfet_n +DRAW +C 150 -200 111 0 1 10 N +P 2 0 1 10 130 -290 130 -250 N +P 2 0 1 0 130 -270 200 -270 N +P 2 0 1 10 130 -220 130 -180 N +P 2 0 1 0 130 -200 200 -200 N +P 2 0 1 10 130 -150 130 -110 N +P 2 0 1 0 130 -130 200 -130 N +P 2 0 1 0 200 -300 200 -270 N +P 2 0 1 0 200 -130 200 -100 N +P 3 0 1 10 110 -275 110 -125 110 -125 N +P 3 0 1 0 200 -200 300 -200 300 -250 N +P 4 0 1 0 140 -200 180 -215 180 -185 140 -200 F +X D 1 200 0 100 D 50 50 1 1 P +X G 2 -100 -200 210 R 50 50 1 1 P +X S 3 200 -400 100 U 50 50 1 1 P +X B 4 300 -350 98 U 47 47 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_P +# +DEF eSim_MOS_P M 0 0 Y N 1 F N +F0 "M" -50 50 50 H V R CNN +F1 "eSim_MOS_P" 50 150 50 H V R CNN +F2 "" 250 100 29 H V C CNN +F3 "" 50 0 60 H V C CNN +ALIAS mosfet_p +DRAW +C 100 0 111 0 1 10 N +P 2 0 1 0 80 -70 150 -70 N +P 2 0 1 10 80 -50 80 -90 N +P 2 0 1 0 80 0 150 0 N +P 2 0 1 10 80 20 80 -20 N +P 2 0 1 0 80 70 150 70 N +P 2 0 1 10 80 90 80 50 N +P 2 0 1 0 150 -70 150 -100 N +P 2 0 1 0 150 100 150 70 N +P 3 0 1 10 60 75 60 -75 60 -75 N +P 3 0 1 0 150 0 250 0 250 -50 N +P 4 0 1 0 140 0 100 -15 100 15 140 0 F +X D 1 150 200 100 D 50 50 1 1 P +X G 2 -150 0 210 R 50 50 1 1 P +X S 3 150 -200 100 U 50 50 1 1 P +X B 4 250 -150 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/TLC2264/TLC2264.cir b/library/SubcircuitLibrary/TLC2264/TLC2264.cir new file mode 100644 index 000000000..be83d7e46 --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/TLC2264.cir @@ -0,0 +1,59 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\TLC2264\TLC2264.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 05/11/26 14:09:30 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +M2 Net-_M1-Pad3_ Net-_M1-Pad3_ Net-_M2-Pad3_ Net-_D1-Pad2_ mosfet_n +M1 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad4_ mosfet_p +M5 Net-_M1-Pad1_ Net-_M5-Pad2_ Net-_M12-Pad1_ Net-_M1-Pad4_ mosfet_p +M3 Net-_M1-Pad4_ Net-_M14-Pad1_ Net-_M1-Pad1_ Net-_M1-Pad4_ mosfet_p +M6 Net-_M1-Pad4_ Net-_M14-Pad1_ Net-_M10-Pad2_ Net-_M1-Pad4_ mosfet_p +M4 Net-_M12-Pad1_ Net-_M1-Pad3_ Net-_M4-Pad3_ Net-_D1-Pad2_ mosfet_n +R1 Net-_M2-Pad3_ Net-_D1-Pad2_ 21.22k +R2 Net-_M4-Pad3_ Net-_D1-Pad2_ 21.22k +M9 Net-_M1-Pad4_ Net-_M9-Pad2_ Net-_M9-Pad2_ Net-_M1-Pad4_ mosfet_p +M11 Net-_M1-Pad4_ Net-_M10-Pad1_ Net-_C1-Pad1_ Net-_M1-Pad4_ mosfet_p +M7 Net-_M10-Pad2_ Net-_M12-Pad1_ Net-_D1-Pad2_ Net-_D1-Pad2_ mosfet_n +M8 Net-_M10-Pad2_ Net-_M10-Pad2_ Net-_D1-Pad2_ Net-_D1-Pad2_ mosfet_n +M10 Net-_M10-Pad1_ Net-_M10-Pad2_ Net-_D1-Pad2_ Net-_D1-Pad2_ mosfet_n +M12 Net-_M12-Pad1_ Net-_M12-Pad2_ Net-_D1-Pad2_ Net-_D1-Pad2_ mosfet_n +M13 Net-_C1-Pad1_ Net-_M12-Pad1_ Net-_M12-Pad2_ Net-_D1-Pad2_ mosfet_n +M14 Net-_M14-Pad1_ Net-_M14-Pad2_ Net-_M14-Pad3_ Net-_D1-Pad2_ mosfet_n +R4 Net-_M12-Pad2_ Net-_D1-Pad2_ 120 +R5 Net-_M14-Pad3_ Net-_D1-Pad2_ 120 +M15 Net-_M1-Pad4_ Net-_M14-Pad1_ Net-_M14-Pad1_ Net-_M1-Pad4_ mosfet_p +M16 Net-_M1-Pad4_ Net-_M14-Pad1_ Net-_M14-Pad2_ Net-_M1-Pad4_ mosfet_p +M17 Net-_M14-Pad2_ Net-_M14-Pad2_ Net-_D1-Pad1_ Net-_D1-Pad2_ mosfet_n +D1 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +R3 Net-_C1-Pad2_ Net-_M12-Pad1_ 100k +M19 Net-_M18-Pad3_ Net-_M18-Pad3_ Net-_M19-Pad3_ Net-_D1-Pad2_ mosfet_n +M18 Net-_M18-Pad1_ Net-_M18-Pad2_ Net-_M18-Pad3_ Net-_M1-Pad4_ mosfet_p +M22 Net-_M18-Pad1_ Net-_M22-Pad2_ Net-_M21-Pad1_ Net-_M1-Pad4_ mosfet_p +M20 Net-_M1-Pad4_ Net-_M20-Pad2_ Net-_M18-Pad1_ Net-_M1-Pad4_ mosfet_p +M23 Net-_M1-Pad4_ Net-_M20-Pad2_ Net-_M23-Pad3_ Net-_M1-Pad4_ mosfet_p +M21 Net-_M21-Pad1_ Net-_M18-Pad3_ Net-_M21-Pad3_ Net-_D1-Pad2_ mosfet_n +R6 Net-_M19-Pad3_ Net-_D1-Pad2_ 21.22k +R7 Net-_M21-Pad3_ Net-_D1-Pad2_ 21.22k +M26 Net-_M1-Pad4_ Net-_M26-Pad2_ Net-_M26-Pad2_ Net-_M1-Pad4_ mosfet_p +M28 Net-_M1-Pad4_ Net-_M27-Pad1_ Net-_C2-Pad1_ Net-_M1-Pad4_ mosfet_p +M24 Net-_M23-Pad3_ Net-_M21-Pad1_ Net-_D1-Pad2_ Net-_D1-Pad2_ mosfet_n +M25 Net-_M23-Pad3_ Net-_M23-Pad3_ Net-_D1-Pad2_ Net-_D1-Pad2_ mosfet_n +M27 Net-_M27-Pad1_ Net-_M23-Pad3_ Net-_D1-Pad2_ Net-_D1-Pad2_ mosfet_n +M29 Net-_M21-Pad1_ Net-_M29-Pad2_ Net-_D1-Pad2_ Net-_D1-Pad2_ mosfet_n +M30 Net-_C2-Pad1_ Net-_M21-Pad1_ Net-_M29-Pad2_ Net-_D1-Pad2_ mosfet_n +M31 Net-_M20-Pad2_ Net-_M31-Pad2_ Net-_M31-Pad3_ Net-_D1-Pad2_ mosfet_n +R9 Net-_M29-Pad2_ Net-_D1-Pad2_ 120 +R10 Net-_M31-Pad3_ Net-_D1-Pad2_ 120 +M32 Net-_M1-Pad4_ Net-_M20-Pad2_ Net-_M20-Pad2_ Net-_M1-Pad4_ mosfet_p +M33 Net-_M1-Pad4_ Net-_M20-Pad2_ Net-_M31-Pad2_ Net-_M1-Pad4_ mosfet_p +M34 Net-_M31-Pad2_ Net-_M31-Pad2_ Net-_D2-Pad1_ Net-_D1-Pad2_ mosfet_n +D2 Net-_D2-Pad1_ Net-_D1-Pad2_ eSim_Diode +R8 Net-_C2-Pad2_ Net-_M21-Pad1_ 100k +U1 Net-_C1-Pad1_ Net-_M1-Pad2_ Net-_M5-Pad2_ Net-_D1-Pad2_ Net-_M22-Pad2_ Net-_M18-Pad2_ Net-_C2-Pad1_ Net-_M1-Pad4_ PORT +C2 Net-_C2-Pad1_ Net-_C2-Pad2_ 3.56pf +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 3.56pf + +.end diff --git a/library/SubcircuitLibrary/TLC2264/TLC2264.cir.out b/library/SubcircuitLibrary/TLC2264/TLC2264.cir.out new file mode 100644 index 000000000..5ce88517c --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/TLC2264.cir.out @@ -0,0 +1,63 @@ +* c:\fossee\esim\library\subcircuitlibrary\tlc2264\tlc2264.cir + +.include NMOS-180nm.lib +.include D.lib +.include PMOS-180nm.lib +m2 net-_m1-pad3_ net-_m1-pad3_ net-_m2-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m5 net-_m1-pad1_ net-_m5-pad2_ net-_m12-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m3 net-_m1-pad4_ net-_m14-pad1_ net-_m1-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m6 net-_m1-pad4_ net-_m14-pad1_ net-_m10-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m4 net-_m12-pad1_ net-_m1-pad3_ net-_m4-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +r1 net-_m2-pad3_ net-_d1-pad2_ 21.22k +r2 net-_m4-pad3_ net-_d1-pad2_ 21.22k +m9 net-_m1-pad4_ net-_m9-pad2_ net-_m9-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m11 net-_m1-pad4_ net-_m10-pad1_ net-_c1-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m7 net-_m10-pad2_ net-_m12-pad1_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m8 net-_m10-pad2_ net-_m10-pad2_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m10 net-_m10-pad1_ net-_m10-pad2_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m12 net-_m12-pad1_ net-_m12-pad2_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m13 net-_c1-pad1_ net-_m12-pad1_ net-_m12-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m14 net-_m14-pad1_ net-_m14-pad2_ net-_m14-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +r4 net-_m12-pad2_ net-_d1-pad2_ 120 +r5 net-_m14-pad3_ net-_d1-pad2_ 120 +m15 net-_m1-pad4_ net-_m14-pad1_ net-_m14-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m16 net-_m1-pad4_ net-_m14-pad1_ net-_m14-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m17 net-_m14-pad2_ net-_m14-pad2_ net-_d1-pad1_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +r3 net-_c1-pad2_ net-_m12-pad1_ 100k +m19 net-_m18-pad3_ net-_m18-pad3_ net-_m19-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m18 net-_m18-pad1_ net-_m18-pad2_ net-_m18-pad3_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m22 net-_m18-pad1_ net-_m22-pad2_ net-_m21-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m20 net-_m1-pad4_ net-_m20-pad2_ net-_m18-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m23 net-_m1-pad4_ net-_m20-pad2_ net-_m23-pad3_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m21 net-_m21-pad1_ net-_m18-pad3_ net-_m21-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +r6 net-_m19-pad3_ net-_d1-pad2_ 21.22k +r7 net-_m21-pad3_ net-_d1-pad2_ 21.22k +m26 net-_m1-pad4_ net-_m26-pad2_ net-_m26-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m28 net-_m1-pad4_ net-_m27-pad1_ net-_c2-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m24 net-_m23-pad3_ net-_m21-pad1_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m25 net-_m23-pad3_ net-_m23-pad3_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m27 net-_m27-pad1_ net-_m23-pad3_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m29 net-_m21-pad1_ net-_m29-pad2_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m30 net-_c2-pad1_ net-_m21-pad1_ net-_m29-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m31 net-_m20-pad2_ net-_m31-pad2_ net-_m31-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +r9 net-_m29-pad2_ net-_d1-pad2_ 120 +r10 net-_m31-pad3_ net-_d1-pad2_ 120 +m32 net-_m1-pad4_ net-_m20-pad2_ net-_m20-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m33 net-_m1-pad4_ net-_m20-pad2_ net-_m31-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m34 net-_m31-pad2_ net-_m31-pad2_ net-_d2-pad1_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +d2 net-_d2-pad1_ net-_d1-pad2_ 1N4148 +r8 net-_c2-pad2_ net-_m21-pad1_ 100k +* u1 net-_c1-pad1_ net-_m1-pad2_ net-_m5-pad2_ net-_d1-pad2_ net-_m22-pad2_ net-_m18-pad2_ net-_c2-pad1_ net-_m1-pad4_ port +c2 net-_c2-pad1_ net-_c2-pad2_ 3.56pf +c1 net-_c1-pad1_ net-_c1-pad2_ 3.56pf +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TLC2264/TLC2264.pro b/library/SubcircuitLibrary/TLC2264/TLC2264.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/TLC2264.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/TLC2264/TLC2264.sch b/library/SubcircuitLibrary/TLC2264/TLC2264.sch new file mode 100644 index 000000000..215419caf --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/TLC2264.sch @@ -0,0 +1,1251 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:TLC2264-cache +EELAYER 25 0 +EELAYER END +$Descr A2 23386 16535 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L mosfet_n M2 +U 1 1 6A00341B +P 2850 8450 +F 0 "M2" H 2850 8300 50 0000 R CNN +F 1 "mosfet_n" H 2950 8400 50 0000 R CNN +F 2 "" H 3150 8150 29 0000 C CNN +F 3 "" H 2950 8250 60 0000 C CNN + 1 2850 8450 + -1 0 0 -1 +$EndComp +$Comp +L mosfet_p M1 +U 1 1 6A003463 +P 2650 7250 +F 0 "M1" H 2600 7300 50 0000 R CNN +F 1 "mosfet_p" H 2700 7400 50 0000 R CNN +F 2 "" H 2900 7350 29 0000 C CNN +F 3 "" H 2700 7250 60 0000 C CNN + 1 2650 7250 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_p M5 +U 1 1 6A0036E4 +P 3750 7250 +F 0 "M5" H 3700 7300 50 0000 R CNN +F 1 "mosfet_p" H 3800 7400 50 0000 R CNN +F 2 "" H 4000 7350 29 0000 C CNN +F 3 "" H 3800 7250 60 0000 C CNN + 1 3750 7250 + -1 0 0 -1 +$EndComp +$Comp +L mosfet_p M3 +U 1 1 6A003770 +P 3550 5800 +F 0 "M3" H 3500 5850 50 0000 R CNN +F 1 "mosfet_p" H 3600 5950 50 0000 R CNN +F 2 "" H 3800 5900 29 0000 C CNN +F 3 "" H 3600 5800 60 0000 C CNN + 1 3550 5800 + -1 0 0 -1 +$EndComp +$Comp +L mosfet_p M6 +U 1 1 6A003836 +P 4500 5800 +F 0 "M6" H 4450 5850 50 0000 R CNN +F 1 "mosfet_p" H 4550 5950 50 0000 R CNN +F 2 "" H 4750 5900 29 0000 C CNN +F 3 "" H 4550 5800 60 0000 C CNN + 1 4500 5800 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_n M4 +U 1 1 6A003AA0 +P 3650 8450 +F 0 "M4" H 3650 8300 50 0000 R CNN +F 1 "mosfet_n" H 3750 8400 50 0000 R CNN +F 2 "" H 3950 8150 29 0000 C CNN +F 3 "" H 3750 8250 60 0000 C CNN + 1 3650 8450 + 1 0 0 -1 +$EndComp +$Comp +L resistor R1 +U 1 1 6A003CB8 +P 2600 9250 +F 0 "R1" H 2650 9380 50 0000 C CNN +F 1 "21.22k" H 2650 9200 50 0000 C CNN +F 2 "" H 2650 9230 30 0000 C CNN +F 3 "" V 2650 9300 30 0000 C CNN + 1 2600 9250 + 0 1 1 0 +$EndComp +$Comp +L resistor R2 +U 1 1 6A003D16 +P 3800 9250 +F 0 "R2" H 3850 9380 50 0000 C CNN +F 1 "21.22k" H 3850 9200 50 0000 C CNN +F 2 "" H 3850 9230 30 0000 C CNN +F 3 "" V 3850 9300 30 0000 C CNN + 1 3800 9250 + 0 1 1 0 +$EndComp +Wire Wire Line + 2900 7400 3500 7400 +Wire Wire Line + 2800 7050 2800 6750 +Wire Wire Line + 2800 6750 3600 6750 +Wire Wire Line + 3600 6750 3600 7050 +Wire Wire Line + 2500 7250 2150 7250 +Wire Wire Line + 3900 7250 4050 7250 +Wire Wire Line + 4050 7250 4050 6550 +Wire Wire Line + 4050 6550 1950 6550 +Wire Wire Line + 3200 5150 3200 7400 +Connection ~ 3200 7400 +Wire Wire Line + 3400 6750 3400 6000 +Connection ~ 3400 6750 +Wire Wire Line + 3200 5150 13400 5150 +Wire Wire Line + 3400 5600 3400 5150 +Connection ~ 3400 5150 +Wire Wire Line + 3300 5950 3300 6000 +Wire Wire Line + 3300 6000 3250 6000 +Wire Wire Line + 3250 6000 3250 5500 +Wire Wire Line + 3250 5500 3400 5500 +Connection ~ 3400 5500 +Wire Wire Line + 3700 5800 4350 5800 +Wire Wire Line + 4650 5150 4650 5600 +Wire Wire Line + 4750 5950 4750 6050 +Wire Wire Line + 4750 6050 4950 6050 +Wire Wire Line + 4950 6050 4950 5450 +Wire Wire Line + 4950 5450 4650 5450 +Connection ~ 4650 5450 +Wire Wire Line + 2950 8650 3550 8650 +Wire Wire Line + 2650 8450 2650 7450 +Wire Wire Line + 2650 7450 2800 7450 +Wire Wire Line + 3850 8450 3850 7450 +Wire Wire Line + 3850 7450 3600 7450 +Wire Wire Line + 2650 8100 3200 8100 +Wire Wire Line + 3200 8100 3200 8650 +Connection ~ 3200 8650 +Connection ~ 2650 8100 +Wire Wire Line + 2650 8850 2650 9150 +Wire Wire Line + 3850 8850 3850 9150 +Wire Wire Line + 2650 9450 2650 9800 +Wire Wire Line + 2350 9800 12450 9800 +Wire Wire Line + 3850 9800 3850 9450 +$Comp +L mosfet_p M9 +U 1 1 6A003EFF +P 6200 5800 +F 0 "M9" H 6150 5850 50 0000 R CNN +F 1 "mosfet_p" H 6250 5950 50 0000 R CNN +F 2 "" H 6450 5900 29 0000 C CNN +F 3 "" H 6250 5800 60 0000 C CNN + 1 6200 5800 + -1 0 0 -1 +$EndComp +$Comp +L mosfet_p M11 +U 1 1 6A003F66 +P 7150 5800 +F 0 "M11" H 7100 5850 50 0000 R CNN +F 1 "mosfet_p" H 7200 5950 50 0000 R CNN +F 2 "" H 7400 5900 29 0000 C CNN +F 3 "" H 7200 5800 60 0000 C CNN + 1 7150 5800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6050 5150 6050 5600 +Connection ~ 4650 5150 +Wire Wire Line + 7300 5150 7300 5600 +Connection ~ 6050 5150 +Wire Wire Line + 6050 6000 6050 6150 +Wire Wire Line + 6050 6150 6550 6150 +Wire Wire Line + 6550 6150 6550 5800 +Wire Wire Line + 6550 5800 6350 5800 +Wire Wire Line + 5950 5950 5950 6050 +Wire Wire Line + 5950 6050 5800 6050 +Wire Wire Line + 5800 6050 5800 5500 +Wire Wire Line + 5800 5500 6050 5500 +Connection ~ 6050 5500 +$Comp +L mosfet_n M7 +U 1 1 6A0040F7 +P 4850 8450 +F 0 "M7" H 4850 8300 50 0000 R CNN +F 1 "mosfet_n" H 4950 8400 50 0000 R CNN +F 2 "" H 5150 8150 29 0000 C CNN +F 3 "" H 4950 8250 60 0000 C CNN + 1 4850 8450 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_n M8 +U 1 1 6A004142 +P 5900 8450 +F 0 "M8" H 5900 8300 50 0000 R CNN +F 1 "mosfet_n" H 6000 8400 50 0000 R CNN +F 2 "" H 6200 8150 29 0000 C CNN +F 3 "" H 6000 8250 60 0000 C CNN + 1 5900 8450 + -1 0 0 -1 +$EndComp +Wire Wire Line + 4750 8650 4750 8950 +Wire Wire Line + 4750 8950 4450 8950 +Wire Wire Line + 4450 8950 4450 7750 +Wire Wire Line + 4450 8100 3850 8100 +Connection ~ 3850 8100 +Connection ~ 4450 8100 +Wire Wire Line + 4650 6000 4650 7400 +Wire Wire Line + 4650 7400 5050 7400 +Wire Wire Line + 5050 7400 5050 8450 +Wire Wire Line + 5700 8450 5700 7950 +Wire Wire Line + 5700 7950 5050 7950 +Connection ~ 5050 7950 +Wire Wire Line + 6000 8650 6600 8650 +Wire Wire Line + 6300 8650 6300 8200 +Wire Wire Line + 6300 8200 5700 8200 +Connection ~ 5700 8200 +Connection ~ 6300 8650 +Wire Wire Line + 5050 9800 5050 8850 +Connection ~ 3850 9800 +Wire Wire Line + 5700 9800 5700 8850 +Connection ~ 5050 9800 +Wire Wire Line + 5600 8800 5600 9800 +Connection ~ 5600 9800 +Wire Wire Line + 5150 8800 5150 9800 +Connection ~ 5150 9800 +$Comp +L mosfet_n M10 +U 1 1 6A004828 +P 6700 8450 +F 0 "M10" H 6700 8300 50 0000 R CNN +F 1 "mosfet_n" H 6800 8400 50 0000 R CNN +F 2 "" H 7000 8150 29 0000 C CNN +F 3 "" H 6800 8250 60 0000 C CNN + 1 6700 8450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6900 9800 6900 8850 +Connection ~ 5700 9800 +Wire Wire Line + 7000 9800 7000 8800 +Connection ~ 6900 9800 +$Comp +L mosfet_n M12 +U 1 1 6A004A0E +P 7850 8450 +F 0 "M12" H 7850 8300 50 0000 R CNN +F 1 "mosfet_n" H 7950 8400 50 0000 R CNN +F 2 "" H 8150 8150 29 0000 C CNN +F 3 "" H 7950 8250 60 0000 C CNN + 1 7850 8450 + -1 0 0 -1 +$EndComp +Wire Wire Line + 6900 8450 6900 5800 +Wire Wire Line + 6900 5800 7000 5800 +Wire Wire Line + 4450 7750 8050 7750 +Wire Wire Line + 7650 8450 7650 7750 +Connection ~ 7650 7750 +Wire Wire Line + 7650 9800 7650 8850 +Connection ~ 7000 9800 +Wire Wire Line + 7550 8800 7550 9800 +Connection ~ 7550 9800 +$Comp +L mosfet_n M13 +U 1 1 6A00500A +P 8150 7550 +F 0 "M13" H 8150 7400 50 0000 R CNN +F 1 "mosfet_n" H 8250 7500 50 0000 R CNN +F 2 "" H 8450 7250 29 0000 C CNN +F 3 "" H 8250 7350 60 0000 C CNN + 1 8150 7550 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_n M14 +U 1 1 6A005091 +P 9050 7550 +F 0 "M14" H 9050 7400 50 0000 R CNN +F 1 "mosfet_n" H 9150 7500 50 0000 R CNN +F 2 "" H 9350 7250 29 0000 C CNN +F 3 "" H 9150 7350 60 0000 C CNN + 1 9050 7550 + -1 0 0 -1 +$EndComp +Wire Wire Line + 8450 7900 8450 7950 +Wire Wire Line + 8450 7950 8750 7950 +Wire Wire Line + 8750 7950 8750 7900 +Wire Wire Line + 8350 7950 8350 9300 +$Comp +L resistor R4 +U 1 1 6A005391 +P 8300 9400 +F 0 "R4" H 8350 9530 50 0000 C CNN +F 1 "120" H 8350 9350 50 0000 C CNN +F 2 "" H 8350 9380 30 0000 C CNN +F 3 "" V 8350 9450 30 0000 C CNN + 1 8300 9400 + 0 1 1 0 +$EndComp +Wire Wire Line + 8350 9800 8350 9600 +Connection ~ 7650 9800 +Wire Wire Line + 8850 7950 8850 9250 +$Comp +L resistor R5 +U 1 1 6A0057B6 +P 8800 9350 +F 0 "R5" H 8850 9480 50 0000 C CNN +F 1 "120" H 8850 9300 50 0000 C CNN +F 2 "" H 8850 9330 30 0000 C CNN +F 3 "" V 8850 9400 30 0000 C CNN + 1 8800 9350 + 0 1 1 0 +$EndComp +Wire Wire Line + 8850 9800 8850 9550 +Connection ~ 8350 9800 +Wire Wire Line + 7950 8650 8350 8650 +Connection ~ 8350 8650 +Wire Wire Line + 8600 7950 8600 9800 +Connection ~ 8600 9800 +Connection ~ 8600 7950 +Wire Wire Line + 8350 7550 8350 6100 +Wire Wire Line + 7400 5950 7700 5950 +Wire Wire Line + 7700 5950 7700 5350 +Wire Wire Line + 7700 5350 7300 5350 +Connection ~ 7300 5350 +Wire Wire Line + 7300 6000 7300 6100 +Wire Wire Line + 7300 6100 8350 6100 +$Comp +L mosfet_p M15 +U 1 1 6A005CDE +P 9150 5750 +F 0 "M15" H 9100 5800 50 0000 R CNN +F 1 "mosfet_p" H 9200 5900 50 0000 R CNN +F 2 "" H 9400 5850 29 0000 C CNN +F 3 "" H 9200 5750 60 0000 C CNN + 1 9150 5750 + -1 0 0 -1 +$EndComp +$Comp +L mosfet_p M16 +U 1 1 6A005EA2 +P 10050 5750 +F 0 "M16" H 10000 5800 50 0000 R CNN +F 1 "mosfet_p" H 10100 5900 50 0000 R CNN +F 2 "" H 10300 5850 29 0000 C CNN +F 3 "" H 10100 5750 60 0000 C CNN + 1 10050 5750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9000 5150 9000 5550 +Connection ~ 7300 5150 +Wire Wire Line + 8900 5900 8900 5950 +Wire Wire Line + 8900 5950 8750 5950 +Wire Wire Line + 8750 5950 8750 5400 +Wire Wire Line + 8750 5400 9000 5400 +Connection ~ 9000 5400 +Wire Wire Line + 9300 5750 9900 5750 +Wire Wire Line + 10200 5150 10200 5550 +Connection ~ 9000 5150 +Wire Wire Line + 10300 5900 10300 6000 +Wire Wire Line + 10300 6000 10650 6000 +Wire Wire Line + 10650 6000 10650 5350 +Wire Wire Line + 10650 5350 10200 5350 +Connection ~ 10200 5350 +Wire Wire Line + 9000 5950 9000 7550 +Wire Wire Line + 9000 7550 8850 7550 +Wire Wire Line + 9000 6150 9550 6150 +Wire Wire Line + 9550 6150 9550 5750 +Connection ~ 9550 5750 +Connection ~ 9000 6150 +Wire Wire Line + 9000 6350 4100 6350 +Wire Wire Line + 4100 6350 4100 5800 +Connection ~ 4100 5800 +Connection ~ 9000 6350 +Wire Wire Line + 8350 7000 11500 7000 +Connection ~ 8350 7000 +$Comp +L mosfet_n M17 +U 1 1 6A006962 +P 10050 7550 +F 0 "M17" H 10050 7400 50 0000 R CNN +F 1 "mosfet_n" H 10150 7500 50 0000 R CNN +F 2 "" H 10350 7250 29 0000 C CNN +F 3 "" H 10150 7350 60 0000 C CNN + 1 10050 7550 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9150 7750 9950 7750 +Wire Wire Line + 10250 7550 10250 5950 +Wire Wire Line + 10250 5950 10200 5950 +Wire Wire Line + 9600 7750 9600 7100 +Wire Wire Line + 9600 7100 10250 7100 +Connection ~ 10250 7100 +Connection ~ 9600 7750 +Wire Wire Line + 10350 9800 10350 7900 +Connection ~ 8850 9800 +$Comp +L eSim_Diode D1 +U 1 1 6A00712E +P 10200 8250 +F 0 "D1" H 10200 8350 50 0000 C CNN +F 1 "eSim_Diode" H 10200 8150 50 0000 C CNN +F 2 "" H 10200 8250 60 0000 C CNN +F 3 "" H 10200 8250 60 0000 C CNN + 1 10200 8250 + 0 1 1 0 +$EndComp +Wire Wire Line + 10250 7950 10250 8100 +Wire Wire Line + 10250 8100 10200 8100 +Wire Wire Line + 10200 8400 10200 9800 +Connection ~ 10200 9800 +$Comp +L resistor R3 +U 1 1 6A007630 +P 7400 7200 +F 0 "R3" H 7450 7330 50 0000 C CNN +F 1 "100k" H 7450 7150 50 0000 C CNN +F 2 "" H 7450 7180 30 0000 C CNN +F 3 "" V 7450 7250 30 0000 C CNN + 1 7400 7200 + 0 1 1 0 +$EndComp +Wire Wire Line + 8050 6750 8350 6750 +Connection ~ 8350 6750 +Wire Wire Line + 7750 6750 7450 6750 +Wire Wire Line + 7450 6750 7450 7100 +Wire Wire Line + 7450 7400 7450 7750 +Connection ~ 7450 7750 +Wire Wire Line + 2550 8800 2350 8800 +Wire Wire Line + 2350 8800 2350 9800 +Connection ~ 2650 9800 +Wire Wire Line + 3950 8800 3950 9050 +Wire Wire Line + 3950 9050 4000 9050 +Wire Wire Line + 4000 9050 4000 9800 +Connection ~ 4000 9800 +$Comp +L mosfet_n M19 +U 1 1 6A009369 +P 13050 8500 +F 0 "M19" H 13050 8350 50 0000 R CNN +F 1 "mosfet_n" H 13150 8450 50 0000 R CNN +F 2 "" H 13350 8200 29 0000 C CNN +F 3 "" H 13150 8300 60 0000 C CNN + 1 13050 8500 + -1 0 0 -1 +$EndComp +$Comp +L mosfet_p M18 +U 1 1 6A00936F +P 12850 7300 +F 0 "M18" H 12800 7350 50 0000 R CNN +F 1 "mosfet_p" H 12900 7450 50 0000 R CNN +F 2 "" H 13100 7400 29 0000 C CNN +F 3 "" H 12900 7300 60 0000 C CNN + 1 12850 7300 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_p M22 +U 1 1 6A009375 +P 13950 7300 +F 0 "M22" H 13900 7350 50 0000 R CNN +F 1 "mosfet_p" H 14000 7450 50 0000 R CNN +F 2 "" H 14200 7400 29 0000 C CNN +F 3 "" H 14000 7300 60 0000 C CNN + 1 13950 7300 + -1 0 0 -1 +$EndComp +$Comp +L mosfet_p M20 +U 1 1 6A00937B +P 13750 5850 +F 0 "M20" H 13700 5900 50 0000 R CNN +F 1 "mosfet_p" H 13800 6000 50 0000 R CNN +F 2 "" H 14000 5950 29 0000 C CNN +F 3 "" H 13800 5850 60 0000 C CNN + 1 13750 5850 + -1 0 0 -1 +$EndComp +$Comp +L mosfet_p M23 +U 1 1 6A009381 +P 14700 5850 +F 0 "M23" H 14650 5900 50 0000 R CNN +F 1 "mosfet_p" H 14750 6000 50 0000 R CNN +F 2 "" H 14950 5950 29 0000 C CNN +F 3 "" H 14750 5850 60 0000 C CNN + 1 14700 5850 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_n M21 +U 1 1 6A009387 +P 13850 8500 +F 0 "M21" H 13850 8350 50 0000 R CNN +F 1 "mosfet_n" H 13950 8450 50 0000 R CNN +F 2 "" H 14150 8200 29 0000 C CNN +F 3 "" H 13950 8300 60 0000 C CNN + 1 13850 8500 + 1 0 0 -1 +$EndComp +$Comp +L resistor R6 +U 1 1 6A00938D +P 12800 9300 +F 0 "R6" H 12850 9430 50 0000 C CNN +F 1 "21.22k" H 12850 9250 50 0000 C CNN +F 2 "" H 12850 9280 30 0000 C CNN +F 3 "" V 12850 9350 30 0000 C CNN + 1 12800 9300 + 0 1 1 0 +$EndComp +$Comp +L resistor R7 +U 1 1 6A009393 +P 14000 9300 +F 0 "R7" H 14050 9430 50 0000 C CNN +F 1 "21.22k" H 14050 9250 50 0000 C CNN +F 2 "" H 14050 9280 30 0000 C CNN +F 3 "" V 14050 9350 30 0000 C CNN + 1 14000 9300 + 0 1 1 0 +$EndComp +Wire Wire Line + 13100 7450 13700 7450 +Wire Wire Line + 13000 7100 13000 6800 +Wire Wire Line + 13000 6800 13800 6800 +Wire Wire Line + 13800 6800 13800 7100 +Wire Wire Line + 12700 7300 12350 7300 +Wire Wire Line + 14100 7300 14250 7300 +Wire Wire Line + 14250 7300 14250 6600 +Wire Wire Line + 14250 6600 12150 6600 +Wire Wire Line + 13400 5150 13400 7450 +Connection ~ 13400 7450 +Wire Wire Line + 13600 6800 13600 6050 +Connection ~ 13600 6800 +Wire Wire Line + 13400 5200 21700 5200 +Wire Wire Line + 13600 5650 13600 5200 +Connection ~ 13600 5200 +Wire Wire Line + 13500 6000 13500 6050 +Wire Wire Line + 13500 6050 13450 6050 +Wire Wire Line + 13450 6050 13450 5550 +Wire Wire Line + 13450 5550 13600 5550 +Connection ~ 13600 5550 +Wire Wire Line + 13900 5850 14550 5850 +Wire Wire Line + 14850 5200 14850 5650 +Wire Wire Line + 14950 6000 14950 6100 +Wire Wire Line + 14950 6100 15150 6100 +Wire Wire Line + 15150 6100 15150 5500 +Wire Wire Line + 15150 5500 14850 5500 +Connection ~ 14850 5500 +Wire Wire Line + 13150 8700 13750 8700 +Wire Wire Line + 12850 8500 12850 7500 +Wire Wire Line + 12850 7500 13000 7500 +Wire Wire Line + 14050 8500 14050 7500 +Wire Wire Line + 14050 7500 13800 7500 +Wire Wire Line + 12850 8150 13400 8150 +Wire Wire Line + 13400 8150 13400 8700 +Connection ~ 13400 8700 +Connection ~ 12850 8150 +Wire Wire Line + 12850 8900 12850 9200 +Wire Wire Line + 14050 8900 14050 9200 +Wire Wire Line + 12850 9500 12850 9850 +Wire Wire Line + 12450 9850 21650 9850 +Wire Wire Line + 14050 9850 14050 9500 +$Comp +L mosfet_p M26 +U 1 1 6A0093C2 +P 16400 5850 +F 0 "M26" H 16350 5900 50 0000 R CNN +F 1 "mosfet_p" H 16450 6000 50 0000 R CNN +F 2 "" H 16650 5950 29 0000 C CNN +F 3 "" H 16450 5850 60 0000 C CNN + 1 16400 5850 + -1 0 0 -1 +$EndComp +$Comp +L mosfet_p M28 +U 1 1 6A0093C8 +P 17350 5850 +F 0 "M28" H 17300 5900 50 0000 R CNN +F 1 "mosfet_p" H 17400 6000 50 0000 R CNN +F 2 "" H 17600 5950 29 0000 C CNN +F 3 "" H 17400 5850 60 0000 C CNN + 1 17350 5850 + 1 0 0 -1 +$EndComp +Wire Wire Line + 16250 5200 16250 5650 +Connection ~ 14850 5200 +Wire Wire Line + 17500 5200 17500 5650 +Connection ~ 16250 5200 +Wire Wire Line + 16250 6050 16250 6200 +Wire Wire Line + 16250 6200 16750 6200 +Wire Wire Line + 16750 6200 16750 5850 +Wire Wire Line + 16750 5850 16550 5850 +Wire Wire Line + 16150 6000 16150 6100 +Wire Wire Line + 16150 6100 16000 6100 +Wire Wire Line + 16000 6100 16000 5550 +Wire Wire Line + 16000 5550 16250 5550 +Connection ~ 16250 5550 +$Comp +L mosfet_n M24 +U 1 1 6A0093DB +P 15050 8500 +F 0 "M24" H 15050 8350 50 0000 R CNN +F 1 "mosfet_n" H 15150 8450 50 0000 R CNN +F 2 "" H 15350 8200 29 0000 C CNN +F 3 "" H 15150 8300 60 0000 C CNN + 1 15050 8500 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_n M25 +U 1 1 6A0093E1 +P 16100 8500 +F 0 "M25" H 16100 8350 50 0000 R CNN +F 1 "mosfet_n" H 16200 8450 50 0000 R CNN +F 2 "" H 16400 8200 29 0000 C CNN +F 3 "" H 16200 8300 60 0000 C CNN + 1 16100 8500 + -1 0 0 -1 +$EndComp +Wire Wire Line + 14950 8700 14950 9000 +Wire Wire Line + 14950 9000 14650 9000 +Wire Wire Line + 14650 9000 14650 7800 +Wire Wire Line + 14650 8150 14050 8150 +Connection ~ 14050 8150 +Connection ~ 14650 8150 +Wire Wire Line + 14850 6050 14850 7450 +Wire Wire Line + 14850 7450 15250 7450 +Wire Wire Line + 15250 7450 15250 8500 +Wire Wire Line + 15900 8500 15900 8000 +Wire Wire Line + 15900 8000 15250 8000 +Connection ~ 15250 8000 +Wire Wire Line + 16200 8700 16800 8700 +Wire Wire Line + 16500 8700 16500 8250 +Wire Wire Line + 16500 8250 15900 8250 +Connection ~ 15900 8250 +Connection ~ 16500 8700 +Wire Wire Line + 15250 9850 15250 8900 +Connection ~ 14050 9850 +Wire Wire Line + 15900 9850 15900 8900 +Connection ~ 15250 9850 +Wire Wire Line + 15800 8850 15800 9850 +Connection ~ 15800 9850 +Wire Wire Line + 15350 8850 15350 9850 +Connection ~ 15350 9850 +$Comp +L mosfet_n M27 +U 1 1 6A009400 +P 16900 8500 +F 0 "M27" H 16900 8350 50 0000 R CNN +F 1 "mosfet_n" H 17000 8450 50 0000 R CNN +F 2 "" H 17200 8200 29 0000 C CNN +F 3 "" H 17000 8300 60 0000 C CNN + 1 16900 8500 + 1 0 0 -1 +$EndComp +Wire Wire Line + 17100 9850 17100 8900 +Connection ~ 15900 9850 +Wire Wire Line + 17200 9850 17200 8850 +Connection ~ 17100 9850 +$Comp +L mosfet_n M29 +U 1 1 6A00940A +P 18050 8500 +F 0 "M29" H 18050 8350 50 0000 R CNN +F 1 "mosfet_n" H 18150 8450 50 0000 R CNN +F 2 "" H 18350 8200 29 0000 C CNN +F 3 "" H 18150 8300 60 0000 C CNN + 1 18050 8500 + -1 0 0 -1 +$EndComp +Wire Wire Line + 17100 8500 17100 5850 +Wire Wire Line + 17100 5850 17200 5850 +Wire Wire Line + 14650 7800 18250 7800 +Wire Wire Line + 17850 8500 17850 7800 +Connection ~ 17850 7800 +Wire Wire Line + 17850 9850 17850 8900 +Connection ~ 17200 9850 +Wire Wire Line + 17750 8850 17750 9850 +Connection ~ 17750 9850 +$Comp +L mosfet_n M30 +U 1 1 6A009419 +P 18350 7600 +F 0 "M30" H 18350 7450 50 0000 R CNN +F 1 "mosfet_n" H 18450 7550 50 0000 R CNN +F 2 "" H 18650 7300 29 0000 C CNN +F 3 "" H 18450 7400 60 0000 C CNN + 1 18350 7600 + 1 0 0 -1 +$EndComp +$Comp +L mosfet_n M31 +U 1 1 6A00941F +P 19250 7600 +F 0 "M31" H 19250 7450 50 0000 R CNN +F 1 "mosfet_n" H 19350 7550 50 0000 R CNN +F 2 "" H 19550 7300 29 0000 C CNN +F 3 "" H 19350 7400 60 0000 C CNN + 1 19250 7600 + -1 0 0 -1 +$EndComp +Wire Wire Line + 18650 7950 18650 8000 +Wire Wire Line + 18650 8000 18950 8000 +Wire Wire Line + 18950 8000 18950 7950 +Wire Wire Line + 18550 8000 18550 9350 +$Comp +L resistor R9 +U 1 1 6A009429 +P 18500 9450 +F 0 "R9" H 18550 9580 50 0000 C CNN +F 1 "120" H 18550 9400 50 0000 C CNN +F 2 "" H 18550 9430 30 0000 C CNN +F 3 "" V 18550 9500 30 0000 C CNN + 1 18500 9450 + 0 1 1 0 +$EndComp +Wire Wire Line + 18550 9850 18550 9650 +Connection ~ 17850 9850 +Wire Wire Line + 19050 8000 19050 9300 +$Comp +L resistor R10 +U 1 1 6A009432 +P 19000 9400 +F 0 "R10" H 19050 9530 50 0000 C CNN +F 1 "120" H 19050 9350 50 0000 C CNN +F 2 "" H 19050 9380 30 0000 C CNN +F 3 "" V 19050 9450 30 0000 C CNN + 1 19000 9400 + 0 1 1 0 +$EndComp +Wire Wire Line + 19050 9850 19050 9600 +Connection ~ 18550 9850 +Wire Wire Line + 18150 8700 18550 8700 +Connection ~ 18550 8700 +Wire Wire Line + 18800 8000 18800 9850 +Connection ~ 18800 9850 +Connection ~ 18800 8000 +Wire Wire Line + 18550 7600 18550 6150 +Wire Wire Line + 17600 6000 17900 6000 +Wire Wire Line + 17900 6000 17900 5400 +Wire Wire Line + 17900 5400 17500 5400 +Connection ~ 17500 5400 +Wire Wire Line + 17500 6050 17500 6150 +Wire Wire Line + 17500 6150 18550 6150 +$Comp +L mosfet_p M32 +U 1 1 6A009446 +P 19350 5800 +F 0 "M32" H 19300 5850 50 0000 R CNN +F 1 "mosfet_p" H 19400 5950 50 0000 R CNN +F 2 "" H 19600 5900 29 0000 C CNN +F 3 "" H 19400 5800 60 0000 C CNN + 1 19350 5800 + -1 0 0 -1 +$EndComp +$Comp +L mosfet_p M33 +U 1 1 6A00944C +P 20250 5800 +F 0 "M33" H 20200 5850 50 0000 R CNN +F 1 "mosfet_p" H 20300 5950 50 0000 R CNN +F 2 "" H 20500 5900 29 0000 C CNN +F 3 "" H 20300 5800 60 0000 C CNN + 1 20250 5800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 19200 5200 19200 5600 +Connection ~ 17500 5200 +Wire Wire Line + 19100 5950 19100 6000 +Wire Wire Line + 19100 6000 18950 6000 +Wire Wire Line + 18950 6000 18950 5450 +Wire Wire Line + 18950 5450 19200 5450 +Connection ~ 19200 5450 +Wire Wire Line + 19500 5800 20100 5800 +Wire Wire Line + 20400 5200 20400 5600 +Connection ~ 19200 5200 +Wire Wire Line + 20500 5950 20500 6050 +Wire Wire Line + 20500 6050 20850 6050 +Wire Wire Line + 20850 6050 20850 5400 +Wire Wire Line + 20850 5400 20400 5400 +Connection ~ 20400 5400 +Wire Wire Line + 19200 6000 19200 7600 +Wire Wire Line + 19200 7600 19050 7600 +Wire Wire Line + 19200 6200 19750 6200 +Wire Wire Line + 19750 6200 19750 5800 +Connection ~ 19750 5800 +Connection ~ 19200 6200 +Wire Wire Line + 19200 6400 14300 6400 +Wire Wire Line + 14300 6400 14300 5850 +Connection ~ 14300 5850 +Connection ~ 19200 6400 +Wire Wire Line + 18550 7050 21700 7050 +Connection ~ 18550 7050 +$Comp +L mosfet_n M34 +U 1 1 6A00946D +P 20250 7600 +F 0 "M34" H 20250 7450 50 0000 R CNN +F 1 "mosfet_n" H 20350 7550 50 0000 R CNN +F 2 "" H 20550 7300 29 0000 C CNN +F 3 "" H 20350 7400 60 0000 C CNN + 1 20250 7600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 19350 7800 20150 7800 +Wire Wire Line + 20450 7600 20450 6000 +Wire Wire Line + 20450 6000 20400 6000 +Wire Wire Line + 19800 7800 19800 7150 +Wire Wire Line + 19800 7150 20450 7150 +Connection ~ 20450 7150 +Connection ~ 19800 7800 +Wire Wire Line + 20550 9850 20550 7950 +Connection ~ 19050 9850 +$Comp +L eSim_Diode D2 +U 1 1 6A00947C +P 20400 8300 +F 0 "D2" H 20400 8400 50 0000 C CNN +F 1 "eSim_Diode" H 20400 8200 50 0000 C CNN +F 2 "" H 20400 8300 60 0000 C CNN +F 3 "" H 20400 8300 60 0000 C CNN + 1 20400 8300 + 0 1 1 0 +$EndComp +Wire Wire Line + 20450 8000 20450 8150 +Wire Wire Line + 20450 8150 20400 8150 +Wire Wire Line + 20400 8450 20400 9850 +Connection ~ 20400 9850 +$Comp +L resistor R8 +U 1 1 6A009486 +P 17600 7250 +F 0 "R8" H 17650 7380 50 0000 C CNN +F 1 "100k" H 17650 7200 50 0000 C CNN +F 2 "" H 17650 7230 30 0000 C CNN +F 3 "" V 17650 7300 30 0000 C CNN + 1 17600 7250 + 0 1 1 0 +$EndComp +Wire Wire Line + 18250 6800 18550 6800 +Connection ~ 18550 6800 +Wire Wire Line + 17950 6800 17650 6800 +Wire Wire Line + 17650 6800 17650 7150 +Wire Wire Line + 17650 7450 17650 7800 +Connection ~ 17650 7800 +Wire Wire Line + 12750 8850 12550 8850 +Wire Wire Line + 12550 8850 12550 9850 +Connection ~ 12850 9850 +Wire Wire Line + 14150 8850 14150 9100 +Wire Wire Line + 14150 9100 14200 9100 +Wire Wire Line + 14200 9100 14200 9850 +Connection ~ 14200 9850 +Connection ~ 13400 5200 +Connection ~ 10200 5150 +Connection ~ 20400 5200 +Wire Wire Line + 12450 9800 12450 9850 +Connection ~ 12550 9850 +Connection ~ 10350 9800 +Connection ~ 20550 9850 +$Comp +L PORT U1 +U 1 1 6A00A97D +P 11750 7000 +F 0 "U1" H 11800 7100 30 0000 C CNN +F 1 "PORT" H 11750 7000 30 0000 C CNN +F 2 "" H 11750 7000 60 0000 C CNN +F 3 "" H 11750 7000 60 0000 C CNN + 1 11750 7000 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 2 1 6A00AD44 +P 1900 7250 +F 0 "U1" H 1950 7350 30 0000 C CNN +F 1 "PORT" H 1900 7250 30 0000 C CNN +F 2 "" H 1900 7250 60 0000 C CNN +F 3 "" H 1900 7250 60 0000 C CNN + 2 1900 7250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 6A00ADD1 +P 1700 6550 +F 0 "U1" H 1750 6650 30 0000 C CNN +F 1 "PORT" H 1700 6550 30 0000 C CNN +F 2 "" H 1700 6550 60 0000 C CNN +F 3 "" H 1700 6550 60 0000 C CNN + 3 1700 6550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 6A00AE72 +P 21900 9850 +F 0 "U1" H 21950 9950 30 0000 C CNN +F 1 "PORT" H 21900 9850 30 0000 C CNN +F 2 "" H 21900 9850 60 0000 C CNN +F 3 "" H 21900 9850 60 0000 C CNN + 4 21900 9850 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 6 1 6A00AF5D +P 12100 7300 +F 0 "U1" H 12150 7400 30 0000 C CNN +F 1 "PORT" H 12100 7300 30 0000 C CNN +F 2 "" H 12100 7300 60 0000 C CNN +F 3 "" H 12100 7300 60 0000 C CNN + 6 12100 7300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 6A00B002 +P 11900 6600 +F 0 "U1" H 11950 6700 30 0000 C CNN +F 1 "PORT" H 11900 6600 30 0000 C CNN +F 2 "" H 11900 6600 60 0000 C CNN +F 3 "" H 11900 6600 60 0000 C CNN + 5 11900 6600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 6A00B0A1 +P 21950 7050 +F 0 "U1" H 22000 7150 30 0000 C CNN +F 1 "PORT" H 21950 7050 30 0000 C CNN +F 2 "" H 21950 7050 60 0000 C CNN +F 3 "" H 21950 7050 60 0000 C CNN + 7 21950 7050 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 6A00B150 +P 21950 5200 +F 0 "U1" H 22000 5300 30 0000 C CNN +F 1 "PORT" H 21950 5200 30 0000 C CNN +F 2 "" H 21950 5200 60 0000 C CNN +F 3 "" H 21950 5200 60 0000 C CNN + 8 21950 5200 + -1 0 0 1 +$EndComp +$Comp +L capacitor C2 +U 1 1 6A01A3C4 +P 18100 6800 +F 0 "C2" H 18125 6900 50 0000 L CNN +F 1 "3.56pf" H 18125 6700 50 0000 L CNN +F 2 "" H 18138 6650 30 0000 C CNN +F 3 "" H 18100 6800 60 0000 C CNN + 1 18100 6800 + 0 1 1 0 +$EndComp +$Comp +L capacitor C1 +U 1 1 6A01AC24 +P 7900 6750 +F 0 "C1" H 7925 6850 50 0000 L CNN +F 1 "3.56pf" H 7925 6650 50 0000 L CNN +F 2 "" H 7938 6600 30 0000 C CNN +F 3 "" H 7900 6750 60 0000 C CNN + 1 7900 6750 + 0 1 1 0 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/TLC2264/TLC2264.sub b/library/SubcircuitLibrary/TLC2264/TLC2264.sub new file mode 100644 index 000000000..623a01c79 --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/TLC2264.sub @@ -0,0 +1,57 @@ +* Subcircuit TLC2264 +.subckt TLC2264 net-_c1-pad1_ net-_m1-pad2_ net-_m5-pad2_ net-_d1-pad2_ net-_m22-pad2_ net-_m18-pad2_ net-_c2-pad1_ net-_m1-pad4_ +* c:\fossee\esim\library\subcircuitlibrary\tlc2264\tlc2264.cir +.include NMOS-180nm.lib +.include D.lib +.include PMOS-180nm.lib +m2 net-_m1-pad3_ net-_m1-pad3_ net-_m2-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m5 net-_m1-pad1_ net-_m5-pad2_ net-_m12-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m3 net-_m1-pad4_ net-_m14-pad1_ net-_m1-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m6 net-_m1-pad4_ net-_m14-pad1_ net-_m10-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m4 net-_m12-pad1_ net-_m1-pad3_ net-_m4-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +r1 net-_m2-pad3_ net-_d1-pad2_ 21.22k +r2 net-_m4-pad3_ net-_d1-pad2_ 21.22k +m9 net-_m1-pad4_ net-_m9-pad2_ net-_m9-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m11 net-_m1-pad4_ net-_m10-pad1_ net-_c1-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m7 net-_m10-pad2_ net-_m12-pad1_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m8 net-_m10-pad2_ net-_m10-pad2_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m10 net-_m10-pad1_ net-_m10-pad2_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m12 net-_m12-pad1_ net-_m12-pad2_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m13 net-_c1-pad1_ net-_m12-pad1_ net-_m12-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m14 net-_m14-pad1_ net-_m14-pad2_ net-_m14-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +r4 net-_m12-pad2_ net-_d1-pad2_ 120 +r5 net-_m14-pad3_ net-_d1-pad2_ 120 +m15 net-_m1-pad4_ net-_m14-pad1_ net-_m14-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m16 net-_m1-pad4_ net-_m14-pad1_ net-_m14-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m17 net-_m14-pad2_ net-_m14-pad2_ net-_d1-pad1_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +r3 net-_c1-pad2_ net-_m12-pad1_ 100k +m19 net-_m18-pad3_ net-_m18-pad3_ net-_m19-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m18 net-_m18-pad1_ net-_m18-pad2_ net-_m18-pad3_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m22 net-_m18-pad1_ net-_m22-pad2_ net-_m21-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m20 net-_m1-pad4_ net-_m20-pad2_ net-_m18-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m23 net-_m1-pad4_ net-_m20-pad2_ net-_m23-pad3_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m21 net-_m21-pad1_ net-_m18-pad3_ net-_m21-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +r6 net-_m19-pad3_ net-_d1-pad2_ 21.22k +r7 net-_m21-pad3_ net-_d1-pad2_ 21.22k +m26 net-_m1-pad4_ net-_m26-pad2_ net-_m26-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m28 net-_m1-pad4_ net-_m27-pad1_ net-_c2-pad1_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m24 net-_m23-pad3_ net-_m21-pad1_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m25 net-_m23-pad3_ net-_m23-pad3_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m27 net-_m27-pad1_ net-_m23-pad3_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m29 net-_m21-pad1_ net-_m29-pad2_ net-_d1-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m30 net-_c2-pad1_ net-_m21-pad1_ net-_m29-pad2_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +m31 net-_m20-pad2_ net-_m31-pad2_ net-_m31-pad3_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +r9 net-_m29-pad2_ net-_d1-pad2_ 120 +r10 net-_m31-pad3_ net-_d1-pad2_ 120 +m32 net-_m1-pad4_ net-_m20-pad2_ net-_m20-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m33 net-_m1-pad4_ net-_m20-pad2_ net-_m31-pad2_ net-_m1-pad4_ CMOSP W=100u L=100u M=1 +m34 net-_m31-pad2_ net-_m31-pad2_ net-_d2-pad1_ net-_d1-pad2_ CMOSN W=100u L=100u M=1 +d2 net-_d2-pad1_ net-_d1-pad2_ 1N4148 +r8 net-_c2-pad2_ net-_m21-pad1_ 100k +c2 net-_c2-pad1_ net-_c2-pad2_ 3.56pf +c1 net-_c1-pad1_ net-_c1-pad2_ 3.56pf +* Control Statements + +.ends TLC2264 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TLC2264/TLC2264_Previous_Values.xml b/library/SubcircuitLibrary/TLC2264/TLC2264_Previous_Values.xml new file mode 100644 index 000000000..5cd39c756 --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/TLC2264_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/TLC2264/analysis b/library/SubcircuitLibrary/TLC2264/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/TLC2264/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.cir b/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.cir new file mode 100644 index 000000000..2f0065092 --- /dev/null +++ b/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.cir @@ -0,0 +1,30 @@ +.title KiCad schematic +U17 Net-_U17-Pad1_ Net-_U1-Pad10_ unconnected-_U17-Pad3_ Net-_U10-Pad4_ Net-_U17-Pad5_ unconnected-_U17-Pad6_ d_dlatch +U24 Net-_U17-Pad5_ Net-_U20-Pad2_ Net-_U1-Pad12_ d_and +U1 unconnected-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ unconnected-_U1-Pad16_ PORT +U18 Net-_U10-Pad1_ Net-_U1-Pad10_ unconnected-_U18-Pad3_ Net-_U10-Pad4_ Net-_U18-Pad5_ unconnected-_U18-Pad6_ d_dlatch +U22 Net-_U18-Pad5_ Net-_U20-Pad2_ Net-_U1-Pad13_ d_and +U21 Net-_U19-Pad5_ Net-_U20-Pad2_ Net-_U1-Pad14_ d_and +U19 Net-_U10-Pad5_ Net-_U1-Pad10_ unconnected-_U19-Pad3_ Net-_U10-Pad4_ Net-_U19-Pad5_ unconnected-_U19-Pad6_ d_dlatch +U11 Net-_U10-Pad6_ Net-_U1-Pad9_ d_inverter +U15 Net-_U15-Pad1_ Net-_U1-Pad10_ unconnected-_U15-Pad3_ Net-_U10-Pad4_ Net-_U15-Pad5_ unconnected-_U15-Pad6_ d_dlatch +U16 Net-_U16-Pad1_ Net-_U1-Pad10_ unconnected-_U16-Pad3_ Net-_U10-Pad4_ Net-_U16-Pad5_ unconnected-_U16-Pad6_ d_dlatch +U27 Net-_U15-Pad5_ Net-_U20-Pad2_ Net-_U1-Pad6_ d_and +U28 Net-_U16-Pad5_ Net-_U20-Pad2_ Net-_U1-Pad11_ d_and +U7 Net-_U15-Pad1_ Net-_U1-Pad15_ unconnected-_U7-Pad3_ Net-_U10-Pad4_ Net-_U16-Pad1_ unconnected-_U7-Pad6_ d_dff +U6 Net-_U14-Pad1_ Net-_U1-Pad15_ unconnected-_U6-Pad3_ Net-_U10-Pad4_ Net-_U15-Pad1_ unconnected-_U6-Pad6_ d_dff +U8 Net-_U16-Pad1_ Net-_U1-Pad15_ unconnected-_U8-Pad3_ Net-_U10-Pad4_ Net-_U17-Pad1_ unconnected-_U8-Pad6_ d_dff +U9 Net-_U17-Pad1_ Net-_U1-Pad15_ unconnected-_U9-Pad3_ Net-_U10-Pad4_ Net-_U10-Pad1_ unconnected-_U9-Pad6_ d_dff +U10 Net-_U10-Pad1_ Net-_U1-Pad15_ unconnected-_U10-Pad3_ Net-_U10-Pad4_ Net-_U10-Pad5_ Net-_U10-Pad6_ d_dff +U2 Net-_U1-Pad7_ Net-_U10-Pad4_ d_inverter +U26 Net-_U14-Pad5_ Net-_U20-Pad2_ Net-_U1-Pad5_ d_and +U25 Net-_U13-Pad5_ Net-_U20-Pad2_ Net-_U1-Pad4_ d_and +U23 Net-_U12-Pad5_ Net-_U20-Pad2_ Net-_U1-Pad3_ d_and +U20 Net-_U1-Pad8_ Net-_U20-Pad2_ d_inverter +U14 Net-_U14-Pad1_ Net-_U1-Pad10_ unconnected-_U14-Pad3_ Net-_U10-Pad4_ Net-_U14-Pad5_ unconnected-_U14-Pad6_ d_dlatch +U13 Net-_U13-Pad1_ Net-_U1-Pad10_ unconnected-_U13-Pad3_ Net-_U10-Pad4_ Net-_U13-Pad5_ unconnected-_U13-Pad6_ d_dlatch +U12 Net-_U12-Pad1_ Net-_U1-Pad10_ unconnected-_U12-Pad3_ Net-_U10-Pad4_ Net-_U12-Pad5_ unconnected-_U12-Pad6_ d_dlatch +U3 Net-_U1-Pad2_ Net-_U1-Pad15_ unconnected-_U3-Pad3_ Net-_U10-Pad4_ Net-_U12-Pad1_ unconnected-_U3-Pad6_ d_dff +U4 Net-_U12-Pad1_ Net-_U1-Pad15_ unconnected-_U4-Pad3_ Net-_U10-Pad4_ Net-_U13-Pad1_ unconnected-_U4-Pad6_ d_dff +U5 Net-_U13-Pad1_ Net-_U1-Pad15_ unconnected-_U5-Pad3_ Net-_U10-Pad4_ Net-_U14-Pad1_ unconnected-_U5-Pad6_ d_dff +.end diff --git a/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.cir.out b/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.cir.out new file mode 100644 index 000000000..c71714717 --- /dev/null +++ b/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.cir.out @@ -0,0 +1,120 @@ +.title kicad schematic + +* u17 net-_u17-pad1_ net-_u1-pad10_ unconnected-_u17-pad3_ net-_u10-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_dlatch +* u24 net-_u17-pad5_ net-_u20-pad2_ net-_u1-pad12_ d_and +* u1 unconnected-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ unconnected-_u1-pad16_ port +* u18 net-_u10-pad1_ net-_u1-pad10_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ d_dlatch +* u22 net-_u18-pad5_ net-_u20-pad2_ net-_u1-pad13_ d_and +* u21 net-_u19-pad5_ net-_u20-pad2_ net-_u1-pad14_ d_and +* u19 net-_u10-pad5_ net-_u1-pad10_ unconnected-_u19-pad3_ net-_u10-pad4_ net-_u19-pad5_ unconnected-_u19-pad6_ d_dlatch +* u11 net-_u10-pad6_ net-_u1-pad9_ d_inverter +* u15 net-_u15-pad1_ net-_u1-pad10_ unconnected-_u15-pad3_ net-_u10-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ d_dlatch +* u16 net-_u16-pad1_ net-_u1-pad10_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ d_dlatch +* u27 net-_u15-pad5_ net-_u20-pad2_ net-_u1-pad6_ d_and +* u28 net-_u16-pad5_ net-_u20-pad2_ net-_u1-pad11_ d_and +* u7 net-_u15-pad1_ net-_u1-pad15_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u16-pad1_ unconnected-_u7-pad6_ d_dff +* u6 net-_u14-pad1_ net-_u1-pad15_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u15-pad1_ unconnected-_u6-pad6_ d_dff +* u8 net-_u16-pad1_ net-_u1-pad15_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u17-pad1_ unconnected-_u8-pad6_ d_dff +* u9 net-_u17-pad1_ net-_u1-pad15_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ d_dff +* u10 net-_u10-pad1_ net-_u1-pad15_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ net-_u10-pad6_ d_dff +* u2 net-_u1-pad7_ net-_u10-pad4_ d_inverter +* u26 net-_u14-pad5_ net-_u20-pad2_ net-_u1-pad5_ d_and +* u25 net-_u13-pad5_ net-_u20-pad2_ net-_u1-pad4_ d_and +* u23 net-_u12-pad5_ net-_u20-pad2_ net-_u1-pad3_ d_and +* u20 net-_u1-pad8_ net-_u20-pad2_ d_inverter +* u14 net-_u14-pad1_ net-_u1-pad10_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_dlatch +* u13 net-_u13-pad1_ net-_u1-pad10_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ d_dlatch +* u12 net-_u12-pad1_ net-_u1-pad10_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ d_dlatch +* u3 net-_u1-pad2_ net-_u1-pad15_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u12-pad1_ unconnected-_u3-pad6_ d_dff +* u4 net-_u12-pad1_ net-_u1-pad15_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u13-pad1_ unconnected-_u4-pad6_ d_dff +* u5 net-_u13-pad1_ net-_u1-pad15_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u14-pad1_ unconnected-_u5-pad6_ d_dff +a1 net-_u17-pad1_ net-_u1-pad10_ unconnected-_u17-pad3_ net-_u10-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a2 [net-_u17-pad5_ net-_u20-pad2_ ] net-_u1-pad12_ u24 +a3 net-_u10-pad1_ net-_u1-pad10_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ u18 +a4 [net-_u18-pad5_ net-_u20-pad2_ ] net-_u1-pad13_ u22 +a5 [net-_u19-pad5_ net-_u20-pad2_ ] net-_u1-pad14_ u21 +a6 net-_u10-pad5_ net-_u1-pad10_ unconnected-_u19-pad3_ net-_u10-pad4_ net-_u19-pad5_ unconnected-_u19-pad6_ u19 +a7 net-_u10-pad6_ net-_u1-pad9_ u11 +a8 net-_u15-pad1_ net-_u1-pad10_ unconnected-_u15-pad3_ net-_u10-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ u15 +a9 net-_u16-pad1_ net-_u1-pad10_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ u16 +a10 [net-_u15-pad5_ net-_u20-pad2_ ] net-_u1-pad6_ u27 +a11 [net-_u16-pad5_ net-_u20-pad2_ ] net-_u1-pad11_ u28 +a12 net-_u15-pad1_ net-_u1-pad15_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u16-pad1_ unconnected-_u7-pad6_ u7 +a13 net-_u14-pad1_ net-_u1-pad15_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u15-pad1_ unconnected-_u6-pad6_ u6 +a14 net-_u16-pad1_ net-_u1-pad15_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u17-pad1_ unconnected-_u8-pad6_ u8 +a15 net-_u17-pad1_ net-_u1-pad15_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ u9 +a16 net-_u10-pad1_ net-_u1-pad15_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ net-_u10-pad6_ u10 +a17 net-_u1-pad7_ net-_u10-pad4_ u2 +a18 [net-_u14-pad5_ net-_u20-pad2_ ] net-_u1-pad5_ u26 +a19 [net-_u13-pad5_ net-_u20-pad2_ ] net-_u1-pad4_ u25 +a20 [net-_u12-pad5_ net-_u20-pad2_ ] net-_u1-pad3_ u23 +a21 net-_u1-pad8_ net-_u20-pad2_ u20 +a22 net-_u14-pad1_ net-_u1-pad10_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a23 net-_u13-pad1_ net-_u1-pad10_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ u13 +a24 net-_u12-pad1_ net-_u1-pad10_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ u12 +a25 net-_u1-pad2_ net-_u1-pad15_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u12-pad1_ unconnected-_u3-pad6_ u3 +a26 net-_u12-pad1_ net-_u1-pad15_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u13-pad1_ unconnected-_u4-pad6_ u4 +a27 net-_u13-pad1_ net-_u1-pad15_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u14-pad1_ unconnected-_u5-pad6_ u5 +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u17 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u18 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u19 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u15 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u16 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u7 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u6 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u8 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u9 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u10 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u14 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u13 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u12 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u3 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u4 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u5 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.kicad_sch b/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.kicad_sch new file mode 100644 index 000000000..7d1d58afe --- /dev/null +++ b/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.kicad_sch @@ -0,0 +1,14 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 1b36d5a9-b188-48fa-977c-7c2f017e7341) + + (paper "A4") + + (lib_symbols + ) + + + (sheet_instances + (path "/" (page "1")) + ) +) diff --git a/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.sub b/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.sub new file mode 100644 index 000000000..8c162e81d --- /dev/null +++ b/library/SubcircuitLibrary/TPIC6C595/TPIC6C595.sub @@ -0,0 +1,114 @@ +* Subcircuit TPIC6C595 +.subckt TPIC6C595 unconnected-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ unconnected-_u1-pad16_ +.title kicad schematic +* u17 net-_u17-pad1_ net-_u1-pad10_ unconnected-_u17-pad3_ net-_u10-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ d_dlatch +* u24 net-_u17-pad5_ net-_u20-pad2_ net-_u1-pad12_ d_and +* u18 net-_u10-pad1_ net-_u1-pad10_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ d_dlatch +* u22 net-_u18-pad5_ net-_u20-pad2_ net-_u1-pad13_ d_and +* u21 net-_u19-pad5_ net-_u20-pad2_ net-_u1-pad14_ d_and +* u19 net-_u10-pad5_ net-_u1-pad10_ unconnected-_u19-pad3_ net-_u10-pad4_ net-_u19-pad5_ unconnected-_u19-pad6_ d_dlatch +* u11 net-_u10-pad6_ net-_u1-pad9_ d_inverter +* u15 net-_u15-pad1_ net-_u1-pad10_ unconnected-_u15-pad3_ net-_u10-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ d_dlatch +* u16 net-_u16-pad1_ net-_u1-pad10_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ d_dlatch +* u27 net-_u15-pad5_ net-_u20-pad2_ net-_u1-pad6_ d_and +* u28 net-_u16-pad5_ net-_u20-pad2_ net-_u1-pad11_ d_and +* u7 net-_u15-pad1_ net-_u1-pad15_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u16-pad1_ unconnected-_u7-pad6_ d_dff +* u6 net-_u14-pad1_ net-_u1-pad15_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u15-pad1_ unconnected-_u6-pad6_ d_dff +* u8 net-_u16-pad1_ net-_u1-pad15_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u17-pad1_ unconnected-_u8-pad6_ d_dff +* u9 net-_u17-pad1_ net-_u1-pad15_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ d_dff +* u10 net-_u10-pad1_ net-_u1-pad15_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ net-_u10-pad6_ d_dff +* u2 net-_u1-pad7_ net-_u10-pad4_ d_inverter +* u26 net-_u14-pad5_ net-_u20-pad2_ net-_u1-pad5_ d_and +* u25 net-_u13-pad5_ net-_u20-pad2_ net-_u1-pad4_ d_and +* u23 net-_u12-pad5_ net-_u20-pad2_ net-_u1-pad3_ d_and +* u20 net-_u1-pad8_ net-_u20-pad2_ d_inverter +* u14 net-_u14-pad1_ net-_u1-pad10_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ d_dlatch +* u13 net-_u13-pad1_ net-_u1-pad10_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ d_dlatch +* u12 net-_u12-pad1_ net-_u1-pad10_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ d_dlatch +* u3 net-_u1-pad2_ net-_u1-pad15_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u12-pad1_ unconnected-_u3-pad6_ d_dff +* u4 net-_u12-pad1_ net-_u1-pad15_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u13-pad1_ unconnected-_u4-pad6_ d_dff +* u5 net-_u13-pad1_ net-_u1-pad15_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u14-pad1_ unconnected-_u5-pad6_ d_dff +a1 net-_u17-pad1_ net-_u1-pad10_ unconnected-_u17-pad3_ net-_u10-pad4_ net-_u17-pad5_ unconnected-_u17-pad6_ u17 +a2 [net-_u17-pad5_ net-_u20-pad2_ ] net-_u1-pad12_ u24 +a3 net-_u10-pad1_ net-_u1-pad10_ unconnected-_u18-pad3_ net-_u10-pad4_ net-_u18-pad5_ unconnected-_u18-pad6_ u18 +a4 [net-_u18-pad5_ net-_u20-pad2_ ] net-_u1-pad13_ u22 +a5 [net-_u19-pad5_ net-_u20-pad2_ ] net-_u1-pad14_ u21 +a6 net-_u10-pad5_ net-_u1-pad10_ unconnected-_u19-pad3_ net-_u10-pad4_ net-_u19-pad5_ unconnected-_u19-pad6_ u19 +a7 net-_u10-pad6_ net-_u1-pad9_ u11 +a8 net-_u15-pad1_ net-_u1-pad10_ unconnected-_u15-pad3_ net-_u10-pad4_ net-_u15-pad5_ unconnected-_u15-pad6_ u15 +a9 net-_u16-pad1_ net-_u1-pad10_ unconnected-_u16-pad3_ net-_u10-pad4_ net-_u16-pad5_ unconnected-_u16-pad6_ u16 +a10 [net-_u15-pad5_ net-_u20-pad2_ ] net-_u1-pad6_ u27 +a11 [net-_u16-pad5_ net-_u20-pad2_ ] net-_u1-pad11_ u28 +a12 net-_u15-pad1_ net-_u1-pad15_ unconnected-_u7-pad3_ net-_u10-pad4_ net-_u16-pad1_ unconnected-_u7-pad6_ u7 +a13 net-_u14-pad1_ net-_u1-pad15_ unconnected-_u6-pad3_ net-_u10-pad4_ net-_u15-pad1_ unconnected-_u6-pad6_ u6 +a14 net-_u16-pad1_ net-_u1-pad15_ unconnected-_u8-pad3_ net-_u10-pad4_ net-_u17-pad1_ unconnected-_u8-pad6_ u8 +a15 net-_u17-pad1_ net-_u1-pad15_ unconnected-_u9-pad3_ net-_u10-pad4_ net-_u10-pad1_ unconnected-_u9-pad6_ u9 +a16 net-_u10-pad1_ net-_u1-pad15_ unconnected-_u10-pad3_ net-_u10-pad4_ net-_u10-pad5_ net-_u10-pad6_ u10 +a17 net-_u1-pad7_ net-_u10-pad4_ u2 +a18 [net-_u14-pad5_ net-_u20-pad2_ ] net-_u1-pad5_ u26 +a19 [net-_u13-pad5_ net-_u20-pad2_ ] net-_u1-pad4_ u25 +a20 [net-_u12-pad5_ net-_u20-pad2_ ] net-_u1-pad3_ u23 +a21 net-_u1-pad8_ net-_u20-pad2_ u20 +a22 net-_u14-pad1_ net-_u1-pad10_ unconnected-_u14-pad3_ net-_u10-pad4_ net-_u14-pad5_ unconnected-_u14-pad6_ u14 +a23 net-_u13-pad1_ net-_u1-pad10_ unconnected-_u13-pad3_ net-_u10-pad4_ net-_u13-pad5_ unconnected-_u13-pad6_ u13 +a24 net-_u12-pad1_ net-_u1-pad10_ unconnected-_u12-pad3_ net-_u10-pad4_ net-_u12-pad5_ unconnected-_u12-pad6_ u12 +a25 net-_u1-pad2_ net-_u1-pad15_ unconnected-_u3-pad3_ net-_u10-pad4_ net-_u12-pad1_ unconnected-_u3-pad6_ u3 +a26 net-_u12-pad1_ net-_u1-pad15_ unconnected-_u4-pad3_ net-_u10-pad4_ net-_u13-pad1_ unconnected-_u4-pad6_ u4 +a27 net-_u13-pad1_ net-_u1-pad15_ unconnected-_u5-pad3_ net-_u10-pad4_ net-_u14-pad1_ unconnected-_u5-pad6_ u5 +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u17 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u24 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u18 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u21 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u19 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u15 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u16 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u27 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u28 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u7 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u6 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u8 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u9 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u10 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u2 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u26 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, Ngspice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, Ngspice Name: d_inverter +.model u20 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u14 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u13 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dlatch, Ngspice Name: d_dlatch +.model u12 d_dlatch(data_delay=1.0e-9 enable_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0e-9 ic=0 data_load=1.0e-12 enable_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u3 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u4 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Schematic Name: d_dff, Ngspice Name: d_dff +.model u5 d_dff(clk_delay=1.0e-9 set_delay=1.0e-9 reset_delay=1.0 ic=0 data_load=1.0e-12 clk_load=1.0e-12 set_load=1.0e-12 reset_load=1.0e-12 rise_delay=1.0e-9 fall_delay=1.0e-9 ) +* Control Statements + +.ends TPIC6C595 \ No newline at end of file diff --git a/library/SubcircuitLibrary/TPIC6C595/TPIC6C595_Previous_Values.xml b/library/SubcircuitLibrary/TPIC6C595/TPIC6C595_Previous_Values.xml new file mode 100644 index 000000000..27e2ce6c3 --- /dev/null +++ b/library/SubcircuitLibrary/TPIC6C595/TPIC6C595_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsecd_dlatchd_andd_dlatchd_andd_andd_dlatchd_inverterd_dlatchd_dlatchd_andd_andd_dffd_dffd_dffd_dffd_dffd_inverterd_andd_andd_andd_inverterd_dlatchd_dlatchd_dlatchd_dffd_dffd_dff \ No newline at end of file diff --git a/library/SubcircuitLibrary/TPIC6C595/analysis b/library/SubcircuitLibrary/TPIC6C595/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/TPIC6C595/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/cd4070b_ic/NMOS-180nm.lib b/library/SubcircuitLibrary/cd4070b_ic/NMOS-180nm.lib new file mode 100644 index 000000000..51e9b1196 --- /dev/null +++ b/library/SubcircuitLibrary/cd4070b_ic/NMOS-180nm.lib @@ -0,0 +1,13 @@ +.model CMOSN NMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=2.3549E17 VTH0=0.3823463 K1=0.5810697 ++ K2=4.774618E-3 K3=0.0431669 K3B=1.1498346 W0=1E-7 NLX=1.910552E-7 DVT0W=0 DVT1W=0 DVT2W=0 ++ DVT0=1.2894824 DVT1=0.3622063 DVT2=0.0713729 U0=280.633249 UA=-1.208537E-9 UB=2.158625E-18 ++ UC=5.342807E-11 VSAT=9.366802E4 A0=1.7593146 AGS=0.3939741 B0=-6.413949E-9 B1=-1E-7 KETA=-5.180424E-4 ++ A1=0 A2=1 RDSW=105.5517558 PRWG=0.5 PRWB=-0.1998871 WR=1 WINT=7.904732E-10 LINT=1.571424E-8 XL=0 ++ XW=-1E-8 DWG=1.297221E-9 DWB=1.479041E-9 VOFF=-0.0955434 NFACTOR=2.4358891 CIT=0 CDSC=2.4E-4 CDSCD=0 ++ CDSCB=0 ETA0=3.104851E-3 ETAB=-2.512384E-5 DSUB=0.0167075 PCLM=0.8073191 PDIBLC1=0.1666161 PDIBLC2=3.112892E-3 ++ PDIBLCB=-0.1 DROUT=0.7875618 PSCBE1=8E10 PSCBE2=9.213635E-10 PVAG=3.85243E-3 DELTA=0.01 RSH=6.7 MOBMOD=1 ++ PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 ++ WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 CGDO=7.08E-10 CGSO=7.08E-10 CGBO=1E-12 ++ CJ=9.68858E-4 PB=0.8 MJ=0.3864502 CJSW=2.512138E-10 PBSW=0.809286 MJSW=0.1060414 CJSWG=3.3E-10 PBSWG=0.809286 ++ MJSWG=0.1060414 CF=0 PVTH0=-1.192722E-3 PRDSW=-5 PK2=6.450505E-5 WKETA=-4.27294E-4 LKETA=-0.0104078 ++ PU0=6.3268729 PUA=2.226552E-11 PUB=0 PVSAT=969.1480157 PETA0=1E-4 PKETA=-1.049509E-3) diff --git a/library/SubcircuitLibrary/cd4070b_ic/PMOS-180nm.lib b/library/SubcircuitLibrary/cd4070b_ic/PMOS-180nm.lib new file mode 100644 index 000000000..032b5b95e --- /dev/null +++ b/library/SubcircuitLibrary/cd4070b_ic/PMOS-180nm.lib @@ -0,0 +1,11 @@ +.model CMOSP PMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=4.1589E17 VTH0=-0.3938813 K1=0.5479015 ++ K2=0.0360586 K3=0.0993095 K3B=5.7086622 W0=1E-6 NLX=1.313191E-7 DVT0W=0 DVT1W=0 DVT2W=0 DVT0=0.4911363 ++ DVT1=0.2227356 DVT2=0.1 U0=115.6852975 UA=1.505832E-9 UB=1E-21 UC=-1E-10 VSAT=1.329694E5 A0=1.7590478 ++ AGS=0.3641621 B0=3.427126E-7 B1=1.062928E-6 KETA=0.0134667 A1=0.6859506 A2=0.3506788 RDSW=168.5705677 ++ PRWG=0.5 PRWB=-0.4987371 WR=1 WINT=0 LINT=3.028832E-8 XL=0 XW=-1E-8 DWG=-2.349633E-8 DWB=-7.152486E-9 ++ VOFF=-0.0994037 NFACTOR=1.9424315 CIT=0 CDSC=2.4E-4 CDSCD=0 CDSCB=0 ETA0=0.0608072 ETAB=-0.0426148 ++ DSUB=0.7343015 PCLM=3.2579974 PDIBLC1=7.229527E-6 PDIBLC2=0.025389 PDIBLCB=-1E-3 DROUT=0 PSCBE1=1.454878E10 ++ PSCBE2=4.202027E-9 PVAG=15 DELTA=0.01 RSH=7.8 MOBMOD=1 PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 ++ UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 ++ CGDO=6.32E-10 CGSO=6.32E-10 CGBO=1E-12 CJ=1.172138E-3 PB=0.8421173 MJ=0.4109788 CJSW=2.242609E-10 PBSW=0.8 + MJSW=0.3752089 CJSWG=4.22E-10 PBSWG=0.8 MJSWG=0.3752089 CF=0 PVTH0=1.888482E-3 PRDSW=11.5315407 PK2=1.559399E-3 ++ WKETA=0.0319301 LKETA=2.955547E-3 PU0=-1.1105313 PUA=-4.62102E-11 PUB=1E-21 PVSAT=50 PETA0=1E-4 PKETA=-4.346368E-3) diff --git a/library/SubcircuitLibrary/cd4070b_ic/analysis b/library/SubcircuitLibrary/cd4070b_ic/analysis new file mode 100644 index 000000000..0a6c83b5a --- /dev/null +++ b/library/SubcircuitLibrary/cd4070b_ic/analysis @@ -0,0 +1 @@ +.tran 250e-03 10e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic-cache.lib b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic-cache.lib new file mode 100644 index 000000000..6c512720e --- /dev/null +++ b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic-cache.lib @@ -0,0 +1,100 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_MOS_N +# +DEF eSim_MOS_N M 0 0 Y N 1 F N +F0 "M" 0 -150 50 H V R CNN +F1 "eSim_MOS_N" 100 -50 50 H V R CNN +F2 "" 300 -300 29 H V C CNN +F3 "" 100 -200 60 H V C CNN +ALIAS mosfet_n +DRAW +C 150 -200 111 0 1 10 N +P 2 0 1 10 130 -290 130 -250 N +P 2 0 1 0 130 -270 200 -270 N +P 2 0 1 10 130 -220 130 -180 N +P 2 0 1 0 130 -200 200 -200 N +P 2 0 1 10 130 -150 130 -110 N +P 2 0 1 0 130 -130 200 -130 N +P 2 0 1 0 200 -300 200 -270 N +P 2 0 1 0 200 -130 200 -100 N +P 3 0 1 10 110 -275 110 -125 110 -125 N +P 3 0 1 0 200 -200 300 -200 300 -250 N +P 4 0 1 0 140 -200 180 -215 180 -185 140 -200 F +X D 1 200 0 100 D 50 50 1 1 P +X G 2 -100 -200 210 R 50 50 1 1 P +X S 3 200 -400 100 U 50 50 1 1 P +X B 4 300 -350 98 U 47 47 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_P +# +DEF eSim_MOS_P M 0 0 Y N 1 F N +F0 "M" -50 50 50 H V R CNN +F1 "eSim_MOS_P" 50 150 50 H V R CNN +F2 "" 250 100 29 H V C CNN +F3 "" 50 0 60 H V C CNN +ALIAS mosfet_p +DRAW +C 100 0 111 0 1 10 N +P 2 0 1 0 80 -70 150 -70 N +P 2 0 1 10 80 -50 80 -90 N +P 2 0 1 0 80 0 150 0 N +P 2 0 1 10 80 20 80 -20 N +P 2 0 1 0 80 70 150 70 N +P 2 0 1 10 80 90 80 50 N +P 2 0 1 0 150 -70 150 -100 N +P 2 0 1 0 150 100 150 70 N +P 3 0 1 10 60 75 60 -75 60 -75 N +P 3 0 1 0 150 0 250 0 250 -50 N +P 4 0 1 0 140 0 100 -15 100 15 140 0 F +X D 1 150 200 100 D 50 50 1 1 P +X G 2 -150 0 210 R 50 50 1 1 P +X S 3 150 -200 100 U 50 50 1 1 P +X B 4 250 -150 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.cir b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.cir new file mode 100644 index 000000000..e9054ad73 --- /dev/null +++ b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.cir @@ -0,0 +1,22 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\cd4070b_ic\cd4070b_ic.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/23/25 22:05:51 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +M1 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M3 Net-_M11-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad1_ Net-_M11-Pad1_ eSim_MOS_P +M2 Net-_M2-Pad1_ Net-_M2-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M4 Net-_M11-Pad1_ Net-_M2-Pad2_ Net-_M2-Pad1_ Net-_M11-Pad1_ eSim_MOS_P +M6 Net-_M1-Pad1_ Net-_M2-Pad2_ Net-_M10-Pad2_ Net-_M11-Pad1_ eSim_MOS_P +M5 Net-_M1-Pad1_ Net-_M2-Pad1_ Net-_M10-Pad2_ Net-_M1-Pad3_ eSim_MOS_N +M8 Net-_M11-Pad1_ Net-_M2-Pad1_ Net-_M8-Pad3_ Net-_M11-Pad1_ eSim_MOS_P +M9 Net-_M8-Pad3_ Net-_M1-Pad1_ Net-_M10-Pad2_ Net-_M11-Pad1_ eSim_MOS_P +M7 Net-_M10-Pad2_ Net-_M1-Pad1_ Net-_M2-Pad1_ Net-_M1-Pad3_ eSim_MOS_N +M11 Net-_M11-Pad1_ Net-_M10-Pad2_ Net-_M10-Pad1_ Net-_M11-Pad1_ eSim_MOS_P +M10 Net-_M10-Pad1_ Net-_M10-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +U1 Net-_M2-Pad2_ Net-_M1-Pad2_ Net-_M10-Pad1_ Net-_M10-Pad1_ Net-_M1-Pad2_ Net-_M2-Pad2_ Net-_M1-Pad3_ Net-_M2-Pad2_ Net-_M1-Pad2_ Net-_M10-Pad1_ Net-_M10-Pad1_ Net-_M1-Pad2_ Net-_M2-Pad2_ Net-_M11-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.cir.out b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.cir.out new file mode 100644 index 000000000..d2d1ea10b --- /dev/null +++ b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.cir.out @@ -0,0 +1,25 @@ +* c:\fossee\esim\library\subcircuitlibrary\cd4070b_ic\cd4070b_ic.cir + +.include NMOS-180nm.lib +.include PMOS-180nm.lib +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m3 net-_m11-pad1_ net-_m1-pad2_ net-_m1-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m2 net-_m2-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m4 net-_m11-pad1_ net-_m2-pad2_ net-_m2-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m6 net-_m1-pad1_ net-_m2-pad2_ net-_m10-pad2_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m5 net-_m1-pad1_ net-_m2-pad1_ net-_m10-pad2_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m8 net-_m11-pad1_ net-_m2-pad1_ net-_m8-pad3_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m9 net-_m8-pad3_ net-_m1-pad1_ net-_m10-pad2_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m7 net-_m10-pad2_ net-_m1-pad1_ net-_m2-pad1_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m11 net-_m11-pad1_ net-_m10-pad2_ net-_m10-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m10 net-_m10-pad1_ net-_m10-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +* u1 net-_m2-pad2_ net-_m1-pad2_ net-_m10-pad1_ net-_m10-pad1_ net-_m1-pad2_ net-_m2-pad2_ net-_m1-pad3_ net-_m2-pad2_ net-_m1-pad2_ net-_m10-pad1_ net-_m10-pad1_ net-_m1-pad2_ net-_m2-pad2_ net-_m11-pad1_ port +.tran 250e-03 10e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.pro b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.sch b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.sch new file mode 100644 index 000000000..73a3e929e --- /dev/null +++ b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.sch @@ -0,0 +1,576 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_MOS_N M1 +U 1 1 68597EF6 +P 3200 2650 +F 0 "M1" H 3200 2500 50 0000 R CNN +F 1 "eSim_MOS_N" H 3300 2600 50 0000 R CNN +F 2 "" H 3500 2350 29 0000 C CNN +F 3 "" H 3300 2450 60 0000 C CNN + 1 3200 2650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M3 +U 1 1 68597EF7 +P 3250 2250 +F 0 "M3" H 3200 2300 50 0000 R CNN +F 1 "eSim_MOS_P" H 3300 2400 50 0000 R CNN +F 2 "" H 3500 2350 29 0000 C CNN +F 3 "" H 3300 2250 60 0000 C CNN + 1 3250 2250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M2 +U 1 1 68597EF8 +P 3200 4200 +F 0 "M2" H 3200 4050 50 0000 R CNN +F 1 "eSim_MOS_N" H 3300 4150 50 0000 R CNN +F 2 "" H 3500 3900 29 0000 C CNN +F 3 "" H 3300 4000 60 0000 C CNN + 1 3200 4200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M4 +U 1 1 68597EF9 +P 3250 3800 +F 0 "M4" H 3200 3850 50 0000 R CNN +F 1 "eSim_MOS_P" H 3300 3950 50 0000 R CNN +F 2 "" H 3500 3900 29 0000 C CNN +F 3 "" H 3300 3800 60 0000 C CNN + 1 3250 3800 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M6 +U 1 1 68597EFA +P 5600 3050 +F 0 "M6" H 5550 3100 50 0000 R CNN +F 1 "eSim_MOS_P" H 5650 3200 50 0000 R CNN +F 2 "" H 5850 3150 29 0000 C CNN +F 3 "" H 5650 3050 60 0000 C CNN + 1 5600 3050 + -1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M5 +U 1 1 68597EFB +P 4650 2850 +F 0 "M5" H 4650 2700 50 0000 R CNN +F 1 "eSim_MOS_N" H 4750 2800 50 0000 R CNN +F 2 "" H 4950 2550 29 0000 C CNN +F 3 "" H 4750 2650 60 0000 C CNN + 1 4650 2850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M8 +U 1 1 68597EFC +P 6700 2350 +F 0 "M8" H 6650 2400 50 0000 R CNN +F 1 "eSim_MOS_P" H 6750 2500 50 0000 R CNN +F 2 "" H 6950 2450 29 0000 C CNN +F 3 "" H 6750 2350 60 0000 C CNN + 1 6700 2350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M9 +U 1 1 68597EFD +P 6700 3500 +F 0 "M9" H 6650 3550 50 0000 R CNN +F 1 "eSim_MOS_P" H 6750 3650 50 0000 R CNN +F 2 "" H 6950 3600 29 0000 C CNN +F 3 "" H 6750 3500 60 0000 C CNN + 1 6700 3500 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M7 +U 1 1 68597EFE +P 6650 3900 +F 0 "M7" H 6650 3750 50 0000 R CNN +F 1 "eSim_MOS_N" H 6750 3850 50 0000 R CNN +F 2 "" H 6950 3600 29 0000 C CNN +F 3 "" H 6750 3700 60 0000 C CNN + 1 6650 3900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M11 +U 1 1 68597EFF +P 8150 2850 +F 0 "M11" H 8100 2900 50 0000 R CNN +F 1 "eSim_MOS_P" H 8200 3000 50 0000 R CNN +F 2 "" H 8400 2950 29 0000 C CNN +F 3 "" H 8200 2850 60 0000 C CNN + 1 8150 2850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M10 +U 1 1 68597F00 +P 8050 3350 +F 0 "M10" H 8050 3200 50 0000 R CNN +F 1 "eSim_MOS_N" H 8150 3300 50 0000 R CNN +F 2 "" H 8350 3050 29 0000 C CNN +F 3 "" H 8150 3150 60 0000 C CNN + 1 8050 3350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3400 1550 3400 2050 +Wire Wire Line + 3400 1850 3650 1850 +Wire Wire Line + 3650 1850 3650 2450 +Wire Wire Line + 3650 2450 3500 2450 +Wire Wire Line + 3500 2450 3500 2400 +Wire Wire Line + 3400 2450 3400 2650 +Wire Wire Line + 3400 3050 3400 3200 +Wire Wire Line + 2450 3200 3500 3200 +Wire Wire Line + 3500 3200 3500 3000 +Wire Wire Line + 3100 2250 2750 2250 +Wire Wire Line + 2750 2250 2750 2850 +Wire Wire Line + 2750 2850 3100 2850 +Wire Wire Line + 3500 3950 3500 4000 +Wire Wire Line + 3500 4000 3600 4000 +Wire Wire Line + 3600 4000 3600 3500 +Wire Wire Line + 3600 3500 2350 3500 +Wire Wire Line + 3400 3500 3400 3600 +Wire Wire Line + 3400 4000 3400 4200 +Wire Wire Line + 3400 4600 3400 4700 +Wire Wire Line + 3500 4700 3500 4550 +Wire Wire Line + 3100 3800 2800 3800 +Wire Wire Line + 2800 3800 2800 4400 +Wire Wire Line + 2800 4400 3100 4400 +Wire Wire Line + 2350 3500 2350 1550 +Connection ~ 3400 3500 +Connection ~ 3400 1850 +Wire Wire Line + 4850 3250 4850 3400 +Wire Wire Line + 4850 3400 5450 3400 +Wire Wire Line + 5450 3400 5450 3250 +Wire Wire Line + 2450 4700 2450 3200 +Connection ~ 3400 4700 +Connection ~ 3400 3200 +Wire Wire Line + 4550 3050 4550 4100 +Wire Wire Line + 3400 4100 5450 4100 +Connection ~ 3400 4100 +Wire Wire Line + 4950 4700 4950 3200 +Connection ~ 3500 4700 +Wire Wire Line + 4850 2850 4850 2600 +Wire Wire Line + 4850 2600 5450 2600 +Wire Wire Line + 5450 2600 5450 2850 +Wire Wire Line + 3400 2550 6000 2550 +Wire Wire Line + 5200 2550 5200 2600 +Connection ~ 5200 2600 +Connection ~ 3400 2550 +Wire Wire Line + 5250 3200 5350 3200 +Wire Wire Line + 5250 1550 5250 3200 +Connection ~ 3400 1550 +Wire Wire Line + 2050 4100 2800 4100 +Wire Wire Line + 2600 4100 2600 3450 +Wire Wire Line + 2600 3450 5900 3450 +Wire Wire Line + 5900 3450 5900 3050 +Wire Wire Line + 5900 3050 5750 3050 +Connection ~ 2800 4100 +Wire Wire Line + 6550 3500 6200 3500 +Wire Wire Line + 6200 3500 6200 4100 +Wire Wire Line + 6200 4100 6550 4100 +Wire Wire Line + 6000 2550 6000 3750 +Wire Wire Line + 6000 3750 6200 3750 +Connection ~ 6200 3750 +Connection ~ 5200 2550 +Wire Wire Line + 6550 2350 6050 2350 +Wire Wire Line + 6050 2350 6050 4450 +Wire Wire Line + 5450 4450 6850 4450 +Wire Wire Line + 6850 4450 6850 4300 +Wire Wire Line + 5450 4100 5450 4450 +Connection ~ 4550 4100 +Connection ~ 6050 4450 +Wire Wire Line + 6950 4700 6950 4250 +Connection ~ 4950 4700 +Wire Wire Line + 6850 3700 6850 3900 +Wire Wire Line + 6850 2550 6850 3300 +Wire Wire Line + 6850 2150 6850 1950 +Wire Wire Line + 6850 1950 7250 1950 +Wire Wire Line + 7250 1550 7250 3650 +Wire Wire Line + 7250 2550 6950 2550 +Wire Wire Line + 6950 2550 6950 2500 +Wire Wire Line + 7250 3650 6950 3650 +Connection ~ 7250 2550 +Connection ~ 7250 1950 +Connection ~ 5250 1550 +Wire Wire Line + 8300 1550 8300 2650 +Connection ~ 7250 1550 +Wire Wire Line + 7700 2850 8000 2850 +Wire Wire Line + 7700 2850 7700 3550 +Wire Wire Line + 7700 3550 7950 3550 +Wire Wire Line + 8300 3050 8300 3250 +Wire Wire Line + 8250 3250 9700 3250 +Wire Wire Line + 8250 3250 8250 3350 +Wire Wire Line + 8250 3750 8250 4700 +Wire Wire Line + 8250 3900 8350 3900 +Wire Wire Line + 8350 3900 8350 3700 +Connection ~ 6950 4700 +Connection ~ 8250 3900 +Wire Wire Line + 6850 3800 7550 3800 +Wire Wire Line + 7550 3100 7550 4500 +Wire Wire Line + 7550 3100 7700 3100 +Connection ~ 7700 3100 +Connection ~ 6850 3800 +Wire Wire Line + 8300 2400 8550 2400 +Wire Wire Line + 8550 2400 8550 3000 +Wire Wire Line + 8550 3000 8400 3000 +Connection ~ 8300 2400 +Wire Wire Line + 7550 4500 5100 4500 +Wire Wire Line + 5100 4500 5100 3400 +Connection ~ 5100 3400 +Connection ~ 7550 3800 +Connection ~ 2750 2350 +Wire Wire Line + 2050 2650 2050 4100 +Connection ~ 2600 4100 +Connection ~ 8300 3250 +Connection ~ 8300 1550 +Wire Wire Line + 2350 1550 8300 1550 +Wire Wire Line + 2450 4700 10200 4700 +Connection ~ 8250 4700 +$Comp +L PORT U1 +U 1 1 68598A23 +P 850 3200 +F 0 "U1" H 900 3300 30 0000 C CNN +F 1 "PORT" H 850 3200 30 0000 C CNN +F 2 "" H 850 3200 60 0000 C CNN +F 3 "" H 850 3200 60 0000 C CNN + 1 850 3200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 68598ACE +P 750 1600 +F 0 "U1" H 800 1700 30 0000 C CNN +F 1 "PORT" H 750 1600 30 0000 C CNN +F 2 "" H 750 1600 60 0000 C CNN +F 3 "" H 750 1600 60 0000 C CNN + 2 750 1600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 68598B80 +P 9950 3250 +F 0 "U1" H 10000 3350 30 0000 C CNN +F 1 "PORT" H 9950 3250 30 0000 C CNN +F 2 "" H 9950 3250 60 0000 C CNN +F 3 "" H 9950 3250 60 0000 C CNN + 3 9950 3250 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 68598E3D +P 9950 2950 +F 0 "U1" H 10000 3050 30 0000 C CNN +F 1 "PORT" H 9950 2950 30 0000 C CNN +F 2 "" H 9950 2950 60 0000 C CNN +F 3 "" H 9950 2950 60 0000 C CNN + 4 9950 2950 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 68598EF2 +P 750 1950 +F 0 "U1" H 800 2050 30 0000 C CNN +F 1 "PORT" H 750 1950 30 0000 C CNN +F 2 "" H 750 1950 60 0000 C CNN +F 3 "" H 750 1950 60 0000 C CNN + 5 750 1950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685990E3 +P 850 2950 +F 0 "U1" H 900 3050 30 0000 C CNN +F 1 "PORT" H 850 2950 30 0000 C CNN +F 2 "" H 850 2950 60 0000 C CNN +F 3 "" H 850 2950 60 0000 C CNN + 6 850 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 68599207 +P 850 3550 +F 0 "U1" H 900 3650 30 0000 C CNN +F 1 "PORT" H 850 3550 30 0000 C CNN +F 2 "" H 850 3550 60 0000 C CNN +F 3 "" H 850 3550 60 0000 C CNN + 8 850 3550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 685992D0 +P 750 1300 +F 0 "U1" H 800 1400 30 0000 C CNN +F 1 "PORT" H 750 1300 30 0000 C CNN +F 2 "" H 750 1300 60 0000 C CNN +F 3 "" H 750 1300 60 0000 C CNN + 9 750 1300 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 6859946D +P 9950 3550 +F 0 "U1" H 10000 3650 30 0000 C CNN +F 1 "PORT" H 9950 3550 30 0000 C CNN +F 2 "" H 9950 3550 60 0000 C CNN +F 3 "" H 9950 3550 60 0000 C CNN + 10 9950 3550 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 11 1 6859964A +P 9950 3800 +F 0 "U1" H 10000 3900 30 0000 C CNN +F 1 "PORT" H 9950 3800 30 0000 C CNN +F 2 "" H 9950 3800 60 0000 C CNN +F 3 "" H 9950 3800 60 0000 C CNN + 11 9950 3800 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 12 1 685997A5 +P 750 2200 +F 0 "U1" H 800 2300 30 0000 C CNN +F 1 "PORT" H 750 2200 30 0000 C CNN +F 2 "" H 750 2200 60 0000 C CNN +F 3 "" H 750 2200 60 0000 C CNN + 12 750 2200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 6859980E +P 850 2650 +F 0 "U1" H 900 2750 30 0000 C CNN +F 1 "PORT" H 850 2650 30 0000 C CNN +F 2 "" H 850 2650 60 0000 C CNN +F 3 "" H 850 2650 60 0000 C CNN + 13 850 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 68599873 +P 5000 1150 +F 0 "U1" H 5050 1250 30 0000 C CNN +F 1 "PORT" H 5000 1150 30 0000 C CNN +F 2 "" H 5000 1150 60 0000 C CNN +F 3 "" H 5000 1150 60 0000 C CNN + 14 5000 1150 + 0 1 1 0 +$EndComp +Wire Wire Line + 5000 1400 5000 1550 +Connection ~ 5000 1550 +Wire Wire Line + 2750 2350 1000 2350 +Wire Wire Line + 1000 2350 1000 2200 +Wire Wire Line + 1000 1300 1650 1300 +Wire Wire Line + 1650 1300 1650 2350 +Connection ~ 1650 2350 +Wire Wire Line + 1000 1600 1550 1600 +Wire Wire Line + 1550 1600 1550 2350 +Connection ~ 1550 2350 +Wire Wire Line + 1000 1950 1350 1950 +Wire Wire Line + 1350 1950 1350 2350 +Connection ~ 1350 2350 +Wire Wire Line + 1100 3550 2050 3550 +Connection ~ 2050 3550 +Wire Wire Line + 1100 3200 2050 3200 +Wire Wire Line + 1100 2950 2050 2950 +Connection ~ 2050 3200 +Wire Wire Line + 1100 2650 2050 2650 +Connection ~ 2050 2950 +Wire Wire Line + 9700 2950 9600 2950 +Wire Wire Line + 9600 2950 9600 3250 +Connection ~ 9600 3250 +Wire Wire Line + 9700 3550 9450 3550 +Wire Wire Line + 9450 3550 9450 3250 +Connection ~ 9450 3250 +Wire Wire Line + 9700 3800 9300 3800 +Wire Wire Line + 9300 3800 9300 3250 +Connection ~ 9300 3250 +$Comp +L PORT U1 +U 7 1 6859A8A9 +P 10450 4700 +F 0 "U1" H 10500 4800 30 0000 C CNN +F 1 "PORT" H 10450 4700 30 0000 C CNN +F 2 "" H 10450 4700 60 0000 C CNN +F 3 "" H 10450 4700 60 0000 C CNN + 7 10450 4700 + -1 0 0 1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.sub b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.sub new file mode 100644 index 000000000..cbfbe6eae --- /dev/null +++ b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic.sub @@ -0,0 +1,19 @@ +* Subcircuit cd4070b_ic +.subckt cd4070b_ic net-_m2-pad2_ net-_m1-pad2_ net-_m10-pad1_ net-_m10-pad1_ net-_m1-pad2_ net-_m2-pad2_ net-_m1-pad3_ net-_m2-pad2_ net-_m1-pad2_ net-_m10-pad1_ net-_m10-pad1_ net-_m1-pad2_ net-_m2-pad2_ net-_m11-pad1_ +* c:\fossee\esim\library\subcircuitlibrary\cd4070b_ic\cd4070b_ic.cir +.include NMOS-180nm.lib +.include PMOS-180nm.lib +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m3 net-_m11-pad1_ net-_m1-pad2_ net-_m1-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m2 net-_m2-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m4 net-_m11-pad1_ net-_m2-pad2_ net-_m2-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m6 net-_m1-pad1_ net-_m2-pad2_ net-_m10-pad2_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m5 net-_m1-pad1_ net-_m2-pad1_ net-_m10-pad2_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m8 net-_m11-pad1_ net-_m2-pad1_ net-_m8-pad3_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m9 net-_m8-pad3_ net-_m1-pad1_ net-_m10-pad2_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m7 net-_m10-pad2_ net-_m1-pad1_ net-_m2-pad1_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m11 net-_m11-pad1_ net-_m10-pad2_ net-_m10-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m10 net-_m10-pad1_ net-_m10-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +* Control Statements + +.ends cd4070b_ic \ No newline at end of file diff --git a/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic_Previous_Values.xml b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic_Previous_Values.xml new file mode 100644 index 000000000..025477594 --- /dev/null +++ b/library/SubcircuitLibrary/cd4070b_ic/cd4070b_ic_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes025010secmssecC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.lib \ No newline at end of file diff --git a/library/SubcircuitLibrary/cd4077b/NMOS-180nm.lib b/library/SubcircuitLibrary/cd4077b/NMOS-180nm.lib new file mode 100644 index 000000000..51e9b1196 --- /dev/null +++ b/library/SubcircuitLibrary/cd4077b/NMOS-180nm.lib @@ -0,0 +1,13 @@ +.model CMOSN NMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=2.3549E17 VTH0=0.3823463 K1=0.5810697 ++ K2=4.774618E-3 K3=0.0431669 K3B=1.1498346 W0=1E-7 NLX=1.910552E-7 DVT0W=0 DVT1W=0 DVT2W=0 ++ DVT0=1.2894824 DVT1=0.3622063 DVT2=0.0713729 U0=280.633249 UA=-1.208537E-9 UB=2.158625E-18 ++ UC=5.342807E-11 VSAT=9.366802E4 A0=1.7593146 AGS=0.3939741 B0=-6.413949E-9 B1=-1E-7 KETA=-5.180424E-4 ++ A1=0 A2=1 RDSW=105.5517558 PRWG=0.5 PRWB=-0.1998871 WR=1 WINT=7.904732E-10 LINT=1.571424E-8 XL=0 ++ XW=-1E-8 DWG=1.297221E-9 DWB=1.479041E-9 VOFF=-0.0955434 NFACTOR=2.4358891 CIT=0 CDSC=2.4E-4 CDSCD=0 ++ CDSCB=0 ETA0=3.104851E-3 ETAB=-2.512384E-5 DSUB=0.0167075 PCLM=0.8073191 PDIBLC1=0.1666161 PDIBLC2=3.112892E-3 ++ PDIBLCB=-0.1 DROUT=0.7875618 PSCBE1=8E10 PSCBE2=9.213635E-10 PVAG=3.85243E-3 DELTA=0.01 RSH=6.7 MOBMOD=1 ++ PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 ++ WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 CGDO=7.08E-10 CGSO=7.08E-10 CGBO=1E-12 ++ CJ=9.68858E-4 PB=0.8 MJ=0.3864502 CJSW=2.512138E-10 PBSW=0.809286 MJSW=0.1060414 CJSWG=3.3E-10 PBSWG=0.809286 ++ MJSWG=0.1060414 CF=0 PVTH0=-1.192722E-3 PRDSW=-5 PK2=6.450505E-5 WKETA=-4.27294E-4 LKETA=-0.0104078 ++ PU0=6.3268729 PUA=2.226552E-11 PUB=0 PVSAT=969.1480157 PETA0=1E-4 PKETA=-1.049509E-3) diff --git a/library/SubcircuitLibrary/cd4077b/PMOS-180nm.lib b/library/SubcircuitLibrary/cd4077b/PMOS-180nm.lib new file mode 100644 index 000000000..032b5b95e --- /dev/null +++ b/library/SubcircuitLibrary/cd4077b/PMOS-180nm.lib @@ -0,0 +1,11 @@ +.model CMOSP PMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=4.1589E17 VTH0=-0.3938813 K1=0.5479015 ++ K2=0.0360586 K3=0.0993095 K3B=5.7086622 W0=1E-6 NLX=1.313191E-7 DVT0W=0 DVT1W=0 DVT2W=0 DVT0=0.4911363 ++ DVT1=0.2227356 DVT2=0.1 U0=115.6852975 UA=1.505832E-9 UB=1E-21 UC=-1E-10 VSAT=1.329694E5 A0=1.7590478 ++ AGS=0.3641621 B0=3.427126E-7 B1=1.062928E-6 KETA=0.0134667 A1=0.6859506 A2=0.3506788 RDSW=168.5705677 ++ PRWG=0.5 PRWB=-0.4987371 WR=1 WINT=0 LINT=3.028832E-8 XL=0 XW=-1E-8 DWG=-2.349633E-8 DWB=-7.152486E-9 ++ VOFF=-0.0994037 NFACTOR=1.9424315 CIT=0 CDSC=2.4E-4 CDSCD=0 CDSCB=0 ETA0=0.0608072 ETAB=-0.0426148 ++ DSUB=0.7343015 PCLM=3.2579974 PDIBLC1=7.229527E-6 PDIBLC2=0.025389 PDIBLCB=-1E-3 DROUT=0 PSCBE1=1.454878E10 ++ PSCBE2=4.202027E-9 PVAG=15 DELTA=0.01 RSH=7.8 MOBMOD=1 PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 ++ UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 ++ CGDO=6.32E-10 CGSO=6.32E-10 CGBO=1E-12 CJ=1.172138E-3 PB=0.8421173 MJ=0.4109788 CJSW=2.242609E-10 PBSW=0.8 + MJSW=0.3752089 CJSWG=4.22E-10 PBSWG=0.8 MJSWG=0.3752089 CF=0 PVTH0=1.888482E-3 PRDSW=11.5315407 PK2=1.559399E-3 ++ WKETA=0.0319301 LKETA=2.955547E-3 PU0=-1.1105313 PUA=-4.62102E-11 PUB=1E-21 PVSAT=50 PETA0=1E-4 PKETA=-4.346368E-3) diff --git a/library/SubcircuitLibrary/cd4077b/analysis b/library/SubcircuitLibrary/cd4077b/analysis new file mode 100644 index 000000000..0a6c83b5a --- /dev/null +++ b/library/SubcircuitLibrary/cd4077b/analysis @@ -0,0 +1 @@ +.tran 250e-03 10e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/cd4077b/cd4077b-cache.lib b/library/SubcircuitLibrary/cd4077b/cd4077b-cache.lib new file mode 100644 index 000000000..6c512720e --- /dev/null +++ b/library/SubcircuitLibrary/cd4077b/cd4077b-cache.lib @@ -0,0 +1,100 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_MOS_N +# +DEF eSim_MOS_N M 0 0 Y N 1 F N +F0 "M" 0 -150 50 H V R CNN +F1 "eSim_MOS_N" 100 -50 50 H V R CNN +F2 "" 300 -300 29 H V C CNN +F3 "" 100 -200 60 H V C CNN +ALIAS mosfet_n +DRAW +C 150 -200 111 0 1 10 N +P 2 0 1 10 130 -290 130 -250 N +P 2 0 1 0 130 -270 200 -270 N +P 2 0 1 10 130 -220 130 -180 N +P 2 0 1 0 130 -200 200 -200 N +P 2 0 1 10 130 -150 130 -110 N +P 2 0 1 0 130 -130 200 -130 N +P 2 0 1 0 200 -300 200 -270 N +P 2 0 1 0 200 -130 200 -100 N +P 3 0 1 10 110 -275 110 -125 110 -125 N +P 3 0 1 0 200 -200 300 -200 300 -250 N +P 4 0 1 0 140 -200 180 -215 180 -185 140 -200 F +X D 1 200 0 100 D 50 50 1 1 P +X G 2 -100 -200 210 R 50 50 1 1 P +X S 3 200 -400 100 U 50 50 1 1 P +X B 4 300 -350 98 U 47 47 1 1 P +ENDDRAW +ENDDEF +# +# eSim_MOS_P +# +DEF eSim_MOS_P M 0 0 Y N 1 F N +F0 "M" -50 50 50 H V R CNN +F1 "eSim_MOS_P" 50 150 50 H V R CNN +F2 "" 250 100 29 H V C CNN +F3 "" 50 0 60 H V C CNN +ALIAS mosfet_p +DRAW +C 100 0 111 0 1 10 N +P 2 0 1 0 80 -70 150 -70 N +P 2 0 1 10 80 -50 80 -90 N +P 2 0 1 0 80 0 150 0 N +P 2 0 1 10 80 20 80 -20 N +P 2 0 1 0 80 70 150 70 N +P 2 0 1 10 80 90 80 50 N +P 2 0 1 0 150 -70 150 -100 N +P 2 0 1 0 150 100 150 70 N +P 3 0 1 10 60 75 60 -75 60 -75 N +P 3 0 1 0 150 0 250 0 250 -50 N +P 4 0 1 0 140 0 100 -15 100 15 140 0 F +X D 1 150 200 100 D 50 50 1 1 P +X G 2 -150 0 210 R 50 50 1 1 P +X S 3 150 -200 100 U 50 50 1 1 P +X B 4 250 -150 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/cd4077b/cd4077b.cir b/library/SubcircuitLibrary/cd4077b/cd4077b.cir new file mode 100644 index 000000000..7be5bf486 --- /dev/null +++ b/library/SubcircuitLibrary/cd4077b/cd4077b.cir @@ -0,0 +1,22 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\cd4077b\cd4077b.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 06/24/25 14:56:23 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +M1 Net-_M1-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M3 Net-_M11-Pad1_ Net-_M1-Pad2_ Net-_M1-Pad1_ Net-_M11-Pad1_ eSim_MOS_P +M2 Net-_M2-Pad1_ Net-_M2-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M4 Net-_M11-Pad1_ Net-_M2-Pad2_ Net-_M2-Pad1_ Net-_M11-Pad1_ eSim_MOS_P +M6 Net-_M1-Pad1_ Net-_M2-Pad1_ Net-_M10-Pad2_ Net-_M11-Pad1_ eSim_MOS_P +M5 Net-_M1-Pad1_ Net-_M2-Pad2_ Net-_M10-Pad2_ Net-_M1-Pad3_ eSim_MOS_N +M7 Net-_M10-Pad2_ Net-_M1-Pad1_ Net-_M7-Pad3_ Net-_M7-Pad3_ eSim_MOS_N +M9 Net-_M2-Pad1_ Net-_M1-Pad1_ Net-_M10-Pad2_ Net-_M11-Pad1_ eSim_MOS_P +M8 Net-_M7-Pad3_ Net-_M2-Pad1_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M10 Net-_M10-Pad1_ Net-_M10-Pad2_ Net-_M1-Pad3_ Net-_M1-Pad3_ eSim_MOS_N +M11 Net-_M11-Pad1_ Net-_M10-Pad2_ Net-_M10-Pad1_ Net-_M11-Pad1_ eSim_MOS_P +U1 Net-_M2-Pad2_ Net-_M1-Pad2_ Net-_M10-Pad1_ Net-_M10-Pad1_ Net-_M1-Pad2_ Net-_M2-Pad2_ Net-_M1-Pad3_ Net-_M2-Pad2_ Net-_M1-Pad2_ Net-_M10-Pad1_ Net-_M10-Pad1_ Net-_M1-Pad2_ Net-_M2-Pad2_ Net-_M11-Pad1_ PORT + +.end diff --git a/library/SubcircuitLibrary/cd4077b/cd4077b.cir.out b/library/SubcircuitLibrary/cd4077b/cd4077b.cir.out new file mode 100644 index 000000000..fc6467d62 --- /dev/null +++ b/library/SubcircuitLibrary/cd4077b/cd4077b.cir.out @@ -0,0 +1,25 @@ +* c:\fossee\esim\library\subcircuitlibrary\cd4077b\cd4077b.cir + +.include NMOS-180nm.lib +.include PMOS-180nm.lib +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m3 net-_m11-pad1_ net-_m1-pad2_ net-_m1-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m2 net-_m2-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m4 net-_m11-pad1_ net-_m2-pad2_ net-_m2-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m6 net-_m1-pad1_ net-_m2-pad1_ net-_m10-pad2_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m5 net-_m1-pad1_ net-_m2-pad2_ net-_m10-pad2_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m7 net-_m10-pad2_ net-_m1-pad1_ net-_m7-pad3_ net-_m7-pad3_ CMOSN W=100u L=100u M=1 +m9 net-_m2-pad1_ net-_m1-pad1_ net-_m10-pad2_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m8 net-_m7-pad3_ net-_m2-pad1_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m10 net-_m10-pad1_ net-_m10-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m11 net-_m11-pad1_ net-_m10-pad2_ net-_m10-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +* u1 net-_m2-pad2_ net-_m1-pad2_ net-_m10-pad1_ net-_m10-pad1_ net-_m1-pad2_ net-_m2-pad2_ net-_m1-pad3_ net-_m2-pad2_ net-_m1-pad2_ net-_m10-pad1_ net-_m10-pad1_ net-_m1-pad2_ net-_m2-pad2_ net-_m11-pad1_ port +.tran 250e-03 10e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/cd4077b/cd4077b.pro b/library/SubcircuitLibrary/cd4077b/cd4077b.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/cd4077b/cd4077b.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/cd4077b/cd4077b.sch b/library/SubcircuitLibrary/cd4077b/cd4077b.sch new file mode 100644 index 000000000..6cbc04bf3 --- /dev/null +++ b/library/SubcircuitLibrary/cd4077b/cd4077b.sch @@ -0,0 +1,555 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_MOS_N M1 +U 1 1 685A6E8E +P 3050 2900 +F 0 "M1" H 3050 2750 50 0000 R CNN +F 1 "eSim_MOS_N" H 3150 2850 50 0000 R CNN +F 2 "" H 3350 2600 29 0000 C CNN +F 3 "" H 3150 2700 60 0000 C CNN + 1 3050 2900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M3 +U 1 1 685A6E8F +P 3100 2400 +F 0 "M3" H 3050 2450 50 0000 R CNN +F 1 "eSim_MOS_P" H 3150 2550 50 0000 R CNN +F 2 "" H 3350 2500 29 0000 C CNN +F 3 "" H 3150 2400 60 0000 C CNN + 1 3100 2400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M2 +U 1 1 685A6E90 +P 3050 4350 +F 0 "M2" H 3050 4200 50 0000 R CNN +F 1 "eSim_MOS_N" H 3150 4300 50 0000 R CNN +F 2 "" H 3350 4050 29 0000 C CNN +F 3 "" H 3150 4150 60 0000 C CNN + 1 3050 4350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M4 +U 1 1 685A6E91 +P 3100 3850 +F 0 "M4" H 3050 3900 50 0000 R CNN +F 1 "eSim_MOS_P" H 3150 4000 50 0000 R CNN +F 2 "" H 3350 3950 29 0000 C CNN +F 3 "" H 3150 3850 60 0000 C CNN + 1 3100 3850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M6 +U 1 1 685A6E92 +P 5500 3250 +F 0 "M6" H 5450 3300 50 0000 R CNN +F 1 "eSim_MOS_P" H 5550 3400 50 0000 R CNN +F 2 "" H 5750 3350 29 0000 C CNN +F 3 "" H 5550 3250 60 0000 C CNN + 1 5500 3250 + -1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M5 +U 1 1 685A6E93 +P 4650 3050 +F 0 "M5" H 4650 2900 50 0000 R CNN +F 1 "eSim_MOS_N" H 4750 3000 50 0000 R CNN +F 2 "" H 4950 2750 29 0000 C CNN +F 3 "" H 4750 2850 60 0000 C CNN + 1 4650 3050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M7 +U 1 1 685A6E94 +P 6750 2750 +F 0 "M7" H 6750 2600 50 0000 R CNN +F 1 "eSim_MOS_N" H 6850 2700 50 0000 R CNN +F 2 "" H 7050 2450 29 0000 C CNN +F 3 "" H 6850 2550 60 0000 C CNN + 1 6750 2750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M9 +U 1 1 685A6E95 +P 6800 2350 +F 0 "M9" H 6750 2400 50 0000 R CNN +F 1 "eSim_MOS_P" H 6850 2500 50 0000 R CNN +F 2 "" H 7050 2450 29 0000 C CNN +F 3 "" H 6850 2350 60 0000 C CNN + 1 6800 2350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M8 +U 1 1 685A6E96 +P 6750 3700 +F 0 "M8" H 6750 3550 50 0000 R CNN +F 1 "eSim_MOS_N" H 6850 3650 50 0000 R CNN +F 2 "" H 7050 3400 29 0000 C CNN +F 3 "" H 6850 3500 60 0000 C CNN + 1 6750 3700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_N M10 +U 1 1 685A6E97 +P 8150 3150 +F 0 "M10" H 8150 3000 50 0000 R CNN +F 1 "eSim_MOS_N" H 8250 3100 50 0000 R CNN +F 2 "" H 8450 2850 29 0000 C CNN +F 3 "" H 8250 2950 60 0000 C CNN + 1 8150 3150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_MOS_P M11 +U 1 1 685A6E98 +P 8200 2600 +F 0 "M11" H 8150 2650 50 0000 R CNN +F 1 "eSim_MOS_P" H 8250 2750 50 0000 R CNN +F 2 "" H 8450 2700 29 0000 C CNN +F 3 "" H 8250 2600 60 0000 C CNN + 1 8200 2600 + 1 0 0 -1 +$EndComp +Connection ~ 5050 2750 +Connection ~ 6350 2750 +Wire Wire Line + 6350 2950 6650 2950 +Wire Wire Line + 6350 2350 6350 2950 +Wire Wire Line + 6650 2350 6350 2350 +Connection ~ 6200 4200 +Wire Wire Line + 6650 4200 6650 3900 +Connection ~ 5850 4200 +Connection ~ 3250 4200 +Wire Wire Line + 5850 3250 5650 3250 +Wire Wire Line + 5850 4200 5850 3250 +Wire Wire Line + 3250 4200 6650 4200 +Connection ~ 2600 4200 +Wire Wire Line + 4550 3450 4550 3250 +Wire Wire Line + 2350 3450 4550 3450 +Wire Wire Line + 2350 4200 2350 3450 +Wire Wire Line + 1650 4200 2600 4200 +Connection ~ 3450 2100 +Wire Wire Line + 5150 3450 5150 2100 +Wire Wire Line + 5250 3450 5150 3450 +Wire Wire Line + 5250 3400 5250 3450 +Connection ~ 3350 4850 +Wire Wire Line + 4950 4850 4950 3400 +Connection ~ 3250 2750 +Connection ~ 5050 2850 +Wire Wire Line + 5050 2750 5050 2850 +Wire Wire Line + 3250 2750 6350 2750 +Wire Wire Line + 5350 3650 5350 3450 +Wire Wire Line + 4850 3650 5350 3650 +Wire Wire Line + 4850 3450 4850 3650 +Wire Wire Line + 5350 2850 5350 3050 +Wire Wire Line + 4850 2850 5350 2850 +Wire Wire Line + 4850 3050 4850 2850 +Connection ~ 3250 3400 +Connection ~ 3250 4850 +Wire Wire Line + 2400 3400 2400 4850 +Connection ~ 3250 3550 +Connection ~ 3250 2100 +Wire Wire Line + 2300 3550 2300 2100 +Wire Wire Line + 2600 4550 2950 4550 +Wire Wire Line + 2600 3850 2600 4550 +Wire Wire Line + 2950 3850 2600 3850 +Wire Wire Line + 3350 4850 3350 4700 +Wire Wire Line + 2400 4850 8350 4850 +Wire Wire Line + 3250 4750 3250 4850 +Wire Wire Line + 3250 3550 3250 3650 +Wire Wire Line + 3450 3550 2300 3550 +Wire Wire Line + 3450 4100 3450 3550 +Wire Wire Line + 3350 4100 3450 4100 +Wire Wire Line + 3350 4000 3350 4100 +Wire Wire Line + 3250 4050 3250 4350 +Wire Wire Line + 2600 3100 2950 3100 +Wire Wire Line + 2600 2400 2600 3100 +Wire Wire Line + 2950 2400 2600 2400 +Wire Wire Line + 3350 3400 3350 3250 +Wire Wire Line + 2400 3400 3350 3400 +Wire Wire Line + 3250 3300 3250 3400 +Wire Wire Line + 3250 2100 3250 2200 +Wire Wire Line + 3450 2650 3450 2100 +Wire Wire Line + 3350 2650 3450 2650 +Wire Wire Line + 3350 2550 3350 2650 +Wire Wire Line + 3250 2600 3250 2900 +Wire Wire Line + 6950 2150 6950 1950 +Wire Wire Line + 6950 1950 6200 1950 +Wire Wire Line + 6200 1950 6200 4200 +Wire Wire Line + 6950 2550 6950 2750 +Wire Wire Line + 6950 3150 6950 3700 +Wire Wire Line + 8350 2800 8350 3150 +Wire Wire Line + 8450 2750 8600 2750 +Wire Wire Line + 8350 2100 8350 2400 +Wire Wire Line + 8350 4850 8350 3550 +Wire Wire Line + 8350 3700 8450 3700 +Wire Wire Line + 8450 3700 8450 3500 +Wire Wire Line + 8050 2600 7700 2600 +Wire Wire Line + 7700 2600 7700 3350 +Wire Wire Line + 7700 3350 8050 3350 +Connection ~ 5150 2100 +Wire Wire Line + 8600 2750 8600 2100 +Connection ~ 8350 2100 +Connection ~ 4950 4850 +Connection ~ 8350 3700 +Wire Wire Line + 6950 4100 6950 4850 +Wire Wire Line + 6950 4250 7050 4250 +Wire Wire Line + 7050 4250 7050 4050 +Connection ~ 6950 4850 +Connection ~ 6950 4250 +Wire Wire Line + 7050 3100 7050 3300 +Wire Wire Line + 7050 3300 6950 3300 +Connection ~ 6950 3300 +Wire Wire Line + 7050 2500 7250 2500 +Wire Wire Line + 7250 2500 7250 2100 +Connection ~ 7250 2100 +Wire Wire Line + 5100 3650 5100 4500 +Wire Wire Line + 5100 4500 7400 4500 +Wire Wire Line + 7400 4500 7400 2650 +Wire Wire Line + 7400 2650 6950 2650 +Connection ~ 6950 2650 +Connection ~ 5100 3650 +Wire Wire Line + 7400 3000 7700 3000 +Connection ~ 7700 3000 +Connection ~ 7400 3000 +Connection ~ 2600 2750 +Connection ~ 2350 4200 +Connection ~ 8600 2100 +Wire Wire Line + 5650 5150 5650 4850 +Connection ~ 5650 4850 +Wire Wire Line + 1300 2750 2600 2750 +Wire Wire Line + 8350 2950 9450 2950 +Connection ~ 8350 2950 +Wire Wire Line + 2300 2100 10200 2100 +$Comp +L PORT U1 +U 1 1 685A74DB +P 1400 4200 +F 0 "U1" H 1450 4300 30 0000 C CNN +F 1 "PORT" H 1400 4200 30 0000 C CNN +F 2 "" H 1400 4200 60 0000 C CNN +F 3 "" H 1400 4200 60 0000 C CNN + 1 1400 4200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 685A754E +P 1050 2750 +F 0 "U1" H 1100 2850 30 0000 C CNN +F 1 "PORT" H 1050 2750 30 0000 C CNN +F 2 "" H 1050 2750 60 0000 C CNN +F 3 "" H 1050 2750 60 0000 C CNN + 2 1050 2750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 685A767B +P 9700 2950 +F 0 "U1" H 9750 3050 30 0000 C CNN +F 1 "PORT" H 9700 2950 30 0000 C CNN +F 2 "" H 9700 2950 60 0000 C CNN +F 3 "" H 9700 2950 60 0000 C CNN + 3 9700 2950 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 685A7834 +P 9700 3200 +F 0 "U1" H 9750 3300 30 0000 C CNN +F 1 "PORT" H 9700 3200 30 0000 C CNN +F 2 "" H 9700 3200 60 0000 C CNN +F 3 "" H 9700 3200 60 0000 C CNN + 4 9700 3200 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 685A7930 +P 1050 2400 +F 0 "U1" H 1100 2500 30 0000 C CNN +F 1 "PORT" H 1050 2400 30 0000 C CNN +F 2 "" H 1050 2400 60 0000 C CNN +F 3 "" H 1050 2400 60 0000 C CNN + 5 1050 2400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 685A796D +P 1400 3900 +F 0 "U1" H 1450 4000 30 0000 C CNN +F 1 "PORT" H 1400 3900 30 0000 C CNN +F 2 "" H 1400 3900 60 0000 C CNN +F 3 "" H 1400 3900 60 0000 C CNN + 6 1400 3900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 685A7A53 +P 5650 5400 +F 0 "U1" H 5700 5500 30 0000 C CNN +F 1 "PORT" H 5650 5400 30 0000 C CNN +F 2 "" H 5650 5400 60 0000 C CNN +F 3 "" H 5650 5400 60 0000 C CNN + 7 5650 5400 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 8 1 685A7C28 +P 1400 4500 +F 0 "U1" H 1450 4600 30 0000 C CNN +F 1 "PORT" H 1400 4500 30 0000 C CNN +F 2 "" H 1400 4500 60 0000 C CNN +F 3 "" H 1400 4500 60 0000 C CNN + 8 1400 4500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 685A7DF4 +P 1050 2950 +F 0 "U1" H 1100 3050 30 0000 C CNN +F 1 "PORT" H 1050 2950 30 0000 C CNN +F 2 "" H 1050 2950 60 0000 C CNN +F 3 "" H 1050 2950 60 0000 C CNN + 9 1050 2950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 685A7E75 +P 9700 3450 +F 0 "U1" H 9750 3550 30 0000 C CNN +F 1 "PORT" H 9700 3450 30 0000 C CNN +F 2 "" H 9700 3450 60 0000 C CNN +F 3 "" H 9700 3450 60 0000 C CNN + 10 9700 3450 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 11 1 685A80FC +P 9700 3650 +F 0 "U1" H 9750 3750 30 0000 C CNN +F 1 "PORT" H 9700 3650 30 0000 C CNN +F 2 "" H 9700 3650 60 0000 C CNN +F 3 "" H 9700 3650 60 0000 C CNN + 11 9700 3650 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 12 1 685A814D +P 1050 2150 +F 0 "U1" H 1100 2250 30 0000 C CNN +F 1 "PORT" H 1050 2150 30 0000 C CNN +F 2 "" H 1050 2150 60 0000 C CNN +F 3 "" H 1050 2150 60 0000 C CNN + 12 1050 2150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 685A83A6 +P 1400 3650 +F 0 "U1" H 1450 3750 30 0000 C CNN +F 1 "PORT" H 1400 3650 30 0000 C CNN +F 2 "" H 1400 3650 60 0000 C CNN +F 3 "" H 1400 3650 60 0000 C CNN + 13 1400 3650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 685A84E7 +P 10450 2100 +F 0 "U1" H 10500 2200 30 0000 C CNN +F 1 "PORT" H 10450 2100 30 0000 C CNN +F 2 "" H 10450 2100 60 0000 C CNN +F 3 "" H 10450 2100 60 0000 C CNN + 14 10450 2100 + -1 0 0 1 +$EndComp +Wire Wire Line + 9450 3200 9350 3200 +Wire Wire Line + 9350 3200 9350 2950 +Connection ~ 9350 2950 +Wire Wire Line + 9450 3450 9200 3450 +Wire Wire Line + 9200 3450 9200 2950 +Connection ~ 9200 2950 +Wire Wire Line + 9450 3650 9050 3650 +Wire Wire Line + 9050 3650 9050 2950 +Connection ~ 9050 2950 +Wire Wire Line + 1300 2150 1500 2150 +Wire Wire Line + 1500 2150 1500 2950 +Wire Wire Line + 1300 2400 1500 2400 +Connection ~ 1500 2400 +Connection ~ 1500 2750 +Wire Wire Line + 1500 2950 1300 2950 +Wire Wire Line + 1650 3650 1900 3650 +Wire Wire Line + 1900 3650 1900 4500 +Wire Wire Line + 1650 3900 1900 3900 +Connection ~ 1900 3900 +Connection ~ 1900 4200 +Wire Wire Line + 1900 4500 1650 4500 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/cd4077b/cd4077b.sub b/library/SubcircuitLibrary/cd4077b/cd4077b.sub new file mode 100644 index 000000000..183a479ea --- /dev/null +++ b/library/SubcircuitLibrary/cd4077b/cd4077b.sub @@ -0,0 +1,19 @@ +* Subcircuit cd4077b +.subckt cd4077b net-_m2-pad2_ net-_m1-pad2_ net-_m10-pad1_ net-_m10-pad1_ net-_m1-pad2_ net-_m2-pad2_ net-_m1-pad3_ net-_m2-pad2_ net-_m1-pad2_ net-_m10-pad1_ net-_m10-pad1_ net-_m1-pad2_ net-_m2-pad2_ net-_m11-pad1_ +* c:\fossee\esim\library\subcircuitlibrary\cd4077b\cd4077b.cir +.include NMOS-180nm.lib +.include PMOS-180nm.lib +m1 net-_m1-pad1_ net-_m1-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m3 net-_m11-pad1_ net-_m1-pad2_ net-_m1-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m2 net-_m2-pad1_ net-_m2-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m4 net-_m11-pad1_ net-_m2-pad2_ net-_m2-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m6 net-_m1-pad1_ net-_m2-pad1_ net-_m10-pad2_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m5 net-_m1-pad1_ net-_m2-pad2_ net-_m10-pad2_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m7 net-_m10-pad2_ net-_m1-pad1_ net-_m7-pad3_ net-_m7-pad3_ CMOSN W=100u L=100u M=1 +m9 net-_m2-pad1_ net-_m1-pad1_ net-_m10-pad2_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +m8 net-_m7-pad3_ net-_m2-pad1_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m10 net-_m10-pad1_ net-_m10-pad2_ net-_m1-pad3_ net-_m1-pad3_ CMOSN W=100u L=100u M=1 +m11 net-_m11-pad1_ net-_m10-pad2_ net-_m10-pad1_ net-_m11-pad1_ CMOSP W=100u L=100u M=1 +* Control Statements + +.ends cd4077b \ No newline at end of file diff --git a/library/SubcircuitLibrary/cd4077b/cd4077b_Previous_Values.xml b/library/SubcircuitLibrary/cd4077b/cd4077b_Previous_Values.xml new file mode 100644 index 000000000..e8d19e0d7 --- /dev/null +++ b/library/SubcircuitLibrary/cd4077b/cd4077b_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\NMOS-180nm.libC:\FOSSEE\eSim\library\deviceModelLibrary\MOS\PMOS-180nm.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes025010secmssec \ No newline at end of file diff --git a/library/SubcircuitLibrary/dm74ls51/3_and-cache.lib b/library/SubcircuitLibrary/dm74ls51/3_and-cache.lib new file mode 100644 index 000000000..af0586415 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/3_and-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/dm74ls51/3_and.cir b/library/SubcircuitLibrary/dm74ls51/3_and.cir new file mode 100644 index 000000000..ba296cf01 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/3_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\3_and\3_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/26/19 18:42:57 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad4_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT + +.end diff --git a/library/SubcircuitLibrary/dm74ls51/3_and.cir.out b/library/SubcircuitLibrary/dm74ls51/3_and.cir.out new file mode 100644 index 000000000..d7cf79a07 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/3_and.cir.out @@ -0,0 +1,20 @@ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/dm74ls51/3_and.pro b/library/SubcircuitLibrary/dm74ls51/3_and.pro new file mode 100644 index 000000000..00597a5ad --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/3_and.pro @@ -0,0 +1,43 @@ +update=05/31/19 15:26:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=eSim_Analog +LibName2=eSim_Devices +LibName3=eSim_Digital +LibName4=eSim_Hybrid +LibName5=eSim_Miscellaneous +LibName6=eSim_Plot +LibName7=eSim_Power +LibName8=eSim_User +LibName9=eSim_Sources +LibName10=eSim_Subckt diff --git a/library/SubcircuitLibrary/dm74ls51/3_and.sch b/library/SubcircuitLibrary/dm74ls51/3_and.sch new file mode 100644 index 000000000..d6ac89f95 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/3_and.sch @@ -0,0 +1,130 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:3_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U2 +U 1 1 5C9A24D8 +P 4250 2700 +F 0 "U2" H 4250 2700 60 0000 C CNN +F 1 "d_and" H 4300 2800 60 0000 C CNN +F 2 "" H 4250 2700 60 0000 C CNN +F 3 "" H 4250 2700 60 0000 C CNN + 1 4250 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 5C9A2538 +P 5150 2900 +F 0 "U3" H 5150 2900 60 0000 C CNN +F 1 "d_and" H 5200 3000 60 0000 C CNN +F 2 "" H 5150 2900 60 0000 C CNN +F 3 "" H 5150 2900 60 0000 C CNN + 1 5150 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 5C9A259A +P 3050 2600 +F 0 "U1" H 3100 2700 30 0000 C CNN +F 1 "PORT" H 3050 2600 30 0000 C CNN +F 2 "" H 3050 2600 60 0000 C CNN +F 3 "" H 3050 2600 60 0000 C CNN + 1 3050 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A25D9 +P 3050 2800 +F 0 "U1" H 3100 2900 30 0000 C CNN +F 1 "PORT" H 3050 2800 30 0000 C CNN +F 2 "" H 3050 2800 60 0000 C CNN +F 3 "" H 3050 2800 60 0000 C CNN + 2 3050 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A260A +P 3050 3100 +F 0 "U1" H 3100 3200 30 0000 C CNN +F 1 "PORT" H 3050 3100 30 0000 C CNN +F 2 "" H 3050 3100 60 0000 C CNN +F 3 "" H 3050 3100 60 0000 C CNN + 3 3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2637 +P 6900 2850 +F 0 "U1" H 6950 2950 30 0000 C CNN +F 1 "PORT" H 6900 2850 30 0000 C CNN +F 2 "" H 6900 2850 60 0000 C CNN +F 3 "" H 6900 2850 60 0000 C CNN + 4 6900 2850 + -1 0 0 1 +$EndComp +Wire Wire Line + 4700 2650 4700 2800 +Wire Wire Line + 5600 2850 6650 2850 +Wire Wire Line + 3800 2600 3300 2600 +Wire Wire Line + 3800 2700 3300 2700 +Wire Wire Line + 3300 2700 3300 2800 +Wire Wire Line + 3300 3100 4700 3100 +Wire Wire Line + 4700 3100 4700 2900 +Text Notes 3500 2600 0 60 ~ 12 +in1 +Text Notes 3450 2800 0 60 ~ 12 +in2\n +Text Notes 3500 3100 0 60 ~ 12 +in3 +Text Notes 6100 2850 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/dm74ls51/3_and.sub b/library/SubcircuitLibrary/dm74ls51/3_and.sub new file mode 100644 index 000000000..3d9120bb6 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/3_and.sub @@ -0,0 +1,14 @@ +* Subcircuit 3_and +.subckt 3_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/dm74ls51/3_and_Previous_Values.xml b/library/SubcircuitLibrary/dm74ls51/3_and_Previous_Values.xml new file mode 100644 index 000000000..abc5faaae --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/3_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/dm74ls51/analysis b/library/SubcircuitLibrary/dm74ls51/analysis new file mode 100644 index 000000000..0a6c83b5a --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/analysis @@ -0,0 +1 @@ +.tran 250e-03 10e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/dm74ls51/dm74ls51-cache.lib b/library/SubcircuitLibrary/dm74ls51/dm74ls51-cache.lib new file mode 100644 index 000000000..cf18b4a95 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/dm74ls51-cache.lib @@ -0,0 +1,98 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and +# +DEF 3_and X 0 40 Y Y 1 F N +F0 "X" 100 -50 60 H V C CNN +F1 "3_and" 150 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 150 50 158 716 -716 0 1 0 N 200 200 200 -100 +P 2 0 1 0 -150 200 200 200 N +P 3 0 1 0 -150 200 -150 -100 200 -100 N +X in1 1 -350 150 200 R 50 50 1 1 I +X in2 2 -350 50 200 R 50 50 1 1 I +X in3 3 -350 -50 200 R 50 50 1 1 I +X out 4 500 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_nor +# +DEF d_nor U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nor" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/dm74ls51/dm74ls51.cir b/library/SubcircuitLibrary/dm74ls51/dm74ls51.cir new file mode 100644 index 000000000..e148710b4 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/dm74ls51.cir @@ -0,0 +1,17 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\dm74ls51\dm74ls51.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/03/25 20:46:55 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +X1 Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad1_ Net-_U3-Pad1_ 3_and +X2 Net-_U1-Pad11_ Net-_U1-Pad10_ Net-_U1-Pad9_ Net-_U3-Pad2_ 3_and +U5 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U4-Pad1_ d_and +U2 Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U2-Pad3_ d_and +U3 Net-_U3-Pad1_ Net-_U3-Pad2_ Net-_U1-Pad8_ d_nor +U4 Net-_U4-Pad1_ Net-_U2-Pad3_ Net-_U1-Pad6_ d_nor +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ PORT + +.end diff --git a/library/SubcircuitLibrary/dm74ls51/dm74ls51.cir.out b/library/SubcircuitLibrary/dm74ls51/dm74ls51.cir.out new file mode 100644 index 000000000..8494a0915 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/dm74ls51.cir.out @@ -0,0 +1,31 @@ +* c:\fossee\esim\library\subcircuitlibrary\dm74ls51\dm74ls51.cir + +.include 3_and.sub +x1 net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad1_ net-_u3-pad1_ 3_and +x2 net-_u1-pad11_ net-_u1-pad10_ net-_u1-pad9_ net-_u3-pad2_ 3_and +* u5 net-_u1-pad2_ net-_u1-pad3_ net-_u4-pad1_ d_and +* u2 net-_u1-pad4_ net-_u1-pad5_ net-_u2-pad3_ d_and +* u3 net-_u3-pad1_ net-_u3-pad2_ net-_u1-pad8_ d_nor +* u4 net-_u4-pad1_ net-_u2-pad3_ net-_u1-pad6_ d_nor +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ port +a1 [net-_u1-pad2_ net-_u1-pad3_ ] net-_u4-pad1_ u5 +a2 [net-_u1-pad4_ net-_u1-pad5_ ] net-_u2-pad3_ u2 +a3 [net-_u3-pad1_ net-_u3-pad2_ ] net-_u1-pad8_ u3 +a4 [net-_u4-pad1_ net-_u2-pad3_ ] net-_u1-pad6_ u4 +* Schematic Name: d_and, NgSpice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u3 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u4 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 250e-03 10e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/dm74ls51/dm74ls51.pro b/library/SubcircuitLibrary/dm74ls51/dm74ls51.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/dm74ls51.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/dm74ls51/dm74ls51.sch b/library/SubcircuitLibrary/dm74ls51/dm74ls51.sch new file mode 100644 index 000000000..7f0d40034 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/dm74ls51.sch @@ -0,0 +1,312 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L 3_and X1 +U 1 1 68669C7A +P 5350 2450 +F 0 "X1" H 5450 2400 60 0000 C CNN +F 1 "3_and" H 5500 2600 60 0000 C CNN +F 2 "" H 5350 2450 60 0000 C CNN +F 3 "" H 5350 2450 60 0000 C CNN + 1 5350 2450 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X2 +U 1 1 68669CC5 +P 5350 2950 +F 0 "X2" H 5450 2900 60 0000 C CNN +F 1 "3_and" H 5500 3100 60 0000 C CNN +F 2 "" H 5350 2950 60 0000 C CNN +F 3 "" H 5350 2950 60 0000 C CNN + 1 5350 2950 + 1 0 0 -1 +$EndComp +$Comp +L d_and U5 +U 1 1 68669D04 +P 5400 3900 +F 0 "U5" H 5400 3900 60 0000 C CNN +F 1 "d_and" H 5450 4000 60 0000 C CNN +F 2 "" H 5400 3900 60 0000 C CNN +F 3 "" H 5400 3900 60 0000 C CNN + 1 5400 3900 + 1 0 0 -1 +$EndComp +$Comp +L d_and U2 +U 1 1 68669D39 +P 5400 4300 +F 0 "U2" H 5400 4300 60 0000 C CNN +F 1 "d_and" H 5450 4400 60 0000 C CNN +F 2 "" H 5400 4300 60 0000 C CNN +F 3 "" H 5400 4300 60 0000 C CNN + 1 5400 4300 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U3 +U 1 1 68669D6A +P 6650 2700 +F 0 "U3" H 6650 2700 60 0000 C CNN +F 1 "d_nor" H 6700 2800 60 0000 C CNN +F 2 "" H 6650 2700 60 0000 C CNN +F 3 "" H 6650 2700 60 0000 C CNN + 1 6650 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U4 +U 1 1 68669DBD +P 6750 4100 +F 0 "U4" H 6750 4100 60 0000 C CNN +F 1 "d_nor" H 6800 4200 60 0000 C CNN +F 2 "" H 6750 4100 60 0000 C CNN +F 3 "" H 6750 4100 60 0000 C CNN + 1 6750 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 68669E78 +P 3650 1950 +F 0 "U1" H 3700 2050 30 0000 C CNN +F 1 "PORT" H 3650 1950 30 0000 C CNN +F 2 "" H 3650 1950 60 0000 C CNN +F 3 "" H 3650 1950 60 0000 C CNN + 1 3650 1950 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 2 1 68669F10 +P 4250 3450 +F 0 "U1" H 4300 3550 30 0000 C CNN +F 1 "PORT" H 4250 3450 30 0000 C CNN +F 2 "" H 4250 3450 60 0000 C CNN +F 3 "" H 4250 3450 60 0000 C CNN + 2 4250 3450 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 3 1 68669FB7 +P 4000 3450 +F 0 "U1" H 4050 3550 30 0000 C CNN +F 1 "PORT" H 4000 3450 30 0000 C CNN +F 2 "" H 4000 3450 60 0000 C CNN +F 3 "" H 4000 3450 60 0000 C CNN + 3 4000 3450 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 4 1 68669FF6 +P 4000 4700 +F 0 "U1" H 4050 4800 30 0000 C CNN +F 1 "PORT" H 4000 4700 30 0000 C CNN +F 2 "" H 4000 4700 60 0000 C CNN +F 3 "" H 4000 4700 60 0000 C CNN + 4 4000 4700 + 0 -1 -1 0 +$EndComp +$Comp +L PORT U1 +U 5 1 6866A06F +P 4250 4700 +F 0 "U1" H 4300 4800 30 0000 C CNN +F 1 "PORT" H 4250 4700 30 0000 C CNN +F 2 "" H 4250 4700 60 0000 C CNN +F 3 "" H 4250 4700 60 0000 C CNN + 5 4250 4700 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 5850 2400 6200 2400 +Wire Wire Line + 6200 2400 6200 2600 +Wire Wire Line + 6200 2700 6200 2900 +Wire Wire Line + 6200 2900 5850 2900 +Wire Wire Line + 5850 3850 6300 3850 +Wire Wire Line + 6300 3850 6300 4000 +Wire Wire Line + 6300 4100 6300 4250 +Wire Wire Line + 6300 4250 5850 4250 +Wire Wire Line + 4250 3700 4250 3800 +Wire Wire Line + 4250 3800 4950 3800 +Wire Wire Line + 4950 3900 4000 3900 +Wire Wire Line + 4000 3900 4000 3700 +Wire Wire Line + 4250 4450 4250 4300 +Wire Wire Line + 4250 4300 4950 4300 +Wire Wire Line + 4950 4200 4000 4200 +Wire Wire Line + 4000 4200 4000 4450 +$Comp +L PORT U1 +U 6 1 6866A23A +P 7800 4050 +F 0 "U1" H 7850 4150 30 0000 C CNN +F 1 "PORT" H 7800 4050 30 0000 C CNN +F 2 "" H 7800 4050 60 0000 C CNN +F 3 "" H 7800 4050 60 0000 C CNN + 6 7800 4050 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 6866A31C +P 7700 2650 +F 0 "U1" H 7750 2750 30 0000 C CNN +F 1 "PORT" H 7700 2650 30 0000 C CNN +F 2 "" H 7700 2650 60 0000 C CNN +F 3 "" H 7700 2650 60 0000 C CNN + 8 7700 2650 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 9 1 6866A3A3 +P 3450 3100 +F 0 "U1" H 3500 3200 30 0000 C CNN +F 1 "PORT" H 3450 3100 30 0000 C CNN +F 2 "" H 3450 3100 60 0000 C CNN +F 3 "" H 3450 3100 60 0000 C CNN + 9 3450 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 6866A498 +P 3450 2900 +F 0 "U1" H 3500 3000 30 0000 C CNN +F 1 "PORT" H 3450 2900 30 0000 C CNN +F 2 "" H 3450 2900 60 0000 C CNN +F 3 "" H 3450 2900 60 0000 C CNN + 10 3450 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 6866A522 +P 3450 2700 +F 0 "U1" H 3500 2800 30 0000 C CNN +F 1 "PORT" H 3450 2700 30 0000 C CNN +F 2 "" H 3450 2700 60 0000 C CNN +F 3 "" H 3450 2700 60 0000 C CNN + 11 3450 2700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 6866A569 +P 4250 1950 +F 0 "U1" H 4300 2050 30 0000 C CNN +F 1 "PORT" H 4250 1950 30 0000 C CNN +F 2 "" H 4250 1950 60 0000 C CNN +F 3 "" H 4250 1950 60 0000 C CNN + 12 4250 1950 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 13 1 6866A5B8 +P 3950 1950 +F 0 "U1" H 4000 2050 30 0000 C CNN +F 1 "PORT" H 3950 1950 30 0000 C CNN +F 2 "" H 3950 1950 60 0000 C CNN +F 3 "" H 3950 1950 60 0000 C CNN + 13 3950 1950 + 0 1 1 0 +$EndComp +Wire Wire Line + 4250 2200 5000 2200 +Wire Wire Line + 5000 2200 5000 2300 +Wire Wire Line + 3950 2200 3950 2400 +Wire Wire Line + 3950 2400 5000 2400 +Wire Wire Line + 3650 2200 3650 2500 +Wire Wire Line + 3650 2500 5000 2500 +Wire Wire Line + 3700 2700 5000 2700 +Wire Wire Line + 5000 2700 5000 2800 +Wire Wire Line + 5000 2900 3700 2900 +Wire Wire Line + 3700 3100 5000 3100 +Wire Wire Line + 5000 3100 5000 3000 +Wire Wire Line + 7200 4050 7550 4050 +Wire Wire Line + 7100 2650 7450 2650 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/dm74ls51/dm74ls51.sub b/library/SubcircuitLibrary/dm74ls51/dm74ls51.sub new file mode 100644 index 000000000..35c5445f8 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/dm74ls51.sub @@ -0,0 +1,25 @@ +* Subcircuit dm74ls51 +.subckt dm74ls51 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ +* c:\fossee\esim\library\subcircuitlibrary\dm74ls51\dm74ls51.cir +.include 3_and.sub +x1 net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad1_ net-_u3-pad1_ 3_and +x2 net-_u1-pad11_ net-_u1-pad10_ net-_u1-pad9_ net-_u3-pad2_ 3_and +* u5 net-_u1-pad2_ net-_u1-pad3_ net-_u4-pad1_ d_and +* u2 net-_u1-pad4_ net-_u1-pad5_ net-_u2-pad3_ d_and +* u3 net-_u3-pad1_ net-_u3-pad2_ net-_u1-pad8_ d_nor +* u4 net-_u4-pad1_ net-_u2-pad3_ net-_u1-pad6_ d_nor +a1 [net-_u1-pad2_ net-_u1-pad3_ ] net-_u4-pad1_ u5 +a2 [net-_u1-pad4_ net-_u1-pad5_ ] net-_u2-pad3_ u2 +a3 [net-_u3-pad1_ net-_u3-pad2_ ] net-_u1-pad8_ u3 +a4 [net-_u4-pad1_ net-_u2-pad3_ ] net-_u1-pad6_ u4 +* Schematic Name: d_and, NgSpice Name: d_and +.model u5 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u3 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u4 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends dm74ls51 \ No newline at end of file diff --git a/library/SubcircuitLibrary/dm74ls51/dm74ls51_Previous_Values.xml b/library/SubcircuitLibrary/dm74ls51/dm74ls51_Previous_Values.xml new file mode 100644 index 000000000..1f9d5b233 --- /dev/null +++ b/library/SubcircuitLibrary/dm74ls51/dm74ls51_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes025010secmssecd_andd_andd_nord_norC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/eSim_Subckt.lib b/library/SubcircuitLibrary/eSim_Subckt.lib index 1a8a32397..35fa624df 100644 --- a/library/SubcircuitLibrary/eSim_Subckt.lib +++ b/library/SubcircuitLibrary/eSim_Subckt.lib @@ -1,5 +1,2809 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 10bitDAC +# +DEF 10bitDAC X 0 40 Y Y 1 F N +F0 "X" 0 50 60 H V C CNN +F1 "10bitDAC" -50 -50 60 H V C CNN +F2 "" 0 50 60 H I C CNN +F3 "" 0 50 60 H I C CNN +DRAW +S -500 500 400 -600 0 1 0 N +X D0 1 -700 -500 200 R 50 50 1 1 I +X D1 2 -700 -400 200 R 50 50 1 1 I +X D2 3 -700 -300 200 R 50 50 1 1 I +X D3 4 -700 -200 200 R 50 50 1 1 I +X D4 5 -700 -100 200 R 50 50 1 1 I +X D5 6 -700 0 200 R 50 50 1 1 I +X D6 7 -700 100 200 R 50 50 1 1 I +X D7 8 -700 200 200 R 50 50 1 1 I +X D8 9 -700 300 200 R 50 50 1 1 I +X D9 10 -700 400 200 R 50 50 1 1 I +X AnalogOut 11 600 350 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 2BITMUL +# +DEF 2BITMUL X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "2BITMUL" 0 0 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -300 400 300 -400 0 1 0 N +X A0 1 -500 300 200 R 50 50 1 1 I +X A1 2 -500 150 200 R 50 50 1 1 I +X B0 3 -500 -50 200 R 50 50 1 1 I +X B1 4 -500 -250 200 R 50 50 1 1 I +X M0 5 500 250 200 L 50 50 1 1 O +X M1 6 500 100 200 L 50 50 1 1 O +X M2 7 500 -50 200 L 50 50 1 1 O +X M3 8 500 -250 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 2_in_and +# +DEF 2_in_and X 0 40 Y Y 1 F N +F0 "X" -50 0 60 H V C CNN +F1 "2_in_and" -100 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A -50 0 206 760 -760 0 1 0 N 0 200 0 -200 +P 2 0 1 0 -250 200 -250 -200 N +P 2 0 1 0 -250 200 0 200 N +P 2 0 1 0 0 -200 0 -200 N +P 3 0 1 0 -250 -200 -50 -200 0 -200 N +X vdd 1 -450 150 200 R 50 50 1 1 I +X Gnd 2 -450 -150 200 R 50 50 1 1 I +X in1 3 -450 50 200 R 50 50 1 1 I +X in2 4 -450 -50 200 R 50 50 1 1 I +X out 5 350 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 3_and +# +DEF 3_and X 0 40 Y Y 1 F N +F0 "X" 100 -50 60 H V C CNN +F1 "3_and" 150 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 150 50 158 716 -716 0 1 0 N 200 200 200 -100 +P 2 0 1 0 -150 200 200 200 N +P 3 0 1 0 -150 200 -150 -100 200 -100 N +X in1 1 -350 150 200 R 50 50 1 1 I +X in2 2 -350 50 200 R 50 50 1 1 I +X in3 3 -350 -50 200 R 50 50 1 1 I +X out 4 500 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 3_in_and +# +DEF 3_in_and X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "3_in_and" 0 -300 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 0 0 255 787 -787 0 1 0 N 50 250 50 -250 +P 2 0 1 0 -250 250 50 250 N +P 3 0 1 0 -250 250 -250 -250 50 -250 N +X in1 1 -450 100 200 R 50 50 1 1 I +X in2 2 -450 0 200 R 50 50 1 1 I +X VDD 3 -450 200 200 R 50 50 1 1 I +X GND 4 -450 -200 200 R 50 50 1 1 I +X in3 5 -450 -100 200 R 50 50 1 1 I +X OUT 6 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 4_OR +# +DEF 4_OR X 0 40 Y Y 1 F N +F0 "X" 150 -100 60 H V C CNN +F1 "4_OR" 150 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -800 0 650 226 -226 0 1 0 N -200 250 -200 -250 +A -73 134 444 -599 -176 0 1 0 N 150 -250 350 0 +A -30 -99 393 627 146 0 1 0 N 150 250 350 0 +P 2 0 1 0 -200 -250 150 -250 N +P 2 0 1 0 -200 250 150 250 N +X in1 1 -350 150 200 R 50 50 1 1 I +X in2 2 -350 50 200 R 50 50 1 1 I +X in3 3 -350 -50 200 R 50 50 1 1 I +X in4 4 -350 -150 200 R 50 50 1 1 I +X out 5 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 4_and +# +DEF 4_and X 0 40 Y Y 1 F N +F0 "X" 50 -50 60 H V C CNN +F1 "4_and" 100 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 100 0 206 760 -760 0 1 0 N 150 200 150 -200 +P 2 0 1 0 -200 200 150 200 N +P 4 0 1 0 -200 200 -200 -200 50 -200 150 -200 N +X in1 1 -400 150 200 R 50 50 1 1 I +X in2 2 -400 50 200 R 50 50 1 1 I +X in3 3 -400 -50 200 R 50 50 1 1 I +X in4 4 -400 -150 200 R 50 50 1 1 I +X out 5 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 4_in_and +# +DEF 4_in_and X 0 40 Y Y 1 F N +F0 "X" -50 0 60 H V C CNN +F1 "4_in_and" -100 -350 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A -100 0 304 805 -805 0 1 0 N -50 300 -50 -300 +P 2 0 1 0 -350 -300 -50 -300 N +P 2 0 1 0 -350 300 -350 -300 N +P 2 0 1 0 -350 300 -100 300 N +P 2 0 1 0 -100 300 -50 300 N +X vdd 1 -550 250 200 R 50 50 1 1 I +X in1 2 -550 150 200 R 50 50 1 1 I +X in2 3 -550 50 200 R 50 50 1 1 I +X in3 4 -550 -50 200 R 50 50 1 1 I +X Gnd 5 -550 -250 200 R 50 50 1 1 I +X in4 6 -550 -150 200 R 50 50 1 1 I +X out 7 400 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# 556 +# +DEF 556 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "556" 0 0 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -300 400 250 -550 0 1 0 N +X dis1 1 -500 150 200 R 50 50 1 1 I +X thr1 2 -500 -150 200 R 50 50 1 1 I +X cv1 3 -150 -750 200 U 50 50 1 1 I +X rst1 4 -200 600 200 D 50 50 1 1 I +X out1 5 -500 0 200 R 50 50 1 1 O +X trig1 6 -500 -300 200 R 50 50 1 1 I +X gnd 7 0 -750 200 U 50 50 1 1 I +X trig2 8 450 -300 200 L 50 50 1 1 I +X out2 9 450 0 200 L 50 50 1 1 O +X rst2 10 100 600 200 D 50 50 1 1 I +X cv2 11 150 -750 200 U 50 50 1 1 I +X thr2 12 450 -150 200 L 50 50 1 1 I +X dis2 13 450 150 200 L 50 50 1 1 I +X vcc 14 -50 600 200 D 50 50 1 1 I +ENDDRAW +ENDDEF +# +# 5_and +# +DEF 5_and X 0 40 Y Y 1 F N +F0 "X" 50 -100 60 H V C CNN +F1 "5_and" 100 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 100 0 255 787 -787 0 1 0 N 150 250 150 -250 +P 2 0 1 0 -250 250 150 250 N +P 3 0 1 0 -250 250 -250 -250 150 -250 N +X in1 1 -450 200 200 R 50 50 1 1 I +X in2 2 -450 100 200 R 50 50 1 1 I +X in3 3 -450 0 200 R 50 50 1 1 I +X in4 4 -450 -100 200 R 50 50 1 1 I +X in5 5 -450 -200 200 R 50 50 1 1 I +X out 6 550 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CD4042B +# +DEF CD4042B X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CD4042B" 0 -450 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -450 400 450 -400 0 1 0 N +X CLOCK 1 -650 -150 200 R 50 50 1 1 I +X POLARITY 2 -650 -250 200 R 50 50 1 1 I +X D1 3 -650 250 200 R 50 50 1 1 I +X D2 4 -650 150 200 R 50 50 1 1 I +X D3 5 -650 50 200 R 50 50 1 1 I +X D4 6 -650 -50 200 R 50 50 1 1 I +X VDD 7 -650 350 200 R 50 50 1 1 I +X GND 8 -650 -350 200 R 50 50 1 1 I +X Q1 9 650 350 200 L 50 50 1 1 O +X Q2 10 650 250 200 L 50 50 1 1 O +X Q3 11 650 150 200 L 50 50 1 1 O +X Q4 12 650 50 200 L 50 50 1 1 O +X Q1_Bar 13 650 -50 200 L 50 50 1 1 O +X Q2_Bar 14 650 -150 200 L 50 50 1 1 O +X Q3_Bar 15 650 -250 200 L 50 50 1 1 O +X Q4_Bar 16 650 -350 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CD4044BMS +# +DEF CD4044BMS X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CD4044BMS" 0 -450 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -300 350 350 -350 0 1 0 N +X S1 1 -500 200 200 R 50 50 1 1 I +X E 2 0 550 200 D 50 50 1 1 I +X R1 3 -500 -200 200 R 50 50 1 1 I +X S2 4 -500 100 200 R 50 50 1 1 I +X R2 5 -500 -300 200 R 50 50 1 1 I +X S3 6 -500 0 200 R 50 50 1 1 I +X R3 7 550 300 200 L 50 50 1 1 I +X S4 8 -500 -100 200 R 50 50 1 1 I +X R4 9 550 200 200 L 50 50 1 1 I +X GND 10 550 -300 200 L 50 50 1 1 I +X VDD 11 -500 300 200 R 50 50 1 1 I +X O1 12 550 100 200 L 50 50 1 1 O +X O3 13 550 -100 200 L 50 50 1 1 O +X O2 14 550 0 200 L 50 50 1 1 O +X O4 15 550 -200 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CD4068B +# +DEF CD4068B X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CD4068B" 0 -350 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -300 300 350 -300 0 1 0 N +X in1 1 -500 150 200 R 50 50 1 1 I +X in2 2 -500 50 200 R 50 50 1 1 I +X in3 3 -500 -50 200 R 50 50 1 1 I +X in4 4 -500 -150 200 R 50 50 1 1 I +X in5 5 -500 -250 200 R 50 50 1 1 I +X in6 6 550 250 200 L 50 50 1 1 I +X in7 7 550 150 200 L 50 50 1 1 I +X in8 8 550 50 200 L 50 50 1 1 I +X VDD 9 -500 250 200 R 50 50 1 1 I +X GND 10 550 -250 200 L 50 50 1 1 I +X OUT 11 550 -50 200 L 50 50 1 1 O +X OUT_Bar 12 550 -150 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CMOS_BUF +# +DEF CMOS_BUF X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_BUF" 0 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +P 4 0 1 0 -250 150 -250 -150 250 0 -250 150 N +X VDD 1 -450 100 200 R 50 50 1 1 I +X GND 2 -450 -100 200 R 50 50 1 1 I +X IN 3 -450 0 200 R 50 50 1 1 I +X OUT 4 450 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CMOS_INVTR +# +DEF CMOS_INVTR X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "CMOS_INVTR" -50 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +C 250 0 50 0 1 0 N +P 2 0 1 0 -250 150 200 0 N +P 3 0 1 0 -250 150 -250 -150 200 0 N +X IN 1 -450 0 200 R 50 50 1 1 I +X VDD 2 -450 100 200 R 50 50 1 1 I +X GND 3 -450 -100 200 R 50 50 1 1 I +X OUT 4 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# CMOS_NAND +# +DEF CMOS_NAND X 0 40 Y Y 1 F N +F0 "X" -100 -150 60 H V C CNN +F1 "CMOS_NAND" 0 -50 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +A 150 -50 381 668 -668 0 1 0 N 300 300 300 -400 +C 550 0 50 0 1 0 N +P 2 0 1 0 -350 300 300 300 N +P 3 0 1 0 -350 300 -350 -400 300 -400 N +X in1 1 -550 250 200 R 50 50 1 1 I +X in2 2 -550 -300 200 R 50 50 1 1 I +X out 3 800 0 279 L 79 79 1 1 I +ENDDRAW +ENDDEF +# +# Clock_pulse_generator +# +DEF Clock_pulse_generator X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "Clock_pulse_generator" 0 -100 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -550 200 600 -300 0 1 0 N +X Vdd 1 -750 100 200 R 50 50 1 1 I +X R 2 -750 -50 200 R 50 50 1 1 I +X C 3 -750 -200 200 R 50 50 1 1 I +X Clkout 4 800 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# DFF_CE +# +DEF DFF_CE X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "DFF_CE" 0 -200 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -400 150 300 -150 0 1 0 N +X CLK 1 -600 -100 200 R 50 50 1 1 I +X CLK_EN 2 -600 0 200 R 50 50 1 1 I +X D 3 -600 100 200 R 50 50 1 1 I +X VDD 4 500 100 200 L 50 50 1 1 I +X GND 5 500 -100 200 L 50 50 1 1 I +X OUT 6 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# DS_blk +# +DEF DS_blk X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "DS_blk" 50 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -250 200 250 -200 0 1 0 N +X in1 1 -450 150 200 R 50 50 1 1 I +X ws1 2 -450 50 200 R 50 50 1 1 I +X ws2 3 -450 -50 200 R 50 50 1 1 I +X in2 4 -450 -150 200 R 50 50 1 1 I +X clk 5 450 50 200 L 50 50 1 1 I C +X vdd 6 450 150 200 L 50 50 1 1 I +X gnd 7 450 -150 200 L 50 50 1 1 I +X out 8 450 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# D_FF +# +DEF D_FF X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "D_FF" 50 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -250 200 300 -200 0 1 0 N +X D 1 -450 50 200 R 50 50 1 1 I +X CLK 2 -450 -50 200 R 50 50 1 1 I +X VDD 3 -450 150 200 R 50 50 1 1 I +X GND 4 -450 -150 200 R 50 50 1 1 I +X OUT 5 500 0 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# D_Latch +# +DEF D_Latch X 0 40 Y Y 1 F N +F0 "X" -50 0 60 H V C CNN +F1 "D_Latch" 0 -250 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -250 200 300 -200 0 1 0 N +X LE 1 -450 100 200 R 50 50 1 1 I +X D 2 -450 0 200 R 50 50 1 1 I +X RE 3 -450 -100 200 R 50 50 1 1 I +X Gnd 4 0 -400 200 U 50 50 1 1 I +X Vdd 5 0 400 200 D 50 50 1 1 I +X Q 6 500 50 200 L 50 50 1 1 O +X Q_Bar 7 500 -50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Decoder_38 +# +DEF Decoder_38 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "Decoder_38" 0 -500 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -300 450 250 -450 0 1 0 N +X S0_B 1 -500 300 200 R 50 50 1 1 I I +X S1_B 2 -500 200 200 R 50 50 1 1 I I +X S2_B 3 -500 100 200 R 50 50 1 1 I I +X S0 4 -500 -100 200 R 50 50 1 1 I +X S1 5 -500 -200 200 R 50 50 1 1 I +X S2 6 -500 -300 200 R 50 50 1 1 I +X G 7 -500 0 200 R 50 50 1 1 I I +X Vdd 8 -500 400 200 R 50 50 1 1 I +X Gnd 9 -500 -400 200 R 50 50 1 1 I +X D6 10 450 -300 200 L 50 50 1 1 O +X D4 11 450 -100 200 L 50 50 1 1 O +X D0 12 450 400 200 L 50 50 1 1 O +X D7 13 450 -400 200 L 50 50 1 1 O +X D5 14 450 -200 200 L 50 50 1 1 O +X D2 15 450 200 200 L 50 50 1 1 O +X D1 16 450 300 200 L 50 50 1 1 O +X D3 17 450 100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# Decoder_38_Address_Latch_storage +# +DEF Decoder_38_Address_Latch_storage X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "Decoder_38_Address_Latch_storage" 0 -600 60 H V C CNN +F2 "" 0 0 60 H I C CNN +F3 "" 0 0 60 H I C CNN +DRAW +S -250 550 200 -550 0 1 0 N +X Q1 1 400 350 200 L 50 50 1 1 O +X Q3 2 400 150 200 L 50 50 1 1 O +X Q2 3 400 250 200 L 50 50 1 1 O +X Q4 4 400 50 200 L 50 50 1 1 O +X Vdd 5 -450 500 200 R 50 50 1 1 I +X Gnd 6 -450 -500 200 R 50 50 1 1 I +X Q5 7 400 -50 200 L 50 50 1 1 O +X Q6 8 400 -150 200 L 50 50 1 1 O +X Q7 9 400 -250 200 L 50 50 1 1 O +X Q8 10 400 -350 200 L 50 50 1 1 O +X RE 11 -450 -300 200 R 50 50 1 1 I +X D 12 -450 -400 200 R 50 50 1 1 I +X S0_B 13 -450 400 200 R 50 50 1 1 I I +X S1_B 14 -450 300 200 R 50 50 1 1 I I +X S2_B 15 -450 200 200 R 50 50 1 1 I I +X G 16 -450 -200 200 R 50 50 1 1 I I +X S0 17 -450 100 200 R 50 50 1 1 I +X S1 18 -450 0 200 R 50 50 1 1 I +X S2 19 -450 -100 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# IC_4002 +# +DEF IC_4002 X 0 40 Y Y 1 F N +F0 "X" 0 150 60 H V C CNN +F1 "IC_4002" 0 0 60 H V C CNN +F2 "" 50 -150 60 H V C CNN +F3 "" 50 -150 60 H V C CNN +DRAW +S -250 350 250 -400 0 1 0 N +X 1Y 1 -450 250 200 R 50 50 1 1 O +X 1A 2 -450 150 200 R 50 50 1 1 I +X 1B 3 -450 50 200 R 50 50 1 1 I +X 1C 4 -450 -50 200 R 50 50 1 1 I +X 1D 5 -450 -150 200 R 50 50 1 1 I +X NC 6 -450 -250 200 R 50 50 1 1 I +X GND 7 -450 -350 200 R 50 50 1 1 I +X NC 8 450 -350 200 L 50 50 1 1 I +X 2A 9 450 -250 200 L 50 50 1 1 I +X 2B 10 450 -150 200 L 50 50 1 1 I +X 2C 11 450 -50 200 L 50 50 1 1 I +X 2D 12 450 50 200 L 50 50 1 1 I +X 2Y 13 450 150 200 L 50 50 1 1 O +X VCC 14 450 250 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# IC_4012 +# +DEF IC_4012 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "IC_4012" 0 200 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -300 400 350 -400 0 1 0 N +X Q1 1 -500 300 200 R 50 50 1 1 O +X A1 2 -500 200 200 R 50 50 1 1 I +X B1 3 -500 100 200 R 50 50 1 1 I +X C1 4 -500 0 200 R 50 50 1 1 I +X D1 5 -500 -100 200 R 50 50 1 1 I +X NC 6 -500 -200 200 R 50 50 1 1 N +X VSS 7 -500 -300 200 R 50 50 1 1 I +X NC 8 550 -300 200 L 50 50 1 1 N +X A2 9 550 -200 200 L 50 50 1 1 I +X B2 10 550 -100 200 L 50 50 1 1 I +X C2 11 550 0 200 L 50 50 1 1 I +X D2 12 550 100 200 L 50 50 1 1 I +X Q2 13 550 200 200 L 50 50 1 1 O +X VDD 14 550 300 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# IC_4017 +# +DEF IC_4017 X 0 40 Y Y 1 F N +F0 "X" 0 0 60 H V C CNN +F1 "IC_4017" 0 0 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -350 850 400 -850 0 1 0 N +X 1 1 600 650 200 L 50 50 1 1 O +X 2 2 600 500 200 L 50 50 1 1 O +X 3 3 600 350 200 L 50 50 1 1 O +X 4 4 600 200 200 L 50 50 1 1 O +X 5 5 600 50 200 L 50 50 1 1 O +X 6 6 600 -100 200 L 50 50 1 1 O +X 7 7 600 -250 200 L 50 50 1 1 O +X 8 8 600 -400 200 L 50 50 1 1 O +X 9 9 600 -600 200 L 50 50 1 1 O +X 10 10 600 -750 200 L 50 50 1 1 O +X RST 11 -550 -400 200 R 50 50 1 1 I +X CLK 12 -550 350 200 R 50 50 1 1 I +ENDDRAW +ENDDEF +# +# IC_4023 +# +DEF IC_4023 X 0 40 Y Y 1 F N +F0 "X" 0 -100 60 H V C CNN +F1 "IC_4023" 0 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -300 450 300 -450 0 1 0 N +X A1 1 -500 300 200 R 50 50 1 1 I +X B1 2 -500 200 200 R 50 50 1 1 I +X A2 3 -500 100 200 R 50 50 1 1 I +X B2 4 -500 0 200 R 50 50 1 1 I +X C2 5 -500 -100 200 R 50 50 1 1 I +X Q2 6 -500 -200 200 R 50 50 1 1 O +X Vss 7 -500 -300 200 R 50 50 1 1 I +X C1 8 500 -300 200 L 50 50 1 1 I +X Q1 9 500 -200 200 L 50 50 1 1 O +X Q3 10 500 -100 200 L 50 50 1 1 O +X C3 11 500 0 200 L 50 50 1 1 I +X B3 12 500 100 200 L 50 50 1 1 I +X A3 13 500 200 200 L 50 50 1 1 I +X Vdd 14 500 300 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# IC_4028 +# +DEF IC_4028 X 0 40 Y Y 1 F N +F0 "X" 0 -100 60 H V C CNN +F1 "IC_4028" 0 50 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -300 450 300 -450 0 1 0 N +X Q4 1 -500 350 200 R 50 50 1 1 O +X Q2 2 -500 250 200 R 50 50 1 1 O +X Q0 3 -500 150 200 R 50 50 1 1 O +X Q7 4 -500 50 200 R 50 50 1 1 O +X Q9 5 -500 -50 200 R 50 50 1 1 O +X Q5 6 -500 -150 200 R 50 50 1 1 O +X Q6 7 -500 -250 200 R 50 50 1 1 O +X Vss 8 -500 -350 200 R 50 50 1 1 I +X Q8 9 500 -350 200 L 50 50 1 1 O +X A0 10 500 -250 200 L 50 50 1 1 I +X A3 11 500 -150 200 L 50 50 1 1 I +X A2 12 500 -50 200 L 50 50 1 1 I +X A1 13 500 50 200 L 50 50 1 1 I +X Q1 14 500 150 200 L 50 50 1 1 O +X Q3 15 500 250 200 L 50 50 1 1 O +X Vdd 16 500 350 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# IC_4073 +# +DEF IC_4073 X 0 40 Y Y 1 F N +F0 "X" 0 -100 60 H V C CNN +F1 "IC_4073" 0 50 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +S -300 400 300 -400 0 1 0 N +X A1 1 -500 300 200 R 50 50 1 1 I +X B1 2 -500 200 200 R 50 50 1 1 I +X A2 3 -500 100 200 R 50 50 1 1 I +X B2 4 -500 0 200 R 50 50 1 1 I +X C2 5 -500 -100 200 R 50 50 1 1 I +X Q2 6 -500 -200 200 R 50 50 1 1 O +X Vss 7 -500 -300 200 R 50 50 1 1 I +X C1 8 500 -300 200 L 50 50 1 1 I +X Q1 9 500 -200 200 L 50 50 1 1 O +X Q3 10 500 -100 200 L 50 50 1 1 O +X A3 11 500 0 200 L 50 50 1 1 I +X B3 12 500 100 200 L 50 50 1 1 I +X C3 13 500 200 200 L 50 50 1 1 I +X Vdd 14 500 300 200 L 50 50 1 1 I +ENDDRAW +ENDDEF +# +# IC_74153 +# +DEF IC_74153 X 0 40 Y Y 1 F N +F0 "X" 100 50 60 H V C CNN +F1 "IC_74153" 100 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +T 0 100 -200 60 0 0 0 4:1 Normal 0 C C +T 0 100 -100 60 0 0 0 DUAL Normal 0 C C +T 0 100 -300 60 0 0 0 MUX Normal 0 C C +S -200 500 350 -550 0 1 0 N +X a0 1 -400 350 200 R 50 50 1 1 I +X a1 2 -400 250 200 R 50 50 1 1 I +X a2 3 -400 150 200 R 50 50 1 1 I +X a3 4 -400 50 200 R 50 50 1 1 I +X EA 5 0 700 200 D 50 50 1 1 I I +X b0 6 -400 -150 200 R 50 50 1 1 I +X b1 7 -400 -250 200 R 50 50 1 1 I +X b2 8 -400 -350 200 R 50 50 1 1 I +X b3 9 -400 -450 200 R 50 50 1 1 I +X EB 10 200 700 200 D 50 50 1 1 I I +X s1 11 50 -750 200 U 50 50 1 1 I +X s0 12 150 -750 200 U 50 50 1 1 I +X ya 13 550 250 200 L 50 50 1 1 O +X yb 14 550 -300 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# IC_74154 +# +DEF IC_74154 X 0 40 Y Y 1 F N +F0 "X" 0 -200 60 H V C CNN +F1 "IC_74154" 50 -50 60 H V C CNN +F2 "" 0 50 60 H V C CNN +F3 "" 0 50 60 H V C CNN +DRAW +T 0 0 400 60 0 0 0 4:16~ Normal 0 C C +T 0 0 250 60 0 0 0 decoder Normal 0 C C +S -350 700 400 -700 0 0 0 N +X ~Y0 1 -550 550 200 R 50 50 1 1 O I +X ~Y1 2 -550 450 200 R 50 50 1 1 O I +X ~Y2 3 -550 350 200 R 50 50 1 1 O I +X ~Y3 4 -550 250 200 R 50 50 1 1 O I +X ~Y4 5 -550 150 200 R 50 50 1 1 O I +X ~Y5 6 -550 50 200 R 50 50 1 1 O I +X ~Y6 7 -550 -50 200 R 50 50 1 1 O I +X ~Y7 8 -550 -150 200 R 50 50 1 1 O I +X ~Y8 9 -550 -250 200 R 50 50 1 1 O I +X ~Y9 10 -550 -350 200 R 50 50 1 1 O I +X A3 20 600 150 200 L 50 50 1 1 I +X ~Y10 11 -550 -450 200 R 50 50 1 1 O I +X A2 21 600 250 200 L 50 50 1 1 I +X GND 12 -550 -550 200 R 50 50 1 1 I +X A1 22 600 350 200 L 50 50 1 1 I +X ~Y11 13 600 -550 200 L 50 50 1 1 O I +X A0 23 600 450 200 L 50 50 1 1 I +X ~Y12 14 600 -450 200 L 50 50 1 1 O I +X Vcc 24 600 550 200 L 50 50 1 1 I +X ~Y13 15 600 -350 200 L 50 50 1 1 O I +X ~Y14 16 600 -250 200 L 50 50 1 1 O I +X ~Y15 17 600 -150 200 L 50 50 1 1 O I +X ~E0 18 600 -50 200 L 50 50 1 1 I I +X ~E1 19 600 50 200 L 50 50 1 1 I I +ENDDRAW +ENDDEF +# +# IC_74157 +# +DEF IC_74157 X 0 40 Y Y 1 F N +F0 "X" 50 -50 60 H V C CNN +F1 "IC_74157" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +T 0 50 -300 60 0 0 0 2:1 Normal 0 C C +T 0 50 -400 60 0 0 0 MUX Normal 0 C C +T 0 50 -200 60 0 0 0 QUAD Normal 0 C C +S -350 550 400 -650 0 1 0 N +X a0 1 -550 450 200 R 50 50 1 1 I +X a1 2 -550 300 200 R 50 50 1 1 I +X b0 3 -550 200 200 R 50 50 1 1 I +X b1 4 -550 100 200 R 50 50 1 1 I +X c0 5 -550 0 200 R 50 50 1 1 I +X c1 6 -550 -100 200 R 50 50 1 1 I +X d0 7 -550 -200 200 R 50 50 1 1 I +X d1 8 -550 -300 200 R 50 50 1 1 I +X EN 9 -550 -550 200 R 50 50 1 1 I I +X S 10 -550 -450 200 R 50 50 1 1 I +X Yd 11 600 0 200 L 50 50 1 1 O +X Ya 12 600 300 200 L 50 50 1 1 O +X Yb 13 600 200 200 L 50 50 1 1 O +X Yc 14 600 100 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# IC_7485 +# +DEF IC_7485 X 0 40 Y Y 1 F N +F0 "X" -50 -100 60 H V C CNN +F1 "IC_7485" -50 50 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +T 0 0 550 60 0 0 0 4~BIT~comparator Normal 0 C C +S -350 450 400 -400 0 1 0 N +X AB(in) 3 600 -300 200 L 50 50 1 1 I +X A3 4 -550 100 200 R 50 50 1 1 I +X B3 5 -550 -350 200 R 50 50 1 1 I +X A2 6 -550 200 200 R 50 50 1 1 I +X B2 7 -550 -250 200 R 50 50 1 1 I +X A1 8 -550 300 200 R 50 50 1 1 I +X B1 9 -550 -150 200 R 50 50 1 1 I +X A0 10 -550 400 200 R 50 50 1 1 I +X B0 11 -550 -50 200 R 50 50 1 1 I +X A>B(out) 12 600 350 200 L 50 50 1 1 O +X A=B(out) 13 600 250 200 L 50 50 1 1 O +X AB(in) 3 600 -300 200 L 50 50 1 1 I +X A3 4 -550 100 200 R 50 50 1 1 I +X B3 5 -550 -350 200 R 50 50 1 1 I +X A2 6 -550 200 200 R 50 50 1 1 I +X B2 7 -550 -250 200 R 50 50 1 1 I +X A1 8 -550 300 200 R 50 50 1 1 I +X B1 9 -550 -150 200 R 50 50 1 1 I +X A0 10 -550 400 200 R 50 50 1 1 I +X B0 11 -550 -50 200 R 50 50 1 1 I +X A>B(out) 12 600 350 200 L 50 50 1 1 O +X A=B(out) 13 600 250 200 L 50 50 1 1 O +X A plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/f100102/f100102.pro b/library/SubcircuitLibrary/f100102/f100102.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/f100102/f100102.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/f100102/f100102.sch b/library/SubcircuitLibrary/f100102/f100102.sch new file mode 100644 index 000000000..cce2457fe --- /dev/null +++ b/library/SubcircuitLibrary/f100102/f100102.sch @@ -0,0 +1,586 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_or U2 +U 1 1 68680518 +P 4100 1800 +F 0 "U2" H 4100 1800 60 0000 C CNN +F 1 "d_or" H 4100 1900 60 0000 C CNN +F 2 "" H 4100 1800 60 0000 C CNN +F 3 "" H 4100 1800 60 0000 C CNN + 1 4100 1800 + 1 0 0 -1 +$EndComp +$Comp +L d_or U6 +U 1 1 68680541 +P 5150 2050 +F 0 "U6" H 5150 2050 60 0000 C CNN +F 1 "d_or" H 5150 2150 60 0000 C CNN +F 2 "" H 5150 2050 60 0000 C CNN +F 3 "" H 5150 2050 60 0000 C CNN + 1 5150 2050 + 1 0 0 -1 +$EndComp +$Comp +L d_or U3 +U 1 1 686805B7 +P 4100 2400 +F 0 "U3" H 4100 2400 60 0000 C CNN +F 1 "d_or" H 4100 2500 60 0000 C CNN +F 2 "" H 4100 2400 60 0000 C CNN +F 3 "" H 4100 2400 60 0000 C CNN + 1 4100 2400 + 1 0 0 -1 +$EndComp +$Comp +L d_or U7 +U 1 1 686805BD +P 5150 2650 +F 0 "U7" H 5150 2650 60 0000 C CNN +F 1 "d_or" H 5150 2750 60 0000 C CNN +F 2 "" H 5150 2650 60 0000 C CNN +F 3 "" H 5150 2650 60 0000 C CNN + 1 5150 2650 + 1 0 0 -1 +$EndComp +$Comp +L d_or U4 +U 1 1 6868075B +P 4100 3050 +F 0 "U4" H 4100 3050 60 0000 C CNN +F 1 "d_or" H 4100 3150 60 0000 C CNN +F 2 "" H 4100 3050 60 0000 C CNN +F 3 "" H 4100 3050 60 0000 C CNN + 1 4100 3050 + 1 0 0 -1 +$EndComp +$Comp +L d_or U8 +U 1 1 68680761 +P 5150 3300 +F 0 "U8" H 5150 3300 60 0000 C CNN +F 1 "d_or" H 5150 3400 60 0000 C CNN +F 2 "" H 5150 3300 60 0000 C CNN +F 3 "" H 5150 3300 60 0000 C CNN + 1 5150 3300 + 1 0 0 -1 +$EndComp +$Comp +L d_or U5 +U 1 1 68680769 +P 4100 3650 +F 0 "U5" H 4100 3650 60 0000 C CNN +F 1 "d_or" H 4100 3750 60 0000 C CNN +F 2 "" H 4100 3650 60 0000 C CNN +F 3 "" H 4100 3650 60 0000 C CNN + 1 4100 3650 + 1 0 0 -1 +$EndComp +$Comp +L d_or U9 +U 1 1 6868076F +P 5150 3900 +F 0 "U9" H 5150 3900 60 0000 C CNN +F 1 "d_or" H 5150 4000 60 0000 C CNN +F 2 "" H 5150 3900 60 0000 C CNN +F 3 "" H 5150 3900 60 0000 C CNN + 1 5150 3900 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U10 +U 1 1 686808D4 +P 6200 1650 +F 0 "U10" H 6200 1550 60 0000 C CNN +F 1 "d_inverter" H 6200 1800 60 0000 C CNN +F 2 "" H 6250 1600 60 0000 C CNN +F 3 "" H 6250 1600 60 0000 C CNN + 1 6200 1650 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U11 +U 1 1 68680929 +P 6200 2350 +F 0 "U11" H 6200 2250 60 0000 C CNN +F 1 "d_inverter" H 6200 2500 60 0000 C CNN +F 2 "" H 6250 2300 60 0000 C CNN +F 3 "" H 6250 2300 60 0000 C CNN + 1 6200 2350 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U12 +U 1 1 6868096E +P 6200 2950 +F 0 "U12" H 6200 2850 60 0000 C CNN +F 1 "d_inverter" H 6200 3100 60 0000 C CNN +F 2 "" H 6250 2900 60 0000 C CNN +F 3 "" H 6250 2900 60 0000 C CNN + 1 6200 2950 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U13 +U 1 1 686809B9 +P 6200 3600 +F 0 "U13" H 6200 3500 60 0000 C CNN +F 1 "d_inverter" H 6200 3750 60 0000 C CNN +F 2 "" H 6250 3550 60 0000 C CNN +F 3 "" H 6250 3550 60 0000 C CNN + 1 6200 3600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5600 3600 5900 3600 +Wire Wire Line + 5600 3850 5600 3600 +Wire Wire Line + 5600 2950 5900 2950 +Wire Wire Line + 5600 3250 5600 2950 +Wire Wire Line + 5600 2350 5900 2350 +Wire Wire Line + 5600 2600 5600 2350 +Wire Wire Line + 5600 1650 5900 1650 +Wire Wire Line + 5600 2000 5600 1650 +Wire Wire Line + 2850 3900 4700 3900 +Wire Wire Line + 2850 3300 4700 3300 +Wire Wire Line + 2850 2650 4700 2650 +Wire Wire Line + 2850 2050 4700 2050 +Wire Wire Line + 4550 3800 4700 3800 +Wire Wire Line + 4550 3600 4550 3800 +Wire Wire Line + 4550 3200 4700 3200 +Wire Wire Line + 4550 3000 4550 3200 +Wire Wire Line + 4550 2550 4700 2550 +Wire Wire Line + 4550 2350 4550 2550 +Wire Wire Line + 4550 1950 4700 1950 +Wire Wire Line + 4550 1750 4550 1950 +$Comp +L d_or U14 +U 1 1 68680CEF +P 4100 4350 +F 0 "U14" H 4100 4350 60 0000 C CNN +F 1 "d_or" H 4100 4450 60 0000 C CNN +F 2 "" H 4100 4350 60 0000 C CNN +F 3 "" H 4100 4350 60 0000 C CNN + 1 4100 4350 + 1 0 0 -1 +$EndComp +$Comp +L d_or U15 +U 1 1 68680CF5 +P 5150 4600 +F 0 "U15" H 5150 4600 60 0000 C CNN +F 1 "d_or" H 5150 4700 60 0000 C CNN +F 2 "" H 5150 4600 60 0000 C CNN +F 3 "" H 5150 4600 60 0000 C CNN + 1 5150 4600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2850 4600 4700 4600 +Wire Wire Line + 4550 4500 4700 4500 +Wire Wire Line + 4550 4300 4550 4500 +$Comp +L d_inverter U16 +U 1 1 68680D10 +P 6200 4250 +F 0 "U16" H 6200 4150 60 0000 C CNN +F 1 "d_inverter" H 6200 4400 60 0000 C CNN +F 2 "" H 6250 4200 60 0000 C CNN +F 3 "" H 6250 4200 60 0000 C CNN + 1 6200 4250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5600 4550 5600 4250 +Wire Wire Line + 5600 4250 5900 4250 +$Comp +L d_buffer U17 +U 1 1 68680DA0 +P 2200 5350 +F 0 "U17" H 2200 5300 60 0000 C CNN +F 1 "d_buffer" H 2200 5400 60 0000 C CNN +F 2 "" H 2200 5350 60 0000 C CNN +F 3 "" H 2200 5350 60 0000 C CNN + 1 2200 5350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2850 5350 2850 2050 +Connection ~ 2850 2650 +Connection ~ 2850 3300 +Connection ~ 2850 3900 +Connection ~ 2850 4600 +$Comp +L PORT U1 +U 1 1 686810B2 +P 2250 4400 +F 0 "U1" H 2300 4500 30 0000 C CNN +F 1 "PORT" H 2250 4400 30 0000 C CNN +F 2 "" H 2250 4400 60 0000 C CNN +F 3 "" H 2250 4400 60 0000 C CNN + 1 2250 4400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2500 4400 3650 4400 +Wire Wire Line + 3650 4400 3650 4350 +$Comp +L PORT U1 +U 2 1 6868124C +P 7150 4500 +F 0 "U1" H 7200 4600 30 0000 C CNN +F 1 "PORT" H 7150 4500 30 0000 C CNN +F 2 "" H 7150 4500 60 0000 C CNN +F 3 "" H 7150 4500 60 0000 C CNN + 2 7150 4500 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 6868133D +P 7150 4250 +F 0 "U1" H 7200 4350 30 0000 C CNN +F 1 "PORT" H 7150 4250 30 0000 C CNN +F 2 "" H 7150 4250 60 0000 C CNN +F 3 "" H 7150 4250 60 0000 C CNN + 3 7150 4250 + -1 0 0 1 +$EndComp +Wire Wire Line + 6500 4250 6900 4250 +Wire Wire Line + 6900 4500 5600 4500 +Connection ~ 5600 4500 +$Comp +L PORT U1 +U 4 1 686814AF +P 7200 3600 +F 0 "U1" H 7250 3700 30 0000 C CNN +F 1 "PORT" H 7200 3600 30 0000 C CNN +F 2 "" H 7200 3600 60 0000 C CNN +F 3 "" H 7200 3600 60 0000 C CNN + 4 7200 3600 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 68681516 +P 7200 3800 +F 0 "U1" H 7250 3900 30 0000 C CNN +F 1 "PORT" H 7200 3800 30 0000 C CNN +F 2 "" H 7200 3800 60 0000 C CNN +F 3 "" H 7200 3800 60 0000 C CNN + 5 7200 3800 + -1 0 0 1 +$EndComp +Wire Wire Line + 6500 3600 6950 3600 +Wire Wire Line + 6950 3800 5600 3800 +Connection ~ 5600 3800 +$Comp +L PORT U1 +U 8 1 686816C8 +P 7250 2950 +F 0 "U1" H 7300 3050 30 0000 C CNN +F 1 "PORT" H 7250 2950 30 0000 C CNN +F 2 "" H 7250 2950 60 0000 C CNN +F 3 "" H 7250 2950 60 0000 C CNN + 8 7250 2950 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 9 1 6868172D +P 7250 3150 +F 0 "U1" H 7300 3250 30 0000 C CNN +F 1 "PORT" H 7250 3150 30 0000 C CNN +F 2 "" H 7250 3150 60 0000 C CNN +F 3 "" H 7250 3150 60 0000 C CNN + 9 7250 3150 + -1 0 0 1 +$EndComp +Wire Wire Line + 6500 2950 7000 2950 +Wire Wire Line + 7000 3150 5600 3150 +Connection ~ 5600 3150 +$Comp +L PORT U1 +U 10 1 68681826 +P 7050 2550 +F 0 "U1" H 7100 2650 30 0000 C CNN +F 1 "PORT" H 7050 2550 30 0000 C CNN +F 2 "" H 7050 2550 60 0000 C CNN +F 3 "" H 7050 2550 60 0000 C CNN + 10 7050 2550 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 11 1 68681885 +P 7050 2350 +F 0 "U1" H 7100 2450 30 0000 C CNN +F 1 "PORT" H 7050 2350 30 0000 C CNN +F 2 "" H 7050 2350 60 0000 C CNN +F 3 "" H 7050 2350 60 0000 C CNN + 11 7050 2350 + -1 0 0 1 +$EndComp +Wire Wire Line + 6500 2350 6800 2350 +Wire Wire Line + 6800 2550 5600 2550 +Connection ~ 5600 2550 +$Comp +L PORT U1 +U 12 1 686819AB +P 7100 1650 +F 0 "U1" H 7150 1750 30 0000 C CNN +F 1 "PORT" H 7100 1650 30 0000 C CNN +F 2 "" H 7100 1650 60 0000 C CNN +F 3 "" H 7100 1650 60 0000 C CNN + 12 7100 1650 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 13 1 68681A0A +P 7100 1900 +F 0 "U1" H 7150 2000 30 0000 C CNN +F 1 "PORT" H 7100 1900 30 0000 C CNN +F 2 "" H 7100 1900 60 0000 C CNN +F 3 "" H 7100 1900 60 0000 C CNN + 13 7100 1900 + -1 0 0 1 +$EndComp +Wire Wire Line + 6500 1650 6850 1650 +Wire Wire Line + 6850 1900 5600 1900 +Connection ~ 5600 1900 +$Comp +L PORT U1 +U 14 1 68681BBA +P 2300 1600 +F 0 "U1" H 2350 1700 30 0000 C CNN +F 1 "PORT" H 2300 1600 30 0000 C CNN +F 2 "" H 2300 1600 60 0000 C CNN +F 3 "" H 2300 1600 60 0000 C CNN + 14 2300 1600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 68681C37 +P 2300 1850 +F 0 "U1" H 2350 1950 30 0000 C CNN +F 1 "PORT" H 2300 1850 30 0000 C CNN +F 2 "" H 2300 1850 60 0000 C CNN +F 3 "" H 2300 1850 60 0000 C CNN + 15 2300 1850 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2550 1600 3650 1600 +Wire Wire Line + 3650 1600 3650 1700 +Wire Wire Line + 3650 1800 3650 1850 +Wire Wire Line + 3650 1850 2550 1850 +$Comp +L PORT U1 +U 16 1 68681E20 +P 2250 2200 +F 0 "U1" H 2300 2300 30 0000 C CNN +F 1 "PORT" H 2250 2200 30 0000 C CNN +F 2 "" H 2250 2200 60 0000 C CNN +F 3 "" H 2250 2200 60 0000 C CNN + 16 2250 2200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 17 1 68681E81 +P 2250 2450 +F 0 "U1" H 2300 2550 30 0000 C CNN +F 1 "PORT" H 2250 2450 30 0000 C CNN +F 2 "" H 2250 2450 60 0000 C CNN +F 3 "" H 2250 2450 60 0000 C CNN + 17 2250 2450 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2500 2200 3650 2200 +Wire Wire Line + 3650 2200 3650 2300 +Wire Wire Line + 3650 2400 3650 2450 +Wire Wire Line + 3650 2450 2500 2450 +$Comp +L PORT U1 +U 20 1 68682086 +P 2250 2900 +F 0 "U1" H 2300 3000 30 0000 C CNN +F 1 "PORT" H 2250 2900 30 0000 C CNN +F 2 "" H 2250 2900 60 0000 C CNN +F 3 "" H 2250 2900 60 0000 C CNN + 20 2250 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 21 1 686820F1 +P 2250 3100 +F 0 "U1" H 2300 3200 30 0000 C CNN +F 1 "PORT" H 2250 3100 30 0000 C CNN +F 2 "" H 2250 3100 60 0000 C CNN +F 3 "" H 2250 3100 60 0000 C CNN + 21 2250 3100 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2500 2900 3650 2900 +Wire Wire Line + 3650 2900 3650 2950 +Wire Wire Line + 3650 3050 3650 3100 +Wire Wire Line + 3650 3100 2500 3100 +$Comp +L PORT U1 +U 22 1 68682267 +P 2300 3500 +F 0 "U1" H 2350 3600 30 0000 C CNN +F 1 "PORT" H 2300 3500 30 0000 C CNN +F 2 "" H 2300 3500 60 0000 C CNN +F 3 "" H 2300 3500 60 0000 C CNN + 22 2300 3500 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 23 1 68682310 +P 2300 3700 +F 0 "U1" H 2350 3800 30 0000 C CNN +F 1 "PORT" H 2300 3700 30 0000 C CNN +F 2 "" H 2300 3700 60 0000 C CNN +F 3 "" H 2300 3700 60 0000 C CNN + 23 2300 3700 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 24 1 68682390 +P 2250 4150 +F 0 "U1" H 2300 4250 30 0000 C CNN +F 1 "PORT" H 2250 4150 30 0000 C CNN +F 2 "" H 2250 4150 60 0000 C CNN +F 3 "" H 2250 4150 60 0000 C CNN + 24 2250 4150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2550 3500 3650 3500 +Wire Wire Line + 3650 3500 3650 3550 +Wire Wire Line + 3650 3650 3650 3700 +Wire Wire Line + 3650 3700 2550 3700 +Wire Wire Line + 2500 4150 3650 4150 +Wire Wire Line + 3650 4150 3650 4250 +$Comp +L PORT U1 +U 19 1 68682BB8 +P 1350 5350 +F 0 "U1" H 1400 5450 30 0000 C CNN +F 1 "PORT" H 1350 5350 30 0000 C CNN +F 2 "" H 1350 5350 60 0000 C CNN +F 3 "" H 1350 5350 60 0000 C CNN + 19 1350 5350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 1600 5350 1700 5350 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/f100102/f100102.sub b/library/SubcircuitLibrary/f100102/f100102.sub new file mode 100644 index 000000000..e1f542189 --- /dev/null +++ b/library/SubcircuitLibrary/f100102/f100102.sub @@ -0,0 +1,70 @@ +* Subcircuit f100102 +.subckt f100102 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad19_ net-_u1-pad20_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad24_ +* c:\fossee\esim\library\subcircuitlibrary\f100102\f100102.cir +* u2 net-_u1-pad14_ net-_u1-pad15_ net-_u2-pad3_ d_or +* u6 net-_u2-pad3_ net-_u15-pad2_ net-_u1-pad13_ d_or +* u3 net-_u1-pad16_ net-_u1-pad17_ net-_u3-pad3_ d_or +* u7 net-_u3-pad3_ net-_u15-pad2_ net-_u1-pad10_ d_or +* u4 net-_u1-pad20_ net-_u1-pad21_ net-_u4-pad3_ d_or +* u8 net-_u4-pad3_ net-_u15-pad2_ net-_u1-pad9_ d_or +* u5 net-_u1-pad22_ net-_u1-pad23_ net-_u5-pad3_ d_or +* u9 net-_u5-pad3_ net-_u15-pad2_ net-_u1-pad5_ d_or +* u10 net-_u1-pad13_ net-_u1-pad12_ d_inverter +* u11 net-_u1-pad10_ net-_u1-pad11_ d_inverter +* u12 net-_u1-pad9_ net-_u1-pad8_ d_inverter +* u13 net-_u1-pad5_ net-_u1-pad4_ d_inverter +* u14 net-_u1-pad24_ net-_u1-pad1_ net-_u14-pad3_ d_or +* u15 net-_u14-pad3_ net-_u15-pad2_ net-_u1-pad2_ d_or +* u16 net-_u1-pad2_ net-_u1-pad3_ d_inverter +* u17 net-_u1-pad19_ net-_u15-pad2_ d_buffer +a1 [net-_u1-pad14_ net-_u1-pad15_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u15-pad2_ ] net-_u1-pad13_ u6 +a3 [net-_u1-pad16_ net-_u1-pad17_ ] net-_u3-pad3_ u3 +a4 [net-_u3-pad3_ net-_u15-pad2_ ] net-_u1-pad10_ u7 +a5 [net-_u1-pad20_ net-_u1-pad21_ ] net-_u4-pad3_ u4 +a6 [net-_u4-pad3_ net-_u15-pad2_ ] net-_u1-pad9_ u8 +a7 [net-_u1-pad22_ net-_u1-pad23_ ] net-_u5-pad3_ u5 +a8 [net-_u5-pad3_ net-_u15-pad2_ ] net-_u1-pad5_ u9 +a9 net-_u1-pad13_ net-_u1-pad12_ u10 +a10 net-_u1-pad10_ net-_u1-pad11_ u11 +a11 net-_u1-pad9_ net-_u1-pad8_ u12 +a12 net-_u1-pad5_ net-_u1-pad4_ u13 +a13 [net-_u1-pad24_ net-_u1-pad1_ ] net-_u14-pad3_ u14 +a14 [net-_u14-pad3_ net-_u15-pad2_ ] net-_u1-pad2_ u15 +a15 net-_u1-pad2_ net-_u1-pad3_ u16 +a16 net-_u1-pad19_ net-_u15-pad2_ u17 +* Schematic Name: d_or, NgSpice Name: d_or +.model u2 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u7 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u8 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u9 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u13 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u14 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u15 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u16 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_buffer, NgSpice Name: d_buffer +.model u17 d_buffer(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends f100102 \ No newline at end of file diff --git a/library/SubcircuitLibrary/f100102/f100102_Previous_Values.xml b/library/SubcircuitLibrary/f100102/f100102_Previous_Values.xml new file mode 100644 index 000000000..178b9dab8 --- /dev/null +++ b/library/SubcircuitLibrary/f100102/f100102_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes025010secmssecd_ord_ord_ord_ord_ord_ord_ord_ord_inverterd_inverterd_inverterd_inverterd_ord_ord_inverterd_buffer \ No newline at end of file diff --git a/library/SubcircuitLibrary/ic100117/3_and-cache.lib b/library/SubcircuitLibrary/ic100117/3_and-cache.lib new file mode 100644 index 000000000..af0586415 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/3_and-cache.lib @@ -0,0 +1,61 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/ic100117/3_and.cir b/library/SubcircuitLibrary/ic100117/3_and.cir new file mode 100644 index 000000000..ba296cf01 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/3_and.cir @@ -0,0 +1,13 @@ +* C:\Users\malli\eSim\src\SubcircuitLibrary\3_and\3_and.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 03/26/19 18:42:57 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U2 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U2-Pad3_ d_and +U3 Net-_U2-Pad3_ Net-_U1-Pad3_ Net-_U1-Pad4_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ PORT + +.end diff --git a/library/SubcircuitLibrary/ic100117/3_and.cir.out b/library/SubcircuitLibrary/ic100117/3_and.cir.out new file mode 100644 index 000000000..d7cf79a07 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/3_and.cir.out @@ -0,0 +1,20 @@ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir + +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ port +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/ic100117/3_and.pro b/library/SubcircuitLibrary/ic100117/3_and.pro new file mode 100644 index 000000000..00597a5ad --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/3_and.pro @@ -0,0 +1,43 @@ +update=05/31/19 15:26:09 +version=1 +last_client=eeschema +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir=../../../kicadSchematicLibrary +[eeschema/libraries] +LibName1=eSim_Analog +LibName2=eSim_Devices +LibName3=eSim_Digital +LibName4=eSim_Hybrid +LibName5=eSim_Miscellaneous +LibName6=eSim_Plot +LibName7=eSim_Power +LibName8=eSim_User +LibName9=eSim_Sources +LibName10=eSim_Subckt diff --git a/library/SubcircuitLibrary/ic100117/3_and.sch b/library/SubcircuitLibrary/ic100117/3_and.sch new file mode 100644 index 000000000..d6ac89f95 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/3_and.sch @@ -0,0 +1,130 @@ +EESchema Schematic File Version 2 +LIBS:power +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:valves +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Plot +LIBS:eSim_Power +LIBS:eSim_PSpice +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_User +LIBS:3_and-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_and U2 +U 1 1 5C9A24D8 +P 4250 2700 +F 0 "U2" H 4250 2700 60 0000 C CNN +F 1 "d_and" H 4300 2800 60 0000 C CNN +F 2 "" H 4250 2700 60 0000 C CNN +F 3 "" H 4250 2700 60 0000 C CNN + 1 4250 2700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U3 +U 1 1 5C9A2538 +P 5150 2900 +F 0 "U3" H 5150 2900 60 0000 C CNN +F 1 "d_and" H 5200 3000 60 0000 C CNN +F 2 "" H 5150 2900 60 0000 C CNN +F 3 "" H 5150 2900 60 0000 C CNN + 1 5150 2900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 1 1 5C9A259A +P 3050 2600 +F 0 "U1" H 3100 2700 30 0000 C CNN +F 1 "PORT" H 3050 2600 30 0000 C CNN +F 2 "" H 3050 2600 60 0000 C CNN +F 3 "" H 3050 2600 60 0000 C CNN + 1 3050 2600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 5C9A25D9 +P 3050 2800 +F 0 "U1" H 3100 2900 30 0000 C CNN +F 1 "PORT" H 3050 2800 30 0000 C CNN +F 2 "" H 3050 2800 60 0000 C CNN +F 3 "" H 3050 2800 60 0000 C CNN + 2 3050 2800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 5C9A260A +P 3050 3100 +F 0 "U1" H 3100 3200 30 0000 C CNN +F 1 "PORT" H 3050 3100 30 0000 C CNN +F 2 "" H 3050 3100 60 0000 C CNN +F 3 "" H 3050 3100 60 0000 C CNN + 3 3050 3100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 5C9A2637 +P 6900 2850 +F 0 "U1" H 6950 2950 30 0000 C CNN +F 1 "PORT" H 6900 2850 30 0000 C CNN +F 2 "" H 6900 2850 60 0000 C CNN +F 3 "" H 6900 2850 60 0000 C CNN + 4 6900 2850 + -1 0 0 1 +$EndComp +Wire Wire Line + 4700 2650 4700 2800 +Wire Wire Line + 5600 2850 6650 2850 +Wire Wire Line + 3800 2600 3300 2600 +Wire Wire Line + 3800 2700 3300 2700 +Wire Wire Line + 3300 2700 3300 2800 +Wire Wire Line + 3300 3100 4700 3100 +Wire Wire Line + 4700 3100 4700 2900 +Text Notes 3500 2600 0 60 ~ 12 +in1 +Text Notes 3450 2800 0 60 ~ 12 +in2\n +Text Notes 3500 3100 0 60 ~ 12 +in3 +Text Notes 6100 2850 0 60 ~ 12 +out +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/ic100117/3_and.sub b/library/SubcircuitLibrary/ic100117/3_and.sub new file mode 100644 index 000000000..3d9120bb6 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/3_and.sub @@ -0,0 +1,14 @@ +* Subcircuit 3_and +.subckt 3_and net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ +* c:\users\malli\esim\src\subcircuitlibrary\3_and\3_and.cir +* u2 net-_u1-pad1_ net-_u1-pad2_ net-_u2-pad3_ d_and +* u3 net-_u2-pad3_ net-_u1-pad3_ net-_u1-pad4_ d_and +a1 [net-_u1-pad1_ net-_u1-pad2_ ] net-_u2-pad3_ u2 +a2 [net-_u2-pad3_ net-_u1-pad3_ ] net-_u1-pad4_ u3 +* Schematic Name: d_and, NgSpice Name: d_and +.model u2 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u3 d_and(fall_delay=1.0e-9 input_load=1.0e-12 rise_delay=1.0e-9 ) +* Control Statements + +.ends 3_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/ic100117/3_and_Previous_Values.xml b/library/SubcircuitLibrary/ic100117/3_and_Previous_Values.xml new file mode 100644 index 000000000..abc5faaae --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/3_and_Previous_Values.xml @@ -0,0 +1 @@ +d_andd_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesSecSecSec \ No newline at end of file diff --git a/library/SubcircuitLibrary/ic100117/analysis b/library/SubcircuitLibrary/ic100117/analysis new file mode 100644 index 000000000..eed5e2985 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/analysis @@ -0,0 +1 @@ +.tran 250e-03 20e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/ic100117/ic100117-cache.lib b/library/SubcircuitLibrary/ic100117/ic100117-cache.lib new file mode 100644 index 000000000..ee93e1956 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/ic100117-cache.lib @@ -0,0 +1,95 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# 3_and +# +DEF 3_and X 0 40 Y Y 1 F N +F0 "X" 100 -50 60 H V C CNN +F1 "3_and" 150 150 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 150 50 158 716 -716 0 1 0 N 200 200 200 -100 +P 2 0 1 0 -150 200 200 200 N +P 3 0 1 0 -150 200 -150 -100 200 -100 N +X in1 1 -350 150 200 R 50 50 1 1 I +X in2 2 -350 50 200 R 50 50 1 1 I +X in3 3 -350 -50 200 R 50 50 1 1 I +X out 4 500 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_or +# +DEF d_or U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_or" 0 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/ic100117/ic100117.cir b/library/SubcircuitLibrary/ic100117/ic100117.cir new file mode 100644 index 000000000..e11bd03ad --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/ic100117.cir @@ -0,0 +1,23 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\ic100117\ic100117.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/10/25 22:41:29 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U5 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U5-Pad3_ d_or +U6 Net-_U1-Pad24_ Net-_U1-Pad1_ Net-_U6-Pad3_ d_or +X3 Net-_U5-Pad3_ Net-_U6-Pad3_ Net-_U1-Pad19_ Net-_U1-Pad4_ 3_and +U9 Net-_U1-Pad4_ Net-_U1-Pad5_ d_inverter +U10 Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U10-Pad3_ d_or +U2 Net-_U1-Pad20_ Net-_U1-Pad21_ Net-_U2-Pad3_ d_or +X1 Net-_U10-Pad3_ Net-_U2-Pad3_ Net-_U1-Pad17_ Net-_U1-Pad8_ 3_and +U7 Net-_U1-Pad8_ Net-_U1-Pad9_ d_inverter +U3 Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U3-Pad3_ d_or +U4 Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U4-Pad3_ d_or +X2 Net-_U3-Pad3_ Net-_U4-Pad3_ Net-_U1-Pad16_ Net-_U1-Pad11_ 3_and +U8 Net-_U1-Pad11_ Net-_U1-Pad10_ d_inverter +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad8_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ Net-_U1-Pad16_ Net-_U1-Pad17_ Net-_U1-Pad19_ Net-_U1-Pad20_ Net-_U1-Pad21_ Net-_U1-Pad22_ Net-_U1-Pad23_ Net-_U1-Pad24_ PORT + +.end diff --git a/library/SubcircuitLibrary/ic100117/ic100117.cir.out b/library/SubcircuitLibrary/ic100117/ic100117.cir.out new file mode 100644 index 000000000..b989016d0 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/ic100117.cir.out @@ -0,0 +1,52 @@ +* c:\fossee\esim\library\subcircuitlibrary\ic100117\ic100117.cir + +.include 3_and.sub +* u5 net-_u1-pad2_ net-_u1-pad3_ net-_u5-pad3_ d_or +* u6 net-_u1-pad24_ net-_u1-pad1_ net-_u6-pad3_ d_or +x3 net-_u5-pad3_ net-_u6-pad3_ net-_u1-pad19_ net-_u1-pad4_ 3_and +* u9 net-_u1-pad4_ net-_u1-pad5_ d_inverter +* u10 net-_u1-pad22_ net-_u1-pad23_ net-_u10-pad3_ d_or +* u2 net-_u1-pad20_ net-_u1-pad21_ net-_u2-pad3_ d_or +x1 net-_u10-pad3_ net-_u2-pad3_ net-_u1-pad17_ net-_u1-pad8_ 3_and +* u7 net-_u1-pad8_ net-_u1-pad9_ d_inverter +* u3 net-_u1-pad12_ net-_u1-pad13_ net-_u3-pad3_ d_or +* u4 net-_u1-pad14_ net-_u1-pad15_ net-_u4-pad3_ d_or +x2 net-_u3-pad3_ net-_u4-pad3_ net-_u1-pad16_ net-_u1-pad11_ 3_and +* u8 net-_u1-pad11_ net-_u1-pad10_ d_inverter +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad19_ net-_u1-pad20_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad24_ port +a1 [net-_u1-pad2_ net-_u1-pad3_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad24_ net-_u1-pad1_ ] net-_u6-pad3_ u6 +a3 net-_u1-pad4_ net-_u1-pad5_ u9 +a4 [net-_u1-pad22_ net-_u1-pad23_ ] net-_u10-pad3_ u10 +a5 [net-_u1-pad20_ net-_u1-pad21_ ] net-_u2-pad3_ u2 +a6 net-_u1-pad8_ net-_u1-pad9_ u7 +a7 [net-_u1-pad12_ net-_u1-pad13_ ] net-_u3-pad3_ u3 +a8 [net-_u1-pad14_ net-_u1-pad15_ ] net-_u4-pad3_ u4 +a9 net-_u1-pad11_ net-_u1-pad10_ u8 +* Schematic Name: d_or, NgSpice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u10 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u2 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 250e-03 20e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/ic100117/ic100117.pro b/library/SubcircuitLibrary/ic100117/ic100117.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/ic100117.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/ic100117/ic100117.sch b/library/SubcircuitLibrary/ic100117/ic100117.sch new file mode 100644 index 000000000..eab919cf8 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/ic100117.sch @@ -0,0 +1,506 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_or U5 +U 1 1 686FF152 +P 4250 2550 +F 0 "U5" H 4250 2550 60 0000 C CNN +F 1 "d_or" H 4250 2650 60 0000 C CNN +F 2 "" H 4250 2550 60 0000 C CNN +F 3 "" H 4250 2550 60 0000 C CNN + 1 4250 2550 + 1 0 0 -1 +$EndComp +$Comp +L d_or U6 +U 1 1 686FF177 +P 4250 3000 +F 0 "U6" H 4250 3000 60 0000 C CNN +F 1 "d_or" H 4250 3100 60 0000 C CNN +F 2 "" H 4250 3000 60 0000 C CNN +F 3 "" H 4250 3000 60 0000 C CNN + 1 4250 3000 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X3 +U 1 1 686FF19E +P 5550 2750 +F 0 "X3" H 5650 2700 60 0000 C CNN +F 1 "3_and" H 5700 2900 60 0000 C CNN +F 2 "" H 5550 2750 60 0000 C CNN +F 3 "" H 5550 2750 60 0000 C CNN + 1 5550 2750 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U9 +U 1 1 686FF1F7 +P 6900 2700 +F 0 "U9" H 6900 2600 60 0000 C CNN +F 1 "d_inverter" H 6900 2850 60 0000 C CNN +F 2 "" H 6950 2650 60 0000 C CNN +F 3 "" H 6950 2650 60 0000 C CNN + 1 6900 2700 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4700 2500 5200 2500 +Wire Wire Line + 5200 2500 5200 2600 +Wire Wire Line + 4700 2950 4700 2700 +Wire Wire Line + 4700 2700 5200 2700 +Wire Wire Line + 5200 3250 5200 2800 +Wire Wire Line + 3350 3250 5200 3250 +Wire Wire Line + 6050 2700 6600 2700 +Wire Wire Line + 6300 2700 6300 3150 +Wire Wire Line + 6300 3150 7450 3150 +Connection ~ 6300 2700 +$Comp +L d_or U10 +U 1 1 686FF420 +P 4150 3750 +F 0 "U10" H 4150 3750 60 0000 C CNN +F 1 "d_or" H 4150 3850 60 0000 C CNN +F 2 "" H 4150 3750 60 0000 C CNN +F 3 "" H 4150 3750 60 0000 C CNN + 1 4150 3750 + 1 0 0 -1 +$EndComp +$Comp +L d_or U2 +U 1 1 686FF426 +P 4150 4200 +F 0 "U2" H 4150 4200 60 0000 C CNN +F 1 "d_or" H 4150 4300 60 0000 C CNN +F 2 "" H 4150 4200 60 0000 C CNN +F 3 "" H 4150 4200 60 0000 C CNN + 1 4150 4200 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X1 +U 1 1 686FF42C +P 5450 3950 +F 0 "X1" H 5550 3900 60 0000 C CNN +F 1 "3_and" H 5600 4100 60 0000 C CNN +F 2 "" H 5450 3950 60 0000 C CNN +F 3 "" H 5450 3950 60 0000 C CNN + 1 5450 3950 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U7 +U 1 1 686FF432 +P 6800 3900 +F 0 "U7" H 6800 3800 60 0000 C CNN +F 1 "d_inverter" H 6800 4050 60 0000 C CNN +F 2 "" H 6850 3850 60 0000 C CNN +F 3 "" H 6850 3850 60 0000 C CNN + 1 6800 3900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4600 3700 5100 3700 +Wire Wire Line + 5100 3700 5100 3800 +Wire Wire Line + 4600 4150 4600 3900 +Wire Wire Line + 4600 3900 5100 3900 +Wire Wire Line + 5100 4450 5100 4000 +Wire Wire Line + 3400 4450 5100 4450 +Wire Wire Line + 5950 3900 6500 3900 +Wire Wire Line + 6200 3900 6200 4350 +Wire Wire Line + 6200 4350 7400 4350 +Connection ~ 6200 3900 +$Comp +L d_or U3 +U 1 1 686FF4EE +P 4150 4900 +F 0 "U3" H 4150 4900 60 0000 C CNN +F 1 "d_or" H 4150 5000 60 0000 C CNN +F 2 "" H 4150 4900 60 0000 C CNN +F 3 "" H 4150 4900 60 0000 C CNN + 1 4150 4900 + 1 0 0 -1 +$EndComp +$Comp +L d_or U4 +U 1 1 686FF4F4 +P 4150 5350 +F 0 "U4" H 4150 5350 60 0000 C CNN +F 1 "d_or" H 4150 5450 60 0000 C CNN +F 2 "" H 4150 5350 60 0000 C CNN +F 3 "" H 4150 5350 60 0000 C CNN + 1 4150 5350 + 1 0 0 -1 +$EndComp +$Comp +L 3_and X2 +U 1 1 686FF4FA +P 5450 5100 +F 0 "X2" H 5550 5050 60 0000 C CNN +F 1 "3_and" H 5600 5250 60 0000 C CNN +F 2 "" H 5450 5100 60 0000 C CNN +F 3 "" H 5450 5100 60 0000 C CNN + 1 5450 5100 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U8 +U 1 1 686FF500 +P 6800 5050 +F 0 "U8" H 6800 4950 60 0000 C CNN +F 1 "d_inverter" H 6800 5200 60 0000 C CNN +F 2 "" H 6850 5000 60 0000 C CNN +F 3 "" H 6850 5000 60 0000 C CNN + 1 6800 5050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4600 4850 5100 4850 +Wire Wire Line + 5100 4850 5100 4950 +Wire Wire Line + 4600 5300 4600 5050 +Wire Wire Line + 4600 5050 5100 5050 +Wire Wire Line + 5100 5600 5100 5150 +Wire Wire Line + 3350 5600 5100 5600 +Wire Wire Line + 5950 5050 6500 5050 +Wire Wire Line + 6200 5050 6200 5500 +Wire Wire Line + 6200 5500 7450 5500 +Connection ~ 6200 5050 +$Comp +L PORT U1 +U 1 1 686FF57E +P 3100 3000 +F 0 "U1" H 3150 3100 30 0000 C CNN +F 1 "PORT" H 3100 3000 30 0000 C CNN +F 2 "" H 3100 3000 60 0000 C CNN +F 3 "" H 3100 3000 60 0000 C CNN + 1 3100 3000 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686FF5CF +P 3100 2450 +F 0 "U1" H 3150 2550 30 0000 C CNN +F 1 "PORT" H 3100 2450 30 0000 C CNN +F 2 "" H 3100 2450 60 0000 C CNN +F 3 "" H 3100 2450 60 0000 C CNN + 2 3100 2450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686FF67C +P 2750 2550 +F 0 "U1" H 2800 2650 30 0000 C CNN +F 1 "PORT" H 2750 2550 30 0000 C CNN +F 2 "" H 2750 2550 60 0000 C CNN +F 3 "" H 2750 2550 60 0000 C CNN + 3 2750 2550 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686FF6C9 +P 7700 3150 +F 0 "U1" H 7750 3250 30 0000 C CNN +F 1 "PORT" H 7700 3150 30 0000 C CNN +F 2 "" H 7700 3150 60 0000 C CNN +F 3 "" H 7700 3150 60 0000 C CNN + 4 7700 3150 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 5 1 686FF7B4 +P 7700 2700 +F 0 "U1" H 7750 2800 30 0000 C CNN +F 1 "PORT" H 7700 2700 30 0000 C CNN +F 2 "" H 7700 2700 60 0000 C CNN +F 3 "" H 7700 2700 60 0000 C CNN + 5 7700 2700 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 8 1 686FF8EF +P 7650 4350 +F 0 "U1" H 7700 4450 30 0000 C CNN +F 1 "PORT" H 7650 4350 30 0000 C CNN +F 2 "" H 7650 4350 60 0000 C CNN +F 3 "" H 7650 4350 60 0000 C CNN + 8 7650 4350 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 9 1 686FFA28 +P 7650 3900 +F 0 "U1" H 7700 4000 30 0000 C CNN +F 1 "PORT" H 7650 3900 30 0000 C CNN +F 2 "" H 7650 3900 60 0000 C CNN +F 3 "" H 7650 3900 60 0000 C CNN + 9 7650 3900 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 10 1 686FFA7D +P 7700 5050 +F 0 "U1" H 7750 5150 30 0000 C CNN +F 1 "PORT" H 7700 5050 30 0000 C CNN +F 2 "" H 7700 5050 60 0000 C CNN +F 3 "" H 7700 5050 60 0000 C CNN + 10 7700 5050 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 11 1 686FFB76 +P 7700 5500 +F 0 "U1" H 7750 5600 30 0000 C CNN +F 1 "PORT" H 7700 5500 30 0000 C CNN +F 2 "" H 7700 5500 60 0000 C CNN +F 3 "" H 7700 5500 60 0000 C CNN + 11 7700 5500 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 12 1 686FFBC3 +P 3150 4800 +F 0 "U1" H 3200 4900 30 0000 C CNN +F 1 "PORT" H 3150 4800 30 0000 C CNN +F 2 "" H 3150 4800 60 0000 C CNN +F 3 "" H 3150 4800 60 0000 C CNN + 12 3150 4800 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 13 1 686FFD46 +P 2850 4900 +F 0 "U1" H 2900 5000 30 0000 C CNN +F 1 "PORT" H 2850 4900 30 0000 C CNN +F 2 "" H 2850 4900 60 0000 C CNN +F 3 "" H 2850 4900 60 0000 C CNN + 13 2850 4900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 686FFDC4 +P 3150 5250 +F 0 "U1" H 3200 5350 30 0000 C CNN +F 1 "PORT" H 3150 5250 30 0000 C CNN +F 2 "" H 3150 5250 60 0000 C CNN +F 3 "" H 3150 5250 60 0000 C CNN + 14 3150 5250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 15 1 686FFE4F +P 2800 5350 +F 0 "U1" H 2850 5450 30 0000 C CNN +F 1 "PORT" H 2800 5350 30 0000 C CNN +F 2 "" H 2800 5350 60 0000 C CNN +F 3 "" H 2800 5350 60 0000 C CNN + 15 2800 5350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 16 1 686FFEA4 +P 3100 5600 +F 0 "U1" H 3150 5700 30 0000 C CNN +F 1 "PORT" H 3100 5600 30 0000 C CNN +F 2 "" H 3100 5600 60 0000 C CNN +F 3 "" H 3100 5600 60 0000 C CNN + 16 3100 5600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 17 1 686FFF0B +P 3150 4450 +F 0 "U1" H 3200 4550 30 0000 C CNN +F 1 "PORT" H 3150 4450 30 0000 C CNN +F 2 "" H 3150 4450 60 0000 C CNN +F 3 "" H 3150 4450 60 0000 C CNN + 17 3150 4450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 19 1 6870003B +P 3100 3250 +F 0 "U1" H 3150 3350 30 0000 C CNN +F 1 "PORT" H 3100 3250 30 0000 C CNN +F 2 "" H 3100 3250 60 0000 C CNN +F 3 "" H 3100 3250 60 0000 C CNN + 19 3100 3250 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 20 1 68700186 +P 3000 4100 +F 0 "U1" H 3050 4200 30 0000 C CNN +F 1 "PORT" H 3000 4100 30 0000 C CNN +F 2 "" H 3000 4100 60 0000 C CNN +F 3 "" H 3000 4100 60 0000 C CNN + 20 3000 4100 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 21 1 6870025E +P 2800 4200 +F 0 "U1" H 2850 4300 30 0000 C CNN +F 1 "PORT" H 2800 4200 30 0000 C CNN +F 2 "" H 2800 4200 60 0000 C CNN +F 3 "" H 2800 4200 60 0000 C CNN + 21 2800 4200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 22 1 687002CF +P 3100 3650 +F 0 "U1" H 3150 3750 30 0000 C CNN +F 1 "PORT" H 3100 3650 30 0000 C CNN +F 2 "" H 3100 3650 60 0000 C CNN +F 3 "" H 3100 3650 60 0000 C CNN + 22 3100 3650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 23 1 68700328 +P 2850 3750 +F 0 "U1" H 2900 3850 30 0000 C CNN +F 1 "PORT" H 2850 3750 30 0000 C CNN +F 2 "" H 2850 3750 60 0000 C CNN +F 3 "" H 2850 3750 60 0000 C CNN + 23 2850 3750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 24 1 6870038D +P 2700 2900 +F 0 "U1" H 2750 3000 30 0000 C CNN +F 1 "PORT" H 2700 2900 30 0000 C CNN +F 2 "" H 2700 2900 60 0000 C CNN +F 3 "" H 2700 2900 60 0000 C CNN + 24 2700 2900 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3350 2450 3800 2450 +Wire Wire Line + 3800 2550 3000 2550 +Wire Wire Line + 3800 2900 2950 2900 +Wire Wire Line + 3350 3000 3800 3000 +Wire Wire Line + 3350 3650 3700 3650 +Wire Wire Line + 3700 3750 3100 3750 +Wire Wire Line + 3250 4100 3700 4100 +Wire Wire Line + 3700 4200 3050 4200 +Wire Wire Line + 3700 4800 3400 4800 +Wire Wire Line + 3700 4900 3100 4900 +Wire Wire Line + 3700 5250 3400 5250 +Wire Wire Line + 3700 5350 3050 5350 +Wire Wire Line + 7200 2700 7450 2700 +Wire Wire Line + 7400 3900 7100 3900 +Wire Wire Line + 7450 5050 7100 5050 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/ic100117/ic100117.sub b/library/SubcircuitLibrary/ic100117/ic100117.sub new file mode 100644 index 000000000..5ceb0b370 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/ic100117.sub @@ -0,0 +1,46 @@ +* Subcircuit ic100117 +.subckt ic100117 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad8_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ net-_u1-pad16_ net-_u1-pad17_ net-_u1-pad19_ net-_u1-pad20_ net-_u1-pad21_ net-_u1-pad22_ net-_u1-pad23_ net-_u1-pad24_ +* c:\fossee\esim\library\subcircuitlibrary\ic100117\ic100117.cir +.include 3_and.sub +* u5 net-_u1-pad2_ net-_u1-pad3_ net-_u5-pad3_ d_or +* u6 net-_u1-pad24_ net-_u1-pad1_ net-_u6-pad3_ d_or +x3 net-_u5-pad3_ net-_u6-pad3_ net-_u1-pad19_ net-_u1-pad4_ 3_and +* u9 net-_u1-pad4_ net-_u1-pad5_ d_inverter +* u10 net-_u1-pad22_ net-_u1-pad23_ net-_u10-pad3_ d_or +* u2 net-_u1-pad20_ net-_u1-pad21_ net-_u2-pad3_ d_or +x1 net-_u10-pad3_ net-_u2-pad3_ net-_u1-pad17_ net-_u1-pad8_ 3_and +* u7 net-_u1-pad8_ net-_u1-pad9_ d_inverter +* u3 net-_u1-pad12_ net-_u1-pad13_ net-_u3-pad3_ d_or +* u4 net-_u1-pad14_ net-_u1-pad15_ net-_u4-pad3_ d_or +x2 net-_u3-pad3_ net-_u4-pad3_ net-_u1-pad16_ net-_u1-pad11_ 3_and +* u8 net-_u1-pad11_ net-_u1-pad10_ d_inverter +a1 [net-_u1-pad2_ net-_u1-pad3_ ] net-_u5-pad3_ u5 +a2 [net-_u1-pad24_ net-_u1-pad1_ ] net-_u6-pad3_ u6 +a3 net-_u1-pad4_ net-_u1-pad5_ u9 +a4 [net-_u1-pad22_ net-_u1-pad23_ ] net-_u10-pad3_ u10 +a5 [net-_u1-pad20_ net-_u1-pad21_ ] net-_u2-pad3_ u2 +a6 net-_u1-pad8_ net-_u1-pad9_ u7 +a7 [net-_u1-pad12_ net-_u1-pad13_ ] net-_u3-pad3_ u3 +a8 [net-_u1-pad14_ net-_u1-pad15_ ] net-_u4-pad3_ u4 +a9 net-_u1-pad11_ net-_u1-pad10_ u8 +* Schematic Name: d_or, NgSpice Name: d_or +.model u5 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u6 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u10 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u2 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u7 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u3 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u4 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u8 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends ic100117 \ No newline at end of file diff --git a/library/SubcircuitLibrary/ic100117/ic100117_Previous_Values.xml b/library/SubcircuitLibrary/ic100117/ic100117_Previous_Values.xml new file mode 100644 index 000000000..3e80f3732 --- /dev/null +++ b/library/SubcircuitLibrary/ic100117/ic100117_Previous_Values.xml @@ -0,0 +1 @@ +d_ord_ord_inverterd_ord_ord_inverterd_ord_ord_inverterC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andC:\FOSSEE\eSim\library\SubcircuitLibrary\3_andtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes025020secmssec \ No newline at end of file diff --git a/library/subcircuitLibrary/MC1496/MC1496.cir b/library/SubcircuitLibrary/mc1496/MC1496.cir similarity index 100% rename from library/subcircuitLibrary/MC1496/MC1496.cir rename to library/SubcircuitLibrary/mc1496/MC1496.cir diff --git a/library/subcircuitLibrary/MC1496/MC1496.cir.out b/library/SubcircuitLibrary/mc1496/MC1496.cir.out similarity index 100% rename from library/subcircuitLibrary/MC1496/MC1496.cir.out rename to library/SubcircuitLibrary/mc1496/MC1496.cir.out diff --git a/library/SubcircuitLibrary/mc1496/NPN.lib b/library/SubcircuitLibrary/mc1496/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/mc1496/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/mc1496/analysis b/library/SubcircuitLibrary/mc1496/analysis new file mode 100644 index 000000000..6dcba7452 --- /dev/null +++ b/library/SubcircuitLibrary/mc1496/analysis @@ -0,0 +1 @@ +.tran 0.1e-06 10e-03 0e-03 \ No newline at end of file diff --git a/library/SubcircuitLibrary/mc1496/mc1496-cache.lib b/library/SubcircuitLibrary/mc1496/mc1496-cache.lib new file mode 100644 index 000000000..e95e63c62 --- /dev/null +++ b/library/SubcircuitLibrary/mc1496/mc1496-cache.lib @@ -0,0 +1,83 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# eSim_NPN +# +DEF eSim_NPN Q 0 0 Y N 1 F N +F0 "Q" -100 50 50 H V R CNN +F1 "eSim_NPN" -50 150 50 H V R CNN +F2 "" 200 100 29 H V C CNN +F3 "" 0 0 60 H V C CNN +ALIAS BC547 Q2N2222 +DRAW +C 50 0 111 0 1 10 N +P 2 0 1 0 25 25 100 100 N +P 3 0 1 0 25 -25 100 -100 100 -100 N +P 3 0 1 20 25 75 25 -75 25 -75 N +P 5 0 1 0 50 -70 70 -50 90 -90 50 -70 50 -70 F +X C 1 100 200 100 D 50 50 1 1 P +X B 2 -200 0 225 R 50 50 1 1 P +X E 3 100 -200 100 U 50 50 1 1 P +ENDDRAW +ENDDEF +# +# eSim_R +# +DEF eSim_R R 0 0 N Y 1 F N +F0 "R" 50 130 50 H V C CNN +F1 "eSim_R" 50 -50 50 H V C CNN +F2 "" 50 -20 30 H V C CNN +F3 "" 50 50 30 V V C CNN +ALIAS resistor +$FPLIST + R_* + Resistor_* +$ENDFPLIST +DRAW +S 150 10 -50 90 0 1 10 N +X ~ 1 -100 50 50 R 60 60 1 1 P +X ~ 2 200 50 50 L 60 60 1 1 P +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/mc1496/mc1496.pro b/library/SubcircuitLibrary/mc1496/mc1496.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/mc1496/mc1496.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/mc1496/mc1496.sch b/library/SubcircuitLibrary/mc1496/mc1496.sch new file mode 100644 index 000000000..f020d21a7 --- /dev/null +++ b/library/SubcircuitLibrary/mc1496/mc1496.sch @@ -0,0 +1,442 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +LIBS:mc1496-cache +EELAYER 25 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L eSim_NPN Q2 +U 1 1 684ADEF2 +P 5350 2400 +F 0 "Q2" H 5250 2450 50 0000 R CNN +F 1 "eSim_NPN" H 5300 2550 50 0000 R CNN +F 2 "" H 5550 2500 29 0000 C CNN +F 3 "" H 5350 2400 60 0000 C CNN + 1 5350 2400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q5 +U 1 1 684ADF85 +P 6050 2400 +F 0 "Q5" H 5950 2450 50 0000 R CNN +F 1 "eSim_NPN" H 6000 2550 50 0000 R CNN +F 2 "" H 6250 2500 29 0000 C CNN +F 3 "" H 6050 2400 60 0000 C CNN + 1 6050 2400 + -1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q6 +U 1 1 684AE05C +P 7100 2400 +F 0 "Q6" H 7000 2450 50 0000 R CNN +F 1 "eSim_NPN" H 7050 2550 50 0000 R CNN +F 2 "" H 7300 2500 29 0000 C CNN +F 3 "" H 7100 2400 60 0000 C CNN + 1 7100 2400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q9 +U 1 1 684AE062 +P 7800 2400 +F 0 "Q9" H 7700 2450 50 0000 R CNN +F 1 "eSim_NPN" H 7750 2550 50 0000 R CNN +F 2 "" H 8000 2500 29 0000 C CNN +F 3 "" H 7800 2400 60 0000 C CNN + 1 7800 2400 + -1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q3 +U 1 1 684AE0CE +P 5600 3050 +F 0 "Q3" H 5500 3100 50 0000 R CNN +F 1 "eSim_NPN" H 5550 3200 50 0000 R CNN +F 2 "" H 5800 3150 29 0000 C CNN +F 3 "" H 5600 3050 60 0000 C CNN + 1 5600 3050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q4 +U 1 1 684AE0F9 +P 5600 3850 +F 0 "Q4" H 5500 3900 50 0000 R CNN +F 1 "eSim_NPN" H 5550 4000 50 0000 R CNN +F 2 "" H 5800 3950 29 0000 C CNN +F 3 "" H 5600 3850 60 0000 C CNN + 1 5600 3850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q7 +U 1 1 684AE124 +P 7400 3050 +F 0 "Q7" H 7300 3100 50 0000 R CNN +F 1 "eSim_NPN" H 7350 3200 50 0000 R CNN +F 2 "" H 7600 3150 29 0000 C CNN +F 3 "" H 7400 3050 60 0000 C CNN + 1 7400 3050 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q8 +U 1 1 684AE15D +P 7400 3850 +F 0 "Q8" H 7300 3900 50 0000 R CNN +F 1 "eSim_NPN" H 7350 4000 50 0000 R CNN +F 2 "" H 7600 3950 29 0000 C CNN +F 3 "" H 7400 3850 60 0000 C CNN + 1 7400 3850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_NPN Q1 +U 1 1 684AE198 +P 4850 4050 +F 0 "Q1" H 4750 4100 50 0000 R CNN +F 1 "eSim_NPN" H 4800 4200 50 0000 R CNN +F 2 "" H 5050 4150 29 0000 C CNN +F 3 "" H 4850 4050 60 0000 C CNN + 1 4850 4050 + 1 0 0 -1 +$EndComp +$Comp +L resistor R2 +U 1 1 684AE385 +P 5650 4400 +F 0 "R2" H 5700 4530 50 0000 C CNN +F 1 "500" H 5700 4350 50 0000 C CNN +F 2 "" H 5700 4380 30 0000 C CNN +F 3 "" V 5700 4450 30 0000 C CNN + 1 5650 4400 + 0 1 1 0 +$EndComp +$Comp +L resistor R1 +U 1 1 684AE3CA +P 4900 4400 +F 0 "R1" H 4950 4530 50 0000 C CNN +F 1 "500" H 4950 4350 50 0000 C CNN +F 2 "" H 4950 4380 30 0000 C CNN +F 3 "" V 4950 4450 30 0000 C CNN + 1 4900 4400 + 0 1 1 0 +$EndComp +$Comp +L resistor R3 +U 1 1 684AE411 +P 7450 4400 +F 0 "R3" H 7500 4530 50 0000 C CNN +F 1 "500" H 7500 4350 50 0000 C CNN +F 2 "" H 7500 4380 30 0000 C CNN +F 3 "" V 7500 4450 30 0000 C CNN + 1 7450 4400 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 1 1 684AE863 +P 4250 3400 +F 0 "U1" H 4300 3500 30 0000 C CNN +F 1 "PORT" H 4250 3400 30 0000 C CNN +F 2 "" H 4250 3400 60 0000 C CNN +F 3 "" H 4250 3400 60 0000 C CNN + 1 4250 3400 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 684AEA59 +P 8400 3300 +F 0 "U1" H 8450 3400 30 0000 C CNN +F 1 "PORT" H 8400 3300 30 0000 C CNN +F 2 "" H 8400 3300 60 0000 C CNN +F 3 "" H 8400 3300 60 0000 C CNN + 2 8400 3300 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 3 1 684AEA98 +P 8400 3550 +F 0 "U1" H 8450 3650 30 0000 C CNN +F 1 "PORT" H 8400 3550 30 0000 C CNN +F 2 "" H 8400 3550 60 0000 C CNN +F 3 "" H 8400 3550 60 0000 C CNN + 3 8400 3550 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 4 1 684AEB4A +P 4250 3050 +F 0 "U1" H 4300 3150 30 0000 C CNN +F 1 "PORT" H 4250 3050 30 0000 C CNN +F 2 "" H 4250 3050 60 0000 C CNN +F 3 "" H 4250 3050 60 0000 C CNN + 4 4250 3050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 684AEC45 +P 3950 3850 +F 0 "U1" H 4000 3950 30 0000 C CNN +F 1 "PORT" H 3950 3850 30 0000 C CNN +F 2 "" H 3950 3850 60 0000 C CNN +F 3 "" H 3950 3850 60 0000 C CNN + 5 3950 3850 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 684AECBB +P 5450 1350 +F 0 "U1" H 5500 1450 30 0000 C CNN +F 1 "PORT" H 5450 1350 30 0000 C CNN +F 2 "" H 5450 1350 60 0000 C CNN +F 3 "" H 5450 1350 60 0000 C CNN + 6 5450 1350 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 7 1 684AED24 +P 3000 1050 +F 0 "U1" H 3050 1150 30 0000 C CNN +F 1 "PORT" H 3000 1050 30 0000 C CNN +F 2 "" H 3000 1050 60 0000 C CNN +F 3 "" H 3000 1050 60 0000 C CNN + 7 3000 1050 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 8 1 684AEDED +P 4250 2650 +F 0 "U1" H 4300 2750 30 0000 C CNN +F 1 "PORT" H 4250 2650 30 0000 C CNN +F 2 "" H 4250 2650 60 0000 C CNN +F 3 "" H 4250 2650 60 0000 C CNN + 8 4250 2650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 684AEE7E +P 3000 1350 +F 0 "U1" H 3050 1450 30 0000 C CNN +F 1 "PORT" H 3000 1350 30 0000 C CNN +F 2 "" H 3000 1350 60 0000 C CNN +F 3 "" H 3000 1350 60 0000 C CNN + 9 3000 1350 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 684AEEC3 +P 4250 2450 +F 0 "U1" H 4300 2550 30 0000 C CNN +F 1 "PORT" H 4250 2450 30 0000 C CNN +F 2 "" H 4250 2450 60 0000 C CNN +F 3 "" H 4250 2450 60 0000 C CNN + 10 4250 2450 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 11 1 684AEF8E +P 3000 1650 +F 0 "U1" H 3050 1750 30 0000 C CNN +F 1 "PORT" H 3000 1650 30 0000 C CNN +F 2 "" H 3000 1650 60 0000 C CNN +F 3 "" H 3000 1650 60 0000 C CNN + 11 3000 1650 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 12 1 684AEFFD +P 7700 1100 +F 0 "U1" H 7750 1200 30 0000 C CNN +F 1 "PORT" H 7700 1100 30 0000 C CNN +F 2 "" H 7700 1100 60 0000 C CNN +F 3 "" H 7700 1100 60 0000 C CNN + 12 7700 1100 + 0 1 1 0 +$EndComp +$Comp +L PORT U1 +U 13 1 684AF0F2 +P 3000 1900 +F 0 "U1" H 3050 2000 30 0000 C CNN +F 1 "PORT" H 3000 1900 30 0000 C CNN +F 2 "" H 3000 1900 60 0000 C CNN +F 3 "" H 3000 1900 60 0000 C CNN + 13 3000 1900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 14 1 684AF1C4 +P 4350 4750 +F 0 "U1" H 4400 4850 30 0000 C CNN +F 1 "PORT" H 4350 4750 30 0000 C CNN +F 2 "" H 4350 4750 60 0000 C CNN +F 3 "" H 4350 4750 60 0000 C CNN + 14 4350 4750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5450 2600 5450 2750 +Wire Wire Line + 5450 2750 5950 2750 +Wire Wire Line + 5950 2750 5950 2600 +Wire Wire Line + 5700 2850 5700 2750 +Connection ~ 5700 2750 +Wire Wire Line + 7200 2600 7200 2750 +Wire Wire Line + 7200 2750 7700 2750 +Wire Wire Line + 7700 2750 7700 2600 +Wire Wire Line + 7500 2850 7500 2750 +Connection ~ 7500 2750 +Wire Wire Line + 5700 3250 5700 3650 +Wire Wire Line + 7500 3250 7500 3650 +Wire Wire Line + 6250 2400 6900 2400 +Wire Wire Line + 5450 1600 5450 2200 +Wire Wire Line + 5450 1900 7200 1900 +Wire Wire Line + 7700 1350 7700 2200 +Wire Wire Line + 5950 2200 5950 2000 +Wire Wire Line + 5950 2000 7700 2000 +Wire Wire Line + 5150 2400 5150 2650 +Wire Wire Line + 4500 2650 8000 2650 +Wire Wire Line + 8000 2650 8000 2400 +Wire Wire Line + 4200 3850 5400 3850 +Wire Wire Line + 4950 4300 4950 4250 +Wire Wire Line + 5700 4050 5700 4300 +Wire Wire Line + 7500 4050 7500 4300 +Wire Wire Line + 4950 4600 4950 4750 +Wire Wire Line + 4600 4750 7500 4750 +Wire Wire Line + 5700 4750 5700 4600 +Wire Wire Line + 7500 4750 7500 4600 +Connection ~ 5700 4750 +Wire Wire Line + 4650 4050 4300 4050 +Wire Wire Line + 4300 4050 4300 3850 +Connection ~ 4950 3850 +Connection ~ 4950 4750 +Connection ~ 4300 3850 +Wire Wire Line + 4500 3400 7200 3400 +Wire Wire Line + 7200 3400 7200 3050 +Wire Wire Line + 4500 3050 5400 3050 +Connection ~ 5150 2650 +Wire Wire Line + 4500 2450 4500 2200 +Wire Wire Line + 4500 2200 6600 2200 +Wire Wire Line + 6600 2200 6600 2400 +Connection ~ 6600 2400 +Connection ~ 5450 1900 +Wire Wire Line + 7500 3300 8150 3300 +Connection ~ 7500 3300 +Wire Wire Line + 8150 3550 5700 3550 +Connection ~ 5700 3550 +NoConn ~ 3250 1050 +NoConn ~ 3250 1350 +NoConn ~ 3250 1650 +NoConn ~ 3250 1900 +Wire Wire Line + 7200 3850 7200 4100 +Wire Wire Line + 7200 4100 5300 4100 +Wire Wire Line + 5300 4100 5300 3850 +Connection ~ 5300 3850 +Wire Wire Line + 7200 1900 7200 2200 +Connection ~ 7700 2000 +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/mc1496/mc1496.sub b/library/SubcircuitLibrary/mc1496/mc1496.sub new file mode 100644 index 000000000..67de09f28 --- /dev/null +++ b/library/SubcircuitLibrary/mc1496/mc1496.sub @@ -0,0 +1,19 @@ +* Subcircuit mc1496 +.subckt mc1496 net-_q7-pad2_ net-_q7-pad3_ net-_q3-pad3_ net-_q3-pad2_ net-_q1-pad1_ net-_q2-pad1_ ? net-_q2-pad2_ ? net-_q5-pad2_ ? net-_q5-pad1_ ? net-_r1-pad2_ +* c:\fossee\esim\library\subcircuitlibrary\mc1496\mc1496.cir +.include NPN.lib +q2 net-_q2-pad1_ net-_q2-pad2_ net-_q2-pad3_ Q2N2222 +q5 net-_q5-pad1_ net-_q5-pad2_ net-_q2-pad3_ Q2N2222 +q6 net-_q2-pad1_ net-_q5-pad2_ net-_q6-pad3_ Q2N2222 +q9 net-_q5-pad1_ net-_q2-pad2_ net-_q6-pad3_ Q2N2222 +q3 net-_q2-pad3_ net-_q3-pad2_ net-_q3-pad3_ Q2N2222 +q4 net-_q3-pad3_ net-_q1-pad1_ net-_q4-pad3_ Q2N2222 +q7 net-_q6-pad3_ net-_q7-pad2_ net-_q7-pad3_ Q2N2222 +q8 net-_q7-pad3_ net-_q1-pad1_ net-_q8-pad3_ Q2N2222 +q1 net-_q1-pad1_ net-_q1-pad1_ net-_q1-pad3_ Q2N2222 +r2 net-_q4-pad3_ net-_r1-pad2_ 500 +r1 net-_q1-pad3_ net-_r1-pad2_ 500 +r3 net-_q8-pad3_ net-_r1-pad2_ 500 +* Control Statements + +.ends mc1496 \ No newline at end of file diff --git a/library/SubcircuitLibrary/mc1496/mc1496_Previous_Values.xml b/library/SubcircuitLibrary/mc1496/mc1496_Previous_Values.xml new file mode 100644 index 000000000..c5e4dddb9 --- /dev/null +++ b/library/SubcircuitLibrary/mc1496/mc1496_Previous_Values.xml @@ -0,0 +1 @@ +C:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libC:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.110msusms \ No newline at end of file diff --git a/library/SubcircuitLibrary/tc4008bp_ic/analysis b/library/SubcircuitLibrary/tc4008bp_ic/analysis new file mode 100644 index 000000000..edc4bc4f9 --- /dev/null +++ b/library/SubcircuitLibrary/tc4008bp_ic/analysis @@ -0,0 +1 @@ +.tran 200e-03 10e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic-cache.lib b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic-cache.lib new file mode 100644 index 000000000..e0605f3e5 --- /dev/null +++ b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic-cache.lib @@ -0,0 +1,150 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +# +# PORT +# +DEF PORT U 0 40 Y Y 26 F N +F0 "U" 50 100 30 H V C CNN +F1 "PORT" 0 0 30 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 325 225 285 -1421 -1278 0 1 0 N 100 50 150 0 +A 376 -275 356 1294 1408 0 1 0 N 150 0 100 -50 +S -100 50 100 -50 0 1 0 N +X ~ 1 250 0 100 L 30 30 1 1 B +X ~ 2 250 0 100 L 30 30 2 1 B +X ~ 3 250 0 100 L 30 30 3 1 B +X ~ 4 250 0 100 L 30 30 4 1 B +X ~ 5 250 0 100 L 30 30 5 1 B +X ~ 6 250 0 100 L 30 30 6 1 B +X ~ 7 250 0 100 L 30 30 7 1 B +X ~ 8 250 0 100 L 30 30 8 1 B +X ~ 9 250 0 100 L 30 30 9 1 B +X ~ 10 250 0 100 L 30 30 10 1 B +X ~ 11 250 0 100 L 30 30 11 1 B +X ~ 12 250 0 100 L 30 30 12 1 B +X ~ 13 250 0 100 L 30 30 13 1 B +X ~ 14 250 0 100 L 30 30 14 1 B +X ~ 15 250 0 100 L 30 30 15 1 B +X ~ 16 250 0 100 L 30 30 16 1 B +X ~ 17 250 0 100 L 30 30 17 1 B +X ~ 18 250 0 100 L 30 30 18 1 B +X ~ 19 250 0 100 L 30 30 19 1 B +X ~ 20 250 0 100 L 30 30 20 1 B +X ~ 21 250 0 100 L 30 30 21 1 B +X ~ 22 250 0 100 L 30 30 22 1 B +X ~ 23 250 0 100 L 30 30 23 1 B +X ~ 24 250 0 100 L 30 30 24 1 B +X ~ 25 250 0 100 L 30 30 25 1 B +X ~ 26 250 0 100 L 30 30 26 1 B +ENDDRAW +ENDDEF +# +# d_and +# +DEF d_and U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_and" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_inverter +# +DEF d_inverter U 0 40 Y Y 1 F N +F0 "U" 0 -100 60 H V C CNN +F1 "d_inverter" 0 150 60 H V C CNN +F2 "" 50 -50 60 H V C CNN +F3 "" 50 -50 60 H V C CNN +DRAW +P 4 0 1 0 -100 50 -100 -50 100 0 -100 50 N +X ~ 1 -300 0 200 R 50 50 1 1 I +X ~ 2 300 0 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_nand +# +DEF d_nand U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nand" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A 149 50 100 -894 0 0 1 0 N 150 -50 250 50 +A 150 49 100 6 900 0 1 0 N 250 50 150 150 +P 4 0 1 0 150 -50 -250 -50 -250 150 150 150 N +X IN1 1 -450 100 200 R 50 50 1 1 I +X IN2 2 -450 0 200 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_nor +# +DEF d_nor U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_nor" 50 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O I +ENDDRAW +ENDDEF +# +# d_or +# +DEF d_or U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_or" 0 100 60 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 -250 -50 150 -50 N +P 2 0 1 0 -250 150 150 150 N +X IN1 1 -450 100 215 R 50 50 1 1 I +X IN2 2 -450 0 215 R 50 50 1 1 I +X OUT 3 450 50 200 L 50 50 1 1 O +ENDDRAW +ENDDEF +# +# d_xor +# +DEF d_xor U 0 40 Y Y 1 F N +F0 "U" 0 0 60 H V C CNN +F1 "d_xor" 50 100 47 H V C CNN +F2 "" 0 0 60 H V C CNN +F3 "" 0 0 60 H V C CNN +DRAW +A -450 50 224 266 -266 0 1 0 N -250 150 -250 -50 +A -350 50 180 -337 337 0 1 0 N -200 -50 -200 150 +A -25 -124 325 574 323 0 1 0 N 150 150 250 50 +A 74 125 191 -665 -231 0 1 0 N 150 -50 250 50 +P 2 0 1 0 150 -50 -200 -50 N +P 2 0 1 0 150 150 -200 150 N +X IN1 1 -450 100 215 R 50 43 1 1 I +X IN2 2 -450 0 215 R 50 43 1 1 I +X OUT 3 450 50 200 L 50 39 1 1 O +ENDDRAW +ENDDEF +# +#End Library diff --git a/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.cir b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.cir new file mode 100644 index 000000000..400c40b0e --- /dev/null +++ b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.cir @@ -0,0 +1,55 @@ +* C:\FOSSEE\eSim\library\SubcircuitLibrary\tc4008bp_ic\tc4008bp_ic.cir + +* EESchema Netlist Version 1.1 (Spice format) creation date: 07/09/25 23:55:17 + +* To exclude a component from the Spice Netlist add [Spice_Netlist_Enabled] user FIELD set to: N +* To reorder the component spice node sequence add [Spice_Node_Sequence] user FIELD and define sequence: 2,1,0 + +* Sheet Name: / +U7 Net-_U1-Pad1_ Net-_U1-Pad15_ Net-_U16-Pad1_ d_nor +U8 Net-_U1-Pad1_ Net-_U1-Pad15_ Net-_U11-Pad1_ d_nand +U11 Net-_U11-Pad1_ Net-_U11-Pad2_ d_inverter +U16 Net-_U16-Pad1_ Net-_U11-Pad2_ Net-_U16-Pad3_ d_nor +U20 Net-_U16-Pad3_ Net-_U20-Pad2_ Net-_U20-Pad3_ d_xor +U30 Net-_U20-Pad3_ Net-_U1-Pad13_ d_inverter +U50 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U12-Pad1_ d_nor +U2 Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U14-Pad2_ d_nand +U12 Net-_U12-Pad1_ Net-_U12-Pad2_ d_inverter +U14 Net-_U12-Pad2_ Net-_U14-Pad2_ Net-_U14-Pad3_ d_nand +U23 Net-_U12-Pad2_ Net-_U23-Pad2_ Net-_U23-Pad3_ d_and +U33 Net-_U21-Pad2_ Net-_U23-Pad3_ Net-_U20-Pad2_ d_nor +U21 Net-_U14-Pad2_ Net-_U21-Pad2_ d_inverter +U24 Net-_U14-Pad3_ Net-_U23-Pad2_ Net-_U24-Pad3_ d_xor +U34 Net-_U24-Pad3_ Net-_U1-Pad12_ d_inverter +U3 Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U15-Pad1_ d_nor +U4 Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U22-Pad1_ d_nand +U9 Net-_U22-Pad1_ Net-_U15-Pad2_ d_inverter +U15 Net-_U15-Pad1_ Net-_U15-Pad2_ Net-_U15-Pad3_ d_nor +U26 Net-_U15-Pad1_ Net-_U26-Pad2_ Net-_U26-Pad3_ d_or +U27 Net-_U15-Pad3_ Net-_U26-Pad2_ Net-_U27-Pad3_ d_xor +U35 Net-_U22-Pad1_ Net-_U26-Pad3_ Net-_U23-Pad2_ d_nand +U36 Net-_U27-Pad3_ Net-_U1-Pad11_ d_inverter +U5 Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U10-Pad1_ d_nor +U6 Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U13-Pad2_ d_nand +U10 Net-_U10-Pad1_ Net-_U10-Pad2_ d_inverter +U13 Net-_U10-Pad2_ Net-_U13-Pad2_ Net-_U13-Pad3_ d_nand +U25 Net-_U10-Pad2_ Net-_U1-Pad9_ Net-_U25-Pad3_ d_and +U37 Net-_U29-Pad2_ Net-_U25-Pad3_ Net-_U26-Pad2_ d_nor +U29 Net-_U13-Pad2_ Net-_U29-Pad2_ d_inverter +U28 Net-_U13-Pad3_ Net-_U1-Pad9_ Net-_U28-Pad3_ d_xor +U38 Net-_U28-Pad3_ Net-_U1-Pad10_ d_inverter +U17 Net-_U15-Pad1_ Net-_U13-Pad2_ Net-_U17-Pad3_ d_or +U22 Net-_U22-Pad1_ Net-_U17-Pad3_ Net-_U22-Pad3_ d_and +U32 Net-_U12-Pad1_ Net-_U22-Pad3_ Net-_U32-Pad3_ d_or +U39 Net-_U14-Pad2_ Net-_U32-Pad3_ Net-_U39-Pad3_ d_and +U41 Net-_U16-Pad1_ Net-_U39-Pad3_ Net-_U41-Pad3_ d_or +U42 Net-_U11-Pad1_ Net-_U41-Pad3_ Net-_U42-Pad3_ d_nand +U43 Net-_U40-Pad3_ Net-_U42-Pad3_ Net-_U43-Pad3_ d_nor +U44 Net-_U43-Pad3_ Net-_U1-Pad14_ d_inverter +U19 Net-_U15-Pad1_ Net-_U10-Pad1_ Net-_U19-Pad3_ d_nor +U18 Net-_U16-Pad1_ Net-_U12-Pad1_ Net-_U18-Pad3_ d_nor +U31 Net-_U18-Pad3_ Net-_U19-Pad3_ Net-_U31-Pad3_ d_nor +U40 Net-_U1-Pad9_ Net-_U31-Pad3_ Net-_U40-Pad3_ d_and +U1 Net-_U1-Pad1_ Net-_U1-Pad2_ Net-_U1-Pad3_ Net-_U1-Pad4_ Net-_U1-Pad5_ Net-_U1-Pad6_ Net-_U1-Pad7_ Net-_U1-Pad9_ Net-_U1-Pad10_ Net-_U1-Pad11_ Net-_U1-Pad12_ Net-_U1-Pad13_ Net-_U1-Pad14_ Net-_U1-Pad15_ PORT + +.end diff --git a/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.cir.out b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.cir.out new file mode 100644 index 000000000..9c3de971b --- /dev/null +++ b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.cir.out @@ -0,0 +1,188 @@ +* c:\fossee\esim\library\subcircuitlibrary\tc4008bp_ic\tc4008bp_ic.cir + +* u7 net-_u1-pad1_ net-_u1-pad15_ net-_u16-pad1_ d_nor +* u8 net-_u1-pad1_ net-_u1-pad15_ net-_u11-pad1_ d_nand +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +* u16 net-_u16-pad1_ net-_u11-pad2_ net-_u16-pad3_ d_nor +* u20 net-_u16-pad3_ net-_u20-pad2_ net-_u20-pad3_ d_xor +* u30 net-_u20-pad3_ net-_u1-pad13_ d_inverter +* u50 net-_u1-pad2_ net-_u1-pad3_ net-_u12-pad1_ d_nor +* u2 net-_u1-pad2_ net-_u1-pad3_ net-_u14-pad2_ d_nand +* u12 net-_u12-pad1_ net-_u12-pad2_ d_inverter +* u14 net-_u12-pad2_ net-_u14-pad2_ net-_u14-pad3_ d_nand +* u23 net-_u12-pad2_ net-_u23-pad2_ net-_u23-pad3_ d_and +* u33 net-_u21-pad2_ net-_u23-pad3_ net-_u20-pad2_ d_nor +* u21 net-_u14-pad2_ net-_u21-pad2_ d_inverter +* u24 net-_u14-pad3_ net-_u23-pad2_ net-_u24-pad3_ d_xor +* u34 net-_u24-pad3_ net-_u1-pad12_ d_inverter +* u3 net-_u1-pad4_ net-_u1-pad5_ net-_u15-pad1_ d_nor +* u4 net-_u1-pad4_ net-_u1-pad5_ net-_u22-pad1_ d_nand +* u9 net-_u22-pad1_ net-_u15-pad2_ d_inverter +* u15 net-_u15-pad1_ net-_u15-pad2_ net-_u15-pad3_ d_nor +* u26 net-_u15-pad1_ net-_u26-pad2_ net-_u26-pad3_ d_or +* u27 net-_u15-pad3_ net-_u26-pad2_ net-_u27-pad3_ d_xor +* u35 net-_u22-pad1_ net-_u26-pad3_ net-_u23-pad2_ d_nand +* u36 net-_u27-pad3_ net-_u1-pad11_ d_inverter +* u5 net-_u1-pad6_ net-_u1-pad7_ net-_u10-pad1_ d_nor +* u6 net-_u1-pad6_ net-_u1-pad7_ net-_u13-pad2_ d_nand +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u13 net-_u10-pad2_ net-_u13-pad2_ net-_u13-pad3_ d_nand +* u25 net-_u10-pad2_ net-_u1-pad9_ net-_u25-pad3_ d_and +* u37 net-_u29-pad2_ net-_u25-pad3_ net-_u26-pad2_ d_nor +* u29 net-_u13-pad2_ net-_u29-pad2_ d_inverter +* u28 net-_u13-pad3_ net-_u1-pad9_ net-_u28-pad3_ d_xor +* u38 net-_u28-pad3_ net-_u1-pad10_ d_inverter +* u17 net-_u15-pad1_ net-_u13-pad2_ net-_u17-pad3_ d_or +* u22 net-_u22-pad1_ net-_u17-pad3_ net-_u22-pad3_ d_and +* u32 net-_u12-pad1_ net-_u22-pad3_ net-_u32-pad3_ d_or +* u39 net-_u14-pad2_ net-_u32-pad3_ net-_u39-pad3_ d_and +* u41 net-_u16-pad1_ net-_u39-pad3_ net-_u41-pad3_ d_or +* u42 net-_u11-pad1_ net-_u41-pad3_ net-_u42-pad3_ d_nand +* u43 net-_u40-pad3_ net-_u42-pad3_ net-_u43-pad3_ d_nor +* u44 net-_u43-pad3_ net-_u1-pad14_ d_inverter +* u19 net-_u15-pad1_ net-_u10-pad1_ net-_u19-pad3_ d_nor +* u18 net-_u16-pad1_ net-_u12-pad1_ net-_u18-pad3_ d_nor +* u31 net-_u18-pad3_ net-_u19-pad3_ net-_u31-pad3_ d_nor +* u40 net-_u1-pad9_ net-_u31-pad3_ net-_u40-pad3_ d_and +* u1 net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ port +a1 [net-_u1-pad1_ net-_u1-pad15_ ] net-_u16-pad1_ u7 +a2 [net-_u1-pad1_ net-_u1-pad15_ ] net-_u11-pad1_ u8 +a3 net-_u11-pad1_ net-_u11-pad2_ u11 +a4 [net-_u16-pad1_ net-_u11-pad2_ ] net-_u16-pad3_ u16 +a5 [net-_u16-pad3_ net-_u20-pad2_ ] net-_u20-pad3_ u20 +a6 net-_u20-pad3_ net-_u1-pad13_ u30 +a7 [net-_u1-pad2_ net-_u1-pad3_ ] net-_u12-pad1_ u50 +a8 [net-_u1-pad2_ net-_u1-pad3_ ] net-_u14-pad2_ u2 +a9 net-_u12-pad1_ net-_u12-pad2_ u12 +a10 [net-_u12-pad2_ net-_u14-pad2_ ] net-_u14-pad3_ u14 +a11 [net-_u12-pad2_ net-_u23-pad2_ ] net-_u23-pad3_ u23 +a12 [net-_u21-pad2_ net-_u23-pad3_ ] net-_u20-pad2_ u33 +a13 net-_u14-pad2_ net-_u21-pad2_ u21 +a14 [net-_u14-pad3_ net-_u23-pad2_ ] net-_u24-pad3_ u24 +a15 net-_u24-pad3_ net-_u1-pad12_ u34 +a16 [net-_u1-pad4_ net-_u1-pad5_ ] net-_u15-pad1_ u3 +a17 [net-_u1-pad4_ net-_u1-pad5_ ] net-_u22-pad1_ u4 +a18 net-_u22-pad1_ net-_u15-pad2_ u9 +a19 [net-_u15-pad1_ net-_u15-pad2_ ] net-_u15-pad3_ u15 +a20 [net-_u15-pad1_ net-_u26-pad2_ ] net-_u26-pad3_ u26 +a21 [net-_u15-pad3_ net-_u26-pad2_ ] net-_u27-pad3_ u27 +a22 [net-_u22-pad1_ net-_u26-pad3_ ] net-_u23-pad2_ u35 +a23 net-_u27-pad3_ net-_u1-pad11_ u36 +a24 [net-_u1-pad6_ net-_u1-pad7_ ] net-_u10-pad1_ u5 +a25 [net-_u1-pad6_ net-_u1-pad7_ ] net-_u13-pad2_ u6 +a26 net-_u10-pad1_ net-_u10-pad2_ u10 +a27 [net-_u10-pad2_ net-_u13-pad2_ ] net-_u13-pad3_ u13 +a28 [net-_u10-pad2_ net-_u1-pad9_ ] net-_u25-pad3_ u25 +a29 [net-_u29-pad2_ net-_u25-pad3_ ] net-_u26-pad2_ u37 +a30 net-_u13-pad2_ net-_u29-pad2_ u29 +a31 [net-_u13-pad3_ net-_u1-pad9_ ] net-_u28-pad3_ u28 +a32 net-_u28-pad3_ net-_u1-pad10_ u38 +a33 [net-_u15-pad1_ net-_u13-pad2_ ] net-_u17-pad3_ u17 +a34 [net-_u22-pad1_ net-_u17-pad3_ ] net-_u22-pad3_ u22 +a35 [net-_u12-pad1_ net-_u22-pad3_ ] net-_u32-pad3_ u32 +a36 [net-_u14-pad2_ net-_u32-pad3_ ] net-_u39-pad3_ u39 +a37 [net-_u16-pad1_ net-_u39-pad3_ ] net-_u41-pad3_ u41 +a38 [net-_u11-pad1_ net-_u41-pad3_ ] net-_u42-pad3_ u42 +a39 [net-_u40-pad3_ net-_u42-pad3_ ] net-_u43-pad3_ u43 +a40 net-_u43-pad3_ net-_u1-pad14_ u44 +a41 [net-_u15-pad1_ net-_u10-pad1_ ] net-_u19-pad3_ u19 +a42 [net-_u16-pad1_ net-_u12-pad1_ ] net-_u18-pad3_ u18 +a43 [net-_u18-pad3_ net-_u19-pad3_ ] net-_u31-pad3_ u31 +a44 [net-_u1-pad9_ net-_u31-pad3_ ] net-_u40-pad3_ u40 +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u7 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u8 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u16 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u20 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u30 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u50 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u2 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u14 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u33 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u24 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u34 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u3 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u4 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u15 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u26 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u27 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u35 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u36 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u5 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u6 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u37 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u29 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u28 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u38 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u17 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u32 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u39 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u41 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u42 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u43 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u44 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u19 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u18 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u31 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u40 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +.tran 200e-03 10e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.pro b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.pro new file mode 100644 index 000000000..e27a398be --- /dev/null +++ b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.pro @@ -0,0 +1,73 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +LibName1=adc-dac +LibName2=memory +LibName3=xilinx +LibName4=microcontrollers +LibName5=dsp +LibName6=microchip +LibName7=analog_switches +LibName8=motorola +LibName9=texas +LibName10=intel +LibName11=audio +LibName12=interface +LibName13=digital-audio +LibName14=philips +LibName15=display +LibName16=cypress +LibName17=siliconi +LibName18=opto +LibName19=atmel +LibName20=contrib +LibName21=power +LibName22=eSim_Plot +LibName23=transistors +LibName24=conn +LibName25=eSim_User +LibName26=regul +LibName27=74xx +LibName28=cmos4000 +LibName29=eSim_Analog +LibName30=eSim_Devices +LibName31=eSim_Digital +LibName32=eSim_Hybrid +LibName33=eSim_Miscellaneous +LibName34=eSim_Power +LibName35=eSim_Sources +LibName36=eSim_Subckt +LibName37=eSim_Nghdl +LibName38=eSim_Ngveri +LibName39=eSim_SKY130 +LibName40=eSim_SKY130_Subckts diff --git a/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.sch b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.sch new file mode 100644 index 000000000..d784c7685 --- /dev/null +++ b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.sch @@ -0,0 +1,1019 @@ +EESchema Schematic File Version 2 +LIBS:adc-dac +LIBS:memory +LIBS:xilinx +LIBS:microcontrollers +LIBS:dsp +LIBS:microchip +LIBS:analog_switches +LIBS:motorola +LIBS:texas +LIBS:intel +LIBS:audio +LIBS:interface +LIBS:digital-audio +LIBS:philips +LIBS:display +LIBS:cypress +LIBS:siliconi +LIBS:opto +LIBS:atmel +LIBS:contrib +LIBS:power +LIBS:eSim_Plot +LIBS:transistors +LIBS:conn +LIBS:eSim_User +LIBS:regul +LIBS:74xx +LIBS:cmos4000 +LIBS:eSim_Analog +LIBS:eSim_Devices +LIBS:eSim_Digital +LIBS:eSim_Hybrid +LIBS:eSim_Miscellaneous +LIBS:eSim_Power +LIBS:eSim_Sources +LIBS:eSim_Subckt +LIBS:eSim_Nghdl +LIBS:eSim_Ngveri +LIBS:eSim_SKY130 +LIBS:eSim_SKY130_Subckts +EELAYER 25 0 +EELAYER END +$Descr A2 23386 16535 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L d_nor U7 +U 1 1 686EAFDD +P 10550 6050 +F 0 "U7" H 10550 6050 60 0000 C CNN +F 1 "d_nor" H 10600 6150 60 0000 C CNN +F 2 "" H 10550 6050 60 0000 C CNN +F 3 "" H 10550 6050 60 0000 C CNN + 1 10550 6050 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U8 +U 1 1 686EAFDE +P 10550 6550 +F 0 "U8" H 10550 6550 60 0000 C CNN +F 1 "d_nand" H 10600 6650 60 0000 C CNN +F 2 "" H 10550 6550 60 0000 C CNN +F 3 "" H 10550 6550 60 0000 C CNN + 1 10550 6550 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U11 +U 1 1 686EAFDF +P 11750 6500 +F 0 "U11" H 11750 6400 60 0000 C CNN +F 1 "d_inverter" H 11750 6650 60 0000 C CNN +F 2 "" H 11800 6450 60 0000 C CNN +F 3 "" H 11800 6450 60 0000 C CNN + 1 11750 6500 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U16 +U 1 1 686EAFE0 +P 12950 6250 +F 0 "U16" H 12950 6250 60 0000 C CNN +F 1 "d_nor" H 13000 6350 60 0000 C CNN +F 2 "" H 12950 6250 60 0000 C CNN +F 3 "" H 12950 6250 60 0000 C CNN + 1 12950 6250 + 1 0 0 -1 +$EndComp +$Comp +L d_xor U20 +U 1 1 686EAFE1 +P 14250 6300 +F 0 "U20" H 14250 6300 60 0000 C CNN +F 1 "d_xor" H 14300 6400 47 0000 C CNN +F 2 "" H 14250 6300 60 0000 C CNN +F 3 "" H 14250 6300 60 0000 C CNN + 1 14250 6300 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U30 +U 1 1 686EAFE2 +P 15400 6250 +F 0 "U30" H 15400 6150 60 0000 C CNN +F 1 "d_inverter" H 15400 6400 60 0000 C CNN +F 2 "" H 15450 6200 60 0000 C CNN +F 3 "" H 15450 6200 60 0000 C CNN + 1 15400 6250 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U50 +U 1 1 686EAFE3 +P 10450 7250 +F 0 "U50" H 10450 7250 60 0000 C CNN +F 1 "d_nor" H 10500 7350 60 0000 C CNN +F 2 "" H 10450 7250 60 0000 C CNN +F 3 "" H 10450 7250 60 0000 C CNN + 1 10450 7250 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U2 +U 1 1 686EAFE4 +P 10450 7750 +F 0 "U2" H 10450 7750 60 0000 C CNN +F 1 "d_nand" H 10500 7850 60 0000 C CNN +F 2 "" H 10450 7750 60 0000 C CNN +F 3 "" H 10450 7750 60 0000 C CNN + 1 10450 7750 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U12 +U 1 1 686EAFE5 +P 11750 7200 +F 0 "U12" H 11750 7100 60 0000 C CNN +F 1 "d_inverter" H 11750 7350 60 0000 C CNN +F 2 "" H 11800 7150 60 0000 C CNN +F 3 "" H 11800 7150 60 0000 C CNN + 1 11750 7200 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U14 +U 1 1 686EAFE6 +P 12900 7700 +F 0 "U14" H 12900 7700 60 0000 C CNN +F 1 "d_nand" H 12950 7800 60 0000 C CNN +F 2 "" H 12900 7700 60 0000 C CNN +F 3 "" H 12900 7700 60 0000 C CNN + 1 12900 7700 + 1 0 0 -1 +$EndComp +$Comp +L d_and U23 +U 1 1 686EAFE7 +P 14350 7300 +F 0 "U23" H 14350 7300 60 0000 C CNN +F 1 "d_and" H 14400 7400 60 0000 C CNN +F 2 "" H 14350 7300 60 0000 C CNN +F 3 "" H 14350 7300 60 0000 C CNN + 1 14350 7300 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U33 +U 1 1 686EAFE8 +P 15600 6950 +F 0 "U33" H 15600 6950 60 0000 C CNN +F 1 "d_nor" H 15650 7050 60 0000 C CNN +F 2 "" H 15600 6950 60 0000 C CNN +F 3 "" H 15600 6950 60 0000 C CNN + 1 15600 6950 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U21 +U 1 1 686EAFE9 +P 14300 6850 +F 0 "U21" H 14300 6750 60 0000 C CNN +F 1 "d_inverter" H 14300 7000 60 0000 C CNN +F 2 "" H 14350 6800 60 0000 C CNN +F 3 "" H 14350 6800 60 0000 C CNN + 1 14300 6850 + 1 0 0 -1 +$EndComp +$Comp +L d_xor U24 +U 1 1 686EAFEA +P 14350 7750 +F 0 "U24" H 14350 7750 60 0000 C CNN +F 1 "d_xor" H 14400 7850 47 0000 C CNN +F 2 "" H 14350 7750 60 0000 C CNN +F 3 "" H 14350 7750 60 0000 C CNN + 1 14350 7750 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U34 +U 1 1 686EAFEB +P 15600 7700 +F 0 "U34" H 15600 7600 60 0000 C CNN +F 1 "d_inverter" H 15600 7850 60 0000 C CNN +F 2 "" H 15650 7650 60 0000 C CNN +F 3 "" H 15650 7650 60 0000 C CNN + 1 15600 7700 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U3 +U 1 1 686EAFEC +P 10450 8650 +F 0 "U3" H 10450 8650 60 0000 C CNN +F 1 "d_nor" H 10500 8750 60 0000 C CNN +F 2 "" H 10450 8650 60 0000 C CNN +F 3 "" H 10450 8650 60 0000 C CNN + 1 10450 8650 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U4 +U 1 1 686EAFED +P 10450 9150 +F 0 "U4" H 10450 9150 60 0000 C CNN +F 1 "d_nand" H 10500 9250 60 0000 C CNN +F 2 "" H 10450 9150 60 0000 C CNN +F 3 "" H 10450 9150 60 0000 C CNN + 1 10450 9150 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U9 +U 1 1 686EAFEE +P 11650 9100 +F 0 "U9" H 11650 9000 60 0000 C CNN +F 1 "d_inverter" H 11650 9250 60 0000 C CNN +F 2 "" H 11700 9050 60 0000 C CNN +F 3 "" H 11700 9050 60 0000 C CNN + 1 11650 9100 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U15 +U 1 1 686EAFEF +P 12900 8800 +F 0 "U15" H 12900 8800 60 0000 C CNN +F 1 "d_nor" H 12950 8900 60 0000 C CNN +F 2 "" H 12900 8800 60 0000 C CNN +F 3 "" H 12900 8800 60 0000 C CNN + 1 12900 8800 + 1 0 0 -1 +$EndComp +$Comp +L d_or U26 +U 1 1 686EAFF0 +P 14450 8600 +F 0 "U26" H 14450 8600 60 0000 C CNN +F 1 "d_or" H 14450 8700 60 0000 C CNN +F 2 "" H 14450 8600 60 0000 C CNN +F 3 "" H 14450 8600 60 0000 C CNN + 1 14450 8600 + 1 0 0 -1 +$EndComp +$Comp +L d_xor U27 +U 1 1 686EAFF1 +P 14450 9200 +F 0 "U27" H 14450 9200 60 0000 C CNN +F 1 "d_xor" H 14500 9300 47 0000 C CNN +F 2 "" H 14450 9200 60 0000 C CNN +F 3 "" H 14450 9200 60 0000 C CNN + 1 14450 9200 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U35 +U 1 1 686EAFF2 +P 15700 8350 +F 0 "U35" H 15700 8350 60 0000 C CNN +F 1 "d_nand" H 15750 8450 60 0000 C CNN +F 2 "" H 15700 8350 60 0000 C CNN +F 3 "" H 15700 8350 60 0000 C CNN + 1 15700 8350 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U36 +U 1 1 686EAFF3 +P 15700 9150 +F 0 "U36" H 15700 9050 60 0000 C CNN +F 1 "d_inverter" H 15700 9300 60 0000 C CNN +F 2 "" H 15750 9100 60 0000 C CNN +F 3 "" H 15750 9100 60 0000 C CNN + 1 15700 9150 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U5 +U 1 1 686EAFF4 +P 10450 10000 +F 0 "U5" H 10450 10000 60 0000 C CNN +F 1 "d_nor" H 10500 10100 60 0000 C CNN +F 2 "" H 10450 10000 60 0000 C CNN +F 3 "" H 10450 10000 60 0000 C CNN + 1 10450 10000 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U6 +U 1 1 686EAFF5 +P 10450 10600 +F 0 "U6" H 10450 10600 60 0000 C CNN +F 1 "d_nand" H 10500 10700 60 0000 C CNN +F 2 "" H 10450 10600 60 0000 C CNN +F 3 "" H 10450 10600 60 0000 C CNN + 1 10450 10600 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U10 +U 1 1 686EAFF6 +P 11650 9950 +F 0 "U10" H 11650 9850 60 0000 C CNN +F 1 "d_inverter" H 11650 10100 60 0000 C CNN +F 2 "" H 11700 9900 60 0000 C CNN +F 3 "" H 11700 9900 60 0000 C CNN + 1 11650 9950 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U13 +U 1 1 686EAFF7 +P 12800 10550 +F 0 "U13" H 12800 10550 60 0000 C CNN +F 1 "d_nand" H 12850 10650 60 0000 C CNN +F 2 "" H 12800 10550 60 0000 C CNN +F 3 "" H 12800 10550 60 0000 C CNN + 1 12800 10550 + 1 0 0 -1 +$EndComp +$Comp +L d_and U25 +U 1 1 686EAFF8 +P 14350 10050 +F 0 "U25" H 14350 10050 60 0000 C CNN +F 1 "d_and" H 14400 10150 60 0000 C CNN +F 2 "" H 14350 10050 60 0000 C CNN +F 3 "" H 14350 10050 60 0000 C CNN + 1 14350 10050 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U37 +U 1 1 686EAFF9 +P 15750 9700 +F 0 "U37" H 15750 9700 60 0000 C CNN +F 1 "d_nor" H 15800 9800 60 0000 C CNN +F 2 "" H 15750 9700 60 0000 C CNN +F 3 "" H 15750 9700 60 0000 C CNN + 1 15750 9700 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U29 +U 1 1 686EAFFA +P 14700 9600 +F 0 "U29" H 14700 9500 60 0000 C CNN +F 1 "d_inverter" H 14700 9750 60 0000 C CNN +F 2 "" H 14750 9550 60 0000 C CNN +F 3 "" H 14750 9550 60 0000 C CNN + 1 14700 9600 + 1 0 0 -1 +$EndComp +$Comp +L d_xor U28 +U 1 1 686EAFFB +P 14600 10600 +F 0 "U28" H 14600 10600 60 0000 C CNN +F 1 "d_xor" H 14650 10700 47 0000 C CNN +F 2 "" H 14600 10600 60 0000 C CNN +F 3 "" H 14600 10600 60 0000 C CNN + 1 14600 10600 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U38 +U 1 1 686EAFFC +P 15800 10550 +F 0 "U38" H 15800 10450 60 0000 C CNN +F 1 "d_inverter" H 15800 10700 60 0000 C CNN +F 2 "" H 15850 10500 60 0000 C CNN +F 3 "" H 15850 10500 60 0000 C CNN + 1 15800 10550 + 1 0 0 -1 +$EndComp +Text Notes 9850 5900 0 60 ~ 0 +b4 +Text Notes 9950 6650 0 60 ~ 0 +a4 +Text Notes 9800 7100 0 60 ~ 0 +b3 +Text Notes 9900 7850 0 60 ~ 0 +a3 +Text Notes 9850 8500 0 60 ~ 0 +b2 +Text Notes 9900 9300 0 60 ~ 0 +a2 +Text Notes 9850 9800 0 60 ~ 0 +b1 +Text Notes 9950 10800 0 60 ~ 0 +a1 +Text Notes 9950 11200 0 60 ~ 0 +cin\n +$Comp +L d_or U17 +U 1 1 686EAFFD +P 13300 5250 +F 0 "U17" H 13300 5250 60 0000 C CNN +F 1 "d_or" H 13300 5350 60 0000 C CNN +F 2 "" H 13300 5250 60 0000 C CNN +F 3 "" H 13300 5250 60 0000 C CNN + 1 13300 5250 + 1 0 0 -1 +$EndComp +$Comp +L d_and U22 +U 1 1 686EAFFE +P 14350 4950 +F 0 "U22" H 14350 4950 60 0000 C CNN +F 1 "d_and" H 14400 5050 60 0000 C CNN +F 2 "" H 14350 4950 60 0000 C CNN +F 3 "" H 14350 4950 60 0000 C CNN + 1 14350 4950 + 1 0 0 -1 +$EndComp +$Comp +L d_or U32 +U 1 1 686EAFFF +P 15500 4550 +F 0 "U32" H 15500 4550 60 0000 C CNN +F 1 "d_or" H 15500 4650 60 0000 C CNN +F 2 "" H 15500 4550 60 0000 C CNN +F 3 "" H 15500 4550 60 0000 C CNN + 1 15500 4550 + 1 0 0 -1 +$EndComp +$Comp +L d_and U39 +U 1 1 686EB000 +P 16550 4050 +F 0 "U39" H 16550 4050 60 0000 C CNN +F 1 "d_and" H 16600 4150 60 0000 C CNN +F 2 "" H 16550 4050 60 0000 C CNN +F 3 "" H 16550 4050 60 0000 C CNN + 1 16550 4050 + 1 0 0 -1 +$EndComp +$Comp +L d_or U41 +U 1 1 686EB001 +P 17700 3700 +F 0 "U41" H 17700 3700 60 0000 C CNN +F 1 "d_or" H 17700 3800 60 0000 C CNN +F 2 "" H 17700 3700 60 0000 C CNN +F 3 "" H 17700 3700 60 0000 C CNN + 1 17700 3700 + 1 0 0 -1 +$EndComp +$Comp +L d_nand U42 +U 1 1 686EB002 +P 18800 3250 +F 0 "U42" H 18800 3250 60 0000 C CNN +F 1 "d_nand" H 18850 3350 60 0000 C CNN +F 2 "" H 18800 3250 60 0000 C CNN +F 3 "" H 18800 3250 60 0000 C CNN + 1 18800 3250 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U43 +U 1 1 686EB003 +P 19950 2800 +F 0 "U43" H 19950 2800 60 0000 C CNN +F 1 "d_nor" H 20000 2900 60 0000 C CNN +F 2 "" H 19950 2800 60 0000 C CNN +F 3 "" H 19950 2800 60 0000 C CNN + 1 19950 2800 + 1 0 0 -1 +$EndComp +$Comp +L d_inverter U44 +U 1 1 686EB004 +P 21000 2750 +F 0 "U44" H 21000 2650 60 0000 C CNN +F 1 "d_inverter" H 21000 2900 60 0000 C CNN +F 2 "" H 21050 2700 60 0000 C CNN +F 3 "" H 21050 2700 60 0000 C CNN + 1 21000 2750 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U19 +U 1 1 686EB005 +P 14150 3600 +F 0 "U19" H 14150 3600 60 0000 C CNN +F 1 "d_nor" H 14200 3700 60 0000 C CNN +F 2 "" H 14150 3600 60 0000 C CNN +F 3 "" H 14150 3600 60 0000 C CNN + 1 14150 3600 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U18 +U 1 1 686EB006 +P 14150 3000 +F 0 "U18" H 14150 3000 60 0000 C CNN +F 1 "d_nor" H 14200 3100 60 0000 C CNN +F 2 "" H 14150 3000 60 0000 C CNN +F 3 "" H 14150 3000 60 0000 C CNN + 1 14150 3000 + 1 0 0 -1 +$EndComp +$Comp +L d_nor U31 +U 1 1 686EB007 +P 15500 3250 +F 0 "U31" H 15500 3250 60 0000 C CNN +F 1 "d_nor" H 15550 3350 60 0000 C CNN +F 2 "" H 15500 3250 60 0000 C CNN +F 3 "" H 15500 3250 60 0000 C CNN + 1 15500 3250 + 1 0 0 -1 +$EndComp +$Comp +L d_and U40 +U 1 1 686EB008 +P 16950 2650 +F 0 "U40" H 16950 2650 60 0000 C CNN +F 1 "d_and" H 17000 2750 60 0000 C CNN +F 2 "" H 16950 2650 60 0000 C CNN +F 3 "" H 16950 2650 60 0000 C CNN + 1 16950 2650 + 1 0 0 -1 +$EndComp +Wire Wire Line + 7850 5950 10100 5950 +Wire Wire Line + 9850 5950 9850 6450 +Wire Wire Line + 9850 6450 10100 6450 +Wire Wire Line + 10100 6050 9950 6050 +Wire Wire Line + 9950 6050 9950 6550 +Wire Wire Line + 8000 6550 10100 6550 +Wire Wire Line + 11000 6500 11450 6500 +Wire Wire Line + 12050 6500 12050 6250 +Wire Wire Line + 12050 6250 12500 6250 +Wire Wire Line + 12500 6150 12500 6000 +Wire Wire Line + 12500 6000 11000 6000 +Wire Wire Line + 13400 6200 13800 6200 +Wire Wire Line + 14700 6250 15100 6250 +Wire Wire Line + 8150 7150 10000 7150 +Wire Wire Line + 9700 7150 9700 7650 +Wire Wire Line + 9700 7650 10000 7650 +Wire Wire Line + 10000 7250 9850 7250 +Wire Wire Line + 9850 7250 9850 7750 +Wire Wire Line + 8300 7750 10000 7750 +Wire Wire Line + 10900 7200 11450 7200 +Wire Wire Line + 12050 7200 13900 7200 +Wire Wire Line + 12450 7200 12450 7600 +Wire Wire Line + 10900 7700 12450 7700 +Connection ~ 12450 7200 +Wire Wire Line + 14600 6850 15150 6850 +Wire Wire Line + 15150 6950 15150 7250 +Wire Wire Line + 15150 7250 14800 7250 +Wire Wire Line + 13350 7650 13900 7650 +Wire Wire Line + 13900 7300 13600 7300 +Wire Wire Line + 13600 7300 13600 8000 +Wire Wire Line + 13600 7750 13900 7750 +Wire Wire Line + 14800 7700 15300 7700 +Wire Wire Line + 13800 6300 13600 6300 +Wire Wire Line + 13600 6300 13600 6500 +Wire Wire Line + 13600 6500 16200 6500 +Wire Wire Line + 16200 6500 16200 6900 +Wire Wire Line + 16200 6900 16050 6900 +Wire Wire Line + 10000 8550 9700 8550 +Wire Wire Line + 9700 8200 9700 9050 +Wire Wire Line + 9700 9050 10000 9050 +Wire Wire Line + 10000 8650 9850 8650 +Wire Wire Line + 9850 8650 9850 9150 +Wire Wire Line + 8350 9150 10000 9150 +Wire Wire Line + 10900 9100 11350 9100 +Wire Wire Line + 11950 9100 12400 9100 +Wire Wire Line + 12400 9100 12400 8800 +Wire Wire Line + 12400 8800 12450 8800 +Wire Wire Line + 12450 8500 12450 8700 +Wire Wire Line + 12450 8600 10900 8600 +Wire Wire Line + 12450 8500 14000 8500 +Connection ~ 12450 8600 +Wire Wire Line + 13350 8750 13350 9100 +Wire Wire Line + 13350 9100 14000 9100 +Wire Wire Line + 14000 8600 13650 8600 +Wire Wire Line + 13650 8600 13650 9300 +Wire Wire Line + 13650 9200 14000 9200 +Wire Wire Line + 14900 9150 15400 9150 +Wire Wire Line + 14900 8550 15250 8550 +Wire Wire Line + 15250 8550 15250 8350 +Wire Wire Line + 8200 9900 10000 9900 +Wire Wire Line + 9700 9900 9700 10500 +Wire Wire Line + 9700 10500 10000 10500 +Wire Wire Line + 10000 10000 9850 10000 +Wire Wire Line + 9850 10000 9850 10600 +Wire Wire Line + 8100 10600 10000 10600 +Wire Wire Line + 10900 9950 11350 9950 +Wire Wire Line + 11950 9950 13900 9950 +Wire Wire Line + 12350 9950 12350 10450 +Wire Wire Line + 10900 10550 12350 10550 +Connection ~ 12350 9950 +Wire Wire Line + 14800 10000 15300 10000 +Wire Wire Line + 15300 10000 15300 9700 +Wire Wire Line + 15000 9600 15300 9600 +Wire Wire Line + 15050 10550 15500 10550 +Wire Wire Line + 13250 10500 14150 10500 +Wire Wire Line + 13900 10050 13650 10050 +Wire Wire Line + 13650 10050 13650 10800 +Wire Wire Line + 13650 10600 14150 10600 +Wire Wire Line + 13600 8000 16350 8000 +Wire Wire Line + 16350 8000 16350 8300 +Wire Wire Line + 16350 8300 16150 8300 +Connection ~ 13600 7750 +Wire Wire Line + 13650 9300 16400 9300 +Wire Wire Line + 16400 9300 16400 9650 +Wire Wire Line + 16400 9650 16200 9650 +Connection ~ 13650 9200 +Wire Wire Line + 13750 5200 13750 4950 +Wire Wire Line + 13750 4950 13900 4950 +Wire Wire Line + 14800 4900 14800 4550 +Wire Wire Line + 14800 4550 15050 4550 +Wire Wire Line + 15950 4500 15950 4050 +Wire Wire Line + 15950 4050 16100 4050 +Wire Wire Line + 17000 4000 17000 3700 +Wire Wire Line + 17000 3700 17250 3700 +Wire Wire Line + 18150 3650 18150 3250 +Wire Wire Line + 18150 3250 18350 3250 +Wire Wire Line + 19250 3200 19250 2800 +Wire Wire Line + 19250 2800 19500 2800 +Wire Wire Line + 20400 2750 20700 2750 +Wire Wire Line + 14600 2950 15050 2950 +Wire Wire Line + 15050 2950 15050 3150 +Wire Wire Line + 15050 3250 15050 3550 +Wire Wire Line + 15050 3550 14600 3550 +Wire Wire Line + 15950 3200 15950 2650 +Wire Wire Line + 15950 2650 16500 2650 +Wire Wire Line + 16500 2550 11400 2550 +Wire Wire Line + 11400 2550 11400 11200 +Wire Wire Line + 11400 11200 7950 11200 +Wire Wire Line + 17400 2600 19500 2600 +Wire Wire Line + 19500 2600 19500 2700 +Wire Wire Line + 12850 5250 11350 5250 +Wire Wire Line + 11350 5250 11350 10550 +Connection ~ 11350 10550 +Wire Wire Line + 12850 5150 11300 5150 +Wire Wire Line + 11300 3500 11300 8600 +Connection ~ 11300 8600 +Wire Wire Line + 13900 4850 11250 4850 +Wire Wire Line + 11250 4850 11250 9100 +Connection ~ 11250 9100 +Wire Wire Line + 15050 4450 11200 4450 +Wire Wire Line + 11200 3000 11200 7200 +Connection ~ 11200 7200 +Wire Wire Line + 16100 3950 11150 3950 +Wire Wire Line + 11150 3950 11150 7700 +Connection ~ 11150 7700 +Wire Wire Line + 17250 3600 14400 3600 +Wire Wire Line + 14400 3600 14400 3800 +Wire Wire Line + 14400 3800 11100 3800 +Wire Wire Line + 11100 2900 11100 6000 +Connection ~ 11100 6000 +Wire Wire Line + 18350 3150 16800 3150 +Wire Wire Line + 16800 3150 16800 3750 +Wire Wire Line + 16800 3750 11050 3750 +Wire Wire Line + 11050 3750 11050 6500 +Connection ~ 11050 6500 +Wire Wire Line + 13700 3600 11000 3600 +Wire Wire Line + 11000 3600 11000 9950 +Connection ~ 11000 9950 +Wire Wire Line + 11300 3500 13700 3500 +Connection ~ 11300 5150 +Wire Wire Line + 11200 3000 13700 3000 +Connection ~ 11200 4450 +Wire Wire Line + 11100 2900 13700 2900 +Connection ~ 11100 3800 +Wire Wire Line + 14000 6850 11150 6850 +Connection ~ 11150 6850 +Wire Wire Line + 14400 9600 11350 9600 +Connection ~ 11350 9600 +Wire Wire Line + 15250 8250 11250 8250 +Connection ~ 11250 8250 +Wire Wire Line + 13650 10800 11400 10800 +Connection ~ 11400 10800 +Connection ~ 13650 10600 +Connection ~ 9850 5950 +Connection ~ 9950 6550 +Connection ~ 9700 7150 +Connection ~ 9850 7750 +Connection ~ 9700 8550 +Connection ~ 9850 9150 +Connection ~ 9700 9900 +Connection ~ 9850 10600 +Wire Wire Line + 21300 2750 21500 2750 +Wire Wire Line + 15700 6250 18950 6250 +Wire Wire Line + 19800 7150 15900 7150 +Wire Wire Line + 15900 7150 15900 7700 +Wire Wire Line + 16000 9150 16750 9150 +Wire Wire Line + 17150 10550 16100 10550 +Wire Wire Line + 7850 8200 9700 8200 +$Comp +L PORT U1 +U 1 1 686EEBA3 +P 7600 5950 +F 0 "U1" H 7650 6050 30 0000 C CNN +F 1 "PORT" H 7600 5950 30 0000 C CNN +F 2 "" H 7600 5950 60 0000 C CNN +F 3 "" H 7600 5950 60 0000 C CNN + 1 7600 5950 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 2 1 686EED82 +P 7900 7150 +F 0 "U1" H 7950 7250 30 0000 C CNN +F 1 "PORT" H 7900 7150 30 0000 C CNN +F 2 "" H 7900 7150 60 0000 C CNN +F 3 "" H 7900 7150 60 0000 C CNN + 2 7900 7150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 3 1 686EEE7B +P 8050 7750 +F 0 "U1" H 8100 7850 30 0000 C CNN +F 1 "PORT" H 8050 7750 30 0000 C CNN +F 2 "" H 8050 7750 60 0000 C CNN +F 3 "" H 8050 7750 60 0000 C CNN + 3 8050 7750 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 4 1 686EEF60 +P 7600 8200 +F 0 "U1" H 7650 8300 30 0000 C CNN +F 1 "PORT" H 7600 8200 30 0000 C CNN +F 2 "" H 7600 8200 60 0000 C CNN +F 3 "" H 7600 8200 60 0000 C CNN + 4 7600 8200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 5 1 686EF117 +P 8100 9150 +F 0 "U1" H 8150 9250 30 0000 C CNN +F 1 "PORT" H 8100 9150 30 0000 C CNN +F 2 "" H 8100 9150 60 0000 C CNN +F 3 "" H 8100 9150 60 0000 C CNN + 5 8100 9150 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 6 1 686EF32C +P 7950 9900 +F 0 "U1" H 8000 10000 30 0000 C CNN +F 1 "PORT" H 7950 9900 30 0000 C CNN +F 2 "" H 7950 9900 60 0000 C CNN +F 3 "" H 7950 9900 60 0000 C CNN + 6 7950 9900 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 7 1 686EF63B +P 7850 10600 +F 0 "U1" H 7900 10700 30 0000 C CNN +F 1 "PORT" H 7850 10600 30 0000 C CNN +F 2 "" H 7850 10600 60 0000 C CNN +F 3 "" H 7850 10600 60 0000 C CNN + 7 7850 10600 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 9 1 686EF78C +P 7700 11200 +F 0 "U1" H 7750 11300 30 0000 C CNN +F 1 "PORT" H 7700 11200 30 0000 C CNN +F 2 "" H 7700 11200 60 0000 C CNN +F 3 "" H 7700 11200 60 0000 C CNN + 9 7700 11200 + 1 0 0 -1 +$EndComp +$Comp +L PORT U1 +U 10 1 686EFC2D +P 17400 10550 +F 0 "U1" H 17450 10650 30 0000 C CNN +F 1 "PORT" H 17400 10550 30 0000 C CNN +F 2 "" H 17400 10550 60 0000 C CNN +F 3 "" H 17400 10550 60 0000 C CNN + 10 17400 10550 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 11 1 686EFE88 +P 17000 9150 +F 0 "U1" H 17050 9250 30 0000 C CNN +F 1 "PORT" H 17000 9150 30 0000 C CNN +F 2 "" H 17000 9150 60 0000 C CNN +F 3 "" H 17000 9150 60 0000 C CNN + 11 17000 9150 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 12 1 686EFF3D +P 20050 7150 +F 0 "U1" H 20100 7250 30 0000 C CNN +F 1 "PORT" H 20050 7150 30 0000 C CNN +F 2 "" H 20050 7150 60 0000 C CNN +F 3 "" H 20050 7150 60 0000 C CNN + 12 20050 7150 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 13 1 686F0059 +P 19200 6250 +F 0 "U1" H 19250 6350 30 0000 C CNN +F 1 "PORT" H 19200 6250 30 0000 C CNN +F 2 "" H 19200 6250 60 0000 C CNN +F 3 "" H 19200 6250 60 0000 C CNN + 13 19200 6250 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 14 1 686F03B2 +P 21750 2750 +F 0 "U1" H 21800 2850 30 0000 C CNN +F 1 "PORT" H 21750 2750 30 0000 C CNN +F 2 "" H 21750 2750 60 0000 C CNN +F 3 "" H 21750 2750 60 0000 C CNN + 14 21750 2750 + -1 0 0 1 +$EndComp +$Comp +L PORT U1 +U 15 1 686F071A +P 7750 6550 +F 0 "U1" H 7800 6650 30 0000 C CNN +F 1 "PORT" H 7750 6550 30 0000 C CNN +F 2 "" H 7750 6550 60 0000 C CNN +F 3 "" H 7750 6550 60 0000 C CNN + 15 7750 6550 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.sub b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.sub new file mode 100644 index 000000000..7f584f9c3 --- /dev/null +++ b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic.sub @@ -0,0 +1,182 @@ +* Subcircuit tc4008bp_ic +.subckt tc4008bp_ic net-_u1-pad1_ net-_u1-pad2_ net-_u1-pad3_ net-_u1-pad4_ net-_u1-pad5_ net-_u1-pad6_ net-_u1-pad7_ net-_u1-pad9_ net-_u1-pad10_ net-_u1-pad11_ net-_u1-pad12_ net-_u1-pad13_ net-_u1-pad14_ net-_u1-pad15_ +* c:\fossee\esim\library\subcircuitlibrary\tc4008bp_ic\tc4008bp_ic.cir +* u7 net-_u1-pad1_ net-_u1-pad15_ net-_u16-pad1_ d_nor +* u8 net-_u1-pad1_ net-_u1-pad15_ net-_u11-pad1_ d_nand +* u11 net-_u11-pad1_ net-_u11-pad2_ d_inverter +* u16 net-_u16-pad1_ net-_u11-pad2_ net-_u16-pad3_ d_nor +* u20 net-_u16-pad3_ net-_u20-pad2_ net-_u20-pad3_ d_xor +* u30 net-_u20-pad3_ net-_u1-pad13_ d_inverter +* u50 net-_u1-pad2_ net-_u1-pad3_ net-_u12-pad1_ d_nor +* u2 net-_u1-pad2_ net-_u1-pad3_ net-_u14-pad2_ d_nand +* u12 net-_u12-pad1_ net-_u12-pad2_ d_inverter +* u14 net-_u12-pad2_ net-_u14-pad2_ net-_u14-pad3_ d_nand +* u23 net-_u12-pad2_ net-_u23-pad2_ net-_u23-pad3_ d_and +* u33 net-_u21-pad2_ net-_u23-pad3_ net-_u20-pad2_ d_nor +* u21 net-_u14-pad2_ net-_u21-pad2_ d_inverter +* u24 net-_u14-pad3_ net-_u23-pad2_ net-_u24-pad3_ d_xor +* u34 net-_u24-pad3_ net-_u1-pad12_ d_inverter +* u3 net-_u1-pad4_ net-_u1-pad5_ net-_u15-pad1_ d_nor +* u4 net-_u1-pad4_ net-_u1-pad5_ net-_u22-pad1_ d_nand +* u9 net-_u22-pad1_ net-_u15-pad2_ d_inverter +* u15 net-_u15-pad1_ net-_u15-pad2_ net-_u15-pad3_ d_nor +* u26 net-_u15-pad1_ net-_u26-pad2_ net-_u26-pad3_ d_or +* u27 net-_u15-pad3_ net-_u26-pad2_ net-_u27-pad3_ d_xor +* u35 net-_u22-pad1_ net-_u26-pad3_ net-_u23-pad2_ d_nand +* u36 net-_u27-pad3_ net-_u1-pad11_ d_inverter +* u5 net-_u1-pad6_ net-_u1-pad7_ net-_u10-pad1_ d_nor +* u6 net-_u1-pad6_ net-_u1-pad7_ net-_u13-pad2_ d_nand +* u10 net-_u10-pad1_ net-_u10-pad2_ d_inverter +* u13 net-_u10-pad2_ net-_u13-pad2_ net-_u13-pad3_ d_nand +* u25 net-_u10-pad2_ net-_u1-pad9_ net-_u25-pad3_ d_and +* u37 net-_u29-pad2_ net-_u25-pad3_ net-_u26-pad2_ d_nor +* u29 net-_u13-pad2_ net-_u29-pad2_ d_inverter +* u28 net-_u13-pad3_ net-_u1-pad9_ net-_u28-pad3_ d_xor +* u38 net-_u28-pad3_ net-_u1-pad10_ d_inverter +* u17 net-_u15-pad1_ net-_u13-pad2_ net-_u17-pad3_ d_or +* u22 net-_u22-pad1_ net-_u17-pad3_ net-_u22-pad3_ d_and +* u32 net-_u12-pad1_ net-_u22-pad3_ net-_u32-pad3_ d_or +* u39 net-_u14-pad2_ net-_u32-pad3_ net-_u39-pad3_ d_and +* u41 net-_u16-pad1_ net-_u39-pad3_ net-_u41-pad3_ d_or +* u42 net-_u11-pad1_ net-_u41-pad3_ net-_u42-pad3_ d_nand +* u43 net-_u40-pad3_ net-_u42-pad3_ net-_u43-pad3_ d_nor +* u44 net-_u43-pad3_ net-_u1-pad14_ d_inverter +* u19 net-_u15-pad1_ net-_u10-pad1_ net-_u19-pad3_ d_nor +* u18 net-_u16-pad1_ net-_u12-pad1_ net-_u18-pad3_ d_nor +* u31 net-_u18-pad3_ net-_u19-pad3_ net-_u31-pad3_ d_nor +* u40 net-_u1-pad9_ net-_u31-pad3_ net-_u40-pad3_ d_and +a1 [net-_u1-pad1_ net-_u1-pad15_ ] net-_u16-pad1_ u7 +a2 [net-_u1-pad1_ net-_u1-pad15_ ] net-_u11-pad1_ u8 +a3 net-_u11-pad1_ net-_u11-pad2_ u11 +a4 [net-_u16-pad1_ net-_u11-pad2_ ] net-_u16-pad3_ u16 +a5 [net-_u16-pad3_ net-_u20-pad2_ ] net-_u20-pad3_ u20 +a6 net-_u20-pad3_ net-_u1-pad13_ u30 +a7 [net-_u1-pad2_ net-_u1-pad3_ ] net-_u12-pad1_ u50 +a8 [net-_u1-pad2_ net-_u1-pad3_ ] net-_u14-pad2_ u2 +a9 net-_u12-pad1_ net-_u12-pad2_ u12 +a10 [net-_u12-pad2_ net-_u14-pad2_ ] net-_u14-pad3_ u14 +a11 [net-_u12-pad2_ net-_u23-pad2_ ] net-_u23-pad3_ u23 +a12 [net-_u21-pad2_ net-_u23-pad3_ ] net-_u20-pad2_ u33 +a13 net-_u14-pad2_ net-_u21-pad2_ u21 +a14 [net-_u14-pad3_ net-_u23-pad2_ ] net-_u24-pad3_ u24 +a15 net-_u24-pad3_ net-_u1-pad12_ u34 +a16 [net-_u1-pad4_ net-_u1-pad5_ ] net-_u15-pad1_ u3 +a17 [net-_u1-pad4_ net-_u1-pad5_ ] net-_u22-pad1_ u4 +a18 net-_u22-pad1_ net-_u15-pad2_ u9 +a19 [net-_u15-pad1_ net-_u15-pad2_ ] net-_u15-pad3_ u15 +a20 [net-_u15-pad1_ net-_u26-pad2_ ] net-_u26-pad3_ u26 +a21 [net-_u15-pad3_ net-_u26-pad2_ ] net-_u27-pad3_ u27 +a22 [net-_u22-pad1_ net-_u26-pad3_ ] net-_u23-pad2_ u35 +a23 net-_u27-pad3_ net-_u1-pad11_ u36 +a24 [net-_u1-pad6_ net-_u1-pad7_ ] net-_u10-pad1_ u5 +a25 [net-_u1-pad6_ net-_u1-pad7_ ] net-_u13-pad2_ u6 +a26 net-_u10-pad1_ net-_u10-pad2_ u10 +a27 [net-_u10-pad2_ net-_u13-pad2_ ] net-_u13-pad3_ u13 +a28 [net-_u10-pad2_ net-_u1-pad9_ ] net-_u25-pad3_ u25 +a29 [net-_u29-pad2_ net-_u25-pad3_ ] net-_u26-pad2_ u37 +a30 net-_u13-pad2_ net-_u29-pad2_ u29 +a31 [net-_u13-pad3_ net-_u1-pad9_ ] net-_u28-pad3_ u28 +a32 net-_u28-pad3_ net-_u1-pad10_ u38 +a33 [net-_u15-pad1_ net-_u13-pad2_ ] net-_u17-pad3_ u17 +a34 [net-_u22-pad1_ net-_u17-pad3_ ] net-_u22-pad3_ u22 +a35 [net-_u12-pad1_ net-_u22-pad3_ ] net-_u32-pad3_ u32 +a36 [net-_u14-pad2_ net-_u32-pad3_ ] net-_u39-pad3_ u39 +a37 [net-_u16-pad1_ net-_u39-pad3_ ] net-_u41-pad3_ u41 +a38 [net-_u11-pad1_ net-_u41-pad3_ ] net-_u42-pad3_ u42 +a39 [net-_u40-pad3_ net-_u42-pad3_ ] net-_u43-pad3_ u43 +a40 net-_u43-pad3_ net-_u1-pad14_ u44 +a41 [net-_u15-pad1_ net-_u10-pad1_ ] net-_u19-pad3_ u19 +a42 [net-_u16-pad1_ net-_u12-pad1_ ] net-_u18-pad3_ u18 +a43 [net-_u18-pad3_ net-_u19-pad3_ ] net-_u31-pad3_ u31 +a44 [net-_u1-pad9_ net-_u31-pad3_ ] net-_u40-pad3_ u40 +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u7 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u8 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u11 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u16 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u20 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u30 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u50 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u2 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u12 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u14 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u23 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u33 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u21 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u24 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u34 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u3 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u4 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u9 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u15 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u26 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u27 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u35 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u36 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u5 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u6 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u10 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u13 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u25 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u37 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u29 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_xor, NgSpice Name: d_xor +.model u28 d_xor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u38 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u17 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u22 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u32 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u39 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_or, NgSpice Name: d_or +.model u41 d_or(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nand, NgSpice Name: d_nand +.model u42 d_nand(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u43 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_inverter, NgSpice Name: d_inverter +.model u44 d_inverter(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u19 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u18 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_nor, NgSpice Name: d_nor +.model u31 d_nor(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Schematic Name: d_and, NgSpice Name: d_and +.model u40 d_and(rise_delay=1.0e-9 fall_delay=1.0e-9 input_load=1.0e-12 ) +* Control Statements + +.ends tc4008bp_ic \ No newline at end of file diff --git a/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic_Previous_Values.xml b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic_Previous_Values.xml new file mode 100644 index 000000000..f7d1db7a0 --- /dev/null +++ b/library/SubcircuitLibrary/tc4008bp_ic/tc4008bp_ic_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes020010secmssecd_nord_nandd_inverterd_nord_xord_inverterd_nord_nandd_inverterd_nandd_andd_nord_inverterd_xord_inverterd_nord_nandd_inverterd_nord_ord_xord_nandd_inverterd_nord_nandd_inverterd_nandd_andd_nord_inverterd_xord_inverterd_ord_andd_ord_andd_ord_nandd_nord_inverterd_nord_nord_nord_and \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA107/D.lib b/library/SubcircuitLibrary/uA107/D.lib new file mode 100644 index 000000000..f53bf3e03 --- /dev/null +++ b/library/SubcircuitLibrary/uA107/D.lib @@ -0,0 +1,2 @@ +.model 1N4148 D(is=2.495E-09 rs=4.755E-01 n=1.679E+00 tt=3.030E-09 cjo=1.700E-12 vj=1 m=1.959E-01 bv=1.000E+02 ibv=1.000E-04) + diff --git a/library/SubcircuitLibrary/uA107/NPN.lib b/library/SubcircuitLibrary/uA107/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/uA107/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/uA107/PNP.lib b/library/SubcircuitLibrary/uA107/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/uA107/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/uA107/analysis b/library/SubcircuitLibrary/uA107/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/uA107/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA107/uA107.cir b/library/SubcircuitLibrary/uA107/uA107.cir new file mode 100644 index 000000000..6e5f854e4 --- /dev/null +++ b/library/SubcircuitLibrary/uA107/uA107.cir @@ -0,0 +1,38 @@ +.title KiCad schematic +D1 Net-_D1-Pad1_ Net-_D1-Pad2_ eSim_Diode +D2 Net-_D2-Pad1_ Net-_D1-Pad1_ eSim_Diode +Q20 Net-_Q11-Pad3_ Net-_D1-Pad2_ Net-_Q20-Pad3_ eSim_PNP +R12 Net-_Q20-Pad3_ Net-_D2-Pad1_ 30k +U1 unconnected-_U1-Pad1_ Net-_Q8-Pad2_ Net-_Q1-Pad2_ Net-_Q11-Pad3_ unconnected-_U1-Pad5_ Net-_D2-Pad1_ Net-_Q12-Pad3_ unconnected-_U1-Pad8_ PORT +R10 Net-_Q11-Pad3_ Net-_Q13-Pad2_ 50 +Q17 Net-_D1-Pad2_ Net-_Q14-Pad3_ Net-_Q13-Pad2_ eSim_NPN +Q14 Net-_D1-Pad2_ Net-_C1-Pad2_ Net-_Q14-Pad3_ eSim_NPN +Q11 Net-_Q10-Pad2_ Net-_Q10-Pad2_ Net-_Q11-Pad3_ eSim_NPN +Q13 Net-_C1-Pad2_ Net-_Q13-Pad2_ Net-_Q11-Pad3_ eSim_NPN +R8 Net-_Q11-Pad3_ Net-_Q14-Pad3_ 50k +R5 Net-_C1-Pad2_ Net-_Q6-Pad1_ 300 +R6 Net-_Q10-Pad2_ Net-_Q12-Pad1_ 39k +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 30p +R1 Net-_Q11-Pad3_ Net-_Q3-Pad3_ 1k +R3 Net-_Q11-Pad3_ Net-_Q7-Pad3_ 1k +R4 Net-_Q11-Pad3_ Net-_Q10-Pad3_ 5k +R2 Net-_Q11-Pad3_ Net-_Q3-Pad2_ 50k +Q7 Net-_Q6-Pad1_ Net-_Q3-Pad2_ Net-_Q7-Pad3_ eSim_NPN +Q3 Net-_Q2-Pad1_ Net-_Q3-Pad2_ Net-_Q3-Pad3_ eSim_NPN +Q10 Net-_Q10-Pad1_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_NPN +Q4 Net-_Q12-Pad3_ Net-_Q2-Pad1_ Net-_Q3-Pad2_ eSim_NPN +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_NPN +Q2 Net-_Q2-Pad1_ Net-_Q10-Pad1_ Net-_Q1-Pad3_ eSim_PNP +Q8 Net-_Q1-Pad1_ Net-_Q8-Pad2_ Net-_Q6-Pad3_ eSim_NPN +Q6 Net-_Q6-Pad1_ Net-_Q10-Pad1_ Net-_Q6-Pad3_ eSim_PNP +Q5 Net-_Q1-Pad1_ Net-_Q1-Pad1_ Net-_Q12-Pad3_ eSim_PNP +Q9 Net-_Q10-Pad1_ Net-_Q1-Pad1_ Net-_Q12-Pad3_ eSim_PNP +Q12 Net-_Q12-Pad1_ Net-_Q12-Pad1_ Net-_Q12-Pad3_ eSim_PNP +R9 Net-_D1-Pad2_ Net-_Q16-Pad2_ 7.5k +R7 Net-_C1-Pad1_ Net-_Q16-Pad2_ 4.5k +Q16 Net-_C1-Pad1_ Net-_Q16-Pad2_ Net-_D1-Pad2_ eSim_NPN +Q18 Net-_C1-Pad1_ Net-_Q18-Pad2_ Net-_D2-Pad1_ eSim_NPN +Q15 Net-_C1-Pad1_ Net-_Q12-Pad1_ Net-_Q12-Pad3_ eSim_PNP +R11 Net-_Q18-Pad2_ Net-_D2-Pad1_ 25 +Q19 Net-_Q12-Pad3_ Net-_C1-Pad1_ Net-_Q18-Pad2_ eSim_NPN +.end diff --git a/library/SubcircuitLibrary/uA107/uA107.cir.out b/library/SubcircuitLibrary/uA107/uA107.cir.out new file mode 100644 index 000000000..00086d874 --- /dev/null +++ b/library/SubcircuitLibrary/uA107/uA107.cir.out @@ -0,0 +1,50 @@ +.title kicad schematic + +.include NPN.lib +.include PNP.lib +.include D.lib +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +d2 net-_d2-pad1_ net-_d1-pad1_ 1N4148 +q20 net-_q11-pad3_ net-_d1-pad2_ net-_q20-pad3_ Q2N2907A +r12 net-_q20-pad3_ net-_d2-pad1_ 30k +* u1 unconnected-_u1-pad1_ net-_q8-pad2_ net-_q1-pad2_ net-_q11-pad3_ unconnected-_u1-pad5_ net-_d2-pad1_ net-_q12-pad3_ unconnected-_u1-pad8_ port +r10 net-_q11-pad3_ net-_q13-pad2_ 50 +q17 net-_d1-pad2_ net-_q14-pad3_ net-_q13-pad2_ Q2N2222 +q14 net-_d1-pad2_ net-_c1-pad2_ net-_q14-pad3_ Q2N2222 +q11 net-_q10-pad2_ net-_q10-pad2_ net-_q11-pad3_ Q2N2222 +q13 net-_c1-pad2_ net-_q13-pad2_ net-_q11-pad3_ Q2N2222 +r8 net-_q11-pad3_ net-_q14-pad3_ 50k +r5 net-_c1-pad2_ net-_q6-pad1_ 300 +r6 net-_q10-pad2_ net-_q12-pad1_ 39k +c1 net-_c1-pad1_ net-_c1-pad2_ 30p +r1 net-_q11-pad3_ net-_q3-pad3_ 1k +r3 net-_q11-pad3_ net-_q7-pad3_ 1k +r4 net-_q11-pad3_ net-_q10-pad3_ 5k +r2 net-_q11-pad3_ net-_q3-pad2_ 50k +q7 net-_q6-pad1_ net-_q3-pad2_ net-_q7-pad3_ Q2N2222 +q3 net-_q2-pad1_ net-_q3-pad2_ net-_q3-pad3_ Q2N2222 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +q4 net-_q12-pad3_ net-_q2-pad1_ net-_q3-pad2_ Q2N2222 +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +q2 net-_q2-pad1_ net-_q10-pad1_ net-_q1-pad3_ Q2N2907A +q8 net-_q1-pad1_ net-_q8-pad2_ net-_q6-pad3_ Q2N2222 +q6 net-_q6-pad1_ net-_q10-pad1_ net-_q6-pad3_ Q2N2907A +q5 net-_q1-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +q9 net-_q10-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +q12 net-_q12-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +r9 net-_d1-pad2_ net-_q16-pad2_ 7.5k +r7 net-_c1-pad1_ net-_q16-pad2_ 4.5k +q16 net-_c1-pad1_ net-_q16-pad2_ net-_d1-pad2_ Q2N2222 +q18 net-_c1-pad1_ net-_q18-pad2_ net-_d2-pad1_ Q2N2222 +q15 net-_c1-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +r11 net-_q18-pad2_ net-_d2-pad1_ 25 +q19 net-_q12-pad3_ net-_c1-pad1_ net-_q18-pad2_ Q2N2222 +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/uA107/uA107.kicad_sch b/library/SubcircuitLibrary/uA107/uA107.kicad_sch new file mode 100644 index 000000000..caa400499 --- /dev/null +++ b/library/SubcircuitLibrary/uA107/uA107.kicad_sch @@ -0,0 +1,2259 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid f488848a-28b3-43a3-be31-cda6857ce457) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Devices:eSim_C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_C" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "C_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_C_0_1" + (polyline + (pts + (xy -2.032 -0.762) + (xy 2.032 -0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.032 0.762) + (xy 2.032 0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_C_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.016 1.016)))) + (number "1" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.016 1.016)))) + (number "2" (effects (font (size 1.016 1.016)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_Diode" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "eSim_Diode" (id 1) (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "TO-???* *SingleDiode *_Diode_* *SingleDiode* D_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_Diode_0_0" + (text "A" (at -2.54 1.27 0) + (effects (font (size 1.524 1.524))) + ) + (text "K" (at 2.54 1.27 0) + (effects (font (size 1.524 1.524))) + ) + ) + (symbol "eSim_Diode_0_1" + (polyline + (pts + (xy 1.27 1.27) + (xy 1.27 -1.27) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 1.27) + (xy 1.27 0) + (xy -1.27 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "eSim_Diode_1_1" + (pin passive line (at -3.81 0 0) (length 2.54) + (name "A" (effects (font (size 1.016 1.016)))) + (number "1" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 3.81 0 180) (length 2.54) + (name "K" (effects (font (size 1.016 1.016)))) + (number "2" (effects (font (size 1.016 1.016)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_NPN" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_NPN" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_NPN_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_NPN_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_PNP" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_PNP" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_PNP_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.286 -1.778) + (xy 1.778 -2.286) + (xy 1.27 -1.27) + (xy 2.286 -1.778) + (xy 2.286 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_PNP_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:resistor" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 1.27 3.302 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "resistor" (id 1) (at 1.27 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 1.27 -0.508 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 1.27 1.27 90) + (effects (font (size 0.762 0.762))) + ) + (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "resistor_0_1" + (rectangle (start 3.81 0.254) (end -1.27 2.286) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "resistor_1_1" + (pin passive line (at -2.54 1.27 0) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "1" (effects (font (size 1.524 1.524)))) + ) + (pin passive line (at 5.08 1.27 180) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "2" (effects (font (size 1.524 1.524)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 81.28 163.83) (diameter 0) (color 0 0 0 0) + (uuid 08717805-e73c-400e-9aac-c7b484860551) + ) + (junction (at 195.58 104.14) (diameter 0) (color 0 0 0 0) + (uuid 0a075aa4-3dff-4608-b9c9-c4273710f54a) + ) + (junction (at 106.68 163.83) (diameter 0) (color 0 0 0 0) + (uuid 0b4b8258-174d-49e4-b736-e4f880ece862) + ) + (junction (at 195.58 67.31) (diameter 0) (color 0 0 0 0) + (uuid 1013f1d9-1e91-4bbf-b823-265f6298d56a) + ) + (junction (at 132.08 163.83) (diameter 0) (color 0 0 0 0) + (uuid 1a4d5290-4e2a-4ab4-be86-7c420dea5fe3) + ) + (junction (at 68.58 134.62) (diameter 0) (color 0 0 0 0) + (uuid 26115a93-a821-41f3-9d4d-d6c97eb46366) + ) + (junction (at 106.68 27.94) (diameter 0) (color 0 0 0 0) + (uuid 28310cb9-1fbe-4074-a21b-3553944e70bb) + ) + (junction (at 81.28 134.62) (diameter 0) (color 0 0 0 0) + (uuid 29f8a065-e215-45a8-b140-f5789820e4cd) + ) + (junction (at 246.38 115.57) (diameter 0) (color 0 0 0 0) + (uuid 390a2a57-9841-4c00-88cd-5ad72ba50bd2) + ) + (junction (at 119.38 144.78) (diameter 0) (color 0 0 0 0) + (uuid 41bc72f5-82cc-4672-b515-b41b8b17fb62) + ) + (junction (at 93.98 49.53) (diameter 0) (color 0 0 0 0) + (uuid 5c5bfbdc-84fa-4e0b-9865-983408412b34) + ) + (junction (at 246.38 104.14) (diameter 0) (color 0 0 0 0) + (uuid 71d8bc0c-4a90-4a8e-987e-883493ca1d5a) + ) + (junction (at 195.58 53.34) (diameter 0) (color 0 0 0 0) + (uuid 74016783-bb4e-4811-8dce-8abea739734e) + ) + (junction (at 246.38 64.77) (diameter 0) (color 0 0 0 0) + (uuid 79226da3-faa7-45f6-87a9-27161062d6fe) + ) + (junction (at 132.08 50.8) (diameter 0) (color 0 0 0 0) + (uuid 7c295353-2e59-4406-bd6c-1ec41b75891e) + ) + (junction (at 246.38 83.82) (diameter 0) (color 0 0 0 0) + (uuid 8560c3de-0b16-414e-aa0f-6b0ae98de544) + ) + (junction (at 246.38 27.94) (diameter 0) (color 0 0 0 0) + (uuid 8a46adbc-8b1b-4b82-8776-744df51e762e) + ) + (junction (at 203.2 116.84) (diameter 0) (color 0 0 0 0) + (uuid 8cc7281e-c2e7-418b-9397-c19f918cd38d) + ) + (junction (at 132.08 27.94) (diameter 0) (color 0 0 0 0) + (uuid 8e028ec7-507e-4b62-9f07-8d06f4ea50da) + ) + (junction (at 246.38 163.83) (diameter 0) (color 0 0 0 0) + (uuid 8eb318a9-ad07-4cd5-9d0d-2597fd0f843f) + ) + (junction (at 93.98 163.83) (diameter 0) (color 0 0 0 0) + (uuid 92a6b739-10e4-4e3a-adab-ef7db19e2b61) + ) + (junction (at 195.58 83.82) (diameter 0) (color 0 0 0 0) + (uuid 95ea8bec-a545-4aba-be5c-defc07465c3b) + ) + (junction (at 81.28 49.53) (diameter 0) (color 0 0 0 0) + (uuid 9b1ee441-3c48-4848-997c-eb9a2583cfee) + ) + (junction (at 195.58 59.69) (diameter 0) (color 0 0 0 0) + (uuid a3fa1e12-2f54-446d-8c85-717f97424e7b) + ) + (junction (at 195.58 144.78) (diameter 0) (color 0 0 0 0) + (uuid a91ed100-8148-4b7a-8e47-7efa602760f2) + ) + (junction (at 106.68 83.82) (diameter 0) (color 0 0 0 0) + (uuid b2f09a44-ce27-43df-befa-935416b7c2ab) + ) + (junction (at 86.36 83.82) (diameter 0) (color 0 0 0 0) + (uuid bce24383-ac3f-47fb-b2b8-3c7f8a57cb02) + ) + (junction (at 81.28 27.94) (diameter 0) (color 0 0 0 0) + (uuid be8ecee3-1741-4125-b920-72f554de6d87) + ) + (junction (at 195.58 27.94) (diameter 0) (color 0 0 0 0) + (uuid c417762e-135b-44f3-868a-b9358f6313d8) + ) + (junction (at 157.48 163.83) (diameter 0) (color 0 0 0 0) + (uuid c7b06ab7-d1d1-4721-8934-6d4b3bf985b0) + ) + (junction (at 154.94 40.64) (diameter 0) (color 0 0 0 0) + (uuid c7da6ac1-6aa0-40ad-b4a3-dff09191fba1) + ) + (junction (at 195.58 116.84) (diameter 0) (color 0 0 0 0) + (uuid c95ed09c-ce13-4960-8c68-0c98cd094e73) + ) + (junction (at 93.98 121.92) (diameter 0) (color 0 0 0 0) + (uuid caffb33e-ad35-47ef-8a69-aff0885d9706) + ) + (junction (at 144.78 121.92) (diameter 0) (color 0 0 0 0) + (uuid ccb92749-5247-4975-bea5-dff86b961ae7) + ) + (junction (at 182.88 163.83) (diameter 0) (color 0 0 0 0) + (uuid ceeedd15-8659-45a8-b606-945a7f55679d) + ) + (junction (at 55.88 109.22) (diameter 0) (color 0 0 0 0) + (uuid d4549c3f-ec63-4447-8a0e-e6fb89d6e56d) + ) + (junction (at 233.68 53.34) (diameter 0) (color 0 0 0 0) + (uuid db0268da-1f7b-4349-863a-9ff828024f8a) + ) + (junction (at 93.98 40.64) (diameter 0) (color 0 0 0 0) + (uuid dbd724d5-a784-48ee-9bf3-c8336d956aa9) + ) + (junction (at 170.18 74.93) (diameter 0) (color 0 0 0 0) + (uuid e4e40aae-9127-4312-b212-56dbe6aabf40) + ) + (junction (at 195.58 163.83) (diameter 0) (color 0 0 0 0) + (uuid e509bf0d-6aec-4d80-9adb-c22897caeb0b) + ) + (junction (at 157.48 121.92) (diameter 0) (color 0 0 0 0) + (uuid ebe8259b-1b39-445b-9e39-076bbfc68fd1) + ) + (junction (at 132.08 134.62) (diameter 0) (color 0 0 0 0) + (uuid f078cbd5-f5d5-42d4-99ff-60232223b080) + ) + (junction (at 182.88 134.62) (diameter 0) (color 0 0 0 0) + (uuid fe3cdcf6-3b6c-4036-9ab5-c5c4b1ced19b) + ) + + (no_connect (at 35.56 31.75) (uuid 3cc9e511-f1a3-4706-915c-9099be039eda)) + (no_connect (at 35.56 38.1) (uuid 6af2afaf-91ac-465b-b050-8eca14802cd6)) + (no_connect (at 35.56 25.4) (uuid bdd7defb-4f4d-49a3-a264-ba2ad7b0c78a)) + + (wire (pts (xy 132.08 27.94) (xy 195.58 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00f6eaa6-9fa1-4afb-8fab-d0e3dbb70790) + ) + (wire (pts (xy 119.38 144.78) (xy 119.38 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03a28607-3115-496d-a342-1701f0aac15c) + ) + (wire (pts (xy 233.68 53.34) (xy 238.76 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03a4843b-dd6b-4a8e-be03-7b84cd3dbc5f) + ) + (wire (pts (xy 60.96 109.22) (xy 55.88 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 060138d4-29ae-4c8d-b111-5445fbdce386) + ) + (wire (pts (xy 246.38 64.77) (xy 246.38 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07add4af-5bc3-4b94-9bf1-fef54f65a3c7) + ) + (wire (pts (xy 195.58 27.94) (xy 246.38 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09d05a37-740e-4722-ac4b-875417d78263) + ) + (wire (pts (xy 81.28 163.83) (xy 93.98 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a29585e-7c66-4218-947f-fe97157b0378) + ) + (wire (pts (xy 246.38 83.82) (xy 246.38 77.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b1f5bdd-14fe-40f6-aeb6-b2758e8e00d4) + ) + (wire (pts (xy 88.9 40.64) (xy 93.98 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b58c13a-4edb-42b0-8715-0e475551ff16) + ) + (wire (pts (xy 144.78 121.92) (xy 157.48 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b86c6ac-ff18-4901-90af-7347fa9cc6a4) + ) + (wire (pts (xy 132.08 27.94) (xy 132.08 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1165bd6e-029e-49c7-8689-92ee1cc83556) + ) + (wire (pts (xy 132.08 50.8) (xy 132.08 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11feefdb-3ebc-4eb7-9684-1a1da097a843) + ) + (wire (pts (xy 157.48 121.92) (xy 157.48 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d167037-a546-41a5-819f-08ccc7bf4118) + ) + (wire (pts (xy 55.88 139.7) (xy 55.88 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d789d63-196b-4c4d-aaf9-c0d109a9a3ee) + ) + (wire (pts (xy 203.2 115.57) (xy 203.2 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f5f86a5-148e-4d06-acae-1e0508282a58) + ) + (wire (pts (xy 157.48 163.83) (xy 182.88 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2234a69c-def0-4e77-9e8b-745d93251980) + ) + (wire (pts (xy 119.38 144.78) (xy 124.46 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22a0bd71-5497-443b-a2ed-5f3ee4c2fbcd) + ) + (wire (pts (xy 35.56 25.4) (xy 31.75 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23b4f08d-6ca5-4d28-b351-74e8e7ea6628) + ) + (wire (pts (xy 68.58 104.14) (xy 68.58 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a8edc74-8838-4a21-b56a-b6f61fcd0fb4) + ) + (wire (pts (xy 182.88 127) (xy 182.88 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ae2c406-9264-40a7-a0d2-1fe9d63ea16c) + ) + (wire (pts (xy 195.58 80.01) (xy 195.58 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b8abfd4-b376-4086-aa22-479f13f1748e) + ) + (wire (pts (xy 182.88 104.14) (xy 195.58 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c63a2c5-2204-4523-813e-98acad731ba7) + ) + (wire (pts (xy 170.18 74.93) (xy 170.18 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e380c02-377a-4932-9855-d3e85a17f202) + ) + (wire (pts (xy 132.08 50.8) (xy 154.94 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e8f880c-7146-4e53-9855-2b54c183d94f) + ) + (wire (pts (xy 55.88 88.9) (xy 55.88 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2eb8976b-0b87-47a3-aed7-b1a2a15c4115) + ) + (wire (pts (xy 55.88 109.22) (xy 55.88 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fba7003-e0e0-4697-a7a4-48cea76b750c) + ) + (wire (pts (xy 195.58 67.31) (xy 195.58 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3070b05b-b48d-474f-8cfa-571065296687) + ) + (wire (pts (xy 236.22 115.57) (xy 246.38 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34ddbb95-05e7-4bc6-a9cd-695f2983edd8) + ) + (wire (pts (xy 170.18 74.93) (xy 187.96 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35dd302a-5796-4e11-aeec-a2c90ac07ca6) + ) + (wire (pts (xy 106.68 149.86) (xy 106.68 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36db655a-450c-45cc-adca-c9a68d020807) + ) + (wire (pts (xy 144.78 59.69) (xy 195.58 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 372cda01-2a9d-4bd2-b43f-5eaf693c43af) + ) + (wire (pts (xy 195.58 45.72) (xy 195.58 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3acb14bb-e499-41fc-88c2-c13c7557201f) + ) + (wire (pts (xy 182.88 163.83) (xy 195.58 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 442f62d3-e222-4276-b874-597d22aa855b) + ) + (wire (pts (xy 101.6 58.42) (xy 104.14 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46d94c01-c37d-40ac-82f7-65288c6ece53) + ) + (wire (pts (xy 55.88 163.83) (xy 81.28 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4935c3ee-81c2-4d57-a71a-d610a225979a) + ) + (wire (pts (xy 106.68 45.72) (xy 106.68 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ab51ed2-135e-405f-b21e-1c2ec06bd8d9) + ) + (wire (pts (xy 246.38 104.14) (xy 265.43 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d713937-bb7d-4e84-9ed5-8a035cee3426) + ) + (wire (pts (xy 182.88 157.48) (xy 182.88 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4dc9ac1c-632c-456a-8d97-0058f05902ce) + ) + (wire (pts (xy 195.58 104.14) (xy 195.58 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f53ce0a-319d-4ad0-923f-77b7923b8648) + ) + (wire (pts (xy 170.18 67.31) (xy 170.18 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51cd54f4-a2e2-4588-b945-690db897aeb5) + ) + (wire (pts (xy 68.58 134.62) (xy 81.28 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5346bcbe-a92b-454a-9082-6420baea30d3) + ) + (wire (pts (xy 246.38 115.57) (xy 246.38 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53ad76d4-003e-47c2-9ab9-0d5559ba8853) + ) + (wire (pts (xy 219.71 115.57) (xy 228.6 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 54812618-e456-47f0-a9d3-4b039dde2889) + ) + (wire (pts (xy 114.3 144.78) (xy 119.38 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55439269-a82e-4ff7-b44a-de465919d2e8) + ) + (wire (pts (xy 182.88 134.62) (xy 187.96 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ae34fc3-f8a2-41e8-9ba1-355e1352f17f) + ) + (wire (pts (xy 119.38 134.62) (xy 132.08 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f2fcf82-8515-4415-b69d-282ff222f046) + ) + (wire (pts (xy 38.1 72.39) (xy 104.14 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f4adc9c-b8f7-4251-af40-2a5ed5f6303d) + ) + (wire (pts (xy 132.08 163.83) (xy 157.48 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60dc9463-dc41-4d93-ac2b-2b743eb01f51) + ) + (wire (pts (xy 132.08 101.6) (xy 132.08 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62cb5e58-d999-439f-8441-4670aa69d16d) + ) + (wire (pts (xy 139.7 40.64) (xy 154.94 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 645e41e6-b43e-4e9b-a04b-243dcd0d0317) + ) + (wire (pts (xy 157.48 121.92) (xy 175.26 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6aa5400e-522b-47f7-90d3-c666f5cb156d) + ) + (wire (pts (xy 195.58 27.94) (xy 195.58 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6af2baaf-6adb-4a58-baa6-96c8bbca19fe) + ) + (wire (pts (xy 195.58 116.84) (xy 195.58 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b683da7-8250-4b09-8bc4-8d49886f14cc) + ) + (wire (pts (xy 144.78 101.6) (xy 144.78 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c0eff13-75d7-4e7c-9952-9a59a7f7c1ce) + ) + (wire (pts (xy 86.36 83.82) (xy 106.68 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 702c1eee-4961-4049-bd16-fc5fc1e3429d) + ) + (wire (pts (xy 106.68 27.94) (xy 106.68 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 706be46c-2826-486c-bdd7-4ede34950d49) + ) + (wire (pts (xy 93.98 49.53) (xy 93.98 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 715f5445-6ac9-4e4f-9031-2e077616a876) + ) + (wire (pts (xy 38.1 58.42) (xy 48.26 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74228e7a-a859-47e0-9472-168e9a4ec9bb) + ) + (wire (pts (xy 182.88 116.84) (xy 182.88 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7496f2c0-85b5-4855-8233-22e21dd8f208) + ) + (wire (pts (xy 81.28 158.75) (xy 81.28 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75b1d145-4da2-4d9b-a068-3d15eed9798f) + ) + (wire (pts (xy 195.58 83.82) (xy 195.58 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76fcb1e9-3e3b-4a01-92fd-5f001f9717c3) + ) + (wire (pts (xy 182.88 134.62) (xy 182.88 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78609a91-40c1-4e28-93d2-4a2a050cebb3) + ) + (wire (pts (xy 246.38 163.83) (xy 271.78 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78d4ca87-cc46-46df-9f8d-fd31cca958a3) + ) + (wire (pts (xy 157.48 149.86) (xy 157.48 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a87c676-3987-4bc8-8017-22e93abcb836) + ) + (wire (pts (xy 246.38 137.16) (xy 246.38 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ae4773f-5c2f-4f85-a832-9ee8b0fd0ee6) + ) + (wire (pts (xy 93.98 158.75) (xy 93.98 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c53aff5-2a91-4167-b1bc-ef2195dbc039) + ) + (wire (pts (xy 55.88 49.53) (xy 81.28 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 821101c9-28b6-4ce3-8bf4-6b0c3c79ba4f) + ) + (wire (pts (xy 233.68 69.85) (xy 233.68 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82c185c8-9029-49cc-8aa6-b9af9c494a63) + ) + (wire (pts (xy 170.18 83.82) (xy 180.34 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84aac6c5-859f-4dfb-a5f2-0e125a0f6e4b) + ) + (wire (pts (xy 246.38 158.75) (xy 246.38 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 863ee7a6-0f94-4ded-8274-26690b033257) + ) + (wire (pts (xy 93.98 88.9) (xy 93.98 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 873c93ff-3364-43d4-8140-f7017ceffa4d) + ) + (wire (pts (xy 81.28 134.62) (xy 86.36 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8eff1c61-c0cb-427b-a9b4-d6c3ebfb2ee6) + ) + (wire (pts (xy 106.68 83.82) (xy 106.68 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90bacbda-f2df-4394-8a59-ab9d9bdd3c81) + ) + (wire (pts (xy 132.08 149.86) (xy 132.08 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 918b1561-4636-4916-a2cc-e4f0a33f8710) + ) + (wire (pts (xy 195.58 116.84) (xy 203.2 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97630fcc-eb94-4359-aeb7-9d768205a977) + ) + (wire (pts (xy 106.68 27.94) (xy 132.08 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98cf94bd-45dc-42e2-a528-9dc84f40e5ad) + ) + (wire (pts (xy 35.56 38.1) (xy 31.75 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b293cb0-a851-4859-9b2b-2f5989475300) + ) + (wire (pts (xy 195.58 59.69) (xy 195.58 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c43c429-4684-4f8c-816d-90414a2a9a7c) + ) + (wire (pts (xy 68.58 27.94) (xy 81.28 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c9c60f2-1350-4c39-982d-2526f919c697) + ) + (wire (pts (xy 93.98 139.7) (xy 93.98 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e261210-cb47-4c49-bfca-cf8327bbdcd8) + ) + (wire (pts (xy 246.38 27.94) (xy 271.78 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e7f9eb0-8373-4792-b4d6-dcb071da410b) + ) + (wire (pts (xy 104.14 58.42) (xy 104.14 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2311984-7932-4c9f-8172-39718beee0ab) + ) + (wire (pts (xy 195.58 53.34) (xy 195.58 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a369819e-164b-4b57-977c-47de0700ce0e) + ) + (wire (pts (xy 106.68 158.75) (xy 106.68 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a37df00f-7d07-4925-afd9-7e5851d03aa8) + ) + (wire (pts (xy 93.98 40.64) (xy 99.06 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3c7e196-5aef-4d33-bda7-797837eea274) + ) + (wire (pts (xy 123.19 121.92) (xy 144.78 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6a9d03b-dc2d-4fa8-8f40-fb05e36b0f96) + ) + (wire (pts (xy 246.38 83.82) (xy 246.38 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a97c0fc6-2c7c-4065-995d-d759caa1917a) + ) + (wire (pts (xy 132.08 45.72) (xy 132.08 50.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab5a1645-70f9-49af-9b3e-0522e4cb6fc2) + ) + (wire (pts (xy 233.68 53.34) (xy 233.68 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abd50fc5-e2f3-48c7-8082-ccae097dd6ba) + ) + (wire (pts (xy 81.28 45.72) (xy 81.28 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad1ae902-98f4-4821-b464-2b7bf1d0fecc) + ) + (wire (pts (xy 195.58 157.48) (xy 195.58 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afb52c4a-22ce-4f09-aa28-7897d5718611) + ) + (wire (pts (xy 195.58 139.7) (xy 195.58 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b37c6467-9a99-45db-95a3-17050fe18ca0) + ) + (wire (pts (xy 238.76 153.67) (xy 203.2 153.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3cd2f62-f6d8-4e20-b9f9-78f4bd1c611d) + ) + (wire (pts (xy 195.58 53.34) (xy 233.68 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b57cd4d6-97c8-4643-a438-32f0a69b5a0e) + ) + (wire (pts (xy 203.2 153.67) (xy 203.2 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b67e870b-26b0-499e-a0b4-0d176874c87a) + ) + (wire (pts (xy 55.88 158.75) (xy 55.88 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7bed91b-b071-4a65-b6c9-a2c7c232c1c2) + ) + (wire (pts (xy 81.28 27.94) (xy 81.28 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b84f4a87-3c17-4b70-9afe-2d6ab63cd77c) + ) + (wire (pts (xy 81.28 134.62) (xy 81.28 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8d19a85-f8b9-478e-878d-f9fd17752599) + ) + (wire (pts (xy 106.68 163.83) (xy 132.08 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be8cbc35-94f0-4ba8-bc67-b3f0709511dc) + ) + (wire (pts (xy 81.28 27.94) (xy 106.68 27.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0aa318d-a2c5-43ec-a28d-6d2b32707082) + ) + (wire (pts (xy 132.08 134.62) (xy 132.08 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1bdc8df-a202-4867-a88f-39702a66fce7) + ) + (wire (pts (xy 93.98 63.5) (xy 93.98 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5202d0c-14d6-4e68-84ad-92fef592887c) + ) + (wire (pts (xy 187.96 83.82) (xy 195.58 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c59c34a8-e533-4bb8-9d91-3fa3bb6cbef4) + ) + (wire (pts (xy 212.09 115.57) (xy 203.2 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8c4dbbd-f5b4-4bc4-a911-832dc14e807b) + ) + (wire (pts (xy 154.94 50.8) (xy 154.94 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8f1d7a1-18f7-45af-a0df-107838620bf7) + ) + (wire (pts (xy 246.38 27.94) (xy 246.38 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2c71846-acfe-4465-96d3-e554fbaa0820) + ) + (wire (pts (xy 246.38 104.14) (xy 246.38 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3902718-df66-4491-b14d-30868fe46bd9) + ) + (wire (pts (xy 63.5 83.82) (xy 86.36 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3b54e59-1980-4b18-990b-f7d02f6b67cd) + ) + (wire (pts (xy 55.88 63.5) (xy 55.88 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d421b111-b2a6-44f9-9203-f90a0277d88a) + ) + (wire (pts (xy 55.88 49.53) (xy 55.88 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d43662b1-aaae-40d8-bf4b-71ab4ff02b9c) + ) + (wire (pts (xy 241.3 64.77) (xy 246.38 64.77)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d76af189-9fa3-43ed-b2ac-50324828bba6) + ) + (wire (pts (xy 93.98 49.53) (xy 93.98 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dadf1b8f-a0e7-490b-b8e1-3c24cd6621be) + ) + (wire (pts (xy 93.98 163.83) (xy 106.68 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd074dd6-29c0-4e9f-b842-1538ee374c27) + ) + (wire (pts (xy 68.58 114.3) (xy 68.58 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de3259cd-e9a0-47bf-b7fb-b3d5a8dfaac4) + ) + (wire (pts (xy 233.68 83.82) (xy 246.38 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df45a35e-aef1-438d-87c3-1cb7cfe2688a) + ) + (wire (pts (xy 165.1 144.78) (xy 195.58 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6f05dee-ab49-40b7-8f6e-d0234644b499) + ) + (wire (pts (xy 195.58 144.78) (xy 195.58 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e86b20b3-2939-46e2-a930-79029edf8293) + ) + (wire (pts (xy 35.56 31.75) (xy 31.75 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e94c4b31-01c9-4c1d-8a53-f6fca8a4edcd) + ) + (wire (pts (xy 186.69 67.31) (xy 195.58 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebb25781-1cb5-48fc-aa8c-24ae0a12496d) + ) + (wire (pts (xy 195.58 163.83) (xy 246.38 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebf4dd33-19f2-4ce6-af37-d2ab8f59cced) + ) + (wire (pts (xy 144.78 93.98) (xy 144.78 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1ed0819-3828-4010-b233-db121b00714c) + ) + (wire (pts (xy 179.07 67.31) (xy 170.18 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2bfa480-d432-4771-a762-a62634072b28) + ) + (wire (pts (xy 93.98 121.92) (xy 93.98 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f6c939fb-855c-4a76-937c-203104c31675) + ) + (wire (pts (xy 154.94 40.64) (xy 187.96 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fab75807-269d-4b5b-894e-c53523819b30) + ) + (wire (pts (xy 93.98 121.92) (xy 115.57 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbfaa1b8-9f7b-4831-a5ab-24798406d904) + ) + (wire (pts (xy 81.28 49.53) (xy 93.98 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fceab2a7-e8f2-4f19-8c20-1c62f3a56c9d) + ) + (wire (pts (xy 246.38 64.77) (xy 246.38 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff36068e-6d98-4e89-b258-edd1079a5384) + ) + (wire (pts (xy 68.58 134.62) (xy 63.5 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff44de07-efd2-4448-b287-b9688e5e0a8b) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 109.22 144.78 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 017adb7b-63a9-48b5-b2df-7314bf2d67a1) + (property "Reference" "Q10" (id 0) (at 104.14 143.5099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 104.14 146.0499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 104.14 142.24 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 109.22 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ccf5c9d5-340e-41c1-9fd6-3268fe763f73)) + (pin "2" (uuid 08497294-d18b-4bcc-b573-a4d5b952a289)) + (pin "3" (uuid 10dfbc61-e21a-4f2e-a16a-6593ac4ef7ba)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 57.15 156.21 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 059aecfd-1495-4143-9307-7055584e2373) + (property "Reference" "R1" (id 0) (at 58.42 153.6699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 58.42 156.2099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 57.658 154.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 55.88 154.94 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid accd7991-ad05-4268-ae4a-3a6b306c7da8)) + (pin "2" (uuid c13dcf36-dd39-47a5-94c5-84b8a2d2f022)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 193.04 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 08b7b9ee-6cc7-4eb8-8bca-3d913d596060) + (property "Reference" "Q16" (id 0) (at 198.12 73.6599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 198.12 76.1999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 198.12 72.39 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 193.04 74.93 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e8033e86-dca9-492f-9d3f-304c288601a3)) + (pin "2" (uuid c8f6528a-0178-4978-89fc-3c8e37c61973)) + (pin "3" (uuid a0d2bb6e-0177-4eeb-bafa-7746c09b9a52)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 53.34 58.42 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 097656cf-6cf2-483d-84a5-dbdbb35ec3a6) + (property "Reference" "Q1" (id 0) (at 58.42 57.1499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 58.42 59.6899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 58.42 55.88 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 53.34 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f82ebbae-f59f-47e3-89d1-326e920aa598)) + (pin "2" (uuid dd21284b-063a-4f7d-9855-51ed2f2b7adb)) + (pin "3" (uuid 1f8c4b65-29b6-4d8a-87c8-fdb79030723c)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 184.15 154.94 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0a057f6d-d11e-4552-b883-b7f8cb76ddb1) + (property "Reference" "R8" (id 0) (at 185.42 152.3999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 185.42 154.9399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 184.658 153.67 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 182.88 153.67 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid bc67f9e7-9374-4f7f-8835-6aca14e6ec7e)) + (pin "2" (uuid 7819f936-1e28-4acc-83f8-9668fb36d8a3)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 243.84 53.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0abaa4b3-4e31-40e5-9830-5eb77838ef9b) + (property "Reference" "Q19" (id 0) (at 248.92 52.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 248.92 54.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 248.92 50.8 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 243.84 53.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 174ff835-1d9c-4774-9d37-9cfedb3645ca)) + (pin "2" (uuid 0deae3f8-beeb-46ad-a8ec-77d61f6b5972)) + (pin "3" (uuid ae579036-1a67-4081-b4e4-e23cc19da37b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 58.42 83.82 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0c7edcb0-33db-4354-803e-329d328490da) + (property "Reference" "Q2" (id 0) (at 53.34 82.5499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 53.34 85.0899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 53.34 86.36 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 58.42 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6ef0c663-d93e-484f-876c-9a5ba55253ec)) + (pin "2" (uuid f87b09e1-7e8a-43f2-818d-dcd8a6df4b7d)) + (pin "3" (uuid 8e2b25f8-20e5-41aa-9d93-b867dcf0d2de)) + ) + + (symbol (lib_id "eSim_Devices:eSim_Diode") (at 215.9 115.57 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 10e796ce-c86f-4ac2-af18-996af542de15) + (property "Reference" "D1" (id 0) (at 215.8455 107.95 0)) + (property "Value" "eSim_Diode" (id 1) (at 215.8455 110.49 0)) + (property "Footprint" "" (id 2) (at 215.9 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 215.9 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 769a619b-82aa-483c-a09f-7160d034d5ea)) + (pin "2" (uuid 557c8ee3-2cae-4505-8b8f-a49914218d2c)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 133.35 99.06 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 116e6e19-d63f-449e-92ee-f8a2dc0a2453) + (property "Reference" "R6" (id 0) (at 134.62 96.5199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "39k" (id 1) (at 134.62 99.0599 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 133.858 97.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 132.08 97.79 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid e420619a-e834-4ab0-bbc1-3764d21ef4b8)) + (pin "2" (uuid 7c84f089-b546-4ce5-8669-ee8bad654f17)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 193.04 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 199aee4e-a985-46b6-b05f-736dae73a3b3) + (property "Reference" "Q17" (id 0) (at 198.12 133.3499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 198.12 135.8899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 198.12 132.08 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 193.04 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 92f1336e-2fa6-47bd-ae44-0f4c253dff6f)) + (pin "2" (uuid 3528bafa-c6ac-4099-b661-89e99e58d79c)) + (pin "3" (uuid 782295fc-df8c-4e76-a49c-09b36202e869)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 120.65 120.65 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1eba46ea-f4f0-4d8b-bce2-6a53001a702f) + (property "Reference" "R5" (id 0) (at 119.38 115.57 0)) + (property "Value" "300" (id 1) (at 119.38 118.11 0)) + (property "Footprint" "" (id 2) (at 119.38 120.142 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 119.38 121.92 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 61164c8c-98b8-4069-81d5-3e7dc41be441)) + (pin "2" (uuid 47b91e8e-9f2c-4210-8495-5f9712322bf3)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 91.44 83.82 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1fcc063e-91dd-4f77-b33e-4e53da0e4d19) + (property "Reference" "Q6" (id 0) (at 96.52 82.5499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 96.52 85.0899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 96.52 86.36 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 91.44 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e40d6afb-2551-437b-b2ec-13d037ecc375)) + (pin "2" (uuid fa5513dc-cb18-43f7-bc62-8884185ff4df)) + (pin "3" (uuid 2552b445-cd8b-42a6-965e-be514917f4b4)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 95.25 156.21 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1fddc5fe-f374-4d83-b117-593261784179) + (property "Reference" "R3" (id 0) (at 96.52 153.6699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 96.52 156.2099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 95.758 154.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 93.98 154.94 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid e4ce1d89-188f-4343-bc2b-055fcd3decb7)) + (pin "2" (uuid ee9e6654-bb23-445a-9dcb-a6d7fd8cd5cc)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 184.15 66.04 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2c727c6f-19a2-4250-b4c0-cc4c256f8e28) + (property "Reference" "R7" (id 0) (at 182.88 60.96 0)) + (property "Value" "4.5k" (id 1) (at 182.88 63.5 0)) + (property "Footprint" "" (id 2) (at 182.88 65.532 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 182.88 67.31 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 71b9b45c-e6b9-4256-b67e-38f924b65203)) + (pin "2" (uuid 71ed7805-b549-4815-a220-af3444dabf59)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 31.75 72.39 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 334d62ae-f2c4-43cf-9caf-adf4e558b2b4) + (property "Reference" "U1" (id 0) (at 32.385 67.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 32.385 69.85 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 31.75 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 31.75 72.39 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97457502-1537-4cf4-a224-0f4e0ebc109e)) + (pin "2" (uuid e7275e87-a6c1-4bab-a2a1-6ca82dfeaf76)) + (pin "3" (uuid 4e75f9c2-699c-4957-b171-a4def7346c8f)) + (pin "4" (uuid dbbcc27a-59dc-4db2-aa31-34ee5dc8a5a4)) + (pin "5" (uuid 5af56a28-3ec1-4118-aa9c-fb836d5e3c77)) + (pin "6" (uuid d2ee160d-3e46-463f-95d9-ca79ede0de52)) + (pin "7" (uuid 909fd5f2-26d9-412b-9590-53f4f5eb9d7e)) + (pin "8" (uuid b522255c-c7a5-4623-8fef-6edee63a7b12)) + (pin "9" (uuid 8c85459b-9700-4e65-814d-1d2c543826f1)) + (pin "10" (uuid d0e3221d-30fc-4b6f-973c-b5740c4535d8)) + (pin "11" (uuid 1ce4e9ae-cd00-4979-b8d9-68029af819d3)) + (pin "12" (uuid 66933287-a89c-4c81-805f-49b664ffb00f)) + (pin "13" (uuid f1ffb280-a68a-4e50-aabb-71c1af55a0bf)) + (pin "14" (uuid 7c13f844-bcf2-4132-85c2-c984318fd0cb)) + (pin "15" (uuid 1ec065e2-b9bc-4716-848a-c9da5ac1eaa6)) + (pin "16" (uuid 563057de-d19c-480c-b91c-916ec61dacbc)) + (pin "17" (uuid 7afeef99-3af6-4ac4-b2c1-ab4a51613620)) + (pin "18" (uuid 34ba780b-879e-4fd9-a32b-5dcdf2e74f4e)) + (pin "19" (uuid ca335be7-2a36-46ea-bbb5-827ba7e5873d)) + (pin "20" (uuid 79a9ea38-675d-42d7-9101-86815c1c0aab)) + (pin "21" (uuid 74da367c-0cc1-415c-a255-18a5bb99173d)) + (pin "22" (uuid 7c5333e3-7c34-4e68-8264-d4a6f62d730c)) + (pin "23" (uuid ae9a945f-8cca-4104-aa83-b5dbd449f04b)) + (pin "24" (uuid e131ec3b-2c0c-493a-8ce7-85adbf9e51be)) + (pin "25" (uuid 747e4788-2d0f-4dce-bdff-3984675b2e5b)) + (pin "26" (uuid c0869206-74a2-4657-a075-242a6105012c)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 58.42 134.62 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3711b61e-21a8-4e1b-a17f-68ee84dc32d5) + (property "Reference" "Q3" (id 0) (at 53.34 133.3499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 53.34 135.8899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 53.34 132.08 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 58.42 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d691c8a8-19d3-40da-bc25-512dd675354c)) + (pin "2" (uuid d0653d8d-b69d-46ab-b1f2-829f81c5ee59)) + (pin "3" (uuid 3c4a633e-8f13-46f0-bf54-a53db7d1eb27)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 129.54 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c26c01b-4ec8-435b-a2fd-bb724c8888e9) + (property "Reference" "Q11" (id 0) (at 134.62 143.5099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 134.62 146.0499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 134.62 142.24 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 129.54 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d825896a-2303-48e0-af07-9fb2ce180922)) + (pin "2" (uuid 68f3d9ae-2cbe-4216-b763-512006f10a25)) + (pin "3" (uuid 053f13cc-ef2b-47a1-ba2d-25f058ddb106)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 25.4 38.1 0) (unit 8) + (in_bom yes) (on_board yes) + (uuid 3d5e4a33-e55b-4cd3-b22a-2f93f6dde37d) + (property "Reference" "U1" (id 0) (at 25.4 34.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 25.4 35.56 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 25.4 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 25.4 38.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 32172394-59b6-4bf5-87ac-ce5c000e772e)) + (pin "2" (uuid 191a4a3a-f1e0-4ee5-854a-ad45e4db4691)) + (pin "3" (uuid 5d4c72ec-05ed-4352-baad-0d40028a08e9)) + (pin "4" (uuid 222bbe15-3010-4b9a-ac2f-b27f789386cb)) + (pin "5" (uuid 313a1e41-f586-4b74-800b-0c618bf2e047)) + (pin "6" (uuid f9bde4a1-4574-4a72-84ef-68feb7cc7214)) + (pin "7" (uuid 9ba6f37b-2dba-4ef2-bbf3-2ad6cbefb9d7)) + (pin "8" (uuid 3a6c3c1f-5f1d-4b71-8719-48cc2c52f878)) + (pin "9" (uuid 27417fb6-0a63-4b3a-816f-ce5c84bf71db)) + (pin "10" (uuid 14152d7f-d6fe-4cb8-b7ce-9ef17c2a7cfc)) + (pin "11" (uuid 21354a53-127e-4b86-8692-e01684861aea)) + (pin "12" (uuid b3812847-d4c6-46b1-886b-3b1923a40c1a)) + (pin "13" (uuid 2063d3e1-7ed0-4d06-ad01-aa4239e903a3)) + (pin "14" (uuid 7f32fa98-778e-4fb1-95b9-cf32c76d96a0)) + (pin "15" (uuid ac7e8fa5-a533-4fba-a9d4-ad2bd4b342af)) + (pin "16" (uuid bd4a979e-b200-49f6-bf93-8df82d5ca688)) + (pin "17" (uuid cfc71454-45f0-46ca-82ca-943a0b51e8c9)) + (pin "18" (uuid ba841f15-ef08-4d7d-b3c2-416a756a5e0c)) + (pin "19" (uuid c4073e67-3bf0-4cd9-a4f9-ed60995922d9)) + (pin "20" (uuid 9d4bf7d2-79f6-4e8e-a231-db2de915f82e)) + (pin "21" (uuid 46985738-5eeb-4b21-8094-0c52505ba724)) + (pin "22" (uuid 6cb0f901-42fe-4b0c-9766-70a35d324625)) + (pin "23" (uuid fa2450db-29da-4e45-9c6f-e3f9de668040)) + (pin "24" (uuid 2cf332c7-f663-484c-96a8-26e106d643c3)) + (pin "25" (uuid f59b3d26-df9b-48c5-a2aa-b99fa1966cb1)) + (pin "26" (uuid a28edfef-f275-4b64-bc91-e39ffc0b2941)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 107.95 156.21 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3d80a008-4116-49be-83cf-1f3d5528a5fe) + (property "Reference" "R4" (id 0) (at 109.22 153.6699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "5k" (id 1) (at 109.22 156.2099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 108.458 154.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 106.68 154.94 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 5ad41e5f-73b2-4745-a28e-891c69361740)) + (pin "2" (uuid 1e9611f0-ae34-4cbd-b407-b0d73ae69acd)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 196.85 154.94 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4448e25a-bf4a-4f78-8366-2ec01bb51750) + (property "Reference" "R10" (id 0) (at 198.12 152.3999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50" (id 1) (at 198.12 154.9399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 197.358 153.67 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 195.58 153.67 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 6b02985e-ffa7-4b8e-a2b6-420f0bb22287)) + (pin "2" (uuid ecbdf403-f23a-411b-b753-7d305ffc255a)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 160.02 144.78 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 45f63238-2b9e-4861-a3e6-508214ea751c) + (property "Reference" "Q13" (id 0) (at 154.94 143.5099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 154.94 146.0499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 154.94 142.24 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 160.02 144.78 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4c63ace5-cd4a-4683-8384-5e31bbfdad4d)) + (pin "2" (uuid 03c32e5e-9f85-4088-a6d8-375e592156b9)) + (pin "3" (uuid 73119d58-7c5b-4638-ac1f-ec14d5a1f6a3)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 247.65 134.62 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4de675d8-9ce6-4c2a-9100-bc75fe3e2511) + (property "Reference" "R12" (id 0) (at 248.92 132.0799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "30k" (id 1) (at 248.92 134.6199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 248.158 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 246.38 133.35 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid dd7d94ed-405e-4a6c-8914-2f12134fd658)) + (pin "2" (uuid 0ffd2d55-cd8d-4bd5-8cf5-213357fe3b28)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 31.75 58.42 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4f98abff-c874-41f3-ba24-f758787b3130) + (property "Reference" "U1" (id 0) (at 32.385 53.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 32.385 55.88 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 31.75 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 31.75 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 980d0b68-2632-43be-ba2b-305a2abb70b0)) + (pin "2" (uuid 52d8b94a-d22e-4cdb-8c0c-5d483ba775be)) + (pin "3" (uuid 8adf60b0-1e5b-4f77-b5de-349ba08e77d9)) + (pin "4" (uuid 94f066a4-0458-48ef-8b58-f1ddaf92c7d1)) + (pin "5" (uuid e32bea11-0494-46f5-b8a0-43e10636d05d)) + (pin "6" (uuid df8adcc3-72eb-44ac-b21c-2e3bb0a31e3e)) + (pin "7" (uuid 3446faab-c8de-44fd-afd3-bf1abfefce4a)) + (pin "8" (uuid 249e4ab5-51d9-42c7-b8ce-1e866f9ec118)) + (pin "9" (uuid 60dc6574-62fe-48bb-ab9f-498318164457)) + (pin "10" (uuid cc7d73f7-ea82-48a3-bc1b-7c9a40e8f282)) + (pin "11" (uuid 86af543f-5aaa-4ed2-a075-68a1c605bf9f)) + (pin "12" (uuid 43b84f8d-ba04-48a3-a350-794e5b869f43)) + (pin "13" (uuid b34c34fd-d353-4f0c-9857-c8da72956a88)) + (pin "14" (uuid c88bda39-fcea-478d-b9af-b798f4a143d5)) + (pin "15" (uuid e24b33ba-6696-4a90-91a5-86021f878978)) + (pin "16" (uuid 3737b81c-1fa1-497a-a586-e3aa3f2cbd71)) + (pin "17" (uuid 98954a3f-29dc-4ae9-90c9-e547c174af57)) + (pin "18" (uuid 33377d76-b70e-46e2-9fb3-8410e026ded2)) + (pin "19" (uuid 0d353568-5430-42ff-a3b8-78b8b3e5d601)) + (pin "20" (uuid 1eebf0e4-0753-430d-a56b-eaa0163d496c)) + (pin "21" (uuid f5b5a768-684a-45c5-9533-7f19647fc82d)) + (pin "22" (uuid b6322c58-265e-4516-a428-45fef0d0a7d4)) + (pin "23" (uuid dc287932-9b62-4711-b974-74e45dd697ea)) + (pin "24" (uuid 603e1d0c-5d7e-42bc-9acd-30396d20421b)) + (pin "25" (uuid 9f5bef3b-88c2-4b13-87f2-fcf9b76c12da)) + (pin "26" (uuid 27a9fcdc-2538-4234-8a43-23d9104d843f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_Diode") (at 232.41 115.57 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 615d1e17-262b-4c48-9777-74666b16f404) + (property "Reference" "D2" (id 0) (at 232.3555 107.95 0)) + (property "Value" "eSim_Diode" (id 1) (at 232.3555 110.49 0)) + (property "Footprint" "" (id 2) (at 232.41 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 232.41 115.57 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 42a1dacb-9560-4716-9155-f8f2fee70ae8)) + (pin "2" (uuid f3703483-87b3-4aef-a3a9-f587f665e5ee)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 278.13 163.83 180) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 64c94257-b4df-4b73-91d7-126b2284bc55) + (property "Reference" "U1" (id 0) (at 281.94 163.195 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 281.94 165.735 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 278.13 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 163.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 950c12ce-5525-4aee-8061-32fccb728d58)) + (pin "2" (uuid 50b62368-3f69-4499-b069-0355d1d44aae)) + (pin "3" (uuid 0d35cb0f-6f31-4d3d-91e6-31d7ce48cdcd)) + (pin "4" (uuid 1f6c9381-f30b-4eed-8460-92d87882f1a1)) + (pin "5" (uuid 52557fba-e224-4ebd-b222-18efb86d575b)) + (pin "6" (uuid 65a1e903-420c-4d18-8878-7bd414e5feab)) + (pin "7" (uuid 8244f191-db76-43f2-b5d5-7617b2825dc0)) + (pin "8" (uuid 1bd03122-6984-45f0-8c1c-188d903aab5a)) + (pin "9" (uuid 518eeb84-aca8-4e82-9317-b5ca40e66e21)) + (pin "10" (uuid a0e0ebb9-6f28-4d5b-859c-81dd1d80e635)) + (pin "11" (uuid 0110ad4e-14eb-4471-b36d-326211f231fc)) + (pin "12" (uuid 4ee54966-d29a-414c-ba43-c170d75b3fd0)) + (pin "13" (uuid 7a21ed74-23e5-45b9-b8e4-3b1c5ef51aaa)) + (pin "14" (uuid 4bf9c67b-bc21-455a-8dd7-ef25fa5d511e)) + (pin "15" (uuid 90c9a426-a200-4038-a93c-c094ebe5bb21)) + (pin "16" (uuid 8d142c98-4251-47a2-bba4-703a2fe5b37e)) + (pin "17" (uuid ca6da37b-f1ad-4832-a25b-44f73eef5171)) + (pin "18" (uuid 24857d85-31aa-414e-96b9-b70c38a03da2)) + (pin "19" (uuid 4e053b82-470c-4c80-80ea-6aa32f2ba396)) + (pin "20" (uuid 5ee9b0ad-b603-4523-9f75-bb4a08b11dee)) + (pin "21" (uuid 6c627d2d-933a-4f32-bea6-1de75d338d69)) + (pin "22" (uuid 647ce471-feb1-4410-a2cb-7fe8c01e255b)) + (pin "23" (uuid 2dfcda37-3631-46d9-a5d7-85891be57559)) + (pin "24" (uuid 1d9ff704-7dab-47b2-82ce-694e728df89f)) + (pin "25" (uuid bf5ddb12-d5d3-4141-8a22-8c7a3a3000f1)) + (pin "26" (uuid 73233b8c-1b73-47b4-a356-07c6591215db)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 91.44 134.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 64d15682-5a18-4de2-b02e-427bcad2eb09) + (property "Reference" "Q7" (id 0) (at 96.52 133.3499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 96.52 135.8899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 96.52 132.08 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 91.44 134.62 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76d0b0ed-57d5-4785-99fd-9444672c3aab)) + (pin "2" (uuid dd6d14a1-0d4f-4633-9ffa-f5cab1e95cb6)) + (pin "3" (uuid ceee63f6-10a8-45cf-bbae-09c6f1ecc383)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 243.84 153.67 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d3fc08d-8bf0-41e0-969e-311011b5cda6) + (property "Reference" "Q20" (id 0) (at 248.92 152.3999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 248.92 154.9399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 248.92 156.21 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 243.84 153.67 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7eeddffb-fb83-49c3-8998-4aba57f0e9bb)) + (pin "2" (uuid 781393a0-cf83-4503-a6cd-3d4f44c74d27)) + (pin "3" (uuid e49534b6-265f-4f1d-b762-18e028f3e847)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 185.42 82.55 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7526527d-883a-4662-ab30-10b1a9193671) + (property "Reference" "R9" (id 0) (at 184.15 77.47 0)) + (property "Value" "7.5k" (id 1) (at 184.15 80.01 0)) + (property "Footprint" "" (id 2) (at 184.15 82.042 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 184.15 83.82 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 0b6a0a06-f559-4267-a37b-3b520c857efa)) + (pin "2" (uuid 7cc0ce8d-459c-4745-9061-ce84b4399bb5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 25.4 31.75 0) (unit 5) + (in_bom yes) (on_board yes) + (uuid 7615e626-e9e5-4859-83e2-9ca66537353b) + (property "Reference" "U1" (id 0) (at 25.4 27.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 25.4 29.21 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 25.4 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 25.4 31.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 26a43833-6ca8-4ad9-83db-492a3ec4d250)) + (pin "2" (uuid b816d173-81ae-42d8-ab0d-19fe3050eebf)) + (pin "3" (uuid d586a7f1-26b9-454c-8064-866602e58729)) + (pin "4" (uuid b8425bfb-066b-453f-aca6-a6f8cb7b14a0)) + (pin "5" (uuid 7c94cd1d-72e2-4161-a672-92e974ccccc2)) + (pin "6" (uuid dbc34940-f0b2-4e00-8073-694b0a2d46ea)) + (pin "7" (uuid 42fcb865-b8be-4ca0-b4d7-57d03829ef55)) + (pin "8" (uuid f85e01b7-bd22-4d10-8328-5aeec3b2a30d)) + (pin "9" (uuid 28bbe7d3-03e2-4ae3-bc02-f5ddd8b1f4f4)) + (pin "10" (uuid b224bcaf-e2bf-4141-a98b-33ea28bf2128)) + (pin "11" (uuid 298cab4b-c538-48bc-96c0-af656579d833)) + (pin "12" (uuid 12dd0ddf-9afe-4177-92ec-b9152667e8cf)) + (pin "13" (uuid 651624b1-526b-43f5-8d63-2e9629d732df)) + (pin "14" (uuid 328d6a26-2b7b-4a5c-9bdf-0b215c791efc)) + (pin "15" (uuid f551ca8d-9df3-45be-a087-e68911c9db6e)) + (pin "16" (uuid 8cc67abf-85ef-4207-9b22-a01b422eca06)) + (pin "17" (uuid b64bfe22-721a-44df-9031-d66eda94ae81)) + (pin "18" (uuid f899283c-5217-444d-8b66-845c58a81446)) + (pin "19" (uuid 5d581a3a-dbdf-44d0-b882-6f1619a059a2)) + (pin "20" (uuid bedde540-024e-4ac5-b702-728a3ab779c5)) + (pin "21" (uuid 465ca37e-62c3-49a9-a2f1-e0127f31c0f2)) + (pin "22" (uuid 3bdd6839-6a7d-4b5c-8ba5-240d9a959f3e)) + (pin "23" (uuid ebe45536-2b5e-4cd3-b25c-677d01baaf28)) + (pin "24" (uuid 34b0af2c-3c3d-476c-bbd5-7e9088069274)) + (pin "25" (uuid e37e925b-aa50-4d04-86c3-f6a303c97976)) + (pin "26" (uuid d3211a85-28c5-433c-a5eb-503857e82593)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 245.11 72.39 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a9f5b52-bdfe-4f53-8de8-4fe1735e29ad) + (property "Reference" "R11" (id 0) (at 248.92 72.3899 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "25" (id 1) (at 248.92 74.9299 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 244.602 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 246.38 73.66 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 4a319dd1-b7f8-4161-8cb4-e247cf2715ba)) + (pin "2" (uuid ede8efc7-7958-4e15-bd8a-60b2b8a0d9fe)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 193.04 40.64 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7d88d407-eb32-4bb0-8804-1acf93f753d3) + (property "Reference" "Q15" (id 0) (at 198.12 39.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 198.12 41.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 198.12 43.18 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 193.04 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 96103191-02bd-425a-ad3b-368133759ddd)) + (pin "2" (uuid acfd221b-7601-40d6-8949-c5d022d64aac)) + (pin "3" (uuid 3aa73144-78fd-42e0-ab84-aed33c55a696)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 25.4 25.4 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 845776b8-e38d-40c5-aeb2-d322df1b28f4) + (property "Reference" "U1" (id 0) (at 25.4 21.59 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 25.4 22.86 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 25.4 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 25.4 25.4 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a9819cf2-6c90-40a0-9263-2492c6276b8c)) + (pin "2" (uuid 94fd5b13-9457-45de-8ae7-9e27c72ea152)) + (pin "3" (uuid 621645cb-6189-42fc-8a06-0bcc93b18e42)) + (pin "4" (uuid ed3c31d2-b558-4b3e-877d-e6146d0b66ca)) + (pin "5" (uuid 58ff98cf-2804-4617-bc08-a46dadef2182)) + (pin "6" (uuid 209057b0-d7f2-409f-babe-e1fb65db7c60)) + (pin "7" (uuid d988bb5b-fde9-422c-ba3b-a6a5a741c38a)) + (pin "8" (uuid 9b4d300f-3cfd-494d-8283-19245a14affd)) + (pin "9" (uuid 14ffcb2f-94d1-4305-a478-4e9a1254696c)) + (pin "10" (uuid 58e8a043-64f4-422a-96f9-0e4289244435)) + (pin "11" (uuid 07c5fdbd-3637-46b3-8254-8919ea1d2bb2)) + (pin "12" (uuid a3180064-d382-4190-a799-2582c07836f0)) + (pin "13" (uuid 29b2dc13-7fea-4b30-968a-c5d6044af5e3)) + (pin "14" (uuid fb798a81-7489-4c7c-9b44-c177e89b22ec)) + (pin "15" (uuid da219acc-c7f3-4b40-8d70-278e5fdc7566)) + (pin "16" (uuid 8eda2215-2231-47ce-a29e-9745fcc02d44)) + (pin "17" (uuid 411d493a-bd6a-476c-922b-8be8a2db6168)) + (pin "18" (uuid 0b1e9497-98ff-484a-bf80-9ddff8fe6cf1)) + (pin "19" (uuid 6bb79f57-987a-42e6-90c4-7634de179bff)) + (pin "20" (uuid 471b3955-a1f2-4669-8a96-36a249ca02ec)) + (pin "21" (uuid 4ab9b2f9-3661-44f5-9dc0-a6ebb4256d8c)) + (pin "22" (uuid 7d17d353-7046-4820-8c34-dceb8d3fdddf)) + (pin "23" (uuid d94d54d5-cc4e-49f8-85e6-d8519d9428c8)) + (pin "24" (uuid ac781cb5-bed2-491d-b1ac-bf0dd6fa9828)) + (pin "25" (uuid e1a001db-451f-4871-9116-42e93bfee753)) + (pin "26" (uuid 89319238-59ff-467d-be5d-daa4e7140659)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 82.55 156.21 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 884ace96-7c20-4585-a6f3-db5049de3c1b) + (property "Reference" "R2" (id 0) (at 83.82 153.6699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 83.82 156.2099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 83.058 154.94 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 81.28 154.94 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 38224e46-96bc-4be7-bddc-b8e89866532f)) + (pin "2" (uuid 83050fbf-369d-4620-b6e9-e26e18635add)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 134.62 40.64 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f257c9a-1312-48ce-ae7a-8a7d3c55c382) + (property "Reference" "Q12" (id 0) (at 129.54 39.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 129.54 41.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 129.54 43.18 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 134.62 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc02d97e-a182-4968-a6a9-f66512f02e75)) + (pin "2" (uuid 19dcfc8d-f66d-46a4-a019-c91ff56483f1)) + (pin "3" (uuid baa2ac7b-50b2-46ab-a7b4-c7d91bbd598f)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 278.13 27.94 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8fca13f3-162c-4d0f-90fe-f418a5cb5dc5) + (property "Reference" "U1" (id 0) (at 281.94 27.305 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 281.94 29.845 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 278.13 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 278.13 27.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid feeaae8b-4fdf-4e80-9fd9-ce6227821631)) + (pin "2" (uuid c60080c7-d1b3-4f0f-b66a-c6c0ffb6c82e)) + (pin "3" (uuid 8c46fd50-6364-46f0-93bd-5f0c3d751b8f)) + (pin "4" (uuid 88313d81-4aef-4e22-89d0-6c9371a124fc)) + (pin "5" (uuid 1f5420e4-66df-4d5c-8743-b69d15e230c1)) + (pin "6" (uuid a2843614-a37f-453b-8b83-4a58c2791d8e)) + (pin "7" (uuid 067acc4b-4c6a-4f95-b7e7-3b7f7f5a6a3b)) + (pin "8" (uuid c5c6d8d7-ac46-41eb-9fcf-0e394dd631d3)) + (pin "9" (uuid a367850c-671a-4f91-9167-60d4295e054e)) + (pin "10" (uuid 6c3b0537-27a7-489b-bf5e-03d847b7d2f9)) + (pin "11" (uuid f2d173b4-038d-407f-b348-4d193b6c872e)) + (pin "12" (uuid 63a057eb-0b46-4e13-b1ac-d7f8df4e7322)) + (pin "13" (uuid c6678811-a239-433c-875f-a3274fae4dbc)) + (pin "14" (uuid e06870b1-bbde-42ea-a074-e0475f15c074)) + (pin "15" (uuid effac2e4-8bf2-4df5-82aa-1740f301d68d)) + (pin "16" (uuid b10400a7-98e1-46dc-ac30-d92c05e37cdf)) + (pin "17" (uuid 2255082a-790a-4e08-847f-07f5bab1da1b)) + (pin "18" (uuid f46a9178-af32-4c9b-8806-186d28be4608)) + (pin "19" (uuid 1e6fc945-b55a-4d0b-859d-dc412b7fc5f1)) + (pin "20" (uuid aaf90142-fa2d-4185-b6b7-3035dfe4fc16)) + (pin "21" (uuid a6b28ab7-de41-4c9a-84a0-ef44e9859a48)) + (pin "22" (uuid 7cdf5a2e-cd28-40f9-8c86-221ce490bfa9)) + (pin "23" (uuid b14d9913-fa69-4202-a0f5-78fe5be89019)) + (pin "24" (uuid 76794a7b-a84c-4609-affe-12660865b27f)) + (pin "25" (uuid 9854b25e-0749-4f66-857c-d5368fde64c8)) + (pin "26" (uuid fca8c6e4-3f59-48c5-afaa-c992ee61341e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 271.78 104.14 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid af720959-8f9c-4901-89a3-cfa1025e6064) + (property "Reference" "U1" (id 0) (at 275.59 103.505 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 275.59 106.045 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 271.78 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 271.78 104.14 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c9c3497c-a14b-4524-a610-c2850dbfe7f4)) + (pin "2" (uuid 62fc6bb3-d638-4a8d-bbb0-571814df6111)) + (pin "3" (uuid 36cac940-c35d-4480-9502-02ddb473ba17)) + (pin "4" (uuid b4ce6ea3-8304-4661-8bee-ebd16449995d)) + (pin "5" (uuid b878f21b-4b26-4c4d-9c01-497e18e35941)) + (pin "6" (uuid 8ae79d46-aa6a-49d8-9892-5179a20d3c6f)) + (pin "7" (uuid 004b2fcb-d750-4a73-8dfe-3ee0763c93cb)) + (pin "8" (uuid 9c681ffc-97c8-48b9-96a8-f33cb7cf31de)) + (pin "9" (uuid 578542e0-7bb6-4fb5-b784-7f433e43b6de)) + (pin "10" (uuid e7acd694-41e5-4b43-ae15-8df6ae7fcbb2)) + (pin "11" (uuid e5f7363e-bfc6-4edc-8bfd-c4a8a2c5ed27)) + (pin "12" (uuid 2d689471-2180-43f8-9aa5-4620b316eaf5)) + (pin "13" (uuid cf0a24b4-d5ff-46b3-8eda-b7e4ab0cb2fb)) + (pin "14" (uuid 6cfa7515-30d2-47a4-8412-b309102dd8ea)) + (pin "15" (uuid 731925c4-b9da-4bad-9677-1ba1b6fcab24)) + (pin "16" (uuid 75b2c878-f3d6-45ea-995c-82cfc67c08fc)) + (pin "17" (uuid 7eec9eb9-ee50-4434-af16-b4db06d3a1ce)) + (pin "18" (uuid 71821886-f71e-4390-8de1-44cb7e7b0a9b)) + (pin "19" (uuid e0eafb47-e5f4-4c03-b9d0-8b4f3d03c8d1)) + (pin "20" (uuid d6fb877c-3dc1-4bb3-a15a-a4d7e96d9f70)) + (pin "21" (uuid 75b6125a-b83b-4225-8e44-4a3c0ba7a578)) + (pin "22" (uuid 7a499df9-60ac-48a6-a021-a996730f2a1b)) + (pin "23" (uuid c5ea941f-13c0-43b6-8a39-8640e3b2d76f)) + (pin "24" (uuid 19ef4d70-f02a-4d17-ad85-627cc173dda3)) + (pin "25" (uuid d90c1102-86cc-4866-893f-8065be5158f1)) + (pin "26" (uuid 1f3985ee-0f36-43c6-9a7e-9bf92ea0e902)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 83.82 40.64 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b9f06b26-7f97-412f-9876-d4ef96a5c1cf) + (property "Reference" "Q5" (id 0) (at 78.74 39.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 78.74 41.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 78.74 43.18 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 83.82 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0cf0dc17-08a2-4a81-818f-53e79805460d)) + (pin "2" (uuid b77147ad-ec6a-4ebf-be16-ff82e7f0a700)) + (pin "3" (uuid f7165751-daf8-4ffc-a3b8-c3fcae7e2459)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 96.52 58.42 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb070817-d3af-496d-ae6f-72b268732406) + (property "Reference" "Q8" (id 0) (at 91.44 57.1499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 91.44 59.6899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 91.44 55.88 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 96.52 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b9062f8a-707e-45d4-bc1f-91566dec2a2e)) + (pin "2" (uuid 810f73a9-463c-43ad-869e-09922d33459d)) + (pin "3" (uuid 54e45ce6-becb-441b-a680-1a81d7f93617)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 66.04 109.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2313ac7-6b90-4278-8aa7-e6e2ddfe19bf) + (property "Reference" "Q4" (id 0) (at 71.12 107.9499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 71.12 110.4899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 71.12 106.68 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 66.04 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 04517aea-54de-414f-b0c9-bc886d05bb09)) + (pin "2" (uuid a739f945-99bd-472b-bee7-bdf03860a44f)) + (pin "3" (uuid 90a5bcc8-5131-42e5-8fc0-ef99143775f8)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 236.22 64.77 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d61c6f8e-6974-4275-936f-cfc9135cccff) + (property "Reference" "Q18" (id 0) (at 231.14 63.4999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 231.14 66.0399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 231.14 62.23 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 236.22 64.77 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ff2ea248-1015-4379-8eda-469e190bb029)) + (pin "2" (uuid d0e89b4e-93b7-4770-96a0-1499648926d7)) + (pin "3" (uuid f0b74a71-088c-4edb-984d-f7b3fb8bb603)) + ) + + (symbol (lib_id "eSim_Devices:eSim_C") (at 144.78 97.79 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da9292b7-562f-4d86-9ae6-50419fb07c76) + (property "Reference" "C1" (id 0) (at 148.59 96.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "30p" (id 1) (at 148.59 99.0599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 145.7452 101.6 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 144.78 97.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 612ede6e-8a43-4f70-999d-7f62793240eb)) + (pin "2" (uuid 3989e84e-1794-4c53-994c-1a6d70939998)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 180.34 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eb438f92-1428-4b70-b3d2-9fae1ccb3b48) + (property "Reference" "Q14" (id 0) (at 185.42 120.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 185.42 123.1899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 185.42 119.38 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 180.34 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 34fdfee7-a353-4e63-8ffe-99fe133930b2)) + (pin "2" (uuid 94628ad6-228e-4fd9-b681-db9d1c8cdb30)) + (pin "3" (uuid bb6975e0-6c43-4133-adbc-f4a7f77f91e1)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 104.14 40.64 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ffe74393-294b-47cd-a7f3-52b404a222bc) + (property "Reference" "Q9" (id 0) (at 109.22 39.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 109.22 41.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 109.22 43.18 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 104.14 40.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bbbdcf80-fa01-4826-ae93-4ebf89efd21c)) + (pin "2" (uuid 55e3e3aa-fcb0-43eb-a7b0-ec2c35bcc476)) + (pin "3" (uuid 918eb687-c3cb-46a7-b60b-2389ecfef67f)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/da9292b7-562f-4d86-9ae6-50419fb07c76" + (reference "C1") (unit 1) (value "30p") (footprint "") + ) + (path "/10e796ce-c86f-4ac2-af18-996af542de15" + (reference "D1") (unit 1) (value "eSim_Diode") (footprint "") + ) + (path "/615d1e17-262b-4c48-9777-74666b16f404" + (reference "D2") (unit 1) (value "eSim_Diode") (footprint "") + ) + (path "/097656cf-6cf2-483d-84a5-dbdbb35ec3a6" + (reference "Q1") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/0c7edcb0-33db-4354-803e-329d328490da" + (reference "Q2") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/3711b61e-21a8-4e1b-a17f-68ee84dc32d5" + (reference "Q3") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d2313ac7-6b90-4278-8aa7-e6e2ddfe19bf" + (reference "Q4") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b9f06b26-7f97-412f-9876-d4ef96a5c1cf" + (reference "Q5") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/1fcc063e-91dd-4f77-b33e-4e53da0e4d19" + (reference "Q6") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/64d15682-5a18-4de2-b02e-427bcad2eb09" + (reference "Q7") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/bb070817-d3af-496d-ae6f-72b268732406" + (reference "Q8") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/ffe74393-294b-47cd-a7f3-52b404a222bc" + (reference "Q9") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/017adb7b-63a9-48b5-b2df-7314bf2d67a1" + (reference "Q10") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/3c26c01b-4ec8-435b-a2fd-bb724c8888e9" + (reference "Q11") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/8f257c9a-1312-48ce-ae7a-8a7d3c55c382" + (reference "Q12") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/45f63238-2b9e-4861-a3e6-508214ea751c" + (reference "Q13") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/eb438f92-1428-4b70-b3d2-9fae1ccb3b48" + (reference "Q14") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/7d88d407-eb32-4bb0-8804-1acf93f753d3" + (reference "Q15") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/08b7b9ee-6cc7-4eb8-8bca-3d913d596060" + (reference "Q16") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/199aee4e-a985-46b6-b05f-736dae73a3b3" + (reference "Q17") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d61c6f8e-6974-4275-936f-cfc9135cccff" + (reference "Q18") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/0abaa4b3-4e31-40e5-9830-5eb77838ef9b" + (reference "Q19") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/6d3fc08d-8bf0-41e0-969e-311011b5cda6" + (reference "Q20") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/059aecfd-1495-4143-9307-7055584e2373" + (reference "R1") (unit 1) (value "1k") (footprint "") + ) + (path "/884ace96-7c20-4585-a6f3-db5049de3c1b" + (reference "R2") (unit 1) (value "50k") (footprint "") + ) + (path "/1fddc5fe-f374-4d83-b117-593261784179" + (reference "R3") (unit 1) (value "1k") (footprint "") + ) + (path "/3d80a008-4116-49be-83cf-1f3d5528a5fe" + (reference "R4") (unit 1) (value "5k") (footprint "") + ) + (path "/1eba46ea-f4f0-4d8b-bce2-6a53001a702f" + (reference "R5") (unit 1) (value "300") (footprint "") + ) + (path "/116e6e19-d63f-449e-92ee-f8a2dc0a2453" + (reference "R6") (unit 1) (value "39k") (footprint "") + ) + (path "/2c727c6f-19a2-4250-b4c0-cc4c256f8e28" + (reference "R7") (unit 1) (value "4.5k") (footprint "") + ) + (path "/0a057f6d-d11e-4552-b883-b7f8cb76ddb1" + (reference "R8") (unit 1) (value "50k") (footprint "") + ) + (path "/7526527d-883a-4662-ab30-10b1a9193671" + (reference "R9") (unit 1) (value "7.5k") (footprint "") + ) + (path "/4448e25a-bf4a-4f78-8366-2ec01bb51750" + (reference "R10") (unit 1) (value "50") (footprint "") + ) + (path "/7a9f5b52-bdfe-4f53-8de8-4fe1735e29ad" + (reference "R11") (unit 1) (value "25") (footprint "") + ) + (path "/4de675d8-9ce6-4c2a-9100-bc75fe3e2511" + (reference "R12") (unit 1) (value "30k") (footprint "") + ) + (path "/845776b8-e38d-40c5-aeb2-d322df1b28f4" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/334d62ae-f2c4-43cf-9caf-adf4e558b2b4" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/4f98abff-c874-41f3-ba24-f758787b3130" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/64c94257-b4df-4b73-91d7-126b2284bc55" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/7615e626-e9e5-4859-83e2-9ca66537353b" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/af720959-8f9c-4901-89a3-cfa1025e6064" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/8fca13f3-162c-4d0f-90fe-f418a5cb5dc5" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/3d5e4a33-e55b-4cd3-b22a-2f93f6dde37d" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/uA107/uA107.sub b/library/SubcircuitLibrary/uA107/uA107.sub new file mode 100644 index 000000000..438679fa1 --- /dev/null +++ b/library/SubcircuitLibrary/uA107/uA107.sub @@ -0,0 +1,44 @@ +* Subcircuit uA107 +.subckt uA107 unconnected-_u1-pad1_ net-_q8-pad2_ net-_q1-pad2_ net-_q11-pad3_ unconnected-_u1-pad5_ net-_d2-pad1_ net-_q12-pad3_ unconnected-_u1-pad8_ +.title kicad schematic +.include NPN.lib +.include PNP.lib +.include D.lib +d1 net-_d1-pad1_ net-_d1-pad2_ 1N4148 +d2 net-_d2-pad1_ net-_d1-pad1_ 1N4148 +q20 net-_q11-pad3_ net-_d1-pad2_ net-_q20-pad3_ Q2N2907A +r12 net-_q20-pad3_ net-_d2-pad1_ 30k +r10 net-_q11-pad3_ net-_q13-pad2_ 50 +q17 net-_d1-pad2_ net-_q14-pad3_ net-_q13-pad2_ Q2N2222 +q14 net-_d1-pad2_ net-_c1-pad2_ net-_q14-pad3_ Q2N2222 +q11 net-_q10-pad2_ net-_q10-pad2_ net-_q11-pad3_ Q2N2222 +q13 net-_c1-pad2_ net-_q13-pad2_ net-_q11-pad3_ Q2N2222 +r8 net-_q11-pad3_ net-_q14-pad3_ 50k +r5 net-_c1-pad2_ net-_q6-pad1_ 300 +r6 net-_q10-pad2_ net-_q12-pad1_ 39k +c1 net-_c1-pad1_ net-_c1-pad2_ 30p +r1 net-_q11-pad3_ net-_q3-pad3_ 1k +r3 net-_q11-pad3_ net-_q7-pad3_ 1k +r4 net-_q11-pad3_ net-_q10-pad3_ 5k +r2 net-_q11-pad3_ net-_q3-pad2_ 50k +q7 net-_q6-pad1_ net-_q3-pad2_ net-_q7-pad3_ Q2N2222 +q3 net-_q2-pad1_ net-_q3-pad2_ net-_q3-pad3_ Q2N2222 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +q4 net-_q12-pad3_ net-_q2-pad1_ net-_q3-pad2_ Q2N2222 +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +q2 net-_q2-pad1_ net-_q10-pad1_ net-_q1-pad3_ Q2N2907A +q8 net-_q1-pad1_ net-_q8-pad2_ net-_q6-pad3_ Q2N2222 +q6 net-_q6-pad1_ net-_q10-pad1_ net-_q6-pad3_ Q2N2907A +q5 net-_q1-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +q9 net-_q10-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +q12 net-_q12-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +r9 net-_d1-pad2_ net-_q16-pad2_ 7.5k +r7 net-_c1-pad1_ net-_q16-pad2_ 4.5k +q16 net-_c1-pad1_ net-_q16-pad2_ net-_d1-pad2_ Q2N2222 +q18 net-_c1-pad1_ net-_q18-pad2_ net-_d2-pad1_ Q2N2222 +q15 net-_c1-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +r11 net-_q18-pad2_ net-_d2-pad1_ 25 +q19 net-_q12-pad3_ net-_c1-pad1_ net-_q18-pad2_ Q2N2222 +* Control Statements + +.ends uA107 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA107/uA107_Previous_Values.xml b/library/SubcircuitLibrary/uA107/uA107_Previous_Values.xml new file mode 100644 index 000000000..eae87eb6a --- /dev/null +++ b/library/SubcircuitLibrary/uA107/uA107_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperessecsecsecD:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libD:\FOSSEE\eSim\library\deviceModelLibrary\Diode\D.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.lib \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA740/NPN.lib b/library/SubcircuitLibrary/uA740/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/uA740/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/uA740/PJF.lib b/library/SubcircuitLibrary/uA740/PJF.lib new file mode 100644 index 000000000..5589571d1 --- /dev/null +++ b/library/SubcircuitLibrary/uA740/PJF.lib @@ -0,0 +1,5 @@ +.model J2N3820 PJF(Beta=1.304m Betatce=-.5 Rd=1 Rs=1 Lambda=2.25m Vto=-3 ++ Vtotc=-2.5m Is=33.57f Isr=322.4f N=1 Nr=2 Xti=3 Alpha=311.7u ++ Vk=243.6 Cgd=1.6p M=.3622 Pb=1 Fc=.5 Cgs=2.414p Kf=9.882E-18 ++ Af=1) + diff --git a/library/SubcircuitLibrary/uA740/PNP.lib b/library/SubcircuitLibrary/uA740/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/uA740/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/uA740/analysis b/library/SubcircuitLibrary/uA740/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/uA740/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA740/uA740.cir b/library/SubcircuitLibrary/uA740/uA740.cir new file mode 100644 index 000000000..c134e8530 --- /dev/null +++ b/library/SubcircuitLibrary/uA740/uA740.cir @@ -0,0 +1,68 @@ +.title KiCad schematic +Q20 Net-_Q20-Pad1_ Net-_Q20-Pad2_ Net-_Q13-Pad1_ eSim_NPN +R20 Net-_Q13-Pad1_ Net-_Q21-Pad3_ 20k +Q21 Net-_Q10-Pad1_ Net-_Q20-Pad1_ Net-_Q21-Pad3_ eSim_NPN +Q28 Net-_Q13-Pad1_ Net-_C1-Pad2_ Net-_Q28-Pad3_ eSim_PNP +Q27 Net-_Q13-Pad1_ Net-_C1-Pad2_ Net-_Q20-Pad1_ eSim_PNP +R28 Net-_Q32-Pad2_ Net-_Q31-Pad3_ 30 +R25 Net-_Q32-Pad3_ Net-_Q31-Pad3_ 500 +Q34 Net-_Q13-Pad1_ Net-_Q28-Pad3_ Net-_Q32-Pad2_ eSim_PNP +R26 Net-_Q13-Pad1_ Net-_Q20-Pad2_ 20k +Q26 Net-_Q20-Pad2_ Net-_Q20-Pad2_ Net-_Q13-Pad1_ eSim_NPN +R23 Net-_Q25-Pad3_ Net-_Q28-Pad3_ 50k +Q32 Net-_Q20-Pad2_ Net-_Q32-Pad2_ Net-_Q32-Pad3_ eSim_PNP +U1 Net-_Q1-Pad3_ Net-_J1-Pad2_ Net-_J2-Pad2_ Net-_Q13-Pad1_ Net-_Q12-Pad3_ Net-_Q31-Pad3_ Net-_Q10-Pad1_ unconnected-_U1-Pad8_ PORT +R27 Net-_Q31-Pad3_ Net-_Q24-Pad2_ 27 +Q33 Net-_Q10-Pad1_ Net-_Q25-Pad1_ Net-_Q24-Pad2_ eSim_NPN +Q22 Net-_C1-Pad2_ Net-_Q21-Pad3_ Net-_Q20-Pad2_ eSim_NPN +R22 Net-_Q13-Pad1_ Net-_Q20-Pad2_ 100 +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 50p +R21 Net-_Q23-Pad3_ Net-_Q10-Pad1_ 300 +R19 Net-_C1-Pad1_ Net-_Q20-Pad1_ 500 +Q23 Net-_C1-Pad2_ Net-_Q18-Pad2_ Net-_Q23-Pad3_ eSim_PNP +Q29 Net-_Q25-Pad1_ Net-_Q18-Pad2_ Net-_Q29-Pad3_ eSim_PNP +Q30 Net-_Q25-Pad1_ Net-_Q25-Pad3_ Net-_Q28-Pad3_ eSim_NPN +Q31 Net-_Q25-Pad1_ Net-_Q24-Pad2_ Net-_Q31-Pad3_ eSim_NPN +R24 Net-_Q29-Pad3_ Net-_Q10-Pad1_ 1k +Q25 Net-_Q25-Pad1_ Net-_Q25-Pad1_ Net-_Q25-Pad3_ eSim_NPN +Q24 Net-_Q13-Pad1_ Net-_Q24-Pad2_ Net-_C1-Pad2_ eSim_PNP +Q1 Net-_J1-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +R1 Net-_Q1-Pad3_ Net-_Q10-Pad1_ 1k +Q3 Net-_Q10-Pad1_ Net-_J1-Pad1_ Net-_Q3-Pad3_ eSim_NPN +Q4 Net-_Q4-Pad1_ Net-_Q3-Pad3_ Net-_Q4-Pad3_ eSim_PNP +R4 Net-_Q4-Pad3_ Net-_Q7-Pad1_ 2k +R6 Net-_Q7-Pad3_ Net-_Q10-Pad1_ 500 +Q7 Net-_Q7-Pad1_ Net-_Q1-Pad2_ Net-_Q7-Pad3_ eSim_PNP +Q8 Net-_Q20-Pad1_ Net-_Q10-Pad3_ Net-_Q8-Pad3_ eSim_PNP +R10 Net-_J2-Pad3_ Net-_Q10-Pad3_ 7.5k +Q10 Net-_Q10-Pad1_ Net-_J2-Pad1_ Net-_Q10-Pad3_ eSim_NPN +R8 Net-_Q8-Pad3_ Net-_Q7-Pad1_ 2k +J2 Net-_J2-Pad1_ Net-_J2-Pad2_ Net-_J2-Pad3_ jfet_p +Q12 Net-_J2-Pad1_ Net-_Q1-Pad2_ Net-_Q12-Pad3_ eSim_PNP +R11 Net-_Q12-Pad3_ Net-_Q10-Pad1_ 1k +Q2 Net-_J1-Pad3_ Net-_Q11-Pad2_ Net-_Q2-Pad3_ eSim_NPN +R3 Net-_J1-Pad3_ Net-_Q3-Pad3_ 7.5k +R5 Net-_Q13-Pad1_ Net-_Q5-Pad3_ 500 +R2 Net-_Q13-Pad1_ Net-_Q2-Pad3_ 1.65k +Q5 Net-_Q4-Pad1_ Net-_Q5-Pad2_ Net-_Q5-Pad3_ eSim_NPN +J1 Net-_J1-Pad1_ Net-_J1-Pad2_ Net-_J1-Pad3_ jfet_p +R9 Net-_Q13-Pad1_ Net-_Q9-Pad3_ 500 +R7 Net-_Q13-Pad1_ Net-_Q5-Pad2_ 20k +Q9 Net-_Q20-Pad1_ Net-_Q5-Pad2_ Net-_Q9-Pad3_ eSim_NPN +Q16 Net-_Q11-Pad2_ Net-_Q16-Pad2_ Net-_Q13-Pad1_ eSim_NPN +R16 Net-_Q17-Pad3_ Net-_Q16-Pad2_ 1.5k +R18 Net-_Q13-Pad1_ Net-_Q17-Pad3_ 3.3k +R14 Net-_Q13-Pad1_ Net-_Q15-Pad3_ 3.3k +Q15 Net-_Q13-Pad2_ Net-_Q11-Pad2_ Net-_Q15-Pad3_ eSim_NPN +Q11 Net-_J2-Pad3_ Net-_Q11-Pad2_ Net-_Q11-Pad3_ eSim_NPN +R12 Net-_Q13-Pad1_ Net-_Q11-Pad3_ 1.65k +Q6 Net-_Q10-Pad1_ Net-_Q4-Pad1_ Net-_Q5-Pad2_ eSim_NPN +R17 Net-_Q18-Pad3_ Net-_Q10-Pad1_ 1k +Q18 Net-_Q17-Pad1_ Net-_Q18-Pad2_ Net-_Q18-Pad3_ eSim_PNP +R13 Net-_Q14-Pad3_ Net-_Q10-Pad1_ 1k +Q19 Net-_Q13-Pad1_ Net-_Q17-Pad1_ Net-_Q18-Pad2_ eSim_PNP +Q14 Net-_Q13-Pad2_ Net-_Q1-Pad2_ Net-_Q14-Pad3_ eSim_PNP +Q17 Net-_Q17-Pad1_ Net-_Q11-Pad2_ Net-_Q17-Pad3_ eSim_NPN +Q13 Net-_Q13-Pad1_ Net-_Q13-Pad2_ Net-_Q1-Pad2_ eSim_PNP +R15 Net-_Q11-Pad2_ Net-_Q10-Pad1_ 39k +.end diff --git a/library/SubcircuitLibrary/uA740/uA740.cir.out b/library/SubcircuitLibrary/uA740/uA740.cir.out new file mode 100644 index 000000000..cdf7987d7 --- /dev/null +++ b/library/SubcircuitLibrary/uA740/uA740.cir.out @@ -0,0 +1,80 @@ +.title kicad schematic + +.include PJF.lib +.include PNP.lib +.include NPN.lib +q20 net-_q20-pad1_ net-_q20-pad2_ net-_q13-pad1_ Q2N2222 +r20 net-_q13-pad1_ net-_q21-pad3_ 20k +q21 net-_q10-pad1_ net-_q20-pad1_ net-_q21-pad3_ Q2N2222 +q28 net-_q13-pad1_ net-_c1-pad2_ net-_q28-pad3_ Q2N2907A +q27 net-_q13-pad1_ net-_c1-pad2_ net-_q20-pad1_ Q2N2907A +r28 net-_q32-pad2_ net-_q31-pad3_ 30 +r25 net-_q32-pad3_ net-_q31-pad3_ 500 +q34 net-_q13-pad1_ net-_q28-pad3_ net-_q32-pad2_ Q2N2907A +r26 net-_q13-pad1_ net-_q20-pad2_ 20k +q26 net-_q20-pad2_ net-_q20-pad2_ net-_q13-pad1_ Q2N2907A +r23 net-_q25-pad3_ net-_q28-pad3_ 50k +q32 net-_q20-pad2_ net-_q32-pad2_ net-_q32-pad3_ Q2N2907A +* u1 net-_q1-pad3_ net-_j1-pad2_ net-_j2-pad2_ net-_q13-pad1_ net-_q12-pad3_ net-_q31-pad3_ net-_q10-pad1_ unconnected-_u1-pad8_ port +r27 net-_q31-pad3_ net-_q24-pad2_ 27 +q33 net-_q10-pad1_ net-_q25-pad1_ net-_q24-pad2_ Q2N2222 +q22 net-_c1-pad2_ net-_q21-pad3_ net-_q20-pad2_ Q2N2222 +r22 net-_q13-pad1_ net-_q20-pad2_ 100 +c1 net-_c1-pad1_ net-_c1-pad2_ 50p +r21 net-_q23-pad3_ net-_q10-pad1_ 300 +r19 net-_c1-pad1_ net-_q20-pad1_ 500 +q23 net-_c1-pad2_ net-_q18-pad2_ net-_q23-pad3_ Q2N2907A +q29 net-_q25-pad1_ net-_q18-pad2_ net-_q29-pad3_ Q2N2907A +q30 net-_q25-pad1_ net-_q25-pad3_ net-_q28-pad3_ Q2N2222 +q31 net-_q25-pad1_ net-_q24-pad2_ net-_q31-pad3_ Q2N2222 +r24 net-_q29-pad3_ net-_q10-pad1_ 1k +q25 net-_q25-pad1_ net-_q25-pad1_ net-_q25-pad3_ Q2N2222 +q24 net-_q13-pad1_ net-_q24-pad2_ net-_c1-pad2_ Q2N2907A +q1 net-_j1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +r1 net-_q1-pad3_ net-_q10-pad1_ 1k +q3 net-_q10-pad1_ net-_j1-pad1_ net-_q3-pad3_ Q2N2222 +q4 net-_q4-pad1_ net-_q3-pad3_ net-_q4-pad3_ Q2N2907A +r4 net-_q4-pad3_ net-_q7-pad1_ 2k +r6 net-_q7-pad3_ net-_q10-pad1_ 500 +q7 net-_q7-pad1_ net-_q1-pad2_ net-_q7-pad3_ Q2N2907A +q8 net-_q20-pad1_ net-_q10-pad3_ net-_q8-pad3_ Q2N2907A +r10 net-_j2-pad3_ net-_q10-pad3_ 7.5k +q10 net-_q10-pad1_ net-_j2-pad1_ net-_q10-pad3_ Q2N2222 +r8 net-_q8-pad3_ net-_q7-pad1_ 2k +j2 net-_j2-pad1_ net-_j2-pad2_ net-_j2-pad3_ J2N3820 +q12 net-_j2-pad1_ net-_q1-pad2_ net-_q12-pad3_ Q2N2907A +r11 net-_q12-pad3_ net-_q10-pad1_ 1k +q2 net-_j1-pad3_ net-_q11-pad2_ net-_q2-pad3_ Q2N2222 +r3 net-_j1-pad3_ net-_q3-pad3_ 7.5k +r5 net-_q13-pad1_ net-_q5-pad3_ 500 +r2 net-_q13-pad1_ net-_q2-pad3_ 1.65k +q5 net-_q4-pad1_ net-_q5-pad2_ net-_q5-pad3_ Q2N2222 +j1 net-_j1-pad1_ net-_j1-pad2_ net-_j1-pad3_ J2N3820 +r9 net-_q13-pad1_ net-_q9-pad3_ 500 +r7 net-_q13-pad1_ net-_q5-pad2_ 20k +q9 net-_q20-pad1_ net-_q5-pad2_ net-_q9-pad3_ Q2N2222 +q16 net-_q11-pad2_ net-_q16-pad2_ net-_q13-pad1_ Q2N2222 +r16 net-_q17-pad3_ net-_q16-pad2_ 1.5k +r18 net-_q13-pad1_ net-_q17-pad3_ 3.3k +r14 net-_q13-pad1_ net-_q15-pad3_ 3.3k +q15 net-_q13-pad2_ net-_q11-pad2_ net-_q15-pad3_ Q2N2222 +q11 net-_j2-pad3_ net-_q11-pad2_ net-_q11-pad3_ Q2N2222 +r12 net-_q13-pad1_ net-_q11-pad3_ 1.65k +q6 net-_q10-pad1_ net-_q4-pad1_ net-_q5-pad2_ Q2N2222 +r17 net-_q18-pad3_ net-_q10-pad1_ 1k +q18 net-_q17-pad1_ net-_q18-pad2_ net-_q18-pad3_ Q2N2907A +r13 net-_q14-pad3_ net-_q10-pad1_ 1k +q19 net-_q13-pad1_ net-_q17-pad1_ net-_q18-pad2_ Q2N2907A +q14 net-_q13-pad2_ net-_q1-pad2_ net-_q14-pad3_ Q2N2907A +q17 net-_q17-pad1_ net-_q11-pad2_ net-_q17-pad3_ Q2N2222 +q13 net-_q13-pad1_ net-_q13-pad2_ net-_q1-pad2_ Q2N2907A +r15 net-_q11-pad2_ net-_q10-pad1_ 39k +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/uA740/uA740.kicad_sch b/library/SubcircuitLibrary/uA740/uA740.kicad_sch new file mode 100644 index 000000000..61ec3194b --- /dev/null +++ b/library/SubcircuitLibrary/uA740/uA740.kicad_sch @@ -0,0 +1,3437 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid fe976b00-04eb-44b9-a77a-86cfce8a13f2) + + (paper "A2") + + (lib_symbols + (symbol "eSim_Devices:capacitor" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "capacitor" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "C_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "capacitor_0_1" + (polyline + (pts + (xy -2.032 -0.762) + (xy 2.032 -0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.032 0.762) + (xy 2.032 0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "capacitor_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.016 1.016)))) + (number "1" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.016 1.016)))) + (number "2" (effects (font (size 1.016 1.016)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_NPN" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_NPN" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_NPN_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_NPN_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_PNP" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_PNP" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_PNP_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.286 -1.778) + (xy 1.778 -2.286) + (xy 1.27 -1.27) + (xy 2.286 -1.778) + (xy 2.286 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_PNP_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:jfet_p" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "jfet_p" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "jfet_p_0_1" + (polyline + (pts + (xy 0.254 1.905) + (xy 0.254 -1.905) + (xy 0.254 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 -2.54) + (xy 2.54 -1.27) + (xy 0.254 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy 2.54 1.397) + (xy 0.254 1.397) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.143 0) + (xy -0.127 0.381) + (xy -0.127 -0.381) + (xy -1.143 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "jfet_p_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:resistor" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 1.27 3.302 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "resistor" (id 1) (at 1.27 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 1.27 -0.508 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 1.27 1.27 90) + (effects (font (size 0.762 0.762))) + ) + (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "resistor_0_1" + (rectangle (start 3.81 0.254) (end -1.27 2.286) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "resistor_1_1" + (pin passive line (at -2.54 1.27 0) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "1" (effects (font (size 1.524 1.524)))) + ) + (pin passive line (at 5.08 1.27 180) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "2" (effects (font (size 1.524 1.524)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 207.01 246.38) (diameter 0) (color 0 0 0 0) + (uuid 0552d30c-b46c-4a52-bf67-091cdc5b1d7e) + ) + (junction (at 359.41 127) (diameter 0) (color 0 0 0 0) + (uuid 07c87c38-7bd7-46a3-ad32-dd9d3edd9488) + ) + (junction (at 181.61 195.58) (diameter 0) (color 0 0 0 0) + (uuid 089be2a2-8ec4-4e3c-8440-9d68176ae38f) + ) + (junction (at 435.61 194.31) (diameter 0) (color 0 0 0 0) + (uuid 0b7752f0-f17c-426c-b3f7-6e98cb1aa2f5) + ) + (junction (at 359.41 245.11) (diameter 0) (color 0 0 0 0) + (uuid 0de08275-1a52-4611-b20b-7bd34d832ad0) + ) + (junction (at 435.61 170.18) (diameter 0) (color 0 0 0 0) + (uuid 10bc337f-959b-4be9-b967-cdca654e699a) + ) + (junction (at 283.21 184.15) (diameter 0) (color 0 0 0 0) + (uuid 136872f2-ae6c-48da-8410-d8906c639118) + ) + (junction (at 307.34 279.4) (diameter 0) (color 0 0 0 0) + (uuid 150dcfa9-83b4-4ca3-a716-91ad739b4bff) + ) + (junction (at 387.35 245.11) (diameter 0) (color 0 0 0 0) + (uuid 18cad59d-4030-4cef-8f59-4f46d22d8f37) + ) + (junction (at 334.01 279.4) (diameter 0) (color 0 0 0 0) + (uuid 19aabff8-3d92-482f-aef7-10363b5049f1) + ) + (junction (at 237.49 233.68) (diameter 0) (color 0 0 0 0) + (uuid 1a4e0a2e-f590-4238-8ebf-cdc20d6e7c5b) + ) + (junction (at 321.31 184.15) (diameter 0) (color 0 0 0 0) + (uuid 22aeb4d2-bc60-4a4b-a6a2-4a1f0936269d) + ) + (junction (at 367.03 157.48) (diameter 0) (color 0 0 0 0) + (uuid 23509bb6-0686-42c2-97b2-f02a6a804896) + ) + (junction (at 334.01 243.84) (diameter 0) (color 0 0 0 0) + (uuid 2ea6a00d-ed79-4f24-a181-05933054da33) + ) + (junction (at 308.61 127) (diameter 0) (color 0 0 0 0) + (uuid 30104ae4-b7b5-4a84-854e-c87403783b29) + ) + (junction (at 410.21 127) (diameter 0) (color 0 0 0 0) + (uuid 36724ad7-04cb-4b91-b7e1-965315eb9a96) + ) + (junction (at 297.18 127) (diameter 0) (color 0 0 0 0) + (uuid 3c8549bf-9a10-4f5e-861e-80ef3900640e) + ) + (junction (at 435.61 190.5) (diameter 0) (color 0 0 0 0) + (uuid 40594203-efc0-471a-9c55-70dc603ec104) + ) + (junction (at 245.11 179.07) (diameter 0) (color 0 0 0 0) + (uuid 4496267f-452c-40f5-a55e-bae00620c38c) + ) + (junction (at 168.91 182.88) (diameter 0) (color 0 0 0 0) + (uuid 4d591139-d7d0-4ae1-b906-848e4ed8a577) + ) + (junction (at 207.01 127) (diameter 0) (color 0 0 0 0) + (uuid 502a6ca2-dbd1-4634-991e-8063b11b05d1) + ) + (junction (at 295.91 279.4) (diameter 0) (color 0 0 0 0) + (uuid 523341ba-e683-4c46-9605-ece2ceebcb02) + ) + (junction (at 359.41 224.79) (diameter 0) (color 0 0 0 0) + (uuid 568565c4-0a36-43b0-bf73-aac2c65ac89d) + ) + (junction (at 245.11 279.4) (diameter 0) (color 0 0 0 0) + (uuid 59059fb8-2809-4f98-ad61-7b8ff45fe579) + ) + (junction (at 245.11 215.9) (diameter 0) (color 0 0 0 0) + (uuid 59563d6d-a010-4977-a986-872d9adf4ae3) + ) + (junction (at 410.21 165.1) (diameter 0) (color 0 0 0 0) + (uuid 5baf1069-bdb1-410b-b47b-ccc7a1162e29) + ) + (junction (at 219.71 224.79) (diameter 0) (color 0 0 0 0) + (uuid 60268449-af99-4e26-845f-70e6f3af47b7) + ) + (junction (at 384.81 190.5) (diameter 0) (color 0 0 0 0) + (uuid 6279421a-3030-4b75-8584-3c449f838ec4) + ) + (junction (at 207.01 165.1) (diameter 0) (color 0 0 0 0) + (uuid 66db8c9c-5e29-451b-a4d7-c7a11e5ba27d) + ) + (junction (at 232.41 127) (diameter 0) (color 0 0 0 0) + (uuid 6bfa83b7-1407-4fa7-a56f-11f0c99fcbd3) + ) + (junction (at 410.21 233.68) (diameter 0) (color 0 0 0 0) + (uuid 6eba7912-e0d8-469d-8c45-42cd7a4ab090) + ) + (junction (at 387.35 259.08) (diameter 0) (color 0 0 0 0) + (uuid 6fbe25c4-24d8-4418-aeb8-9e3a98578794) + ) + (junction (at 194.31 279.4) (diameter 0) (color 0 0 0 0) + (uuid 71b1137b-02e1-4ebb-9950-81d794860d79) + ) + (junction (at 295.91 233.68) (diameter 0) (color 0 0 0 0) + (uuid 71d0d82b-f5d4-4629-9edd-55f1a0682837) + ) + (junction (at 379.73 279.4) (diameter 0) (color 0 0 0 0) + (uuid 76af5f30-a4c9-4e41-a085-669ea3798dd8) + ) + (junction (at 300.99 59.69) (diameter 0) (color 0 0 0 0) + (uuid 7c2da952-043e-4b61-9cad-4d63e63990cd) + ) + (junction (at 435.61 226.06) (diameter 0) (color 0 0 0 0) + (uuid 7d206044-f3cf-422e-8d25-551e86c4f827) + ) + (junction (at 422.91 279.4) (diameter 0) (color 0 0 0 0) + (uuid 805d1792-f865-4825-86b0-59dd16ba4ae7) + ) + (junction (at 334.01 224.79) (diameter 0) (color 0 0 0 0) + (uuid 85f3576f-afa5-4c3d-8d9d-275dc5818616) + ) + (junction (at 321.31 279.4) (diameter 0) (color 0 0 0 0) + (uuid 868b554d-5e90-4151-902b-4f9dc025bf73) + ) + (junction (at 405.13 279.4) (diameter 0) (color 0 0 0 0) + (uuid 86d9e918-80ca-4996-89d6-fdced6e0b3aa) + ) + (junction (at 379.73 259.08) (diameter 0) (color 0 0 0 0) + (uuid 8a9bb9a6-b5c3-4778-94af-2649521273d8) + ) + (junction (at 346.71 254) (diameter 0) (color 0 0 0 0) + (uuid 90f3a10a-2e8d-437c-a6e1-2dc5c88ee17a) + ) + (junction (at 430.53 170.18) (diameter 0) (color 0 0 0 0) + (uuid 96a0ff64-79ea-4632-8401-a63d9a67344e) + ) + (junction (at 297.18 233.68) (diameter 0) (color 0 0 0 0) + (uuid 9713a63b-aa16-49bd-a51c-e44b72bc463d) + ) + (junction (at 308.61 279.4) (diameter 0) (color 0 0 0 0) + (uuid 9938c7b9-5ee0-41a2-8697-b67c7f189111) + ) + (junction (at 346.71 127) (diameter 0) (color 0 0 0 0) + (uuid 999bc94b-d7db-486c-9212-7863b53eec53) + ) + (junction (at 214.63 157.48) (diameter 0) (color 0 0 0 0) + (uuid a19cbedd-2108-461b-81a7-d4b8fedea4ee) + ) + (junction (at 422.91 161.29) (diameter 0) (color 0 0 0 0) + (uuid a8bfd9d5-f100-4cf5-9940-68f6aaa4a3d7) + ) + (junction (at 321.31 157.48) (diameter 0) (color 0 0 0 0) + (uuid a9a2c148-46c7-401a-b6f0-d69a39217eeb) + ) + (junction (at 308.61 261.62) (diameter 0) (color 0 0 0 0) + (uuid a9a3f56c-0de2-49d3-9274-7b0e4c5d9e1f) + ) + (junction (at 283.21 279.4) (diameter 0) (color 0 0 0 0) + (uuid acb0c170-2f8c-4bbd-89d3-b1faefcc0e71) + ) + (junction (at 181.61 127) (diameter 0) (color 0 0 0 0) + (uuid b036c7aa-6978-44e0-bb84-9f804a3bdd31) + ) + (junction (at 168.91 215.9) (diameter 0) (color 0 0 0 0) + (uuid b06a1e7d-0100-4af1-9dde-1ee11ee82e8c) + ) + (junction (at 410.21 224.79) (diameter 0) (color 0 0 0 0) + (uuid b5dedb11-694b-4f01-a00d-5e95790ef698) + ) + (junction (at 410.21 190.5) (diameter 0) (color 0 0 0 0) + (uuid b9373b02-d250-4eb7-8a2a-b5467321e5c1) + ) + (junction (at 346.71 279.4) (diameter 0) (color 0 0 0 0) + (uuid b9a05230-c572-465d-8139-c1b3c11aa09e) + ) + (junction (at 270.51 157.48) (diameter 0) (color 0 0 0 0) + (uuid bc5c0ab0-bf56-4d67-9530-26df054987f9) + ) + (junction (at 405.13 250.19) (diameter 0) (color 0 0 0 0) + (uuid bc689ea5-c379-4a63-ab50-d76f51851750) + ) + (junction (at 435.61 198.12) (diameter 0) (color 0 0 0 0) + (uuid be00eedd-7a19-4076-a318-46d52acd1b6f) + ) + (junction (at 359.41 279.4) (diameter 0) (color 0 0 0 0) + (uuid bee9eef2-4135-4c02-b712-01e52a09697b) + ) + (junction (at 308.61 170.18) (diameter 0) (color 0 0 0 0) + (uuid ca9ab37f-d07e-4830-8b15-51f44da52974) + ) + (junction (at 219.71 279.4) (diameter 0) (color 0 0 0 0) + (uuid cd552a01-7ac0-448c-96eb-c429f11f2f8b) + ) + (junction (at 275.59 233.68) (diameter 0) (color 0 0 0 0) + (uuid d0cc0d05-c2e2-49ad-8fea-9eb7faf22726) + ) + (junction (at 245.11 127) (diameter 0) (color 0 0 0 0) + (uuid d5307c48-89cd-4ea6-8c82-35e49d9e528e) + ) + (junction (at 384.81 207.01) (diameter 0) (color 0 0 0 0) + (uuid d70cc7f5-f1c3-4935-ab63-87bdcdb596e0) + ) + (junction (at 207.01 279.4) (diameter 0) (color 0 0 0 0) + (uuid d7c20c23-509c-48af-9d6a-670f6d8bb440) + ) + (junction (at 283.21 127) (diameter 0) (color 0 0 0 0) + (uuid d93aa40a-8556-41fa-8fc4-beeee5cf839b) + ) + (junction (at 210.82 246.38) (diameter 0) (color 0 0 0 0) + (uuid e0aadcec-2546-45e5-ae8a-275337b069b5) + ) + (junction (at 300.99 127) (diameter 0) (color 0 0 0 0) + (uuid ea2df793-4d5c-425e-96c2-ce05dfbb74ff) + ) + (junction (at 359.41 259.08) (diameter 0) (color 0 0 0 0) + (uuid ec79c2d6-f802-467a-b745-30881e5c533f) + ) + (junction (at 232.41 195.58) (diameter 0) (color 0 0 0 0) + (uuid f058fede-c4c1-4f9b-9a31-ab200afc9057) + ) + (junction (at 252.73 157.48) (diameter 0) (color 0 0 0 0) + (uuid f10e6921-02c8-49a1-bbc5-8a928a28d665) + ) + (junction (at 245.11 148.59) (diameter 0) (color 0 0 0 0) + (uuid f275f37c-77f8-454d-86cb-235cb9e4f978) + ) + (junction (at 359.41 165.1) (diameter 0) (color 0 0 0 0) + (uuid f411b864-1215-4dcf-9a34-5f2aa49836ed) + ) + (junction (at 422.91 259.08) (diameter 0) (color 0 0 0 0) + (uuid f5b84413-4828-4949-8d0d-c3107ea04958) + ) + (junction (at 194.31 240.03) (diameter 0) (color 0 0 0 0) + (uuid f5c0e17c-3de8-4c0c-a020-a4328ba5301a) + ) + (junction (at 334.01 233.68) (diameter 0) (color 0 0 0 0) + (uuid f733fffd-2c86-499f-a1ad-df01c03c2124) + ) + (junction (at 270.51 279.4) (diameter 0) (color 0 0 0 0) + (uuid fa4b6842-3030-4092-915c-4b3293d37c04) + ) + (junction (at 168.91 148.59) (diameter 0) (color 0 0 0 0) + (uuid fe15b10b-c5fb-46ec-9c35-232a3e928d15) + ) + + (no_connect (at 171.45 95.25) (uuid 517ca2ad-d663-4bce-b734-d6a80c484cdc)) + + (wire (pts (xy 405.13 233.68) (xy 410.21 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04608337-9a10-4714-90eb-522df1c40f11) + ) + (wire (pts (xy 300.99 127) (xy 308.61 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04a3f535-903f-4541-a7a9-801105e0f07d) + ) + (wire (pts (xy 270.51 279.4) (xy 283.21 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0559880f-3ef8-4dea-922c-ce92e3858c1d) + ) + (wire (pts (xy 210.82 59.69) (xy 300.99 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08355ebb-e2e2-444b-8dc8-ea8e9abf3a66) + ) + (wire (pts (xy 379.73 170.18) (xy 430.53 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08f4273e-ee95-42d0-8234-e702d40efda6) + ) + (wire (pts (xy 214.63 157.48) (xy 252.73 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0902c6d0-5390-4f89-8550-5ba867850b8b) + ) + (wire (pts (xy 435.61 198.12) (xy 435.61 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 093856af-f178-4ce4-ba03-592437352c11) + ) + (wire (pts (xy 344.17 224.79) (xy 349.25 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09b5ebbf-708a-43f1-af59-6e51145bcc05) + ) + (wire (pts (xy 245.11 270.51) (xy 245.11 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a8b77ff-4ebd-4b89-9602-f7f3bac15b5c) + ) + (wire (pts (xy 181.61 195.58) (xy 181.61 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e09ec40-ef52-4c26-b8fa-784c48991fb3) + ) + (wire (pts (xy 240.03 179.07) (xy 245.11 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e292707-5471-4e67-a718-4caac2851d37) + ) + (wire (pts (xy 346.71 127) (xy 346.71 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fce92e4-88ab-4d00-a50c-4ed0d3510e19) + ) + (wire (pts (xy 237.49 233.68) (xy 275.59 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0feea572-a02e-4c6b-a83e-f418052ca422) + ) + (wire (pts (xy 283.21 127) (xy 283.21 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1051944c-c175-4c45-9469-87a9dc80fb61) + ) + (wire (pts (xy 359.41 245.11) (xy 387.35 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 122f9f61-992d-42b4-b7d5-bd70de405516) + ) + (wire (pts (xy 435.61 170.18) (xy 435.61 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12e41512-7740-4d2d-aa7c-e97e546389dd) + ) + (wire (pts (xy 207.01 162.56) (xy 207.01 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12e47ae3-b1a6-4469-b72d-f2f5c68dfe1f) + ) + (wire (pts (xy 346.71 254) (xy 346.71 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1562a48f-b7ba-48c1-acca-451327379b15) + ) + (wire (pts (xy 346.71 279.4) (xy 359.41 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17317b3e-3391-4841-9914-e3fe4c77f028) + ) + (wire (pts (xy 303.53 261.62) (xy 308.61 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19d9495a-3d24-417f-9b90-c5b64c494b11) + ) + (wire (pts (xy 232.41 127) (xy 232.41 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ac7cb35-f673-4844-b42a-45b3a8ca6850) + ) + (wire (pts (xy 341.63 259.08) (xy 359.41 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b8f1ecb-3890-47c7-a3ec-4e84c6f937be) + ) + (wire (pts (xy 410.21 233.68) (xy 427.99 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b975087-faf9-4852-abee-c8dd02bf2e9a) + ) + (wire (pts (xy 367.03 157.48) (xy 402.59 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1be41a91-f7a5-42b7-9d6c-70a9473356d0) + ) + (wire (pts (xy 372.11 175.26) (xy 372.11 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dbf460b-fa66-4039-b2fb-37fd17e5b96e) + ) + (wire (pts (xy 405.13 250.19) (xy 405.13 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e15bad7-7379-46b8-bfc6-bf5fcc12f4b2) + ) + (wire (pts (xy 207.01 143.51) (xy 207.01 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f343813-feca-4265-b81c-d6655d91b6d9) + ) + (wire (pts (xy 422.91 259.08) (xy 422.91 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20a8263b-570d-4b9c-98bb-8ec7306c3e6c) + ) + (wire (pts (xy 334.01 224.79) (xy 336.55 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 223c0b81-2297-4ab4-8d99-27fe3dc6816e) + ) + (wire (pts (xy 219.71 173.99) (xy 219.71 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 237cec3e-fbef-4c9b-aa8a-fb2aedd5eae7) + ) + (wire (pts (xy 422.91 273.05) (xy 422.91 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23aebdb6-7fdf-4544-b7ef-3a5131155455) + ) + (wire (pts (xy 219.71 200.66) (xy 219.71 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23d6945b-b7cb-469d-9615-dd6493ea0a36) + ) + (wire (pts (xy 435.61 213.36) (xy 435.61 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23dece6c-a734-44e6-8940-eb466c8c8118) + ) + (wire (pts (xy 435.61 194.31) (xy 435.61 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24d8a081-1167-418b-b190-ec4918dda0fe) + ) + (wire (pts (xy 168.91 148.59) (xy 168.91 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25a41fdc-6d0f-4580-92c3-09e758204486) + ) + (wire (pts (xy 168.91 279.4) (xy 194.31 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 270a0365-c9d8-439d-b9df-d6f793de1e5c) + ) + (wire (pts (xy 359.41 259.08) (xy 379.73 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27455b3e-f1dd-4f14-b4f1-c541542ac921) + ) + (wire (pts (xy 308.61 170.18) (xy 313.69 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2831f4d7-4e71-47f1-ae4e-46ac063d76b2) + ) + (wire (pts (xy 308.61 238.76) (xy 308.61 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29209fbf-2be4-4d03-9e0d-d5e90ac85d15) + ) + (wire (pts (xy 410.21 127) (xy 410.21 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 293b4ac2-cdea-48fb-9ad1-c2d71d6b27f7) + ) + (wire (pts (xy 377.19 198.12) (xy 377.19 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e8aea59-7b6e-4e38-bd96-58230524d6ed) + ) + (wire (pts (xy 232.41 215.9) (xy 245.11 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f0f94aa-fe83-41bf-9c4a-e9c38f478dbe) + ) + (wire (pts (xy 245.11 162.56) (xy 245.11 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30728a53-0c3d-4647-81e9-a193f4cde372) + ) + (wire (pts (xy 346.71 254) (xy 351.79 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3173b371-3d01-4733-9ecb-ecafe8727e9d) + ) + (wire (pts (xy 430.53 170.18) (xy 435.61 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 358cdbb1-1906-46cf-b834-c138dacdcafa) + ) + (wire (pts (xy 379.73 259.08) (xy 387.35 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35f0dac9-81fc-458a-bbdc-1e79ae4ff302) + ) + (wire (pts (xy 405.13 240.03) (xy 405.13 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a55d5ce-aa5b-4721-a764-1d299fa44501) + ) + (wire (pts (xy 387.35 259.08) (xy 387.35 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a9bce91-db26-4c72-9aab-f90f51a8dcb1) + ) + (wire (pts (xy 377.19 190.5) (xy 384.81 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bb34611-fead-4308-aae2-9d7877886d28) + ) + (wire (pts (xy 346.71 127) (xy 359.41 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e079d3d-f97f-4b5e-a5d3-522a3f86ae7f) + ) + (wire (pts (xy 257.81 195.58) (xy 257.81 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f605745-f3bd-44d7-b063-c31a3d8f6998) + ) + (wire (pts (xy 297.18 127) (xy 297.18 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 400959a0-c0e9-4648-aa5f-9eff98fb1807) + ) + (wire (pts (xy 415.29 161.29) (xy 415.29 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4056b888-3c32-4e83-9d02-1f81090ecc3c) + ) + (wire (pts (xy 194.31 270.51) (xy 194.31 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 414bea41-7919-4dd0-8344-7fc1b23f2590) + ) + (wire (pts (xy 194.31 251.46) (xy 194.31 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 415aad91-fef4-4dbc-9c5c-0cb2e7b29990) + ) + (wire (pts (xy 384.81 203.2) (xy 384.81 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4179cf55-1173-450b-b0a6-3dcc2c484ed2) + ) + (wire (pts (xy 245.11 228.6) (xy 245.11 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 418b8171-a116-45c2-b9c4-7b8ff676b5c3) + ) + (wire (pts (xy 359.41 279.4) (xy 379.73 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 433ba8d5-96c2-4f5e-89fc-98288b534a80) + ) + (wire (pts (xy 283.21 270.51) (xy 283.21 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47a85bc3-0bdd-43c9-b498-ac8f77f422c5) + ) + (wire (pts (xy 245.11 127) (xy 283.21 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47c80311-498d-4830-a535-9fa4d41f4232) + ) + (wire (pts (xy 297.18 233.68) (xy 300.99 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b005617-25f5-4621-9bf4-8361e14d4cbe) + ) + (wire (pts (xy 435.61 127) (xy 435.61 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b19a376-ba33-4e22-b145-5c0c788d7385) + ) + (wire (pts (xy 168.91 182.88) (xy 173.99 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b397f9b-7f07-483f-9ddf-4bfdc18fa0f1) + ) + (wire (pts (xy 422.91 175.26) (xy 422.91 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b8fdadd-ef2c-4fab-950e-79eaea3a8181) + ) + (wire (pts (xy 245.11 179.07) (xy 245.11 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cfc89a1-5efa-411e-aa6b-7e3297325def) + ) + (wire (pts (xy 435.61 226.06) (xy 435.61 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d374a44-68e6-45db-90d3-51eeb6bc53c3) + ) + (wire (pts (xy 295.91 233.68) (xy 297.18 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e2265a4-a332-4b25-854e-c5baa22f8809) + ) + (wire (pts (xy 387.35 259.08) (xy 422.91 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e490750-b988-4125-af40-1b51cf09ce96) + ) + (wire (pts (xy 308.61 170.18) (xy 308.61 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4eb7eb55-f8ab-40f5-b5d6-8e59371750a3) + ) + (wire (pts (xy 194.31 165.1) (xy 194.31 173.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ee5595c-2b89-4754-a211-ca2871e15584) + ) + (wire (pts (xy 394.97 240.03) (xy 394.97 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f2b05cd-7ca5-443d-8cd2-b49e2053734f) + ) + (wire (pts (xy 334.01 243.84) (xy 334.01 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5037cc21-ef05-4747-9c23-95d51535ae43) + ) + (wire (pts (xy 359.41 245.11) (xy 359.41 248.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5529bd0a-1d40-41b8-bd57-85d7a7adbb64) + ) + (wire (pts (xy 194.31 181.61) (xy 194.31 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5646a7f7-4ed9-476d-950b-41519e563a9f) + ) + (wire (pts (xy 283.21 162.56) (xy 283.21 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 581e6456-d491-4265-af90-861bc35e2f2b) + ) + (wire (pts (xy 372.11 184.15) (xy 321.31 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a161179-d360-425a-9ae9-f494cf6b3fd5) + ) + (wire (pts (xy 321.31 175.26) (xy 321.31 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bf6e1c8-61b6-4da9-80e4-a0a0afbb9ce8) + ) + (wire (pts (xy 194.31 279.4) (xy 207.01 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c081706-5e98-47b3-86b8-b77a2c26027d) + ) + (wire (pts (xy 227.33 195.58) (xy 232.41 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cdfa656-7a0c-4659-b8e2-5ee8886f1b5d) + ) + (wire (pts (xy 219.71 251.46) (xy 219.71 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d17a578-b12d-473f-9e87-1bf72096d140) + ) + (wire (pts (xy 295.91 233.68) (xy 295.91 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ebc4296-793e-4d67-9e3e-41f9e3bfe12b) + ) + (wire (pts (xy 219.71 224.79) (xy 219.71 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f771b59-045e-4030-aac4-813b4a775304) + ) + (wire (pts (xy 379.73 279.4) (xy 405.13 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60297518-e96f-4f9d-9c07-a3470aeaf826) + ) + (wire (pts (xy 308.61 143.51) (xy 308.61 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61b20960-20f2-49ec-a48a-5a1567f34fa1) + ) + (wire (pts (xy 168.91 238.76) (xy 168.91 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 642d2354-4a0d-474a-b1c7-ac722e05296d) + ) + (wire (pts (xy 410.21 212.09) (xy 410.21 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6851fdcc-ca33-4c60-8583-58fa8430affb) + ) + (wire (pts (xy 245.11 143.51) (xy 245.11 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 687ef237-0498-425d-b0d5-2ccaa9e105b8) + ) + (wire (pts (xy 207.01 127) (xy 232.41 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69b6eace-f695-4162-95e9-1093353e1408) + ) + (wire (pts (xy 379.73 259.08) (xy 379.73 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c67b6c8-7af2-4949-a230-1c8a6fb75427) + ) + (wire (pts (xy 300.99 54.61) (xy 300.99 59.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d87e482-5bf2-4631-8b07-44a017eb0d62) + ) + (wire (pts (xy 181.61 187.96) (xy 181.61 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f3dd328-7e6a-477a-b22e-d68059eddf06) + ) + (wire (pts (xy 359.41 162.56) (xy 359.41 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71ad4cab-7499-494e-af17-34bef5a458df) + ) + (wire (pts (xy 427.99 161.29) (xy 422.91 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7257aa58-dce3-4d0b-aaf8-d37936e90e56) + ) + (wire (pts (xy 207.01 279.4) (xy 219.71 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 744786a2-efcc-40fb-a3c7-bb1f9de91fd6) + ) + (wire (pts (xy 232.41 195.58) (xy 232.41 203.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7549fe36-1cc6-4135-9d84-3bcd0f1000f5) + ) + (wire (pts (xy 334.01 264.16) (xy 334.01 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 777f9da6-64aa-48dc-98ed-f6d675c3cab9) + ) + (wire (pts (xy 435.61 190.5) (xy 435.61 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78a129da-1dad-40e6-bea5-b13d5bf48a89) + ) + (wire (pts (xy 359.41 224.79) (xy 359.41 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78b6fbc7-9cf0-4e6a-95e6-c65225f72fd9) + ) + (wire (pts (xy 252.73 157.48) (xy 270.51 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78c3a423-1b18-46a6-8cd3-36fd22e2613b) + ) + (wire (pts (xy 422.91 231.14) (xy 422.91 259.08)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a562a47-bf12-4a4b-a219-761d1e665eb6) + ) + (wire (pts (xy 168.91 127) (xy 181.61 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b9fa7d3-a5bc-4e62-bb5e-a8d268afbe15) + ) + (wire (pts (xy 219.71 181.61) (xy 219.71 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c1e5036-3420-4fba-80b9-1175e521db12) + ) + (wire (pts (xy 207.01 165.1) (xy 194.31 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ce25f40-eb62-4a21-975b-81e06f704859) + ) + (wire (pts (xy 207.01 246.38) (xy 207.01 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7dddb5fa-ba46-49be-9157-49aa50bcc927) + ) + (wire (pts (xy 181.61 127) (xy 181.61 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8030a3d9-7ed6-42dc-bfbd-760123e55d5f) + ) + (wire (pts (xy 194.31 240.03) (xy 203.2 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8122a40d-f024-4e5a-954c-15b43e83e16b) + ) + (wire (pts (xy 410.21 224.79) (xy 410.21 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81706aad-9ffc-4ca7-9b3a-9cc1f6775aa1) + ) + (wire (pts (xy 297.18 127) (xy 300.99 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81720844-83c0-43b8-9a7b-1e75ca684fda) + ) + (wire (pts (xy 410.21 190.5) (xy 410.21 201.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82b04068-ffa3-4aa4-b33c-8a7fca5fb7d0) + ) + (wire (pts (xy 359.41 127) (xy 359.41 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82e5867a-23fd-4d15-8908-c899d5de7fca) + ) + (wire (pts (xy 359.41 270.51) (xy 359.41 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8399349c-4de8-49fd-8e18-5922a51e8977) + ) + (wire (pts (xy 405.13 279.4) (xy 422.91 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 845ba8d2-d746-47d5-b215-7042832fd491) + ) + (wire (pts (xy 410.21 165.1) (xy 410.21 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84f0487c-a3ef-4937-a25c-506334c12959) + ) + (wire (pts (xy 359.41 143.51) (xy 359.41 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8645b580-645f-4c9a-871d-cd5e3b6f0d9d) + ) + (wire (pts (xy 219.71 279.4) (xy 245.11 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 86bbfc73-b225-43ab-a06d-e61b325e32d8) + ) + (wire (pts (xy 334.01 243.84) (xy 339.09 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89bb0a6b-2695-4f53-85cd-adfd1be6e7eb) + ) + (wire (pts (xy 435.61 187.96) (xy 435.61 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a177043-290d-4818-879d-d532ff436836) + ) + (wire (pts (xy 245.11 127) (xy 245.11 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b560845-32b7-4535-8334-6818e1fa825c) + ) + (wire (pts (xy 334.01 279.4) (xy 346.71 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ba84862-60ea-42a4-bb2e-2d915facae33) + ) + (wire (pts (xy 422.91 161.29) (xy 415.29 161.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bd5dc1e-3294-4b4f-83ca-c68db593cbaa) + ) + (wire (pts (xy 156.21 148.59) (xy 168.91 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bda5c61-970e-425e-b003-fba10cc7075c) + ) + (wire (pts (xy 308.61 127) (xy 346.71 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dea8905-065e-4dbb-8a3e-931a19157569) + ) + (wire (pts (xy 168.91 127) (xy 168.91 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f5b1e29-648d-4e2e-a585-8363d3cbdaf0) + ) + (wire (pts (xy 161.29 157.48) (xy 214.63 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 90bf37a0-ab0c-4055-b4ff-e0ae7fd02413) + ) + (wire (pts (xy 270.51 189.23) (xy 270.51 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91931067-300b-48a3-9dfd-79f6102932b1) + ) + (wire (pts (xy 207.01 246.38) (xy 210.82 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93343349-f7c0-41f9-9676-6935ce4a50e9) + ) + (wire (pts (xy 430.53 226.06) (xy 435.61 226.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95832e13-a739-4205-8529-fdb85312a3ba) + ) + (wire (pts (xy 300.99 59.69) (xy 300.99 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 967ab8e3-98f7-4691-9db0-d5d98a1cfe8e) + ) + (wire (pts (xy 359.41 259.08) (xy 359.41 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ae834cd-f113-4841-851e-bc210a86a9b9) + ) + (wire (pts (xy 207.01 270.51) (xy 207.01 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e8606ac-30f3-44d6-ac76-b527fb6dd642) + ) + (wire (pts (xy 245.11 200.66) (xy 245.11 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ecd8bc5-8f62-4b9a-8f5e-fa51241f1ff0) + ) + (wire (pts (xy 283.21 238.76) (xy 283.21 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ee1fd18-a6fd-47fe-8e4b-ae94087ccffe) + ) + (wire (pts (xy 308.61 261.62) (xy 308.61 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a272e26e-4432-4202-bb03-a8a8afeb6e75) + ) + (wire (pts (xy 194.31 200.66) (xy 194.31 240.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2a42b91-509a-4d70-9318-f8095d112d4c) + ) + (wire (pts (xy 168.91 270.51) (xy 168.91 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a424d1a3-f23a-4f97-9620-902be3a4d517) + ) + (wire (pts (xy 394.97 250.19) (xy 405.13 250.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5f2e97a-85c7-4dc0-8382-58fb0a63039e) + ) + (wire (pts (xy 283.21 184.15) (xy 283.21 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a70db22d-5160-486f-b8cf-696272a31fc5) + ) + (wire (pts (xy 181.61 127) (xy 207.01 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a760025c-4c2d-4acf-8e4b-0c09ed0a2a29) + ) + (wire (pts (xy 210.82 246.38) (xy 227.33 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7a4b6b7-3160-44c8-adb5-130e407254c6) + ) + (wire (pts (xy 207.01 127) (xy 207.01 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8dc77f0-f005-4a59-b13a-3519f5a4340f) + ) + (wire (pts (xy 252.73 195.58) (xy 257.81 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a96c0ca4-9567-415d-a660-4fb6bcc268af) + ) + (wire (pts (xy 210.82 59.69) (xy 210.82 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a97eddaa-61c0-4056-bf96-deff217df09e) + ) + (wire (pts (xy 387.35 245.11) (xy 397.51 245.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aaf00139-db5e-45b8-9714-6043c7089b26) + ) + (wire (pts (xy 415.29 165.1) (xy 410.21 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad33d44f-dda6-441d-b47f-a615f77a6caf) + ) + (wire (pts (xy 308.61 270.51) (xy 308.61 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ad92d19b-4a99-42a6-90db-b44741c69572) + ) + (wire (pts (xy 422.91 205.74) (xy 422.91 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aeb9a628-eb57-4633-8dac-9a0d29bac3d0) + ) + (wire (pts (xy 422.91 279.4) (xy 435.61 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aebee35d-63de-41f4-b780-e57a7272c958) + ) + (wire (pts (xy 232.41 184.15) (xy 232.41 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af89e050-09ff-4238-a48f-96fe3d910f2f) + ) + (wire (pts (xy 238.76 148.59) (xy 245.11 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b04dffad-d4d6-43cb-8549-8cec3590a973) + ) + (wire (pts (xy 321.31 157.48) (xy 367.03 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b310102d-e0b1-4c75-bdd7-1ea40055314e) + ) + (wire (pts (xy 270.51 157.48) (xy 270.51 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4f58d7c-6bd8-4b2b-bbfe-627ed8a06535) + ) + (wire (pts (xy 194.31 240.03) (xy 194.31 241.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b53c8a56-f41c-4d38-b7c6-1fd4d7b8b45e) + ) + (wire (pts (xy 283.21 143.51) (xy 283.21 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b61065aa-bbe7-4543-8a1d-8be36c253ca8) + ) + (wire (pts (xy 410.21 162.56) (xy 410.21 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7ad979c-5fad-437a-aab6-3a8d0e28a39f) + ) + (wire (pts (xy 356.87 224.79) (xy 359.41 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7e5a55a-91eb-4a34-b676-96a177e24d16) + ) + (wire (pts (xy 295.91 279.4) (xy 307.34 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b96a7128-cde3-451a-b84c-ac8d24edd4a8) + ) + (wire (pts (xy 219.71 270.51) (xy 219.71 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ba040df0-8471-4150-b0d8-e676d7456917) + ) + (wire (pts (xy 275.59 233.68) (xy 295.91 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be0822f1-f0b3-4a9a-84ee-7e85a9633d1e) + ) + (wire (pts (xy 334.01 224.79) (xy 334.01 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfc4a00e-3daf-4e3e-aaf6-403560d271b2) + ) + (wire (pts (xy 384.81 218.44) (xy 384.81 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1984b8b-a8b6-4207-b0e5-45b9489058ef) + ) + (wire (pts (xy 346.71 248.92) (xy 346.71 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c27ec6b9-bdfa-4fd8-aac6-2b4a55153ec7) + ) + (wire (pts (xy 171.45 95.25) (xy 163.83 95.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c34f1de8-0118-4107-956d-63c19e156f4f) + ) + (wire (pts (xy 316.23 157.48) (xy 321.31 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3820c0b-eca9-49d9-b788-3eb54976bee6) + ) + (wire (pts (xy 307.34 279.4) (xy 308.61 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5980ec6-474f-4c07-a8ad-f3115393ce54) + ) + (wire (pts (xy 435.61 238.76) (xy 435.61 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7ad6889-51f0-4489-8204-cf554eeaf905) + ) + (wire (pts (xy 422.91 161.29) (xy 422.91 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c92d476b-13cc-4f50-9380-02baa3561770) + ) + (wire (pts (xy 422.91 213.36) (xy 422.91 220.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9c289a7-fe3a-4b9d-af4f-c46ae4a1d0e7) + ) + (wire (pts (xy 384.81 193.04) (xy 384.81 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9d357db-cce0-4dcd-a816-ae4d04e4d64d) + ) + (wire (pts (xy 270.51 157.48) (xy 275.59 157.48)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c9f15f4c-425e-4495-85e8-c4d35157727f) + ) + (wire (pts (xy 384.81 207.01) (xy 384.81 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca12fc87-a629-4245-b110-5a444927c1ee) + ) + (wire (pts (xy 303.53 248.92) (xy 303.53 254)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca8e351e-8372-40b9-9a74-e45472c973a6) + ) + (wire (pts (xy 308.61 162.56) (xy 308.61 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc15ffe0-cb26-4008-8a1e-a97fd57cd20a) + ) + (wire (pts (xy 308.61 127) (xy 308.61 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce3ebb8a-f66d-401c-9204-8f7a18a7bf67) + ) + (wire (pts (xy 219.71 165.1) (xy 207.01 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfcacfff-56d3-4330-9e11-2a000e754e87) + ) + (wire (pts (xy 176.53 233.68) (xy 237.49 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2002d11-22d5-4cbd-adc3-e9a42bb3be3c) + ) + (wire (pts (xy 359.41 127) (xy 410.21 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d40d2580-4a79-4e56-9efc-5124979956f2) + ) + (wire (pts (xy 321.31 184.15) (xy 321.31 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d419cf42-5ae0-45a2-bd20-305203a90d6f) + ) + (wire (pts (xy 63.5 195.58) (xy 161.29 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4e33994-8ea3-41e8-8c2a-7a8a5de2211d) + ) + (wire (pts (xy 346.71 270.51) (xy 346.71 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5337230-67e1-48ca-a606-d44a3aa42921) + ) + (wire (pts (xy 283.21 279.4) (xy 295.91 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5b180a8-510e-461d-a463-a434e164b491) + ) + (wire (pts (xy 359.41 165.1) (xy 359.41 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6dfefff-2d86-4061-aa6c-1cafb9c429a7) + ) + (wire (pts (xy 181.61 210.82) (xy 181.61 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7adb097-dbcf-4fc4-ac01-c461ed881593) + ) + (wire (pts (xy 379.73 270.51) (xy 379.73 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d813e162-dec6-41e3-b1d8-6125aeda4314) + ) + (wire (pts (xy 168.91 200.66) (xy 168.91 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d85d5130-caaf-4509-b16e-3cfa9c89830c) + ) + (wire (pts (xy 232.41 210.82) (xy 232.41 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9676ee4-1418-4d42-b958-82cdbe0e39f2) + ) + (wire (pts (xy 168.91 143.51) (xy 168.91 148.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da6309c0-2791-4418-9001-03b47bc8954a) + ) + (wire (pts (xy 435.61 166.37) (xy 435.61 170.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbb0be23-1a72-4505-96f3-cb470dd929a7) + ) + (wire (pts (xy 63.5 212.09) (xy 257.81 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd3734e9-3702-420a-8773-8e64d43d3741) + ) + (wire (pts (xy 232.41 127) (xy 245.11 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e096f359-987d-40c8-8bfb-deffc10ffccd) + ) + (wire (pts (xy 307.34 279.4) (xy 307.34 308.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e17126ad-1d90-44b1-b0e3-76919782dc75) + ) + (wire (pts (xy 297.18 187.96) (xy 297.18 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1bf4fa1-ff81-4e06-b039-30fa05edeabf) + ) + (wire (pts (xy 422.91 190.5) (xy 435.61 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1cd9f84-ed1a-4775-b473-9bb0f045c174) + ) + (wire (pts (xy 168.91 162.56) (xy 168.91 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1e4da84-833d-46fb-b1fc-0a8729f008db) + ) + (wire (pts (xy 410.21 127) (xy 435.61 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1f5b686-692c-49a9-a7c1-6f0392fdcb3f) + ) + (wire (pts (xy 283.21 127) (xy 297.18 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e42d2f02-874b-4557-a333-92e124ac94d2) + ) + (wire (pts (xy 435.61 194.31) (xy 530.86 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e44560b3-3d6a-4158-ad97-74df0aed7876) + ) + (wire (pts (xy 245.11 238.76) (xy 245.11 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4a1adcb-73a1-495c-bab0-3477442d0479) + ) + (wire (pts (xy 278.13 184.15) (xy 283.21 184.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e668bb35-ee0e-468d-88be-d61e096d10a4) + ) + (wire (pts (xy 245.11 148.59) (xy 245.11 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7258805-90cb-440e-a93c-fd003bd9167e) + ) + (wire (pts (xy 181.61 195.58) (xy 186.69 195.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e79944e7-6ac1-4f65-b839-29276ff3327f) + ) + (wire (pts (xy 334.01 233.68) (xy 334.01 243.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7f9bb39-72d9-42c5-a9d3-60e3fdb4a5b0) + ) + (wire (pts (xy 321.31 157.48) (xy 321.31 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e7fae398-9952-4b2b-9fe8-eafc20b006ec) + ) + (wire (pts (xy 245.11 279.4) (xy 270.51 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9baed5e-1f40-45cb-9f8f-956b908ec64c) + ) + (wire (pts (xy 210.82 245.11) (xy 210.82 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebf9d670-ea32-4666-8162-ab08549c9dcd) + ) + (wire (pts (xy 384.81 224.79) (xy 410.21 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed03150a-62eb-4693-8522-e699a8b3aa2f) + ) + (wire (pts (xy 181.61 215.9) (xy 168.91 215.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed0dfa5c-23a0-4f4f-8b2d-e28146d36684) + ) + (wire (pts (xy 410.21 143.51) (xy 410.21 152.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed1af067-d230-4471-b669-805f71e87870) + ) + (wire (pts (xy 308.61 279.4) (xy 321.31 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eff764e8-f439-4654-8983-2f9d9cf517ac) + ) + (wire (pts (xy 168.91 215.9) (xy 168.91 228.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f50b1bb7-c644-43f1-96ba-16605875d400) + ) + (wire (pts (xy 422.91 198.12) (xy 435.61 198.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f5fc0bdd-f3c0-4a78-8a10-4af53a17f50d) + ) + (wire (pts (xy 186.69 246.38) (xy 207.01 246.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7969f91-bb77-4fc4-beff-602e21e89549) + ) + (wire (pts (xy 321.31 279.4) (xy 334.01 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7ed2563-af71-4f43-afc4-9e0f53899cab) + ) + (wire (pts (xy 219.71 224.79) (xy 334.01 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7f4ceb8-35b4-42db-8759-a277d902db0d) + ) + (wire (pts (xy 384.81 207.01) (xy 402.59 207.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa2e42e6-27c6-4f9d-a7cd-7e5e81a61989) + ) + (wire (pts (xy 295.91 254) (xy 295.91 279.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc320df2-f03d-4532-9650-4eb1c1d480dd) + ) + (wire (pts (xy 168.91 182.88) (xy 168.91 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd4b04f4-e44d-4917-a0e5-0a4c187bef3c) + ) + (wire (pts (xy 359.41 165.1) (xy 372.11 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff7ddcc5-3ccd-4121-8bd2-d4a89a997d01) + ) + (wire (pts (xy 334.01 233.68) (xy 394.97 233.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ff8e5347-3fe4-4557-91d4-7cd251b0aae9) + ) + (wire (pts (xy 384.81 190.5) (xy 410.21 190.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffd91191-1ea5-46d0-bae0-34480837221b) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 360.68 267.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0b160be4-b1dd-4922-bc2c-29eaefce9c78) + (property "Reference" "R22" (id 0) (at 361.95 265.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "100" (id 1) (at 361.95 267.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 361.188 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 359.41 266.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid e9ae59ee-0950-46c3-bcee-68bef00da900)) + (pin "2" (uuid e5cec0da-69e6-4bca-bb22-92c92d146a5f)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 408.94 140.97 270) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0de1081b-3b62-43c2-b12a-88d81482cb5f) + (property "Reference" "R24" (id 0) (at 412.75 138.4299 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1k" (id 1) (at 412.75 140.9699 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 408.432 139.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 410.21 139.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid d4d2d640-bf32-4849-80a4-a189399dea14)) + (pin "2" (uuid 8ab4b95a-d62f-43ce-b02d-9192c60c468c)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 222.25 195.58 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 11bbfa09-fde9-44f4-b724-7e6583951f8c) + (property "Reference" "Q8" (id 0) (at 217.17 194.3099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 217.17 196.8499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 217.17 198.12 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 222.25 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2f7c5431-7f04-42e6-b0de-c59b2cd00fe8)) + (pin "2" (uuid c94ccaba-0d42-49ca-b281-0bf2e236b7aa)) + (pin "3" (uuid 42bf80b3-66bf-4e2d-969f-05729fc83943)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 182.88 208.28 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13169d83-5512-4a8d-96fb-7d964ac0cca7) + (property "Reference" "R3" (id 0) (at 184.15 205.7399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "7.5k" (id 1) (at 184.15 208.2799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 183.388 207.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 181.61 207.01 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid af4ceaf7-8d4b-43dc-872d-fead9e23d635)) + (pin "2" (uuid e385ea45-929c-4ac9-aca8-faf0cb212ed4)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 234.95 179.07 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1444bbbe-4b4d-4d0d-95b5-56bc29399551) + (property "Reference" "Q10" (id 0) (at 229.87 177.7999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 229.87 180.3399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 229.87 176.53 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 234.95 179.07 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bea4da3c-bc94-41c7-916c-8e9797010002)) + (pin "2" (uuid b8084a2d-3371-4b69-8741-93e3701f128b)) + (pin "3" (uuid 988d814d-a096-4e92-a95c-8875b1cf96de)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 434.34 210.82 270) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17ae3aa8-d62f-4f00-9747-3053b347b203) + (property "Reference" "R28" (id 0) (at 438.15 208.2799 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "30" (id 1) (at 438.15 210.8199 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 433.832 209.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 435.61 209.55 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 7812f70c-213a-4cc7-a3cd-09215e5392cb)) + (pin "2" (uuid 86fa6068-bd16-4f71-a739-338a00498d7b)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 424.18 270.51 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 21d2a6ea-ab60-41e6-a046-512c2e93d217) + (property "Reference" "R26" (id 0) (at 425.45 267.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "20k" (id 1) (at 425.45 270.5099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 424.688 269.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 422.91 269.24 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid ea97e262-a005-452e-aa4d-c5b5704e017a)) + (pin "2" (uuid 7f89cc27-01cb-4cdf-aef6-a573e242c3a0)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 195.58 179.07 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 24d8b3b8-2a6b-4ff5-8993-7bc67270809d) + (property "Reference" "R4" (id 0) (at 196.85 176.5299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "2k" (id 1) (at 196.85 179.0699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 196.088 177.8 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 194.31 177.8 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid eb4668ab-03be-4c5d-8dd8-a6885ff08dca)) + (pin "2" (uuid 4e29cf00-6105-4ebb-8457-74798a9b4f08)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 170.18 140.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 24e63105-75ff-476f-95c8-fbf2250eee29) + (property "Reference" "R1" (id 0) (at 171.45 138.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 171.45 140.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 170.688 139.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 168.91 139.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 18292f79-40fc-4594-9dc5-429ca8dc2943)) + (pin "2" (uuid 824dd72a-e894-4805-a9c1-2845c80c3ae7)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 247.65 157.48 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 260406f5-57e6-4d20-a711-e7979315176a) + (property "Reference" "Q12" (id 0) (at 242.57 156.2099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 242.57 158.7499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 242.57 160.02 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 247.65 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f97b8886-6419-4a36-b2de-1866415303a1)) + (pin "2" (uuid ecb1ea7b-44bf-463e-b469-e473cd2c78d9)) + (pin "3" (uuid 0eaea839-fa30-498d-b6bb-332f2256bf19)) + ) + + (symbol (lib_id "eSim_Devices:capacitor") (at 353.06 224.79 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 273ca9ae-6c9a-48f3-a2e1-f6f695a4ac6d) + (property "Reference" "C1" (id 0) (at 353.06 217.17 90)) + (property "Value" "50p" (id 1) (at 353.06 219.71 90)) + (property "Footprint" "" (id 2) (at 356.87 223.8248 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 353.06 224.79 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bc925e8c-5d3e-4abe-b192-62d29763ccba)) + (pin "2" (uuid b656f6d4-4bf6-44c8-bc30-3219a95d8cb1)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 222.25 246.38 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28f1024e-65c6-46b5-9c95-ca555fac1871) + (property "Reference" "Q9" (id 0) (at 217.17 245.1099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 217.17 247.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 217.17 243.84 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 222.25 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 74b620ba-b5c7-4383-99de-76b31796193d)) + (pin "2" (uuid a3119926-b49b-4d49-a936-2ac91663e346)) + (pin "3" (uuid fc656a40-ea73-413c-8f8a-3a532a96307a)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 421.64 210.82 270) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2be4a23b-417f-41ff-ad0d-0633c5a82004) + (property "Reference" "R25" (id 0) (at 425.45 208.2799 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "500" (id 1) (at 425.45 210.8199 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 421.132 209.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 422.91 209.55 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid f23668b0-ca0f-45ab-9efb-f3fbdfba876e)) + (pin "2" (uuid 3bcaea5d-8816-4415-9d5f-3eefe011168b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 392.43 245.11 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3389982d-3091-4d51-986a-be1f22b01ae3) + (property "Reference" "Q27" (id 0) (at 397.51 243.8399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 394.97 238.76 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 397.51 247.65 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 392.43 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 54630da0-d3a1-46b9-af7c-bfbef4bbee36)) + (pin "2" (uuid d6c07ac9-bd52-4a9b-afad-1c78998fed74)) + (pin "3" (uuid 07f75bb1-0d49-4cb2-b460-3e3043a66065)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 425.45 226.06 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 35c7a0b4-3e7b-459b-a597-a969fbe88ec1) + (property "Reference" "Q32" (id 0) (at 420.37 224.7899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 420.37 227.3299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 420.37 228.6 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 425.45 226.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 00933464-7a8a-4283-ad9e-88770c1c7b69)) + (pin "2" (uuid 835e8fd4-5e1c-4829-9301-3f37fab0a6c1)) + (pin "3" (uuid 43ae9a1d-4f92-4673-b8c2-ff640ebcee7a)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 407.67 207.01 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3c2dba78-af5c-43e2-a56f-fe2d30c94d03) + (property "Reference" "Q30" (id 0) (at 412.75 205.7399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 411.48 208.28 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 412.75 204.47 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 407.67 207.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8a78e8fa-83bc-4e9d-bd04-aab27f362561)) + (pin "2" (uuid c70e4b00-4011-41fd-865c-88b575ccfa62)) + (pin "3" (uuid 0dc430a0-f5a1-4942-a220-f89b3a25682c)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 191.77 246.38 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3f8d9f80-0dcc-476a-943e-08993e66f021) + (property "Reference" "Q5" (id 0) (at 196.85 245.1099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 196.85 247.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 196.85 243.84 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 191.77 246.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 90aa4dac-f56a-4ccb-aafd-76ec37cb1ef9)) + (pin "2" (uuid c1d3f34d-7482-40fc-a1ed-12d6e82eaa1e)) + (pin "3" (uuid 818f3360-5784-4464-a842-2e5ae9628085)) + ) + + (symbol (lib_id "eSim_Devices:jfet_p") (at 166.37 195.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4729ad36-a9ac-4d19-896d-81cec0792d20) + (property "Reference" "J1" (id 0) (at 171.45 194.3099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "jfet_p" (id 1) (at 171.45 196.8499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 171.45 193.04 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 166.37 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 93d7ed7e-459a-4915-b848-184af5c1d6df)) + (pin "2" (uuid 9a229ef6-31b9-4d05-bbae-159ef446cd9e)) + (pin "3" (uuid 750d1d8a-3504-4edc-8012-37f8a5709f6e)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 309.88 140.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 49d4e7c1-fc9f-470a-8d06-b4d79ab6c759) + (property "Reference" "R17" (id 0) (at 311.15 138.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 311.15 140.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 310.388 139.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 308.61 139.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 0dfe8e9e-3a8b-4608-b1c4-4823fff6e8e9)) + (pin "2" (uuid 32de67f5-b78c-4d4a-b39e-39db61177272)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 407.67 157.48 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b243988-e7ca-4a0f-9795-347cbd22e89c) + (property "Reference" "Q29" (id 0) (at 412.75 156.2099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 412.75 158.7499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 412.75 160.02 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 407.67 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid de419afc-abc9-45b3-8dfb-b2a1d3e9d50f)) + (pin "2" (uuid 5512c040-4547-4ea3-bf1f-db59a022d108)) + (pin "3" (uuid 89b989cd-f149-4e5e-9437-1b55f5009f68)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 383.54 213.36 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4f2b7084-d160-477a-8149-47c21bd10bdd) + (property "Reference" "R23" (id 0) (at 387.35 213.3599 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "50k" (id 1) (at 387.35 215.8999 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 383.032 214.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 384.81 214.63 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 71a31140-0ba5-43cb-ac5f-d47924d02234)) + (pin "2" (uuid 34b556be-a05f-49e7-ab8e-2a0de4b58e42)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 311.15 157.48 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 54d1055c-2fff-41da-9939-71efb20d2100) + (property "Reference" "Q18" (id 0) (at 306.07 156.2099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 306.07 158.7499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 306.07 160.02 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 311.15 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 259a33fe-ea83-42e4-a313-e12028e5376f)) + (pin "2" (uuid 29d39d58-fb29-4591-a5dd-b6c9fa3de96b)) + (pin "3" (uuid c793d26f-9889-4b7f-b923-16100d8c3b54)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 208.28 140.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 55729c4d-eb0f-4266-abf4-392b01b7b9ee) + (property "Reference" "R6" (id 0) (at 209.55 138.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "500" (id 1) (at 209.55 140.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 208.788 139.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 207.01 139.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 315d9192-90be-456f-9b67-11cbbb2313d6)) + (pin "2" (uuid e60a7177-18a4-49a9-a91b-f34d93c75a98)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 208.28 240.03 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 59580813-7cfd-43d9-8e1f-7ba0384e3196) + (property "Reference" "Q6" (id 0) (at 213.36 238.7599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 213.36 241.2999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 213.36 237.49 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 208.28 240.03 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f7f1950c-9813-4ef2-9d7c-79b17ff629e4)) + (pin "2" (uuid 146319b0-167f-4987-bea4-2b2e9c11e2dd)) + (pin "3" (uuid 903ab3c1-048d-4d5b-98fd-cc3a77f08f6c)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 284.48 140.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5af1e8cd-7fe6-4a24-a617-9d72cc90b54a) + (property "Reference" "R13" (id 0) (at 285.75 138.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 285.75 140.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 284.988 139.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 283.21 139.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 00f4d523-30dc-4f0a-abd4-ae014b610a52)) + (pin "2" (uuid 78704b7e-f8f6-432a-a26e-3da375b1d930)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 382.27 198.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5bedcab4-e54f-48f7-96e6-64f84a661de1) + (property "Reference" "Q25" (id 0) (at 387.35 196.8499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 387.35 199.3899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 387.35 195.58 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 382.27 198.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a9d75c24-ce63-41d0-9d63-481ad49456b1)) + (pin "2" (uuid 512b3e06-ac87-45c0-8d82-d1f91a3fb980)) + (pin "3" (uuid f359c701-65d3-49c4-a37d-52ee30f878eb)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 382.27 265.43 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 62f71db0-75d6-4834-8625-a5a49da50ae6) + (property "Reference" "Q26" (id 0) (at 377.19 264.1599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 377.19 266.6999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 377.19 262.89 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 382.27 265.43 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0f6a4b0f-185b-4761-b874-3be7f0bcf0a5)) + (pin "2" (uuid 65976e80-8d16-49a9-a9e7-e73324cf2f26)) + (pin "3" (uuid dee4ca4c-ec57-4966-8d2b-7abb59243475)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 170.18 267.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 65904abc-aa84-4e96-819f-c60470293ab6) + (property "Reference" "R2" (id 0) (at 171.45 265.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1.65k" (id 1) (at 171.45 267.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 170.688 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 168.91 266.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 883a50c9-e75f-4344-8d72-bbdf80ce416f)) + (pin "2" (uuid 67c742df-301a-4ebc-8e44-902ef9dcb080)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 179.07 182.88 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 669e94d7-a38c-4c9a-b1cf-f520486be7a8) + (property "Reference" "Q3" (id 0) (at 184.15 181.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 184.15 184.1499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 184.15 180.34 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 179.07 182.88 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f78ab6ef-e2d4-4ac8-a6ed-73411bb57739)) + (pin "2" (uuid 87c4cce2-de67-4408-9338-6b0f890eb3cf)) + (pin "3" (uuid 8d3ca19e-e234-4c17-af1a-8faa55931396)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 242.57 233.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68b9b6fc-5900-451c-ae8c-ff35d051cb97) + (property "Reference" "Q11" (id 0) (at 247.65 232.4099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 247.65 234.9499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 247.65 231.14 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 242.57 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2755513-0e3c-4479-a280-3874143d422b)) + (pin "2" (uuid 0c7ccc6c-a3e6-4206-9772-fc0e32541377)) + (pin "3" (uuid 6c951a1a-38a2-4f6e-a9c2-c2d39825d15b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 209.55 157.48 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6959c701-a739-4415-b892-ce9c8750b6b1) + (property "Reference" "Q7" (id 0) (at 204.47 156.2099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 204.47 158.7499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 204.47 160.02 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 209.55 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 18df4fc8-c93d-47bc-988d-8d8d275a3c9a)) + (pin "2" (uuid 624c7190-e4ea-4449-bc4c-345be3b51bfb)) + (pin "3" (uuid 1585b14a-db1b-44e0-b03c-42364e69aeb2)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 298.45 185.42 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6f8b8328-47c9-4b09-8f38-99db77c40372) + (property "Reference" "R15" (id 0) (at 299.72 182.8799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "39k" (id 1) (at 299.72 185.4199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 298.958 184.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 297.18 184.15 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 6a9568e0-6ae1-4e7e-863a-bbb392840a16)) + (pin "2" (uuid 97362341-7bbd-4916-aa7c-03683152766f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 298.45 248.92 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 739b1a87-6652-440a-a3cd-4c6792595f56) + (property "Reference" "Q16" (id 0) (at 293.37 247.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 293.37 250.1899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 293.37 246.38 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 298.45 248.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ccca23bb-4d36-45db-8547-85ea8b831a62)) + (pin "2" (uuid 66fad1f8-8ee9-49d4-b507-97ca2458829d)) + (pin "3" (uuid 80bac4f3-86d5-4d7f-a15e-6b51d046e73f)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 341.63 223.52 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 74453fd2-944e-4284-89c1-4f8fd70872df) + (property "Reference" "R19" (id 0) (at 340.36 218.44 0)) + (property "Value" "500" (id 1) (at 340.36 220.98 0)) + (property "Footprint" "" (id 2) (at 340.36 223.012 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 340.36 224.79 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 79235567-45f3-462a-b589-96145c6fa69f)) + (pin "2" (uuid 01f8fed8-6331-4d56-bbde-945fe06b26d8)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 306.07 233.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 74c35cee-5275-4503-bd2e-d1038d30855c) + (property "Reference" "Q17" (id 0) (at 311.15 232.4099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 311.15 234.9499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 311.15 231.14 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 306.07 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7956c6d0-bb4b-4412-b353-93a5946cb0f1)) + (pin "2" (uuid 4946ec4f-bd22-4281-a5d7-209d2750d10d)) + (pin "3" (uuid f3189615-3e0b-4c5d-bc3e-4b740478b7af)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 246.38 267.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 76a697ab-d0d4-420f-bc58-6d86d544debc) + (property "Reference" "R12" (id 0) (at 247.65 265.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1.65k" (id 1) (at 247.65 267.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 246.888 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 245.11 266.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 8ef4138f-8adc-4830-8522-ee0794d34920)) + (pin "2" (uuid e38740ee-988f-4e15-af0e-780bf8845e6d)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 356.87 254 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 78b4707e-6e2c-453a-a67e-39e01e17c35a) + (property "Reference" "Q22" (id 0) (at 361.95 252.7299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 361.95 255.2699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 361.95 251.46 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 356.87 254 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3b9a85cc-6bb4-42e1-9ecf-3728f12fff9a)) + (pin "2" (uuid 95de76ca-63db-41e3-879b-a0fe1bbca97d)) + (pin "3" (uuid f8d01740-c84d-4786-8569-02524ab4316f)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 243.84 140.97 270) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7ac7a893-7967-4b26-a3bc-7e904b323e28) + (property "Reference" "R11" (id 0) (at 242.57 138.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 242.57 140.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 243.332 139.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 245.11 139.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 281f45f8-b9ad-4ce4-b4b0-7bab87508273)) + (pin "2" (uuid 70e452d9-954d-47ab-9e86-edec94e2a229)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 280.67 233.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8436e0e7-c3de-445e-bd0a-8dda4996fd0a) + (property "Reference" "Q15" (id 0) (at 285.75 232.4099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 285.75 234.9499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 285.75 231.14 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 280.67 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 21990031-f821-4565-bd60-9e199914c072)) + (pin "2" (uuid 81c36db0-f511-4e15-9e1f-60319c8926d1)) + (pin "3" (uuid 12f8f396-f1dd-486e-9e9d-c9a9d7cdf64e)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 425.45 170.18 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9393db6b-486d-4046-bc11-eb561954708a) + (property "Reference" "Q31" (id 0) (at 420.37 168.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 420.37 171.4499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 420.37 167.64 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 425.45 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c8ca4049-933a-481d-9dba-66e7c9303da6)) + (pin "2" (uuid e8f27953-d020-48e6-9003-4a121f9c7e12)) + (pin "3" (uuid a6c8f04d-ba41-4922-813c-182623be860f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 171.45 233.68 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 96060433-a1ec-4360-81ed-bd8ee504aa05) + (property "Reference" "Q2" (id 0) (at 166.37 232.4099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 166.37 234.9499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 166.37 231.14 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 171.45 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f8038b3-bd14-4581-a2ec-8f65770c5079)) + (pin "2" (uuid 9943dfe3-1e9c-4bdd-8c56-ba48073092b2)) + (pin "3" (uuid 64f5383d-7d84-4abd-8cd0-37938fcecdc4)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 361.95 157.48 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 99bf1cf5-484f-42dd-9790-c21763f96494) + (property "Reference" "Q23" (id 0) (at 356.87 156.2099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 356.87 158.7499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 356.87 160.02 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 361.95 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 675dce38-6cd4-49f5-b546-d2c024bbe74e)) + (pin "2" (uuid 097f1b9b-2fd3-4573-832a-7cc863139871)) + (pin "3" (uuid f8798544-4e73-4eb2-96cc-76fd8436066d)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 57.15 195.58 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9ce94d6a-93b3-45f2-ab2c-6e3395b8e9d1) + (property "Reference" "U1" (id 0) (at 57.785 190.5 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 57.785 193.04 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 57.15 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 57.15 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e1a2444c-f913-4688-8f4f-679dcb30126a)) + (pin "2" (uuid 5a2ca3f2-c905-4af6-8ad0-9183f1ae1c9a)) + (pin "3" (uuid b1c627ae-7278-4108-a3c8-e19326964d64)) + (pin "4" (uuid e2315100-e8a1-42fa-9114-ea26022b9026)) + (pin "5" (uuid fd87a301-dbec-41f1-a126-13f8fd6a14a8)) + (pin "6" (uuid 74a35069-f105-4be4-bda9-2cb34af5dada)) + (pin "7" (uuid d1444335-8d2f-4afc-8829-c08ba8f91e82)) + (pin "8" (uuid 011fd0b5-fec9-40f4-bfb0-6c1bbbd536bf)) + (pin "9" (uuid 5fe2d09f-0af3-41a3-8950-ea9b3b391a8f)) + (pin "10" (uuid e3861271-b0e4-4e04-bf49-d52a362946f3)) + (pin "11" (uuid 2167d438-5fb1-474c-b3e6-e43b52078ac2)) + (pin "12" (uuid 3f264e28-f071-4e65-b175-c7ae886e4cb2)) + (pin "13" (uuid ecc40503-462b-4fdf-bd6b-5d640130f266)) + (pin "14" (uuid 128f9fa6-9226-4027-a206-b7e2b4ec5bc5)) + (pin "15" (uuid 48514d2c-b852-401a-83ff-92dde25c6e5f)) + (pin "16" (uuid 03dac672-bf3c-4cca-b443-7f6ffd06d534)) + (pin "17" (uuid 3f41bac1-3880-4056-b001-3eb815e09fb1)) + (pin "18" (uuid a584e645-65b8-4dae-9945-095b2139a225)) + (pin "19" (uuid 20577722-4d3f-4a74-a3b1-57713083496c)) + (pin "20" (uuid edfd4bdb-3001-4c62-9fb3-0e68a3dcec4c)) + (pin "21" (uuid c0c7e310-69a3-4988-b6bc-5fe13f96d577)) + (pin "22" (uuid 70d39453-7aaf-4125-98ed-74f9e8323b3c)) + (pin "23" (uuid c747f03c-53da-42c2-a52f-19e38c15c255)) + (pin "24" (uuid 9d38f16a-4728-4462-83fd-c0d646cd3c20)) + (pin "25" (uuid 6f565014-6f46-48bf-993d-c0880639bc15)) + (pin "26" (uuid 55f19b2e-8626-4bcd-9eb7-52e650479920)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 157.48 95.25 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a834bc64-5f35-4651-a009-a3986a9824db) + (property "Reference" "U1" (id 0) (at 158.115 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 158.115 92.71 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 157.48 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 157.48 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d7d83a4c-bc7d-4ebd-a3d4-2a71f4fd9ee9)) + (pin "2" (uuid 33dc05d2-203e-40cf-9d88-df2c844f697a)) + (pin "3" (uuid 21c1b847-aefa-4d19-ae26-d55da2e157f1)) + (pin "4" (uuid 685a8f3a-1c4c-4b2a-a46c-45f6e81c5304)) + (pin "5" (uuid 7555d519-c6ef-4f73-aa9d-ec3424cb0f55)) + (pin "6" (uuid 91b2df55-0b87-4816-8945-b433150b86d1)) + (pin "7" (uuid 224d288d-7bd7-4a99-8cad-c9eea8f97bda)) + (pin "8" (uuid f21f333e-de9d-4567-a2d3-9a0a9e499ea9)) + (pin "9" (uuid a09806ea-0006-41d9-b52c-89bb20d9323b)) + (pin "10" (uuid c1b09476-785d-4a0b-8946-c935e996b298)) + (pin "11" (uuid 59ba9de7-d60f-47d7-a7f2-697f2cbd49e9)) + (pin "12" (uuid 4806ad4d-1118-4129-9417-a6e5cdb2669f)) + (pin "13" (uuid 02d4f8f5-ab1d-4d06-b232-d1689eb9dbd5)) + (pin "14" (uuid 9978ecd1-2ac6-4c29-b499-fc2bb328f05a)) + (pin "15" (uuid a00b9105-d993-4383-9ecc-93e7a240aedd)) + (pin "16" (uuid 44534fa7-e972-4eb7-9d28-4ed2318a9501)) + (pin "17" (uuid aa0388cb-b105-41d1-9827-c0685e7ac3d6)) + (pin "18" (uuid b8b31ec8-c740-4c9d-a17a-f85fbe090e0d)) + (pin "19" (uuid 98b7ac7a-e008-474c-9cf3-49c5bc512362)) + (pin "20" (uuid d12d57d4-e0b9-4771-a07b-8e30df5ee4f6)) + (pin "21" (uuid 101cf024-09a8-48cd-a739-261c1d6581be)) + (pin "22" (uuid bebb9e13-cdbd-496d-b08f-379f2507c307)) + (pin "23" (uuid 973b16b2-bcad-4072-ba89-b25a4d9606e1)) + (pin "24" (uuid 9f6561a1-49c2-4f3e-b517-374678b3cb31)) + (pin "25" (uuid 6ac3f674-a228-405a-bbbe-35457cea5af8)) + (pin "26" (uuid 90c26ffc-253c-4c95-8346-7f7e35b8e3d1)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 233.68 208.28 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a83b9075-228b-4dbf-a950-f71fac5192f3) + (property "Reference" "R10" (id 0) (at 234.95 205.7399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "7.5k" (id 1) (at 234.95 208.2799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 234.188 207.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 232.41 207.01 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid cb31e930-5a14-4984-b3d4-0a1fab24a57a)) + (pin "2" (uuid ad787114-4208-4123-937d-4a15b6681e80)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 284.48 267.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ae8d4682-40c2-493e-ac27-4f9e63fec2c3) + (property "Reference" "R14" (id 0) (at 285.75 265.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "3.3k" (id 1) (at 285.75 267.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 284.988 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 283.21 266.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 16f6b553-b8ad-4a2d-99ec-7513287d72a5)) + (pin "2" (uuid 4261ee16-ac7d-47bd-b2e2-a92ca45980b3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 149.86 148.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b0850c46-7493-453a-b5c6-715c5c5cbbc3) + (property "Reference" "U1" (id 0) (at 150.495 143.51 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 150.495 146.05 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 149.86 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 149.86 148.59 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2ba10264-7816-403f-aa45-3b73eec1afc7)) + (pin "2" (uuid 1c55b115-d12e-4b66-b535-1d1264f7b123)) + (pin "3" (uuid f746f1c2-57ba-4f4a-a328-9879ac14405f)) + (pin "4" (uuid e7a0d6e8-0481-4982-8cef-1fe39f032879)) + (pin "5" (uuid 3f1cd654-de98-4327-82dd-d9ce41948a15)) + (pin "6" (uuid 7952c461-d9f8-43c1-b9d1-c8848c924770)) + (pin "7" (uuid fdfda96b-2f89-4d53-94f0-bbdbf6240e1c)) + (pin "8" (uuid e8e17e8d-bf05-446e-bb23-4117a5baa009)) + (pin "9" (uuid 16a5068b-927e-4573-aba7-48f7cc336f36)) + (pin "10" (uuid 1a1f756d-71d7-4686-861d-a9a0bbdb2033)) + (pin "11" (uuid 84bd9241-4d7e-4e9b-86d8-e5a3989a9bf0)) + (pin "12" (uuid 546300ed-66a8-470f-b06a-f1631c363c40)) + (pin "13" (uuid da97f18c-c121-4635-abd4-6f23a6f13443)) + (pin "14" (uuid 32777198-6b90-4548-a568-0dc643ba2548)) + (pin "15" (uuid 9c03d21b-6305-4165-ba7b-85361422e620)) + (pin "16" (uuid 6286f99b-3032-4417-8dde-94fe30e61b64)) + (pin "17" (uuid 09782233-5aed-4a57-a608-a6326c37548e)) + (pin "18" (uuid 26229b9a-214e-48ed-9602-209d82625683)) + (pin "19" (uuid a128cf17-56f7-4fe0-bb16-a258ff3dadb5)) + (pin "20" (uuid c9ace8b7-13ec-45fd-9e3a-1e3ed181a0bb)) + (pin "21" (uuid d1ee75b0-c8e7-4e6a-b6ec-2f9b21ef96e1)) + (pin "22" (uuid 3d330f14-231c-4f6a-b47f-294cdd1a785a)) + (pin "23" (uuid bc76001b-722c-43b7-868c-457c0b301827)) + (pin "24" (uuid 07105835-9ac6-4071-bb50-eccecd18baf0)) + (pin "25" (uuid bfecf375-b9a2-4c27-9b98-5cbba78d6b22)) + (pin "26" (uuid 05bb0472-dd41-40bf-a99d-92553fd8c272)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 307.34 54.61 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b0ccd031-097c-4072-8e4b-bc31162bfa76) + (property "Reference" "U1" (id 0) (at 311.15 53.975 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 311.15 56.515 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 307.34 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 307.34 54.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 514dda59-8778-41cb-a94e-4884c4ec21e6)) + (pin "2" (uuid 1be9767f-69d6-42f1-826c-11002fc70200)) + (pin "3" (uuid 3a8612d0-f301-43ed-9c04-d99387f330de)) + (pin "4" (uuid ffa27de2-4dc0-488c-887e-d84c8912d0fd)) + (pin "5" (uuid 305ecd48-d92f-4bc5-8570-ac99c4f907e0)) + (pin "6" (uuid d4d33f44-b3f8-46c9-b330-57dd3e889c79)) + (pin "7" (uuid 4376bca2-446d-410b-b516-86bf786d8ab2)) + (pin "8" (uuid c76772b7-b1fd-4219-86e8-86231eaf31ff)) + (pin "9" (uuid 40200d88-bb97-4fe7-8aea-8fa4ce7e5e2c)) + (pin "10" (uuid e9a071f4-f5b1-4c93-b774-25a66225c136)) + (pin "11" (uuid fcbb79a5-24b4-466c-b1aa-00c07c2d859e)) + (pin "12" (uuid 206d95d7-897d-48ce-a9bc-37f7bfc04ed3)) + (pin "13" (uuid 78a4d806-9acd-4784-8c7f-ae0b23ab1f2c)) + (pin "14" (uuid 1c6d7d1f-6817-4f5a-b02d-3c7154e112de)) + (pin "15" (uuid c5ad00c7-43c6-4705-9e5b-de8bccbcfae7)) + (pin "16" (uuid 8091b1ce-710b-4340-a23b-2cb28db7dc6a)) + (pin "17" (uuid fd611f9f-7f1e-464c-b97d-8f9a79b95866)) + (pin "18" (uuid f5c6ebfd-ce0c-4305-a8ca-2b723b06a62c)) + (pin "19" (uuid 42175d1a-c946-4d87-ae31-f61a1d3c44a8)) + (pin "20" (uuid 159cfb25-4244-4526-8e87-e7f5f0d3182e)) + (pin "21" (uuid 990e658f-6ed5-4cc5-902c-c4c143447387)) + (pin "22" (uuid 71c56031-e6c2-4c24-8f66-7a36960355c0)) + (pin "23" (uuid 5390288c-9ea0-49b0-8bc0-6cc544ba9f80)) + (pin "24" (uuid 963f0141-5c95-4cd8-831d-fa89fb52e42a)) + (pin "25" (uuid 63048011-37b6-4e0b-a8a8-0c50055c0966)) + (pin "26" (uuid 67f1953b-c5b4-47b4-a09b-b86f7505152c)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 280.67 157.48 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b1ae634e-92f1-434f-8f27-ee0cd5c6636f) + (property "Reference" "Q14" (id 0) (at 285.75 156.2099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 285.75 158.7499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 285.75 160.02 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 280.67 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 45c93e65-cbe4-458a-befd-b9e07643ff9e)) + (pin "2" (uuid 4ef69d88-d6b4-4ea3-aef6-ce86310e2adb)) + (pin "3" (uuid 7a4e8cda-4460-487b-8835-bcaec07a32da)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 374.65 170.18 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b3aa39eb-2576-4f4e-a912-fb45f83f307f) + (property "Reference" "Q24" (id 0) (at 369.57 168.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 369.57 171.4499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 369.57 172.72 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 374.65 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f0b391a4-020a-472e-88fe-46934f7da637)) + (pin "2" (uuid a989bf14-cae4-48c6-8804-86ec985966be)) + (pin "3" (uuid 1c20ac1e-5e8f-4533-830b-4715465b01ab)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 191.77 195.58 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b55f239f-3703-4f47-85ae-e21cad4ab290) + (property "Reference" "Q4" (id 0) (at 196.85 194.3099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 196.85 196.8499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 196.85 198.12 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 191.77 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4235a634-339b-4d00-bb3b-226b6c251e6b)) + (pin "2" (uuid 3c5225b5-354f-435f-9fb0-045406fade48)) + (pin "3" (uuid fb8d79df-c540-474f-be59-cf1f9be86aef)) + ) + + (symbol (lib_id "eSim_Devices:jfet_p") (at 247.65 195.58 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba3868ca-dc39-4d92-a94f-609670d3d30c) + (property "Reference" "J2" (id 0) (at 242.57 194.3099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "jfet_p" (id 1) (at 242.57 196.8499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 242.57 193.04 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 247.65 195.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ce57dcdb-c7ac-43cc-97fa-778d536b79a1)) + (pin "2" (uuid a8f17cb3-e299-425b-992b-19c5d693ec3c)) + (pin "3" (uuid 5f9acc9a-1905-44f4-b9fc-ff2baf414d4e)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 166.37 157.48 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb3dca22-6328-48df-9b62-9f8bf222eaf7) + (property "Reference" "Q1" (id 0) (at 171.45 156.2099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 171.45 158.7499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 171.45 160.02 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 166.37 157.48 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97e2389d-4754-4c31-aae9-616975bfb453)) + (pin "2" (uuid 91ac516f-39a4-4183-b9f6-d3bd9fa01902)) + (pin "3" (uuid 8b760fdc-f6bd-41ea-9443-c05e70073b85)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 433.07 233.68 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bf7aa546-9ac7-4cb7-8c86-bef0646bfb51) + (property "Reference" "Q34" (id 0) (at 438.15 232.4099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 438.15 234.9499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 438.15 236.22 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 433.07 233.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 64bd4364-6c7d-46de-9dcb-e523885c0c61)) + (pin "2" (uuid 08467449-3e1b-47d4-b221-6f152c449cc0)) + (pin "3" (uuid e3fdfb1d-d108-418d-bd55-bfcd3e87eadb)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 318.77 170.18 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c376b17a-908d-4236-afbf-97b0d0801793) + (property "Reference" "Q19" (id 0) (at 323.85 168.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 323.85 171.4499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 323.85 172.72 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 318.77 170.18 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97b22b68-55f6-4e41-b4d8-8d1e339968a5)) + (pin "2" (uuid ffadc01a-4b3e-477b-ac39-afbdc105e5b9)) + (pin "3" (uuid 15271909-0d06-45a0-a88d-66ebeb33ea0d)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 220.98 267.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c398357d-5537-4f0e-b883-710b27449d17) + (property "Reference" "R9" (id 0) (at 222.25 265.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "500" (id 1) (at 222.25 267.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 221.488 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 219.71 266.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 05ffa3ec-906d-4a7a-bf46-e85bd2551dd9)) + (pin "2" (uuid 5b239a38-471c-4e35-b6bb-5db81a431231)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 195.58 267.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c52550f5-8b7a-4029-8a70-f2f38d973f13) + (property "Reference" "R5" (id 0) (at 196.85 265.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "500" (id 1) (at 196.85 267.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 196.088 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 194.31 266.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 5964441d-5377-4648-96e7-3603f0acbd47)) + (pin "2" (uuid 9f5f2957-d925-4917-a853-d58951bed818)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 300.99 308.61 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ca00c67c-158f-470a-9aa5-24d86250e9c7) + (property "Reference" "U1" (id 0) (at 301.625 303.53 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 301.625 306.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 300.99 308.61 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 300.99 308.61 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6759c203-52d7-4347-b9d3-763dbf6aef30)) + (pin "2" (uuid 1459b458-5e02-49e0-a581-db51036f03b9)) + (pin "3" (uuid 38a57124-1e9a-4f1d-89f9-18007c197bdb)) + (pin "4" (uuid e876e5b9-49f7-45f8-8b7a-f7a9deafc005)) + (pin "5" (uuid 57147581-e6c7-4fb9-b350-9b3ea410e50c)) + (pin "6" (uuid 263affeb-e3b5-4ac3-a792-3f7524698e0d)) + (pin "7" (uuid adc8d364-691b-499b-8d80-86b4d60b7ed0)) + (pin "8" (uuid 01865a6b-a16b-4206-931c-2bacf54f0872)) + (pin "9" (uuid b9018fb0-fe0a-4edf-855d-1467af147926)) + (pin "10" (uuid 7ee027f8-feee-45c6-b02a-7e4ed1c48e2d)) + (pin "11" (uuid 6c4c541e-9bc0-4d90-816a-9ef1d2a129c5)) + (pin "12" (uuid 98e1a879-17bf-4da0-bcff-0e3979ab74c0)) + (pin "13" (uuid 2047a98c-6f38-4a5e-b5ee-e0ad598d9a07)) + (pin "14" (uuid b165bce0-36ba-4bda-9812-3dc150cee045)) + (pin "15" (uuid 7146b3ba-37e9-4666-8b8b-2039709a82aa)) + (pin "16" (uuid fa6e2489-8028-4c73-ba04-a4143a102e61)) + (pin "17" (uuid cdf77a5c-685e-4cb2-9876-15607f1f12f4)) + (pin "18" (uuid 74c4ba53-1045-4506-9722-1a7617422eb4)) + (pin "19" (uuid 99501a47-b20f-4075-99f0-0cae6819469f)) + (pin "20" (uuid 0908ae97-20aa-4e93-a93d-dc6c2d4700c5)) + (pin "21" (uuid b543adb9-0e78-4d75-894b-1f0d08d85f3b)) + (pin "22" (uuid 589d5225-7e88-49f3-890e-89a30857b997)) + (pin "23" (uuid 70076d68-9c39-42b8-bf07-f02bd0618ea5)) + (pin "24" (uuid 789d2ab2-bba3-453c-90cd-97d280c38fe8)) + (pin "25" (uuid 1bd90a5e-384e-45d8-84ec-17722a933831)) + (pin "26" (uuid f71fdeab-40e8-4666-b24c-9330a2f25fec)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 537.21 194.31 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cb00d559-d082-4315-9b22-ad44d370542b) + (property "Reference" "U1" (id 0) (at 541.02 193.675 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 541.02 196.215 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 537.21 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 537.21 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a8076729-87a1-41cc-871f-7932e31fa240)) + (pin "2" (uuid 3b797c48-eecd-46e9-86a1-3d72d0f64a1e)) + (pin "3" (uuid e90692f9-15ed-4cb1-abf2-e83eb9ef7531)) + (pin "4" (uuid a3e7da70-77df-4531-bf72-e3ee15c0f09b)) + (pin "5" (uuid 9fa81564-88f3-4531-a20f-ac25c840e572)) + (pin "6" (uuid 8bb881eb-23ec-48e9-aaa9-4c0754139f81)) + (pin "7" (uuid 889db3f5-c705-48c3-95ce-482e57aac094)) + (pin "8" (uuid a8737e2d-2fb0-494d-8b34-b22da57210cd)) + (pin "9" (uuid 18f2685e-8ece-41dc-b55a-c048cc430aff)) + (pin "10" (uuid da1ca74f-c851-4c92-8dde-65dcfbd32033)) + (pin "11" (uuid 0daa5860-4673-46f8-967d-73159caf22d9)) + (pin "12" (uuid d8342312-bf3e-4b40-bea7-87a429668741)) + (pin "13" (uuid a603827a-b79b-4e6d-a974-d6ddf35b580a)) + (pin "14" (uuid ef6b2b4e-9a02-4aa5-96c3-cb44cbbb62a8)) + (pin "15" (uuid e7362cc7-bae6-4baf-bd4b-1d35392ba848)) + (pin "16" (uuid 999cf3a7-a70b-42a4-9446-bbbfba8ed022)) + (pin "17" (uuid c6123d2a-b9a7-4fc9-a306-b002e83be189)) + (pin "18" (uuid 6993025c-a496-47a0-811a-73392e88783f)) + (pin "19" (uuid 209e4a71-e576-4107-8456-5c481a4f1455)) + (pin "20" (uuid 9f22d237-a286-470b-a01f-9106db0dc874)) + (pin "21" (uuid 0d256688-ccd7-46ac-9802-5130ccc00d2e)) + (pin "22" (uuid 001359a4-e86f-43c1-8bf5-0d972e9f34d6)) + (pin "23" (uuid a96b55a1-bdb0-4787-a670-e957729f6382)) + (pin "24" (uuid a62bb093-6fda-4c15-9b02-8b0746087a77)) + (pin "25" (uuid 1206804a-b7a7-4a7a-a1ef-fd5e294e20cf)) + (pin "26" (uuid 5908764b-ab8f-4c7c-9306-c9c8d997e545)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 309.88 267.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cdd9cc80-9f11-46be-aa18-06797eaa7d1f) + (property "Reference" "R18" (id 0) (at 311.15 265.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "3.3k" (id 1) (at 311.15 267.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 310.388 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 308.61 266.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 0aa437a5-873d-44bf-bbfd-097e7a9f474f)) + (pin "2" (uuid f1133d89-5306-48e0-9457-404215d89242)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 344.17 243.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d20716cb-6b29-44fd-a605-07ff7f941163) + (property "Reference" "Q21" (id 0) (at 349.25 242.5699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 349.25 245.1099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 349.25 241.3 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 344.17 243.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a9ac280-6a92-4726-b6ec-d22354bef7a0)) + (pin "2" (uuid 20c2981e-f0a8-477e-8104-a6ddda8ddd64)) + (pin "3" (uuid 57fd927b-90d8-4174-bc30-9dafd0ec24ee)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 434.34 185.42 270) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d45550d1-b325-43a5-ab70-1417f8df7061) + (property "Reference" "R27" (id 0) (at 438.15 182.8799 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "27" (id 1) (at 438.15 185.4199 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 433.832 184.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 435.61 184.15 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 465669a7-1cab-4551-9d96-0baa46e1ef27)) + (pin "2" (uuid bb442f22-2ef5-4281-81a8-d4e6968d9734)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 402.59 245.11 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d7245a66-78dc-44f1-89ac-a84d41949068) + (property "Reference" "Q28" (id 0) (at 407.5098 243.8399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 407.5098 246.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 407.67 247.65 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 402.59 245.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2226aafe-c2c3-4df0-8dcc-7a48f2bca2cf)) + (pin "2" (uuid 92240131-0517-4dfa-bb11-fb8871490511)) + (pin "3" (uuid ffc3fccb-ac54-48f5-9e83-834cdd1e6e04)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 336.55 259.08 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d93eb508-09a5-426d-84ed-f23e017cb8bd) + (property "Reference" "Q20" (id 0) (at 331.47 257.8099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 331.47 260.3499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 331.47 256.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 336.55 259.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 287632ef-38f1-411f-b3ba-3a6e4914b8d5)) + (pin "2" (uuid 8503fd8c-c300-4a1e-9c6d-f30a9122c6a9)) + (pin "3" (uuid 103e24f3-921d-48cf-9c8d-80e8b2ef1fc2)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 238.76 142.24 270) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9b196a3-6e84-4357-b9ac-ff2066418d0b) + (property "Reference" "U1" (id 0) (at 241.3 142.24 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Value" "PORT" (id 1) (at 241.3 144.78 90) + (effects (font (size 0.762 0.762)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 238.76 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 238.76 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2e079b29-eb4a-4e39-a9f0-c162cceabcb6)) + (pin "2" (uuid 3ebdd427-d5a8-4ac2-98c3-9eabb7801b18)) + (pin "3" (uuid 3144ceda-0b42-4831-a112-ec2823b1072a)) + (pin "4" (uuid 5b1e546a-2909-4019-8755-c070a22403d6)) + (pin "5" (uuid 5723076c-21db-41da-9454-4ff331bdbbc6)) + (pin "6" (uuid 1f3bc5d0-3485-4736-846b-48c3a7629a43)) + (pin "7" (uuid d5a9058b-881d-40a7-8425-92c2af94ed01)) + (pin "8" (uuid 460753aa-7902-4b9a-b7f4-552e71c1657d)) + (pin "9" (uuid b10e8f4e-a146-4420-a8a7-f07cf136e862)) + (pin "10" (uuid 2eee7c49-c4d4-434d-9a80-e689b86f7d7d)) + (pin "11" (uuid 6ca5bcef-3384-4508-adde-82711db37eeb)) + (pin "12" (uuid e5f74f1c-876c-4b5b-ad71-48082af3f1da)) + (pin "13" (uuid 059b03a6-18e8-4372-bffd-bc791a72a4b7)) + (pin "14" (uuid 2806dc89-b5b6-406d-9966-1cf2a67ed50f)) + (pin "15" (uuid 78316692-a5b6-4517-b9bf-584fd664c2c5)) + (pin "16" (uuid 11ccb42b-80a0-4d37-a35a-afbd0bb56a0a)) + (pin "17" (uuid f0092048-cfcb-4f84-a5b0-66fc2a03028c)) + (pin "18" (uuid affba8b9-9031-42aa-972a-a6b1f6145eef)) + (pin "19" (uuid 989bb4ed-f141-401b-8eff-93257df21650)) + (pin "20" (uuid d6dcfd50-7e68-4ce1-9ef8-d605472fb41c)) + (pin "21" (uuid f3539671-0045-4178-a3ed-727dd7f4c6d7)) + (pin "22" (uuid 132b3f89-3b33-4955-9bfd-263e810e01e3)) + (pin "23" (uuid c8c38630-6a83-4206-8143-639da46dbb32)) + (pin "24" (uuid 17bba2b4-8582-49d8-8e99-fe229611c8ea)) + (pin "25" (uuid f99a8f7d-e510-4d8d-a910-76b6f2cf2463)) + (pin "26" (uuid e1e19b59-8510-4520-bc82-0b765fc391b0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 57.15 212.09 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da6820cd-bca4-4861-b058-05f3edbc98a5) + (property "Reference" "U1" (id 0) (at 57.785 207.01 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 57.785 209.55 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 57.15 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 57.15 212.09 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9bfa2186-5a60-48c8-9fb6-a86a5b230d63)) + (pin "2" (uuid ddf37cdc-bda0-45c6-9740-2dc44f7af0fb)) + (pin "3" (uuid a00c8547-5793-4a26-af0e-bca304435bb8)) + (pin "4" (uuid 52f2ad08-8359-473e-9d29-78bf49f94e8a)) + (pin "5" (uuid 3632f99f-47a5-4a86-81d7-0cbe4d4d72b7)) + (pin "6" (uuid f327adf1-58c1-4c13-89ac-e6040d6ecab5)) + (pin "7" (uuid 65df8cae-7eb6-4c85-9d9b-3bfbf260312e)) + (pin "8" (uuid 2b601f3f-59a8-4aed-b03e-11a01a2bfe24)) + (pin "9" (uuid 3b5beef9-eabc-44c9-8084-6d9523c651a4)) + (pin "10" (uuid 4722bfa9-247a-4b2d-8e21-125b45cc9e5a)) + (pin "11" (uuid 79c70bbb-6e28-4240-9cef-1c4b3296eb19)) + (pin "12" (uuid fd1626f5-a3a3-4670-bef7-56f40db31d86)) + (pin "13" (uuid bd2cdefd-025a-477c-926e-87e7b7d1ba8f)) + (pin "14" (uuid fcb109ec-76bb-4ee9-808c-a2ade24c0a80)) + (pin "15" (uuid e4d9b95d-495d-49fb-852b-20a5ce5cd96a)) + (pin "16" (uuid 5ff33c38-b10d-4f7f-8f41-68e790f9889e)) + (pin "17" (uuid 177e91ce-c6d9-4490-9d68-d92b99024664)) + (pin "18" (uuid cb0f3764-a046-4305-b320-c8f119e96f59)) + (pin "19" (uuid 108df5a9-4a15-401d-b1a7-16bf3fd6b39e)) + (pin "20" (uuid 43d19284-8607-441f-95d1-a687eb9d5359)) + (pin "21" (uuid ef02036a-3911-4965-8556-c401dd45c7e1)) + (pin "22" (uuid aae74bf4-d83d-4fbd-a845-7791b73594b6)) + (pin "23" (uuid 62ab9ebb-d270-49dd-9e37-42b4e90146d1)) + (pin "24" (uuid 1ee635b7-f4ea-43c1-8914-200d1202fa16)) + (pin "25" (uuid d484d744-f11b-418f-945e-5f7a86c527f2)) + (pin "26" (uuid 9c158c18-bb7e-4c41-b1ff-f0fe6a8d4adc)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 304.8 259.08 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid dd1e6ee2-33d4-4999-a857-08c712244693) + (property "Reference" "R16" (id 0) (at 299.72 255.27 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1.5k" (id 1) (at 298.45 257.81 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 305.308 257.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 303.53 257.81 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 28634e75-7c21-44e8-b3b5-76c9bd4ea06e)) + (pin "2" (uuid 928f6b0d-44e4-47e9-a05c-32692a0b4a4f)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 208.28 267.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e0a1db71-2c0d-4a44-88c4-456b3fb91b1e) + (property "Reference" "R7" (id 0) (at 209.55 265.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "20k" (id 1) (at 209.55 267.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 208.788 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 207.01 266.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid f3dac490-97a6-415a-b42a-e47212273c14)) + (pin "2" (uuid dbf498ac-cac6-4939-905c-4a688ac0521b)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 347.98 267.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e3d60430-6b8a-4324-aa81-36dffaca92e5) + (property "Reference" "R20" (id 0) (at 349.25 265.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "20k" (id 1) (at 349.25 267.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 348.488 266.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 346.71 266.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 7dd3dfa6-db06-4552-90df-f3477e579d6e)) + (pin "2" (uuid 1beb29c0-e9de-437b-87b2-9e9480dee166)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 360.68 140.97 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e6cb721b-1508-42f8-8606-1f2d9c1d9d03) + (property "Reference" "R21" (id 0) (at 361.95 138.4299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "300" (id 1) (at 361.95 140.9699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 361.188 139.7 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 359.41 139.7 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 77ff717b-b1d4-4923-ae15-88d0dc7b5c33)) + (pin "2" (uuid 48ec3408-a6b2-4d6f-ad8f-17c7217850dc)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 433.07 161.29 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ecba500a-a15b-45df-8926-5e75ef82515f) + (property "Reference" "Q33" (id 0) (at 438.15 160.0199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 438.15 162.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 438.15 158.75 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 433.07 161.29 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a97e732c-2934-439e-a07b-d0d5362ebf80)) + (pin "2" (uuid 5b64da3a-de97-437a-9cbc-33246131f9c1)) + (pin "3" (uuid 7753a4b2-b562-45f4-ae8a-1384bd047854)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 220.98 179.07 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ee5ca956-68c7-4b49-b7b8-6e107f054e72) + (property "Reference" "R8" (id 0) (at 222.25 176.5299 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "2k" (id 1) (at 222.25 179.0699 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 221.488 177.8 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 219.71 177.8 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 6b358ec0-c15c-4c2f-a43d-4d9120ac2d21)) + (pin "2" (uuid d575947d-d0b6-489f-9a61-e651b8c365ae)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 273.05 184.15 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fad0c9b8-108c-4761-a247-cee63883d9f8) + (property "Reference" "Q13" (id 0) (at 267.97 182.8799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 267.97 185.4199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 267.97 186.69 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 273.05 184.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 14de2704-7c50-4b88-8e02-c60487cd7c98)) + (pin "2" (uuid 3ee03663-869c-44ff-b7cc-76435367788b)) + (pin "3" (uuid ebab63af-fdd8-489c-bff1-a6f3925caa4f)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/273ca9ae-6c9a-48f3-a2e1-f6f695a4ac6d" + (reference "C1") (unit 1) (value "50p") (footprint "") + ) + (path "/4729ad36-a9ac-4d19-896d-81cec0792d20" + (reference "J1") (unit 1) (value "jfet_p") (footprint "") + ) + (path "/ba3868ca-dc39-4d92-a94f-609670d3d30c" + (reference "J2") (unit 1) (value "jfet_p") (footprint "") + ) + (path "/bb3dca22-6328-48df-9b62-9f8bf222eaf7" + (reference "Q1") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/96060433-a1ec-4360-81ed-bd8ee504aa05" + (reference "Q2") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/669e94d7-a38c-4c9a-b1cf-f520486be7a8" + (reference "Q3") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b55f239f-3703-4f47-85ae-e21cad4ab290" + (reference "Q4") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/3f8d9f80-0dcc-476a-943e-08993e66f021" + (reference "Q5") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/59580813-7cfd-43d9-8e1f-7ba0384e3196" + (reference "Q6") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/6959c701-a739-4415-b892-ce9c8750b6b1" + (reference "Q7") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/11bbfa09-fde9-44f4-b724-7e6583951f8c" + (reference "Q8") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/28f1024e-65c6-46b5-9c95-ca555fac1871" + (reference "Q9") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/1444bbbe-4b4d-4d0d-95b5-56bc29399551" + (reference "Q10") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/68b9b6fc-5900-451c-ae8c-ff35d051cb97" + (reference "Q11") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/260406f5-57e6-4d20-a711-e7979315176a" + (reference "Q12") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/fad0c9b8-108c-4761-a247-cee63883d9f8" + (reference "Q13") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/b1ae634e-92f1-434f-8f27-ee0cd5c6636f" + (reference "Q14") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/8436e0e7-c3de-445e-bd0a-8dda4996fd0a" + (reference "Q15") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/739b1a87-6652-440a-a3cd-4c6792595f56" + (reference "Q16") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/74c35cee-5275-4503-bd2e-d1038d30855c" + (reference "Q17") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/54d1055c-2fff-41da-9939-71efb20d2100" + (reference "Q18") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/c376b17a-908d-4236-afbf-97b0d0801793" + (reference "Q19") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/d93eb508-09a5-426d-84ed-f23e017cb8bd" + (reference "Q20") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d20716cb-6b29-44fd-a605-07ff7f941163" + (reference "Q21") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/78b4707e-6e2c-453a-a67e-39e01e17c35a" + (reference "Q22") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/99bf1cf5-484f-42dd-9790-c21763f96494" + (reference "Q23") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/b3aa39eb-2576-4f4e-a912-fb45f83f307f" + (reference "Q24") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/5bedcab4-e54f-48f7-96e6-64f84a661de1" + (reference "Q25") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/62f71db0-75d6-4834-8625-a5a49da50ae6" + (reference "Q26") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/3389982d-3091-4d51-986a-be1f22b01ae3" + (reference "Q27") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/d7245a66-78dc-44f1-89ac-a84d41949068" + (reference "Q28") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/4b243988-e7ca-4a0f-9795-347cbd22e89c" + (reference "Q29") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/3c2dba78-af5c-43e2-a56f-fe2d30c94d03" + (reference "Q30") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/9393db6b-486d-4046-bc11-eb561954708a" + (reference "Q31") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/35c7a0b4-3e7b-459b-a597-a969fbe88ec1" + (reference "Q32") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/ecba500a-a15b-45df-8926-5e75ef82515f" + (reference "Q33") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/bf7aa546-9ac7-4cb7-8c86-bef0646bfb51" + (reference "Q34") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/24e63105-75ff-476f-95c8-fbf2250eee29" + (reference "R1") (unit 1) (value "1k") (footprint "") + ) + (path "/65904abc-aa84-4e96-819f-c60470293ab6" + (reference "R2") (unit 1) (value "1.65k") (footprint "") + ) + (path "/13169d83-5512-4a8d-96fb-7d964ac0cca7" + (reference "R3") (unit 1) (value "7.5k") (footprint "") + ) + (path "/24d8b3b8-2a6b-4ff5-8993-7bc67270809d" + (reference "R4") (unit 1) (value "2k") (footprint "") + ) + (path "/c52550f5-8b7a-4029-8a70-f2f38d973f13" + (reference "R5") (unit 1) (value "500") (footprint "") + ) + (path "/55729c4d-eb0f-4266-abf4-392b01b7b9ee" + (reference "R6") (unit 1) (value "500") (footprint "") + ) + (path "/e0a1db71-2c0d-4a44-88c4-456b3fb91b1e" + (reference "R7") (unit 1) (value "20k") (footprint "") + ) + (path "/ee5ca956-68c7-4b49-b7b8-6e107f054e72" + (reference "R8") (unit 1) (value "2k") (footprint "") + ) + (path "/c398357d-5537-4f0e-b883-710b27449d17" + (reference "R9") (unit 1) (value "500") (footprint "") + ) + (path "/a83b9075-228b-4dbf-a950-f71fac5192f3" + (reference "R10") (unit 1) (value "7.5k") (footprint "") + ) + (path "/7ac7a893-7967-4b26-a3bc-7e904b323e28" + (reference "R11") (unit 1) (value "1k") (footprint "") + ) + (path "/76a697ab-d0d4-420f-bc58-6d86d544debc" + (reference "R12") (unit 1) (value "1.65k") (footprint "") + ) + (path "/5af1e8cd-7fe6-4a24-a617-9d72cc90b54a" + (reference "R13") (unit 1) (value "1k") (footprint "") + ) + (path "/ae8d4682-40c2-493e-ac27-4f9e63fec2c3" + (reference "R14") (unit 1) (value "3.3k") (footprint "") + ) + (path "/6f8b8328-47c9-4b09-8f38-99db77c40372" + (reference "R15") (unit 1) (value "39k") (footprint "") + ) + (path "/dd1e6ee2-33d4-4999-a857-08c712244693" + (reference "R16") (unit 1) (value "1.5k") (footprint "") + ) + (path "/49d4e7c1-fc9f-470a-8d06-b4d79ab6c759" + (reference "R17") (unit 1) (value "1k") (footprint "") + ) + (path "/cdd9cc80-9f11-46be-aa18-06797eaa7d1f" + (reference "R18") (unit 1) (value "3.3k") (footprint "") + ) + (path "/74453fd2-944e-4284-89c1-4f8fd70872df" + (reference "R19") (unit 1) (value "500") (footprint "") + ) + (path "/e3d60430-6b8a-4324-aa81-36dffaca92e5" + (reference "R20") (unit 1) (value "20k") (footprint "") + ) + (path "/e6cb721b-1508-42f8-8606-1f2d9c1d9d03" + (reference "R21") (unit 1) (value "300") (footprint "") + ) + (path "/0b160be4-b1dd-4922-bc2c-29eaefce9c78" + (reference "R22") (unit 1) (value "100") (footprint "") + ) + (path "/4f2b7084-d160-477a-8149-47c21bd10bdd" + (reference "R23") (unit 1) (value "50k") (footprint "") + ) + (path "/0de1081b-3b62-43c2-b12a-88d81482cb5f" + (reference "R24") (unit 1) (value "1k") (footprint "") + ) + (path "/2be4a23b-417f-41ff-ad0d-0633c5a82004" + (reference "R25") (unit 1) (value "500") (footprint "") + ) + (path "/21d2a6ea-ab60-41e6-a046-512c2e93d217" + (reference "R26") (unit 1) (value "20k") (footprint "") + ) + (path "/d45550d1-b325-43a5-ab70-1417f8df7061" + (reference "R27") (unit 1) (value "27") (footprint "") + ) + (path "/17ae3aa8-d62f-4f00-9747-3053b347b203" + (reference "R28") (unit 1) (value "30") (footprint "") + ) + (path "/b0850c46-7493-453a-b5c6-715c5c5cbbc3" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/9ce94d6a-93b3-45f2-ab2c-6e3395b8e9d1" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/da6820cd-bca4-4861-b058-05f3edbc98a5" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/ca00c67c-158f-470a-9aa5-24d86250e9c7" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/d9b196a3-6e84-4357-b9ac-ff2066418d0b" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/cb00d559-d082-4315-9b22-ad44d370542b" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/b0ccd031-097c-4072-8e4b-bc31162bfa76" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/a834bc64-5f35-4651-a009-a3986a9824db" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/uA740/uA740.sub b/library/SubcircuitLibrary/uA740/uA740.sub new file mode 100644 index 000000000..33910e4ce --- /dev/null +++ b/library/SubcircuitLibrary/uA740/uA740.sub @@ -0,0 +1,74 @@ +* Subcircuit uA740 +.subckt uA740 net-_q1-pad3_ net-_j1-pad2_ net-_j2-pad2_ net-_q13-pad1_ net-_q12-pad3_ net-_q31-pad3_ net-_q10-pad1_ unconnected-_u1-pad8_ +.title kicad schematic +.include PJF.lib +.include PNP.lib +.include NPN.lib +q20 net-_q20-pad1_ net-_q20-pad2_ net-_q13-pad1_ Q2N2222 +r20 net-_q13-pad1_ net-_q21-pad3_ 20k +q21 net-_q10-pad1_ net-_q20-pad1_ net-_q21-pad3_ Q2N2222 +q28 net-_q13-pad1_ net-_c1-pad2_ net-_q28-pad3_ Q2N2907A +q27 net-_q13-pad1_ net-_c1-pad2_ net-_q20-pad1_ Q2N2907A +r28 net-_q32-pad2_ net-_q31-pad3_ 30 +r25 net-_q32-pad3_ net-_q31-pad3_ 500 +q34 net-_q13-pad1_ net-_q28-pad3_ net-_q32-pad2_ Q2N2907A +r26 net-_q13-pad1_ net-_q20-pad2_ 20k +q26 net-_q20-pad2_ net-_q20-pad2_ net-_q13-pad1_ Q2N2907A +r23 net-_q25-pad3_ net-_q28-pad3_ 50k +q32 net-_q20-pad2_ net-_q32-pad2_ net-_q32-pad3_ Q2N2907A +r27 net-_q31-pad3_ net-_q24-pad2_ 27 +q33 net-_q10-pad1_ net-_q25-pad1_ net-_q24-pad2_ Q2N2222 +q22 net-_c1-pad2_ net-_q21-pad3_ net-_q20-pad2_ Q2N2222 +r22 net-_q13-pad1_ net-_q20-pad2_ 100 +c1 net-_c1-pad1_ net-_c1-pad2_ 50p +r21 net-_q23-pad3_ net-_q10-pad1_ 300 +r19 net-_c1-pad1_ net-_q20-pad1_ 500 +q23 net-_c1-pad2_ net-_q18-pad2_ net-_q23-pad3_ Q2N2907A +q29 net-_q25-pad1_ net-_q18-pad2_ net-_q29-pad3_ Q2N2907A +q30 net-_q25-pad1_ net-_q25-pad3_ net-_q28-pad3_ Q2N2222 +q31 net-_q25-pad1_ net-_q24-pad2_ net-_q31-pad3_ Q2N2222 +r24 net-_q29-pad3_ net-_q10-pad1_ 1k +q25 net-_q25-pad1_ net-_q25-pad1_ net-_q25-pad3_ Q2N2222 +q24 net-_q13-pad1_ net-_q24-pad2_ net-_c1-pad2_ Q2N2907A +q1 net-_j1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +r1 net-_q1-pad3_ net-_q10-pad1_ 1k +q3 net-_q10-pad1_ net-_j1-pad1_ net-_q3-pad3_ Q2N2222 +q4 net-_q4-pad1_ net-_q3-pad3_ net-_q4-pad3_ Q2N2907A +r4 net-_q4-pad3_ net-_q7-pad1_ 2k +r6 net-_q7-pad3_ net-_q10-pad1_ 500 +q7 net-_q7-pad1_ net-_q1-pad2_ net-_q7-pad3_ Q2N2907A +q8 net-_q20-pad1_ net-_q10-pad3_ net-_q8-pad3_ Q2N2907A +r10 net-_j2-pad3_ net-_q10-pad3_ 7.5k +q10 net-_q10-pad1_ net-_j2-pad1_ net-_q10-pad3_ Q2N2222 +r8 net-_q8-pad3_ net-_q7-pad1_ 2k +j2 net-_j2-pad1_ net-_j2-pad2_ net-_j2-pad3_ J2N3820 +q12 net-_j2-pad1_ net-_q1-pad2_ net-_q12-pad3_ Q2N2907A +r11 net-_q12-pad3_ net-_q10-pad1_ 1k +q2 net-_j1-pad3_ net-_q11-pad2_ net-_q2-pad3_ Q2N2222 +r3 net-_j1-pad3_ net-_q3-pad3_ 7.5k +r5 net-_q13-pad1_ net-_q5-pad3_ 500 +r2 net-_q13-pad1_ net-_q2-pad3_ 1.65k +q5 net-_q4-pad1_ net-_q5-pad2_ net-_q5-pad3_ Q2N2222 +j1 net-_j1-pad1_ net-_j1-pad2_ net-_j1-pad3_ J2N3820 +r9 net-_q13-pad1_ net-_q9-pad3_ 500 +r7 net-_q13-pad1_ net-_q5-pad2_ 20k +q9 net-_q20-pad1_ net-_q5-pad2_ net-_q9-pad3_ Q2N2222 +q16 net-_q11-pad2_ net-_q16-pad2_ net-_q13-pad1_ Q2N2222 +r16 net-_q17-pad3_ net-_q16-pad2_ 1.5k +r18 net-_q13-pad1_ net-_q17-pad3_ 3.3k +r14 net-_q13-pad1_ net-_q15-pad3_ 3.3k +q15 net-_q13-pad2_ net-_q11-pad2_ net-_q15-pad3_ Q2N2222 +q11 net-_j2-pad3_ net-_q11-pad2_ net-_q11-pad3_ Q2N2222 +r12 net-_q13-pad1_ net-_q11-pad3_ 1.65k +q6 net-_q10-pad1_ net-_q4-pad1_ net-_q5-pad2_ Q2N2222 +r17 net-_q18-pad3_ net-_q10-pad1_ 1k +q18 net-_q17-pad1_ net-_q18-pad2_ net-_q18-pad3_ Q2N2907A +r13 net-_q14-pad3_ net-_q10-pad1_ 1k +q19 net-_q13-pad1_ net-_q17-pad1_ net-_q18-pad2_ Q2N2907A +q14 net-_q13-pad2_ net-_q1-pad2_ net-_q14-pad3_ Q2N2907A +q17 net-_q17-pad1_ net-_q11-pad2_ net-_q17-pad3_ Q2N2222 +q13 net-_q13-pad1_ net-_q13-pad2_ net-_q1-pad2_ Q2N2907A +r15 net-_q11-pad2_ net-_q10-pad1_ 39k +* Control Statements + +.ends uA740 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA740/uA740_Previous_Values.xml b/library/SubcircuitLibrary/uA740/uA740_Previous_Values.xml new file mode 100644 index 000000000..784334b2b --- /dev/null +++ b/library/SubcircuitLibrary/uA740/uA740_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperessecsecsecD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\JFET\PJF.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\JFET\PJF.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.lib \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA747/NPN.lib b/library/SubcircuitLibrary/uA747/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/uA747/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/uA747/PNP.lib b/library/SubcircuitLibrary/uA747/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/uA747/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/uA747/analysis b/library/SubcircuitLibrary/uA747/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/uA747/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA747/uA747.cir b/library/SubcircuitLibrary/uA747/uA747.cir new file mode 100644 index 000000000..3a5b47ee8 --- /dev/null +++ b/library/SubcircuitLibrary/uA747/uA747.cir @@ -0,0 +1,81 @@ +.title KiCad schematic +Q8 Net-_Q1-Pad1_ Net-_Q8-Pad2_ Net-_Q6-Pad3_ eSim_NPN +Q6 Net-_Q6-Pad1_ Net-_Q10-Pad1_ Net-_Q6-Pad3_ eSim_PNP +U1 Net-_Q8-Pad2_ Net-_Q1-Pad2_ Net-_Q3-Pad3_ Net-_Q11-Pad3_ Net-_Q29-Pad3_ Net-_Q27-Pad2_ Net-_Q34-Pad2_ Net-_Q33-Pad3_ Net-_Q30-Pad1_ Net-_Q49-Pad3_ unconnected-_U1-Pad11_ Net-_Q23-Pad3_ Net-_Q12-Pad3_ Net-_Q7-Pad3_ PORT +Q5 Net-_Q1-Pad1_ Net-_Q1-Pad1_ Net-_Q12-Pad3_ eSim_PNP +Q2 Net-_Q2-Pad1_ Net-_Q10-Pad1_ Net-_Q1-Pad3_ eSim_PNP +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_NPN +Q25 Net-_Q12-Pad3_ Net-_Q17-Pad1_ Net-_Q23-Pad2_ eSim_NPN +Q17 Net-_Q17-Pad1_ Net-_Q12-Pad1_ Net-_Q12-Pad3_ eSim_PNP +Q15 Net-_C1-Pad1_ Net-_Q12-Pad1_ Net-_Q12-Pad3_ eSim_PNP +Q23 Net-_Q17-Pad1_ Net-_Q23-Pad2_ Net-_Q23-Pad3_ eSim_NPN +Q19 Net-_Q17-Pad1_ Net-_Q17-Pad1_ Net-_Q19-Pad3_ eSim_NPN +Q7 Net-_Q6-Pad1_ Net-_Q3-Pad2_ Net-_Q7-Pad3_ eSim_NPN +R4 Net-_C1-Pad2_ Net-_Q6-Pad1_ 300 +R5 Net-_Q11-Pad3_ Net-_Q10-Pad3_ 5k +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 30p +Q11 Net-_Q10-Pad2_ Net-_Q10-Pad2_ Net-_Q11-Pad3_ eSim_NPN +Q10 Net-_Q10-Pad1_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_NPN +Q13 Net-_C1-Pad2_ Net-_Q13-Pad2_ Net-_Q11-Pad3_ eSim_NPN +Q3 Net-_Q2-Pad1_ Net-_Q3-Pad2_ Net-_Q3-Pad3_ eSim_NPN +R1 Net-_Q11-Pad3_ Net-_Q3-Pad3_ 1k +R3 Net-_Q11-Pad3_ Net-_Q7-Pad3_ 1k +R2 Net-_Q11-Pad3_ Net-_Q3-Pad2_ 50k +R6 Net-_Q10-Pad2_ Net-_Q12-Pad1_ 40k +Q4 Net-_Q12-Pad3_ Net-_Q2-Pad1_ Net-_Q3-Pad2_ eSim_NPN +Q9 Net-_Q10-Pad1_ Net-_Q1-Pad1_ Net-_Q12-Pad3_ eSim_PNP +Q12 Net-_Q12-Pad1_ Net-_Q12-Pad1_ Net-_Q12-Pad3_ eSim_PNP +Q21 Net-_Q17-Pad1_ Net-_Q19-Pad3_ Net-_Q21-Pad3_ eSim_NPN +R9 Net-_Q21-Pad3_ Net-_Q19-Pad3_ 50k +R11 Net-_Q23-Pad2_ Net-_Q23-Pad3_ 27 +R12 Net-_Q23-Pad3_ Net-_Q24-Pad2_ 22 +Q26 Net-_Q11-Pad3_ Net-_Q21-Pad3_ Net-_Q24-Pad2_ eSim_PNP +Q20 Net-_Q11-Pad3_ Net-_C1-Pad1_ Net-_C1-Pad2_ eSim_PNP +Q22 Net-_Q11-Pad3_ Net-_C1-Pad1_ Net-_Q21-Pad3_ eSim_PNP +Q24 Net-_Q13-Pad2_ Net-_Q24-Pad2_ Net-_Q23-Pad3_ eSim_PNP +Q18 Net-_Q13-Pad2_ Net-_Q13-Pad2_ Net-_Q11-Pad3_ eSim_NPN +R10 Net-_Q11-Pad3_ Net-_Q13-Pad2_ 50k +R7 Net-_Q11-Pad3_ Net-_Q14-Pad3_ 50k +R8 Net-_Q11-Pad3_ Net-_Q16-Pad3_ 100 +Q14 Net-_Q12-Pad3_ Net-_C1-Pad2_ Net-_Q14-Pad3_ eSim_NPN +Q16 Net-_C1-Pad1_ Net-_Q14-Pad3_ Net-_Q16-Pad3_ eSim_NPN +R24 Net-_Q49-Pad3_ Net-_Q50-Pad2_ 22 +Q47 Net-_Q43-Pad1_ Net-_Q45-Pad3_ Net-_Q47-Pad3_ eSim_NPN +Q45 Net-_Q43-Pad1_ Net-_Q43-Pad1_ Net-_Q45-Pad3_ eSim_NPN +Q49 Net-_Q43-Pad1_ Net-_Q49-Pad2_ Net-_Q49-Pad3_ eSim_NPN +R23 Net-_Q49-Pad2_ Net-_Q49-Pad3_ 27 +Q51 Net-_Q30-Pad1_ Net-_Q43-Pad1_ Net-_Q49-Pad2_ eSim_NPN +Q31 Net-_Q27-Pad1_ Net-_Q27-Pad1_ Net-_Q30-Pad1_ eSim_PNP +Q44 Net-_Q39-Pad2_ Net-_Q39-Pad2_ Net-_Q11-Pad3_ eSim_NPN +Q46 Net-_Q11-Pad3_ Net-_C2-Pad1_ Net-_C2-Pad2_ eSim_PNP +Q48 Net-_Q11-Pad3_ Net-_C2-Pad1_ Net-_Q47-Pad3_ eSim_PNP +R22 Net-_Q11-Pad3_ Net-_Q39-Pad2_ 50k +Q50 Net-_Q39-Pad2_ Net-_Q50-Pad2_ Net-_Q49-Pad3_ eSim_PNP +Q52 Net-_Q11-Pad3_ Net-_Q47-Pad3_ Net-_Q50-Pad2_ eSim_PNP +R21 Net-_Q47-Pad3_ Net-_Q45-Pad3_ 50k +Q43 Net-_Q43-Pad1_ Net-_Q38-Pad1_ Net-_Q30-Pad1_ eSim_PNP +Q41 Net-_C2-Pad1_ Net-_Q38-Pad1_ Net-_Q30-Pad1_ eSim_PNP +Q38 Net-_Q38-Pad1_ Net-_Q38-Pad1_ Net-_Q30-Pad1_ eSim_PNP +R18 Net-_Q36-Pad2_ Net-_Q38-Pad1_ 40k +C2 Net-_C2-Pad1_ Net-_C2-Pad2_ 30p +Q35 Net-_Q28-Pad2_ Net-_Q27-Pad1_ Net-_Q30-Pad1_ eSim_PNP +R16 Net-_C2-Pad2_ Net-_Q32-Pad1_ 300 +Q36 Net-_Q28-Pad2_ Net-_Q36-Pad2_ Net-_Q36-Pad3_ eSim_NPN +R17 Net-_Q11-Pad3_ Net-_Q36-Pad3_ 5k +Q34 Net-_Q27-Pad1_ Net-_Q34-Pad2_ Net-_Q32-Pad3_ eSim_NPN +Q28 Net-_Q28-Pad1_ Net-_Q28-Pad2_ Net-_Q27-Pad3_ eSim_PNP +Q32 Net-_Q32-Pad1_ Net-_Q28-Pad2_ Net-_Q32-Pad3_ eSim_PNP +Q27 Net-_Q27-Pad1_ Net-_Q27-Pad2_ Net-_Q27-Pad3_ eSim_NPN +Q40 Net-_Q30-Pad1_ Net-_C2-Pad2_ Net-_Q40-Pad3_ eSim_NPN +Q42 Net-_C2-Pad1_ Net-_Q40-Pad3_ Net-_Q42-Pad3_ eSim_NPN +Q39 Net-_C2-Pad2_ Net-_Q39-Pad2_ Net-_Q11-Pad3_ eSim_NPN +R19 Net-_Q11-Pad3_ Net-_Q40-Pad3_ 50k +Q37 Net-_Q36-Pad2_ Net-_Q36-Pad2_ Net-_Q11-Pad3_ eSim_NPN +R20 Net-_Q11-Pad3_ Net-_Q42-Pad3_ 100 +R14 Net-_Q11-Pad3_ Net-_Q29-Pad2_ 50k +Q30 Net-_Q30-Pad1_ Net-_Q28-Pad1_ Net-_Q29-Pad2_ eSim_NPN +Q29 Net-_Q28-Pad1_ Net-_Q29-Pad2_ Net-_Q29-Pad3_ eSim_NPN +R15 Net-_Q11-Pad3_ Net-_Q33-Pad3_ 1k +Q33 Net-_Q32-Pad1_ Net-_Q29-Pad2_ Net-_Q33-Pad3_ eSim_NPN +R13 Net-_Q11-Pad3_ Net-_Q29-Pad3_ 1k +.end diff --git a/library/SubcircuitLibrary/uA747/uA747.cir.out b/library/SubcircuitLibrary/uA747/uA747.cir.out new file mode 100644 index 000000000..c7502eba9 --- /dev/null +++ b/library/SubcircuitLibrary/uA747/uA747.cir.out @@ -0,0 +1,92 @@ +.title kicad schematic + +.include PNP.lib +.include NPN.lib +q8 net-_q1-pad1_ net-_q8-pad2_ net-_q6-pad3_ Q2N2222 +q6 net-_q6-pad1_ net-_q10-pad1_ net-_q6-pad3_ Q2N2907A +* u1 net-_q8-pad2_ net-_q1-pad2_ net-_q3-pad3_ net-_q11-pad3_ net-_q29-pad3_ net-_q27-pad2_ net-_q34-pad2_ net-_q33-pad3_ net-_q30-pad1_ net-_q49-pad3_ unconnected-_u1-pad11_ net-_q23-pad3_ net-_q12-pad3_ net-_q7-pad3_ port +q5 net-_q1-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +q2 net-_q2-pad1_ net-_q10-pad1_ net-_q1-pad3_ Q2N2907A +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +q25 net-_q12-pad3_ net-_q17-pad1_ net-_q23-pad2_ Q2N2222 +q17 net-_q17-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +q15 net-_c1-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +q23 net-_q17-pad1_ net-_q23-pad2_ net-_q23-pad3_ Q2N2222 +q19 net-_q17-pad1_ net-_q17-pad1_ net-_q19-pad3_ Q2N2222 +q7 net-_q6-pad1_ net-_q3-pad2_ net-_q7-pad3_ Q2N2222 +r4 net-_c1-pad2_ net-_q6-pad1_ 300 +r5 net-_q11-pad3_ net-_q10-pad3_ 5k +c1 net-_c1-pad1_ net-_c1-pad2_ 30p +q11 net-_q10-pad2_ net-_q10-pad2_ net-_q11-pad3_ Q2N2222 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +q13 net-_c1-pad2_ net-_q13-pad2_ net-_q11-pad3_ Q2N2222 +q3 net-_q2-pad1_ net-_q3-pad2_ net-_q3-pad3_ Q2N2222 +r1 net-_q11-pad3_ net-_q3-pad3_ 1k +r3 net-_q11-pad3_ net-_q7-pad3_ 1k +r2 net-_q11-pad3_ net-_q3-pad2_ 50k +r6 net-_q10-pad2_ net-_q12-pad1_ 40k +q4 net-_q12-pad3_ net-_q2-pad1_ net-_q3-pad2_ Q2N2222 +q9 net-_q10-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +q12 net-_q12-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +q21 net-_q17-pad1_ net-_q19-pad3_ net-_q21-pad3_ Q2N2222 +r9 net-_q21-pad3_ net-_q19-pad3_ 50k +r11 net-_q23-pad2_ net-_q23-pad3_ 27 +r12 net-_q23-pad3_ net-_q24-pad2_ 22 +q26 net-_q11-pad3_ net-_q21-pad3_ net-_q24-pad2_ Q2N2907A +q20 net-_q11-pad3_ net-_c1-pad1_ net-_c1-pad2_ Q2N2907A +q22 net-_q11-pad3_ net-_c1-pad1_ net-_q21-pad3_ Q2N2907A +q24 net-_q13-pad2_ net-_q24-pad2_ net-_q23-pad3_ Q2N2907A +q18 net-_q13-pad2_ net-_q13-pad2_ net-_q11-pad3_ Q2N2222 +r10 net-_q11-pad3_ net-_q13-pad2_ 50k +r7 net-_q11-pad3_ net-_q14-pad3_ 50k +r8 net-_q11-pad3_ net-_q16-pad3_ 100 +q14 net-_q12-pad3_ net-_c1-pad2_ net-_q14-pad3_ Q2N2222 +q16 net-_c1-pad1_ net-_q14-pad3_ net-_q16-pad3_ Q2N2222 +r24 net-_q49-pad3_ net-_q50-pad2_ 22 +q47 net-_q43-pad1_ net-_q45-pad3_ net-_q47-pad3_ Q2N2222 +q45 net-_q43-pad1_ net-_q43-pad1_ net-_q45-pad3_ Q2N2222 +q49 net-_q43-pad1_ net-_q49-pad2_ net-_q49-pad3_ Q2N2222 +r23 net-_q49-pad2_ net-_q49-pad3_ 27 +q51 net-_q30-pad1_ net-_q43-pad1_ net-_q49-pad2_ Q2N2222 +q31 net-_q27-pad1_ net-_q27-pad1_ net-_q30-pad1_ Q2N2907A +q44 net-_q39-pad2_ net-_q39-pad2_ net-_q11-pad3_ Q2N2222 +q46 net-_q11-pad3_ net-_c2-pad1_ net-_c2-pad2_ Q2N2907A +q48 net-_q11-pad3_ net-_c2-pad1_ net-_q47-pad3_ Q2N2907A +r22 net-_q11-pad3_ net-_q39-pad2_ 50k +q50 net-_q39-pad2_ net-_q50-pad2_ net-_q49-pad3_ Q2N2907A +q52 net-_q11-pad3_ net-_q47-pad3_ net-_q50-pad2_ Q2N2907A +r21 net-_q47-pad3_ net-_q45-pad3_ 50k +q43 net-_q43-pad1_ net-_q38-pad1_ net-_q30-pad1_ Q2N2907A +q41 net-_c2-pad1_ net-_q38-pad1_ net-_q30-pad1_ Q2N2907A +q38 net-_q38-pad1_ net-_q38-pad1_ net-_q30-pad1_ Q2N2907A +r18 net-_q36-pad2_ net-_q38-pad1_ 40k +c2 net-_c2-pad1_ net-_c2-pad2_ 30p +q35 net-_q28-pad2_ net-_q27-pad1_ net-_q30-pad1_ Q2N2907A +r16 net-_c2-pad2_ net-_q32-pad1_ 300 +q36 net-_q28-pad2_ net-_q36-pad2_ net-_q36-pad3_ Q2N2222 +r17 net-_q11-pad3_ net-_q36-pad3_ 5k +q34 net-_q27-pad1_ net-_q34-pad2_ net-_q32-pad3_ Q2N2222 +q28 net-_q28-pad1_ net-_q28-pad2_ net-_q27-pad3_ Q2N2907A +q32 net-_q32-pad1_ net-_q28-pad2_ net-_q32-pad3_ Q2N2907A +q27 net-_q27-pad1_ net-_q27-pad2_ net-_q27-pad3_ Q2N2222 +q40 net-_q30-pad1_ net-_c2-pad2_ net-_q40-pad3_ Q2N2222 +q42 net-_c2-pad1_ net-_q40-pad3_ net-_q42-pad3_ Q2N2222 +q39 net-_c2-pad2_ net-_q39-pad2_ net-_q11-pad3_ Q2N2222 +r19 net-_q11-pad3_ net-_q40-pad3_ 50k +q37 net-_q36-pad2_ net-_q36-pad2_ net-_q11-pad3_ Q2N2222 +r20 net-_q11-pad3_ net-_q42-pad3_ 100 +r14 net-_q11-pad3_ net-_q29-pad2_ 50k +q30 net-_q30-pad1_ net-_q28-pad1_ net-_q29-pad2_ Q2N2222 +q29 net-_q28-pad1_ net-_q29-pad2_ net-_q29-pad3_ Q2N2222 +r15 net-_q11-pad3_ net-_q33-pad3_ 1k +q33 net-_q32-pad1_ net-_q29-pad2_ net-_q33-pad3_ Q2N2222 +r13 net-_q11-pad3_ net-_q29-pad3_ 1k +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/uA747/uA747.kicad_sch b/library/SubcircuitLibrary/uA747/uA747.kicad_sch new file mode 100644 index 000000000..6c2405ca2 --- /dev/null +++ b/library/SubcircuitLibrary/uA747/uA747.kicad_sch @@ -0,0 +1,4373 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 49572639-ebc7-4252-b424-adf3686ab1b5) + + (paper "A1") + + (lib_symbols + (symbol "eSim_Devices:capacitor" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "capacitor" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "C_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "capacitor_0_1" + (polyline + (pts + (xy -2.032 -0.762) + (xy 2.032 -0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.032 0.762) + (xy 2.032 0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "capacitor_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.016 1.016)))) + (number "1" (effects (font (size 1.016 1.016)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.016 1.016)))) + (number "2" (effects (font (size 1.016 1.016)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_NPN" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_NPN" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_NPN_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_NPN_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_PNP" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_PNP" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_PNP_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.286 -1.778) + (xy 1.778 -2.286) + (xy 1.27 -1.27) + (xy 2.286 -1.778) + (xy 2.286 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_PNP_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:resistor" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 1.27 3.302 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "resistor" (id 1) (at 1.27 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 1.27 -0.508 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 1.27 1.27 90) + (effects (font (size 0.762 0.762))) + ) + (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "resistor_0_1" + (rectangle (start 3.81 0.254) (end -1.27 2.286) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "resistor_1_1" + (pin passive line (at -2.54 1.27 0) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "1" (effects (font (size 1.524 1.524)))) + ) + (pin passive line (at 5.08 1.27 180) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "2" (effects (font (size 1.524 1.524)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 656.59 229.87) (diameter 0) (color 0 0 0 0) + (uuid 015fe04c-d63d-4f19-a764-1ca37e1ad1b4) + ) + (junction (at 466.09 407.67) (diameter 0) (color 0 0 0 0) + (uuid 02dd5427-dc83-4594-9ea2-1aadfe8a6829) + ) + (junction (at 144.78 204.47) (diameter 0) (color 0 0 0 0) + (uuid 044e3d81-4dcb-41c3-95ea-91f26cb296dc) + ) + (junction (at 707.39 298.45) (diameter 0) (color 0 0 0 0) + (uuid 0572e609-fa70-467f-bb9c-eddc87bf4ea1) + ) + (junction (at 119.38 407.67) (diameter 0) (color 0 0 0 0) + (uuid 093f73a1-e212-4eaf-9fd5-02cfea1d465f) + ) + (junction (at 656.59 255.27) (diameter 0) (color 0 0 0 0) + (uuid 0bd0c82c-ebaf-48d8-9c12-12d978019a03) + ) + (junction (at 195.58 347.98) (diameter 0) (color 0 0 0 0) + (uuid 0e1ac861-c6f3-4478-9d68-7aa834c43124) + ) + (junction (at 106.68 273.05) (diameter 0) (color 0 0 0 0) + (uuid 0f129d55-ebdd-41db-a859-4ed1fb9c9931) + ) + (junction (at 144.78 407.67) (diameter 0) (color 0 0 0 0) + (uuid 11818606-883e-4b02-ac27-30b1ad4dd0ce) + ) + (junction (at 466.09 204.47) (diameter 0) (color 0 0 0 0) + (uuid 15a3f6cf-42c0-4adc-9f77-9bd0142cc281) + ) + (junction (at 707.39 247.65) (diameter 0) (color 0 0 0 0) + (uuid 17e8ed31-96fc-4c98-97b3-1d94d256b2b1) + ) + (junction (at 656.59 293.37) (diameter 0) (color 0 0 0 0) + (uuid 18c6aa55-c574-4e3c-a565-d56bd9d84f12) + ) + (junction (at 347.98 407.67) (diameter 0) (color 0 0 0 0) + (uuid 190c556b-a95e-4efc-8438-e7049d1f2b17) + ) + (junction (at 618.49 374.65) (diameter 0) (color 0 0 0 0) + (uuid 19c79260-e892-42d3-ba27-c496c06785cc) + ) + (junction (at 636.27 336.55) (diameter 0) (color 0 0 0 0) + (uuid 1bf4d4a0-48f2-40dd-b554-18cfca4cf297) + ) + (junction (at 266.7 374.65) (diameter 0) (color 0 0 0 0) + (uuid 1e96bf7c-2472-4438-af79-6d7b32134081) + ) + (junction (at 554.99 347.98) (diameter 0) (color 0 0 0 0) + (uuid 1eb047a6-238d-48df-aded-20f93faba392) + ) + (junction (at 195.58 407.67) (diameter 0) (color 0 0 0 0) + (uuid 2583dc2e-b9af-4dd8-a8cb-c1a41cc88851) + ) + (junction (at 93.98 361.95) (diameter 0) (color 0 0 0 0) + (uuid 270ca4d6-ec17-48ca-abb9-8f8454c47402) + ) + (junction (at 347.98 298.45) (diameter 0) (color 0 0 0 0) + (uuid 276cea41-dc1d-44d1-a491-a15cbd82e2d1) + ) + (junction (at 276.86 336.55) (diameter 0) (color 0 0 0 0) + (uuid 2c99c4eb-c015-46ee-a391-a35b4f96744b) + ) + (junction (at 707.39 267.97) (diameter 0) (color 0 0 0 0) + (uuid 303800dc-6ef2-42a0-ba6f-c18c90ae5f87) + ) + (junction (at 529.59 234.95) (diameter 0) (color 0 0 0 0) + (uuid 32bf3daa-84e7-44df-beed-c81a684a5fc5) + ) + (junction (at 144.78 293.37) (diameter 0) (color 0 0 0 0) + (uuid 3327ac1a-aa61-4dbf-8af7-be0af77589dd) + ) + (junction (at 233.68 267.97) (diameter 0) (color 0 0 0 0) + (uuid 346e6917-2221-416e-a97a-019a961c1bd2) + ) + (junction (at 554.99 407.67) (diameter 0) (color 0 0 0 0) + (uuid 356863b8-fb36-4149-9d0b-2c63304159c4) + ) + (junction (at 347.98 204.47) (diameter 0) (color 0 0 0 0) + (uuid 3ef58b44-a3f8-46b7-bea2-86b392b85c32) + ) + (junction (at 593.09 407.67) (diameter 0) (color 0 0 0 0) + (uuid 4161716a-4e1d-44d3-a8c1-50122149c07f) + ) + (junction (at 656.59 311.15) (diameter 0) (color 0 0 0 0) + (uuid 430fedea-3cc0-4fd0-85ba-22c884e4c124) + ) + (junction (at 259.08 374.65) (diameter 0) (color 0 0 0 0) + (uuid 45dac058-2cde-4c13-a040-49b390a6cd96) + ) + (junction (at 220.98 407.67) (diameter 0) (color 0 0 0 0) + (uuid 4613a54a-4baa-451d-b9a9-1d0b26e235c6) + ) + (junction (at 516.89 374.65) (diameter 0) (color 0 0 0 0) + (uuid 463eda09-f45c-4fc6-a096-960f09ccbf5f) + ) + (junction (at 119.38 222.25) (diameter 0) (color 0 0 0 0) + (uuid 49d70fa8-b39f-4dc9-b182-8018a3ca4b96) + ) + (junction (at 259.08 407.67) (diameter 0) (color 0 0 0 0) + (uuid 4a82cdaf-2351-4a90-8419-6d19b5e1807c) + ) + (junction (at 453.39 361.95) (diameter 0) (color 0 0 0 0) + (uuid 5216206d-1567-4c41-98f4-ce6666017050) + ) + (junction (at 605.79 204.47) (diameter 0) (color 0 0 0 0) + (uuid 52b41d01-add0-4128-ad4a-fae957520490) + ) + (junction (at 233.68 336.55) (diameter 0) (color 0 0 0 0) + (uuid 53878cf9-1682-4c0c-b38d-21eae5952660) + ) + (junction (at 440.69 375.92) (diameter 0) (color 0 0 0 0) + (uuid 54f7b3d2-515d-41c0-950b-efffd98d9ae3) + ) + (junction (at 170.18 407.67) (diameter 0) (color 0 0 0 0) + (uuid 559ea18d-554a-4471-b1a7-dc1106731ec1) + ) + (junction (at 322.58 374.65) (diameter 0) (color 0 0 0 0) + (uuid 57d993d8-1a93-416e-8630-957bb308821f) + ) + (junction (at 347.98 247.65) (diameter 0) (color 0 0 0 0) + (uuid 5caef899-74e0-462f-987e-f05bb4f65e3c) + ) + (junction (at 119.38 242.57) (diameter 0) (color 0 0 0 0) + (uuid 5d610b19-b78c-4ba4-b124-c7c564c45c89) + ) + (junction (at 271.78 273.05) (diameter 0) (color 0 0 0 0) + (uuid 5f655934-db99-4cdf-bb1e-403afafa6c96) + ) + (junction (at 220.98 361.95) (diameter 0) (color 0 0 0 0) + (uuid 6027b182-a445-46ff-bcb6-642f77401f46) + ) + (junction (at 466.09 273.05) (diameter 0) (color 0 0 0 0) + (uuid 62ef7831-fca1-4391-8aab-31cc808ddd4c) + ) + (junction (at 297.18 311.15) (diameter 0) (color 0 0 0 0) + (uuid 638ede52-90b4-4566-aed2-17b41bba78f6) + ) + (junction (at 681.99 229.87) (diameter 0) (color 0 0 0 0) + (uuid 6479edee-cb15-4d16-8859-81070b83f0e7) + ) + (junction (at 246.38 204.47) (diameter 0) (color 0 0 0 0) + (uuid 68167dd8-1d44-4673-8922-5da5b1ac9827) + ) + (junction (at 106.68 204.47) (diameter 0) (color 0 0 0 0) + (uuid 6925932c-cc7e-4d15-95a2-4da214d8fe8d) + ) + (junction (at 478.79 347.98) (diameter 0) (color 0 0 0 0) + (uuid 6a62897f-1577-49eb-b975-6f7461c23bb0) + ) + (junction (at 504.19 204.47) (diameter 0) (color 0 0 0 0) + (uuid 6c18bea3-757d-4ea2-9f72-9ee06e41785f) + ) + (junction (at 707.39 274.32) (diameter 0) (color 0 0 0 0) + (uuid 6dfb3d99-8588-4d9b-a0a3-19a1a7e36700) + ) + (junction (at 618.49 407.67) (diameter 0) (color 0 0 0 0) + (uuid 6ed28646-3b6d-4207-8137-a3663f024bfe) + ) + (junction (at 681.99 267.97) (diameter 0) (color 0 0 0 0) + (uuid 71402d61-8a44-4efc-a4f5-3ed6acf2edc4) + ) + (junction (at 593.09 336.55) (diameter 0) (color 0 0 0 0) + (uuid 72b3d051-99c5-44da-95f5-f39455703618) + ) + (junction (at 297.18 255.27) (diameter 0) (color 0 0 0 0) + (uuid 74646ae0-e434-44ef-877c-f0794e414566) + ) + (junction (at 656.59 242.57) (diameter 0) (color 0 0 0 0) + (uuid 7647317b-df7a-4ff7-9d0a-b5883e3bfd23) + ) + (junction (at 580.39 204.47) (diameter 0) (color 0 0 0 0) + (uuid 78eee0bd-7623-4e1e-afa5-81eda4e7bc89) + ) + (junction (at 504.19 407.67) (diameter 0) (color 0 0 0 0) + (uuid 79ada150-3e0e-4153-af80-0a4847144932) + ) + (junction (at 195.58 222.25) (diameter 0) (color 0 0 0 0) + (uuid 7dc7073a-17d6-4233-864c-fb4dd8987051) + ) + (junction (at 347.98 274.32) (diameter 0) (color 0 0 0 0) + (uuid 7fb674db-1677-4d86-bb95-9829df1aa963) + ) + (junction (at 585.47 222.25) (diameter 0) (color 0 0 0 0) + (uuid 828fd25b-a3a4-4af0-b817-942f2f978073) + ) + (junction (at 106.68 361.95) (diameter 0) (color 0 0 0 0) + (uuid 854c2b51-f099-49c6-ac07-5a61c05612e7) + ) + (junction (at 681.99 374.65) (diameter 0) (color 0 0 0 0) + (uuid 8668ac3b-6ebb-4fb0-bba4-6b2bd8461dab) + ) + (junction (at 233.68 407.67) (diameter 0) (color 0 0 0 0) + (uuid 8896389e-28ff-4ce7-96fa-50e0deec4734) + ) + (junction (at 605.79 217.17) (diameter 0) (color 0 0 0 0) + (uuid 89c9210a-96ab-464b-a0f3-2e58c174f744) + ) + (junction (at 504.19 293.37) (diameter 0) (color 0 0 0 0) + (uuid 8bb83844-ef57-4d18-a93c-5912922aae22) + ) + (junction (at 580.39 407.67) (diameter 0) (color 0 0 0 0) + (uuid 8c57e9f0-7155-4c6a-be86-95d79265c14b) + ) + (junction (at 529.59 407.67) (diameter 0) (color 0 0 0 0) + (uuid 8df779a7-112e-490e-95fc-9c4820cec4b7) + ) + (junction (at 182.88 347.98) (diameter 0) (color 0 0 0 0) + (uuid 92654675-2be0-42e4-9945-5d7603bb04bc) + ) + (junction (at 297.18 293.37) (diameter 0) (color 0 0 0 0) + (uuid 9816e581-b20f-43c5-b714-a5bcfbfeb090) + ) + (junction (at 478.79 407.67) (diameter 0) (color 0 0 0 0) + (uuid 989b6c52-f1ce-479b-aaeb-b3cd726e817a) + ) + (junction (at 297.18 229.87) (diameter 0) (color 0 0 0 0) + (uuid 98b95bc7-7529-49aa-b6aa-a846151fc9da) + ) + (junction (at 626.11 374.65) (diameter 0) (color 0 0 0 0) + (uuid 9ba415f2-9624-45c3-8268-0d099d02697f) + ) + (junction (at 478.79 242.57) (diameter 0) (color 0 0 0 0) + (uuid a03c491f-1dd8-4234-948a-a0b05e2ca93b) + ) + (junction (at 170.18 356.87) (diameter 0) (color 0 0 0 0) + (uuid a2c03da1-bfce-4f9c-9518-051225b374ff) + ) + (junction (at 157.48 374.65) (diameter 0) (color 0 0 0 0) + (uuid a47ea1d2-e2de-4891-9584-4198d6a7c6b4) + ) + (junction (at 554.99 222.25) (diameter 0) (color 0 0 0 0) + (uuid a94827ce-f0cc-450f-a0f4-c0bf6b17ab71) + ) + (junction (at 106.68 242.57) (diameter 0) (color 0 0 0 0) + (uuid ad50ee32-ad9d-498b-9c0c-1d4980263267) + ) + (junction (at 565.15 347.98) (diameter 0) (color 0 0 0 0) + (uuid adea308f-f883-43ed-a552-da52684ad5b1) + ) + (junction (at 681.99 407.67) (diameter 0) (color 0 0 0 0) + (uuid ae59c8a2-570d-4697-909f-b077b26d8d03) + ) + (junction (at 106.68 407.67) (diameter 0) (color 0 0 0 0) + (uuid aeac26de-e0b2-451e-a731-3abaf56f21b3) + ) + (junction (at 529.59 356.87) (diameter 0) (color 0 0 0 0) + (uuid af927529-131a-47a1-8bfb-e13bb5c27dbb) + ) + (junction (at 440.69 407.67) (diameter 0) (color 0 0 0 0) + (uuid b24a4cb9-a9ff-4722-b4ca-e3e967380489) + ) + (junction (at 170.18 204.47) (diameter 0) (color 0 0 0 0) + (uuid b2c9a781-d8b3-4e9b-b64d-4766118f2896) + ) + (junction (at 478.79 375.92) (diameter 0) (color 0 0 0 0) + (uuid b5171480-9407-404e-a3d3-59f5aa8da269) + ) + (junction (at 466.09 361.95) (diameter 0) (color 0 0 0 0) + (uuid b6853cf6-645c-4aa7-8230-7196865705be) + ) + (junction (at 322.58 407.67) (diameter 0) (color 0 0 0 0) + (uuid ba787fbf-5a86-405e-b67b-b8f4068bf707) + ) + (junction (at 297.18 242.57) (diameter 0) (color 0 0 0 0) + (uuid bba29455-d7ed-45a4-8899-e16c84b8f2ae) + ) + (junction (at 631.19 273.05) (diameter 0) (color 0 0 0 0) + (uuid bbadbf5c-9fdc-4682-a83a-2e05b53c1fe3) + ) + (junction (at 440.69 349.25) (diameter 0) (color 0 0 0 0) + (uuid bbfce182-e3e3-4edd-a61d-8e1d66c9cd2e) + ) + (junction (at 656.59 407.67) (diameter 0) (color 0 0 0 0) + (uuid bf995c0e-9619-4693-b334-4b288747e188) + ) + (junction (at 542.29 347.98) (diameter 0) (color 0 0 0 0) + (uuid cde364f5-2169-43af-bf18-04be76f0c08b) + ) + (junction (at 322.58 267.97) (diameter 0) (color 0 0 0 0) + (uuid cf21f034-4ae6-4f9b-b239-743361cd1145) + ) + (junction (at 453.39 204.47) (diameter 0) (color 0 0 0 0) + (uuid cfcd6555-06a1-4e3a-8a2b-211bf077e54b) + ) + (junction (at 226.06 222.25) (diameter 0) (color 0 0 0 0) + (uuid d3801689-1d75-408e-bb88-f8389c2e7510) + ) + (junction (at 347.98 267.97) (diameter 0) (color 0 0 0 0) + (uuid d4c627c6-d8f2-402f-ad20-fb4e84f32f42) + ) + (junction (at 81.28 349.25) (diameter 0) (color 0 0 0 0) + (uuid d73c9f1c-f00f-4277-8368-64bc9f3cd8cd) + ) + (junction (at 478.79 222.25) (diameter 0) (color 0 0 0 0) + (uuid d8ef3c8d-5bb2-435c-bf39-e34b65e57c20) + ) + (junction (at 170.18 234.95) (diameter 0) (color 0 0 0 0) + (uuid db712178-3e5c-4b87-bcff-709594bd775b) + ) + (junction (at 580.39 361.95) (diameter 0) (color 0 0 0 0) + (uuid dc07e479-237b-4744-b18b-d53e32a798ad) + ) + (junction (at 205.74 347.98) (diameter 0) (color 0 0 0 0) + (uuid dc954679-a2bd-471f-ac87-899eb0ef68da) + ) + (junction (at 322.58 229.87) (diameter 0) (color 0 0 0 0) + (uuid dcf5aed1-16b4-4d10-831d-c583a254a635) + ) + (junction (at 119.38 347.98) (diameter 0) (color 0 0 0 0) + (uuid dfbf9934-4984-4fcc-a3cf-a0c25ccd90d4) + ) + (junction (at 529.59 204.47) (diameter 0) (color 0 0 0 0) + (uuid e0552f9f-d01b-4f0c-81c0-6bed7ec6da21) + ) + (junction (at 119.38 375.92) (diameter 0) (color 0 0 0 0) + (uuid e1580159-0616-4718-ab9f-dc4a418fc2d4) + ) + (junction (at 246.38 217.17) (diameter 0) (color 0 0 0 0) + (uuid e5760a85-e715-4763-973b-365e860d1fda) + ) + (junction (at 593.09 267.97) (diameter 0) (color 0 0 0 0) + (uuid e808ca82-9702-43b2-bddf-ff9c692d21ad) + ) + (junction (at 220.98 204.47) (diameter 0) (color 0 0 0 0) + (uuid eacdcef3-a16d-498c-a9fe-aadd582993d7) + ) + (junction (at 297.18 407.67) (diameter 0) (color 0 0 0 0) + (uuid eca563de-415a-4750-82f6-80798db622ae) + ) + (junction (at 297.18 341.63) (diameter 0) (color 0 0 0 0) + (uuid ed30d3e5-0b77-4535-b47c-3bf845cc9fbf) + ) + (junction (at 656.59 341.63) (diameter 0) (color 0 0 0 0) + (uuid f349e154-d4de-4b24-bfc8-3da4b0f6225f) + ) + (junction (at 466.09 242.57) (diameter 0) (color 0 0 0 0) + (uuid f4a84398-e3e3-45a0-a35b-33432c82390a) + ) + (junction (at 422.91 407.67) (diameter 0) (color 0 0 0 0) + (uuid f6056b95-bf69-44b8-9934-99815e4307c4) + ) + (junction (at 81.28 375.92) (diameter 0) (color 0 0 0 0) + (uuid ff9c3dee-89dc-47b9-b686-771eba5d64af) + ) + + (no_connect (at 68.58 194.31) (uuid 06d8f420-6cae-4e9f-8c1a-cb72fe72ea01)) + + (wire (pts (xy 478.79 252.73) (xy 478.79 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0085a236-4c9d-47c8-bce2-1204581bbe18) + ) + (wire (pts (xy 466.09 204.47) (xy 466.09 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 015f46e1-116e-40e6-a405-b6f708eec0f1) + ) + (wire (pts (xy 322.58 389.89) (xy 322.58 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0169b86a-d932-4656-a271-b0350f0690dc) + ) + (wire (pts (xy 220.98 361.95) (xy 220.98 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01c47d88-8943-4d70-94cc-2b5247d2196e) + ) + (wire (pts (xy 504.19 227.33) (xy 504.19 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 042ef851-f413-49b4-8e48-b5426d6cbe46) + ) + (wire (pts (xy 618.49 374.65) (xy 618.49 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04b1cc66-3a5e-4e39-be60-5cf3baadefcd) + ) + (wire (pts (xy 440.69 367.03) (xy 440.69 375.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05aa66f1-a27f-40ff-b499-40edb204da1d) + ) + (wire (pts (xy 93.98 354.33) (xy 93.98 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05ab1e06-4ac9-49ce-aee3-cb4ca60a770f) + ) + (wire (pts (xy 119.38 252.73) (xy 119.38 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07c56f02-f297-495a-898f-f2b2878949ad) + ) + (wire (pts (xy 453.39 344.17) (xy 453.39 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08e4ea17-2917-44be-9c31-373dd8f1fad7) + ) + (wire (pts (xy 106.68 204.47) (xy 106.68 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08f3b2d8-e2e9-4570-9c3c-4e91598c2a10) + ) + (wire (pts (xy 347.98 316.23) (xy 347.98 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0950df1e-4da8-4465-a1c0-6bd9ffba1f4b) + ) + (wire (pts (xy 529.59 379.73) (xy 529.59 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 097fba31-8de3-4c31-bb8a-15182a03d227) + ) + (wire (pts (xy 681.99 229.87) (xy 699.77 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a24b15e-62a0-47c4-8072-b75ae380ea0b) + ) + (wire (pts (xy 322.58 374.65) (xy 322.58 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0abafa29-99e2-43c5-8b2c-441d2ee9575e) + ) + (wire (pts (xy 106.68 204.47) (xy 144.78 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0adefc8f-1fe1-4099-94b5-5bc3cd7e7646) + ) + (wire (pts (xy 347.98 407.67) (xy 422.91 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b537e48-49c4-4dc5-9d59-0078129da8fc) + ) + (wire (pts (xy 593.09 227.33) (xy 593.09 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b7460d2-b25d-407b-8ccf-46f14baf09d0) + ) + (wire (pts (xy 106.68 389.89) (xy 106.68 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c074950-a974-4153-a99e-be860a96f370) + ) + (wire (pts (xy 554.99 234.95) (xy 529.59 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0d69c3bc-28f6-4861-aa46-15f72525f577) + ) + (wire (pts (xy 182.88 303.53) (xy 182.88 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e80e765-e1b3-49fc-a78c-41f946782714) + ) + (wire (pts (xy 195.58 347.98) (xy 205.74 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e86378a-0f8b-41c0-aea5-d48fbdc03701) + ) + (wire (pts (xy 554.99 347.98) (xy 554.99 369.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ecf5611-33d0-4b11-b42b-25fa2a29bece) + ) + (wire (pts (xy 618.49 407.67) (xy 656.59 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11483a1f-2576-46f9-b2e0-d9a9f61e800e) + ) + (wire (pts (xy 453.39 361.95) (xy 466.09 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1169a99d-4ca2-4ad0-92a8-ca677460f535) + ) + (wire (pts (xy 106.68 361.95) (xy 106.68 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 11907008-342e-457d-8f28-ea4b994f2e30) + ) + (wire (pts (xy 144.78 379.73) (xy 144.78 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1228a7bb-d841-485c-9822-d409f49ee2ef) + ) + (wire (pts (xy 88.9 361.95) (xy 93.98 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12a8d0dc-60cb-4998-97c3-f96f9e977419) + ) + (wire (pts (xy 656.59 242.57) (xy 656.59 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 12ce5ffb-5d5a-41b8-a621-af6c68b56717) + ) + (wire (pts (xy 81.28 278.13) (xy 81.28 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13421957-9b9c-4958-a9a3-28499b4e7b3b) + ) + (wire (pts (xy 170.18 204.47) (xy 220.98 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1509f210-d4a8-49ac-bf30-07bf228a6f55) + ) + (wire (pts (xy 478.79 375.92) (xy 478.79 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15bc285e-8628-4c58-97d3-5d6a502faf46) + ) + (wire (pts (xy 127 247.65) (xy 132.08 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 15ccb5b8-97f0-4b51-8110-aa99bdf27c94) + ) + (wire (pts (xy 233.68 227.33) (xy 233.68 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 162ffc5e-d19a-431f-88d2-df0506e32d54) + ) + (wire (pts (xy 246.38 227.33) (xy 246.38 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16b695f2-36c8-478e-a7d1-7be3f503cbb3) + ) + (wire (pts (xy 631.19 255.27) (xy 656.59 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 179ace65-5012-4c23-a919-0b963c7d0241) + ) + (wire (pts (xy 681.99 267.97) (xy 707.39 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17a60454-b9cf-42fa-b65a-1827fbf60c4d) + ) + (wire (pts (xy 408.94 204.47) (xy 453.39 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1935a01f-8e32-460e-b442-c8567b8c15d0) + ) + (wire (pts (xy 554.99 347.98) (xy 565.15 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19f19f31-9371-40a2-b17d-4c17ccba3000) + ) + (wire (pts (xy 233.68 217.17) (xy 246.38 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1aa7c297-d2e6-4bd6-95ae-4dc79a2106ed) + ) + (wire (pts (xy 542.29 347.98) (xy 554.99 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ae28bea-e7dd-46e1-a1b6-d06d43e773cd) + ) + (wire (pts (xy 170.18 250.19) (xy 170.18 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b206953-0d43-48d6-8beb-ca2a4fab949a) + ) + (wire (pts (xy 93.98 361.95) (xy 106.68 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cbe1c4e-a58f-466c-865b-4b5715205ab5) + ) + (wire (pts (xy 347.98 288.29) (xy 347.98 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cf6301c-fb99-4c7a-bd4c-4cdc72cdc5f7) + ) + (wire (pts (xy 135.89 347.98) (xy 182.88 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1cff017a-4125-4387-af6e-35f0fbc95995) + ) + (wire (pts (xy 297.18 229.87) (xy 297.18 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d239e8e-bd95-458b-8423-3dc62534c055) + ) + (wire (pts (xy 106.68 227.33) (xy 106.68 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dbfc621-59cf-4aab-8e68-950428b0f3ca) + ) + (wire (pts (xy 478.79 347.98) (xy 487.68 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e54b53e-f42c-426d-956f-6044c74beb50) + ) + (wire (pts (xy 106.68 242.57) (xy 119.38 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fafee06-d6cd-41a5-9e0e-22c72a3277a3) + ) + (wire (pts (xy 132.08 247.65) (xy 132.08 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fb387fe-9288-42c9-b9f2-72f451dd411f) + ) + (wire (pts (xy 440.69 407.67) (xy 466.09 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 206e097c-e240-480f-b5dd-86394e5da840) + ) + (wire (pts (xy 119.38 375.92) (xy 127 375.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20dbea1a-231e-4baf-8b92-99c8d2fc50e5) + ) + (wire (pts (xy 516.89 356.87) (xy 529.59 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20eeb988-0ceb-49c0-baae-abdb9121fa20) + ) + (wire (pts (xy 529.59 234.95) (xy 529.59 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20ef799e-e691-45a0-88d1-43697b608bb8) + ) + (wire (pts (xy 132.08 260.35) (xy 55.88 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21d70d2f-b970-4b2b-a6dc-808508ecb405) + ) + (wire (pts (xy 656.59 229.87) (xy 656.59 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22a1b47a-18a3-4f39-9900-91d0a721a0bf) + ) + (wire (pts (xy 516.89 374.65) (xy 521.97 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22add0b2-1934-4b40-9819-fa9d3f337a65) + ) + (wire (pts (xy 631.19 273.05) (xy 648.97 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 240ebd2c-9e9a-44ff-b4e3-7f5f4b912108) + ) + (wire (pts (xy 631.19 273.05) (xy 631.19 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24857e99-a2a4-411c-8efd-abdbbb5b6580) + ) + (wire (pts (xy 347.98 298.45) (xy 330.2 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24bef6f8-2d9c-4ed3-98f5-28d1cb3fe4bc) + ) + (wire (pts (xy 220.98 204.47) (xy 246.38 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 250e6342-dd55-400d-b622-1ae0d34d747d) + ) + (wire (pts (xy 170.18 379.73) (xy 170.18 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25481f80-b23d-41b9-b28d-a00cccae2c19) + ) + (wire (pts (xy 681.99 374.65) (xy 681.99 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 263fea6c-98bf-4c8a-a026-b80edb4b6472) + ) + (wire (pts (xy 271.78 255.27) (xy 297.18 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27540a25-497c-4d78-8623-de96d46d893e) + ) + (wire (pts (xy 466.09 361.95) (xy 466.09 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 281f37e3-2279-4946-803d-a2384f669805) + ) + (wire (pts (xy 144.78 204.47) (xy 144.78 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28b9af70-e555-4cec-bc66-ea7b563350bd) + ) + (wire (pts (xy 233.68 336.55) (xy 233.68 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28fcf72f-6484-42ce-8ced-0f2546de5fbf) + ) + (wire (pts (xy 681.99 252.73) (xy 681.99 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29c35358-3a3d-4f44-a030-c406736f88c4) + ) + (wire (pts (xy 288.29 293.37) (xy 297.18 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b8d954d-081f-40be-9b62-a768ddde1c35) + ) + (wire (pts (xy 220.98 407.67) (xy 233.68 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c67cc5a-cb8d-40a4-add8-1ca9f74e3958) + ) + (wire (pts (xy 233.68 367.03) (xy 233.68 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d579185-0b58-4e98-9255-5e4d26bec42b) + ) + (wire (pts (xy 580.39 353.06) (xy 580.39 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2de54357-ea93-46ee-8ec2-eeb57a55c6ad) + ) + (wire (pts (xy 297.18 255.27) (xy 297.18 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e96a166-e113-4dc1-b128-7a434437c968) + ) + (wire (pts (xy 707.39 274.32) (xy 717.55 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30736e0a-b989-4b05-a1d2-dc7bc011d557) + ) + (wire (pts (xy 554.99 222.25) (xy 585.47 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 317ba883-5328-4f1c-8761-1b76d30707fc) + ) + (wire (pts (xy 220.98 353.06) (xy 220.98 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 327785be-c45d-4a4b-a688-0c37fb825470) + ) + (wire (pts (xy 297.18 278.13) (xy 297.18 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 327a98af-4652-4840-8943-bd4f2eb0ff87) + ) + (wire (pts (xy 504.19 379.73) (xy 504.19 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 32b53384-5e34-46f9-b98a-c1024bbc915f) + ) + (wire (pts (xy 707.39 298.45) (xy 707.39 306.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3369905c-0e1a-4163-84fb-4eaf4c1b49cb) + ) + (wire (pts (xy 593.09 267.97) (xy 593.09 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33efe074-2c10-43f8-bb05-0567a7b27d4c) + ) + (wire (pts (xy 529.59 227.33) (xy 529.59 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 357a6eb0-d446-4d18-8611-734a69248da3) + ) + (wire (pts (xy 271.78 265.43) (xy 271.78 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36d5f7c7-4c9a-469e-b736-124b52dfa8fa) + ) + (wire (pts (xy 246.38 229.87) (xy 297.18 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38f30b7e-a727-4cfb-bb66-887ec848ef84) + ) + (wire (pts (xy 440.69 349.25) (xy 445.77 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 394e083b-d846-45e0-bc78-cd1fd7fb4247) + ) + (wire (pts (xy 233.68 336.55) (xy 276.86 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3abc9915-373a-4cdb-9429-748bc620bd14) + ) + (wire (pts (xy 322.58 267.97) (xy 322.58 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b780461-9d1a-4d9d-af8a-4596423a7394) + ) + (wire (pts (xy 119.38 278.13) (xy 119.38 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d3e985e-2883-4ab3-8737-6b982488d4a8) + ) + (wire (pts (xy 554.99 379.73) (xy 554.99 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d640c22-c8af-4772-9705-cc3ad37432cb) + ) + (wire (pts (xy 233.68 407.67) (xy 259.08 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e0dd59e-73f4-4d0d-b1c2-bce8e97efee3) + ) + (wire (pts (xy 119.38 367.03) (xy 119.38 375.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e74728b-05ff-44ab-a55d-f56c5777cd82) + ) + (wire (pts (xy 415.29 247.65) (xy 433.07 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ee1fa6c-d7ac-4210-86ca-38e50128b89a) + ) + (wire (pts (xy 233.68 267.97) (xy 233.68 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f9df782-7466-412b-a564-be17a6416d65) + ) + (wire (pts (xy 266.7 374.65) (xy 266.7 387.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42799875-1c49-4668-9963-012dbcfb9a04) + ) + (wire (pts (xy 580.39 389.89) (xy 580.39 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4394f91e-a41a-4f20-8529-d7a3b44fdd26) + ) + (wire (pts (xy 55.88 247.65) (xy 73.66 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 457a255a-f293-4895-ae72-ec69d82b37c3) + ) + (wire (pts (xy 448.31 361.95) (xy 453.39 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45dbf3e9-521a-4220-bd4c-6a696d3341b2) + ) + (wire (pts (xy 656.59 278.13) (xy 656.59 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 470e9618-1596-4c2b-998a-7c771a1b8d80) + ) + (wire (pts (xy 119.38 407.67) (xy 144.78 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4931897f-d071-4c0c-8cd3-13cef20bdfb2) + ) + (wire (pts (xy 297.18 293.37) (xy 297.18 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a003a8a-53c3-4023-8abe-635a303badea) + ) + (wire (pts (xy 504.19 293.37) (xy 504.19 369.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4a756947-c4ba-43eb-8a9b-d129eedf20e6) + ) + (wire (pts (xy 643.89 341.63) (xy 656.59 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4bf715af-c140-4709-9e81-b336e98c9bfc) + ) + (wire (pts (xy 466.09 242.57) (xy 478.79 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e1dc5c5-5e70-4287-a0c1-318fdcb5035f) + ) + (wire (pts (xy 220.98 204.47) (xy 220.98 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e564f2c-1e1f-4f27-88b2-9c01b413a32b) + ) + (wire (pts (xy 580.39 407.67) (xy 593.09 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f0a581e-6d52-4bc5-8c19-300f5490e464) + ) + (wire (pts (xy 195.58 234.95) (xy 170.18 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4fc85359-6c40-4f34-bf91-7845e45d0141) + ) + (wire (pts (xy 478.79 222.25) (xy 478.79 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5154a7d1-1aa9-427e-8ced-803c86793d27) + ) + (wire (pts (xy 297.18 311.15) (xy 297.18 331.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 515f6905-dfb4-4c9c-b891-f0bcfdd27875) + ) + (wire (pts (xy 205.74 347.98) (xy 213.36 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51dc7cc0-8627-42a8-8f83-319b4b3d3488) + ) + (wire (pts (xy 226.06 222.25) (xy 238.76 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 533dd14d-f324-490e-8e70-072da5702122) + ) + (wire (pts (xy 271.78 293.37) (xy 280.67 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53e31f65-d93b-48ee-a3dc-ebcd8f205cfd) + ) + (wire (pts (xy 440.69 389.89) (xy 440.69 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 550b4c4b-0b67-4935-914e-a8f22e6f6c9b) + ) + (wire (pts (xy 195.58 407.67) (xy 220.98 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 551bd293-b3f7-40a5-96c2-850f52cf344d) + ) + (wire (pts (xy 88.9 273.05) (xy 106.68 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 561186ea-f4b4-421c-90da-f01dc20fa537) + ) + (wire (pts (xy 205.74 347.98) (xy 205.74 331.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 565f52a8-ac82-4c91-9089-ff1cc6dacd39) + ) + (wire (pts (xy 529.59 204.47) (xy 529.59 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 569e8d34-8d40-4a04-a6b2-c7ac7a3b8159) + ) + (wire (pts (xy 593.09 336.55) (xy 593.09 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 571880dd-ae0d-494a-bfbf-2471e4f32890) + ) + (wire (pts (xy 119.38 347.98) (xy 128.27 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 59f11bfa-87a6-4b71-9f55-17c3b1c86281) + ) + (wire (pts (xy 264.16 242.57) (xy 297.18 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b652a39-a007-46b3-8187-2a1b5e670bbe) + ) + (wire (pts (xy 259.08 374.65) (xy 259.08 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5bd0b28b-71cf-4d67-9885-ec1c2a144e26) + ) + (wire (pts (xy 106.68 273.05) (xy 106.68 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c22bbb5-9a22-44ae-a4d6-394dc00002a1) + ) + (wire (pts (xy 322.58 267.97) (xy 347.98 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ca602ae-7f80-4b28-9062-cd351f5f35fe) + ) + (wire (pts (xy 656.59 407.67) (xy 681.99 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d24e11d-717b-4082-b8d9-8a2a7c52c7fa) + ) + (wire (pts (xy 440.69 278.13) (xy 440.69 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d7a0871-1f0e-4e7c-952c-e41d7da1e8fe) + ) + (wire (pts (xy 297.18 311.15) (xy 340.36 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d905456-993b-4739-84fb-7a84235edd88) + ) + (wire (pts (xy 478.79 278.13) (xy 478.79 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e73dcbc-f725-45f1-a278-160caece687d) + ) + (wire (pts (xy 81.28 375.92) (xy 81.28 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 605430ce-f78e-42d0-b01f-75dd776898ee) + ) + (wire (pts (xy 144.78 293.37) (xy 144.78 369.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60fb9dc9-ec94-4c76-be57-6fa9fd69d789) + ) + (wire (pts (xy 271.78 273.05) (xy 271.78 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 624d049e-30ea-42c5-b18c-8c6ef5222829) + ) + (wire (pts (xy 170.18 356.87) (xy 170.18 369.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 625c0123-0f96-4c4f-9983-56df1be0891e) + ) + (wire (pts (xy 656.59 311.15) (xy 656.59 331.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63a3a37d-5eee-4a71-a5ef-b24b07ae42e3) + ) + (wire (pts (xy 322.58 229.87) (xy 322.58 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64174b1f-1b31-4d7c-a6f6-c18b39d6b7d3) + ) + (wire (pts (xy 529.59 356.87) (xy 529.59 369.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 648c9151-6a3a-4cf9-b8ee-09a26afd85a0) + ) + (wire (pts (xy 486.41 375.92) (xy 486.41 420.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65111df9-a651-4a98-a7a2-6287f2619237) + ) + (wire (pts (xy 707.39 262.89) (xy 707.39 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67055f74-34cb-4551-9855-e1f89792199f) + ) + (wire (pts (xy 170.18 234.95) (xy 170.18 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6801d561-b603-43df-8237-93ebdc87ce03) + ) + (wire (pts (xy 347.98 262.89) (xy 347.98 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6813867a-3f4a-40ce-9be9-7079b33bc264) + ) + (wire (pts (xy 182.88 347.98) (xy 195.58 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6942adf6-2d2e-41c8-b602-2e9ed0564a5f) + ) + (wire (pts (xy 504.19 389.89) (xy 504.19 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6997ef1a-253d-4600-aa92-090b0979e066) + ) + (wire (pts (xy 440.69 252.73) (xy 440.69 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6aa0d374-ef83-4b0e-a177-a8a132c864c6) + ) + (wire (pts (xy 119.38 222.25) (xy 119.38 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6aa72dff-3dbb-4d7a-8a93-827ca9b27345) + ) + (wire (pts (xy 554.99 222.25) (xy 554.99 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b1f092e-8334-441c-839a-cf19afccd7e1) + ) + (wire (pts (xy 631.19 265.43) (xy 631.19 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e31afea-b9d4-4cfe-80de-f43712e1ee72) + ) + (wire (pts (xy 466.09 361.95) (xy 471.17 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e4bf97e-4cd5-414e-8ae4-6b980b625138) + ) + (wire (pts (xy 605.79 204.47) (xy 707.39 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f6a59c5-5fb6-4372-b2be-12b0d79895d0) + ) + (wire (pts (xy 170.18 407.67) (xy 195.58 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70c4e2c5-5488-409a-95ca-39c008966bca) + ) + (wire (pts (xy 440.69 349.25) (xy 440.69 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7176a8c9-1244-4600-a44c-ffce2fd1b1c4) + ) + (wire (pts (xy 554.99 407.67) (xy 580.39 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71dfff2f-6808-4bdc-bc4b-0fae394eb222) + ) + (wire (pts (xy 322.58 229.87) (xy 340.36 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7273d077-eefc-49ce-affb-c9249c7ed4ef) + ) + (wire (pts (xy 383.54 200.66) (xy 383.54 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7292bca1-0824-4e1f-a02b-ffc0ef1bb3d7) + ) + (wire (pts (xy 478.79 407.67) (xy 504.19 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73b38fb7-a07d-4cfb-8a1d-b33a225c8160) + ) + (wire (pts (xy 422.91 407.67) (xy 422.91 420.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 748a03c2-725c-44cb-8342-11d0ea39a7e1) + ) + (wire (pts (xy 152.4 374.65) (xy 157.48 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7514b8c0-fe53-42d7-85d5-230376903eaf) + ) + (wire (pts (xy 707.39 288.29) (xy 707.39 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7550e4ad-d580-4950-ace9-5a6ede6f53ba) + ) + (wire (pts (xy 157.48 374.65) (xy 162.56 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 755d2465-86da-49f6-9309-3fff034ab1e0) + ) + (wire (pts (xy 383.54 204.47) (xy 347.98 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75744561-5aff-42c2-a028-c5526b3b0a48) + ) + (wire (pts (xy 114.3 222.25) (xy 119.38 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 757a8c86-c171-4e6f-831e-28fe267e5f5e) + ) + (wire (pts (xy 689.61 247.65) (xy 707.39 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 760d2847-d442-4b46-be34-a78977a18dfc) + ) + (wire (pts (xy 246.38 204.47) (xy 246.38 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 762739b4-e5d6-4985-8a7e-03d8041f4712) + ) + (wire (pts (xy 422.91 407.67) (xy 440.69 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 771bcb62-da88-476a-aa91-18b9c395828d) + ) + (wire (pts (xy 565.15 331.47) (xy 643.89 331.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7720d59d-2fdb-470f-9b76-166625d3b0c0) + ) + (wire (pts (xy 347.98 298.45) (xy 347.98 306.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 781c7820-5aa7-4f45-a6dc-ceb0a42938e2) + ) + (wire (pts (xy 195.58 222.25) (xy 195.58 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 783175e4-7ab2-4b36-8378-1dbc815bd601) + ) + (wire (pts (xy 440.69 375.92) (xy 440.69 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 784abd4b-480d-4470-83f0-dfcf0be42411) + ) + (wire (pts (xy 81.28 389.89) (xy 81.28 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ae5c51d-db76-4ff5-8a62-e84d8955a4c8) + ) + (wire (pts (xy 347.98 267.97) (xy 347.98 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e346b28-75d5-4756-a2eb-813ca64d3b60) + ) + (wire (pts (xy 453.39 354.33) (xy 453.39 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e4c04ba-b2cb-478f-8d09-a85b0c0ff58a) + ) + (wire (pts (xy 127 375.92) (xy 127 420.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e6d0dab-8883-4d64-9198-c9660ff381fa) + ) + (wire (pts (xy 203.2 374.65) (xy 259.08 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f95ae0f-caca-4647-adf6-3f5a60e6a837) + ) + (wire (pts (xy 81.28 242.57) (xy 106.68 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 809aed7e-2db3-4b0f-b808-4270a3047541) + ) + (wire (pts (xy 322.58 252.73) (xy 322.58 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80d400b4-92c7-49ae-bb33-5b2fbbc7bc88) + ) + (wire (pts (xy 707.39 234.95) (xy 707.39 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8108a72b-cdbe-4457-8ce7-bb09d9093bea) + ) + (wire (pts (xy 707.39 274.32) (xy 707.39 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81c66e64-b7cc-4bc9-a120-b80eff707fc8) + ) + (wire (pts (xy 631.19 293.37) (xy 640.08 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82d398bb-2bdc-4f35-bf5e-dc1addf90c85) + ) + (wire (pts (xy 537.21 222.25) (xy 554.99 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 830f1a2a-ef33-4dec-8409-960bd4e21c6b) + ) + (wire (pts (xy 478.79 389.89) (xy 478.79 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83253d2e-9aca-4316-874e-c581871e69ec) + ) + (wire (pts (xy 542.29 303.53) (xy 542.29 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83bbf01b-001d-495e-8dad-aeafd783b73c) + ) + (wire (pts (xy 542.29 311.15) (xy 542.29 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84bd97cc-6655-415a-b6e4-711101ba023a) + ) + (wire (pts (xy 271.78 273.05) (xy 289.56 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84da6d98-5b30-4069-9294-249790b603b3) + ) + (wire (pts (xy 466.09 204.47) (xy 504.19 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 87dcb1f5-6eab-4d70-be0d-900d386a022c) + ) + (wire (pts (xy 681.99 407.67) (xy 707.39 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 884fdf46-d671-45bf-858c-effd75e918c7) + ) + (wire (pts (xy 347.98 274.32) (xy 347.98 280.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 897a34d4-91ed-4e98-ad22-6a28fb201ede) + ) + (wire (pts (xy 106.68 361.95) (xy 111.76 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8999a87a-f3c0-4542-bfa9-a2fd7fa1d473) + ) + (wire (pts (xy 529.59 204.47) (xy 580.39 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a92d755-a081-44fc-97a8-6dc4f644347f) + ) + (wire (pts (xy 618.49 392.43) (xy 618.49 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8aa69a47-667d-4dfd-b719-2ced431acbd4) + ) + (wire (pts (xy 119.38 347.98) (xy 119.38 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b959ba6-45ea-42a1-b670-4c6e61798494) + ) + (wire (pts (xy 466.09 389.89) (xy 466.09 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bab574c-acb1-4bb9-a106-03498408251c) + ) + (wire (pts (xy 415.29 375.92) (xy 440.69 375.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bc4438f-a33b-491e-8642-87f346e01b2a) + ) + (wire (pts (xy 647.7 293.37) (xy 656.59 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bd79179-faae-4bae-b83c-a97756de0e1a) + ) + (wire (pts (xy 266.7 374.65) (xy 322.58 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c81461a-4abd-4033-a722-c0fdb8fb76d2) + ) + (wire (pts (xy 144.78 204.47) (xy 170.18 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ce6e317-b317-419f-8659-ace31c4d1331) + ) + (wire (pts (xy 233.68 389.89) (xy 233.68 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f906710-7d5f-4730-bb81-2128300f7cd5) + ) + (wire (pts (xy 656.59 311.15) (xy 699.77 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 905f3db4-511a-4c69-a0f4-0180329ea2ee) + ) + (wire (pts (xy 681.99 389.89) (xy 681.99 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9232ac7b-f1ef-44a7-a136-fd1b683c3d6f) + ) + (wire (pts (xy 593.09 367.03) (xy 593.09 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93414264-e437-4f74-b5db-dd46b0659062) + ) + (wire (pts (xy 259.08 392.43) (xy 259.08 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93c5ca33-996f-4d70-858f-2bc30bcb6c8d) + ) + (wire (pts (xy 593.09 336.55) (xy 636.27 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95e46f09-3847-4930-96cf-955582d110f6) + ) + (wire (pts (xy 106.68 407.67) (xy 119.38 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95f05303-9b48-4807-ad0c-0f8d20a10908) + ) + (wire (pts (xy 68.58 194.31) (xy 58.42 194.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9634f26e-1819-4bd5-be10-072305be72fc) + ) + (wire (pts (xy 516.89 374.65) (xy 516.89 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9899fbb0-2a2a-45f8-8a3c-19126c1c173c) + ) + (wire (pts (xy 478.79 347.98) (xy 478.79 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 991317fa-a39c-4589-a840-b5640d4cdfe4) + ) + (wire (pts (xy 681.99 303.53) (xy 681.99 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 993638b4-a2d3-4dfc-9c3e-33b923795c15) + ) + (wire (pts (xy 297.18 229.87) (xy 322.58 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 996318d2-5ead-4e2c-975d-ecb41fe3a06d) + ) + (wire (pts (xy 623.57 260.35) (xy 623.57 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c3ba149-7eac-49aa-990a-ef13350c946d) + ) + (wire (pts (xy 707.39 204.47) (xy 707.39 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ce3533c-8290-45c2-ac33-084e79d38d7b) + ) + (wire (pts (xy 448.31 273.05) (xy 466.09 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f95fbf7-5a24-4efd-a3a5-eaf9db2a1257) + ) + (wire (pts (xy 106.68 293.37) (xy 144.78 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a182c825-65b6-4b35-a738-a71ac0fcb687) + ) + (wire (pts (xy 297.18 242.57) (xy 297.18 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1c0a3bc-a00c-4572-8454-32e0058be69a) + ) + (wire (pts (xy 529.59 407.67) (xy 554.99 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3256586-bc80-4a4d-8fdf-7827d2a4533f) + ) + (wire (pts (xy 182.88 311.15) (xy 182.88 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5fd9f8d-966a-4563-b7a5-4dd6c2ccca34) + ) + (wire (pts (xy 408.94 200.66) (xy 408.94 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6faace3-0a1e-4a3e-8bea-80720e4b88da) + ) + (wire (pts (xy 55.88 375.92) (xy 81.28 375.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a6fc1ad2-38d1-4d07-9bf3-de3626529af8) + ) + (wire (pts (xy 205.74 331.47) (xy 284.48 331.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a87ba782-39f0-456e-a371-5e36f16da7e3) + ) + (wire (pts (xy 453.39 204.47) (xy 466.09 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa4e5766-5e4d-40b2-afb4-1ce245a8a73a) + ) + (wire (pts (xy 195.58 222.25) (xy 226.06 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid acfe9e75-60ab-41f9-915b-355a2be462ff) + ) + (wire (pts (xy 440.69 242.57) (xy 466.09 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af9105b7-6207-45e4-bdc4-2385335eec74) + ) + (wire (pts (xy 605.79 227.33) (xy 605.79 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b089f025-be87-487d-a17b-6abc32655211) + ) + (wire (pts (xy 466.09 273.05) (xy 466.09 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0c1bd91-8b94-40ce-93c9-48d64f50f759) + ) + (wire (pts (xy 580.39 361.95) (xy 580.39 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0e62aab-807a-4101-ab0b-081aa2ee0bb1) + ) + (wire (pts (xy 504.19 407.67) (xy 529.59 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b20cbb97-f9dd-4764-9326-522eb140d16a) + ) + (wire (pts (xy 177.8 222.25) (xy 195.58 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3c96991-deb3-478b-a40d-b92978a081e2) + ) + (wire (pts (xy 182.88 267.97) (xy 233.68 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4418fbc-25fa-4f5a-b6d2-066c032b9384) + ) + (wire (pts (xy 605.79 229.87) (xy 656.59 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b508cd84-6c87-4002-ad92-c1c613c2dfd7) + ) + (wire (pts (xy 495.3 347.98) (xy 542.29 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b66bc7b4-195a-4ec4-86ea-201a706e41e5) + ) + (wire (pts (xy 707.39 247.65) (xy 707.39 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b72d3f7b-beaa-48da-bd19-b1abeb8afb1f) + ) + (wire (pts (xy 473.71 222.25) (xy 478.79 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b788a349-042c-47f4-9c05-30668ec84fdb) + ) + (wire (pts (xy 220.98 361.95) (xy 226.06 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8480641-5a01-405e-9947-83f428c65989) + ) + (wire (pts (xy 511.81 374.65) (xy 516.89 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bd3de2ff-d975-455b-9060-22b5b36c02c8) + ) + (wire (pts (xy 81.28 252.73) (xy 81.28 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be5adf20-adcc-42c2-a5f1-84c994ca7978) + ) + (wire (pts (xy 681.99 267.97) (xy 681.99 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be855d29-fc0d-4e8a-8a62-6012a4d0c080) + ) + (wire (pts (xy 157.48 356.87) (xy 170.18 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be9163cc-6548-47fa-b84f-5e7bc803f02d) + ) + (wire (pts (xy 119.38 375.92) (xy 119.38 382.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf587248-9e95-4f50-b378-dd636cc1d3b6) + ) + (wire (pts (xy 585.47 222.25) (xy 598.17 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf74494d-e80d-477c-b1ae-a0e6d02e90d0) + ) + (wire (pts (xy 81.28 407.67) (xy 106.68 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c0353af8-a12f-43d8-a15f-06982bb4db65) + ) + (wire (pts (xy 144.78 389.89) (xy 144.78 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c21f25fa-32f2-4129-b05f-3fa54d5f4155) + ) + (wire (pts (xy 466.09 273.05) (xy 471.17 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c519c280-61cc-4ef2-8116-de3f5c5200a9) + ) + (wire (pts (xy 593.09 217.17) (xy 605.79 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6049475-4ff7-41cb-ae2a-e98639c6ea49) + ) + (wire (pts (xy 220.98 389.89) (xy 220.98 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c66a0aca-0bd4-4818-b1ac-52391fe0624c) + ) + (wire (pts (xy 504.19 204.47) (xy 504.19 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6d626a3-cbf3-43c3-8753-a6aed0815932) + ) + (wire (pts (xy 106.68 273.05) (xy 111.76 273.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7892827-3a63-4f34-8f1e-45bfc1bece82) + ) + (wire (pts (xy 707.39 316.23) (xy 707.39 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7c12241-c1f5-4835-ad0e-52dfc4ae1caa) + ) + (wire (pts (xy 322.58 407.67) (xy 347.98 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8cfdaad-0233-4dcd-a116-b94423b16d6b) + ) + (wire (pts (xy 93.98 344.17) (xy 93.98 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca7dac8e-0af2-4b7b-a79a-450562d827b7) + ) + (wire (pts (xy 264.16 260.35) (xy 264.16 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb06b6ff-0f95-4dbd-adb3-045cf24dde64) + ) + (wire (pts (xy 605.79 204.47) (xy 605.79 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb2bc32e-ebaa-4713-bd82-fea88c7e4974) + ) + (wire (pts (xy 618.49 374.65) (xy 626.11 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc8bc48e-0dd7-4ab3-9583-93ac7e5a8950) + ) + (wire (pts (xy 478.79 222.25) (xy 496.57 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ccbb33c5-5cf3-4daa-abaa-e44b2e9e36c8) + ) + (wire (pts (xy 626.11 374.65) (xy 626.11 387.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cea972a6-4523-4a4a-a03c-394bb9bd7765) + ) + (wire (pts (xy 491.49 260.35) (xy 415.29 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cebf3617-7eaa-4351-b69c-f137f6355bd4) + ) + (wire (pts (xy 246.38 204.47) (xy 347.98 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cfee5b9a-b15e-44b3-a2d0-0c4c38d6572b) + ) + (wire (pts (xy 580.39 204.47) (xy 580.39 342.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d08b3cef-a4b8-4efa-a4d1-54fcf55ebabe) + ) + (wire (pts (xy 195.58 379.73) (xy 195.58 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d143b45a-0a57-4cac-a688-3ce07c9e2f18) + ) + (wire (pts (xy 636.27 336.55) (xy 648.97 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1763baf-54d5-40bb-8864-d821988fe31a) + ) + (wire (pts (xy 681.99 229.87) (xy 681.99 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2621e83-363e-4ae8-9cda-394375624813) + ) + (wire (pts (xy 656.59 293.37) (xy 656.59 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2ee0494-d551-4ea2-a859-1faaeeb23ea1) + ) + (wire (pts (xy 542.29 267.97) (xy 593.09 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4a83bfb-4f21-499a-91b2-4bdd58bb2c0f) + ) + (wire (pts (xy 656.59 229.87) (xy 681.99 229.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d64c8862-29f6-40fa-b035-8ab8d127fe0d) + ) + (wire (pts (xy 580.39 204.47) (xy 605.79 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6a62dc4-752f-4532-8348-ea0c74c3b0c4) + ) + (wire (pts (xy 478.79 367.03) (xy 478.79 375.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7478e38-cf96-4351-9d6f-26b11383b887) + ) + (wire (pts (xy 486.41 247.65) (xy 491.49 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8390824-d1c2-46bf-aae3-d86dde32a747) + ) + (wire (pts (xy 491.49 247.65) (xy 491.49 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d87e13dc-59d0-474d-ba26-ae409c7d57e2) + ) + (wire (pts (xy 93.98 204.47) (xy 106.68 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9ba2585-5dcb-4e3f-a924-8813a2ab54a1) + ) + (wire (pts (xy 81.28 367.03) (xy 81.28 375.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dae953a3-5ddf-4547-8d8c-61ad2bf8fc28) + ) + (wire (pts (xy 195.58 347.98) (xy 195.58 369.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbf61009-f114-4e21-840b-0f739d96d6f8) + ) + (wire (pts (xy 593.09 407.67) (xy 618.49 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc8bef03-999c-4dc7-be47-4f4e57e15349) + ) + (wire (pts (xy 330.2 247.65) (xy 347.98 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd0ee6ce-a662-4b76-88f5-964ff4fc86cd) + ) + (wire (pts (xy 157.48 374.65) (xy 157.48 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd4fc2ff-71ef-41de-94a3-29589177fa92) + ) + (wire (pts (xy 466.09 227.33) (xy 466.09 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de7b98c1-5212-4c71-89fb-5a4c8be2f47d) + ) + (wire (pts (xy 565.15 347.98) (xy 572.77 347.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e015259a-381f-4e06-b138-a6eb3f75c9f3) + ) + (wire (pts (xy 656.59 341.63) (xy 656.59 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0ba957a-53cf-4da3-b71f-54a4b5bb9090) + ) + (wire (pts (xy 347.98 247.65) (xy 347.98 255.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1610ffd-6f41-4c9a-a69c-e135a3afb3cd) + ) + (wire (pts (xy 656.59 255.27) (xy 656.59 267.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1739409-2811-467d-911d-ca19b94d759c) + ) + (wire (pts (xy 119.38 389.89) (xy 119.38 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1b2b8d9-5160-4c7a-b0d5-b4aaf7c55a6a) + ) + (wire (pts (xy 623.57 242.57) (xy 656.59 242.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e1fa2801-0796-4541-ac98-125360f17000) + ) + (wire (pts (xy 707.39 298.45) (xy 689.61 298.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e432e8da-5b0c-441b-a7d0-1f681af03b58) + ) + (wire (pts (xy 478.79 375.92) (xy 486.41 375.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4948734-cde4-4766-b1e8-5fbc72bd84fd) + ) + (wire (pts (xy 347.98 274.32) (xy 373.38 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e56ba601-8429-40fe-a0bd-d52ee565d8f5) + ) + (wire (pts (xy 144.78 227.33) (xy 144.78 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5973b8e-345f-405d-b21e-76a2d0f80868) + ) + (wire (pts (xy 284.48 341.63) (xy 297.18 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e6beb3c3-7101-4362-9546-a615fd30042b) + ) + (wire (pts (xy 297.18 341.63) (xy 297.18 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e72483fc-2e1b-4ee3-9444-0ec3b12345a3) + ) + (wire (pts (xy 259.08 407.67) (xy 297.18 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e90d489e-e93c-4857-bfcd-382386f05d84) + ) + (wire (pts (xy 170.18 227.33) (xy 170.18 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9c346f9-ce02-4ad6-983c-48ed6106c872) + ) + (wire (pts (xy 170.18 204.47) (xy 170.18 217.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eadf69f2-4a97-468d-b7bf-fa8a55dc0198) + ) + (wire (pts (xy 322.58 303.53) (xy 322.58 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb5fa14c-a1aa-4ea7-a666-d0c8fe23e319) + ) + (wire (pts (xy 297.18 407.67) (xy 322.58 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb860e1e-3d63-4589-81cf-81e96ab17913) + ) + (wire (pts (xy 81.28 349.25) (xy 86.36 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edede876-dc1a-49da-be10-fc3c18f27d26) + ) + (wire (pts (xy 347.98 204.47) (xy 347.98 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef567e8b-ac7d-49a1-bd38-882b49fb9dff) + ) + (wire (pts (xy 466.09 407.67) (xy 478.79 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef8d78c8-425f-49ed-95f1-9f43c7e1dafd) + ) + (wire (pts (xy 626.11 374.65) (xy 681.99 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0991eb4-ba5e-4fbd-a39a-7d9eab6ce4aa) + ) + (wire (pts (xy 707.39 267.97) (xy 707.39 274.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2963cea-8163-4244-b00c-d04024391266) + ) + (wire (pts (xy 347.98 234.95) (xy 347.98 247.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f322e375-80d7-479e-b6b9-be4ee542c93e) + ) + (wire (pts (xy 593.09 389.89) (xy 593.09 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3c96f28-e4c8-4b2d-9870-2804e59320fb) + ) + (wire (pts (xy 144.78 407.67) (xy 170.18 407.67)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4375cfa-aa05-4422-a1f9-e98581a50c9a) + ) + (wire (pts (xy 580.39 361.95) (xy 585.47 361.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7db6f17-b893-4a00-85dd-85df44b4be92) + ) + (wire (pts (xy 504.19 204.47) (xy 529.59 204.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8a0adb6-f770-488d-9d7a-f335da160158) + ) + (wire (pts (xy 466.09 293.37) (xy 504.19 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9a2f1f7-e237-434b-85cc-a8a0e18eea60) + ) + (wire (pts (xy 565.15 347.98) (xy 565.15 331.47)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbb77043-6047-4c79-a1c4-8d9d3d6b8489) + ) + (wire (pts (xy 259.08 374.65) (xy 266.7 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbbcd08f-c921-4ce1-a473-b8d623359a61) + ) + (wire (pts (xy 119.38 222.25) (xy 137.16 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbe80196-2517-4238-83bc-17368753f031) + ) + (wire (pts (xy 81.28 349.25) (xy 81.28 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fcddae3a-5b6d-493e-bd1e-467c0d4b15df) + ) + (wire (pts (xy 529.59 250.19) (xy 529.59 356.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd159663-72d9-41c7-8dd2-b9264dd75186) + ) + (wire (pts (xy 276.86 336.55) (xy 289.56 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffd202d1-035d-4cf1-8091-b829815e7599) + ) + (wire (pts (xy 562.61 374.65) (xy 618.49 374.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ffee7659-02e7-45ff-8934-d7ba88c9205c) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 83.82 361.95 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0008018a-a726-4195-a5b5-e1c05e7e867f) + (property "Reference" "Q3" (id 0) (at 78.74 360.6799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 78.74 363.2199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 78.74 359.41 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 83.82 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4b9d5adf-e11c-4e3f-bece-44c7e06c0961)) + (pin "2" (uuid a06c43dc-cc7d-4394-88c7-3e0f3d8892f0)) + (pin "3" (uuid 82801096-972b-4904-bb02-072eb2777158)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 577.85 347.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 06540ff7-e08c-4576-8d13-7fee08d32ab2) + (property "Reference" "Q40" (id 0) (at 582.93 346.7099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 582.93 349.2499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 582.93 345.44 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 577.85 347.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 51860de7-cd5c-4a7c-803a-e30c7ec73ab7)) + (pin "2" (uuid 0064b30e-37e2-47f3-abf9-4697c979b69e)) + (pin "3" (uuid 13fa07e4-19db-42f3-9774-d6f8aecdb1da)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 704.85 311.15 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0f834800-eb2f-42cb-8009-d21c2e7a0f8e) + (property "Reference" "Q52" (id 0) (at 709.93 309.8799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 709.93 312.4199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 709.93 313.69 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 704.85 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c7a260e9-b415-4a4b-b097-02bf3cc4b524)) + (pin "2" (uuid 6bce37b3-9a3d-4d86-b84b-c312c3c89141)) + (pin "3" (uuid bb971e2d-2c1f-4528-ac30-2eb185a43e73)) + ) + + (symbol (lib_id "eSim_Devices:capacitor") (at 182.88 307.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1295e10e-4907-46bb-9d39-69041373cdb8) + (property "Reference" "C1" (id 0) (at 186.69 306.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "30p" (id 1) (at 186.69 308.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 183.8452 311.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 182.88 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3afc4600-3feb-485e-8a96-26f644313e78)) + (pin "2" (uuid 0b35e57e-d43a-4965-91e5-a481f4cc8712)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 91.44 349.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 142537f8-4802-4c26-b86a-3e82c545e308) + (property "Reference" "Q4" (id 0) (at 96.52 347.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 96.52 350.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 96.52 346.71 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 91.44 349.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 15568372-0bca-4db7-b5fd-5d79450a3d8f)) + (pin "2" (uuid 0a36120f-13ae-4413-8537-bbf4c73b4c00)) + (pin "3" (uuid 6db5a599-6d8d-4a59-a238-a4ffdcd0a596)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 146.05 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 150973ba-5d48-4ee3-b104-848fad8c8f59) + (property "Reference" "R5" (id 0) (at 147.32 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "5k" (id 1) (at 147.32 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 146.558 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 144.78 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 5c0e619e-6bff-4f16-a0fc-05d8bf878e86)) + (pin "2" (uuid bf25eeff-51cb-4d3b-b1a3-5c7ec6ddef3a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 402.59 200.66 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17361e21-7874-4bb6-bb67-0eb3a89bc837) + (property "Reference" "U1" (id 0) (at 403.225 195.58 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 403.225 198.12 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 402.59 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 402.59 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7d9f5647-a64d-4f2d-b7fe-4edae6ae6c16)) + (pin "2" (uuid 69abe3f0-3b65-4d58-a6b2-3ffb9c04260c)) + (pin "3" (uuid b22845d7-c601-4d84-9ddf-b0ba6e2ea466)) + (pin "4" (uuid 62d72ea0-c290-453c-b726-0f0fe163af1e)) + (pin "5" (uuid faf20761-5b19-4e1c-b170-ca2a84926924)) + (pin "6" (uuid 2a050a25-7bc9-418d-b422-e8c62c9ff4e9)) + (pin "7" (uuid 014f4a2f-7f6b-4354-bd95-a81c18e44f56)) + (pin "8" (uuid 439c6374-ddc0-482e-aa7f-9a19ad123382)) + (pin "9" (uuid 027161cd-849e-4b7c-8888-54950eb2335a)) + (pin "10" (uuid c146ef53-d35a-4bfd-b72c-1bde21084855)) + (pin "11" (uuid b67bd63b-ac10-491b-97a0-1c4335f25f40)) + (pin "12" (uuid eb815231-4e8d-4d8e-a30f-f523ee66e366)) + (pin "13" (uuid da705927-bdd4-4e47-b0d9-f20d6c28991b)) + (pin "14" (uuid 2d50a2fb-8642-4f4d-a013-e810136dd29a)) + (pin "15" (uuid 3c200209-0b77-4526-a499-342e9fc59445)) + (pin "16" (uuid 78c3c384-e096-40a0-9b7a-bbef3a3eda43)) + (pin "17" (uuid 8c686bd8-46fb-41fa-9f3e-72f376318777)) + (pin "18" (uuid 1658b2c1-50fd-4ab4-a617-5fb39b330011)) + (pin "19" (uuid 1aad0b19-fca0-494f-b310-df33c3cfd3a5)) + (pin "20" (uuid 52a9eef0-7920-4097-a418-29b967646cce)) + (pin "21" (uuid b7122def-2cb0-4975-bbbe-a1254121b3f7)) + (pin "22" (uuid e47501fb-b426-4889-b3d9-7d359c345235)) + (pin "23" (uuid a0c05a15-ea73-463e-868a-615fed644b31)) + (pin "24" (uuid 22deb876-2e0c-4446-b630-7dafc688e442)) + (pin "25" (uuid 5c10d2b0-c53e-4b19-be6e-6064073ff25d)) + (pin "26" (uuid 2051bcf4-a1e5-4722-b009-b9dd9bf42d90)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 684.53 247.65 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1770fd8d-7d95-41e4-a684-bbb36f755d62) + (property "Reference" "Q49" (id 0) (at 679.45 246.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 679.45 248.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 679.45 245.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 684.53 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d25f34d7-a628-4257-a8f4-0d3cb766834e)) + (pin "2" (uuid 5011d495-ab0e-4579-89a0-999f1f807f03)) + (pin "3" (uuid cb8472ed-fa24-437b-ba58-ae2a18113402)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 443.23 273.05 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 205466b0-9b7d-4b61-a413-291a97c8079e) + (property "Reference" "Q28" (id 0) (at 438.15 271.7799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 438.15 274.3199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 438.15 275.59 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 443.23 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bb55cf87-817f-436e-a451-e4bf03b63c99)) + (pin "2" (uuid ce50667d-51ec-4d3f-a0c8-66dd31170861)) + (pin "3" (uuid 5160530e-584d-48cd-a2ff-5d5ff95fe74d)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 107.95 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 23d8f6f9-c2ff-4f8a-93d2-ca01b384345a) + (property "Reference" "R2" (id 0) (at 109.22 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 109.22 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 108.458 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 106.68 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 062d233a-43d1-4b57-b5c0-8c9cb2566df7)) + (pin "2" (uuid 79cfcf3f-a275-4a5d-8977-051358e466e1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 120.65 420.37 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26ff09a1-586d-4ce9-964e-72c2736d3df4) + (property "Reference" "U1" (id 0) (at 121.285 415.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 121.285 417.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 120.65 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 120.65 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ad9ac818-ec4c-45be-9778-d7f27cb840d5)) + (pin "2" (uuid 4c1c74b5-6875-4fc6-bfca-bf052fef07ad)) + (pin "3" (uuid 577a5107-763f-4b46-8c61-09f0b31bbb23)) + (pin "4" (uuid 8bc239e2-2b51-4e38-aa6b-92c032a7964a)) + (pin "5" (uuid e78f3b95-6454-4804-8098-b9dfff34b11c)) + (pin "6" (uuid 3bbf6ea9-fdc4-4f5c-87a2-fb35421cfbfe)) + (pin "7" (uuid 8fd9ee7b-d03c-4e5f-8741-e49f2e05b086)) + (pin "8" (uuid 0522a172-4d23-4d73-af8e-28094330deb7)) + (pin "9" (uuid ee179ff9-cd74-48b2-ae62-0373922b941b)) + (pin "10" (uuid ac43f6ed-288f-4aef-b19d-d972035c59fb)) + (pin "11" (uuid 643e540f-285c-4913-a485-9366ad65181e)) + (pin "12" (uuid 94e01146-25e5-453a-b136-66ce39131424)) + (pin "13" (uuid 02bafeb0-8ef5-4cc6-b6f3-7303e1263fe2)) + (pin "14" (uuid 0e8f9b50-da25-43fa-98cc-5f5ace30372a)) + (pin "15" (uuid e8478de0-5e34-42be-8e28-917d7118d2dd)) + (pin "16" (uuid 27b57cb0-00e7-45fe-b880-6ebf04baa5d7)) + (pin "17" (uuid a71ae1f5-99a2-475c-9d00-f06a4ba3f6d6)) + (pin "18" (uuid 59e88920-55fc-48b1-a465-e8802729c622)) + (pin "19" (uuid 93f2fcee-08de-46f6-9b27-0435aebeb206)) + (pin "20" (uuid 5a727116-139a-4436-9cb2-0605d36cf664)) + (pin "21" (uuid 8feaf966-e60a-487a-b141-aa9aded5b392)) + (pin "22" (uuid 73b3962b-1811-4147-b6a2-b646b54848cf)) + (pin "23" (uuid 9fa5462f-2fc0-4ee3-be15-ac654e9fabeb)) + (pin "24" (uuid 6ff5a71e-89d6-41cd-9e9b-e639c98db0ce)) + (pin "25" (uuid 5fa1fb1a-3021-4abd-9970-4b085c5ff090)) + (pin "26" (uuid 8107425e-f867-428a-8d2e-7491e7f50327)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 468.63 222.25 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2701d180-6cfe-41d5-a03d-f145ff0fd179) + (property "Reference" "Q31" (id 0) (at 463.55 220.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 463.55 223.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 463.55 224.79 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 468.63 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fa2757f6-7dae-47c1-8aab-e477827af11b)) + (pin "2" (uuid 7a116649-69c8-4f72-a2a5-9c9914406ce3)) + (pin "3" (uuid c8c45925-2e3d-414c-a3bf-1f49754b10a6)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 706.12 283.21 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 27bf608c-d3bf-4677-99a7-10822e8ac233) + (property "Reference" "R24" (id 0) (at 709.93 283.2099 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "22" (id 1) (at 709.93 285.7499 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 705.612 284.48 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 707.39 284.48 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 46109458-d84c-4ae8-8fd4-6f2a02335a8c)) + (pin "2" (uuid e16a1e0a-f3d6-4835-a63a-03a5e28b3e13)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 408.94 260.35 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2883062f-2e75-405d-9606-e568bcadb984) + (property "Reference" "U1" (id 0) (at 409.575 255.27 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 409.575 257.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 408.94 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 408.94 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7cd1accd-ab12-497a-8399-cb591d8358a5)) + (pin "2" (uuid 0ae54322-dea6-495c-9f25-7e26883d5dd0)) + (pin "3" (uuid 01321aa8-041b-4077-b675-6d2b05fa2a5a)) + (pin "4" (uuid b7505674-1e5e-4436-84b6-4c065c719357)) + (pin "5" (uuid 52f6ef5c-85c1-456f-9c79-57810a96223a)) + (pin "6" (uuid c5f0e7d8-81aa-408b-b56c-33a185bb472c)) + (pin "7" (uuid ead408ad-18ab-4407-9bc5-307bda698bfd)) + (pin "8" (uuid c4b6a4ce-5228-4249-958f-ff9866b1e35c)) + (pin "9" (uuid 47d3f66b-57e2-4d73-bc82-10f25201546c)) + (pin "10" (uuid 217f77b5-6ecb-4710-a693-be9f1256bfe9)) + (pin "11" (uuid 8af6d8ec-3c8c-483d-9e50-7cb8fe81020c)) + (pin "12" (uuid c4dd031a-558d-490d-ab21-8dc013e39311)) + (pin "13" (uuid b8ea93d4-972f-4de3-a62d-f12bb8a287f8)) + (pin "14" (uuid 369ad9e0-2061-4cf4-b6d2-6f285dc57cac)) + (pin "15" (uuid df3eec9b-b688-416a-9405-6d19373bca60)) + (pin "16" (uuid 089e63ca-ef2b-4198-bd73-14a44c4fadd1)) + (pin "17" (uuid 85df0fe4-8fa6-47df-83a3-c0667e848eae)) + (pin "18" (uuid 562ae782-aa11-4006-922f-d3d39a36083d)) + (pin "19" (uuid 738dd985-6e5b-469e-b563-682d4aa0c294)) + (pin "20" (uuid e4efb03e-adf9-4143-9d2e-ab535f131521)) + (pin "21" (uuid 6ad22954-a8c5-4ca3-8c73-6d551aa4eb9d)) + (pin "22" (uuid bca0d3ea-f454-4f36-9379-49544a28aaa3)) + (pin "23" (uuid 1c3cc661-1468-4dd1-9c55-ab24bdd569d2)) + (pin "24" (uuid 8c0952c2-7066-44e9-a357-e3c26a12a235)) + (pin "25" (uuid b2de07f7-1c9f-42f6-a820-9aa367e04801)) + (pin "26" (uuid 9781eea0-08c1-4a74-96d0-4e33aab3e61a)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 450.85 349.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2e833af0-49bb-44ef-a547-b7a972d86ade) + (property "Reference" "Q30" (id 0) (at 455.93 347.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 455.93 350.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 455.93 346.71 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 450.85 349.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3da2eb97-bafd-49fa-aa57-bc3f938b1350)) + (pin "2" (uuid 48b03f9e-c544-4836-88d4-a1176698e98b)) + (pin "3" (uuid e7c72b59-efa4-49e6-b59b-51dd31dee832)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 527.05 374.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 32047397-d163-44c2-8566-7572c1510d95) + (property "Reference" "Q37" (id 0) (at 532.13 373.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 532.13 375.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 532.13 372.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 527.05 374.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0283d9d8-2c61-4f89-a1c4-3b4a583a9575)) + (pin "2" (uuid e445515e-34f2-41d1-8a2a-af79a8228270)) + (pin "3" (uuid 1a5bf5b9-da30-433c-8556-fa2efd14c6af)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 467.36 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3604b4b2-464d-4994-9691-7abb0b74eb04) + (property "Reference" "R14" (id 0) (at 468.63 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 468.63 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 467.868 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 466.09 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 8f5fe989-fff4-41d2-a37b-323a11743956)) + (pin "2" (uuid 2a38a03d-e831-4aac-9b9b-719c6e7a5309)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 389.89 200.66 180) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3793d34d-3b9b-4fa5-accd-46d1b9108b25) + (property "Reference" "U1" (id 0) (at 393.7 200.025 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 393.7 202.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 389.89 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 389.89 200.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid dd9e03f7-3740-4557-9483-8e93b4605dc9)) + (pin "2" (uuid 56eb373b-9e49-465e-92fb-c9bdb1ff6c16)) + (pin "3" (uuid d50c2533-dfbe-4d14-a01a-dd52e331732c)) + (pin "4" (uuid 8b9a490c-555e-42d8-882b-f6472c361590)) + (pin "5" (uuid 6142034d-7b27-4656-b405-bfb081e5583d)) + (pin "6" (uuid 386b8906-aec3-4fc5-95c3-2667fea3cdf3)) + (pin "7" (uuid b5cabde9-4404-4050-b6e9-779a65b849d1)) + (pin "8" (uuid ccacec0d-6034-4c05-92a8-45e72ab5e384)) + (pin "9" (uuid a846d2fd-691e-41de-ba75-889b139964dc)) + (pin "10" (uuid c416bfd7-6636-45fb-a86d-3f47d452a2dd)) + (pin "11" (uuid 7d8f03f8-eefb-4f26-b6c5-29339449c4d0)) + (pin "12" (uuid 2973a8da-c91e-4f92-a1db-732e5b95c418)) + (pin "13" (uuid 5da0864e-170d-4627-bc38-6e1168ce2dc5)) + (pin "14" (uuid 9dda26fb-8f57-4668-8846-3b80139e4ced)) + (pin "15" (uuid 39a5df45-4f1b-4513-aec4-e54c24fdff4b)) + (pin "16" (uuid d9182b98-2ff0-43d2-a863-1b2e03943688)) + (pin "17" (uuid c20c6991-56ed-4ee4-a135-6322d05736c2)) + (pin "18" (uuid bee80d85-2f1a-4bfb-8c03-4e1ac8d77db9)) + (pin "19" (uuid c9402215-5cb0-401e-9a1c-e016e428c922)) + (pin "20" (uuid 13a1de61-7160-4f44-96bd-f5fc9dcf0004)) + (pin "21" (uuid 9c6fae67-2294-45b3-99b4-2dab4ae09d74)) + (pin "22" (uuid ab64aa3e-c743-412f-9d6f-1f267ef449cb)) + (pin "23" (uuid 4cb3671f-1335-4139-817a-2314d63d85aa)) + (pin "24" (uuid 4b3a7603-e583-4dbd-b146-7872da44e933)) + (pin "25" (uuid 3fe2b28d-bc84-4a14-96e5-6e41de58708e)) + (pin "26" (uuid 3f5c881e-8a78-4173-8b2c-64e8dddc9747)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 222.25 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3c5a140c-8027-47f8-baea-8a79bc7ccda0) + (property "Reference" "R7" (id 0) (at 223.52 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 223.52 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 222.758 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 220.98 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 3d0ffa7e-1bf6-4493-858d-6ed223637889)) + (pin "2" (uuid 9e419e16-f093-4cb9-b3db-cd5a1474bc2e)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 346.71 283.21 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3cac6aa7-963a-4469-b7a3-bc72d7418bc2) + (property "Reference" "R12" (id 0) (at 350.52 283.2099 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "22" (id 1) (at 350.52 285.7499 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 346.202 284.48 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 347.98 284.48 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid aaa7af13-a2be-4525-ad14-421b00eb3495)) + (pin "2" (uuid 811a7bf8-2fb0-4656-a819-a568f0002001)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 706.12 257.81 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3eafe830-8366-4aef-862c-c5e99eb3ca24) + (property "Reference" "R23" (id 0) (at 709.93 257.8099 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "27" (id 1) (at 709.93 260.3499 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 705.612 259.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 707.39 259.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 454535b1-b66b-4eb7-9fad-aee8f125236c)) + (pin "2" (uuid d858b5c5-40fd-4656-a109-6a90b58db07d)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 704.85 229.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4264a9e9-ebc7-4d76-8f65-486a45b4704a) + (property "Reference" "Q51" (id 0) (at 710.6721 228.5999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 710.6721 231.1399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 709.93 227.33 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 704.85 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4e2cfb9b-c6b9-4531-a1fa-d84c8d620931)) + (pin "2" (uuid 24f833a1-958f-46b3-b9ce-262ee1ba2050)) + (pin "3" (uuid 04ef5789-ec29-4608-aef5-c849980c15f4)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 261.62 387.35 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5721bf16-9688-46a8-a88c-f70d4a4ccd8f) + (property "Reference" "Q18" (id 0) (at 256.54 386.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 256.54 388.6199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 256.54 384.81 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 261.62 387.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d2442910-e016-44a7-99c5-11ff56117fc6)) + (pin "2" (uuid 238c2513-2620-4618-9268-bdd915175096)) + (pin "3" (uuid 95e80df6-c101-42d5-a84e-5c7c92891773)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 438.15 247.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 65f7b68b-fb81-4fbd-905f-2a1a0cb6985f) + (property "Reference" "Q27" (id 0) (at 443.23 246.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 443.23 248.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 443.23 245.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 438.15 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 118e26bb-b9e6-4ffd-b88f-846e2d0f8798)) + (pin "2" (uuid 2ad29ed9-0e06-444c-ab6e-4c896bb5080a)) + (pin "3" (uuid bc5c1b2f-daf7-46b0-ad57-8ec94702c128)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 480.06 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 697d7f7d-d19a-43aa-a78d-15d4aa156e0c) + (property "Reference" "R15" (id 0) (at 481.33 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 481.33 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 480.568 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 478.79 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid db066d14-b8ca-4ae7-a55a-56a331ee4587)) + (pin "2" (uuid 8eef03a8-cb8f-4d31-8804-3f8c61f87ea3)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 109.22 222.25 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a2a47ce-01a3-4a2f-bdf2-0700a2335138) + (property "Reference" "Q5" (id 0) (at 104.14 220.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 104.14 223.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 104.14 224.79 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 109.22 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 431c5a1e-0183-49b3-9a3e-22c3a41ecee6)) + (pin "2" (uuid 801f69af-99ac-424a-8e60-ad573330986f)) + (pin "3" (uuid 648baacd-f275-4b25-9d45-4bf3dd11f497)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 654.05 336.55 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 75d26f61-61a8-4353-9eec-00b0dbae3e4d) + (property "Reference" "Q48" (id 0) (at 659.13 335.2799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 659.13 337.8199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 659.13 339.09 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 654.05 336.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid afff169e-7961-43d4-bfa9-b0a6edc99765)) + (pin "2" (uuid 519a33f7-79fe-4514-9659-533a56e34af1)) + (pin "3" (uuid a2b99fd5-7a83-4eaa-86c1-8a72f1d0e659)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 506.73 374.65 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 78aed92b-2506-4a83-8ea4-16dce516397d) + (property "Reference" "Q36" (id 0) (at 501.65 373.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 501.65 375.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 501.65 372.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 506.73 374.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1ffeeb6e-e1ff-4168-83bb-8a310032cf9f)) + (pin "2" (uuid 26b97619-6082-4563-b54c-3c74ed9046a8)) + (pin "3" (uuid 000d3065-eae8-4175-a448-8006106da793)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 133.35 346.71 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 79c11a76-7eac-4d4c-9817-a13d5a3b138f) + (property "Reference" "R4" (id 0) (at 132.08 341.63 0)) + (property "Value" "300" (id 1) (at 132.08 344.17 0)) + (property "Footprint" "" (id 2) (at 132.08 346.202 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 132.08 347.98 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 01869639-17a3-41b0-b6a0-1a7f6a57d01f)) + (pin "2" (uuid 48ebf6be-e49f-48dd-b131-11ed945e9cad)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 243.84 222.25 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a36ec7b-7420-4579-ac68-e4db4de28cc0) + (property "Reference" "Q17" (id 0) (at 248.92 220.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 248.92 223.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 248.92 224.79 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 243.84 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 25685aee-4011-4f4a-b345-1bfc6b1a7a42)) + (pin "2" (uuid e2efa81c-d23a-4812-9a53-771ac4a3a21f)) + (pin "3" (uuid fa5dad95-cbea-4ff5-a489-fd2cd3459c57)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 654.05 273.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a8f526f-e986-4b69-8ac8-488b7be25620) + (property "Reference" "Q47" (id 0) (at 659.13 271.7799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 659.13 274.3199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 659.13 270.51 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 654.05 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 034a31e0-ef27-4381-89f3-d49839af2b8f)) + (pin "2" (uuid 7f727f6c-fc11-4ffd-8a68-1451deeea217)) + (pin "3" (uuid 111d4ce4-1988-4a7f-969c-6a1cd22a2b06)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 231.14 361.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7b53ff5e-04e4-4f16-bb98-fd3e4379b220) + (property "Reference" "Q16" (id 0) (at 236.22 360.6799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 236.22 363.2199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 236.22 359.41 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 231.14 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7f5f5909-9a01-4b28-97c5-8a5bcaca6dce)) + (pin "2" (uuid 1929d27a-7f14-4a6c-b5a2-54f4206b6ac2)) + (pin "3" (uuid 314264a7-29fd-45d1-ba2a-7d53f18813c3)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 476.25 361.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7f4c6a1e-3440-403f-9e7e-ee063ad07862) + (property "Reference" "Q33" (id 0) (at 481.33 360.6799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 481.33 363.2199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 481.33 359.41 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 476.25 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 583c8087-070d-4995-bfe5-6b0f8e7ab0a0)) + (pin "2" (uuid 777dc376-df12-456d-ba2c-d16b43823737)) + (pin "3" (uuid df2fe202-b237-4dbc-9e84-50628e336e64)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 416.56 420.37 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8083e925-a52d-492d-b77d-d37d8d6b3c8e) + (property "Reference" "U1" (id 0) (at 417.195 415.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 417.195 417.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 416.56 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 416.56 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a0e1010-727c-452d-ac0f-0c74205899b5)) + (pin "2" (uuid 45dcc221-7477-4fee-91e8-2a522eb9f4a3)) + (pin "3" (uuid 63ce441a-65b6-43da-8ec2-74b81dea8d38)) + (pin "4" (uuid 65902bab-84fd-4764-ae1f-08420307ea5e)) + (pin "5" (uuid 3c9b0f69-97d7-4c47-87b6-34d2d59f3052)) + (pin "6" (uuid e0fdda06-9988-4218-9f59-44c78b97f56c)) + (pin "7" (uuid 37b78b40-ae3a-498a-9027-82d03fd81600)) + (pin "8" (uuid 1e6dc459-9c2f-4024-ad51-352ab6a5be44)) + (pin "9" (uuid d08a4c49-92d9-4fab-8af6-a869f6d4866f)) + (pin "10" (uuid a27758eb-c730-4f21-9383-6f91dd5fe2bf)) + (pin "11" (uuid 5c9299da-3309-4fa3-b318-d6109809df18)) + (pin "12" (uuid ad88c0ca-a175-46b9-a406-3a85548bd4d6)) + (pin "13" (uuid ddbd1738-6894-4a20-a163-445f367f30e8)) + (pin "14" (uuid c4a16f2d-43b7-42cc-ba71-e8b7e325c9d0)) + (pin "15" (uuid 5127f1ee-1fdc-4d4f-a8c6-c2d401f4dfff)) + (pin "16" (uuid 43cd1646-45ff-41d1-bfa7-2f0859093889)) + (pin "17" (uuid 654507d3-62b6-4b31-a41d-a79ca772d797)) + (pin "18" (uuid b1e6131e-8220-48f1-906c-1025dc4b6db3)) + (pin "19" (uuid 3a31dd33-4a5b-4b71-ad68-d86cdd582966)) + (pin "20" (uuid f0560966-2a79-4df6-9686-becfccccb03f)) + (pin "21" (uuid 0c345d79-15d5-4de4-a097-4dcad7ac6d95)) + (pin "22" (uuid 4957d6bf-4321-499a-b5ec-be3f03a11596)) + (pin "23" (uuid 77f6f9a8-2374-44e9-bbff-b02718e12d5e)) + (pin "24" (uuid 2fabbd52-b730-4830-a985-07f17829b42e)) + (pin "25" (uuid 3325ca24-7f8a-45d3-874a-b573daaba7ee)) + (pin "26" (uuid 5f80cf52-7a5a-4ee4-b828-1aff11eff47c)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 345.44 311.15 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 80d04cc2-9e2b-4a8f-9f2d-d53a9c1c0dde) + (property "Reference" "Q26" (id 0) (at 350.52 309.8799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 350.52 312.4199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 350.52 313.69 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 345.44 311.15 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 608b5bc2-2144-48b9-af12-ba8b44a14e93)) + (pin "2" (uuid 5594233b-35fc-4914-b103-b625f8054dba)) + (pin "3" (uuid f670fcdf-b757-4229-aee9-787addf7fde5)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 171.45 247.65 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 81f5615a-e5f5-49d0-8d35-a3a2af4f245b) + (property "Reference" "R6" (id 0) (at 172.72 245.1099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "40k" (id 1) (at 172.72 247.6499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 171.958 246.38 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 170.18 246.38 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 630ae60c-d06c-42ec-bb64-9bc413da7b27)) + (pin "2" (uuid e1f9483c-a1f1-418f-8dbd-ab409e80da5f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 198.12 374.65 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 82df622e-3802-4992-a617-cc4686a8f785) + (property "Reference" "Q13" (id 0) (at 193.04 373.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 193.04 375.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 193.04 372.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 198.12 374.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a4d79c3a-5908-46a9-a538-c69a522136bb)) + (pin "2" (uuid c9507257-d0f5-4a1b-9805-4498640522d2)) + (pin "3" (uuid e0c24d3c-2549-41a6-9194-d043e6070210)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 49.53 260.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 85c07171-5025-4051-b0f3-c14b80f5e9d0) + (property "Reference" "U1" (id 0) (at 50.165 255.27 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 50.165 257.81 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 49.53 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 49.53 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b919bec0-63fc-4d7b-a97f-1f4804e158ad)) + (pin "2" (uuid 0ae31f2d-477a-4912-b102-f21efec49856)) + (pin "3" (uuid 1d201d75-2b35-4562-baf6-7fe4af88972a)) + (pin "4" (uuid da2b6764-1f83-469f-8dc6-2bf39e1df1bd)) + (pin "5" (uuid d00c71fd-1ccc-490e-a696-6ac651643b1c)) + (pin "6" (uuid cf30d65f-cd50-43ea-9e22-e955056659f2)) + (pin "7" (uuid 770a9691-6bf8-467d-be2a-b1d1ac01580f)) + (pin "8" (uuid 880156f1-8a35-4418-a624-d477766af8f1)) + (pin "9" (uuid 442aff20-5629-442a-a6ca-ad68b7fe4d57)) + (pin "10" (uuid a94d2d9b-ac78-4e23-a2fc-4cf94acb2197)) + (pin "11" (uuid 4178f012-713e-4693-8ce4-ca576bc28af1)) + (pin "12" (uuid a2bd9947-aa34-4c44-b0cc-cad494aa2216)) + (pin "13" (uuid 1a374b06-08ed-4df1-9af6-7897d6efb119)) + (pin "14" (uuid b669f18e-dddb-4260-8ab9-cafdd879b513)) + (pin "15" (uuid c2438c1e-58ce-4ec2-884e-643e930e5316)) + (pin "16" (uuid bccee6d0-446f-4e6d-bdeb-530405eed552)) + (pin "17" (uuid a90d06ae-9b1c-4ecc-a011-60341d9e44cc)) + (pin "18" (uuid ba28bd32-fb08-4d54-90a8-b3dfa3b1d6f9)) + (pin "19" (uuid e04be5bb-7ead-4697-9aea-a98cf3988c26)) + (pin "20" (uuid e28eb547-7319-4143-bbfa-62a4e62c378e)) + (pin "21" (uuid 5ad28145-28cd-4c19-a7b4-3f1d9417f899)) + (pin "22" (uuid 16332316-51f1-4c3a-8273-45614f13beb7)) + (pin "23" (uuid e5ad0b70-d4b8-4384-9507-34586d279905)) + (pin "24" (uuid 0b96c32f-4473-44af-92fa-8d545d1ebe03)) + (pin "25" (uuid e9800794-2f34-4360-b9b8-f59520777d7e)) + (pin "26" (uuid 37212c93-abbd-4a16-bb68-8937e20e4ce1)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 345.44 229.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 86697d06-a517-47f4-b820-90ffc25ccb40) + (property "Reference" "Q25" (id 0) (at 351.2621 228.5999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 351.2621 231.1399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 350.52 227.33 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 345.44 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5516cacd-1c82-4c18-a5f0-531ef423b23e)) + (pin "2" (uuid a14ef1a5-1209-4c9d-a6c0-51c3028a8b81)) + (pin "3" (uuid 29efcae9-881a-49e5-9693-4df9575a17c8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 723.9 274.32 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8814799d-d02f-4d06-ad5d-7004294beb8e) + (property "Reference" "U1" (id 0) (at 727.71 273.685 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 727.71 276.225 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 723.9 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 723.9 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9bb168e1-69a5-4dd7-aa5e-eb0eae6e0a20)) + (pin "2" (uuid 26c2621f-4f12-4e5e-af84-f3a851f0c6ea)) + (pin "3" (uuid a1eab817-9753-4d10-9ec0-a8be4d73233d)) + (pin "4" (uuid c5f84367-6634-4561-9e93-8e9616f3ff59)) + (pin "5" (uuid 833ebc5e-496c-4664-8e47-4506ba2a5bab)) + (pin "6" (uuid fe54ff2f-f3d0-452d-afef-ff3447058b79)) + (pin "7" (uuid e146cc10-405b-48c1-96ca-e579bfbd6efa)) + (pin "8" (uuid 0f403a6c-abe5-40d2-a8b3-8fed0f80bd6c)) + (pin "9" (uuid 195b7ba9-ea60-447a-9785-84b5384f1f0c)) + (pin "10" (uuid 5450717d-410e-4025-b302-a3a28a62d025)) + (pin "11" (uuid e3b55f4d-accd-4b54-8017-f3a2a93dc7bc)) + (pin "12" (uuid 0fa224c4-8d82-4e1f-b682-a58234c58309)) + (pin "13" (uuid c87e8061-1b41-46b7-9346-3a4a0cf343c0)) + (pin "14" (uuid 078dbdf6-ac22-4fd2-b22d-234cf35fa39c)) + (pin "15" (uuid db3db79b-57ed-44c9-8171-c7618b7c5a91)) + (pin "16" (uuid 7fc53e8d-8b0d-42f2-81da-fe4cd694c75e)) + (pin "17" (uuid 2ecebd13-6f37-4c47-8dbc-808044343268)) + (pin "18" (uuid da0b7bfc-7bfb-456b-a4e7-edeef53f8e95)) + (pin "19" (uuid 23212a4d-0239-413a-ba61-e7410ae13738)) + (pin "20" (uuid 4af75294-f6f5-4101-8d29-35f751354789)) + (pin "21" (uuid 615379a0-78fa-4b78-ab21-a01634fa2ab7)) + (pin "22" (uuid ce00ac51-48c6-4a8b-a1e6-46bffc37c334)) + (pin "23" (uuid f006dd2b-1fe5-4e12-bbe6-57bf72c15f09)) + (pin "24" (uuid 9194ba4e-a34a-4558-bff5-17fe951b5a09)) + (pin "25" (uuid 32a607db-8a24-4fa2-b037-e1b22a6ead75)) + (pin "26" (uuid dde7d673-2cc1-4607-92b6-582ba31467d0)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 116.84 273.05 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 882bceb5-1541-43e6-8615-49da8005d410) + (property "Reference" "Q6" (id 0) (at 121.92 271.7799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 121.92 274.3199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 121.92 275.59 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 116.84 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59227863-301e-4ad8-89ab-b61699259c41)) + (pin "2" (uuid 69f5e0a6-4619-4d09-9497-26f6fc442c73)) + (pin "3" (uuid d04b7352-55fd-4563-bd13-efb5ea60d8c3)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 684.53 298.45 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 88b404b9-2c79-44b1-a860-d3ffdefa4ca1) + (property "Reference" "Q50" (id 0) (at 679.45 297.1799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 679.45 299.7199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 679.45 300.99 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 684.53 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 085aa95d-5268-4f95-b42f-bcbfa7e5714c)) + (pin "2" (uuid a12dfc20-100e-4ad7-bb72-9fa3d4c3d68c)) + (pin "3" (uuid 99480881-fe84-41dd-812a-bd44398518ca)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 645.16 292.1 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 890da2ef-32ea-4c8b-80a4-ff0f3f049242) + (property "Reference" "R21" (id 0) (at 643.89 287.02 0)) + (property "Value" "50k" (id 1) (at 643.89 289.56 0)) + (property "Footprint" "" (id 2) (at 643.89 291.592 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 643.89 293.37 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid e0572e4f-2829-41f4-aea9-adf66fc57594)) + (pin "2" (uuid a6a248d0-25cc-459a-b891-43d32e9d65c5)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 78.74 247.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8aef36a6-df67-4228-9aae-f617ca510cdb) + (property "Reference" "Q1" (id 0) (at 83.82 246.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 83.82 248.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 83.82 245.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 78.74 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f9563b99-7c0c-4fe1-b3f9-937c2242858a)) + (pin "2" (uuid 6b3c6b7a-2caf-4719-a899-2cda4911955f)) + (pin "3" (uuid 469e6480-1575-4a9d-95ec-7b833370d657)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 231.14 222.25 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8e4e9389-d9c2-49cb-aa2d-02eae6216a2e) + (property "Reference" "Q15" (id 0) (at 236.22 220.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 236.22 223.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 236.22 224.79 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 231.14 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0a62c0ff-aa3e-420d-9292-8f4b00df39d7)) + (pin "2" (uuid 7d6e3d12-05fa-4d7d-8132-53123eaa3ef7)) + (pin "3" (uuid cfd3cff6-4194-4575-9814-3ca90444db00)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 492.76 346.71 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8e5289c1-b0d3-4caa-8554-8145b880d260) + (property "Reference" "R16" (id 0) (at 491.49 341.63 0)) + (property "Value" "300" (id 1) (at 491.49 344.17 0)) + (property "Footprint" "" (id 2) (at 491.49 346.202 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 491.49 347.98 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 1c8b5762-f37b-41af-9dfe-3273ea4cb809)) + (pin "2" (uuid a51c46a9-e45f-464e-9b5f-72e63527abb5)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 621.03 387.35 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 907a790c-7ce6-46a6-950a-fe6209ba739f) + (property "Reference" "Q44" (id 0) (at 615.95 386.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 615.95 388.6199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 615.95 384.81 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 621.03 387.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b2f38f33-8c27-4c9d-b2f9-a5504e555334)) + (pin "2" (uuid 6a3d48c0-f077-4bee-b490-895dfc258b32)) + (pin "3" (uuid 50b2d003-d3fd-4a83-94ab-5892c188de02)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 325.12 247.65 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 99e7d3b6-1fa2-494d-839a-6c78748961b0) + (property "Reference" "Q23" (id 0) (at 320.04 246.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 320.04 248.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 320.04 245.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 325.12 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fe1f9181-6bd5-418c-abdd-e50ac291d2e8)) + (pin "2" (uuid 896cbb2a-097f-4099-b0f5-f95ced1e3920)) + (pin "3" (uuid e31c563f-f37d-47b8-8050-95d0888ff886)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 116.84 361.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9c4a1e20-a858-4f75-8ea5-708edce04077) + (property "Reference" "Q7" (id 0) (at 121.92 360.6799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 121.92 363.2199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 121.92 359.41 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 116.84 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5f260c0b-a5b7-4c47-860c-40c097d932e8)) + (pin "2" (uuid 349a4b6f-3ce3-4e3d-94f4-9711cc3a7508)) + (pin "3" (uuid 2a603d16-fa87-46d2-80f0-faa5f042345d)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 323.85 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9f8aa6e1-b1b3-4589-bc94-65b9b773483f) + (property "Reference" "R10" (id 0) (at 325.12 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 325.12 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 324.358 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 322.58 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 02c3f113-f91f-43a9-9b54-a1912bcffa57)) + (pin "2" (uuid bd3c456d-a841-44da-96c0-32f0ec7fac92)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 49.53 375.92 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a25c84db-7ca1-4ce4-9812-fc5fbc5e28e0) + (property "Reference" "U1" (id 0) (at 50.165 370.84 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 50.165 373.38 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 49.53 375.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 49.53 375.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4c3f0215-600e-4d4c-8537-68316d482ca0)) + (pin "2" (uuid 72d22605-70ab-47bc-aee0-460ff78e9080)) + (pin "3" (uuid d2fb8d7f-a932-4e19-853a-8b09c9f8a079)) + (pin "4" (uuid ab52148a-ac09-4eef-adea-1424d945375c)) + (pin "5" (uuid 993b26a3-cc88-4b50-ab13-68e8fed0d3e0)) + (pin "6" (uuid f3cfc467-074d-4930-8f88-ac125dd6956d)) + (pin "7" (uuid f6634d88-1bac-420e-a356-477cc503ab9d)) + (pin "8" (uuid 63675679-ba52-4812-a29c-35478b2ef195)) + (pin "9" (uuid fa35edec-5e98-4127-ab14-d44ed52e26ba)) + (pin "10" (uuid b7cc05fc-baf1-4c68-a9ea-e902feabd311)) + (pin "11" (uuid 5a67cc9a-190b-4aaa-8e00-b2c820fb9a02)) + (pin "12" (uuid 6f33ffae-300b-4597-aea4-ecdb0146d730)) + (pin "13" (uuid 710d3076-9d4e-41cc-961d-3001a1bac85c)) + (pin "14" (uuid 0f07b2c5-fbe1-4120-b64e-c420580caf88)) + (pin "15" (uuid 9800a646-348e-4ea4-9297-65b2bcee9b87)) + (pin "16" (uuid e207cb9f-0dd7-4846-bfd9-9c3f3ad6bbf6)) + (pin "17" (uuid 7495c47c-46e9-46ff-9a95-7ef06b379a02)) + (pin "18" (uuid a26bd6df-35b2-49c8-9f01-4cf315502d55)) + (pin "19" (uuid 4df74588-73c4-4d7b-b196-aa6ab5b03be4)) + (pin "20" (uuid 1436ee56-8518-460e-bf2c-1f72e2462b51)) + (pin "21" (uuid 7c35aefa-697e-417c-85e5-091b82ee67a9)) + (pin "22" (uuid 8fe192a5-001f-466f-bff0-f59b78bc3c75)) + (pin "23" (uuid 5cf30404-29b6-457f-8694-008cb6201b4c)) + (pin "24" (uuid 88cc70a5-5013-40a4-9deb-98eaa8c681ac)) + (pin "25" (uuid 6f2f470c-bc1f-4d0f-979e-359d7f0b2cca)) + (pin "26" (uuid 68e5d73b-02f8-4800-a396-d5f236858e9c)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 443.23 361.95 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a5e88b48-2bbb-40ab-bb60-2d5794c2da9f) + (property "Reference" "Q29" (id 0) (at 438.15 360.6799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 438.15 363.2199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 438.15 359.41 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 443.23 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d32405bb-e604-4eac-8b7b-e4455da9b7bb)) + (pin "2" (uuid 7f1a341f-1948-43fd-bbff-925568a1c678)) + (pin "3" (uuid e84ebcd7-8ca7-4dac-abaf-64481807ea29)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 505.46 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a625ef41-753e-4311-bb14-651fce1013e8) + (property "Reference" "R17" (id 0) (at 506.73 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "5k" (id 1) (at 506.73 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 505.968 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 504.19 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 5bd32dfa-d5c3-4677-ad56-cff5d87ec084)) + (pin "2" (uuid e4d83700-0d4a-493c-a1f7-6607a7ec941b)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 379.73 274.32 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a6f3f968-0472-4643-a475-86a19928f1dd) + (property "Reference" "U1" (id 0) (at 383.54 273.685 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 383.54 276.225 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 379.73 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 379.73 274.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eaf3b95e-d09b-404d-83c9-9c69e4834b76)) + (pin "2" (uuid bd945cc0-6b0c-4d69-91bb-d46d8e8d3ea2)) + (pin "3" (uuid ca0911cd-da4d-478e-8c1e-3ed52d937ffe)) + (pin "4" (uuid 2717cb61-757f-4498-8088-3037fe8a4986)) + (pin "5" (uuid 618cee3c-423e-48fa-9afa-cad84ee76dea)) + (pin "6" (uuid 26312807-bdd5-4fc9-8c24-30e3600e4f1f)) + (pin "7" (uuid 8269388a-b8c4-46aa-9dfc-8d1bdac3bafd)) + (pin "8" (uuid 27c9beb4-1534-4f32-8c13-2f5d2db4531c)) + (pin "9" (uuid 47117737-3a38-47fb-b8e8-6829330cf974)) + (pin "10" (uuid beecef5a-3d46-4f02-9157-9ee939ba960d)) + (pin "11" (uuid 54d5d589-f366-4bb0-8fe3-7891fa930213)) + (pin "12" (uuid d7ada353-10d7-48d2-bfcd-e4d8663156de)) + (pin "13" (uuid e57f9ca4-ecaf-44c4-a4c7-40a14793437b)) + (pin "14" (uuid cf6541af-2c24-4fe4-aaa5-f5acf36a8dad)) + (pin "15" (uuid 31d9aaf2-938c-4ec4-a243-57a8a0f0c955)) + (pin "16" (uuid 9ca22cb1-e759-4a80-89d6-632f19a94007)) + (pin "17" (uuid b00ef5ac-17bc-4563-9bc9-6b777b05c690)) + (pin "18" (uuid 66d822d7-7daf-47a4-9077-52237d0596c0)) + (pin "19" (uuid e23dca03-15ac-42e8-a9d8-f9ca67297387)) + (pin "20" (uuid 19e02046-a343-4206-86a5-7b94225ac3e2)) + (pin "21" (uuid 3e57ca3a-3146-45d1-b11d-325293ab55fc)) + (pin "22" (uuid a17e8095-1037-41b8-8e6c-7c42effcad58)) + (pin "23" (uuid b71a3873-dbe0-402f-bbc7-df319840e229)) + (pin "24" (uuid 937e1f53-19ca-4677-bdd5-966fc77264b5)) + (pin "25" (uuid 325e8bdb-90af-4980-9ba2-3904a9116eed)) + (pin "26" (uuid c2c4ffd9-c113-49ca-9a89-1923c76874af)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 294.64 273.05 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a879b04c-afe2-4af1-a0a9-aede23c43c8b) + (property "Reference" "Q21" (id 0) (at 299.72 271.7799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 299.72 274.3199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 299.72 270.51 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 294.64 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 093038bf-0d70-4630-8589-dfe302d07f8a)) + (pin "2" (uuid 7d414057-9249-4cdb-b572-406252438a8c)) + (pin "3" (uuid 956b85fb-0e61-493b-927a-87bf7d851a2d)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 142.24 222.25 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b4408694-3bb9-4351-a97b-404a90575a43) + (property "Reference" "Q9" (id 0) (at 147.32 220.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 147.32 223.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 147.32 224.79 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 142.24 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c8aebbf8-1808-4e1e-94c3-1c8d5456da33)) + (pin "2" (uuid a13e9c59-17ce-4fb2-8972-af543aecef10)) + (pin "3" (uuid fd52d064-3974-450f-894c-9732615d9a90)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 590.55 222.25 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b5eccf45-b122-45cd-838e-d31456a256f1) + (property "Reference" "Q41" (id 0) (at 595.63 220.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 595.63 223.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 595.63 224.79 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 590.55 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5c9d9f50-8799-41e9-9707-a3d5b63e44ac)) + (pin "2" (uuid 0fb23de3-95e5-4440-8a40-b1d7c3a181ba)) + (pin "3" (uuid 7d98f0c1-c6a4-4c67-a4e7-65eb81337c53)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 218.44 347.98 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b6f6cad3-fbc0-462e-a0fa-b0c4c309cf0e) + (property "Reference" "Q14" (id 0) (at 223.52 346.7099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 223.52 349.2499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 223.52 345.44 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 218.44 347.98 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 469364c8-96ce-4446-bcbf-be54fa7709a1)) + (pin "2" (uuid 8b6f5947-f4c2-465e-bab5-6015a581bd1a)) + (pin "3" (uuid cb0a82be-d9bb-414f-b268-d7f3864c8a4a)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 294.64 336.55 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b78220f6-e78e-47af-893b-e5ae0c98d2ef) + (property "Reference" "Q22" (id 0) (at 299.72 335.2799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 299.72 337.8199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 299.72 339.09 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 294.64 336.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a6d1a79e-2ea3-4d6c-a503-cefd6cbb42e3)) + (pin "2" (uuid 793773d6-21b1-4ef6-aa7c-07d894c2a05a)) + (pin "3" (uuid 6522fe02-f0bc-40f3-9b3b-49b554ce6afb)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 408.94 247.65 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b92ccfcc-8b15-45b4-8095-06798d7da5f0) + (property "Reference" "U1" (id 0) (at 409.575 242.57 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 409.575 245.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 408.94 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 408.94 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 98f136e7-cf96-42e7-aab0-26a95ece9d93)) + (pin "2" (uuid 0b69e438-5138-477f-bcf8-0aaa584df8b8)) + (pin "3" (uuid 9116337f-51b1-4684-9ea9-326c453f8eda)) + (pin "4" (uuid 1dc23c9b-3bdd-494b-a93c-97d5cf4f3feb)) + (pin "5" (uuid fe3a3fd3-b44f-4dbb-b28e-81d9b8831a62)) + (pin "6" (uuid 8729f1b8-dcd8-4630-9309-3064359026d2)) + (pin "7" (uuid 0cd3174a-94ac-4257-a119-c92de6ff5bb7)) + (pin "8" (uuid 36e5dc43-9434-478e-babd-cf925160dec7)) + (pin "9" (uuid b43aa82f-0d68-4513-9459-20aba87224b9)) + (pin "10" (uuid 8e396fea-fdb2-4b7a-8d40-befbe2edbc1d)) + (pin "11" (uuid 630ff10d-03ec-4090-8ef5-a55bc08668a4)) + (pin "12" (uuid 25d1b3e3-a81e-4e78-b65b-61c100c6d4c1)) + (pin "13" (uuid cb19c618-9130-4b02-be40-163eb426844b)) + (pin "14" (uuid 68917ff0-2352-4379-b883-afbb790493fc)) + (pin "15" (uuid 8c0e495a-cbfb-4917-bc4a-aef2a72ea5a6)) + (pin "16" (uuid 987f63a8-154d-4eb1-95cd-3b67d4a4c12a)) + (pin "17" (uuid 9f8ad8ca-433a-490a-ac84-a3c98a980f5b)) + (pin "18" (uuid dc754cc6-d8a8-4035-887c-5a16e0ee0bfd)) + (pin "19" (uuid a248d3d7-76e0-4869-9939-025c2667866d)) + (pin "20" (uuid daca2449-ce93-4717-b1e0-f938531ec2db)) + (pin "21" (uuid def792dc-d2bd-49ad-8796-28359da31330)) + (pin "22" (uuid 2b960424-fffa-4068-b99a-8b0659e2ed28)) + (pin "23" (uuid ece32b43-7abe-41ee-98dc-4ab32842bbd0)) + (pin "24" (uuid a89ac884-a57b-4d00-beea-41d502a1c7b9)) + (pin "25" (uuid ddda4ded-ce6f-4d4e-9299-0fff6bc04967)) + (pin "26" (uuid 1b4de117-3863-4bf2-bba7-819e70d53415)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 594.36 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b9de4551-f4c8-4d9f-9a63-6632a5c4ab16) + (property "Reference" "R20" (id 0) (at 595.63 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "100" (id 1) (at 595.63 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 594.868 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 593.09 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 4bbeb64a-b9f9-40ba-bd2e-bee6294cfb8d)) + (pin "2" (uuid 78f4cebe-8652-4baf-9b79-e8e652feb08d)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 120.65 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb1a975f-2165-45f7-afc9-4b23065c9b6b) + (property "Reference" "R3" (id 0) (at 121.92 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 121.92 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 121.158 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 119.38 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid ee0cd77c-1e28-4555-9016-475298e01699)) + (pin "2" (uuid 9fdaa6dc-6e89-4864-83c1-6b5a74810e8c)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 285.75 292.1 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bb4855be-8cb9-48bf-b13f-9c3f4ddd7e11) + (property "Reference" "R9" (id 0) (at 284.48 287.02 0)) + (property "Value" "50k" (id 1) (at 284.48 289.56 0)) + (property "Footprint" "" (id 2) (at 284.48 291.592 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 284.48 293.37 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 8420e758-38f5-4155-b07d-234ab64f72f2)) + (pin "2" (uuid 4e8232b0-f07c-4bbb-ac97-0642c383cd3f)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 82.55 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c52ee523-ef5e-4475-a813-62248cb3c1d3) + (property "Reference" "R1" (id 0) (at 83.82 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 83.82 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 83.058 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 81.28 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 12d5518b-b5ed-4368-a3cc-21843dca8768)) + (pin "2" (uuid 1a69e484-ebf4-474a-b312-db468fb3711a)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 683.26 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c733ee98-4a49-4311-b3f8-26d8ddc2d896) + (property "Reference" "R22" (id 0) (at 684.53 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 684.53 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 683.768 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 681.99 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 7c3dd0b4-f89c-4c3e-8c7a-37526b71e310)) + (pin "2" (uuid 402048c0-6684-4074-9451-e9f621a320de)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 501.65 222.25 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cbbce341-5234-4249-9098-0d34e7dca14d) + (property "Reference" "Q35" (id 0) (at 506.73 220.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 506.73 223.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 506.73 224.79 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 501.65 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d93e405d-feba-4185-935a-a90e5404b823)) + (pin "2" (uuid 12a8cafa-c6de-43bf-b85d-312a780b2932)) + (pin "3" (uuid 60328f0c-4b1e-4336-bcab-f1daf38054a0)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 281.94 336.55 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d1ef130a-f93d-4e85-897b-b253c2cd4c4f) + (property "Reference" "Q20" (id 0) (at 287.02 335.2799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 287.02 337.8199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 287.02 339.09 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 281.94 336.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 46a28bf7-b939-4a3b-b8d3-dc5f54484ea5)) + (pin "2" (uuid d68b6f78-bd4c-4ae7-bbef-725b0d1d95ce)) + (pin "3" (uuid ebf98d09-a4fc-45b6-a720-be39b6b26d94)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 121.92 247.65 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d31dcaff-e28f-4d47-b6c6-41399b2239b6) + (property "Reference" "Q8" (id 0) (at 116.84 246.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 116.84 248.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 116.84 245.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 121.92 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 68e7251e-3a8b-4b41-8c77-d9dd32abe892)) + (pin "2" (uuid 05a66ea5-e972-48e6-a765-fea165284994)) + (pin "3" (uuid f633d81f-5984-439f-b0ef-b8cc5cbc572c)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 441.96 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3dcef3b-e9be-4fe2-9e96-79ba0cf91112) + (property "Reference" "R13" (id 0) (at 443.23 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 443.23 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 442.468 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 440.69 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid b1b92ec2-6397-4733-8451-424f3f027ed6)) + (pin "2" (uuid fc622e8c-2c01-44b3-adbf-776972cbe4b5)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 172.72 222.25 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d7c2f730-80f7-4821-8337-4e8f29b460d0) + (property "Reference" "Q12" (id 0) (at 167.64 220.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 167.64 223.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 167.64 224.79 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 172.72 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a2727a6a-faf1-4979-95aa-3bdee37af942)) + (pin "2" (uuid 1ac1861e-d692-438b-9c4d-7917d17cb307)) + (pin "3" (uuid 455b1b89-8553-448f-b431-a6ebdca42813)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 481.33 247.65 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9069143-2055-474b-9102-5483f20d96a3) + (property "Reference" "Q34" (id 0) (at 476.25 246.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 476.25 248.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 476.25 245.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 481.33 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 58cb68d0-e16e-4018-b48b-2569b1faadd5)) + (pin "2" (uuid 77205d13-f4c9-4c82-8975-2cc0880aa60c)) + (pin "3" (uuid 05264974-8024-415c-97e7-6213f1b727bd)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 628.65 260.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9372d8e-6105-4fc8-89c8-096045519509) + (property "Reference" "Q45" (id 0) (at 633.73 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 633.73 261.6199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 633.73 257.81 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 628.65 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 883cfd96-0dc2-413a-9412-c8a79704248a)) + (pin "2" (uuid 85ad1917-5429-4834-9f70-b48a842de066)) + (pin "3" (uuid 11847d23-728a-4dcd-82b6-3a86b2728713)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 476.25 273.05 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9f18917-3475-4c04-94d5-a8fbc1702a0e) + (property "Reference" "Q32" (id 0) (at 481.33 271.7799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 481.33 274.3199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 481.33 275.59 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 476.25 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c6d07826-d98f-4719-ac74-3fbce444c247)) + (pin "2" (uuid d7731fe1-c72a-4b77-9cf2-c7af9fa1afa5)) + (pin "3" (uuid 37766630-40b2-4545-a118-40a8e2d6a9f6)) + ) + + (symbol (lib_id "eSim_Devices:capacitor") (at 542.29 307.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da1d8062-b26f-4e55-95d1-c63550a9a76a) + (property "Reference" "C2" (id 0) (at 546.1 306.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "30p" (id 1) (at 546.1 308.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 543.2552 311.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 542.29 307.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f85c5075-0ed3-40b5-80d3-fdc87577a77b)) + (pin "2" (uuid 56e9d214-3b2f-4e8c-b2de-f2a31ae9a9ac)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 532.13 222.25 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid da82bcd9-bc5c-4665-9c2d-35e7f2fc1335) + (property "Reference" "Q38" (id 0) (at 527.05 220.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 527.05 223.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 527.05 224.79 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 532.13 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4c3116b3-8110-4b7d-a06e-a87e85d1db62)) + (pin "2" (uuid 431e8c2f-5793-4c39-aeda-ab6716e49826)) + (pin "3" (uuid 2ab69611-89df-44b8-8cb1-932be1e98d7f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 83.82 273.05 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid decbb329-19ee-49aa-8d41-816b4954f48c) + (property "Reference" "Q2" (id 0) (at 78.74 271.7799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 78.74 274.3199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 78.74 275.59 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 83.82 273.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b01d5cd2-90a3-4664-b423-4ee136b84782)) + (pin "2" (uuid dd874871-0ce7-4b6f-8d59-9fc7ee294636)) + (pin "3" (uuid 33cecb6b-1c4f-4ec7-afb8-0aa965151afb)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 147.32 374.65 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid df44cdff-8d40-41ff-bf99-310540c15c59) + (property "Reference" "Q10" (id 0) (at 142.24 373.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 142.24 375.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 142.24 372.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 147.32 374.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5bb7ea84-9b50-48e8-b716-8144d304ce5e)) + (pin "2" (uuid 847a7990-9021-40ce-a803-7abc9c6e3c7c)) + (pin "3" (uuid e1629ee9-5640-4264-b3bb-0e43bf78794a)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 530.86 247.65 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e157db50-4998-4742-adc8-08c6df0779bc) + (property "Reference" "R18" (id 0) (at 532.13 245.1099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "40k" (id 1) (at 532.13 247.6499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 531.368 246.38 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 529.59 246.38 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid dcaaa0e2-cc16-4374-83b3-c8079f77d79f)) + (pin "2" (uuid 19b28135-49b1-4bd4-bce1-dbf46022993e)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 325.12 298.45 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e2a347b0-b356-449a-9bc6-0838da8f4c66) + (property "Reference" "Q24" (id 0) (at 320.04 297.1799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 320.04 299.7199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 320.04 300.99 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 325.12 298.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aedfea85-d96e-4b50-987b-406475cdcd6c)) + (pin "2" (uuid 2a4bb213-e641-4bfb-b55d-3cb9bef09a53)) + (pin "3" (uuid 6222feb4-a6a0-4e35-8e64-56cfa33252de)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 557.53 374.65 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e4565f76-506b-4e62-ba6d-5ce7e330010c) + (property "Reference" "Q39" (id 0) (at 552.45 373.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 552.45 375.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 552.45 372.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 557.53 374.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 19468e2e-9f20-47e0-8cc5-f06df18b4e7c)) + (pin "2" (uuid 751b9449-68f3-41c2-8890-86ee021f924a)) + (pin "3" (uuid 2f64af08-6d8c-454b-b330-07e401c1d562)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 49.53 247.65 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e4578fe9-f5c1-4e1e-b076-f8923729bbed) + (property "Reference" "U1" (id 0) (at 50.165 242.57 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 50.165 245.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 49.53 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 49.53 247.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a854f675-aaa2-4d55-ae5f-841d9a75e7a8)) + (pin "2" (uuid b02d4341-4511-437e-bdd3-e18794a2f4b1)) + (pin "3" (uuid dee3b683-e623-4773-9172-09452f95a6a2)) + (pin "4" (uuid 0798de20-7de1-4d82-9402-b6dbe1bcb0c7)) + (pin "5" (uuid 45be31da-6991-47b0-92cb-7e336bbe1427)) + (pin "6" (uuid 40d58613-408f-4c00-bf2b-4bccb7cdf214)) + (pin "7" (uuid 5db225d0-7481-481e-9f84-739ebc7054d0)) + (pin "8" (uuid 6166dfd4-bd27-4b82-941c-c466b2b0f0d4)) + (pin "9" (uuid d5272189-4096-4d4f-b119-46419dcd65ea)) + (pin "10" (uuid 76fc4a67-cd81-43ad-b5fb-b3f859618733)) + (pin "11" (uuid b9f9dfcb-9807-4016-b073-571a8205d928)) + (pin "12" (uuid b180cfd7-d265-4ed1-99b5-43cd0c57ef80)) + (pin "13" (uuid 3ca8b4ae-78cf-4f91-b8b6-4c506a7aac1d)) + (pin "14" (uuid 6e5f5582-8e47-4be9-a14f-984ba5626888)) + (pin "15" (uuid 71ee16e1-bbef-40d7-bee2-9d6b7f42fd9e)) + (pin "16" (uuid 68a5d19a-1453-4943-bce9-f19c60bea6bd)) + (pin "17" (uuid e759c3ab-f51c-4aa1-ab3d-06edfaa464e7)) + (pin "18" (uuid 975d2f28-219b-42a7-aec5-b4c870f130c8)) + (pin "19" (uuid b4caca47-3d46-4de4-a5ec-4226c68cf7f3)) + (pin "20" (uuid b65ab384-9adf-4564-b748-2e40a9b76c52)) + (pin "21" (uuid bfd37051-56d2-45ba-85bc-2a683b50eee7)) + (pin "22" (uuid 1fcf65ee-fc3b-4662-8dbb-bb4c0ec1d438)) + (pin "23" (uuid 2805a1f9-be02-4dbe-bcbb-e77c4f261736)) + (pin "24" (uuid 0deda612-81e1-4035-9249-b36f40760922)) + (pin "25" (uuid 3103ea22-a443-41e7-b588-332ee1eb11d5)) + (pin "26" (uuid 9718f2a4-353a-4555-a7d3-329cee6f5552)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 234.95 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e4744c7d-91a2-4243-be80-512b06e6898d) + (property "Reference" "R8" (id 0) (at 236.22 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "100" (id 1) (at 236.22 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 235.458 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 233.68 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid ed7e03b4-7d52-46c9-adb7-d4d678759ac1)) + (pin "2" (uuid 7a7b8953-af6c-46d2-aa49-d4bb9fe05aea)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 52.07 194.31 0) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e72a96a8-9ed8-47ff-a7ef-7a20728a64cc) + (property "Reference" "U1" (id 0) (at 52.705 189.23 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 52.705 191.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 52.07 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 52.07 194.31 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b1125474-7baf-48a1-b4e1-b11a7f3a3412)) + (pin "2" (uuid 38d64f05-3650-4084-b646-2b726fb23471)) + (pin "3" (uuid ffcd80ea-9782-42a6-a940-5af4f449f9e7)) + (pin "4" (uuid 0315d31c-a145-4758-a900-78d9777d3e92)) + (pin "5" (uuid 66b434f2-83dc-417f-a45a-622226ad69db)) + (pin "6" (uuid fd7cc5c4-dfc8-40e9-88d6-6284e13bfca7)) + (pin "7" (uuid fd6a1809-8742-473d-9f8a-79dccca3e423)) + (pin "8" (uuid b9a59551-44e1-4f7e-9c5d-7c34f84f4589)) + (pin "9" (uuid 4a63b7bc-227d-417f-ad3b-92a2a6acb586)) + (pin "10" (uuid 44d857ac-2b26-4ac3-a210-868b413b41a4)) + (pin "11" (uuid dc235fbd-18f9-4941-9ea9-25ea2f6c226d)) + (pin "12" (uuid e90cf36d-6112-462e-9f5e-ffd2c1985cfe)) + (pin "13" (uuid 0943c8b8-8f59-49bf-b644-05fcbcbacca7)) + (pin "14" (uuid 9e61f61f-259c-448e-b5a2-8a6c69caf695)) + (pin "15" (uuid 1b2ec371-3e1d-47ac-9ed3-4da1110be5b3)) + (pin "16" (uuid 443c9d5d-2183-4942-907a-fb6cef382535)) + (pin "17" (uuid b3d56689-8054-4add-9780-b42103b6c7ae)) + (pin "18" (uuid 31ef855e-171c-4366-bfbb-009788778049)) + (pin "19" (uuid 56e7ee9b-6bd6-4ecf-851f-a441ebd56256)) + (pin "20" (uuid 25096c68-3444-4271-96da-a5f1dcc4aa7a)) + (pin "21" (uuid c6252c78-1895-4a36-9c9b-54877af072d2)) + (pin "22" (uuid 48e661c5-df82-4fa3-b651-5a5584bd4896)) + (pin "23" (uuid 9bf8569a-eaa3-4cd1-afbf-d03c0499a05f)) + (pin "24" (uuid 60e6890b-0c90-4160-ac76-c6246ab482ad)) + (pin "25" (uuid ce7b734d-0ed8-4c6b-a599-7e59ef6d0875)) + (pin "26" (uuid 988fe992-bf8a-45b3-bab4-f570830582d4)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 603.25 222.25 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e766858e-92ef-496e-9b8b-09add89f9d1e) + (property "Reference" "Q43" (id 0) (at 608.33 220.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 608.33 223.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 608.33 224.79 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 603.25 222.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5a35a204-3f8c-4588-8958-4b6dca9f0a8f)) + (pin "2" (uuid 4264c0ce-0d4f-4c1d-8c6b-acfb5925730a)) + (pin "3" (uuid 0455dbfe-ef03-4eee-aa91-72518c92ff43)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 408.94 375.92 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8e0ef93-f863-44ea-ad59-9c3cfb7c7333) + (property "Reference" "U1" (id 0) (at 409.575 370.84 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 409.575 373.38 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 408.94 375.92 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 408.94 375.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6502eeae-5294-4617-add7-8ccca37c96c1)) + (pin "2" (uuid f21c3e3a-8689-4fcb-96eb-93e244f90e32)) + (pin "3" (uuid b6828319-4970-4dfd-830f-87a9bcededb3)) + (pin "4" (uuid 19b25e06-1244-4eeb-881f-86c119872f32)) + (pin "5" (uuid dc8fe359-1a2c-4a80-9afb-c41f2de00776)) + (pin "6" (uuid 6d463fef-c257-4b67-8451-d846f1ebceab)) + (pin "7" (uuid b9991483-09cc-429d-acbf-9dc1e1324815)) + (pin "8" (uuid 8dd3958d-a9ac-4830-a2c5-1606497db959)) + (pin "9" (uuid 84a494e4-ada0-40af-8b0b-ef3237383911)) + (pin "10" (uuid 82a992e6-2238-4e75-b175-f1717334e669)) + (pin "11" (uuid 5aa947eb-336a-4bfc-bbbc-32a5c58b3862)) + (pin "12" (uuid 082bc5f8-ef14-4a3e-942d-9bdcb43510e1)) + (pin "13" (uuid 7dd89c8a-676c-490f-a799-0afa39b4325a)) + (pin "14" (uuid e8a3863b-4fb1-4f3c-a68c-88e118716d0c)) + (pin "15" (uuid 73a22c30-350d-460a-8369-6c4466a0bee7)) + (pin "16" (uuid 4f684281-9f17-4af1-bcc7-6834b0fb2d9f)) + (pin "17" (uuid c816a738-977b-4116-9996-d3fd55b3881a)) + (pin "18" (uuid 1eeff0ea-d721-410e-854f-0955eb5c5408)) + (pin "19" (uuid c857ba23-0750-419e-bfd6-41673d39712b)) + (pin "20" (uuid 45c258ec-dc82-47d2-8f0d-ffda594a9915)) + (pin "21" (uuid 2a51b87b-5311-4286-bf48-8250df844e5b)) + (pin "22" (uuid 10f51676-f14c-4779-973c-d5ea02e69a2b)) + (pin "23" (uuid 6dad1421-5a0f-4cc8-a248-f619f8b07c76)) + (pin "24" (uuid ae1c22ad-9f57-40c5-8221-a00d70ce4dcc)) + (pin "25" (uuid 19b3aae6-1065-4517-9e1f-e26f40272608)) + (pin "26" (uuid b3325763-7ff9-4920-9e2d-17e768851c6b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 641.35 336.55 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e8ead434-0c40-43f3-a246-8719e4c1345f) + (property "Reference" "Q46" (id 0) (at 646.43 335.2799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 646.43 337.8199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 646.43 339.09 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 641.35 336.55 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 97a2ec65-86b2-41e7-93d2-4f487eb57e23)) + (pin "2" (uuid 17636dce-3aa1-4d5e-a1ec-155f0c1d67e2)) + (pin "3" (uuid 069c2a4f-286c-4195-87a1-733a2809ee87)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 581.66 387.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid eb240d61-cc3f-4e7f-8ce5-009797219988) + (property "Reference" "R19" (id 0) (at 582.93 384.8099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 582.93 387.3499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 582.168 386.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 580.39 386.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid ea047b95-49df-4924-8729-2b79589cfcdc)) + (pin "2" (uuid 30384f87-942c-4f76-a5f8-d62937f8b475)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 346.71 257.81 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ecf69d0f-d916-4eb5-bd5b-c8263e505c6b) + (property "Reference" "R11" (id 0) (at 350.52 257.8099 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "27" (id 1) (at 350.52 260.3499 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 346.202 259.08 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 347.98 259.08 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 57ae66a8-3192-4c43-85e1-168691da50d6)) + (pin "2" (uuid 00fb08eb-aab2-4460-98ae-540ffac5b00e)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 269.24 260.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f17d8d7f-daab-4282-be0c-a266f071be77) + (property "Reference" "Q19" (id 0) (at 274.32 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 274.32 261.6199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 274.32 257.81 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 269.24 260.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 218fa29a-bcb0-4d74-a3e9-a9dd035f3689)) + (pin "2" (uuid bdd6deb6-c62a-4daa-a112-0fe638da4a99)) + (pin "3" (uuid cfb2dd0f-8f6d-4202-aad2-2425c63ff8f6)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 167.64 374.65 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb5e057e-b86f-4d04-8881-ea38c3ce71a4) + (property "Reference" "Q11" (id 0) (at 172.72 373.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 172.72 375.9199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 172.72 372.11 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 167.64 374.65 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aa46a56a-9540-4be6-9a21-e8ddb667c845)) + (pin "2" (uuid 13ab4a13-c2c0-41b9-a1f3-b15d9ad0c2bc)) + (pin "3" (uuid dc5d75dd-a57c-4227-aad1-b588d95f590d)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 590.55 361.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe1279af-f3f2-4f96-a98e-4e88ce8eeb1d) + (property "Reference" "Q42" (id 0) (at 595.63 360.6799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 595.63 363.2199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 595.63 359.41 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 590.55 361.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3cfd5ec9-8a59-4d12-b8c0-91b629c226a6)) + (pin "2" (uuid bb924a4e-e08a-4aa7-8c91-7c546d5cf20b)) + (pin "3" (uuid f0c22a8d-32f7-4b00-a537-32d374f3c56a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 480.06 420.37 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fec20790-6961-4707-89b4-7c4dc2e02a09) + (property "Reference" "U1" (id 0) (at 480.695 415.29 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 480.695 417.83 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 480.06 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 480.06 420.37 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 66fa9093-d36d-4905-b297-8fdb3ddac5e7)) + (pin "2" (uuid 2f3ad884-91c9-45b8-bf3e-79dd396211d4)) + (pin "3" (uuid a7c7da00-34ed-48cf-80cd-fc816f232e72)) + (pin "4" (uuid eddeae39-4801-4199-bfb7-9dae73fff3ec)) + (pin "5" (uuid ea9026b4-6cfd-409c-8256-630033135ad7)) + (pin "6" (uuid 69f6c990-187c-4e27-a5af-bc527463bad0)) + (pin "7" (uuid e97b3311-a042-4531-930d-003f8aa0b8d6)) + (pin "8" (uuid 2264bf00-d53a-47e0-b7c3-c881d3fdbde1)) + (pin "9" (uuid c1e89c01-76e8-48d4-b936-3bdddfcd3e8c)) + (pin "10" (uuid e0784f51-ffe8-4fff-804c-0663c0373d4f)) + (pin "11" (uuid ef74b4e6-04bc-4dc9-959a-42f37e556fe5)) + (pin "12" (uuid dc4ecb41-ac3b-4909-862e-5cdd84e18a23)) + (pin "13" (uuid 911f0c89-095a-46a6-9810-4eef8676041d)) + (pin "14" (uuid 413b4ae8-a6aa-498e-a72a-66ef2281fb3c)) + (pin "15" (uuid a50e5052-0e68-4c98-9745-398ff46869dd)) + (pin "16" (uuid d04112d3-c8ab-4bc1-9dfd-286957f03009)) + (pin "17" (uuid c5ed7a9d-41ec-466c-b412-940391b6b7ac)) + (pin "18" (uuid b34de6df-856d-46d3-95a9-16e72bb72257)) + (pin "19" (uuid 5c9f4f7c-19e6-444d-a280-259a5f4cbd63)) + (pin "20" (uuid 7503429c-7111-4d7c-9008-6babe0d4a0f0)) + (pin "21" (uuid f05e3aa6-e65b-48fd-a204-6aefb3292a46)) + (pin "22" (uuid ec55f6d6-39a9-4366-8639-b14400b945c9)) + (pin "23" (uuid c760f7e5-874c-4fcb-b316-5ca5773fe372)) + (pin "24" (uuid 815dcca8-1ae5-40f4-9ee0-7a9c95b863f3)) + (pin "25" (uuid 4fc96b00-3a3f-4356-aa1e-6ea631ef3449)) + (pin "26" (uuid d298e30c-ff87-44de-a5b8-849aa4ea705c)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/1295e10e-4907-46bb-9d39-69041373cdb8" + (reference "C1") (unit 1) (value "30p") (footprint "") + ) + (path "/da1d8062-b26f-4e55-95d1-c63550a9a76a" + (reference "C2") (unit 1) (value "30p") (footprint "") + ) + (path "/8aef36a6-df67-4228-9aae-f617ca510cdb" + (reference "Q1") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/decbb329-19ee-49aa-8d41-816b4954f48c" + (reference "Q2") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/0008018a-a726-4195-a5b5-e1c05e7e867f" + (reference "Q3") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/142537f8-4802-4c26-b86a-3e82c545e308" + (reference "Q4") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/6a2a47ce-01a3-4a2f-bdf2-0700a2335138" + (reference "Q5") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/882bceb5-1541-43e6-8615-49da8005d410" + (reference "Q6") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/9c4a1e20-a858-4f75-8ea5-708edce04077" + (reference "Q7") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d31dcaff-e28f-4d47-b6c6-41399b2239b6" + (reference "Q8") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b4408694-3bb9-4351-a97b-404a90575a43" + (reference "Q9") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/df44cdff-8d40-41ff-bf99-310540c15c59" + (reference "Q10") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/fb5e057e-b86f-4d04-8881-ea38c3ce71a4" + (reference "Q11") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d7c2f730-80f7-4821-8337-4e8f29b460d0" + (reference "Q12") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/82df622e-3802-4992-a617-cc4686a8f785" + (reference "Q13") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b6f6cad3-fbc0-462e-a0fa-b0c4c309cf0e" + (reference "Q14") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/8e4e9389-d9c2-49cb-aa2d-02eae6216a2e" + (reference "Q15") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/7b53ff5e-04e4-4f16-bb98-fd3e4379b220" + (reference "Q16") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/7a36ec7b-7420-4579-ac68-e4db4de28cc0" + (reference "Q17") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/5721bf16-9688-46a8-a88c-f70d4a4ccd8f" + (reference "Q18") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/f17d8d7f-daab-4282-be0c-a266f071be77" + (reference "Q19") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d1ef130a-f93d-4e85-897b-b253c2cd4c4f" + (reference "Q20") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/a879b04c-afe2-4af1-a0a9-aede23c43c8b" + (reference "Q21") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b78220f6-e78e-47af-893b-e5ae0c98d2ef" + (reference "Q22") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/99e7d3b6-1fa2-494d-839a-6c78748961b0" + (reference "Q23") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/e2a347b0-b356-449a-9bc6-0838da8f4c66" + (reference "Q24") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/86697d06-a517-47f4-b820-90ffc25ccb40" + (reference "Q25") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/80d04cc2-9e2b-4a8f-9f2d-d53a9c1c0dde" + (reference "Q26") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/65f7b68b-fb81-4fbd-905f-2a1a0cb6985f" + (reference "Q27") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/205466b0-9b7d-4b61-a413-291a97c8079e" + (reference "Q28") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/a5e88b48-2bbb-40ab-bb60-2d5794c2da9f" + (reference "Q29") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/2e833af0-49bb-44ef-a547-b7a972d86ade" + (reference "Q30") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/2701d180-6cfe-41d5-a03d-f145ff0fd179" + (reference "Q31") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/d9f18917-3475-4c04-94d5-a8fbc1702a0e" + (reference "Q32") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/7f4c6a1e-3440-403f-9e7e-ee063ad07862" + (reference "Q33") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d9069143-2055-474b-9102-5483f20d96a3" + (reference "Q34") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/cbbce341-5234-4249-9098-0d34e7dca14d" + (reference "Q35") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/78aed92b-2506-4a83-8ea4-16dce516397d" + (reference "Q36") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/32047397-d163-44c2-8566-7572c1510d95" + (reference "Q37") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/da82bcd9-bc5c-4665-9c2d-35e7f2fc1335" + (reference "Q38") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/e4565f76-506b-4e62-ba6d-5ce7e330010c" + (reference "Q39") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/06540ff7-e08c-4576-8d13-7fee08d32ab2" + (reference "Q40") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b5eccf45-b122-45cd-838e-d31456a256f1" + (reference "Q41") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/fe1279af-f3f2-4f96-a98e-4e88ce8eeb1d" + (reference "Q42") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/e766858e-92ef-496e-9b8b-09add89f9d1e" + (reference "Q43") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/907a790c-7ce6-46a6-950a-fe6209ba739f" + (reference "Q44") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d9372d8e-6105-4fc8-89c8-096045519509" + (reference "Q45") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/e8ead434-0c40-43f3-a246-8719e4c1345f" + (reference "Q46") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/7a8f526f-e986-4b69-8ac8-488b7be25620" + (reference "Q47") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/75d26f61-61a8-4353-9eec-00b0dbae3e4d" + (reference "Q48") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/1770fd8d-7d95-41e4-a684-bbb36f755d62" + (reference "Q49") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/88b404b9-2c79-44b1-a860-d3ffdefa4ca1" + (reference "Q50") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/4264a9e9-ebc7-4d76-8f65-486a45b4704a" + (reference "Q51") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/0f834800-eb2f-42cb-8009-d21c2e7a0f8e" + (reference "Q52") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/c52ee523-ef5e-4475-a813-62248cb3c1d3" + (reference "R1") (unit 1) (value "1k") (footprint "") + ) + (path "/23d8f6f9-c2ff-4f8a-93d2-ca01b384345a" + (reference "R2") (unit 1) (value "50k") (footprint "") + ) + (path "/bb1a975f-2165-45f7-afc9-4b23065c9b6b" + (reference "R3") (unit 1) (value "1k") (footprint "") + ) + (path "/79c11a76-7eac-4d4c-9817-a13d5a3b138f" + (reference "R4") (unit 1) (value "300") (footprint "") + ) + (path "/150973ba-5d48-4ee3-b104-848fad8c8f59" + (reference "R5") (unit 1) (value "5k") (footprint "") + ) + (path "/81f5615a-e5f5-49d0-8d35-a3a2af4f245b" + (reference "R6") (unit 1) (value "40k") (footprint "") + ) + (path "/3c5a140c-8027-47f8-baea-8a79bc7ccda0" + (reference "R7") (unit 1) (value "50k") (footprint "") + ) + (path "/e4744c7d-91a2-4243-be80-512b06e6898d" + (reference "R8") (unit 1) (value "100") (footprint "") + ) + (path "/bb4855be-8cb9-48bf-b13f-9c3f4ddd7e11" + (reference "R9") (unit 1) (value "50k") (footprint "") + ) + (path "/9f8aa6e1-b1b3-4589-bc94-65b9b773483f" + (reference "R10") (unit 1) (value "50k") (footprint "") + ) + (path "/ecf69d0f-d916-4eb5-bd5b-c8263e505c6b" + (reference "R11") (unit 1) (value "27") (footprint "") + ) + (path "/3cac6aa7-963a-4469-b7a3-bc72d7418bc2" + (reference "R12") (unit 1) (value "22") (footprint "") + ) + (path "/d3dcef3b-e9be-4fe2-9e96-79ba0cf91112" + (reference "R13") (unit 1) (value "1k") (footprint "") + ) + (path "/3604b4b2-464d-4994-9691-7abb0b74eb04" + (reference "R14") (unit 1) (value "50k") (footprint "") + ) + (path "/697d7f7d-d19a-43aa-a78d-15d4aa156e0c" + (reference "R15") (unit 1) (value "1k") (footprint "") + ) + (path "/8e5289c1-b0d3-4caa-8554-8145b880d260" + (reference "R16") (unit 1) (value "300") (footprint "") + ) + (path "/a625ef41-753e-4311-bb14-651fce1013e8" + (reference "R17") (unit 1) (value "5k") (footprint "") + ) + (path "/e157db50-4998-4742-adc8-08c6df0779bc" + (reference "R18") (unit 1) (value "40k") (footprint "") + ) + (path "/eb240d61-cc3f-4e7f-8ce5-009797219988" + (reference "R19") (unit 1) (value "50k") (footprint "") + ) + (path "/b9de4551-f4c8-4d9f-9a63-6632a5c4ab16" + (reference "R20") (unit 1) (value "100") (footprint "") + ) + (path "/890da2ef-32ea-4c8b-80a4-ff0f3f049242" + (reference "R21") (unit 1) (value "50k") (footprint "") + ) + (path "/c733ee98-4a49-4311-b3f8-26d8ddc2d896" + (reference "R22") (unit 1) (value "50k") (footprint "") + ) + (path "/3eafe830-8366-4aef-862c-c5e99eb3ca24" + (reference "R23") (unit 1) (value "27") (footprint "") + ) + (path "/27bf608c-d3bf-4677-99a7-10822e8ac233" + (reference "R24") (unit 1) (value "22") (footprint "") + ) + (path "/85c07171-5025-4051-b0f3-c14b80f5e9d0" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/e4578fe9-f5c1-4e1e-b076-f8923729bbed" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/a25c84db-7ca1-4ce4-9812-fc5fbc5e28e0" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/8083e925-a52d-492d-b77d-d37d8d6b3c8e" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/e8e0ef93-f863-44ea-ad59-9c3cfb7c7333" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/b92ccfcc-8b15-45b4-8095-06798d7da5f0" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/2883062f-2e75-405d-9606-e568bcadb984" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/fec20790-6961-4707-89b4-7c4dc2e02a09" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/17361e21-7874-4bb6-bb67-0eb3a89bc837" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/8814799d-d02f-4d06-ad5d-7004294beb8e" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/e72a96a8-9ed8-47ff-a7ef-7a20728a64cc" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/a6f3f968-0472-4643-a475-86a19928f1dd" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/3793d34d-3b9b-4fa5-accd-46d1b9108b25" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/26ff09a1-586d-4ce9-964e-72c2736d3df4" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/uA747/uA747.sub b/library/SubcircuitLibrary/uA747/uA747.sub new file mode 100644 index 000000000..669f1cb3c --- /dev/null +++ b/library/SubcircuitLibrary/uA747/uA747.sub @@ -0,0 +1,86 @@ +* Subcircuit uA747 +.subckt uA747 net-_q8-pad2_ net-_q1-pad2_ net-_q3-pad3_ net-_q11-pad3_ net-_q29-pad3_ net-_q27-pad2_ net-_q34-pad2_ net-_q33-pad3_ net-_q30-pad1_ net-_q49-pad3_ unconnected-_u1-pad11_ net-_q23-pad3_ net-_q12-pad3_ net-_q7-pad3_ +.title kicad schematic +.include PNP.lib +.include NPN.lib +q8 net-_q1-pad1_ net-_q8-pad2_ net-_q6-pad3_ Q2N2222 +q6 net-_q6-pad1_ net-_q10-pad1_ net-_q6-pad3_ Q2N2907A +q5 net-_q1-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +q2 net-_q2-pad1_ net-_q10-pad1_ net-_q1-pad3_ Q2N2907A +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +q25 net-_q12-pad3_ net-_q17-pad1_ net-_q23-pad2_ Q2N2222 +q17 net-_q17-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +q15 net-_c1-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +q23 net-_q17-pad1_ net-_q23-pad2_ net-_q23-pad3_ Q2N2222 +q19 net-_q17-pad1_ net-_q17-pad1_ net-_q19-pad3_ Q2N2222 +q7 net-_q6-pad1_ net-_q3-pad2_ net-_q7-pad3_ Q2N2222 +r4 net-_c1-pad2_ net-_q6-pad1_ 300 +r5 net-_q11-pad3_ net-_q10-pad3_ 5k +c1 net-_c1-pad1_ net-_c1-pad2_ 30p +q11 net-_q10-pad2_ net-_q10-pad2_ net-_q11-pad3_ Q2N2222 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +q13 net-_c1-pad2_ net-_q13-pad2_ net-_q11-pad3_ Q2N2222 +q3 net-_q2-pad1_ net-_q3-pad2_ net-_q3-pad3_ Q2N2222 +r1 net-_q11-pad3_ net-_q3-pad3_ 1k +r3 net-_q11-pad3_ net-_q7-pad3_ 1k +r2 net-_q11-pad3_ net-_q3-pad2_ 50k +r6 net-_q10-pad2_ net-_q12-pad1_ 40k +q4 net-_q12-pad3_ net-_q2-pad1_ net-_q3-pad2_ Q2N2222 +q9 net-_q10-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +q12 net-_q12-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +q21 net-_q17-pad1_ net-_q19-pad3_ net-_q21-pad3_ Q2N2222 +r9 net-_q21-pad3_ net-_q19-pad3_ 50k +r11 net-_q23-pad2_ net-_q23-pad3_ 27 +r12 net-_q23-pad3_ net-_q24-pad2_ 22 +q26 net-_q11-pad3_ net-_q21-pad3_ net-_q24-pad2_ Q2N2907A +q20 net-_q11-pad3_ net-_c1-pad1_ net-_c1-pad2_ Q2N2907A +q22 net-_q11-pad3_ net-_c1-pad1_ net-_q21-pad3_ Q2N2907A +q24 net-_q13-pad2_ net-_q24-pad2_ net-_q23-pad3_ Q2N2907A +q18 net-_q13-pad2_ net-_q13-pad2_ net-_q11-pad3_ Q2N2222 +r10 net-_q11-pad3_ net-_q13-pad2_ 50k +r7 net-_q11-pad3_ net-_q14-pad3_ 50k +r8 net-_q11-pad3_ net-_q16-pad3_ 100 +q14 net-_q12-pad3_ net-_c1-pad2_ net-_q14-pad3_ Q2N2222 +q16 net-_c1-pad1_ net-_q14-pad3_ net-_q16-pad3_ Q2N2222 +r24 net-_q49-pad3_ net-_q50-pad2_ 22 +q47 net-_q43-pad1_ net-_q45-pad3_ net-_q47-pad3_ Q2N2222 +q45 net-_q43-pad1_ net-_q43-pad1_ net-_q45-pad3_ Q2N2222 +q49 net-_q43-pad1_ net-_q49-pad2_ net-_q49-pad3_ Q2N2222 +r23 net-_q49-pad2_ net-_q49-pad3_ 27 +q51 net-_q30-pad1_ net-_q43-pad1_ net-_q49-pad2_ Q2N2222 +q31 net-_q27-pad1_ net-_q27-pad1_ net-_q30-pad1_ Q2N2907A +q44 net-_q39-pad2_ net-_q39-pad2_ net-_q11-pad3_ Q2N2222 +q46 net-_q11-pad3_ net-_c2-pad1_ net-_c2-pad2_ Q2N2907A +q48 net-_q11-pad3_ net-_c2-pad1_ net-_q47-pad3_ Q2N2907A +r22 net-_q11-pad3_ net-_q39-pad2_ 50k +q50 net-_q39-pad2_ net-_q50-pad2_ net-_q49-pad3_ Q2N2907A +q52 net-_q11-pad3_ net-_q47-pad3_ net-_q50-pad2_ Q2N2907A +r21 net-_q47-pad3_ net-_q45-pad3_ 50k +q43 net-_q43-pad1_ net-_q38-pad1_ net-_q30-pad1_ Q2N2907A +q41 net-_c2-pad1_ net-_q38-pad1_ net-_q30-pad1_ Q2N2907A +q38 net-_q38-pad1_ net-_q38-pad1_ net-_q30-pad1_ Q2N2907A +r18 net-_q36-pad2_ net-_q38-pad1_ 40k +c2 net-_c2-pad1_ net-_c2-pad2_ 30p +q35 net-_q28-pad2_ net-_q27-pad1_ net-_q30-pad1_ Q2N2907A +r16 net-_c2-pad2_ net-_q32-pad1_ 300 +q36 net-_q28-pad2_ net-_q36-pad2_ net-_q36-pad3_ Q2N2222 +r17 net-_q11-pad3_ net-_q36-pad3_ 5k +q34 net-_q27-pad1_ net-_q34-pad2_ net-_q32-pad3_ Q2N2222 +q28 net-_q28-pad1_ net-_q28-pad2_ net-_q27-pad3_ Q2N2907A +q32 net-_q32-pad1_ net-_q28-pad2_ net-_q32-pad3_ Q2N2907A +q27 net-_q27-pad1_ net-_q27-pad2_ net-_q27-pad3_ Q2N2222 +q40 net-_q30-pad1_ net-_c2-pad2_ net-_q40-pad3_ Q2N2222 +q42 net-_c2-pad1_ net-_q40-pad3_ net-_q42-pad3_ Q2N2222 +q39 net-_c2-pad2_ net-_q39-pad2_ net-_q11-pad3_ Q2N2222 +r19 net-_q11-pad3_ net-_q40-pad3_ 50k +q37 net-_q36-pad2_ net-_q36-pad2_ net-_q11-pad3_ Q2N2222 +r20 net-_q11-pad3_ net-_q42-pad3_ 100 +r14 net-_q11-pad3_ net-_q29-pad2_ 50k +q30 net-_q30-pad1_ net-_q28-pad1_ net-_q29-pad2_ Q2N2222 +q29 net-_q28-pad1_ net-_q29-pad2_ net-_q29-pad3_ Q2N2222 +r15 net-_q11-pad3_ net-_q33-pad3_ 1k +q33 net-_q32-pad1_ net-_q29-pad2_ net-_q33-pad3_ Q2N2222 +r13 net-_q11-pad3_ net-_q29-pad3_ 1k +* Control Statements + +.ends uA747 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA747/uA747_Previous_Values.xml b/library/SubcircuitLibrary/uA747/uA747_Previous_Values.xml new file mode 100644 index 000000000..60ae66778 --- /dev/null +++ b/library/SubcircuitLibrary/uA747/uA747_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperessecsecsecD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.lib \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA748/NPN.lib b/library/SubcircuitLibrary/uA748/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/uA748/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/uA748/PNP.lib b/library/SubcircuitLibrary/uA748/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/uA748/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/uA748/_autosave-uA748.sch b/library/SubcircuitLibrary/uA748/_autosave-uA748.sch new file mode 100644 index 000000000..a97b3051a --- /dev/null +++ b/library/SubcircuitLibrary/uA748/_autosave-uA748.sch @@ -0,0 +1,797 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 2050 2150 +Connection ~ 2050 3950 +Connection ~ 2050 4650 +Connection ~ 2450 950 +Connection ~ 2550 3650 +Connection ~ 2550 5150 +Connection ~ 2650 5150 +Connection ~ 2650 6450 +Connection ~ 3050 1650 +Connection ~ 3050 2150 +Connection ~ 3050 4450 +Connection ~ 3050 4700 +Connection ~ 3050 6450 +Connection ~ 4050 950 +Connection ~ 4050 3950 +Connection ~ 4050 6450 +Connection ~ 4550 5450 +Connection ~ 5050 950 +Connection ~ 5050 2100 +Connection ~ 5050 5050 +Connection ~ 5050 6450 +Connection ~ 5550 1650 +Connection ~ 5550 4700 +Connection ~ 5550 6450 +Connection ~ 5750 4700 +Connection ~ 6550 950 +Connection ~ 6550 5150 +Connection ~ 6550 6450 +Connection ~ 6750 1650 +Connection ~ 7050 950 +Connection ~ 7050 1450 +Connection ~ 7050 2950 +Connection ~ 7050 4650 +Connection ~ 7050 6450 +Connection ~ 7550 5450 +Connection ~ 7550 6450 +Connection ~ 8050 3300 +Connection ~ 8050 5450 +Connection ~ 8350 4650 +Connection ~ 8750 1950 +Connection ~ 8750 2300 +Connection ~ 8750 2550 +Connection ~ 8750 3700 +Connection ~ 8750 4150 +Connection ~ 8750 4850 +Connection ~ 8750 6450 +Connection ~ 9550 1950 +Connection ~ 9550 2950 +Connection ~ 9550 5450 +Connection ~ 9550 6450 +Connection ~ 10050 950 +Connection ~ 10050 2250 +Connection ~ 10050 2950 +Connection ~ 10050 3100 +Connection ~ 10050 3650 +Connection ~ 10050 6450 +Wire Wire Line + 1050 3950 2050 3950 +Wire Wire Line + 1100 2650 1750 2650 +Wire Wire Line + 1100 3100 3550 3100 +Wire Wire Line + 2050 950 2450 950 +Wire Wire Line + 2050 1450 2050 950 +Wire Wire Line + 2050 1850 2050 2150 +Wire Wire Line + 2050 2150 2050 2450 +Wire Wire Line + 2050 2150 3050 2150 +Wire Wire Line + 2050 2850 2050 3450 +Wire Wire Line + 2050 3850 2050 3950 +Wire Wire Line + 2050 3950 2050 4650 +Wire Wire Line + 2050 4650 2050 4950 +Wire Wire Line + 2050 4650 2250 4650 +Wire Wire Line + 2050 5350 2050 5950 +Wire Wire Line + 2050 6250 2050 6450 +Wire Wire Line + 2050 6450 2650 6450 +Wire Wire Line + 2350 1650 3050 1650 +Wire Wire Line + 2350 3650 2550 3650 +Wire Wire Line + 2350 5150 2550 5150 +Wire Wire Line + 2450 950 2450 4450 +Wire Wire Line + 2450 950 4050 950 +Wire Wire Line + 2550 3650 2550 3950 +Wire Wire Line + 2550 3650 2750 3650 +Wire Wire Line + 2550 3950 4050 3950 +Wire Wire Line + 2550 4450 2450 4450 +Wire Wire Line + 2550 4850 2550 5150 +Wire Wire Line + 2550 5150 2650 5150 +Wire Wire Line + 2650 5150 2650 5950 +Wire Wire Line + 2650 5150 2750 5150 +Wire Wire Line + 2650 6250 2650 6450 +Wire Wire Line + 2650 6450 3050 6450 +Wire Wire Line + 3050 1650 3050 2150 +Wire Wire Line + 3050 1650 3750 1650 +Wire Wire Line + 3050 2150 3050 2450 +Wire Wire Line + 3050 2850 3050 3450 +Wire Wire Line + 3050 3850 3050 4450 +Wire Wire Line + 3050 4450 3050 4700 +Wire Wire Line + 3050 4450 3700 4450 +Wire Wire Line + 3050 4700 3050 4950 +Wire Wire Line + 3050 4700 3400 4700 +Wire Wire Line + 3050 5350 3050 5950 +Wire Wire Line + 3050 6250 3050 6450 +Wire Wire Line + 3050 6450 4050 6450 +Wire Wire Line + 3350 2650 3550 2650 +Wire Wire Line + 3550 2650 3550 3100 +Wire Wire Line + 3700 650 3700 4450 +Wire Wire Line + 3700 4700 5550 4700 +Wire Wire Line + 4050 950 4050 1450 +Wire Wire Line + 4050 950 5050 950 +Wire Wire Line + 4050 1850 4050 3950 +Wire Wire Line + 4050 3950 4050 5250 +Wire Wire Line + 4050 5650 4050 5950 +Wire Wire Line + 4050 6250 4050 6450 +Wire Wire Line + 4050 6450 5050 6450 +Wire Wire Line + 4350 5450 4550 5450 +Wire Wire Line + 4550 5050 5050 5050 +Wire Wire Line + 4550 5450 4550 5050 +Wire Wire Line + 4550 5450 4750 5450 +Wire Wire Line + 5050 950 5050 1450 +Wire Wire Line + 5050 950 6550 950 +Wire Wire Line + 5050 1850 5050 2100 +Wire Wire Line + 5050 2100 5050 3600 +Wire Wire Line + 5050 3900 5050 5050 +Wire Wire Line + 5050 5050 5050 5250 +Wire Wire Line + 5050 5650 5050 6450 +Wire Wire Line + 5050 6450 5550 6450 +Wire Wire Line + 5350 1650 5550 1650 +Wire Wire Line + 5550 1650 5550 2100 +Wire Wire Line + 5550 1650 6750 1650 +Wire Wire Line + 5550 2100 5050 2100 +Wire Wire Line + 5550 4700 5550 5250 +Wire Wire Line + 5550 4700 5750 4700 +Wire Wire Line + 5550 5650 5550 6450 +Wire Wire Line + 5550 6450 6550 6450 +Wire Wire Line + 5750 4200 5750 4700 +Wire Wire Line + 5750 4700 6250 4700 +Wire Wire Line + 5850 5450 7550 5450 +Wire Wire Line + 6050 650 6050 2950 +Wire Wire Line + 6550 950 6550 4500 +Wire Wire Line + 6550 950 7050 950 +Wire Wire Line + 6550 4900 6550 5150 +Wire Wire Line + 6550 5150 6550 5950 +Wire Wire Line + 6550 5150 6750 5150 +Wire Wire Line + 6550 6250 6550 6450 +Wire Wire Line + 6550 6450 7050 6450 +Wire Wire Line + 6750 1650 7250 1650 +Wire Wire Line + 7050 950 7050 1450 +Wire Wire Line + 7050 950 10050 950 +Wire Wire Line + 7050 1450 7550 1450 +Wire Wire Line + 7050 1850 7050 2950 +Wire Wire Line + 7050 2950 6050 2950 +Wire Wire Line + 7050 2950 7050 4650 +Wire Wire Line + 7050 4650 7050 4950 +Wire Wire Line + 7050 4650 8350 4650 +Wire Wire Line + 7050 5350 7050 5950 +Wire Wire Line + 7050 6250 7050 6450 +Wire Wire Line + 7050 6450 7550 6450 +Wire Wire Line + 7550 1850 7550 1950 +Wire Wire Line + 7550 1950 8750 1950 +Wire Wire Line + 7550 5450 7550 5950 +Wire Wire Line + 7550 5450 8050 5450 +Wire Wire Line + 7550 6350 7550 6450 +Wire Wire Line + 7550 6450 8750 6450 +Wire Wire Line + 7750 2300 8750 2300 +Wire Wire Line + 7750 2750 7750 2300 +Wire Wire Line + 7850 6150 8050 6150 +Wire Wire Line + 8050 2550 8750 2550 +Wire Wire Line + 8050 3300 8050 2950 +Wire Wire Line + 8050 3300 8450 3300 +Wire Wire Line + 8050 3700 8050 3300 +Wire Wire Line + 8050 4200 5750 4200 +Wire Wire Line + 8050 4450 8050 4200 +Wire Wire Line + 8050 4850 8750 4850 +Wire Wire Line + 8050 5450 9550 5450 +Wire Wire Line + 8050 6150 8050 5450 +Wire Wire Line + 8250 3700 8050 3700 +Wire Wire Line + 8350 4650 8450 4650 +Wire Wire Line + 8550 3700 8750 3700 +Wire Wire Line + 8750 1950 8750 2300 +Wire Wire Line + 8750 1950 9550 1950 +Wire Wire Line + 8750 2300 8750 2550 +Wire Wire Line + 8750 2550 8750 3100 +Wire Wire Line + 8750 3500 8750 3700 +Wire Wire Line + 8750 3700 8750 4150 +Wire Wire Line + 8750 4150 8750 4450 +Wire Wire Line + 8750 4150 9750 4150 +Wire Wire Line + 8750 4850 8750 6450 +Wire Wire Line + 8750 6450 9550 6450 +Wire Wire Line + 9550 1950 9550 2050 +Wire Wire Line + 9550 1950 9750 1950 +Wire Wire Line + 9550 2450 9550 2950 +Wire Wire Line + 9550 2950 9550 3450 +Wire Wire Line + 9550 2950 10050 2950 +Wire Wire Line + 9550 3850 9550 5450 +Wire Wire Line + 9550 5450 9550 5950 +Wire Wire Line + 9550 6250 9550 6450 +Wire Wire Line + 9550 6450 10050 6450 +Wire Wire Line + 9850 2250 10050 2250 +Wire Wire Line + 9850 3650 10050 3650 +Wire Wire Line + 10050 950 10050 1750 +Wire Wire Line + 10050 950 10550 950 +Wire Wire Line + 10050 2150 10050 2250 +Wire Wire Line + 10050 2250 10050 2550 +Wire Wire Line + 10050 2850 10050 2950 +Wire Wire Line + 10050 2950 10050 3100 +Wire Wire Line + 10050 3100 10050 3150 +Wire Wire Line + 10050 3100 10550 3100 +Wire Wire Line + 10050 3450 10050 3650 +Wire Wire Line + 10050 3650 10050 3950 +Wire Wire Line + 10050 4350 10050 6450 +Wire Wire Line + 10050 6450 10500 6450 +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 2100 6150 +F 0 "R?" V 2200 6100 50 0000 R CNN +F 1 "1k" V 2100 6100 50 0000 R CNN +F 2 "" H 2150 6130 30 0000 C CNN +F 3 "" V 2150 6200 30 0000 C CNN + 1 2100 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 2700 6150 +F 0 "R?" V 2800 6100 50 0000 R CNN +F 1 "50k" V 2700 6100 50 0000 R CNN +F 2 "" H 2750 6130 30 0000 C CNN +F 3 "" V 2750 6200 30 0000 C CNN + 1 2700 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 3100 6150 +F 0 "R?" V 3200 6100 50 0000 R CNN +F 1 "1k" V 3100 6100 50 0000 R CNN +F 2 "" H 3150 6130 30 0000 C CNN +F 3 "" V 3150 6200 30 0000 C CNN + 1 3100 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 3600 4650 +F 0 "R?" H 3650 4450 50 0000 C CNN +F 1 "300" H 3650 4550 50 0000 C CNN +F 2 "" H 3650 4630 30 0000 C CNN +F 3 "" V 3650 4700 30 0000 C CNN + 1 3600 4650 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 4100 6150 +F 0 "R?" V 4200 6100 50 0000 R CNN +F 1 "10k" V 4100 6100 50 0000 R CNN +F 2 "" H 4150 6130 30 0000 C CNN +F 3 "" V 4150 6200 30 0000 C CNN + 1 4100 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 5100 3800 +F 0 "R?" V 5200 3750 50 0000 R CNN +F 1 "40k" V 5100 3750 50 0000 R CNN +F 2 "" H 5150 3780 30 0000 C CNN +F 3 "" V 5150 3850 30 0000 C CNN + 1 5100 3800 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 6600 6150 +F 0 "R?" V 6700 6100 50 0000 R CNN +F 1 "50k" V 6600 6100 50 0000 R CNN +F 2 "" H 6650 6130 30 0000 C CNN +F 3 "" V 6650 6200 30 0000 C CNN + 1 6600 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 7100 6150 +F 0 "R?" V 7200 6100 50 0000 R CNN +F 1 "100" V 7100 6100 50 0000 R CNN +F 2 "" H 7150 6130 30 0000 C CNN +F 3 "" V 7150 6200 30 0000 C CNN + 1 7100 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 8450 3650 +F 0 "R?" H 8500 3450 50 0000 C CNN +F 1 "50k" H 8500 3550 50 0000 C CNN +F 2 "" H 8500 3630 30 0000 C CNN +F 3 "" V 8500 3700 30 0000 C CNN + 1 8450 3650 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 9600 6150 +F 0 "R?" V 9700 6100 50 0000 R CNN +F 1 "50k" V 9600 6100 50 0000 R CNN +F 2 "" H 9650 6130 30 0000 C CNN +F 3 "" V 9650 6200 30 0000 C CNN + 1 9600 6150 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 10100 2750 +F 0 "R?" V 10200 2700 50 0000 R CNN +F 1 "27" V 10100 2700 50 0000 R CNN +F 2 "" H 10150 2730 30 0000 C CNN +F 3 "" V 10150 2800 30 0000 C CNN + 1 10100 2750 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 10100 3350 +F 0 "R?" V 10200 3300 50 0000 R CNN +F 1 "22" V 10100 3300 50 0000 R CNN +F 2 "" H 10150 3330 30 0000 C CNN +F 3 "" V 10150 3400 30 0000 C CNN + 1 10100 3350 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 1950 2650 +F 0 "Q?" H 2150 2700 50 0000 L CNN +F 1 "eSim_NPN" H 2150 2600 50 0000 L CNN +F 2 "" H 2150 2750 29 0000 C CNN +F 3 "" H 1950 2650 60 0000 C CNN + 1 1950 2650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 2150 1650 +F 0 "Q?" H 2350 1600 50 0000 L CNN +F 1 "eSim_PNP" H 2350 1700 50 0000 L CNN +F 2 "" H 2350 1750 29 0000 C CNN +F 3 "" H 2150 1650 60 0000 C CNN + 1 2150 1650 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 2150 3650 +F 0 "Q?" H 2350 3600 50 0000 L CNN +F 1 "eSim_PNP" H 2350 3700 50 0000 L CNN +F 2 "" H 2350 3750 29 0000 C CNN +F 3 "" H 2150 3650 60 0000 C CNN + 1 2150 3650 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 2150 5150 +F 0 "Q?" H 2350 5200 50 0000 L CNN +F 1 "eSim_NPN" H 2350 5100 50 0000 L CNN +F 2 "" H 2350 5250 29 0000 C CNN +F 3 "" H 2150 5150 60 0000 C CNN + 1 2150 5150 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 2450 4650 +F 0 "Q?" H 2650 4700 50 0000 L CNN +F 1 "eSim_NPN" H 2650 4600 50 0000 L CNN +F 2 "" H 2650 4750 29 0000 C CNN +F 3 "" H 2450 4650 60 0000 C CNN + 1 2450 4650 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 2950 3650 +F 0 "Q?" H 3150 3600 50 0000 L CNN +F 1 "eSim_PNP" H 3150 3700 50 0000 L CNN +F 2 "" H 3150 3750 29 0000 C CNN +F 3 "" H 2950 3650 60 0000 C CNN + 1 2950 3650 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 2950 5150 +F 0 "Q?" H 3150 5200 50 0000 L CNN +F 1 "eSim_NPN" H 3150 5100 50 0000 L CNN +F 2 "" H 3150 5250 29 0000 C CNN +F 3 "" H 2950 5150 60 0000 C CNN + 1 2950 5150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 3150 2650 +F 0 "Q?" H 3350 2700 50 0000 L CNN +F 1 "eSim_NPN" H 3350 2600 50 0000 L CNN +F 2 "" H 3350 2750 29 0000 C CNN +F 3 "" H 3150 2650 60 0000 C CNN + 1 3150 2650 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 3950 1650 +F 0 "Q?" H 4150 1600 50 0000 L CNN +F 1 "eSim_PNP" H 4150 1700 50 0000 L CNN +F 2 "" H 4150 1750 29 0000 C CNN +F 3 "" H 3950 1650 60 0000 C CNN + 1 3950 1650 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 4150 5450 +F 0 "Q?" H 4350 5500 50 0000 L CNN +F 1 "eSim_NPN" H 4350 5400 50 0000 L CNN +F 2 "" H 4350 5550 29 0000 C CNN +F 3 "" H 4150 5450 60 0000 C CNN + 1 4150 5450 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 4950 5450 +F 0 "Q?" H 5150 5500 50 0000 L CNN +F 1 "eSim_NPN" H 5100 5300 50 0000 L CNN +F 2 "" H 5150 5550 29 0000 C CNN +F 3 "" H 4950 5450 60 0000 C CNN + 1 4950 5450 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 5150 1650 +F 0 "Q?" H 5350 1600 50 0000 L CNN +F 1 "eSim_PNP" H 5350 1700 50 0000 L CNN +F 2 "" H 5350 1750 29 0000 C CNN +F 3 "" H 5150 1650 60 0000 C CNN + 1 5150 1650 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 5650 5450 +F 0 "Q?" H 5850 5500 50 0000 L CNN +F 1 "eSim_NPN" H 5800 5400 50 0000 L CNN +F 2 "" H 5850 5550 29 0000 C CNN +F 3 "" H 5650 5450 60 0000 C CNN + 1 5650 5450 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 6450 4700 +F 0 "Q?" H 6650 4750 50 0000 L CNN +F 1 "eSim_NPN" H 6600 4550 50 0000 L CNN +F 2 "" H 6650 4800 29 0000 C CNN +F 3 "" H 6450 4700 60 0000 C CNN + 1 6450 4700 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 6950 1650 +F 0 "Q?" H 7150 1600 50 0000 L CNN +F 1 "eSim_PNP" H 7150 1700 50 0000 L CNN +F 2 "" H 7150 1750 29 0000 C CNN +F 3 "" H 6950 1650 60 0000 C CNN + 1 6950 1650 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 6950 5150 +F 0 "Q?" H 7150 5200 50 0000 L CNN +F 1 "eSim_NPN" H 7100 5000 50 0000 L CNN +F 2 "" H 7150 5250 29 0000 C CNN +F 3 "" H 6950 5150 60 0000 C CNN + 1 6950 5150 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 7450 1650 +F 0 "Q?" H 7650 1600 50 0000 L CNN +F 1 "eSim_PNP" H 7650 1700 50 0000 L CNN +F 2 "" H 7650 1750 29 0000 C CNN +F 3 "" H 7450 1650 60 0000 C CNN + 1 7450 1650 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 7650 6150 +F 0 "Q?" H 7850 6200 50 0000 L CNN +F 1 "eSim_NPN" H 7800 6100 50 0000 L CNN +F 2 "" H 7850 6250 29 0000 C CNN +F 3 "" H 7650 6150 60 0000 C CNN + 1 7650 6150 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 7950 2750 +F 0 "Q?" H 8150 2800 50 0000 L CNN +F 1 "eSim_NPN" H 8100 2600 50 0000 L CNN +F 2 "" H 8150 2850 29 0000 C CNN +F 3 "" H 7950 2750 60 0000 C CNN + 1 7950 2750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 8150 4650 +F 0 "Q?" H 8350 4600 50 0000 L CNN +F 1 "eSim_PNP" H 8350 4700 50 0000 L CNN +F 2 "" H 8350 4750 29 0000 C CNN +F 3 "" H 8150 4650 60 0000 C CNN + 1 8150 4650 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 8650 3300 +F 0 "Q?" H 8850 3350 50 0000 L CNN +F 1 "eSim_NPN" H 8800 3150 50 0000 L CNN +F 2 "" H 8850 3400 29 0000 C CNN +F 3 "" H 8650 3300 60 0000 C CNN + 1 8650 3300 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 8650 4650 +F 0 "Q?" H 8850 4600 50 0000 L CNN +F 1 "eSim_PNP" H 8850 4700 50 0000 L CNN +F 2 "" H 8850 4750 29 0000 C CNN +F 3 "" H 8650 4650 60 0000 C CNN + 1 8650 4650 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 9650 2250 +F 0 "Q?" H 9850 2300 50 0000 L CNN +F 1 "eSim_NPN" H 9800 2200 50 0000 L CNN +F 2 "" H 9850 2350 29 0000 C CNN +F 3 "" H 9650 2250 60 0000 C CNN + 1 9650 2250 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 9650 3650 +F 0 "Q?" H 9850 3600 50 0000 L CNN +F 1 "eSim_PNP" H 9850 3700 50 0000 L CNN +F 2 "" H 9850 3750 29 0000 C CNN +F 3 "" H 9650 3650 60 0000 C CNN + 1 9650 3650 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 9950 1950 +F 0 "Q?" H 10150 2000 50 0000 L CNN +F 1 "eSim_NPN" H 10100 1900 50 0000 L CNN +F 2 "" H 10150 2050 29 0000 C CNN +F 3 "" H 9950 1950 60 0000 C CNN + 1 9950 1950 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 9950 4150 +F 0 "Q?" H 10150 4100 50 0000 L CNN +F 1 "eSim_PNP" H 10150 4200 50 0000 L CNN +F 2 "" H 10150 4250 29 0000 C CNN +F 3 "" H 9950 4150 60 0000 C CNN + 1 9950 4150 + 1 0 0 1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/uA748/analysis b/library/SubcircuitLibrary/uA748/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/uA748/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA748/uA748.cir b/library/SubcircuitLibrary/uA748/uA748.cir new file mode 100644 index 000000000..f18625efb --- /dev/null +++ b/library/SubcircuitLibrary/uA748/uA748.cir @@ -0,0 +1,41 @@ +.title KiCad schematic +Q16 Net-_Q15-Pad1_ Net-_Q14-Pad3_ Net-_Q16-Pad3_ eSim_NPN +Q14 Net-_Q12-Pad3_ Net-_Q13-Pad1_ Net-_Q14-Pad3_ eSim_NPN +Q20 Net-_Q11-Pad3_ Net-_Q15-Pad1_ Net-_Q13-Pad1_ eSim_PNP +R9 Net-_Q21-Pad3_ Net-_Q19-Pad3_ 50k +R7 Net-_Q11-Pad3_ Net-_Q14-Pad3_ 50k +Q18 Net-_Q13-Pad2_ Net-_Q13-Pad2_ Net-_Q11-Pad3_ eSim_NPN +R8 Net-_Q11-Pad3_ Net-_Q16-Pad3_ 100 +U1 unconnected-_U1-Pad1_ unconnected-_U1-Pad2_ Net-_Q6-Pad1_ Net-_Q8-Pad2_ Net-_Q1-Pad2_ Net-_Q11-Pad3_ unconnected-_U1-Pad7_ unconnected-_U1-Pad8_ Net-_Q3-Pad1_ Net-_Q23-Pad3_ Net-_Q12-Pad3_ Net-_Q15-Pad1_ unconnected-_U1-Pad13_ unconnected-_U1-Pad14_ PORT +Q15 Net-_Q15-Pad1_ Net-_Q12-Pad1_ Net-_Q12-Pad3_ eSim_PNP +R6 Net-_Q10-Pad2_ Net-_Q12-Pad1_ 40k +Q12 Net-_Q12-Pad1_ Net-_Q12-Pad1_ Net-_Q12-Pad3_ eSim_PNP +Q22 Net-_Q11-Pad3_ Net-_Q15-Pad1_ Net-_Q21-Pad3_ eSim_PNP +R10 Net-_Q11-Pad3_ Net-_Q13-Pad2_ 50k +Q26 Net-_Q11-Pad3_ Net-_Q21-Pad3_ Net-_Q24-Pad2_ eSim_PNP +Q24 Net-_Q13-Pad2_ Net-_Q24-Pad2_ Net-_Q23-Pad3_ eSim_PNP +R5 Net-_Q11-Pad3_ Net-_Q10-Pad3_ 10k +Q13 Net-_Q13-Pad1_ Net-_Q13-Pad2_ Net-_Q11-Pad3_ eSim_NPN +Q10 Net-_Q10-Pad1_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_NPN +Q11 Net-_Q10-Pad2_ Net-_Q10-Pad2_ Net-_Q11-Pad3_ eSim_NPN +R1 Net-_Q11-Pad3_ Net-_Q4-Pad3_ 1k +Q4 Net-_Q3-Pad1_ Net-_Q4-Pad2_ Net-_Q4-Pad3_ eSim_NPN +R3 Net-_Q11-Pad3_ Net-_Q7-Pad3_ 1k +R2 Net-_Q11-Pad3_ Net-_Q4-Pad2_ 50k +R4 Net-_Q13-Pad1_ Net-_Q6-Pad1_ 300 +Q7 Net-_Q6-Pad1_ Net-_Q4-Pad2_ Net-_Q7-Pad3_ eSim_NPN +Q5 Net-_Q12-Pad3_ Net-_Q3-Pad1_ Net-_Q4-Pad2_ eSim_NPN +Q17 Net-_Q17-Pad1_ Net-_Q12-Pad1_ Net-_Q12-Pad3_ eSim_PNP +Q21 Net-_Q17-Pad1_ Net-_Q19-Pad3_ Net-_Q21-Pad3_ eSim_NPN +Q19 Net-_Q17-Pad1_ Net-_Q17-Pad1_ Net-_Q19-Pad3_ eSim_NPN +Q23 Net-_Q17-Pad1_ Net-_Q23-Pad2_ Net-_Q23-Pad3_ eSim_NPN +R12 Net-_Q24-Pad2_ Net-_Q23-Pad3_ 22 +Q25 Net-_Q12-Pad3_ Net-_Q17-Pad1_ Net-_Q23-Pad2_ eSim_NPN +R11 Net-_Q23-Pad3_ Net-_Q23-Pad2_ 27 +Q2 Net-_Q1-Pad1_ Net-_Q1-Pad1_ Net-_Q12-Pad3_ eSim_PNP +Q6 Net-_Q6-Pad1_ Net-_Q10-Pad1_ Net-_Q6-Pad3_ eSim_PNP +Q3 Net-_Q3-Pad1_ Net-_Q10-Pad1_ Net-_Q1-Pad3_ eSim_PNP +Q1 Net-_Q1-Pad1_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_NPN +Q8 Net-_Q1-Pad1_ Net-_Q8-Pad2_ Net-_Q6-Pad3_ eSim_NPN +Q9 Net-_Q10-Pad1_ Net-_Q1-Pad1_ Net-_Q12-Pad3_ eSim_PNP +.end diff --git a/library/SubcircuitLibrary/uA748/uA748.cir.out b/library/SubcircuitLibrary/uA748/uA748.cir.out new file mode 100644 index 000000000..0de775e76 --- /dev/null +++ b/library/SubcircuitLibrary/uA748/uA748.cir.out @@ -0,0 +1,52 @@ +.title kicad schematic + +.include PNP.lib +.include NPN.lib +q16 net-_q15-pad1_ net-_q14-pad3_ net-_q16-pad3_ Q2N2222 +q14 net-_q12-pad3_ net-_q13-pad1_ net-_q14-pad3_ Q2N2222 +q20 net-_q11-pad3_ net-_q15-pad1_ net-_q13-pad1_ Q2N2907A +r9 net-_q21-pad3_ net-_q19-pad3_ 50k +r7 net-_q11-pad3_ net-_q14-pad3_ 50k +q18 net-_q13-pad2_ net-_q13-pad2_ net-_q11-pad3_ Q2N2222 +r8 net-_q11-pad3_ net-_q16-pad3_ 100 +* u1 unconnected-_u1-pad1_ unconnected-_u1-pad2_ net-_q6-pad1_ net-_q8-pad2_ net-_q1-pad2_ net-_q11-pad3_ unconnected-_u1-pad7_ unconnected-_u1-pad8_ net-_q3-pad1_ net-_q23-pad3_ net-_q12-pad3_ net-_q15-pad1_ unconnected-_u1-pad13_ unconnected-_u1-pad14_ port +q15 net-_q15-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +r6 net-_q10-pad2_ net-_q12-pad1_ 40k +q12 net-_q12-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +q22 net-_q11-pad3_ net-_q15-pad1_ net-_q21-pad3_ Q2N2907A +r10 net-_q11-pad3_ net-_q13-pad2_ 50k +q26 net-_q11-pad3_ net-_q21-pad3_ net-_q24-pad2_ Q2N2907A +q24 net-_q13-pad2_ net-_q24-pad2_ net-_q23-pad3_ Q2N2907A +r5 net-_q11-pad3_ net-_q10-pad3_ 10k +q13 net-_q13-pad1_ net-_q13-pad2_ net-_q11-pad3_ Q2N2222 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +q11 net-_q10-pad2_ net-_q10-pad2_ net-_q11-pad3_ Q2N2222 +r1 net-_q11-pad3_ net-_q4-pad3_ 1k +q4 net-_q3-pad1_ net-_q4-pad2_ net-_q4-pad3_ Q2N2222 +r3 net-_q11-pad3_ net-_q7-pad3_ 1k +r2 net-_q11-pad3_ net-_q4-pad2_ 50k +r4 net-_q13-pad1_ net-_q6-pad1_ 300 +q7 net-_q6-pad1_ net-_q4-pad2_ net-_q7-pad3_ Q2N2222 +q5 net-_q12-pad3_ net-_q3-pad1_ net-_q4-pad2_ Q2N2222 +q17 net-_q17-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +q21 net-_q17-pad1_ net-_q19-pad3_ net-_q21-pad3_ Q2N2222 +q19 net-_q17-pad1_ net-_q17-pad1_ net-_q19-pad3_ Q2N2222 +q23 net-_q17-pad1_ net-_q23-pad2_ net-_q23-pad3_ Q2N2222 +r12 net-_q24-pad2_ net-_q23-pad3_ 22 +q25 net-_q12-pad3_ net-_q17-pad1_ net-_q23-pad2_ Q2N2222 +r11 net-_q23-pad3_ net-_q23-pad2_ 27 +q2 net-_q1-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +q6 net-_q6-pad1_ net-_q10-pad1_ net-_q6-pad3_ Q2N2907A +q3 net-_q3-pad1_ net-_q10-pad1_ net-_q1-pad3_ Q2N2907A +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +q8 net-_q1-pad1_ net-_q8-pad2_ net-_q6-pad3_ Q2N2222 +q9 net-_q10-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/uA748/uA748.kicad_sch b/library/SubcircuitLibrary/uA748/uA748.kicad_sch new file mode 100644 index 000000000..4c76d7a4e --- /dev/null +++ b/library/SubcircuitLibrary/uA748/uA748.kicad_sch @@ -0,0 +1,2678 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 459561ae-7894-4682-bc1d-d4b16bfcc2b1) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Devices:eSim_NPN" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_NPN" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_NPN_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_NPN_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_PNP" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_PNP" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_PNP_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.286 -1.778) + (xy 1.778 -2.286) + (xy 1.27 -1.27) + (xy 2.286 -1.778) + (xy 2.286 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_PNP_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:resistor" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 1.27 3.302 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "resistor" (id 1) (at 1.27 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 1.27 -0.508 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 1.27 1.27 90) + (effects (font (size 0.762 0.762))) + ) + (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "resistor_0_1" + (rectangle (start 3.81 0.254) (end -1.27 2.286) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "resistor_1_1" + (pin passive line (at -2.54 1.27 0) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "1" (effects (font (size 1.524 1.524)))) + ) + (pin passive line (at 5.08 1.27 180) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "2" (effects (font (size 1.524 1.524)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 243.84 213.36) (diameter 0) (color 0 0 0 0) + (uuid 06a653bd-8e14-4679-af56-c027bcf0dda0) + ) + (junction (at 132.08 180.34) (diameter 0) (color 0 0 0 0) + (uuid 0bf49269-f034-4b9b-9d23-8019b39214d8) + ) + (junction (at 307.34 187.96) (diameter 0) (color 0 0 0 0) + (uuid 0ce5bd70-9ca8-417d-8c6a-d4f066f2ad33) + ) + (junction (at 320.04 128.27) (diameter 0) (color 0 0 0 0) + (uuid 25ca4cd0-b734-42d6-8715-6c4a2b203bde) + ) + (junction (at 307.34 213.36) (diameter 0) (color 0 0 0 0) + (uuid 3306b5f4-2d3f-412f-b87c-17c75c3cbc06) + ) + (junction (at 320.04 124.46) (diameter 0) (color 0 0 0 0) + (uuid 340369c6-09ee-4bb3-865c-d51f31b2492b) + ) + (junction (at 142.24 162.56) (diameter 0) (color 0 0 0 0) + (uuid 365cd977-2903-4f56-815d-53d2b78cda16) + ) + (junction (at 320.04 213.36) (diameter 0) (color 0 0 0 0) + (uuid 375b3774-d50e-4121-aec0-a40acb47846e) + ) + (junction (at 193.04 73.66) (diameter 0) (color 0 0 0 0) + (uuid 398d369e-ae58-4d17-b48a-bd285128b1f2) + ) + (junction (at 287.02 143.51) (diameter 0) (color 0 0 0 0) + (uuid 3df579d4-ce3c-41bf-b233-06de714f38da) + ) + (junction (at 276.86 167.64) (diameter 0) (color 0 0 0 0) + (uuid 415e07ae-abb7-4001-adfb-b506b24d9bc0) + ) + (junction (at 307.34 99.06) (diameter 0) (color 0 0 0 0) + (uuid 42bc0855-68fb-4ef1-9f46-9ed3717651df) + ) + (junction (at 320.04 106.68) (diameter 0) (color 0 0 0 0) + (uuid 45c5eef4-e09f-4f8a-9b11-64d289a331a9) + ) + (junction (at 243.84 73.66) (diameter 0) (color 0 0 0 0) + (uuid 497df8fc-9511-41c0-80ca-ba0446b66b62) + ) + (junction (at 167.64 213.36) (diameter 0) (color 0 0 0 0) + (uuid 4cf72821-8802-4c55-93ba-aee90a5d17ad) + ) + (junction (at 142.24 213.36) (diameter 0) (color 0 0 0 0) + (uuid 5210732b-9aae-416c-97f2-e6e75cd4a9a9) + ) + (junction (at 180.34 187.96) (diameter 0) (color 0 0 0 0) + (uuid 54438a5f-e8e7-46a2-b6ef-5daea63e25d5) + ) + (junction (at 167.64 149.86) (diameter 0) (color 0 0 0 0) + (uuid 5b48c527-a697-4b9b-92d4-05b883fee1cc) + ) + (junction (at 127 73.66) (diameter 0) (color 0 0 0 0) + (uuid 63c96d20-eaae-4ffa-bd36-ff452944fb6a) + ) + (junction (at 287.02 107.95) (diameter 0) (color 0 0 0 0) + (uuid 64699436-49d2-455d-bb3c-adb54a65c085) + ) + (junction (at 193.04 177.8) (diameter 0) (color 0 0 0 0) + (uuid 6fed9e58-7088-41fe-b53f-eb32a20c15b3) + ) + (junction (at 287.02 99.06) (diameter 0) (color 0 0 0 0) + (uuid 712bbe4e-96af-476e-88b8-995cae8f2d66) + ) + (junction (at 167.64 73.66) (diameter 0) (color 0 0 0 0) + (uuid 78105b1d-0b62-4fc2-80b1-e084e3e13ce8) + ) + (junction (at 193.04 102.87) (diameter 0) (color 0 0 0 0) + (uuid 79eae498-a3ff-4ef7-9bb4-52b7136d9b00) + ) + (junction (at 243.84 124.46) (diameter 0) (color 0 0 0 0) + (uuid 7ce63490-a036-4e5e-8075-809f24e0d1e9) + ) + (junction (at 243.84 167.64) (diameter 0) (color 0 0 0 0) + (uuid 85f9fa04-6e7b-4e18-8cb6-18cb6b3f73be) + ) + (junction (at 320.04 73.66) (diameter 0) (color 0 0 0 0) + (uuid 8779e56a-4017-43ed-9744-d24b7d6e081f) + ) + (junction (at 116.84 167.64) (diameter 0) (color 0 0 0 0) + (uuid 91624fda-4a3a-4778-a6ed-7d7c23b7978c) + ) + (junction (at 116.84 149.86) (diameter 0) (color 0 0 0 0) + (uuid 96f7eaf3-4cbd-4b9d-b093-e6337ecad51a) + ) + (junction (at 287.02 154.94) (diameter 0) (color 0 0 0 0) + (uuid 9ca36957-15e6-45c4-8637-20c71f73ae46) + ) + (junction (at 142.24 168.91) (diameter 0) (color 0 0 0 0) + (uuid 9ec61163-49f7-4ce6-ba16-9479be683322) + ) + (junction (at 231.14 180.34) (diameter 0) (color 0 0 0 0) + (uuid a266cb8a-346c-4c28-aefd-6bf51e5b7978) + ) + (junction (at 193.04 213.36) (diameter 0) (color 0 0 0 0) + (uuid a3c31403-f8be-4240-a861-3d0e0df4c0c6) + ) + (junction (at 269.24 133.35) (diameter 0) (color 0 0 0 0) + (uuid a3cd099c-0f33-4e71-aea7-752e14f6a1f8) + ) + (junction (at 287.02 213.36) (diameter 0) (color 0 0 0 0) + (uuid aa78ced3-3b91-47e1-9083-03512feb94e6) + ) + (junction (at 231.14 73.66) (diameter 0) (color 0 0 0 0) + (uuid ac06097b-eed3-4024-a3d9-7e4a80c8ab20) + ) + (junction (at 205.74 213.36) (diameter 0) (color 0 0 0 0) + (uuid b2066d33-493e-4d22-9441-520d2a50946c) + ) + (junction (at 231.14 213.36) (diameter 0) (color 0 0 0 0) + (uuid b2f6331e-db8d-434f-a04c-c4cf41372c2e) + ) + (junction (at 287.02 172.72) (diameter 0) (color 0 0 0 0) + (uuid b8f76e94-9487-4d92-ac25-69ecaf9481c0) + ) + (junction (at 132.08 213.36) (diameter 0) (color 0 0 0 0) + (uuid ba323831-a95c-49e7-aa9d-ab660ae1ce7d) + ) + (junction (at 269.24 187.96) (diameter 0) (color 0 0 0 0) + (uuid bb8132bb-b407-4eab-bc0c-626c40155195) + ) + (junction (at 256.54 213.36) (diameter 0) (color 0 0 0 0) + (uuid bfc7ba20-d2fb-4fa7-ba3a-5e5a27e0583e) + ) + (junction (at 307.34 124.46) (diameter 0) (color 0 0 0 0) + (uuid c1c6545c-fd76-4eb1-9214-a10f1c75e854) + ) + (junction (at 142.24 104.14) (diameter 0) (color 0 0 0 0) + (uuid c30b493a-2664-4bdd-9185-28522c2d8c8d) + ) + (junction (at 129.54 180.34) (diameter 0) (color 0 0 0 0) + (uuid c347f047-2e98-4b0c-925d-de29e65da4be) + ) + (junction (at 236.22 91.44) (diameter 0) (color 0 0 0 0) + (uuid c45614a6-7726-4f2e-a639-3ff3bb9a260a) + ) + (junction (at 243.84 86.36) (diameter 0) (color 0 0 0 0) + (uuid c5baca48-1881-4b1d-83e2-e064b44774dc) + ) + (junction (at 210.82 168.91) (diameter 0) (color 0 0 0 0) + (uuid c8274a4a-ba02-4ad2-a8c2-8e4611c8e24d) + ) + (junction (at 256.54 187.96) (diameter 0) (color 0 0 0 0) + (uuid ccce4e59-b172-4826-ba85-3b82b56aa79a) + ) + (junction (at 116.84 104.14) (diameter 0) (color 0 0 0 0) + (uuid ce14d867-30af-40ce-b4b7-4526d8442446) + ) + (junction (at 287.02 114.3) (diameter 0) (color 0 0 0 0) + (uuid d7ad732d-13a8-4242-8ef6-743a1bd123d5) + ) + (junction (at 205.74 168.91) (diameter 0) (color 0 0 0 0) + (uuid de75ce3d-eece-4192-8159-7fe5cb411b7c) + ) + (junction (at 205.74 91.44) (diameter 0) (color 0 0 0 0) + (uuid e0019953-eed7-42a4-9c8c-edee6914f8e1) + ) + (junction (at 129.54 142.24) (diameter 0) (color 0 0 0 0) + (uuid e664a69a-b913-470f-84a6-78201115289e) + ) + (junction (at 142.24 91.44) (diameter 0) (color 0 0 0 0) + (uuid efa4969b-12f1-43ef-ab76-7d88dd8498d3) + ) + (junction (at 320.04 142.24) (diameter 0) (color 0 0 0 0) + (uuid f5dec3de-72eb-49af-93f0-bdf0340f85ec) + ) + + (no_connect (at 99.06 83.82) (uuid 0089f76f-5946-4cfc-b7b7-071d9d437262)) + (no_connect (at 99.06 109.22) (uuid 404659ed-140d-4427-92b8-7f57175eae97)) + (no_connect (at 99.06 101.6) (uuid 6415deff-82f8-469c-8170-1329b564232e)) + (no_connect (at 99.06 76.2) (uuid d1f53f69-732d-43d0-bec8-e525cdf123a6)) + (no_connect (at 99.06 68.58) (uuid d26ad578-d296-4764-aed3-28b0343b5d34)) + (no_connect (at 99.06 92.71) (uuid fa76eba4-d3ed-4dc9-9cbb-22ee22915263)) + + (wire (pts (xy 307.34 111.76) (xy 307.34 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 017a6f45-c048-40d0-a58a-b14b4a49e614) + ) + (wire (pts (xy 243.84 167.64) (xy 276.86 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01a05dbf-6a7a-4628-9d66-a4746a7d6a38) + ) + (wire (pts (xy 320.04 104.14) (xy 320.04 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02bf8d75-9b93-461b-9abf-7cef77830df8) + ) + (wire (pts (xy 127 73.66) (xy 167.64 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04860165-04fb-4449-8688-1bb307676a46) + ) + (wire (pts (xy 129.54 142.24) (xy 134.62 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04cea23c-1027-4681-b38a-334c951c01b5) + ) + (wire (pts (xy 320.04 121.92) (xy 320.04 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06144527-0221-432f-962c-1b6fa6d99b37) + ) + (wire (pts (xy 127 73.66) (xy 127 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09991830-41ad-45ed-a0a3-60e2fdbb097c) + ) + (wire (pts (xy 116.84 121.92) (xy 116.84 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09bba0d7-2fed-40cb-8989-dc9658b5168e) + ) + (wire (pts (xy 205.74 168.91) (xy 210.82 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0aa44396-5ea9-48ef-848e-a851fe16d2a6) + ) + (wire (pts (xy 167.64 208.28) (xy 167.64 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c71491c-d697-4ee3-8ee8-ed60d700aaaa) + ) + (wire (pts (xy 287.02 99.06) (xy 287.02 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1223dbe2-8a2d-4d23-bb75-124ac7e773ce) + ) + (wire (pts (xy 116.84 213.36) (xy 132.08 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 148ff85c-f3ac-454a-85c5-7ff0af9d8105) + ) + (wire (pts (xy 307.34 187.96) (xy 307.34 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14b5e4f0-9d40-467a-9fa9-858722610061) + ) + (wire (pts (xy 116.84 167.64) (xy 121.92 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1868127d-c029-4a98-a9a5-1d1ff29ad0fc) + ) + (wire (pts (xy 149.86 116.84) (xy 154.94 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19abc11b-c761-4c7a-b0c6-4433b571c5cb) + ) + (wire (pts (xy 320.04 142.24) (xy 320.04 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19f55d2b-094a-40d7-9aa0-548f0dc08ce5) + ) + (wire (pts (xy 320.04 128.27) (xy 332.74 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bd3de12-163d-4d43-859d-2dab23013fe8) + ) + (wire (pts (xy 269.24 156.21) (xy 210.82 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1d9fd18d-3608-4deb-a241-5cbc475c3631) + ) + (wire (pts (xy 243.84 124.46) (xy 218.44 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ed2fe7d-eb25-4b83-9f15-825a64f9cc45) + ) + (wire (pts (xy 210.82 156.21) (xy 210.82 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 201e4507-b468-473c-99c0-90edbd5fd625) + ) + (wire (pts (xy 167.64 213.36) (xy 193.04 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2056e943-bae0-4193-a6d4-4ed71342c72d) + ) + (wire (pts (xy 142.24 185.42) (xy 142.24 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2103225a-8b0e-4e71-b423-b8c0c782a78c) + ) + (wire (pts (xy 116.84 73.66) (xy 127 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 226a872a-8b42-4201-b747-19becd2f9b14) + ) + (wire (pts (xy 167.64 73.66) (xy 167.64 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2278f29a-e4ed-4609-837e-327dbe9c7518) + ) + (wire (pts (xy 269.24 172.72) (xy 287.02 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 229c87c8-8595-4db8-9c66-10557d68f54a) + ) + (wire (pts (xy 274.32 143.51) (xy 269.24 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22c8addf-84c4-4b00-8d32-cc7ecb802a29) + ) + (wire (pts (xy 129.54 180.34) (xy 132.08 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24a9f567-bb3c-4d19-addb-71ae815cd123) + ) + (wire (pts (xy 307.34 208.28) (xy 307.34 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26ba2583-713d-4f3d-97ae-80f2cc338015) + ) + (wire (pts (xy 167.64 149.86) (xy 167.64 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2714d36d-b487-4b49-a218-3934b3387780) + ) + (wire (pts (xy 243.84 167.64) (xy 243.84 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ceea000-9d77-4ab2-89df-596250ccda64) + ) + (wire (pts (xy 124.46 91.44) (xy 142.24 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d88e37b-acab-4131-9ac5-2309c20d38ca) + ) + (wire (pts (xy 231.14 180.34) (xy 231.14 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e088208-de7e-4be8-aeee-4b3aecdf8517) + ) + (wire (pts (xy 132.08 180.34) (xy 134.62 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fee78e9-ed34-4424-80a4-d5336345cef0) + ) + (wire (pts (xy 142.24 213.36) (xy 167.64 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 303ba618-7f88-4102-baaa-84e61c16ec81) + ) + (wire (pts (xy 307.34 147.32) (xy 307.34 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 314a6cec-39f4-43d9-b1dd-52cce18dc59e) + ) + (wire (pts (xy 320.04 128.27) (xy 320.04 129.54)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35dbe0b0-0891-4ad2-a4f7-dec59c17cec1) + ) + (wire (pts (xy 142.24 168.91) (xy 142.24 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 372e623d-1a31-49ba-8359-078ff3bd72b7) + ) + (wire (pts (xy 243.84 185.42) (xy 243.84 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38a7a0c8-d10d-4831-b718-fa7d12406136) + ) + (wire (pts (xy 99.06 76.2) (xy 92.71 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3917317e-9967-4ec6-8ed7-d9542fd175a3) + ) + (wire (pts (xy 116.84 104.14) (xy 116.84 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3bd9b280-e1e8-412b-9c6f-94ee4901bf7c) + ) + (wire (pts (xy 193.04 213.36) (xy 205.74 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3deaa419-eb7e-4af7-87b5-bd01bdb2f470) + ) + (wire (pts (xy 205.74 102.87) (xy 193.04 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e84d39c-8051-4df7-8e65-39319ab7b9b7) + ) + (wire (pts (xy 167.64 73.66) (xy 193.04 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f983cc7-70ed-4760-a4bb-c75a10969990) + ) + (wire (pts (xy 261.62 119.38) (xy 261.62 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ff3318d-fcd8-426b-b1ec-97a0c5d7873c) + ) + (wire (pts (xy 193.04 102.87) (xy 193.04 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40fd03b2-c80e-4ca2-a1ea-3aca0b1fa45f) + ) + (wire (pts (xy 116.84 147.32) (xy 116.84 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41f90048-6e3e-42ac-a65b-444b96f53bbc) + ) + (wire (pts (xy 231.14 73.66) (xy 243.84 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 425602e4-d266-4c83-b4fc-144d6fc68bb8) + ) + (wire (pts (xy 129.54 142.24) (xy 129.54 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 429d660d-e46c-42ed-8a13-4286f4f5ca12) + ) + (wire (pts (xy 167.64 193.04) (xy 167.64 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 432fc045-3c82-431f-acfe-07afe7b65856) + ) + (wire (pts (xy 99.06 109.22) (xy 92.71 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 459c531c-e5b8-4309-aa62-2a12c3345bcf) + ) + (wire (pts (xy 287.02 114.3) (xy 287.02 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45cbb3b6-7cff-44f4-9867-d2ca9a0cf14e) + ) + (wire (pts (xy 116.84 86.36) (xy 116.84 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 47751bed-2558-4941-9ce3-1df97dbe9526) + ) + (wire (pts (xy 175.26 187.96) (xy 180.34 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d4da70f-4157-4a53-aa5f-b26e66c9097a) + ) + (wire (pts (xy 287.02 138.43) (xy 287.02 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4db442a1-cb4c-429d-9ce2-3ee4859ad9fc) + ) + (wire (pts (xy 269.24 187.96) (xy 307.34 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4de53f2f-67b8-491a-8f05-b790f1829587) + ) + (wire (pts (xy 132.08 208.28) (xy 132.08 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f6556f4-eccb-4473-a455-bc1ea0105c0c) + ) + (wire (pts (xy 256.54 96.52) (xy 256.54 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f795a9c-0101-498e-8be7-42c65bf36568) + ) + (wire (pts (xy 142.24 168.91) (xy 151.13 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5435a837-f37f-426f-bc2a-97d60e3ef163) + ) + (wire (pts (xy 320.04 124.46) (xy 320.04 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d58c7ff-759c-46e0-9812-9e113a8d59f1) + ) + (wire (pts (xy 132.08 180.34) (xy 132.08 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dafe490-3707-4fec-91aa-100c8c1661e4) + ) + (wire (pts (xy 116.84 208.28) (xy 116.84 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f040f6f-9367-436b-af7b-11c565021b84) + ) + (wire (pts (xy 287.02 154.94) (xy 312.42 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6271b501-8ac7-4739-8cdc-93c5378e7126) + ) + (wire (pts (xy 307.34 99.06) (xy 312.42 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6276a377-5945-44a2-839f-d56d4a4e7dde) + ) + (wire (pts (xy 99.06 68.58) (xy 92.71 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 643e4270-374a-48ce-868e-313a1b9ef269) + ) + (wire (pts (xy 193.04 96.52) (xy 193.04 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64719d0e-76e2-4fb3-970e-a17c77aaaffe) + ) + (wire (pts (xy 269.24 133.35) (xy 269.24 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64c37c89-e985-48e1-adfc-8300f370cab7) + ) + (wire (pts (xy 261.62 107.95) (xy 287.02 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 68bb2464-e7ab-46f4-a972-4d2804264ec0) + ) + (wire (pts (xy 158.75 168.91) (xy 205.74 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69205eee-b322-49de-80ea-5e08c429bbe2) + ) + (wire (pts (xy 243.84 73.66) (xy 320.04 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a41d130-a297-4d95-9f19-3871bca28b95) + ) + (wire (pts (xy 116.84 96.52) (xy 116.84 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6af3b49c-6172-4979-9180-0050dba87071) + ) + (wire (pts (xy 243.84 208.28) (xy 243.84 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b874e81-b0f4-4d10-8a9c-8d5da78c9016) + ) + (wire (pts (xy 91.44 149.86) (xy 116.84 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6d75a2dd-2c84-480f-945b-b41ad784d772) + ) + (wire (pts (xy 307.34 124.46) (xy 320.04 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 70b9f2b8-83eb-42fa-a891-4ea00d2e8b80) + ) + (wire (pts (xy 142.24 208.28) (xy 142.24 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72d27432-5ac1-4d1f-8fdd-fa9473efd95c) + ) + (wire (pts (xy 129.54 172.72) (xy 129.54 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76eed3f8-eb86-4452-ad84-a66a144e100f) + ) + (wire (pts (xy 269.24 114.3) (xy 287.02 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78287c26-34de-47da-b81e-3eb1d9443880) + ) + (wire (pts (xy 307.34 213.36) (xy 320.04 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 785cc635-1da7-47ed-bd6c-fbcff2ef9f98) + ) + (wire (pts (xy 314.96 142.24) (xy 320.04 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79762e8c-a1e2-4bd4-a3b1-b4f20ff2aac9) + ) + (wire (pts (xy 320.04 160.02) (xy 320.04 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79cfbbea-1e82-4164-9819-478372511a7a) + ) + (wire (pts (xy 320.04 73.66) (xy 332.74 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d216b42-2224-4147-8427-e8853ad676ac) + ) + (wire (pts (xy 99.06 101.6) (xy 92.71 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e66af61-54ec-4f8d-b980-6cd28a6b683b) + ) + (wire (pts (xy 193.04 73.66) (xy 231.14 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fb88ac7-3c59-444f-8c4c-fae7576d5ec6) + ) + (wire (pts (xy 314.96 106.68) (xy 320.04 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80d826fa-7243-42d2-bec3-96437feaebad) + ) + (wire (pts (xy 116.84 104.14) (xy 142.24 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84fafcee-65e8-49a5-9a45-f99c0aec18d9) + ) + (wire (pts (xy 205.74 91.44) (xy 205.74 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85e90c74-e2f7-437a-a55c-4429271311d2) + ) + (wire (pts (xy 264.16 205.74) (xy 269.24 205.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8616064d-ba46-4a5e-8afd-6726ebf77450) + ) + (wire (pts (xy 231.14 208.28) (xy 231.14 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 880710e6-435e-4074-8adb-548f52fd2ca7) + ) + (wire (pts (xy 116.84 149.86) (xy 116.84 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c76aa0d-8d5c-490d-9faf-e7142e2eb380) + ) + (wire (pts (xy 213.36 187.96) (xy 256.54 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c7d4a04-d795-4c35-a120-400f307da699) + ) + (wire (pts (xy 205.74 213.36) (xy 231.14 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8ebbe8c6-1b30-486e-bbd0-ba9bfb25594d) + ) + (wire (pts (xy 320.04 73.66) (xy 320.04 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f580654-4a15-4f17-8248-05fa4e59f16f) + ) + (wire (pts (xy 205.74 193.04) (xy 205.74 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f95d24f-4e64-41df-b247-a6f5b5ae1bb7) + ) + (wire (pts (xy 142.24 121.92) (xy 142.24 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 900c5523-d8e0-49b8-b50e-f8bba733b617) + ) + (wire (pts (xy 92.71 128.27) (xy 154.94 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92f85c45-e502-4599-b9b1-cfec04baec55) + ) + (wire (pts (xy 142.24 91.44) (xy 142.24 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93d4b502-cd1b-4068-95e0-6cdf19064360) + ) + (wire (pts (xy 236.22 91.44) (xy 248.92 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94f1ef63-dad1-4181-bbf2-71ec07a3580a) + ) + (wire (pts (xy 287.02 154.94) (xy 287.02 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94f66312-af91-4991-8a39-4b80ef6fb037) + ) + (wire (pts (xy 99.06 83.82) (xy 92.71 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9659bca3-fc80-4834-9e96-a9e2d0888b18) + ) + (wire (pts (xy 307.34 124.46) (xy 307.34 137.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96d61d9b-100c-4b3c-ae70-50b5e763b0c5) + ) + (wire (pts (xy 116.84 185.42) (xy 116.84 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a3322e6-ab12-416d-b10a-315f8e229d97) + ) + (wire (pts (xy 287.02 172.72) (xy 287.02 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ad06d66-826e-4b87-b1c8-49abd6fc871a) + ) + (wire (pts (xy 243.84 213.36) (xy 256.54 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9af22e26-89e9-4fce-851b-af661baa6a25) + ) + (wire (pts (xy 269.24 133.35) (xy 279.4 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e175251-beac-4829-b03d-a086db40a264) + ) + (wire (pts (xy 320.04 137.16) (xy 320.04 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9f859261-a6af-4370-80f2-95c16e735d6b) + ) + (wire (pts (xy 287.02 143.51) (xy 287.02 154.94)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a2c87274-075b-40cb-8b5e-e22368fc69a7) + ) + (wire (pts (xy 210.82 168.91) (xy 223.52 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a600e825-0006-4e8f-940d-3d7e9722cb2f) + ) + (wire (pts (xy 193.04 193.04) (xy 193.04 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a64f31e6-dd80-4556-a5ea-2c508cf74be2) + ) + (wire (pts (xy 231.14 173.99) (xy 231.14 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7b7744b-47ac-4442-adab-3244a42d12a5) + ) + (wire (pts (xy 243.84 73.66) (xy 243.84 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa3e997b-8ce6-4a11-bfb8-69a2098a80e0) + ) + (wire (pts (xy 124.46 180.34) (xy 129.54 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aab4444a-c58c-4b49-b8f1-c6ac52233000) + ) + (wire (pts (xy 256.54 99.06) (xy 287.02 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab599ba2-ba92-4d5d-a73c-4981487f00e9) + ) + (wire (pts (xy 142.24 91.44) (xy 160.02 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af51e101-c962-4032-a58f-0fdf670a0f85) + ) + (wire (pts (xy 129.54 149.86) (xy 167.64 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b771f055-b7a9-4ad6-a9f5-dfc1d8f1cb81) + ) + (wire (pts (xy 231.14 213.36) (xy 243.84 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf169b10-bf22-49d5-b299-8dc5e06ead2f) + ) + (wire (pts (xy 243.84 86.36) (xy 256.54 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf399827-ff08-4214-972d-6a04b239592e) + ) + (wire (pts (xy 218.44 66.04) (xy 218.44 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf48fbfe-9330-4c2f-9ec2-7f0139e30aed) + ) + (wire (pts (xy 124.46 142.24) (xy 129.54 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1a9bc10-f77e-49ab-9605-5a5deb013b5f) + ) + (wire (pts (xy 320.04 213.36) (xy 331.47 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c44e6579-ad45-49c0-a6c1-7715400af84d) + ) + (wire (pts (xy 269.24 162.56) (xy 269.24 156.21)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c8acae72-906c-45bf-bd9b-754769cd1be7) + ) + (wire (pts (xy 142.24 162.56) (xy 158.75 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c92f4095-e93e-40c6-ab91-da9680db3374) + ) + (wire (pts (xy 116.84 167.64) (xy 116.84 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb41f588-2c36-48a6-9b4f-32a24dfcf2e9) + ) + (wire (pts (xy 200.66 91.44) (xy 205.74 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc7d2051-4ccd-4e16-9151-54493a9ac8e0) + ) + (wire (pts (xy 154.94 116.84) (xy 154.94 128.27)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cda80a4d-c227-4388-8ab0-3e1de06a3043) + ) + (wire (pts (xy 205.74 168.91) (xy 205.74 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d224fc1e-7508-4aea-8a25-3dd4d30d374f) + ) + (wire (pts (xy 269.24 143.51) (xy 269.24 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d2a317ea-5363-4112-920b-51c9117c605e) + ) + (wire (pts (xy 231.14 73.66) (xy 231.14 163.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5803936-f788-43f1-a2e1-f928c182e3ce) + ) + (wire (pts (xy 205.74 91.44) (xy 236.22 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d5930c08-2ca1-4cf1-bcab-3e89f051428c) + ) + (wire (pts (xy 320.04 106.68) (xy 320.04 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8183e65-3930-4680-a9f8-75309428fcdb) + ) + (wire (pts (xy 231.14 180.34) (xy 236.22 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d8ef4469-30da-47e8-88bb-f398adb8ccc2) + ) + (wire (pts (xy 193.04 177.8) (xy 193.04 182.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9032d99-e28f-4fcf-b184-6db9520b4d90) + ) + (wire (pts (xy 256.54 187.96) (xy 256.54 200.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9076265-0435-49b3-89dc-5f6a67e565ba) + ) + (wire (pts (xy 142.24 104.14) (xy 142.24 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9574e7b-420c-41fd-99bb-6ced4a600a5e) + ) + (wire (pts (xy 276.86 167.64) (xy 279.4 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid db3f6bd3-610d-4ba4-b75d-156e1fa8a47a) + ) + (wire (pts (xy 180.34 187.96) (xy 185.42 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd5f842e-eb8f-48ad-a186-49c7b69ff330) + ) + (wire (pts (xy 193.04 148.59) (xy 193.04 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dea07cf0-8cf2-4b5f-87e6-5db791ff0672) + ) + (wire (pts (xy 256.54 213.36) (xy 287.02 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0cda063-b1c5-453c-acf3-e1ca7b4ea578) + ) + (wire (pts (xy 287.02 107.95) (xy 287.02 114.3)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0debe86-f7c9-47ce-b485-be7206d80a76) + ) + (wire (pts (xy 307.34 99.06) (xy 307.34 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e152dba5-2c4a-4be7-8197-253bf6aba133) + ) + (wire (pts (xy 243.84 96.52) (xy 243.84 124.46)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e22d9934-0416-4810-b37f-f7308f54269d) + ) + (wire (pts (xy 142.24 162.56) (xy 142.24 168.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2a36594-8513-4e7f-8e5c-7d4f75616b7e) + ) + (wire (pts (xy 129.54 162.56) (xy 127 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4c1536f-337c-4cca-a098-34b4f2387f57) + ) + (wire (pts (xy 180.34 177.8) (xy 193.04 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e4d3dd0e-a2b0-47bd-8e9f-12b656eea025) + ) + (wire (pts (xy 243.84 124.46) (xy 243.84 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5211032-1875-44d6-8c16-380c98a8a7a0) + ) + (wire (pts (xy 180.34 187.96) (xy 180.34 177.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed709d9e-125e-4853-bcb3-24456e5f223c) + ) + (wire (pts (xy 256.54 210.82) (xy 256.54 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eec3807f-f126-4805-b0f2-d3303459bb85) + ) + (wire (pts (xy 256.54 187.96) (xy 269.24 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f021f589-5a70-4979-b9a2-0cdf6fb37243) + ) + (wire (pts (xy 193.04 73.66) (xy 193.04 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f36d703b-86be-4591-9285-0d7ac825472e) + ) + (wire (pts (xy 92.71 116.84) (xy 109.22 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3f2f0a7-bce1-48bb-917b-4d8bcd2b3eec) + ) + (wire (pts (xy 269.24 205.74) (xy 269.24 187.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4d58c02-609b-454c-b89c-f5b3e2cf2335) + ) + (wire (pts (xy 167.64 96.52) (xy 167.64 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f72624a7-8c5b-4ec1-ae16-4eca4f50bc3c) + ) + (wire (pts (xy 287.02 213.36) (xy 307.34 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f75af73e-04f5-4233-8fe4-428f4b148294) + ) + (wire (pts (xy 99.06 92.71) (xy 92.71 92.71)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7d18c8c-3506-40d4-9bd3-3379f645797c) + ) + (wire (pts (xy 287.02 99.06) (xy 307.34 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f977bce1-efba-4235-8021-bdb8861e39d8) + ) + (wire (pts (xy 158.75 66.04) (xy 158.75 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f983f50c-ca98-4c00-a122-66ef239a4a8f) + ) + (wire (pts (xy 281.94 143.51) (xy 287.02 143.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f986b708-0123-4077-bfa8-0b65e6c48fa3) + ) + (wire (pts (xy 132.08 213.36) (xy 142.24 213.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fa5b558c-7a28-4d1f-8b40-e27f57822548) + ) + (wire (pts (xy 142.24 147.32) (xy 142.24 162.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fadaf175-beb3-4c24-9690-bec9479a725a) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 139.7 142.24 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 04b1345b-b320-4bb7-9e80-332854ebfc81) + (property "Reference" "Q6" (id 0) (at 144.78 140.9699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 144.78 143.5099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 144.78 144.78 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 139.7 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6645febf-e467-40fd-b9bd-f35ffaad3121)) + (pin "2" (uuid f72c75bc-e36a-457b-ba84-a1ccdd1d4457)) + (pin "3" (uuid eb557a84-d6a9-474d-90c5-15a41e948162)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 321.31 119.38 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 129f5779-3945-49ac-a7cf-32b3baeab6c2) + (property "Reference" "R11" (id 0) (at 322.58 116.8399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "27" (id 1) (at 322.58 119.3799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 321.818 118.11 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 320.04 118.11 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 6e5dee11-423f-452e-87f0-5e1a65921a9b)) + (pin "2" (uuid 44151528-9cce-4ada-8d06-e7b882b1bd4c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 86.36 83.82 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 243d0c9c-7030-4a54-aaa9-31d234fc30a2) + (property "Reference" "U1" (id 0) (at 86.995 78.74 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 86.995 81.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 86.36 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 83.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8a4582f9-93ac-43b2-8e86-55a5e258b471)) + (pin "2" (uuid de21c279-565b-4885-b1e7-865ce761a2c2)) + (pin "3" (uuid f42aa7de-d28f-4998-8c25-19098ee70e96)) + (pin "4" (uuid b8add4bc-3b30-4f3b-9320-55fab1bb7140)) + (pin "5" (uuid 483bc476-034e-465d-9878-41537755613e)) + (pin "6" (uuid 8be0d461-6e8f-4254-9b15-ca668b919b96)) + (pin "7" (uuid 8f0df222-8d45-458d-99f2-d836ce10f855)) + (pin "8" (uuid 0e3f02c3-a798-4c0b-84d2-39fe9ca3255d)) + (pin "9" (uuid d0777c3f-eccb-486b-9be7-dc376c21ad8a)) + (pin "10" (uuid 94a9deff-3c01-44c3-b26f-80838655234b)) + (pin "11" (uuid 1d6dcaba-f488-455c-bc9c-e4a660090c2a)) + (pin "12" (uuid 38e79a01-7b49-4d12-ad0c-0139b1d49fc8)) + (pin "13" (uuid 84535eee-2768-4c1e-a63b-bff218b80eb9)) + (pin "14" (uuid 952e7e68-e8b1-4ed5-becb-e6afc91367d2)) + (pin "15" (uuid 68a8c916-80c0-4ae5-b639-5020a7253dd0)) + (pin "16" (uuid e9bd36ef-f308-4892-9bb7-f97bd256cd89)) + (pin "17" (uuid a53bca6c-12d1-4a9e-ac86-4460cfc87329)) + (pin "18" (uuid 5386575b-a1d8-4b87-86d0-ff2d250462ea)) + (pin "19" (uuid ddc76a44-82f8-4019-9b27-a640dafe7b14)) + (pin "20" (uuid 47a27d3f-0565-4511-9f29-ce2a1511a194)) + (pin "21" (uuid 8b1ffe47-60a8-46a8-b4d9-3acdb3f99e18)) + (pin "22" (uuid 9ec8e152-aa06-4bf0-a8b7-12b2914cb109)) + (pin "23" (uuid e59e8e9d-591d-43cd-8bab-3d46e847b2db)) + (pin "24" (uuid 66293c7d-5a11-435f-980e-9bae4bfa1edd)) + (pin "25" (uuid 0e0ddd23-1ea4-4fbd-aca7-a8c679a6d022)) + (pin "26" (uuid d69f4635-d100-495b-b9ba-e3075977d028)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 118.11 205.74 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 261fea52-c772-4aba-bbd4-587c06a29450) + (property "Reference" "R1" (id 0) (at 119.38 203.1999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 119.38 205.7399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 118.618 204.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 116.84 204.47 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid a26b21d3-de8e-4a88-b5b0-f90207e3ee55)) + (pin "2" (uuid 10d3efbd-fbdc-4d2a-8035-22732693cda0)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 309.88 106.68 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) + (uuid 2a382b43-8a65-45e4-be1a-a85397066318) + (property "Reference" "Q23" (id 0) (at 304.8 105.4099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 306.07 107.95 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 304.8 104.14 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 309.88 106.68 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b8ec300f-c9e9-4285-92a2-a428e1574ac8)) + (pin "2" (uuid c2a2095c-dbc9-4271-a1d8-12fa26015d90)) + (pin "3" (uuid acd82fb2-37fb-4532-89b1-301548588044)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 284.48 167.64 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2a81fbbc-3334-4c1e-8c9c-edd414b2cb2b) + (property "Reference" "Q22" (id 0) (at 289.56 166.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 289.56 168.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 289.56 170.18 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 284.48 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a10789a-ae65-40fd-a40d-c18e8f3695a5)) + (pin "2" (uuid 6f14bcb4-31b0-482e-86ec-ac43849e51a8)) + (pin "3" (uuid 5a17580a-4294-40ef-b9ad-0e9c339750dd)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 119.38 180.34 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2cd04c8d-44df-4f48-b574-8439da6d302c) + (property "Reference" "Q4" (id 0) (at 114.3 179.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 114.3 181.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 114.3 177.8 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 119.38 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 23e5b519-ea6b-4a9c-a16d-2330b923d6e6)) + (pin "2" (uuid 559a4332-3bf9-4d2a-a4c5-fc37af319132)) + (pin "3" (uuid 573d70d5-5677-489d-ad3c-f37e1368ff3e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 85.09 149.86 0) (unit 9) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 314ce284-76f5-4c27-8c45-39c050b7715b) + (property "Reference" "U1" (id 0) (at 85.725 144.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 85.725 147.32 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 85.09 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 85.09 149.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 31f6bff5-2e5f-4eba-ac92-9d7b49c3439c)) + (pin "2" (uuid 532ff92c-90a0-4926-884c-e639b2bce742)) + (pin "3" (uuid 2389344f-ec8b-4505-887c-4a2b6daecead)) + (pin "4" (uuid a17251ec-bdca-44a8-b860-3bc264af79f6)) + (pin "5" (uuid fc3a0df5-de20-4357-9191-86a3683f4e69)) + (pin "6" (uuid bd0b0643-96cf-40c9-8d40-c150de558880)) + (pin "7" (uuid c5ce8dcd-58f8-46bb-84f9-8f6ce2562b7a)) + (pin "8" (uuid e9b00517-7985-469a-8778-24a5945163b9)) + (pin "9" (uuid 62ddb6b5-d217-415f-b942-1736bb03b52f)) + (pin "10" (uuid 2eb4f621-23f4-43c0-aeeb-8393acf22edd)) + (pin "11" (uuid c8dabc95-f63b-496c-ba5c-6bcb3a5247e1)) + (pin "12" (uuid 9d088c00-d3f3-49a3-ab57-1133691c0f1d)) + (pin "13" (uuid 99b19d83-f848-44eb-b4c9-717fc695a91c)) + (pin "14" (uuid 688f9e2b-d401-4f7f-a712-a210b9beec19)) + (pin "15" (uuid 234855e9-d9d4-4d9b-8302-08cfe697b722)) + (pin "16" (uuid 19c05db7-501b-4f38-ac3e-ed8779d09cd3)) + (pin "17" (uuid a9d24feb-915f-4c8f-9b07-e2902a20a845)) + (pin "18" (uuid 2f0f836f-4f92-4875-9564-4c8c807a3af8)) + (pin "19" (uuid 3c93565d-f769-4fd9-84c4-2329132618eb)) + (pin "20" (uuid e5c1675a-f364-4cc0-8bcc-740e4fb0ddfd)) + (pin "21" (uuid 07552e11-f0af-4072-96d8-8b2e813a358e)) + (pin "22" (uuid 01834f9e-2caf-4f8d-8fa5-8e216d0eab3a)) + (pin "23" (uuid b7800870-f259-4f05-b8b6-2eb44ac615bc)) + (pin "24" (uuid 07b9d9f1-02c2-4df8-aa9f-da46f82450bb)) + (pin "25" (uuid 893842b8-14ea-4594-9fa1-a36554638257)) + (pin "26" (uuid 56c11259-6027-4d65-a2dd-0682d6de31b5)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 245.11 205.74 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3a0f2c0c-baea-4871-83e9-7bf4a05e4304) + (property "Reference" "R8" (id 0) (at 246.38 203.1999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "100" (id 1) (at 246.38 205.7399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 245.618 204.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 243.84 204.47 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 35adb8c9-6ed8-498d-bc19-cf679b0022eb)) + (pin "2" (uuid 53d5f9be-d7e2-4656-9c7e-67618dabebd4)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 241.3 180.34 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3c84ee8a-ac54-4922-9521-c6f42cbe5816) + (property "Reference" "Q16" (id 0) (at 246.38 179.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 245.11 184.15 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 246.38 177.8 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 241.3 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 42f13bab-db37-439a-b448-bde9c167723b)) + (pin "2" (uuid aa4bb18a-76eb-48bf-942d-d80213d9674e)) + (pin "3" (uuid 64ecfe07-e5ba-448c-815f-b78b3cb22181)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 208.28 187.96 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) + (uuid 41596da8-c17d-4a51-a201-da3945052ef9) + (property "Reference" "Q13" (id 0) (at 203.2 186.6899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 204.47 189.23 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 203.2 185.42 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 208.28 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 801fc238-b2a9-4781-b82f-593f6b3d8dca)) + (pin "2" (uuid d8da53ce-18bf-4645-adf0-aee268e362e3)) + (pin "3" (uuid f4c8a77c-e58e-4589-95a7-f0412adde410)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 119.38 142.24 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b14b995-133b-400b-ad37-a8275212d1f8) + (property "Reference" "Q3" (id 0) (at 114.3 140.9699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 114.3 143.5099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 114.3 144.78 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 119.38 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b8859fbd-4183-4f9a-aa9f-96839f2ddfbf)) + (pin "2" (uuid 87bec67a-a5b2-4b38-af81-b5a6c24aeb77)) + (pin "3" (uuid 13de81aa-f64e-40ed-a139-170271b8ba50)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 165.1 91.44 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e3f257d-f848-42e2-929d-5e5b26668307) + (property "Reference" "Q9" (id 0) (at 170.18 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 170.18 92.7099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 170.18 93.98 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 165.1 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d419b15e-3439-460b-a13d-02f4a720637d)) + (pin "2" (uuid 806f12b0-547a-4601-b8e8-6dc25b177e29)) + (pin "3" (uuid e81f833f-c141-4d97-aaa3-e595407c5aec)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 224.79 66.04 180) (unit 12) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e49f94e-1a1b-4062-9117-173871fec742) + (property "Reference" "U1" (id 0) (at 228.6 65.405 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 228.6 67.945 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 224.79 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 224.79 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e4e1f5ab-bdd3-404c-a555-2939defec814)) + (pin "2" (uuid 47e6dc1f-9545-41b7-a455-c25bda6540e5)) + (pin "3" (uuid bfcbba59-7aaf-4b44-926a-cfa98224e416)) + (pin "4" (uuid 9fefb0d3-2998-4b8f-a554-c1ae36d57173)) + (pin "5" (uuid f0b5138e-2b69-417c-afb9-527128cefa84)) + (pin "6" (uuid d0f75569-b66e-42ea-ab3c-0bc350f24b9e)) + (pin "7" (uuid f13a2a6a-37f8-4e44-a835-4ae46f356a58)) + (pin "8" (uuid 5f02eec2-3722-4d47-9813-0fa7da4b68e1)) + (pin "9" (uuid d4aec1d9-9127-497e-897b-8b8621581b07)) + (pin "10" (uuid 53101931-8992-469e-9747-d46f5e90a32d)) + (pin "11" (uuid 35da9684-9b9b-47b5-b9e0-fe47fac5f35b)) + (pin "12" (uuid 9479d08e-c210-41b5-8a4a-c571fc063acf)) + (pin "13" (uuid 66c967eb-c5db-465c-a38c-d7de3bd5981f)) + (pin "14" (uuid ed97ff40-2f3f-4795-b2c3-a110268cfecb)) + (pin "15" (uuid ca5e2d49-689f-4e0c-95e0-40b4c210efa7)) + (pin "16" (uuid d3f108bb-61ab-447d-872d-075012ce702b)) + (pin "17" (uuid 2954c527-63a1-456c-b8c0-8344bd38c2cc)) + (pin "18" (uuid a504c1c6-da3e-4864-92ce-56f5b1cb8a30)) + (pin "19" (uuid 5a38743b-5675-4871-aa71-f110b0e684fa)) + (pin "20" (uuid f6997ebf-3562-44c2-85ea-e177d15b2cb2)) + (pin "21" (uuid bd44edce-25fd-4848-8ef8-d79407936316)) + (pin "22" (uuid e0c58b96-4070-4a4a-aa47-f73e3507d757)) + (pin "23" (uuid 682504bb-d77f-4244-9faa-ec83570724cd)) + (pin "24" (uuid 61a83b1a-ad5c-45e3-8916-88d57e377e60)) + (pin "25" (uuid f805eda6-1c2f-4d78-ae0b-b0cfce6b6ef2)) + (pin "26" (uuid cc05e4e7-250f-48cd-9645-1514333f4f06)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 144.78 116.84 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4f062630-f0e1-46a7-b26c-9ac2efd17a0f) + (property "Reference" "Q8" (id 0) (at 139.7 115.5699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 139.7 118.1099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 139.7 114.3 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 144.78 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 27a0d677-1776-4a23-9f4b-039139828008)) + (pin "2" (uuid c812caa5-f45e-4f74-a821-59e4ec931754)) + (pin "3" (uuid e162512b-c069-498c-9ed1-55af5bc3c8d5)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 86.36 116.84 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 52b3024b-6b7c-4b03-8dee-c55eb3ef28f7) + (property "Reference" "U1" (id 0) (at 86.995 111.76 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 86.995 114.3 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 86.36 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid db83fb82-7be1-4304-a164-ffcd22e995a5)) + (pin "2" (uuid 6c8371df-037e-4180-824d-42279018cc6f)) + (pin "3" (uuid 6e2dca57-9bcd-4300-be87-0f56616288f6)) + (pin "4" (uuid bbb41e5d-103a-49fe-94a2-5b698f4b7eea)) + (pin "5" (uuid fe6b4421-2dbb-4675-b7a1-7dda51c2d2fc)) + (pin "6" (uuid 0c24724a-1285-484a-a598-2eba8e90befe)) + (pin "7" (uuid e58a7c23-ec8f-4291-b11f-0cae263fdcba)) + (pin "8" (uuid 25d651bf-d0f0-41a0-b7a4-7920cccc27e6)) + (pin "9" (uuid 07654743-d569-410e-a573-b452d2b6fb5a)) + (pin "10" (uuid 7d9d24f3-c52f-4f71-95b8-ebd1b7326bd4)) + (pin "11" (uuid 1de3e422-e27b-4571-ae12-c5aa4980a1b7)) + (pin "12" (uuid efe2319f-c62e-468d-9a78-39c091b6546f)) + (pin "13" (uuid 3fb896f7-3317-4c72-ba82-fb88c6f65bea)) + (pin "14" (uuid b0c1afa9-69d7-4dd3-92d8-09bbbf8c804a)) + (pin "15" (uuid d1ca4256-b3f7-4604-93e9-126684bf13ce)) + (pin "16" (uuid edefe3ea-f3ab-44ea-b5dc-64f620aefa27)) + (pin "17" (uuid cc84f059-d66f-48c5-a0df-597646a46cbb)) + (pin "18" (uuid 43e85dbf-5027-4e95-9730-da790a151de5)) + (pin "19" (uuid 69faa02b-a4e4-403b-891a-f26a5a4cfad8)) + (pin "20" (uuid 697cc876-2b51-4774-942f-940e1d29c48b)) + (pin "21" (uuid 32582619-af4f-49a8-9b4b-454aa118668b)) + (pin "22" (uuid 960cc41a-27d2-419b-a4f7-c5d7b4b62a4c)) + (pin "23" (uuid 6f7b65ab-7cfa-4910-b284-f6133936fdd6)) + (pin "24" (uuid 138fab77-5449-46e3-a132-94bab8dc9f4a)) + (pin "25" (uuid d430f109-91f4-454f-81f9-aaa55663d295)) + (pin "26" (uuid 29372f02-3e9e-4e1d-898e-cc96aad58f11)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 139.7 180.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 54e65f0b-a113-44fd-a6a5-94534557710e) + (property "Reference" "Q7" (id 0) (at 144.78 179.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 144.78 181.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 144.78 177.8 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 139.7 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d43113d7-2aa9-4c85-9cf7-b9d850d2f6d2)) + (pin "2" (uuid ded35037-9eb4-475e-8191-ee6f895e5d6a)) + (pin "3" (uuid 684cfec1-abb4-4566-a79a-0444dc0a2b15)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 86.36 109.22 0) (unit 14) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 55d71d53-aac8-49dc-89a0-4a184dc12486) + (property "Reference" "U1" (id 0) (at 86.995 104.14 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 86.995 106.68 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 86.36 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be3950a2-9c75-4915-a221-c8c3ba125d1f)) + (pin "2" (uuid f44efdcb-1c10-4fff-aa35-7f0751d529da)) + (pin "3" (uuid ed0883ad-acd9-4e82-a154-69320231378a)) + (pin "4" (uuid df56d772-8b82-4c26-bd48-4d40e2b99346)) + (pin "5" (uuid 2d139706-4214-471f-9fcd-bcf6121a51bc)) + (pin "6" (uuid 79c52e32-052f-4c53-b4c3-571e2d55acac)) + (pin "7" (uuid a30427f3-d783-4df2-b345-fc476bf3fec7)) + (pin "8" (uuid 57a4ff5c-11c8-40f2-8d4e-a35b3f4a1127)) + (pin "9" (uuid 6252b906-c8d7-4811-9ddd-c7bc21fea61f)) + (pin "10" (uuid c7768240-0bfd-473a-a760-acf359457f0c)) + (pin "11" (uuid 6941ba1c-19eb-4ef7-a7b6-aff2a4fb3549)) + (pin "12" (uuid dc0b005f-fd3b-4ecd-8f74-82ccf6edc906)) + (pin "13" (uuid 06cc5aa8-c4e9-4486-ae1a-3cc03932f5d3)) + (pin "14" (uuid d01faa45-085a-420e-9545-d975f2321a88)) + (pin "15" (uuid 7d8d3360-7887-46a9-8fe3-7da1dd2985fc)) + (pin "16" (uuid 1e2a7f91-90ad-4a97-a040-aad20d832c8c)) + (pin "17" (uuid 5706062f-3b7b-4ce8-bfa4-eb2a45f58478)) + (pin "18" (uuid 6623a386-65a9-4440-9335-03c773893c40)) + (pin "19" (uuid 57b702f0-7ecd-44bf-a673-f4710085849f)) + (pin "20" (uuid d91e3b1a-608f-4802-a5bb-41ffa9afe947)) + (pin "21" (uuid c91576c2-b423-4222-a3c2-a65d21e095cf)) + (pin "22" (uuid 21d31902-66a0-452c-bdc1-f84a22e50c98)) + (pin "23" (uuid 21e3f75b-2738-442f-9370-9c89e183cd13)) + (pin "24" (uuid 02948abf-820d-4338-a0ac-d83903111c09)) + (pin "25" (uuid 29bfb79e-40a0-4694-bc35-b9dd5bde6b34)) + (pin "26" (uuid e3b5bbcc-e63c-462e-9652-8c48f1a77e25)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 232.41 205.74 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 582a7878-31e2-459e-a479-7fc9a0ca6bab) + (property "Reference" "R7" (id 0) (at 233.68 203.1999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 233.68 205.7399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 232.918 204.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 231.14 204.47 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 9683a833-3909-4dc2-9e0f-8a96c2a98592)) + (pin "2" (uuid d9d2810e-8b69-4dd8-83d5-3bacb389a8e2)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 279.4 142.24 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 664bfe04-a1ce-4cd8-89d3-c60cf121a877) + (property "Reference" "R9" (id 0) (at 278.13 137.16 0)) + (property "Value" "50k" (id 1) (at 278.13 139.7 0)) + (property "Footprint" "" (id 2) (at 278.13 141.732 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 278.13 143.51 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 295b2a5b-f0f9-4040-949b-e3fc2941b7d7)) + (pin "2" (uuid 0a0e6160-948d-4730-b453-df8a90131572)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 86.36 101.6 0) (unit 13) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68fa7a81-20e2-47bd-a5d8-da5daab3a759) + (property "Reference" "U1" (id 0) (at 86.995 96.52 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 86.995 99.06 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 86.36 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 101.6 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3d0f7250-91b3-4a73-949a-6378cf210616)) + (pin "2" (uuid 119361c4-1889-4298-9d7c-30450399e2ee)) + (pin "3" (uuid b4b60a28-1175-450f-b293-dd1c7455c1a9)) + (pin "4" (uuid 2807e23f-0401-4c8d-baad-51f826d8b777)) + (pin "5" (uuid c0167927-763c-421c-b61a-a7c1ebb9625b)) + (pin "6" (uuid 10511292-d29a-408d-ba02-6c0abb8cebaf)) + (pin "7" (uuid 365ed2c2-f734-4506-af04-f7e6d8aeb7f6)) + (pin "8" (uuid 72c332e1-8caa-4d9d-8825-c471384c6e40)) + (pin "9" (uuid 557a7a59-87c8-48e7-9903-0635b715b9eb)) + (pin "10" (uuid b154f07f-bda8-403d-8cff-97ff034abebe)) + (pin "11" (uuid 2689060d-f77e-4743-af96-635f1d35432e)) + (pin "12" (uuid 85e3cb24-22f9-4c8b-a685-b876eb771030)) + (pin "13" (uuid d5e0d97e-2369-4362-87fe-f792da0e2024)) + (pin "14" (uuid 11519a85-8caa-4f9a-a356-92ef7cf01bb8)) + (pin "15" (uuid 48f61755-4c91-4b1e-9b1e-08ffc974a853)) + (pin "16" (uuid cbe0fabe-a7a0-41d3-9181-7c3b8cb0b1e8)) + (pin "17" (uuid 7cceed48-e4e8-4349-8db4-df6847a7a565)) + (pin "18" (uuid c85d07df-55cf-497e-bd4f-377a1f2b215a)) + (pin "19" (uuid d1ee6050-e9d1-4773-8826-c8aa66ce94a8)) + (pin "20" (uuid 0f25f8f9-d708-4b19-9151-f61aefdc4b02)) + (pin "21" (uuid d056a870-9562-4894-9136-e858ed00dd89)) + (pin "22" (uuid bd5f2c9a-864e-429f-af8e-327c3715c90b)) + (pin "23" (uuid 1d5c47c3-a4a9-4470-bb81-7dced3d69e8e)) + (pin "24" (uuid 1cfc0862-3a1b-4e4f-80be-58333d5f032e)) + (pin "25" (uuid b8d757ea-1b45-4ac4-a1e5-101897d6dcb8)) + (pin "26" (uuid 309700d5-3b3b-4d40-8090-c952c0d65bfc)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 152.4 66.04 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68fc202c-a4dc-47fa-8a41-b6fa6b159983) + (property "Reference" "U1" (id 0) (at 153.035 60.96 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 153.035 63.5 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 152.4 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 152.4 66.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8d08c9f1-9136-42d8-abf9-d21136e8c789)) + (pin "2" (uuid 23d07624-ac13-4cd9-a31a-d46978afb100)) + (pin "3" (uuid 8a374adb-5ebb-43cb-ab1b-ccdf12388a05)) + (pin "4" (uuid 6a99e1df-b10c-4518-ac78-8a39ca556092)) + (pin "5" (uuid c2637c5f-d49b-41bb-a94c-07ae1e5c4c2c)) + (pin "6" (uuid 2ad0e004-f2b5-439d-bbd5-cfde08601f64)) + (pin "7" (uuid 787cbdc9-2601-4845-a497-cb84f54e9600)) + (pin "8" (uuid b5941db7-e4f3-4745-b141-ba7963bbdbba)) + (pin "9" (uuid 71394b70-0de5-4993-94cb-da29d0022eb6)) + (pin "10" (uuid ff30bfc5-bdca-49d2-8bb0-7dff3e6c8fcb)) + (pin "11" (uuid 1f3d38ad-15c7-43ca-8573-0ddc12ad8e9b)) + (pin "12" (uuid 4c55e48a-c432-4358-9a38-efd754724cc3)) + (pin "13" (uuid 09c72055-56bd-482d-be56-726734545667)) + (pin "14" (uuid dfc78aab-6864-4f5e-8d10-b3b9f7f3dedb)) + (pin "15" (uuid 3922aefb-41e2-49e2-8305-2c036965c484)) + (pin "16" (uuid 8505470f-f8f3-4cb1-b72b-7077b6d6b87a)) + (pin "17" (uuid bd89d3dd-fe99-4b3c-b3a1-419b90724b6a)) + (pin "18" (uuid fbc88f6a-c4a4-4cb9-9e89-9459d1fa18a2)) + (pin "19" (uuid 2b92add9-893f-48ea-839c-03720d9c20e3)) + (pin "20" (uuid e0415e58-284c-4b19-bbbb-2d0c54fcc49f)) + (pin "21" (uuid 09040184-fef4-4645-ac5c-90d5f5c7be84)) + (pin "22" (uuid 25ead234-fe6f-4628-9b22-261434562648)) + (pin "23" (uuid b880d929-6887-4aa1-961c-e11df97f641a)) + (pin "24" (uuid 9d1fc4e6-aea2-412f-8f91-959b9289ca03)) + (pin "25" (uuid 93db2c3f-d949-4989-a6a1-f72b1d88f330)) + (pin "26" (uuid b30b580e-60d0-469a-938e-55c20b7433f7)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 143.51 205.74 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 72250a88-7e8a-410c-b9fd-712ba125fa58) + (property "Reference" "R3" (id 0) (at 144.78 203.1999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 144.78 205.7399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 144.018 204.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 142.24 204.47 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid caa67c72-b87e-44bf-a2ba-7c4310c9c6e3)) + (pin "2" (uuid dc56a180-4335-448e-8c5d-9dec057e28cf)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 266.7 119.38 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 796b9cfe-acc9-45e5-96ac-23598640ed8d) + (property "Reference" "Q19" (id 0) (at 271.78 118.1099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 270.51 123.19 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 271.78 116.84 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 266.7 119.38 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1c13ef60-90de-47b3-bdfc-5a5bab831c07)) + (pin "2" (uuid cc136a1c-1561-4e1f-914c-bc6c05c030c7)) + (pin "3" (uuid 101beda5-24ad-497b-9aad-6a1b10eb942a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 86.36 68.58 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7eb25017-a1a2-4f5c-adff-8c54f7199ab5) + (property "Reference" "U1" (id 0) (at 86.995 63.5 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 86.995 66.04 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 86.36 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 68.58 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 37a0498a-82d8-4e3e-a915-a6f3038809e7)) + (pin "2" (uuid a1e58f33-4f99-493e-8f6e-b40c3d102bc5)) + (pin "3" (uuid aa40ad4e-42ec-4238-bbd1-eb4a9ea5a419)) + (pin "4" (uuid 14e5b3e7-68d8-46dc-a30a-5aa34c74576d)) + (pin "5" (uuid 84e8fca4-7eba-4deb-870d-a0454cbb4ae7)) + (pin "6" (uuid d76335b9-c8cc-4e66-b998-8981f9bcc37f)) + (pin "7" (uuid a36b23d5-ce1b-4f76-a71a-a9935ca77058)) + (pin "8" (uuid 09ebbf0a-06c2-48ac-8cba-05977172148a)) + (pin "9" (uuid 49dbce2c-518e-4727-ae5d-2910d24f5019)) + (pin "10" (uuid 451b80f2-4bfd-4af8-8de5-cf1c492a7636)) + (pin "11" (uuid 00aef6fb-a138-4d1b-8f14-1272e6947564)) + (pin "12" (uuid 72e81467-ecd7-4a8d-a2be-de6bf35c2cc0)) + (pin "13" (uuid 32a2c047-5015-4500-8597-f148343e4027)) + (pin "14" (uuid cfee4ec4-90c1-4574-8557-2920a0ca0a42)) + (pin "15" (uuid 114260b2-a00b-46a0-be09-36693b4a8288)) + (pin "16" (uuid 22229a60-c832-4849-85cd-bd375fcc913f)) + (pin "17" (uuid 43bb2e2a-6b1a-408e-9fc5-caaf7aec6849)) + (pin "18" (uuid 4b924f7b-80e8-4afa-a3ab-5a7b275dcfe4)) + (pin "19" (uuid b0e998d2-7d8c-47c3-ada5-f4b9dda17727)) + (pin "20" (uuid a09d940b-0abd-4288-9fc5-a5a739448ebd)) + (pin "21" (uuid 35684d95-ee69-4b70-af94-5c7e7f4a1a9c)) + (pin "22" (uuid 0c057cfe-92d0-4266-a1f9-0e4f21788fd8)) + (pin "23" (uuid 49ed9182-d17f-4f72-8349-b7824251157a)) + (pin "24" (uuid 0b5138a4-adf8-4daa-87d0-47182f2443ee)) + (pin "25" (uuid 14e6ca8d-2add-4b91-83be-4807f193f1a6)) + (pin "26" (uuid a209fbdd-8d3c-499e-abb0-8db6f299fc0b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 309.88 142.24 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9265edbb-ad36-42cc-b696-5ccb07721bea) + (property "Reference" "Q24" (id 0) (at 304.8 140.9699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 304.8 143.5099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 304.8 144.78 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 309.88 142.24 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid cd944f30-4235-4c7a-bb1c-19c131730a6f)) + (pin "2" (uuid c1f43473-8a2f-4b20-a56c-a4bf5680943d)) + (pin "3" (uuid 965b1711-97bf-48f3-8863-bf45cbc844d7)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 271.78 167.64 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 944e840d-de7f-4598-a186-fa8cdb2c2b22) + (property "Reference" "Q20" (id 0) (at 266.7 166.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 266.7 168.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 266.7 170.18 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 271.78 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 73a1b27f-33a1-42db-969a-663bba3b2d37)) + (pin "2" (uuid e80c3eaf-d719-48ac-8fdd-090f767698ba)) + (pin "3" (uuid 739a122b-f2ef-47fb-a13c-0207ae4e9d7a)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 86.36 128.27 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9894701e-ccd3-44c5-b688-4922ed0a7f10) + (property "Reference" "U1" (id 0) (at 86.995 123.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 86.995 125.73 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 86.36 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid befc9ce4-8ef6-41c8-8a3a-5b632023360e)) + (pin "2" (uuid d9897668-c410-4794-a8f3-94f1ab50a510)) + (pin "3" (uuid 8fb5ba17-c90c-4e18-b535-2a28060cc329)) + (pin "4" (uuid dae0b02a-286d-4221-9fb2-00aed86807e5)) + (pin "5" (uuid 176d4190-b9ce-49fa-8fd2-b0fb99c20490)) + (pin "6" (uuid 04ce8968-257a-42f9-89c9-71764be29270)) + (pin "7" (uuid 4cba491f-e851-4a72-8fd4-f2f3b54073c7)) + (pin "8" (uuid 4e137bb2-8d8f-45db-b497-7f56b64b1be4)) + (pin "9" (uuid ee618de9-2a64-4fc5-8588-9bd62d1a9f05)) + (pin "10" (uuid be1bc605-b359-42cf-b26d-cbef019910f6)) + (pin "11" (uuid 60fd0512-6db0-4211-8347-a44852029152)) + (pin "12" (uuid 4c772648-17f7-4f1c-b8fe-16b984b290fe)) + (pin "13" (uuid e5b8c0e7-ec66-484c-b368-0c185853adbe)) + (pin "14" (uuid 50b0142c-af36-4eea-9a11-1375a4e681f9)) + (pin "15" (uuid 9a79bf65-00b9-4c25-8970-a5b49258ebc8)) + (pin "16" (uuid 176dc64e-9601-4ba6-b183-edf9ade8648c)) + (pin "17" (uuid 636a6405-4d7d-47db-b4ba-b0248e81b283)) + (pin "18" (uuid 3ba2f0a6-005e-446e-919c-4dca93d1ed62)) + (pin "19" (uuid 44096b92-43fa-4508-8891-0a5ff1d44c93)) + (pin "20" (uuid 8ce82e4b-c136-4b96-b1f8-24f27b1e9cf2)) + (pin "21" (uuid 16659863-24e8-4a8d-8c4f-5eb8c7f8743c)) + (pin "22" (uuid 95c52b11-cdf1-4fd7-b42a-cce26ae17b99)) + (pin "23" (uuid 55c4d61e-60d7-4d61-a224-527473b672ae)) + (pin "24" (uuid f96a89dc-b682-4c3b-9b75-bd3cfa48a5c3)) + (pin "25" (uuid 0c4e3277-29e6-49ee-82d5-4e60df2ed3fa)) + (pin "26" (uuid f928e74c-8f79-49f4-9654-c7f2e92c90e4)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 86.36 76.2 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9bb1d2b5-de30-4b3b-a498-5f49673a868a) + (property "Reference" "U1" (id 0) (at 86.995 71.12 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 86.995 73.66 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 86.36 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4e66f41a-6b79-444c-a9e3-10ae33eb12f2)) + (pin "2" (uuid 2819e76d-dc1a-4d2c-b438-030cc6ac412e)) + (pin "3" (uuid 256802d9-86fa-48fb-85b0-5fa0f351b5ec)) + (pin "4" (uuid de9c808a-db71-4171-8281-4d48eff99242)) + (pin "5" (uuid 157aa23c-fb77-40d7-98b0-595374ced66e)) + (pin "6" (uuid 5cc9efd7-1f12-4791-81ef-45954f7c13da)) + (pin "7" (uuid 5d205e2b-9b1a-42f1-887f-7aec275c3005)) + (pin "8" (uuid 9a6e6529-02c6-4e67-8406-ba1189838f1f)) + (pin "9" (uuid f8d7a475-eb17-4f04-b0e2-3e9e5677833e)) + (pin "10" (uuid b24c8897-9f13-4667-ad18-5eb1741c8985)) + (pin "11" (uuid 9ee73b2d-de13-473d-96b9-038d80e5fbf1)) + (pin "12" (uuid 1939fdc5-5a65-49d2-aba2-5c217755f7ec)) + (pin "13" (uuid b96b2176-3532-4cd5-ae28-1537e0ed1fcb)) + (pin "14" (uuid 2fb16ccf-28f5-4a17-8e05-9825e25e28a3)) + (pin "15" (uuid e0fb618c-4d99-4382-8fc3-8666c75a0eb0)) + (pin "16" (uuid e61052b2-0719-4c13-a11b-25a8d527d5ce)) + (pin "17" (uuid b85f5747-a201-4d99-87b8-fe771c57835a)) + (pin "18" (uuid 853e9dde-ffc6-44c4-839f-66f5e505c4e7)) + (pin "19" (uuid f9366edd-9e49-4b82-9565-45abb6352f0b)) + (pin "20" (uuid cf4e3c40-524d-4f1d-951e-687fdc08e05f)) + (pin "21" (uuid a605a781-771e-4382-980a-834553cc93c4)) + (pin "22" (uuid b1864dbb-b274-44b2-9ffd-f0405e911dff)) + (pin "23" (uuid 36d65b2d-1c60-4cd6-9772-0125420526f4)) + (pin "24" (uuid de5fcd74-3663-44ee-9ad2-5d7d8c9ad8e4)) + (pin "25" (uuid a2536583-3fa6-4174-ba17-da650ee3e339)) + (pin "26" (uuid 44c42082-4d92-4db3-a654-1cfffd76ded3)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 119.38 91.44 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1e3dc6e-9c26-4698-b854-27b1e1d7930c) + (property "Reference" "Q2" (id 0) (at 114.3 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 114.3 92.7099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 114.3 93.98 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 119.38 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 37f837e5-86fd-41db-8dc5-64c40478df4d)) + (pin "2" (uuid 48d9ff4b-67ab-473e-9319-d300edaf1454)) + (pin "3" (uuid 1ed5bfba-f923-4009-a480-819f870b8fb2)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 317.5 99.06 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid a2ef786b-590c-42c0-a7a0-8dbf3ff6e999) + (property "Reference" "Q25" (id 0) (at 322.58 97.7899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 321.31 100.33 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 322.58 96.52 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 317.5 99.06 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 53f2eb80-597e-435e-9f60-bcd8e1a5aa87)) + (pin "2" (uuid 7f6662c4-6450-46fb-bd55-70a58de5fe7c)) + (pin "3" (uuid 40e61185-9374-4d14-89be-b922063ab967)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 308.61 205.74 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a9a82c42-76cb-4773-bc07-395efa86a245) + (property "Reference" "R10" (id 0) (at 309.88 203.1999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 309.88 205.7399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 309.118 204.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 307.34 204.47 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 35cc3ec3-3416-40d1-81da-4ff84d6759f6)) + (pin "2" (uuid 5119a597-9059-449b-b4f2-5c902755428a)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 127 167.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid afc1a73e-ffbf-4da2-9cb0-90551fed71bf) + (property "Reference" "Q5" (id 0) (at 132.08 166.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 132.08 168.9099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 132.08 165.1 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 127 167.64 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76950889-73da-4a76-9577-b8b4bba9dc4d)) + (pin "2" (uuid 3d96e179-8fd7-45d4-86fe-0e09451095f7)) + (pin "3" (uuid 9124bb86-f601-4f5b-887f-6744e1c42098)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 156.21 167.64 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b13637c2-24fd-44f7-b733-0e0fa5647c05) + (property "Reference" "R4" (id 0) (at 154.94 162.56 0)) + (property "Value" "300" (id 1) (at 154.94 165.1 0)) + (property "Footprint" "" (id 2) (at 154.94 167.132 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 154.94 168.91 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid fbcaa04f-9e0b-41f2-988e-665119cd682e)) + (pin "2" (uuid 1cf91c3f-3bc7-488a-a2a9-465d92124c98)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 337.82 213.36 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b358363e-06fa-4684-8771-3a4d2e8d0503) + (property "Reference" "U1" (id 0) (at 341.63 212.725 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 341.63 215.265 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 337.82 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 337.82 213.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e28cd8c9-260b-4d16-b6c8-db28d5f701fe)) + (pin "2" (uuid 549c96b1-2d87-4e47-9ee3-76dabd2b534a)) + (pin "3" (uuid 9dfd3f94-0644-499a-8f36-f9e8aabfd8e9)) + (pin "4" (uuid bbe8aa87-a415-4977-ab64-ec1138f265aa)) + (pin "5" (uuid 8ee7e686-24c1-44b5-adb8-00dc1f53a10c)) + (pin "6" (uuid fc8cee5a-d9e6-497f-91e5-ecd37b5efa99)) + (pin "7" (uuid 4c11895e-df38-47e7-ae48-9db30b8f01ac)) + (pin "8" (uuid b2973963-8983-4a74-a094-76f20cae74bf)) + (pin "9" (uuid 797b9854-025b-43b7-abcd-be15520e87d7)) + (pin "10" (uuid b90a3147-7dff-424a-9ac1-1d0d39d79d6b)) + (pin "11" (uuid 713c6f1e-c81f-43ed-ac13-0f327261ff94)) + (pin "12" (uuid f2a314f5-53aa-44f5-af10-d46b731f98fa)) + (pin "13" (uuid bf68f0f4-9968-4cac-8006-405d91ebf672)) + (pin "14" (uuid 64fb4ebd-7cf9-4068-8d2e-ce3dddb3d321)) + (pin "15" (uuid 5c58c77f-c741-47b7-bbcc-b7077c18b3ae)) + (pin "16" (uuid 91f615a4-9730-4352-aff7-d7322869038f)) + (pin "17" (uuid 66050cbe-134d-4b72-9f17-26da4ffea728)) + (pin "18" (uuid 54a1059a-6dc4-4de0-b6ba-eb176a19478f)) + (pin "19" (uuid d7e67d77-7cbb-4b97-b64d-b1d7fa2aee03)) + (pin "20" (uuid 1c808a27-eeeb-46aa-8694-479b1827deef)) + (pin "21" (uuid 79341e95-e3db-4c2a-9be3-4e67f5d532e4)) + (pin "22" (uuid d6755a11-40c0-40d1-b5e1-fa848c14ab3d)) + (pin "23" (uuid b530ed0a-9675-474b-8b3c-697ad2d7f300)) + (pin "24" (uuid 257ffbba-f5bf-4b1a-9f37-f0960050d4e2)) + (pin "25" (uuid 667fcb48-75e5-4eaa-bb90-80f06d3d3adb)) + (pin "26" (uuid 45a3cf4f-2ce4-4739-9524-ba6b9bf88b66)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 228.6 168.91 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid bca1a3e7-894d-4b6a-b0b1-9fc3e91982b9) + (property "Reference" "Q14" (id 0) (at 233.68 167.6399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 232.41 172.72 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 233.68 166.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 228.6 168.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8ca3dcff-9bc2-49a9-b404-01ce56193cfd)) + (pin "2" (uuid 15936187-f3ef-489f-806d-a6d50a448c2e)) + (pin "3" (uuid dc6371a8-e6dd-4198-935d-2cb4bc9f243f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 284.48 133.35 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid c3e4db22-74a8-4166-a249-d6ddcdd79edc) + (property "Reference" "Q21" (id 0) (at 289.56 132.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 288.29 137.16 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 289.56 130.81 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 284.48 133.35 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 318d46c0-b96f-49d6-9b67-a73051cb3ab4)) + (pin "2" (uuid 568ab295-7a1a-43c6-9cf8-151a78c08e24)) + (pin "3" (uuid d0978464-99f6-448e-9e2c-f083e5864e27)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 170.18 187.96 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cb8828a7-ec51-40c5-be05-80cb8de256c6) + (property "Reference" "Q10" (id 0) (at 165.1 186.6899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 165.1 189.2299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 165.1 185.42 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 170.18 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ccc45800-db51-45a4-847f-18a22873f237)) + (pin "2" (uuid a99d584b-7016-4fdc-99c5-19af3915539c)) + (pin "3" (uuid da7388e4-8dcb-4b87-9bf1-efd3d8176400)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 86.36 92.71 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d1402c5e-3f58-4879-8239-d64f987bda43) + (property "Reference" "U1" (id 0) (at 86.995 87.63 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 86.995 90.17 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 86.36 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 86.36 92.71 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2718a94b-d61d-4e0e-aab9-fb4ddb260f14)) + (pin "2" (uuid 48d33cd8-4e42-4c48-ad32-ebc03836b0c9)) + (pin "3" (uuid 3eef9ad7-648b-422d-9823-207e8e6a93eb)) + (pin "4" (uuid 0e2c6017-da7c-4d24-b2bc-04e5b1011dfa)) + (pin "5" (uuid 13a54a1d-6e20-478d-a407-520cc13881a5)) + (pin "6" (uuid 75416efe-32be-40a1-b5ca-6cc7d4bfcfba)) + (pin "7" (uuid 5cb5c203-65e1-438d-bbc3-e155e1f5273d)) + (pin "8" (uuid 990187b5-ad35-4dc9-b462-ad64e4ceb787)) + (pin "9" (uuid ef710711-e70d-4478-93b7-49a8d95ce933)) + (pin "10" (uuid 68c8065f-81ec-4b00-abc2-1af662ae156e)) + (pin "11" (uuid c84a4d59-043e-47a7-ac0c-d257fc65698c)) + (pin "12" (uuid c931eab1-20f7-4ed9-b2a8-e014e85bff7f)) + (pin "13" (uuid 081e532f-69c2-417d-abf9-a3cb7e75264d)) + (pin "14" (uuid a65e41fd-5df5-429a-992f-12fc922e6191)) + (pin "15" (uuid ba8f11d1-4d65-4477-811e-b308ab345d41)) + (pin "16" (uuid 09481145-39ee-41cb-ba87-1b4c56029dda)) + (pin "17" (uuid 65df0a10-2a3a-4d29-870a-59c33c6dc404)) + (pin "18" (uuid 9cef2499-a3ca-4dd3-a821-5d63a925a794)) + (pin "19" (uuid a812352a-4272-4bca-b937-8207b2537c3e)) + (pin "20" (uuid a060f74b-c42e-48db-912e-3e98612f2ba2)) + (pin "21" (uuid 7e767d31-4da6-4de0-b0d6-d5ad57d40afe)) + (pin "22" (uuid 8a8cfa6c-aae6-40ed-b4b1-41c1d07feddb)) + (pin "23" (uuid 61b04e39-cf13-4df3-8d75-25382eb21572)) + (pin "24" (uuid 1c7d8598-928e-4f0f-8bee-4a12f2083645)) + (pin "25" (uuid 392dd6a7-ed98-4d56-b9db-3f045b89086b)) + (pin "26" (uuid bd060db3-21c4-4f21-8690-9a16480fbdb3)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 317.5 154.94 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3e877a7-02eb-4bd2-b67b-998d8541ff73) + (property "Reference" "Q26" (id 0) (at 322.58 153.6699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 322.58 156.2099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 322.58 157.48 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 317.5 154.94 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 17d31e3d-ca21-4098-894d-7f32555e0d96)) + (pin "2" (uuid a24fadd7-661f-441c-96c4-83c1e746b831)) + (pin "3" (uuid 417d895d-d6ca-45d5-9a15-fb094d4e5cc7)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 114.3 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e0794d67-d342-4e24-b804-ad621b30cf2a) + (property "Reference" "Q1" (id 0) (at 119.38 115.5699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 119.38 118.1099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 119.38 114.3 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 114.3 116.84 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a32e8985-e413-43fe-b688-1d511132397e)) + (pin "2" (uuid 4b9ce2d8-38b0-4d7e-8d15-d52554512f5d)) + (pin "3" (uuid f0e71826-6a7f-46ec-9831-0a784ed56600)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 133.35 205.74 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e1a29877-fea4-4cb4-9412-c713d0f8af10) + (property "Reference" "R2" (id 0) (at 134.62 203.1999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k" (id 1) (at 134.62 205.7399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 133.858 204.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 132.08 204.47 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 6e3b94a5-f221-49cc-9fe7-2d9bed74cbb6)) + (pin "2" (uuid 8b7ad77e-96ed-4f1d-8761-45828d3e9bbc)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 259.08 205.74 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) + (uuid e30b1a54-9e9c-419d-a898-9440fb57c920) + (property "Reference" "Q18" (id 0) (at 254 204.4699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 255.27 207.01 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 254 203.2 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 259.08 205.74 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 26433412-1269-4a22-9a7e-cf3d15bae549)) + (pin "2" (uuid 0077369b-ff12-422d-8811-0e083f0ac2ef)) + (pin "3" (uuid 8610d415-d6dc-424f-9c88-ba07ef868635)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 241.3 91.44 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea08fc01-c1d1-4a2e-bbaa-d3cac692edc2) + (property "Reference" "Q15" (id 0) (at 246.38 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 246.38 92.7099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 246.38 93.98 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 241.3 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a53482f8-bd66-4790-9de4-e5aca44bb8ff)) + (pin "2" (uuid 6ace619f-9b6c-42f1-8fe9-331f44ac5b28)) + (pin "3" (uuid 93bc3161-8617-4462-9f75-bfc7dff0457c)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 168.91 205.74 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ec38dee2-51be-4604-b8b0-8dc65c8ba11c) + (property "Reference" "R5" (id 0) (at 170.18 203.1999 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 170.18 205.7399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 169.418 204.47 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 167.64 204.47 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 4b4ff125-5b16-4812-b75c-28ff357da9dc)) + (pin "2" (uuid 36efe9db-4cd0-4b38-949e-9b2db08a8175)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 254 91.44 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ec399371-f938-4319-a49b-d42475e6e352) + (property "Reference" "Q17" (id 0) (at 259.08 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 259.08 92.7099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 259.08 93.98 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 254 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5093e082-c84a-4955-a6f9-d1df69fb8c61)) + (pin "2" (uuid 3b48cd42-5921-4500-9f24-2fe9cbcb9721)) + (pin "3" (uuid aedcbf71-3e79-4b96-b4b8-2a9c0b8390d1)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 194.31 146.05 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ef880fc2-a89d-475d-81f0-5324106539ea) + (property "Reference" "R6" (id 0) (at 195.58 143.5099 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "40k" (id 1) (at 195.58 146.0499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 194.818 144.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 193.04 144.78 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 8c496052-0ee3-4319-a4fc-06d3c91e06c7)) + (pin "2" (uuid c09ffdb3-4cfb-471b-adb0-7dc35ef0a074)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 190.5 187.96 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f4d2aeef-399a-4e18-bf33-fd1ac2487d5d) + (property "Reference" "Q11" (id 0) (at 195.58 186.6899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 194.31 191.77 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 195.58 185.42 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 190.5 187.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 319facc4-a057-44c0-87e4-4a944f5b6386)) + (pin "2" (uuid 408a47e2-9583-4d86-9726-c85813f3a72e)) + (pin "3" (uuid 708a130c-12b5-483d-abd2-e67fe2f90841)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 339.09 128.27 180) (unit 10) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f7d63bdc-8622-4e8a-bc02-abefc3801d73) + (property "Reference" "U1" (id 0) (at 342.9 127.635 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 342.9 130.175 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 339.09 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 128.27 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1eebc71e-ec54-4efc-a0fd-a90fb15e4871)) + (pin "2" (uuid 9b3d6361-e97d-40af-8eb0-6d7a08f0a8b4)) + (pin "3" (uuid e12daf2a-9d64-4e86-8ab4-cc1119d675eb)) + (pin "4" (uuid 77449afd-a03c-4b23-8ddb-5f65836c8866)) + (pin "5" (uuid 46a1aabb-d75a-4119-9efd-ea63ba3da8c9)) + (pin "6" (uuid 861f4ab0-9f6a-49cf-b370-5eed32838c0e)) + (pin "7" (uuid 7f9fae6e-33fd-48ff-be7e-9ca20cf39340)) + (pin "8" (uuid c7cb0f48-f18e-4ea8-a42a-effd8169b544)) + (pin "9" (uuid 9939178e-62b0-4efa-8655-9a99e6fc73ff)) + (pin "10" (uuid 39a3a2a8-6a9c-495b-8aa7-e9b09bf10799)) + (pin "11" (uuid 3e8d75f0-9d02-46db-8923-51294116fc82)) + (pin "12" (uuid 8832832c-a861-45eb-b50d-48defb3b9de3)) + (pin "13" (uuid 68a4c2e9-a46c-471f-824d-054ad09b3b8d)) + (pin "14" (uuid afcf98cd-0573-452d-8252-80df10b9b2e1)) + (pin "15" (uuid ec726525-304b-4cef-8e5f-3d4f3cc859bf)) + (pin "16" (uuid 2d71afa7-dac9-43ec-9cb2-8a26ab6690a1)) + (pin "17" (uuid f616b71d-cc31-4d33-9816-fb4a1bee4418)) + (pin "18" (uuid 9a591193-a53c-4c1c-a47c-a823e10ae306)) + (pin "19" (uuid 6daa7bf9-bf0b-42ed-b28e-31159ba05a42)) + (pin "20" (uuid 9fa81647-5aad-4461-bcac-51703aa3ad86)) + (pin "21" (uuid a02f8b94-b55a-4e25-9fe0-ba606e286104)) + (pin "22" (uuid 41fd9e10-62fa-43aa-b5a2-cbd8164b81a4)) + (pin "23" (uuid 6abf089a-296f-4f57-a5c9-9f284de89284)) + (pin "24" (uuid 673799c3-96b0-462b-a5ca-c7b57475c9ee)) + (pin "25" (uuid 27b00c3a-0680-4683-9450-bf54e0d2b86d)) + (pin "26" (uuid cfc722ab-68d3-4325-93cc-eec942d12dd7)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 321.31 134.62 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9235b60-dd3b-4454-adbb-f2bb346dcb71) + (property "Reference" "R12" (id 0) (at 322.58 132.0799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "22" (id 1) (at 322.58 134.6199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 321.818 133.35 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 320.04 133.35 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 3bc15965-2bb0-4c4d-99f6-b5735f8fbfd4)) + (pin "2" (uuid f26cc5f6-8aa4-4a92-a5af-05e965435d9f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 195.58 91.44 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid faea797c-669c-4e1e-aa35-da4ea57c3a21) + (property "Reference" "Q12" (id 0) (at 190.5 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 190.5 92.7099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 190.5 93.98 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 195.58 91.44 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9a50ada7-acdf-4334-a213-3dd4935de636)) + (pin "2" (uuid 72a539d6-2987-4cb0-8be1-9445e84e8a71)) + (pin "3" (uuid 9d074b5f-e76a-48c7-927e-de0ee45f4418)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 339.09 73.66 180) (unit 11) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fde71b0c-9175-4450-b119-e0130bae040c) + (property "Reference" "U1" (id 0) (at 342.9 73.025 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 342.9 75.565 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 339.09 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 339.09 73.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 18e270c7-9b6a-4adb-91c1-abdb8a663a76)) + (pin "2" (uuid e6bef631-6caa-4f8c-b604-78de03db8a7e)) + (pin "3" (uuid f818ef06-aa2a-42ad-83c3-c19d8e6e99c0)) + (pin "4" (uuid 885c401b-e7c5-4eae-b885-bcb00c6766c6)) + (pin "5" (uuid b953d5e2-b5fe-4484-8c6d-ae6a50ba74b8)) + (pin "6" (uuid d747ccf4-ae22-41a7-9073-67efab9a5e96)) + (pin "7" (uuid 20e80ce0-085b-494f-9f8b-b6e51afdc674)) + (pin "8" (uuid bbca2873-d425-49fb-bff0-16fd5faa5b28)) + (pin "9" (uuid aff1f17b-2a92-4e30-8b4c-67ac773e347d)) + (pin "10" (uuid 51b01011-cc0d-4919-aa45-edb44eb6afd9)) + (pin "11" (uuid 1c4a3261-44e9-4d98-a53e-584f41d017e6)) + (pin "12" (uuid 2c99d418-380d-45f4-88b2-b47adb43bf4f)) + (pin "13" (uuid 5cc0ef96-0e7f-457b-9d56-f0e2a9c82cf7)) + (pin "14" (uuid 07d69be0-5c69-4b06-8670-4771d0e3071d)) + (pin "15" (uuid 059e05c3-c396-4295-986f-a59afddcf337)) + (pin "16" (uuid 09efa29b-e891-4efe-b4c8-b4a61a008c0d)) + (pin "17" (uuid 3e8335ca-1810-4fc3-bd06-5bd41e5ad2c9)) + (pin "18" (uuid 8fab5635-a2ff-4daf-8b10-59cba11cecc7)) + (pin "19" (uuid 095d74f0-4d68-41b1-b644-526b33182462)) + (pin "20" (uuid bde7be7e-0ab2-4cf5-8fe4-13bed8161b2f)) + (pin "21" (uuid 51ada80f-09fd-480c-86cc-25f8a1ec8306)) + (pin "22" (uuid c16e4f2e-29c2-40e8-848f-dc653f6397d9)) + (pin "23" (uuid 62550b70-5e75-483d-bab3-78c236ed6a19)) + (pin "24" (uuid 5706c725-56ea-4bc9-adb1-3db832214635)) + (pin "25" (uuid 30f3af7c-4cde-4052-a0c8-0c0c18c341e6)) + (pin "26" (uuid 55097c3c-fe5d-4fb1-8db0-65a6fe1ff33b)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/e0794d67-d342-4e24-b804-ad621b30cf2a" + (reference "Q1") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/a1e3dc6e-9c26-4698-b854-27b1e1d7930c" + (reference "Q2") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/4b14b995-133b-400b-ad37-a8275212d1f8" + (reference "Q3") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/2cd04c8d-44df-4f48-b574-8439da6d302c" + (reference "Q4") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/afc1a73e-ffbf-4da2-9cb0-90551fed71bf" + (reference "Q5") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/04b1345b-b320-4bb7-9e80-332854ebfc81" + (reference "Q6") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/54e65f0b-a113-44fd-a6a5-94534557710e" + (reference "Q7") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/4f062630-f0e1-46a7-b26c-9ac2efd17a0f" + (reference "Q8") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/4e3f257d-f848-42e2-929d-5e5b26668307" + (reference "Q9") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/cb8828a7-ec51-40c5-be05-80cb8de256c6" + (reference "Q10") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/f4d2aeef-399a-4e18-bf33-fd1ac2487d5d" + (reference "Q11") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/faea797c-669c-4e1e-aa35-da4ea57c3a21" + (reference "Q12") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/41596da8-c17d-4a51-a201-da3945052ef9" + (reference "Q13") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/bca1a3e7-894d-4b6a-b0b1-9fc3e91982b9" + (reference "Q14") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/ea08fc01-c1d1-4a2e-bbaa-d3cac692edc2" + (reference "Q15") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/3c84ee8a-ac54-4922-9521-c6f42cbe5816" + (reference "Q16") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/ec399371-f938-4319-a49b-d42475e6e352" + (reference "Q17") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/e30b1a54-9e9c-419d-a898-9440fb57c920" + (reference "Q18") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/796b9cfe-acc9-45e5-96ac-23598640ed8d" + (reference "Q19") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/944e840d-de7f-4598-a186-fa8cdb2c2b22" + (reference "Q20") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/c3e4db22-74a8-4166-a249-d6ddcdd79edc" + (reference "Q21") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/2a81fbbc-3334-4c1e-8c9c-edd414b2cb2b" + (reference "Q22") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/2a382b43-8a65-45e4-be1a-a85397066318" + (reference "Q23") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/9265edbb-ad36-42cc-b696-5ccb07721bea" + (reference "Q24") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/a2ef786b-590c-42c0-a7a0-8dbf3ff6e999" + (reference "Q25") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d3e877a7-02eb-4bd2-b67b-998d8541ff73" + (reference "Q26") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/261fea52-c772-4aba-bbd4-587c06a29450" + (reference "R1") (unit 1) (value "1k") (footprint "") + ) + (path "/e1a29877-fea4-4cb4-9412-c713d0f8af10" + (reference "R2") (unit 1) (value "50k") (footprint "") + ) + (path "/72250a88-7e8a-410c-b9fd-712ba125fa58" + (reference "R3") (unit 1) (value "1k") (footprint "") + ) + (path "/b13637c2-24fd-44f7-b733-0e0fa5647c05" + (reference "R4") (unit 1) (value "300") (footprint "") + ) + (path "/ec38dee2-51be-4604-b8b0-8dc65c8ba11c" + (reference "R5") (unit 1) (value "10k") (footprint "") + ) + (path "/ef880fc2-a89d-475d-81f0-5324106539ea" + (reference "R6") (unit 1) (value "40k") (footprint "") + ) + (path "/582a7878-31e2-459e-a479-7fc9a0ca6bab" + (reference "R7") (unit 1) (value "50k") (footprint "") + ) + (path "/3a0f2c0c-baea-4871-83e9-7bf4a05e4304" + (reference "R8") (unit 1) (value "100") (footprint "") + ) + (path "/664bfe04-a1ce-4cd8-89d3-c60cf121a877" + (reference "R9") (unit 1) (value "50k") (footprint "") + ) + (path "/a9a82c42-76cb-4773-bc07-395efa86a245" + (reference "R10") (unit 1) (value "50k") (footprint "") + ) + (path "/129f5779-3945-49ac-a7cf-32b3baeab6c2" + (reference "R11") (unit 1) (value "27") (footprint "") + ) + (path "/f9235b60-dd3b-4454-adbb-f2bb346dcb71" + (reference "R12") (unit 1) (value "22") (footprint "") + ) + (path "/7eb25017-a1a2-4f5c-adff-8c54f7199ab5" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/9bb1d2b5-de30-4b3b-a498-5f49673a868a" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/68fc202c-a4dc-47fa-8a41-b6fa6b159983" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/9894701e-ccd3-44c5-b688-4922ed0a7f10" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/52b3024b-6b7c-4b03-8dee-c55eb3ef28f7" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/b358363e-06fa-4684-8771-3a4d2e8d0503" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/243d0c9c-7030-4a54-aaa9-31d234fc30a2" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/d1402c5e-3f58-4879-8239-d64f987bda43" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/314ce284-76f5-4c27-8c45-39c050b7715b" + (reference "U1") (unit 9) (value "PORT") (footprint "") + ) + (path "/f7d63bdc-8622-4e8a-bc02-abefc3801d73" + (reference "U1") (unit 10) (value "PORT") (footprint "") + ) + (path "/fde71b0c-9175-4450-b119-e0130bae040c" + (reference "U1") (unit 11) (value "PORT") (footprint "") + ) + (path "/4e49f94e-1a1b-4062-9117-173871fec742" + (reference "U1") (unit 12) (value "PORT") (footprint "") + ) + (path "/68fa7a81-20e2-47bd-a5d8-da5daab3a759" + (reference "U1") (unit 13) (value "PORT") (footprint "") + ) + (path "/55d71d53-aac8-49dc-89a0-4a184dc12486" + (reference "U1") (unit 14) (value "PORT") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/uA748/uA748.sub b/library/SubcircuitLibrary/uA748/uA748.sub new file mode 100644 index 000000000..ba01bd2e0 --- /dev/null +++ b/library/SubcircuitLibrary/uA748/uA748.sub @@ -0,0 +1,46 @@ +* Subcircuit uA748 +.subckt uA748 unconnected-_u1-pad1_ unconnected-_u1-pad2_ net-_q6-pad1_ net-_q8-pad2_ net-_q1-pad2_ net-_q11-pad3_ unconnected-_u1-pad7_ unconnected-_u1-pad8_ net-_q3-pad1_ net-_q23-pad3_ net-_q12-pad3_ net-_q15-pad1_ unconnected-_u1-pad13_ unconnected-_u1-pad14_ +.title kicad schematic +.include PNP.lib +.include NPN.lib +q16 net-_q15-pad1_ net-_q14-pad3_ net-_q16-pad3_ Q2N2222 +q14 net-_q12-pad3_ net-_q13-pad1_ net-_q14-pad3_ Q2N2222 +q20 net-_q11-pad3_ net-_q15-pad1_ net-_q13-pad1_ Q2N2907A +r9 net-_q21-pad3_ net-_q19-pad3_ 50k +r7 net-_q11-pad3_ net-_q14-pad3_ 50k +q18 net-_q13-pad2_ net-_q13-pad2_ net-_q11-pad3_ Q2N2222 +r8 net-_q11-pad3_ net-_q16-pad3_ 100 +q15 net-_q15-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +r6 net-_q10-pad2_ net-_q12-pad1_ 40k +q12 net-_q12-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +q22 net-_q11-pad3_ net-_q15-pad1_ net-_q21-pad3_ Q2N2907A +r10 net-_q11-pad3_ net-_q13-pad2_ 50k +q26 net-_q11-pad3_ net-_q21-pad3_ net-_q24-pad2_ Q2N2907A +q24 net-_q13-pad2_ net-_q24-pad2_ net-_q23-pad3_ Q2N2907A +r5 net-_q11-pad3_ net-_q10-pad3_ 10k +q13 net-_q13-pad1_ net-_q13-pad2_ net-_q11-pad3_ Q2N2222 +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2222 +q11 net-_q10-pad2_ net-_q10-pad2_ net-_q11-pad3_ Q2N2222 +r1 net-_q11-pad3_ net-_q4-pad3_ 1k +q4 net-_q3-pad1_ net-_q4-pad2_ net-_q4-pad3_ Q2N2222 +r3 net-_q11-pad3_ net-_q7-pad3_ 1k +r2 net-_q11-pad3_ net-_q4-pad2_ 50k +r4 net-_q13-pad1_ net-_q6-pad1_ 300 +q7 net-_q6-pad1_ net-_q4-pad2_ net-_q7-pad3_ Q2N2222 +q5 net-_q12-pad3_ net-_q3-pad1_ net-_q4-pad2_ Q2N2222 +q17 net-_q17-pad1_ net-_q12-pad1_ net-_q12-pad3_ Q2N2907A +q21 net-_q17-pad1_ net-_q19-pad3_ net-_q21-pad3_ Q2N2222 +q19 net-_q17-pad1_ net-_q17-pad1_ net-_q19-pad3_ Q2N2222 +q23 net-_q17-pad1_ net-_q23-pad2_ net-_q23-pad3_ Q2N2222 +r12 net-_q24-pad2_ net-_q23-pad3_ 22 +q25 net-_q12-pad3_ net-_q17-pad1_ net-_q23-pad2_ Q2N2222 +r11 net-_q23-pad3_ net-_q23-pad2_ 27 +q2 net-_q1-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +q6 net-_q6-pad1_ net-_q10-pad1_ net-_q6-pad3_ Q2N2907A +q3 net-_q3-pad1_ net-_q10-pad1_ net-_q1-pad3_ Q2N2907A +q1 net-_q1-pad1_ net-_q1-pad2_ net-_q1-pad3_ Q2N2222 +q8 net-_q1-pad1_ net-_q8-pad2_ net-_q6-pad3_ Q2N2222 +q9 net-_q10-pad1_ net-_q1-pad1_ net-_q12-pad3_ Q2N2907A +* Control Statements + +.ends uA748 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA748/uA748_Previous_Values.xml b/library/SubcircuitLibrary/uA748/uA748_Previous_Values.xml new file mode 100644 index 000000000..562ab41b5 --- /dev/null +++ b/library/SubcircuitLibrary/uA748/uA748_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperessecsecsecD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.lib \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA798/NJF.lib b/library/SubcircuitLibrary/uA798/NJF.lib new file mode 100644 index 000000000..dbb2cbae5 --- /dev/null +++ b/library/SubcircuitLibrary/uA798/NJF.lib @@ -0,0 +1,4 @@ +.model J2N3819 NJF(Beta=1.304m Betatce=-.5 Rd=1 Rs=1 Lambda=2.25m Vto=-3 ++ Vtotc=-2.5m Is=33.57f Isr=322.4f N=1 Nr=2 Xti=3 Alpha=311.7u ++ Vk=243.6 Cgd=1.6p M=.3622 Pb=1 Fc=.5 Cgs=2.414p Kf=9.882E-18 ++ Af=1) diff --git a/library/SubcircuitLibrary/uA798/NPN.lib b/library/SubcircuitLibrary/uA798/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/uA798/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/uA798/PNP.lib b/library/SubcircuitLibrary/uA798/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/uA798/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/uA798/_autosave-uA798.sch b/library/SubcircuitLibrary/uA798/_autosave-uA798.sch new file mode 100644 index 000000000..ef3d4c7ea --- /dev/null +++ b/library/SubcircuitLibrary/uA798/_autosave-uA798.sch @@ -0,0 +1,1625 @@ +EESchema Schematic File Version 5 +EELAYER 36 0 +EELAYER END +$Descr A1 33110 23386 +encoding utf-8 +Sheet 1 1 +Title "" +Date "" +Rev "" +Comp "" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +Comment5 "" +Comment6 "" +Comment7 "" +Comment8 "" +Comment9 "" +$EndDescr +Connection ~ 5450 14400 +Connection ~ 6250 10900 +Connection ~ 6250 11400 +Connection ~ 6250 14400 +Connection ~ 6950 10700 +Connection ~ 6950 11900 +Connection ~ 6950 12600 +Connection ~ 6950 14400 +Connection ~ 7950 10400 +Connection ~ 7950 13200 +Connection ~ 8950 8400 +Connection ~ 8950 9400 +Connection ~ 8950 10700 +Connection ~ 8950 12600 +Connection ~ 8950 14400 +Connection ~ 9450 9400 +Connection ~ 9650 10900 +Connection ~ 9750 9600 +Connection ~ 9950 11400 +Connection ~ 9950 14400 +Connection ~ 10250 9600 +Connection ~ 10550 12600 +Connection ~ 10900 11900 +Connection ~ 10900 14400 +Connection ~ 11400 14400 +Connection ~ 11900 8400 +Connection ~ 11900 9400 +Connection ~ 11900 10100 +Connection ~ 11900 12350 +Connection ~ 12200 9600 +Connection ~ 12250 10900 +Connection ~ 12700 9600 +Connection ~ 12700 10350 +Connection ~ 13400 8400 +Connection ~ 13400 9400 +Connection ~ 13400 9950 +Connection ~ 13400 10350 +Connection ~ 13400 11100 +Connection ~ 13400 11850 +Connection ~ 13400 14400 +Connection ~ 13700 9600 +Connection ~ 13900 10350 +Connection ~ 13900 11850 +Connection ~ 14200 9600 +Connection ~ 14400 9600 +Connection ~ 14400 10350 +Connection ~ 14400 14400 +Connection ~ 14600 10350 +Connection ~ 14900 8400 +Connection ~ 14900 10750 +Connection ~ 14900 11450 +Connection ~ 14900 14400 +Connection ~ 15400 11450 +Connection ~ 15900 12900 +Connection ~ 15900 14400 +Connection ~ 16400 8400 +Connection ~ 16400 12350 +Connection ~ 16400 14400 +Connection ~ 16900 14400 +Connection ~ 18450 14400 +Connection ~ 19250 10900 +Connection ~ 19250 11400 +Connection ~ 19250 14400 +Connection ~ 19950 10700 +Connection ~ 19950 11900 +Connection ~ 19950 12600 +Connection ~ 19950 14400 +Connection ~ 20950 10400 +Connection ~ 20950 13200 +Connection ~ 21950 8400 +Connection ~ 21950 9400 +Connection ~ 21950 10700 +Connection ~ 21950 12600 +Connection ~ 21950 14400 +Connection ~ 22450 9400 +Connection ~ 22650 10900 +Connection ~ 22750 9600 +Connection ~ 22950 11400 +Connection ~ 22950 14400 +Connection ~ 23250 9600 +Connection ~ 23550 12600 +Connection ~ 23900 11900 +Connection ~ 23900 14400 +Connection ~ 24400 14400 +Connection ~ 24900 8400 +Connection ~ 24900 9400 +Connection ~ 24900 10100 +Connection ~ 24900 12350 +Connection ~ 25200 9600 +Connection ~ 25250 10900 +Connection ~ 25700 9600 +Connection ~ 25700 10350 +Connection ~ 26400 8400 +Connection ~ 26400 9400 +Connection ~ 26400 9950 +Connection ~ 26400 10350 +Connection ~ 26400 11100 +Connection ~ 26400 11850 +Connection ~ 26400 14400 +Connection ~ 26700 9600 +Connection ~ 26900 10350 +Connection ~ 26900 11850 +Connection ~ 27200 9600 +Connection ~ 27400 9600 +Connection ~ 27400 10350 +Connection ~ 27400 14400 +Connection ~ 27600 10350 +Connection ~ 27900 8400 +Connection ~ 27900 10750 +Connection ~ 27900 11450 +Connection ~ 27900 14400 +Connection ~ 28400 11450 +Connection ~ 28900 12900 +Connection ~ 28900 14400 +Connection ~ 29400 12350 +Connection ~ 29400 14400 +Wire Wire Line + 3400 14900 3400 15400 +Wire Wire Line + 3900 12250 3900 14900 +Wire Wire Line + 3900 12250 10450 12250 +Wire Wire Line + 3900 14900 3400 14900 +Wire Wire Line + 4400 6900 4400 8400 +Wire Wire Line + 4400 8400 8950 8400 +Wire Wire Line + 4400 14400 4400 16400 +Wire Wire Line + 4400 14400 5450 14400 +Wire Wire Line + 5000 11900 5950 11900 +Wire Wire Line + 5450 9900 5450 12400 +Wire Wire Line + 5450 12800 5450 14400 +Wire Wire Line + 5450 14400 6250 14400 +Wire Wire Line + 5750 12600 6950 12600 +Wire Wire Line + 6250 10900 6250 11400 +Wire Wire Line + 6250 10900 6650 10900 +Wire Wire Line + 6250 11400 6250 11700 +Wire Wire Line + 6250 12100 6250 14400 +Wire Wire Line + 6250 14400 6950 14400 +Wire Wire Line + 6550 10700 6950 10700 +Wire Wire Line + 6550 11100 6550 11400 +Wire Wire Line + 6550 11400 6250 11400 +Wire Wire Line + 6950 10400 7950 10400 +Wire Wire Line + 6950 10700 6950 10400 +Wire Wire Line + 6950 11100 6950 11900 +Wire Wire Line + 6950 11900 6950 12600 +Wire Wire Line + 6950 12600 6950 13000 +Wire Wire Line + 6950 13400 6950 14400 +Wire Wire Line + 6950 14400 8950 14400 +Wire Wire Line + 7250 13200 7950 13200 +Wire Wire Line + 7950 10150 9450 10150 +Wire Wire Line + 7950 10400 7950 10150 +Wire Wire Line + 7950 11900 6950 11900 +Wire Wire Line + 7950 13200 7950 11900 +Wire Wire Line + 7950 13200 8650 13200 +Wire Wire Line + 8950 8400 11900 8400 +Wire Wire Line + 8950 8600 8950 8400 +Wire Wire Line + 8950 8900 8950 9400 +Wire Wire Line + 8950 9400 9450 9400 +Wire Wire Line + 8950 9800 8950 9900 +Wire Wire Line + 8950 9900 5450 9900 +Wire Wire Line + 8950 10400 7950 10400 +Wire Wire Line + 8950 10700 8950 10400 +Wire Wire Line + 8950 10700 9350 10700 +Wire Wire Line + 8950 11100 8950 12600 +Wire Wire Line + 8950 12600 8950 13000 +Wire Wire Line + 8950 12600 10550 12600 +Wire Wire Line + 8950 13400 8950 14400 +Wire Wire Line + 8950 14400 9950 14400 +Wire Wire Line + 9250 9600 9750 9600 +Wire Wire Line + 9350 11100 9350 11400 +Wire Wire Line + 9350 11400 9950 11400 +Wire Wire Line + 9450 9400 9950 9400 +Wire Wire Line + 9450 10150 9450 9800 +Wire Wire Line + 9650 10900 9250 10900 +Wire Wire Line + 9750 9600 10250 9600 +Wire Wire Line + 9950 9800 9950 10100 +Wire Wire Line + 9950 10100 10900 10100 +Wire Wire Line + 9950 10900 9650 10900 +Wire Wire Line + 9950 11400 9950 10900 +Wire Wire Line + 9950 11700 9950 11400 +Wire Wire Line + 9950 12100 9950 14400 +Wire Wire Line + 9950 14400 10900 14400 +Wire Wire Line + 10250 9600 12200 9600 +Wire Wire Line + 10250 11900 10450 11900 +Wire Wire Line + 10450 11900 10450 12250 +Wire Wire Line + 10550 10900 12250 10900 +Wire Wire Line + 10550 11200 10550 10900 +Wire Wire Line + 10550 11500 10550 12600 +Wire Wire Line + 10550 12600 10600 12600 +Wire Wire Line + 10900 10100 10900 11900 +Wire Wire Line + 10900 11900 10900 12400 +Wire Wire Line + 10900 11900 11600 11900 +Wire Wire Line + 10900 12800 10900 14400 +Wire Wire Line + 10900 14400 11400 14400 +Wire Wire Line + 11400 10100 11900 10100 +Wire Wire Line + 11400 11050 11400 10100 +Wire Wire Line + 11400 11550 11400 14400 +Wire Wire Line + 11400 14400 13400 14400 +Wire Wire Line + 11900 8400 11900 9400 +Wire Wire Line + 11900 8400 13400 8400 +Wire Wire Line + 11900 9400 12400 9400 +Wire Wire Line + 11900 9800 11900 10100 +Wire Wire Line + 11900 10100 11900 11700 +Wire Wire Line + 11900 12100 11900 12350 +Wire Wire Line + 11900 12350 12250 12350 +Wire Wire Line + 11900 12850 11900 12350 +Wire Wire Line + 12200 9600 12700 9600 +Wire Wire Line + 12250 10350 12700 10350 +Wire Wire Line + 12250 10900 12250 10350 +Wire Wire Line + 12250 10900 12400 10900 +Wire Wire Line + 12250 12850 11900 12850 +Wire Wire Line + 12400 9800 12400 9950 +Wire Wire Line + 12400 9950 13400 9950 +Wire Wire Line + 12550 12350 14100 12350 +Wire Wire Line + 12550 12850 13100 12850 +Wire Wire Line + 12700 9600 13700 9600 +Wire Wire Line + 12700 10350 13400 10350 +Wire Wire Line + 12700 10700 12700 10350 +Wire Wire Line + 12700 11100 13400 11100 +Wire Wire Line + 13400 8400 13400 9400 +Wire Wire Line + 13400 8400 14900 8400 +Wire Wire Line + 13400 9400 13900 9400 +Wire Wire Line + 13400 9950 13400 9800 +Wire Wire Line + 13400 10350 13400 9950 +Wire Wire Line + 13400 11100 13400 11350 +Wire Wire Line + 13400 11100 13600 11100 +Wire Wire Line + 13400 11650 13400 11850 +Wire Wire Line + 13400 11850 13400 12650 +Wire Wire Line + 13400 11850 13900 11850 +Wire Wire Line + 13400 13050 13400 14400 +Wire Wire Line + 13400 14400 14400 14400 +Wire Wire Line + 13700 9600 14200 9600 +Wire Wire Line + 13900 9800 13900 9950 +Wire Wire Line + 13900 9950 14400 9950 +Wire Wire Line + 13900 10350 13400 10350 +Wire Wire Line + 13900 10900 13900 10350 +Wire Wire Line + 13900 11300 13900 11850 +Wire Wire Line + 13900 11850 14600 11850 +Wire Wire Line + 14400 9600 14200 9600 +Wire Wire Line + 14400 9950 14400 9600 +Wire Wire Line + 14400 10350 13900 10350 +Wire Wire Line + 14400 10350 14600 10350 +Wire Wire Line + 14400 12150 14400 10350 +Wire Wire Line + 14400 12550 14400 14400 +Wire Wire Line + 14400 14400 14900 14400 +Wire Wire Line + 14900 8400 14900 10150 +Wire Wire Line + 14900 8400 16400 8400 +Wire Wire Line + 14900 10550 14900 10750 +Wire Wire Line + 14900 10750 14900 10950 +Wire Wire Line + 14900 10750 15100 10750 +Wire Wire Line + 14900 11250 14900 11450 +Wire Wire Line + 14900 11450 14900 11650 +Wire Wire Line + 14900 12050 14900 14400 +Wire Wire Line + 14900 14400 15900 14400 +Wire Wire Line + 15400 10350 14600 10350 +Wire Wire Line + 15400 10550 15400 10350 +Wire Wire Line + 15400 10950 15400 11450 +Wire Wire Line + 15400 11450 14900 11450 +Wire Wire Line + 15400 11450 17400 11450 +Wire Wire Line + 15900 9600 14400 9600 +Wire Wire Line + 15900 12150 15900 9600 +Wire Wire Line + 15900 12550 15900 12900 +Wire Wire Line + 15900 12900 15900 13450 +Wire Wire Line + 15900 12900 16100 12900 +Wire Wire Line + 15900 13750 15900 14400 +Wire Wire Line + 15900 14400 16400 14400 +Wire Wire Line + 16400 8400 16400 11850 +Wire Wire Line + 16400 8400 21950 8400 +Wire Wire Line + 16400 12250 16400 12350 +Wire Wire Line + 16400 12350 16200 12350 +Wire Wire Line + 16400 12350 16400 12700 +Wire Wire Line + 16400 13100 16400 14400 +Wire Wire Line + 16700 12050 16900 12050 +Wire Wire Line + 16900 12050 16900 14400 +Wire Wire Line + 16900 14400 16400 14400 +Wire Wire Line + 16900 14400 18450 14400 +Wire Wire Line + 17900 12200 17900 14900 +Wire Wire Line + 18450 9900 18450 12400 +Wire Wire Line + 18450 12800 18450 14400 +Wire Wire Line + 18450 14400 19250 14400 +Wire Wire Line + 18750 12600 19950 12600 +Wire Wire Line + 18950 11900 17900 11900 +Wire Wire Line + 19250 10900 19250 11400 +Wire Wire Line + 19250 10900 19650 10900 +Wire Wire Line + 19250 11400 19250 11700 +Wire Wire Line + 19250 12100 19250 14400 +Wire Wire Line + 19250 14400 19950 14400 +Wire Wire Line + 19550 10700 19950 10700 +Wire Wire Line + 19550 11100 19550 11400 +Wire Wire Line + 19550 11400 19250 11400 +Wire Wire Line + 19950 10400 20950 10400 +Wire Wire Line + 19950 10700 19950 10400 +Wire Wire Line + 19950 11100 19950 11900 +Wire Wire Line + 19950 11900 19950 12600 +Wire Wire Line + 19950 12600 19950 13000 +Wire Wire Line + 19950 13400 19950 14400 +Wire Wire Line + 19950 14400 21950 14400 +Wire Wire Line + 20250 13200 20950 13200 +Wire Wire Line + 20950 10150 22450 10150 +Wire Wire Line + 20950 10400 20950 10150 +Wire Wire Line + 20950 11900 19950 11900 +Wire Wire Line + 20950 13200 20950 11900 +Wire Wire Line + 20950 13200 21650 13200 +Wire Wire Line + 21950 8400 24900 8400 +Wire Wire Line + 21950 8600 21950 8400 +Wire Wire Line + 21950 8900 21950 9400 +Wire Wire Line + 21950 9400 22450 9400 +Wire Wire Line + 21950 9800 21950 9900 +Wire Wire Line + 21950 9900 18450 9900 +Wire Wire Line + 21950 10400 20950 10400 +Wire Wire Line + 21950 10700 21950 10400 +Wire Wire Line + 21950 10700 22350 10700 +Wire Wire Line + 21950 11100 21950 12600 +Wire Wire Line + 21950 12600 21950 13000 +Wire Wire Line + 21950 12600 23550 12600 +Wire Wire Line + 21950 13400 21950 14400 +Wire Wire Line + 21950 14400 22950 14400 +Wire Wire Line + 22250 9600 22750 9600 +Wire Wire Line + 22350 11100 22350 11400 +Wire Wire Line + 22350 11400 22950 11400 +Wire Wire Line + 22450 9400 22950 9400 +Wire Wire Line + 22450 10150 22450 9800 +Wire Wire Line + 22650 10900 22250 10900 +Wire Wire Line + 22750 9600 23250 9600 +Wire Wire Line + 22950 9800 22950 10100 +Wire Wire Line + 22950 10100 23900 10100 +Wire Wire Line + 22950 10900 22650 10900 +Wire Wire Line + 22950 11400 22950 10900 +Wire Wire Line + 22950 11700 22950 11400 +Wire Wire Line + 22950 12100 22950 14400 +Wire Wire Line + 22950 14400 23900 14400 +Wire Wire Line + 23250 9600 25200 9600 +Wire Wire Line + 23250 11900 23450 11900 +Wire Wire Line + 23450 11900 23450 12200 +Wire Wire Line + 23450 12200 17900 12200 +Wire Wire Line + 23550 10900 25250 10900 +Wire Wire Line + 23550 11200 23550 10900 +Wire Wire Line + 23550 11500 23550 12600 +Wire Wire Line + 23550 12600 23600 12600 +Wire Wire Line + 23900 10100 23900 11900 +Wire Wire Line + 23900 11900 23900 12400 +Wire Wire Line + 23900 11900 24600 11900 +Wire Wire Line + 23900 12800 23900 14400 +Wire Wire Line + 23900 14400 24400 14400 +Wire Wire Line + 24400 10100 24900 10100 +Wire Wire Line + 24400 11050 24400 10100 +Wire Wire Line + 24400 11550 24400 14400 +Wire Wire Line + 24400 14400 26400 14400 +Wire Wire Line + 24900 8400 24900 9400 +Wire Wire Line + 24900 8400 26400 8400 +Wire Wire Line + 24900 9400 25400 9400 +Wire Wire Line + 24900 9800 24900 10100 +Wire Wire Line + 24900 10100 24900 11700 +Wire Wire Line + 24900 12100 24900 12350 +Wire Wire Line + 24900 12350 25250 12350 +Wire Wire Line + 24900 12850 24900 12350 +Wire Wire Line + 25200 9600 25700 9600 +Wire Wire Line + 25250 10350 25700 10350 +Wire Wire Line + 25250 10900 25250 10350 +Wire Wire Line + 25250 10900 25400 10900 +Wire Wire Line + 25250 12850 24900 12850 +Wire Wire Line + 25400 9800 25400 9950 +Wire Wire Line + 25400 9950 26400 9950 +Wire Wire Line + 25550 12350 27100 12350 +Wire Wire Line + 25550 12850 26100 12850 +Wire Wire Line + 25700 9600 26700 9600 +Wire Wire Line + 25700 10350 26400 10350 +Wire Wire Line + 25700 10700 25700 10350 +Wire Wire Line + 25700 11100 26400 11100 +Wire Wire Line + 26400 8400 26400 9400 +Wire Wire Line + 26400 8400 27900 8400 +Wire Wire Line + 26400 9400 26900 9400 +Wire Wire Line + 26400 9950 26400 9800 +Wire Wire Line + 26400 10350 26400 9950 +Wire Wire Line + 26400 11100 26400 11350 +Wire Wire Line + 26400 11100 26600 11100 +Wire Wire Line + 26400 11650 26400 11850 +Wire Wire Line + 26400 11850 26400 12650 +Wire Wire Line + 26400 11850 26900 11850 +Wire Wire Line + 26400 13050 26400 14400 +Wire Wire Line + 26400 14400 27400 14400 +Wire Wire Line + 26700 9600 27200 9600 +Wire Wire Line + 26900 9800 26900 9950 +Wire Wire Line + 26900 9950 27400 9950 +Wire Wire Line + 26900 10350 26400 10350 +Wire Wire Line + 26900 10900 26900 10350 +Wire Wire Line + 26900 11300 26900 11850 +Wire Wire Line + 26900 11850 27600 11850 +Wire Wire Line + 27400 9600 27200 9600 +Wire Wire Line + 27400 9950 27400 9600 +Wire Wire Line + 27400 10350 26900 10350 +Wire Wire Line + 27400 10350 27600 10350 +Wire Wire Line + 27400 12150 27400 10350 +Wire Wire Line + 27400 12550 27400 14400 +Wire Wire Line + 27400 14400 27900 14400 +Wire Wire Line + 27900 8400 27900 10150 +Wire Wire Line + 27900 8400 29400 8400 +Wire Wire Line + 27900 10550 27900 10750 +Wire Wire Line + 27900 10750 27900 10950 +Wire Wire Line + 27900 10750 28100 10750 +Wire Wire Line + 27900 11250 27900 11450 +Wire Wire Line + 27900 11450 27900 11650 +Wire Wire Line + 27900 12050 27900 14400 +Wire Wire Line + 27900 14400 28900 14400 +Wire Wire Line + 28400 10350 27600 10350 +Wire Wire Line + 28400 10550 28400 10350 +Wire Wire Line + 28400 10950 28400 11450 +Wire Wire Line + 28400 11450 27900 11450 +Wire Wire Line + 28400 11450 30450 11450 +Wire Wire Line + 28900 9600 27400 9600 +Wire Wire Line + 28900 12150 28900 9600 +Wire Wire Line + 28900 12550 28900 12900 +Wire Wire Line + 28900 12900 28900 13450 +Wire Wire Line + 28900 12900 29100 12900 +Wire Wire Line + 28900 13750 28900 14400 +Wire Wire Line + 28900 14400 29400 14400 +Wire Wire Line + 29400 8400 29400 11850 +Wire Wire Line + 29400 12250 29400 12350 +Wire Wire Line + 29400 12350 29200 12350 +Wire Wire Line + 29400 12350 29400 12700 +Wire Wire Line + 29400 13100 29400 14400 +Wire Wire Line + 29700 12050 29900 12050 +Wire Wire Line + 29900 12050 29900 14400 +Wire Wire Line + 29900 14400 29400 14400 +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 9000 8800 +F 0 "R?" V 9100 8750 50 0000 R CNN +F 1 "1k" V 9000 8750 50 0000 R CNN +F 2 "" H 9050 8780 30 0000 C CNN +F 3 "" V 9050 8850 30 0000 C CNN + 1 9000 8800 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 12450 12300 +F 0 "R?" H 12500 12100 50 0000 C CNN +F 1 "1k" H 12500 12200 50 0000 C CNN +F 2 "" H 12500 12280 30 0000 C CNN +F 3 "" V 12500 12350 30 0000 C CNN + 1 12450 12300 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 12450 12800 +F 0 "R?" H 12500 12600 50 0000 C CNN +F 1 "1k" H 12500 12700 50 0000 C CNN +F 2 "" H 12500 12780 30 0000 C CNN +F 3 "" V 12500 12850 30 0000 C CNN + 1 12450 12800 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 13350 11450 +F 0 "R?" V 13350 11600 50 0000 L CNN +F 1 "50k" V 13450 11600 50 0000 L CNN +F 2 "" H 13400 11430 30 0000 C CNN +F 3 "" V 13400 11500 30 0000 C CNN + 1 13350 11450 + 0 1 1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 14850 11050 +F 0 "R?" V 14850 11200 50 0000 L CNN +F 1 "20" V 14950 11200 50 0000 L CNN +F 2 "" H 14900 11030 30 0000 C CNN +F 3 "" V 14900 11100 30 0000 C CNN + 1 14850 11050 + 0 1 1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 15850 13550 +F 0 "R?" V 15850 13700 50 0000 L CNN +F 1 "3k" V 15950 13700 50 0000 L CNN +F 2 "" H 15900 13530 30 0000 C CNN +F 3 "" V 15900 13600 30 0000 C CNN + 1 15850 13550 + 0 1 1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 22000 8800 +F 0 "R?" V 22100 8750 50 0000 R CNN +F 1 "1k" V 22000 8750 50 0000 R CNN +F 2 "" H 22050 8780 30 0000 C CNN +F 3 "" V 22050 8850 30 0000 C CNN + 1 22000 8800 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 25450 12300 +F 0 "R?" H 25500 12100 50 0000 C CNN +F 1 "1k" H 25500 12200 50 0000 C CNN +F 2 "" H 25500 12280 30 0000 C CNN +F 3 "" V 25500 12350 30 0000 C CNN + 1 25450 12300 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 25450 12800 +F 0 "R?" H 25500 12600 50 0000 C CNN +F 1 "1k" H 25500 12700 50 0000 C CNN +F 2 "" H 25500 12780 30 0000 C CNN +F 3 "" V 25500 12850 30 0000 C CNN + 1 25450 12800 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 26350 11450 +F 0 "R?" V 26350 11600 50 0000 L CNN +F 1 "50k" V 26450 11600 50 0000 L CNN +F 2 "" H 26400 11430 30 0000 C CNN +F 3 "" V 26400 11500 30 0000 C CNN + 1 26350 11450 + 0 1 1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 27850 11050 +F 0 "R?" V 27850 11200 50 0000 L CNN +F 1 "20" V 27950 11200 50 0000 L CNN +F 2 "" H 27900 11030 30 0000 C CNN +F 3 "" V 27900 11100 30 0000 C CNN + 1 27850 11050 + 0 1 1 0 +$EndComp +$Comp +L eSim_Devices:resistor R? +U 1 1 00000000 +P 28850 13550 +F 0 "R?" V 28850 13700 50 0000 L CNN +F 1 "3k" V 28950 13700 50 0000 L CNN +F 2 "" H 28900 13530 30 0000 C CNN +F 3 "" V 28900 13600 30 0000 C CNN + 1 28850 13550 + 0 1 1 0 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 3 1 00000000 +P 3300 12250 +F 0 "U?" H 3325 12450 30 0000 C CNN +F 1 "PORT" H 3325 12350 30 0000 C CNN +F 2 "" H 3300 12250 60 0000 C CNN +F 3 "" H 3300 12250 60 0000 C CNN + 3 3300 12250 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 8 1 00000000 +P 4150 6900 +F 0 "U?" H 4175 7100 30 0000 C CNN +F 1 "PORT" H 4175 7000 30 0000 C CNN +F 2 "" H 4150 6900 60 0000 C CNN +F 3 "" H 4150 6900 60 0000 C CNN + 8 4150 6900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 4 1 00000000 +P 4150 16400 +F 0 "U?" H 4175 16600 30 0000 C CNN +F 1 "PORT" H 4175 16500 30 0000 C CNN +F 2 "" H 4150 16400 60 0000 C CNN +F 3 "" H 4150 16400 60 0000 C CNN + 4 4150 16400 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 2 1 00000000 +P 4750 11900 +F 0 "U?" H 4775 12100 30 0000 C CNN +F 1 "PORT" H 4775 12000 30 0000 C CNN +F 2 "" H 4750 11900 60 0000 C CNN +F 3 "" H 4750 11900 60 0000 C CNN + 2 4750 11900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 1 1 00000000 +P 17650 11450 +F 0 "U?" H 17500 11425 30 0000 R CNN +F 1 "PORT" H 17500 11525 30 0000 R CNN +F 2 "" H 17650 11450 60 0000 C CNN +F 3 "" H 17650 11450 60 0000 C CNN + 1 17650 11450 + -1 0 0 1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 6 1 00000000 +P 17650 11900 +F 0 "U?" H 17675 12100 30 0000 C CNN +F 1 "PORT" H 17675 12000 30 0000 C CNN +F 2 "" H 17650 11900 60 0000 C CNN +F 3 "" H 17650 11900 60 0000 C CNN + 6 17650 11900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 5 1 00000000 +P 17650 14900 +F 0 "U?" H 17675 15100 30 0000 C CNN +F 1 "PORT" H 17675 15000 30 0000 C CNN +F 2 "" H 17650 14900 60 0000 C CNN +F 3 "" H 17650 14900 60 0000 C CNN + 5 17650 14900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Miscellaneous:PORT U? +U 7 1 00000000 +P 30700 11450 +F 0 "U?" H 30550 11425 30 0000 R CNN +F 1 "PORT" H 30550 11525 30 0000 R CNN +F 2 "" H 30700 11450 60 0000 C CNN +F 3 "" H 30700 11450 60 0000 C CNN + 7 30700 11450 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:capacitor_polarised C? +U 1 1 00000000 +P 10550 11350 +F 0 "C?" H 10700 11425 50 0000 L CNN +F 1 "5p" H 10700 11325 50 0000 L CNN +F 2 "" H 10550 11350 50 0001 C CNN +F 3 "" H 10550 11350 50 0001 C CNN + 1 10550 11350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:capacitor_polarised C? +U 1 1 00000000 +P 23550 11350 +F 0 "C?" H 23700 11425 50 0000 L CNN +F 1 "5p" H 23700 11325 50 0000 L CNN +F 2 "" H 23550 11350 50 0001 C CNN +F 3 "" H 23550 11350 50 0001 C CNN + 1 23550 11350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Analog:zener U? +U 1 1 00000000 +P 11400 11350 +F 0 "U?" V 11525 11200 60 0000 R CNN +F 1 "zener" V 11375 11200 60 0000 R CNN +F 2 "" H 11450 11350 60 0000 C CNN +F 3 "" H 11450 11350 60 0000 C CNN + 1 11400 11350 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Analog:zener U? +U 1 1 00000000 +P 24400 11350 +F 0 "U?" V 24525 11200 60 0000 R CNN +F 1 "zener" V 24375 11200 60 0000 R CNN +F 2 "" H 24450 11350 60 0000 C CNN +F 3 "" H 24450 11350 60 0000 C CNN + 1 24400 11350 + 0 -1 -1 0 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 5550 12600 +F 0 "Q?" H 5750 12550 50 0000 L CNN +F 1 "eSim_PNP" H 5750 12650 50 0000 L CNN +F 2 "" H 5750 12700 29 0000 C CNN +F 3 "" H 5550 12600 60 0000 C CNN + 1 5550 12600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 6150 11900 +F 0 "Q?" H 6350 11850 50 0000 L CNN +F 1 "eSim_PNP" H 6350 11950 50 0000 L CNN +F 2 "" H 6350 12000 29 0000 C CNN +F 3 "" H 6150 11900 60 0000 C CNN + 1 6150 11900 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 6450 10900 +F 0 "Q?" H 6650 10850 50 0000 L CNN +F 1 "eSim_PNP" H 6650 10950 50 0000 L CNN +F 2 "" H 6650 11000 29 0000 C CNN +F 3 "" H 6450 10900 60 0000 C CNN + 1 6450 10900 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 6850 10900 +F 0 "Q?" H 7050 10850 50 0000 L CNN +F 1 "eSim_PNP" H 7050 10950 50 0000 L CNN +F 2 "" H 7050 11000 29 0000 C CNN +F 3 "" H 6850 10900 60 0000 C CNN + 1 6850 10900 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 7050 13200 +F 0 "Q?" H 7250 13250 50 0000 L CNN +F 1 "eSim_NPN" H 7250 13150 50 0000 L CNN +F 2 "" H 7250 13300 29 0000 C CNN +F 3 "" H 7050 13200 60 0000 C CNN + 1 7050 13200 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 8850 13200 +F 0 "Q?" H 9050 13250 50 0000 L CNN +F 1 "eSim_NPN" H 9050 13150 50 0000 L CNN +F 2 "" H 9050 13300 29 0000 C CNN +F 3 "" H 8850 13200 60 0000 C CNN + 1 8850 13200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 9050 9600 +F 0 "Q?" H 9250 9550 50 0000 L CNN +F 1 "eSim_PNP" H 9250 9650 50 0000 L CNN +F 2 "" H 9250 9700 29 0000 C CNN +F 3 "" H 9050 9600 60 0000 C CNN + 1 9050 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 9050 10900 +F 0 "Q?" H 9250 10850 50 0000 L CNN +F 1 "eSim_PNP" H 9250 10950 50 0000 L CNN +F 2 "" H 9250 11000 29 0000 C CNN +F 3 "" H 9050 10900 60 0000 C CNN + 1 9050 10900 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 9450 10900 +F 0 "Q?" H 9650 10850 50 0000 L CNN +F 1 "eSim_PNP" H 9650 10950 50 0000 L CNN +F 2 "" H 9650 11000 29 0000 C CNN +F 3 "" H 9450 10900 60 0000 C CNN + 1 9450 10900 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 9550 9600 +F 0 "Q?" H 9750 9550 50 0000 L CNN +F 1 "eSim_PNP" H 9750 9650 50 0000 L CNN +F 2 "" H 9750 9700 29 0000 C CNN +F 3 "" H 9550 9600 60 0000 C CNN + 1 9550 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 10050 9600 +F 0 "Q?" H 10250 9550 50 0000 L CNN +F 1 "eSim_PNP" H 10250 9650 50 0000 L CNN +F 2 "" H 10250 9700 29 0000 C CNN +F 3 "" H 10050 9600 60 0000 C CNN + 1 10050 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 10050 11900 +F 0 "Q?" H 10250 11850 50 0000 L CNN +F 1 "eSim_PNP" H 10250 11950 50 0000 L CNN +F 2 "" H 10250 12000 29 0000 C CNN +F 3 "" H 10050 11900 60 0000 C CNN + 1 10050 11900 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 10800 12600 +F 0 "Q?" H 11000 12550 50 0000 L CNN +F 1 "eSim_PNP" H 11000 12650 50 0000 L CNN +F 2 "" H 11000 12700 29 0000 C CNN +F 3 "" H 10800 12600 60 0000 C CNN + 1 10800 12600 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 11800 11900 +F 0 "Q?" H 12000 11950 50 0000 L CNN +F 1 "eSim_NPN" H 12000 11850 50 0000 L CNN +F 2 "" H 12000 12000 29 0000 C CNN +F 3 "" H 11800 11900 60 0000 C CNN + 1 11800 11900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 12000 9600 +F 0 "Q?" H 12200 9550 50 0000 L CNN +F 1 "eSim_PNP" H 12200 9650 50 0000 L CNN +F 2 "" H 12200 9700 29 0000 C CNN +F 3 "" H 12000 9600 60 0000 C CNN + 1 12000 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 12500 9600 +F 0 "Q?" H 12700 9550 50 0000 L CNN +F 1 "eSim_PNP" H 12700 9650 50 0000 L CNN +F 2 "" H 12700 9700 29 0000 C CNN +F 3 "" H 12500 9600 60 0000 C CNN + 1 12500 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 12600 10900 +F 0 "Q?" H 12800 10950 50 0000 L CNN +F 1 "eSim_NPN" H 12800 10850 50 0000 L CNN +F 2 "" H 12800 11000 29 0000 C CNN +F 3 "" H 12600 10900 60 0000 C CNN + 1 12600 10900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 13300 12850 +F 0 "Q?" H 13500 12900 50 0000 L CNN +F 1 "eSim_NPN" H 13500 12800 50 0000 L CNN +F 2 "" H 13500 12950 29 0000 C CNN +F 3 "" H 13300 12850 60 0000 C CNN + 1 13300 12850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 13500 9600 +F 0 "Q?" H 13700 9550 50 0000 L CNN +F 1 "eSim_PNP" H 13700 9650 50 0000 L CNN +F 2 "" H 13700 9700 29 0000 C CNN +F 3 "" H 13500 9600 60 0000 C CNN + 1 13500 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 13800 11100 +F 0 "Q?" H 14000 11150 50 0000 L CNN +F 1 "eSim_NPN" H 14000 11050 50 0000 L CNN +F 2 "" H 14000 11200 29 0000 C CNN +F 3 "" H 13800 11100 60 0000 C CNN + 1 13800 11100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 14000 9600 +F 0 "Q?" H 14200 9550 50 0000 L CNN +F 1 "eSim_PNP" H 14200 9650 50 0000 L CNN +F 2 "" H 14200 9700 29 0000 C CNN +F 3 "" H 14000 9600 60 0000 C CNN + 1 14000 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 14300 12350 +F 0 "Q?" H 14500 12400 50 0000 L CNN +F 1 "eSim_NPN" H 14500 12300 50 0000 L CNN +F 2 "" H 14500 12450 29 0000 C CNN +F 3 "" H 14300 12350 60 0000 C CNN + 1 14300 12350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 14800 10350 +F 0 "Q?" H 15000 10400 50 0000 L CNN +F 1 "eSim_NPN" H 15000 10300 50 0000 L CNN +F 2 "" H 15000 10450 29 0000 C CNN +F 3 "" H 14800 10350 60 0000 C CNN + 1 14800 10350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 14800 11850 +F 0 "Q?" H 15000 11800 50 0000 L CNN +F 1 "eSim_PNP" H 15000 11900 50 0000 L CNN +F 2 "" H 15000 11950 29 0000 C CNN +F 3 "" H 14800 11850 60 0000 C CNN + 1 14800 11850 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 15300 10750 +F 0 "Q?" H 15500 10800 50 0000 L CNN +F 1 "eSim_NPN" H 15500 10700 50 0000 L CNN +F 2 "" H 15500 10850 29 0000 C CNN +F 3 "" H 15300 10750 60 0000 C CNN + 1 15300 10750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 16000 12350 +F 0 "Q?" H 16200 12400 50 0000 L CNN +F 1 "eSim_NPN" H 16200 12300 50 0000 L CNN +F 2 "" H 16200 12450 29 0000 C CNN +F 3 "" H 16000 12350 60 0000 C CNN + 1 16000 12350 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 16300 12900 +F 0 "Q?" H 16498 12950 50 0000 L CNN +F 1 "eSim_NPN" H 16498 12850 50 0000 L CNN +F 2 "" H 16500 13000 29 0000 C CNN +F 3 "" H 16300 12900 60 0000 C CNN + 1 16300 12900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:jfet_n J? +U 1 1 00000000 +P 16500 12050 +F 0 "J?" H 16700 12100 50 0000 L CNN +F 1 "jfet_n" H 16700 12000 50 0000 L CNN +F 2 "" H 16700 12150 29 0000 C CNN +F 3 "" H 16500 12050 60 0000 C CNN + 1 16500 12050 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 18550 12600 +F 0 "Q?" H 18750 12550 50 0000 L CNN +F 1 "eSim_PNP" H 18750 12650 50 0000 L CNN +F 2 "" H 18750 12700 29 0000 C CNN +F 3 "" H 18550 12600 60 0000 C CNN + 1 18550 12600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 19150 11900 +F 0 "Q?" H 19350 11850 50 0000 L CNN +F 1 "eSim_PNP" H 19350 11950 50 0000 L CNN +F 2 "" H 19350 12000 29 0000 C CNN +F 3 "" H 19150 11900 60 0000 C CNN + 1 19150 11900 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 19450 10900 +F 0 "Q?" H 19650 10850 50 0000 L CNN +F 1 "eSim_PNP" H 19650 10950 50 0000 L CNN +F 2 "" H 19650 11000 29 0000 C CNN +F 3 "" H 19450 10900 60 0000 C CNN + 1 19450 10900 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 19850 10900 +F 0 "Q?" H 20050 10850 50 0000 L CNN +F 1 "eSim_PNP" H 20050 10950 50 0000 L CNN +F 2 "" H 20050 11000 29 0000 C CNN +F 3 "" H 19850 10900 60 0000 C CNN + 1 19850 10900 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 20050 13200 +F 0 "Q?" H 20250 13250 50 0000 L CNN +F 1 "eSim_NPN" H 20250 13150 50 0000 L CNN +F 2 "" H 20250 13300 29 0000 C CNN +F 3 "" H 20050 13200 60 0000 C CNN + 1 20050 13200 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 21850 13200 +F 0 "Q?" H 22050 13250 50 0000 L CNN +F 1 "eSim_NPN" H 22050 13150 50 0000 L CNN +F 2 "" H 22050 13300 29 0000 C CNN +F 3 "" H 21850 13200 60 0000 C CNN + 1 21850 13200 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 22050 9600 +F 0 "Q?" H 22250 9550 50 0000 L CNN +F 1 "eSim_PNP" H 22250 9650 50 0000 L CNN +F 2 "" H 22250 9700 29 0000 C CNN +F 3 "" H 22050 9600 60 0000 C CNN + 1 22050 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 22050 10900 +F 0 "Q?" H 22250 10850 50 0000 L CNN +F 1 "eSim_PNP" H 22250 10950 50 0000 L CNN +F 2 "" H 22250 11000 29 0000 C CNN +F 3 "" H 22050 10900 60 0000 C CNN + 1 22050 10900 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 22450 10900 +F 0 "Q?" H 22650 10850 50 0000 L CNN +F 1 "eSim_PNP" H 22650 10950 50 0000 L CNN +F 2 "" H 22650 11000 29 0000 C CNN +F 3 "" H 22450 10900 60 0000 C CNN + 1 22450 10900 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 22550 9600 +F 0 "Q?" H 22750 9550 50 0000 L CNN +F 1 "eSim_PNP" H 22750 9650 50 0000 L CNN +F 2 "" H 22750 9700 29 0000 C CNN +F 3 "" H 22550 9600 60 0000 C CNN + 1 22550 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 23050 9600 +F 0 "Q?" H 23250 9550 50 0000 L CNN +F 1 "eSim_PNP" H 23250 9650 50 0000 L CNN +F 2 "" H 23250 9700 29 0000 C CNN +F 3 "" H 23050 9600 60 0000 C CNN + 1 23050 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 23050 11900 +F 0 "Q?" H 23250 11850 50 0000 L CNN +F 1 "eSim_PNP" H 23250 11950 50 0000 L CNN +F 2 "" H 23250 12000 29 0000 C CNN +F 3 "" H 23050 11900 60 0000 C CNN + 1 23050 11900 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 23800 12600 +F 0 "Q?" H 24000 12550 50 0000 L CNN +F 1 "eSim_PNP" H 24000 12650 50 0000 L CNN +F 2 "" H 24000 12700 29 0000 C CNN +F 3 "" H 23800 12600 60 0000 C CNN + 1 23800 12600 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 24800 11900 +F 0 "Q?" H 25000 11950 50 0000 L CNN +F 1 "eSim_NPN" H 25000 11850 50 0000 L CNN +F 2 "" H 25000 12000 29 0000 C CNN +F 3 "" H 24800 11900 60 0000 C CNN + 1 24800 11900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 25000 9600 +F 0 "Q?" H 25200 9550 50 0000 L CNN +F 1 "eSim_PNP" H 25200 9650 50 0000 L CNN +F 2 "" H 25200 9700 29 0000 C CNN +F 3 "" H 25000 9600 60 0000 C CNN + 1 25000 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 25500 9600 +F 0 "Q?" H 25700 9550 50 0000 L CNN +F 1 "eSim_PNP" H 25700 9650 50 0000 L CNN +F 2 "" H 25700 9700 29 0000 C CNN +F 3 "" H 25500 9600 60 0000 C CNN + 1 25500 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 25600 10900 +F 0 "Q?" H 25800 10950 50 0000 L CNN +F 1 "eSim_NPN" H 25800 10850 50 0000 L CNN +F 2 "" H 25800 11000 29 0000 C CNN +F 3 "" H 25600 10900 60 0000 C CNN + 1 25600 10900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 26300 12850 +F 0 "Q?" H 26500 12900 50 0000 L CNN +F 1 "eSim_NPN" H 26500 12800 50 0000 L CNN +F 2 "" H 26500 12950 29 0000 C CNN +F 3 "" H 26300 12850 60 0000 C CNN + 1 26300 12850 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 26500 9600 +F 0 "Q?" H 26700 9550 50 0000 L CNN +F 1 "eSim_PNP" H 26700 9650 50 0000 L CNN +F 2 "" H 26700 9700 29 0000 C CNN +F 3 "" H 26500 9600 60 0000 C CNN + 1 26500 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 26800 11100 +F 0 "Q?" H 27000 11150 50 0000 L CNN +F 1 "eSim_NPN" H 27000 11050 50 0000 L CNN +F 2 "" H 27000 11200 29 0000 C CNN +F 3 "" H 26800 11100 60 0000 C CNN + 1 26800 11100 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 27000 9600 +F 0 "Q?" H 27200 9550 50 0000 L CNN +F 1 "eSim_PNP" H 27200 9650 50 0000 L CNN +F 2 "" H 27200 9700 29 0000 C CNN +F 3 "" H 27000 9600 60 0000 C CNN + 1 27000 9600 + -1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 27300 12350 +F 0 "Q?" H 27500 12400 50 0000 L CNN +F 1 "eSim_NPN" H 27500 12300 50 0000 L CNN +F 2 "" H 27500 12450 29 0000 C CNN +F 3 "" H 27300 12350 60 0000 C CNN + 1 27300 12350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 27800 10350 +F 0 "Q?" H 28000 10400 50 0000 L CNN +F 1 "eSim_NPN" H 28000 10300 50 0000 L CNN +F 2 "" H 28000 10450 29 0000 C CNN +F 3 "" H 27800 10350 60 0000 C CNN + 1 27800 10350 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_PNP Q? +U 1 1 00000000 +P 27800 11850 +F 0 "Q?" H 28000 11800 50 0000 L CNN +F 1 "eSim_PNP" H 28000 11900 50 0000 L CNN +F 2 "" H 28000 11950 29 0000 C CNN +F 3 "" H 27800 11850 60 0000 C CNN + 1 27800 11850 + 1 0 0 1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 28300 10750 +F 0 "Q?" H 28500 10800 50 0000 L CNN +F 1 "eSim_NPN" H 28500 10700 50 0000 L CNN +F 2 "" H 28500 10850 29 0000 C CNN +F 3 "" H 28300 10750 60 0000 C CNN + 1 28300 10750 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 29000 12350 +F 0 "Q?" H 29200 12400 50 0000 L CNN +F 1 "eSim_NPN" H 29200 12300 50 0000 L CNN +F 2 "" H 29200 12450 29 0000 C CNN +F 3 "" H 29000 12350 60 0000 C CNN + 1 29000 12350 + -1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:eSim_NPN Q? +U 1 1 00000000 +P 29300 12900 +F 0 "Q?" H 29498 12950 50 0000 L CNN +F 1 "eSim_NPN" H 29498 12850 50 0000 L CNN +F 2 "" H 29500 13000 29 0000 C CNN +F 3 "" H 29300 12900 60 0000 C CNN + 1 29300 12900 + 1 0 0 -1 +$EndComp +$Comp +L eSim_Devices:jfet_n J? +U 1 1 00000000 +P 29500 12050 +F 0 "J?" H 29700 12100 50 0000 L CNN +F 1 "jfet_n" H 29700 12000 50 0000 L CNN +F 2 "" H 29700 12150 29 0000 C CNN +F 3 "" H 29500 12050 60 0000 C CNN + 1 29500 12050 + -1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/library/SubcircuitLibrary/uA798/analysis b/library/SubcircuitLibrary/uA798/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/uA798/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA798/uA798.cir b/library/SubcircuitLibrary/uA798/uA798.cir new file mode 100644 index 000000000..c95e3ffed --- /dev/null +++ b/library/SubcircuitLibrary/uA798/uA798.cir @@ -0,0 +1,75 @@ +.title KiCad schematic +Q38 Net-_Q38-Pad1_ Net-_Q34-Pad2_ Net-_Q34-Pad3_ eSim_PNP +Q39 Net-_J1-Pad2_ Net-_Q39-Pad2_ Net-_Q35-Pad2_ eSim_PNP +Q50 Net-_J1-Pad1_ Net-_C2-Pad1_ Net-_Q50-Pad3_ eSim_NPN +Q52 Net-_C2-Pad1_ Net-_Q50-Pad3_ Net-_Q51-Pad3_ eSim_NPN +Q47 Net-_C2-Pad1_ Net-_Q44-Pad3_ Net-_Q45-Pad1_ eSim_NPN +Q48 Net-_Q34-Pad2_ Net-_Q34-Pad2_ Net-_J1-Pad1_ eSim_PNP +R11 Net-_Q50-Pad3_ Net-_Q51-Pad3_ 20 +Q51 Net-_J1-Pad2_ Net-_Q45-Pad1_ Net-_Q51-Pad3_ eSim_PNP +R9 Net-_Q45-Pad2_ Net-_Q41-Pad3_ 1k +Q45 Net-_Q45-Pad1_ Net-_Q45-Pad2_ Net-_J1-Pad2_ eSim_NPN +Q44 Net-_C2-Pad1_ Net-_C2-Pad1_ Net-_Q44-Pad3_ eSim_NPN +R10 Net-_Q44-Pad3_ Net-_Q45-Pad1_ 50k +R8 Net-_Q49-Pad2_ Net-_Q41-Pad3_ 1k +Q41 Net-_Q41-Pad1_ Net-_Q38-Pad1_ Net-_Q41-Pad3_ eSim_NPN +Q40 Net-_J1-Pad2_ Net-_C2-Pad2_ Net-_Q38-Pad1_ eSim_PNP +C2 Net-_C2-Pad1_ Net-_C2-Pad2_ 5p +U3 Net-_J1-Pad2_ Net-_Q41-Pad1_ zener +Q42 Net-_Q41-Pad1_ Net-_Q34-Pad2_ Net-_J1-Pad1_ eSim_PNP +Q43 Net-_C2-Pad1_ Net-_Q34-Pad2_ Net-_J1-Pad1_ eSim_PNP +Q46 Net-_C2-Pad1_ Net-_Q34-Pad2_ Net-_J1-Pad1_ eSim_PNP +Q49 Net-_C2-Pad1_ Net-_Q49-Pad2_ Net-_J1-Pad2_ eSim_NPN +R12 Net-_Q53-Pad3_ Net-_J1-Pad2_ 3k +J2 Net-_J1-Pad1_ Net-_J1-Pad2_ Net-_J2-Pad3_ jfet_n +Q53 Net-_Q34-Pad2_ Net-_J2-Pad3_ Net-_Q53-Pad3_ eSim_NPN +U1 Net-_Q24-Pad3_ Net-_Q2-Pad2_ Net-_Q12-Pad2_ Net-_J1-Pad2_ Net-_Q39-Pad2_ Net-_Q29-Pad2_ Net-_Q51-Pad3_ Net-_J1-Pad1_ PORT +Q54 Net-_J2-Pad3_ Net-_Q53-Pad3_ Net-_J1-Pad2_ eSim_NPN +Q7 Net-_Q1-Pad3_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_PNP +R1 Net-_Q10-Pad3_ Net-_J1-Pad1_ 1k +Q4 Net-_Q1-Pad2_ Net-_Q2-Pad3_ Net-_Q10-Pad1_ eSim_PNP +Q3 Net-_Q2-Pad3_ Net-_Q2-Pad3_ Net-_Q10-Pad1_ eSim_PNP +Q8 Net-_C1-Pad2_ Net-_Q12-Pad3_ Net-_Q10-Pad1_ eSim_PNP +Q9 Net-_Q12-Pad3_ Net-_Q12-Pad3_ Net-_Q10-Pad1_ eSim_PNP +Q13 Net-_J1-Pad2_ Net-_C1-Pad2_ Net-_Q11-Pad1_ eSim_PNP +Q6 Net-_C1-Pad2_ Net-_Q1-Pad2_ Net-_J1-Pad2_ eSim_NPN +Q12 Net-_J1-Pad2_ Net-_Q12-Pad2_ Net-_Q12-Pad3_ eSim_PNP +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 5p +Q16 Net-_C1-Pad1_ Net-_Q10-Pad2_ Net-_J1-Pad1_ eSim_PNP +Q19 Net-_C1-Pad1_ Net-_Q10-Pad2_ Net-_J1-Pad1_ eSim_PNP +Q21 Net-_Q10-Pad2_ Net-_Q10-Pad2_ Net-_J1-Pad1_ eSim_PNP +Q17 Net-_C1-Pad1_ Net-_C1-Pad1_ Net-_Q17-Pad3_ eSim_NPN +Q20 Net-_C1-Pad1_ Net-_Q17-Pad3_ Net-_Q18-Pad1_ eSim_NPN +Q5 Net-_Q1-Pad2_ Net-_Q1-Pad2_ Net-_J1-Pad2_ eSim_NPN +Q1 Net-_J1-Pad2_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +Q2 Net-_J1-Pad2_ Net-_Q2-Pad2_ Net-_Q2-Pad3_ eSim_PNP +Q15 Net-_Q14-Pad1_ Net-_Q10-Pad2_ Net-_J1-Pad1_ eSim_PNP +Q10 Net-_Q10-Pad1_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_PNP +Q11 Net-_Q11-Pad1_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_PNP +U2 Net-_J1-Pad2_ Net-_Q14-Pad1_ zener +Q14 Net-_Q14-Pad1_ Net-_Q11-Pad1_ Net-_Q14-Pad3_ eSim_NPN +R3 Net-_Q18-Pad2_ Net-_Q14-Pad3_ 1k +R2 Net-_Q22-Pad2_ Net-_Q14-Pad3_ 1k +Q18 Net-_Q18-Pad1_ Net-_Q18-Pad2_ Net-_J1-Pad2_ eSim_NPN +R4 Net-_Q17-Pad3_ Net-_Q18-Pad1_ 50k +Q22 Net-_C1-Pad1_ Net-_Q22-Pad2_ Net-_J1-Pad2_ eSim_NPN +R5 Net-_Q23-Pad3_ Net-_Q24-Pad3_ 20 +Q23 Net-_J1-Pad1_ Net-_C1-Pad1_ Net-_Q23-Pad3_ eSim_NPN +Q29 Net-_J1-Pad2_ Net-_Q29-Pad2_ Net-_Q29-Pad3_ eSim_PNP +Q25 Net-_C1-Pad1_ Net-_Q23-Pad3_ Net-_Q24-Pad3_ eSim_NPN +Q24 Net-_J1-Pad2_ Net-_Q18-Pad1_ Net-_Q24-Pad3_ eSim_PNP +J1 Net-_J1-Pad1_ Net-_J1-Pad2_ Net-_J1-Pad3_ jfet_n +Q26 Net-_Q10-Pad2_ Net-_J1-Pad3_ Net-_Q26-Pad3_ eSim_NPN +R6 Net-_Q26-Pad3_ Net-_J1-Pad2_ 3k +Q28 Net-_J1-Pad2_ Net-_Q28-Pad2_ Net-_Q28-Pad3_ eSim_PNP +Q27 Net-_J1-Pad3_ Net-_Q26-Pad3_ Net-_J1-Pad2_ eSim_NPN +Q37 Net-_Q30-Pad3_ Net-_Q34-Pad2_ Net-_Q34-Pad3_ eSim_PNP +R7 Net-_Q34-Pad3_ Net-_J1-Pad1_ 1k +Q34 Net-_Q28-Pad3_ Net-_Q34-Pad2_ Net-_Q34-Pad3_ eSim_PNP +Q32 Net-_Q28-Pad2_ Net-_Q28-Pad2_ Net-_J1-Pad2_ eSim_NPN +Q36 Net-_Q35-Pad2_ Net-_Q35-Pad2_ Net-_Q30-Pad3_ eSim_PNP +Q30 Net-_Q29-Pad3_ Net-_Q29-Pad3_ Net-_Q30-Pad3_ eSim_PNP +Q31 Net-_Q28-Pad2_ Net-_Q29-Pad3_ Net-_Q30-Pad3_ eSim_PNP +Q35 Net-_C2-Pad2_ Net-_Q35-Pad2_ Net-_Q30-Pad3_ eSim_PNP +Q33 Net-_C2-Pad2_ Net-_Q28-Pad2_ Net-_J1-Pad2_ eSim_NPN +.end diff --git a/library/SubcircuitLibrary/uA798/uA798.cir.out b/library/SubcircuitLibrary/uA798/uA798.cir.out new file mode 100644 index 000000000..451cecd18 --- /dev/null +++ b/library/SubcircuitLibrary/uA798/uA798.cir.out @@ -0,0 +1,93 @@ +.title kicad schematic + +.include NJF.lib +.include PNP.lib +.include NPN.lib +q38 net-_q38-pad1_ net-_q34-pad2_ net-_q34-pad3_ Q2N2907A +q39 net-_j1-pad2_ net-_q39-pad2_ net-_q35-pad2_ Q2N2907A +q50 net-_j1-pad1_ net-_c2-pad1_ net-_q50-pad3_ Q2N2222 +q52 net-_c2-pad1_ net-_q50-pad3_ net-_q51-pad3_ Q2N2222 +q47 net-_c2-pad1_ net-_q44-pad3_ net-_q45-pad1_ Q2N2222 +q48 net-_q34-pad2_ net-_q34-pad2_ net-_j1-pad1_ Q2N2907A +r11 net-_q50-pad3_ net-_q51-pad3_ 20 +q51 net-_j1-pad2_ net-_q45-pad1_ net-_q51-pad3_ Q2N2907A +r9 net-_q45-pad2_ net-_q41-pad3_ 1k +q45 net-_q45-pad1_ net-_q45-pad2_ net-_j1-pad2_ Q2N2222 +q44 net-_c2-pad1_ net-_c2-pad1_ net-_q44-pad3_ Q2N2222 +r10 net-_q44-pad3_ net-_q45-pad1_ 50k +r8 net-_q49-pad2_ net-_q41-pad3_ 1k +q41 net-_q41-pad1_ net-_q38-pad1_ net-_q41-pad3_ Q2N2222 +q40 net-_j1-pad2_ net-_c2-pad2_ net-_q38-pad1_ Q2N2907A +c2 net-_c2-pad1_ net-_c2-pad2_ 5p +* u3 net-_j1-pad2_ net-_q41-pad1_ zener +q42 net-_q41-pad1_ net-_q34-pad2_ net-_j1-pad1_ Q2N2907A +q43 net-_c2-pad1_ net-_q34-pad2_ net-_j1-pad1_ Q2N2907A +q46 net-_c2-pad1_ net-_q34-pad2_ net-_j1-pad1_ Q2N2907A +q49 net-_c2-pad1_ net-_q49-pad2_ net-_j1-pad2_ Q2N2222 +r12 net-_q53-pad3_ net-_j1-pad2_ 3k +j2 net-_j1-pad1_ net-_j1-pad2_ net-_j2-pad3_ J2N3819 +q53 net-_q34-pad2_ net-_j2-pad3_ net-_q53-pad3_ Q2N2222 +* u1 net-_q24-pad3_ net-_q2-pad2_ net-_q12-pad2_ net-_j1-pad2_ net-_q39-pad2_ net-_q29-pad2_ net-_q51-pad3_ net-_j1-pad1_ port +q54 net-_j2-pad3_ net-_q53-pad3_ net-_j1-pad2_ Q2N2222 +q7 net-_q1-pad3_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +r1 net-_q10-pad3_ net-_j1-pad1_ 1k +q4 net-_q1-pad2_ net-_q2-pad3_ net-_q10-pad1_ Q2N2907A +q3 net-_q2-pad3_ net-_q2-pad3_ net-_q10-pad1_ Q2N2907A +q8 net-_c1-pad2_ net-_q12-pad3_ net-_q10-pad1_ Q2N2907A +q9 net-_q12-pad3_ net-_q12-pad3_ net-_q10-pad1_ Q2N2907A +q13 net-_j1-pad2_ net-_c1-pad2_ net-_q11-pad1_ Q2N2907A +q6 net-_c1-pad2_ net-_q1-pad2_ net-_j1-pad2_ Q2N2222 +q12 net-_j1-pad2_ net-_q12-pad2_ net-_q12-pad3_ Q2N2907A +c1 net-_c1-pad1_ net-_c1-pad2_ 5p +q16 net-_c1-pad1_ net-_q10-pad2_ net-_j1-pad1_ Q2N2907A +q19 net-_c1-pad1_ net-_q10-pad2_ net-_j1-pad1_ Q2N2907A +q21 net-_q10-pad2_ net-_q10-pad2_ net-_j1-pad1_ Q2N2907A +q17 net-_c1-pad1_ net-_c1-pad1_ net-_q17-pad3_ Q2N2222 +q20 net-_c1-pad1_ net-_q17-pad3_ net-_q18-pad1_ Q2N2222 +q5 net-_q1-pad2_ net-_q1-pad2_ net-_j1-pad2_ Q2N2222 +q1 net-_j1-pad2_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q2 net-_j1-pad2_ net-_q2-pad2_ net-_q2-pad3_ Q2N2907A +q15 net-_q14-pad1_ net-_q10-pad2_ net-_j1-pad1_ Q2N2907A +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +q11 net-_q11-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +* u2 net-_j1-pad2_ net-_q14-pad1_ zener +q14 net-_q14-pad1_ net-_q11-pad1_ net-_q14-pad3_ Q2N2222 +r3 net-_q18-pad2_ net-_q14-pad3_ 1k +r2 net-_q22-pad2_ net-_q14-pad3_ 1k +q18 net-_q18-pad1_ net-_q18-pad2_ net-_j1-pad2_ Q2N2222 +r4 net-_q17-pad3_ net-_q18-pad1_ 50k +q22 net-_c1-pad1_ net-_q22-pad2_ net-_j1-pad2_ Q2N2222 +r5 net-_q23-pad3_ net-_q24-pad3_ 20 +q23 net-_j1-pad1_ net-_c1-pad1_ net-_q23-pad3_ Q2N2222 +q29 net-_j1-pad2_ net-_q29-pad2_ net-_q29-pad3_ Q2N2907A +q25 net-_c1-pad1_ net-_q23-pad3_ net-_q24-pad3_ Q2N2222 +q24 net-_j1-pad2_ net-_q18-pad1_ net-_q24-pad3_ Q2N2907A +j1 net-_j1-pad1_ net-_j1-pad2_ net-_j1-pad3_ J2N3819 +q26 net-_q10-pad2_ net-_j1-pad3_ net-_q26-pad3_ Q2N2222 +r6 net-_q26-pad3_ net-_j1-pad2_ 3k +q28 net-_j1-pad2_ net-_q28-pad2_ net-_q28-pad3_ Q2N2907A +q27 net-_j1-pad3_ net-_q26-pad3_ net-_j1-pad2_ Q2N2222 +q37 net-_q30-pad3_ net-_q34-pad2_ net-_q34-pad3_ Q2N2907A +r7 net-_q34-pad3_ net-_j1-pad1_ 1k +q34 net-_q28-pad3_ net-_q34-pad2_ net-_q34-pad3_ Q2N2907A +q32 net-_q28-pad2_ net-_q28-pad2_ net-_j1-pad2_ Q2N2222 +q36 net-_q35-pad2_ net-_q35-pad2_ net-_q30-pad3_ Q2N2907A +q30 net-_q29-pad3_ net-_q29-pad3_ net-_q30-pad3_ Q2N2907A +q31 net-_q28-pad2_ net-_q29-pad3_ net-_q30-pad3_ Q2N2907A +q35 net-_c2-pad2_ net-_q35-pad2_ net-_q30-pad3_ Q2N2907A +q33 net-_c2-pad2_ net-_q28-pad2_ net-_j1-pad2_ Q2N2222 +a1 net-_j1-pad2_ net-_q41-pad1_ u3 +a2 net-_j1-pad2_ net-_q14-pad1_ u2 +* Schematic Name: zener, Ngspice Name: zener +.model u3 zener(v_breakdown=5.6 i_breakdown=2.0e-2 i_sat=1.0e-12 n_forward=1.0 limit_switch=FALSE ) +* Schematic Name: zener, Ngspice Name: zener +.model u2 zener(v_breakdown=5.6 i_breakdown=2.0e-2 i_sat=1.0e-12 n_forward=1.0 limit_switch=FALSE ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/uA798/uA798.kicad_sch b/library/SubcircuitLibrary/uA798/uA798.kicad_sch new file mode 100644 index 000000000..a2cbe674b --- /dev/null +++ b/library/SubcircuitLibrary/uA798/uA798.kicad_sch @@ -0,0 +1,4097 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 320aa2ff-d8e5-414d-948d-3ba43c4c0843) + + (paper "A1") + + (lib_symbols + (symbol "eSim_Analog:zener" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -1.27 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "zener" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "zener_0_1" + (polyline + (pts + (xy 2.54 -1.27) + (xy 1.27 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy 2.54 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy 3.81 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 0 -1.27) + (xy 2.54 0) + (xy 0 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "zener_1_1" + (pin input line (at -5.08 0 0) (length 5.08) + (name "~" (effects (font (size 1.0922 1.0922)))) + (number "IN" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.0922 1.0922)))) + (number "OUT" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:capacitor_polarised" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "capacitor_polarised" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "CP_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "capacitor_polarised_0_1" + (polyline + (pts + (xy -2.032 0.762) + (xy 2.032 0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 2.286) + (xy -0.762 2.286) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 1.778) + (xy -1.27 2.794) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.032 -1.27) (mid 0 -0.5572) (end -2.032 -1.27) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "capacitor_polarised_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 3.302) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_NPN" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_NPN" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_NPN_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_NPN_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_PNP" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_PNP" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_PNP_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.286 -1.778) + (xy 1.778 -2.286) + (xy 1.27 -1.27) + (xy 2.286 -1.778) + (xy 2.286 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_PNP_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:jfet_n" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "jfet_n" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "jfet_n_0_1" + (polyline + (pts + (xy 0.254 1.905) + (xy 0.254 -1.905) + (xy 0.254 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 -2.54) + (xy 2.54 -1.27) + (xy 0.254 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy 2.54 1.397) + (xy 0.254 1.397) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy -1.016 0.381) + (xy -1.016 -0.381) + (xy 0 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "jfet_n_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:resistor" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 1.27 3.302 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "resistor" (id 1) (at 1.27 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 1.27 -0.508 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 1.27 1.27 90) + (effects (font (size 0.762 0.762))) + ) + (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "resistor_0_1" + (rectangle (start 3.81 0.254) (end -1.27 2.286) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "resistor_1_1" + (pin passive line (at -2.54 1.27 0) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "1" (effects (font (size 1.524 1.524)))) + ) + (pin passive line (at 5.08 1.27 180) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "2" (effects (font (size 1.524 1.524)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 537.21 379.73) (diameter 0) (color 0 0 0 0) + (uuid 00119440-c6dd-470a-b916-322175b224d7) + ) + (junction (at 486.41 316.23) (diameter 0) (color 0 0 0 0) + (uuid 0862ca4c-60da-4cb1-87ed-a0791ab78016) + ) + (junction (at 320.04 314.96) (diameter 0) (color 0 0 0 0) + (uuid 0a060d87-6b3f-427e-a644-3ec49aaea22c) + ) + (junction (at 383.54 379.73) (diameter 0) (color 0 0 0 0) + (uuid 0dbf6f70-9e14-4fd4-aa94-34cd5e1cc7a6) + ) + (junction (at 320.04 227.33) (diameter 0) (color 0 0 0 0) + (uuid 108d19d0-bc79-4c01-9b3b-6a939af2f8b5) + ) + (junction (at 537.21 285.75) (diameter 0) (color 0 0 0 0) + (uuid 13812950-69be-4a19-accc-f5c2a4826c3b) + ) + (junction (at 156.21 285.75) (diameter 0) (color 0 0 0 0) + (uuid 139eaaa6-2480-4502-b41c-be7b216ae918) + ) + (junction (at 207.01 379.73) (diameter 0) (color 0 0 0 0) + (uuid 13f66e95-c89b-47e4-a1fe-4245e925c4c9) + ) + (junction (at 612.14 327.66) (diameter 0) (color 0 0 0 0) + (uuid 14711640-e2d4-4d0a-9a57-af28fd4457e3) + ) + (junction (at 207.01 285.75) (diameter 0) (color 0 0 0 0) + (uuid 17bfc2cd-420e-43a0-9e4c-b6a46894035e) + ) + (junction (at 118.11 379.73) (diameter 0) (color 0 0 0 0) + (uuid 18ecaa1a-d36a-48ce-a96c-8b47f628a0b9) + ) + (junction (at 181.61 349.25) (diameter 0) (color 0 0 0 0) + (uuid 1a3f605c-dac8-4403-9b3e-b36eb56f9c63) + ) + (junction (at 662.94 314.96) (diameter 0) (color 0 0 0 0) + (uuid 1b8d2138-b321-4715-b07c-2729396b88b6) + ) + (junction (at 370.84 304.8) (diameter 0) (color 0 0 0 0) + (uuid 1e24c75a-2aa6-4fb2-b634-34202eedad44) + ) + (junction (at 680.72 276.86) (diameter 0) (color 0 0 0 0) + (uuid 24d794bf-c692-41b0-b383-e0a93371354c) + ) + (junction (at 468.63 379.73) (diameter 0) (color 0 0 0 0) + (uuid 24dcbbea-a976-42f9-a8b7-f077d23279a6) + ) + (junction (at 256.54 316.23) (diameter 0) (color 0 0 0 0) + (uuid 25e008cc-d052-48d1-861b-64f9eb361f80) + ) + (junction (at 320.04 295.91) (diameter 0) (color 0 0 0 0) + (uuid 2b289b4a-8caf-4601-ae24-6883eb354854) + ) + (junction (at 247.65 334.01) (diameter 0) (color 0 0 0 0) + (uuid 2c72850b-eb2d-4e85-a5f1-36eea8aae778) + ) + (junction (at 511.81 278.13) (diameter 0) (color 0 0 0 0) + (uuid 2d955e2a-0b47-40b3-be34-df19faac5c8e) + ) + (junction (at 688.34 227.33) (diameter 0) (color 0 0 0 0) + (uuid 2f0b0e9b-e482-4451-a1e5-b6fccd8a9461) + ) + (junction (at 670.56 257.81) (diameter 0) (color 0 0 0 0) + (uuid 30a9ad3c-c1bf-4fe4-84da-6029c1d04db5) + ) + (junction (at 726.44 327.66) (diameter 0) (color 0 0 0 0) + (uuid 31e18338-54c8-4b64-b011-05d164ff89c2) + ) + (junction (at 549.91 252.73) (diameter 0) (color 0 0 0 0) + (uuid 32bcb58e-c3f9-4d40-98b4-c625cde4bd02) + ) + (junction (at 557.53 257.81) (diameter 0) (color 0 0 0 0) + (uuid 35ea0edb-1e00-4c90-890f-2eefaba2a82b) + ) + (junction (at 138.43 379.73) (diameter 0) (color 0 0 0 0) + (uuid 3b7ff4cf-732a-4e90-87da-b86e6843fb68) + ) + (junction (at 650.24 276.86) (diameter 0) (color 0 0 0 0) + (uuid 3d97ae10-a26d-430f-981b-62ad40bfd4e7) + ) + (junction (at 350.52 276.86) (diameter 0) (color 0 0 0 0) + (uuid 3e7ae4a4-f13b-4e80-850a-be62874fca5b) + ) + (junction (at 701.04 304.8) (diameter 0) (color 0 0 0 0) + (uuid 41745f0f-8994-4d5f-af29-e7a9bb44f0d9) + ) + (junction (at 281.94 252.73) (diameter 0) (color 0 0 0 0) + (uuid 44275857-06b2-462c-a3d5-0d2505aa4f37) + ) + (junction (at 290.83 290.83) (diameter 0) (color 0 0 0 0) + (uuid 44a48241-1f1c-4906-99c4-cda03a95f1e0) + ) + (junction (at 562.61 303.53) (diameter 0) (color 0 0 0 0) + (uuid 457f7b1b-f3a6-40e1-9c4d-65d688e03e49) + ) + (junction (at 207.01 334.01) (diameter 0) (color 0 0 0 0) + (uuid 4785261b-6c8d-4acc-965e-46120b97bb35) + ) + (junction (at 632.46 276.86) (diameter 0) (color 0 0 0 0) + (uuid 49884056-4c88-49d8-9825-9eae3b922daa) + ) + (junction (at 621.03 290.83) (diameter 0) (color 0 0 0 0) + (uuid 49948e15-0285-4177-b7d3-42f224dd5fb2) + ) + (junction (at 383.54 341.63) (diameter 0) (color 0 0 0 0) + (uuid 4bad5f22-c6a2-4357-94f1-be4128c10a43) + ) + (junction (at 586.74 316.23) (diameter 0) (color 0 0 0 0) + (uuid 4c73afcb-e705-478d-a1a4-2853ea8f424f) + ) + (junction (at 657.86 257.81) (diameter 0) (color 0 0 0 0) + (uuid 4eadb784-8cbb-4052-aaf7-b5ddc7096c09) + ) + (junction (at 537.21 334.01) (diameter 0) (color 0 0 0 0) + (uuid 530ef445-1991-4e54-9590-5f0c7adffcbc) + ) + (junction (at 448.31 379.73) (diameter 0) (color 0 0 0 0) + (uuid 54ced619-e9f4-42c4-b7fc-ca849c4fd260) + ) + (junction (at 320.04 252.73) (diameter 0) (color 0 0 0 0) + (uuid 56f82f00-56f5-4f53-902e-e9537683c698) + ) + (junction (at 320.04 276.86) (diameter 0) (color 0 0 0 0) + (uuid 59ab43ba-ec83-468a-92cb-b8a69568e597) + ) + (junction (at 688.34 287.02) (diameter 0) (color 0 0 0 0) + (uuid 5fcd6d27-f2ac-41c1-93be-0fa6197590fe) + ) + (junction (at 612.14 270.51) (diameter 0) (color 0 0 0 0) + (uuid 6114fe9e-9ea1-4704-ab57-6241f901ce7d) + ) + (junction (at 156.21 379.73) (diameter 0) (color 0 0 0 0) + (uuid 620df232-0ac1-4277-97d7-187999ccbbeb) + ) + (junction (at 138.43 303.53) (diameter 0) (color 0 0 0 0) + (uuid 6ab86ea6-8806-432e-8198-95fa6ebbf6ab) + ) + (junction (at 240.03 257.81) (diameter 0) (color 0 0 0 0) + (uuid 6b89d1fa-b6fe-47a5-99b5-d52e9f9e239a) + ) + (junction (at 320.04 266.7) (diameter 0) (color 0 0 0 0) + (uuid 6c2c3783-2120-484a-b6e7-4efa908b9ccc) + ) + (junction (at 281.94 227.33) (diameter 0) (color 0 0 0 0) + (uuid 6d207e21-5445-422c-a2c5-d55820791309) + ) + (junction (at 345.44 276.86) (diameter 0) (color 0 0 0 0) + (uuid 6e4bd1e6-f539-42ac-9532-7359945ddf3b) + ) + (junction (at 599.44 379.73) (diameter 0) (color 0 0 0 0) + (uuid 6f556b39-3e82-46e5-ab04-a6acca3d68fb) + ) + (junction (at 327.66 257.81) (diameter 0) (color 0 0 0 0) + (uuid 722dd400-15c2-4b82-8d88-ac8f7f288687) + ) + (junction (at 562.61 379.73) (diameter 0) (color 0 0 0 0) + (uuid 7241f66c-beae-4fbc-85f2-176404d2a46e) + ) + (junction (at 688.34 304.8) (diameter 0) (color 0 0 0 0) + (uuid 7281b07c-7d8f-4370-9297-4948744a586e) + ) + (junction (at 340.36 257.81) (diameter 0) (color 0 0 0 0) + (uuid 73516a78-2ec4-4a51-b7cb-588ce4f9324d) + ) + (junction (at 345.44 379.73) (diameter 0) (color 0 0 0 0) + (uuid 77ea93ea-57ef-4338-81eb-ad82493204cb) + ) + (junction (at 207.01 227.33) (diameter 0) (color 0 0 0 0) + (uuid 785bf798-4a13-4e64-bd57-b737935222cd) + ) + (junction (at 619.76 257.81) (diameter 0) (color 0 0 0 0) + (uuid 7fb51b4f-46c1-49c9-8bb0-eb350fac672b) + ) + (junction (at 675.64 257.81) (diameter 0) (color 0 0 0 0) + (uuid 8032a656-d92c-4e95-8dd0-b2239886b7f5) + ) + (junction (at 554.99 290.83) (diameter 0) (color 0 0 0 0) + (uuid 80d87cc0-ba85-41c4-8f95-34bfbfe852b4) + ) + (junction (at 302.26 276.86) (diameter 0) (color 0 0 0 0) + (uuid 8705e313-40d4-4fe7-ac71-7c68b534085a) + ) + (junction (at 570.23 257.81) (diameter 0) (color 0 0 0 0) + (uuid 894ecb62-d4b4-4c4f-ab84-eb147f35a0d1) + ) + (junction (at 219.71 252.73) (diameter 0) (color 0 0 0 0) + (uuid 89b23be5-793d-4e3a-a454-b9a3fb5012ec) + ) + (junction (at 650.24 252.73) (diameter 0) (color 0 0 0 0) + (uuid 89ff0fc4-6fe8-406f-b1c7-e8414081116a) + ) + (junction (at 468.63 303.53) (diameter 0) (color 0 0 0 0) + (uuid 8da12723-5e5a-4c3b-bf4e-e842413b0b91) + ) + (junction (at 713.74 341.63) (diameter 0) (color 0 0 0 0) + (uuid 8f3b326f-ee66-406b-9fb8-844e6ba81d81) + ) + (junction (at 181.61 278.13) (diameter 0) (color 0 0 0 0) + (uuid 9034bec7-3cee-4a39-84e5-8a2cc387a21e) + ) + (junction (at 232.41 379.73) (diameter 0) (color 0 0 0 0) + (uuid 920dd595-06ed-4c2d-9e76-f9cbf4883834) + ) + (junction (at 232.41 303.53) (diameter 0) (color 0 0 0 0) + (uuid 9497435b-bcf8-43f2-888e-e62c67f9e9b5) + ) + (junction (at 156.21 334.01) (diameter 0) (color 0 0 0 0) + (uuid 96c792cb-4cd0-44bd-90b3-5e1088ca917f) + ) + (junction (at 256.54 379.73) (diameter 0) (color 0 0 0 0) + (uuid 972a7f3f-f928-4ee5-bc13-330f41548418) + ) + (junction (at 688.34 379.73) (diameter 0) (color 0 0 0 0) + (uuid 998c7ab2-91d2-48f6-ad3b-b65b2baed1cc) + ) + (junction (at 612.14 227.33) (diameter 0) (color 0 0 0 0) + (uuid 9abc1d9c-1b8c-426d-b454-819777f58f40) + ) + (junction (at 358.14 379.73) (diameter 0) (color 0 0 0 0) + (uuid 9cdb0802-daff-42d6-94b7-b95e8909e3f3) + ) + (junction (at 486.41 334.01) (diameter 0) (color 0 0 0 0) + (uuid 9f0cde10-af03-484a-b439-80ad903405f9) + ) + (junction (at 537.21 252.73) (diameter 0) (color 0 0 0 0) + (uuid a57951c9-76c5-48c7-8110-fd5f034a3f9f) + ) + (junction (at 289.56 257.81) (diameter 0) (color 0 0 0 0) + (uuid ac2eb687-6467-458d-a44c-b94163c49f1c) + ) + (junction (at 713.74 379.73) (diameter 0) (color 0 0 0 0) + (uuid b3fc46ed-2762-43dc-86ed-d2409dbf6b93) + ) + (junction (at 396.24 379.73) (diameter 0) (color 0 0 0 0) + (uuid b4ec651d-d771-441c-aa53-a6d9d60dedfe) + ) + (junction (at 138.43 290.83) (diameter 0) (color 0 0 0 0) + (uuid b5d9f99e-4b31-4234-9d26-202ddad65550) + ) + (junction (at 650.24 266.7) (diameter 0) (color 0 0 0 0) + (uuid b99dfb40-56bf-4a68-85c8-9ed43ac71190) + ) + (junction (at 662.94 276.86) (diameter 0) (color 0 0 0 0) + (uuid bae80ca4-6b81-4f6c-8e19-333c7440f51b) + ) + (junction (at 726.44 379.73) (diameter 0) (color 0 0 0 0) + (uuid bd675e1c-7ed2-4334-a191-5444efde3603) + ) + (junction (at 396.24 327.66) (diameter 0) (color 0 0 0 0) + (uuid bfba5365-b193-42af-916f-913c9c8c7a92) + ) + (junction (at 675.64 379.73) (diameter 0) (color 0 0 0 0) + (uuid c133971b-1862-4dcb-85af-feaeb9a49956) + ) + (junction (at 345.44 257.81) (diameter 0) (color 0 0 0 0) + (uuid c1b02664-3a60-41cc-98e3-e2a19157f92a) + ) + (junction (at 650.24 314.96) (diameter 0) (color 0 0 0 0) + (uuid c292d534-93f4-43e1-98a7-044ba98f1d15) + ) + (junction (at 358.14 304.8) (diameter 0) (color 0 0 0 0) + (uuid c3b29426-1f91-4484-b25e-e6bfe8f12920) + ) + (junction (at 358.14 227.33) (diameter 0) (color 0 0 0 0) + (uuid c8336630-bde1-4afa-b3c8-f315294992bf) + ) + (junction (at 468.63 290.83) (diameter 0) (color 0 0 0 0) + (uuid cab763e5-bba2-468d-90d9-38287bb61349) + ) + (junction (at 486.41 379.73) (diameter 0) (color 0 0 0 0) + (uuid cd5437c2-4142-44ac-9eca-3cbcc2a8bdc4) + ) + (junction (at 156.21 316.23) (diameter 0) (color 0 0 0 0) + (uuid cd63aad7-02d8-4952-bd6c-1ce465881258) + ) + (junction (at 650.24 227.33) (diameter 0) (color 0 0 0 0) + (uuid ce8120f7-6469-481e-b30b-e4804a74d75d) + ) + (junction (at 650.24 295.91) (diameter 0) (color 0 0 0 0) + (uuid d128f274-2299-42a0-a5f8-fc093851ab32) + ) + (junction (at 332.74 276.86) (diameter 0) (color 0 0 0 0) + (uuid d2fef28e-c888-4d09-bcd6-bbb21c417900) + ) + (junction (at 396.24 227.33) (diameter 0) (color 0 0 0 0) + (uuid d85c93f0-e97a-4633-8a51-ea431fb1a469) + ) + (junction (at 227.33 257.81) (diameter 0) (color 0 0 0 0) + (uuid d90cbda1-5258-4a61-87b8-312efddc7039) + ) + (junction (at 675.64 276.86) (diameter 0) (color 0 0 0 0) + (uuid deca05a3-9081-4b20-b7cf-32a629156379) + ) + (junction (at 358.14 287.02) (diameter 0) (color 0 0 0 0) + (uuid e1966e0c-4566-4199-98ed-86de60184bdd) + ) + (junction (at 332.74 314.96) (diameter 0) (color 0 0 0 0) + (uuid e4a5d094-1b42-429c-b07f-84cef6ca0862) + ) + (junction (at 408.94 379.73) (diameter 0) (color 0 0 0 0) + (uuid e7e069fe-4139-4699-933b-67200021449a) + ) + (junction (at 269.24 379.73) (diameter 0) (color 0 0 0 0) + (uuid e967c057-45d1-48dd-b84a-cb192a503617) + ) + (junction (at 586.74 379.73) (diameter 0) (color 0 0 0 0) + (uuid eb424380-2b90-4929-b839-49937f21df55) + ) + (junction (at 612.14 252.73) (diameter 0) (color 0 0 0 0) + (uuid ebaae6d4-6b36-4cdb-a092-e1703974779a) + ) + (junction (at 320.04 379.73) (diameter 0) (color 0 0 0 0) + (uuid ebae6e88-67be-4b3e-85bd-caba7aedb30a) + ) + (junction (at 207.01 252.73) (diameter 0) (color 0 0 0 0) + (uuid ee4ae24b-fd10-4cd4-9043-c1fbc4484e39) + ) + (junction (at 632.46 257.81) (diameter 0) (color 0 0 0 0) + (uuid ee810359-bb23-4067-bcde-e58081d9963e) + ) + (junction (at 302.26 257.81) (diameter 0) (color 0 0 0 0) + (uuid eefe782a-9665-443c-abe9-e95d80554a90) + ) + (junction (at 537.21 227.33) (diameter 0) (color 0 0 0 0) + (uuid ef63fce4-b201-40d6-986d-bf5ffc55136f) + ) + (junction (at 281.94 270.51) (diameter 0) (color 0 0 0 0) + (uuid f5309460-cc68-40fc-8149-8e89446e6be2) + ) + (junction (at 577.85 334.01) (diameter 0) (color 0 0 0 0) + (uuid f7bfb955-c4bc-4da1-9a73-8e2cdd85d0fb) + ) + (junction (at 486.41 285.75) (diameter 0) (color 0 0 0 0) + (uuid f9dee565-0c2f-4ea3-94ee-e8443315cc8a) + ) + (junction (at 281.94 327.66) (diameter 0) (color 0 0 0 0) + (uuid fbb94323-c94c-449c-b0c8-fa4856f69f1c) + ) + (junction (at 511.81 349.25) (diameter 0) (color 0 0 0 0) + (uuid fd0ea9d8-1b97-4b06-8386-39c1fb87aea9) + ) + (junction (at 224.79 290.83) (diameter 0) (color 0 0 0 0) + (uuid fd378ef9-f6ee-49c4-a97a-7a75e7cd846c) + ) + (junction (at 650.24 379.73) (diameter 0) (color 0 0 0 0) + (uuid fec44aee-654e-4dfc-92ef-84dcd509773e) + ) + + (wire (pts (xy 612.14 327.66) (xy 621.03 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0074b943-a58e-4247-bb5b-c22c22d25467) + ) + (wire (pts (xy 662.94 266.7) (xy 675.64 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00e6b2fd-d382-4c90-9bef-e018866526df) + ) + (wire (pts (xy 511.81 271.78) (xy 549.91 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 00f0fbec-4f58-49b0-baa7-543840e48008) + ) + (wire (pts (xy 207.01 252.73) (xy 219.71 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01bd42fc-d638-4c52-a3f3-53606d977ae3) + ) + (wire (pts (xy 537.21 285.75) (xy 547.37 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02b78791-328d-4fb5-801b-1c712c602469) + ) + (wire (pts (xy 320.04 309.88) (xy 320.04 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0312646e-7614-4b84-9d14-a07d5fe7a3e6) + ) + (wire (pts (xy 621.03 340.36) (xy 612.14 340.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04bfe982-9273-4c93-9861-3ee2dd82db92) + ) + (wire (pts (xy 138.43 321.31) (xy 138.43 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0805404b-95cb-4291-9bb7-d1b43503b630) + ) + (wire (pts (xy 396.24 327.66) (xy 391.16 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08986548-fa09-48a1-ab35-952c9950f268) + ) + (wire (pts (xy 713.74 322.58) (xy 713.74 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b3c5b8d-69ff-48a2-83c5-733046587ebd) + ) + (wire (pts (xy 713.74 363.22) (xy 713.74 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c30a10c-8a17-4e28-a304-dc7fcf716fbf) + ) + (wire (pts (xy 224.79 290.83) (xy 214.63 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c4925ed-d6da-42c5-86be-3d8be17c2deb) + ) + (wire (pts (xy 486.41 379.73) (xy 537.21 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0dfdf938-092e-4994-982c-9a18261b9f5d) + ) + (wire (pts (xy 612.14 262.89) (xy 612.14 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ee4bfe4-e58f-4788-8bb8-6dca87aea6b1) + ) + (wire (pts (xy 675.64 276.86) (xy 662.94 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 10d01382-0d67-47ea-8d49-816043ba5eeb) + ) + (wire (pts (xy 675.64 379.73) (xy 688.34 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1292d35a-ea70-4d1f-be78-ed51d78db2f5) + ) + (wire (pts (xy 232.41 270.51) (xy 256.54 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 146889bc-0a7d-46ec-86a8-7eede7da7e3c) + ) + (wire (pts (xy 476.25 303.53) (xy 468.63 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 14e112de-d6f2-45f7-9287-418d1166b190) + ) + (wire (pts (xy 650.24 309.88) (xy 650.24 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16658ce1-13ae-459f-938f-c4eff7c6ff44) + ) + (wire (pts (xy 562.61 379.73) (xy 586.74 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 176dd6ac-a855-4481-ae9f-06074c1caf40) + ) + (wire (pts (xy 476.25 285.75) (xy 486.41 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18e59a17-72cd-431e-934e-750310c81ede) + ) + (wire (pts (xy 537.21 262.89) (xy 537.21 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 197d6a90-f84d-4feb-bb4a-deea3078e23d) + ) + (wire (pts (xy 688.34 379.73) (xy 713.74 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19d97b51-b642-499f-9145-095c670335ab) + ) + (wire (pts (xy 537.21 252.73) (xy 549.91 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19fba57d-b91f-406b-ba9b-81039ca6465a) + ) + (wire (pts (xy 302.26 257.81) (xy 327.66 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a3febc7-f5d2-4ce9-b80f-eed638de7125) + ) + (wire (pts (xy 455.93 334.01) (xy 486.41 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a401671-355b-49e4-8f36-30be39f0ff6d) + ) + (wire (pts (xy 701.04 304.8) (xy 688.34 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a4b98e9-6b59-4ce8-95b4-22529051e9d8) + ) + (wire (pts (xy 628.65 340.36) (xy 642.62 340.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1b498240-6fbc-4205-87e7-a470f28fa62e) + ) + (wire (pts (xy 537.21 278.13) (xy 511.81 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dd4e34c-86a8-44ed-b9aa-94e057607251) + ) + (wire (pts (xy 207.01 334.01) (xy 247.65 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1df52bcb-afcd-44c5-a005-12861221cac9) + ) + (wire (pts (xy 207.01 354.33) (xy 207.01 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1df91c1a-5167-42f9-ba92-7a58bc7227d2) + ) + (wire (pts (xy 675.64 257.81) (xy 670.56 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e52ae38-b46f-4d7b-943d-f8a4d88e5302) + ) + (wire (pts (xy 232.41 262.89) (xy 232.41 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ee2b086-76c0-4426-85e6-e4f17b8f6248) + ) + (wire (pts (xy 370.84 276.86) (xy 350.52 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f056fdc-bdc7-470e-81d2-4e547517a8aa) + ) + (wire (pts (xy 156.21 295.91) (xy 156.21 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f6764f0-6408-4135-974f-8863ef998420) + ) + (wire (pts (xy 448.31 265.43) (xy 448.31 328.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1f9f9186-bbd5-4c49-a346-7dbe916a438b) + ) + (wire (pts (xy 662.94 262.89) (xy 662.94 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 205ebd94-d0d0-4349-b9f9-e107fa30586b) + ) + (wire (pts (xy 403.86 320.04) (xy 408.94 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 20e49def-90c5-48dc-921e-4c27f4b5ac90) + ) + (wire (pts (xy 461.01 316.23) (xy 434.34 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 246ad791-e777-4a6b-a980-b95dc2d58cfe) + ) + (wire (pts (xy 281.94 262.89) (xy 281.94 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2483f2b0-4beb-477d-97fd-e9af435a210a) + ) + (wire (pts (xy 138.43 290.83) (xy 138.43 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2552a6a3-bacf-4931-85d1-e45b6c5a1211) + ) + (wire (pts (xy 181.61 349.25) (xy 199.39 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2686b8b1-3c55-410a-bccc-51b7775320b2) + ) + (wire (pts (xy 662.94 300.99) (xy 662.94 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 273d2a17-2490-447e-b3bc-42fb35b2cb4d) + ) + (wire (pts (xy 650.24 295.91) (xy 650.24 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2751e122-8b11-4aa9-b94c-d49cb00dd3ca) + ) + (wire (pts (xy 547.37 303.53) (xy 562.61 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 277fac60-5b41-4bea-b285-0b296cf2b55b) + ) + (wire (pts (xy 486.41 334.01) (xy 486.41 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27b1a903-b80b-4aa3-bec7-df5c8fd42bdc) + ) + (wire (pts (xy 106.68 316.23) (xy 130.81 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27d3b67b-9559-4ddf-a8c1-3f666ee70f2e) + ) + (wire (pts (xy 713.74 257.81) (xy 675.64 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28da486e-d772-4731-8543-e0a887955a4a) + ) + (wire (pts (xy 358.14 227.33) (xy 358.14 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2938404f-6797-45b1-92b3-939c52a8fb0d) + ) + (wire (pts (xy 599.44 294.64) (xy 599.44 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 298a7359-3c7f-4bad-b6db-5e715fa725c9) + ) + (wire (pts (xy 256.54 270.51) (xy 256.54 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2adb3ec4-de9c-4e5c-a4e9-4309a9e5f21d) + ) + (wire (pts (xy 650.24 252.73) (xy 662.94 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c32d455-ffdf-4f49-9293-cd7687b4bca0) + ) + (wire (pts (xy 726.44 327.66) (xy 721.36 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2c7985cf-d98e-43ec-99a0-53f3c70866f0) + ) + (wire (pts (xy 562.61 270.51) (xy 586.74 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d1d64d1-4857-435f-90d5-c0f6243ea1b9) + ) + (wire (pts (xy 332.74 314.96) (xy 350.52 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d925b01-785e-48a1-a366-c1b30a4c1c2e) + ) + (wire (pts (xy 281.94 227.33) (xy 281.94 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2df2f2f7-aa8f-46c1-b404-a7fb695ee58b) + ) + (wire (pts (xy 345.44 266.7) (xy 345.44 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2f7b3252-e70f-453c-9665-27e79b42d4cd) + ) + (wire (pts (xy 146.05 295.91) (xy 146.05 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3052c023-f7f0-4f4a-a770-77117f04e9dd) + ) + (wire (pts (xy 562.61 303.53) (xy 562.61 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 31a9c52c-d129-4dd3-be08-414225fd1288) + ) + (wire (pts (xy 486.41 278.13) (xy 511.81 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 33d06377-b577-4552-85a6-51998634ceef) + ) + (wire (pts (xy 240.03 257.81) (xy 289.56 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 347a2f66-9955-40f8-a29e-b5d90f3d5c0f) + ) + (wire (pts (xy 713.74 379.73) (xy 726.44 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 351db8e2-62ba-492f-8001-8a3c71f5e20f) + ) + (wire (pts (xy 586.74 270.51) (xy 586.74 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35a2a007-319c-46cf-91e1-a9fef1159d4c) + ) + (wire (pts (xy 662.94 290.83) (xy 662.94 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35f50467-8be7-478b-a7a1-3301ae951be9) + ) + (wire (pts (xy 383.54 341.63) (xy 388.62 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 362d133e-edf1-4c4a-9838-67ceeb53ab31) + ) + (wire (pts (xy 537.21 334.01) (xy 577.85 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36402ac0-0168-4bdb-9522-8ae580275dad) + ) + (wire (pts (xy 320.04 227.33) (xy 358.14 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 371fca2b-f04e-4989-ba97-459a8f57b14a) + ) + (wire (pts (xy 586.74 379.73) (xy 599.44 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 372132ab-51de-4107-9a7c-ad47c80871ab) + ) + (wire (pts (xy 332.74 300.99) (xy 332.74 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37bda090-05e6-4106-9d5a-c4be56d63589) + ) + (wire (pts (xy 448.31 379.73) (xy 468.63 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 37be8b1e-ba67-4836-8e58-42507e39492c) + ) + (wire (pts (xy 688.34 227.33) (xy 726.44 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3803182c-cb5c-4818-88b6-991d7abd1ece) + ) + (wire (pts (xy 562.61 321.31) (xy 562.61 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 389fb0de-5d6e-4957-9163-f0b3ce0ff189) + ) + (wire (pts (xy 632.46 285.75) (xy 632.46 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 38acc48e-8a85-4033-8711-6735aafc5633) + ) + (wire (pts (xy 549.91 252.73) (xy 562.61 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39b01402-38ca-4d5c-b024-3ecd50593e43) + ) + (wire (pts (xy 232.41 311.15) (xy 232.41 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39de5552-235d-4f1c-a822-f5871740a98a) + ) + (wire (pts (xy 294.64 266.7) (xy 320.04 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3a3a0250-daeb-461b-a06a-d9f00b7be2d1) + ) + (wire (pts (xy 91.44 379.73) (xy 118.11 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dc6f256-aaec-4c8f-b58e-b1dcb879a7a6) + ) + (wire (pts (xy 256.54 379.73) (xy 269.24 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e87c70d-3e11-4dda-a8a9-718dbe8196e1) + ) + (wire (pts (xy 621.03 276.86) (xy 632.46 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f0b94fb-e05c-45da-b934-0e423f0e0d91) + ) + (wire (pts (xy 577.85 306.07) (xy 577.85 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fa0d1a8-7a84-45eb-ae28-8b7ed7d906ce) + ) + (wire (pts (xy 537.21 227.33) (xy 612.14 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fa9da0e-79bf-4049-9f0c-7cd8253b24c9) + ) + (wire (pts (xy 624.84 266.7) (xy 650.24 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4114fec4-4f51-419b-8fba-dbea3dcb5f5d) + ) + (wire (pts (xy 662.94 314.96) (xy 680.72 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4183ea31-356b-4f51-8484-2ed6a0da7b3f) + ) + (wire (pts (xy 290.83 340.36) (xy 281.94 340.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 41904a2b-23a4-4d63-9fcc-b259c1c9e872) + ) + (wire (pts (xy 163.83 349.25) (xy 181.61 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4213c0b0-2dfc-419f-b6d4-b18211339d37) + ) + (wire (pts (xy 713.74 341.63) (xy 718.82 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42815629-d163-49d7-ab8c-1112f6362fba) + ) + (wire (pts (xy 146.05 285.75) (xy 156.21 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4448fae4-2644-430e-86fd-fb31a5a80619) + ) + (wire (pts (xy 537.21 285.75) (xy 537.21 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 448f406c-a557-41bd-917b-7bbb50b4284c) + ) + (wire (pts (xy 247.65 306.07) (xy 247.65 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4496559d-95fa-4f08-97f8-a14398162564) + ) + (wire (pts (xy 675.64 322.58) (xy 675.64 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 470fc09f-a0ca-4399-b08c-f0b1d326aa7d) + ) + (wire (pts (xy 146.05 303.53) (xy 138.43 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 471ec032-bd8d-4a50-a577-51b2d324a20b) + ) + (wire (pts (xy 302.26 285.75) (xy 302.26 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48f94625-c42d-4737-a4d7-1ec6f2bc8d89) + ) + (wire (pts (xy 537.21 334.01) (xy 537.21 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49c27ed2-733d-4be0-ba7d-87929d7b9ce9) + ) + (wire (pts (xy 621.03 290.83) (xy 624.84 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4c316d41-a629-4af5-b0f6-4ac94d8bc45a) + ) + (wire (pts (xy 256.54 316.23) (xy 274.32 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ca22626-ecff-4e66-8182-d60a4ccc6079) + ) + (wire (pts (xy 408.94 379.73) (xy 396.24 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cc34fa6-b221-4f48-82cd-aeba9350bd86) + ) + (wire (pts (xy 358.14 379.73) (xy 383.54 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4cc7409f-ac71-4343-ad05-8521605d3a34) + ) + (wire (pts (xy 468.63 290.83) (xy 478.79 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ce8f80c-3bd9-49be-b45b-768c85d900c2) + ) + (wire (pts (xy 739.14 320.04) (xy 739.14 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d1f0795-be9f-4dab-a9e7-002aeb9b7dd6) + ) + (wire (pts (xy 448.31 339.09) (xy 448.31 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d8ee020-9871-454a-b395-55524dda4c66) + ) + (wire (pts (xy 214.63 257.81) (xy 227.33 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4dd22a97-f8b8-47a0-ac4f-8801b8918ad5) + ) + (wire (pts (xy 358.14 320.04) (xy 358.14 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e8752b4-e095-4315-ab2a-51709b5eaa84) + ) + (wire (pts (xy 320.04 314.96) (xy 320.04 335.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f4f447b-0d7b-4af0-a05e-f28da77012a1) + ) + (wire (pts (xy 219.71 271.78) (xy 219.71 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 50228188-300a-4fd6-852b-c8136d3bfa39) + ) + (wire (pts (xy 207.01 240.03) (xy 207.01 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5140e2ad-b9ce-4cdf-bed5-7336cb13e4c4) + ) + (wire (pts (xy 370.84 292.1) (xy 370.84 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52709942-f26e-492b-b330-f77669f80d78) + ) + (wire (pts (xy 396.24 325.12) (xy 396.24 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52d2a45d-10d6-424d-b9f8-8da8ab06cd0a) + ) + (wire (pts (xy 232.41 290.83) (xy 224.79 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53d35184-cbc5-424e-88dc-756b6713f101) + ) + (wire (pts (xy 240.03 316.23) (xy 245.11 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 53fb8506-cbdb-4c9c-bb09-6bb7f5958de2) + ) + (wire (pts (xy 358.14 281.94) (xy 358.14 287.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5505eae8-8698-4547-ae37-274c312d5984) + ) + (wire (pts (xy 570.23 257.81) (xy 619.76 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 586a8485-7fd5-4cdf-b56d-421cfd461089) + ) + (wire (pts (xy 628.65 327.66) (xy 668.02 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58d1fd37-f1fa-49e8-969f-986988633724) + ) + (wire (pts (xy 383.54 322.58) (xy 383.54 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b2bff2f-0748-43cb-980a-dbf477fa5021) + ) + (wire (pts (xy 650.24 276.86) (xy 650.24 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5c542c01-1444-4284-ae03-2bb5c7943352) + ) + (wire (pts (xy 619.76 257.81) (xy 632.46 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5da4b8ae-9673-479b-bc62-09bdfed209dc) + ) + (wire (pts (xy 290.83 290.83) (xy 294.64 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5dbfd88d-457c-48a8-9fcc-6c1dd0a30cb3) + ) + (wire (pts (xy 511.81 316.23) (xy 486.41 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e339648-0e14-4b81-96ad-c42402a055d4) + ) + (wire (pts (xy 217.17 303.53) (xy 232.41 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e8340a3-661d-4811-be50-f8432d9927b4) + ) + (wire (pts (xy 662.94 276.86) (xy 650.24 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f2b3dcb-dc27-4ec9-8ccb-347425c522e4) + ) + (wire (pts (xy 269.24 307.34) (xy 269.24 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f7eb483-ce65-47df-a0e1-eb12e6d0491d) + ) + (wire (pts (xy 247.65 290.83) (xy 290.83 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 604e1e68-096e-4b2d-a7fd-972ab404886e) + ) + (wire (pts (xy 358.14 287.02) (xy 358.14 292.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62649950-959a-4464-9087-51c000be740f) + ) + (wire (pts (xy 701.04 281.94) (xy 701.04 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 63e457d2-e2b0-484f-9dca-8270fb0798c2) + ) + (wire (pts (xy 345.44 257.81) (xy 340.36 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64922aa1-e8b6-4779-a457-6448c90884c3) + ) + (wire (pts (xy 577.85 334.01) (xy 579.12 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64db12b7-a9ac-4846-8206-9548187a9974) + ) + (wire (pts (xy 138.43 379.73) (xy 156.21 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65ceac74-f137-4065-9ed3-2309f3f0bc65) + ) + (wire (pts (xy 281.94 227.33) (xy 320.04 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65d58ca6-ec0d-46e2-8e09-ca14b7e36055) + ) + (wire (pts (xy 207.01 334.01) (xy 207.01 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6a0165b9-352c-4367-8c1a-4e1dcec19c8c) + ) + (wire (pts (xy 713.74 341.63) (xy 713.74 355.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6dae1c2e-c643-4602-b982-b498b6052e3d) + ) + (wire (pts (xy 726.44 346.71) (xy 726.44 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 703542e1-2989-44fc-82ea-e879f3aa366a) + ) + (wire (pts (xy 632.46 257.81) (xy 657.86 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 709ea1f5-60d4-4863-94d3-cbe26d922b07) + ) + (wire (pts (xy 320.04 345.44) (xy 320.04 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7242a07c-af08-4b2c-8416-712576933ecc) + ) + (wire (pts (xy 358.14 287.02) (xy 363.22 287.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 725fda5d-75ec-44f8-a837-ba2212eeef90) + ) + (wire (pts (xy 181.61 271.78) (xy 219.71 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 73f3fe1a-988c-406b-a2b2-b0fe7a4f077f) + ) + (wire (pts (xy 207.01 265.43) (xy 118.11 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76048e54-3f91-4fe7-9270-90aaa740dd61) + ) + (wire (pts (xy 650.24 379.73) (xy 675.64 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76fc1d9a-4e03-42ab-8547-c32e45f9560a) + ) + (wire (pts (xy 650.24 314.96) (xy 662.94 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 784934b5-a441-4083-a949-ad467f964875) + ) + (wire (pts (xy 537.21 354.33) (xy 537.21 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78aac793-872c-46f3-a408-e71e04067a27) + ) + (wire (pts (xy 327.66 257.81) (xy 340.36 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78b77b98-b94b-4a5a-bf1f-03266a5b6929) + ) + (wire (pts (xy 650.24 227.33) (xy 688.34 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 793498c5-a2fa-4574-922e-b8808879edac) + ) + (wire (pts (xy 549.91 271.78) (xy 549.91 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a407eaf-ff04-4f20-8659-01bba371133f) + ) + (wire (pts (xy 511.81 349.25) (xy 529.59 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7af4de31-066d-42b5-924c-52d910f1568b) + ) + (wire (pts (xy 181.61 278.13) (xy 181.61 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b4ea215-66a8-42f0-9359-bad3d47a7476) + ) + (wire (pts (xy 370.84 304.8) (xy 421.64 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c20832b-d5ff-4811-88a8-3a403f4a9a64) + ) + (wire (pts (xy 726.44 327.66) (xy 726.44 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f4a88a6-d3a6-4c73-ad04-8d27d7418627) + ) + (wire (pts (xy 320.04 252.73) (xy 332.74 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7fecc373-b6ca-409b-af13-a66382273433) + ) + (wire (pts (xy 612.14 252.73) (xy 624.84 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 803d8aea-4048-4521-8aac-5af678bff523) + ) + (wire (pts (xy 468.63 303.53) (xy 468.63 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 80b82479-4f99-4874-9b04-1037576a8ab5) + ) + (wire (pts (xy 383.54 379.73) (xy 396.24 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 81804a76-f359-4630-924d-304696dfe296) + ) + (wire (pts (xy 302.26 276.86) (xy 320.04 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 824c5302-dcf6-4663-aabe-612fbfa5a94b) + ) + (wire (pts (xy 156.21 354.33) (xy 156.21 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83120c69-eb63-465b-b8be-df488f874e62) + ) + (wire (pts (xy 181.61 316.23) (xy 156.21 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8375bd39-b0b5-44a3-a85b-4a84febfa8c1) + ) + (wire (pts (xy 370.84 304.8) (xy 358.14 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 842141a8-2999-4a54-bdcd-a03fe6eeac36) + ) + (wire (pts (xy 106.68 325.12) (xy 245.11 325.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84528fa4-51d1-414e-a329-656f18872445) + ) + (wire (pts (xy 537.21 379.73) (xy 562.61 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84f7462c-7630-41db-a227-f11798326f50) + ) + (wire (pts (xy 650.24 266.7) (xy 650.24 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 857769bb-15f8-4ac0-9413-575d9010b025) + ) + (wire (pts (xy 624.84 262.89) (xy 624.84 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8594c2a7-3358-4d40-8521-4403eb04a350) + ) + (wire (pts (xy 468.63 321.31) (xy 468.63 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85964d09-bda6-4a81-afd9-787f932db206) + ) + (wire (pts (xy 207.01 278.13) (xy 181.61 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85adc4da-7cbb-49a7-b078-ecb731bb548f) + ) + (wire (pts (xy 281.94 270.51) (xy 281.94 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 871b934e-cc4e-491c-8deb-7670f02c9ee0) + ) + (wire (pts (xy 320.04 295.91) (xy 320.04 302.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8942a78c-1504-431e-b52e-a36a15a784c8) + ) + (wire (pts (xy 125.73 334.01) (xy 156.21 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89acb39d-7a18-4d7e-a40a-c1880396486a) + ) + (wire (pts (xy 688.34 299.72) (xy 688.34 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8abfc5fc-0365-48aa-9b1a-d7924ae35535) + ) + (wire (pts (xy 486.41 354.33) (xy 486.41 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8af13521-6b59-4138-b5d5-227d7b6262dc) + ) + (wire (pts (xy 577.85 290.83) (xy 621.03 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b49a5c7-fe89-45f4-99f0-1784b2191007) + ) + (wire (pts (xy 650.24 227.33) (xy 650.24 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8bb48539-8145-4e7e-9552-1c1949787986) + ) + (wire (pts (xy 320.04 314.96) (xy 332.74 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c2fab3e-1bda-4c45-9a15-c0191f550478) + ) + (wire (pts (xy 586.74 339.09) (xy 586.74 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 914c0a13-89f0-47a9-827a-0ba54cebbddb) + ) + (wire (pts (xy 554.99 290.83) (xy 544.83 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 915bf39a-52a6-41d8-ae2f-db1783ad685f) + ) + (wire (pts (xy 91.44 227.33) (xy 207.01 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9160304c-22ab-4d0a-a0b7-e55332eff90b) + ) + (wire (pts (xy 396.24 346.71) (xy 396.24 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91e09dcb-35e1-48fd-8315-e442389fa91a) + ) + (wire (pts (xy 358.14 304.8) (xy 358.14 309.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92002de2-3900-486a-bae2-01d49c10a0c5) + ) + (wire (pts (xy 688.34 304.8) (xy 688.34 309.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 92474516-e59d-487c-9437-2d5d69eb67bf) + ) + (wire (pts (xy 486.41 295.91) (xy 486.41 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9487bae9-3137-49b2-ba30-25d1fc4ef7e9) + ) + (wire (pts (xy 612.14 270.51) (xy 612.14 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 94d908de-a9ac-4c01-bb0d-cb8384cfd316) + ) + (wire (pts (xy 294.64 262.89) (xy 294.64 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96a87198-a6b9-4f9c-bf42-79a5f769633c) + ) + (wire (pts (xy 245.11 316.23) (xy 245.11 325.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98097fa7-e29f-472b-9014-f0a1e6d6ed2d) + ) + (wire (pts (xy 181.61 349.25) (xy 181.61 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 990d7874-a41d-46ee-a397-29474be1eb0c) + ) + (wire (pts (xy 396.24 227.33) (xy 396.24 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 99d1bc83-a4dd-4488-a94c-db864b6d6d16) + ) + (wire (pts (xy 586.74 316.23) (xy 586.74 328.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b23dcdb-877c-4b01-bcdb-f2423ddc9ea8) + ) + (wire (pts (xy 675.64 332.74) (xy 675.64 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9d92b909-e7d9-43a7-954f-13f6e99fa4a1) + ) + (wire (pts (xy 701.04 276.86) (xy 680.72 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fc2baf5-075e-4dcb-8127-5153eb4d77e7) + ) + (wire (pts (xy 383.54 341.63) (xy 383.54 355.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9fe4400f-305f-43f0-af22-b1c9b24580f1) + ) + (wire (pts (xy 650.24 295.91) (xy 655.32 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a300af47-5a2a-42c7-924f-86c021935375) + ) + (wire (pts (xy 156.21 285.75) (xy 156.21 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3361dca-d9f6-403a-a159-b06106eb16c6) + ) + (wire (pts (xy 281.94 252.73) (xy 294.64 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3ae888c-e49e-4497-9477-f9e34ffc37a7) + ) + (wire (pts (xy 358.14 299.72) (xy 358.14 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3da86f7-6d14-490a-bc19-ed39d9c3b060) + ) + (wire (pts (xy 281.94 340.36) (xy 281.94 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a516c7e5-2ebf-44a8-ba05-38d59f1b5c75) + ) + (wire (pts (xy 138.43 303.53) (xy 138.43 311.15)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5599d8c-974e-4007-82ec-6d518f1d2b4b) + ) + (wire (pts (xy 247.65 298.45) (xy 247.65 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a594ef2a-824c-4878-8f67-da704ec7d1b9) + ) + (wire (pts (xy 320.04 295.91) (xy 325.12 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a5d9d283-2cef-486c-8e63-d3b99c833521) + ) + (wire (pts (xy 156.21 334.01) (xy 156.21 344.17)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7f4ab8d-df37-4525-add6-7489ca39d5fa) + ) + (wire (pts (xy 562.61 262.89) (xy 562.61 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a94f6fea-33ed-4dae-959f-a5e2501500e0) + ) + (wire (pts (xy 290.83 290.83) (xy 290.83 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a995fbdf-a023-4bf0-ae70-75dfb47abbf9) + ) + (wire (pts (xy 675.64 276.86) (xy 680.72 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a9b0ee41-b44c-4f1f-b389-d397c0c690d2) + ) + (wire (pts (xy 726.44 227.33) (xy 726.44 314.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa43e1f7-ea74-4d28-85db-b4a7c7bdd166) + ) + (wire (pts (xy 298.45 327.66) (xy 337.82 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa8f8a25-6979-4dfc-9546-d390c19cabf9) + ) + (wire (pts (xy 298.45 340.36) (xy 312.42 340.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aab1cdf8-285e-4950-a4a6-33ec6380f66b) + ) + (wire (pts (xy 511.81 349.25) (xy 511.81 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aae1ad04-6990-4ce7-9203-548b338afc8d) + ) + (wire (pts (xy 562.61 311.15) (xy 562.61 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ab902485-d7de-467d-8329-67ed8fc9b4b3) + ) + (wire (pts (xy 599.44 270.51) (xy 612.14 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid abe73ed1-a098-4518-89fc-de4f06576869) + ) + (wire (pts (xy 650.24 314.96) (xy 650.24 335.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ac4d6553-566b-4749-a582-edc152837a2c) + ) + (wire (pts (xy 713.74 332.74) (xy 713.74 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid adc023e5-e999-4cf6-a2c7-f6603c7cc212) + ) + (wire (pts (xy 232.41 321.31) (xy 232.41 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae6186fb-4ca8-44e0-8d2a-b469f0efa655) + ) + (wire (pts (xy 207.01 232.41) (xy 207.01 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af2d0bd6-e0e9-41e4-b41d-02359982cb36) + ) + (wire (pts (xy 290.83 276.86) (xy 302.26 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af79d083-0f56-417a-ab73-84a8f5860f4f) + ) + (wire (pts (xy 345.44 276.86) (xy 350.52 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af7c0487-cf02-4b47-9aab-cbc253d08d6c) + ) + (wire (pts (xy 396.24 227.33) (xy 537.21 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid afa684e3-93f8-4cc9-ad03-dc0aa33afbee) + ) + (wire (pts (xy 701.04 304.8) (xy 753.11 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0436a04-f60c-4844-98dd-4125e82cf1c2) + ) + (wire (pts (xy 269.24 294.64) (xy 269.24 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0b535b4-002d-4b94-82e0-b426aff59c15) + ) + (wire (pts (xy 118.11 339.09) (xy 118.11 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0eb3476-4e05-49c2-a0e3-126c93c058ab) + ) + (wire (pts (xy 256.54 339.09) (xy 256.54 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1c88d31-fbff-4606-86bb-7f302032d475) + ) + (wire (pts (xy 345.44 276.86) (xy 332.74 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1d68a90-3d43-492c-a002-272855dcf96a) + ) + (wire (pts (xy 207.01 285.75) (xy 217.17 285.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b20987c7-ff3a-474b-b234-3f9aa864a33f) + ) + (wire (pts (xy 688.34 320.04) (xy 688.34 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b40d0b84-fd3a-4344-b5b9-77e42d74f7ed) + ) + (wire (pts (xy 577.85 298.45) (xy 577.85 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5a45547-344b-44e7-afb7-11ad5b326eea) + ) + (wire (pts (xy 358.14 227.33) (xy 396.24 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5c7c25d-6f79-4289-a99a-768bcc4457c1) + ) + (wire (pts (xy 156.21 379.73) (xy 207.01 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6735b84-6c67-4cf6-829f-3a6d54cace1e) + ) + (wire (pts (xy 332.74 262.89) (xy 332.74 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b87c5949-472d-4761-8e19-8bb2c3d007a4) + ) + (wire (pts (xy 537.21 295.91) (xy 537.21 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8ede650-7349-436a-91f4-60c62cfd25c6) + ) + (wire (pts (xy 269.24 379.73) (xy 320.04 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b937b0b4-04ca-4574-87b6-e1a3522d47de) + ) + (wire (pts (xy 688.34 227.33) (xy 688.34 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9613e5c-1482-472f-a371-82a68f588536) + ) + (wire (pts (xy 739.14 379.73) (xy 726.44 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b993dc8b-7cb1-4e3a-94b3-20ae8b5d4453) + ) + (wire (pts (xy 537.21 232.41) (xy 537.21 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b99df2b7-1602-4f1b-abdb-b122fdade38e) + ) + (wire (pts (xy 408.94 320.04) (xy 408.94 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb1a4a39-4610-4bcd-a2fc-43f1d66ecb86) + ) + (wire (pts (xy 612.14 227.33) (xy 650.24 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bba09b9a-ca6b-4ed9-8304-edbf9bb7e8e6) + ) + (wire (pts (xy 256.54 316.23) (xy 256.54 328.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bbe8bea7-ecf0-46ea-b99f-c7bbcb3b7ed0) + ) + (wire (pts (xy 207.01 379.73) (xy 232.41 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc13a2ed-6d8e-4b3c-87ac-d5ed56910493) + ) + (wire (pts (xy 118.11 379.73) (xy 138.43 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf32eb4d-ad4a-4308-a8cc-e6174c666d4f) + ) + (wire (pts (xy 537.21 240.03) (xy 537.21 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf69d996-3006-47d6-9370-853ab86e6e98) + ) + (wire (pts (xy 345.44 379.73) (xy 358.14 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfc134c3-84f7-44a5-b2aa-c3c0fa4d441a) + ) + (wire (pts (xy 207.01 262.89) (xy 207.01 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c19f54de-612e-4c39-b715-44f7a8c59fd6) + ) + (wire (pts (xy 734.06 320.04) (xy 739.14 320.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2bc06db-2cc1-4751-be37-ccad7626fa33) + ) + (wire (pts (xy 486.41 316.23) (xy 486.41 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c2e871ca-a932-4142-bb7e-4f8831434ee3) + ) + (wire (pts (xy 302.26 295.91) (xy 320.04 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3167b1f-e0fa-4049-b37d-2d61ba8c7d8e) + ) + (wire (pts (xy 289.56 257.81) (xy 302.26 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c369cbff-b346-483f-bab9-57fc5851e116) + ) + (wire (pts (xy 247.65 334.01) (xy 248.92 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3f16a37-c974-4995-91a6-690382fe2f88) + ) + (wire (pts (xy 217.17 295.91) (xy 217.17 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c43f8760-a80f-44ac-8e9a-cb2a2714d85a) + ) + (wire (pts (xy 468.63 379.73) (xy 486.41 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c60c164e-93eb-411d-9481-92d8eb3e93ae) + ) + (wire (pts (xy 232.41 379.73) (xy 256.54 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c76c9583-42b1-4c0e-a65c-43ba491e3f94) + ) + (wire (pts (xy 320.04 227.33) (xy 320.04 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca223e2e-2393-453b-8ae3-9d1700a0604b) + ) + (wire (pts (xy 557.53 257.81) (xy 570.23 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbbf6c60-ce5e-4ddf-b3fc-13755330fd96) + ) + (wire (pts (xy 281.94 321.31) (xy 281.94 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd592e7e-e446-49a7-870b-156d1537a819) + ) + (wire (pts (xy 586.74 316.23) (xy 604.52 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce170391-15d1-4f27-b7ee-e05017b0d134) + ) + (wire (pts (xy 511.81 278.13) (xy 511.81 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf391992-2c5c-4c31-bbae-298909350e6b) + ) + (wire (pts (xy 156.21 278.13) (xy 181.61 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d24aec30-b3ea-4ae1-a4d3-1feebb743482) + ) + (wire (pts (xy 575.31 323.85) (xy 434.34 323.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3c88c8f-3ebf-4970-bc90-3057011eb0b6) + ) + (wire (pts (xy 657.86 257.81) (xy 670.56 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d40b713f-071e-4cc5-a548-b4ffef5d3245) + ) + (wire (pts (xy 281.94 327.66) (xy 290.83 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d6b21e74-b7c1-459f-9fc8-27911d74193c) + ) + (wire (pts (xy 599.44 379.73) (xy 650.24 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d72d1dd2-55fd-4d38-a8ea-1d06bc68b72b) + ) + (wire (pts (xy 562.61 290.83) (xy 554.99 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d74a3109-ab4d-498e-8d1d-449bf88104e1) + ) + (wire (pts (xy 632.46 276.86) (xy 650.24 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d762d86e-52b3-4e71-9ee3-5f46596cc8fb) + ) + (wire (pts (xy 726.44 325.12) (xy 726.44 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d7697fd9-1b27-4eb1-a4e6-0f56bc13c0f7) + ) + (wire (pts (xy 207.01 285.75) (xy 207.01 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d9224202-a09b-4c66-a151-5b8f659076a1) + ) + (wire (pts (xy 383.54 332.74) (xy 383.54 341.63)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da3db487-98db-4c9d-a21a-f71b7e7aede2) + ) + (wire (pts (xy 118.11 265.43) (xy 118.11 328.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da6f9ed0-7b99-4c2c-8738-fafca2da2958) + ) + (wire (pts (xy 332.74 290.83) (xy 332.74 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid daa24455-567f-4c00-b25b-9df86bfcaad3) + ) + (wire (pts (xy 688.34 281.94) (xy 688.34 287.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dcf89e0f-5a90-4335-9cc3-1d4422243b69) + ) + (wire (pts (xy 156.21 316.23) (xy 156.21 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd3f94bf-d9c5-4173-b623-f0b541dfce65) + ) + (wire (pts (xy 486.41 285.75) (xy 486.41 278.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd5db884-1c2c-46ad-88e9-08a090303ea4) + ) + (wire (pts (xy 468.63 290.83) (xy 468.63 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de18ca03-6f4b-4244-b7e3-b0e2ec4402fb) + ) + (wire (pts (xy 476.25 295.91) (xy 476.25 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de540bac-b7d7-43eb-a42f-9994efc99e6d) + ) + (wire (pts (xy 383.54 363.22) (xy 383.54 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df24befc-fdbf-48fd-956f-16c811325bb1) + ) + (wire (pts (xy 332.74 266.7) (xy 345.44 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df8d164e-ebe4-41eb-b41a-c131003f7832) + ) + (wire (pts (xy 383.54 257.81) (xy 345.44 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e095af9f-b9f0-4419-9370-ebbdf598a563) + ) + (wire (pts (xy 408.94 379.73) (xy 448.31 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0e323b6-1da8-4ba2-a4a0-623b3cca6ccf) + ) + (wire (pts (xy 138.43 290.83) (xy 148.59 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2e07cfb-8b13-4d07-986b-2e9c64db86a4) + ) + (wire (pts (xy 232.41 303.53) (xy 232.41 290.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e35e3934-3f1d-40d8-bcc4-a30ea92e4634) + ) + (wire (pts (xy 219.71 252.73) (xy 232.41 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e3be703c-875a-46d9-9bf3-99af456ad5f0) + ) + (wire (pts (xy 269.24 270.51) (xy 281.94 270.51)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e45bad64-946b-4774-b118-cbd31886cb2e) + ) + (wire (pts (xy 570.23 316.23) (xy 575.31 316.23)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e76d3150-39a7-4bb9-bd63-aa9304cd963d) + ) + (wire (pts (xy 701.04 292.1) (xy 701.04 304.8)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8e34ae3-9b80-4876-bedd-9136157ff9fc) + ) + (wire (pts (xy 612.14 321.31) (xy 612.14 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9e447eb-14d4-4c31-b6e8-eb9176e590c4) + ) + (wire (pts (xy 688.34 287.02) (xy 693.42 287.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea457a09-3bd9-461c-8aa6-a5600dccb154) + ) + (wire (pts (xy 332.74 276.86) (xy 320.04 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ea499090-35ae-4f96-9fd0-a07aec4d574a) + ) + (wire (pts (xy 345.44 332.74) (xy 345.44 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb9ca1f0-f4b0-462f-82d5-1e78eb96a03e) + ) + (wire (pts (xy 537.21 265.43) (xy 448.31 265.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ec758658-8961-4804-a84f-a2a37a626f73) + ) + (wire (pts (xy 227.33 257.81) (xy 240.03 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed292799-364e-4c52-aebd-d60e3aa2112a) + ) + (wire (pts (xy 547.37 295.91) (xy 547.37 303.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eef4135b-6ab1-46c5-908b-967ed763bfb8) + ) + (wire (pts (xy 632.46 295.91) (xy 650.24 295.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0d0b589-3a76-4ff4-bdc3-06a35ff0e229) + ) + (wire (pts (xy 575.31 316.23) (xy 575.31 323.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f179a09e-69d0-4244-a1f7-719fb9ba9a45) + ) + (wire (pts (xy 396.24 327.66) (xy 396.24 336.55)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f23f9632-dd4f-4480-9b35-4fc074c8b1a6) + ) + (wire (pts (xy 370.84 281.94) (xy 370.84 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2eb7b4d-8ce9-4012-843a-1a31ae4904cf) + ) + (wire (pts (xy 688.34 287.02) (xy 688.34 292.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3391b5e-337b-4fba-a0d1-299ee6264b0f) + ) + (wire (pts (xy 494.03 349.25) (xy 511.81 349.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f4015c9a-0b8f-4f1c-b9ff-5f291b7b9157) + ) + (wire (pts (xy 650.24 345.44) (xy 650.24 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f41df236-cc28-4455-9fa9-1b3befa32050) + ) + (wire (pts (xy 675.64 266.7) (xy 675.64 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f436394e-6ba3-46d8-b36a-fe646db80a0a) + ) + (wire (pts (xy 320.04 276.86) (xy 320.04 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f45734dc-965d-41c7-853d-91ce50039d07) + ) + (wire (pts (xy 621.03 290.83) (xy 621.03 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f542cdff-3908-4e38-91ca-298515e57983) + ) + (wire (pts (xy 207.01 295.91) (xy 207.01 334.01)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f814779a-d471-4d8b-b436-75f184fa0068) + ) + (wire (pts (xy 345.44 322.58) (xy 345.44 276.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f8c05e68-14ec-40bf-aa8f-0d9887504ed6) + ) + (wire (pts (xy 599.44 307.34) (xy 599.44 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid faf7707f-f964-44fe-b1a8-ef9ae714a02e) + ) + (wire (pts (xy 612.14 340.36) (xy 612.14 327.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fafa442e-db11-4abd-8f38-3b5be06a3230) + ) + (wire (pts (xy 207.01 227.33) (xy 281.94 227.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc1fb7fc-3ce1-44af-b669-5419452eb692) + ) + (wire (pts (xy 544.83 257.81) (xy 557.53 257.81)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fc4e0121-2f99-42f1-897c-858d342bfd20) + ) + (wire (pts (xy 320.04 379.73) (xy 345.44 379.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd28e559-c2a3-4b61-b2e8-316bc5e9b73e) + ) + (wire (pts (xy 612.14 227.33) (xy 612.14 252.73)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd4c9935-c472-4f67-a72d-80499ced7b59) + ) + (wire (pts (xy 320.04 266.7) (xy 320.04 262.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fe465557-c577-41f6-8dec-89500fea1120) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 382.27 358.14 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0193591c-f64a-45ab-9798-c3ca4065955e) + (property "Reference" "R6" (id 0) (at 386.08 358.1399 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "3k" (id 1) (at 386.08 360.6799 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 381.762 359.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 383.54 359.41 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid caf6566d-b2a6-45e4-809e-c50a9e211f0b)) + (pin "2" (uuid 2183abda-7da1-4fb9-aeb7-7729a6769b90)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 279.4 316.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 09443963-5e45-4729-9cf3-ecf111f4c026) + (property "Reference" "Q14" (id 0) (at 284.48 314.9599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 284.48 317.4999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 284.48 313.69 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 279.4 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 59a35de1-3f77-4c1d-ad11-76ee35e39714)) + (pin "2" (uuid 3740490c-6569-49e2-85c3-ad0d2a058b34)) + (pin "3" (uuid 00c34534-5f47-4830-a592-63cfd2039038)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 427.99 316.23 0) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0a1f671a-5f63-45d6-849a-6d270e79634b) + (property "Reference" "U1" (id 0) (at 428.625 311.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 428.625 313.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 427.99 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 427.99 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 73bf3b13-d860-49f4-b0c7-0b7f101dac76)) + (pin "2" (uuid d9d5cd30-fd05-49d2-8ddd-2e403f4fc603)) + (pin "3" (uuid 709abdf7-c4a4-46a6-b6c4-0e01816db040)) + (pin "4" (uuid d80b34f5-1af2-4c6e-bbd2-f314138acc0c)) + (pin "5" (uuid 2b1a6095-c870-49fa-8dcd-461eaf0298fa)) + (pin "6" (uuid 0fb7bbc3-7a0f-42de-94b8-a837a5dd88cc)) + (pin "7" (uuid 06f4b85d-a490-47a1-b930-2a1e1f9d1463)) + (pin "8" (uuid 9bddc3fe-a4ff-42e4-b0bd-37b3263b9828)) + (pin "9" (uuid ed82db8b-ed62-4106-af24-1a466fa59900)) + (pin "10" (uuid 94f7333a-042f-4582-ab71-608334d21a62)) + (pin "11" (uuid ad8b2718-9d48-44a9-b4de-d8188f3b180c)) + (pin "12" (uuid 3077e259-7b55-4da5-bdec-75f753c13d5f)) + (pin "13" (uuid 84467789-b38c-4fa7-96c2-6dcc755937d1)) + (pin "14" (uuid cfc29369-640e-41ae-9e93-02e368acd30c)) + (pin "15" (uuid 9e508eca-521d-4bec-9ea6-2dbb3421b4b0)) + (pin "16" (uuid 8126bfb7-4e8b-4f3d-8ceb-61b73565745d)) + (pin "17" (uuid ba044255-4acd-4726-a04d-99c1ad4af520)) + (pin "18" (uuid 9575407a-6d1b-43ab-a892-f15a7bf517e5)) + (pin "19" (uuid 7c808bd0-f170-43a6-94f8-e21937db8c2a)) + (pin "20" (uuid 0278ceb1-d0b4-4bee-a395-44741744b7a2)) + (pin "21" (uuid 1933354b-504b-48e7-b0db-559d1e56c251)) + (pin "22" (uuid 2c9c5159-a778-4dc6-ac52-1822449d3048)) + (pin "23" (uuid fadb2d2a-cea5-4257-bea0-b678f7cdf98c)) + (pin "24" (uuid 696a2b44-70c1-4088-a1f4-2428b9398260)) + (pin "25" (uuid ed18f4be-df5a-486e-9c37-d352de471f26)) + (pin "26" (uuid 41ab05df-b3c9-4692-af33-08086a5bbd6b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 355.6 314.96 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0a988582-fc3b-4c6e-9d80-7d76d6da59f7) + (property "Reference" "Q24" (id 0) (at 360.68 313.6899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 360.68 316.2299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 360.68 317.5 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 355.6 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a892684a-8d32-4f8b-be7c-d05af1ad6cfb)) + (pin "2" (uuid f3270e84-0db3-4c37-b97e-a2e21b5dfffa)) + (pin "3" (uuid 1befb6c7-f6e9-40ef-a518-61058a95b942)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 565.15 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0afa8aff-36b4-4256-aca0-8ba819ffb678) + (property "Reference" "Q38" (id 0) (at 560.07 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 560.07 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 560.07 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 565.15 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4bc6bf2a-960f-4c75-ae1b-bdffec1cb55f)) + (pin "2" (uuid 302bc2ab-f2a5-49cf-83dd-be551153dc02)) + (pin "3" (uuid aca7a5f0-d7cf-4327-8fb4-e5b515aeefd2)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 552.45 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0bde881f-0623-4979-91e1-ae5dd1a76ae2) + (property "Reference" "Q37" (id 0) (at 547.37 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 547.37 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 547.37 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 552.45 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 73339782-3e8f-463f-b337-77835f20fa4e)) + (pin "2" (uuid 94f9a786-30df-4d18-9750-b547c6b372e9)) + (pin "3" (uuid 380e0157-eabb-49d8-9c4f-2deea954cb9f)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 208.28 237.49 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0f29f037-185e-4966-8c54-5da71327e6e0) + (property "Reference" "R1" (id 0) (at 209.55 234.9499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 209.55 237.4899 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 208.788 236.22 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 207.01 236.22 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid c2576f80-48d4-4808-99fc-ebf37ff51c82)) + (pin "2" (uuid afad9615-d763-475c-8d4b-d511bbfdcb1a)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 473.71 290.83 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0f65bc66-bedb-4abb-94a2-40cc59949f20) + (property "Reference" "Q30" (id 0) (at 478.79 289.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 478.79 292.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 478.79 293.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 473.71 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e2a24a6a-2842-43a8-90a2-a2b58ab814d4)) + (pin "2" (uuid ef34afa8-2428-454b-9f13-c8ac1207cb5b)) + (pin "3" (uuid 501119e7-421d-43a2-8f2b-9041a7773c80)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 209.55 290.83 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1bbd26ac-f514-4a79-98c7-41a09f31d12a) + (property "Reference" "Q8" (id 0) (at 204.47 289.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 204.47 292.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 204.47 293.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 209.55 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ac203e6e-dc23-4e9a-a9ba-428c54c3fd6b)) + (pin "2" (uuid 30e068bf-0fd1-48fb-a4be-629aafa63bfd)) + (pin "3" (uuid c13466fe-3290-4f19-acf8-ecc3070b62cd)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 342.9 327.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1cf2f294-1cbd-414b-bf97-0546dc810606) + (property "Reference" "Q22" (id 0) (at 347.98 326.3899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 347.98 328.9299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 347.98 325.12 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 342.9 327.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 83c8c397-bd9d-46ca-af92-0292402f5abe)) + (pin "2" (uuid 0182e56c-5fce-46b2-a900-8323d254b4c4)) + (pin "3" (uuid b7ba248f-e5d8-47aa-b962-0a9b818d9cd9)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 698.5 287.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1d8eb86c-2784-498b-8d35-29c66eaf98a9) + (property "Reference" "Q52" (id 0) (at 703.58 285.7499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 703.58 288.2899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 703.58 284.48 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 698.5 287.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 939f1446-5671-48ee-8c21-099b22ae65c3)) + (pin "2" (uuid a347983c-31b4-4b71-a4e6-05eccd2c6a0d)) + (pin "3" (uuid da46ecda-86d3-4850-a363-fac35f161807)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 120.65 334.01 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 21183d0a-874a-4d44-b2b3-c8393a36355b) + (property "Reference" "Q1" (id 0) (at 115.57 332.7399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 115.57 335.2799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 115.57 336.55 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 120.65 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0c9f03b1-4463-4b3b-98d2-03f0ec640ad8)) + (pin "2" (uuid 9166014b-489d-4e8a-9aef-a74f6bb04224)) + (pin "3" (uuid 14e3753c-b47f-4c2a-b426-bc908d2b380a)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 222.25 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 22575c83-6f62-40f1-8ada-743970dfefe6) + (property "Reference" "Q10" (id 0) (at 217.17 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 217.17 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 217.17 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 222.25 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e1d263ed-83b7-40fa-a035-16803356ae55)) + (pin "2" (uuid 60910ba2-d0c1-460a-861d-fc9a9cce683e)) + (pin "3" (uuid af69601e-914e-4f34-aad0-add887ca613d)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 647.7 340.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2632f8f3-49fe-48f9-9cfa-93b42be2dfe9) + (property "Reference" "Q45" (id 0) (at 652.78 339.0899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 652.78 341.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 652.78 337.82 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 647.7 340.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid af79ca23-2b74-42ca-8e6e-c18949a14aae)) + (pin "2" (uuid 86eead3f-8156-49d6-a09d-6ab5c5adf0ab)) + (pin "3" (uuid d6c87a7c-5509-41a4-b445-d5a15045abfd)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 234.95 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26f7bc34-eeef-45ee-9149-e00115bcb6eb) + (property "Reference" "Q11" (id 0) (at 229.87 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 229.87 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 229.87 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 234.95 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ec2d7460-8fc0-41fa-a41b-4ab2c32958a0)) + (pin "2" (uuid c2552b98-b278-4c38-8956-62dc5749d758)) + (pin "3" (uuid f83739f7-b7bc-4883-ae45-878572c61dd8)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 539.75 290.83 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2aa57b54-04f0-4fef-9baf-6a859f984ee6) + (property "Reference" "Q35" (id 0) (at 534.67 289.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 534.67 292.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 534.67 293.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 539.75 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 550ee5ce-51cb-43ab-9421-292945cba6ed)) + (pin "2" (uuid 348d4d0e-bad8-456f-9463-20aba7a33df3)) + (pin "3" (uuid 8a304740-96d5-4682-86e3-3827be9dcc01)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 143.51 290.83 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 32340d39-afc9-4406-b52f-4758d9e3d0a4) + (property "Reference" "Q3" (id 0) (at 148.59 289.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 148.59 292.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 148.59 293.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 143.51 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid a6328f65-145e-4523-b4ef-fad9d446f57c)) + (pin "2" (uuid 4cc41ce7-6bbd-415f-a4d1-cdc1bbbc395d)) + (pin "3" (uuid 32b98aaa-ab51-4da9-a050-6b4c9c332dee)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 368.3 287.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 32ce6fc8-b02b-4b59-a852-15b24f80dbc9) + (property "Reference" "Q25" (id 0) (at 373.38 285.7499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 373.38 288.2899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 373.38 284.48 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 368.3 287.02 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0e5785e1-714e-4d2a-aa3e-c456c9125770)) + (pin "2" (uuid faa1b311-146d-41fd-ab1c-724dd9516538)) + (pin "3" (uuid 9834c207-c45f-461d-a0ec-a0af3e99c181)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 626.11 339.09 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 37c3900a-693a-43fa-851d-b2757a3f85bd) + (property "Reference" "R9" (id 0) (at 624.84 334.01 0)) + (property "Value" "1k" (id 1) (at 624.84 336.55 0)) + (property "Footprint" "" (id 2) (at 624.84 338.582 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 624.84 340.36 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 3690d531-6ab7-4950-85d1-cf0ddb1309ca)) + (pin "2" (uuid 2cfd192b-59a7-4da3-9b3e-950c1cd36c06)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 356.87 294.64 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 423342f8-a3e1-4a98-a0be-a514ea00487f) + (property "Reference" "R5" (id 0) (at 360.68 294.6399 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "20" (id 1) (at 360.68 297.1799 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 356.362 295.91 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 358.14 295.91 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid bdfb0c3a-cfe7-4b76-b5e0-022ec89a127d)) + (pin "2" (uuid 846d4cb7-dd54-41e2-b56c-e9e09aef46cb)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 687.07 294.64 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4a744212-c656-4d4f-9676-ad0d8ed2718f) + (property "Reference" "R11" (id 0) (at 690.88 294.6399 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "20" (id 1) (at 690.88 297.1799 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 686.562 295.91 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 688.34 295.91 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid b166de01-9a01-4bca-8179-474c480732de)) + (pin "2" (uuid eac5c039-dfab-4a68-9a28-ef895d2e20b2)) + ) + + (symbol (lib_id "eSim_Devices:capacitor_polarised") (at 247.65 302.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4b9e43c9-8bd3-4e76-989b-04d58d728ceb) + (property "Reference" "C1" (id 0) (at 251.46 300.3549 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "5p" (id 1) (at 251.46 302.8949 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 247.65 302.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 247.65 302.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 86a471a0-13d6-4a25-85c1-16475d2aa643)) + (pin "2" (uuid f2589c06-6538-4e80-b98f-89c52383af39)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 427.99 323.85 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 511c3c1e-0e3f-4e1a-a36c-bc9c64f06d40) + (property "Reference" "U1" (id 0) (at 428.625 318.77 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 428.625 321.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 427.99 323.85 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 427.99 323.85 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0489ba96-6cb9-43fb-9a8a-271a0106ada7)) + (pin "2" (uuid 1df50eda-9e11-466d-9e89-6e4626d13575)) + (pin "3" (uuid 3b078898-05b3-448b-a57d-15ce7a75efa1)) + (pin "4" (uuid 60e17085-b6a1-4907-87f5-789d9456117a)) + (pin "5" (uuid d7a88b45-e377-413c-8cd4-8b9307bad909)) + (pin "6" (uuid fb36ba24-7289-455c-82b9-c3c950e5d3dc)) + (pin "7" (uuid 90406e2a-f3a3-4527-b302-d4f2d31f891a)) + (pin "8" (uuid 5e7e2b7e-460b-495c-82b4-0c817e843d44)) + (pin "9" (uuid 72de87d2-2299-4aa4-b7f3-6d2d1c4ff642)) + (pin "10" (uuid 3e17e882-cdc6-463f-b080-8484b652b0bf)) + (pin "11" (uuid a5997277-521d-48e8-9e57-b638052ea7ab)) + (pin "12" (uuid 98fce98c-1065-44d5-bed5-49ce36ee4fcd)) + (pin "13" (uuid 2647d4e4-47b4-4800-8b73-9c5a7dec3764)) + (pin "14" (uuid 0b715bfc-64e3-4988-810e-2edb359c72ab)) + (pin "15" (uuid ed5b696a-8f70-4bcf-bf50-52092ad7e8d7)) + (pin "16" (uuid e75537b0-3110-48cb-94d2-93c60c7090c0)) + (pin "17" (uuid 8be068ad-f7db-458b-ba8e-2594851fbc9d)) + (pin "18" (uuid 6761317b-3b04-47f6-b5ce-3208b9da6460)) + (pin "19" (uuid 376e98a7-176c-4bae-b7ef-6b4da4dc0578)) + (pin "20" (uuid 0d6f33ce-f59b-4bb4-95cd-9b9fe9c7c521)) + (pin "21" (uuid 2737dbe7-dc43-40fa-aada-59c35f52f76f)) + (pin "22" (uuid e175e5f4-496b-4b91-8a17-8768c8e6eff3)) + (pin "23" (uuid 2245abf7-7d39-4b15-8eea-9e292bbeb203)) + (pin "24" (uuid ce193881-73c1-4d60-bae1-7d2ee2066371)) + (pin "25" (uuid 846ffb57-af35-4b76-aa0a-9d45d9c441b9)) + (pin "26" (uuid 09b0acd5-0d12-487d-ace2-daa7a69a84d3)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 355.6 276.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 51ec6845-6438-4df8-a1b2-8fa45ca8df2c) + (property "Reference" "Q23" (id 0) (at 360.68 275.5899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 360.68 278.1299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 360.68 274.32 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 355.6 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d5ece71b-383e-47ab-9cc2-40113f185f1a)) + (pin "2" (uuid e6568656-e37f-4b02-afa4-9a878f6ba13f)) + (pin "3" (uuid 1302c175-2142-49a5-a7ea-cf1f857d7765)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 629.92 290.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 59066b68-5588-465f-bb27-5dc5d06561b4) + (property "Reference" "Q44" (id 0) (at 635 289.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 635 292.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 635 288.29 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 629.92 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 38fd60b9-707f-4827-bd63-2775636013fe)) + (pin "2" (uuid 15619122-faa0-44a8-9060-73a1459ad6f7)) + (pin "3" (uuid a4cf6136-da55-4872-b8ed-98a9583d45f8)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 85.09 227.33 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5f7889a6-7257-45a2-8fd1-3e6e3a52ad65) + (property "Reference" "U1" (id 0) (at 85.725 222.25 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 85.725 224.79 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 85.09 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 85.09 227.33 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e3c6ee37-201a-408e-a73e-13661d039d4c)) + (pin "2" (uuid a64b96bf-80b6-4dc4-a3b0-d5aad09a300b)) + (pin "3" (uuid 9a9dc086-3d4c-448c-9cf5-438c27e60c92)) + (pin "4" (uuid 9f4c93bd-2fb2-4de9-980a-78da003b89d1)) + (pin "5" (uuid 7987b7e8-6063-4af7-8149-5110d79cceae)) + (pin "6" (uuid 77241754-fdf5-46e4-b4b9-a781fde8ebdf)) + (pin "7" (uuid 1f546cf4-12d1-429d-a8f5-1f7dccba9dc4)) + (pin "8" (uuid 003dfce7-7ee3-4b9a-9609-0bd6faca81ca)) + (pin "9" (uuid 6345f8c0-14b5-4d75-a6e3-d825504d050a)) + (pin "10" (uuid ac2c8302-b17f-4024-a616-ade67868a4bb)) + (pin "11" (uuid ff4e5121-d736-47d2-880e-4d64fa052ff2)) + (pin "12" (uuid 2d84ffe1-1d18-41f1-861e-b6064a6b2db1)) + (pin "13" (uuid be44d7f8-bbe1-46ec-a18c-0c6544804990)) + (pin "14" (uuid afc97012-bfb5-4477-8f63-883018a6e215)) + (pin "15" (uuid 7f830d80-15e3-45c9-85f3-0f96a94a9523)) + (pin "16" (uuid cc27ab12-085d-426e-9a43-3d71d13e1d38)) + (pin "17" (uuid 834c7370-2534-4e7c-8f98-ba1b7f6cd1a0)) + (pin "18" (uuid 0d3b355a-958a-4d66-b22a-c98f693fa774)) + (pin "19" (uuid e75410ed-e002-4d35-8d0e-ec9bf5d11a3b)) + (pin "20" (uuid c3d7668f-2b16-4823-87a0-90cf41351bfd)) + (pin "21" (uuid 7876ea2c-82ca-4fe1-8221-4be2a59576b6)) + (pin "22" (uuid e8924430-333f-4841-9131-0eab065c4a5e)) + (pin "23" (uuid c93acc17-4a28-44fc-af70-775d2de48bfb)) + (pin "24" (uuid b0e897ae-c739-4809-8300-8131a7e3014f)) + (pin "25" (uuid 96855645-4c17-4b81-946d-58e21610cd75)) + (pin "26" (uuid f45827bc-8e3a-4b75-8eff-fc91cc511f37)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 386.08 327.66 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 689c082b-a664-44ab-aa91-1490833e1a80) + (property "Reference" "Q26" (id 0) (at 381 326.3899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 381 328.9299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 381 325.12 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 386.08 327.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8990e8ea-3610-4ae4-a5a2-ad0645b3aac7)) + (pin "2" (uuid 68d00e69-a208-42e5-84db-ba4ffb1b64cc)) + (pin "3" (uuid 058c13fc-fdf7-4e79-9bbe-61f9af77c8c5)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 614.68 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6918fc14-b8dd-4806-aab8-150eab184d6f) + (property "Reference" "Q42" (id 0) (at 609.6 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 609.6 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 609.6 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 614.68 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fc5f8856-63ce-4a2f-a3c9-b746571e9319)) + (pin "2" (uuid 6f37eac1-8c3b-482f-a9b6-b5a81e29b0f6)) + (pin "3" (uuid b72c3653-3efd-4dfd-a893-3417e64e13d5)) + ) + + (symbol (lib_id "eSim_Devices:capacitor_polarised") (at 577.85 302.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 69403372-e6ef-4bb2-b298-52fbc7ea4a45) + (property "Reference" "C2" (id 0) (at 581.66 300.3549 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "5p" (id 1) (at 581.66 302.8949 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 577.85 302.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 577.85 302.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e1ec583e-60a3-457b-a554-353616a5f10c)) + (pin "2" (uuid 540fae6e-32f2-4c59-a2c0-9e6ed533cee7)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 549.91 290.83 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6a99f0c4-fec2-4cd0-8733-e60a1bb5ffeb) + (property "Reference" "Q36" (id 0) (at 544.83 289.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 544.83 292.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 544.83 293.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 549.91 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 08d04a4e-4edf-4779-b59e-ab8f53ef1007)) + (pin "2" (uuid bfe6eedb-8548-4832-8e9c-87b6c1592fcf)) + (pin "3" (uuid 537d0909-4c55-4440-bc17-d3e7cf756b8f)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 295.91 339.09 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d173912-f043-49d0-b628-e10e6f50f68e) + (property "Reference" "R3" (id 0) (at 294.64 334.01 0)) + (property "Value" "1k" (id 1) (at 294.64 336.55 0)) + (property "Footprint" "" (id 2) (at 294.64 338.582 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 294.64 340.36 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 394e5437-c0a4-4793-b1b9-d1afb0005bc4)) + (pin "2" (uuid 339ffa4e-8876-45a3-8389-89a30a1b63bd)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 685.8 314.96 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7af8125a-f23c-47a5-9d4b-e9bf579b573f) + (property "Reference" "Q51" (id 0) (at 690.88 313.6899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 690.88 316.2299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 690.88 317.5 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 685.8 314.96 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 50a2b0e8-75e1-4015-895d-360207c1d485)) + (pin "2" (uuid 3e34d134-4cde-4005-a809-5b0bf83a893d)) + (pin "3" (uuid 53155879-41a2-4bfc-a498-f73ae65dcdac)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 626.11 326.39 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 80d7e738-4d5c-4fc5-a580-ab7b6c39b89b) + (property "Reference" "R8" (id 0) (at 624.84 321.31 0)) + (property "Value" "1k" (id 1) (at 624.84 323.85 0)) + (property "Footprint" "" (id 2) (at 624.84 325.882 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 624.84 327.66 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 6028333d-a50f-4e10-a6e4-a40bfdadaa0e)) + (pin "2" (uuid 6b949acb-b5dd-4100-853c-21221ecbca0e)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 318.77 304.8 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 817ef6b6-ce1a-4841-9e15-e8741bf6f0d9) + (property "Reference" "R4" (id 0) (at 322.58 304.7999 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "50k" (id 1) (at 322.58 307.3399 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 318.262 306.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 320.04 306.07 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 299e1ebe-4f72-4518-9b5f-80aa6a08a2af)) + (pin "2" (uuid 01976fe1-e813-4cda-ba5b-3c9990d7e96c)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 538.48 237.49 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 87fbaab0-e7bc-4229-a6a3-3ebc65dec4ee) + (property "Reference" "R7" (id 0) (at 539.75 234.9499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 539.75 237.4899 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 538.988 236.22 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 537.21 236.22 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid c47f1cd6-9540-456a-a6ba-08481e8cc98a)) + (pin "2" (uuid 318a374e-fb34-44d0-aa38-1fc758c565eb)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 565.15 316.23 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8bd0d879-b699-436a-80bf-b7907eb552ad) + (property "Reference" "Q39" (id 0) (at 560.07 314.9599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 560.07 317.4999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 560.07 318.77 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 565.15 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 85586a9e-698b-400b-8a87-5f5cb1f05e5a)) + (pin "2" (uuid 814311b7-2500-4022-b150-9c78be10dd5a)) + (pin "3" (uuid 0f458062-fe75-49cb-a713-ca393953acb6)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 135.89 316.23 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8f9ac928-9258-485e-b828-628783893cfc) + (property "Reference" "Q2" (id 0) (at 140.97 314.9599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 140.97 317.4999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 140.97 318.77 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 135.89 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 553ec2af-c1cc-4d98-bb51-886793e759b8)) + (pin "2" (uuid abc95391-972a-4eb4-9066-80ee7775305c)) + (pin "3" (uuid 16dad93f-54c5-40e8-9eff-4c63bdcf1331)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 627.38 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9219b170-81c5-4e7f-88bd-41bbf8af6236) + (property "Reference" "Q43" (id 0) (at 622.3 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 622.3 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 622.3 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 627.38 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8e50a64a-01f7-4cff-a49d-644c40719d90)) + (pin "2" (uuid 5dd604fd-d8ae-44ec-90d7-400f1d9d8da3)) + (pin "3" (uuid 31dca58b-c45c-4dbe-a7c7-de6123af0224)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 85.09 379.73 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9f27a8ac-0540-4aa2-bfec-de53a746b6e0) + (property "Reference" "U1" (id 0) (at 85.725 374.65 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 85.725 377.19 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 85.09 379.73 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 85.09 379.73 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f6e99456-80cc-4874-9373-77137fb5a5d8)) + (pin "2" (uuid cebb0ebb-c6a5-4f72-83c9-30860abffdeb)) + (pin "3" (uuid 584f9b36-c891-47fa-b9ac-45970aca80ed)) + (pin "4" (uuid bb87f874-00c4-4ab1-ac75-bfa524ee9296)) + (pin "5" (uuid 02aedabf-d3f6-4af0-b8c6-a93ad0a29aea)) + (pin "6" (uuid 8bc499d4-084b-4276-b94e-1bd4a4e54e2c)) + (pin "7" (uuid 6be18b1c-ecbf-4212-af56-f8c8642b15c7)) + (pin "8" (uuid 65d25b24-e9cc-482a-8bfd-b83a55873a20)) + (pin "9" (uuid 47fe80e1-1328-4e81-93e3-733cc7eeebf6)) + (pin "10" (uuid 1929ec63-7848-4bb0-8d68-3441a468ccb8)) + (pin "11" (uuid c5d91e56-ae9d-448f-9663-8e5dcb211602)) + (pin "12" (uuid c2f95fde-5633-4515-ae2b-3fd5d754ef9c)) + (pin "13" (uuid 335abe75-b520-4efd-a2d8-8f048a03abd9)) + (pin "14" (uuid bfbf5229-5d42-471c-829d-26e6cc98deb2)) + (pin "15" (uuid 2c3a55c1-18b9-456d-8d23-4998b13e2826)) + (pin "16" (uuid 54dfaa85-bd17-44af-8e6f-767145af0f09)) + (pin "17" (uuid a65355bb-e125-4e6b-87ce-e4dc1b8b04e8)) + (pin "18" (uuid f272dcc1-e9bd-4e7e-ae3c-153858f1f98f)) + (pin "19" (uuid b67930bd-f316-4d31-8bf1-9c376303cf9d)) + (pin "20" (uuid e6e80046-bc14-4e49-8377-45159e0f396d)) + (pin "21" (uuid 0bea3b1f-f1a7-4b52-9b05-b456ef5c16af)) + (pin "22" (uuid a304ee36-a1da-42f4-81fc-94d95ac83905)) + (pin "23" (uuid 6c0fcae3-ce1c-42a7-969a-0a4080b09595)) + (pin "24" (uuid 2a08541b-89f6-47cd-9173-c5d8927abea2)) + (pin "25" (uuid 78633e7f-3f0d-4050-b65f-0802370ad7d9)) + (pin "26" (uuid 9aa6ab95-1e79-493e-a9c7-d1979001e59b)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 295.91 326.39 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a0cd8717-5fc0-4a2f-a3ca-a91c4621b211) + (property "Reference" "R2" (id 0) (at 294.64 321.31 0)) + (property "Value" "1k" (id 1) (at 294.64 323.85 0)) + (property "Footprint" "" (id 2) (at 294.64 325.882 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 294.64 327.66 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid f5055bc7-76a8-4ec5-9248-f64b988b3afa)) + (pin "2" (uuid 095f5a81-51fe-4209-b992-26b8c17e8798)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 234.95 316.23 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1c98de7-f166-4eb0-830e-f2921e62bc0e) + (property "Reference" "Q12" (id 0) (at 229.87 314.9599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 229.87 317.4999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 229.87 318.77 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 234.95 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 412a8dda-d737-4c40-ab9b-d0a060468080)) + (pin "2" (uuid 95a4a79a-3fae-48c9-8756-46743396c49b)) + (pin "3" (uuid f517f73b-56fa-4120-a4c4-13bc757230ef)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 712.47 358.14 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1de77f8-5b06-4fbd-9e9e-2dfeed1aeab3) + (property "Reference" "R12" (id 0) (at 716.28 358.1399 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "3k" (id 1) (at 716.28 360.6799 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 711.962 359.41 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 713.74 359.41 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid aa68b07c-c7d9-4c4b-b577-706723bf1bef)) + (pin "2" (uuid afff241e-9a63-4c08-9c20-f64b81debe91)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 450.85 334.01 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a9e1cfc7-cc22-4bd0-a82b-000226d735c0) + (property "Reference" "Q28" (id 0) (at 445.77 332.7399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 445.77 335.2799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 445.77 336.55 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 450.85 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c7fe63ea-c513-4cb3-b35e-33dc8d5d0754)) + (pin "2" (uuid ef165646-3e15-464b-86fb-9656ca123349)) + (pin "3" (uuid 5bbf2a4e-b435-49b2-accd-1237aa6eaf3e)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 759.46 304.8 180) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ad8778ba-c691-48f3-90e3-f328f9c545df) + (property "Reference" "U1" (id 0) (at 763.27 304.165 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 763.27 306.705 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 759.46 304.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 759.46 304.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2d6f716e-6130-4167-83aa-30342fd7982a)) + (pin "2" (uuid 59bdeaf5-de8b-4a4e-a7c7-6105c245b550)) + (pin "3" (uuid da3977ad-14a7-4c95-85bc-12cf95b12882)) + (pin "4" (uuid 1a1aaaad-726c-4a40-aef3-c9e8b2533e56)) + (pin "5" (uuid e41e522b-ef24-47c8-b53d-a4c7a5f4ec86)) + (pin "6" (uuid c1f72c1d-dc1b-4e58-a068-da14f6513fd8)) + (pin "7" (uuid f6cc20dc-1da3-4f2e-ab55-731329d4b308)) + (pin "8" (uuid b25bc424-2cc7-4abb-8774-230c89cb179a)) + (pin "9" (uuid b60ed939-2ae4-45e9-9090-6ccc12cf17ee)) + (pin "10" (uuid 465c05ec-3a6b-4c5d-9370-0efc2acca72b)) + (pin "11" (uuid 683018b8-d22c-410e-b8ee-64494f5e7718)) + (pin "12" (uuid df9e756b-7893-4476-9cc5-ade3b2450980)) + (pin "13" (uuid 64c13ac6-9292-4b3e-a1c4-e0f6585d0cd0)) + (pin "14" (uuid b6ea21f0-c387-4dbc-bb37-ff689ddcc06b)) + (pin "15" (uuid af722807-031a-4c9a-a3b4-56bb67ee40aa)) + (pin "16" (uuid cff2afc7-86c6-4c19-a655-f9f2a728e792)) + (pin "17" (uuid eca7a493-accd-4823-b483-c9d978310d95)) + (pin "18" (uuid a9ebaa88-b686-4e99-adcb-5bfaaeb955bc)) + (pin "19" (uuid 610b9b16-2f6e-4381-84dc-f1e35915ad55)) + (pin "20" (uuid 3265b3cb-fb04-4010-8041-3915d73178a6)) + (pin "21" (uuid 8eef7616-2943-4b41-96ae-a2e062eecc29)) + (pin "22" (uuid c34e66cc-f25c-402b-888e-a3b4bb53d758)) + (pin "23" (uuid 455e6787-3af3-4940-aa1b-843c765c3fb4)) + (pin "24" (uuid 8e10930a-bed5-4823-af14-ee84f81978ed)) + (pin "25" (uuid 59965d35-4d9a-490e-94ea-a46ad409e786)) + (pin "26" (uuid 303a27e1-30cd-4cac-9d3c-f0e2036e7ae1)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 584.2 334.01 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ae6970a2-aaf2-4dc8-9a83-496ffcbae8b2) + (property "Reference" "Q40" (id 0) (at 589.28 332.7399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 589.28 335.2799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 589.28 336.55 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 584.2 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 87277fbd-e764-47c0-8351-48ac45fefbd8)) + (pin "2" (uuid 6734e42d-889b-4995-8227-e343aafc0b31)) + (pin "3" (uuid e9b4e679-09d8-489a-9e0d-df2cdd88b132)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 723.9 341.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b01c4799-2a1e-43db-a201-03e6db673521) + (property "Reference" "Q54" (id 0) (at 728.9381 340.3599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 728.9381 342.8999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 728.98 339.09 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 723.9 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c8652680-adc6-411c-9401-8a6a15dbccd0)) + (pin "2" (uuid 692df435-8212-4c5c-a525-cb441808da48)) + (pin "3" (uuid bb2eec06-de76-496d-9a06-1e996abcda27)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 299.72 290.83 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b55967c4-c16e-467d-8b4d-7cccd7619cc3) + (property "Reference" "Q17" (id 0) (at 304.8 289.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 304.8 292.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 304.8 288.29 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 299.72 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 33671b93-7c41-4a3a-8259-cf83676eb6c7)) + (pin "2" (uuid f6b28cf8-b46b-4a17-917a-b0973fd3d598)) + (pin "3" (uuid bf56bfb6-4ac7-44a9-9c2c-67a2dbb7c3a1)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 335.28 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b66cb40b-df83-47f8-b8ab-01172fab1570) + (property "Reference" "Q21" (id 0) (at 330.2 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 330.2 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 330.2 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 335.28 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid eb49dae8-0457-447f-ae8d-a9e07a7aa690)) + (pin "2" (uuid ec268723-6bee-49c6-99fc-b60c34526449)) + (pin "3" (uuid 8d89a922-64de-4da5-87ed-e2bdd374ba05)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 665.48 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b99460d6-1e05-4887-8e69-1fbf46ff5fe5) + (property "Reference" "Q48" (id 0) (at 660.4 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 660.4 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 660.4 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 665.48 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2a87027c-4c0f-439b-b46e-841fe3421db7)) + (pin "2" (uuid bfa96dfe-f26c-41ea-b432-74a0e625127f)) + (pin "3" (uuid a806324e-fb1c-491d-a972-ada247a3b434)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 330.2 295.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bcfaecbb-804f-49de-a833-7b5e5d23e192) + (property "Reference" "Q20" (id 0) (at 335.28 294.6399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 335.28 297.1799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 335.28 293.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 330.2 295.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6d6ba6bc-9dbd-4054-b744-3113f858887c)) + (pin "2" (uuid e46575b0-5468-4191-bc53-c31caef185d6)) + (pin "3" (uuid 709f8367-6020-4e21-9027-10b1a4d0856e)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 483.87 290.83 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c2fe5f8b-5a11-4307-8eb7-0b81f989e47c) + (property "Reference" "Q31" (id 0) (at 488.95 289.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 488.95 292.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 488.95 293.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 483.87 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 76222f30-0f13-45b8-b057-23dc82f7b73e)) + (pin "2" (uuid daf74e27-dcb6-4871-937e-eb710495f81b)) + (pin "3" (uuid 86223516-0259-405d-a1a1-f2e787a70e93)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 673.1 327.66 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c64f61b1-c60d-407f-bcc0-bc99ebe2c161) + (property "Reference" "Q49" (id 0) (at 678.18 326.3899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 678.18 328.9299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 678.18 325.12 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 673.1 327.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ffa19843-1012-49a0-82c5-c14b94d5c725)) + (pin "2" (uuid 73106374-928a-4d3f-bb89-7899ed80e887)) + (pin "3" (uuid 022fedae-98d1-494f-94be-17b11e28c402)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 660.4 295.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c72aeae6-e666-45e8-bb5c-b3e100134ead) + (property "Reference" "Q47" (id 0) (at 665.48 294.6399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 665.48 297.1799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 665.48 293.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 660.4 295.91 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid be7b9b5f-883e-42ce-831a-23a233c31d4e)) + (pin "2" (uuid a70bbf46-7bb8-4125-a0d2-28860b8a1814)) + (pin "3" (uuid e774209b-e1fb-4639-b3a8-5eeced875f3a)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 716.28 327.66 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid caa7ad27-e50a-4802-9510-59e6a96593c0) + (property "Reference" "Q53" (id 0) (at 711.2 326.3899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 711.2 328.9299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 711.2 325.12 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 716.28 327.66 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f306b191-cabd-4ce1-80f9-fd21e56fdb26)) + (pin "2" (uuid 84a3dca5-82e8-483b-8912-cf8404da590e)) + (pin "3" (uuid 69e403f3-cb49-4493-bbc0-18653205b8c1)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 393.7 341.63 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cd9528a7-c5b5-4716-9528-00eef15dd3cd) + (property "Reference" "Q27" (id 0) (at 398.7381 340.3599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 398.7381 342.8999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 398.78 339.09 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 393.7 341.63 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1aeb3152-889a-4e0e-9f30-a6fdc6e08409)) + (pin "2" (uuid 29b24d11-1b67-4e01-af49-399c84bc9e15)) + (pin "3" (uuid fc2c3a6a-6dd8-425d-b17d-e785801dc611)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 153.67 290.83 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid cdb5828c-f607-4279-8e46-5e32397f7016) + (property "Reference" "Q4" (id 0) (at 158.75 289.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 158.75 292.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 158.75 293.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 153.67 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 30cc8a5a-f4a8-41da-9451-7d299ccbbbe5)) + (pin "2" (uuid 36121ce5-fd03-431c-a28f-f5de28d05c6d)) + (pin "3" (uuid 1c49ebfa-62df-4132-99a8-876177bc9ac2)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 254 334.01 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ce1a5ed9-81ee-47af-87f3-6b405760cf97) + (property "Reference" "Q13" (id 0) (at 259.08 332.7399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 259.08 335.2799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 259.08 336.55 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 254 334.01 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 90651795-e173-4045-a986-9c5dbd98c553)) + (pin "2" (uuid a6923b5e-d59e-4295-9e03-2fe94859ec8f)) + (pin "3" (uuid 9b4288b1-8176-40d8-a977-281ce985413a)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 609.6 316.23 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ced0c841-67bf-473b-a0b4-91a269c2b2a5) + (property "Reference" "Q41" (id 0) (at 614.68 314.9599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 614.68 317.4999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 614.68 313.69 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 609.6 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d287d62d-0580-4f89-8e50-0b336fce2a46)) + (pin "2" (uuid 16bd8aea-6da7-4eec-80db-ac858c0a60f7)) + (pin "3" (uuid 7091ffc7-9da1-48ae-896b-f76d7e0f3cc0)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 427.99 304.8 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2becaaa-14fe-43fa-bf18-75b9c6c7a073) + (property "Reference" "U1" (id 0) (at 431.8 304.165 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 431.8 306.705 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 427.99 304.8 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 427.99 304.8 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b04e5e32-a8fc-4931-aa1c-2dda3b43d1b3)) + (pin "2" (uuid f5a5f32a-0021-4568-aa69-0fece5264c6f)) + (pin "3" (uuid 9d5d828d-8602-4b93-9ae1-2f4ed2f4eda5)) + (pin "4" (uuid cac9e6b5-be57-4247-a4ef-a7e27c673b3a)) + (pin "5" (uuid 32c72a69-31ac-49cf-aa55-f9103e6fa4c9)) + (pin "6" (uuid 5e38c3a6-9833-4ea2-93ae-97c4f3f81f46)) + (pin "7" (uuid d8355eeb-ba44-4d15-b6a6-ce3605494ebe)) + (pin "8" (uuid 1b9a91f3-ed9c-46a5-8a89-61a5710fe683)) + (pin "9" (uuid e63ce278-8c40-4347-983f-c78f49f4e54d)) + (pin "10" (uuid 061595ee-5968-4306-b3d8-c463bcaea473)) + (pin "11" (uuid 50ddf796-86eb-4c11-924f-be09566871fc)) + (pin "12" (uuid dccaec98-dceb-42d8-9422-a4e0f0f376d5)) + (pin "13" (uuid dd3b7d00-f434-4230-acbc-b5db96e510d8)) + (pin "14" (uuid 63d68f7b-c7e8-4836-877c-ca98fc5effa8)) + (pin "15" (uuid 60351e58-a4cb-47f6-a95e-047d0dbfff7a)) + (pin "16" (uuid 25985f7d-15dd-4a4a-8393-3ab88850f745)) + (pin "17" (uuid 088cab8a-f99c-46ae-824a-e680457a248b)) + (pin "18" (uuid f4ff3c5a-7c2e-4e0c-8a81-43e49c9c02ce)) + (pin "19" (uuid 7034f638-09d5-41ee-949c-89fd081d0568)) + (pin "20" (uuid 8c35f0bb-5e83-4278-86ac-5825f848b7b6)) + (pin "21" (uuid 516fdf3d-7b4c-4f9b-bef2-3c3b4672fb9d)) + (pin "22" (uuid b14f3a74-42b2-45d2-913e-884e20cd10b7)) + (pin "23" (uuid 47ebce99-cb21-4ce6-909d-8cf88e1e5f22)) + (pin "24" (uuid 58821a63-6475-4313-bf12-cbecba3967c2)) + (pin "25" (uuid 42ec3730-7061-4cff-910c-2b541ccdc05a)) + (pin "26" (uuid fcc5299a-8ca4-4b0f-8594-6d6f406fb67f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 158.75 349.25 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d3abbdbd-9f95-4947-928e-b13d55b6b77a) + (property "Reference" "Q5" (id 0) (at 153.67 347.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 153.67 350.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 153.67 346.71 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 158.75 349.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7431eb94-a4d1-43fe-97f3-59571f29bed5)) + (pin "2" (uuid 35b88c97-d77c-4fcc-b2f3-87f3099b89ea)) + (pin "3" (uuid 52daac88-ba99-42e1-9600-3e7e400ff76d)) + ) + + (symbol (lib_id "eSim_Devices:jfet_n") (at 728.98 320.04 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d5ab076f-19c2-4d7e-993d-0cfbc4066ef0) + (property "Reference" "J2" (id 0) (at 723.9 318.7699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "jfet_n" (id 1) (at 723.9 321.3099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 723.9 317.5 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 728.98 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 275fa87b-aba2-414e-aa53-6f4a075c0e99)) + (pin "2" (uuid bd0dbcb4-f5b6-4281-a010-6071408ca1a8)) + (pin "3" (uuid 80e2c9f0-0086-4ec6-bec1-1d49990ff45b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 317.5 340.36 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d6402c73-8f74-4b67-ae1c-a2e80c6b7227) + (property "Reference" "Q18" (id 0) (at 322.58 339.0899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 322.58 341.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 322.58 337.82 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 317.5 340.36 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5bf88fbc-9d71-452f-8864-395278078194)) + (pin "2" (uuid efee234a-62e7-4a52-9ece-fe4fb0ca0ed9)) + (pin "3" (uuid 041b93dc-6b21-4483-8364-5ee09fa4fb12)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 325.12 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d6ba3c58-95ef-437b-8be1-f937b6358ad9) + (property "Reference" "U1" (id 0) (at 100.965 320.04 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 322.58 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 325.12 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 325.12 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 534dc828-6171-4922-ab7d-1f896a1ef192)) + (pin "2" (uuid 65ed0a54-061e-4669-a51f-34b9ef2fdfce)) + (pin "3" (uuid 035b0dce-29da-4849-8c07-e27cceda90a3)) + (pin "4" (uuid 9b5b59b6-eaad-4568-87b4-1333ffabbce4)) + (pin "5" (uuid 3c5b96ba-efd8-4529-b92a-505e2b1c7f4f)) + (pin "6" (uuid 6b9ee754-e45f-4412-8fd6-a162bb80a8f9)) + (pin "7" (uuid 295e7862-1185-4092-8e51-3d2fd4ffc2b9)) + (pin "8" (uuid 21a5a6ea-bc7d-4c11-bcaf-ebc698dddef6)) + (pin "9" (uuid 17a28c6a-b507-4862-8bbf-99a15a12e411)) + (pin "10" (uuid 5dcaf68b-5396-496b-8cb7-fe70135ebea7)) + (pin "11" (uuid 4a23dbce-d1e8-4fac-8c21-011f4f99bf0a)) + (pin "12" (uuid bd9df35a-04f1-46ae-a226-8046bbe4641c)) + (pin "13" (uuid 8fbb8a64-b3c3-4aae-ab37-9f0450922e3f)) + (pin "14" (uuid fdfa13e9-9d51-447d-beeb-c8ecd11bd1aa)) + (pin "15" (uuid 027d1a3a-0613-4bd5-aeda-debcbe740002)) + (pin "16" (uuid 16410d2d-dae5-4fbe-b5d4-e7d7ba54d7a0)) + (pin "17" (uuid afa198ab-d273-4a56-9130-f25833da74b6)) + (pin "18" (uuid f0afeac0-20e4-4109-908c-ecaa40f574bb)) + (pin "19" (uuid 86b577f0-b1b3-4fd3-94a5-4b50e2a909d6)) + (pin "20" (uuid 8897b927-f9b7-479d-a523-f15de9b89d77)) + (pin "21" (uuid 688e803b-f3a7-4d7a-94dd-2d85b450f6f3)) + (pin "22" (uuid 165c6f2f-875d-4b3f-8dfb-fb92e91fecf2)) + (pin "23" (uuid 34c8b379-cf8e-4bb9-b4d1-a92e663c0625)) + (pin "24" (uuid aecdf290-e9ef-4ae4-aa89-6032cdb84204)) + (pin "25" (uuid 575cc6d4-6fcc-4c6d-96c5-7c58515bf112)) + (pin "26" (uuid 901e1083-adc4-4222-a8a6-0365583eddb6)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 488.95 349.25 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e079336c-1ebd-4757-afa2-a07d52a4bee5) + (property "Reference" "Q32" (id 0) (at 483.87 347.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 483.87 350.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 483.87 346.71 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 488.95 349.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7fdaafa3-b241-40fc-9e71-bb0b159c780a)) + (pin "2" (uuid cb818c5f-c5ba-4482-b71a-aaccecaeb301)) + (pin "3" (uuid 2830810f-1bda-414f-b3eb-c3f8fa3bd473)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 284.48 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5a163c9-c5ea-44ee-bd47-223375ea5db1) + (property "Reference" "Q15" (id 0) (at 279.4 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 279.4 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 279.4 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 284.48 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 9fd786c0-8109-403b-946a-8795d26abc1f)) + (pin "2" (uuid 89c5a673-292a-42ce-b8d2-4b8528a27973)) + (pin "3" (uuid b101ef42-334b-4b65-8645-86124f11f1ba)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 539.75 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9003cb2-26ba-4757-927f-774a64a8c749) + (property "Reference" "Q34" (id 0) (at 534.67 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 534.67 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 534.67 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 539.75 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4f83227d-631a-41d4-8bbe-dae7a8cee9ef)) + (pin "2" (uuid 85a49f7e-0340-414f-b8aa-06ece9e882e0)) + (pin "3" (uuid 13ffc5db-3af7-407e-b38e-0c24b85e536d)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 534.67 349.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea1ff4e8-1df6-4dd2-bd8f-6f7d772b5870) + (property "Reference" "Q33" (id 0) (at 539.75 347.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 539.75 350.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 539.75 346.71 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 534.67 349.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 81143e5c-5b12-4a9a-ad57-c566173099e2)) + (pin "2" (uuid cc8f0d5d-1869-411f-b73f-d6f79604d469)) + (pin "3" (uuid 0599df72-e38a-475b-95f2-eba5f754a83b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 685.8 276.86 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ead95ebb-6a0c-4f66-b4f6-83f14ece5029) + (property "Reference" "Q50" (id 0) (at 690.88 275.5899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 690.88 278.1299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 690.88 274.32 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 685.8 276.86 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 811daaaa-9b80-4a13-a27d-9d81455f3ab1)) + (pin "2" (uuid 6d40e951-fedb-4336-bc6c-16c144cab8d1)) + (pin "3" (uuid 39d3ff0b-1caa-446e-b35e-6109932d611e)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 204.47 349.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ecea6ae7-f991-4931-8abc-bc4fdfe1f795) + (property "Reference" "Q6" (id 0) (at 209.55 347.9799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 209.55 350.5199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 209.55 346.71 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 204.47 349.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 530098c2-a71e-4bd4-8d1f-c4aaa957113a)) + (pin "2" (uuid d346961a-1be7-455a-8565-cbd058eea8c4)) + (pin "3" (uuid b20e95a0-b464-483b-bbc1-85c5a3ea970b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 209.55 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ee081367-da92-4529-b2da-abf777a8016c) + (property "Reference" "Q7" (id 0) (at 204.47 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 204.47 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 204.47 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 209.55 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 70dd11e6-c4f3-4841-9045-3bc1c7810901)) + (pin "2" (uuid c8d50393-4459-4456-b2f1-4e42509da42c)) + (pin "3" (uuid 9491711e-1fb7-40df-a08e-22808fecebc1)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 219.71 290.83 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ee0c7e0c-b6d3-455b-a539-1e7c32a99acf) + (property "Reference" "Q9" (id 0) (at 214.63 289.5599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 214.63 292.0999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 214.63 293.37 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 219.71 290.83 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c5823c0a-79a9-44ba-8fd4-54aefb327bde)) + (pin "2" (uuid 2b68317d-b9b9-4c64-a552-8911b063dcb9)) + (pin "3" (uuid e19df80a-0e16-42b1-804b-e72d3846011e)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 648.97 304.8 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f0d3a585-d990-4ced-a2a3-33c6d3cb3699) + (property "Reference" "R10" (id 0) (at 652.78 304.7999 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "50k" (id 1) (at 652.78 307.3399 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 648.462 306.07 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 650.24 306.07 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid f619b4de-bb1d-4e93-bf17-b33f684ed003)) + (pin "2" (uuid 0c27f341-5958-41da-8abb-e2b78fc2907a)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 652.78 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f5a3152a-d5df-4279-a213-7d57399fb530) + (property "Reference" "Q46" (id 0) (at 647.7 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 647.7 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 647.7 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 652.78 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid aeb9bfc0-08ca-4ad9-bbcf-3755fb9e0fa0)) + (pin "2" (uuid d0373a0c-bb3f-47ff-8be5-78a663ca60c5)) + (pin "3" (uuid 8b3380b0-5f46-4687-9a4e-546ef4047344)) + ) + + (symbol (lib_id "eSim_Analog:zener") (at 269.24 302.26 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f95860f9-fe84-4d22-9164-11991b54a06d) + (property "Reference" "U2" (id 0) (at 273.05 299.085 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "zener" (id 1) (at 273.05 302.895 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 269.24 300.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 269.24 300.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "IN" (uuid 82b939dd-5d24-48ff-b58b-f24c0d108b84)) + (pin "OUT" (uuid 8ab4a0ab-c156-4167-b138-fbf0f6850880)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 322.58 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fbfae699-ad3f-4f6f-9832-d331cd1fbe5a) + (property "Reference" "Q19" (id 0) (at 317.5 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 317.5 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 317.5 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 322.58 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 830619aa-288f-44a3-9c9d-bb8c3660c3c6)) + (pin "2" (uuid 1935b018-0a8c-4188-a3dd-e299f2d0a0a0)) + (pin "3" (uuid 73c3d59d-95d6-44e4-9829-4b142c2c5334)) + ) + + (symbol (lib_id "eSim_Analog:zener") (at 599.44 302.26 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fc2342c4-6c82-438c-94fd-285f20e7402b) + (property "Reference" "U3" (id 0) (at 603.25 299.085 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "zener" (id 1) (at 603.25 302.895 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 599.44 300.99 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 599.44 300.99 0) + (effects (font (size 1.524 1.524))) + ) + (pin "IN" (uuid 78b85517-1094-42ea-a4ac-a9dfe4db7746)) + (pin "OUT" (uuid 1d06eb16-6821-49a6-9fc2-b3f202da2511)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 297.18 257.81 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fc7176b8-ea74-4ca5-ba54-c97a49f11ffb) + (property "Reference" "Q16" (id 0) (at 292.1 256.5399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 292.1 259.0799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 292.1 260.35 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 297.18 257.81 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 39f5e613-f104-4c2f-af74-224030eba017)) + (pin "2" (uuid 0c25abe7-7934-4e54-a58c-1a7e442813af)) + (pin "3" (uuid 6058ba4c-b75d-4100-ac14-b20b9071d0ed)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 466.09 316.23 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fdb1c080-6778-4934-b41b-6a56fca9b4bb) + (property "Reference" "Q29" (id 0) (at 471.17 314.9599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 471.17 317.4999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 471.17 318.77 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 466.09 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1030acc9-41cb-4e7f-bd6d-d907377b11a5)) + (pin "2" (uuid 8436c3de-2e0e-4dad-be79-b110a80b521c)) + (pin "3" (uuid 9f97fba6-01b0-4bb2-951b-48e0d6076be6)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 100.33 316.23 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ff8ee528-f05f-4905-8805-5e7dff9cea08) + (property "Reference" "U1" (id 0) (at 100.965 311.15 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 100.965 313.69 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 100.33 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 100.33 316.23 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 5cf689ed-ef3c-4580-8081-3075aa413a4d)) + (pin "2" (uuid edb452eb-4f44-431a-9466-6b1c69579a39)) + (pin "3" (uuid d524769d-d95c-4609-8068-1646206999b0)) + (pin "4" (uuid c52013dc-cf66-4139-b938-d0236aa56aa8)) + (pin "5" (uuid cac5f578-1b6a-4e75-8c75-672b802f42ff)) + (pin "6" (uuid 81a987c6-fbe7-49a5-b21b-83532429e618)) + (pin "7" (uuid 4c1b9cab-df85-415a-9a03-bc7e86a6d7db)) + (pin "8" (uuid 3c06fd8e-6bb1-4597-883b-fc9d69d483d5)) + (pin "9" (uuid dbd597fe-41a3-4738-a182-0d4839d5de8a)) + (pin "10" (uuid 5c1d0851-949d-4a48-b14e-78ff9bc69cba)) + (pin "11" (uuid 4350b237-1a29-44be-a8ff-24aaca802dd8)) + (pin "12" (uuid cdc5caae-c553-4f35-934a-dc5c6940d202)) + (pin "13" (uuid a8d070a0-7017-47ef-a52f-fd2ab554da52)) + (pin "14" (uuid 314910f7-a53b-4f7e-8f86-12abcbfcaa46)) + (pin "15" (uuid ad8d3f53-15a3-4eb3-84f7-3c578c8b4d85)) + (pin "16" (uuid f680bd0d-4028-4034-b68b-912e64191af6)) + (pin "17" (uuid 2e0515ef-590d-43e2-b1cf-75d65a74f044)) + (pin "18" (uuid 10288f0a-17df-4b14-8335-b829d9a6f37d)) + (pin "19" (uuid 79ef3cc7-d51a-4206-9632-9c43d1870ad8)) + (pin "20" (uuid 7ae69658-c80e-499d-a838-f58fbe2b99fb)) + (pin "21" (uuid 96ba8bdf-5f58-4dcf-b542-1a714b82b60e)) + (pin "22" (uuid 476b180e-c431-446d-a3d8-9fa1f010bfbd)) + (pin "23" (uuid 751888d7-95d9-4cb0-a673-f97dde2ec135)) + (pin "24" (uuid 0e0d10d2-e5a0-48b1-b152-bcda950aa665)) + (pin "25" (uuid f7244a21-1abc-45bc-8c60-83e776c70209)) + (pin "26" (uuid 095c59fc-0269-4975-b45c-f2a63f694676)) + ) + + (symbol (lib_id "eSim_Devices:jfet_n") (at 398.78 320.04 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ffad7bc8-ef99-43a6-a608-8401a0873bf4) + (property "Reference" "J1" (id 0) (at 393.7 318.7699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "jfet_n" (id 1) (at 393.7 321.3099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 393.7 317.5 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 398.78 320.04 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c7c5c2e9-426a-494c-b797-51d3ee4fc9f3)) + (pin "2" (uuid e7417e97-43f6-4310-967d-359f1a8876eb)) + (pin "3" (uuid b9606eee-0423-4a60-8659-34a95898aa27)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/4b9e43c9-8bd3-4e76-989b-04d58d728ceb" + (reference "C1") (unit 1) (value "5p") (footprint "") + ) + (path "/69403372-e6ef-4bb2-b298-52fbc7ea4a45" + (reference "C2") (unit 1) (value "5p") (footprint "") + ) + (path "/ffad7bc8-ef99-43a6-a608-8401a0873bf4" + (reference "J1") (unit 1) (value "jfet_n") (footprint "") + ) + (path "/d5ab076f-19c2-4d7e-993d-0cfbc4066ef0" + (reference "J2") (unit 1) (value "jfet_n") (footprint "") + ) + (path "/21183d0a-874a-4d44-b2b3-c8393a36355b" + (reference "Q1") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/8f9ac928-9258-485e-b828-628783893cfc" + (reference "Q2") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/32340d39-afc9-4406-b52f-4758d9e3d0a4" + (reference "Q3") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/cdb5828c-f607-4279-8e46-5e32397f7016" + (reference "Q4") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/d3abbdbd-9f95-4947-928e-b13d55b6b77a" + (reference "Q5") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/ecea6ae7-f991-4931-8abc-bc4fdfe1f795" + (reference "Q6") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/ee081367-da92-4529-b2da-abf777a8016c" + (reference "Q7") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/1bbd26ac-f514-4a79-98c7-41a09f31d12a" + (reference "Q8") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/ee0c7e0c-b6d3-455b-a539-1e7c32a99acf" + (reference "Q9") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/22575c83-6f62-40f1-8ada-743970dfefe6" + (reference "Q10") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/26f7bc34-eeef-45ee-9149-e00115bcb6eb" + (reference "Q11") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/a1c98de7-f166-4eb0-830e-f2921e62bc0e" + (reference "Q12") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/ce1a5ed9-81ee-47af-87f3-6b405760cf97" + (reference "Q13") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/09443963-5e45-4729-9cf3-ecf111f4c026" + (reference "Q14") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/e5a163c9-c5ea-44ee-bd47-223375ea5db1" + (reference "Q15") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/fc7176b8-ea74-4ca5-ba54-c97a49f11ffb" + (reference "Q16") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/b55967c4-c16e-467d-8b4d-7cccd7619cc3" + (reference "Q17") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/d6402c73-8f74-4b67-ae1c-a2e80c6b7227" + (reference "Q18") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/fbfae699-ad3f-4f6f-9832-d331cd1fbe5a" + (reference "Q19") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/bcfaecbb-804f-49de-a833-7b5e5d23e192" + (reference "Q20") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b66cb40b-df83-47f8-b8ab-01172fab1570" + (reference "Q21") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/1cf2f294-1cbd-414b-bf97-0546dc810606" + (reference "Q22") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/51ec6845-6438-4df8-a1b2-8fa45ca8df2c" + (reference "Q23") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/0a988582-fc3b-4c6e-9d80-7d76d6da59f7" + (reference "Q24") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/32ce6fc8-b02b-4b59-a852-15b24f80dbc9" + (reference "Q25") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/689c082b-a664-44ab-aa91-1490833e1a80" + (reference "Q26") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/cd9528a7-c5b5-4716-9528-00eef15dd3cd" + (reference "Q27") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/a9e1cfc7-cc22-4bd0-a82b-000226d735c0" + (reference "Q28") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/fdb1c080-6778-4934-b41b-6a56fca9b4bb" + (reference "Q29") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/0f65bc66-bedb-4abb-94a2-40cc59949f20" + (reference "Q30") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/c2fe5f8b-5a11-4307-8eb7-0b81f989e47c" + (reference "Q31") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/e079336c-1ebd-4757-afa2-a07d52a4bee5" + (reference "Q32") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/ea1ff4e8-1df6-4dd2-bd8f-6f7d772b5870" + (reference "Q33") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/e9003cb2-26ba-4757-927f-774a64a8c749" + (reference "Q34") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/2aa57b54-04f0-4fef-9baf-6a859f984ee6" + (reference "Q35") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/6a99f0c4-fec2-4cd0-8733-e60a1bb5ffeb" + (reference "Q36") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/0bde881f-0623-4979-91e1-ae5dd1a76ae2" + (reference "Q37") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/0afa8aff-36b4-4256-aca0-8ba819ffb678" + (reference "Q38") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/8bd0d879-b699-436a-80bf-b7907eb552ad" + (reference "Q39") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/ae6970a2-aaf2-4dc8-9a83-496ffcbae8b2" + (reference "Q40") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/ced0c841-67bf-473b-a0b4-91a269c2b2a5" + (reference "Q41") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/6918fc14-b8dd-4806-aab8-150eab184d6f" + (reference "Q42") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/9219b170-81c5-4e7f-88bd-41bbf8af6236" + (reference "Q43") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/59066b68-5588-465f-bb27-5dc5d06561b4" + (reference "Q44") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/2632f8f3-49fe-48f9-9cfa-93b42be2dfe9" + (reference "Q45") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/f5a3152a-d5df-4279-a213-7d57399fb530" + (reference "Q46") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/c72aeae6-e666-45e8-bb5c-b3e100134ead" + (reference "Q47") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b99460d6-1e05-4887-8e69-1fbf46ff5fe5" + (reference "Q48") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/c64f61b1-c60d-407f-bcc0-bc99ebe2c161" + (reference "Q49") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/ead95ebb-6a0c-4f66-b4f6-83f14ece5029" + (reference "Q50") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/7af8125a-f23c-47a5-9d4b-e9bf579b573f" + (reference "Q51") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/1d8eb86c-2784-498b-8d35-29c66eaf98a9" + (reference "Q52") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/caa7ad27-e50a-4802-9510-59e6a96593c0" + (reference "Q53") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b01c4799-2a1e-43db-a201-03e6db673521" + (reference "Q54") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/0f29f037-185e-4966-8c54-5da71327e6e0" + (reference "R1") (unit 1) (value "1k") (footprint "") + ) + (path "/a0cd8717-5fc0-4a2f-a3ca-a91c4621b211" + (reference "R2") (unit 1) (value "1k") (footprint "") + ) + (path "/6d173912-f043-49d0-b628-e10e6f50f68e" + (reference "R3") (unit 1) (value "1k") (footprint "") + ) + (path "/817ef6b6-ce1a-4841-9e15-e8741bf6f0d9" + (reference "R4") (unit 1) (value "50k") (footprint "") + ) + (path "/423342f8-a3e1-4a98-a0be-a514ea00487f" + (reference "R5") (unit 1) (value "20") (footprint "") + ) + (path "/0193591c-f64a-45ab-9798-c3ca4065955e" + (reference "R6") (unit 1) (value "3k") (footprint "") + ) + (path "/87fbaab0-e7bc-4229-a6a3-3ebc65dec4ee" + (reference "R7") (unit 1) (value "1k") (footprint "") + ) + (path "/80d7e738-4d5c-4fc5-a580-ab7b6c39b89b" + (reference "R8") (unit 1) (value "1k") (footprint "") + ) + (path "/37c3900a-693a-43fa-851d-b2757a3f85bd" + (reference "R9") (unit 1) (value "1k") (footprint "") + ) + (path "/f0d3a585-d990-4ced-a2a3-33c6d3cb3699" + (reference "R10") (unit 1) (value "50k") (footprint "") + ) + (path "/4a744212-c656-4d4f-9676-ad0d8ed2718f" + (reference "R11") (unit 1) (value "20") (footprint "") + ) + (path "/a1de77f8-5b06-4fbd-9e9e-2dfeed1aeab3" + (reference "R12") (unit 1) (value "3k") (footprint "") + ) + (path "/d2becaaa-14fe-43fa-bf18-75b9c6c7a073" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/ff8ee528-f05f-4905-8805-5e7dff9cea08" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/d6ba3c58-95ef-437b-8be1-f937b6358ad9" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/9f27a8ac-0540-4aa2-bfec-de53a746b6e0" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/511c3c1e-0e3f-4e1a-a36c-bc9c64f06d40" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/0a1f671a-5f63-45d6-849a-6d270e79634b" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/ad8778ba-c691-48f3-90e3-f328f9c545df" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/5f7889a6-7257-45a2-8fd1-3e6e3a52ad65" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/f95860f9-fe84-4d22-9164-11991b54a06d" + (reference "U2") (unit 1) (value "zener") (footprint "") + ) + (path "/fc2342c4-6c82-438c-94fd-285f20e7402b" + (reference "U3") (unit 1) (value "zener") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/uA798/uA798.sub b/library/SubcircuitLibrary/uA798/uA798.sub new file mode 100644 index 000000000..555dc66a8 --- /dev/null +++ b/library/SubcircuitLibrary/uA798/uA798.sub @@ -0,0 +1,87 @@ +* Subcircuit uA798 +.subckt uA798 net-_q24-pad3_ net-_q2-pad2_ net-_q12-pad2_ net-_j1-pad2_ net-_q39-pad2_ net-_q29-pad2_ net-_q51-pad3_ net-_j1-pad1_ +.title kicad schematic +.include NJF.lib +.include PNP.lib +.include NPN.lib +q38 net-_q38-pad1_ net-_q34-pad2_ net-_q34-pad3_ Q2N2907A +q39 net-_j1-pad2_ net-_q39-pad2_ net-_q35-pad2_ Q2N2907A +q50 net-_j1-pad1_ net-_c2-pad1_ net-_q50-pad3_ Q2N2222 +q52 net-_c2-pad1_ net-_q50-pad3_ net-_q51-pad3_ Q2N2222 +q47 net-_c2-pad1_ net-_q44-pad3_ net-_q45-pad1_ Q2N2222 +q48 net-_q34-pad2_ net-_q34-pad2_ net-_j1-pad1_ Q2N2907A +r11 net-_q50-pad3_ net-_q51-pad3_ 20 +q51 net-_j1-pad2_ net-_q45-pad1_ net-_q51-pad3_ Q2N2907A +r9 net-_q45-pad2_ net-_q41-pad3_ 1k +q45 net-_q45-pad1_ net-_q45-pad2_ net-_j1-pad2_ Q2N2222 +q44 net-_c2-pad1_ net-_c2-pad1_ net-_q44-pad3_ Q2N2222 +r10 net-_q44-pad3_ net-_q45-pad1_ 50k +r8 net-_q49-pad2_ net-_q41-pad3_ 1k +q41 net-_q41-pad1_ net-_q38-pad1_ net-_q41-pad3_ Q2N2222 +q40 net-_j1-pad2_ net-_c2-pad2_ net-_q38-pad1_ Q2N2907A +c2 net-_c2-pad1_ net-_c2-pad2_ 5p +* u3 net-_j1-pad2_ net-_q41-pad1_ zener +q42 net-_q41-pad1_ net-_q34-pad2_ net-_j1-pad1_ Q2N2907A +q43 net-_c2-pad1_ net-_q34-pad2_ net-_j1-pad1_ Q2N2907A +q46 net-_c2-pad1_ net-_q34-pad2_ net-_j1-pad1_ Q2N2907A +q49 net-_c2-pad1_ net-_q49-pad2_ net-_j1-pad2_ Q2N2222 +r12 net-_q53-pad3_ net-_j1-pad2_ 3k +j2 net-_j1-pad1_ net-_j1-pad2_ net-_j2-pad3_ J2N3819 +q53 net-_q34-pad2_ net-_j2-pad3_ net-_q53-pad3_ Q2N2222 +q54 net-_j2-pad3_ net-_q53-pad3_ net-_j1-pad2_ Q2N2222 +q7 net-_q1-pad3_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +r1 net-_q10-pad3_ net-_j1-pad1_ 1k +q4 net-_q1-pad2_ net-_q2-pad3_ net-_q10-pad1_ Q2N2907A +q3 net-_q2-pad3_ net-_q2-pad3_ net-_q10-pad1_ Q2N2907A +q8 net-_c1-pad2_ net-_q12-pad3_ net-_q10-pad1_ Q2N2907A +q9 net-_q12-pad3_ net-_q12-pad3_ net-_q10-pad1_ Q2N2907A +q13 net-_j1-pad2_ net-_c1-pad2_ net-_q11-pad1_ Q2N2907A +q6 net-_c1-pad2_ net-_q1-pad2_ net-_j1-pad2_ Q2N2222 +q12 net-_j1-pad2_ net-_q12-pad2_ net-_q12-pad3_ Q2N2907A +c1 net-_c1-pad1_ net-_c1-pad2_ 5p +q16 net-_c1-pad1_ net-_q10-pad2_ net-_j1-pad1_ Q2N2907A +q19 net-_c1-pad1_ net-_q10-pad2_ net-_j1-pad1_ Q2N2907A +q21 net-_q10-pad2_ net-_q10-pad2_ net-_j1-pad1_ Q2N2907A +q17 net-_c1-pad1_ net-_c1-pad1_ net-_q17-pad3_ Q2N2222 +q20 net-_c1-pad1_ net-_q17-pad3_ net-_q18-pad1_ Q2N2222 +q5 net-_q1-pad2_ net-_q1-pad2_ net-_j1-pad2_ Q2N2222 +q1 net-_j1-pad2_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q2 net-_j1-pad2_ net-_q2-pad2_ net-_q2-pad3_ Q2N2907A +q15 net-_q14-pad1_ net-_q10-pad2_ net-_j1-pad1_ Q2N2907A +q10 net-_q10-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +q11 net-_q11-pad1_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +* u2 net-_j1-pad2_ net-_q14-pad1_ zener +q14 net-_q14-pad1_ net-_q11-pad1_ net-_q14-pad3_ Q2N2222 +r3 net-_q18-pad2_ net-_q14-pad3_ 1k +r2 net-_q22-pad2_ net-_q14-pad3_ 1k +q18 net-_q18-pad1_ net-_q18-pad2_ net-_j1-pad2_ Q2N2222 +r4 net-_q17-pad3_ net-_q18-pad1_ 50k +q22 net-_c1-pad1_ net-_q22-pad2_ net-_j1-pad2_ Q2N2222 +r5 net-_q23-pad3_ net-_q24-pad3_ 20 +q23 net-_j1-pad1_ net-_c1-pad1_ net-_q23-pad3_ Q2N2222 +q29 net-_j1-pad2_ net-_q29-pad2_ net-_q29-pad3_ Q2N2907A +q25 net-_c1-pad1_ net-_q23-pad3_ net-_q24-pad3_ Q2N2222 +q24 net-_j1-pad2_ net-_q18-pad1_ net-_q24-pad3_ Q2N2907A +j1 net-_j1-pad1_ net-_j1-pad2_ net-_j1-pad3_ J2N3819 +q26 net-_q10-pad2_ net-_j1-pad3_ net-_q26-pad3_ Q2N2222 +r6 net-_q26-pad3_ net-_j1-pad2_ 3k +q28 net-_j1-pad2_ net-_q28-pad2_ net-_q28-pad3_ Q2N2907A +q27 net-_j1-pad3_ net-_q26-pad3_ net-_j1-pad2_ Q2N2222 +q37 net-_q30-pad3_ net-_q34-pad2_ net-_q34-pad3_ Q2N2907A +r7 net-_q34-pad3_ net-_j1-pad1_ 1k +q34 net-_q28-pad3_ net-_q34-pad2_ net-_q34-pad3_ Q2N2907A +q32 net-_q28-pad2_ net-_q28-pad2_ net-_j1-pad2_ Q2N2222 +q36 net-_q35-pad2_ net-_q35-pad2_ net-_q30-pad3_ Q2N2907A +q30 net-_q29-pad3_ net-_q29-pad3_ net-_q30-pad3_ Q2N2907A +q31 net-_q28-pad2_ net-_q29-pad3_ net-_q30-pad3_ Q2N2907A +q35 net-_c2-pad2_ net-_q35-pad2_ net-_q30-pad3_ Q2N2907A +q33 net-_c2-pad2_ net-_q28-pad2_ net-_j1-pad2_ Q2N2222 +a1 net-_j1-pad2_ net-_q41-pad1_ u3 +a2 net-_j1-pad2_ net-_q14-pad1_ u2 +* Schematic Name: zener, Ngspice Name: zener +.model u3 zener(v_breakdown=5.6 i_breakdown=2.0e-2 i_sat=1.0e-12 n_forward=1.0 limit_switch=FALSE ) +* Schematic Name: zener, Ngspice Name: zener +.model u2 zener(v_breakdown=5.6 i_breakdown=2.0e-2 i_sat=1.0e-12 n_forward=1.0 limit_switch=FALSE ) +* Control Statements + +.ends uA798 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA798/uA798_Previous_Values.xml b/library/SubcircuitLibrary/uA798/uA798_Previous_Values.xml new file mode 100644 index 000000000..8275ee256 --- /dev/null +++ b/library/SubcircuitLibrary/uA798/uA798_Previous_Values.xml @@ -0,0 +1 @@ +zenerzenerD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\JFET\NJF.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\JFET\NJF.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libtruefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperessecsecsec \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA799/NJF.lib b/library/SubcircuitLibrary/uA799/NJF.lib new file mode 100644 index 000000000..dbb2cbae5 --- /dev/null +++ b/library/SubcircuitLibrary/uA799/NJF.lib @@ -0,0 +1,4 @@ +.model J2N3819 NJF(Beta=1.304m Betatce=-.5 Rd=1 Rs=1 Lambda=2.25m Vto=-3 ++ Vtotc=-2.5m Is=33.57f Isr=322.4f N=1 Nr=2 Xti=3 Alpha=311.7u ++ Vk=243.6 Cgd=1.6p M=.3622 Pb=1 Fc=.5 Cgs=2.414p Kf=9.882E-18 ++ Af=1) diff --git a/library/SubcircuitLibrary/uA799/NPN.lib b/library/SubcircuitLibrary/uA799/NPN.lib new file mode 100644 index 000000000..be5f3073a --- /dev/null +++ b/library/SubcircuitLibrary/uA799/NPN.lib @@ -0,0 +1,4 @@ +.model Q2N2222 NPN( Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=400 Ne=1.307 ++ Ise=14.34f Ikf=0.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=7.306p ++ Mjc=0.3416 Vjc=0.75 Fc=0.5 Cje=22.01p Mje=0.377 Vje=0.75 Tr=46.91n Tf=411.1p ++ Itf=0.6 Vtf=1.7 Xtf=3 Rb=10) diff --git a/library/SubcircuitLibrary/uA799/PNP.lib b/library/SubcircuitLibrary/uA799/PNP.lib new file mode 100644 index 000000000..7edda0eab --- /dev/null +++ b/library/SubcircuitLibrary/uA799/PNP.lib @@ -0,0 +1,4 @@ +.model Q2N2907A PNP(Is=650.6E-18 Xti=3 Eg=1.11 Vaf=115.7 Bf=231.7 Ne=1.829 ++ Ise=54.81f Ikf=1.079 Xtb=1.5 Br=3.563 Nc=2 Isc=0 Ikr=0 Rc=.715 ++ Cjc=14.76p Mjc=.5383 Vjc=.75 Fc=.5 Cje=19.82p Mje=.3357 Vje=.75 ++ Tr=111.3n Tf=603.7p Itf=.65 Vtf=5 Xtf=1.7 Rb=10) diff --git a/library/SubcircuitLibrary/uA799/analysis b/library/SubcircuitLibrary/uA799/analysis new file mode 100644 index 000000000..ebd5c0a94 --- /dev/null +++ b/library/SubcircuitLibrary/uA799/analysis @@ -0,0 +1 @@ +.tran 0e-00 0e-00 0e-00 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA799/uA799.cir b/library/SubcircuitLibrary/uA799/uA799.cir new file mode 100644 index 000000000..28a28ca31 --- /dev/null +++ b/library/SubcircuitLibrary/uA799/uA799.cir @@ -0,0 +1,41 @@ +.title KiCad schematic +Q6 Net-_Q1-Pad2_ Net-_Q1-Pad2_ Net-_J1-Pad2_ eSim_NPN +Q8 Net-_C1-Pad2_ Net-_Q1-Pad2_ Net-_Q8-Pad3_ eSim_NPN +Q7 Net-_C1-Pad2_ Net-_Q1-Pad2_ Net-_J1-Pad2_ eSim_NPN +U1 Net-_Q5-Pad3_ Net-_Q2-Pad2_ Net-_Q14-Pad2_ Net-_J1-Pad2_ Net-_Q8-Pad3_ Net-_Q26-Pad3_ Net-_J1-Pad1_ unconnected-_U1-Pad8_ PORT +Q14 Net-_J1-Pad2_ Net-_Q14-Pad2_ Net-_Q10-Pad2_ eSim_PNP +Q15 Net-_J1-Pad2_ Net-_C1-Pad2_ Net-_Q13-Pad1_ eSim_PNP +Q17 Net-_Q16-Pad1_ Net-_Q12-Pad2_ Net-_J1-Pad1_ eSim_PNP +Q1 Net-_J1-Pad2_ Net-_Q1-Pad2_ Net-_Q1-Pad3_ eSim_PNP +Q5 Net-_Q1-Pad2_ Net-_Q1-Pad2_ Net-_Q5-Pad3_ eSim_NPN +Q2 Net-_J1-Pad2_ Net-_Q2-Pad2_ Net-_Q2-Pad3_ eSim_PNP +Q4 Net-_Q1-Pad2_ Net-_Q2-Pad3_ Net-_Q10-Pad3_ eSim_PNP +Q3 Net-_Q2-Pad3_ Net-_Q2-Pad3_ Net-_Q10-Pad3_ eSim_PNP +Q13 Net-_Q13-Pad1_ Net-_Q12-Pad2_ Net-_Q12-Pad3_ eSim_PNP +Q12 Net-_Q10-Pad3_ Net-_Q12-Pad2_ Net-_Q12-Pad3_ eSim_PNP +Q9 Net-_Q1-Pad3_ Net-_Q12-Pad2_ Net-_Q12-Pad3_ eSim_PNP +Q10 Net-_C1-Pad2_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_PNP +Q11 Net-_Q10-Pad2_ Net-_Q10-Pad2_ Net-_Q10-Pad3_ eSim_PNP +R1 Net-_Q12-Pad3_ Net-_J1-Pad1_ 1k +U2 Net-_J1-Pad2_ Net-_Q16-Pad1_ zener +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 5p +J1 Net-_J1-Pad1_ Net-_J1-Pad2_ Net-_J1-Pad3_ jfet_n +Q28 Net-_Q12-Pad2_ Net-_J1-Pad3_ Net-_Q28-Pad3_ eSim_NPN +Q29 Net-_J1-Pad3_ Net-_Q28-Pad3_ Net-_J1-Pad2_ eSim_NPN +R6 Net-_Q28-Pad3_ Net-_J1-Pad2_ 3k +Q20 Net-_Q20-Pad1_ Net-_Q20-Pad2_ Net-_J1-Pad2_ eSim_NPN +Q24 Net-_C1-Pad1_ Net-_Q24-Pad2_ Net-_J1-Pad2_ eSim_NPN +Q25 Net-_J1-Pad1_ Net-_C1-Pad1_ Net-_Q25-Pad3_ eSim_NPN +R4 Net-_Q19-Pad3_ Net-_Q20-Pad1_ 50k +Q22 Net-_C1-Pad1_ Net-_Q19-Pad3_ Net-_Q20-Pad1_ eSim_NPN +Q26 Net-_J1-Pad2_ Net-_Q20-Pad1_ Net-_Q26-Pad3_ eSim_PNP +R5 Net-_Q25-Pad3_ Net-_Q26-Pad3_ 20 +Q27 Net-_C1-Pad1_ Net-_Q25-Pad3_ Net-_Q26-Pad3_ eSim_NPN +Q21 Net-_C1-Pad1_ Net-_Q12-Pad2_ Net-_J1-Pad1_ eSim_PNP +Q23 Net-_Q12-Pad2_ Net-_Q12-Pad2_ Net-_J1-Pad1_ eSim_PNP +Q18 Net-_C1-Pad1_ Net-_Q12-Pad2_ Net-_J1-Pad1_ eSim_PNP +R2 Net-_Q24-Pad2_ Net-_Q16-Pad3_ 1k +Q16 Net-_Q16-Pad1_ Net-_Q13-Pad1_ Net-_Q16-Pad3_ eSim_NPN +Q19 Net-_C1-Pad1_ Net-_C1-Pad1_ Net-_Q19-Pad3_ eSim_NPN +R3 Net-_Q20-Pad2_ Net-_Q16-Pad3_ 1k +.end diff --git a/library/SubcircuitLibrary/uA799/uA799.cir.out b/library/SubcircuitLibrary/uA799/uA799.cir.out new file mode 100644 index 000000000..1ec453911 --- /dev/null +++ b/library/SubcircuitLibrary/uA799/uA799.cir.out @@ -0,0 +1,56 @@ +.title kicad schematic + +.include NPN.lib +.include PNP.lib +.include NJF.lib +q6 net-_q1-pad2_ net-_q1-pad2_ net-_j1-pad2_ Q2N2222 +q8 net-_c1-pad2_ net-_q1-pad2_ net-_q8-pad3_ Q2N2222 +q7 net-_c1-pad2_ net-_q1-pad2_ net-_j1-pad2_ Q2N2222 +* u1 net-_q5-pad3_ net-_q2-pad2_ net-_q14-pad2_ net-_j1-pad2_ net-_q8-pad3_ net-_q26-pad3_ net-_j1-pad1_ unconnected-_u1-pad8_ port +q14 net-_j1-pad2_ net-_q14-pad2_ net-_q10-pad2_ Q2N2907A +q15 net-_j1-pad2_ net-_c1-pad2_ net-_q13-pad1_ Q2N2907A +q17 net-_q16-pad1_ net-_q12-pad2_ net-_j1-pad1_ Q2N2907A +q1 net-_j1-pad2_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q5 net-_q1-pad2_ net-_q1-pad2_ net-_q5-pad3_ Q2N2222 +q2 net-_j1-pad2_ net-_q2-pad2_ net-_q2-pad3_ Q2N2907A +q4 net-_q1-pad2_ net-_q2-pad3_ net-_q10-pad3_ Q2N2907A +q3 net-_q2-pad3_ net-_q2-pad3_ net-_q10-pad3_ Q2N2907A +q13 net-_q13-pad1_ net-_q12-pad2_ net-_q12-pad3_ Q2N2907A +q12 net-_q10-pad3_ net-_q12-pad2_ net-_q12-pad3_ Q2N2907A +q9 net-_q1-pad3_ net-_q12-pad2_ net-_q12-pad3_ Q2N2907A +q10 net-_c1-pad2_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +q11 net-_q10-pad2_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +r1 net-_q12-pad3_ net-_j1-pad1_ 1k +* u2 net-_j1-pad2_ net-_q16-pad1_ zener +c1 net-_c1-pad1_ net-_c1-pad2_ 5p +j1 net-_j1-pad1_ net-_j1-pad2_ net-_j1-pad3_ J2N3819 +q28 net-_q12-pad2_ net-_j1-pad3_ net-_q28-pad3_ Q2N2222 +q29 net-_j1-pad3_ net-_q28-pad3_ net-_j1-pad2_ Q2N2222 +r6 net-_q28-pad3_ net-_j1-pad2_ 3k +q20 net-_q20-pad1_ net-_q20-pad2_ net-_j1-pad2_ Q2N2222 +q24 net-_c1-pad1_ net-_q24-pad2_ net-_j1-pad2_ Q2N2222 +q25 net-_j1-pad1_ net-_c1-pad1_ net-_q25-pad3_ Q2N2222 +r4 net-_q19-pad3_ net-_q20-pad1_ 50k +q22 net-_c1-pad1_ net-_q19-pad3_ net-_q20-pad1_ Q2N2222 +q26 net-_j1-pad2_ net-_q20-pad1_ net-_q26-pad3_ Q2N2907A +r5 net-_q25-pad3_ net-_q26-pad3_ 20 +q27 net-_c1-pad1_ net-_q25-pad3_ net-_q26-pad3_ Q2N2222 +q21 net-_c1-pad1_ net-_q12-pad2_ net-_j1-pad1_ Q2N2907A +q23 net-_q12-pad2_ net-_q12-pad2_ net-_j1-pad1_ Q2N2907A +q18 net-_c1-pad1_ net-_q12-pad2_ net-_j1-pad1_ Q2N2907A +r2 net-_q24-pad2_ net-_q16-pad3_ 1k +q16 net-_q16-pad1_ net-_q13-pad1_ net-_q16-pad3_ Q2N2222 +q19 net-_c1-pad1_ net-_c1-pad1_ net-_q19-pad3_ Q2N2222 +r3 net-_q20-pad2_ net-_q16-pad3_ 1k +a1 net-_j1-pad2_ net-_q16-pad1_ u2 +* Schematic Name: zener, Ngspice Name: zener +.model u2 zener(v_breakdown=5.6 i_breakdown=2.0e-2 i_sat=1.0e-12 n_forward=1.0 limit_switch=FALSE ) +.tran 0e-00 0e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +.endc +.end diff --git a/library/SubcircuitLibrary/uA799/uA799.kicad_sch b/library/SubcircuitLibrary/uA799/uA799.kicad_sch new file mode 100644 index 000000000..716be6f3a --- /dev/null +++ b/library/SubcircuitLibrary/uA799/uA799.kicad_sch @@ -0,0 +1,2596 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 69849d7a-4357-43e2-949e-f85836b54b68) + + (paper "A3") + + (lib_symbols + (symbol "eSim_Analog:zener" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -1.27 -2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "zener" (id 1) (at 0 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 1.27 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 1.27 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "zener_0_1" + (polyline + (pts + (xy 2.54 -1.27) + (xy 1.27 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy 2.54 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy 3.81 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 0 -1.27) + (xy 2.54 0) + (xy 0 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "zener_1_1" + (pin input line (at -5.08 0 0) (length 5.08) + (name "~" (effects (font (size 1.0922 1.0922)))) + (number "IN" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.0922 1.0922)))) + (number "OUT" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:capacitor_polarised" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "capacitor_polarised" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "CP_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "capacitor_polarised_0_1" + (polyline + (pts + (xy -2.032 0.762) + (xy 2.032 0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 2.286) + (xy -0.762 2.286) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 1.778) + (xy -1.27 2.794) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.032 -1.27) (mid 0 -0.5572) (end -2.032 -1.27) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "capacitor_polarised_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 3.302) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_NPN" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_NPN" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_NPN_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_NPN_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_PNP" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_PNP" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_PNP_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.286 -1.778) + (xy 1.778 -2.286) + (xy 1.27 -1.27) + (xy 2.286 -1.778) + (xy 2.286 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_PNP_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:jfet_n" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at -2.54 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "jfet_n" (id 1) (at -1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "jfet_n_0_1" + (polyline + (pts + (xy 0.254 1.905) + (xy 0.254 -1.905) + (xy 0.254 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 -2.54) + (xy 2.54 -1.27) + (xy 0.254 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy 2.54 1.397) + (xy 0.254 1.397) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy -1.016 0.381) + (xy -1.016 -0.381) + (xy 0 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "jfet_n_1_1" + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Devices:resistor" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 1.27 3.302 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "resistor" (id 1) (at 1.27 -1.27 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 1.27 -0.508 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 1.27 1.27 90) + (effects (font (size 0.762 0.762))) + ) + (property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "resistor_0_1" + (rectangle (start 3.81 0.254) (end -1.27 2.286) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "resistor_1_1" + (pin passive line (at -2.54 1.27 0) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "1" (effects (font (size 1.524 1.524)))) + ) + (pin passive line (at 5.08 1.27 180) (length 1.27) + (name "~" (effects (font (size 1.524 1.524)))) + (number "2" (effects (font (size 1.524 1.524)))) + ) + ) + ) + (symbol "eSim_Miscellaneous:PORT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 2.54 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 0 0 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "PORT_0_1" + (rectangle (start -2.54 1.27) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 2.54 1.27) (mid 3.1355 0.5955) (end 3.81 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 3.81 0) (mid 3.1447 -0.6046) (end 2.54 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "PORT_1_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "1" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_2_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "2" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_3_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "3" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_4_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "4" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_5_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "5" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_6_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "6" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_7_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "7" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_8_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "8" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_9_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "9" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_10_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "10" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_11_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "11" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_12_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "12" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_13_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "13" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_14_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "14" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_15_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "15" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_16_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "16" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_17_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "17" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_18_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "18" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_19_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "19" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_20_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "20" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_21_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "21" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_22_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "22" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_23_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "23" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_24_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "24" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_25_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "25" (effects (font (size 0.762 0.762)))) + ) + ) + (symbol "PORT_26_1" + (pin bidirectional line (at 6.35 0 180) (length 2.54) + (name "~" (effects (font (size 0.762 0.762)))) + (number "26" (effects (font (size 0.762 0.762)))) + ) + ) + ) + ) + + (junction (at 275.59 107.95) (diameter 0) (color 0 0 0 0) + (uuid 0157535d-cf4e-417f-a1f7-e5f959730b56) + ) + (junction (at 149.86 210.82) (diameter 0) (color 0 0 0 0) + (uuid 055f731c-102a-4f2a-974e-7eea8400cb47) + ) + (junction (at 162.56 175.26) (diameter 0) (color 0 0 0 0) + (uuid 0659ba88-6444-4aeb-8ab3-3096c8eccb68) + ) + (junction (at 111.76 175.26) (diameter 0) (color 0 0 0 0) + (uuid 1d510299-661a-4efa-928e-a56b8dc3681e) + ) + (junction (at 203.2 165.1) (diameter 0) (color 0 0 0 0) + (uuid 1dd4cf43-9b05-4e91-aefe-b08134394f1a) + ) + (junction (at 246.38 121.92) (diameter 0) (color 0 0 0 0) + (uuid 1ec7282f-f4b7-4e46-bb0d-2200e4f87645) + ) + (junction (at 257.81 88.9) (diameter 0) (color 0 0 0 0) + (uuid 1ec9ecb2-9f67-4674-90ba-567453fb50d4) + ) + (junction (at 124.46 210.82) (diameter 0) (color 0 0 0 0) + (uuid 22ad1cc3-e0e8-4575-b0e6-ca465d1f53f7) + ) + (junction (at 257.81 107.95) (diameter 0) (color 0 0 0 0) + (uuid 30e29db6-44f5-4a86-81eb-d9f2fe9c273c) + ) + (junction (at 175.26 83.82) (diameter 0) (color 0 0 0 0) + (uuid 348850cf-371d-4ed1-99c8-c09b2b7a4318) + ) + (junction (at 300.99 210.82) (diameter 0) (color 0 0 0 0) + (uuid 36e47019-5617-4e7d-b3ab-d40f0da31eaf) + ) + (junction (at 137.16 180.34) (diameter 0) (color 0 0 0 0) + (uuid 388981af-8b31-41bc-9957-9428add6691f) + ) + (junction (at 111.76 165.1) (diameter 0) (color 0 0 0 0) + (uuid 3ae0f187-75bd-4408-9297-c544999c4096) + ) + (junction (at 187.96 134.62) (diameter 0) (color 0 0 0 0) + (uuid 468f7dbb-9973-4d98-907c-162d24eb3b8c) + ) + (junction (at 313.69 135.89) (diameter 0) (color 0 0 0 0) + (uuid 4bad28bf-8189-4f1e-9b3e-94a8ca9d6c41) + ) + (junction (at 187.96 210.82) (diameter 0) (color 0 0 0 0) + (uuid 5477c9db-28d9-400f-9991-8fe264eaca71) + ) + (junction (at 162.56 58.42) (diameter 0) (color 0 0 0 0) + (uuid 5492a0fd-af7a-4e8d-ac57-9e748aa2a9d2) + ) + (junction (at 224.79 210.82) (diameter 0) (color 0 0 0 0) + (uuid 5ea7049e-eafa-44a1-94f9-f97bfc8e1732) + ) + (junction (at 288.29 146.05) (diameter 0) (color 0 0 0 0) + (uuid 5ef8c65d-c981-4a44-99b9-dddc4e136aa9) + ) + (junction (at 237.49 83.82) (diameter 0) (color 0 0 0 0) + (uuid 6f14db9e-4a7a-485c-bb4d-2a2a5265c40b) + ) + (junction (at 162.56 83.82) (diameter 0) (color 0 0 0 0) + (uuid 75e2bd72-84a4-486e-85b6-96fc01074af2) + ) + (junction (at 339.09 172.72) (diameter 0) (color 0 0 0 0) + (uuid 7aa8aac1-b75a-46ea-a061-fd58dd2c1c4c) + ) + (junction (at 275.59 210.82) (diameter 0) (color 0 0 0 0) + (uuid 7add4b56-53f7-4756-89a1-3b920382fea9) + ) + (junction (at 300.99 107.95) (diameter 0) (color 0 0 0 0) + (uuid 7cfb932b-ee02-48bc-96dd-1e990ec4528c) + ) + (junction (at 275.59 146.05) (diameter 0) (color 0 0 0 0) + (uuid 8643c4d7-ef8b-4762-808c-a7da656e67a8) + ) + (junction (at 306.07 107.95) (diameter 0) (color 0 0 0 0) + (uuid 880e5b6c-5a9f-4b91-b8fa-97cfb0c3b3c9) + ) + (junction (at 162.56 165.1) (diameter 0) (color 0 0 0 0) + (uuid 880fd97f-a193-4d4b-b7f2-5433558ae963) + ) + (junction (at 182.88 88.9) (diameter 0) (color 0 0 0 0) + (uuid 8d7d873a-57f0-4e1f-8cf6-52efc6d15435) + ) + (junction (at 111.76 116.84) (diameter 0) (color 0 0 0 0) + (uuid 91db9de0-a9ee-4a7d-9f08-847faeead660) + ) + (junction (at 93.98 121.92) (diameter 0) (color 0 0 0 0) + (uuid 92b4283f-86e6-4716-99b4-3a5d5a6310f6) + ) + (junction (at 180.34 121.92) (diameter 0) (color 0 0 0 0) + (uuid 92f07117-e4c0-4ec9-a29b-1c3899895c73) + ) + (junction (at 212.09 147.32) (diameter 0) (color 0 0 0 0) + (uuid 99f9766f-c9ba-4a6a-b1bd-b82fbd7757c5) + ) + (junction (at 339.09 210.82) (diameter 0) (color 0 0 0 0) + (uuid a1003c8b-f374-4c56-94a4-f23876862a0e) + ) + (junction (at 275.59 83.82) (diameter 0) (color 0 0 0 0) + (uuid a4a63e1b-d2d7-4f7a-86a5-60b0956816fb) + ) + (junction (at 93.98 210.82) (diameter 0) (color 0 0 0 0) + (uuid a4b4c179-e3fb-436c-b049-d34894bc907b) + ) + (junction (at 93.98 134.62) (diameter 0) (color 0 0 0 0) + (uuid a863778b-a4cb-4cf3-8bbd-2ed291e43606) + ) + (junction (at 351.79 210.82) (diameter 0) (color 0 0 0 0) + (uuid a8cea10c-f04c-4010-a49d-3fda5416aaaa) + ) + (junction (at 283.21 88.9) (diameter 0) (color 0 0 0 0) + (uuid ac0e90ca-1062-4275-9f47-b1d9f690d38f) + ) + (junction (at 313.69 210.82) (diameter 0) (color 0 0 0 0) + (uuid ad3baafb-1109-4049-9107-ab5fbedcabd6) + ) + (junction (at 300.99 88.9) (diameter 0) (color 0 0 0 0) + (uuid af548f30-413a-46d0-8946-ab2c46fb5327) + ) + (junction (at 212.09 210.82) (diameter 0) (color 0 0 0 0) + (uuid b0400b3c-3ca0-454a-80cc-d220e767bd65) + ) + (junction (at 132.08 180.34) (diameter 0) (color 0 0 0 0) + (uuid b2f9f671-a03a-41d9-b731-778705ab828c) + ) + (junction (at 73.66 210.82) (diameter 0) (color 0 0 0 0) + (uuid b31b693e-6a19-44b6-ab48-b65f144f55cc) + ) + (junction (at 162.56 116.84) (diameter 0) (color 0 0 0 0) + (uuid b863ef19-9447-4076-bc5d-6ce0e3e9a3a1) + ) + (junction (at 137.16 109.22) (diameter 0) (color 0 0 0 0) + (uuid b99f7247-3a93-4693-a12f-402897fa1c53) + ) + (junction (at 275.59 58.42) (diameter 0) (color 0 0 0 0) + (uuid bf6339ce-1bbf-465f-923d-0b9acb0ff6f6) + ) + (junction (at 142.24 180.34) (diameter 0) (color 0 0 0 0) + (uuid c103be57-a944-4094-8abb-9de970e79da4) + ) + (junction (at 237.49 58.42) (diameter 0) (color 0 0 0 0) + (uuid c32f7b15-6749-4529-bab9-36e3fd86244d) + ) + (junction (at 313.69 58.42) (diameter 0) (color 0 0 0 0) + (uuid c358eded-b600-4e9d-8472-0c48721f7fcf) + ) + (junction (at 326.39 135.89) (diameter 0) (color 0 0 0 0) + (uuid c77182d8-2ce6-49d6-971a-3667b02850d8) + ) + (junction (at 275.59 97.79) (diameter 0) (color 0 0 0 0) + (uuid cedaa19a-49f6-49f9-8b9c-bf9ad7eb5dc5) + ) + (junction (at 351.79 158.75) (diameter 0) (color 0 0 0 0) + (uuid db84c50a-5239-4715-9da0-18f8caa292c5) + ) + (junction (at 313.69 118.11) (diameter 0) (color 0 0 0 0) + (uuid ddfa68a7-3038-4446-b6d4-977c021a66e3) + ) + (junction (at 275.59 127) (diameter 0) (color 0 0 0 0) + (uuid e3cc3c04-e591-4f6d-b3b0-3f88b9a58064) + ) + (junction (at 237.49 101.6) (diameter 0) (color 0 0 0 0) + (uuid e8975dca-f3ce-411d-b36b-0d13484ab35c) + ) + (junction (at 288.29 107.95) (diameter 0) (color 0 0 0 0) + (uuid f1384851-afd2-4b50-b9ec-3810e1fbb7d4) + ) + (junction (at 295.91 88.9) (diameter 0) (color 0 0 0 0) + (uuid f9a8dedc-2d40-4438-8a4f-96fa42297b07) + ) + (junction (at 245.11 88.9) (diameter 0) (color 0 0 0 0) + (uuid fa3842e9-b539-4aee-a995-6f908432eacb) + ) + (junction (at 111.76 147.32) (diameter 0) (color 0 0 0 0) + (uuid fad82152-ab4b-471a-9bfb-b228c4919ef1) + ) + (junction (at 237.49 158.75) (diameter 0) (color 0 0 0 0) + (uuid fefbfc5c-2fd4-48d8-b252-0089898a8677) + ) + (junction (at 195.58 88.9) (diameter 0) (color 0 0 0 0) + (uuid ffc20ddb-aa37-4f6e-84f8-5c0784201484) + ) + + (no_connect (at 50.8 49.53) (uuid 367f141d-cf69-451b-b49b-f70426baebbf)) + + (wire (pts (xy 162.56 71.12) (xy 162.56 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 005a336e-3e9d-47d3-a7fd-1e650253e130) + ) + (wire (pts (xy 250.19 93.98) (xy 250.19 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 01c55109-67b1-4954-ae4a-deb1665bc721) + ) + (wire (pts (xy 313.69 210.82) (xy 339.09 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 02cb0617-c0de-4061-9fc2-bb56bc9676f9) + ) + (wire (pts (xy 162.56 116.84) (xy 162.56 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 036edfad-074b-422e-ac15-da834ac235d7) + ) + (wire (pts (xy 339.09 172.72) (xy 339.09 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0569b845-7f81-42b3-8475-5c1001ce9dbc) + ) + (wire (pts (xy 246.38 121.92) (xy 246.38 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 067b0daa-e777-40e3-9fc1-81d373221b81) + ) + (wire (pts (xy 313.69 130.81) (xy 313.69 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07c9f0f9-f993-403a-b7ac-e9f2ad6dc695) + ) + (wire (pts (xy 224.79 138.43) (xy 224.79 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 095354b6-5d9c-466a-9031-d3065b20f8ce) + ) + (wire (pts (xy 187.96 93.98) (xy 187.96 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c674c8a-9ea0-4288-b280-a4dacc3831e0) + ) + (wire (pts (xy 245.11 88.9) (xy 257.81 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fb3618a-99ca-4ba3-86e0-9ac76efb8b82) + ) + (wire (pts (xy 275.59 146.05) (xy 288.29 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1245fe2e-4d9c-4682-a014-434e04c79274) + ) + (wire (pts (xy 124.46 185.42) (xy 124.46 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13a3b9d6-5107-42de-84b0-58819dfc1c1f) + ) + (wire (pts (xy 275.59 58.42) (xy 275.59 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 142b36ba-4e01-4cc8-96c7-58034bd214ed) + ) + (wire (pts (xy 35.56 147.32) (xy 86.36 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 16a54560-7c23-43ec-9c12-819d27af4540) + ) + (wire (pts (xy 137.16 147.32) (xy 111.76 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 170d3d29-aa72-45f3-ab9a-3fecf4a2f8b0) + ) + (wire (pts (xy 237.49 83.82) (xy 250.19 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17329b98-2619-434c-8656-2065f8ef9c72) + ) + (wire (pts (xy 93.98 134.62) (xy 93.98 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 188c855c-232e-4cf5-a4e8-386417896f3c) + ) + (wire (pts (xy 237.49 158.75) (xy 246.38 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 18ee0a2e-c6fe-417f-b618-ccc1482639b9) + ) + (wire (pts (xy 326.39 113.03) (xy 326.39 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 199e65c3-5580-4d07-903e-0475ae6b0f1c) + ) + (wire (pts (xy 170.18 88.9) (xy 182.88 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 19d7fe5d-c381-42aa-b248-c88463071114) + ) + (wire (pts (xy 237.49 171.45) (xy 237.49 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a2d2b0a-2045-4b29-9cb2-4365aecd5fad) + ) + (wire (pts (xy 162.56 116.84) (xy 172.72 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1aaabafb-f33e-44d5-a04e-d03c060e3f49) + ) + (wire (pts (xy 339.09 153.67) (xy 339.09 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c29e07f-dc99-41ef-9f77-b8f95c4b064c) + ) + (wire (pts (xy 257.81 127) (xy 275.59 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1dd3e6b8-f513-41f7-9a65-7676fb46e74b) + ) + (wire (pts (xy 254 158.75) (xy 293.37 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e44f386-0f05-43f3-aefc-543fa5ce3026) + ) + (wire (pts (xy 73.66 96.52) (xy 73.66 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e81ddc7-b44b-4ba7-b898-049e21f40406) + ) + (wire (pts (xy 162.56 63.5) (xy 162.56 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1ee5c8b2-e046-4079-9f63-edc74bd0f5e8) + ) + (wire (pts (xy 111.76 127) (xy 111.76 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 209ed6b8-3c50-48f7-bdb7-13860a2ecea8) + ) + (wire (pts (xy 93.98 121.92) (xy 93.98 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22a84e36-d14c-45ba-90d8-ae4b0090ac89) + ) + (wire (pts (xy 162.56 165.1) (xy 162.56 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23369737-de53-4520-8a39-6deb8bc22b88) + ) + (wire (pts (xy 300.99 163.83) (xy 300.99 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24a32bdb-6a0e-4f46-8c44-a5f1cdf2397d) + ) + (wire (pts (xy 288.29 107.95) (xy 275.59 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 257bd9e9-f63b-4ac4-874a-a314b695df43) + ) + (wire (pts (xy 203.2 129.54) (xy 203.2 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 268e48a0-05a7-4947-923a-762cfc975985) + ) + (wire (pts (xy 50.8 49.53) (xy 46.99 49.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28358fb5-b014-483e-a5ef-cc4aeb8ddd6e) + ) + (wire (pts (xy 111.76 175.26) (xy 124.46 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 293bb734-249b-47c9-8a89-e0c1f86159c9) + ) + (wire (pts (xy 246.38 107.95) (xy 257.81 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 297d4b29-3a15-4103-9940-87efd3d65a3d) + ) + (wire (pts (xy 162.56 83.82) (xy 175.26 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b05edba-083a-413f-b1b4-53950d54610e) + ) + (wire (pts (xy 288.29 93.98) (xy 288.29 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b7cea7d-1114-4374-91a7-ba61f2a6f61d) + ) + (wire (pts (xy 175.26 83.82) (xy 187.96 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2bf08d02-235d-4fcc-9570-fbf8818e313c) + ) + (wire (pts (xy 149.86 210.82) (xy 187.96 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2d3c39ef-8db3-422b-947a-141a125ea2a2) + ) + (wire (pts (xy 180.34 121.92) (xy 170.18 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2dc2c682-3a04-4a1e-be2f-cd61ab2a6400) + ) + (wire (pts (xy 364.49 151.13) (xy 364.49 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2df9af6a-da1c-4f16-af13-438b8140ce8c) + ) + (wire (pts (xy 288.29 97.79) (xy 300.99 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ea33234-d1e8-4451-b4a6-cbcdb99c7ac8) + ) + (wire (pts (xy 339.09 210.82) (xy 351.79 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2ff8d9c6-6bb0-4711-8dd2-1874ec3da056) + ) + (wire (pts (xy 326.39 107.95) (xy 306.07 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 30a102db-e782-4cf3-8652-ac228c7e56b7) + ) + (wire (pts (xy 187.96 142.24) (xy 187.96 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 34e47e35-8612-4ea8-b2a9-4112a3e4554a) + ) + (wire (pts (xy 187.96 121.92) (xy 180.34 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 358c6ede-76c5-4de2-8b4f-16ad495448ee) + ) + (wire (pts (xy 326.39 135.89) (xy 313.69 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 376eb7f6-a032-4add-a0b5-e0b53d611a91) + ) + (wire (pts (xy 250.19 97.79) (xy 275.59 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3ad008b1-136c-4e4b-98f5-eda8f3ea7cb1) + ) + (wire (pts (xy 187.96 101.6) (xy 212.09 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b279c09-af4d-4ef3-9f68-d9ebe8a1d226) + ) + (wire (pts (xy 137.16 180.34) (xy 137.16 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3b452ed0-561c-4a22-8d44-6fed9252ba55) + ) + (wire (pts (xy 195.58 88.9) (xy 245.11 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e58fe71-525c-4130-808e-2eac08a0a9f5) + ) + (wire (pts (xy 283.21 88.9) (xy 295.91 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fd45309-3ef0-4a07-be55-d601102ea3cf) + ) + (wire (pts (xy 212.09 147.32) (xy 212.09 160.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 45b2d716-57be-4dc3-b41b-a062908075d3) + ) + (wire (pts (xy 288.29 146.05) (xy 306.07 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 48fba4d2-f70a-42ce-a5b7-96f2c19e7304) + ) + (wire (pts (xy 313.69 118.11) (xy 318.77 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49e69b5e-eb75-4d98-9b0d-b9b5ac024024) + ) + (wire (pts (xy 364.49 210.82) (xy 351.79 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4b148496-8347-4757-93c2-685d4df2f0de) + ) + (wire (pts (xy 124.46 210.82) (xy 149.86 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4e993b5c-c014-44a6-b72a-2bd72aea506d) + ) + (wire (pts (xy 212.09 147.32) (xy 229.87 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ecd0677-827c-42b1-85e0-f9a1dc5163b8) + ) + (wire (pts (xy 300.99 153.67) (xy 300.99 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51ed3aeb-ba02-496e-8152-ae1634106a04) + ) + (wire (pts (xy 351.79 177.8) (xy 351.79 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 574f987d-c5b8-4164-8e7d-f6104d5cb49a) + ) + (wire (pts (xy 275.59 210.82) (xy 300.99 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a7b6bf9-0b30-4712-ba9e-1f4079513d9f) + ) + (wire (pts (xy 212.09 170.18) (xy 212.09 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b4eef7c-f5a7-46d6-a9dd-b3f3782dd63e) + ) + (wire (pts (xy 313.69 58.42) (xy 351.79 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cea94a7-6ca0-4048-9058-78e14c1ff269) + ) + (wire (pts (xy 300.99 97.79) (xy 300.99 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5ebaba17-a72e-45d9-8d0f-ea5ad0b44eba) + ) + (wire (pts (xy 73.66 210.82) (xy 93.98 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 607d2853-2309-4774-8b5b-0ea7da461e5b) + ) + (wire (pts (xy 203.2 137.16) (xy 203.2 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62cd8da9-7db4-4213-a3b2-33d449a01301) + ) + (wire (pts (xy 300.99 107.95) (xy 288.29 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64d6be5a-2aad-4108-8626-77f3c7484b0b) + ) + (wire (pts (xy 224.79 210.82) (xy 275.59 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6880ba6a-efee-4573-9f75-011444048cca) + ) + (wire (pts (xy 339.09 194.31) (xy 339.09 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6967f981-39e4-441d-98e4-f5e4246afe70) + ) + (wire (pts (xy 339.09 163.83) (xy 339.09 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6aa8d902-ea9b-4a44-b5b4-e5d26ccd127f) + ) + (wire (pts (xy 162.56 165.1) (xy 203.2 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6b3d7c10-6063-4942-ae15-5b2d9d7a2413) + ) + (wire (pts (xy 101.6 127) (xy 101.6 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6cd142b2-54c2-4ef5-bcf2-5545f708d7c8) + ) + (wire (pts (xy 313.69 118.11) (xy 313.69 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 704bb17e-5d02-4412-b025-c9fcc0324cb5) + ) + (wire (pts (xy 313.69 151.13) (xy 313.69 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72639ce9-3a8c-4e52-85ad-2dd2c5ac8372) + ) + (wire (pts (xy 326.39 123.19) (xy 326.39 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72794663-774d-4515-9622-d8c489cd42c1) + ) + (wire (pts (xy 257.81 88.9) (xy 283.21 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74244451-7e3d-4779-812d-73043025390d) + ) + (wire (pts (xy 60.96 210.82) (xy 73.66 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 76840718-d8bb-479a-b9e4-d5a8146fadb1) + ) + (wire (pts (xy 275.59 127) (xy 275.59 133.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77b8522e-bfac-436f-99de-b7fc8dbece5e) + ) + (wire (pts (xy 300.99 88.9) (xy 295.91 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7871dac5-a017-424a-bbd2-006e18caf7bc) + ) + (wire (pts (xy 313.69 113.03) (xy 313.69 118.11)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78ae9dd2-fd65-40b5-b7ac-3899f030c26f) + ) + (wire (pts (xy 339.09 172.72) (xy 344.17 172.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 79da2863-f1dd-4f61-b27f-d62922626305) + ) + (wire (pts (xy 237.49 58.42) (xy 275.59 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7a865f19-dd8a-491a-8ddc-debd5fafb14c) + ) + (wire (pts (xy 275.59 140.97) (xy 275.59 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b43753d-ceb4-4224-8489-5fc21c315fd9) + ) + (wire (pts (xy 93.98 152.4) (xy 93.98 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c4ed05c-c050-4da1-8144-916f774d452e) + ) + (wire (pts (xy 351.79 58.42) (xy 351.79 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7d1a3fca-2ac9-4084-9892-3d0af39c2b43) + ) + (wire (pts (xy 275.59 97.79) (xy 275.59 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e46e237-d918-4b8e-b7d2-4de8fb8b9395) + ) + (wire (pts (xy 339.09 88.9) (xy 300.99 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e7c4cae-dd96-421d-9c54-d1eb58d065fa) + ) + (wire (pts (xy 359.41 151.13) (xy 364.49 151.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f0d2009-6b94-4cd0-b703-55fd8cb6f9bf) + ) + (wire (pts (xy 275.59 83.82) (xy 288.29 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 83fc2607-60c7-49dd-90e0-cb197a187b9a) + ) + (wire (pts (xy 313.69 135.89) (xy 313.69 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 841fc250-f4a6-43ec-a277-d3fd20aa32bb) + ) + (wire (pts (xy 73.66 170.18) (xy 73.66 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 848e48d7-e859-4048-a194-80decc302c92) + ) + (wire (pts (xy 101.6 116.84) (xy 111.76 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8703f5e8-8e57-49da-901e-f76ffad702e9) + ) + (wire (pts (xy 288.29 132.08) (xy 288.29 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89463a57-042e-42ce-8a5d-dc24b5f67383) + ) + (wire (pts (xy 93.98 210.82) (xy 124.46 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8b8d3c8e-f9f3-420a-9af6-20f3a55098c7) + ) + (wire (pts (xy 351.79 158.75) (xy 351.79 167.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8c01c947-3617-4def-a398-30fa7243b4fe) + ) + (wire (pts (xy 162.56 127) (xy 162.56 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8fa9c296-a775-47c9-9cf9-b677736ccb9f) + ) + (wire (pts (xy 203.2 121.92) (xy 246.38 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91b24288-788b-4405-86fb-c1d349139c2b) + ) + (wire (pts (xy 275.59 58.42) (xy 313.69 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 95344835-e495-4f11-b168-df05b9c18d58) + ) + (wire (pts (xy 111.76 147.32) (xy 111.76 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97292bf5-3126-46ff-8242-13134e953a73) + ) + (wire (pts (xy 137.16 102.87) (xy 175.26 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97fe82b5-d76e-4b35-b1a0-01ca81491ec2) + ) + (wire (pts (xy 237.49 58.42) (xy 237.49 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 994676ba-9e33-47ac-b55f-06c350b7ad0a) + ) + (wire (pts (xy 137.16 180.34) (xy 142.24 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9da1bb3e-06f7-481d-a186-ae449a4bc750) + ) + (wire (pts (xy 275.59 146.05) (xy 275.59 166.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9edd12b1-0b83-4079-a2a7-e3eedebd8e68) + ) + (wire (pts (xy 111.76 109.22) (xy 137.16 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a25dd4ec-0d21-48ed-b58f-6ead53eb96fa) + ) + (wire (pts (xy 212.09 101.6) (xy 212.09 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a36b8dc5-499a-485d-9653-501d8ce26624) + ) + (wire (pts (xy 182.88 88.9) (xy 195.58 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a4b35225-5cc2-41b2-8374-866c6d82ec5f) + ) + (wire (pts (xy 246.38 121.92) (xy 250.19 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a59966ae-7605-4479-9375-22d9cb818a5f) + ) + (wire (pts (xy 300.99 107.95) (xy 306.07 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7620fc1-3008-4213-8d3a-153baec1872d) + ) + (wire (pts (xy 237.49 101.6) (xy 237.49 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a8fed04f-4f4b-4686-b89e-febc36edcbbe) + ) + (wire (pts (xy 175.26 102.87) (xy 175.26 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae3b74bc-c311-4dc4-9c00-d9d1f22a5817) + ) + (wire (pts (xy 162.56 58.42) (xy 237.49 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af61a194-6a2e-40ba-b3b2-ff384aa25ba3) + ) + (wire (pts (xy 300.99 210.82) (xy 313.69 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1c0ec64-9350-40c6-98e3-7aa24140dbad) + ) + (wire (pts (xy 149.86 185.42) (xy 149.86 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b51ec949-faa0-4a29-a505-9bd8148680b9) + ) + (wire (pts (xy 313.69 58.42) (xy 313.69 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b608e099-eef6-4994-b0b5-a3dbe909671f) + ) + (wire (pts (xy 212.09 210.82) (xy 224.79 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b675ff6c-0233-405f-bf9b-14fc6d2a312f) + ) + (wire (pts (xy 224.79 101.6) (xy 237.49 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b78f4943-6426-4d47-b627-3d5579f20aed) + ) + (wire (pts (xy 162.56 96.52) (xy 73.66 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8c5f6d2-2ad5-45d6-8ae7-f2a6b84c74f5) + ) + (wire (pts (xy 187.96 152.4) (xy 187.96 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8d3bdb0-7f47-4a05-8846-373b61b2c9ca) + ) + (wire (pts (xy 46.99 58.42) (xy 162.56 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bb640c0e-d4f9-4eee-82c9-b02ddbde7b01) + ) + (wire (pts (xy 351.79 156.21) (xy 351.79 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bba62bf9-e743-4793-b21f-bedfecb50628) + ) + (wire (pts (xy 187.96 210.82) (xy 212.09 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be684d28-7853-4ac1-87b1-6cc131e0cae8) + ) + (wire (pts (xy 162.56 93.98) (xy 162.56 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bed1b359-32a9-4efb-9488-a548df84798c) + ) + (wire (pts (xy 111.76 165.1) (xy 111.76 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bf698cc8-a621-41f1-81bf-63fcb74e1fce) + ) + (wire (pts (xy 275.59 127) (xy 280.67 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1d90aa2-1898-4a19-a8bf-1f88d9eb4a9a) + ) + (wire (pts (xy 101.6 134.62) (xy 93.98 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1facbc3-38c5-40ba-9253-d0964d673080) + ) + (wire (pts (xy 257.81 116.84) (xy 257.81 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3b5617b-b0b7-4684-88d3-c0aeb67cae39) + ) + (wire (pts (xy 149.86 175.26) (xy 162.56 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c43810cc-086d-4bd5-b9a0-90874d9dc89f) + ) + (wire (pts (xy 200.66 147.32) (xy 200.66 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4599a77-dd7d-4c56-9ca0-b6bc3012f9af) + ) + (wire (pts (xy 237.49 152.4) (xy 237.49 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ca036f7a-5c3e-4a42-99a8-f8269e93c18c) + ) + (wire (pts (xy 187.96 134.62) (xy 187.96 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ceed6b81-b5d9-45d9-8a0b-f0b3f60ddd5c) + ) + (wire (pts (xy 224.79 125.73) (xy 224.79 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1186aad-b353-4af2-a7fb-5617150eff3b) + ) + (wire (pts (xy 275.59 107.95) (xy 275.59 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1abace0-c502-4fa7-a178-9030748663b4) + ) + (wire (pts (xy 254 171.45) (xy 267.97 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d24a154a-48fb-4dac-ac23-88ef767a8a70) + ) + (wire (pts (xy 326.39 135.89) (xy 370.84 135.89)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d31f0a1f-d319-4660-9623-785709f08429) + ) + (wire (pts (xy 172.72 134.62) (xy 187.96 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d3ab2b19-af44-4de5-9c75-8e8767f6c2c8) + ) + (wire (pts (xy 119.38 180.34) (xy 132.08 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d493cc0a-d641-4be3-a49b-8908682a257d) + ) + (wire (pts (xy 93.98 121.92) (xy 104.14 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4d70564-8835-4166-bdfd-3ca5897f5492) + ) + (wire (pts (xy 132.08 180.34) (xy 137.16 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d75faaef-3a52-4808-80a5-6c02399cfa96) + ) + (wire (pts (xy 172.72 127) (xy 172.72 134.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df0b81cf-fb5f-4287-ad04-49eaa0dac81e) + ) + (wire (pts (xy 203.2 165.1) (xy 204.47 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e0469ffb-a4a6-44b5-9ed4-5cdffb1abedd) + ) + (wire (pts (xy 162.56 185.42) (xy 162.56 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e159bab2-478b-4d00-9b11-f4f36c753887) + ) + (wire (pts (xy 111.76 116.84) (xy 111.76 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e26423c7-1cd6-411a-846d-4565f702f252) + ) + (wire (pts (xy 257.81 107.95) (xy 275.59 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e319d3b1-ec9e-464d-aba3-5d57391e3795) + ) + (wire (pts (xy 81.28 165.1) (xy 111.76 165.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e325d1e8-24c1-4faf-a138-d7f98705e499) + ) + (wire (pts (xy 195.58 147.32) (xy 200.66 147.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5309a62-e53a-4838-b745-6ed3d2a43ec0) + ) + (wire (pts (xy 142.24 180.34) (xy 154.94 180.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e56bf67e-173e-469a-954a-53c16cdbeb50) + ) + (wire (pts (xy 162.56 109.22) (xy 137.16 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb0c4c58-734a-470a-8361-bb0ca9708198) + ) + (wire (pts (xy 246.38 171.45) (xy 237.49 171.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eba99a0f-bc74-4cdd-a327-7bde434bdd97) + ) + (wire (pts (xy 351.79 158.75) (xy 346.71 158.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed8e2a5f-cd9d-4483-95ef-fb83be0546a1) + ) + (wire (pts (xy 275.59 176.53) (xy 275.59 210.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ee564dc7-14e7-48cd-b55b-8f30581ddae8) + ) + (wire (pts (xy 111.76 185.42) (xy 111.76 223.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f2e59d73-e437-44b1-8c31-099044727f60) + ) + (wire (pts (xy 288.29 121.92) (xy 288.29 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3beabe5-b3e4-409a-8f0b-9fd543514f6a) + ) + (wire (pts (xy 237.49 93.98) (xy 237.49 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f52a816f-a2ed-495b-9b72-95d90dc5c6c5) + ) + (wire (pts (xy 137.16 109.22) (xy 137.16 102.87)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7b435a5-148f-461c-a8a8-2ba40665ec3e) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 234.95 147.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 02733c64-4c4f-4d3e-b2d9-d1812bd73a01) + (property "Reference" "Q16" (id 0) (at 240.03 146.0499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 240.03 148.5899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 240.03 144.78 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 234.95 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 90c99fb6-29e9-4865-af8f-ef109071d20b)) + (pin "2" (uuid d61e5f32-f55a-4966-b5c0-ba727f8f1eed)) + (pin "3" (uuid 30b90f3f-b6bd-4cdd-8cf4-1fe5e18aa36f)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 251.46 157.48 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 07f865b8-9a98-4713-8148-6c227986000a) + (property "Reference" "R2" (id 0) (at 250.19 152.4 0)) + (property "Value" "1k" (id 1) (at 250.19 154.94 0)) + (property "Footprint" "" (id 2) (at 250.19 156.972 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 250.19 158.75 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 003e2b07-45ff-4a0f-a104-c056e85a56e5)) + (pin "2" (uuid 258424ff-dd6f-4e3e-a43c-b40550d874f0)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 278.13 88.9 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 119bfb34-db49-4626-ab3a-64c89f35628a) + (property "Reference" "Q21" (id 0) (at 273.05 87.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 273.05 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 273.05 91.44 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 278.13 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 264a2846-b490-4270-81ac-b00150b84bed)) + (pin "2" (uuid fb1a2e0a-ca30-4576-a54f-cfbaf78eb395)) + (pin "3" (uuid d3b462f0-2c31-4179-9535-078842407056)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 54.61 210.82 0) (unit 4) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1229a8ee-4c09-400a-9990-b0f262a52e0f) + (property "Reference" "U1" (id 0) (at 55.245 205.74 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 55.245 208.28 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 54.61 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 54.61 210.82 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 4cde80c6-5360-4dd6-a361-4ef265df78db)) + (pin "2" (uuid d1c849fa-3c1a-433d-82ad-45e6b5aaea6c)) + (pin "3" (uuid 37f27df3-a60a-4a01-a42d-897ead53eaa5)) + (pin "4" (uuid d01f1dbc-3130-4ed2-b233-0e16c2fa685a)) + (pin "5" (uuid 91ae19a8-856a-4a8d-9b49-5c2e5e26f0d2)) + (pin "6" (uuid c152ede8-4d96-4139-98ef-460ee806f17a)) + (pin "7" (uuid e146b1e3-6f0d-45f1-a205-6582b4087686)) + (pin "8" (uuid 0338ea6e-7373-462f-8a6c-55ae9e11b7fe)) + (pin "9" (uuid 6a74c921-968f-400e-9110-5864a057b2b8)) + (pin "10" (uuid 28dbfb3f-ea84-4162-ac99-0b42d9fc21da)) + (pin "11" (uuid a04b66a0-ba9b-4c6b-b970-43a5e0e35203)) + (pin "12" (uuid b1b66896-73fa-445c-81fa-098f00cd3a70)) + (pin "13" (uuid f3fdfe05-e5e0-4983-a39e-741295687800)) + (pin "14" (uuid 711079dd-e0d1-4a79-a3fd-342b67e509c3)) + (pin "15" (uuid 31508f00-2353-436a-b91a-d8a9e0149f8c)) + (pin "16" (uuid d7e7da13-5122-45fc-9fb9-f62f2f0f87db)) + (pin "17" (uuid c66bc7e8-c7f3-4929-b9d9-bfc8147870a3)) + (pin "18" (uuid 51eb3103-fe3a-4235-9e0d-f9321e1bbf29)) + (pin "19" (uuid 30ad29ba-4c2b-47ae-9e8d-5380143adca5)) + (pin "20" (uuid cea85568-ae59-46e7-9e34-eb0330cd3665)) + (pin "21" (uuid 0389739b-01fe-4242-b803-7d4f33281e65)) + (pin "22" (uuid 80f2a280-609d-4e88-a0da-e384b9627928)) + (pin "23" (uuid 2b84feea-f7ea-4fdd-a5bf-a9930e051924)) + (pin "24" (uuid 4d3e9e1e-4b3a-4806-babd-266ab787d4ff)) + (pin "25" (uuid a4a6d9d3-16d8-4323-a6ec-7ea9b03f8edb)) + (pin "26" (uuid 97ce46d1-297a-429f-af01-35cd851dc6ac)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 311.15 146.05 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13283ce0-ef22-445c-addb-8f0a4b7f94b3) + (property "Reference" "Q26" (id 0) (at 316.23 144.7799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 316.23 147.3199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 316.23 148.59 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 311.15 146.05 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7b460ff0-4dea-4c55-ac04-161b71b9fb41)) + (pin "2" (uuid 34798fd1-09c1-40b0-a3d0-363e026406e7)) + (pin "3" (uuid 73b0161b-211d-4a2e-9d1c-ea9cf362c4b1)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 162.56 229.87 90) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 22461c5b-321b-4ac3-a7f9-92e53eabf866) + (property "Reference" "U1" (id 0) (at 165.1 228.6 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 165.1 231.14 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 162.56 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 162.56 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0d7afff2-c186-44e6-9636-b7b76f837022)) + (pin "2" (uuid d0a114ae-e855-4f2d-8eab-f8c430579a6f)) + (pin "3" (uuid dc522eec-ae63-4433-83a0-bf0477e911b5)) + (pin "4" (uuid 38733808-7421-4c58-9a15-fcda369f0021)) + (pin "5" (uuid b274c841-ba48-40e9-8ae9-bc3e5e45f576)) + (pin "6" (uuid a31b1e36-2898-41f2-8540-27161100af7f)) + (pin "7" (uuid eee19a24-d23b-4706-8677-21fa605ec7fc)) + (pin "8" (uuid 083741f9-23a4-4d56-af3d-4523eb77385e)) + (pin "9" (uuid cac51e4d-218e-4230-84a1-8f849f55487e)) + (pin "10" (uuid d9276162-33b1-48bb-8612-a2eff944475a)) + (pin "11" (uuid 1ca178b5-ea3a-46a1-be58-6e318967091f)) + (pin "12" (uuid f099dd5e-1c87-4a51-93bf-aa3250af0258)) + (pin "13" (uuid 013dd78f-10d1-49f3-a4fd-f6b43db7fe7f)) + (pin "14" (uuid 0ce13620-f4ed-4a4f-8dbe-2a7fd5f8c669)) + (pin "15" (uuid aad11006-dd6d-485b-a206-9c84a3ac2044)) + (pin "16" (uuid 01409b28-e8f0-4d1d-ae39-c50ffab00882)) + (pin "17" (uuid bebc180b-d84e-46c1-a9a8-8688b39771b2)) + (pin "18" (uuid 8d6936f2-e2d9-426a-84e7-bc25c4254276)) + (pin "19" (uuid da180501-27c5-4073-970e-33f5f0f59032)) + (pin "20" (uuid a8a846f3-2db2-4670-9944-d7e6dd534fda)) + (pin "21" (uuid 957a1a9f-b441-43f5-832e-81f7f7b7bb48)) + (pin "22" (uuid ebc4eaaf-4cf1-480a-844d-83b9311c262a)) + (pin "23" (uuid 185b1593-5805-450a-8da8-131883176c7d)) + (pin "24" (uuid 3934e0fe-0a91-444b-b961-df5668d5bd3c)) + (pin "25" (uuid 754dea18-69ba-4004-b4ee-3b034e79aa27)) + (pin "26" (uuid b447cedc-bb4d-4cff-b9e8-4e338680d791)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 341.63 158.75 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 22ddfbb5-e4ed-4868-8164-e17873319538) + (property "Reference" "Q28" (id 0) (at 336.55 157.4799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 336.55 160.0199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 336.55 156.21 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 341.63 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e1623fbd-c23d-464c-94be-7e067771748a)) + (pin "2" (uuid c2e15ae7-3eb7-43c2-97a3-ad1203dc17c4)) + (pin "3" (uuid 39a0f657-879e-4770-a067-9e2d40bab0fd)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 312.42 125.73 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 28eed449-8267-40a3-a43c-cf852ad50823) + (property "Reference" "R5" (id 0) (at 316.23 125.7299 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "20" (id 1) (at 316.23 128.2699 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 311.912 127 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 313.69 127 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 9d6cc6f4-98f9-4c37-b2de-95b883df8a50)) + (pin "2" (uuid fe6d414b-2646-4ef4-bf64-9ff9668b40c7)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 109.22 121.92 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 338ed031-d981-413d-bef9-a421c377b38e) + (property "Reference" "Q4" (id 0) (at 114.3 120.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 114.3 123.1899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 114.3 124.46 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 109.22 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2dba77d3-4e79-48ce-b61c-a2fe0ef04a2b)) + (pin "2" (uuid e81849dd-e93d-47c8-bb4f-acecb78757e0)) + (pin "3" (uuid fe8b89d7-742b-4b24-817f-1b1b09f1977c)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 349.25 172.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 3e33aaec-2ee4-4633-a577-dbf3975522a4) + (property "Reference" "Q29" (id 0) (at 354.2881 171.4499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 354.2881 173.9899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 354.33 170.18 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 349.25 172.72 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 304d0894-4576-48b6-b120-8a4a4df301e6)) + (pin "2" (uuid c635711b-f7bf-4fc2-ad51-c962d2318ee7)) + (pin "3" (uuid 4dffba1d-6ab7-43ee-9626-541d2a585a21)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 290.83 88.9 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 42e6bced-e977-4d4e-a0ac-055add0dd259) + (property "Reference" "Q23" (id 0) (at 285.75 87.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 285.75 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 285.75 91.44 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 290.83 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid db07bcb7-4f9c-4dcd-a001-2cb6b8612a25)) + (pin "2" (uuid 5dc945c3-3ce0-4cb0-b4c7-c7cb424d58bc)) + (pin "3" (uuid 6e50dc50-e3a6-487b-b2a5-ee709ad577dc)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 285.75 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 49dd43f4-04a0-41d6-aeb9-83d174565dc5) + (property "Reference" "Q22" (id 0) (at 290.83 125.7299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 290.83 128.2699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 290.83 124.46 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 285.75 127 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c0c90b5f-ec15-4169-a99b-59858c9d291c)) + (pin "2" (uuid c7ecd329-6e0e-4656-9f17-6a809ca52a07)) + (pin "3" (uuid 8f724ea6-bc50-4711-b8ac-90fc5182669a)) + ) + + (symbol (lib_id "eSim_Analog:zener") (at 224.79 133.35 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4a2f85ca-070e-41f1-9035-dc12ce06a893) + (property "Reference" "U2" (id 0) (at 228.6 130.175 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Value" "zener" (id 1) (at 228.6 133.985 90) + (effects (font (size 1.524 1.524)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 224.79 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 224.79 132.08 0) + (effects (font (size 1.524 1.524))) + ) + (pin "IN" (uuid 64cafa5e-c9cb-4924-981a-ae503452b699)) + (pin "OUT" (uuid 30c1534a-1639-469d-97e5-fc02d5726e47)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 40.64 58.42 0) (unit 7) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 502e3496-8297-4d68-beb9-ed29630e7b13) + (property "Reference" "U1" (id 0) (at 41.275 53.34 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 41.275 55.88 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 40.64 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 40.64 58.42 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2665a13f-cfd8-4248-a1a0-7762bbffd69c)) + (pin "2" (uuid 16a4b2fb-a2d4-4f3d-b845-ee1237336bb9)) + (pin "3" (uuid 2dc40059-94c6-4d50-b9eb-ff1836670ffe)) + (pin "4" (uuid bd166912-644c-4be1-8419-8a3a3b78233b)) + (pin "5" (uuid c28cf91b-d7a5-4fb7-b5ef-25853dfabfc0)) + (pin "6" (uuid 91a2de47-19d7-4827-8a58-3aa09283b2bc)) + (pin "7" (uuid 9fcef0ba-3c2a-495e-b532-505d086df7f1)) + (pin "8" (uuid 25107c0d-5481-4f5d-9ac6-37a39a62f5bf)) + (pin "9" (uuid c3404e37-2406-4f10-9c03-746eaf720eeb)) + (pin "10" (uuid 9e922c7d-a328-4532-b44f-5300890bcd10)) + (pin "11" (uuid fff91e3d-0570-4e53-9fde-ccbc1345a302)) + (pin "12" (uuid 371e2754-d620-41a6-96d1-66629aef0147)) + (pin "13" (uuid 21aee400-c767-4196-a22f-8d5cd90a35f9)) + (pin "14" (uuid f2f44a22-7e93-44b9-b857-131d64aab106)) + (pin "15" (uuid 265159e5-b1f9-4ad5-b1dc-352a2ddaf73b)) + (pin "16" (uuid c2798c75-9834-4d6d-a51d-533e935e3c90)) + (pin "17" (uuid 4dee86af-181a-4812-879e-b9308b18792e)) + (pin "18" (uuid acdc95cc-113e-4a3e-a210-741ae7958d39)) + (pin "19" (uuid b445a17b-40ad-4b99-9cff-13830ed01ece)) + (pin "20" (uuid c96d7fa8-5137-4717-a7ab-3e4023f30791)) + (pin "21" (uuid 5346bc1e-3187-4590-bd5c-5ad9f7a797d1)) + (pin "22" (uuid 63998185-015d-4348-b587-7ad3a2e9d9b2)) + (pin "23" (uuid c7efde78-82ce-4739-8ce3-63a45591c4f3)) + (pin "24" (uuid 06adffa7-22cd-4c84-a857-766e5d5ad46f)) + (pin "25" (uuid 6f4f0aa9-ea28-4079-a8a2-0ebd8ed8c2fd)) + (pin "26" (uuid 771524d6-d2cf-487c-b560-7a369fc14c44)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 200.66 229.87 90) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5b841c15-c03b-46d1-a90b-d8f2c778623b) + (property "Reference" "U1" (id 0) (at 203.2 228.6 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 203.2 231.14 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 200.66 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 200.66 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f79e3884-38c3-456d-9b9f-e9109a5755bb)) + (pin "2" (uuid b8e6def8-2827-4fd8-903f-a2e69d086462)) + (pin "3" (uuid b9166cea-f12a-4662-9d44-8a4bdb3450dd)) + (pin "4" (uuid 60ff2844-13e9-4abc-b8d9-31f413b03d38)) + (pin "5" (uuid 56f992c0-608e-4dc8-a607-a06dbf8a0bba)) + (pin "6" (uuid 8d1db902-c819-4208-aae7-7e531adf2336)) + (pin "7" (uuid 696600d1-2e25-408a-a2ab-e6ee5bb83a3c)) + (pin "8" (uuid abf20bfa-a91a-425c-8a05-741f6f358065)) + (pin "9" (uuid d8c39c8a-dc79-4d4b-877c-ba049aa61a7e)) + (pin "10" (uuid 9af3020b-0a8c-4c2a-adab-60c25b0ec00d)) + (pin "11" (uuid 8d4d19b7-85f9-42f3-a0a1-be8576554468)) + (pin "12" (uuid 4ffeddbd-bafa-4357-aa31-d406c0a82cf8)) + (pin "13" (uuid 958dda5b-bdc2-48d2-9425-9e5a6f6bbb59)) + (pin "14" (uuid 7517c0f1-03fe-41c2-9122-9294134c64eb)) + (pin "15" (uuid 1522909f-fa69-4f29-b3bb-f728a8bef269)) + (pin "16" (uuid 99716f83-8e75-4856-81f6-b4ebef839845)) + (pin "17" (uuid ac49ef12-b3e3-4327-acbd-ccde37ddb29a)) + (pin "18" (uuid 2347fcbe-68ec-482a-a84e-f3e2b9ea9f7f)) + (pin "19" (uuid f28bd126-76d8-40d4-9562-fc8d49ff8dbc)) + (pin "20" (uuid ebdf5c93-b768-4fe5-8997-aa9618c4ccf6)) + (pin "21" (uuid 9eba86b1-f81c-42f6-bc8e-8a361e00ec45)) + (pin "22" (uuid d337dc73-6e09-4f3e-bef8-17d1f73536d6)) + (pin "23" (uuid 73431c17-0a2c-4dd9-97f3-b310abb857f1)) + (pin "24" (uuid 3099a9bb-b247-4f6a-a885-4c3870fcb277)) + (pin "25" (uuid 5a32da20-338e-407c-bb97-5c2861bdef71)) + (pin "26" (uuid 1e227985-2105-4bbb-a6a9-d93767af4642)) + ) + + (symbol (lib_id "eSim_Devices:jfet_n") (at 354.33 151.13 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 657e4a22-c1d2-4e74-b37d-7a3d9a46b3f8) + (property "Reference" "J1" (id 0) (at 349.25 149.8599 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "jfet_n" (id 1) (at 349.25 152.3999 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 349.25 148.59 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 354.33 151.13 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 991c5c18-57d6-4d01-a785-36aabb0462fe)) + (pin "2" (uuid c31d57d7-9129-4114-9827-57ab3420a037)) + (pin "3" (uuid 0c6ca92e-e2b2-45e9-b50e-2173761e5f50)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 274.32 135.89 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67c4bfd2-c9d4-46ec-a494-2a8087fc0104) + (property "Reference" "R4" (id 0) (at 278.13 135.8899 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "50k" (id 1) (at 278.13 138.4299 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 273.812 137.16 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 275.59 137.16 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 47685400-695d-4236-a3cb-cfa7335112cd)) + (pin "2" (uuid 2f359597-4dc2-4edd-9735-c022e8779411)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 251.46 170.18 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 68e081f4-eec2-4306-bd5e-55467d38b12b) + (property "Reference" "R3" (id 0) (at 250.19 165.1 0)) + (property "Value" "1k" (id 1) (at 250.19 167.64 0)) + (property "Footprint" "" (id 2) (at 250.19 169.672 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 250.19 171.45 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 1c3d91f7-f182-45a7-aac5-ec53547c0deb)) + (pin "2" (uuid 19f2c7fa-6e55-4837-81fc-a78b0eee662f)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 114.3 180.34 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d92114b-e179-4368-8431-9581ee56747a) + (property "Reference" "Q5" (id 0) (at 109.22 179.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 109.22 181.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 109.22 177.8 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 114.3 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e6399d45-0073-4312-8401-fa8f326ed85e)) + (pin "2" (uuid 2f6d32cd-3c3f-4bc6-b497-e458f12b6603)) + (pin "3" (uuid cf0c2127-a40d-45eb-8447-3bf7d1ea1ca2)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 337.82 189.23 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6da0cf2b-ea2f-40ed-ba1b-3b7f179ee967) + (property "Reference" "R6" (id 0) (at 341.63 189.2299 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "3k" (id 1) (at 341.63 191.7699 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 337.312 190.5 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 339.09 190.5 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid 9535050c-b021-4e84-b5c2-feb2d5a30d34)) + (pin "2" (uuid 62289f52-b48a-42eb-a302-0232263cedf8)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 165.1 121.92 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 718d6b3d-3568-4092-9db0-07556747b4bc) + (property "Reference" "Q10" (id 0) (at 160.02 120.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 160.02 123.1899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 160.02 124.46 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 165.1 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7ed605e0-36b8-4ba0-906e-18be64bb8384)) + (pin "2" (uuid 4ec3ce47-e0a1-428b-8d3f-1462e63a54cf)) + (pin "3" (uuid cf93d37b-434b-4de6-b703-382534a2dc88)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 147.32 180.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7cff63cc-1ec9-4198-8bb8-b41824f25c87) + (property "Reference" "Q7" (id 0) (at 152.4 179.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 152.4 181.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 152.4 177.8 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 147.32 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c0cf6751-0d86-4891-8945-20cbfb5d845c)) + (pin "2" (uuid 5c90a976-4650-4e05-a2b9-1ca70499e4b6)) + (pin "3" (uuid 03c2c294-3888-4930-97b7-a6df472a1b70)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 29.21 147.32 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8101aed9-159c-4408-8f33-edd2acf60217) + (property "Reference" "U1" (id 0) (at 29.845 142.24 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 29.845 144.78 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 29.21 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 29.21 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c7f19f9a-45c5-42af-80e8-d1aa08feaeda)) + (pin "2" (uuid de5b6a0a-6078-4b60-8a76-409ee990c326)) + (pin "3" (uuid 02b30d6c-fe79-4056-824a-df0c163b0221)) + (pin "4" (uuid fb7ab5e0-4173-4fd6-83b4-daa0b5bfe031)) + (pin "5" (uuid d39e0a11-f17e-40f5-8cc8-da87a9ffc493)) + (pin "6" (uuid edc6dcd5-11b1-46cf-8b18-72f077e234e9)) + (pin "7" (uuid c64c8e3b-275f-4873-bae3-f96528dab778)) + (pin "8" (uuid a260f46e-7942-46c3-9900-3845ecc40d1d)) + (pin "9" (uuid 858418d8-b9ba-4a75-a0cf-1bb31dc955fd)) + (pin "10" (uuid 175c4de8-c6bf-4c27-afa2-2bf0b8637a7f)) + (pin "11" (uuid 34718620-466d-4c74-8bc9-ad097fb383f6)) + (pin "12" (uuid 62b1a463-bd8d-425b-8c41-362bcdd354ad)) + (pin "13" (uuid 742b3d81-35be-47e5-b0ee-16ef9ce4d127)) + (pin "14" (uuid 0754fa29-a24d-46bd-ba67-8aec2f772941)) + (pin "15" (uuid da536c08-e442-47df-a584-c0ee439d7766)) + (pin "16" (uuid e8bee050-626c-4840-bc86-251c8ade4c03)) + (pin "17" (uuid fe91949e-c907-42ca-b39d-010f7eca4fcf)) + (pin "18" (uuid aaf22463-c072-4db0-9d66-c9a5d6a73193)) + (pin "19" (uuid d3bacaa9-b996-4e0c-94ab-17d2a6b31eda)) + (pin "20" (uuid c3f43697-cf6d-4d3d-934b-2bbff36d136f)) + (pin "21" (uuid 97fbeb08-e98d-4f18-8909-f8bbabc56140)) + (pin "22" (uuid fa88dd63-5115-46f0-9af4-a49fc43f7bce)) + (pin "23" (uuid ebd3f42e-7622-4f18-a617-38a813a6c625)) + (pin "24" (uuid eeb3033e-9113-47ed-acf5-64eddcd6e78a)) + (pin "25" (uuid ffb1e912-92ec-4dac-932f-5cb534198e8c)) + (pin "26" (uuid 4338ed5c-c981-4bbe-a0ae-85d2729abda3)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 111.76 229.87 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 86670928-fe5a-4d83-9f8c-10551e49b38d) + (property "Reference" "U1" (id 0) (at 114.3 228.6 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 114.3 231.14 90) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 111.76 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 111.76 229.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f1de9209-7977-46de-b345-5c99a0b1e748)) + (pin "2" (uuid ba9b8155-5b2b-48ec-832c-b2dc073d0499)) + (pin "3" (uuid 40917a50-7ac0-4e8e-85eb-cf3866ae73f0)) + (pin "4" (uuid be55d01f-7a9b-4ec8-8a07-e68958112305)) + (pin "5" (uuid 7aacc75b-673a-4fd0-b160-a727175a2214)) + (pin "6" (uuid b2b892c1-70fe-4406-a7ba-e689e44593ef)) + (pin "7" (uuid a8287447-4421-4a29-8391-7151476453cf)) + (pin "8" (uuid 1e6be442-c512-4c7f-be31-a1b8ec03046b)) + (pin "9" (uuid d4a74551-d5ce-4eec-93bb-17ed44c5ccf7)) + (pin "10" (uuid 886d3e47-edb8-4aab-b256-8ed7bd3b67c3)) + (pin "11" (uuid 1fac5d14-2427-40d2-9f14-1a767ed7400b)) + (pin "12" (uuid a9dacf24-2dc0-4607-b13c-881c7dc20bf0)) + (pin "13" (uuid f384f0e0-be6a-4354-923e-6aa2ebd5d389)) + (pin "14" (uuid ab4f94d5-3bd0-4c7a-bdec-12e8298b5f82)) + (pin "15" (uuid 431feaab-70d3-438d-8545-7c0a6aae4297)) + (pin "16" (uuid b99cc8cd-a750-435d-a3d6-3df4c02e5097)) + (pin "17" (uuid b3711f85-5491-4efd-b0e0-e1c2af8e5178)) + (pin "18" (uuid f1be46d7-3e0c-4cf4-ad25-39927e15d7d5)) + (pin "19" (uuid d3854ab9-307d-46c9-b0a4-8b82da798569)) + (pin "20" (uuid 1fe494d6-f6b3-471b-80d2-8924cf981469)) + (pin "21" (uuid bf161212-5e52-465a-a54a-f2ce4460660c)) + (pin "22" (uuid c3d853cc-c2c5-4a1f-99dd-6248f281cdda)) + (pin "23" (uuid 7d20d162-3286-4a71-93b7-cff4fcd79954)) + (pin "24" (uuid 82f3dbbc-144c-45f8-965a-b1cb0ed313a7)) + (pin "25" (uuid 50766dce-4f0b-481d-8e54-daabb92a5770)) + (pin "26" (uuid 2eab8f6a-7c03-4fb7-9a51-2d86342f1eec)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 175.26 121.92 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 955ec105-bf9b-4742-9a1f-1c474da6d494) + (property "Reference" "Q11" (id 0) (at 170.18 120.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 170.18 123.1899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 170.18 124.46 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 175.26 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 6457c1c1-e9ae-484b-8528-1847ac5fe5ff)) + (pin "2" (uuid a41542ee-dfeb-44dd-9c79-906530f81d27)) + (pin "3" (uuid c121e8ff-622c-491f-b469-bd14363338bc)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 209.55 165.1 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9809281a-5ac5-4f85-9f1a-1a55afbe2c05) + (property "Reference" "Q15" (id 0) (at 214.63 163.8299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 214.63 166.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 214.63 167.64 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 209.55 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid fdefc34e-e454-4175-aa5c-cd698ecf9396)) + (pin "2" (uuid 2f7ba6dd-b833-433e-a1db-a66d2a822ab1)) + (pin "3" (uuid 07d5a575-5023-431d-8d78-f060354c4aee)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 298.45 158.75 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a0c6b4f7-018d-4685-86d7-2d1fc6f97c95) + (property "Reference" "Q24" (id 0) (at 303.53 157.4799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 303.53 160.0199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 303.53 156.21 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 298.45 158.75 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c10954dc-3687-4f50-8e55-b5e48bbdc969)) + (pin "2" (uuid 59a3bcb2-7f5e-4b0f-ad2b-553e4a5ed690)) + (pin "3" (uuid a6088734-cc98-4cbc-86eb-00e4fe65db09)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 252.73 88.9 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a7207c7a-741c-4f50-955c-ecf30c4fe6a5) + (property "Reference" "Q18" (id 0) (at 247.65 87.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 247.65 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 247.65 91.44 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 252.73 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid d4b74ded-2f1e-4835-be78-6f85d5b7ac79)) + (pin "2" (uuid 398df967-82e5-486d-b9f3-6fe4a7d66103)) + (pin "3" (uuid 8491970b-beb0-4210-b6c7-ae83f6546f53)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 165.1 88.9 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a819a75c-df70-42ad-ac9a-d5c6cb4224b4) + (property "Reference" "Q9" (id 0) (at 160.02 87.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 160.02 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 160.02 91.44 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 165.1 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f9e7d027-4285-4ca0-ba5c-117617b543ae)) + (pin "2" (uuid e326260b-dd63-4a14-b8c4-5b75693affb2)) + (pin "3" (uuid 3629bbca-563f-44ed-bd92-9ed6c5a2dc4c)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 40.64 49.53 0) (unit 8) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aab2e56d-d27c-4129-a58e-00665c18e03c) + (property "Reference" "U1" (id 0) (at 41.275 44.45 0) + (effects (font (size 0.762 0.762))) + ) + (property "Value" "PORT" (id 1) (at 41.275 46.99 0) + (effects (font (size 0.762 0.762))) + ) + (property "Footprint" "" (id 2) (at 40.64 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 40.64 49.53 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 877e248d-e0f2-4fc8-a40b-64f113869448)) + (pin "2" (uuid 117bb45f-844f-4f97-86dc-1f72857bf11a)) + (pin "3" (uuid cf8b6abb-34c5-4a68-94c3-cbe30798528b)) + (pin "4" (uuid a2b34428-2983-446a-bd0b-4bc98c4cbc77)) + (pin "5" (uuid d2ca1c87-0b6c-4f25-a6f7-d09c70576ddf)) + (pin "6" (uuid 0618ca09-2c60-4922-bcdf-ae4fc46e0cac)) + (pin "7" (uuid bb5f4184-ad75-4583-981d-1ea364f678d3)) + (pin "8" (uuid 0a5b1588-064c-461a-a5c6-38347f4efaa6)) + (pin "9" (uuid 09d326f0-bc05-4c01-bfbb-347fbfc80836)) + (pin "10" (uuid 1ebe2430-4f96-4e0b-ae39-23790bdb1880)) + (pin "11" (uuid da4e3088-8625-4d48-a9dc-9b9bd8e6119a)) + (pin "12" (uuid 4e4612a3-4f40-40dd-94b7-e73052c0ce1d)) + (pin "13" (uuid e221e64d-3106-4497-896e-5d7965ad3dbf)) + (pin "14" (uuid 65911557-c788-424c-8327-e143c2d26ccc)) + (pin "15" (uuid 9e4e079f-cd70-472e-92a2-82f47de0747a)) + (pin "16" (uuid 16a2d695-75e9-4051-aa74-d5a73391195f)) + (pin "17" (uuid f154188e-f8e4-4620-aa20-90c70d4158cd)) + (pin "18" (uuid 00ee59b7-62fe-4d8b-819b-770408936e07)) + (pin "19" (uuid fe4dcbb1-ce44-459a-8084-af43307d40ad)) + (pin "20" (uuid 863757a3-edf9-4014-bfa2-2bcb9560f893)) + (pin "21" (uuid 389376ac-a3dd-4b03-8dc0-88868fb02a79)) + (pin "22" (uuid 05eba49f-03e0-4129-96a2-ea6934f398b0)) + (pin "23" (uuid 1b2c6077-3b11-4e6f-a212-ecbc8cc90738)) + (pin "24" (uuid 6cb0471c-ed78-4037-9f5e-b54fd22651be)) + (pin "25" (uuid 2f9b80e1-7dbd-47a3-9b33-0f18ecc973d1)) + (pin "26" (uuid 564df048-af78-41a2-91da-6f44992d24a0)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 76.2 165.1 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid aba8265b-931f-4187-9dfc-01e2ee7a743d) + (property "Reference" "Q1" (id 0) (at 71.12 163.8299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 71.12 166.3699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 71.12 167.64 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 76.2 165.1 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 3e1d6918-99d2-4007-bae1-b6d52c347410)) + (pin "2" (uuid eb7ce149-7d8b-4993-b38e-734fea59f215)) + (pin "3" (uuid b6928aa4-877e-44b9-9d00-c0455d9e9e59)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 323.85 118.11 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ac84f0dd-3915-4df3-aed9-302a0342b491) + (property "Reference" "Q27" (id 0) (at 328.93 116.8399 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 328.93 119.3799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 328.93 115.57 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 323.85 118.11 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 1a9e1042-8069-43b9-9b2e-eb2dcbbce3aa)) + (pin "2" (uuid d26973e2-51e5-4e58-b0fc-722aa2b2c931)) + (pin "3" (uuid 03ce10a7-9e56-49c6-934c-d2f1eee7a4e4)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 91.44 147.32 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b05fa03d-be9d-42e1-a15f-ad22a2dd452d) + (property "Reference" "Q2" (id 0) (at 96.52 146.0499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 96.52 148.5899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 96.52 149.86 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 91.44 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 7dee322a-47dd-41f0-9da0-21e2bfa8c9d2)) + (pin "2" (uuid 1b8858c2-44e6-4e8a-8ef6-5fd9fde89fc4)) + (pin "3" (uuid 09682767-3035-4419-9b31-2879ed7eb882)) + ) + + (symbol (lib_id "eSim_Miscellaneous:PORT") (at 377.19 135.89 180) (unit 6) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b0a0cf86-b6fd-4c58-bc66-4206ed2ac21a) + (property "Reference" "U1" (id 0) (at 381 135.255 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Value" "PORT" (id 1) (at 381 137.795 0) + (effects (font (size 0.762 0.762)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 377.19 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 377.19 135.89 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid c534d68e-4133-4b21-9637-d590124b855e)) + (pin "2" (uuid 101c81d8-a566-47e8-8dc9-f48d6d1d0ddd)) + (pin "3" (uuid 08b673fb-6508-426d-8233-5f3a0dd16b7e)) + (pin "4" (uuid 62d4eaea-f880-4149-ba01-dc1ce98256bc)) + (pin "5" (uuid 495b3414-0c16-4161-8e7f-bdb60ec4cd0c)) + (pin "6" (uuid 790945f0-9eaa-4c35-8be1-5ebf43ec813d)) + (pin "7" (uuid d5184e57-49dd-46bc-84f4-f733ba574318)) + (pin "8" (uuid 736316b6-18af-4959-9481-c0edc02c4c49)) + (pin "9" (uuid b81f1082-d933-4753-8909-8741be8f2a46)) + (pin "10" (uuid 69373170-4399-4612-8fb9-537f5af5cd80)) + (pin "11" (uuid 01b693ea-aaa3-456e-8c95-321d48a986f6)) + (pin "12" (uuid 99d4fbbb-8427-4404-9cd4-cb32b85f36ae)) + (pin "13" (uuid 59dc5776-39bb-4f90-80c2-5afa5c6f19f2)) + (pin "14" (uuid 2785870b-1de6-4ebd-b043-fea533df1274)) + (pin "15" (uuid 82a1ebc9-cca0-4a0c-8fdc-13a5efd55553)) + (pin "16" (uuid ee33ff20-a8df-43c5-820f-ddcd9a010e9d)) + (pin "17" (uuid 0c128fbe-a3f7-4cd8-9d45-1015c2659ac9)) + (pin "18" (uuid 3dd48e36-22ec-4e98-9885-5e016767b48e)) + (pin "19" (uuid d9abcea3-7e3a-431f-8d58-18066e4fbc13)) + (pin "20" (uuid a7411dbf-42f0-4914-a93b-14991ac9c546)) + (pin "21" (uuid 2152a49e-09af-4fa3-9627-3f0f6d949ace)) + (pin "22" (uuid a0425f5e-8cb7-444c-9779-cddf64b71dba)) + (pin "23" (uuid ff722a43-50f9-4d9a-b733-30b9c2df9898)) + (pin "24" (uuid 559727e2-fd30-4693-a9fd-f8582613c2d6)) + (pin "25" (uuid 59455d95-f96d-4687-9239-767f9aadac0b)) + (pin "26" (uuid 4ae2c72c-1332-4118-8a70-8229a5bf1365)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 190.5 147.32 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b0a41043-8b84-42db-a30e-be3ca7e45d15) + (property "Reference" "Q14" (id 0) (at 185.42 146.0499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 185.42 148.5899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 185.42 149.86 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 190.5 147.32 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 657ed23f-bea2-4bf2-ae09-9fef634b1f1f)) + (pin "2" (uuid 33273867-abc9-46a1-9655-f140e594206b)) + (pin "3" (uuid b54aafe4-06cf-46a9-83c7-70b034d8e099)) + ) + + (symbol (lib_id "eSim_Devices:capacitor_polarised") (at 203.2 133.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b4fd805b-bc45-4846-92ed-54e6421a5b32) + (property "Reference" "C1" (id 0) (at 207.01 131.4449 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "5p" (id 1) (at 207.01 133.9849 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 203.2 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 203.2 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5ff932d0-dcf5-44d3-a966-0ab718dcb57d)) + (pin "2" (uuid ed06508a-5fc2-4e46-931a-c392c12f875c)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 127 180.34 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b8b613b5-c778-4ec7-8c6c-a128b284be63) + (property "Reference" "Q6" (id 0) (at 121.92 179.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 121.92 181.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 121.92 177.8 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 127 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8b2b8080-3ced-405d-857f-fb762d0a6d25)) + (pin "2" (uuid f195b9a5-0516-49fb-bb6b-0241a39cfe3d)) + (pin "3" (uuid 032d5be7-10ac-472e-b894-054891cf0413)) + ) + + (symbol (lib_id "eSim_Devices:resistor") (at 163.83 68.58 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid baeefe2a-bfd7-4bdb-a1c8-8a0bad2f9d98) + (property "Reference" "R1" (id 0) (at 165.1 66.0399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1k" (id 1) (at 165.1 68.5799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 164.338 67.31 0) + (effects (font (size 0.762 0.762))) + ) + (property "Datasheet" "" (id 3) (at 162.56 67.31 90) + (effects (font (size 0.762 0.762))) + ) + (pin "1" (uuid d7ec540c-891e-4601-b177-ff7aadbd9ab7)) + (pin "2" (uuid 0afac430-af1b-492f-8f5f-3f857405181e)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 273.05 171.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bc41b196-f793-4652-96dd-7f696c007d79) + (property "Reference" "Q20" (id 0) (at 278.13 170.1799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 278.13 172.7199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 278.13 168.91 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 273.05 171.45 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 2e186348-451d-4ea7-9397-d5612d3815f3)) + (pin "2" (uuid 5708b158-87b3-4ad6-9038-3bae4d17b5a9)) + (pin "3" (uuid a0dbf63b-de69-4649-909b-c18be2805dd2)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 99.06 121.92 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bd75ee50-bb0d-4d66-9072-93b656172967) + (property "Reference" "Q3" (id 0) (at 104.14 120.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 104.14 123.1899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 104.14 124.46 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 99.06 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid bbd22fda-aabb-4321-a539-74f8c93d65e1)) + (pin "2" (uuid 823675df-068b-4d16-aa68-07c0b8dbc5f3)) + (pin "3" (uuid f66e9ae7-0bcc-4c9a-94b1-96f03e7c6457)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 240.03 88.9 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c3f49a1b-fcf6-4b41-85e1-a95fc54d8609) + (property "Reference" "Q17" (id 0) (at 234.95 87.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 234.95 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 234.95 91.44 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 240.03 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 80d8d0fe-33fe-464d-bbcf-312011fb447a)) + (pin "2" (uuid ab765965-8362-4803-bfa2-82074e8c514d)) + (pin "3" (uuid 02b50329-0705-4eed-a0e1-47d072385310)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 177.8 88.9 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8045ec5-7a7e-4188-897c-e5466bfd93e7) + (property "Reference" "Q12" (id 0) (at 172.72 87.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 172.72 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 172.72 91.44 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 177.8 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid f60fa775-7bc2-46fb-8d99-7ccc3264aa79)) + (pin "2" (uuid 315576f4-b63a-4919-880e-1799425e5925)) + (pin "3" (uuid 9877c171-0142-40d4-a8c9-0ca8e8383ea0)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 160.02 180.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e40ad254-61f1-4ed3-8226-3b4babee5d9c) + (property "Reference" "Q8" (id 0) (at 165.1 179.0699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 165.1 181.6099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 165.1 177.8 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 160.02 180.34 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 910ba60c-8f94-451e-ae2b-c12da337f3c9)) + (pin "2" (uuid a01401f5-ac28-4977-8fed-25de3546d9b1)) + (pin "3" (uuid 02987916-e0cb-437c-823f-81c8a038960c)) + ) + + (symbol (lib_id "eSim_Devices:eSim_PNP") (at 190.5 88.9 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f5d2b77e-b450-4faf-a6d3-c5a9bd757a52) + (property "Reference" "Q13" (id 0) (at 185.42 87.6299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_PNP" (id 1) (at 185.42 90.1699 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 185.42 91.44 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 190.5 88.9 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid ff3d6b08-1a81-4489-8458-b1ae98473104)) + (pin "2" (uuid 9e55e43f-a82e-4665-bba8-a66feacdec25)) + (pin "3" (uuid 119e6ee5-4788-410d-92e5-28aa5ab796f2)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 311.15 107.95 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f8d3cb73-a3f6-4525-88b1-e8f36b9f6547) + (property "Reference" "Q25" (id 0) (at 316.23 106.6799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 316.23 109.2199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 316.23 105.41 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 311.15 107.95 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 06964f37-8b38-440d-8299-3a10b02553b2)) + (pin "2" (uuid 53905cc0-9c91-4a48-82f8-557291593cc1)) + (pin "3" (uuid 08fa7514-e0e6-45e0-8f74-8a22f5df92f6)) + ) + + (symbol (lib_id "eSim_Devices:eSim_NPN") (at 255.27 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9a0af72-c8b1-482e-85ce-962e7b7fd33a) + (property "Reference" "Q19" (id 0) (at 260.35 120.6499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_NPN" (id 1) (at 260.35 123.1899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 260.35 119.38 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 255.27 121.92 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 84c25b89-4d3a-4358-82da-74a4760f483a)) + (pin "2" (uuid 3aa02922-6482-4912-9365-ed47525aae02)) + (pin "3" (uuid a28101bd-f012-4b5d-9c47-471c66194e04)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/b4fd805b-bc45-4846-92ed-54e6421a5b32" + (reference "C1") (unit 1) (value "5p") (footprint "") + ) + (path "/657e4a22-c1d2-4e74-b37d-7a3d9a46b3f8" + (reference "J1") (unit 1) (value "jfet_n") (footprint "") + ) + (path "/aba8265b-931f-4187-9dfc-01e2ee7a743d" + (reference "Q1") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/b05fa03d-be9d-42e1-a15f-ad22a2dd452d" + (reference "Q2") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/bd75ee50-bb0d-4d66-9072-93b656172967" + (reference "Q3") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/338ed031-d981-413d-bef9-a421c377b38e" + (reference "Q4") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/6d92114b-e179-4368-8431-9581ee56747a" + (reference "Q5") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/b8b613b5-c778-4ec7-8c6c-a128b284be63" + (reference "Q6") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/7cff63cc-1ec9-4198-8bb8-b41824f25c87" + (reference "Q7") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/e40ad254-61f1-4ed3-8226-3b4babee5d9c" + (reference "Q8") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/a819a75c-df70-42ad-ac9a-d5c6cb4224b4" + (reference "Q9") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/718d6b3d-3568-4092-9db0-07556747b4bc" + (reference "Q10") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/955ec105-bf9b-4742-9a1f-1c474da6d494" + (reference "Q11") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/c8045ec5-7a7e-4188-897c-e5466bfd93e7" + (reference "Q12") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/f5d2b77e-b450-4faf-a6d3-c5a9bd757a52" + (reference "Q13") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/b0a41043-8b84-42db-a30e-be3ca7e45d15" + (reference "Q14") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/9809281a-5ac5-4f85-9f1a-1a55afbe2c05" + (reference "Q15") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/02733c64-4c4f-4d3e-b2d9-d1812bd73a01" + (reference "Q16") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/c3f49a1b-fcf6-4b41-85e1-a95fc54d8609" + (reference "Q17") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/a7207c7a-741c-4f50-955c-ecf30c4fe6a5" + (reference "Q18") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/f9a0af72-c8b1-482e-85ce-962e7b7fd33a" + (reference "Q19") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/bc41b196-f793-4652-96dd-7f696c007d79" + (reference "Q20") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/119bfb34-db49-4626-ab3a-64c89f35628a" + (reference "Q21") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/49dd43f4-04a0-41d6-aeb9-83d174565dc5" + (reference "Q22") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/42e6bced-e977-4d4e-a0ac-055add0dd259" + (reference "Q23") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/a0c6b4f7-018d-4685-86d7-2d1fc6f97c95" + (reference "Q24") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/f8d3cb73-a3f6-4525-88b1-e8f36b9f6547" + (reference "Q25") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/13283ce0-ef22-445c-addb-8f0a4b7f94b3" + (reference "Q26") (unit 1) (value "eSim_PNP") (footprint "") + ) + (path "/ac84f0dd-3915-4df3-aed9-302a0342b491" + (reference "Q27") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/22ddfbb5-e4ed-4868-8164-e17873319538" + (reference "Q28") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/3e33aaec-2ee4-4633-a577-dbf3975522a4" + (reference "Q29") (unit 1) (value "eSim_NPN") (footprint "") + ) + (path "/baeefe2a-bfd7-4bdb-a1c8-8a0bad2f9d98" + (reference "R1") (unit 1) (value "1k") (footprint "") + ) + (path "/07f865b8-9a98-4713-8148-6c227986000a" + (reference "R2") (unit 1) (value "1k") (footprint "") + ) + (path "/68e081f4-eec2-4306-bd5e-55467d38b12b" + (reference "R3") (unit 1) (value "1k") (footprint "") + ) + (path "/67c4bfd2-c9d4-46ec-a494-2a8087fc0104" + (reference "R4") (unit 1) (value "50k") (footprint "") + ) + (path "/28eed449-8267-40a3-a43c-cf852ad50823" + (reference "R5") (unit 1) (value "20") (footprint "") + ) + (path "/6da0cf2b-ea2f-40ed-ba1b-3b7f179ee967" + (reference "R6") (unit 1) (value "3k") (footprint "") + ) + (path "/86670928-fe5a-4d83-9f8c-10551e49b38d" + (reference "U1") (unit 1) (value "PORT") (footprint "") + ) + (path "/8101aed9-159c-4408-8f33-edd2acf60217" + (reference "U1") (unit 2) (value "PORT") (footprint "") + ) + (path "/5b841c15-c03b-46d1-a90b-d8f2c778623b" + (reference "U1") (unit 3) (value "PORT") (footprint "") + ) + (path "/1229a8ee-4c09-400a-9990-b0f262a52e0f" + (reference "U1") (unit 4) (value "PORT") (footprint "") + ) + (path "/22461c5b-321b-4ac3-a7f9-92e53eabf866" + (reference "U1") (unit 5) (value "PORT") (footprint "") + ) + (path "/b0a0cf86-b6fd-4c58-bc66-4206ed2ac21a" + (reference "U1") (unit 6) (value "PORT") (footprint "") + ) + (path "/502e3496-8297-4d68-beb9-ed29630e7b13" + (reference "U1") (unit 7) (value "PORT") (footprint "") + ) + (path "/aab2e56d-d27c-4129-a58e-00665c18e03c" + (reference "U1") (unit 8) (value "PORT") (footprint "") + ) + (path "/4a2f85ca-070e-41f1-9035-dc12ce06a893" + (reference "U2") (unit 1) (value "zener") (footprint "") + ) + ) +) diff --git a/library/SubcircuitLibrary/uA799/uA799.sub b/library/SubcircuitLibrary/uA799/uA799.sub new file mode 100644 index 000000000..07951169e --- /dev/null +++ b/library/SubcircuitLibrary/uA799/uA799.sub @@ -0,0 +1,50 @@ +* Subcircuit uA799 +.subckt uA799 net-_q5-pad3_ net-_q2-pad2_ net-_q14-pad2_ net-_j1-pad2_ net-_q8-pad3_ net-_q26-pad3_ net-_j1-pad1_ unconnected-_u1-pad8_ +.title kicad schematic +.include NPN.lib +.include PNP.lib +.include NJF.lib +q6 net-_q1-pad2_ net-_q1-pad2_ net-_j1-pad2_ Q2N2222 +q8 net-_c1-pad2_ net-_q1-pad2_ net-_q8-pad3_ Q2N2222 +q7 net-_c1-pad2_ net-_q1-pad2_ net-_j1-pad2_ Q2N2222 +q14 net-_j1-pad2_ net-_q14-pad2_ net-_q10-pad2_ Q2N2907A +q15 net-_j1-pad2_ net-_c1-pad2_ net-_q13-pad1_ Q2N2907A +q17 net-_q16-pad1_ net-_q12-pad2_ net-_j1-pad1_ Q2N2907A +q1 net-_j1-pad2_ net-_q1-pad2_ net-_q1-pad3_ Q2N2907A +q5 net-_q1-pad2_ net-_q1-pad2_ net-_q5-pad3_ Q2N2222 +q2 net-_j1-pad2_ net-_q2-pad2_ net-_q2-pad3_ Q2N2907A +q4 net-_q1-pad2_ net-_q2-pad3_ net-_q10-pad3_ Q2N2907A +q3 net-_q2-pad3_ net-_q2-pad3_ net-_q10-pad3_ Q2N2907A +q13 net-_q13-pad1_ net-_q12-pad2_ net-_q12-pad3_ Q2N2907A +q12 net-_q10-pad3_ net-_q12-pad2_ net-_q12-pad3_ Q2N2907A +q9 net-_q1-pad3_ net-_q12-pad2_ net-_q12-pad3_ Q2N2907A +q10 net-_c1-pad2_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +q11 net-_q10-pad2_ net-_q10-pad2_ net-_q10-pad3_ Q2N2907A +r1 net-_q12-pad3_ net-_j1-pad1_ 1k +* u2 net-_j1-pad2_ net-_q16-pad1_ zener +c1 net-_c1-pad1_ net-_c1-pad2_ 5p +j1 net-_j1-pad1_ net-_j1-pad2_ net-_j1-pad3_ J2N3819 +q28 net-_q12-pad2_ net-_j1-pad3_ net-_q28-pad3_ Q2N2222 +q29 net-_j1-pad3_ net-_q28-pad3_ net-_j1-pad2_ Q2N2222 +r6 net-_q28-pad3_ net-_j1-pad2_ 3k +q20 net-_q20-pad1_ net-_q20-pad2_ net-_j1-pad2_ Q2N2222 +q24 net-_c1-pad1_ net-_q24-pad2_ net-_j1-pad2_ Q2N2222 +q25 net-_j1-pad1_ net-_c1-pad1_ net-_q25-pad3_ Q2N2222 +r4 net-_q19-pad3_ net-_q20-pad1_ 50k +q22 net-_c1-pad1_ net-_q19-pad3_ net-_q20-pad1_ Q2N2222 +q26 net-_j1-pad2_ net-_q20-pad1_ net-_q26-pad3_ Q2N2907A +r5 net-_q25-pad3_ net-_q26-pad3_ 20 +q27 net-_c1-pad1_ net-_q25-pad3_ net-_q26-pad3_ Q2N2222 +q21 net-_c1-pad1_ net-_q12-pad2_ net-_j1-pad1_ Q2N2907A +q23 net-_q12-pad2_ net-_q12-pad2_ net-_j1-pad1_ Q2N2907A +q18 net-_c1-pad1_ net-_q12-pad2_ net-_j1-pad1_ Q2N2907A +r2 net-_q24-pad2_ net-_q16-pad3_ 1k +q16 net-_q16-pad1_ net-_q13-pad1_ net-_q16-pad3_ Q2N2222 +q19 net-_c1-pad1_ net-_c1-pad1_ net-_q19-pad3_ Q2N2222 +r3 net-_q20-pad2_ net-_q16-pad3_ 1k +a1 net-_j1-pad2_ net-_q16-pad1_ u2 +* Schematic Name: zener, Ngspice Name: zener +.model u2 zener(v_breakdown=5.6 i_breakdown=2.0e-2 i_sat=1.0e-12 n_forward=1.0 limit_switch=FALSE ) +* Control Statements + +.ends uA799 \ No newline at end of file diff --git a/library/SubcircuitLibrary/uA799/uA799_Previous_Values.xml b/library/SubcircuitLibrary/uA799/uA799_Previous_Values.xml new file mode 100644 index 000000000..36c86076c --- /dev/null +++ b/library/SubcircuitLibrary/uA799/uA799_Previous_Values.xml @@ -0,0 +1 @@ +truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperessecsecseczenerD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\JFET\NJF.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\PNP.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.libD:\FOSSEE\eSim\library\deviceModelLibrary\Transistor\NPN.lib \ No newline at end of file diff --git a/library/deviceModelLibrary/Diode/1N34A/1N34A.lib b/library/deviceModelLibrary/Diode/1N34A/1N34A.lib index 6e3cabf39..adbb503ba 100644 --- a/library/deviceModelLibrary/Diode/1N34A/1N34A.lib +++ b/library/deviceModelLibrary/Diode/1N34A/1N34A.lib @@ -1 +1,2 @@ -.MODEL 1N34A D( Is=0.2u N=1.30 Rs=7 bv=75 Ibv=0.018 Cjo=0.5p Vj=0.10 M=0.27 tt=144n ) \ No newline at end of file +.model 1N34A D(IS=2.6u RS=6.5 N=1.6 CJO=0.8p EG=0.67 BV=75 IBV=1m) +.MODEL 1N34A_1 D( Is=0.2u N=1.30 Rs=7 bv=75 Ibv=0.018 Cjo=0.5p Vj=0.10 M=0.27 tt=144n ) diff --git a/library/deviceModelLibrary/Diode/1N34A/1N34A.xml b/library/deviceModelLibrary/Diode/1N34A/1N34A.xml index e8a194428..4855289a7 100644 --- a/library/deviceModelLibrary/Diode/1N34A/1N34A.xml +++ b/library/deviceModelLibrary/Diode/1N34A/1N34A.xml @@ -1,3 +1,4 @@ +D1N34A2.6u6.51.60.8p0.67751m D 1N34A diff --git a/library/deviceModelLibrary/JFET/2N4393/2N4393.lib b/library/deviceModelLibrary/JFET/2N4393/2N4393.lib new file mode 100644 index 000000000..1d2d426f8 --- /dev/null +++ b/library/deviceModelLibrary/JFET/2N4393/2N4393.lib @@ -0,0 +1 @@ +.MODEL 2N4393 NJF (VTO=-1.4 BETA=0.0091 LAMBDA=0.006 RD=1 RS=1 CGS=4.1p CGD=4.6p PB=1 IS=205f AF=1 FC=0.5 BETATCE=-0.5 N=1 NR=2 XTI=3 VTOTC=-2.5m ALPHA=21u VK=1 ISR=10f KF=0.001f M=0.5) diff --git a/library/deviceModelLibrary/JFET/2N4393/2N4393.xml b/library/deviceModelLibrary/JFET/2N4393/2N4393.xml new file mode 100644 index 000000000..94a59a2da --- /dev/null +++ b/library/deviceModelLibrary/JFET/2N4393/2N4393.xml @@ -0,0 +1 @@ +NJF2N4393-1.40.00910.006114.1p4.6p1205f10.5-0.5123-2.5m21u110f0.001f0.5 \ No newline at end of file diff --git a/library/deviceModelLibrary/Transistor/2N3903/2N3903.lib b/library/deviceModelLibrary/Transistor/2N3903/2N3903.lib new file mode 100644 index 000000000..8d0f57a3a --- /dev/null +++ b/library/deviceModelLibrary/Transistor/2N3903/2N3903.lib @@ -0,0 +1,4 @@ + .model 2N3903 NPN( Is=6.734f Xti=3 Eg=1.11 Vaf=74 Bf=200 Ne=1.5 ++ Ise=6.734f Ikf=0.284 Xtb=1.5 Br=3 Nc=2 Isc=0 Ikr=0 Rc=1 Cjc=3p ++ Mjc=0.33 Vjc=0.75 Fc=0.5 Cje=4p Mje=0.33 Vje=0.75 Tr=100n Tf=350p ++ Itf=0.1 Vtf=10 Xtf=1 Rb=0.56) diff --git a/library/deviceModelLibrary/Transistor/2N3903/2N3903.xml b/library/deviceModelLibrary/Transistor/2N3903/2N3903.xml new file mode 100644 index 000000000..7b48a6d2b --- /dev/null +++ b/library/deviceModelLibrary/Transistor/2N3903/2N3903.xml @@ -0,0 +1 @@ +NPN2N39036.734f31.11742001.56.734f0.2841.5
3
20013p0.330.750.54p0.330.75100n350p0.11010.56
\ No newline at end of file diff --git a/library/deviceModelLibrary/Transistor/TIP41C/TIP41C.lib b/library/deviceModelLibrary/Transistor/TIP41C/TIP41C.lib new file mode 100644 index 000000000..9660ac880 --- /dev/null +++ b/library/deviceModelLibrary/Transistor/TIP41C/TIP41C.lib @@ -0,0 +1,9 @@ + +.model TIP41C NPN ( ++ IS=1.0E-10 BF=100 NF=1.0 VAF=50 IKF=1.0 ++ ISE=1.0E-11 NE=2.0 BR=1.0 NR=1.0 VAR=10 IKR=0.5 ++ RE=0.5 RC=1.0 RB=1.0 ++ CJE=30p VJE=0.75 MJE=0.33 ++ CJC=10p VJC=0.5 MJC=0.33 ++ TF=0.5n TR=1n +) diff --git a/library/deviceModelLibrary/Transistor/TIP41C/TIP41C.xml b/library/deviceModelLibrary/Transistor/TIP41C/TIP41C.xml new file mode 100644 index 000000000..6cc915943 --- /dev/null +++ b/library/deviceModelLibrary/Transistor/TIP41C/TIP41C.xml @@ -0,0 +1 @@ +NPNTIP41C1.0E-101001.0501.01.0E-112.0
1.0
1.0100.50.51.01.030p0.750.3310p0.50.330.5n1n
\ No newline at end of file diff --git a/library/ihp integration/cmosInverter/NMOS-180nm.lib b/library/ihp integration/cmosInverter/NMOS-180nm.lib new file mode 100644 index 000000000..51e9b1196 --- /dev/null +++ b/library/ihp integration/cmosInverter/NMOS-180nm.lib @@ -0,0 +1,13 @@ +.model CMOSN NMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=2.3549E17 VTH0=0.3823463 K1=0.5810697 ++ K2=4.774618E-3 K3=0.0431669 K3B=1.1498346 W0=1E-7 NLX=1.910552E-7 DVT0W=0 DVT1W=0 DVT2W=0 ++ DVT0=1.2894824 DVT1=0.3622063 DVT2=0.0713729 U0=280.633249 UA=-1.208537E-9 UB=2.158625E-18 ++ UC=5.342807E-11 VSAT=9.366802E4 A0=1.7593146 AGS=0.3939741 B0=-6.413949E-9 B1=-1E-7 KETA=-5.180424E-4 ++ A1=0 A2=1 RDSW=105.5517558 PRWG=0.5 PRWB=-0.1998871 WR=1 WINT=7.904732E-10 LINT=1.571424E-8 XL=0 ++ XW=-1E-8 DWG=1.297221E-9 DWB=1.479041E-9 VOFF=-0.0955434 NFACTOR=2.4358891 CIT=0 CDSC=2.4E-4 CDSCD=0 ++ CDSCB=0 ETA0=3.104851E-3 ETAB=-2.512384E-5 DSUB=0.0167075 PCLM=0.8073191 PDIBLC1=0.1666161 PDIBLC2=3.112892E-3 ++ PDIBLCB=-0.1 DROUT=0.7875618 PSCBE1=8E10 PSCBE2=9.213635E-10 PVAG=3.85243E-3 DELTA=0.01 RSH=6.7 MOBMOD=1 ++ PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 ++ WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 CGDO=7.08E-10 CGSO=7.08E-10 CGBO=1E-12 ++ CJ=9.68858E-4 PB=0.8 MJ=0.3864502 CJSW=2.512138E-10 PBSW=0.809286 MJSW=0.1060414 CJSWG=3.3E-10 PBSWG=0.809286 ++ MJSWG=0.1060414 CF=0 PVTH0=-1.192722E-3 PRDSW=-5 PK2=6.450505E-5 WKETA=-4.27294E-4 LKETA=-0.0104078 ++ PU0=6.3268729 PUA=2.226552E-11 PUB=0 PVSAT=969.1480157 PETA0=1E-4 PKETA=-1.049509E-3) diff --git a/library/ihp integration/cmosInverter/PMOS-180nm.lib b/library/ihp integration/cmosInverter/PMOS-180nm.lib new file mode 100644 index 000000000..032b5b95e --- /dev/null +++ b/library/ihp integration/cmosInverter/PMOS-180nm.lib @@ -0,0 +1,11 @@ +.model CMOSP PMOS (LEVEL=8 VERSION=3.2 TNOM=27 TOX=4.1E-9 XJ=1E-7 NCH=4.1589E17 VTH0=-0.3938813 K1=0.5479015 ++ K2=0.0360586 K3=0.0993095 K3B=5.7086622 W0=1E-6 NLX=1.313191E-7 DVT0W=0 DVT1W=0 DVT2W=0 DVT0=0.4911363 ++ DVT1=0.2227356 DVT2=0.1 U0=115.6852975 UA=1.505832E-9 UB=1E-21 UC=-1E-10 VSAT=1.329694E5 A0=1.7590478 ++ AGS=0.3641621 B0=3.427126E-7 B1=1.062928E-6 KETA=0.0134667 A1=0.6859506 A2=0.3506788 RDSW=168.5705677 ++ PRWG=0.5 PRWB=-0.4987371 WR=1 WINT=0 LINT=3.028832E-8 XL=0 XW=-1E-8 DWG=-2.349633E-8 DWB=-7.152486E-9 ++ VOFF=-0.0994037 NFACTOR=1.9424315 CIT=0 CDSC=2.4E-4 CDSCD=0 CDSCB=0 ETA0=0.0608072 ETAB=-0.0426148 ++ DSUB=0.7343015 PCLM=3.2579974 PDIBLC1=7.229527E-6 PDIBLC2=0.025389 PDIBLCB=-1E-3 DROUT=0 PSCBE1=1.454878E10 ++ PSCBE2=4.202027E-9 PVAG=15 DELTA=0.01 RSH=7.8 MOBMOD=1 PRT=0 UTE=-1.5 KT1=-0.11 KT1L=0 KT2=0.022 UA1=4.31E-9 ++ UB1=-7.61E-18 UC1=-5.6E-11 AT=3.3E4 WL=0 WLN=1 WW=0 WWN=1 WWL=0 LL=0 LLN=1 LW=0 LWN=1 LWL=0 CAPMOD=2 XPART=0.5 ++ CGDO=6.32E-10 CGSO=6.32E-10 CGBO=1E-12 CJ=1.172138E-3 PB=0.8421173 MJ=0.4109788 CJSW=2.242609E-10 PBSW=0.8 + MJSW=0.3752089 CJSWG=4.22E-10 PBSWG=0.8 MJSWG=0.3752089 CF=0 PVTH0=1.888482E-3 PRDSW=11.5315407 PK2=1.559399E-3 ++ WKETA=0.0319301 LKETA=2.955547E-3 PU0=-1.1105313 PUA=-4.62102E-11 PUB=1E-21 PVSAT=50 PETA0=1E-4 PKETA=-4.346368E-3) diff --git a/library/ihp integration/cmosInverter/analysis b/library/ihp integration/cmosInverter/analysis new file mode 100644 index 000000000..6331256ea --- /dev/null +++ b/library/ihp integration/cmosInverter/analysis @@ -0,0 +1 @@ +.tran 0.1e-00 20e-00 0e-00 \ No newline at end of file diff --git a/library/ihp integration/cmosInverter/cmosInverter.cir b/library/ihp integration/cmosInverter/cmosInverter.cir new file mode 100644 index 000000000..2cbd3c1b8 --- /dev/null +++ b/library/ihp integration/cmosInverter/cmosInverter.cir @@ -0,0 +1,27 @@ + +* CMOS inverter - Windows-safe version (no Verilog-A needed) +.title CMOS inverter (fallback models) + +.global GND + +* Power +VDD vdd GND DC 1.2 + +* Input +VIN input GND PWL(0ns 0 2ns 0 4ns 1.2 9ns 1.2 11ns 0 20ns 0) + +* Simple built-in MOS models +.model NMOS NMOS (VTO=0.6 KP=100u) +.model PMOS PMOS (VTO=-0.6 KP=40u) + +* Devices: D G S B +M1 output input GND GND NMOS W=1u L=0.13u +M2 output input vdd vdd PMOS W=2u L=0.13u + +.control +tran 0.1n 40n +run +plot v(input) v(output) +.endc + +.end diff --git a/library/ihp integration/cmosInverter/cmosInverter.cir.out b/library/ihp integration/cmosInverter/cmosInverter.cir.out new file mode 100644 index 000000000..890cac3de --- /dev/null +++ b/library/ihp integration/cmosInverter/cmosInverter.cir.out @@ -0,0 +1,21 @@ +.title kicad schematic + +.include PMOS-180nm.lib +.include NMOS-180nm.lib +m1 net-_m1-pad1_ input output net-_m1-pad1_ CMOSN W=100u L=100u M=1 +m2 output input gnd gnd CMOSP W=100u L=100u M=1 +* u2 output plot_v1 +v2 net-_m1-pad1_ gnd dc 5 +* u1 input plot_v1 +v1 input gnd pwl(0 0 10 0 11 5 20 5) +.tran 0.1e-00 20e-00 0e-00 + +* Control Statements +.control +run +print allv > plot_data_v.txt +print alli > plot_data_i.txt +plot v(output) +plot v(input) +.endc +.end diff --git a/library/ihp integration/cmosInverter/cmosInverter.kicad_sch b/library/ihp integration/cmosInverter/cmosInverter.kicad_sch new file mode 100644 index 000000000..8847132bd --- /dev/null +++ b/library/ihp integration/cmosInverter/cmosInverter.kicad_sch @@ -0,0 +1,744 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid 1e3c9461-7029-410b-b626-f8fc60beaa63) + + (paper "A4") + + (lib_symbols + (symbol "eSim_Devices:eSim_MOS_N" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "M" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 2.54 -1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 7.62 -7.62 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 2.54 -5.08 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_MOS_N_0_1" + (polyline + (pts + (xy 3.302 -7.366) + (xy 3.302 -6.35) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -6.858) + (xy 5.08 -6.858) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -5.588) + (xy 3.302 -4.572) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -5.08) + (xy 5.08 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.81) + (xy 3.302 -2.794) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 -3.302) + (xy 5.08 -3.302) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -7.62) + (xy 5.08 -6.858) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -3.302) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.794 -6.985) + (xy 2.794 -3.175) + (xy 2.794 -3.175) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 -5.08) + (xy 7.62 -5.08) + (xy 7.62 -6.35) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 -5.08) + (xy 4.572 -5.461) + (xy 4.572 -4.699) + (xy 3.556 -5.08) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 3.81 -5.08) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_MOS_N_1_1" + (pin passive line (at 5.08 0 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -2.54 -5.08 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -10.16 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -8.89 90) (length 2.4892) + (name "B" (effects (font (size 1.1938 1.1938)))) + (number "4" (effects (font (size 1.1938 1.1938)))) + ) + ) + ) + (symbol "eSim_Devices:eSim_MOS_P" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "M" (id 0) (at -1.27 1.27 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "eSim_MOS_P" (id 1) (at 1.27 3.81 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 6.35 2.54 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 1.27 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "eSim_MOS_P_0_1" + (polyline + (pts + (xy 2.032 -1.778) + (xy 3.81 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 -1.27) + (xy 2.032 -2.286) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 0) + (xy 3.81 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 0.508) + (xy 2.032 -0.508) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 1.778) + (xy 3.81 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.032 2.286) + (xy 2.032 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 -1.778) + (xy 3.81 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 2.54) + (xy 3.81 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.524 1.905) + (xy 1.524 -1.905) + (xy 1.524 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.81 0) + (xy 6.35 0) + (xy 6.35 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.556 0) + (xy 2.54 -0.381) + (xy 2.54 0.381) + (xy 3.556 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 2.54 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_MOS_P_1_1" + (pin passive line (at 3.81 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -3.81 0 0) (length 5.334) + (name "G" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 6.35 -3.81 90) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 12.7 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "plot_v1" (id 1) (at 5.08 8.89 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (symbol "plot_v1_0_1" + (circle (center 0 12.7) (radius 2.54) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "plot_v1_1_1" + (pin input line (at 0 5.08 90) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "~" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Power:eSim_GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "eSim_GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "eSim_GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "DC" (id 1) (at -5.08 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DC_0_1" + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DC_1_1" + (pin power_out line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "eSim_Sources:pwl" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "v" (id 0) (at -5.08 2.54 0) + (effects (font (size 1.524 1.524))) + ) + (property "Value" "pwl" (id 1) (at -6.35 -1.27 0) + (effects (font (size 1.524 1.524))) + ) + (property "Footprint" "R1" (id 2) (at -7.62 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.524 1.524))) + ) + (property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "pwl_0_1" + (arc (start -2.54 1.27) (mid -3.1997 0.0124) (end -3.81 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -1.27 1.27) (mid -1.905 1.2806) (end -2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid -0.608 0.0135) (end -1.27 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0 -1.27) (mid 0.635 -1.2859) (end 1.27 -1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 0 0) (radius 3.81) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.27 -1.27) (mid 1.944 -0.0194) (end 2.54 1.27) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "pwl_1_1" + (pin input line (at 0 11.43 270) (length 7.62) + (name "+" (effects (font (size 0 0)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -11.43 90) (length 7.62) + (name "-" (effects (font (size 0 0)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 138.43 97.79) (diameter 0) (color 0 0 0 0) + (uuid 3e6a8ec2-69dd-467c-9fba-56f0bc8c2980) + ) + (junction (at 115.57 81.28) (diameter 0) (color 0 0 0 0) + (uuid 4d3861d6-5d19-4087-bf7c-f38e59e7f2bd) + ) + (junction (at 153.67 97.79) (diameter 0) (color 0 0 0 0) + (uuid 5b1204dd-b3a8-428d-80c2-c0c8e483a70a) + ) + (junction (at 138.43 120.65) (diameter 0) (color 0 0 0 0) + (uuid 9e1d64b5-4537-42a3-a443-86562435f6f4) + ) + (junction (at 139.7 73.66) (diameter 0) (color 0 0 0 0) + (uuid a8607d9e-9381-4c1f-a2e5-8691a3ae2e20) + ) + (junction (at 138.43 123.19) (diameter 0) (color 0 0 0 0) + (uuid ab30530c-4761-422b-9347-8c411bc67bda) + ) + (junction (at 104.14 81.28) (diameter 0) (color 0 0 0 0) + (uuid cda25fb5-fd53-4130-b5ae-2859fccee556) + ) + (junction (at 99.06 81.28) (diameter 0) (color 0 0 0 0) + (uuid f4790b0a-2a43-44a2-ba7d-280f9c88eec2) + ) + + (wire (pts (xy 139.7 69.85) (xy 180.34 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fc5acb2-d64c-4191-9633-806a7fd148e5) + ) + (wire (pts (xy 180.34 123.19) (xy 138.43 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 23bea5b5-db70-4951-be4d-50e77e0308a6) + ) + (wire (pts (xy 158.75 73.66) (xy 139.7 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 257c2bea-b732-4b4f-82c0-07c46ff9f4d6) + ) + (wire (pts (xy 138.43 86.36) (xy 139.7 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2e99c811-273d-4755-8a13-9c75a8aafdea) + ) + (wire (pts (xy 138.43 104.14) (xy 138.43 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 346c0c7d-8ab3-4103-b1ed-6fb589a66fc3) + ) + (wire (pts (xy 180.34 69.85) (xy 180.34 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e2113e5-0a8b-4ca0-9cc1-a60d95ca9887) + ) + (wire (pts (xy 90.17 123.19) (xy 138.43 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 40cc61fc-bb6b-40b9-af3a-b27c8f294520) + ) + (wire (pts (xy 115.57 81.28) (xy 104.14 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4106e162-7ba1-42b6-bb0e-ee0f08196c88) + ) + (wire (pts (xy 90.17 81.28) (xy 90.17 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a4de4ea-cfd4-4525-a0fe-5dfe369c3d35) + ) + (wire (pts (xy 90.17 107.95) (xy 90.17 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7ec12566-78fb-42ac-b4f3-9160b3f70b45) + ) + (wire (pts (xy 138.43 120.65) (xy 140.97 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 975d2d1b-a349-410f-9d1b-c257124168c5) + ) + (wire (pts (xy 138.43 120.65) (xy 138.43 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ce8fed9-0797-46ee-a96a-eb24ce4c3bb8) + ) + (wire (pts (xy 153.67 97.79) (xy 156.21 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a538b08d-458a-45a8-ae23-67946f2808f4) + ) + (wire (pts (xy 138.43 97.79) (xy 138.43 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7b3d352-7265-48c3-b84e-daa34c544499) + ) + (wire (pts (xy 104.14 81.28) (xy 99.06 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ababd2d9-23ff-4c2c-938d-55e86e10cad0) + ) + (wire (pts (xy 139.7 73.66) (xy 139.7 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid add4817b-fab3-404c-8ffc-061b9353d6a3) + ) + (wire (pts (xy 104.14 71.12) (xy 104.14 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af054dd7-967e-47f8-b22f-91d7a3ae2f01) + ) + (wire (pts (xy 99.06 73.66) (xy 99.06 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3451f5b-43c1-4bd7-bd3b-fa9b890b890d) + ) + (wire (pts (xy 138.43 123.19) (xy 138.43 127)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6e3d749-abb3-4c3c-877a-4126ac332219) + ) + (wire (pts (xy 115.57 109.22) (xy 115.57 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1354afc-e3e0-4694-9fbb-2e806bff9f26) + ) + (wire (pts (xy 153.67 97.79) (xy 153.67 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1aab5d3-d06e-4758-b3d0-31a758898176) + ) + (wire (pts (xy 139.7 73.66) (xy 139.7 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbdf201c-10d2-42c9-b208-610ccec1def4) + ) + (wire (pts (xy 158.75 85.09) (xy 158.75 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf042937-8308-4cb0-928a-6ac37a9c34c9) + ) + (wire (pts (xy 138.43 114.3) (xy 138.43 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbafda34-f8cc-4cbb-af9e-6baf684e3657) + ) + (wire (pts (xy 180.34 106.68) (xy 180.34 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc8d414c-3419-4699-9996-33b11816e2c6) + ) + (wire (pts (xy 140.97 113.03) (xy 140.97 120.65)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dd12b240-675a-42c9-a925-a973882a5507) + ) + (wire (pts (xy 132.08 81.28) (xy 115.57 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e97a6413-41f2-4328-83a3-1a30326e0d0a) + ) + (wire (pts (xy 142.24 85.09) (xy 158.75 85.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eb988b37-2cbe-447a-8032-7262692bf862) + ) + (wire (pts (xy 130.81 109.22) (xy 115.57 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed7c08d8-a59b-4e77-9bb9-5f4b41ad2ec0) + ) + (wire (pts (xy 99.06 81.28) (xy 90.17 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edc9a8ff-3cc7-4fba-96c3-13ede0b6abfb) + ) + (wire (pts (xy 138.43 97.79) (xy 153.67 97.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid efc34b4a-ab3c-4a13-a694-b03998b18352) + ) + (wire (pts (xy 91.44 73.66) (xy 99.06 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1e58e95-5b6b-4fc4-9e96-aa74caa04255) + ) + + (global_label "output" (shape input) (at 153.67 101.6 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 513c1fc4-dccc-443e-bdd8-39d5ec287ff6) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 162.1307 101.5206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "input" (shape input) (at 91.44 73.66 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid f8e1b8c5-6525-4ef8-abf8-17cd2ad5bfd2) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.2493 73.7394 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 156.21 102.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 165e3c02-4aa0-4ee4-a03b-afbff72c156d) + (property "Reference" "U2" (id 0) (at 160.02 88.9 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 160.02 92.71 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 156.21 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 156.21 102.87 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid ad9861ad-883f-4817-94c8-d760267644f8)) + ) + + (symbol (lib_id "eSim_Power:eSim_GND") (at 138.43 127 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 345c679b-e7a7-43f6-abc1-704616530570) + (property "Reference" "#PWR0101" (id 0) (at 138.43 133.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "eSim_GND" (id 1) (at 138.43 132.08 0)) + (property "Footprint" "" (id 2) (at 138.43 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 138.43 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d0de1379-c82b-4498-9aab-e8423a7c4a95)) + ) + + (symbol (lib_id "eSim_Sources:pwl") (at 90.17 96.52 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 432658f5-5185-4bac-9c6b-d6a9d9fc2fda) + (property "Reference" "v1" (id 0) (at 95.25 93.345 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "pwl" (id 1) (at 95.25 97.155 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 95.25 100.965 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 90.17 96.52 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 8167f4b8-a273-44f5-ac9e-939415d50daf)) + (pin "2" (uuid bd8692d3-a333-4cd3-8815-54e9d8a7a49c)) + ) + + (symbol (lib_id "eSim_Plot:plot_v1") (at 104.14 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 471c24e3-cbd2-4ecb-aa78-7735d5d39b92) + (property "Reference" "U1" (id 0) (at 107.95 62.23 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "plot_v1" (id 1) (at 107.95 66.04 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 104.14 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (property "Datasheet" "" (id 3) (at 104.14 76.2 0) + (effects (font (size 1.524 1.524))) + ) + (pin "~" (uuid 6d79e20c-1711-48ca-9ecf-fcc2edee830b)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_N") (at 134.62 76.2 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6d052b53-826f-458a-9219-a86e2e66519b) + (property "Reference" "XM1" (id 0) (at 143.51 80.0099 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_N" (id 1) (at 143.51 82.5499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 142.24 83.82 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 137.16 81.28 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid b863ca0a-0384-4481-b1d9-014924a18c6c)) + (pin "2" (uuid 77db360b-38d2-4d78-90e7-99fda37930d6)) + (pin "3" (uuid 9c839e98-9bc5-4344-aa1c-6746916a3a80)) + (pin "4" (uuid fc1d010c-966b-4d96-ac7e-29aeb9979486)) + ) + + (symbol (lib_id "eSim_Sources:DC") (at 180.34 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid adf48e01-4638-4d9b-a8be-f1106864d5da) + (property "Reference" "v2" (id 0) (at 185.42 92.075 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Value" "DC" (id 1) (at 185.42 95.885 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Footprint" "R1" (id 2) (at 185.42 99.695 0) + (effects (font (size 1.524 1.524)) (justify left)) + ) + (property "Datasheet" "" (id 3) (at 180.34 95.25 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid 0179bda0-692b-4569-a148-222a11a689ec)) + (pin "2" (uuid 3da3bb66-aaab-436d-aab7-1a3522015c55)) + ) + + (symbol (lib_id "eSim_Devices:eSim_MOS_P") (at 134.62 109.22 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fdec8009-ce12-45bf-ae19-21b4eaa52a84) + (property "Reference" "XM2" (id 0) (at 142.24 107.9499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "eSim_MOS_P" (id 1) (at 142.24 110.4899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 140.97 106.68 0) + (effects (font (size 0.7366 0.7366))) + ) + (property "Datasheet" "" (id 3) (at 135.89 109.22 0) + (effects (font (size 1.524 1.524))) + ) + (pin "1" (uuid e180c4a6-7a36-45ba-b28a-9748bd079263)) + (pin "2" (uuid 94da1cbf-fe96-4598-ab25-c420ea2559c1)) + (pin "3" (uuid bbc8c206-c7ff-46b9-beeb-4062b486fd6c)) + (pin "4" (uuid 2de10ee2-ef5f-431d-81df-3eaf0964473a)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/345c679b-e7a7-43f6-abc1-704616530570" + (reference "#PWR0101") (unit 1) (value "eSim_GND") (footprint "") + ) + (path "/471c24e3-cbd2-4ecb-aa78-7735d5d39b92" + (reference "U1") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/165e3c02-4aa0-4ee4-a03b-afbff72c156d" + (reference "U2") (unit 1) (value "plot_v1") (footprint "") + ) + (path "/6d052b53-826f-458a-9219-a86e2e66519b" + (reference "XM1") (unit 1) (value "eSim_MOS_N") (footprint "") + ) + (path "/fdec8009-ce12-45bf-ae19-21b4eaa52a84" + (reference "XM2") (unit 1) (value "eSim_MOS_P") (footprint "") + ) + (path "/432658f5-5185-4bac-9c6b-d6a9d9fc2fda" + (reference "v1") (unit 1) (value "pwl") (footprint "R1") + ) + (path "/adf48e01-4638-4d9b-a8be-f1106864d5da" + (reference "v2") (unit 1) (value "DC") (footprint "R1") + ) + ) +) diff --git a/library/ihp integration/cmosInverter/cmosInverter.proj b/library/ihp integration/cmosInverter/cmosInverter.proj new file mode 100644 index 000000000..3ec07abf5 --- /dev/null +++ b/library/ihp integration/cmosInverter/cmosInverter.proj @@ -0,0 +1 @@ +schematicFile cmosInverter.kicad_sch diff --git a/library/ihp integration/cmosInverter/cmosInverter.raw b/library/ihp integration/cmosInverter/cmosInverter.raw new file mode 100644 index 000000000..af800f795 --- /dev/null +++ b/library/ihp integration/cmosInverter/cmosInverter.raw @@ -0,0 +1,1298 @@ +Title: kicad schematic +Date: Sun Nov 16 14:08:39 2025 +Plotname: Transient Analysis +Flags: real +No. Variables: 6 +No. Points: 214 +Variables: + 0 time time + 1 v(net-_m1-pad1_) voltage + 2 v(input) voltage + 3 v(output) voltage + 4 i(v1) current + 5 i(v2) current +Values: +0 0.000000000000000e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 0.000000000000000e+00 + -2.332854625461174e-01 +1 1.000000000000000e-03 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 3.308722450212111e-23 + -2.332854625461138e-01 +2 2.000000000000000e-03 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 3.308722450212111e-23 + -2.332854625461138e-01 +3 4.000000000000000e-03 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -1.257314531080602e-22 + -2.332854625461138e-01 +4 8.000000000000000e-03 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645507e+00 + -5.624828165360588e-23 + -2.332854625461138e-01 +5 1.600000000000000e-02 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645507e+00 + -1.654361225106055e-24 + -2.332854625461174e-01 +6 3.200000000000000e-02 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645507e+00 + -1.406207041340147e-23 + -2.332854625461103e-01 +7 6.400000000000000e-02 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 3.308722450212111e-24 + -2.332854625461174e-01 +8 1.280000000000000e-01 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -2.274746684520826e-24 + -2.332854625461209e-01 +9 2.280000000000000e-01 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 4.549493369041652e-24 + -2.332854625461138e-01 +10 3.280000000000000e-01 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -8.065010972392020e-24 + -2.332854625461138e-01 +11 4.280000000000000e-01 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +12 5.280000000000000e-01 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +13 6.280000000000000e-01 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +14 7.280000000000000e-01 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +15 8.280000000000000e-01 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +16 9.279999999999999e-01 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +17 1.028000000000000e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +18 1.128000000000000e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +19 1.228000000000000e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +20 1.328000000000000e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +21 1.428000000000000e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +22 1.528000000000000e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +23 1.628000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +24 1.728000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +25 1.828000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +26 1.928000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +27 2.028000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +28 2.128000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +29 2.228000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +30 2.328000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +31 2.428000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +32 2.528000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +33 2.628000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +34 2.728000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +35 2.828000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +36 2.928000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +37 3.028000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +38 3.128000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +39 3.228000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +40 3.328000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +41 3.428000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +42 3.528000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +43 3.628000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +44 3.728000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +45 3.828000000000003e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +46 3.928000000000003e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +47 4.028000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +48 4.128000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +49 4.228000000000002e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +50 4.328000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +51 4.428000000000001e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +52 4.528000000000000e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +53 4.628000000000000e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +54 4.728000000000000e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +55 4.827999999999999e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +56 4.927999999999999e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +57 5.027999999999999e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +58 5.127999999999998e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +59 5.227999999999998e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +60 5.327999999999998e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +61 5.427999999999997e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +62 5.527999999999997e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +63 5.627999999999997e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +64 5.727999999999996e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +65 5.827999999999996e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +66 5.927999999999995e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +67 6.027999999999995e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +68 6.127999999999995e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +69 6.227999999999994e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +70 6.327999999999994e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +71 6.427999999999994e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +72 6.527999999999993e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +73 6.627999999999993e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +74 6.727999999999993e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +75 6.827999999999992e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +76 6.927999999999992e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +77 7.027999999999992e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +78 7.127999999999991e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +79 7.227999999999991e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +80 7.327999999999991e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +81 7.427999999999990e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +82 7.527999999999990e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +83 7.627999999999989e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +84 7.727999999999989e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +85 7.827999999999989e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +86 7.927999999999988e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +87 8.027999999999988e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +88 8.127999999999988e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +89 8.227999999999987e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +90 8.327999999999987e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +91 8.427999999999987e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +92 8.527999999999986e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +93 8.627999999999986e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +94 8.727999999999986e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +95 8.827999999999985e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +96 8.927999999999985e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +97 9.027999999999984e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +98 9.127999999999984e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +99 9.227999999999984e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +100 9.327999999999983e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +101 9.427999999999983e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +102 9.527999999999983e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +103 9.627999999999982e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +104 9.727999999999982e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +105 9.827999999999982e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 5.169878828456423e-24 + -2.332854625461138e-01 +106 9.927999999999981e+00 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + -6.410649747285964e-24 + -2.332854625461138e-01 +107 1.000000000000000e+01 + 5.000000000000000e+00 + 0.000000000000000e+00 + 2.628305822645506e+00 + 3.308722450212111e-24 + -2.332854625461209e-01 +108 1.001000000000000e+01 + 5.000000000000000e+00 + 4.999999999999893e-02 + 2.628305992975592e+00 + -7.665348826357122e-10 + -2.332854376469982e-01 +109 1.003000000000000e+01 + 5.000000000000000e+00 + 1.499999999999968e-01 + 2.628306279035034e+00 + -7.670511497948279e-10 + -2.332853965384878e-01 +110 1.007000000000000e+01 + 5.000000000000000e+00 + 3.499999999999925e-01 + 2.628306714061739e+00 + -7.678658728391872e-10 + -2.332853340224439e-01 +111 1.015000000000000e+01 + 5.000000000000000e+00 + 7.499999999999929e-01 + 2.628306917573378e+00 + -6.177974825956485e-10 + -2.332853047765617e-01 +112 1.025000000000000e+01 + 5.000000000000000e+00 + 1.249999999999991e+00 + 2.628306917833742e+00 + -6.078676114868122e-10 + -2.332853047391446e-01 +113 1.035000000000000e+01 + 5.000000000000000e+00 + 1.749999999999989e+00 + 2.628306917842596e+00 + -9.548763791999386e-10 + -2.332853047378727e-01 +114 1.045000000000000e+01 + 5.000000000000000e+00 + 2.249999999999988e+00 + 2.628306917833745e+00 + -7.265240367590002e-10 + -2.332853047391446e-01 +115 1.055000000000000e+01 + 5.000000000000000e+00 + 2.749999999999986e+00 + 2.628306917842596e+00 + -9.595108823468656e-10 + -2.332853047379437e-01 +116 1.065000000000000e+01 + 5.000000000000000e+00 + 3.249999999999984e+00 + 2.628306917833745e+00 + -7.219652510596598e-10 + -2.332853047437773e-01 +117 1.075000000000000e+01 + 5.000000000000000e+00 + 3.749999999999982e+00 + 2.628306917842601e+00 + -8.412373593130030e-10 + -2.332853048562242e-01 +118 1.085000000000000e+01 + 5.000000000000000e+00 + 4.249999999999980e+00 + 2.628306918437656e+00 + -3.938526632097084e-10 + -2.332853051468220e-01 +119 1.095000000000000e+01 + 5.000000000000000e+00 + 4.749999999999979e+00 + 2.628308437459640e+00 + -1.027592554450317e-09 + -2.332854932397446e-01 +120 1.100000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625494486e+00 + -5.135022931343027e-10 + -2.332858891276857e-01 +121 1.101000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311589266800e+00 + -4.511207935519557e-14 + -2.332858848395141e-01 +122 1.103000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925317827556663e-16 + -2.332858893341374e-01 +123 1.107000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925311371411982e-16 + -2.332858893341339e-01 +124 1.115000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314535377825e-16 + -2.332858893341445e-01 +125 1.125000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314527106019e-16 + -2.332858893341374e-01 +126 1.135000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314518834213e-16 + -2.332858893341374e-01 +127 1.145000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314518834213e-16 + -2.332858893341374e-01 +128 1.155000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314527106019e-16 + -2.332858893341374e-01 +129 1.165000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314518834213e-16 + -2.332858893341374e-01 +130 1.175000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314527106019e-16 + -2.332858893341374e-01 +131 1.185000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314535377825e-16 + -2.332858893341374e-01 +132 1.195000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314543649631e-16 + -2.332858893341374e-01 +133 1.205000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314535377825e-16 + -2.332858893341374e-01 +134 1.215000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314543649631e-16 + -2.332858893341374e-01 +135 1.224999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314535377825e-16 + -2.332858893341374e-01 +136 1.234999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314543649631e-16 + -2.332858893341374e-01 +137 1.244999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314535377825e-16 + -2.332858893341374e-01 +138 1.254999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314560193243e-16 + -2.332858893341374e-01 +139 1.264999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314551921437e-16 + -2.332858893341374e-01 +140 1.274999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314560193243e-16 + -2.332858893341374e-01 +141 1.284999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314551921437e-16 + -2.332858893341374e-01 +142 1.294999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314560193243e-16 + -2.332858893341374e-01 +143 1.304999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314568465049e-16 + -2.332858893341374e-01 +144 1.314999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314576736855e-16 + -2.332858893341374e-01 +145 1.324999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314568465049e-16 + -2.332858893341374e-01 +146 1.334999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314576736855e-16 + -2.332858893341374e-01 +147 1.344999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314568465049e-16 + -2.332858893341374e-01 +148 1.354999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314576736855e-16 + -2.332858893341374e-01 +149 1.364999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314568465049e-16 + -2.332858893341374e-01 +150 1.374999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314593280468e-16 + -2.332858893341374e-01 +151 1.384999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314585008662e-16 + -2.332858893341374e-01 +152 1.394999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314593280468e-16 + -2.332858893341374e-01 +153 1.404999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314585008662e-16 + -2.332858893341374e-01 +154 1.414999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314593280468e-16 + -2.332858893341374e-01 +155 1.424999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314585008662e-16 + -2.332858893341374e-01 +156 1.434999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314593280468e-16 + -2.332858893341374e-01 +157 1.444999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314601552274e-16 + -2.332858893341374e-01 +158 1.454999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314609824080e-16 + -2.332858893341374e-01 +159 1.464999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314601552274e-16 + -2.332858893341374e-01 +160 1.474999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314609824080e-16 + -2.332858893341374e-01 +161 1.484999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314601552274e-16 + -2.332858893341374e-01 +162 1.494999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314609824080e-16 + -2.332858893341374e-01 +163 1.504999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314618095886e-16 + -2.332858893341374e-01 +164 1.514999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314626367692e-16 + -2.332858893341374e-01 +165 1.524999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314618095886e-16 + -2.332858893341374e-01 +166 1.534999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314626367692e-16 + -2.332858893341374e-01 +167 1.544999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314618095886e-16 + -2.332858893341374e-01 +168 1.554999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314626367692e-16 + -2.332858893341374e-01 +169 1.564999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314634639498e-16 + -2.332858893341374e-01 +170 1.574999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314642911304e-16 + -2.332858893341374e-01 +171 1.584999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314634639498e-16 + -2.332858893341374e-01 +172 1.594999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314642911304e-16 + -2.332858893341374e-01 +173 1.604999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314634639498e-16 + -2.332858893341374e-01 +174 1.614999999999998e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314642911304e-16 + -2.332858893341374e-01 +175 1.624999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314634639498e-16 + -2.332858893341374e-01 +176 1.634999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314659454917e-16 + -2.332858893341374e-01 +177 1.644999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314651183111e-16 + -2.332858893341374e-01 +178 1.654999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314659454917e-16 + -2.332858893341374e-01 +179 1.664999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314651183111e-16 + -2.332858893341374e-01 +180 1.674999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314659454917e-16 + -2.332858893341374e-01 +181 1.684999999999999e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314651183111e-16 + -2.332858893341374e-01 +182 1.695000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314659454917e-16 + -2.332858893341374e-01 +183 1.705000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314667726723e-16 + -2.332858893341374e-01 +184 1.715000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314675998529e-16 + -2.332858893341374e-01 +185 1.725000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314667726723e-16 + -2.332858893341374e-01 +186 1.735000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314675998529e-16 + -2.332858893341374e-01 +187 1.745000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314667726723e-16 + -2.332858893341374e-01 +188 1.755000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314692542141e-16 + -2.332858893341374e-01 +189 1.765000000000001e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314684270335e-16 + -2.332858893341374e-01 +190 1.775000000000001e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314692542141e-16 + -2.332858893341374e-01 +191 1.785000000000001e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314684270335e-16 + -2.332858893341374e-01 +192 1.795000000000001e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314692542141e-16 + -2.332858893341374e-01 +193 1.805000000000001e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314684270335e-16 + -2.332858893341374e-01 +194 1.815000000000001e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314692542141e-16 + -2.332858893341374e-01 +195 1.825000000000001e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314700813947e-16 + -2.332858893341374e-01 +196 1.835000000000002e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314709085753e-16 + -2.332858893341374e-01 +197 1.845000000000002e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314700813947e-16 + -2.332858893341374e-01 +198 1.855000000000002e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314709085753e-16 + -2.332858893341374e-01 +199 1.865000000000002e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314700813947e-16 + -2.332858893341374e-01 +200 1.875000000000002e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314709085753e-16 + -2.332858893341374e-01 +201 1.885000000000002e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314700813947e-16 + -2.332858893341374e-01 +202 1.895000000000002e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314725629366e-16 + -2.332858893341374e-01 +203 1.905000000000003e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314717357560e-16 + -2.332858893341374e-01 +204 1.915000000000003e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314725629366e-16 + -2.332858893341374e-01 +205 1.925000000000003e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314717357560e-16 + -2.332858893341374e-01 +206 1.935000000000003e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314725629366e-16 + -2.332858893341374e-01 +207 1.945000000000003e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314733901172e-16 + -2.332858893341374e-01 +208 1.955000000000003e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314742172978e-16 + -2.332858893341374e-01 +209 1.965000000000003e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314733901172e-16 + -2.332858893341374e-01 +210 1.975000000000004e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314742172978e-16 + -2.332858893341374e-01 +211 1.985000000000004e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314733901172e-16 + -2.332858893341374e-01 +212 1.995000000000004e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + 8.925314742172978e-16 + -2.332858893341374e-01 +213 2.000000000000000e+01 + 5.000000000000000e+00 + 5.000000000000000e+00 + 2.628311625487040e+00 + -8.925314696678044e-16 + -2.332858893341339e-01 diff --git a/library/ihp integration/cmosInverter/cmosInverterRun.cir b/library/ihp integration/cmosInverter/cmosInverterRun.cir new file mode 100644 index 000000000..5f9f37c8d --- /dev/null +++ b/library/ihp integration/cmosInverter/cmosInverterRun.cir @@ -0,0 +1,41 @@ +* cmos_ihp.cir -- CMOS inverter using IHP SG13G2 PDK (try this first) +.title CMOS inverter using IHP SG13G2 PDK + +* Load the corner section from the IHP PDK (defines params, includes subckt file) +.lib "C:/Users/KEERTHANA/IHP-Open-PDK/ihp-sg13g2/libs.tech/ngspice/models/cornerMOSlv.lib" mos_tt + +.global GND + +* Power rail (taken from KiCad node Net-_XM1-Pad1_) +VDD Net-_XM1-Pad1_ GND DC 1.2 + +* Input: simple PWL (toggle) +VIN input GND PWL(0ns 0 2ns 0 4ns 1.2 9ns 1.2 11ns 0 20ns 0) + +* Transistor instances (Drain Gate Source Bulk Model) +* PMOS: source & bulk -> VDD +XM2 output input Net-_XM1-Pad1_ Net-_XM1-Pad1_ sg13_lv_pmos w=2.0u l=0.13u + +* NMOS: source & bulk -> GND +XM1 output input GND GND sg13_lv_nmos w=1.0u l=0.13u + +* optional: probe nodes (not required by netlist) +* U2 output plot_v1 +* U1 input plot_v1 + +.control +* transient sim: time step 0.1ns, total 40ns +tran 0.1n 40n +run + +* plot waveforms +plot v(input) v(output) + +* print DC operating point of NMOS (optional) +op +let Id = @m.xm1[id] +print Id + +.endc + +.end diff --git a/library/ihp integration/cmosInverter/cmosInverter_Previous_Values.xml b/library/ihp integration/cmosInverter/cmosInverter_Previous_Values.xml new file mode 100644 index 000000000..9f1bcd799 --- /dev/null +++ b/library/ihp integration/cmosInverter/cmosInverter_Previous_Values.xml @@ -0,0 +1 @@ +dc5pwl0 0 10 0 11 5 20 5truefalsefalseHzHz0Volts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or AmperesVolts or Amperes00.120secsecsec \ No newline at end of file diff --git a/library/ihp integration/cmosInverter/cmos_fallback_fixed.cir.txt b/library/ihp integration/cmosInverter/cmos_fallback_fixed.cir.txt new file mode 100644 index 000000000..3607709ad --- /dev/null +++ b/library/ihp integration/cmosInverter/cmos_fallback_fixed.cir.txt @@ -0,0 +1,26 @@ +* CMOS inverter - Windows-safe version (no Verilog-A needed) +.title CMOS inverter (fallback models) + +.global GND + +* Power +VDD vdd GND DC 1.2 + +* Input +VIN input GND PWL(0ns 0 2ns 0 4ns 1.2 9ns 1.2 11ns 0 20ns 0) + +* Simple built-in MOS models +.model NMOS NMOS (VTO=0.6 KP=100u) +.model PMOS PMOS (VTO=-0.6 KP=40u) + +* Devices: D G S B +M1 output input GND GND NMOS W=1u L=0.13u +M2 output input vdd vdd PMOS W=2u L=0.13u + +.control +tran 0.1n 40n +run +plot v(input) v(output) +.endc + +.end diff --git a/library/ihp integration/cmosInverter/cmos_fixed.cir b/library/ihp integration/cmosInverter/cmos_fixed.cir new file mode 100644 index 000000000..d5e0b99c7 --- /dev/null +++ b/library/ihp integration/cmosInverter/cmos_fixed.cir @@ -0,0 +1,28 @@ +* cir_run.cir -- NMOS DC Test using IHP SG13G2 TT Corner +.title NMOS DC Test using IHP SG13G2 TT Corner + +* Load the PDK corner (this defines the parameters and pulls in the model file) +.lib "C:/Users/KEERTHANA/IHP-Open-PDK/ihp-sg13g2/libs.tech/ngspice/models/cornerMOSlv.lib" mos_tt + +* Global reference +.GLOBAL GND + +* Bias sources +Vgs net1 GND 0.4 +Vds net3 GND 1.0 +Vd net3 net2 0 + +.param temp=27 + +* Device under test +* Drain = net2, Gate = net1, Source = GND, Bulk = GND +XM1 net2 net1 GND GND sg13_lv_nmos w=1.0u l=0.13u ng=1 m=1 + +.control +* save all ; optional - you can keep or remove +op +let Id = @m.xm1[id] +print Id +.endc + +.end diff --git a/library/ihp integration/cmosInverter/cmos_run.cir b/library/ihp integration/cmosInverter/cmos_run.cir new file mode 100644 index 000000000..d5e0b99c7 --- /dev/null +++ b/library/ihp integration/cmosInverter/cmos_run.cir @@ -0,0 +1,28 @@ +* cir_run.cir -- NMOS DC Test using IHP SG13G2 TT Corner +.title NMOS DC Test using IHP SG13G2 TT Corner + +* Load the PDK corner (this defines the parameters and pulls in the model file) +.lib "C:/Users/KEERTHANA/IHP-Open-PDK/ihp-sg13g2/libs.tech/ngspice/models/cornerMOSlv.lib" mos_tt + +* Global reference +.GLOBAL GND + +* Bias sources +Vgs net1 GND 0.4 +Vds net3 GND 1.0 +Vd net3 net2 0 + +.param temp=27 + +* Device under test +* Drain = net2, Gate = net1, Source = GND, Bulk = GND +XM1 net2 net1 GND GND sg13_lv_nmos w=1.0u l=0.13u ng=1 m=1 + +.control +* save all ; optional - you can keep or remove +op +let Id = @m.xm1[id] +print Id +.endc + +.end diff --git a/nghdl/Example/Microwatt/README.md b/nghdl/Example/Microwatt/README.md new file mode 100644 index 000000000..a40a993cc --- /dev/null +++ b/nghdl/Example/Microwatt/README.md @@ -0,0 +1,61 @@ +# Microwatt eSim Integration + +## Overview + +This directory contains initial integration support for running the OpenPOWER Microwatt core inside the eSim/NGHDL co-simulation environment. + +The integration flow enables Microwatt to be compiled with GHDL and wrapped for NGHDL/XSPICE-based simulation inside eSim. + +## Files + +### `microwatt_cosim.vhdl` + +NGHDL-compatible wrapper for Microwatt. + +Exposed ports: + +* `clk` : Clock input +* `rst` : Reset input +* `uart_tx` : UART transmit output + +### `compile_for_nghdl.sh` + +Build script used to: + +* Compile Microwatt using GHDL +* Build required helper objects +* Elaborate the wrapper for NGHDL/XSPICE integration + +## Build Flow + +Run: + +```bash +bash esim/compile_for_nghdl.sh +``` + +Successful compilation generates the NGHDL-compatible elaborated design. + +## eSim Workflow + +1. Compile Microwatt using the provided script +2. Generate the NGHDL/XSPICE codemodel +3. Import the generated block into eSim +4. Create a schematic using: + + * clock pulse + * reset pulse + * UART probe +5. Run transient simulation + +## Current Status + +* Wrapper compilation successful +* NGHDL integration validated +* Basic schematic-level simulation setup completed + +## Future Work + +* Add memory and peripheral models +* Expand validation workflows +* Add example system-level designs diff --git a/nghdl/Example/Microwatt/compile_for_nghdl.sh b/nghdl/Example/Microwatt/compile_for_nghdl.sh new file mode 100755 index 000000000..cfdcc86e3 --- /dev/null +++ b/nghdl/Example/Microwatt/compile_for_nghdl.sh @@ -0,0 +1,92 @@ +#!/bin/bash +# ========================================================== +# Compile Microwatt + NGHDL wrapper +# Full simulation-safe flow with all C helper linking +# ========================================================== + +set -e + +ESIM_DIR="esim" +WORK_DIR="esim/ghdl_work" + +rm -rf "$WORK_DIR" +mkdir -p "$WORK_DIR" + +echo "==============================================" +echo " Step 0: Build required C helper objects" +echo "==============================================" + +cc -O3 -Wall -c -o sim_vhpi_c.o sim_vhpi_c.c +cc -O3 -Wall -c -o sim_console_c.o sim_console_c.c +cc -O3 -Wall -c -o sim_bram_helpers_c.o sim_bram_helpers_c.c + +echo "==============================================" +echo " Step 1: Compile Microwatt + wrapper" +echo "==============================================" + +ghdl -c --std=08 --workdir="$WORK_DIR" \ + -Wl,sim_vhpi_c.o \ + -Wl,sim_console_c.o \ + -Wl,sim_bram_helpers_c.o \ + decode_types.vhdl \ + common.vhdl \ + wishbone_types.vhdl \ + fetch1.vhdl \ + utils.vhdl \ + plrufn.vhdl \ + cache_ram.vhdl \ + icache.vhdl \ + predecode.vhdl \ + decode1.vhdl \ + helpers.vhdl \ + insn_helpers.vhdl \ + control.vhdl \ + decode2.vhdl \ + register_file.vhdl \ + cr_file.vhdl \ + crhelpers.vhdl \ + ppc_fx_insns.vhdl \ + rotator.vhdl \ + logical.vhdl \ + countbits.vhdl \ + multiply.vhdl \ + multiply-32s.vhdl \ + divider.vhdl \ + execute1.vhdl \ + loadstore1.vhdl \ + mmu.vhdl \ + dcache.vhdl \ + writeback.vhdl \ + core_debug.vhdl \ + core.vhdl \ + fpu.vhdl \ + pmu.vhdl \ + bitsort.vhdl \ + wishbone_arbiter.vhdl \ + wishbone_bram_wrapper.vhdl \ + sync_fifo.vhdl \ + wishbone_debug_master.vhdl \ + xics.vhdl \ + git.vhdl \ + syscon.vhdl \ + gpio.vhdl \ + dmi_dtm_dummy.vhdl \ + soc.vhdl \ + spi_rxtx.vhdl \ + spi_flash_ctrl.vhdl \ + sim_console.vhdl \ + sim_pp_uart.vhdl \ + sim_bram_helpers.vhdl \ + sim_bram.vhdl \ + sim_16550_uart.vhdl \ + foreign_random.vhdl \ + glibc_random.vhdl \ + glibc_random_helpers.vhdl \ + "$ESIM_DIR/microwatt_cosim.vhdl" \ + -e microwatt_cosim + +echo "==============================================" +echo " SUCCESS" +echo "==============================================" +echo "Microwatt NGHDL wrapper compiled successfully" +echo "GHDL work directory: $WORK_DIR" diff --git a/nghdl/Example/Microwatt/microwatt_cosim.vhdl b/nghdl/Example/Microwatt/microwatt_cosim.vhdl new file mode 100644 index 000000000..606f8995e --- /dev/null +++ b/nghdl/Example/Microwatt/microwatt_cosim.vhdl @@ -0,0 +1,131 @@ +-- ========================================================= +-- Microwatt eSim / NGHDL ultra-minimal wrapper +-- Parser-safe scalar version +-- ========================================================= + +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +library work; +use work.common.all; +use work.wishbone_types.all; + +entity microwatt_cosim is + port ( + clk : in std_logic; + rst : in std_logic; + uart_tx : out std_logic + ); +end entity microwatt_cosim; + +architecture rtl of microwatt_cosim is + + -------------------------------------------------------------------- + -- Internal SoC signals + -------------------------------------------------------------------- + signal run_s : std_ulogic; + signal uart_tx_s : std_ulogic; + + signal gpio_out_s : std_ulogic_vector(31 downto 0); + signal gpio_dir_s : std_ulogic_vector(31 downto 0); + signal gpio_in_s : std_ulogic_vector(31 downto 0) := (others => '0'); + + -------------------------------------------------------------------- + -- Dummy DRAM Wishbone signals + -------------------------------------------------------------------- + signal wb_dram_in_s : wishbone_master_out; + signal wb_dram_out_s : wishbone_slave_out := wishbone_slave_out_init; + + -------------------------------------------------------------------- + -- Dummy external IO signals + -------------------------------------------------------------------- + signal wb_ext_io_in_s : wb_io_master_out; + signal wb_ext_io_out_s : wb_io_slave_out := wb_io_slave_out_init; + signal wb_ext_is_dram_csr_s : std_ulogic; + signal wb_ext_is_dram_init_s : std_ulogic; + signal wb_ext_is_eth_s : std_ulogic; + signal wb_ext_is_sdcard_s : std_ulogic; + signal wb_ext_is_lcd_s : std_ulogic; + + -------------------------------------------------------------------- + -- Dummy DMA signals + -------------------------------------------------------------------- + signal wishbone_dma_in_s : wb_io_slave_out; + signal wishbone_dma_out_s : wb_io_master_out := wb_io_master_out_init; + +begin + + -------------------------------------------------------------------- + -- Microwatt SoC instance + -------------------------------------------------------------------- + soc_inst: entity work.soc + generic map ( + MEMORY_SIZE => 524288, + RAM_INIT_FILE => "", + CLK_FREQ => 100000000, + SIM => true, + NCPUS => 1, + HAS_FPU => true, + HAS_BTC => true, + DISABLE_FLATTEN_CORE => false, + HAS_DRAM => false, + HAS_SPI_FLASH => false, + HAS_LITEETH => false, + HAS_UART1 => false, + HAS_SD_CARD => false, + HAS_SD_CARD2 => false, + HAS_LCD => false, + HAS_GPIO => false, + NGPIO => 32 + ) + port map ( + rst => rst, + system_clk => clk, + + run_out => run_s, + run_outs => open, + + wb_dram_in => wb_dram_in_s, + wb_dram_out => wb_dram_out_s, + + wb_ext_io_in => wb_ext_io_in_s, + wb_ext_io_out => wb_ext_io_out_s, + wb_ext_is_dram_csr => wb_ext_is_dram_csr_s, + wb_ext_is_dram_init => wb_ext_is_dram_init_s, + wb_ext_is_eth => wb_ext_is_eth_s, + wb_ext_is_sdcard => wb_ext_is_sdcard_s, + wb_ext_is_lcd => wb_ext_is_lcd_s, + + wishbone_dma_in => wishbone_dma_in_s, + wishbone_dma_out => wishbone_dma_out_s, + + ext_irq_eth => '0', + ext_irq_sdcard => '0', + ext_irq_sdcard2 => '0', + + uart0_txd => uart_tx_s, + uart0_rxd => '1', + + uart1_txd => open, + uart1_rxd => '0', + + spi_flash_sck => open, + spi_flash_cs_n => open, + spi_flash_sdat_o => open, + spi_flash_sdat_oe => open, + spi_flash_sdat_i => (others => '1'), + + gpio_out => gpio_out_s, + gpio_dir => gpio_dir_s, + gpio_in => gpio_in_s, + + sw_soc_reset => open + ); + + -------------------------------------------------------------------- + -- Scalar output + -------------------------------------------------------------------- + uart_tx <= std_logic(uart_tx_s); + +end architecture rtl; diff --git a/nghdl/README.md b/nghdl/README.md index 62539b8bd..84c20fecf 100644 --- a/nghdl/README.md +++ b/nghdl/README.md @@ -55,6 +55,19 @@ Refer https://esim.fossee.in/ for more information. 4. Open the desired example under `eSim/Examples/Mixed_Signal/` using the "Open Project" button, double click on the project when the project is loaded in the "Projects" window. 5. Click on the "Simulation" button on eSim Main window. +## Microwatt Example + +A Microwatt OpenPOWER NGHDL co-simulation example is available under: + +`nghdl/Example/Microwatt` + +This example demonstrates the integration of the OpenPOWER Microwatt core with the NGHDL/XSPICE co-simulation flow in eSim. The example includes: + +* `microwatt_cosim.vhdl` - NGHDL-compatible Microwatt wrapper +* `compile_for_nghdl.sh` - GHDL compilation script for NGHDL +* `README.md` - Usage and integration instructions ## Contribution Please refer [here](https://github.com/FOSSEE/nghdl/blob/master/CONTRIBUTION.md) for further details. + + diff --git a/nghdl/src/createKicadLibrary.py b/nghdl/src/createKicadLibrary.py index 9eb5ab239..73f6d9b46 100644 --- a/nghdl/src/createKicadLibrary.py +++ b/nghdl/src/createKicadLibrary.py @@ -2,7 +2,7 @@ import re import os import xml.etree.cElementTree as ET -from PyQt5 import QtWidgets +from PyQt6 import QtWidgets class AutoSchematic(QtWidgets.QWidget): @@ -20,7 +20,7 @@ def __init__(self, parent, modelname): inst_dir + '/KiCad/share/kicad/symbols/eSim_Nghdl.kicad_sym' else: self.kicad_nghdl_sym = \ - '/Users/thethtarshwesin/Documents/KiCad/6.0/symbols/eSim_Nghdl.kicad_sym' + '/usr/share/kicad/symbols/eSim_Nghdl.kicad_sym' self.parser = Appconfig.parser_nghdl def createKicadSymbol(self): @@ -40,9 +40,9 @@ def createKicadSymbol(self): ''' already exist. Do you want to overwrite it?
If yes press ok, else cancel it and ''' + '''change the name of your vhdl file.''', - QtWidgets.QMessageBox.Ok, QtWidgets.QMessageBox.Cancel + QtWidgets.QMessageBox.StandardButton.Ok | QtWidgets.QMessageBox.StandardButton.Cancel ) - if ret == QtWidgets.QMessageBox.Ok: + if ret == QtWidgets.QMessageBox.StandardButton.Ok: print("Overwriting existing libraries") self.getPortInformation() self.createXML() @@ -57,7 +57,7 @@ def createKicadSymbol(self): self.parent, "Error", '''A standard library already ''' + '''exists with this name.
Please change the ''' + '''name of your vhdl file and upload it again.''', - QtWidgets.QMessageBox.Ok + QtWidgets.QMessageBox.StandardButton.Ok ) # quit() @@ -433,7 +433,7 @@ def createSym(self): "Symbol details for this model were added to " "eSim_Nghdl.kicad_sym successfully." ), - QtWidgets.QMessageBox.Ok + QtWidgets.QMessageBox.StandardButton.Ok ) diff --git a/nghdl/src/model_generation.py b/nghdl/src/model_generation.py index 58f1aac9d..fb180ff95 100644 --- a/nghdl/src/model_generation.py +++ b/nghdl/src/model_generation.py @@ -15,8 +15,7 @@ def __init__(self, file): if os.name == 'nt': self.home = os.path.join('library', 'config') else: - # self.home = os.expanduser('~') - self.home = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")) # direcotory: Resources/ + self.home = os.path.expanduser('~') self.parser = ConfigParser() self.parser.read(os.path.join( diff --git a/nghdl/src/ngspice_ghdl.py b/nghdl/src/ngspice_ghdl.py old mode 100755 new mode 100644 index 1f7975f4e..15aa42376 --- a/nghdl/src/ngspice_ghdl.py +++ b/nghdl/src/ngspice_ghdl.py @@ -1,4 +1,4 @@ -#! /Users/thethtarshwesin/Desktop/eSim-2.5/esim-venv/bin/python3 +#!/usr/bin/env python3 # This file create the GUI to install code model in the Ngspice. @@ -6,7 +6,7 @@ import sys import shutil import subprocess -from PyQt5 import QtGui, QtCore, QtWidgets +from PyQt6 import QtGui, QtCore, QtWidgets from configparser import ConfigParser from Appconfig import Appconfig from createKicadLibrary import AutoSchematic @@ -39,6 +39,7 @@ def __init__(self): print(fileopen.read()) fileopen.close() self.file_list = [] # to keep the supporting files + self.filename = '' self.errorFlag = False # to keep the check of "make install" errors self.initUI() @@ -60,7 +61,7 @@ def initUI(self): self.termedit.setReadOnly(1) pal = QtGui.QPalette() bgc = QtGui.QColor(0, 0, 0) - pal.setColor(QtGui.QPalette.Base, bgc) + pal.setColor(QtGui.QPalette.ColorRole.Base, bgc) self.termedit.setPalette(pal) self.termedit.setStyleSheet("QTextEdit {color:white}") @@ -139,9 +140,9 @@ def createModelDirectory(self): "This model already exist. Do you want to " + "overwrite it?
If yes press ok, else cancel it and " + "change the name of your vhdl file.", - QtWidgets.QMessageBox.Ok, QtWidgets.QMessageBox.Cancel + QtWidgets.QMessageBox.StandardButton.Ok | QtWidgets.QMessageBox.StandardButton.Cancel ) - if ret == QtWidgets.QMessageBox.Ok: + if ret == QtWidgets.QMessageBox.StandardButton.Ok: print("Overwriting existing model " + self.modelname) if os.name == 'nt': cmd = "rmdir " + self.modelname + "/s /q" @@ -234,7 +235,7 @@ def createModelFiles(self): self.msys_home = self.parser.get('COMPILER', 'MSYS_HOME') subprocess.call(self.msys_home + "/usr/bin/bash.exe " + path + "/DUTghdl/compile.sh", shell=True) - subprocess.call(self.msys_hoscme + "/usr/bin/bash.exe -c " + + subprocess.call(self.msys_home + "/usr/bin/bash.exe -c " + "'chmod a+x start_server.sh'", shell=True) subprocess.call(self.msys_home + "/usr/bin/bash.exe -c " + "'chmod a+x sock_pkg_create.sh'", shell=True) @@ -249,11 +250,14 @@ def createModelFiles(self): # Slot to redirect stdout and stderr to window console @QtCore.pyqtSlot() def readAllStandard(self): + proc = self.sender() + if not isinstance(proc, QtCore.QProcess): + return self.termedit.append( - str(self.process.readAllStandardOutput().data(), encoding='utf-8') + str(proc.readAllStandardOutput().data(), encoding='utf-8') ) - stderror = self.process.readAllStandardError() - if stderror.toUpper().contains(b"ERROR"): + stderror = proc.readAllStandardError() + if stderror.toUpper().contains(QtCore.QByteArray(b"ERROR")): self.errorFlag = True self.termedit.append(str(stderror.data(), encoding='utf-8')) @@ -265,22 +269,21 @@ def runMake(self): try: if os.name == 'nt': - # path to msys bin directory where make is located self.msys_home = self.parser.get('COMPILER', 'MSYS_HOME') cmd = self.msys_home + "/mingw64/bin/mingw32-make.exe" else: - cmd = " make" + cmd = "make" print("Running Make command in " + path_icm) - path = os.getcwd() # noqa self.process = QtCore.QProcess(self) - self.process.start(cmd) - print("make command process pid ---------- >", self.process.pid()) - + self.process.readyReadStandardOutput.connect(self.readAllStandard) + self.process.readyReadStandardError.connect(self.readAllStandard) if os.name == "nt": self.process.finished.connect(self.createSchematicLib) - self.process \ - .readyReadStandardOutput.connect(self.readAllStandard) + else: + self.process.finished.connect(self.runMakeInstall) + self.process.start(cmd) + print("make command process pid ---------- >", self.process.processId()) except BaseException: print("There is error in 'make' ") @@ -291,20 +294,18 @@ def runMakeInstall(self): try: if os.name == 'nt': self.msys_home = self.parser.get('COMPILER', 'MSYS_HOME') - cmd = self.msys_home + "/mingw64/bin/mingw32-make.exe install" + prog = self.msys_home + "/mingw64/bin/mingw32-make.exe" + args = ["install"] else: - cmd = " make install" + prog = "make" + args = ["install"] print("Running Make Install") - path = os.getcwd() # noqa - try: - self.process.close() - except BaseException: - pass self.process = QtCore.QProcess(self) - self.process.start(cmd) - self.process.finished.connect(self.createSchematicLib) self.process.readyReadStandardOutput.connect(self.readAllStandard) + self.process.readyReadStandardError.connect(self.readAllStandard) + self.process.finished.connect(self.createSchematicLib) + self.process.start(prog, args) os.chdir(self.cur_dir) except BaseException: @@ -312,6 +313,19 @@ def runMakeInstall(self): sys.exit() def createSchematicLib(self): + try: + self._createSchematicLib() + except Exception as e: + print("createSchematicLib exception:", e) + import traceback + traceback.print_exc() + QtWidgets.QMessageBox.critical( + self, 'Error', 'Library creation failed: ' + str(e) + ) + self.uploadbtn.setEnabled(True) + self.exitbtn.setEnabled(True) + + def _createSchematicLib(self): if os.name == "nt": shutil.copy("ghdl/ghdl.cm", "../../../../lib/ngspice/") @@ -333,6 +347,8 @@ def createSchematicLib(self): '''To create Schematic Library of your model, ''' + '''use NGHDL through eSim ''' ) + self.uploadbtn.setEnabled(True) + self.exitbtn.setEnabled(True) def uploadModel(self): print("Upload button clicked") @@ -340,6 +356,10 @@ def uploadModel(self): self.process.close() except BaseException: pass + if not self.filename: + QtWidgets.QMessageBox.warning( + self, 'No File', 'Use Browse to select a .vhdl file first.') + return try: self.file_extension = os.path.splitext(str(self.filename))[1] print("Uploaded File extension :" + self.file_extension) @@ -348,12 +368,13 @@ def uploadModel(self): self.checkSupportFiles() if self.file_extension == ".vhdl": self.errorFlag = False + self.uploadbtn.setEnabled(False) + self.exitbtn.setEnabled(False) + self.termedit.append('Processing... do not close until Symbol Added dialog appears.') self.createModelDirectory() self.addingModelInModpath() self.createModelFiles() self.runMake() - if os.name != 'nt': - self.runMakeInstall() else: QtWidgets.QMessageBox.information( self, 'Message', '''Important Message.
''' + @@ -439,7 +460,7 @@ def main(): # Mainwindow() object must be assigned to a variable. # Otherwise, it is destroyed as soon as it gets created. w = Mainwindow() # noqa - sys.exit(app.exec_()) + sys.exit(app.exec()) if __name__ == '__main__': diff --git a/requirements.txt b/requirements.txt index 5dd682548..71a07053d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,15 +4,15 @@ contourpy==1.1.1 cycler==0.12.1 entrypoints==0.3 flake8==3.7.7 -fonttools==4.57.0 -https://github.com/aishw31/hdlparse/tarball/python3compat +fonttools==4.61.0 +hdlparse==1.0.4 importlib_resources==6.4.5 kiwisolver==1.4.7 matplotlib==3.7.5 mccabe==0.6.1 numpy==1.24.4 packaging==25.0 -pillow==10.4.0 +pillow==12.2.0 pycodestyle==2.5.0 pyflakes==2.1.1 pyparsing==3.1.4 diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py index a0f36d6b5..ce5c920ab 100644 --- a/src/configuration/Appconfig.py +++ b/src/configuration/Appconfig.py @@ -45,8 +45,13 @@ class Appconfig(QtWidgets.QWidget): user_home, ".esim/workspace.txt"), 'r' ) workspace_check, home = file.readline().split(' ', 1) + home = home.strip() file.close() - except IOError: + except (IOError, ValueError): + # ValueError: workspace.txt was truncated/empty (e.g. an interrupted + # write left it blank), so " ".split(' ', 1) cannot unpack + # into two names. Fall back to the default workspace instead of letting + # the exception escape the class body and abort startup. home = os.path.join(os.path.expanduser("~"), "eSim-Workspace") workspace_check = 0 @@ -110,3 +115,26 @@ def print_warning(self, warning): def print_error(self, error): self.noteArea['Note'].append('[ERROR]: ' + error) + + def save_current_project(self): + try: + path = os.path.join(self.user_home, ".esim", "last_project.json") + with open(path, "w") as f: + json.dump(self.current_project, f) + except Exception as e: + print("Failed to save current project:", str(e)) + + def load_last_project(self): + try: + path = os.path.join(self.user_home, ".esim", "last_project.json") + with open(path, "r") as f: + data = json.load(f) + project_path = data.get("ProjectName", None) + if project_path and os.path.exists(project_path): + self.current_project["ProjectName"] = project_path + return project_path + else: + print("Project path does not exist: ", project_path) + except Exception as e: + print("Error: ", str(e)) + return None \ No newline at end of file diff --git a/src/converter/browseSchematic.py b/src/converter/browseSchematic.py index 436c11c6a..f5e9abdc4 100644 --- a/src/converter/browseSchematic.py +++ b/src/converter/browseSchematic.py @@ -2,7 +2,7 @@ def browse_path(self, text_box): file_dialog = QFileDialog() # a dialog that allows the user to select files or directories - file_dialog.setFileMode(QFileDialog.AnyFile) + file_dialog.setFileMode(QFileDialog.FileMode.AnyFile) file_dialog.setNameFilter("Supported Files (*.sch *.asc *.slb *.asy);;ASY Files (*.asy)") # Include all supported extensions file_dialog.exec() # Execute the dialog diff --git a/src/frontEnd/Application.py b/src/frontEnd/Application.py index 5cfb293a1..483804f74 100644 --- a/src/frontEnd/Application.py +++ b/src/frontEnd/Application.py @@ -34,6 +34,7 @@ from PyQt6.QtCore import QSize from configuration.Appconfig import Appconfig from frontEnd import ProjectExplorer +from frontEnd import TimeExplorer from frontEnd import Workspace from frontEnd import DockArea from projManagement.openProject import OpenProjectInfo @@ -358,6 +359,11 @@ def new_project(self): self.obj_Mainview.obj_projectExplorer.addTreeNode( directory, filelist ) + self.obj_appconfig.current_project["ProjectName"] = directory + project_path = self.obj_appconfig.current_project["ProjectName"] + project_name = os.path.basename(project_path) + self.obj_Mainview.obj_timeExplorer.load_snapshots(project_name) + self.obj_appconfig.save_current_project() updated = True if not updated: @@ -379,6 +385,11 @@ def open_project(self): directory, filelist = self.project.body() self.obj_Mainview.obj_projectExplorer.addTreeNode( directory, filelist) + self.obj_appconfig.current_project["ProjectName"] = directory + project_path = self.obj_appconfig.current_project["ProjectName"] + project_name = os.path.basename(project_path) + self.obj_Mainview.obj_timeExplorer.load_snapshots(project_name) + self.obj_appconfig.save_current_project() except BaseException: pass @@ -407,6 +418,7 @@ def close_project(self): pass self.obj_Mainview.obj_dockarea.closeDock() self.obj_appconfig.current_project['ProjectName'] = None + self.obj_appconfig.save_current_project() self.systemTrayIcon.showMessage( 'Close', 'Current project ' + os.path.basename(current_project) + ' is Closed.' @@ -465,7 +477,7 @@ def open_toolmanager(self): self.obj_workThread_tm.start() @QtCore.pyqtSlot(QtCore.QProcess.ExitStatus, int) - def plotSimulationData(self, exitCode, exitStatus): + def plotSimulationData(self, exitStatus, exitCode): """Enables interaction for new simulation and displays the plotter dock where graphs can be plotted. """ @@ -869,6 +881,8 @@ def __init__(self, *args): self.obj_dockarea = DockArea.DockArea() self.obj_projectExplorer = ProjectExplorer.ProjectExplorer() + self.obj_timeExplorer = TimeExplorer.TimeExplorer() + self.obj_projectExplorer.set_time_explorer(self.obj_timeExplorer) # Adding content to vertical middle Split. self.middleSplit.setOrientation(QtCore.Qt.Orientation.Vertical) @@ -880,7 +894,12 @@ def __init__(self, *args): self.middleContainer.setLayout(self.middleContainerLayout) # Adding content of left split - self.leftSplit.addWidget(self.obj_projectExplorer) + self.leftPanel = QtWidgets.QVBoxLayout() + self.leftPanelWidget = QtWidgets.QWidget() + self.leftPanel.addWidget(self.obj_projectExplorer) + self.leftPanel.addWidget(self.obj_timeExplorer) + self.leftPanelWidget.setLayout(self.leftPanel) + self.leftSplit.addWidget(self.leftPanelWidget) self.leftSplit.addWidget(self.middleContainer) # Adding to main Layout @@ -919,6 +938,15 @@ def main(args): app.setApplicationName("eSim") appView = Application() + last_project_path = appView.obj_appconfig.load_last_project() + if last_project_path: + try: + open_proj = OpenProjectInfo() + directory, filelist = open_proj.body(last_project_path) + appView.obj_Mainview.obj_projectExplorer.addTreeNode(directory, filelist) + except Exception as e: + print("Could not restore last project:", str(e)) + appView.obj_Mainview.obj_timeExplorer.load_last_snapshots() appView.hide() splash_pix = QtGui.QPixmap(init_path + 'images/splash_screen_esim.png') diff --git a/src/frontEnd/ProjectExplorer.py b/src/frontEnd/ProjectExplorer.py old mode 100755 new mode 100644 index b8786c0cc..75f7e0a71 --- a/src/frontEnd/ProjectExplorer.py +++ b/src/frontEnd/ProjectExplorer.py @@ -1,6 +1,9 @@ from PyQt6 import QtCore, QtWidgets import os import json +import shutil +from datetime import datetime +from pathlib import Path from configuration.Appconfig import Appconfig from projManagement.Validation import Validation @@ -28,6 +31,7 @@ def __init__(self): self.obj_validation = Validation() self.treewidget = QtWidgets.QTreeWidget() self.window = QtWidgets.QVBoxLayout() + self.fs_watcher = QtCore.QFileSystemWatcher() header = QtWidgets.QTreeWidgetItem(["Projects", "path"]) self.treewidget.setHeaderItem(header) self.treewidget.setColumnHidden(1, True) @@ -68,13 +72,22 @@ def __init__(self): QtWidgets.QTreeWidgetItem( parentnode, [files, os.path.join(parents, files)] ) + self.fs_watcher.addPath(parents) self.window.addWidget(self.treewidget) + self.fs_watcher.directoryChanged.connect(self.handleDirectoryChanged) self.treewidget.expanded.connect(self.refreshInstant) self.treewidget.doubleClicked.connect(self.openProject) self.treewidget.setContextMenuPolicy(QtCore.Qt.ContextMenuPolicy.CustomContextMenu) self.treewidget.customContextMenuRequested.connect(self.openMenu) self.setLayout(self.window) self.show() + + def handleDirectoryChanged(self, path): + for i in range(self.treewidget.topLevelItemCount()): + item = self.treewidget.topLevelItem(i) + if item.text(1) == path and item.isExpanded(): + index = self.treewidget.indexFromItem(item) + self.refreshProject(indexItem=index) def refreshInstant(self): for i in range(self.treewidget.topLevelItemCount()): @@ -105,12 +118,14 @@ def addTreeNode(self, parents, children): def openMenu(self, position): indexes = self.treewidget.selectedIndexes() - if len(indexes) > 0: - level = 0 - index = indexes[0] - while index.parent().isValid(): - index = index.parent() - level += 1 + if not indexes: + return + + level = 0 + index = indexes[0] + while index.parent().isValid(): + index = index.parent() + level += 1 menu = QtWidgets.QMenu() if level == 0: @@ -123,8 +138,10 @@ def openMenu(self, position): elif level == 1: openfile = menu.addAction(self.tr("Open")) openfile.triggered.connect(self.openProject) + snapshot = menu.addAction(self.tr("Snapshot")) + snapshot.triggered.connect(self.takeSnapshot) - menu.exec_(self.treewidget.viewport().mapToGlobal(position)) + menu.exec(self.treewidget.viewport().mapToGlobal(position)) def openProject(self): self.indexItem = self.treewidget.currentIndex() @@ -277,7 +294,7 @@ def renameProject(self): newBaseFileName, ok = QtWidgets.QInputDialog.getText( self, 'Rename Project', 'Project Name:', - QtWidgets.QLineEdit.Normal, self.baseFileName + QtWidgets.QLineEdit.EchoMode.Normal, self.baseFileName ) if ok and newBaseFileName: @@ -429,4 +446,33 @@ def renameProject(self): 'The project name should not ' + 'contain space between them' ) - msg.exec() + msg.exec_() + + def set_time_explorer(self, time_explorer_widget): + self.time_explorer = time_explorer_widget + + def takeSnapshot(self): + index = self.treewidget.currentIndex() + file_path = str(index.sibling(index.row(), 1).data()) + file_name = os.path.basename(file_path) + + if not os.path.isfile(file_path): + QtWidgets.QMessageBox.warning(self, "Snapshot Failed", "Selected item is not a file.") + return + + project_path = self.obj_appconfig.current_project["ProjectName"] + project_name = os.path.basename(project_path) + + snapshot_dir = os.path.join(Path.home(), ".esim", "history", project_name) + os.makedirs(snapshot_dir, exist_ok=True) + + formatted_time = datetime.now().strftime("%I.%M %p %d-%m-%Y") + snapshot_name = f"{file_name}({formatted_time})" + snapshot_path = os.path.join(snapshot_dir, snapshot_name) + + shutil.copy2(file_path, snapshot_path) + + if hasattr(self, 'time_explorer'): + self.time_explorer.add_snapshot(file_name, formatted_time) + else: + print(f"Snapshot taken: {snapshot_path}") diff --git a/src/frontEnd/TerminalUi.py b/src/frontEnd/TerminalUi.py index 2384991e3..20861d9c0 100644 --- a/src/frontEnd/TerminalUi.py +++ b/src/frontEnd/TerminalUi.py @@ -24,7 +24,7 @@ def __init__(self, qProcess, args): self.iconDir = "../../images" # Load the ui file - uic.loadUi("TerminalUi.ui", self) + uic.loadUi(os.path.join(os.path.dirname(__file__), "TerminalUi.ui"), self) # Define Our Widgets self.progressBar = self.findChild( @@ -94,7 +94,7 @@ def cancelSimulation(self): def redoSimulation(self): """This function reruns the ngspice simulation """ - self.Flag = "Flase" + self.Flag = False self.cancelSimulationButton.setEnabled(True) self.redoSimulationButton.setEnabled(False) diff --git a/src/frontEnd/TimeExplorer.py b/src/frontEnd/TimeExplorer.py new file mode 100644 index 000000000..b028c9740 --- /dev/null +++ b/src/frontEnd/TimeExplorer.py @@ -0,0 +1,192 @@ +import os +import re +import shutil +import json +from PyQt6 import QtWidgets + +class TimeExplorer(QtWidgets.QWidget): + + if os.name == 'nt': + user_home = os.path.join('library', 'config') + else: + user_home = os.path.expanduser('~') + + current_project = {"ProjectName": None} + current_project_path = {"ProjectPath": None} + + def __init__(self): + super(TimeExplorer, self).__init__() + + self.setFixedHeight(200) + + self.layout = QtWidgets.QVBoxLayout() + self.setLayout(self.layout) + + self.treewidget = QtWidgets.QTreeWidget() + self.treewidget.setHeaderLabels(["Timeline", ""]) + self.treewidget.setColumnWidth(0, 150) + + self.treewidget.setStyleSheet(" \ + QTreeView { border-radius: 15px; border: 1px \ + solid gray; padding: 5px; width: 200px; height: 150px; }\ + ") + + self.layout.addWidget(self.treewidget) + + self.button_layout = QtWidgets.QHBoxLayout() + self.restore = QtWidgets.QPushButton("Restore") + self.clear = QtWidgets.QPushButton("Clear") + self.button_layout.addWidget(self.restore) + self.button_layout.addWidget(self.clear) + + self.layout.addLayout(self.button_layout) + + self.restore.clicked.connect(self.restore_snapshots) + self.clear.clicked.connect(self.clear_snapshots) + + def add_snapshot(self, file_name, timestamp): + item = QtWidgets.QTreeWidgetItem([file_name, timestamp]) + self.treewidget.addTopLevelItem(item) + + def load_snapshots(self, project_name): + self.treewidget.clear() + snapshot_dir = os.path.join(self.user_home, ".esim", "history", project_name) + self.current_project["ProjectName"] = project_name + if not os.path.exists(snapshot_dir): + return + pattern = re.compile(r"(.+)\((\d{1,2}\.\d{2} [APM]{2} \d{2}-\d{2}-\d{4})\)$") + for filename in os.listdir(snapshot_dir): + match = pattern.match(filename) + if match: + file_name = match.group(1) + timestamp = match.group(2) + self.add_snapshot(file_name, timestamp) + else: + print(f"Skipping unmatched snapshot file: {filename}") + + def load_last_snapshots(self): + try: + path = os.path.join(self.user_home, ".esim", "last_project.json") + with open(path, "r") as f: + data = json.load(f) + project_path = data.get("ProjectName", None) + self.current_project_path["ProjectPath"] = project_path + if project_path and os.path.exists(project_path): + project_name = os.path.basename(project_path) + self.current_project["ProjectName"] = project_name + self.load_snapshots(project_name) + except Exception as e: + print(f"Error loading last snapshots: {e}") + + def clear_snapshots(self): + selected = self.treewidget.selectedItems() + project_name = self.current_project["ProjectName"] + if not project_name: + return + snapshot_dir = os.path.join(self.user_home, ".esim", "history", project_name) + + if selected: + item = selected[0] + file_name = item.text(0) + timestamp = item.text(1) + + snapshot_filename = f"{file_name}({timestamp})" + snapshot_path = os.path.join(snapshot_dir, snapshot_filename) + + confirm = QtWidgets.QMessageBox.question( + self, "Confirm Deletion", + f"Are you sure you want to delete this snapshot?\n\n{file_name}", + QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No + ) + + if confirm == QtWidgets.QMessageBox.Yes: + try: + os.remove(snapshot_path) + self.treewidget.takeTopLevelItem(self.treewidget.indexOfTopLevelItem(item)) + except Exception as e: + QtWidgets.QMessageBox.warning(self, "Error", f"Could not delete snapshot:\n{e}") + else: + confirm = QtWidgets.QMessageBox.question( + self, "Clear All Snapshots", + f"No file selected.\nDo you want to delete ALL snapshots for '{project_name}'?", + QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No + ) + if confirm == QtWidgets.QMessageBox.Yes: + deleted = 0 + for filename in os.listdir(snapshot_dir): + path = os.path.join(snapshot_dir, filename) + try: + os.remove(path) + deleted += 1 + except Exception as e: + print(f"Error deleting {filename}: {e}") + self.treewidget.clear() + QtWidgets.QMessageBox.information(self, "Deleted", f"{deleted} snapshots deleted.") + + def restore_snapshots(self): + selected_items = self.treewidget.selectedItems() + + project_name = self.current_project["ProjectName"] + if not project_name: + return + snapshot_dir = os.path.join(self.user_home, ".esim", "history", project_name) + + if not os.path.exists(snapshot_dir): + QtWidgets.QMessageBox.warning(self, "No Snapshots", "No snapshots found for this project.") + return + + if selected_items: + item = selected_items[0] + file_name = item.text(0) + timestamp = item.text(1) + + snapshot_filename = f"{file_name}({timestamp})" + snapshot_path = os.path.join(snapshot_dir, snapshot_filename) + destination_path = os.path.join(self.current_project_path["ProjectPath"], file_name) + + confirm = QtWidgets.QMessageBox.question( + self, "Confirm Restore", + f"Do you want to restore this snapshot?\n\n{file_name}", + QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No + ) + + if confirm == QtWidgets.QMessageBox.Yes: + try: + if os.path.exists(destination_path): + os.remove(destination_path) + shutil.copy2(snapshot_path, destination_path) + if os.path.exists(snapshot_path): + os.remove(snapshot_path) + self.treewidget.takeTopLevelItem(self.treewidget.indexOfTopLevelItem(item)) + QtWidgets.QMessageBox.information(self, "Restored", f"{file_name} has been restored.") + except Exception as e: + QtWidgets.QMessageBox.warning(self, "Error", f"Could not restore:\n{e}") + + else: + confirm = QtWidgets.QMessageBox.question( + self, "Restore All Snapshots", + "No file selected.\nDo you want to restore ALL snapshot files?", + QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No + ) + if confirm == QtWidgets.QMessageBox.Yes: + restored = 0 + for filename in os.listdir(snapshot_dir): + match = re.match(r"(.+)\((\d{1,2}\.\d{2} [APM]{2} \d{2}-\d{2}-\d{4})\)$", filename) + if match: + file_base = match.group(1) + snapshot_path = os.path.join(snapshot_dir, filename) + destination_path = os.path.join(self.current_project_path["ProjectPath"], file_base) + + try: + if os.path.exists(destination_path): + os.remove(destination_path) + shutil.copy2(snapshot_path, destination_path) + if os.path.exists(snapshot_path): + os.remove(snapshot_path) + restored += 1 + except Exception as e: + print(f"Could not restore {file_base}: {e}") + + self.treewidget.clear() + + QtWidgets.QMessageBox.information(self, "Restored", f"{restored} snapshot(s) restored.") \ No newline at end of file diff --git a/src/kicadtoNgspice/Analysis.py b/src/kicadtoNgspice/Analysis.py index 0b169efd9..c474228e0 100644 --- a/src/kicadtoNgspice/Analysis.py +++ b/src/kicadtoNgspice/Analysis.py @@ -282,7 +282,7 @@ def createACgroup(self): self.ac_parameter[self.parameter_cnt] = "Hz" # Event listener for combo action - self.start_fre_combo.activated[str].connect(self.start_combovalue) + self.start_fre_combo.currentTextChanged.connect(self.start_combovalue) self.parameter_cnt = self.parameter_cnt + 1 self.stop_fre_combo = QtWidgets.QComboBox() @@ -300,7 +300,7 @@ def createACgroup(self): except BaseException: self.ac_parameter[self.parameter_cnt] = "Hz" - self.stop_fre_combo.activated[str].connect(self.stop_combovalue) + self.stop_fre_combo.currentTextChanged.connect(self.stop_combovalue) self.track_obj.AC_entry_var["ITEMS"] = self.ac_entry_var self.track_obj.AC_Parameter["ITEMS"] = self.ac_parameter @@ -327,13 +327,15 @@ def createACgroup(self): self.Dec.setChecked(False) self.Oct.setChecked(True) - self.ac_entry_var[0].setText(root[0][3].text) - self.ac_entry_var[1].setText(root[0][4].text) - self.ac_entry_var[2].setText(root[0][5].text) - index = self.start_fre_combo.findText(root[0][6].text) - self.start_fre_combo.setCurrentIndex(index) - index = self.stop_fre_combo.findText(root[0][7].text) - self.stop_fre_combo.setCurrentIndex(index) + self.ac_entry_var[0].setText(root[0][3].text or "") + self.ac_entry_var[1].setText(root[0][4].text or "") + self.ac_entry_var[2].setText(root[0][5].text or "") + index = self.start_fre_combo.findText(root[0][6].text or "") + if index >= 0: + self.start_fre_combo.setCurrentIndex(index) + index = self.stop_fre_combo.findText(root[0][7].text or "") + if index >= 0: + self.stop_fre_combo.setCurrentIndex(index) except BaseException: print("AC Analysis XML Parse Error") @@ -498,7 +500,7 @@ def createDCgroup(self): except BaseException: self.dc_parameter[self.parameter_cnt] = "Volts or Amperes" - self.start_combo.activated[str].connect(self.start_changecombo) + self.start_combo.currentTextChanged.connect(self.start_changecombo) self.parameter_cnt += 1 self.increment_combo = QtWidgets.QComboBox(self) @@ -515,7 +517,7 @@ def createDCgroup(self): except BaseException: self.dc_parameter[self.parameter_cnt] = "Volts or Amperes" - self.increment_combo.activated[str].connect(self.increment_changecombo) + self.increment_combo.currentTextChanged.connect(self.increment_changecombo) self.parameter_cnt += 1 self.stop_combo = QtWidgets.QComboBox(self) @@ -532,7 +534,7 @@ def createDCgroup(self): except BaseException: self.dc_parameter[self.parameter_cnt] = "Volts or Amperes" - self.stop_combo.activated[str].connect(self.stop_changecombo) + self.stop_combo.currentTextChanged.connect(self.stop_changecombo) self.parameter_cnt += 1 self.start_combo2 = QtWidgets.QComboBox(self) @@ -549,7 +551,7 @@ def createDCgroup(self): except BaseException: self.dc_parameter[self.parameter_cnt] = "Volts or Amperes" - self.start_combo2.activated[str].connect(self.start_changecombo2) + self.start_combo2.currentTextChanged.connect(self.start_changecombo2) self.parameter_cnt += 1 self.increment_combo2 = QtWidgets.QComboBox(self) @@ -566,7 +568,7 @@ def createDCgroup(self): except BaseException: self.dc_parameter[self.parameter_cnt] = "Volts or Amperes" - self.increment_combo2.activated[str].connect( + self.increment_combo2.currentTextChanged.connect( self.increment_changecombo2) self.parameter_cnt += 1 @@ -584,7 +586,7 @@ def createDCgroup(self): except BaseException: self.dc_parameter[self.parameter_cnt] = "Volts or Amperes" - self.stop_combo2.activated[str].connect(self.stop_changecombo2) + self.stop_combo2.currentTextChanged.connect(self.stop_changecombo2) self.parameter_cnt += 1 self.check = QtWidgets.QCheckBox('Operating Point Analysis', self) @@ -609,26 +611,32 @@ def createDCgroup(self): ") if check: try: - self.dc_entry_var[0].setText(root[1][0].text) - self.dc_entry_var[1].setText(root[1][1].text) - self.dc_entry_var[2].setText(root[1][2].text) - self.dc_entry_var[3].setText(root[1][3].text) - index = self.start_combo.findText(root[1][5].text) - self.start_combo.setCurrentIndex(index) - index = self.increment_combo.findText(root[1][6].text) - self.increment_combo.setCurrentIndex(index) - index = self.stop_combo.findText(root[1][7].text) - self.stop_combo.setCurrentIndex(index) - self.dc_entry_var[4].setText(root[1][8].text) - self.dc_entry_var[5].setText(root[1][9].text) - self.dc_entry_var[6].setText(root[1][10].text) - self.dc_entry_var[7].setText(root[1][11].text) - index = self.start_combo2.findText(root[1][12].text) - self.start_combo2.setCurrentIndex(index) - index = self.increment_combo2.findText(root[1][13].text) - self.increment_combo2.setCurrentIndex(index) - index = self.stop_combo2.findText(root[1][14].text) - self.stop_combo2.setCurrentIndex(index) + self.dc_entry_var[0].setText(root[1][0].text or "") + self.dc_entry_var[1].setText(root[1][1].text or "") + self.dc_entry_var[2].setText(root[1][2].text or "") + self.dc_entry_var[3].setText(root[1][3].text or "") + index = self.start_combo.findText(root[1][5].text or "") + if index >= 0: + self.start_combo.setCurrentIndex(index) + index = self.increment_combo.findText(root[1][6].text or "") + if index >= 0: + self.increment_combo.setCurrentIndex(index) + index = self.stop_combo.findText(root[1][7].text or "") + if index >= 0: + self.stop_combo.setCurrentIndex(index) + self.dc_entry_var[4].setText(root[1][8].text or "") + self.dc_entry_var[5].setText(root[1][9].text or "") + self.dc_entry_var[6].setText(root[1][10].text or "") + self.dc_entry_var[7].setText(root[1][11].text or "") + index = self.start_combo2.findText(root[1][12].text or "") + if index >= 0: + self.start_combo2.setCurrentIndex(index) + index = self.increment_combo2.findText(root[1][13].text or "") + if index >= 0: + self.increment_combo2.setCurrentIndex(index) + index = self.stop_combo2.findText(root[1][14].text or "") + if index >= 0: + self.stop_combo2.setCurrentIndex(index) if root[1][4].text == 1: self.check.setChecked(True) @@ -746,7 +754,7 @@ def createTRANgroup(self): except BaseException: self.tran_parameter[self.parameter_cnt] = "sec" - self.start_combobox.activated[str].connect(self.start_combo_change) + self.start_combobox.currentTextChanged.connect(self.start_combo_change) self.parameter_cnt += 1 self.step_combobox = QtWidgets.QComboBox() @@ -761,7 +769,7 @@ def createTRANgroup(self): except BaseException: self.tran_parameter[self.parameter_cnt] = "sec" - self.step_combobox.activated[str].connect(self.step_combo_change) + self.step_combobox.currentTextChanged.connect(self.step_combo_change) self.parameter_cnt += 1 self.stop_combobox = QtWidgets.QComboBox() @@ -776,7 +784,7 @@ def createTRANgroup(self): except BaseException: self.tran_parameter[self.parameter_cnt] = "sec" - self.stop_combobox.activated[str].connect(self.stop_combo_change) + self.stop_combobox.currentTextChanged.connect(self.stop_combo_change) self.parameter_cnt += 1 self.track_obj.TRAN_entry_var["ITEMS"] = self.tran_entry_var @@ -791,15 +799,18 @@ def createTRANgroup(self): ") if check: try: - self.tran_entry_var[0].setText(root[2][0].text) - self.tran_entry_var[1].setText(root[2][1].text) - self.tran_entry_var[2].setText(root[2][2].text) - index = self.start_combobox.findText(root[2][3].text) - self.start_combobox.setCurrentIndex(index) - index = self.step_combobox.findText(root[2][4].text) - self.step_combobox.setCurrentIndex(index) - index = self.stop_combobox.findText(root[2][5].text) - self.stop_combobox.setCurrentIndex(index) + self.tran_entry_var[0].setText(root[2][0].text or "") + self.tran_entry_var[1].setText(root[2][1].text or "") + self.tran_entry_var[2].setText(root[2][2].text or "") + index = self.start_combobox.findText(root[2][3].text or "") + if index >= 0: + self.start_combobox.setCurrentIndex(index) + index = self.step_combobox.findText(root[2][4].text or "") + if index >= 0: + self.step_combobox.setCurrentIndex(index) + index = self.stop_combobox.findText(root[2][5].text or "") + if index >= 0: + self.stop_combobox.setCurrentIndex(index) except BaseException: print("Transient Analysis XML Parse Error") diff --git a/src/kicadtoNgspice/Convert.py b/src/kicadtoNgspice/Convert.py old mode 100755 new mode 100644 index 665a30130..4e5fcf227 --- a/src/kicadtoNgspice/Convert.py +++ b/src/kicadtoNgspice/Convert.py @@ -331,6 +331,8 @@ def converttosciform(self, string_obj): This function is used for scientific conversion. """ self.string_obj = string_obj + if not self.string_obj: + return "e-00" if self.string_obj[0] == 'm': return "e-03" elif self.string_obj[0] == 'u': diff --git a/src/kicadtoNgspice/DeviceModel.py b/src/kicadtoNgspice/DeviceModel.py index 2088894d0..ead12b3ca 100755 --- a/src/kicadtoNgspice/DeviceModel.py +++ b/src/kicadtoNgspice/DeviceModel.py @@ -572,7 +572,7 @@ def eSim_general_libs(self, schematicInfo): print("=========================================") print(eachline) words = eachline.split() - if eachline[0] == 'q': + if eachline[0] == 'q' and len(words) > 4: # print("Device Model Transistor: ", words[0]) self.devicemodel_dict_beg[words[0]] = self.count transbox = QtWidgets.QGroupBox() @@ -637,7 +637,7 @@ def eSim_general_libs(self, schematicInfo): self.devicemodel_dict_end[words[0]] = self.count self.count = self.count + 1 - elif eachline[0] == 'd': + elif eachline[0] == 'd' and len(words) > 3: # print("Device Model Diode:", words[0]) self.devicemodel_dict_beg[words[0]] = self.count diodebox = QtWidgets.QGroupBox() @@ -701,7 +701,7 @@ def eSim_general_libs(self, schematicInfo): self.devicemodel_dict_end[words[0]] = self.count self.count = self.count + 1 - elif eachline[0] == 'j': + elif eachline[0] == 'j' and len(words) > 4: # print("Device Model JFET:", words[0]) self.devicemodel_dict_beg[words[0]] = self.count jfetbox = QtWidgets.QGroupBox() @@ -764,7 +764,7 @@ def eSim_general_libs(self, schematicInfo): self.devicemodel_dict_end[words[0]] = self.count self.count = self.count + 1 - elif eachline[0] == 's': + elif eachline[0] == 's' and len(words) > 5: # print("Device Model Switch:", words[0]) self.devicemodel_dict_beg[words[0]] = self.count switchbox = QtWidgets.QGroupBox() @@ -890,7 +890,7 @@ def eSim_general_libs(self, schematicInfo): self.devicemodel_dict_end[words[0]] = self.count self.count = self.count + 1 - elif eachline[0] == 'm': + elif eachline[0] == 'm' and len(words) > 4: self.devicemodel_dict_beg[words[0]] = self.count mosfetbox = QtWidgets.QGroupBox() diff --git a/src/kicadtoNgspice/KicadtoNgspice.py b/src/kicadtoNgspice/KicadtoNgspice.py index 50131609a..1a4f00a12 100644 --- a/src/kicadtoNgspice/KicadtoNgspice.py +++ b/src/kicadtoNgspice/KicadtoNgspice.py @@ -59,13 +59,8 @@ def __init__(self, clarg1, clarg2=None): # Track the dynamically created widget of KicadtoNgspice Window self.obj_track = TrackWidget.TrackWidget() - # Clear Dictionary/List item of sub circuit and Ngspice model - # Dictionary - self.obj_track.subcircuitList.clear() - self.obj_track.subcircuitTrack.clear() - self.obj_track.model_entry_var.clear() - # List - self.obj_track.modelTrack[:] = [] + # Reset all shared class-level state for this conversion run + TrackWidget.TrackWidget.reset() # Object of Processing obj_proc = PrcocessNetlist() diff --git a/src/kicadtoNgspice/Processing.py b/src/kicadtoNgspice/Processing.py index 94de9440c..dbc8f4625 100644 --- a/src/kicadtoNgspice/Processing.py +++ b/src/kicadtoNgspice/Processing.py @@ -142,6 +142,8 @@ def insertSpecialSourceParam(self, schematicInfo, sourcelist): if (compName[0] == 'v' or compName[0] == 'i') and not compName.startswith('ihp'): # Find the index component from circuit index = schematicInfo.index(compline) + if len(words) <= 3: + continue if words[3] == "pulse": Title = "Add parameters for pulse source " + compName v1 = ' Enter initial value (Volts/Amps): ' diff --git a/src/kicadtoNgspice/TrackWidget.py b/src/kicadtoNgspice/TrackWidget.py index 9f1d07c2d..2aafc2251 100644 --- a/src/kicadtoNgspice/TrackWidget.py +++ b/src/kicadtoNgspice/TrackWidget.py @@ -7,6 +7,9 @@ class TrackWidget: - References - Model Details - ... etc + - All attributes are class-level (shared across instances by design). + - Call TrackWidget.reset() at the start of each conversion to clear + accumulated state from previous runs. """ # Track widget list for Source details sourcelisttrack = {"ITEMS": "None"} @@ -35,3 +38,25 @@ class TrackWidget: subcircuitTrack = {} # Track subcircuits which are specified in .cir file subcircuitList = {} + + @classmethod + def reset(cls): + """Reset all shared class-level state for a fresh conversion run.""" + cls.sourcelisttrack = {"ITEMS": "None"} + cls.source_entry_var = {"ITEMS": "None"} + cls.AC_entry_var = {"ITEMS": "None"} + cls.AC_Parameter = {"ITEMS": "None"} + cls.DC_entry_var = {"ITEMS": "None"} + cls.DC_Parameter = {"ITEMS": "None"} + cls.TRAN_entry_var = {"ITEMS": "None"} + cls.TRAN_Parameter = {"ITEMS": "None"} + cls.set_CheckBox = {"ITEMS": "None"} + cls.AC_type = {"ITEMS": "None"} + cls.op_check = [] + cls.modelTrack = [] + cls.microcontrollerTrack = [] + cls.model_entry_var = {} + cls.microcontroller_var = {} + cls.deviceModelTrack = {} + cls.subcircuitTrack = {} + cls.subcircuitList = {} diff --git a/src/maker/Maker.py b/src/maker/Maker.py old mode 100755 new mode 100644 index 9c8727e56..21bdc4bb0 --- a/src/maker/Maker.py +++ b/src/maker/Maker.py @@ -29,7 +29,7 @@ # importing the files and libraries import hdlparse.verilog_parser as vlog from PyQt6 import QtCore, QtWidgets -from PyQt6.QtCore import QThread +from PyQt6.QtCore import QThread, pyqtSignal from configuration.Appconfig import Appconfig import os import watchdog.events @@ -95,6 +95,23 @@ def createMakerWidget(self): # self.grid.addWidget(self.creategroup(), 1, 0, 5, 0) self.show() + def _stop_current_toggle(self): + global toggle_flag + if self.refreshoption in toggle_flag: + toggle_flag.remove(self.refreshoption) + if hasattr(self, 'event_handler') and self.event_handler.toggle.isRunning(): + self.event_handler.toggle.requestInterruption() + self.event_handler.toggle.wait(2000) + + def closeEvent(self, event): + self._stop_current_toggle() + if hasattr(self, '_rc_toggle') and self._rc_toggle.isRunning(): + self._rc_toggle.requestInterruption() + self._rc_toggle.wait(2000) + if hasattr(self, 'observer') and self.observer.is_alive(): + self.observer.stop() + super().closeEvent(event) + # This function is to Add new verilog file def addverilog(self): @@ -136,8 +153,7 @@ def addverilog(self): global verilogFile verilogFile[self.filecount] = self.verilogfile - if self.refreshoption in toggle_flag: - toggle_flag.remove(self.refreshoption) + self._stop_current_toggle() self.observer = watchdog.observers.Observer() self.event_handler = Handler( @@ -159,8 +175,10 @@ def addverilog(self): # (as the original one gets destroyed) def refresh_change(self): if self.refreshoption in toggle_flag: - self.toggle = toggle(self.refreshoption) - self.toggle.start() + if hasattr(self, '_rc_toggle') and self._rc_toggle.isRunning(): + return + self._rc_toggle = toggle(self.refreshoption) + self._rc_toggle.start() # It is used to refresh the file in eSim if its edited anywhere else def refresh(self): @@ -171,6 +189,7 @@ def refresh(self): print("NgVeri File: " + self.verilogfile + " Refreshed") self.obj_Appconfig.print_info( "NgVeri File: " + self.verilogfile + " Refreshed") + self._stop_current_toggle() self.observer = watchdog.observers.Observer() self.event_handler = Handler( self.verilogfile, @@ -182,10 +201,6 @@ def refresh(self): path=self.verilogfile, recursive=True) self.observer.start() - # self.notify.start() - global toggle_flag - if self.refreshoption in toggle_flag: - toggle_flag.remove(self.refreshoption) # This function is used to save the edited file in eSim def save(self): @@ -321,7 +336,7 @@ def runmakerchip(self): self.process.start(cmd) print( "Makerchip IDE command process pid ---------->", - self.process.pid()) + self.process.processId()) except BaseException as e: print(e) self.msg = QtWidgets.QErrorMessage(self) @@ -444,6 +459,11 @@ def creategroup(self): return self.trbox +class _FileModifiedNotifier(QtCore.QObject): + """Bridges watchdog background thread to main thread for GUI notifications.""" + modified = pyqtSignal(str) + + # The Handler class is used to create a watch on the files using WatchDog class Handler(watchdog.events.PatternMatchingEventHandler): # this function initialisses the variable and the objects of watchdog @@ -456,27 +476,28 @@ def __init__(self, verilogfile, refreshoption, observer): self.obj_Appconfig = Appconfig() self.observer = observer self.toggle = toggle(self.refreshoption) + self._notifier = _FileModifiedNotifier() + self._notifier.modified.connect(self._show_modified_dialog) - # if a file is modified, toggle starts to toggle the refresh button - def on_modified(self, event): - print("Watchdog received modified event - % s." % event.src_path) + def _show_modified_dialog(self, verilogfile): msg = QtWidgets.QErrorMessage() msg.setWindowTitle("eSim Message") msg.showMessage( - "NgVeri File: " + - self.verilogfile + - " modified. Please click on Refresh") + "NgVeri File: " + verilogfile + " modified. Please click on Refresh") msg.exec() + + # if a file is modified, toggle starts to toggle the refresh button + def on_modified(self, event): + print("Watchdog received modified event - % s." % event.src_path) print("NgVeri File: " + self.verilogfile + " modified. Please click on Refresh") - # self.obj_Appconfig.print_info("NgVeri File:\ - # "+self.verilogfile+" modified. Please click on Refresh") global toggle_flag if self.refreshoption not in toggle_flag: toggle_flag.append(self.refreshoption) - # i.rm_watch() self.observer.stop() - self.toggle.start() + if not self.toggle.isRunning(): + self.toggle.start() + self._notifier.modified.emit(self.verilogfile) # class notify(QThread): @@ -522,24 +543,23 @@ def on_modified(self, event): # This class is used to toggle a button(change colour by toggling) class toggle(QThread): + changeStyle = pyqtSignal(str) + # initialising the threads def __init__(self, option): QThread.__init__(self) self.option = option - - def __del__(self): - self.wait() + self.changeStyle.connect(option.setStyleSheet) # running the thread to toggle def run(self): - - while True: - self.option.setStyleSheet("background-color: red") - self.sleep(1) - self.option.setStyleSheet("background-color: none") - self.sleep(1) - print(toggle_flag) - if not self.option.isVisible(): + while not self.isInterruptionRequested(): + self.changeStyle.emit("background-color: red") + self.msleep(1000) + if self.isInterruptionRequested(): break + self.changeStyle.emit("background-color: none") + self.msleep(1000) if self.option not in toggle_flag: break + self.changeStyle.emit("") diff --git a/src/maker/ModelGeneration.py b/src/maker/ModelGeneration.py old mode 100755 new mode 100644 index a58d4a432..3950eb20f --- a/src/maker/ModelGeneration.py +++ b/src/maker/ModelGeneration.py @@ -1000,7 +1000,7 @@ def runMake(self): print("Running Make command in " + path_icm) self.process = QtCore.QProcess(self) self.process.start('sh', ['-c', self.cmd]) - print("make command process pid ---------- >", self.process.pid()) + print("make command process pid ---------- >", self.process.processId()) self.termtitle("MAKE COMMAND") self.termtext("Current Directory: " + path_icm) diff --git a/src/maker/NgVeri.py b/src/maker/NgVeri.py old mode 100755 new mode 100644 index 3b0f4c2da..3f4efc7ed --- a/src/maker/NgVeri.py +++ b/src/maker/NgVeri.py @@ -402,7 +402,7 @@ def creategroup(self): for item in self.data: if item != "\n": self.entry_var[self.count].addItem(item.strip()) - self.entry_var[self.count].activated[str].connect(self.edit_modlst) + self.entry_var[self.count].currentTextChanged.connect(self.edit_modlst) self.trgrid.addWidget(self.entry_var[self.count], 1, 4, 1, 2) self.count += 1 self.entry_var[self.count] = QtWidgets.QComboBox() @@ -418,7 +418,7 @@ def creategroup(self): for item in self.data: if item != "\n": self.entry_var[self.count].addItem(item.strip()) - self.entry_var[self.count].activated[str].connect(self.lint_off_edit) + self.entry_var[self.count].currentTextChanged.connect(self.lint_off_edit) self.trgrid.addWidget(self.entry_var[self.count], 2, 4, 1, 2) self.count += 1 self.entry_var[self.count] = QtWidgets.QLineEdit(self) diff --git a/src/modelEditor/ModelEditor.py b/src/modelEditor/ModelEditor.py index 51136ead2..c069e4b57 100644 --- a/src/modelEditor/ModelEditor.py +++ b/src/modelEditor/ModelEditor.py @@ -185,7 +185,7 @@ def bjt_click(self): filetype = str(self.types.currentText()) self.openfiletype(filetype) # When element selected from combo box, call setfiletype - self.types.activated[str].connect(self.setfiletype) + self.types.currentTextChanged.connect(self.setfiletype) def mos_click(self): ''' @@ -207,7 +207,7 @@ def mos_click(self): self.types.addItem('PMOS(Level-8 180um)') filetype = str(self.types.currentText()) self.openfiletype(filetype) - self.types.activated[str].connect(self.setfiletype) + self.types.currentTextChanged.connect(self.setfiletype) def jfet_click(self): ''' @@ -224,7 +224,7 @@ def jfet_click(self): self.types.addItem('P-JFET') filetype = str(self.types.currentText()) self.openfiletype(filetype) - self.types.activated[str].connect(self.setfiletype) + self.types.currentTextChanged.connect(self.setfiletype) def igbt_click(self): ''' @@ -241,7 +241,7 @@ def igbt_click(self): self.types.addItem('P-IGBT') filetype = str(self.types.currentText()) self.openfiletype(filetype) - self.types.activated[str].connect(self.setfiletype) + self.types.currentTextChanged.connect(self.setfiletype) def magnetic_click(self): ''' diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py index 413e9766d..b432492f2 100644 --- a/src/ngspiceSimulation/NgspiceWidget.py +++ b/src/ngspiceSimulation/NgspiceWidget.py @@ -1,10 +1,3 @@ -""" -NGSpice Widget Module - -This module provides the NgspiceWidget class for running NGSpice simulations -within a PyQt6 application interface. -""" - import os import shlex import logging @@ -15,25 +8,16 @@ from frontEnd import TerminalUi from configparser import ConfigParser -# Set up logging logger = logging.getLogger(__name__) class NgspiceWidget(QtWidgets.QWidget): - """ - Widget for running NGSpice simulations with terminal interface. - - This class creates a widget that runs NGSpice processes and displays - their output in a terminal interface. It handles simulation execution, - logging, and provides status feedback through signals. - """ - - # Process error types + """Runs an NGSpice simulation and displays output in a terminal widget.""" + ERROR_FAILED_TO_START = 0 ERROR_CRASHED = 1 ERROR_TIMED_OUT = 2 - - # Message formatting templates + SUCCESS_FORMAT = ('' '{}' '') @@ -42,75 +26,42 @@ class NgspiceWidget(QtWidgets.QWidget): '') def __init__(self, netlist: str, sim_end_signal: pyqtSignal, plotFlag: Optional[bool] = None) -> None: - """ - Initialize the NgspiceWidget. - - Creates NGSpice simulation window and runs the simulation process. - Handles logging of the NGSpice process, returns simulation status, - and calls the plotter. Also checks if running on Linux and starts GAW. - - Args: - netlist: Path to the .cir.out file containing simulation instructions - sim_end_signal: Signal emitted to Application class for enabling - simulation interaction and plotting data if successful - plotFlag: Whether to show NGSpice plots (True/False) - """ super().__init__() self.setSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) - - # Set minimum size self.setMinimumSize(300, 200) - + self.obj_appconfig = Appconfig() self.project_dir = self.obj_appconfig.current_project["ProjectName"] self.netlist_path = netlist self.sim_end_signal = sim_end_signal - self.plotFlag = plotFlag self.command = netlist logger.info(f"Value of plotFlag: {self.plotFlag}") - - # Prepare NGSpice arguments + self.ngspice_args = self._prepare_ngspice_arguments(netlist) logger.info(f"NGSpice arguments: {self.ngspice_args}") - # Set up the main process self.process = QtCore.QProcess(self) self.terminal_ui = TerminalUi.TerminalUi(self.process, self.ngspice_args) - - # Set up layout + self.layout = QtWidgets.QVBoxLayout(self) self.layout.addWidget(self.terminal_ui) - # Configure and start the NGSpice process self._configure_process() self._start_process() - - # Start GAW on Linux systems (first instance) + if self._is_linux(): self._start_gaw_process(netlist) def _prepare_ngspice_arguments(self, netlist: str) -> List[str]: - """ - Prepare command line arguments for NGSpice. - - Args: - netlist: Path to the netlist file - - Returns: - List of command line arguments for NGSpice - """ raw_file = netlist.replace(".cir.out", ".raw") return ['-b', '-r', raw_file, netlist] def _configure_process(self) -> None: - """Configure the NGSpice process with working directory and signals.""" self.process.setWorkingDirectory(self.project_dir) self.process.setProcessChannelMode(QtCore.QProcess.ProcessChannelMode.SeparateChannels) - - # Connect process signals self.process.readyReadStandardOutput.connect(self._handle_stdout) self.process.readyReadStandardError.connect(self._handle_stderr) self.process.finished.connect( @@ -123,29 +74,20 @@ def _configure_process(self) -> None: ) def _register_process(self, process: QtCore.QProcess) -> None: - """Register a process with the application config tracker.""" self.obj_appconfig.process_obj.append(process) current_project_name = self.obj_appconfig.current_project['ProjectName'] if current_project_name in self.obj_appconfig.proc_dict: - self.obj_appconfig.proc_dict[current_project_name].append(process.pid()) + self.obj_appconfig.proc_dict[current_project_name].append(process.processId()) def _start_process(self) -> None: - """Start the NGSpice process and register it with the application.""" self.process.start('ngspice', self.ngspice_args) logger.debug(f"Process dictionary: {self.obj_appconfig.proc_dict}") self._register_process(self.process) def _is_linux(self) -> bool: - """Check if the current operating system is Linux.""" return os.name != "nt" def _start_gaw_process(self, netlist: str) -> None: - """ - Start GAW (GTK Analog Waveform viewer) process on Linux. - - Args: - netlist: Path to the netlist file - """ try: self.gaw_process = QtCore.QProcess(self) raw_file = netlist.replace(".cir.out", ".raw") @@ -157,7 +99,6 @@ def _start_gaw_process(self, netlist: str) -> None: @pyqtSlot() def _handle_stdout(self) -> None: - """Read stdout from the NGSpice process and display in terminal.""" try: data = self.process.readAllStandardOutput().data() if data: @@ -184,34 +125,17 @@ def _handle_stderr(self) -> None: except Exception as e: logger.error(f"Error reading stderr: {e}") - def finish_simulation(self, exit_code: Optional[int], + def finish_simulation(self, exit_code: Optional[int], exit_status: Optional[QtCore.QProcess.ExitStatus], - sim_end_signal: pyqtSignal, + sim_end_signal: pyqtSignal, has_error_occurred: bool) -> None: - """ - Handle simulation completion and update UI accordingly. - - This method is called when the NGSpice simulation finishes. It updates - the UI state, displays appropriate status messages, and emits signals - for plot generation if the simulation was successful. - - Args: - exit_code: Process exit code - exit_status: Process exit status - sim_end_signal: Signal to emit when simulation ends - has_error_occurred: Whether an error occurred during simulation - """ # Skip finished signal if cancellation triggered both finished and error signals if not has_error_occurred and self.terminal_ui.simulationCancelled: return - # Update UI state after simulation completion - self._update_ui_after_simulation() - - # Get actual exit code and status if not provided + # Resolve exit code and status before any UI work so finally block has them if exit_code is None: exit_code = self.process.exitCode() - error_type = self.process.error() if error_type in (QtCore.QProcess.ProcessError.FailedToStart, QtCore.QProcess.ProcessError.Crashed, @@ -220,37 +144,36 @@ def finish_simulation(self, exit_code: Optional[int], elif exit_status is None: exit_status = self.process.exitStatus() - # Handle different simulation outcomes - if self.terminal_ui.simulationCancelled: - self._show_cancellation_message() - elif self._is_simulation_successful(exit_status, exit_code, error_type): - self._show_success_message() + try: + self._update_ui_after_simulation() - # On redo-simulation, TerminalUi sets "redoPlotFlag" on the process - # to pass the user's plot choice back here - redo_flag = self.process.property("redoPlotFlag") - if redo_flag is not None: - self.plotFlag = redo_flag + if self.terminal_ui.simulationCancelled: + self._show_cancellation_message() + elif self._is_simulation_successful(exit_status, exit_code, error_type): + self._show_success_message() - if self.plotFlag: - self.open_ngspice_plots() - else: - self._show_failure_message(error_type) + # On redo-simulation, TerminalUi sets "redoPlotFlag" on the process + # to pass the user's plot choice back here + redo_flag = self.process.property("redoPlotFlag") + if redo_flag is not None: + self.plotFlag = redo_flag - # Scroll terminal to bottom - self._scroll_terminal_to_bottom() + if self.plotFlag: + self.open_ngspice_plots() + else: + self._show_failure_message(error_type) - # Emit completion signal - sim_end_signal.emit(exit_status, exit_code) + self._scroll_terminal_to_bottom() + except Exception as e: + logger.error(f"finish_simulation UI error: {e}", exc_info=True) + finally: + # Emit completion signal โ€” must always run so plot window can open + sim_end_signal.emit(exit_status, exit_code) def open_ngspice_plots(self) -> None: - """ - Open NGSpice plotting windows (native NGSpice plots). - This function handles both Windows and Linux platforms. - """ logger.info("Opening NGSpice native plots") - - if os.name == 'nt': # Windows + + if os.name == 'nt': try: parser_nghdl = ConfigParser() config_path = os.path.join('library', 'config', '.nghdl', 'config.ini') @@ -276,7 +199,7 @@ def open_ngspice_plots(self) -> None: f"ngspice -r {shlex.quote(raw_file)} {shlex.quote(self.command)}" ) self.xterm_process = QtCore.QProcess(self) - self.xterm_process.start('xterm', ['-hold', '-e', xterm_command]) + self.xterm_process.start('xterm', ['-hold', '-e', 'sh', '-c', xterm_command]) self._register_process(self.xterm_process) @@ -290,32 +213,18 @@ def open_ngspice_plots(self) -> None: logger.error(f"Failed to start Linux NGSpice plots: {e}") def _update_ui_after_simulation(self) -> None: - """Update UI elements after simulation completion.""" self.terminal_ui.progressBar.setMaximum(100) self.terminal_ui.progressBar.setProperty("value", 100) self.terminal_ui.cancelSimulationButton.setEnabled(False) self.terminal_ui.redoSimulationButton.setEnabled(True) def _is_simulation_successful(self, exit_status: QtCore.QProcess.ExitStatus, - exit_code: int, + exit_code: int, error_type: QtCore.QProcess.ProcessError) -> bool: - """ - Determine if the simulation completed successfully. - - Args: - exit_status: Process exit status - exit_code: Process exit code - error_type: Process error type - - Returns: - True if simulation was successful, False otherwise - """ return (exit_status == QtCore.QProcess.ExitStatus.NormalExit and - exit_code == 0 and - error_type == QtCore.QProcess.ProcessError.UnknownError) + exit_code == 0) def _show_cancellation_message(self) -> None: - """Display simulation cancellation message.""" message_dialog = QtWidgets.QMessageBox() message_dialog.setModal(True) message_dialog.setIcon(QtWidgets.QMessageBox.Icon.Warning) @@ -325,25 +234,14 @@ def _show_cancellation_message(self) -> None: message_dialog.exec() def _show_success_message(self) -> None: - """Display simulation success message in the terminal.""" success_message = self.SUCCESS_FORMAT.format("Simulation Completed Successfully!") self.terminal_ui.simulationConsole.append(success_message) def _show_failure_message(self, error_type: QtCore.QProcess.ProcessError) -> None: - """ - Display simulation failure message. - - Args: - error_type: Type of process error that occurred - """ - # Display failure message in terminal failure_message = self.FAILURE_FORMAT.format("Simulation Failed!") self.terminal_ui.simulationConsole.append(failure_message) - # Determine specific error message error_message = self._get_error_message(error_type) - - # Show error dialog error_dialog = QtWidgets.QErrorMessage() error_dialog.setModal(True) error_dialog.setWindowTitle("Error Message") @@ -351,15 +249,6 @@ def _show_failure_message(self, error_type: QtCore.QProcess.ProcessError) -> Non error_dialog.exec() def _get_error_message(self, error_type: QtCore.QProcess.ProcessError) -> str: - """ - Get appropriate error message based on error type. - - Args: - error_type: Type of process error - - Returns: - Human-readable error message - """ error_messages = { QtCore.QProcess.ProcessError.FailedToStart: ( 'Simulation failed to start. ' @@ -380,10 +269,8 @@ def _get_error_message(self, error_type: QtCore.QProcess.ProcessError) -> str: ) def _scroll_terminal_to_bottom(self) -> None: - """Scroll the terminal console to the bottom.""" scrollbar = self.terminal_ui.simulationConsole.verticalScrollBar() scrollbar.setValue(scrollbar.maximum()) def sizeHint(self) -> QtCore.QSize: - """Provide proper size hint.""" return QtCore.QSize(800, 600) diff --git a/src/ngspiceSimulation/_cursor_mixin.py b/src/ngspiceSimulation/_cursor_mixin.py new file mode 100644 index 000000000..d5650dff3 --- /dev/null +++ b/src/ngspiceSimulation/_cursor_mixin.py @@ -0,0 +1,440 @@ +import logging +from typing import Dict, List, Optional, Tuple +import numpy as np +from matplotlib.lines import Line2D +from .constants import (CURSOR_ALPHA, FREQ_UNIT_THRESHOLD_KHZ, FREQ_UNIT_THRESHOLD_MHZ, + FREQ_UNIT_THRESHOLD_GHZ) +from .math_utils import _format_measurement, _format_frequency +from .trace import Trace + +logger = logging.getLogger(__name__) + + +class _CursorMixin: + def _find_nearest_cursor(self, event) -> Optional[int]: + """Return cursor index if the click is within 8px of an existing cursor. + + Reads from cursor_positions (raw units) rather than per-pane line + xdata โ€” keeps multi-pane hit-testing simple and pane-agnostic, since + all panes share the same X under sharex. + """ + if (not self.cursor_positions + or not self.panes + or event.xdata is None): + return None + xlim = self.axes.get_xlim() + width_px = self.axes.get_window_extent().width + if width_px == 0: + return None + threshold = 8 * (xlim[1] - xlim[0]) / width_px + for i, x_pos in enumerate(self.cursor_positions): + if x_pos is None: + continue + if abs(event.xdata - x_pos) < threshold: + return i + return None + + def _update_cursor_position(self, cursor_num: int, x_pos: float) -> None: + """Move an existing cursor line without recreating it (fast drag path). + + Skips the per-trace interpolated readout during active drag โ€” that + was O(N_traces ร— log(samples)) per mouse-move event and produced + visible lag with 5+ traces. The full readout is rebuilt on release + via on_canvas_release โ†’ set_cursor-equivalent retouch. + """ + if (cursor_num >= len(self.cursor_lines) + or not self.cursor_lines[cursor_num]): + self.set_cursor(cursor_num, x_pos) + return + for line in self.cursor_lines[cursor_num]: + if line is not None: + line.set_xdata([x_pos, x_pos]) + scale = self._current_axis_scale() + self.cursor_positions[cursor_num] = x_pos + # Lightweight X-only update during drag โ€” full per-signal Y readout + # is deferred to on_canvas_release to keep drag smooth. + unit_str = (self._x_unit or '').strip() + label = self.cursor1_label if cursor_num == 0 else self.cursor2_label + _c_color = '#e53935' if cursor_num == 0 else '#1976d2' + label.setText( + f'C{cursor_num + 1}' + f' @ ' + f'{x_pos * scale:.4g} {unit_str}' + ) + two_cursors = (len(self.cursor_positions) >= 2 + and all(p is not None for p in self.cursor_positions[:2])) + if two_cursors: + delta_raw = abs(self.cursor_positions[1] - self.cursor_positions[0]) + self.delta_label.setText( + f'ฮ”X' + f' {delta_raw * scale:.4g} {unit_str}' + ) + self._update_measure_label(delta_raw, scale) + # Blit path: restore static background, draw only cursor lines, blit. + # Falls back to draw_idle() if snapshot is stale/missing. + if self._blit_background is not None: + self.canvas.restore_region(self._blit_background) + for pane_lines in self.cursor_lines: + for pane_idx, line in enumerate(pane_lines): + if line is not None and pane_idx < len(self.panes): + self.panes[pane_idx].draw_artist(line) + self.canvas.blit(self.fig.bbox) + else: + self.canvas.draw_idle() + + def _cursor_visible_key(self) -> tuple: + sim_key = tuple(t.index for t in self.visible_traces) + func_key = tuple(i for i, v in enumerate(self._func_visible) if v) + return (sim_key, func_key) + + def _get_cursor_interp(self, x_pos: float, cursor_num: int) -> Optional[Dict]: + if cursor_num >= len(self._cursor_interp_cache): + return None + entry = self._cursor_interp_cache[cursor_num] + if entry is None: + return None + if entry['x_pos'] == x_pos and entry['visible_key'] == self._cursor_visible_key(): + return entry + return None + + def _set_cursor_interp(self, x_pos: float, cursor_num: int, + sim_y: Dict, func_y: Dict) -> None: + while len(self._cursor_interp_cache) <= cursor_num: + self._cursor_interp_cache.append(None) + self._cursor_interp_cache[cursor_num] = { + 'x_pos': x_pos, + 'visible_key': self._cursor_visible_key(), + 'sim_y': sim_y, + 'func_y': func_y, + } + + def _update_cursor_panel(self, cursor_num: int, x_pos: Optional[float]) -> None: + """Rebuild the sidebar cursor label with X position + per-signal Y values. + + Shows one line per visible trace so users can read the exact value at + the cursor for every pane simultaneously โ€” especially useful in stacked + view where each pane has its own Y scale. + """ + label_widget = self.cursor1_label if cursor_num == 0 else self.cursor2_label + color = '#e53935' if cursor_num == 0 else '#1976d2' + c_label = f'C{cursor_num + 1}' + + if x_pos is None or not hasattr(self.obj_dataext, 'x'): + label_widget.setText( + f'{c_label}' + f' not set' + ) + return + + x_full = np.asarray(self.obj_dataext.x, dtype=float) + scale = self._x_scale or 1.0 + unit_label = (self._x_unit or '').strip() + x_display = f"{x_pos * scale:.4g}" + if unit_label: + x_display += f" {unit_label}" + + html = (f'{c_label}' + f' @ ' + f'{x_display}') + + visible = self.visible_traces + rows = '' + + cached = self._get_cursor_interp(x_pos, cursor_num) + if cached: + sim_y = cached['sim_y'] + func_y = cached['func_y'] + else: + sim_y: Dict[int, float] = {} + if visible and len(x_full) >= 2: + for t in visible: + try: + y_arr = np.asarray(self.obj_dataext.y[t.index], dtype=float) + except (IndexError, TypeError): + continue + n_pts = min(len(y_arr), len(x_full)) + if n_pts < 2: + continue + sim_y[t.index] = float(np.interp(x_pos, x_full[:n_pts], y_arr[:n_pts])) + func_y: Dict[int, float] = {} + for f_idx, (_, fx, fy, _fcolor, *_) in enumerate(self._func_traces): + if not (f_idx < len(self._func_visible) and self._func_visible[f_idx]): + continue + n_pts = min(len(fx), len(fy)) + if n_pts < 2: + continue + try: + func_y[f_idx] = float(np.interp(x_pos, fx[:n_pts], fy[:n_pts])) + except Exception: + continue + self._set_cursor_interp(x_pos, cursor_num, sim_y, func_y) + + for t in visible: + y_val = sim_y.get(t.index) + if y_val is None: + continue + unit = 'V' if t.index < self.obj_dataext.volts_length else 'A' + value = _format_measurement(y_val, unit) + rows += (f'' + f'{t.name}' + f'{value}' + f'') + + for f_idx, (flabel, _fx, _fy, fcolor, *_) in enumerate(self._func_traces): + if not (f_idx < len(self._func_visible) and self._func_visible[f_idx]): + continue + y_val = func_y.get(f_idx) + if y_val is None: + continue + short = flabel if len(flabel) <= 20 else flabel[:18] + 'โ€ฆ' + rows += (f'' + f'' + f'ฦ’ {short}' + f'{y_val:.4g}' + f'') + + if rows: + html += f'{rows}
' + label_widget.setText(html) + label_widget.updateGeometry() + + def _format_cursor_readout(self, x_pos: float) -> str: + """Single-line "X | sig1=Y1 | sig2=Y2 โ€ฆ" readout at the cursor X. + + Uses np.interp against the raw simulation x/y arrays so the values + are accurate even between sample points. SI prefix per signal via + _format_measurement. Truncated to keep the status bar one line. + """ + visible = self.visible_traces + if not visible or not hasattr(self.obj_dataext, 'x'): + return '' + x_full = np.asarray(self.obj_dataext.x, dtype=float) + if len(x_full) < 2: + return '' + scale = self._x_scale or 1.0 + unit_label = self._x_unit or '' + parts = [f"X={x_pos * scale:.4g} {unit_label}".rstrip()] + + # Cursor readout is always for cursor 0 (single-cursor mode). + cached = self._get_cursor_interp(x_pos, 0) + if cached: + sim_y = cached['sim_y'] + func_y = cached['func_y'] + else: + sim_y = {} + for t in visible: + try: + y_arr = np.asarray(self.obj_dataext.y[t.index], dtype=float) + except (IndexError, TypeError): + continue + n_pts = min(len(y_arr), len(x_full)) + if n_pts < 2: + continue + try: + sim_y[t.index] = float(np.interp(x_pos, x_full[:n_pts], y_arr[:n_pts])) + except Exception: + continue + func_y = {} + for f_idx, (_, fx, fy, _color, *_) in enumerate(self._func_traces): + if not (f_idx < len(self._func_visible) and self._func_visible[f_idx]): + continue + n_pts = min(len(fx), len(fy)) + if n_pts < 2: + continue + try: + func_y[f_idx] = float(np.interp(x_pos, fx[:n_pts], fy[:n_pts])) + except Exception: + continue + self._set_cursor_interp(x_pos, 0, sim_y, func_y) + + for t in visible: + y_val = sim_y.get(t.index) + if y_val is None: + continue + is_voltage = t.index < self.obj_dataext.volts_length + unit = 'V' if is_voltage else 'A' + parts.append(f"{t.name}={_format_measurement(y_val, unit)}") + + for f_idx, (flabel, _fx, _fy, _color, *_) in enumerate(self._func_traces): + if not (f_idx < len(self._func_visible) and self._func_visible[f_idx]): + continue + y_val = func_y.get(f_idx) + if y_val is None: + continue + short = flabel if len(flabel) <= 14 else flabel[:12] + 'โ€ฆ' + parts.append(f"ฦ’({short})={y_val:.4g}") + + # Limit total length so it never wraps the status bar + readout = " | ".join(parts) + return readout if len(readout) < 220 else readout[:217] + 'โ€ฆ' + + def _get_freq_scale_and_unit(self, freq_data: Optional["np.ndarray"] = None) -> Tuple[float, str]: + if freq_data is None: + freq_data = np.asarray(self.obj_dataext.x, dtype=float) + freq_max = np.max(np.abs(freq_data)) if len(freq_data) > 0 else 0.0 + if freq_max == 0: return 1.0, 'Hz' + if freq_max >= FREQ_UNIT_THRESHOLD_GHZ: return 1e-9, 'GHz' + if freq_max >= FREQ_UNIT_THRESHOLD_MHZ: return 1e-6, 'MHz' + if freq_max >= FREQ_UNIT_THRESHOLD_KHZ: return 1e-3, 'kHz' + return 1.0, 'Hz' + + def set_freq_axis_label(self, freq_data: Optional["np.ndarray"] = None) -> None: + if not self.panes or not hasattr(self.obj_dataext, 'x'): + return + if freq_data is None: + freq_data = np.asarray(self.obj_dataext.x, dtype=float) + if len(freq_data) < 2: + self._x_scale, self._x_unit = 1.0, 'Hz' + self.panes[-1].set_xlabel('Frequency (Hz)') + return + scale, unit = self._get_freq_scale_and_unit(freq_data) + self._apply_x_axis_scaling(scale, unit, 'Frequency') + self.axes.set_xlim(float(freq_data[0]), float(freq_data[-1])) + + def _begin_cursor_blit(self) -> None: + """Save static background for blit-based cursor drag. + + Marks all cursor lines animated=True so canvas.draw() excludes them, + then snapshots the result. Each move then does restore+draw_artist+blit + โ€” O(cursor lines) instead of O(full figure). Called once at drag start. + """ + for pane_lines in self.cursor_lines: + for line in pane_lines: + if line is not None: + line.set_animated(True) + self.canvas.draw() + self._blit_background = self.canvas.copy_from_bbox(self.fig.bbox) + + def _end_cursor_blit(self) -> None: + """Restore normal render path after cursor drag ends.""" + if self._blit_background is None: + return + self._blit_background = None + for pane_lines in self.cursor_lines: + for line in pane_lines: + if line is not None: + line.set_animated(False) + self.canvas.draw_idle() + + def set_cursor(self, cursor_num: int, x_pos: float) -> None: + # x_pos is in raw SI units (matches line data + xlim post-formatter). + # Stored positions are raw; displayed labels apply _x_scale at format time. + # In multi-pane mode the cursor draws one axvline per pane so the + # vertical line spans the full stack. + if not self.panes: + return + if x_pos is None: + return + self._end_cursor_blit() # no-op if not blitting; clears stale snapshot + scale = self._current_axis_scale() + + # Pad lists so cursor_num is a valid index. Without this, calling + # set_cursor(1, x) on empty cursor_lines would silently append at + # slot 0 โ†’ "cursor 2" lands in cursor 1's slot. + while len(self.cursor_lines) <= cursor_num: + self.cursor_lines.append([]) + self.cursor_positions.append(None) + + # Tear down old lines for this cursor (every pane) before re-drawing + for old in self.cursor_lines[cursor_num]: + if old is None: + continue + try: + old.remove() + except ValueError: + pass # already cleared by fig.clear() + + color = 'red' if cursor_num == 0 else 'blue' + new_lines: List[Optional[Line2D]] = [ + ax.axvline(x=x_pos, color=color, linestyle='--', alpha=CURSOR_ALPHA) + for ax in self.panes + ] + self.cursor_lines[cursor_num] = new_lines + self.cursor_positions[cursor_num] = x_pos + + self._update_cursor_panel(cursor_num, x_pos) + + two_cursors = (len(self.cursor_positions) >= 2 + and all(p is not None for p in self.cursor_positions[:2])) + if two_cursors: + delta_raw = abs(self.cursor_positions[1] - self.cursor_positions[0]) + self.delta_label.setText( + f'ฮ”X' + f' {delta_raw * scale:.4g} {(self._x_unit or "").strip()}' + ) + self._update_measure_label(delta_raw, scale) + else: + self.measure_label.setText(self._format_cursor_readout(x_pos)) + self.canvas.draw() + + def clear_cursors(self) -> None: + for pane_lines in self.cursor_lines: + for line in pane_lines: + if line is None: + continue + try: + line.remove() + except ValueError: + pass # already removed by fig.clear() + self.cursor_lines.clear() + self.cursor_positions.clear() + self.cursor1_label.setText('C1 not set') + self.cursor2_label.setText('C2 not set') + self.delta_label.setText('ฮ”X โ€”') + self.measure_label.setText("") + self.canvas.draw() + + def _restore_cursors(self) -> None: + """Re-create cursor axvlines after fig.clear(), using stored positions. + + Positions are raw SI units and match the current xlim directly โ€” no + scale factor applied at draw time (formatter handles tick display). + Each cursor draws one axvline per pane so the line spans the full stack. + """ + if not self.panes or not self.cursor_positions: + return + colors = ['red', 'blue'] + rebuilt: List[List[Optional[Line2D]]] = [] + for i, x_pos in enumerate(self.cursor_positions): + if x_pos is None: + rebuilt.append([]) + continue + color = colors[i] if i < len(colors) else 'green' + pane_lines: List[Optional[Line2D]] = [ + ax.axvline(x=x_pos, color=color, + linestyle='--', alpha=CURSOR_ALPHA) + for ax in self.panes + ] + rebuilt.append(pane_lines) + self.cursor_lines = rebuilt + if rebuilt: + logger.debug("Restored %d cursor(s) after plot refresh", len(rebuilt)) + self._refresh_cursor_readouts() + + def _refresh_cursor_readouts(self) -> None: + """Recompute the sidebar cursor labels (C1/C2/ฮ”X/measure) in place. + + Does interpolated Y lookups against the current visible-trace set, so + it must run after panes and _x_scale/_x_unit are set up. Split out of + _restore_cursors so the incremental refresh โ€” where the axvlines + already exist and must NOT be re-created โ€” can refresh just the + readouts when the visible set changes. + """ + scale = self._current_axis_scale() + for i, x_pos in enumerate(self.cursor_positions): + if x_pos is not None: + self._update_cursor_panel(i, x_pos) + two_cursors = (len(self.cursor_positions) >= 2 + and all(p is not None for p in self.cursor_positions[:2])) + if two_cursors: + delta_raw = abs(self.cursor_positions[1] - self.cursor_positions[0]) + self.delta_label.setText( + f'ฮ”X' + f' ' + f'{delta_raw * scale:.4g} {(self._x_unit or "").strip()}' + ) + self._update_measure_label(delta_raw, scale) + elif self.cursor_positions and self.cursor_positions[0] is not None: + self.measure_label.setText( + self._format_cursor_readout(self.cursor_positions[0])) + diff --git a/src/ngspiceSimulation/_func_trace_mixin.py b/src/ngspiceSimulation/_func_trace_mixin.py new file mode 100644 index 000000000..35310a1ff --- /dev/null +++ b/src/ngspiceSimulation/_func_trace_mixin.py @@ -0,0 +1,286 @@ +from typing import Dict, List, Optional, Tuple +import re +import numpy as np +from PyQt6 import QtCore +from PyQt6.QtCore import Qt +from PyQt6.QtWidgets import (QMenu, QMessageBox, QColorDialog, QInputDialog, + QListWidgetItem, QWidget, QPushButton, + QGridLayout, QWidgetAction) +from PyQt6.QtGui import QColor +from .constants import DEFAULT_LINE_THICKNESS +from .math_utils import _safe_eval, _canonical_expr + + +class _FuncTraceMixin: + def _dialog_plot_function(self) -> None: + text, ok = QInputDialog.getText( + self, "Plot function in new pane", + "Expression (e.g. v(in) - v(out)):") + if ok and text: + prev = self.func_input.text() + try: + self.func_input.setText(text) + self.plot_function() + finally: + # Restore the right-panel input so the user's persistent + # expression isn't clobbered by the menu-driven dialog. + self.func_input.setText(prev) + + def _toggle_func_trace_visibility(self, f_idx: int) -> None: + if not (0 <= f_idx < len(self._func_visible)): + return + self._func_visible[f_idx] = not self._func_visible[f_idx] + label, _fx, _fy, color, *_ = self._func_traces[f_idx] + for i in range(self.waveform_list.count()): + it = self.waveform_list.item(i) + if it and it.data(Qt.ItemDataRole.UserRole) == -(f_idx + 1): + self._update_func_item_appearance(it, label, color, self._func_visible[f_idx]) + break + self._schedule_refresh() + + def _populate_func_color_menu(self, menu: QMenu, f_idx: int) -> None: + color_widget = QWidget() + color_widget.setStyleSheet("background-color: #FFFFFF;") + grid_layout = QGridLayout(color_widget) + grid_layout.setSpacing(2) + for i, c in enumerate(self.color_palette): + btn = QPushButton() + btn.setFixedSize(24, 24) + btn.setStyleSheet( + f"QPushButton{{background-color:{c};border:1px solid #E0E0E0;border-radius:2px;}}" + f"QPushButton:hover{{border:2px solid #212121;}}") + btn.setCursor(Qt.CursorShape.PointingHandCursor) + btn.clicked.connect( + lambda checked=False, col=c, fi=f_idx, m=menu: ( + self._change_func_color(fi, col), m.close())) + grid_layout.addWidget(btn, i // 4, i % 4) + wa = QWidgetAction(menu) + wa.setDefaultWidget(color_widget) + menu.addAction(wa) + menu.addSeparator() + more = menu.addAction("More...") + more.triggered.connect(lambda: self._change_func_color_dialog(f_idx)) + + def _change_func_color(self, f_idx: int, color: str) -> None: + if not (0 <= f_idx < len(self._func_traces)): + return + label, fx, fy, _, thickness, style = self._func_traces[f_idx] + self._func_traces[f_idx] = (label, fx, fy, color, thickness, style) + for i in range(self.waveform_list.count()): + it = self.waveform_list.item(i) + if it and it.data(Qt.ItemDataRole.UserRole) == -(f_idx + 1): + vis = f_idx < len(self._func_visible) and self._func_visible[f_idx] + self._update_func_item_appearance(it, label, color, vis) + break + self.refresh_plot() + + def _change_func_color_dialog(self, f_idx: int) -> None: + color = QColorDialog.getColor() + if color.isValid(): + self._change_func_color(f_idx, color.name()) + + def _change_func_thickness(self, f_idx: int, thickness: float) -> None: + if not (0 <= f_idx < len(self._func_traces)): + return + label, fx, fy, color, _, style = self._func_traces[f_idx] + self._func_traces[f_idx] = (label, fx, fy, color, thickness, style) + self.refresh_plot() + + def _change_func_style(self, f_idx: int, style: str) -> None: + if not (0 <= f_idx < len(self._func_traces)): + return + label, fx, fy, color, thickness, _ = self._func_traces[f_idx] + self._func_traces[f_idx] = (label, fx, fy, color, thickness, style) + self.refresh_plot() + + def _clear_function_panes(self) -> None: + if self._func_traces: + self._func_traces.clear() + self._func_canonical.clear() + self._func_visible.clear() + self._sync_func_trace_list() + self.refresh_plot() + + def _remove_function_pane(self, f_idx: int) -> None: + if 0 <= f_idx < len(self._func_traces): + del self._func_traces[f_idx] + if f_idx < len(self._func_canonical): + del self._func_canonical[f_idx] + if f_idx < len(self._func_visible): + del self._func_visible[f_idx] + self._sync_func_trace_list() + self.refresh_plot() + + def _show_function_pane_menu(self, event, f_idx: int) -> None: + """Slim context menu for a function pane: cursor placement + remove.""" + menu = QMenu(self) + click_x = event.xdata + if click_x is not None: + c1 = menu.addAction("Set Cursor 1 here") + c1.triggered.connect(lambda checked=False, x=click_x: self.set_cursor(0, x)) + c2 = menu.addAction("Set Cursor 2 here") + c2.triggered.connect(lambda checked=False, x=click_x: self.set_cursor(1, x)) + menu.addSeparator() + label = self._func_traces[f_idx][0] if f_idx < len(self._func_traces) else '' + rem = menu.addAction(f'Remove "{label}"') + rem.triggered.connect(lambda i=f_idx: self._remove_function_pane(i)) + clear = menu.addAction("Clear all function panes") + clear.setEnabled(bool(self._func_traces)) + clear.triggered.connect(self._clear_function_panes) + if hasattr(event, 'guiEvent') and event.guiEvent is not None: + menu.exec(event.guiEvent.globalPosition().toPoint()) + else: + menu.exec(self.canvas.mapToGlobal(QtCore.QPoint(0, 0))) + + def _resolve_expr(self, expr: str) -> "Tuple[str, Dict[str, np.ndarray]]": + """Substitute NGSpice trace names in expr with safe Python identifiers. + + NGSpice names like v(net1), i(r1), v-minus contain characters that + are invalid Python identifiers and would cause SyntaxError or wrong + AST parses. This method finds every known trace name in `expr` + (longest first to prevent partial-match corruption, e.g. v(n1) inside + v(n10)), replaces each with _trace_N_, and builds the corresponding + data_map for _safe_eval. + + Pure-identifier names (no special characters) use regex word boundaries + so that trace 'v' does not silently replace 'v' inside 'vout'. + + Returns (sanitized_expr, {identifier: array}). + """ + indexed = self._nb_sorted + x_len = len(self.obj_dataext.x) + data_map: Dict[str, np.ndarray] = {} + sanitized = expr + for idx, name in indexed: + if not name: + continue + placeholder = f'_trace_{idx}_' + escaped = re.escape(name) + has_special = bool(re.search(r'[^A-Za-z0-9_]', name)) + pattern = escaped if has_special else ( + r'(? None: + function_text = self.func_input.text().strip() + if not function_text: + QMessageBox.warning(self, "Input Error", "Function expression cannot be empty.") + return + if not hasattr(self.obj_dataext, 'NBList') or not self.obj_dataext.NBList: + QMessageBox.warning(self, "No Data", "No simulation data loaded.") + return + + if ' vs ' in function_text: + self._plot_lissajous(function_text) + return + + # Resolve NGSpice trace names โ†’ safe identifiers, then evaluate. + try: + sanitized, data_map = self._resolve_expr(function_text) + canonical = _canonical_expr(sanitized) + for i, (existing_text, *_) in enumerate(self._func_traces): + ex_canonical = (self._func_canonical[i] + if i < len(self._func_canonical) else None) + if ex_canonical is None: + try: + ex_san, _ = self._resolve_expr(existing_text) + ex_canonical = _canonical_expr(ex_san) + except Exception: + ex_canonical = existing_text.replace(' ', '') + match = ex_canonical == canonical + if match: + QMessageBox.information( + self, "Already Plotted", + f"'{existing_text}' is already on the plot.\n" + "(Note: a+b and b+a are treated as equal.)") + return + y_data = _safe_eval(sanitized, data_map) + x_data = np.asarray(self.obj_dataext.x, dtype=float) + n = min(len(x_data), len(y_data)) + x_data, y_data = x_data[:n], y_data[:n] + except ValueError as exc: + names = self.obj_dataext.NBList + preview = ', '.join(names[:8]) + if len(names) > 8: + preview += f' โ€ฆ ({len(names)} total)' + QMessageBox.warning( + self, "Evaluation Error", + f"{exc}\n\nAvailable traces:\n{preview}\n\n" + "Allowed functions: abs sqrt log log10 exp sin cos tan\n" + "Allowed operators: + - * / **") + return + except Exception as exc: + QMessageBox.warning(self, "Evaluation Error", f"Unexpected error: {exc}") + return + + func_palette = ['#9C27B0', '#FF6D00', '#00897B', '#5E35B1', '#F4511E'] + color = func_palette[len(self._func_traces) % len(func_palette)] + self._func_traces.append((function_text, x_data, y_data, color, DEFAULT_LINE_THICKNESS, '-')) + self._func_canonical.append(canonical) + self._func_visible.append(True) + self._sync_func_trace_list() + self.refresh_plot() + self.func_input.clear() + + def _plot_lissajous(self, function_text: str) -> None: + """Plot 'signal_y vs signal_x' as an X-Y (Lissajous) curve. + + Lissajous plots repurpose the X axis to a signal rather than time/freq, + so they can't coexist with stacked view (shared-X constraint). The + result is drawn directly on self.axes and is NOT stored in _func_traces + โ€” it does not survive refresh_plot. Users who need persistence should + disable Stacked View before plotting. + """ + if self._current_view_mode == 'stacked': + QMessageBox.information( + self, "Lissajous Plot", + "X-Y (Lissajous) plotting requires a single time/frequency axis.\n" + "Disable Stacked View first.") + return + parts = function_text.split(' vs ', 1) + y_name, x_name = parts[0].strip(), parts[1].strip() + if not y_name or not x_name: + QMessageBox.warning(self, "Syntax Error", + "Lissajous format: 'signal_y vs signal_x'") + return + names = self.obj_dataext.NBList + missing = [n for n in (y_name, x_name) if n not in names] + if missing: + preview = ', '.join(names[:8]) + if len(names) > 8: + preview += f' โ€ฆ ({len(names)} total)' + QMessageBox.warning( + self, "Trace Not Found", + f"Not found: {', '.join(missing)}\n\nAvailable traces:\n{preview}") + return + x_idx = names.index(x_name) + y_idx = names.index(y_name) + x_data = np.asarray(self.obj_dataext.y[x_idx], dtype=float) + y_data = np.asarray(self.obj_dataext.y[y_idx], dtype=float) + n = min(len(x_data), len(y_data)) + if n == 0: + QMessageBox.warning(self, "No Data", "Selected traces contain no data.") + return + # Remove any previous lissajous line before drawing the new one. + if self._func_line is not None: + try: + self._func_line.remove() + except ValueError: + pass + self._func_line = None + self._reset_x_axis_scaling() + is_voltage_x = x_idx < self.volts_length + is_voltage_y = y_idx < self.volts_length + line, = self.axes.plot(x_data[:n], y_data[:n], label=function_text) + self._func_line = line + self.axes.set_xlabel(f"{x_name} ({'V' if is_voltage_x else 'A'})") + self.axes.set_ylabel(f"{y_name} ({'V' if is_voltage_y else 'A'})") + if self.legend_check.isChecked(): + self.position_legend() + self.canvas.draw() + diff --git a/src/ngspiceSimulation/_list_mixin.py b/src/ngspiceSimulation/_list_mixin.py new file mode 100644 index 000000000..e0f1ce6e4 --- /dev/null +++ b/src/ngspiceSimulation/_list_mixin.py @@ -0,0 +1,374 @@ +# ngspiceSimulation/_list_mixin.py +import logging +from typing import List + +from PyQt6 import QtGui, QtCore +from PyQt6.QtWidgets import (QWidget, QHBoxLayout, QLabel, QListWidgetItem, + QMenu, QColorDialog, QInputDialog, QMessageBox, + QWidgetAction, QGridLayout, QPushButton) +from PyQt6.QtGui import QColor, QBrush, QPainter, QPixmap, QPen +from PyQt6.QtCore import Qt + +from .constants import (DEFAULT_LINE_THICKNESS, THICKNESS_OPTIONS, LINE_STYLES, + LEGEND_FONT_SIZE) +from .trace import Trace + +logger = logging.getLogger(__name__) + + +class _ListMixin: + + def create_colored_icon(self, color: QColor, is_selected: bool) -> QtGui.QIcon: + pixmap = QPixmap(18, 18) + pixmap.fill(Qt.GlobalColor.transparent) + painter = QPainter(pixmap) + painter.setRenderHint(QPainter.RenderHint.Antialiasing) + if is_selected: + painter.setBrush(QBrush(color)) + painter.setPen(Qt.PenStyle.NoPen) + painter.drawEllipse(1, 1, 16, 16) + else: + painter.setBrush(Qt.BrushStyle.NoBrush) + pen = QtGui.QPen(QColor("#9E9E9E")) + pen.setWidth(1) + painter.setPen(pen) + painter.drawEllipse(2, 2, 14, 14) + painter.end() + return QtGui.QIcon(pixmap) + + def populate_waveform_list(self) -> None: + self.waveform_list.clear() + self.traces.clear() + saved_colors = self.config.get('trace_colours', {}) + saved_thickness = self.config.get('trace_thickness', {}) + saved_style = self.config.get('trace_style', {}) + for i, node_name in enumerate(self.obj_dataext.NBList): + color = saved_colors.get(node_name, self.color_palette[i % len(self.color_palette)]) + thickness = saved_thickness.get(node_name, DEFAULT_LINE_THICKNESS) + style = saved_style.get(node_name, '-') + self.traces[i] = Trace(index=i, name=node_name, color=color, thickness=thickness, style=style) + item = QListWidgetItem() + item.setData(Qt.ItemDataRole.UserRole, i) + item.setToolTip("Voltage signal" if i < self.obj_dataext.volts_length else "Current signal") + self.waveform_list.addItem(item) + self.update_list_item_appearance(item, i) + + def filter_waveforms(self, text: str) -> None: + needle = text.lower() + for i in range(self.waveform_list.count()): + item = self.waveform_list.item(i) + if item: + item.setHidden(needle not in item.text().lower()) + + def on_waveform_toggle(self, item: QListWidgetItem) -> None: + index = item.data(Qt.ItemDataRole.UserRole) + # Negative UserRole = function trace item; positive = simulation trace. + if isinstance(index, int) and index < 0: + f_idx = -index - 1 + if f_idx < len(self._func_visible): + self._func_visible[f_idx] = not self._func_visible[f_idx] + label, _fx, _fy, color, *_ = self._func_traces[f_idx] + self._update_func_item_appearance( + item, label, color, self._func_visible[f_idx]) + self._schedule_refresh() + return + # item.isSelected() is unreliable when setItemWidget is used โ€” clicks land + # on the child widget and never update Qt's selection model. Toggle instead. + self.traces[index].visible = not self.traces[index].visible + self.update_list_item_appearance(item, index) + self._schedule_refresh() + + def update_list_item_appearance(self, item: QListWidgetItem, index: int) -> None: + t = self.traces[index] + widget = QWidget() + # CRITICAL: the row's custom QWidget AND its children must NOT eat + # mouse events. WA_TransparentForMouseEvents on the parent only + # affects that exact widget โ€” Qt does NOT auto-propagate to + # children. Set it on every interactive child so the QListWidget + # gets press/move events and can initiate drags. + transparent = Qt.WidgetAttribute.WA_TransparentForMouseEvents + widget.setAttribute(transparent, True) + layout = QHBoxLayout(widget) + layout.setContentsMargins(6, 4, 6, 4) + layout.setSpacing(10) + icon_label = QLabel() + icon_label.setAttribute(transparent, True) + color = QColor(t.color) if t.visible else QColor("#9E9E9E") + icon = self.create_colored_icon(color, t.visible) + icon_label.setPixmap(icon.pixmap(18, 18)) + text_label = QLabel(t.name) + text_label.setAttribute(transparent, True) + text_label.setStyleSheet("color: #212121; font-weight: 500;" if t.visible else "color: #757575; font-weight: normal;") + layout.addWidget(icon_label) + layout.addWidget(text_label) + layout.addStretch() + self.waveform_list.setItemWidget(item, widget) + item.setText(t.name) + + def _update_func_item_appearance(self, item: QListWidgetItem, + label: str, color: str, + visible: bool) -> None: + """Set visual appearance of a function-trace waveform list item. + + Mirrors update_list_item_appearance but for func traces. The 'ฦ’' + prefix and italic style distinguish them from simulation signals. + """ + transparent = Qt.WidgetAttribute.WA_TransparentForMouseEvents + widget = QWidget() + widget.setAttribute(transparent, True) + layout = QHBoxLayout(widget) + layout.setContentsMargins(6, 4, 6, 4) + layout.setSpacing(10) + icon_label = QLabel() + icon_label.setAttribute(transparent, True) + icon_color = QColor(color) if visible else QColor("#9E9E9E") + icon = self.create_colored_icon(icon_color, visible) + icon_label.setPixmap(icon.pixmap(18, 18)) + display = f"ฦ’ {label}" + text_label = QLabel(display) + text_label.setAttribute(transparent, True) + text_label.setStyleSheet( + f"color: {color}; font-weight: 500; font-style: italic;" if visible + else "color: #757575; font-weight: normal; font-style: italic;") + layout.addWidget(icon_label) + layout.addWidget(text_label) + layout.addStretch() + self.waveform_list.setItemWidget(item, widget) + item.setText(display) + + def _sync_func_trace_list(self) -> None: + """Remove all func-trace list items and re-add from current _func_traces. + + Called after any mutation of _func_traces so the waveform list stays + in sync (correct count, correct negative UserRole indices, correct + labels/colours after a middle-of-list removal re-numbers everything). + """ + for i in range(self.waveform_list.count() - 1, -1, -1): + it = self.waveform_list.item(i) + if it is not None: + val = it.data(Qt.ItemDataRole.UserRole) + if isinstance(val, int) and val < 0: + self.waveform_list.takeItem(i) + for f_idx, (label, _fx, _fy, color, *_) in enumerate(self._func_traces): + visible = (self._func_visible[f_idx] + if f_idx < len(self._func_visible) else True) + item = QListWidgetItem() + item.setData(Qt.ItemDataRole.UserRole, -(f_idx + 1)) + item.setToolTip(f"Function trace: {label}") + self.waveform_list.addItem(item) + self._update_func_item_appearance(item, label, color, visible) + + def select_all_waveforms(self) -> None: + self.waveform_list.setUpdatesEnabled(False) + try: + for i in range(self.waveform_list.count()): + item = self.waveform_list.item(i) + if item and not item.isHidden(): + index = item.data(Qt.ItemDataRole.UserRole) + if isinstance(index, int) and index < 0: + f_idx = -index - 1 + if f_idx < len(self._func_visible): + self._func_visible[f_idx] = True + label, _fx, _fy, color, *_ = self._func_traces[f_idx] + self._update_func_item_appearance(item, label, color, True) + else: + self.traces[index].visible = True + self.update_list_item_appearance(item, index) + finally: + self.waveform_list.setUpdatesEnabled(True) + self._schedule_refresh() + + def deselect_all_waveforms(self) -> None: + for t in self.traces.values(): + t.visible = False + for f_idx in range(len(self._func_visible)): + self._func_visible[f_idx] = False + self.waveform_list.setUpdatesEnabled(False) + try: + for i in range(self.waveform_list.count()): + item = self.waveform_list.item(i) + if item: + index = item.data(Qt.ItemDataRole.UserRole) + if isinstance(index, int) and index < 0: + f_idx = -index - 1 + if f_idx < len(self._func_traces): + label, _fx, _fy, color, *_ = self._func_traces[f_idx] + self._update_func_item_appearance(item, label, color, False) + else: + self.update_list_item_appearance(item, index) + finally: + self.waveform_list.setUpdatesEnabled(True) + self._schedule_refresh() + + def show_list_context_menu(self, position: QtCore.QPoint) -> None: + item = self.waveform_list.itemAt(position) + menu = QMenu() + + select_all_action = menu.addAction("Select All") + select_all_action.setShortcut(QtGui.QKeySequence.StandardKey.SelectAll) + select_all_action.triggered.connect(self.select_all_waveforms) + deselect_action = menu.addAction("Deselect All") + deselect_action.triggered.connect(self.deselect_all_waveforms) + + if item: + index = item.data(Qt.ItemDataRole.UserRole) + menu.addSeparator() + + if isinstance(index, int) and index < 0: + f_idx = -index - 1 + color_menu = menu.addMenu("Change colour โ–ถ") + self._populate_func_color_menu(color_menu, f_idx) + thickness_menu = menu.addMenu("Thickness โ–ถ") + for _thickness, _tlabel in THICKNESS_OPTIONS: + _act = thickness_menu.addAction(_tlabel) + _act.triggered.connect( + lambda checked=False, t=_thickness, fi=f_idx: self._change_func_thickness(fi, t)) + style_menu = menu.addMenu("Style โ–ถ") + for _style, _slabel in LINE_STYLES: + _act = style_menu.addAction(_slabel) + _act.triggered.connect( + lambda checked=False, s=_style, fi=f_idx: self._change_func_style(fi, s)) + menu.addSeparator() + is_vis = (f_idx < len(self._func_visible) and self._func_visible[f_idx]) + hide_show_action = menu.addAction("Hide" if is_vis else "Show") + hide_show_action.triggered.connect( + lambda checked=False, fi=f_idx: self._toggle_func_trace_visibility(fi)) + remove_action = menu.addAction("Remove") + remove_action.triggered.connect( + lambda checked=False, fi=f_idx: self._remove_function_pane(fi)) + else: + color_menu = menu.addMenu("Change colour โ–ถ") + self.populate_color_menu(color_menu, [item]) + + thickness_menu = menu.addMenu("Thickness โ–ถ") + for thickness, label in THICKNESS_OPTIONS: + action = thickness_menu.addAction(label) + action.triggered.connect(lambda checked, t=thickness: self.change_thickness([item], t)) + + style_menu = menu.addMenu("Style โ–ถ") + for style, label in LINE_STYLES: + action = style_menu.addAction(label) + action.triggered.connect(lambda checked, s=style: self.change_style([item], s)) + + menu.addSeparator() + + rename_action = menu.addAction("Rename...") + rename_action.triggered.connect(lambda: self.rename_trace(item)) + + t = self.traces[index] + hide_show_action = menu.addAction("Hide" if t.visible else "Show") + hide_show_action.triggered.connect(lambda: self.toggle_trace_visibility([item])) + + menu.addSeparator() + + properties_action = menu.addAction("Figure Options...") + properties_action.triggered.connect(self.open_figure_options) + + menu.exec(self.waveform_list.mapToGlobal(position)) + + def populate_color_menu(self, menu: QMenu, selected_items: List[QListWidgetItem]) -> None: + color_widget = QWidget() + color_widget.setStyleSheet("background-color: #FFFFFF;") + grid_layout = QGridLayout(color_widget) + grid_layout.setSpacing(2) + for i, color in enumerate(self.color_palette): + btn = QPushButton() + btn.setFixedSize(24, 24) + btn.setStyleSheet(f"QPushButton{{background-color:{color};border:1px solid #E0E0E0;border-radius:2px;}}QPushButton:hover{{border:2px solid #212121;}}") + btn.setCursor(Qt.CursorShape.PointingHandCursor) + btn.clicked.connect(lambda checked, c=color: self.change_color_and_close(selected_items, c, menu)) + grid_layout.addWidget(btn, i // 4, i % 4) + widget_action = QWidgetAction(menu) + widget_action.setDefaultWidget(color_widget) + menu.addAction(widget_action) + menu.addSeparator() + more_action = menu.addAction("More...") + more_action.triggered.connect(lambda: self.change_color_dialog(selected_items)) + + def change_color_and_close(self, items: List[QListWidgetItem], color: str, menu: QMenu) -> None: + self.change_color(items, color) + parent = menu.parent() + while isinstance(parent, QMenu): + parent.close() + parent = parent.parent() + + def change_color(self, items: List[QListWidgetItem], color: str) -> None: + for item in items: + index = item.data(Qt.ItemDataRole.UserRole) + self.traces[index].update_line(color=color) + self.update_list_item_appearance(item, index) + if self._current_view_mode == 'timing' and self.panes: + self.update_timing_tick_colors() + for ann_text in self.timing_annotations.get(index, []): + ann_text.set_color(color) + elif self._current_view_mode == 'stacked' and self.panes: + for pane_idx, group in enumerate(self._pane_groups): + if group and group[0] == index and pane_idx < len(self.panes): + self.panes[pane_idx].set_title( + self.traces[index].name, loc='left', color=color, + fontsize=LEGEND_FONT_SIZE, fontweight='bold', pad=3) + break + self.save_config() + self.canvas.draw() + + def update_timing_tick_colors(self) -> None: + # No-op outside timing view: ytick labels in normal/stacked views are + # numeric voltage/current ticks, not trace names, so colouring them + # by trace would corrupt the axis legend. + if self._current_view_mode != 'timing' or not self.panes: + return + visible = list(reversed(self.visible_traces)) + ytick_labels = self.axes.get_yticklabels() + for i, label in enumerate(ytick_labels): + if i < len(visible): + label.set_color(visible[i].color) + + def change_color_dialog(self, items: List[QListWidgetItem]) -> None: + color = QColorDialog.getColor() + if color.isValid(): + self.change_color(items, color.name()) + + def change_thickness(self, items: List[QListWidgetItem], thickness: float) -> None: + for item in items: + self.traces[item.data(Qt.ItemDataRole.UserRole)].update_line(thickness=thickness) + self.save_config() + self.canvas.draw() + + def change_style(self, items: List[QListWidgetItem], style: str) -> None: + needs_replot = style == 'steps-post' + for item in items: + index = item.data(Qt.ItemDataRole.UserRole) + if needs_replot: + self.traces[index].style = style + else: + self.traces[index].update_line(style=style) + self.save_config() + if needs_replot: + self.refresh_plot() + else: + self.canvas.draw() + + def rename_trace(self, item: QListWidgetItem) -> None: + index = item.data(Qt.ItemDataRole.UserRole) + t = self.traces[index] + new_name, ok = QInputDialog.getText(self, "Rename Trace", "New name:", text=t.name) + if ok and new_name and new_name != t.name: + t.name = new_name + self.obj_dataext.NBList[index] = new_name + self._rebuild_nb_sorted() + self.update_list_item_appearance(item, index) + if self.legend_check.isChecked(): + # Name change must re-label the legend; signature can't see it. + self._force_full_refresh = True + self.refresh_plot() + + def toggle_trace_visibility(self, items: List[QListWidgetItem]) -> None: + # Use t.visible as single source of truth โ€” same path as left-click toggle. + # Going directly to line_object.set_visible() bypasses refresh_plot and + # gets stomped the next time anything triggers a redraw. + any_visible = any(self.traces[item.data(Qt.ItemDataRole.UserRole)].visible for item in items) + for item in items: + index = item.data(Qt.ItemDataRole.UserRole) + self.traces[index].visible = not any_visible + self.update_list_item_appearance(item, index) + self._schedule_refresh() diff --git a/src/ngspiceSimulation/_pane_mixin.py b/src/ngspiceSimulation/_pane_mixin.py new file mode 100644 index 000000000..3358d9d9b --- /dev/null +++ b/src/ngspiceSimulation/_pane_mixin.py @@ -0,0 +1,609 @@ +from typing import Any, Dict, List, Optional, Tuple +from PyQt6.QtWidgets import QMenu +from PyQt6.QtCore import Qt +from PyQt6 import QtCore +from matplotlib.lines import Line2D +from .constants import (MIN_STACKED_PANE_HEIGHT_PX, DIVIDER_HIT_TOLERANCE_PX, + STACKED_REFRESH_DEBOUNCE_MS) + + +class _PaneMixin: + def _build_panes(self, n: int, sharex: bool = True, + hspace: float = 0.08) -> List[Any]: + """Create N stacked subplots, store in self.panes, return them. + + n==1 โ€” single Axes (equivalent to add_subplot(111)). + n>=2 โ€” N vertically stacked Axes with shared X-axis by default. + + In stacked view, self._pane_heights (when present and matching N) + becomes the gridspec height_ratios so individual panes can be + resized via the divider-drag handlers. + + Caller must fig.clear() before invoking; this helper does not clear. + self.axes is aliased to self.panes[0] so legacy single-axes call + sites keep working unchanged. + """ + if n <= 1: + self.panes = [self.fig.add_subplot(111)] + else: + gridspec_kw: Dict[str, Any] = {'hspace': hspace} + if (self._current_view_mode == 'stacked' + and self._pane_heights + and all(h > 0 for h in self._pane_heights)): + # _pane_heights tracks group panes only; pad with 1.0 for any + # trailing function panes so the gridspec still matches N. + heights = list(self._pane_heights) + while len(heights) < n: + heights.append(1.0) + gridspec_kw['height_ratios'] = heights[:n] + axes = self.fig.subplots( + n, 1, sharex=sharex, gridspec_kw=gridspec_kw, + ) + # subplots returns ndarray when n>1 + self.panes = list(axes) if hasattr(axes, '__iter__') else [axes] + self.axes = self.panes[0] + self._set_canvas_height_for_panes(n) + return self.panes + + def _set_canvas_height_for_panes(self, n: int) -> None: + """Force canvas tall enough for N stacked panes; let it shrink elsewhere. + + Without this, QScrollArea.widgetResizable=True squashes the canvas + to the viewport even when N=20. We set a min-height proportional + to pane count so the scroll bar appears as soon as panes would + otherwise become unreadable. + """ + if not hasattr(self, 'canvas_scroll') or not hasattr(self, 'canvas'): + return + viewport_h = self.canvas_scroll.viewport().height() + if self._current_view_mode == 'stacked' and n > 1: + wanted = max(viewport_h, int(n * MIN_STACKED_PANE_HEIGHT_PX)) + self.canvas.setMinimumHeight(wanted) + else: + # Non-stacked modes fit the viewport โ€” drop the floor. + self.canvas.setMinimumHeight(0) + + def _sync_pane_groups_to_visible(self) -> None: + """Reconcile self._pane_groups + heights with current visibility. + + Invariant: each group has exactly ONE trace index. Stacked view is + always "one signal per pane" in v3.1+. + + - Invisible traces are dropped (their pane disappears). + - Existing pane order is preserved. + - Newly-visible traces (not already in any pane) join at the bottom + with default height 1.0. + """ + visible_set = {t.index for t in self.visible_traces} + new_groups: List[List[int]] = [] + kept_heights: List[float] = [] + for orig_idx, group in enumerate(self._pane_groups): + # Keep only the first surviving trace โ€” enforces 1-per-pane + # for any legacy config that had multi-trace groups. + survivor = next((i for i in group if i in visible_set), None) + if survivor is None: + continue + new_groups.append([survivor]) + visible_set.discard(survivor) + if orig_idx < len(self._pane_heights): + kept_heights.append(self._pane_heights[orig_idx]) + else: + kept_heights.append(1.0) + for idx in sorted(visible_set): + new_groups.append([idx]) + kept_heights.append(1.0) + self._pane_groups = new_groups + self._pane_heights = kept_heights + + def _pane_anchor_name(self, ax) -> Optional[str]: + """Return the name of the first visible trace plotted on ax, or None. + + Used as the lookup key for per-pane ylim preservation across + refresh_plot. Walks self.traces in insertion order so anchors stay + stable even if Y autoscaling slightly changes line ordering. + """ + for t in self.traces.values(): + if t.visible and t.line_object is not None and t.line_object.axes is ax: + return t.name + return None + + def _build_pane_anchor_map(self) -> Dict[int, str]: + """Return {id(ax): anchor_name} covering all current panes, in O(traces). + + Callers that loop over all panes should build this once and do O(1) + dict lookups per pane, rather than calling _pane_anchor_name() per pane + which is O(traces) each and makes capture/restore O(Nยฒ) in stacked view. + """ + result: Dict[int, str] = {} + for t in self.traces.values(): + lo = t.line_object + if t.visible and lo is not None: + ax_id = id(lo.axes) + if ax_id not in result: + result[ax_id] = t.name + return result + + def _capture_view_state(self) -> None: + """Snapshot xlim and per-pane ylim before a refresh that rebuilds axes.""" + if not self.panes: + return + self._saved_xlim = self.axes.get_xlim() + self._saved_pane_ylims = {} + anchor_map = self._build_pane_anchor_map() + for ax in self.panes: + anchor = anchor_map.get(id(ax)) + if anchor is not None: + self._saved_pane_ylims[anchor] = ax.get_ylim() + + def _restore_view_state(self) -> None: + """Re-apply preserved xlim + per-pane ylim after refresh rebuilds axes. + + Two restore paths, evaluated in order so locks always win: + + 1. **Locked panes** โ€” any pane whose anchor is in self._pane_lock_y + and has a stored ylim in self._locked_ylims gets that ylim + re-applied. Survives every refresh until the lock is cleared. + + 2. **One-shot preserve-zoom** โ€” entries in self._saved_pane_ylims + (set by _capture_view_state when autoscale is off in a mode- + preserving refresh) are applied to whatever pane currently + anchors that trace, then the dict is cleared. + + Calling this with both buckets empty is a no-op, so refresh_plot + can call it unconditionally. + """ + if not self.panes: + return + anchor_map = self._build_pane_anchor_map() + # Apply persistent locks first + for ax in self.panes: + anchor = anchor_map.get(id(ax)) + if anchor is None: + continue + if self._pane_lock_y.get(anchor) and anchor in self._locked_ylims: + ax.set_ylim(self._locked_ylims[anchor]) + # Then one-shot preserve-zoom โ€” skip panes already pinned by a lock + if self._saved_xlim is not None: + self.axes.set_xlim(self._saved_xlim) + for ax in self.panes: + anchor = anchor_map.get(id(ax)) + if anchor is None or self._pane_lock_y.get(anchor): + continue + if anchor in self._saved_pane_ylims: + ax.set_ylim(self._saved_pane_ylims[anchor]) + self._saved_xlim = None + self._saved_pane_ylims = {} + + def _snapshot_pane_for_lock(self, anchor: str) -> None: + """Capture the current ylim of the pane that anchors `anchor`. + + Used by the (forthcoming) menu's Lock-Y toggle to seed + self._locked_ylims; without this seed the lock would have nothing + to restore on the first refresh after locking. + """ + if not anchor or not self.panes: + return + anchor_map = self._build_pane_anchor_map() + for ax in self.panes: + if anchor_map.get(id(ax)) == anchor: + self._locked_ylims[anchor] = ax.get_ylim() + return + + def _clear_pane_lock(self, anchor: str) -> None: + """Remove a pane lock so the next refresh autoscales freely.""" + self._pane_lock_y.pop(anchor, None) + self._locked_ylims.pop(anchor, None) + + # โ”€โ”€ Pane divider resize (mouse drag between panes) โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ + + def _divider_under_mouse(self, event) -> Optional[int]: + """Return upper-pane index when the mouse is near a divider gap. + + Only meaningful in stacked mode with N>=2 panes. Returns the index + of the pane ABOVE the divider โ€” i.e. the pane whose height changes + in tandem with the one below during a drag. + """ + if (self._current_view_mode != 'stacked' + or len(self.panes) < 2 + or event.y is None): + return None + # Only consider the dividers between group panes; func panes are + # not part of _pane_heights, so don't expose their boundaries. + upper_count = min(len(self._pane_groups), len(self.panes)) - 1 + for i in range(upper_count): + bottom = self.panes[i].bbox.y0 # bottom edge of upper pane + top = self.panes[i + 1].bbox.y1 # top edge of lower pane + mid = (bottom + top) / 2.0 + if abs(event.y - mid) <= DIVIDER_HIT_TOLERANCE_PX: + return i + return None + + def _start_divider_drag(self, upper_idx: int, event) -> None: + """Capture initial heights + cached pixel geometry for the drag.""" + if upper_idx + 1 >= len(self._pane_heights): + return + upper_bb = self.panes[upper_idx].bbox.height + lower_bb = self.panes[upper_idx + 1].bbox.height + self._divider_drag = { + 'upper_idx': upper_idx, + 'start_y': event.y, + 'start_height_upper': self._pane_heights[upper_idx], + 'start_height_lower': self._pane_heights[upper_idx + 1], + 'combined_px': max(1.0, upper_bb + lower_bb), + 'moved': False, + } + # Capture axis positions in figure coords BEFORE disabling the + # constrained_layout solver. During drag we reposition axes via + # ax.set_position() so the solver never runs per mouse-move. + self._drag_ax_positions = [ax.get_position() for ax in self.panes] + self.fig.set_layout_engine('none') + # Decimate line data so each draw_idle renders far fewer segments. + # Full data is restored in _finish_divider_drag (or by refresh_plot). + _MAX_DRAG_PTS = 800 + self._saved_line_data: Dict[int, Any] = {} + for t in self.traces.values(): + if t.line_object is not None: + xd = t.line_object.get_xdata() + yd = t.line_object.get_ydata() + n = len(xd) + if n > _MAX_DRAG_PTS: + step = max(1, n // _MAX_DRAG_PTS) + self._saved_line_data[t.index] = (xd, yd) + t.line_object.set_data(xd[::step], yd[::step]) + self.canvas.setCursor(Qt.CursorShape.SizeVerCursor) + + def _update_divider_drag(self, event) -> None: + """Live-redistribute height ratios via in-place gridspec mutation. + + Critically, this does NOT call refresh_plot โ€” a full rebuild on + every mouse-motion event tanks performance (~50ms ร— 30Hz = jank). + Instead it mutates the GridSpec height_ratios on the live axes + and asks for a deferred redraw. On release, _finish_divider_drag + does one full refresh to let constrained_layout fully settle. + """ + d = self._divider_drag + if d is None or event.y is None: + return + i = d['upper_idx'] + # See _start_divider_drag for sign convention. Positive delta_px + # = cursor moved down = upper pane grows. + delta_px = d['start_y'] - event.y + sum_h = d['start_height_upper'] + d['start_height_lower'] + frac = delta_px / d['combined_px'] + new_upper = max(0.1, min(sum_h - 0.1, + d['start_height_upper'] + frac * sum_h)) + new_lower = sum_h - new_upper + self._pane_heights[i] = new_upper + self._pane_heights[i + 1] = new_lower + d['moved'] = True + self._apply_height_ratios_live() + + def _apply_height_ratios_live(self) -> None: + """Reposition panes during drag without running the constraint solver.""" + if not self.panes or len(self.panes) < 2: + return + self._reposition_panes_from_heights() + self.canvas.draw_idle() + + def _reposition_panes_from_heights(self) -> None: + """Distribute pane Bboxes in figure coords from _pane_heights ratios. + + Uses positions captured at drag-start as the outer envelope so the + figure margins stay exactly as constrained_layout left them. Only + vertical redistribution changes; horizontal extents are preserved + per-pane (important when Y-axis labels have different widths). + """ + positions = getattr(self, '_drag_ax_positions', None) + if not positions or len(positions) != len(self.panes): + return + n = len(self.panes) + n_heights = min(n, len(self._pane_heights)) + + top = positions[0].y1 + bottom = positions[-1].y0 + # Average gap between adjacent panes (hspace in figure coords) + if n > 1: + total_gap = sum( + max(0.0, positions[i].y0 - positions[i + 1].y1) + for i in range(n - 1) + ) + avg_gap = total_gap / (n - 1) + else: + avg_gap = 0.0 + + usable = max(0.01, (top - bottom) - avg_gap * (n - 1)) + ratios = [self._pane_heights[i] if i < n_heights else 1.0 for i in range(n)] + ratio_sum = max(0.01, sum(ratios)) + + current_top = top + for i, ax in enumerate(self.panes): + h = max(0.005, usable * (ratios[i] / ratio_sum)) + ax.set_position([ + positions[i].x0, + current_top - h, + positions[i].x1 - positions[i].x0, + h, + ]) + current_top -= h + avg_gap + + def _finish_divider_drag(self) -> None: + """End drag: restore CL + data, settle layout with one full refresh.""" + if self._divider_drag is None: + return + moved = self._divider_drag.get('moved', False) + self._divider_drag = None + self._drag_ax_positions = [] + # Restore full line data. If moved=True, refresh_plot rebuilds + # everything via fig.clear() anyway; still restore so the + # no-move path (moved=False) shows correct data after cleanup. + saved = getattr(self, '_saved_line_data', {}) + for idx, (xd, yd) in saved.items(): + if idx in self.traces and self.traces[idx].line_object is not None: + self.traces[idx].line_object.set_data(xd, yd) + self._saved_line_data = {} + self.fig.set_layout_engine('constrained') + self.canvas.unsetCursor() + if moved: + # Heights changed; pane geometry must be rebuilt + CL re-settled. + self._force_full_refresh = True + self.refresh_plot() + else: + self.canvas.draw_idle() + + # โ”€โ”€ Pane reorder (Alt + left-drag) โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ + + def _start_pane_drag(self, pane_idx: int) -> None: + self._pane_drag = {'from_idx': pane_idx} + self.canvas.setCursor(Qt.CursorShape.ClosedHandCursor) + + def _finish_pane_drag(self, event) -> None: + d = self._pane_drag + if d is None: + return + self._pane_drag = None + self.canvas.unsetCursor() + from_idx = d['from_idx'] + # Determine target pane from release position + to_idx = None + if event.inaxes is not None: + to_idx = self._pane_index_of(event.inaxes) + if to_idx is None or to_idx == from_idx: + return + if not (0 <= from_idx < len(self._pane_groups) + and 0 <= to_idx < len(self._pane_groups)): + return + # Move the group; also move its height entry alongside so the user's + # custom sizing follows the pane. + grp = self._pane_groups.pop(from_idx) + self._pane_groups.insert(to_idx, grp) + if from_idx < len(self._pane_heights): + h = self._pane_heights.pop(from_idx) + if to_idx < len(self._pane_heights): + self._pane_heights.insert(to_idx, h) + else: + self._pane_heights.append(h) + # Reorder keeps the visible set (signature) the same โ€” force the rebuild. + self._force_full_refresh = True + self.refresh_plot() + + def _apply_persisted_layout(self) -> None: + """Hydrate name-keyed config entries into index-keyed live state. + + Runs once after populate_waveform_list has built self.traces. + Stale names (signals not present in this simulation) are silently + dropped โ€” keeps the config forward-compatible across schematic + edits. Function-trace panes are NOT persisted because their + underlying expressions may reference signals that no longer exist. + """ + name_to_idx = {t.name: t.index for t in self.traces.values()} + + groups_named = self.config.get('stacked_pane_groups') + if isinstance(groups_named, list): + resolved: List[List[int]] = [] + for group in groups_named: + if not isinstance(group, list): + continue + indices = [name_to_idx[n] for n in group if n in name_to_idx] + if indices: + resolved.append(indices) + if resolved: + self._pane_groups = resolved + + lock = self.config.get('stacked_lock_y') + if isinstance(lock, dict): + self._pane_lock_y = {n: bool(v) for n, v in lock.items() + if n in name_to_idx} + + ylims = self.config.get('stacked_locked_ylims') + if isinstance(ylims, dict): + for n, lims in ylims.items(): + if (n in name_to_idx and isinstance(lims, (list, tuple)) + and len(lims) == 2): + self._locked_ylims[n] = (float(lims[0]), float(lims[1])) + + stats = self.config.get('stacked_stats_visible') + if isinstance(stats, bool): + self.stats_check.setChecked(stats) + + # Pane heights โ€” name-keyed in config, projected back onto the + # restored _pane_groups order. Missing anchors fall back to 1.0 + # which is the default equal-height ratio. + heights_named = self.config.get('stacked_pane_heights') + if isinstance(heights_named, dict) and self._pane_groups: + resolved_heights: List[float] = [] + for g in self._pane_groups: + if not g or g[0] not in self.traces: + resolved_heights.append(1.0) + continue + anchor = self.traces[g[0]].name + try: + resolved_heights.append( + max(0.1, float(heights_named.get(anchor, 1.0)))) + except (TypeError, ValueError): + resolved_heights.append(1.0) + self._pane_heights = resolved_heights + + # โ”€โ”€ Stacked-view pane context menu โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ + + def _pane_index_of(self, ax) -> Optional[int]: + """Return the index into self._pane_groups for the given Axes.""" + for i, pane in enumerate(self.panes): + if pane is ax: + # _pane_groups may include synthetic function panes appended + # to the bottom; only the first len(_pane_groups) panes are + # real-trace panes. + if i < len(self._pane_groups): + return i + return None + + def _func_pane_index_of(self, ax) -> Optional[int]: + """Return the index into self._func_traces for a function pane.""" + n_groups = len(self._pane_groups) + for i, pane in enumerate(self.panes): + if pane is ax and n_groups <= i < n_groups + len(self._func_traces): + return i - n_groups + return None + + def _show_pane_context_menu(self, event) -> None: + """Right-click menu for a stacked-view pane. Each pane holds exactly + one signal โ€” multi-signal grouping was removed in v3.1 because the + "graph in a graph" feel was more confusing than useful. Pane order + and sizing are still user-controlled via Move Up/Down / Alt-drag / + divider drag; lock-Y, stats, and the function-pane workflow stay. + """ + # Function pane? Show the slim function-pane menu and exit. + f_idx = self._func_pane_index_of(event.inaxes) + if f_idx is not None: + self._show_function_pane_menu(event, f_idx) + return + + pane_idx = self._pane_index_of(event.inaxes) + if pane_idx is None: + return + group = self._pane_groups[pane_idx] + anchor = (self.traces[group[0]].name + if group and group[0] in self.traces else None) + menu = QMenu(self) + + # Cursor placement โ€” top of menu so it's always reachable. lambda + # accepts the leading 'checked' bool QAction.triggered always emits + # (forgetting it sinks click_x and lands the cursor at x=0). + click_x = event.xdata + if click_x is not None: + c1 = menu.addAction("Set Cursor 1 here") + c1.triggered.connect( + lambda checked=False, x=click_x: self.set_cursor(0, x)) + c2 = menu.addAction("Set Cursor 2 here") + c2.triggered.connect( + lambda checked=False, x=click_x: self.set_cursor(1, x)) + menu.addSeparator() + + up_act = menu.addAction("Move pane up") + up_act.setEnabled(pane_idx > 0) + up_act.triggered.connect( + lambda checked=False, p=pane_idx: self._move_pane(p, -1)) + down_act = menu.addAction("Move pane down") + down_act.setEnabled(pane_idx < len(self._pane_groups) - 1) + down_act.triggered.connect( + lambda checked=False, p=pane_idx: self._move_pane(p, +1)) + + menu.addSeparator() + + if anchor: + lock_act = menu.addAction("Lock Y") + lock_act.setCheckable(True) + lock_act.setChecked(self._pane_lock_y.get(anchor, False)) + lock_act.triggered.connect( + lambda checked=False, a=anchor: self._toggle_pane_lock(a)) + reset_act = menu.addAction("Reset Y autoscale") + reset_act.triggered.connect( + lambda checked=False, a=anchor: self._reset_pane_y(a)) + + menu.addSeparator() + + hide_act = menu.addAction("Hide this signal") + hide_act.triggered.connect( + lambda checked=False, p=pane_idx: self._hide_pane_signal(p)) + + menu.addSeparator() + + func_act = menu.addAction("Plot function in new pane...") + func_act.triggered.connect(self._dialog_plot_function) + clear_func = menu.addAction("Clear function panes") + clear_func.setEnabled(bool(self._func_traces)) + clear_func.triggered.connect(self._clear_function_panes) + + # Position menu where the click happened. event.guiEvent is a + # QMouseEvent on Qt backends; fall back to canvas centre if missing. + if hasattr(event, 'guiEvent') and event.guiEvent is not None: + menu.exec(event.guiEvent.globalPosition().toPoint()) + else: + menu.exec(self.canvas.mapToGlobal(QtCore.QPoint(0, 0))) + + def _hide_pane_signal(self, pane_idx: int) -> None: + """Hide the trace owning this pane (โ‰ก unticking it in the waveform list).""" + if not (0 <= pane_idx < len(self._pane_groups)): + return + grp = self._pane_groups[pane_idx] + if not grp: + return + trace_idx = grp[0] + if trace_idx in self.traces: + self.traces[trace_idx].visible = False + for i in range(self.waveform_list.count()): + item = self.waveform_list.item(i) + if item and item.data(Qt.ItemDataRole.UserRole) == trace_idx: + self.update_list_item_appearance(item, trace_idx) + break + self._schedule_refresh() + + # โ”€โ”€ Pane menu action handlers โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ + + def _ensure_heights_match_groups(self) -> None: + """Pad/truncate self._pane_heights so it parallels self._pane_groups. + + Sync-helpers and the move/reorder paths call this whenever the pane + count changes. Missing entries default to 1.0 (equal); surplus are + dropped from the tail. + """ + n = len(self._pane_groups) + if len(self._pane_heights) < n: + self._pane_heights.extend([1.0] * (n - len(self._pane_heights))) + elif len(self._pane_heights) > n: + self._pane_heights = self._pane_heights[:n] + + def _move_pane(self, pane_idx: int, direction: int) -> None: + new_idx = pane_idx + direction + if 0 <= new_idx < len(self._pane_groups): + self._pane_groups[pane_idx], self._pane_groups[new_idx] = ( + self._pane_groups[new_idx], self._pane_groups[pane_idx]) + # Heights move with the pane so the user's custom sizing follows. + if (pane_idx < len(self._pane_heights) + and new_idx < len(self._pane_heights)): + self._pane_heights[pane_idx], self._pane_heights[new_idx] = ( + self._pane_heights[new_idx], self._pane_heights[pane_idx]) + self._ensure_heights_match_groups() + # Pane reorder leaves the visible set (and thus the signature) + # unchanged, so force the rebuild that re-lays-out the panes. + self._force_full_refresh = True + self.refresh_plot() + + def _toggle_pane_lock(self, anchor: str) -> None: + if self._pane_lock_y.get(anchor): + self._clear_pane_lock(anchor) + else: + self._snapshot_pane_for_lock(anchor) + self._pane_lock_y[anchor] = True + # Lock/unlock changes ylim handling, which the fast path skips โ€” + # force the full rebuild so _restore_view_state runs. + self._force_full_refresh = True + self.refresh_plot() + + def _reset_pane_y(self, anchor: str) -> None: + self._clear_pane_lock(anchor) + # Drop one-shot snapshot too so the upcoming refresh gets a fresh fit + self._saved_pane_ylims.pop(anchor, None) + # Need a real re-autoscale of this pane, which only the full path does. + self._force_full_refresh = True + self.refresh_plot() + diff --git a/src/ngspiceSimulation/_render_mixin.py b/src/ngspiceSimulation/_render_mixin.py new file mode 100644 index 000000000..116f9d0b5 --- /dev/null +++ b/src/ngspiceSimulation/_render_mixin.py @@ -0,0 +1,875 @@ +from typing import Any, Dict, List, Optional, Tuple +import numpy as np +import matplotlib.pyplot as plt +from matplotlib.lines import Line2D +from matplotlib.ticker import FuncFormatter, ScalarFormatter +from PyQt6.QtWidgets import QMenu +from PyQt6.QtCore import Qt +from .data_extraction import DataExtraction +from .trace import Trace +from .constants import (DEFAULT_VERTICAL_SPACING, DEFAULT_ZOOM_FACTOR, LEGEND_FONT_SIZE, + CURSOR_ALPHA, THRESHOLD_ALPHA, VIBRANT_COLOR_PALETTE, + TIME_UNIT_THRESHOLD_PS, TIME_UNIT_THRESHOLD_NS, + TIME_UNIT_THRESHOLD_US, TIME_UNIT_THRESHOLD_MS, + FREQ_UNIT_THRESHOLD_KHZ, FREQ_UNIT_THRESHOLD_MHZ, + FREQ_UNIT_THRESHOLD_GHZ, REFRESH_DEBOUNCE_MS, + STACKED_REFRESH_DEBOUNCE_MS) +from .math_utils import (_format_measurement, _format_frequency, _detect_frequency, _trapz) + + +class _RenderMixin: + def _schedule_refresh(self) -> None: + """Coalesce rapid visibility toggles into a single deferred refresh. + + Restarting the single-shot timer on each call means a burst of clicks + collapses to one refresh_plot once the user stops. Used by every + waveform/func-trace visibility toggle; direct refresh_plot calls + (view-mode change, autoscale, etc.) cancel any pending tick via the + stop() at the top of refresh_plot so they never double-rebuild. + + The window is mode-aware: a stacked toggle is a full pane rebuild + (tens of ms, growing with pane count), so a wider window is needed to + actually collapse a human-paced click burst โ€” otherwise each click + (>80ms apart) fires its own rebuild and the view stutters. Normal view + toggles take the cheap incremental path, so they stay snappy at 80ms. + The list item icon/text update synchronously either way, so clicks + always feel instant; only the plot redraw is deferred. + """ + self._refresh_timer.setInterval( + STACKED_REFRESH_DEBOUNCE_MS if self.radio_stacked.isChecked() + else REFRESH_DEBOUNCE_MS) + self._refresh_timer.start() + + def _composition_signature(self, mode: str) -> tuple: + """Fingerprint of everything that determines the pane/artist structure. + + When this is unchanged between two refreshes, the existing axes and + Line2D objects are already correct (trace data is static after load), + so refresh_plot can skip the full fig.clear() teardown. + + Per mode it captures only what is *structural* for that mode: + + - normal: one shared Axes regardless of how many traces are visible, + so the visible set is deliberately EXCLUDED โ€” visibility toggles are + handled incrementally via set_visible. What IS structural: the + analysis path (plot vs semilogx vs step), which traces use steps + (changes the artist type), the visible function-overlay set, and + whether the legend is shown. + - stacked: one pane per visible trace, so the visible set + per-trace + steps flag + visible func panes + stats overlay are all structural. + - timing: rows are laid out by the visible set; threshold and spacing + change every row's geometry. + + Changes the signature cannot see (pane reorder, divider resize, lock + toggle, rename) set self._force_full_refresh instead. + """ + vis_func = tuple(i for i in range(len(self._func_traces)) + if i < len(self._func_visible) and self._func_visible[i]) + if mode == 'normal': + steps = tuple(sorted(i for i, t in self.traces.items() + if t.style == 'steps-post')) + return ('normal', self._current_analysis_type, steps, vis_func, + self.legend_check.isChecked()) + if mode == 'stacked': + vis = self.visible_traces + return ('stacked', + tuple(t.index for t in vis), + tuple(t.style == 'steps-post' for t in vis), + vis_func, + self.stats_check.isChecked()) + # timing + return ('timing', + tuple(t.index for t in self.visible_traces), + vis_func, + self.threshold_spinbox.value(), + self.vertical_spacing) + + def refresh_plot(self) -> None: + # Cancel any pending debounced refresh โ€” this call supersedes it, so a + # queued timer tick must not fire a second redundant rebuild afterwards. + self._refresh_timer.stop() + force_full = self._force_full_refresh + self._force_full_refresh = False + + next_mode = ('timing' if self.radio_timing.isChecked() + else 'stacked' if self.radio_stacked.isChecked() + else 'normal') + new_sig = self._composition_signature(next_mode) + + # โ”€โ”€ Incremental fast path โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ + # Taken only when the pane composition is provably unchanged from what + # is currently drawn: same mode, matching signature, live panes, and no + # caller-forced full rebuild. Then the axes + lines already exist and + # are correct, so we avoid fig.clear() entirely. + if (not force_full and self.panes + and self._drawn_signature is not None + and new_sig == self._drawn_signature + and self._current_view_mode == next_mode): + if next_mode == 'normal': + # Normal view keeps ALL prior limits/cursors; only line + # visibility may differ. 0-visible needs the placeholder text, + # so fall through to the full rebuild for that case. + if self.visible_traces: + self._incremental_refresh_normal() + return + else: + # Stacked/timing: identical composition + static data means the + # rendered figure is already correct. Just redraw. + for ax in self.panes: + ax.grid(self.grid_check.isChecked()) + self.canvas.draw_idle() + return + + # โ”€โ”€ Full rebuild โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ + # Preserve zoom when autoscale is off. + # Capture only when staying in the SAME ylim-meaningful mode: timing + # uses [0..N] normalized space, stacked uses per-trace SI units โ€” + # restoring one across modes would clip signals or scramble panes. + capture_state = (not self.autoscale_check.isChecked() + and self._current_view_mode == next_mode + and next_mode in ('normal', 'stacked') + and bool(self.panes)) + if capture_state: + self._capture_view_state() + + # Re-enable constrained_layout before rebuilding: a previous stacked + # refresh may have frozen it (engine off + pinned positions). The new + # panes must be solved once by CL; _freeze_layout re-freezes at the end + # for multi-pane stacked. Cheap single-pane modes stay CL-managed. + self.fig.set_layout_engine('constrained') + + self._func_line = None # fig.clear() below wipes all artists + self.timing_annotations.clear() + # Any in-progress cursor drag and the blit snapshot become invalid + # once fig.clear() tears down the figure. Reset them here so the + # restore path that follows starts from a clean state. + self._drag_cursor_idx = None + self._blit_background = None + self.fig.clear() + # Hover-cache held references to the old Axes; invalidate before + # _build_panes hands out fresh ones. + self._last_hover_axes = None + self._last_hover_anchor = None + for t in self.traces.values(): + t.line_object = None + # Set view mode BEFORE plot path runs so callees (update_timing_tick_colors, + # legend handling, etc.) can branch on the new mode instead of the prior one. + self._current_view_mode = next_mode + if next_mode == 'timing': + self._build_panes(1) + self.plot_timing_diagram() + elif next_mode == 'stacked': + self.plot_stacked_diagram() + else: + if self.plot_type[0] == DataExtraction.AC_ANALYSIS: + if self.plot_type[1] == 1: + self.on_push_decade() + else: + self.on_push_ac() + elif self.plot_type[0] == DataExtraction.TRANSIENT_ANALYSIS: + self.on_push_trans() + else: + self.on_push_dc() + if self.panes: + for ax in self.panes: + ax.grid(self.grid_check.isChecked()) + # Restore unconditionally: capture_state fills saved_pane_ylims + # for the preserve-zoom path, AND lock-Y entries persist there + # independently. _restore_view_state is a no-op when both are + # empty, so calling it is always safe. + self._restore_view_state() + if self.legend_check.isChecked(): + self.position_legend() + self._restore_cursors() + # Record what we just drew so the next refresh can skip the rebuild if + # nothing structural changed. + self._drawn_signature = new_sig + # Arm the free post-draw freeze for multi-pane stacked: the draw below + # solves CL once, then _on_draw_event pins the result and drops the + # engine so later draws skip the solver. Doing this inline (an extra + # synchronous layout pass) is what made rapid toggling lag, so we let + # the draw we already need do the work. Single-pane modes keep CL on โ€” + # cheap there, and it keeps tick-label margins adaptive. + self._pending_freeze = (self._current_view_mode == 'stacked' + and len(self.panes) > 1) + self.canvas.draw_idle() + + def _incremental_refresh_normal(self) -> None: + """Update the shared-axes normal view in place โ€” no fig.clear(). + + Used when the composition signature is unchanged but trace visibility + may have toggled. Reconciles each trace's Line2D (lazily creating one + for a newly-visible trace, hiding rather than destroying one that was + switched off), then re-fits/legends/cursors exactly as a full rebuild + would, all without tearing the figure down. + """ + for idx, t in self.traces.items(): + if t.visible: + if t.line_object is None: + self._draw_normal_trace_line(t) + else: + t.line_object.set_visible(True) + elif t.line_object is not None: + # Keep the artist for cheap re-show; just hide it. + t.line_object.set_visible(False) + + # Re-fit only when autoscale is on; otherwise leave the user's zoom. + # visible_only=True excludes the hidden (kept) lines from the bounds. + if self.autoscale_check.isChecked(): + self.axes.relim(visible_only=True) + self.axes.autoscale_view() + + first_visible = next((i for i in sorted(self.traces) + if self.traces[i].visible), None) + if first_visible is not None: + self.axes.set_ylabel('Voltage (V)' if first_visible < self.volts_length + else 'Current (A)') + + if self.legend_check.isChecked(): + # legend() replaces any existing legend; โ‰ฅ1 visible is guaranteed + # by the caller, so position_legend always has a handle to draw. + self.position_legend() + + # Cursor axvlines persist on the live axes (no fig.clear), so they need + # no re-creation โ€” but the sidebar readouts depend on the visible set, + # which just changed, so refresh those. + if any(p is not None for p in self.cursor_positions): + self._refresh_cursor_readouts() + + self.canvas.draw_idle() + + def _on_draw_event(self, event) -> None: + """Freeze the layout for FREE, right after a stacked rebuild's draw. + + The CL solver (~60% of a stacked draw's Python time) re-runs on every + draw โ€” even when pane geometry is unchanged. We can't avoid the one + solve that the rebuild's own draw performs, but we CAN stop it repeating + on subsequent zoom/pan/cursor draws: this fires after that draw has + already solved CL, so we snapshot the EXACT solved positions (margins + match CL by construction โ€” rotated y-labels, stats titles included) and + drop the engine. No extra layout pass, so rapid toggling stays cheap. + """ + if not (self._pending_freeze and self.panes + and self._current_view_mode == 'stacked' + and len(self.panes) > 1): + return + self._pending_freeze = False + positions = [ax.get_position().frozen() for ax in self.panes] + self.fig.set_layout_engine('none') # stop the solver + for ax, pos in zip(self.panes, positions): + ax.set_position(pos) # pin the CL-solved geometry + + def position_legend(self) -> None: + if not (self.panes and self.legend_check.isChecked()): + return + # Stacked view: each pane already has a single-trace caption (set by + # the stacked plot path), so a combined legend on the top pane would + # be redundant noise. + if self._current_view_mode == 'stacked': + return + handles, labels = [], [] + for idx in sorted(self.traces.keys()): + t = self.traces[idx] + if t.visible and t.line_object: + handles.append(t.line_object) + labels.append(t.name) + if not handles: + return + ncol = max(1, min(4, len(handles))) + legend = self.axes.legend( + handles, labels, + loc='best', + ncol=ncol, + frameon=True, + fancybox=False, + shadow=False, + framealpha=0.95, + columnspacing=1.2, + handlelength=1.5, + ) + legend.get_frame().set_facecolor('white') + legend.get_frame().set_edgecolor('#E0E0E0') + legend.get_frame().set_linewidth(1) + + def _get_transient_start_idx(self, time_data: "np.ndarray") -> int: + """Return the index into time_data where the .tran start time begins, or 0.""" + if self._tran_start_time > 0: + return int(np.searchsorted(time_data, self._tran_start_time)) + return 0 + + def plot_timing_diagram(self) -> None: + """Plot digital timing diagram with normalized trace heights.""" + self.timing_annotations.clear() + + if self.plot_type[0] != DataExtraction.TRANSIENT_ANALYSIS: + self.axes.text(0.5, 0.5, 'Digital timing view is only\navailable for transient analysis.', + ha='center', va='center', transform=self.axes.transAxes, + color='#757575') + self.axes.set_yticks([]) + self.axes.set_yticklabels([]) + return + + visible_indices = [t.index for t in self.visible_traces] + if not visible_indices: + self.axes.text(0.5, 0.5, 'Select a waveform to display', + ha='center', va='center', transform=self.axes.transAxes) + self.axes.set_yticks([]) + self.axes.set_yticklabels([]) + return + + manual_threshold = (None if self.threshold_spinbox.value() == self.threshold_spinbox.minimum() + else self.threshold_spinbox.value()) + if manual_threshold is None: + self.threshold_spinbox.setSpecialValueText("Auto (midpoint)") + self.logic_thresholds = {} + + # Build local float arrays for all traces โ€” never touch obj_dataext + time_data = np.asarray(self.obj_dataext.x, dtype=float) + y_data = {i: np.asarray(self.obj_dataext.y[i], dtype=float) + for i in range(len(self.obj_dataext.y))} + + if self.plot_type[0] == DataExtraction.TRANSIENT_ANALYSIS: + start_idx = self._get_transient_start_idx(time_data) + if 0 < start_idx < len(time_data): + time_data = time_data[start_idx:] + y_data = {i: arr[start_idx:] for i, arr in y_data.items()} + + # Each trace occupies exactly 1.0 normalized unit of y-space. + # spacing = vertical_spacing (e.g. 1.2 โ†’ 20% gap between traces). + # This guarantees uniform height for all signals regardless of voltage domain. + spacing = self.vertical_spacing + yticks, ylabels = [], [] + + for rank, idx in enumerate(visible_indices[::-1]): + raw_data = y_data[idx] + + # Safety clamp โ€” guards against malformed simulation output where a + # y array is shorter or longer than the time axis. Use a local + # trace_time so time_data is never mutated across iterations. + n = min(len(raw_data), len(time_data)) + raw_data = raw_data[:n] + trace_time = time_data[:n] + + trace_vmin, trace_vmax = np.min(raw_data), np.max(raw_data) + trace_unit = "V" if idx < self.obj_dataext.volts_length else "A" + + if trace_vmax - trace_vmin < 1e-10: + # Constant (DC) signal โ€” state indeterminate, park at 0.5. + # No threshold line drawn (nothing to threshold against). + logic_normalized = np.full(n, 0.5) + else: + # Per-trace threshold: midpoint of its own swing (CMOS VDD/2 convention). + # Manual override applies the user's voltage, normalized into [0,1] for + # this trace so the axhline always sits within the trace bounds. + threshold = (manual_threshold if manual_threshold is not None + else (trace_vmin + trace_vmax) / 2.0) + logic_normalized = np.where(raw_data > threshold, 1.0, 0.0) + threshold_norm = float(np.clip( + (threshold - trace_vmin) / (trace_vmax - trace_vmin), 0.0, 1.0 + )) + self.logic_thresholds[idx] = threshold_norm + + logic_offset = logic_normalized + rank * spacing + + t = self.traces[idx] + line, = self.axes.step(trace_time, logic_offset, where="post", + linewidth=t.thickness, color=t.color, label=t.name) + t.line_object = line + + # y_center is always rank * spacing + 0.5 in normalized space. + y_center = rank * spacing + 0.5 + yticks.append(y_center) + ylabels.append(t.name) + + ann = [] + xform = self.axes.get_yaxis_transform() + if trace_vmax - trace_vmin < 1e-10: + ann.append(self.axes.text( + 1.01, y_center, + f"DC: {_format_measurement(float(trace_vmax), trace_unit)}", + transform=xform, va='center', ha='left', + color=t.color, clip_on=False)) + else: + ann.append(self.axes.text( + 1.01, rank * spacing + 0.82, + f"H: {_format_measurement(float(trace_vmax), trace_unit)}", + transform=xform, va='center', ha='left', + color=t.color, clip_on=False)) + ann.append(self.axes.text( + 1.01, rank * spacing + 0.18, + f"L: {_format_measurement(float(trace_vmin), trace_unit)}", + transform=xform, va='center', ha='left', + color=t.color, clip_on=False)) + freq = _detect_frequency(trace_time, logic_normalized) + if freq is not None: + ann.append(self.axes.text( + 1.01, y_center, _format_frequency(freq), + transform=xform, va='center', ha='left', + color=t.color, alpha=0.75, clip_on=False)) + self.timing_annotations[idx] = ann + + # Func traces as additional timing channels โ€” normalized same as sim signals. + n_sim = len(visible_indices) + vis_func = [ + (f_idx, self._func_traces[f_idx]) + for f_idx in range(len(self._func_traces)) + if f_idx < len(self._func_visible) and self._func_visible[f_idx] + ] + xform = self.axes.get_yaxis_transform() + for func_slot, (f_idx, (flabel, fx, fy, fcolor, fthickness, _fs)) in enumerate(vis_func): + rank = n_sim + func_slot + n_pts = min(len(fx), len(fy)) + if n_pts < 2: + continue + fy_arr = np.asarray(fy[:n_pts], dtype=float) + fx_arr = np.asarray(fx[:n_pts], dtype=float) + fmin, fmax = float(np.min(fy_arr)), float(np.max(fy_arr)) + y_center = rank * spacing + 0.5 + if fmax - fmin < 1e-10: + logic = np.full(n_pts, 0.5) + self.axes.text(1.01, y_center, f"DC: {fmax:.4g}", + transform=xform, va='center', ha='left', + color=fcolor, clip_on=False, + fontsize=max(7, LEGEND_FONT_SIZE - 1)) + else: + logic = np.where(fy_arr > (fmin + fmax) / 2.0, 1.0, 0.0) + self.axes.text(1.01, rank * spacing + 0.82, f"H: {fmax:.4g}", + transform=xform, va='center', ha='left', + color=fcolor, clip_on=False, + fontsize=max(7, LEGEND_FONT_SIZE - 1)) + self.axes.text(1.01, rank * spacing + 0.18, f"L: {fmin:.4g}", + transform=xform, va='center', ha='left', + color=fcolor, clip_on=False, + fontsize=max(7, LEGEND_FONT_SIZE - 1)) + freq = _detect_frequency(fx_arr, logic) + if freq is not None: + self.axes.text(1.01, y_center, _format_frequency(freq), + transform=xform, va='center', ha='left', + color=fcolor, alpha=0.75, clip_on=False, + fontsize=max(7, LEGEND_FONT_SIZE - 1)) + self.axes.step(fx_arr, logic + rank * spacing, where='post', + color=fcolor, linewidth=fthickness, label=flabel) + yticks.append(y_center) + ylabels.append(f'ฦ’ {flabel}') + + # Y-axis bounds: total count includes func trace slots. + total_count = n_sim + len(vis_func) + total_height = max(total_count - 1, 0) * spacing + 1.0 + margin = 0.15 * spacing + self.axes.set_ylim(-margin, total_height + margin) + self.axes.set_yticks(yticks) + self.axes.set_yticklabels(ylabels) + + self.update_timing_tick_colors() + self.set_time_axis_label(time_data) + + # Threshold lines for sim signals only. + for rank, idx in enumerate(visible_indices[::-1]): + if idx in self.logic_thresholds: + self.axes.axhline(y=self.logic_thresholds[idx] + rank * spacing, + color='red', linestyle=':', alpha=THRESHOLD_ALPHA, linewidth=0.8) + + def _render_pane_stats(self, ax, group: List[int], + x_arr: "np.ndarray") -> None: + """Draw a min/max/p-p/RMS (+ freq for periodic transient) overlay. + + One text row per trace in the group, anchored top-right via axes + fraction so it survives pane resize / zoom. Skipped silently when + the group has no plottable traces. + """ + if not group: + return + rows: List[str] = [] + for trace_idx in group: + t = self.traces.get(trace_idx) + if t is None: + continue + y_arr = np.asarray(self.obj_dataext.y[trace_idx], dtype=float) + n_pts = min(len(y_arr), len(x_arr)) + if n_pts < 2: + continue + y = y_arr[:n_pts] + x = x_arr[:n_pts] + unit = 'V' if trace_idx < self.obj_dataext.volts_length else 'A' + ymin = float(np.min(y)) + ymax = float(np.max(y)) + pp = ymax - ymin + # Trapezoid integration is correct for adaptive-timestep ngspice + # output where sample spacing is non-uniform (up to 200x ratio). + # Simple mean/meanยฒ gives wrong DC and RMS on such data. + T = float(x[-1] - x[0]) + dc = float(_trapz(y, x) / T) + rms_total_sq = float(_trapz(y * y, x) / T) + # AC RMS = sqrt(RMSยฒ - DCยฒ) โ€” signal amplitude without DC offset. + rms_ac = float(np.sqrt(max(0.0, rms_total_sq - dc * dc))) + # Drop min/max (already visible from Y-axis ticks) and name + # (already the left title). Keep only the high-value stats. + parts = [f"p-p={_format_measurement(pp, unit)}", + f"DC={_format_measurement(dc, unit)}", + f"RMS={_format_measurement(rms_ac, unit)}"] + if self._current_analysis_type == 'transient' and pp > 1e-12: + mid = (ymin + ymax) / 2.0 + logic = np.where(y > mid, 1.0, 0.0) + freq = _detect_frequency(x, logic) + if freq is not None: + parts.append(f"f={_format_frequency(freq)}") + rows.append(" ".join(parts)) + if not rows: + return + # No bbox โ€” stats are in the title margin above the spine, no waveform + # behind them, so a white background box is unnecessary and its padding + # would straddle the spine into the axes area. + ax.set_title("\n".join(rows), loc='right', + fontsize=max(7, LEGEND_FONT_SIZE - 1), + color='#444444', pad=4) + + def _render_func_pane_stats(self, ax, fx: "np.ndarray", fy: "np.ndarray") -> None: + x = np.asarray(fx, dtype=float) + y = np.asarray(fy, dtype=float) + n = min(len(x), len(y)) + if n < 2: + return + x, y = x[:n], y[:n] + ymin, ymax = float(np.min(y)), float(np.max(y)) + pp = ymax - ymin + T = float(x[-1] - x[0]) + if T <= 0: + return + dc = float(_trapz(y, x) / T) + rms_ac = float(np.sqrt(max(0.0, float(_trapz(y * y, x) / T) - dc * dc))) + + def _fmt(v: float) -> str: + a = abs(v) + if a >= 1: return f"{v:.3g}" + if a >= 1e-3: return f"{v * 1e3:.3g}m" + if a >= 1e-6: return f"{v * 1e6:.3g}ยต" + if a >= 1e-9: return f"{v * 1e9:.3g}n" + return f"{v:.3g}" + + parts = [f"p-p={_fmt(pp)}", f"DC={_fmt(dc)}", f"RMS={_fmt(rms_ac)}"] + if self._current_analysis_type == 'transient' and pp > 1e-12: + freq = _detect_frequency(x, np.where(y > (ymin + ymax) / 2.0, 1.0, 0.0)) + if freq is not None: + parts.append(f"f={_format_frequency(freq)}") + ax.set_title(" ".join(parts), loc='right', + fontsize=max(7, LEGEND_FONT_SIZE - 1), + color='#444444', pad=4) + + def plot_stacked_diagram(self) -> None: + """Stacked-pane view: one pane per visible trace + one per func trace. + + Each entry in self._pane_groups is a single-element list containing + the trace.index of that pane's signal. Function panes follow at the + bottom. Heights, lock-Y, stats, and pane-name anchor live on the + first (and only) trace in the group. + + Function traces (set by plot_function while stacked is active) tail + at the bottom as one extra pane each. + """ + # Bring _pane_groups in line with the current visibility set + self._sync_pane_groups_to_visible() + + if not self._pane_groups and not self._func_traces: + self._build_panes(1) + self.axes.text(0.5, 0.5, 'Select a waveform to display', + ha='center', va='center', + transform=self.axes.transAxes) + self.axes.set_yticks([]) + self.axes.set_yticklabels([]) + return + + is_transient = self.plot_type[0] == DataExtraction.TRANSIENT_ANALYSIS + is_ac = self.plot_type[0] == DataExtraction.AC_ANALYSIS + is_log = is_ac and self.plot_type[1] == 1 + is_dc = self.plot_type[0] == DataExtraction.DC_ANALYSIS + + x_data = np.asarray(self.obj_dataext.x, dtype=float) + if is_transient: + start_idx = self._get_transient_start_idx(x_data) + if 0 < start_idx < len(x_data): + x_data = x_data[start_idx:] + + n_groups = len(self._pane_groups) + # Only visible func traces get their own pane. + _vis_func = [i for i in range(len(self._func_traces)) + if i < len(self._func_visible) and self._func_visible[i]] + n_funcs = len(_vis_func) + n = n_groups + n_funcs + self._build_panes(n) + + for pane_idx, group in enumerate(self._pane_groups): + ax = self.panes[pane_idx] + if not group or group[0] not in self.traces: + ax.set_ylim(-1, 1) + if pane_idx < n - 1: + ax.tick_params(labelbottom=False) + continue + t = self.traces[group[0]] + raw_y = np.asarray(self.obj_dataext.y[t.index], dtype=float) + n_pts = min(len(raw_y), len(x_data)) + if n_pts == 0: + ax.set_ylim(-1, 1) + if pane_idx < n - 1: + ax.tick_params(labelbottom=False) + continue + y = raw_y[:n_pts] + trace_x = x_data[:n_pts] + + plot_style = '-' if t.style == 'steps-post' else t.style + if is_log: + line, = ax.semilogx(trace_x, y, color=t.color, + linewidth=t.thickness, + linestyle=plot_style) + elif t.style == 'steps-post' and (is_transient or is_dc): + line, = ax.step(trace_x, y, where='post', color=t.color, + linewidth=t.thickness) + else: + line, = ax.plot(trace_x, y, color=t.color, + linewidth=t.thickness, linestyle=plot_style) + t.line_object = line + + ax.set_title(t.name, loc='left', color=t.color, + fontsize=LEGEND_FONT_SIZE, fontweight='bold', pad=3) + + is_voltage = t.index < self.obj_dataext.volts_length + unit = 'V' if is_voltage else 'A' + ax.set_ylabel(unit, rotation=0, labelpad=8, va='center') + ax.yaxis.set_major_formatter(FuncFormatter( + lambda v, _pos, _u=unit: _format_measurement(float(v), _u))) + + ymin = float(np.min(y)) + ymax = float(np.max(y)) + if abs(ymax - ymin) < 1e-12: + center = (ymin + ymax) / 2.0 + ax.set_ylim(center - 1.0, center + 1.0) + else: + margin = 0.1 * (ymax - ymin) + ax.set_ylim(ymin - margin, ymax + margin) + + if pane_idx < n - 1: + ax.tick_params(labelbottom=False) + # Visible separator hint: gray bottom spine reads as a row + # divider in the strip chart. + ax.spines['bottom'].set_color('#BDBDBD') + ax.spines['bottom'].set_linewidth(1.0) + + if self.stats_check.isChecked(): + self._render_pane_stats(ax, group, x_data) + + # Trailing function-trace panes. Only visible func traces get a pane. + # _vis_func holds the original indices into _func_traces so labels + # and colours stay correct after partial hide/show. + for pane_slot, f_idx in enumerate(_vis_func): + pane_offset = n_groups + pane_slot + if pane_offset >= len(self.panes): + break + label, fx, fy, color, thickness, style = self._func_traces[f_idx] + ax = self.panes[pane_offset] + plot_style = '-' if style == 'steps-post' else style + if style == 'steps-post': + ax.step(fx, fy, where='post', color=color, linewidth=thickness) + else: + ax.plot(fx, fy, color=color, linewidth=thickness, linestyle=plot_style) + ax.set_title(label, loc='left', color=color, + fontsize=LEGEND_FONT_SIZE, fontweight='bold', pad=3) + if len(fy): + ymin = float(np.min(fy)) + ymax = float(np.max(fy)) + if abs(ymax - ymin) < 1e-12: + center = (ymin + ymax) / 2.0 + ax.set_ylim(center - 1.0, center + 1.0) + else: + margin = 0.1 * (ymax - ymin) + ax.set_ylim(ymin - margin, ymax + margin) + if pane_offset < n - 1: + ax.tick_params(labelbottom=False) + ax.spines['bottom'].set_color('#BDBDBD') + ax.spines['bottom'].set_linewidth(1.0) + + if self.stats_check.isChecked(): + self._render_func_pane_stats(ax, fx, fy) + + # Bottom-pane X label / formatter. Existing helpers already target + # self.panes[-1], so the multi-pane case is free. + if is_ac: + self.set_freq_axis_label() + elif is_transient: + self.set_time_axis_label(x_data) + else: # DC sweep + self._reset_x_axis_scaling() + self.panes[-1].set_xlabel('Voltage Sweep (V)') + + + def _reset_x_axis_scaling(self) -> None: + """Drop any SI-unit formatter on the X axis (identity tick labels). + + Used when the X axis no longer represents time/frequency โ€” e.g. the + Lissajous case in plot_function where X becomes a voltage trace. + """ + self._x_scale = 1.0 + self._x_unit = '' + for ax in self.panes: + ax.xaxis.set_major_formatter(ScalarFormatter()) + + def _apply_x_axis_scaling(self, scale: float, unit: str, + label_prefix: str) -> None: + """Display-only X-axis scaling via FuncFormatter. + + Line data and xlim stay in raw SI units; tick labels show raw * scale. + This keeps event.xdata, cursor positions, and stored data coherent and + eliminates the previous mutate-on-every-refresh xdata bug. The label + is only attached to the bottom-most pane so stacked panes share one + unified X axis caption. + """ + self._x_scale = scale + self._x_unit = unit + fmt = FuncFormatter(lambda v, _pos, _s=scale: f"{v * _s:g}") + for ax in self.panes: + ax.xaxis.set_major_formatter(fmt) + ax.set_xlabel('') + if self.panes: + self.panes[-1].set_xlabel(f'{label_prefix} ({unit})') + + def set_time_axis_label(self, time_data: Optional["np.ndarray"] = None) -> None: + if not self.panes or not hasattr(self.obj_dataext, 'x'): + return + if time_data is None: + time_data = np.asarray(self.obj_dataext.x, dtype=float) + if len(time_data) < 2: + self._x_scale, self._x_unit = 1.0, 's' + self.panes[-1].set_xlabel('Time (s)') + return + scale, unit = self._get_time_scale_and_unit(time_data) + self._apply_x_axis_scaling(scale, unit, 'Time') + self.axes.set_xlim(float(time_data[0]), float(time_data[-1])) + + def on_threshold_changed(self, value: float) -> None: + if self.radio_timing.isChecked(): + self._controls_timer.start() + + def on_spacing_changed(self, value: int) -> None: + self.vertical_spacing = value / 100.0 + self.spacing_label.setText(f"{self.vertical_spacing:.1f}x") + if self.radio_timing.isChecked(): + self._controls_timer.start() + + def _get_time_scale_and_unit(self, time_data: Optional["np.ndarray"] = None) -> Tuple[float, str]: + """Single source of truth for time-axis unit selection. + + All callers (set_time_axis_label, _current_time_scale, set_cursor) + derive their scale factor from here โ€” ensures they can never diverge. + time_data defaults to obj_dataext.x; pass a trimmed slice when a + subset of the axis is being displayed (e.g. transient start offset). + """ + if time_data is None: + time_data = np.asarray(self.obj_dataext.x, dtype=float) + time_span = abs(time_data[-1] - time_data[0]) if len(time_data) > 1 else 0.0 + if time_span == 0: return 1.0, 's' + if time_span < TIME_UNIT_THRESHOLD_PS: return 1e12, 'ps' + if time_span < TIME_UNIT_THRESHOLD_NS: return 1e9, 'ns' + if time_span < TIME_UNIT_THRESHOLD_US: return 1e6, 'ยตs' + if time_span < TIME_UNIT_THRESHOLD_MS: return 1e3, 'ms' + return 1.0, 's' + + def _current_time_scale(self) -> float: + return self._get_time_scale_and_unit()[0] + + def _current_axis_scale(self) -> float: + if self._current_analysis_type in ('ac_log', 'ac_linear'): + return self._get_freq_scale_and_unit()[0] + return self._get_time_scale_and_unit()[0] + + def _update_measure_label(self, delta_original: float, scale: float) -> None: + if self._current_analysis_type in ('ac_log', 'ac_linear'): + _, unit = self._get_freq_scale_and_unit() + self.measure_label.setText(f"ฮ”F: {delta_original * scale:.6g} {unit}") + else: + if delta_original > 0: + self.measure_label.setText(f"Freq: {1.0 / delta_original:.6g} Hz") + + def _draw_normal_trace_line(self, t: "Trace", + x_data: "Optional[np.ndarray]" = None) -> "Line2D": + """Plot one trace on the shared normal-view axes and store its line. + + Shared by the full rebuild (_plot_analysis_data) and the incremental + refresh (_incremental_refresh_normal) so the artist type โ€” step vs + semilogx vs plot โ€” is chosen identically on both paths. Branches on + self._current_analysis_type, which the full rebuild sets first. + """ + if x_data is None: + x_data = np.asarray(self.obj_dataext.x, dtype=float) + y_data = np.asarray(self.obj_dataext.y[t.index], dtype=float) + n_pts = min(len(x_data), len(y_data)) + x_plot, y_plot = x_data[:n_pts], y_data[:n_pts] + analysis_type = self._current_analysis_type + plot_style = '-' if t.style == 'steps-post' else t.style + plot_kwargs: dict = {} + if t.style == 'steps-post' and analysis_type in ['transient', 'dc']: + plot_func = self.axes.step + plot_kwargs['where'] = 'post' + elif analysis_type == 'ac_log': + plot_func = self.axes.semilogx + else: + plot_func = self.axes.plot + line, = plot_func(x_plot, y_plot, color=t.color, label=t.name, + linewidth=t.thickness, linestyle=plot_style, **plot_kwargs) + t.line_object = line + return line + + def _plot_analysis_data(self, analysis_type: str) -> None: + self._current_analysis_type = analysis_type + self._build_panes(1) + traces_plotted = 0 + first_visible = None + x_data = np.asarray(self.obj_dataext.x, dtype=float) + for idx, t in self.traces.items(): + if not t.visible: + continue + traces_plotted += 1 + if first_visible is None: + first_visible = idx + self._draw_normal_trace_line(t, x_data) + + if analysis_type in ['ac_linear', 'ac_log']: + self.set_freq_axis_label() + elif analysis_type == 'dc': + self.axes.set_xlabel('Voltage Sweep (V)') + + if first_visible is not None: + self.axes.set_ylabel('Voltage (V)' if first_visible < self.volts_length else 'Current (A)') + + if traces_plotted == 0: + self.axes.text(0.5, 0.5, 'Please select a waveform to plot', ha='center', va='center', transform=self.axes.transAxes) + + if analysis_type == 'transient': + self.set_time_axis_label() + + # Overlay visible function traces on the shared axes. + # Stacked mode renders these as separate panes in plot_stacked_diagram, + # so this block is normal-mode-only (single axes). + for _f_idx, (_label, _fx, _fy, _color, _thickness, _style) in enumerate(self._func_traces): + if not (_f_idx < len(self._func_visible) and self._func_visible[_f_idx]): + continue + _n = min(len(_fx), len(_fy)) + if _n > 0: + _plot_style = '-' if _style == 'steps-post' else _style + if _style == 'steps-post': + self.axes.step(_fx[:_n], _fy[:_n], where='post', + color=_color, label=_label, linewidth=_thickness) + else: + self.axes.plot(_fx[:_n], _fy[:_n], color=_color, + label=_label, linewidth=_thickness, linestyle=_plot_style) + + + def on_push_decade(self) -> None: + self._plot_analysis_data('ac_log') + + def on_push_ac(self) -> None: + self._plot_analysis_data('ac_linear') + + def on_push_trans(self) -> None: + self._plot_analysis_data('transient') + + def on_push_dc(self) -> None: + self._plot_analysis_data('dc') + diff --git a/src/ngspiceSimulation/constants.py b/src/ngspiceSimulation/constants.py new file mode 100644 index 000000000..a750945ea --- /dev/null +++ b/src/ngspiceSimulation/constants.py @@ -0,0 +1,57 @@ +DEFAULT_WINDOW_WIDTH = 1400 +DEFAULT_WINDOW_HEIGHT = 800 +DEFAULT_DPI = 100 +DEFAULT_FIGURE_SIZE = (10, 8) +DEFAULT_LINE_THICKNESS = 1.5 +DEFAULT_VERTICAL_SPACING = 1.2 +DEFAULT_ZOOM_FACTOR = 0.9 +CURSOR_ALPHA = 0.7 +THRESHOLD_ALPHA = 0.5 +LEGEND_FONT_SIZE = 9 +DEFAULT_EXPORT_DPI = 300 + +# pane scrolls vertically once MIN_STACKED_PANE_HEIGHT_PX * N exceeds viewport +MIN_STACKED_PANE_HEIGHT_PX = 120 +DIVIDER_HIT_TOLERANCE_PX = 6 + +# stacked view uses a wider debounce to coalesce a rapid-toggle burst into one rebuild +REFRESH_DEBOUNCE_MS = 80 +STACKED_REFRESH_DEBOUNCE_MS = 160 + +VIBRANT_COLOR_PALETTE = [ + '#E53935', + '#1E88E5', + '#43A047', + '#FB8C00', + '#8E24AA', + '#00ACC1', + '#D81B60', + '#6D4C41', + '#FDD835', + '#039BE5', + '#C0CA33', + '#37474F' +] + +TIME_UNIT_THRESHOLD_PS = 1e-9 +TIME_UNIT_THRESHOLD_NS = 1e-6 +TIME_UNIT_THRESHOLD_US = 1e-3 +TIME_UNIT_THRESHOLD_MS = 1 + +FREQ_UNIT_THRESHOLD_KHZ = 1e3 +FREQ_UNIT_THRESHOLD_MHZ = 1e6 +FREQ_UNIT_THRESHOLD_GHZ = 1e9 + +LINE_STYLES = [ + ('-', "Solid"), + ('--', "Dashed"), + (':', "Dotted"), + ('steps-post', "Step (Post)") +] + +THICKNESS_OPTIONS = [ + (1.0, "1 px"), + (1.5, "1.5 px"), + (2.0, "2 px"), + (3.0, "3 px") +] diff --git a/src/ngspiceSimulation/data_extraction.py b/src/ngspiceSimulation/data_extraction.py index cc491b540..c42a29695 100644 --- a/src/ngspiceSimulation/data_extraction.py +++ b/src/ngspiceSimulation/data_extraction.py @@ -1,10 +1,11 @@ -# ngspiceSimulation/data_extraction.py """ Data extraction module for NGSpice simulation results. Parses plot_data_v.txt and plot_data_i.txt produced by ngspice. -Transient / DC format: +Transient / DC format (two variants): + + Variant A โ€” older ngspice / multi-group files (has * markers): * /path/to/circuit.cir <- marks start of each column group Transient Analysis date <- analysis type line ----... <- separator @@ -12,16 +13,25 @@ ----... 0\tt0\tv1\tv2\t <- data rows (tab-separated, trailing \t) ... - 54\tt54\tv1\tv2\t - <- blank line - Index time node1 node2 <- page-break header (every ~55 rows, same group) - ----... - 55\tt55\tv1\tv2\t - ... - * /path/to/circuit.cir <- new column group (circuit with many nodes) + * /path/to/circuit.cir <- new column group (additional nodes, same x axis) Transient Analysis date Index time node3 node4 - 0\tt0\tv3\tv4\t <- same time axis, new node values + 0\tt0\tv3\tv4\t + + Variant B โ€” newer ngspice files (no * markers), one or more column groups: + <- any non-Index, non-dash text, skipped + Transient Analysis date + ----... + Index time node1 node2 <- first Index treated as new group directly + ----... + 0\tt0\tv1\tv2\t + ... + Index time node3 node4 <- DIFFERENT column names = new group, same x axis + ----... + 0\tt0\tv3\tv4\t + + Page-break header (both variants, every ~55 rows within same group): + Index time node1 node2 <- SAME column names = page-break, ignored AC format (differs from Transient/DC): Each node value is split into TWO tab columns per row: @@ -30,8 +40,18 @@ Example: 0\t1.0e+03\t9.96e+00,\t-4.50e+00\t Only the real part is stored; the imaginary part is discarded, matching the original implementation behaviour. + +Performance note (vectorized rewrite): + The structural scan (group/page-break detection) stays a cheap per-line + branch walk that never converts a number. All numeric conversion is + deferred and done ONCE PER COLUMN GROUP with a single numpy reader + (np.loadtxt over the group's data rows), instead of the previous + per-cell float() + list.append() loop. For large transient files + (1e5-1e6 rows x N nodes) this turns millions of interpreted float() + calls into a handful of C-level parses. """ +import io import os import logging import numpy as np @@ -42,6 +62,45 @@ logger = logging.getLogger(__name__) +def _block_to_array(rows: List[str], usecols: Tuple[int, ...], + is_ac: bool) -> np.ndarray: + """Convert a group's raw data-row strings to a 2-D float64 array. + + `rows` are verbatim file lines (each still ending in '\\n') that start + with a digit. `usecols` selects the x column and the wanted node + columns (real parts only, for AC). Returns shape (n_rows, len(usecols)). + + Fast path: one np.loadtxt over the joined block. The trailing tab on + every ngspice row produces an extra empty field that `usecols` simply + never selects, so it needs no special handling. + + Defensive path: if a row is malformed (too few fields), loadtxt raises; + we then drop the ragged rows โ€” mirroring the original parser, which + skipped any row shorter than the expected width โ€” and retry. Clean + files (the overwhelming common case) never hit this branch. + """ + if not rows: + return np.empty((0, len(usecols)), dtype=np.float64) + + text = "".join(rows) + if is_ac: + # Drop the real-part trailing comma so every field is a bare float. + text = text.replace(",", "") + try: + return np.loadtxt(io.StringIO(text), delimiter="\t", + usecols=usecols, ndmin=2, comments=None) + except Exception: + max_field = usecols[-1] # usecols is ascending + good = [ln for ln in rows if ln.count("\t") >= max_field] + if not good: + return np.empty((0, len(usecols)), dtype=np.float64) + text = "".join(good) + if is_ac: + text = text.replace(",", "") + return np.loadtxt(io.StringIO(text), delimiter="\t", + usecols=usecols, ndmin=2, comments=None) + + class DataExtraction: """Extracts simulation data from NGSpice output files.""" @@ -60,109 +119,135 @@ def __init__(self) -> None: self.analysisType: int = self.TRANSIENT_ANALYSIS self.dec: int = 0 - # ------------------------------------------------------------------ - # Internal helpers - # ------------------------------------------------------------------ - def _parse_plot_file( self, filepath: str, is_ac: bool = False ) -> Tuple[np.ndarray, str, List[str], List[np.ndarray]]: """ - Parse one ngspice plot file. + Parse one ngspice plot file (vectorized). Returns (x_array, x_name, names, arrays) where names and arrays are parallel lists โ€” one entry per output column in file order. Duplicate column names (ngspice truncates long node names so two distinct nodes can share the same string) are preserved as separate - entries; each gets its own data list keyed by position, not by name. + entries; each gets its own data array keyed by position, not by name. is_ac=True: each node occupies 2 tab columns ("real, imag"); only the real part is kept (comma stripped), imaginary discarded. - Line dispatch: - - starts with digit -> data row (fast path) + Pass 1 (this method): a cheap per-line scan classifies lines and + buckets the raw data-row strings into column groups, exactly like the + original state machine โ€” but it never parses a number here: + - starts with digit -> data row (appended verbatim to current group) - stripped starts with * -> new column group incoming - stripped starts with - -> separator, skip - stripped starts 'Index'-> column header (new group or page-break) - everything else -> analysis-type banner, skip + + Pass 2 (_block_to_array): each group's rows are bulk-parsed with one + numpy reader. The x axis is taken from the first group only (all + groups share the same time/frequency axis, as ngspice emits them). """ - x_list: List[float] = [] - all_names: List[str] = [] # output channel names (duplicates kept) - all_data: List[List[float]] = [] # parallel data lists, one per channel - - x_name: str = 'time' - # Indices into all_data for the columns of the current group. - # On a page-break (same group, same header) we reuse the same indices. - current_indices: Optional[List[int]] = None - new_group_incoming: bool = False - collecting_x: bool = True - cols_per_node: int = 2 if is_ac else 1 + cols_per_node = 2 if is_ac else 1 + x_name = 'time' + all_names: List[str] = [] # output channel names (duplicates kept) + groups: List[dict] = [] # each: {'indices': [...], 'rows': [str]} + + # Indices into all_names for the columns of the current group. + current: Optional[dict] = None + new_group_incoming: bool = True + collecting_x: bool = True # True only for the first group + + def _open_group(col_names: List[str]) -> dict: + indices: List[int] = [] + for nm in col_names: + all_names.append(nm) + indices.append(len(all_names) - 1) + g = {'indices': indices, 'rows': [], 'collect_x': collecting_x} + groups.append(g) + return g try: with open(filepath, 'r') as f: for line in f: - # ---- Fast path: data rows always start with a digit ---- if line and line[0].isdigit(): - if current_indices is None: - continue - parts = line.split('\t') - if len(parts) < 2 + cols_per_node * len(current_indices): - continue - try: - x_val = float(parts[1]) - if collecting_x: - x_list.append(x_val) - for i, idx in enumerate(current_indices): - if is_ac: - raw = parts[2 + 2 * i].rstrip(',') - else: - raw = parts[2 + i] - all_data[idx].append(float(raw)) - except (ValueError, IndexError): - continue + if current is not None: + current['rows'].append(line) continue - # ---- Non-data lines ---- stripped = line.strip() if not stripped: continue - if stripped[0] == '*': + first = stripped[0] + if first == '*': new_group_incoming = True - if current_indices is not None: + if current is not None: collecting_x = False continue - if stripped[0] == '-': + if first == '-': continue if stripped.startswith('Index'): parts = stripped.split() + col_names = parts[2:] if new_group_incoming: x_name = parts[1] - col_names = parts[2:] - current_indices = [] - for name in col_names: - all_names.append(name) - all_data.append([]) - current_indices.append(len(all_data) - 1) + current = _open_group(col_names) new_group_incoming = False - # else: page-break โ€” same group, same columns, same indices + elif (current is not None + and col_names != [all_names[i] + for i in current['indices']]): + # New column group without a * marker (newer ngspice + # format). Distinct column names signal a new signal + # group, not a page-break. Time axis is shared -> + # stop collecting x. + collecting_x = False + current = _open_group(col_names) + # else: page-break โ€” same group, same columns, reuse it continue except OSError as e: logger.error(f"Cannot open {filepath}: {e}") raise - x_arr = np.array(x_list, dtype=np.float64) - arrays = [np.array(d, dtype=np.float64) for d in all_data] + n_channels = len(all_names) + arrays: List[Optional[np.ndarray]] = [None] * n_channels + x_arr = np.array([], dtype=np.float64) + + for g in groups: + indices = g['indices'] + n_nodes = len(indices) + if n_nodes == 0: + continue + if not g['rows']: + for ch_idx in indices: + arrays[ch_idx] = np.array([], dtype=np.float64) + continue + + if is_ac: + node_cols = tuple(range(2, 2 + 2 * n_nodes, 2)) # reals only + else: + node_cols = tuple(range(2, 2 + n_nodes)) + usecols = (1,) + node_cols + + block = _block_to_array(g['rows'], usecols, is_ac) + # block columns: [x, node0, node1, ...] + if g['collect_x'] and x_arr.size == 0 and block.shape[0] > 0: + x_arr = np.ascontiguousarray(block[:, 0], dtype=np.float64) + for k, ch_idx in enumerate(indices): + arrays[ch_idx] = np.ascontiguousarray( + block[:, 1 + k], dtype=np.float64) + + out_arrays = [a if a is not None else np.array([], dtype=np.float64) + for a in arrays] logger.debug( f"Parsed {filepath}: {len(x_arr)} x-pts, " - f"{len(arrays)} channels, x_name='{x_name}'" + f"{len(out_arrays)} channels, x_name='{x_name}'" ) - return x_arr, x_name, all_names, arrays + return x_arr, x_name, all_names, out_arrays def _detect_analysis_type(self, file_path: str) -> Tuple[int, int]: """ @@ -193,10 +278,6 @@ def _detect_analysis_type(self, file_path: str) -> Tuple[int, int]: return self.DC_ANALYSIS, dec - # ------------------------------------------------------------------ - # Public interface (matches what plot_window.py expects) - # ------------------------------------------------------------------ - def openFile(self, file_path: str) -> List[int]: """ Open and process both simulation data files. @@ -205,28 +286,18 @@ def openFile(self, file_path: str) -> List[int]: [analysis_type, dec_flag] where analysis_type is AC_ANALYSIS=0, TRANSIENT_ANALYSIS=1, DC_ANALYSIS=2 and dec_flag=1 for log-scale AC sweep, 0 otherwise. - - Populates: - self.x - 1-D numpy array of x-axis values (time/freq/sweep) - self.y - list of 1-D numpy arrays, one per node/branch - self.NBList - list of all node+branch names (voltage first, then current) - self.NBIList - list of current branch names only - self.volts_length - number of voltage nodes """ try: v_path = os.path.join(file_path, "plot_data_v.txt") i_path = os.path.join(file_path, "plot_data_i.txt") - # ---- Detect analysis type ---- analysis_type, dec = self._detect_analysis_type(file_path) self.analysisType = analysis_type self.dec = dec is_ac = (analysis_type == self.AC_ANALYSIS) - # ---- Parse voltage file ---- x_arr, x_name, v_names, v_arrays = self._parse_plot_file(v_path, is_ac=is_ac) - # ---- Parse current file (graceful if missing or empty) ---- i_names: List[str] = [] i_arrays: List[np.ndarray] = [] try: @@ -236,7 +307,6 @@ def openFile(self, file_path: str) -> List[int]: except Exception as e: logger.warning(f"Could not parse current file: {e}") - # ---- Populate public attributes ---- self.x = x_arr self.volts_length = len(v_names) self.NBIList = i_names @@ -281,9 +351,6 @@ def computeAxes(self) -> None: No-op: x and y are already numpy arrays populated by openFile(). Kept for backward compatibility with plot_window.py call sequence. """ - # plot_window.py calls: openFile() -> computeAxes() -> numVals() - # In the old implementation computeAxes() built self.x and self.y - # from self.data. Now openFile() does it all directly. pass def numVals(self) -> List[int]: diff --git a/src/ngspiceSimulation/math_utils.py b/src/ngspiceSimulation/math_utils.py new file mode 100644 index 000000000..a12db73b7 --- /dev/null +++ b/src/ngspiceSimulation/math_utils.py @@ -0,0 +1,190 @@ +from typing import Optional +import numpy as np + + +def _safe_eval(expr: str, data_map: dict) -> "np.ndarray": + """Evaluate a sanitized expression over pre-resolved trace arrays. + + Caller must run _resolve_expr() first โ€” trace names are replaced with + _trace_N_ identifiers before this function sees the expression, so the + AST parser never encounters NGSpice names like v(net1) or i(r1). + + Allowed: trace identifiers (keys of data_map), numeric literals, + + - * / ** (unary - and +), abs sqrt log log10 exp sin cos tan. + Arrays of mismatched length are trimmed to the shorter one before ops. + Raises ValueError for unknown names, disallowed constructs, or syntax errors. + """ + import ast + import operator as op + + _NUMPY_FNS: dict = { + 'abs': np.abs, 'sqrt': np.sqrt, + 'log': np.log, 'log10': np.log10, 'exp': np.exp, + 'sin': np.sin, 'cos': np.cos, 'tan': np.tan, + } + _BINOPS: dict = { + ast.Add: op.add, ast.Sub: op.sub, + ast.Mult: op.mul, ast.Div: op.truediv, + ast.Pow: op.pow, + } + _UNOPS: dict = { + ast.USub: op.neg, + ast.UAdd: lambda x: x, + } + + def _align(a, b): + if hasattr(a, '__len__') and hasattr(b, '__len__') and len(a) != len(b): + n = min(len(a), len(b)) + return a[:n], b[:n] + return a, b + + def _eval(node): + if isinstance(node, ast.Constant) and isinstance(node.value, (int, float)): + return np.float64(node.value) + if isinstance(node, ast.Name): + if node.id in data_map: + return data_map[node.id] + raise ValueError(f"Unknown identifier '{node.id}' โ€” " + "trace names are substituted before evaluation, " + "so this indicates a typo or unsupported construct.") + if isinstance(node, ast.BinOp): + fn = _BINOPS.get(type(node.op)) + if fn is None: + raise ValueError(f"Unsupported operator: {type(node.op).__name__}") + l, r = _align(_eval(node.left), _eval(node.right)) + return fn(l, r) + if isinstance(node, ast.UnaryOp): + fn = _UNOPS.get(type(node.op)) + if fn is None: + raise ValueError(f"Unsupported unary operator: {type(node.op).__name__}") + return fn(_eval(node.operand)) + if isinstance(node, ast.Call): + if not isinstance(node.func, ast.Name): + raise ValueError( + "Attribute calls (e.g. np.sin) are not allowed. " + "Use the bare function name instead: sin(โ€ฆ)") + fn = _NUMPY_FNS.get(node.func.id) + if fn is None: + raise ValueError( + f"Unknown function '{node.func.id}'. " + f"Allowed: {', '.join(sorted(_NUMPY_FNS))}") + if node.keywords: + raise ValueError("Keyword arguments are not allowed in function calls.") + args = [_eval(a) for a in node.args] + return fn(*args) + raise ValueError( + f"Unsupported expression node '{type(node).__name__}'. " + "Only arithmetic operators and whitelisted functions are allowed.") + + try: + tree = ast.parse(expr, mode='eval') + except SyntaxError as exc: + raise ValueError(f"Syntax error: {exc.msg}") from exc + return np.asarray(_eval(tree.body), dtype=float) + + +def _canonical_expr(sanitized: str) -> str: + """Return canonical form of a sanitized expression for duplicate detection. + + Commutative operators (+, *) flatten their operand chains and sort them, + so 'a+b+c' and 'c+a+b' produce the same string. Non-commutative ops + (-, /, **) keep original order, so 'a-b' and 'b-a' remain distinct. + Falls back to whitespace-stripped input on parse error. + """ + import ast + + def _collect(node, op_type: type, results: list) -> None: + if isinstance(node, ast.BinOp) and isinstance(node.op, op_type): + _collect(node.left, op_type, results) + _collect(node.right, op_type, results) + else: + results.append(_norm(node)) + + def _norm(node) -> str: + if isinstance(node, ast.BinOp): + if isinstance(node.op, (ast.Add, ast.Mult)): + sym = '+' if isinstance(node.op, ast.Add) else '*' + parts: list = [] + _collect(node, type(node.op), parts) + parts.sort() + result = parts[0] + for p in parts[1:]: + result = f'({result}{sym}{p})' + return result + left, right = _norm(node.left), _norm(node.right) + sym = {ast.Sub: '-', ast.Div: '/', ast.Pow: '**'}.get(type(node.op), '?') + return f'({left}{sym}{right})' + if isinstance(node, ast.UnaryOp): + sym = '-' if isinstance(node.op, ast.USub) else '+' + return f'({sym}{_norm(node.operand)})' + if isinstance(node, ast.Call): + func = node.func.id if isinstance(node.func, ast.Name) else repr(node.func) + return f'{func}({",".join(_norm(a) for a in node.args)})' + if isinstance(node, ast.Name): + return node.id + if isinstance(node, ast.Constant): + return str(node.value) + return repr(node) + + try: + return _norm(ast.parse(sanitized, mode='eval').body) + except Exception: + return sanitized.replace(' ', '') + + +def _format_measurement(value: float, unit: str) -> str: + """Format a voltage or current with SI prefix. Covers pA/nV to handle + very small signals without silently returning '0'.""" + abs_val = abs(value) + if unit == "A": + if abs_val >= 1: return f"{value:.3g} A" + if abs_val >= 1e-3: return f"{value * 1e3:.3g} mA" + if abs_val >= 1e-6: return f"{value * 1e6:.3g} ยตA" + if abs_val >= 1e-9: return f"{value * 1e9:.3g} nA" + if abs_val >= 1e-12: return f"{value * 1e12:.3g} pA" + return f"{value:.3g} A" + else: + if abs_val >= 1: return f"{value:.3g} V" + if abs_val >= 1e-3: return f"{value * 1e3:.3g} mV" + if abs_val >= 1e-6: return f"{value * 1e6:.3g} ยตV" + if abs_val >= 1e-9: return f"{value * 1e9:.3g} nV" + if abs_val >= 1e-12: return f"{value * 1e12:.3g} pV" + return f"{value:.3g} V" + + +def _format_frequency(freq_hz: float) -> str: + """Format a frequency in Hz with an appropriate SI prefix.""" + if freq_hz >= 1e9: return f"{freq_hz / 1e9:.3g} GHz" + if freq_hz >= 1e6: return f"{freq_hz / 1e6:.3g} MHz" + if freq_hz >= 1e3: return f"{freq_hz / 1e3:.3g} kHz" + return f"{freq_hz:.3g} Hz" + + +# numpy 2.0 renamed trapz โ†’ trapezoid +_trapz = getattr(np, 'trapezoid', None) or np.trapz + + +def _detect_frequency(time_data: "np.ndarray", + logic_normalized: "np.ndarray") -> "Optional[float]": + """Return signal frequency in Hz if periodic, else None. + + Uses rising-edge timing with linear interpolation for sub-sample accuracy. + Requires โ‰ฅ2 complete cycles and CV < 10% to reject non-periodic signals. + """ + transitions = np.diff(logic_normalized.astype(np.int8)) + rising_idx = np.where(transitions == 1)[0] + if len(rising_idx) < 3: + return None + # Interpolate crossing time: edge is between sample i and i+1, midpoint + # gives sub-sample accuracy for non-uniform (adaptive-step) time grids. + edge_times = (time_data[rising_idx] + time_data[rising_idx + 1]) / 2.0 + periods = np.diff(edge_times) + if len(periods) == 0: + return None + mean_p = float(np.mean(periods)) + if mean_p <= 0: + return None + if len(periods) > 1 and float(np.std(periods)) / mean_p > 0.10: + return None + return 1.0 / mean_p + diff --git a/src/ngspiceSimulation/plot_window.py b/src/ngspiceSimulation/plot_window.py index 9b65b8e11..3edf921c3 100644 --- a/src/ngspiceSimulation/plot_window.py +++ b/src/ngspiceSimulation/plot_window.py @@ -8,215 +8,52 @@ from __future__ import division import os +import re import sys import json import traceback import logging from pathlib import Path -from decimal import Decimal, getcontext from typing import Dict, List, Optional, Tuple, Any from PyQt6 import QtGui, QtCore, QtWidgets from PyQt6.QtCore import Qt, QSettings, pyqtSignal from PyQt6.QtWidgets import (QWidget, QVBoxLayout, QHBoxLayout, QListWidget, QListWidgetItem, QPushButton, - QCheckBox, QGroupBox, + QCheckBox, QGroupBox, QRadioButton, QButtonGroup, QLabel, QLineEdit, QSlider, QDoubleSpinBox, QMenu, QFileDialog, QColorDialog, QInputDialog, QMessageBox, QStatusBar, QSplitter, QToolButton, QWidgetAction, QGridLayout, QSizePolicy, QScrollArea) -from PyQt6.QtGui import (QColor, QBrush, QPalette, QKeySequence, - QPainter, QPixmap, QFont, QAction) +from PyQt6.QtGui import (QColor, QBrush, QPalette, QKeySequence, QShortcut, + QPainter, QPixmap, QFont, QAction, QIcon, QPen) import numpy as np import matplotlib.pyplot as plt -from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas -from matplotlib.backends.backend_qt5agg import NavigationToolbar2QT as NavigationToolbar +from matplotlib.backends.backend_qtagg import FigureCanvasQTAgg as FigureCanvas +from matplotlib.backends.backend_qtagg import NavigationToolbar2QT as NavigationToolbar from matplotlib.backend_bases import NavigationToolbar2 from matplotlib.figure import Figure from matplotlib.lines import Line2D from matplotlib.text import Text +from matplotlib.ticker import FuncFormatter, ScalarFormatter from configuration.Appconfig import Appconfig -from .plotting_widgets import CollapsibleBox, MultimeterWidgetClass +from .plotting_widgets import CollapsibleBox from .data_extraction import DataExtraction -# Set up logging logger = logging.getLogger(__name__) -# Constants -DEFAULT_WINDOW_WIDTH = 1400 -DEFAULT_WINDOW_HEIGHT = 800 -DEFAULT_DPI = 100 -DEFAULT_FIGURE_SIZE = (10, 8) -DEFAULT_LINE_THICKNESS = 1.5 -DEFAULT_VERTICAL_SPACING = 1.2 # <-- UI Change: Reverted to original value -DEFAULT_ZOOM_FACTOR = 0.9 -CURSOR_ALPHA = 0.7 -THRESHOLD_ALPHA = 0.5 -LEGEND_FONT_SIZE = 9 -DEFAULT_EXPORT_DPI = 300 - -# Color Constants -VIBRANT_COLOR_PALETTE = [ - '#E53935', # Vivid Red - '#1E88E5', # Strong Blue - '#43A047', # Rich Green - '#FB8C00', # Bright Orange - '#8E24AA', # Deep Purple - '#00ACC1', # Vibrant Teal - '#D81B60', # Strong Pink - '#6D4C41', # Earthy Brown - '#FDD835', # Visible Amber - '#039BE5', # Sky Blue - '#C0CA33', # Lime Green - '#37474F' # Dark Grey -] - -# Time unit conversion thresholds (more precise) -TIME_UNIT_THRESHOLD_PS = 1e-9 -TIME_UNIT_THRESHOLD_NS = 1e-6 -TIME_UNIT_THRESHOLD_US = 1e-3 -TIME_UNIT_THRESHOLD_MS = 1 - -# Line style options -LINE_STYLES = [ - ('-', "Solid"), - ('--', "Dashed"), - (':', "Dotted"), - ('steps-post', "Step (Post)") -] - -# Thickness options -THICKNESS_OPTIONS = [ - (1.0, "1 px"), - (1.5, "1.5 px"), - (2.0, "2 px"), - (3.0, "3 px") -] - - -class Trace: - """Single class to manage all trace properties.""" - - def __init__(self, index: int, name: str, color: str = None, - thickness: float = DEFAULT_LINE_THICKNESS, style: str = '-', - visible: bool = False) -> None: - self.index = index - self.name = name - self.color = color or VIBRANT_COLOR_PALETTE[0] - self.thickness = thickness - self.style = style - self.visible = visible - self.line_object: Optional[Line2D] = None - - def update_line(self, **kwargs) -> None: - if self.line_object: - if 'color' in kwargs: - self.color = kwargs['color'] - self.line_object.set_color(self.color) - if 'thickness' in kwargs: - self.thickness = kwargs['thickness'] - self.line_object.set_linewidth(self.thickness) - if 'style' in kwargs: - self.style = kwargs['style'] - if self.style != 'steps-post': - self.line_object.set_linestyle(self.style) - - -class CustomListWidget(QListWidget): - """Custom QListWidget that handles selection without default styling.""" - - def __init__(self, parent: Optional[QWidget] = None) -> None: - super().__init__(parent) - self.setSelectionMode(QListWidget.SelectionMode.MultiSelection) - - def paintEvent(self, event: QtGui.QPaintEvent) -> None: - super().paintEvent(event) - - -def _safe_eval(expr: str, data_map: dict) -> "np.ndarray": - """Evaluate a math expression over trace arrays without using eval() on raw user input. - - Allowed: trace names, numeric literals, + - * / ** unary minus, numpy via 'np'. - Raises ValueError for anything else (attribute access, calls, etc.). - """ - import ast, operator as op - - ALLOWED_OPS = { - ast.Add: op.add, ast.Sub: op.sub, - ast.Mult: op.mul, ast.Div: op.truediv, - ast.Pow: op.pow, ast.USub: op.neg, - } - - def _eval(node): - if isinstance(node, ast.Constant) and isinstance(node.value, (int, float)): - return node.value - if isinstance(node, ast.Name): - if node.id in data_map: - return data_map[node.id] - raise ValueError(f"Unknown trace: '{node.id}'") - if isinstance(node, ast.BinOp): - op_fn = ALLOWED_OPS.get(type(node.op)) - if op_fn is None: - raise ValueError(f"Unsupported operator: {type(node.op).__name__}") - return op_fn(_eval(node.left), _eval(node.right)) - if isinstance(node, ast.UnaryOp) and isinstance(node.op, ast.USub): - return op.neg(_eval(node.operand)) - raise ValueError(f"Unsupported expression: {ast.dump(node)}") - - tree = ast.parse(expr, mode='eval') - return np.array(_eval(tree.body), dtype=float) - - -def _format_measurement(value: float, unit: str) -> str: - """Format a voltage or current with an appropriate SI prefix.""" - abs_val = abs(value) - if unit == "A": - if abs_val >= 1: return f"{value:.3g} A" - if abs_val >= 1e-3: return f"{value * 1e3:.3g} mA" - if abs_val >= 1e-6: return f"{value * 1e6:.3g} ยตA" - if abs_val >= 1e-9: return f"{value * 1e9:.3g} nA" - return "0 A" - else: - if abs_val >= 1: return f"{value:.3g} V" - if abs_val >= 1e-3: return f"{value * 1e3:.3g} mV" - if abs_val >= 1e-6: return f"{value * 1e6:.3g} ยตV" - return "0 V" - - -def _format_frequency(freq_hz: float) -> str: - """Format a frequency in Hz with an appropriate SI prefix.""" - if freq_hz >= 1e9: return f"{freq_hz / 1e9:.3g} GHz" - if freq_hz >= 1e6: return f"{freq_hz / 1e6:.3g} MHz" - if freq_hz >= 1e3: return f"{freq_hz / 1e3:.3g} kHz" - return f"{freq_hz:.3g} Hz" - - -def _detect_frequency(time_data: "np.ndarray", - logic_normalized: "np.ndarray") -> "Optional[float]": - """Return signal frequency in Hz if periodic, else None. - - Uses rising-edge timing. Requires โ‰ฅ2 complete cycles and a coefficient of - variation below 10% โ€” rejects glitchy or non-periodic signals. - """ - transitions = np.diff(logic_normalized.astype(np.int8)) - rising_idx = np.where(transitions == 1)[0] - if len(rising_idx) < 3: # need 2+ periods to verify consistency - return None - periods = np.diff(time_data[rising_idx]) - if len(periods) == 0: - return None - mean_p = float(np.mean(periods)) - if mean_p <= 0: - return None - if len(periods) > 1 and float(np.std(periods)) / mean_p > 0.10: - return None - return 1.0 / mean_p - - -class plotWindow(QWidget): +from .constants import * +from .trace import Trace, CustomListWidget +from ._pane_mixin import _PaneMixin +from ._cursor_mixin import _CursorMixin +from ._func_trace_mixin import _FuncTraceMixin +from ._render_mixin import _RenderMixin +from ._list_mixin import _ListMixin + +class plotWindow(QWidget, _PaneMixin, _CursorMixin, _FuncTraceMixin, _RenderMixin, _ListMixin): """Main plotting widget for NGSpice simulation results.""" def __init__(self, file_path: str, project_name: str, parent=None) -> None: @@ -237,19 +74,78 @@ def __init__(self, file_path: str, project_name: str, parent=None) -> None: self.create_main_frame() self.load_simulation_data() self.apply_theme() + self._setup_matplotlib_style() def _initialize_data_structures(self) -> None: + self._em_cache: Optional[int] = None # invalidated by changeEvent on FontChange + self._resize_timer: QtCore.QTimer = QtCore.QTimer(self) + self._resize_timer.setSingleShot(True) + self._resize_timer.setInterval(120) + self._resize_timer.timeout.connect(self._do_deferred_resize) + self._controls_timer: QtCore.QTimer = QtCore.QTimer(self) + self._controls_timer.setSingleShot(True) + self._controls_timer.setInterval(150) + self._controls_timer.timeout.connect(self.refresh_plot) + # debounce: coalesces rapid toggles so stacked rebuild runs once after burst settles + self._refresh_timer: QtCore.QTimer = QtCore.QTimer(self) + self._refresh_timer.setSingleShot(True) + self._refresh_timer.setInterval(REFRESH_DEBOUNCE_MS) + self._refresh_timer.timeout.connect(self.refresh_plot) self.traces: Dict[int, Trace] = {} - self.cursor_lines: List[Optional[Line2D]] = [] + # cursor_lines[i]: axvlines per pane; empty inner list = cursor not yet rendered + self.cursor_lines: List[List[Optional[Line2D]]] = [] self.cursor_positions: List[Optional[float]] = [] + self._current_analysis_type: str = '' self.timing_annotations: Dict[int, Any] = {} self.color_palette = VIBRANT_COLOR_PALETTE.copy() self.logic_thresholds: Dict[int, float] = {} self.vertical_spacing = DEFAULT_VERTICAL_SPACING self._func_line: Optional[Line2D] = None self._drag_cursor_idx: Optional[int] = None - self._meters: List[Any] = [] - self._last_was_timing: bool = False + self._current_view_mode: str = 'normal' # 'normal' | 'timing' | 'stacked' + self.panes: List[Any] = [] + # incremental-refresh: skip full rebuild when composition unchanged; _force_full_refresh overrides + self._drawn_signature: Optional[tuple] = None + self._force_full_refresh: bool = False + # layout freeze: stacked rebuild sets _pending_freeze; draw callback snapshots geometry and drops solver + self._pending_freeze: bool = False + # display-only scale: line data stays in raw SI; ticks formatted as raw * _x_scale + self._x_scale: float = 1.0 + self._x_unit: str = 's' + # view state: one-shot ylim snapshots + persistent locks, both keyed by anchor trace name + self._saved_xlim: Optional[Tuple[float, float]] = None + self._saved_pane_ylims: Dict[str, Tuple[float, float]] = {} # one-shot + self._locked_ylims: Dict[str, Tuple[float, float]] = {} # persistent + # pane groups: outer = pane order, inner = trace indices; empty = one trace per pane + self._pane_groups: List[List[int]] = [] + # pane_lock_y keyed by anchor trace name; actual ylim in _locked_ylims + self._pane_lock_y: Dict[str, bool] = {} + self._global_stats_visible: bool = True + # func traces: (label, x, y, color, thickness, style) + self._func_traces: List[Tuple[str, "np.ndarray", "np.ndarray", str, float, str]] = [] + # canonical expr per func trace for O(1) dup-check + self._func_canonical: List[str] = [] + # visibility parallel to _func_traces + self._func_visible: List[bool] = [] + # sorted longest-first so longer names match before their substrings + self._nb_sorted: List[Tuple[int, str]] = [] + # pending layout from config, resolved after populate_waveform_list sets up NBList + self._pending_layout: Optional[Dict[str, Any]] = None + # pane height ratios; empty = equal heights + self._pane_heights: List[float] = [] + # transient drag state for divider resize and pane reorder + self._divider_drag: Optional[Dict[str, Any]] = None + self._pane_drag: Optional[Dict[str, Any]] = None + # Mouse-move dedup: skip setText/anchor lookup when state unchanged. + self._last_hover_axes: Any = None + self._last_hover_anchor: Optional[str] = None + self._last_coord_text: str = '' + self._last_cursor_shape_was_resize: bool = False + self._blit_background: Optional[Any] = None + # interp cache per cursor; invalidated by new data or x_pos/visible change + self._cursor_interp_cache: List[Optional[Dict]] = [] + # .tran start offset parsed once; 0.0 if not a tran sim + self._tran_start_time: float = 0.0 def _initialize_configuration(self) -> None: self.config_dir = Path.home() / '.pythonPlotting' @@ -276,6 +172,26 @@ def save_config(self) -> None: self.config['trace_colours'] = {t.name: t.color for t in self.traces.values()} self.config['trace_thickness'] = {t.name: t.thickness for t in self.traces.values()} self.config['trace_style'] = {t.name: t.style for t in self.traces.values()} + # Stacked-view layout, keyed by trace NAME so it survives schematic + # changes that renumber NBList. Lists of names per pane preserve + # both pane order and intra-pane signal order. + self.config['stacked_pane_groups'] = [ + [self.traces[i].name for i in g + if i in self.traces] + for g in self._pane_groups + ] + self.config['stacked_lock_y'] = dict(self._pane_lock_y) + self.config['stacked_locked_ylims'] = { + name: list(lims) for name, lims in self._locked_ylims.items() + } + self.config['stacked_stats_visible'] = self.stats_check.isChecked() + # Persist per-pane height ratios alongside their anchor name so a + # schematic edit that drops a signal also drops its custom height. + self.config['stacked_pane_heights'] = { + self.traces[g[0]].name: float(self._pane_heights[i]) + for i, g in enumerate(self._pane_groups) + if g and g[0] in self.traces and i < len(self._pane_heights) + } temp_file = self.config_file.with_suffix('.tmp') with open(temp_file, 'w', encoding='utf-8') as config_file: json.dump(self.config, config_file, indent=2) @@ -285,9 +201,11 @@ def save_config(self) -> None: def closeEvent(self, event: QtGui.QCloseEvent) -> None: self.save_config() - for meter in self._meters: - meter.close() - self._meters.clear() + # Cancel deferred timers so no queued tick fires refresh_plot after the + # figure/canvas below are torn down (would touch a closed figure). + self._refresh_timer.stop() + self._controls_timer.stop() + self._resize_timer.stop() if hasattr(self, 'canvas'): self.canvas.close() if hasattr(self, 'fig'): @@ -295,32 +213,47 @@ def closeEvent(self, event: QtGui.QCloseEvent) -> None: super().closeEvent(event) def apply_theme(self) -> None: - theme_stylesheet = """ - QMenuBar { border-radius: 8px; background-color: #FFFFFF; border: 1px solid #E0E0E0; padding: 2px; } - QStatusBar { border-radius: 8px; background-color: #FFFFFF; border: 1px solid #E0E0E0; padding: 2px; } - QWidget { background-color: #FFFFFF; color: #212121; } - QListWidget { background-color: #FFFFFF; border: 1px solid #E0E0E0; padding: 2px; outline: none; selection-background-color: transparent; selection-color: inherit; } - QListWidget::item { min-height: 32px; padding: 6px 8px; margin: 2px 4px; background-color: transparent; border: none; } - QListWidget::item:selected { background-color: transparent; border: none; } - QListWidget::item:hover { background-color: rgba(0, 0, 0, 0.04); } - QListWidget::item:focus { outline: none; } - QGroupBox { border: 1px solid #E0E0E0; margin-top: 0.5em; padding-top: 0.5em; } - QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 5px 0 5px; } - QPushButton { background-color: #FFFFFF; border: 1px solid #E0E0E0; padding: 6px 12px; font-weight: 500; } - QPushButton:hover { background-color: #F2F2F2; border-color: #1976D2; } - QPushButton:pressed { background-color: #E0E0E0; } - QCheckBox::indicator { width: 16px; height: 16px; } - QMenu { background-color: #FFFFFF; border: 1px solid #E0E0E0; } - QMenu::item:selected { background-color: #E3F2FD; } - QLineEdit { border: 1px solid #E0E0E0; padding: 6px 12px; background-color: #FAFAFA; } - QLineEdit:focus { border-color: #1976D2; background-color: #FFFFFF; } - QSlider::groove:horizontal { border: 1px solid #E0E0E0; height: 4px; background: #E0E0E0; } - QSlider::handle:horizontal { background: #1976D2; border: 1px solid #1976D2; width: 16px; height: 16px; margin: -6px 0; } - QScrollBar:vertical { background-color: #F5F5F5; width: 8px; border: none; border-radius: 4px; } - QScrollBar::handle:vertical { background-color: #BDBDBD; border-radius: 4px; min-height: 20px; margin: 2px; } - QScrollBar::handle:vertical:hover { background-color: #9E9E9E; } - QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical { height: 0px; } - QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { background: transparent; } + em = self._em + sb_w = max(6, em // 2) + ind = max(12, em - 2) + sldr = max(10, em - 4) + sldr_m = -(sldr // 2) + item_h = max(28, em + 12) + item_pv = max(4, em // 4) + item_ph = max(6, em // 2) + btn_pv = max(3, em // 4) + btn_ph = max(6, em // 2) + btn_h = max(24, em + 8) + le_p = max(4, em // 3) + + theme_stylesheet = f""" + QMenuBar {{ border-radius: 8px; background-color: #FFFFFF; border: 1px solid #E0E0E0; padding: 2px; }} + QStatusBar {{ border-radius: 8px; background-color: #FFFFFF; border: 1px solid #E0E0E0; padding: 2px; }} + QWidget {{ background-color: #FFFFFF; color: #212121; }} + QListWidget {{ background-color: #FFFFFF; border: 1px solid #E0E0E0; padding: 2px; outline: none; selection-background-color: transparent; selection-color: inherit; }} + QListWidget::item {{ min-height: {item_h}px; padding: {item_pv}px {item_ph}px; margin: 1px 2px; background-color: transparent; border: none; }} + QListWidget::item:selected {{ background-color: transparent; border: none; }} + QListWidget::item:hover {{ background-color: rgba(0, 0, 0, 0.04); }} + QListWidget::item:focus {{ outline: none; }} + QGroupBox {{ border: 1px solid #E0E0E0; margin-top: 0.5em; padding-top: 0.5em; }} + QGroupBox::title {{ subcontrol-origin: margin; left: 10px; padding: 0 5px 0 5px; }} + QPushButton {{ background-color: #FFFFFF; border: 1px solid #E0E0E0; padding: {btn_pv}px {btn_ph}px; min-height: {btn_h}px; font-weight: 500; }} + QPushButton:hover {{ background-color: #F2F2F2; border-color: #1976D2; }} + QPushButton:pressed {{ background-color: #E0E0E0; }} + QCheckBox::indicator {{ width: {ind}px; height: {ind}px; }} + QMenu {{ background-color: #FFFFFF; border: 1px solid #E0E0E0; }} + QMenu::item:selected {{ background-color: #E3F2FD; }} + QLineEdit {{ border: 1px solid #E0E0E0; padding: {le_p}px {btn_ph}px; background-color: #FAFAFA; }} + QLineEdit:focus {{ border-color: #1976D2; background-color: #FFFFFF; }} + QSlider::groove:horizontal {{ border: 1px solid #E0E0E0; height: 4px; background: #E0E0E0; }} + QSlider::handle:horizontal {{ background: #1976D2; border: 1px solid #1976D2; width: {sldr}px; height: {sldr}px; margin: {sldr_m}px 0; }} + QScrollBar:vertical {{ background-color: #F5F5F5; width: {sb_w}px; border: none; border-radius: {sb_w // 2}px; }} + QScrollBar::handle:vertical {{ background-color: #BDBDBD; border-radius: {sb_w // 2}px; min-height: 20px; margin: 2px; }} + QScrollBar::handle:vertical:hover {{ background-color: #9E9E9E; }} + QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {{ height: 0px; }} + QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {{ background: transparent; }} + QSplitter::handle:horizontal {{ background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0.49 transparent, stop:0.5 #D0D0D0, stop:0.51 transparent); }} + QSplitter::handle:horizontal:hover {{ background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0.45 transparent, stop:0.5 #1976D2, stop:0.55 transparent); }} """ self.setStyleSheet(theme_stylesheet) @@ -334,21 +267,26 @@ def create_main_frame(self) -> None: main_layout = QHBoxLayout(content_widget) self.splitter = QSplitter(Qt.Orientation.Horizontal) self.splitter.setSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) - left_widget = self.create_waveform_list() - self.splitter.addWidget(left_widget) - center_widget = self.create_plot_area() - self.splitter.addWidget(center_widget) + self.splitter.setHandleWidth(5) + em = self._em + self.left_panel = self.create_waveform_list() + self.left_panel.setMinimumWidth(em * 10) + self.splitter.addWidget(self.left_panel) + self.center_widget = self.create_plot_area() + self.center_widget.setMinimumWidth(em * 18) + self.splitter.addWidget(self.center_widget) right_widget = self.create_control_panel() - scroll_area = QScrollArea() - scroll_area.setWidget(right_widget) - scroll_area.setWidgetResizable(True) - scroll_area.setFrameShape(QtWidgets.QFrame.Shape.NoFrame) - scroll_area.setHorizontalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAlwaysOff) - scroll_area.setVerticalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAsNeeded) - scrollbar_style = "QScrollBar:vertical{background-color:#F5F5F5;width:8px;border:none;border-radius:4px;}QScrollBar::handle:vertical{background-color:#BDBDBD;border-radius:4px;min-height:20px;margin:2px;}QScrollBar::handle:vertical:hover{background-color:#9E9E9E;}QScrollBar::add-line:vertical,QScrollBar::sub-line:vertical{height:0px;}QScrollBar::add-page:vertical,QScrollBar::sub-page:vertical{background:transparent;}" - scroll_area.verticalScrollBar().setStyleSheet(scrollbar_style) - self.splitter.addWidget(scroll_area) - self.splitter.setSizes([280, 840, 280]) + self.right_panel = QScrollArea() + self.right_panel.setWidget(right_widget) + self.right_panel.setWidgetResizable(True) + self.right_panel.setFrameShape(QtWidgets.QFrame.Shape.NoFrame) + self.right_panel.setHorizontalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAlwaysOff) + self.right_panel.setVerticalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAsNeeded) + self.right_panel.setMinimumWidth(em * 9) + self.splitter.addWidget(self.right_panel) + self.splitter.setStretchFactor(0, 20) + self.splitter.setStretchFactor(1, 63) + self.splitter.setStretchFactor(2, 17) main_layout.addWidget(self.splitter) main_widget_layout.addWidget(content_widget) self.status_bar = QStatusBar() @@ -363,8 +301,11 @@ def create_main_frame(self) -> None: def create_waveform_list(self) -> QWidget: left_widget = QWidget() left_layout = QVBoxLayout(left_widget) + em = self._em self.analysis_label = QLabel() - self.analysis_label.setStyleSheet("font-weight: bold; font-size: 14px; padding: 5px;") + self.analysis_label.setStyleSheet( + f"font-weight: bold; font-size: {max(11, em - 4)}px; padding: {max(3, em // 5)}px;" + ) left_layout.addWidget(self.analysis_label) self.search_box = QLineEdit() self.search_box.setPlaceholderText("Search waveforms...") @@ -375,47 +316,123 @@ def create_waveform_list(self) -> QWidget: self.waveform_list.setContextMenuPolicy(Qt.ContextMenuPolicy.CustomContextMenu) self.waveform_list.customContextMenuRequested.connect(self.show_list_context_menu) self.waveform_list.setVerticalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAsNeeded) - self.waveform_list.setHorizontalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAsNeeded) + self.waveform_list.setHorizontalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAlwaysOff) left_layout.addWidget(self.waveform_list) - button_layout = QHBoxLayout() - self.select_all_btn = QPushButton("Select All") - self.select_all_btn.clicked.connect(self.select_all_waveforms) - self.deselect_all_btn = QPushButton("Deselect All") - self.deselect_all_btn.clicked.connect(self.deselect_all_waveforms) - button_layout.addWidget(self.select_all_btn) - button_layout.addWidget(self.deselect_all_btn) - left_layout.addLayout(button_layout) + QShortcut(QKeySequence.StandardKey.SelectAll, self.waveform_list, + activated=self.select_all_waveforms) return left_widget def create_plot_area(self) -> QWidget: center_widget = QWidget() center_layout = QVBoxLayout(center_widget) - self.fig = Figure(figsize=DEFAULT_FIGURE_SIZE, dpi=DEFAULT_DPI) + # constrained_layout handles multi-pane spacing automatically (no manual + # tight_layout calls needed). Required for the stacked-view feature + # where N subplots share an X axis and hspace must stay consistent. + self.fig = Figure(figsize=DEFAULT_FIGURE_SIZE, dpi=DEFAULT_DPI, + constrained_layout=True) self.canvas = FigureCanvas(self.fig) self.nav_toolbar = NavigationToolbar(self.canvas, self) - self.nav_toolbar.addSeparator() - fig_options_action = QAction('โš™', self.nav_toolbar) - fig_options_action.triggered.connect(self.open_figure_options) - fig_options_action.setToolTip('Figure Options (P)') - self.nav_toolbar.addAction(fig_options_action) - center_layout.addWidget(self.nav_toolbar) - center_layout.addWidget(self.canvas) + for _a in self.nav_toolbar.actions(): + if _a.text() in ('Subplots', 'Customize'): + self.nav_toolbar.removeAction(_a) + _icon_sz = self.nav_toolbar.iconSize() + _tb_h = self.nav_toolbar.sizeHint().height() + _btn_style = ( + "QToolButton { border: none; background: transparent; border-radius: 3px; }" + "QToolButton:hover { background: rgba(0,0,0,0.06); }" + "QToolButton:checked { background: rgba(25,118,210,0.12); }" + ) + _fig_btn = QToolButton() + _fig_btn.setIcon(self.nav_toolbar._icon('qt4_editor_options')) + _fig_btn.setIconSize(_icon_sz) + _fig_btn.setFixedSize(_tb_h, _tb_h) + _fig_btn.setToolButtonStyle(Qt.ToolButtonStyle.ToolButtonIconOnly) + _fig_btn.setToolTip('Figure Options (P)') + _fig_btn.setStyleSheet(_btn_style) + _fig_btn.clicked.connect(self.open_figure_options) + self._focus_btn = QToolButton() + self._focus_btn.setIcon(self._make_focus_icon(_icon_sz.width())) + self._focus_btn.setIconSize(_icon_sz) + self._focus_btn.setFixedSize(_tb_h, _tb_h) + self._focus_btn.setToolButtonStyle(Qt.ToolButtonStyle.ToolButtonIconOnly) + self._focus_btn.setCheckable(True) + self._focus_btn.setToolTip('Focus plot โ€” hide panels (F)') + self._focus_btn.setStyleSheet(_btn_style) + self._focus_btn.toggled.connect(self._toggle_focus_mode) + QShortcut(QKeySequence('F'), self, activated=self._focus_btn.toggle) + toolbar_row = QHBoxLayout() + toolbar_row.setContentsMargins(0, 0, 0, 0) + toolbar_row.setSpacing(0) + toolbar_row.addWidget(self.nav_toolbar) + toolbar_row.addWidget(_fig_btn) + toolbar_row.addWidget(self._focus_btn) + center_layout.addLayout(toolbar_row) + # Wrap canvas in QScrollArea so stacked-view with many panes scrolls + # vertically instead of squashing every signal to ~30 pixels. Canvas + # min-height is bumped per refresh from _set_canvas_height_for_panes. + self.canvas_scroll = QScrollArea() + self.canvas_scroll.setWidget(self.canvas) + self.canvas_scroll.setWidgetResizable(True) + self.canvas_scroll.setFrameShape(QtWidgets.QFrame.Shape.NoFrame) + self.canvas_scroll.setHorizontalScrollBarPolicy( + Qt.ScrollBarPolicy.ScrollBarAlwaysOff) + self.canvas_scroll.setVerticalScrollBarPolicy( + Qt.ScrollBarPolicy.ScrollBarAsNeeded) + center_layout.addWidget(self.canvas_scroll) + self.canvas.mpl_connect('resize_event', self._on_canvas_resize) self.canvas.mpl_connect('button_press_event', self.on_canvas_click) self.canvas.mpl_connect('button_release_event', self.on_canvas_release) self.canvas.mpl_connect('motion_notify_event', self.on_mouse_move) self.canvas.mpl_connect('key_press_event', self.on_key_press) self.canvas.mpl_connect('scroll_event', self.on_scroll) + # Freeze the constrained_layout solver right after a stacked rebuild's + # draw has solved it โ€” see _pending_freeze / _on_draw_event. + self.canvas.mpl_connect('draw_event', self._on_draw_event) self.canvas.setContextMenuPolicy(Qt.ContextMenuPolicy.NoContextMenu) + self.canvas.installEventFilter(self) return center_widget def create_control_panel(self) -> QWidget: + em = self._em + iv = max(2, em // 6) + ih = max(4, em // 4) + sp = max(1, em // 8) + right_widget = QWidget() right_layout = QVBoxLayout(right_widget) + right_layout.setContentsMargins(4, 4, 4, 4) + right_layout.setSpacing(0) + + # View Mode + mode_box = CollapsibleBox("View Mode") + mode_group = QWidget() + mode_layout = QVBoxLayout(mode_group) + mode_layout.setContentsMargins(ih, iv, ih, iv) + mode_layout.setSpacing(sp) + self._view_mode_group = QButtonGroup(self) + self.radio_standard = QRadioButton("Standard") + self.radio_standard.setChecked(True) + self.radio_stacked = QRadioButton("Stacked") + self.radio_stacked.setToolTip( + "Each signal in its own pane with shared X axis. " + "Preserves real amplitude and per-signal Y autoscale.") + self.radio_timing = QRadioButton("Digital Timing (Simplified)") + self.radio_timing.setToolTip( + "Square-wave view for digital/logic signals. " + "Only available for transient analysis.") + for btn in (self.radio_standard, self.radio_stacked, self.radio_timing): + self._view_mode_group.addButton(btn) + mode_layout.addWidget(btn) + self._view_mode_group.buttonToggled.connect(self.on_view_mode_changed) + mode_box.addWidget(mode_group) + right_layout.addWidget(mode_box) # Display Options display_box = CollapsibleBox("Display Options") display_group = QWidget() display_layout = QVBoxLayout(display_group) + display_layout.setContentsMargins(ih, iv, ih, iv) + display_layout.setSpacing(sp) self.grid_check = QCheckBox("Show Grid") self.grid_check.setChecked(True) self.grid_check.stateChanged.connect(self.toggle_grid) @@ -428,16 +445,21 @@ def create_control_panel(self) -> QWidget: self.autoscale_check.setChecked(True) self.autoscale_check.stateChanged.connect(self.refresh_plot) display_layout.addWidget(self.autoscale_check) - self.timing_check = QCheckBox("Digital Timing View") - self.timing_check.stateChanged.connect(self.on_timing_view_changed) - display_layout.addWidget(self.timing_check) + self.stats_check = QCheckBox("Show Stats") + self.stats_check.setToolTip("Show min/max/RMS/frequency stats on each stacked pane") + self.stats_check.setChecked(True) + self.stats_check.setVisible(False) + self.stats_check.stateChanged.connect(self.refresh_plot) + display_layout.addWidget(self.stats_check) display_box.addWidget(display_group) right_layout.addWidget(display_box) - # Digital Timing Controls (UI Reverted to Original) + # Digital Timing Controls self.timing_box = CollapsibleBox("Digital Timing Controls") timing_group = QWidget() timing_layout = QVBoxLayout(timing_group) + timing_layout.setContentsMargins(ih, iv, ih, iv) + timing_layout.setSpacing(sp) threshold_layout = QHBoxLayout() threshold_layout.addWidget(QLabel("Threshold:")) self.threshold_spinbox = QDoubleSpinBox() @@ -447,6 +469,8 @@ def create_control_panel(self) -> QWidget: self.threshold_spinbox.setSuffix("") self.threshold_spinbox.setSpecialValueText("Auto") self.threshold_spinbox.setValue(self.threshold_spinbox.minimum()) + self.threshold_spinbox.setSizePolicy( + QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Fixed) self.threshold_spinbox.valueChanged.connect(self.on_threshold_changed) threshold_layout.addWidget(self.threshold_spinbox) timing_layout.addLayout(threshold_layout) @@ -462,21 +486,43 @@ def create_control_panel(self) -> QWidget: timing_layout.addLayout(spacing_layout) self.timing_box.addWidget(timing_group) self.timing_box.content_area.setEnabled(False) + self.timing_box.setVisible(False) right_layout.addWidget(self.timing_box) # Cursor Measurements cursor_box = CollapsibleBox("Cursor Measurements") cursor_group = QWidget() cursor_layout = QVBoxLayout(cursor_group) - cursor_hint = QLabel("Left click: C1 ยท Right click: C2 ยท Drag to move") - cursor_hint.setStyleSheet("color: #757575; font-size: 10px;") - cursor_layout.addWidget(cursor_hint) - self.cursor1_label = QLabel("Cursor 1: Not set") - self.cursor2_label = QLabel("Cursor 2: Not set") - self.delta_label = QLabel("Delta: --") + cursor_layout.setContentsMargins(ih, iv, ih, iv) + cursor_layout.setSpacing(sp) + + self.cursor1_label = QLabel('<b style="color:#e53935">C1</b> <span style="color:#aaa">not set</span>') + self.cursor1_label.setWordWrap(True) + self.cursor1_label.setStyleSheet("font-size: 13px; padding: 3px 0;") + self.cursor2_label = QLabel('<b style="color:#1976d2">C2</b> <span style="color:#aaa">not set</span>') + self.cursor2_label.setWordWrap(True) + self.cursor2_label.setStyleSheet("font-size: 13px; padding: 3px 0;") + self.delta_label = QLabel('<b style="color:#e65100">ฮ”X</b> <span style="color:#aaa">โ€”</span>') + self.delta_label.setStyleSheet("font-size: 13px; padding: 3px 0;") + + def _cursor_sep() -> QLabel: + s = QLabel() + s.setFixedHeight(1) + s.setStyleSheet("background-color: #d0d0d0; margin: 2px 0;") + return s + + cursor_layout.setSpacing(8) cursor_layout.addWidget(self.cursor1_label) + cursor_layout.addWidget(_cursor_sep()) cursor_layout.addWidget(self.cursor2_label) + cursor_layout.addWidget(_cursor_sep()) cursor_layout.addWidget(self.delta_label) + cursor_help = QLabel( + "L-click = Cursor 1 ยท Middle / R-click = Cursor 2\n" + "R-click in stacked view = pane menu") + cursor_help.setStyleSheet("color: #757575; font-size: 11px;") + cursor_help.setWordWrap(True) + cursor_layout.addWidget(cursor_help) self.clear_cursors_btn = QPushButton("Clear Cursors") self.clear_cursors_btn.clicked.connect(self.clear_cursors) cursor_layout.addWidget(self.clear_cursors_btn) @@ -487,18 +533,18 @@ def create_control_panel(self) -> QWidget: export_box = CollapsibleBox("Export Tools") export_group = QWidget() export_layout = QVBoxLayout(export_group) + export_layout.setContentsMargins(ih, iv, ih, iv) + export_layout.setSpacing(sp) self.export_btn = QPushButton("Export Image") self.export_btn.clicked.connect(self.export_image) export_layout.addWidget(self.export_btn) self.func_input = QLineEdit() - self.func_input.setPlaceholderText("e.g., v(in) + v(out)") + self.func_input.setPlaceholderText("e.g., v(net1) + v(net2) or abs(v(net1))") + self.func_input.returnPressed.connect(self.plot_function) export_layout.addWidget(self.func_input) self.plot_func_btn = QPushButton("Plot Function") self.plot_func_btn.clicked.connect(self.plot_function) export_layout.addWidget(self.plot_func_btn) - self.multimeter_btn = QPushButton("Multimeter") - self.multimeter_btn.clicked.connect(self.multi_meter) - export_layout.addWidget(self.multimeter_btn) export_box.addWidget(export_group) right_layout.addWidget(export_box) @@ -524,10 +570,32 @@ def create_menu_bar(self) -> None: reset_view_action.triggered.connect(self.reset_view) view_menu.addAction(reset_view_action) + def _rebuild_nb_sorted(self) -> None: + """Cache NBList sorted longest-first for use in _resolve_expr.""" + self._nb_sorted = sorted( + enumerate(self.obj_dataext.NBList), + key=lambda t: len(t[1]), reverse=True + ) + + def _parse_tran_start_time(self) -> float: + try: + with open(os.path.join(self.file_path, "analysis"), 'r') as f: + parts = f.read().strip().split() + if len(parts) >= 4 and parts[0] == '.tran': + return float(parts[3]) + except Exception: + pass + return 0.0 + def load_simulation_data(self) -> None: + self._cursor_interp_cache.clear() + # new data โ†’ force full rebuild on next refresh + self._drawn_signature = None + self._tran_start_time = self._parse_tran_start_time() self.obj_dataext = DataExtraction() self.plot_type = self.obj_dataext.openFile(self.file_path) self.obj_dataext.computeAxes() + self._rebuild_nb_sorted() self.data_info = self.obj_dataext.numVals() self.volts_length = self.data_info[1] if self.plot_type[0] == DataExtraction.AC_ANALYSIS: @@ -537,652 +605,227 @@ def load_simulation_data(self) -> None: else: self.analysis_label.setText("DC Analysis") self.populate_waveform_list() + # NBList ready; resolve persisted stacked-view layout + self._apply_persisted_layout() is_transient = self.plot_type[0] == DataExtraction.TRANSIENT_ANALYSIS - self.timing_check.setEnabled(is_transient) + self.radio_timing.setEnabled(is_transient) if not is_transient: - self.timing_check.setChecked(False) - self.timing_check.setToolTip("Digital timing view is only available for transient analysis") - else: - self.timing_check.setToolTip("") - - def create_colored_icon(self, color: QColor, is_selected: bool) -> QtGui.QIcon: - pixmap = QPixmap(18, 18) - pixmap.fill(Qt.GlobalColor.transparent) - painter = QPainter(pixmap) - painter.setRenderHint(QPainter.RenderHint.Antialiasing) - if is_selected: - painter.setBrush(QBrush(color)) - painter.setPen(Qt.PenStyle.NoPen) - painter.drawEllipse(1, 1, 16, 16) - else: - painter.setBrush(Qt.BrushStyle.NoBrush) - pen = QtGui.QPen(QColor("#9E9E9E")) - pen.setWidth(1) - painter.setPen(pen) - painter.drawEllipse(2, 2, 14, 14) - painter.end() - return QtGui.QIcon(pixmap) - - def populate_waveform_list(self) -> None: - self.waveform_list.clear() - self.traces.clear() - saved_colors = self.config.get('trace_colours', {}) - saved_thickness = self.config.get('trace_thickness', {}) - saved_style = self.config.get('trace_style', {}) - for i, node_name in enumerate(self.obj_dataext.NBList): - color = saved_colors.get(node_name, self.color_palette[i % len(self.color_palette)]) - thickness = saved_thickness.get(node_name, DEFAULT_LINE_THICKNESS) - style = saved_style.get(node_name, '-') - self.traces[i] = Trace(index=i, name=node_name, color=color, thickness=thickness, style=style) - item = QListWidgetItem() - item.setData(Qt.ItemDataRole.UserRole, i) - item.setToolTip("Voltage signal" if i < self.obj_dataext.volts_length else "Current signal") - self.waveform_list.addItem(item) - self.update_list_item_appearance(item, i) - - def filter_waveforms(self, text: str) -> None: - for i in range(self.waveform_list.count()): - item = self.waveform_list.item(i) - if item: - item.setHidden(text.lower() not in item.text().lower()) - - def on_waveform_toggle(self, item: QListWidgetItem) -> None: - index = item.data(Qt.ItemDataRole.UserRole) - # item.isSelected() is unreliable when setItemWidget is used โ€” clicks land - # on the child widget and never update Qt's selection model. Toggle instead. - self.traces[index].visible = not self.traces[index].visible - self.update_list_item_appearance(item, index) - self.refresh_plot() - - def update_list_item_appearance(self, item: QListWidgetItem, index: int) -> None: - t = self.traces[index] - widget = QWidget() - layout = QHBoxLayout(widget) - layout.setContentsMargins(6, 4, 6, 4) - layout.setSpacing(10) - icon_label = QLabel() - color = QColor(t.color) if t.visible else QColor("#9E9E9E") - icon = self.create_colored_icon(color, t.visible) - icon_label.setPixmap(icon.pixmap(18, 18)) - text_label = QLabel(t.name) - text_label.setStyleSheet("color: #212121; font-weight: 500;" if t.visible else "color: #757575; font-weight: normal;") - layout.addWidget(icon_label) - layout.addWidget(text_label) - layout.addStretch() - self.waveform_list.setItemWidget(item, widget) - item.setText(t.name) - - def select_all_waveforms(self) -> None: - for i in range(self.waveform_list.count()): - item = self.waveform_list.item(i) - if item and not item.isHidden(): - index = item.data(Qt.ItemDataRole.UserRole) - self.traces[index].visible = True - self.update_list_item_appearance(item, index) - self.refresh_plot() - - def deselect_all_waveforms(self) -> None: - for t in self.traces.values(): - t.visible = False - for i in range(self.waveform_list.count()): - item = self.waveform_list.item(i) - if item: - self.update_list_item_appearance(item, item.data(Qt.ItemDataRole.UserRole)) - self.refresh_plot() - - def show_list_context_menu(self, position: QtCore.QPoint) -> None: - item = self.waveform_list.itemAt(position) - if not item: - return - - # Always work with just the right-clicked item - menu = QMenu() - - # All menus apply only to the right-clicked item - color_menu = menu.addMenu("Change colour โ–ถ") - self.populate_color_menu(color_menu, [item]) - - thickness_menu = menu.addMenu("Thickness โ–ถ") - for thickness, label in THICKNESS_OPTIONS: - action = thickness_menu.addAction(label) - action.triggered.connect(lambda checked, t=thickness: self.change_thickness([item], t)) - - style_menu = menu.addMenu("Style โ–ถ") - for style, label in LINE_STYLES: - action = style_menu.addAction(label) - action.triggered.connect(lambda checked, s=style: self.change_style([item], s)) - - menu.addSeparator() - - rename_action = menu.addAction("Rename...") - rename_action.triggered.connect(lambda: self.rename_trace(item)) - - index = item.data(Qt.ItemDataRole.UserRole) - t = self.traces[index] - - hide_show_action = menu.addAction("Hide" if t.visible else "Show") - hide_show_action.triggered.connect(lambda: self.toggle_trace_visibility([item])) - - menu.addSeparator() - - properties_action = menu.addAction("Figure Options...") - properties_action.triggered.connect(self.open_figure_options) - - menu.exec(self.waveform_list.mapToGlobal(position)) - - def populate_color_menu(self, menu: QMenu, selected_items: List[QListWidgetItem]) -> None: - color_widget = QWidget() - color_widget.setStyleSheet("background-color: #FFFFFF;") - grid_layout = QGridLayout(color_widget) - grid_layout.setSpacing(2) - for i, color in enumerate(self.color_palette): - btn = QPushButton() - btn.setFixedSize(24, 24) - btn.setStyleSheet(f"QPushButton{{background-color:{color};border:1px solid #E0E0E0;border-radius:2px;}}QPushButton:hover{{border:2px solid #212121;}}") - btn.setCursor(Qt.CursorShape.PointingHandCursor) - btn.clicked.connect(lambda checked, c=color: self.change_color_and_close(selected_items, c, menu)) - grid_layout.addWidget(btn, i // 4, i % 4) - widget_action = QWidgetAction(menu) - widget_action.setDefaultWidget(color_widget) - menu.addAction(widget_action) - menu.addSeparator() - more_action = menu.addAction("More...") - more_action.triggered.connect(lambda: self.change_color_dialog(selected_items)) - - def change_color_and_close(self, items: List[QListWidgetItem], color: str, menu: QMenu) -> None: - self.change_color(items, color) - parent = menu.parent() - while isinstance(parent, QMenu): - parent.close() - parent = parent.parent() - - def change_color(self, items: List[QListWidgetItem], color: str) -> None: - for item in items: - index = item.data(Qt.ItemDataRole.UserRole) - self.traces[index].update_line(color=color) - self.update_list_item_appearance(item, index) - if self.timing_check.isChecked() and hasattr(self, 'axes'): - self.update_timing_tick_colors() - for ann_text in self.timing_annotations.get(index, []): - ann_text.set_color(color) - self.save_config() - self.canvas.draw() - - def update_timing_tick_colors(self) -> None: - if not hasattr(self, 'axes'): - return - visible_indices = [i for i, t in self.traces.items() if t.visible] - ytick_labels = self.axes.get_yticklabels() - for i, label in enumerate(ytick_labels): - if i < len(visible_indices): - idx = visible_indices[::-1][i] - label.set_color(self.traces[idx].color) - - def change_color_dialog(self, items: List[QListWidgetItem]) -> None: - color = QColorDialog.getColor() - if color.isValid(): - self.change_color(items, color.name()) - - def change_thickness(self, items: List[QListWidgetItem], thickness: float) -> None: - for item in items: - self.traces[item.data(Qt.ItemDataRole.UserRole)].update_line(thickness=thickness) - self.save_config() - self.canvas.draw() - - def change_style(self, items: List[QListWidgetItem], style: str) -> None: - needs_replot = style == 'steps-post' - for item in items: - index = item.data(Qt.ItemDataRole.UserRole) - if needs_replot: - self.traces[index].style = style - else: - self.traces[index].update_line(style=style) - self.save_config() - if needs_replot: - self.refresh_plot() + if self.radio_timing.isChecked(): + self.radio_standard.setChecked(True) + self.radio_timing.setToolTip("Only available for transient analysis") else: - self.canvas.draw() - - def rename_trace(self, item: QListWidgetItem) -> None: - index = item.data(Qt.ItemDataRole.UserRole) - t = self.traces[index] - new_name, ok = QInputDialog.getText(self, "Rename Trace", "New name:", text=t.name) - if ok and new_name and new_name != t.name: - t.name = new_name - self.obj_dataext.NBList[index] = new_name - self.update_list_item_appearance(item, index) - if self.legend_check.isChecked(): - self.refresh_plot() - - def toggle_trace_visibility(self, items: List[QListWidgetItem]) -> None: - # Use t.visible as single source of truth โ€” same path as left-click toggle. - # Going directly to line_object.set_visible() bypasses refresh_plot and - # gets stomped the next time anything triggers a redraw. - any_visible = any(self.traces[item.data(Qt.ItemDataRole.UserRole)].visible for item in items) - for item in items: - index = item.data(Qt.ItemDataRole.UserRole) - self.traces[index].visible = not any_visible - self.update_list_item_appearance(item, index) - self.refresh_plot() + self.radio_timing.setToolTip( + "Square-wave view for digital/logic signals. " + "Only available for transient analysis.") def open_figure_options(self) -> None: try: if hasattr(self.fig.canvas, 'toolbar') and hasattr(self.fig.canvas.toolbar, 'edit_parameters'): + # matplotlib's built-in editor already handles multi-axes โ€” + # it shows a per-axes selector so each pane can be edited. self.fig.canvas.toolbar.edit_parameters() return from matplotlib.backends.qt_compat import QtWidgets from matplotlib.backends.qt_editor import _formlayout if hasattr(_formlayout, 'FormDialog'): current_title = self.fig._suptitle.get_text() if self.fig._suptitle is not None else '' - options = [('Title', current_title)] - if hasattr(self, 'axes'): - options.extend([('X Label', self.axes.get_xlabel()), ('Y Label', self.axes.get_ylabel()), ('X Min', self.axes.get_xlim()[0]), ('X Max', self.axes.get_xlim()[1]), ('Y Min', self.axes.get_ylim()[0]), ('Y Max', self.axes.get_ylim()[1])]) + options: List[Tuple[str, Any]] = [('Title', current_title)] + # Multi-pane: only X (shared via sharex) + suptitle are global. + # Per-pane Y limits and labels are skipped to avoid a 7-field + # dialog that can only touch one pane meaningfully. + multi = len(self.panes) > 1 + if self.panes: + options.append(('X Label', self.panes[-1].get_xlabel())) + options.append(('X Min', self.axes.get_xlim()[0])) + options.append(('X Max', self.axes.get_xlim()[1])) + if not multi: + options.append(('Y Label', self.axes.get_ylabel())) + options.append(('Y Min', self.axes.get_ylim()[0])) + options.append(('Y Max', self.axes.get_ylim()[1])) dialog = _formlayout.FormDialog(options, parent=self, title='Figure Options') if dialog.exec(): results = dialog.get_results() - if results: - self.fig.suptitle(results[0]) - if hasattr(self, 'axes') and len(results) > 1: - self.axes.set_xlabel(results[1]) - self.axes.set_ylabel(results[2]) - self.axes.set_xlim(results[3], results[4]) + if not results: + return + self.fig.suptitle(results[0]) + if self.panes and len(results) > 1: + self.panes[-1].set_xlabel(results[1]) + self.axes.set_xlim(results[2], results[3]) + if not multi and len(results) > 4: + self.axes.set_ylabel(results[4]) self.axes.set_ylim(results[5], results[6]) - self.canvas.draw() + self.canvas.draw() else: QMessageBox.information(self, "Figure Options", "Figure options are limited in this environment.\nYou can use the zoom and pan tools in the toolbar.") except Exception as e: logger.error(f"Error opening figure options: {e}") QMessageBox.information(self, "Figure Options", "Basic figure editing is available through the toolbar.") - def on_timing_view_changed(self, state: int) -> None: - timing_enabled = state == Qt.CheckState.Checked.value - self.timing_box.content_area.setEnabled(timing_enabled) - self.autoscale_check.setEnabled(not timing_enabled) - self.refresh_plot() - - def refresh_plot(self) -> None: - # Preserve zoom when autoscale is off. - # Guard _last_was_timing: timing view y-axis is normalized [0..N] space, - # not voltage/current โ€” restoring it into a normal view clips all signals. - saved_xlim = saved_ylim = None - if (not self.autoscale_check.isChecked() - and not self.timing_check.isChecked() - and not self._last_was_timing - and hasattr(self, 'axes')): - saved_xlim = self.axes.get_xlim() - saved_ylim = self.axes.get_ylim() - - self._func_line = None # fig.clear() below wipes all artists - self.timing_annotations.clear() - self.fig.clear() - for t in self.traces.values(): - t.line_object = None - if self.timing_check.isChecked(): - self.axes = self.fig.add_subplot(111) - self.plot_timing_diagram() - else: - if self.plot_type[0] == DataExtraction.AC_ANALYSIS: - if self.plot_type[1] == 1: - self.on_push_decade() - else: - self.on_push_ac() - elif self.plot_type[0] == DataExtraction.TRANSIENT_ANALYSIS: - self.on_push_trans() - else: - self.on_push_dc() - if hasattr(self, 'axes'): - self.axes.grid(self.grid_check.isChecked()) - if saved_xlim is not None: - self.axes.set_xlim(saved_xlim) - self.axes.set_ylim(saved_ylim) - if self.legend_check.isChecked(): - self.fig.subplots_adjust(top=0.85, bottom=0.1) - self.position_legend() - else: - self.fig.subplots_adjust(top=0.95, bottom=0.1) - self._restore_cursors() - self.canvas.draw() - self._last_was_timing = self.timing_check.isChecked() - - def position_legend(self) -> None: - if hasattr(self, 'axes') and self.legend_check.isChecked(): - handles, labels = [], [] - for idx in sorted(self.traces.keys()): - t = self.traces[idx] - if t.visible and t.line_object: - handles.append(t.line_object) - labels.append(t.name) - if handles: - ncol = min(6, len(handles)) if len(handles) > 6 else min(4, len(handles)) - legend = self.axes.legend(handles, labels, bbox_to_anchor=(0.5, 1.02), loc='lower center', ncol=ncol, frameon=True, fancybox=False, shadow=False, fontsize=LEGEND_FONT_SIZE, borderaxespad=0, columnspacing=1.5) - frame = legend.get_frame() - frame.set_facecolor('white') - frame.set_edgecolor('#E0E0E0') - frame.set_linewidth(1) - frame.set_alpha(0.95) - - def _get_transient_start_idx(self, time_data: "np.ndarray") -> int: - """Return the index into time_data where the .tran start time begins, or 0.""" - try: - with open(os.path.join(self.file_path, "analysis"), 'r') as f: - parts = f.read().strip().split() - if len(parts) >= 4 and parts[0] == '.tran': - start_time = float(parts[3]) - if start_time > 0: - return int(np.searchsorted(time_data, start_time)) - except Exception: - pass - return 0 - - def plot_timing_diagram(self) -> None: - """Plot digital timing diagram with normalized trace heights.""" - self.timing_annotations.clear() + def _update_mode_controls(self) -> None: + stacked = self.radio_stacked.isChecked() + normal = self.radio_standard.isChecked() + self.autoscale_check.setVisible(normal) + self.stats_check.setVisible(stacked) + self.legend_check.setVisible(not stacked) - if self.plot_type[0] != DataExtraction.TRANSIENT_ANALYSIS: - self.axes.text(0.5, 0.5, 'Digital timing view is only\navailable for transient analysis.', - ha='center', va='center', transform=self.axes.transAxes, - fontsize=11, color='#757575') - self.axes.set_yticks([]) - self.axes.set_yticklabels([]) + def on_view_mode_changed(self, button, checked: bool) -> None: + if not checked: return + timing = self.radio_timing.isChecked() + self.timing_box.setVisible(timing) + self.timing_box.content_area.setEnabled(timing) + self._update_mode_controls() + self.refresh_plot() - visible_indices = [i for i, t in self.traces.items() if t.visible] - if not visible_indices: - self.axes.text(0.5, 0.5, 'Select a waveform to display', - ha='center', va='center', transform=self.axes.transAxes) - self.axes.set_yticks([]) - self.axes.set_yticklabels([]) - return + @staticmethod + def _make_focus_icon(size: int) -> QIcon: + px = QPixmap(size, size) + px.fill(Qt.GlobalColor.transparent) + p = QPainter(px) + p.setRenderHint(QPainter.RenderHint.Antialiasing) + p.setPen(QPen(QColor('#444444'), max(1, size // 12), Qt.PenStyle.SolidLine, + Qt.PenCapStyle.RoundCap, Qt.PenJoinStyle.RoundJoin)) + m = max(2, size // 6) + a = max(3, size // 4) + for cx, cy in ((m, m), (size-m, m), (m, size-m), (size-m, size-m)): + dx = a if cx == m else -a + dy = a if cy == m else -a + p.drawLine(cx, cy + dy, cx, cy) + p.drawLine(cx, cy, cx + dx, cy) + p.end() + return QIcon(px) + + def _toggle_focus_mode(self, focused: bool) -> None: + self.left_panel.setVisible(not focused) + self.right_panel.setVisible(not focused) + self._focus_btn.setToolTip('Restore panels (F)' if focused else 'Focus plot โ€” hide panels (F)') - manual_threshold = (None if self.threshold_spinbox.value() == self.threshold_spinbox.minimum() - else self.threshold_spinbox.value()) - if manual_threshold is None: - self.threshold_spinbox.setSpecialValueText("Auto (midpoint)") - self.logic_thresholds = {} - - # Build local float arrays for all traces โ€” never touch obj_dataext - time_data = np.asarray(self.obj_dataext.x, dtype=float) - y_data = {i: np.asarray(self.obj_dataext.y[i], dtype=float) - for i in range(len(self.obj_dataext.y))} - - if self.plot_type[0] == DataExtraction.TRANSIENT_ANALYSIS: - start_idx = self._get_transient_start_idx(time_data) - if 0 < start_idx < len(time_data): - time_data = time_data[start_idx:] - y_data = {i: arr[start_idx:] for i, arr in y_data.items()} - - # Each trace occupies exactly 1.0 normalized unit of y-space. - # spacing = vertical_spacing (e.g. 1.2 โ†’ 20% gap between traces). - # This guarantees uniform height for all signals regardless of voltage domain. - spacing = self.vertical_spacing - yticks, ylabels = [], [] - - for rank, idx in enumerate(visible_indices[::-1]): - raw_data = y_data[idx] - - # Safety clamp โ€” guards against malformed simulation output where a - # y array is shorter or longer than the time axis. Use a local - # trace_time so time_data is never mutated across iterations. - n = min(len(raw_data), len(time_data)) - raw_data = raw_data[:n] - trace_time = time_data[:n] - - trace_vmin, trace_vmax = np.min(raw_data), np.max(raw_data) - trace_unit = "V" if idx < self.obj_dataext.volts_length else "A" - - if trace_vmax - trace_vmin < 1e-10: - # Constant (DC) signal โ€” state indeterminate, park at 0.5. - # No threshold line drawn (nothing to threshold against). - logic_normalized = np.full(n, 0.5) - else: - # Per-trace threshold: midpoint of its own swing (CMOS VDD/2 convention). - # Manual override applies the user's voltage, normalized into [0,1] for - # this trace so the axhline always sits within the trace bounds. - threshold = (manual_threshold if manual_threshold is not None - else (trace_vmin + trace_vmax) / 2.0) - logic_normalized = np.where(raw_data > threshold, 1.0, 0.0) - threshold_norm = float(np.clip( - (threshold - trace_vmin) / (trace_vmax - trace_vmin), 0.0, 1.0 - )) - self.logic_thresholds[idx] = threshold_norm - - logic_offset = logic_normalized + rank * spacing - - t = self.traces[idx] - line, = self.axes.step(trace_time, logic_offset, where="post", - linewidth=t.thickness, color=t.color, label=t.name) - t.line_object = line - - # y_center is always rank * spacing + 0.5 in normalized space. - y_center = rank * spacing + 0.5 - yticks.append(y_center) - ylabels.append(t.name) - - ann = [] - xform = self.axes.get_yaxis_transform() - if trace_vmax - trace_vmin < 1e-10: - ann.append(self.axes.text( - 1.01, y_center, - f"DC: {_format_measurement(float(trace_vmax), trace_unit)}", - transform=xform, va='center', ha='left', - fontsize=8, color=t.color, clip_on=False)) - else: - ann.append(self.axes.text( - 1.01, rank * spacing + 0.82, - f"H: {_format_measurement(float(trace_vmax), trace_unit)}", - transform=xform, va='center', ha='left', - fontsize=8, color=t.color, clip_on=False)) - ann.append(self.axes.text( - 1.01, rank * spacing + 0.18, - f"L: {_format_measurement(float(trace_vmin), trace_unit)}", - transform=xform, va='center', ha='left', - fontsize=8, color=t.color, clip_on=False)) - freq = _detect_frequency(trace_time, logic_normalized) - if freq is not None: - ann.append(self.axes.text( - 1.01, y_center, _format_frequency(freq), - transform=xform, va='center', ha='left', - fontsize=7.5, color=t.color, alpha=0.75, clip_on=False)) - self.timing_annotations[idx] = ann - - # Y-axis bounds: normalized traces sit in [0,1] per rank, evenly spaced. - total_height = (len(visible_indices) - 1) * spacing + 1.0 - margin = 0.15 * spacing - self.axes.set_ylim(-margin, total_height + margin) - self.axes.set_yticks(yticks) - self.axes.set_yticklabels(ylabels, fontsize=8) - - self.update_timing_tick_colors() - self.set_time_axis_label(time_data) - - # Threshold lines: logic_thresholds stores normalized [0,1] position, - # so axhline y = threshold_norm + rank * spacing sits correctly within the trace. - for rank, idx in enumerate(visible_indices[::-1]): - if idx in self.logic_thresholds: - self.axes.axhline(y=self.logic_thresholds[idx] + rank * spacing, - color='red', linestyle=':', alpha=THRESHOLD_ALPHA, linewidth=0.8) - - if not self.legend_check.isChecked(): - self.axes.set_title('Digital Timing Diagram', fontsize=10, pad=10) - - def set_time_axis_label(self, time_data: Optional["np.ndarray"] = None) -> None: - if not hasattr(self, 'axes') or not hasattr(self.obj_dataext, 'x'): - return - if time_data is None: - time_data = np.asarray(self.obj_dataext.x, dtype=float) - if len(time_data) < 2: - self.axes.set_xlabel('Time (s)', fontsize=10) + def on_canvas_click(self, event) -> None: + if not self.panes: return - scale, unit = self._get_time_scale_and_unit(time_data) - scaled_time = time_data * scale - for line in (t.line_object for t in self.traces.values()): - if line: - line.set_xdata(line.get_xdata() * scale) - self.axes.set_xlim(scaled_time[0], scaled_time[-1]) - self.axes.set_xlabel(f'Time ({unit})', fontsize=10) - - def on_threshold_changed(self, value: float) -> None: - if self.timing_check.isChecked(): - self.refresh_plot() - - def on_spacing_changed(self, value: int) -> None: - self.vertical_spacing = value / 100.0 - self.spacing_label.setText(f"{self.vertical_spacing:.1f}x") - if self.timing_check.isChecked(): - self.refresh_plot() - - def _find_nearest_cursor(self, event) -> Optional[int]: - """Return cursor index if the click is within 8px of an existing cursor line.""" - if not self.cursor_lines or not hasattr(self, 'axes') or event.xdata is None: - return None - xlim = self.axes.get_xlim() - width_px = self.axes.get_window_extent().width - if width_px == 0: - return None - threshold = 8 * (xlim[1] - xlim[0]) / width_px - for i, line in enumerate(self.cursor_lines): - if line is None: - continue - if abs(event.xdata - line.get_xdata()[0]) < threshold: - return i - return None - - def _update_cursor_position(self, cursor_num: int, x_pos_scaled: float) -> None: - """Move an existing cursor line without recreating it (fast path for dragging).""" - if cursor_num >= len(self.cursor_lines) or self.cursor_lines[cursor_num] is None: - self.set_cursor(cursor_num, x_pos_scaled) + if self.nav_toolbar.mode: return - self.cursor_lines[cursor_num].set_xdata([x_pos_scaled, x_pos_scaled]) - scale = self._current_time_scale() - x_pos_original = x_pos_scaled / scale - self.cursor_positions[cursor_num] = x_pos_original - label = self.cursor1_label if cursor_num == 0 else self.cursor2_label - label.setText(f"Cursor {cursor_num + 1}: {x_pos_scaled:.6g}") - if len(self.cursor_positions) >= 2 and all(p is not None for p in self.cursor_positions[:2]): - delta_original = abs(self.cursor_positions[1] - self.cursor_positions[0]) - self.delta_label.setText(f"Delta: {delta_original * scale:.6g}") - if delta_original > 0: - self.measure_label.setText(f"Freq: {1.0 / delta_original:.6g} Hz") - self.canvas.draw_idle() - - def _get_time_scale_and_unit(self, time_data: Optional["np.ndarray"] = None) -> Tuple[float, str]: - """Single source of truth for time-axis unit selection. - - All callers (set_time_axis_label, _current_time_scale, set_cursor) - derive their scale factor from here โ€” ensures they can never diverge. - time_data defaults to obj_dataext.x; pass a trimmed slice when a - subset of the axis is being displayed (e.g. transient start offset). - """ - if time_data is None: - time_data = np.asarray(self.obj_dataext.x, dtype=float) - time_span = abs(time_data[-1] - time_data[0]) if len(time_data) > 1 else 0.0 - if time_span == 0: return 1.0, 's' - if time_span < TIME_UNIT_THRESHOLD_PS: return 1e12, 'ps' - if time_span < TIME_UNIT_THRESHOLD_NS: return 1e9, 'ns' - if time_span < TIME_UNIT_THRESHOLD_US: return 1e6, 'ยตs' - if time_span < TIME_UNIT_THRESHOLD_MS: return 1e3, 'ms' - return 1.0, 's' - - def _current_time_scale(self) -> float: - return self._get_time_scale_and_unit()[0] - def on_canvas_click(self, event) -> None: - if not hasattr(self, 'axes') or event.inaxes != self.axes: + # Divider drag โ€” pressed in the gap between two panes (event.inaxes + # is None there, so handle it before the inaxes guard below). + if (self._current_view_mode == 'stacked' + and event.button == 1 + and event.inaxes is None): + div = self._divider_under_mouse(event) + if div is not None: + self._start_divider_drag(div, event) + return + + if event.inaxes not in self.panes: return - if self.nav_toolbar.mode: + + modifier = (event.key or '').lower() + + # Alt + left-click in stacked: start a pane reorder drag. Finish on + # release over the destination pane. + if (self._current_view_mode == 'stacked' + and event.button == 1 + and 'alt' in modifier): + idx = self._pane_index_of(event.inaxes) + if idx is not None: + self._start_pane_drag(idx) + return + + # Right-click in stacked mode opens the per-pane context menu. The + # menu's "Set Cursor N here" items keep cursor placement available + # to laptop users who don't have a middle mouse button. + if event.button == 3 and self._current_view_mode == 'stacked': + self._show_pane_context_menu(event) return + + x_target = event.xdata + near = self._find_nearest_cursor(event) if event.button == 1: if near is not None: self._drag_cursor_idx = near + self._begin_cursor_blit() else: self._drag_cursor_idx = None - self.set_cursor(0, event.xdata) - elif event.button == 3: - if near is not None: - self._drag_cursor_idx = near - else: - self._drag_cursor_idx = None - self.set_cursor(1, event.xdata) + self.set_cursor(0, x_target) + elif event.button == 2: # middle-click: cursor 2 + self._drag_cursor_idx = None + self.set_cursor(1, x_target) + elif event.button == 3: # right-click (non-stacked): cursor 2 + self._drag_cursor_idx = None + self.set_cursor(1, x_target) def on_canvas_release(self, event) -> None: + # If a cursor was being dragged, recompute the full per-signal + # readout now (skipped during motion for performance). + had_cursor_drag = self._drag_cursor_idx is not None + last_cursor_idx = self._drag_cursor_idx self._drag_cursor_idx = None + if had_cursor_drag: + self._end_cursor_blit() + if had_cursor_drag and last_cursor_idx is not None: + if last_cursor_idx < len(self.cursor_positions): + x_pos = self.cursor_positions[last_cursor_idx] + if x_pos is not None: + # Full per-signal Y readout now that drag is done. + self._update_cursor_panel(last_cursor_idx, x_pos) + two = (len(self.cursor_positions) >= 2 + and all(p is not None for p in self.cursor_positions[:2])) + if not two: + self.measure_label.setText( + self._format_cursor_readout(x_pos)) + if self._divider_drag is not None: + self._finish_divider_drag() + if self._pane_drag is not None: + self._finish_pane_drag(event) - def set_cursor(self, cursor_num: int, x_pos_scaled: float) -> None: - scale = self._current_time_scale() - x_pos_original = x_pos_scaled / scale - - if cursor_num < len(self.cursor_lines) and self.cursor_lines[cursor_num]: - self.cursor_lines[cursor_num].remove() - - color = 'red' if cursor_num == 0 else 'blue' - line = self.axes.axvline(x=x_pos_scaled, color=color, linestyle='--', alpha=CURSOR_ALPHA) - - if cursor_num >= len(self.cursor_lines): - self.cursor_lines.append(line) - self.cursor_positions.append(x_pos_original) - else: - self.cursor_lines[cursor_num] = line - self.cursor_positions[cursor_num] = x_pos_original - - label_widget = self.cursor1_label if cursor_num == 0 else self.cursor2_label - label_widget.setText(f"Cursor {cursor_num + 1}: {x_pos_scaled:.6g}") - - if len(self.cursor_positions) >= 2 and all(p is not None for p in self.cursor_positions[:2]): - delta_original = abs(self.cursor_positions[1] - self.cursor_positions[0]) - delta_scaled = delta_original * scale - self.delta_label.setText(f"Delta: {delta_scaled:.6g}") - if delta_original > 0: - freq_delta = 1.0 / delta_original - self.measure_label.setText(f"Freq: {freq_delta:.6g} Hz") - self.canvas.draw() - - def clear_cursors(self) -> None: - for line in self.cursor_lines: - if line: - try: - line.remove() - except ValueError: - pass # already removed by fig.clear() - self.cursor_lines.clear() - self.cursor_positions.clear() - self.cursor1_label.setText("Cursor 1: Not set") - self.cursor2_label.setText("Cursor 2: Not set") - self.delta_label.setText("Delta: --") - self.measure_label.setText("") - self.canvas.draw() - - def _restore_cursors(self) -> None: - """Re-create cursor axvlines after fig.clear(), using stored positions.""" - if not hasattr(self, 'axes') or not self.cursor_positions: + def on_mouse_move(self, event) -> None: + # Active drags get priority โ€” fast path, no allocations. + if self._divider_drag is not None: + self._update_divider_drag(event) + return + if self._drag_cursor_idx is not None and event.xdata is not None: + # Cursor drag โ€” only needs the X update; skip coord-label work. + self._update_cursor_position(self._drag_cursor_idx, event.xdata) return - scale = self._current_time_scale() - colors = ['red', 'blue'] - new_lines: List[Optional[Line2D]] = [] - for i, x_orig in enumerate(self.cursor_positions): - if x_orig is None: - new_lines.append(None) - continue - color = colors[i] if i < len(colors) else 'green' - line = self.axes.axvline( - x=x_orig * scale, color=color, linestyle='--', alpha=CURSOR_ALPHA - ) - new_lines.append(line) - self.cursor_lines = new_lines - if new_lines: - logger.debug("Restored %d cursor(s) after plot refresh", len(new_lines)) - def on_mouse_move(self, event) -> None: if event.inaxes: - self.coord_label.setText(f"X: {event.xdata:.6g}, Y: {event.ydata:.6g}") - if self._drag_cursor_idx is not None: - self._update_cursor_position(self._drag_cursor_idx, event.xdata) + base = f"X: {event.xdata:.6g}, Y: {event.ydata:.6g}" + if self._current_view_mode == 'stacked': + # Anchor lookup is O(N traces); only walk when the hovered + # pane actually changes between move events. + if event.inaxes is not self._last_hover_axes: + self._last_hover_axes = event.inaxes + self._last_hover_anchor = self._pane_anchor_name(event.inaxes) + if self._last_hover_anchor: + base = f"{base} | Pane: {self._last_hover_anchor}" + if base != self._last_coord_text: + self.coord_label.setText(base) + self._last_coord_text = base + # Reset resize-cursor state when we re-enter an axes + if self._last_cursor_shape_was_resize: + self.canvas.unsetCursor() + self._last_cursor_shape_was_resize = False else: - self.coord_label.setText("X: --, Y: --") + # Show resize cursor when hovering a divider gap in stacked mode + want_resize = (self._current_view_mode == 'stacked' + and self._divider_under_mouse(event) is not None) + if want_resize and not self._last_cursor_shape_was_resize: + self.canvas.setCursor(Qt.CursorShape.SizeVerCursor) + self._last_cursor_shape_was_resize = True + elif not want_resize and self._last_cursor_shape_was_resize: + self.canvas.unsetCursor() + self._last_cursor_shape_was_resize = False + if self._last_coord_text != "X: --, Y: --": + self.coord_label.setText("X: --, Y: --") + self._last_coord_text = "X: --, Y: --" + self._last_hover_axes = None + self._last_hover_anchor = None def on_key_press(self, event) -> None: if event.key == 'g': self.grid_check.toggle() elif event.key == 'l': self.legend_check.toggle() + elif event.key == 'f': self._focus_btn.toggle() elif event.key == 'p': self.open_figure_options() elif event.key == 'escape': mode = str(self.nav_toolbar.mode).lower() @@ -1208,6 +851,19 @@ def on_scroll(self, event) -> None: event.inaxes.set_xlim(xlim[0] + pan_distance, xlim[1] + pan_distance) self.canvas.draw() + def eventFilter(self, obj, event) -> bool: + if (obj is self.canvas and + event.type() == QtCore.QEvent.Type.Wheel and + self._current_view_mode == 'stacked'): + mods = event.modifiers() + ctrl = Qt.KeyboardModifier.ControlModifier + shift = Qt.KeyboardModifier.ShiftModifier + if not (mods & ctrl) and not (mods & shift): + QtWidgets.QApplication.sendEvent( + self.canvas_scroll.verticalScrollBar(), event) + return True + return super().eventFilter(obj, event) + def export_image(self) -> None: file_name, file_filter = QFileDialog.getSaveFileName(self, "Export Image", "", "PNG Files (*.png);;SVG Files (*.svg);;All Files (*)") if file_name: @@ -1224,174 +880,118 @@ def clear_plot(self) -> None: self.timing_annotations.clear() self.deselect_all_waveforms() - def zoom_in(self) -> None: - if not hasattr(self, 'axes'): + def _zoom_panes(self, factor: float) -> None: + """Apply a symmetric zoom around the centre of each pane. + + factor < 1 zooms in (narrower range); factor > 1 zooms out. + X is set on self.axes only โ€” sharex propagates to all panes when + stacked. Y is set per-pane so each retains its own scale. + """ + if not self.panes: return - xlim, ylim = self.axes.get_xlim(), self.axes.get_ylim() + xlim = self.axes.get_xlim() x_center = (xlim[0] + xlim[1]) / 2 - y_center = (ylim[0] + ylim[1]) / 2 - x_half = (xlim[1] - xlim[0]) * DEFAULT_ZOOM_FACTOR / 2 - y_half = (ylim[1] - ylim[0]) * DEFAULT_ZOOM_FACTOR / 2 + x_half = (xlim[1] - xlim[0]) * factor / 2 self.axes.set_xlim(x_center - x_half, x_center + x_half) - self.axes.set_ylim(y_center - y_half, y_center + y_half) + for ax in self.panes: + ylim = ax.get_ylim() + y_center = (ylim[0] + ylim[1]) / 2 + y_half = (ylim[1] - ylim[0]) * factor / 2 + ax.set_ylim(y_center - y_half, y_center + y_half) self.canvas.draw() + def zoom_in(self) -> None: + self._zoom_panes(DEFAULT_ZOOM_FACTOR) + def zoom_out(self) -> None: - if not hasattr(self, 'axes'): - return - xlim, ylim = self.axes.get_xlim(), self.axes.get_ylim() - x_center = (xlim[0] + xlim[1]) / 2 - y_center = (ylim[0] + ylim[1]) / 2 - x_half = (xlim[1] - xlim[0]) / (DEFAULT_ZOOM_FACTOR * 2) - y_half = (ylim[1] - ylim[0]) / (DEFAULT_ZOOM_FACTOR * 2) - self.axes.set_xlim(x_center - x_half, x_center + x_half) - self.axes.set_ylim(y_center - y_half, y_center + y_half) - self.canvas.draw() + self._zoom_panes(1 / DEFAULT_ZOOM_FACTOR) def reset_view(self) -> None: - if hasattr(self, 'axes'): self.nav_toolbar.home() + if self.panes: + self.nav_toolbar.home() def toggle_grid(self) -> None: - if hasattr(self, 'axes'): - self.axes.grid(self.grid_check.isChecked()) + if self.panes: + for ax in self.panes: + ax.grid(self.grid_check.isChecked()) self.canvas.draw() def toggle_legend(self) -> None: self.refresh_plot() - def plot_function(self) -> None: - function_text = self.func_input.text() - if not function_text: - QMessageBox.warning(self, "Input Error", "Function input cannot be empty.") - return - - # Remove previous function trace before adding new one - if self._func_line is not None: - try: - self._func_line.remove() - except ValueError: - pass # already cleared by a refresh_plot - self._func_line = None - - if ' vs ' in function_text: - parts = function_text.split(' vs ', 1) - y_name, x_name = parts[0].strip(), parts[1].strip() - if not y_name or not x_name: - QMessageBox.warning(self, "Syntax Error", "Use format 'trace1 vs trace2'.") - return - try: - x_idx = self.obj_dataext.NBList.index(x_name) - y_idx = self.obj_dataext.NBList.index(y_name) - x_data = np.array(self.obj_dataext.y[x_idx], dtype=float) - y_data = np.array(self.obj_dataext.y[y_idx], dtype=float) - is_voltage_x = x_idx < self.volts_length - is_voltage_y = y_idx < self.volts_length - line, = self.axes.plot(x_data, y_data, label=function_text) - self._func_line = line - self.axes.set_xlabel(f"{x_name} ({'V' if is_voltage_x else 'A'})") - self.axes.set_ylabel(f"{y_name} ({'V' if is_voltage_y else 'A'})") - except ValueError: - QMessageBox.warning(self, "Trace Not Found", f"Could not find one of the traces: {x_name}, {y_name}") - return - else: - try: - data_map = { - name: np.array(self.obj_dataext.y[i], dtype=float) - for i, name in enumerate(self.obj_dataext.NBList) - } - y_data = _safe_eval(function_text, data_map) - x_data = np.array(self.obj_dataext.x, dtype=float) - line, = self.axes.plot(x_data, y_data, label=function_text) - self._func_line = line - except Exception as e: - QMessageBox.warning(self, "Evaluation Error", f"Could not plot function: {e}") - return - - if self.legend_check.isChecked(): - self.position_legend() - self.canvas.draw() - - - def multi_meter(self) -> None: - visible = [(idx, t) for idx, t in self.traces.items() if t.visible] - if not visible: - QMessageBox.warning(self, "Warning", "Please select at least one waveform") - return - location_x, location_y = 300, 300 - for idx, t in visible: - rms_value = self.get_rms_value(self.obj_dataext.y[idx]) - meter = MultimeterWidgetClass(t.name, rms_value, location_x, location_y, idx < self.obj_dataext.volts_length) - self._meters.append(meter) # keep strong ref โ€” no parent, otherwise GC'd - if hasattr(self.obj_appconfig, 'dock_dict') and self.obj_appconfig.current_project['ProjectName'] in self.obj_appconfig.dock_dict: - self.obj_appconfig.dock_dict[self.obj_appconfig.current_project['ProjectName']].append(meter) - location_x += 50 - location_y += 50 - - def get_rms_value(self, data_points: List) -> Decimal: - getcontext().prec = 5 - return Decimal(str(np.sqrt(np.mean(np.square([float(x) for x in data_points]))))) - - def _plot_analysis_data(self, analysis_type: str) -> None: - self.axes = self.fig.add_subplot(111) - traces_plotted = 0 - first_visible = None - x_data = np.asarray(self.obj_dataext.x, dtype=float) - for idx, t in self.traces.items(): - if not t.visible: - continue - traces_plotted += 1 - if first_visible is None: - first_visible = idx - y_data = np.asarray(self.obj_dataext.y[idx], dtype=float) - plot_style = '-' if t.style == 'steps-post' else t.style - plot_kwargs: dict = {} - if t.style == 'steps-post' and analysis_type in ['transient', 'dc']: - plot_func = self.axes.step - plot_kwargs['where'] = 'post' - elif analysis_type == 'ac_log': - plot_func = self.axes.semilogx - else: - plot_func = self.axes.plot - line, = plot_func(x_data, y_data, color=t.color, label=t.name, - linewidth=t.thickness, linestyle=plot_style, **plot_kwargs) - t.line_object = line - - if analysis_type in ['ac_linear', 'ac_log']: - self.axes.set_xlabel('Frequency (Hz)') - elif analysis_type == 'dc': - self.axes.set_xlabel('Voltage Sweep (V)') - - if first_visible is not None: - self.axes.set_ylabel('Voltage (V)' if first_visible < self.volts_length else 'Current (A)') - - if traces_plotted == 0: - self.axes.text(0.5, 0.5, 'Please select a waveform to plot', ha='center', va='center', transform=self.axes.transAxes) - - if analysis_type == 'transient': - self.set_time_axis_label() + def _setup_matplotlib_style(self) -> None: + dpi = max(72, self.logicalDpiY()) + base_pt = max(6.5, round(8.0 * 96.0 / dpi, 1)) + plt.rcParams.update({ + 'font.size': base_pt, + 'axes.labelsize': base_pt + 1, + 'axes.titlesize': base_pt + 1, + 'xtick.labelsize': base_pt, + 'ytick.labelsize': base_pt, + 'legend.fontsize': base_pt, + 'keymap.fullscreen': [], + }) + + def _on_canvas_resize(self, event) -> None: + self._resize_timer.start() # restart on every event; fires 120ms after last one + + def _do_deferred_resize(self) -> None: + if hasattr(self, 'canvas'): + self.canvas.draw_idle() + @property + def _em(self) -> int: + """Font height in pixels โ€” base unit for all adaptive sizing.""" + if self._em_cache is None: + self._em_cache = max(12, QtGui.QFontMetrics(self.font()).height()) + return self._em_cache - def on_push_decade(self) -> None: - self._plot_analysis_data('ac_log') + @property + def visible_traces(self) -> List[Trace]: + """Ordered list of visible traces (waveform-list insertion order). - def on_push_ac(self) -> None: - self._plot_analysis_data('ac_linear') + Single source of truth for "what gets plotted". All plot paths + (normal/timing/stacked) and multi-pane logic key off this ordering + so panes, legend, cursor readouts, and exports stay consistent. + """ + return [self.traces[i] for i in sorted(self.traces.keys()) + if self.traces[i].visible] - def on_push_trans(self) -> None: - self._plot_analysis_data('transient') + def showEvent(self, event: QtGui.QShowEvent) -> None: + super().showEvent(event) + if not getattr(self, '_splitter_initialized', False): + QtCore.QTimer.singleShot(0, self._init_splitter_sizes) - def on_push_dc(self) -> None: - self._plot_analysis_data('dc') + def _init_splitter_sizes(self) -> None: + if getattr(self, '_splitter_initialized', False): + return + total = self.splitter.width() + if total > 100: + left_w = int(total * 0.20) + right_w = max( + self.right_panel.minimumWidth(), + self.right_panel.widget().sizeHint().width() + 8, + ) + center_w = max(self.center_widget.minimumWidth(), total - left_w - right_w) + self.splitter.setSizes([left_w, center_w, right_w]) + self._splitter_initialized = True + else: + QtCore.QTimer.singleShot(50, self._init_splitter_sizes) def resizeEvent(self, event: QtGui.QResizeEvent) -> None: super().resizeEvent(event) if self.parent(): self.parent().updateGeometry() - if hasattr(self, 'canvas') and self.canvas: - self.canvas.draw_idle() + + def changeEvent(self, event: QtCore.QEvent) -> None: + super().changeEvent(event) + if event.type() == QtCore.QEvent.Type.FontChange: + self._em_cache = None def sizeHint(self) -> QtCore.QSize: - return QtCore.QSize(1200, 800) + em = self._em + return QtCore.QSize(em * 80, em * 50) def minimumSizeHint(self) -> QtCore.QSize: - return QtCore.QSize(400, 300) + em = self._em + return QtCore.QSize(em * 25, em * 20) diff --git a/src/ngspiceSimulation/plotting_widgets.py b/src/ngspiceSimulation/plotting_widgets.py index 91bc2fa22..fc98cb55a 100644 --- a/src/ngspiceSimulation/plotting_widgets.py +++ b/src/ngspiceSimulation/plotting_widgets.py @@ -1,55 +1,28 @@ -""" -Plotting Widgets Module - -This module provides custom widgets for the plotting interface including -collapsible boxes and multimeter widgets. -""" - import logging from typing import Optional -from decimal import Decimal from PyQt6 import QtCore, QtWidgets from PyQt6.QtCore import Qt -from PyQt6.QtWidgets import (QWidget, QVBoxLayout, QHBoxLayout, QToolButton, - QGridLayout, QLabel) +from PyQt6.QtWidgets import (QWidget, QVBoxLayout, QToolButton) -# Set up logging logger = logging.getLogger(__name__) -# Default widget dimensions -DEFAULT_WIDGET_WIDTH = 300 -DEFAULT_WIDGET_HEIGHT = 100 - class CollapsibleBox(QWidget): - """ - A collapsible widget container with a toggle button. - - This widget provides a collapsible container with a title button that - can be clicked to show/hide the content area. - """ - + """A collapsible widget container with a toggle button.""" + def __init__(self, title: str = "", parent: Optional[QWidget] = None) -> None: - """ - Initialize the CollapsibleBox widget. - - Args: - title: Title text to display on the toggle button - parent: Parent widget - """ super().__init__(parent) - + self.title = title self.setSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, - QtWidgets.QSizePolicy.Policy.Maximum) - + QtWidgets.QSizePolicy.Policy.Preferred) + self._setup_toggle_button() self._setup_content_area() self._setup_layout() self._connect_signals() def _setup_toggle_button(self) -> None: - """Set up the toggle button with styling and properties.""" self.toggle_button = QToolButton() self.toggle_button.setStyleSheet("QToolButton { border: none; }") self.toggle_button.setToolButtonStyle(Qt.ToolButtonStyle.ToolButtonTextBesideIcon) @@ -57,172 +30,37 @@ def _setup_toggle_button(self) -> None: self.toggle_button.setText(self.title) self.toggle_button.setCheckable(True) self.toggle_button.setChecked(True) + self.toggle_button.setSizePolicy( + QtWidgets.QSizePolicy.Policy.Expanding, + QtWidgets.QSizePolicy.Policy.Fixed, + ) def _setup_content_area(self) -> None: - """Set up the content area and its layout.""" self.content_area = QWidget() self.content_layout = QVBoxLayout() + self.content_layout.setContentsMargins(4, 2, 4, 4) + self.content_layout.setSpacing(3) self.content_area.setLayout(self.content_layout) def _setup_layout(self) -> None: - """Set up the main layout for the widget.""" main_layout = QVBoxLayout(self) main_layout.setSpacing(0) - main_layout.setContentsMargins(0, 0, 0, 0) + main_layout.setContentsMargins(0, 2, 0, 6) main_layout.addWidget(self.toggle_button) main_layout.addWidget(self.content_area) def _connect_signals(self) -> None: - """Connect widget signals to their handlers.""" self.toggle_button.toggled.connect(self.on_toggle) def on_toggle(self, is_checked: bool) -> None: - """ - Handle toggle button state changes. - - Args: - is_checked: Whether the toggle button is checked - """ arrow_type = Qt.ArrowType.DownArrow if is_checked else Qt.ArrowType.RightArrow self.toggle_button.setArrowType(arrow_type) self.content_area.setVisible(is_checked) - - logger.debug(f"CollapsibleBox '{self.title}' {'expanded' if is_checked else 'collapsed'}") def addWidget(self, widget: QWidget) -> None: - """ - Add a widget to the content area. - - Args: - widget: Widget to add to the content layout - """ if widget is not None: self.content_layout.addWidget(widget) - else: - logger.warning("Attempted to add None widget to CollapsibleBox") def addLayout(self, layout) -> None: - """ - Add a layout to the content area. - - Args: - layout: Layout to add to the content layout - """ if layout is not None: self.content_layout.addLayout(layout) - else: - logger.warning("Attempted to add None layout to CollapsibleBox") - - -class MultimeterWidgetClass(QWidget): - """ - A multimeter widget for displaying RMS values of voltage or current signals. - - This widget provides a digital multimeter-like interface showing the RMS - value of a selected node or branch along with its label. - """ - - # Unit labels - VOLTAGE_UNIT = "Volts" - CURRENT_UNIT = "Amp" - - # Labels - NODE_LABEL = "Node" - BRANCH_LABEL = "Branch" - RMS_LABEL = "RMS Value" - WINDOW_TITLE = "MultiMeter" - - def __init__(self, node_branch: str, rms_value: Decimal, - location_x: int, location_y: int, is_voltage: bool) -> None: - """ - Initialize the MultimeterWidget. - - Args: - node_branch: Name of the node or branch being measured - rms_value: RMS value to display - location_x: X coordinate for widget positioning - location_y: Y coordinate for widget positioning - is_voltage: True if measuring voltage, False for current - """ - super().__init__() - - self.node_branch = node_branch - self.rms_value = rms_value - self.location_x = location_x - self.location_y = location_y - self.is_voltage = is_voltage - - # Set proper size policy instead of fixed geometry - self.setSizePolicy(QtWidgets.QSizePolicy.Policy.Fixed, - QtWidgets.QSizePolicy.Policy.Fixed) - - self._setup_ui() - self._configure_window() - - logger.info(f"Created multimeter widget for {'voltage' if is_voltage else 'current'}: " - f"{node_branch} = {rms_value}") - - def _setup_ui(self) -> None: - self._create_labels() - self._setup_layout() - - def _create_labels(self) -> None: - """Create and configure the display labels.""" - # Create type label (Node or Branch) - if self.is_voltage: - self.type_label = QLabel(self.NODE_LABEL) - unit_text = self.VOLTAGE_UNIT - else: - self.type_label = QLabel(self.BRANCH_LABEL) - unit_text = self.CURRENT_UNIT - - # Create value labels - self.rms_title_label = QLabel(self.RMS_LABEL) - self.node_branch_value_label = QLabel(str(self.node_branch)) - self.rms_value_label = QLabel(f"{self.rms_value} {unit_text}") - - def _setup_layout(self) -> None: - layout = QGridLayout(self) - layout.addWidget(self.type_label, 0, 0) - layout.addWidget(self.rms_title_label, 0, 1) - layout.addWidget(self.node_branch_value_label, 1, 0) - layout.addWidget(self.rms_value_label, 1, 1) - - def _configure_window(self) -> None: - """Configure window properties and display the widget.""" - self.setGeometry( - self.location_x, - self.location_y, - DEFAULT_WIDGET_WIDTH, - DEFAULT_WIDGET_HEIGHT - ) - self.setWindowTitle(self.WINDOW_TITLE) - self.setWindowFlags(Qt.WindowType.WindowStaysOnTopHint) - self.show() - - def update_value(self, new_rms_value: Decimal) -> None: - """ - Update the displayed RMS value. - - Args: - new_rms_value: New RMS value to display - """ - self.rms_value = new_rms_value - unit_text = self.VOLTAGE_UNIT if self.is_voltage else self.CURRENT_UNIT - self.rms_value_label.setText(f"{new_rms_value} {unit_text}") - - logger.debug(f"Updated multimeter value: {self.node_branch} = {new_rms_value}") - - def get_measurement_info(self) -> dict: - """ - Get measurement information as a dictionary. - - Returns: - Dictionary containing measurement details - """ - return { - 'node_branch': self.node_branch, - 'rms_value': self.rms_value, - 'is_voltage': self.is_voltage, - 'unit': self.VOLTAGE_UNIT if self.is_voltage else self.CURRENT_UNIT - } diff --git a/src/ngspiceSimulation/trace.py b/src/ngspiceSimulation/trace.py new file mode 100644 index 000000000..8e3bd8e39 --- /dev/null +++ b/src/ngspiceSimulation/trace.py @@ -0,0 +1,49 @@ +from typing import Optional +from PyQt6.QtWidgets import QListWidget, QWidget +from PyQt6 import QtGui +from matplotlib.lines import Line2D +from .constants import DEFAULT_LINE_THICKNESS, VIBRANT_COLOR_PALETTE + + +class Trace: + """Single class to manage all trace properties.""" + + def __init__(self, index: int, name: str, color: str = None, + thickness: float = DEFAULT_LINE_THICKNESS, style: str = '-', + visible: bool = False) -> None: + self.index = index + self.name = name + self.color = color or VIBRANT_COLOR_PALETTE[0] + self.thickness = thickness + self.style = style + self.visible = visible + self.line_object: Optional[Line2D] = None + + def update_line(self, **kwargs) -> None: + if self.line_object: + if 'color' in kwargs: + self.color = kwargs['color'] + self.line_object.set_color(self.color) + if 'thickness' in kwargs: + self.thickness = kwargs['thickness'] + self.line_object.set_linewidth(self.thickness) + if 'style' in kwargs: + self.style = kwargs['style'] + if self.style != 'steps-post': + self.line_object.set_linestyle(self.style) + + +class CustomListWidget(QListWidget): + """Plain multi-select list. Drag-source removed in v3.1 along with the + multi-signal-pane model โ€” stacked view now keeps one trace per pane, + so there's nothing to drag onto. Pane reorder is done via Move Up/Down + in the right-click menu or by Alt-dragging a pane vertically. + """ + + def __init__(self, parent: Optional[QWidget] = None) -> None: + super().__init__(parent) + self.setSelectionMode(QListWidget.SelectionMode.MultiSelection) + + def paintEvent(self, event: QtGui.QPaintEvent) -> None: + super().paintEvent(event) + diff --git a/src/projManagement/Validation.py b/src/projManagement/Validation.py index d139079fd..2d0babd0f 100644 --- a/src/projManagement/Validation.py +++ b/src/projManagement/Validation.py @@ -67,12 +67,16 @@ def validateNewproj(self, projDir): """ print("Function: Validating New Project Information") + projDir = str(projDir) + projName = os.path.basename(os.path.normpath(projDir)) + # Checking existence of project with same name projName = os.path.basename(projDir) if os.path.exists(projDir): return "CHECKEXIST" # Project with name already exist else: # Check Proper name for project. It should not have space + projName = os.path.basename(str(projDir)) if re.search(r"\s", projName): return "CHECKNAME" else: diff --git a/src/projManagement/newProject.py b/src/projManagement/newProject.py index 18ef1b4ce..9163e7715 100644 --- a/src/projManagement/newProject.py +++ b/src/projManagement/newProject.py @@ -95,6 +95,7 @@ def createProject(self, projName): 'write permission on ' + self.workspace ) self.msg.exec() + return None, None # New KiCad v6 file extension f.write("schematicFile " + self.projName + ".kicad_sch\n") diff --git a/src/toolManager/gui_fixed.py b/src/toolManager/gui_fixed.py index 1e96f0010..39ac7d0f2 100644 --- a/src/toolManager/gui_fixed.py +++ b/src/toolManager/gui_fixed.py @@ -146,6 +146,24 @@ def __init__(self, parent=None): self._build_ui() def _build_ui(self): + self.setStyleSheet(""" + QWidget { + background-color: #ffffff; + color: #333333; + } + QCheckBox { + spacing: 8px; + } + QPushButton { + background-color: #f8f9fa; + border: 1px solid #ced4da; + border-radius: 4px; + padding: 6px; + } + QPushButton:hover { + background-color: #e2e6ea; + } + """) font_normal = QFont("Segoe UI", 11) font_small = QFont("Segoe UI", 9) font_bold = QFont("Segoe UI", 11, QFont.Weight.Bold) @@ -201,7 +219,7 @@ def _build_ui(self): self.console.setReadOnly(True) self.console.setFont(QFont("Consolas", 9)) self.console.setFixedHeight(110) - self.console.setStyleSheet("background:#1e1e1e;color:#d4d4d4;") + self.console.setStyleSheet("background:#f8f9fa;color:#333333;border:1px solid #ccc;") layout.addWidget(self.console) def log(self, msg): @@ -296,6 +314,73 @@ def __init__(self): self.check_all() def build_ui(self): + self.setStyleSheet(""" + QWidget { + background-color: #ffffff; + color: #333333; + } + QTableWidget { + background-color: #ffffff; + alternate-background-color: #fafafa; + color: #333333; + gridline-color: #f0f0f0; + border: 1px solid #e0e0e0; + border-radius: 4px; + } + QTableWidget::item { + padding: 5px; + } + QHeaderView::section { + background-color: #f8f9fa; + color: #333333; + border: none; + border-bottom: 2px solid #e0e0e0; + border-right: 1px solid #f0f0f0; + padding: 8px 12px; + font-weight: bold; + } + QPushButton { + background-color: #ffffff; + color: #333333; + border: 1px solid #ced4da; + border-radius: 6px; + padding: 8px 16px; + font-size: 13px; + min-width: 120px; + } + QPushButton:hover { + background-color: #f8f9fa; + border-color: #adb5bd; + } + QPushButton:pressed { + background-color: #e9ecef; + } + QPushButton:disabled { + background-color: #f8f9fa; + color: #adb5bd; + border-color: #e9ecef; + } + QTextEdit { + background-color: #fcfcfc; + color: #333333; + border: 1px solid #ced4da; + border-radius: 4px; + padding: 8px; + } + QComboBox { + background-color: #ffffff; + color: #333333; + border: 1px solid #ced4da; + border-radius: 4px; + padding: 4px 8px; + min-height: 28px; + } + QCheckBox { + spacing: 8px; + padding: 5px; + } + """) + font_header = QFont("Segoe UI", 11, QFont.Weight.Bold) font_normal = QFont("Segoe UI", 11) @@ -311,6 +396,9 @@ def build_ui(self): ["Tool", "Version", "Description", "Installed Version", "Status"] ) self.table.verticalHeader().setVisible(False) + self.table.verticalHeader().setDefaultSectionSize(50) + self.table.setAlternatingRowColors(True) + self.table.setShowGrid(False) self.table.setEditTriggers(QAbstractItemView.EditTrigger.NoEditTriggers) self.table.setColumnWidth(0, 150) self.table.setColumnWidth(1, 150) @@ -353,19 +441,20 @@ def build_ui(self): layout.addWidget(self.table) btn_layout = QHBoxLayout() + btn_layout.setSpacing(12) + btn_layout.setContentsMargins(5, 5, 5, 5) btn_check = QPushButton("Check Selected") btn_install = QPushButton("Install Selected") btn_update = QPushButton("Update Selected") btn_refresh = QPushButton("Refresh All") btn_uninstall = QPushButton("Uninstall...") btn_uninstall.setStyleSheet( - "QPushButton{color:#e74c3c;border:1px solid #e74c3c;border-radius:4px;}" + "QPushButton{color:#e74c3c;border:1px solid #e74c3c;border-radius:6px;background:#ffffff;}" "QPushButton:hover{background:#fdecea;}" ) for b in (btn_check, btn_install, btn_update, btn_refresh, btn_uninstall): b.setFont(font_normal) - b.setFixedHeight(36) btn_layout.addWidget(b) btn_check.clicked.connect(self.check_selected) diff --git a/src/toolManager/main.py b/src/toolManager/main.py index e005821de..c86be7290 100644 --- a/src/toolManager/main.py +++ b/src/toolManager/main.py @@ -141,6 +141,8 @@ def initUI(self): self.setMinimumSize(880, 760) central = QWidget() + central.setObjectName("centralWidget") + central.setStyleSheet("#centralWidget { background-color: #ffffff; }") self.setCentralWidget(central) self._main_layout = QVBoxLayout(central) self._main_layout.setSpacing(0) @@ -153,7 +155,9 @@ def initUI(self): tabs = QTabWidget() tabs.setStyleSheet(""" - QTabWidget::pane { border: none; background: white; } + QTabWidget { background: white; } + QTabWidget::pane { border: none; border-top: 1px solid #e0e0e0; background: white; } + QTabBar { background: white; } QTabBar::tab { background: #f5f5f5; color: #555; padding: 12px 24px; margin-right: 2px; @@ -250,7 +254,13 @@ def _create_status_panel(self): return frame def _create_installation_tab(self): + from PyQt6.QtWidgets import QScrollArea + scroll = QScrollArea() + scroll.setWidgetResizable(True) + scroll.setStyleSheet("QScrollArea { border: none; background: transparent; }") + tab = QWidget() + tab.setStyleSheet("background: transparent;") layout = QVBoxLayout(tab) layout.setContentsMargins(30, 30, 30, 30) layout.setSpacing(20) @@ -296,7 +306,7 @@ def _create_installation_tab(self): self.progress_frame = QFrame() self.progress_frame.setVisible(False) self.progress_frame.setStyleSheet( - "QFrame { background: #1e1e1e; border-radius: 6px; }" + "QFrame { background: #f8f9fa; border: 1px solid #ced4da; border-radius: 6px; }" ) pf_layout = QVBoxLayout(self.progress_frame) pf_layout.setContentsMargins(12, 10, 12, 10) @@ -304,13 +314,13 @@ def _create_installation_tab(self): pf_title = QLabel("Installation Progress") pf_title.setFont(QFont("Arial", 9, QFont.Weight.Bold)) - pf_title.setStyleSheet("color: #aaa; background: transparent;") + pf_title.setStyleSheet("color: #495057; background: transparent;") pf_layout.addWidget(pf_title) self.progress_log = QLabel("") self.progress_log.setFont(QFont("Consolas", 9)) self.progress_log.setStyleSheet( - "color: #d4d4d4; background: transparent;" + "color: #212529; background: transparent;" ) self.progress_log.setWordWrap(True) self.progress_log.setAlignment(Qt.AlignmentFlag.AlignTop) @@ -322,7 +332,7 @@ def _create_installation_tab(self): self.progress_bar.setFixedHeight(6) self.progress_bar.setStyleSheet(""" QProgressBar { - background: #333; border-radius: 3px; border: none; + background: #e9ecef; border-radius: 3px; border: 1px solid #ced4da; } QProgressBar::chunk { background: #4A90E2; border-radius: 3px; @@ -331,7 +341,8 @@ def _create_installation_tab(self): pf_layout.addWidget(self.progress_bar) layout.addWidget(self.progress_frame) layout.addStretch() - return tab + scroll.setWidget(tab) + return scroll def _create_install_card(self, title, description, features, disk_space, btn_text, btn_color, callback):